From 4d219df04e72794ccd02ce44578485814829ea5e Mon Sep 17 00:00:00 2001 From: redmatrix Date: Mon, 20 Jun 2016 13:42:04 -0700 Subject: [PATCH 001/819] fix siteinfo plugin list --- Zotlabs/Module/Siteinfo.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Zotlabs/Module/Siteinfo.php b/Zotlabs/Module/Siteinfo.php index 41f6e9f0b..f6b34d0c8 100644 --- a/Zotlabs/Module/Siteinfo.php +++ b/Zotlabs/Module/Siteinfo.php @@ -32,9 +32,8 @@ class Siteinfo extends \Zotlabs\Web\Controller { $r = q("select * from addon where hidden = 0"); if(count($r)) foreach($r as $rr) - $visible_plugins[] = $rr['name']; + $visible_plugins[] = $rr['aname']; } - $plugins_list = ''; if(count($visible_plugins)) { $plugins_text = t('Installed plugins/addons/apps:'); From 32408ed6a317f64c6a6831f78315117a4cd2f694 Mon Sep 17 00:00:00 2001 From: redmatrix Date: Wed, 22 Jun 2016 20:17:19 -0700 Subject: [PATCH 002/819] missing class selector when "use photo as profile photo" --- Zotlabs/Module/Profile_photo.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Zotlabs/Module/Profile_photo.php b/Zotlabs/Module/Profile_photo.php index 6129a7492..bb332f4ab 100644 --- a/Zotlabs/Module/Profile_photo.php +++ b/Zotlabs/Module/Profile_photo.php @@ -349,7 +349,7 @@ class Profile_photo extends \Zotlabs\Web\Controller { } } - profile_photo_crop_ui_head($a, $ph, $hash, $smallest); + $this->profile_photo_crop_ui_head($a, $ph, $hash, $smallest); } $profiles = q("select id, profile_name as name, is_default from profile where uid = %d", From f7d2c99a3ac480efcf3abf2d05bdb6b1c89f3a3c Mon Sep 17 00:00:00 2001 From: redmatrix Date: Wed, 22 Jun 2016 20:18:29 -0700 Subject: [PATCH 003/819] move revision up --- boot.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boot.php b/boot.php index a767a18d4..e4007eb3a 100755 --- a/boot.php +++ b/boot.php @@ -45,7 +45,7 @@ require_once('include/account.php'); define ( 'PLATFORM_NAME', 'hubzilla' ); -define ( 'STD_VERSION', '1.8' ); +define ( 'STD_VERSION', '1.8.1' ); define ( 'ZOT_REVISION', '1.1' ); define ( 'DB_UPDATE_VERSION', 1176 ); From 1577efa25e0dff2fdd8f2ffa6e0750ceac2dfe44 Mon Sep 17 00:00:00 2001 From: redmatrix Date: Fri, 24 Jun 2016 02:17:25 -0700 Subject: [PATCH 004/819] fix pdledit list mode --- Zotlabs/Module/Pdledit.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Zotlabs/Module/Pdledit.php b/Zotlabs/Module/Pdledit.php index accfb6fa1..5cb00f165 100644 --- a/Zotlabs/Module/Pdledit.php +++ b/Zotlabs/Module/Pdledit.php @@ -20,7 +20,7 @@ class Pdledit extends \Zotlabs\Web\Controller { } - function get() { + function get() { if(! local_channel()) { notice( t('Permission denied.') . EOL); @@ -32,18 +32,18 @@ class Pdledit extends \Zotlabs\Web\Controller { else { $o .= '
'; $o .= '

' . t('Edit System Page Description') . '

'; - $files = glob('mod/*'); + $files = glob('Zotlabs/Module/*.php'); if($files) { foreach($files as $f) { - $name = basename($f,'.php'); + $name = lcfirst(basename($f,'.php')); $x = theme_include('mod_' . $name . '.pdl'); if($x) { $o .= '' . $name . '
'; } } } - - $o .= '
'; + + $o .= ''; // list module pdl files return $o; From 0e041a3b64bc05a3382dff05a1c4b34633618f0a Mon Sep 17 00:00:00 2001 From: Alexandre Hannud Abdo Date: Fri, 24 Jun 2016 23:58:43 +0000 Subject: [PATCH 005/819] Improvements to help pages --- doc/admins.bb | 12 ++++++------ doc/channels.bb | 25 +++++++++++++++++-------- doc/external-resource-links.bb | 19 ++++++++++--------- doc/general.bb | 18 +++++++----------- doc/members.bb | 10 +++++----- doc/troubleshooting.bb | 11 ++++++----- 6 files changed, 51 insertions(+), 44 deletions(-) diff --git a/doc/admins.bb b/doc/admins.bb index 484212024..6c78ce999 100644 --- a/doc/admins.bb +++ b/doc/admins.bb @@ -1,15 +1,15 @@ [h2]Documentation for Hub Administrators[/h2] - -[h3]Administrators[/h3] - +[h3]Deploying your hub[/h3] [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] +[h3]Taking care of your hub[/h3] [zrl=[baseurl]/help/troubleshooting]Troubleshooting Tips[/zrl] +[zrl=[baseurl]/help/theme_management]Theme Management[/zrl] [zrl=[baseurl]/help/hidden_configs]Tweaking $Projectname's Hidden Configurations[/zrl] -[zrl=[baseurl]/help/faq_admins]FAQ For Admins[/zrl] [zrl=[baseurl]/help/service_classes]Service Classes[/zrl] [zrl=[baseurl]/help/directories]Working with and configuring Directories[/zrl] -[zrl=[baseurl]/help/theme_management]Theme Management[/zrl] - +[h3]Frequently asked questions[/h3] +[zrl=[baseurl]/help/faq_admins]FAQ For Admins[/zrl] +#include doc/macros/main_footer.bb; diff --git a/doc/channels.bb b/doc/channels.bb index 4b47b61dc..14d588266 100644 --- a/doc/channels.bb +++ b/doc/channels.bb @@ -1,19 +1,23 @@ -[b]Channels[/b] +[h2]Channels[/h2] + +[h3]What are channels?[/h3] Channels are simply collections of content stored in one place. A channel can represent anything. It could represent you, a website, a forum, photo albums, anything. For most people, their first channel with be "Me". The most important features for a channel that represents "me" are: +[ul] +[*]Secure and private "spam free" communications -Secure and private "spam free" communications +[*]Identity and "single-signon" across the entire network -Identity and "single-signon" across the entire network - -Privacy controls and permissions which extend to the entire network - -Directory services (like a phone book) +[*]Privacy controls and permissions which extend to the entire network +[*]Directory services (like a phone book) +[/ul] In short, a channel that represents yourself is "me, on the internet". +[h3]Creating channels[/h3] + You will be required to create your first channel as part of the sign up process. You can also create additonal channels from the "Select channel" link. You will be asked to provide a channel name, and a short nick name. For a channel that represents yourself, it is a good idea to use your real name here to ensure your friends can find you, and connect to your channel. The short nickname will be used to generate a "webbie". This is a bit like a username, and will look like an email address, taking the form nickname@domain. You should put a little thought into what you want to use here. Imagine somebody asking for your webbie and having to tell them it is "llamas-are_kewl.123". "llamasarecool" would be a much better choice. @@ -22,9 +26,14 @@ Once you have created your channel, you will be taken to the settings page, wher Once you have done this, your channel is ready to use. At [observer=1][observer.url][/observer][observer=0]example.com/channel/username[/observer] you will find your channel "stream". This is where your recent activity will appear, in reverse chronological order. If you post in the box marked "share", the entry will appear at the top of your stream. You will also find links to all the other communication areas for this channel here. The "About" tab contains your "profile", the photos page contain photo albums, and the events page contains events share by both yourself and your contacts. +[h3]The grid, permissions and delegation[/h3] + The "Grid" page contains all recent posts from across the $Projectname network, again in reverse chronologial order. The exact posts that appear here depend largely on your permissions. At their most permissive, you will receive posts from complete strangers. At the other end of the scale, you may see posts from only your friends - or if you're feeling really anti-social, only your own posts. -As mentioned at the start, many other kinds of channel are possible, however, the creation procedure is the same. The difference between channels lies primarily in the permissions assigned. For example, a channel for sharing documents with colleagues at work would probably want more permissive settings for "Can write to my "public" file storage" than a personal account. For more information, see the permissions section. +As mentioned at the start, many other kinds of channel are possible, however, the creation procedure is the same. The difference between channels lies primarily in the permissions assigned. For example, a channel for sharing documents with colleagues at work would probably want more permissive settings for "Can write to my "public" file storage" than a personal account. For more information, see the [zrl=[baseurl]/help/roles]permissions section[/zrl]. + +You can also delegate control of your channels' posts and connections, but not its configurations, to another channel. That is done by editing a connection and assigning it the permission to administer your channel's resources. #include doc/macros/main_footer.bb; + diff --git a/doc/external-resource-links.bb b/doc/external-resource-links.bb index 412e84467..a679e9381 100644 --- a/doc/external-resource-links.bb +++ b/doc/external-resource-links.bb @@ -1,20 +1,21 @@ -[b]External Resource Links[/b] - -[b][color= grey][size=24]External Links[/size][/color][/b] -[b]Third-Party Themes[/b] - +[h2]External resource links[/h2] +[h3]Third-Party Themes[/h3] +[ul] [*][url=https://github.com/omigeot/redstrap3]Redstrap[/url] [*][url=https://bitbucket.org/tobiasd/red-clean]Clean[/url] [*][url=https://github.com/tonybaldwin/redmatrixthemes/]nubasic[/url] [*][url=https://github.com/deadsuperhero/redmatrix-themes]Sean Tilley's themes[/url] - -[b]Third-Party Addons[/b] +[/ul] +[h3]Third-Party addons[/h3] +[ul] [*][url=https://abcentric.net/git/abcjsplugin.git]ABCjs integration - display scores in posts (WIP)[/url] -[b]Related Projects[/b] - +[/ul] +[h3]Related projects[/h3] +[ul] [*][url=https://addons.mozilla.org/en-US/firefox/addon/redshare/]Redshare for Firefox[/url] [*][url=https://github.com/cvogeley/red-for-android]Red for Android[/url] [*][url=https://github.com/zzottel/feed2red]feed2red.pl (posts Atom/RSS feeds to channel)[/url] [*][url=https://wordpress.org/plugins/hubzilla-wp/]WordPress gateway (combine with wppost addon for full features)[/url] +[/ul] #include doc/macros/main_footer.bb; diff --git a/doc/general.bb b/doc/general.bb index c9c2501e5..bbc85c900 100644 --- a/doc/general.bb +++ b/doc/general.bb @@ -1,20 +1,16 @@ - -[h2]Project/Site Information[/h2] - +[h2]Project and site information[/h2] +[h3]$Projectname[/h3] [zrl=[baseurl]/help/Privacy]Privacy Policy[/zrl] - [zrl=[baseurl]/help/history]$Projectname history[/zrl] - -[h3]External Resources[/h3] -[zrl=[baseurl]/help/external-resource-links]External Resource Links[/zrl] - +[h3]External resources[/h3] +[zrl=[baseurl]/help/external-resource-links]List of external resources[/zrl] [url=https://github.com/redmatrix/hubzilla]Main Website[/url] [url=https://github.com/redmatrix/hubzilla-addons]Addon Website[/url] - [url=[baseurl]/help/credits]$Projectname Credits[/url] - -[h3]About This $Projectname Hub[/h3] +[h3]About this $Projectname hub[/h3] [zrl=[baseurl]/help/TermsOfService]Terms of Service For This Hub[/zrl] [zrl=[baseurl]/siteinfo]Hub Information (/siteinfo)[/zrl] [zrl=[baseurl]/siteinfo/json]Detailed Technical Hub Information in JSON format(/siteinfo/json)[/zrl] +#include doc/macros/main_footer.bb; + diff --git a/doc/members.bb b/doc/members.bb index 13339ef2d..bf5b09898 100644 --- a/doc/members.bb +++ b/doc/members.bb @@ -1,6 +1,5 @@ -[h2]Documentation for Hub Members[/h2] - -[h3]Getting Started[/h3] +[h2]Documentation for hub members[/h2] +[h3]Getting started[/h3] [zrl=[baseurl]/help/registration]Account Registration[/zrl] [zrl=[baseurl]/help/accounts_profiles_channels_basics]You at $Projectname: accounts, profiles and channels in short[/zrl] [zrl=[baseurl]/help/profiles]Profiles[/zrl] @@ -11,8 +10,7 @@ [zrl=[baseurl]/help/permissions]Permissions And Encryption: You Are In Control[/zrl] [zrl=[baseurl]/help/cloud]Cloud Storage[/zrl] [zrl=[baseurl]/help/remove_account]Remove Channel or Account[/zrl] - -[h3]Members Help[/h3] +[h3]Members help[/h3] [zrl=[baseurl]/help/tags_and_mentions]Tags and Mentions[/zrl] [zrl=[baseurl]/help/webpages]Web Pages[/zrl] [zrl=[baseurl]/help/bbcode]BBcode reference for posts and comments[/zrl] @@ -23,3 +21,5 @@ [zrl=[baseurl]/help/diaspora_compat]Diaspora Communications Compatibility (Diaspora and Friendica)[/zrl] [zrl=[baseurl]/help/faq_members]FAQ For Members[/zrl] [zrl=[baseurl]/help/bugs]Bugs, Issues, and things that go bump in the night...[/zrl] + +#include doc/macros/main_footer.bb; diff --git a/doc/troubleshooting.bb b/doc/troubleshooting.bb index 1a2bd7f12..023d3c8b1 100644 --- a/doc/troubleshooting.bb +++ b/doc/troubleshooting.bb @@ -1,6 +1,4 @@ -[b]Troubleshooting[/b] - -[li][zrl=[baseurl]/help/problems-following-an-update]Problems following an update[/zrl][/li] +[h2]Troubleshooting[/h2] When reporting issues, please try to provide as much detail as may be necessary for developers to reproduce the issue and provide the complete text of all error messages. @@ -13,9 +11,12 @@ In the case of "500" errors, the issues may often be logged in your webserver lo We encourage you to try to the best of your abilities to use these logs combined with the source code in your possession to troubleshoot issues and find their cause. The community is often able to help, but only you have access to your site logfiles and it is considered a security risk to share them. - If a code issue has been uncovered, please report it on the project bugtracker (https://github.com/redmatrix/hubzilla/issues). Again provide as much detail as possible to avoid us going back and forth asking questions about your configuration or how to duplicate the problem, so that we can get right to the problem and figure out what to do about it. You are also welcome to offer your own solutions and submit patches. In fact we encourage this as we are all volunteers and have little spare time available. The more people that help, the easier the workload for everybody. It's OK if your solution isn't perfect. Every little bit helps and perhaps we can improve on it. -#include doc/macros/troubleshooting_footer.bb; +[h3]Troubleshooting updates[/h3] +[ul] +[li][zrl=[baseurl]/help/problems-following-an-update]Problems following an update[/zrl][/li] +[/ul] + #include doc/macros/main_footer.bb; From 1924459abd970e1581ca3c9de7328073906b4268 Mon Sep 17 00:00:00 2001 From: redmatrix Date: Sat, 25 Jun 2016 04:09:07 -0700 Subject: [PATCH 006/819] media (e.g. video) files weren't being detected correctly in oembed, causing the stream to try and load large videos (and failing) --- include/oembed.php | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/include/oembed.php b/include/oembed.php index 08363e488..e968a8f65 100755 --- a/include/oembed.php +++ b/include/oembed.php @@ -25,12 +25,6 @@ function oembed_action($embedurl) { logger('oembed_action: ' . $embedurl, LOGGER_DEBUG, LOG_INFO); - // These media files should now be caught in bbcode.php - // left here as a fallback in case this is called from another source - - $noexts = array("mp3","mp4","ogg","ogv","oga","ogm","webm","opus"); - $ext = pathinfo(strtolower($embedurl),PATHINFO_EXTENSION); - if(strpos($embedurl,'http://') === 0) { if(intval(get_config('system','embed_sslonly'))) { $action = 'block'; @@ -119,14 +113,19 @@ function oembed_fetch_url($embedurl){ // These media files should now be caught in bbcode.php // left here as a fallback in case this is called from another source - $noexts = array("mp3","mp4","ogg","ogv","oga","ogm","webm","opus"); - $ext = pathinfo(strtolower($embedurl),PATHINFO_EXTENSION); + $noexts = array(".mp3",".mp4",".ogg",".ogv",".oga",".ogm",".webm",".opus"); $result = oembed_action($embedurl); $embedurl = $result['url']; $action = $result['action']; + foreach($noexts as $ext) { + if(strpos(strtolower($embedurl),$ext) !== false) { + $action = 'block'; + } + } + $txt = null; if($action !== 'block') { @@ -151,7 +150,7 @@ function oembed_fetch_url($embedurl){ } - if (! in_array($ext, $noexts) && $action !== 'block') { + if ($action !== 'block') { // try oembed autodiscovery $redirects = 0; $result = z_fetch_url($furl, false, $redirects, array('timeout' => 15, 'accept_content' => "text/*", 'novalidate' => true )); From 45f5ac560d632f6fedf1c306c21f74909368333b Mon Sep 17 00:00:00 2001 From: Habeas Codice Date: Mon, 27 Jun 2016 06:28:08 -0700 Subject: [PATCH 007/819] typos --- install/schema_postgres.sql | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/install/schema_postgres.sql b/install/schema_postgres.sql index b637fea43..ceee30430 100644 --- a/install/schema_postgres.sql +++ b/install/schema_postgres.sql @@ -809,15 +809,15 @@ CREATE TABLE "obj" ( "obj_id" serial NOT NULL, "obj_page" char(64) NOT NULL DEFAULT '', "obj_verb" text NOT NULL DEFAULT '', - "obj_type" bigint NOT NULL DEFAULT '0', + "obj_type" bigint NOT NULL DEFAULT 0, "obj_obj" text NOT NULL DEFAULT '', - "obj_channel" bigint NOT NULL DEFAULT '0', + "obj_channel" bigint NOT NULL DEFAULT 0, "obj_term" char(255) NOT NULL DEFAULT '', "obj_url" char(255) NOT NULL DEFAULT '', "obj_imgurl" char(255) NOT NULL DEFAULT '', "obj_created" timestamp NOT NULL DEFAULT '0001-01-01 00:00:00', "obj_edited" timestamp NOT NULL DEFAULT '0001-01-01 00:00:00', - "obj_quantity" int(11) NOT NULL DEFAUL '0'. + "obj_quantity" bigint NOT NULL DEFAULT 0, "allow_cid" text NOT NULL, "allow_gid" text NOT NULL, "deny_cid" text NOT NULL, From ad83825d4f91b4c3da181614059cbeb86b3c529c Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Wed, 29 Jun 2016 22:50:40 +0200 Subject: [PATCH 008/819] missing backslash leads to wsod on refresh permissions --- Zotlabs/Module/Connedit.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Zotlabs/Module/Connedit.php b/Zotlabs/Module/Connedit.php index 33deac4c8..4f700e2e7 100644 --- a/Zotlabs/Module/Connedit.php +++ b/Zotlabs/Module/Connedit.php @@ -427,7 +427,7 @@ class Connedit extends \Zotlabs\Web\Controller { else { // if you are on a different network we'll force a refresh of the connection basic info - Zotlabs\Daemon\Master::Summon(array('Notifier','permission_update',$contact_id)); + \Zotlabs\Daemon\Master::Summon(array('Notifier','permission_update',$contact_id)); } goaway(z_root() . '/connedit/' . $contact_id); } From 983ccef87c8784f9a4e517a11196a3dae2c4e905 Mon Sep 17 00:00:00 2001 From: Habeas Codice Date: Mon, 11 Jul 2016 10:55:42 -0700 Subject: [PATCH 009/819] NOT NULL constraint without default and INSERT does not provide one --- install/schema_postgres.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/schema_postgres.sql b/install/schema_postgres.sql index ceee30430..f0c41dc2a 100644 --- a/install/schema_postgres.sql +++ b/install/schema_postgres.sql @@ -1052,7 +1052,7 @@ create index "reg_uid" on register ("uid"); CREATE TABLE "session" ( "id" serial, "sid" text NOT NULL, - "sess_data" text NOT NULL, + "sess_data" text NOT NULL DEFAULT '', "expire" numeric(20) NOT NULL, PRIMARY KEY ("id") ); From db2b6f12686c3d276915558d1df0bc5628575ee2 Mon Sep 17 00:00:00 2001 From: Andrew Manning Date: Sat, 16 Jul 2016 21:23:29 -0400 Subject: [PATCH 010/819] Fixed whitescreen when creating folders via cloud files web interface I'm getting a "not found" error when I try to create folders in the cloud files web interface. I click the "Create" button beside the "Upload" button, type a bland name for a new folder, and I get a white screen. Including the attach.php file fixes the bug. Version 1.9.1+99354ac --- Zotlabs/Storage/Directory.php | 1 + 1 file changed, 1 insertion(+) diff --git a/Zotlabs/Storage/Directory.php b/Zotlabs/Storage/Directory.php index 06ae90a5f..0ccd9da47 100644 --- a/Zotlabs/Storage/Directory.php +++ b/Zotlabs/Storage/Directory.php @@ -369,6 +369,7 @@ class Directory extends DAV\Node implements DAV\ICollection, DAV\IQuota { ); if ($r) { + require_once('include/attach.php'); $result = attach_mkdir($r[0], $this->auth->observer, array('filename' => $name, 'folder' => $this->folder_hash)); if($result['success']) { From 5cfc2869724effc02fc5b1767e4488750c82b2dd Mon Sep 17 00:00:00 2001 From: redmatrix Date: Thu, 21 Jul 2016 20:04:30 -0700 Subject: [PATCH 011/819] zat URL auth updated to match changes to the atoken_login interface --- include/auth.php | 12 ++++++++++-- include/channel.php | 3 ++- 2 files changed, 12 insertions(+), 3 deletions(-) diff --git a/include/auth.php b/include/auth.php index f8120981a..f3592cee3 100644 --- a/include/auth.php +++ b/include/auth.php @@ -16,16 +16,24 @@ require_once('include/security.php'); /** * @brief Verify login credentials. * - * If system authlog is set a log entry will be added for failed login + * If system.authlog is set a log entry will be added for failed login * attempts. * - * @param string $email + * @param string $login * The login to verify (channel address, account email or guest login token). * @param string $pass * The provided password to verify. * @return array|null * Returns account record on success, null on failure. + * The return array is dependent on the login mechanism. + * $ret['account'] will be set if either an email or channel address validation was successful (local login). + * $ret['channel'] will be set if a channel address validation was successful. + * $ret['xchan'] will be set if a guest access token validation was successful. + * Keys will exist for invalid return arrays but will be set to null. + * This function does not perform a login. It merely validates systems passwords and tokens. + * */ + function account_verify_password($login, $pass) { $ret = [ 'account' => null, 'channel' => null, 'xchan' => null ]; diff --git a/include/channel.php b/include/channel.php index 1a6508803..8e0747f25 100644 --- a/include/channel.php +++ b/include/channel.php @@ -1356,7 +1356,8 @@ function zat_init() { dbesc($_REQUEST['zat']) ); if($r) { - atoken_login($r[0]); + $xchan = atoken_xchan($r[0]); + atoken_login($xchan); } } From 79eeeaee95e66f8a96d47067ac4386884f0121d6 Mon Sep 17 00:00:00 2001 From: redmatrix Date: Thu, 21 Jul 2016 21:35:26 -0700 Subject: [PATCH 012/819] fix birthday addtocal --- include/datetime.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/datetime.php b/include/datetime.php index 600ad6ec4..76bd6b8d6 100644 --- a/include/datetime.php +++ b/include/datetime.php @@ -556,13 +556,13 @@ function update_birthdays() { $ev['uid'] = $rr['abook_channel']; $ev['account'] = $rr['abook_account']; $ev['event_xchan'] = $rr['xchan_hash']; - $ev['start'] = datetime_convert('UTC', 'UTC', $rr['abook_dob']); - $ev['finish'] = datetime_convert('UTC', 'UTC', $rr['abook_dob'] . ' + 1 day '); + $ev['dtstart'] = datetime_convert('UTC', 'UTC', $rr['abook_dob']); + $ev['dtend'] = datetime_convert('UTC', 'UTC', $rr['abook_dob'] . ' + 1 day '); $ev['adjust'] = intval(feature_enabled($rr['abook_channel'],'smart_birthdays')); $ev['summary'] = sprintf( t('%1$s\'s birthday'), $rr['xchan_name']); $ev['description'] = sprintf( t('Happy Birthday %1$s'), '[zrl=' . $rr['xchan_url'] . ']' . $rr['xchan_name'] . '[/zrl]') ; - $ev['type'] = 'birthday'; + $ev['etype'] = 'birthday'; $z = event_store_event($ev); if ($z) { From 24d28bc23a5dcc0dce7765463d94cc68e599efae Mon Sep 17 00:00:00 2001 From: redmatrix Date: Mon, 25 Jul 2016 13:29:06 -0700 Subject: [PATCH 013/819] issue #460 --- include/api_auth.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/api_auth.php b/include/api_auth.php index 7a71bad73..89882f821 100644 --- a/include/api_auth.php +++ b/include/api_auth.php @@ -65,7 +65,7 @@ function api_login(&$a){ } if($record['account']) { - authenticate_success($record); + authenticate_success($record['account']); if($channel_login) change_channel($channel_login); From 54ecf0f45f4f8d67a34025b78d025b154eea3fba Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Tue, 26 Jul 2016 09:04:52 +0200 Subject: [PATCH 014/819] URLUtil path has changed since sabredav 1.8 - fixes renaming issue in dav clients --- Zotlabs/Storage/Directory.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Zotlabs/Storage/Directory.php b/Zotlabs/Storage/Directory.php index 6242d5274..0860f99a1 100644 --- a/Zotlabs/Storage/Directory.php +++ b/Zotlabs/Storage/Directory.php @@ -3,6 +3,7 @@ namespace Zotlabs\Storage; use Sabre\DAV; +use Sabre\HTTP; /** * @brief RedDirectory class. @@ -159,7 +160,7 @@ class Directory extends DAV\Node implements DAV\ICollection, DAV\IQuota { throw new DAV\Exception\Forbidden('Permission denied.'); } - list($parent_path, ) = DAV\URLUtil::splitPath($this->red_path); + list($parent_path, ) = HTTP\URLUtil::splitPath($this->red_path); $new_path = $parent_path . '/' . $name; $r = q("UPDATE attach SET filename = '%s' WHERE hash = '%s' AND uid = %d", From 18f0961caaa505b2a05784629254146ffda1abc6 Mon Sep 17 00:00:00 2001 From: phellmes Date: Thu, 28 Jul 2016 14:09:29 +0200 Subject: [PATCH 015/819] Update DE translation strings --- view/de/hmessages.po | 9670 +++++++++++++++++++++--------------------- view/de/hstrings.php | 2160 +++++----- 2 files changed, 6035 insertions(+), 5795 deletions(-) diff --git a/view/de/hmessages.po b/view/de/hmessages.po index 5c3b981ad..c160cd6bc 100644 --- a/view/de/hmessages.po +++ b/view/de/hmessages.po @@ -23,8 +23,8 @@ msgid "" msgstr "" "Project-Id-Version: Redmatrix\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-06-10 00:02-0700\n" -"PO-Revision-Date: 2016-06-15 09:43+0000\n" +"POT-Creation-Date: 2016-07-22 00:02-0700\n" +"PO-Revision-Date: 2016-07-28 09:16+0000\n" "Last-Translator: Phellmes \n" "Language-Team: German (http://www.transifex.com/Friendica/red-matrix/language/de/)\n" "MIME-Version: 1.0\n" @@ -33,11 +33,156 @@ msgstr "" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ../../Zotlabs/Access/PermissionRoles.php:182 +#: ../../include/permissions.php:904 +msgid "Social Networking" +msgstr "Soziales Netzwerk" + +#: ../../Zotlabs/Access/PermissionRoles.php:183 +#: ../../include/permissions.php:904 +msgid "Social - Mostly Public" +msgstr "Soziales Netzwerk - Weitgehend öffentlich" + +#: ../../Zotlabs/Access/PermissionRoles.php:184 +#: ../../include/permissions.php:904 +msgid "Social - Restricted" +msgstr "Soziales Netzwerk - Beschränkt" + +#: ../../Zotlabs/Access/PermissionRoles.php:185 +#: ../../include/permissions.php:904 +msgid "Social - Private" +msgstr "Soziales Netzwerk - Privat" + +#: ../../Zotlabs/Access/PermissionRoles.php:188 +#: ../../include/permissions.php:905 +msgid "Community Forum" +msgstr "Forum" + +#: ../../Zotlabs/Access/PermissionRoles.php:189 +#: ../../include/permissions.php:905 +msgid "Forum - Mostly Public" +msgstr "Forum - Weitgehend öffentlich" + +#: ../../Zotlabs/Access/PermissionRoles.php:190 +#: ../../include/permissions.php:905 +msgid "Forum - Restricted" +msgstr "Forum - Beschränkt" + +#: ../../Zotlabs/Access/PermissionRoles.php:191 +#: ../../include/permissions.php:905 +msgid "Forum - Private" +msgstr "Forum - Privat" + +#: ../../Zotlabs/Access/PermissionRoles.php:194 +#: ../../include/permissions.php:906 +msgid "Feed Republish" +msgstr "Teilen von Feeds" + +#: ../../Zotlabs/Access/PermissionRoles.php:195 +#: ../../include/permissions.php:906 +msgid "Feed - Mostly Public" +msgstr "Feeds - Weitgehend öffentlich" + +#: ../../Zotlabs/Access/PermissionRoles.php:196 +#: ../../include/permissions.php:906 +msgid "Feed - Restricted" +msgstr "Feeds - Beschränkt" + +#: ../../Zotlabs/Access/PermissionRoles.php:199 +#: ../../include/permissions.php:907 +msgid "Special Purpose" +msgstr "Für besondere Zwecke" + +#: ../../Zotlabs/Access/PermissionRoles.php:200 +#: ../../include/permissions.php:907 +msgid "Special - Celebrity/Soapbox" +msgstr "Speziell - Mitteilungs-Kanal (keine Kommentare)" + +#: ../../Zotlabs/Access/PermissionRoles.php:201 +#: ../../include/permissions.php:907 +msgid "Special - Group Repository" +msgstr "Speziell - Gruppenarchiv" + +#: ../../Zotlabs/Access/PermissionRoles.php:204 ../../include/selectors.php:49 +#: ../../include/selectors.php:66 ../../include/selectors.php:104 +#: ../../include/selectors.php:140 ../../include/permissions.php:908 +msgid "Other" +msgstr "Andere" + +#: ../../Zotlabs/Access/PermissionRoles.php:205 +#: ../../include/permissions.php:908 +msgid "Custom/Expert Mode" +msgstr "Benutzerdefiniert/Expertenmodus" + +#: ../../Zotlabs/Access/Permissions.php:30 +msgid "Can view my channel stream and posts" +msgstr "Kann meinen Kanal-Stream und meine Beiträge sehen" + +#: ../../Zotlabs/Access/Permissions.php:31 ../../include/permissions.php:33 +msgid "Can send me their channel stream and posts" +msgstr "Kann mir die Beiträge aus seinem/ihrem Kanal schicken" + +#: ../../Zotlabs/Access/Permissions.php:32 ../../include/permissions.php:27 +msgid "Can view my default channel profile" +msgstr "Kann mein Standardprofil sehen" + +#: ../../Zotlabs/Access/Permissions.php:33 ../../include/permissions.php:28 +msgid "Can view my connections" +msgstr "Kann meine Verbindungen sehen" + +#: ../../Zotlabs/Access/Permissions.php:34 ../../include/permissions.php:29 +msgid "Can view my file storage and photos" +msgstr "Kann meine Datei- und Bilderordner sehen" + +#: ../../Zotlabs/Access/Permissions.php:35 +msgid "Can upload/modify my file storage and photos" +msgstr "Kann in meine Datei- und Bilderordner hochladen/ändern" + +#: ../../Zotlabs/Access/Permissions.php:36 +msgid "Can view my channel webpages" +msgstr "Kann die Webseiten meines Kanals sehen" + +#: ../../Zotlabs/Access/Permissions.php:37 +msgid "Can create/edit my channel webpages" +msgstr "Kann Webseiten in meinem Kanal erstellen/ändern" + +#: ../../Zotlabs/Access/Permissions.php:38 +msgid "Can post on my channel (wall) page" +msgstr "Kann auf meiner Kanal-Seite (\"wall\") Beiträge veröffentlichen" + +#: ../../Zotlabs/Access/Permissions.php:39 ../../include/permissions.php:35 +msgid "Can comment on or like my posts" +msgstr "Darf meine Beiträge kommentieren und mögen/nicht mögen" + +#: ../../Zotlabs/Access/Permissions.php:40 ../../include/permissions.php:36 +msgid "Can send me private mail messages" +msgstr "Kann mir private Nachrichten schicken" + +#: ../../Zotlabs/Access/Permissions.php:41 +msgid "Can like/dislike profiles and profile things" +msgstr "Kann Profile und Profilsachen mögen/nicht mögen" + +#: ../../Zotlabs/Access/Permissions.php:42 +msgid "Can forward to all my channel connections via @+ mentions in posts" +msgstr "Kann an alle meine Verbindungen via @-Erwähnungen Nachrichten weiterleiten" + +#: ../../Zotlabs/Access/Permissions.php:43 +msgid "Can chat with me" +msgstr "Kann mit mir chatten" + +#: ../../Zotlabs/Access/Permissions.php:44 ../../include/permissions.php:44 +msgid "Can source my public posts in derived channels" +msgstr "Kann meine öffentlichen Beiträge als Quellen für Kanäle verwenden" + +#: ../../Zotlabs/Access/Permissions.php:45 +msgid "Can administer my channel" +msgstr "Kann meinen Kanal administrieren" + #: ../../Zotlabs/Storage/Browser.php:107 ../../Zotlabs/Storage/Browser.php:239 msgid "parent" msgstr "Übergeordnetes Verzeichnis" -#: ../../Zotlabs/Storage/Browser.php:131 ../../include/text.php:2620 +#: ../../Zotlabs/Storage/Browser.php:131 ../../include/text.php:2605 msgid "Collection" msgstr "Sammlung" @@ -61,16 +206,17 @@ msgstr "Posteingang für überwachte Kalender" msgid "Schedule Outbox" msgstr "Postausgang für überwachte Kalender" -#: ../../Zotlabs/Storage/Browser.php:164 ../../Zotlabs/Module/Photos.php:798 -#: ../../Zotlabs/Module/Photos.php:1243 ../../Zotlabs/Lib/Apps.php:486 -#: ../../Zotlabs/Lib/Apps.php:561 ../../include/widgets.php:1505 -#: ../../include/conversation.php:1032 +#: ../../Zotlabs/Storage/Browser.php:164 ../../Zotlabs/Module/Photos.php:796 +#: ../../Zotlabs/Module/Photos.php:1241 +#: ../../Zotlabs/Module/Embedphotos.php:147 ../../Zotlabs/Lib/Apps.php:490 +#: ../../Zotlabs/Lib/Apps.php:565 ../../include/conversation.php:1035 +#: ../../include/widgets.php:1599 msgid "Unknown" msgstr "Unbekannt" #: ../../Zotlabs/Storage/Browser.php:226 ../../Zotlabs/Module/Fbrowser.php:85 -#: ../../Zotlabs/Lib/Apps.php:216 ../../include/nav.php:93 -#: ../../include/conversation.php:1639 +#: ../../Zotlabs/Lib/Apps.php:217 ../../include/nav.php:93 +#: ../../include/conversation.php:1654 msgid "Files" msgstr "Dateien" @@ -83,22 +229,23 @@ msgid "Shared" msgstr "Geteilt" #: ../../Zotlabs/Storage/Browser.php:230 ../../Zotlabs/Storage/Browser.php:306 -#: ../../Zotlabs/Module/Blocks.php:156 ../../Zotlabs/Module/Layouts.php:182 -#: ../../Zotlabs/Module/Menu.php:118 ../../Zotlabs/Module/New_channel.php:142 -#: ../../Zotlabs/Module/Webpages.php:186 +#: ../../Zotlabs/Module/Layouts.php:184 ../../Zotlabs/Module/Menu.php:118 +#: ../../Zotlabs/Module/New_channel.php:142 +#: ../../Zotlabs/Module/Blocks.php:159 ../../Zotlabs/Module/Webpages.php:193 msgid "Create" msgstr "Erstelle" #: ../../Zotlabs/Storage/Browser.php:231 ../../Zotlabs/Storage/Browser.php:308 #: ../../Zotlabs/Module/Cover_photo.php:357 -#: ../../Zotlabs/Module/Photos.php:825 ../../Zotlabs/Module/Photos.php:1364 -#: ../../Zotlabs/Module/Profile_photo.php:368 ../../include/widgets.php:1518 +#: ../../Zotlabs/Module/Photos.php:823 ../../Zotlabs/Module/Photos.php:1362 +#: ../../Zotlabs/Module/Profile_photo.php:390 +#: ../../Zotlabs/Module/Embedphotos.php:159 ../../include/widgets.php:1612 msgid "Upload" msgstr "Hochladen" #: ../../Zotlabs/Storage/Browser.php:235 ../../Zotlabs/Module/Chat.php:247 -#: ../../Zotlabs/Module/Admin.php:1223 ../../Zotlabs/Module/Settings.php:592 -#: ../../Zotlabs/Module/Settings.php:618 +#: ../../Zotlabs/Module/Admin.php:1223 ../../Zotlabs/Module/Settings.php:646 +#: ../../Zotlabs/Module/Settings.php:672 #: ../../Zotlabs/Module/Sharedwithme.php:99 msgid "Name" msgstr "Name" @@ -108,7 +255,7 @@ msgid "Type" msgstr "Typ" #: ../../Zotlabs/Storage/Browser.php:237 -#: ../../Zotlabs/Module/Sharedwithme.php:101 ../../include/text.php:1344 +#: ../../Zotlabs/Module/Sharedwithme.php:101 ../../include/text.php:1324 msgid "Size" msgstr "Größe" @@ -117,34 +264,32 @@ msgstr "Größe" msgid "Last Modified" msgstr "Zuletzt geändert" -#: ../../Zotlabs/Storage/Browser.php:240 ../../Zotlabs/Module/Blocks.php:157 -#: ../../Zotlabs/Module/Editblock.php:109 +#: ../../Zotlabs/Storage/Browser.php:240 ../../Zotlabs/Module/Editpost.php:84 #: ../../Zotlabs/Module/Connections.php:290 #: ../../Zotlabs/Module/Connections.php:310 -#: ../../Zotlabs/Module/Editpost.php:84 -#: ../../Zotlabs/Module/Editlayout.php:113 -#: ../../Zotlabs/Module/Editwebpage.php:146 -#: ../../Zotlabs/Module/Layouts.php:190 ../../Zotlabs/Module/Menu.php:112 -#: ../../Zotlabs/Module/Admin.php:2113 ../../Zotlabs/Module/Settings.php:652 -#: ../../Zotlabs/Module/Thing.php:260 ../../Zotlabs/Module/Webpages.php:187 -#: ../../Zotlabs/Lib/Apps.php:337 ../../Zotlabs/Lib/ThreadItem.php:106 -#: ../../include/channel.php:937 ../../include/channel.php:941 -#: ../../include/menu.php:108 ../../include/page_widgets.php:8 -#: ../../include/page_widgets.php:36 +#: ../../Zotlabs/Module/Editlayout.php:114 +#: ../../Zotlabs/Module/Editwebpage.php:145 +#: ../../Zotlabs/Module/Layouts.php:192 ../../Zotlabs/Module/Menu.php:112 +#: ../../Zotlabs/Module/Admin.php:2113 ../../Zotlabs/Module/Blocks.php:160 +#: ../../Zotlabs/Module/Editblock.php:109 +#: ../../Zotlabs/Module/Settings.php:706 ../../Zotlabs/Module/Thing.php:260 +#: ../../Zotlabs/Module/Webpages.php:194 ../../Zotlabs/Lib/Apps.php:341 +#: ../../Zotlabs/Lib/ThreadItem.php:106 ../../include/page_widgets.php:9 +#: ../../include/page_widgets.php:39 ../../include/channel.php:976 +#: ../../include/channel.php:980 ../../include/menu.php:108 msgid "Edit" msgstr "Bearbeiten" -#: ../../Zotlabs/Storage/Browser.php:241 ../../Zotlabs/Module/Blocks.php:159 -#: ../../Zotlabs/Module/Connedit.php:572 -#: ../../Zotlabs/Module/Editblock.php:134 +#: ../../Zotlabs/Storage/Browser.php:241 ../../Zotlabs/Module/Connedit.php:602 #: ../../Zotlabs/Module/Connections.php:263 -#: ../../Zotlabs/Module/Editlayout.php:136 -#: ../../Zotlabs/Module/Editwebpage.php:170 ../../Zotlabs/Module/Group.php:177 -#: ../../Zotlabs/Module/Photos.php:1173 ../../Zotlabs/Module/Admin.php:1039 +#: ../../Zotlabs/Module/Editlayout.php:137 +#: ../../Zotlabs/Module/Editwebpage.php:169 ../../Zotlabs/Module/Group.php:177 +#: ../../Zotlabs/Module/Photos.php:1171 ../../Zotlabs/Module/Admin.php:1039 #: ../../Zotlabs/Module/Admin.php:1213 ../../Zotlabs/Module/Admin.php:2114 -#: ../../Zotlabs/Module/Settings.php:653 ../../Zotlabs/Module/Thing.php:261 -#: ../../Zotlabs/Module/Webpages.php:189 ../../Zotlabs/Lib/Apps.php:338 -#: ../../Zotlabs/Lib/ThreadItem.php:126 ../../include/conversation.php:657 +#: ../../Zotlabs/Module/Blocks.php:162 ../../Zotlabs/Module/Editblock.php:134 +#: ../../Zotlabs/Module/Settings.php:707 ../../Zotlabs/Module/Thing.php:261 +#: ../../Zotlabs/Module/Webpages.php:196 ../../Zotlabs/Lib/Apps.php:342 +#: ../../Zotlabs/Lib/ThreadItem.php:126 ../../include/conversation.php:660 msgid "Delete" msgstr "Löschen" @@ -170,74 +315,73 @@ msgstr "Neuen Ordner anlegen" msgid "Upload file" msgstr "Datei hochladen" -#: ../../Zotlabs/Web/WebServer.php:120 ../../Zotlabs/Module/Dreport.php:10 -#: ../../Zotlabs/Module/Dreport.php:49 ../../Zotlabs/Module/Group.php:72 -#: ../../Zotlabs/Module/Like.php:284 ../../Zotlabs/Module/Import_items.php:112 +#: ../../Zotlabs/Web/WebServer.php:127 ../../Zotlabs/Module/Dreport.php:10 +#: ../../Zotlabs/Module/Dreport.php:66 ../../Zotlabs/Module/Group.php:72 +#: ../../Zotlabs/Module/Like.php:283 ../../Zotlabs/Module/Import_items.php:114 #: ../../Zotlabs/Module/Profperm.php:28 ../../Zotlabs/Module/Subthread.php:62 -#: ../../include/items.php:385 +#: ../../include/items.php:384 msgid "Permission denied" msgstr "Keine Berechtigung" -#: ../../Zotlabs/Web/WebServer.php:121 ../../Zotlabs/Web/Router.php:65 -#: ../../Zotlabs/Module/Achievements.php:34 ../../Zotlabs/Module/Blocks.php:73 -#: ../../Zotlabs/Module/Blocks.php:80 ../../Zotlabs/Module/Channel.php:105 -#: ../../Zotlabs/Module/Channel.php:226 ../../Zotlabs/Module/Channel.php:267 -#: ../../Zotlabs/Module/Chat.php:100 ../../Zotlabs/Module/Chat.php:105 -#: ../../Zotlabs/Module/Authtest.php:16 ../../Zotlabs/Module/Block.php:26 -#: ../../Zotlabs/Module/Block.php:76 ../../Zotlabs/Module/Bookmarks.php:61 -#: ../../Zotlabs/Module/Connedit.php:366 ../../Zotlabs/Module/Editblock.php:67 -#: ../../Zotlabs/Module/Common.php:39 ../../Zotlabs/Module/Connections.php:33 +#: ../../Zotlabs/Web/WebServer.php:128 ../../Zotlabs/Web/Router.php:65 +#: ../../Zotlabs/Module/Achievements.php:34 +#: ../../Zotlabs/Module/Connedit.php:390 ../../Zotlabs/Module/Id.php:76 +#: ../../Zotlabs/Module/Authtest.php:16 ../../Zotlabs/Module/Events.php:264 +#: ../../Zotlabs/Module/Bookmarks.php:61 ../../Zotlabs/Module/Editpost.php:17 +#: ../../Zotlabs/Module/Page.php:35 ../../Zotlabs/Module/Page.php:91 +#: ../../Zotlabs/Module/Connections.php:33 #: ../../Zotlabs/Module/Cover_photo.php:277 -#: ../../Zotlabs/Module/Cover_photo.php:290 -#: ../../Zotlabs/Module/Editpost.php:17 ../../Zotlabs/Module/Events.php:265 -#: ../../Zotlabs/Module/Editlayout.php:67 +#: ../../Zotlabs/Module/Cover_photo.php:290 ../../Zotlabs/Module/Chat.php:100 +#: ../../Zotlabs/Module/Chat.php:105 ../../Zotlabs/Module/Editlayout.php:67 #: ../../Zotlabs/Module/Editlayout.php:90 -#: ../../Zotlabs/Module/Editwebpage.php:69 -#: ../../Zotlabs/Module/Editwebpage.php:90 -#: ../../Zotlabs/Module/Editwebpage.php:105 -#: ../../Zotlabs/Module/Editwebpage.php:127 ../../Zotlabs/Module/Group.php:13 -#: ../../Zotlabs/Module/Api.php:13 ../../Zotlabs/Module/Api.php:18 -#: ../../Zotlabs/Module/Filestorage.php:24 -#: ../../Zotlabs/Module/Filestorage.php:79 -#: ../../Zotlabs/Module/Filestorage.php:94 -#: ../../Zotlabs/Module/Filestorage.php:121 ../../Zotlabs/Module/Item.php:210 -#: ../../Zotlabs/Module/Item.php:218 ../../Zotlabs/Module/Item.php:1070 +#: ../../Zotlabs/Module/Editwebpage.php:68 +#: ../../Zotlabs/Module/Editwebpage.php:89 +#: ../../Zotlabs/Module/Editwebpage.php:104 +#: ../../Zotlabs/Module/Editwebpage.php:126 ../../Zotlabs/Module/Group.php:13 +#: ../../Zotlabs/Module/Appman.php:75 ../../Zotlabs/Module/Pdledit.php:26 +#: ../../Zotlabs/Module/Filestorage.php:23 +#: ../../Zotlabs/Module/Filestorage.php:78 +#: ../../Zotlabs/Module/Filestorage.php:93 +#: ../../Zotlabs/Module/Filestorage.php:120 #: ../../Zotlabs/Module/Layouts.php:71 ../../Zotlabs/Module/Layouts.php:78 -#: ../../Zotlabs/Module/Layouts.php:89 ../../Zotlabs/Module/Id.php:76 -#: ../../Zotlabs/Module/Like.php:181 ../../Zotlabs/Module/Invite.php:17 -#: ../../Zotlabs/Module/Invite.php:91 ../../Zotlabs/Module/Locs.php:87 -#: ../../Zotlabs/Module/Mail.php:129 ../../Zotlabs/Module/Manage.php:10 -#: ../../Zotlabs/Module/Menu.php:78 ../../Zotlabs/Module/Message.php:18 -#: ../../Zotlabs/Module/Mood.php:116 ../../Zotlabs/Module/Network.php:17 +#: ../../Zotlabs/Module/Layouts.php:89 ../../Zotlabs/Module/Like.php:181 +#: ../../Zotlabs/Module/Profiles.php:203 ../../Zotlabs/Module/Profiles.php:601 +#: ../../Zotlabs/Module/Item.php:213 ../../Zotlabs/Module/Item.php:221 +#: ../../Zotlabs/Module/Item.php:1071 ../../Zotlabs/Module/Photos.php:73 +#: ../../Zotlabs/Module/Invite.php:17 ../../Zotlabs/Module/Invite.php:91 +#: ../../Zotlabs/Module/Locs.php:87 ../../Zotlabs/Module/Mail.php:121 +#: ../../Zotlabs/Module/Manage.php:10 ../../Zotlabs/Module/Menu.php:78 +#: ../../Zotlabs/Module/Message.php:18 ../../Zotlabs/Module/Mood.php:116 +#: ../../Zotlabs/Module/Network.php:15 ../../Zotlabs/Module/Channel.php:104 +#: ../../Zotlabs/Module/Channel.php:225 ../../Zotlabs/Module/Channel.php:266 #: ../../Zotlabs/Module/Mitem.php:115 ../../Zotlabs/Module/New_channel.php:77 #: ../../Zotlabs/Module/New_channel.php:104 -#: ../../Zotlabs/Module/Notifications.php:70 -#: ../../Zotlabs/Module/Photos.php:75 ../../Zotlabs/Module/Page.php:35 -#: ../../Zotlabs/Module/Page.php:90 ../../Zotlabs/Module/Pdledit.php:26 -#: ../../Zotlabs/Module/Poke.php:137 ../../Zotlabs/Module/Profile.php:68 -#: ../../Zotlabs/Module/Profile.php:76 ../../Zotlabs/Module/Profiles.php:203 -#: ../../Zotlabs/Module/Profiles.php:601 -#: ../../Zotlabs/Module/Profile_photo.php:256 -#: ../../Zotlabs/Module/Profile_photo.php:269 -#: ../../Zotlabs/Module/Rate.php:113 ../../Zotlabs/Module/Appman.php:75 -#: ../../Zotlabs/Module/Register.php:77 ../../Zotlabs/Module/Regmod.php:21 +#: ../../Zotlabs/Module/Notifications.php:70 ../../Zotlabs/Module/Poke.php:137 +#: ../../Zotlabs/Module/Profile.php:68 ../../Zotlabs/Module/Profile.php:76 +#: ../../Zotlabs/Module/Block.php:26 ../../Zotlabs/Module/Block.php:76 +#: ../../Zotlabs/Module/Profile_photo.php:265 +#: ../../Zotlabs/Module/Profile_photo.php:278 +#: ../../Zotlabs/Module/Blocks.php:73 ../../Zotlabs/Module/Blocks.php:80 +#: ../../Zotlabs/Module/Rate.php:113 ../../Zotlabs/Module/Editblock.php:67 +#: ../../Zotlabs/Module/Common.php:39 ../../Zotlabs/Module/Register.php:77 +#: ../../Zotlabs/Module/Regmod.php:21 #: ../../Zotlabs/Module/Service_limits.php:11 -#: ../../Zotlabs/Module/Settings.php:572 ../../Zotlabs/Module/Setup.php:215 -#: ../../Zotlabs/Module/Sharedwithme.php:11 +#: ../../Zotlabs/Module/Settings.php:626 ../../Zotlabs/Module/Setup.php:215 +#: ../../Zotlabs/Module/Sharedwithme.php:11 ../../Zotlabs/Module/Thing.php:274 +#: ../../Zotlabs/Module/Thing.php:294 ../../Zotlabs/Module/Thing.php:331 #: ../../Zotlabs/Module/Sources.php:74 ../../Zotlabs/Module/Suggest.php:30 -#: ../../Zotlabs/Module/Thing.php:274 ../../Zotlabs/Module/Thing.php:294 -#: ../../Zotlabs/Module/Thing.php:331 -#: ../../Zotlabs/Module/Viewconnections.php:25 -#: ../../Zotlabs/Module/Viewconnections.php:30 -#: ../../Zotlabs/Module/Viewsrc.php:18 ../../Zotlabs/Module/Webpages.php:74 -#: ../../Zotlabs/Lib/Chatroom.php:137 ../../include/items.php:3438 -#: ../../include/attach.php:141 ../../include/attach.php:189 -#: ../../include/attach.php:252 ../../include/attach.php:266 -#: ../../include/attach.php:273 ../../include/attach.php:338 -#: ../../include/attach.php:352 ../../include/attach.php:359 -#: ../../include/attach.php:437 ../../include/attach.php:895 -#: ../../include/attach.php:966 ../../include/attach.php:1118 -#: ../../include/photos.php:27 +#: ../../Zotlabs/Module/Webpages.php:73 +#: ../../Zotlabs/Module/Viewconnections.php:28 +#: ../../Zotlabs/Module/Viewconnections.php:33 +#: ../../Zotlabs/Module/Viewsrc.php:18 ../../Zotlabs/Module/Api.php:13 +#: ../../Zotlabs/Module/Api.php:18 ../../Zotlabs/Lib/Chatroom.php:137 +#: ../../include/photos.php:27 ../../include/attach.php:141 +#: ../../include/attach.php:189 ../../include/attach.php:252 +#: ../../include/attach.php:266 ../../include/attach.php:273 +#: ../../include/attach.php:338 ../../include/attach.php:352 +#: ../../include/attach.php:359 ../../include/attach.php:439 +#: ../../include/attach.php:901 ../../include/attach.php:972 +#: ../../include/attach.php:1124 ../../include/items.php:3448 msgid "Permission denied." msgstr "Berechtigung verweigert." @@ -245,9 +389,9 @@ msgstr "Berechtigung verweigert." msgid "Not Found" msgstr "Nicht gefunden" -#: ../../Zotlabs/Web/Router.php:149 ../../Zotlabs/Module/Block.php:79 -#: ../../Zotlabs/Module/Display.php:117 ../../Zotlabs/Module/Help.php:97 -#: ../../Zotlabs/Module/Page.php:93 +#: ../../Zotlabs/Web/Router.php:149 ../../Zotlabs/Module/Display.php:118 +#: ../../Zotlabs/Module/Page.php:94 ../../Zotlabs/Module/Help.php:97 +#: ../../Zotlabs/Module/Block.php:79 msgid "Page not found." msgstr "Seite nicht gefunden." @@ -263,243 +407,20 @@ msgstr "Fern-Authentifizierung blockiert. Du bist lokal auf diesem Server angeme msgid "Welcome %s. Remote authentication successful." msgstr "Willkommen %s. Entfernte Authentifizierung erfolgreich." -#: ../../Zotlabs/Module/Achievements.php:15 ../../Zotlabs/Module/Blocks.php:33 -#: ../../Zotlabs/Module/Connect.php:17 ../../Zotlabs/Module/Editblock.php:31 -#: ../../Zotlabs/Module/Editlayout.php:31 -#: ../../Zotlabs/Module/Editwebpage.php:33 -#: ../../Zotlabs/Module/Filestorage.php:60 ../../Zotlabs/Module/Hcard.php:12 -#: ../../Zotlabs/Module/Layouts.php:31 ../../Zotlabs/Module/Profile.php:20 -#: ../../Zotlabs/Module/Webpages.php:34 ../../include/channel.php:837 +#: ../../Zotlabs/Module/Achievements.php:15 +#: ../../Zotlabs/Module/Connect.php:17 ../../Zotlabs/Module/Editlayout.php:31 +#: ../../Zotlabs/Module/Editwebpage.php:32 ../../Zotlabs/Module/Hcard.php:12 +#: ../../Zotlabs/Module/Filestorage.php:59 ../../Zotlabs/Module/Layouts.php:31 +#: ../../Zotlabs/Module/Profile.php:20 ../../Zotlabs/Module/Blocks.php:33 +#: ../../Zotlabs/Module/Editblock.php:31 ../../Zotlabs/Module/Webpages.php:33 +#: ../../include/channel.php:876 msgid "Requested profile is not available." -msgstr "Erwünschte Profil ist nicht verfügbar." +msgstr "Das angefragte Profil ist nicht verfügbar." #: ../../Zotlabs/Module/Achievements.php:38 msgid "Some blurb about what to do when you're new here" msgstr "Ein Hinweis, was man tun kann, wenn man neu hier ist" -#: ../../Zotlabs/Module/Blocks.php:97 ../../Zotlabs/Module/Blocks.php:152 -#: ../../Zotlabs/Module/Editblock.php:108 -msgid "Block Name" -msgstr "Block-Name" - -#: ../../Zotlabs/Module/Blocks.php:151 ../../include/text.php:2265 -msgid "Blocks" -msgstr "Blöcke" - -#: ../../Zotlabs/Module/Blocks.php:153 -msgid "Block Title" -msgstr "Titel des Blocks" - -#: ../../Zotlabs/Module/Blocks.php:154 ../../Zotlabs/Module/Layouts.php:188 -#: ../../Zotlabs/Module/Menu.php:114 ../../Zotlabs/Module/Webpages.php:198 -#: ../../include/page_widgets.php:44 -msgid "Created" -msgstr "Erstellt" - -#: ../../Zotlabs/Module/Blocks.php:155 ../../Zotlabs/Module/Layouts.php:189 -#: ../../Zotlabs/Module/Menu.php:115 ../../Zotlabs/Module/Webpages.php:199 -#: ../../include/page_widgets.php:45 -msgid "Edited" -msgstr "Geändert" - -#: ../../Zotlabs/Module/Blocks.php:158 ../../Zotlabs/Module/Layouts.php:191 -#: ../../Zotlabs/Module/Photos.php:1072 ../../Zotlabs/Module/Webpages.php:188 -#: ../../include/conversation.php:1208 -msgid "Share" -msgstr "Teilen" - -#: ../../Zotlabs/Module/Blocks.php:163 ../../Zotlabs/Module/Layouts.php:195 -#: ../../Zotlabs/Module/Pubsites.php:47 ../../Zotlabs/Module/Webpages.php:193 -#: ../../include/page_widgets.php:39 -msgid "View" -msgstr "Ansicht" - -#: ../../Zotlabs/Module/Cal.php:62 ../../Zotlabs/Module/Block.php:43 -#: ../../Zotlabs/Module/Page.php:56 ../../Zotlabs/Module/Wall_upload.php:33 -msgid "Channel not found." -msgstr "Kanal nicht gefunden." - -#: ../../Zotlabs/Module/Cal.php:69 -msgid "Permissions denied." -msgstr "Berechtigung verweigert." - -#: ../../Zotlabs/Module/Cal.php:259 ../../Zotlabs/Module/Events.php:588 -msgid "l, F j" -msgstr "l, j. F" - -#: ../../Zotlabs/Module/Cal.php:308 ../../Zotlabs/Module/Events.php:637 -#: ../../include/text.php:1732 -msgid "Link to Source" -msgstr "Link zur Quelle" - -#: ../../Zotlabs/Module/Cal.php:331 ../../Zotlabs/Module/Events.php:665 -msgid "Edit Event" -msgstr "Termin bearbeiten" - -#: ../../Zotlabs/Module/Cal.php:331 ../../Zotlabs/Module/Events.php:665 -msgid "Create Event" -msgstr "Termin anlegen" - -#: ../../Zotlabs/Module/Cal.php:332 ../../Zotlabs/Module/Cal.php:339 -#: ../../Zotlabs/Module/Events.php:666 ../../Zotlabs/Module/Events.php:673 -#: ../../Zotlabs/Module/Photos.php:949 -msgid "Previous" -msgstr "Voriges" - -#: ../../Zotlabs/Module/Cal.php:333 ../../Zotlabs/Module/Cal.php:340 -#: ../../Zotlabs/Module/Events.php:667 ../../Zotlabs/Module/Events.php:674 -#: ../../Zotlabs/Module/Photos.php:958 ../../Zotlabs/Module/Setup.php:267 -msgid "Next" -msgstr "Nächste" - -#: ../../Zotlabs/Module/Cal.php:334 ../../Zotlabs/Module/Events.php:668 -#: ../../include/widgets.php:755 -msgid "Export" -msgstr "Exportieren" - -#: ../../Zotlabs/Module/Cal.php:337 ../../Zotlabs/Module/Events.php:671 -#: ../../include/widgets.php:756 -msgid "Import" -msgstr "Import" - -#: ../../Zotlabs/Module/Cal.php:338 ../../Zotlabs/Module/Chat.php:196 -#: ../../Zotlabs/Module/Chat.php:238 ../../Zotlabs/Module/Connect.php:98 -#: ../../Zotlabs/Module/Connedit.php:731 ../../Zotlabs/Module/Events.php:475 -#: ../../Zotlabs/Module/Events.php:672 ../../Zotlabs/Module/Group.php:85 -#: ../../Zotlabs/Module/Filestorage.php:162 -#: ../../Zotlabs/Module/Import.php:550 -#: ../../Zotlabs/Module/Import_items.php:120 -#: ../../Zotlabs/Module/Invite.php:146 ../../Zotlabs/Module/Locs.php:121 -#: ../../Zotlabs/Module/Mail.php:378 ../../Zotlabs/Module/Mood.php:139 -#: ../../Zotlabs/Module/Mitem.php:235 ../../Zotlabs/Module/Photos.php:677 -#: ../../Zotlabs/Module/Photos.php:1052 ../../Zotlabs/Module/Photos.php:1092 -#: ../../Zotlabs/Module/Photos.php:1210 ../../Zotlabs/Module/Pconfig.php:107 -#: ../../Zotlabs/Module/Pdledit.php:66 ../../Zotlabs/Module/Poke.php:186 -#: ../../Zotlabs/Module/Profiles.php:687 ../../Zotlabs/Module/Rate.php:170 -#: ../../Zotlabs/Module/Admin.php:492 ../../Zotlabs/Module/Admin.php:688 -#: ../../Zotlabs/Module/Admin.php:771 ../../Zotlabs/Module/Admin.php:1032 -#: ../../Zotlabs/Module/Admin.php:1211 ../../Zotlabs/Module/Admin.php:1421 -#: ../../Zotlabs/Module/Admin.php:1648 ../../Zotlabs/Module/Admin.php:1733 -#: ../../Zotlabs/Module/Admin.php:2116 ../../Zotlabs/Module/Appman.php:126 -#: ../../Zotlabs/Module/Settings.php:590 ../../Zotlabs/Module/Settings.php:703 -#: ../../Zotlabs/Module/Settings.php:731 ../../Zotlabs/Module/Settings.php:754 -#: ../../Zotlabs/Module/Settings.php:842 -#: ../../Zotlabs/Module/Settings.php:1034 ../../Zotlabs/Module/Setup.php:312 -#: ../../Zotlabs/Module/Setup.php:353 ../../Zotlabs/Module/Sources.php:114 -#: ../../Zotlabs/Module/Sources.php:149 ../../Zotlabs/Module/Thing.php:316 -#: ../../Zotlabs/Module/Thing.php:362 ../../Zotlabs/Module/Xchan.php:15 -#: ../../Zotlabs/Lib/ThreadItem.php:710 ../../include/widgets.php:757 -#: ../../include/widgets.php:769 ../../include/js_strings.php:22 -#: ../../view/theme/redbasic/php/config.php:99 -msgid "Submit" -msgstr "Bestätigen" - -#: ../../Zotlabs/Module/Cal.php:341 ../../Zotlabs/Module/Events.php:675 -msgid "Today" -msgstr "Heute" - -#: ../../Zotlabs/Module/Channel.php:29 ../../Zotlabs/Module/Chat.php:25 -msgid "You must be logged in to see this page." -msgstr "Du musst angemeldet sein, um diese Seite betrachten zu können." - -#: ../../Zotlabs/Module/Channel.php:41 -msgid "Posts and comments" -msgstr "Beiträge und Kommentare" - -#: ../../Zotlabs/Module/Channel.php:42 -msgid "Only posts" -msgstr "Nur Beiträge" - -#: ../../Zotlabs/Module/Channel.php:102 -msgid "Insufficient permissions. Request redirected to profile page." -msgstr "Unzureichende Zugriffsrechte. Die Anfrage wurde zur Profil-Seite umgeleitet." - -#: ../../Zotlabs/Module/Chat.php:181 -msgid "Room not found" -msgstr "Chatraum nicht gefunden" - -#: ../../Zotlabs/Module/Chat.php:197 -msgid "Leave Room" -msgstr "Raum verlassen" - -#: ../../Zotlabs/Module/Chat.php:198 -msgid "Delete Room" -msgstr "Raum löschen" - -#: ../../Zotlabs/Module/Chat.php:199 -msgid "I am away right now" -msgstr "Ich bin gerade nicht da" - -#: ../../Zotlabs/Module/Chat.php:200 -msgid "I am online" -msgstr "Ich bin online" - -#: ../../Zotlabs/Module/Chat.php:202 -msgid "Bookmark this room" -msgstr "Lesezeichen für diesen Raum setzen" - -#: ../../Zotlabs/Module/Chat.php:205 ../../Zotlabs/Module/Mail.php:205 -#: ../../Zotlabs/Module/Mail.php:314 ../../include/conversation.php:1176 -msgid "Please enter a link URL:" -msgstr "Gib eine URL ein:" - -#: ../../Zotlabs/Module/Chat.php:206 ../../Zotlabs/Module/Mail.php:258 -#: ../../Zotlabs/Module/Mail.php:383 ../../Zotlabs/Lib/ThreadItem.php:722 -#: ../../include/conversation.php:1256 -msgid "Encrypt text" -msgstr "Text verschlüsseln" - -#: ../../Zotlabs/Module/Chat.php:207 ../../Zotlabs/Module/Editblock.php:111 -#: ../../Zotlabs/Module/Editwebpage.php:147 ../../Zotlabs/Module/Mail.php:252 -#: ../../Zotlabs/Module/Mail.php:377 ../../include/conversation.php:1143 -msgid "Insert web link" -msgstr "Link einfügen" - -#: ../../Zotlabs/Module/Chat.php:218 -msgid "Feature disabled." -msgstr "Funktion deaktiviert." - -#: ../../Zotlabs/Module/Chat.php:232 -msgid "New Chatroom" -msgstr "Neuer Chatraum" - -#: ../../Zotlabs/Module/Chat.php:233 -msgid "Chatroom name" -msgstr "Chatraumname" - -#: ../../Zotlabs/Module/Chat.php:234 -msgid "Expiration of chats (minutes)" -msgstr "Verfall von Chats (Minuten)" - -#: ../../Zotlabs/Module/Chat.php:235 ../../Zotlabs/Module/Filestorage.php:153 -#: ../../Zotlabs/Module/Photos.php:671 ../../Zotlabs/Module/Photos.php:1045 -#: ../../Zotlabs/Module/Thing.php:313 ../../Zotlabs/Module/Thing.php:359 -#: ../../include/acl_selectors.php:283 -msgid "Permissions" -msgstr "Berechtigungen" - -#: ../../Zotlabs/Module/Chat.php:246 -#, php-format -msgid "%1$s's Chatrooms" -msgstr "%1$ss Chaträume" - -#: ../../Zotlabs/Module/Chat.php:251 -msgid "No chatrooms available" -msgstr "Keine Chaträume verfügbar" - -#: ../../Zotlabs/Module/Chat.php:252 ../../Zotlabs/Module/Manage.php:143 -#: ../../Zotlabs/Module/Profiles.php:778 -msgid "Create New" -msgstr "Neu anlegen" - -#: ../../Zotlabs/Module/Chat.php:255 -msgid "Expiration" -msgstr "Verfall" - -#: ../../Zotlabs/Module/Chat.php:256 -msgid "min" -msgstr "min" - #: ../../Zotlabs/Module/Chatsvc.php:117 msgid "Away" msgstr "Abwesend" @@ -508,65 +429,6 @@ msgstr "Abwesend" msgid "Online" msgstr "Online" -#: ../../Zotlabs/Module/Block.php:31 ../../Zotlabs/Module/Page.php:40 -msgid "Invalid item." -msgstr "Ungültiges Element." - -#: ../../Zotlabs/Module/Bookmarks.php:53 -msgid "Bookmark added" -msgstr "Lesezeichen hinzugefügt" - -#: ../../Zotlabs/Module/Bookmarks.php:75 -msgid "My Bookmarks" -msgstr "Meine Lesezeichen" - -#: ../../Zotlabs/Module/Bookmarks.php:86 -msgid "My Connections Bookmarks" -msgstr "Lesezeichen meiner Kontakte" - -#: ../../Zotlabs/Module/Connect.php:61 ../../Zotlabs/Module/Connect.php:109 -msgid "Continue" -msgstr "Fortfahren" - -#: ../../Zotlabs/Module/Connect.php:90 -msgid "Premium Channel Setup" -msgstr "Premium-Kanal-Einrichtung" - -#: ../../Zotlabs/Module/Connect.php:92 -msgid "Enable premium channel connection restrictions" -msgstr "Einschränkungen für einen Premium-Kanal aktivieren" - -#: ../../Zotlabs/Module/Connect.php:93 -msgid "" -"Please enter your restrictions or conditions, such as paypal receipt, usage " -"guidelines, etc." -msgstr "Bitte gib Deine Nutzungsbedingungen ein, z.B. Paypal-Quittung, Richtlinien etc." - -#: ../../Zotlabs/Module/Connect.php:95 ../../Zotlabs/Module/Connect.php:115 -msgid "" -"This channel may require additional steps or acknowledgement of the " -"following conditions prior to connecting:" -msgstr "Unter Umständen sind weitere Schritte oder die Bestätigung der folgenden Bedingungen vor dem Verbinden mit diesem Kanal nötig." - -#: ../../Zotlabs/Module/Connect.php:96 -msgid "" -"Potential connections will then see the following text before proceeding:" -msgstr "Potentielle Kontakte werden den folgenden Text sehen, bevor fortgefahren wird:" - -#: ../../Zotlabs/Module/Connect.php:97 ../../Zotlabs/Module/Connect.php:118 -msgid "" -"By continuing, I certify that I have complied with any instructions provided" -" on this page." -msgstr "Indem ich fortfahre, bestätige ich die Erfüllung aller Anweisungen auf dieser Seite." - -#: ../../Zotlabs/Module/Connect.php:106 -msgid "(No specific instructions have been provided by the channel owner.)" -msgstr "(Der Kanal-Besitzer hat keine speziellen Anweisungen hinterlegt.)" - -#: ../../Zotlabs/Module/Connect.php:114 -msgid "Restricted or Premium Channel" -msgstr "Eingeschränkter oder Premium-Kanal" - #: ../../Zotlabs/Module/Connedit.php:80 msgid "Could not access contact record." msgstr "Konnte nicht auf den Kontakteintrag zugreifen." @@ -575,317 +437,350 @@ msgstr "Konnte nicht auf den Kontakteintrag zugreifen." msgid "Could not locate selected profile." msgstr "Gewähltes Profil nicht gefunden." -#: ../../Zotlabs/Module/Connedit.php:227 +#: ../../Zotlabs/Module/Connedit.php:248 msgid "Connection updated." msgstr "Verbindung aktualisiert." -#: ../../Zotlabs/Module/Connedit.php:229 +#: ../../Zotlabs/Module/Connedit.php:250 msgid "Failed to update connection record." msgstr "Konnte den Verbindungseintrag nicht aktualisieren." -#: ../../Zotlabs/Module/Connedit.php:276 +#: ../../Zotlabs/Module/Connedit.php:300 msgid "is now connected to" msgstr "ist jetzt verbunden mit" -#: ../../Zotlabs/Module/Connedit.php:379 ../../Zotlabs/Module/Connedit.php:654 -#: ../../Zotlabs/Module/Events.php:459 ../../Zotlabs/Module/Events.php:460 -#: ../../Zotlabs/Module/Events.php:469 ../../Zotlabs/Module/Api.php:89 -#: ../../Zotlabs/Module/Filestorage.php:157 -#: ../../Zotlabs/Module/Filestorage.php:165 ../../Zotlabs/Module/Menu.php:100 -#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Mitem.php:158 -#: ../../Zotlabs/Module/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:232 -#: ../../Zotlabs/Module/Mitem.php:233 ../../Zotlabs/Module/Photos.php:666 -#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Admin.php:459 -#: ../../Zotlabs/Module/Removeme.php:61 ../../Zotlabs/Module/Settings.php:581 +#: ../../Zotlabs/Module/Connedit.php:403 ../../Zotlabs/Module/Connedit.php:685 +#: ../../Zotlabs/Module/Events.php:458 ../../Zotlabs/Module/Events.php:459 +#: ../../Zotlabs/Module/Events.php:468 +#: ../../Zotlabs/Module/Filestorage.php:156 +#: ../../Zotlabs/Module/Filestorage.php:164 +#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Photos.php:664 +#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 +#: ../../Zotlabs/Module/Mitem.php:158 ../../Zotlabs/Module/Mitem.php:159 +#: ../../Zotlabs/Module/Mitem.php:232 ../../Zotlabs/Module/Mitem.php:233 +#: ../../Zotlabs/Module/Admin.php:459 ../../Zotlabs/Module/Removeme.php:63 +#: ../../Zotlabs/Module/Settings.php:635 ../../Zotlabs/Module/Api.php:89 #: ../../include/dir_fns.php:143 ../../include/dir_fns.php:144 #: ../../include/dir_fns.php:145 ../../view/theme/redbasic/php/config.php:105 -#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1707 +#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1708 msgid "No" msgstr "Nein" -#: ../../Zotlabs/Module/Connedit.php:379 ../../Zotlabs/Module/Events.php:459 -#: ../../Zotlabs/Module/Events.php:460 ../../Zotlabs/Module/Events.php:469 -#: ../../Zotlabs/Module/Api.php:88 ../../Zotlabs/Module/Filestorage.php:157 -#: ../../Zotlabs/Module/Filestorage.php:165 ../../Zotlabs/Module/Menu.php:100 -#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Mitem.php:158 -#: ../../Zotlabs/Module/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:232 -#: ../../Zotlabs/Module/Mitem.php:233 ../../Zotlabs/Module/Photos.php:666 -#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Admin.php:461 -#: ../../Zotlabs/Module/Removeme.php:61 ../../Zotlabs/Module/Settings.php:581 +#: ../../Zotlabs/Module/Connedit.php:403 ../../Zotlabs/Module/Events.php:458 +#: ../../Zotlabs/Module/Events.php:459 ../../Zotlabs/Module/Events.php:468 +#: ../../Zotlabs/Module/Filestorage.php:156 +#: ../../Zotlabs/Module/Filestorage.php:164 +#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Photos.php:664 +#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 +#: ../../Zotlabs/Module/Mitem.php:158 ../../Zotlabs/Module/Mitem.php:159 +#: ../../Zotlabs/Module/Mitem.php:232 ../../Zotlabs/Module/Mitem.php:233 +#: ../../Zotlabs/Module/Admin.php:461 ../../Zotlabs/Module/Removeme.php:63 +#: ../../Zotlabs/Module/Settings.php:635 ../../Zotlabs/Module/Api.php:88 #: ../../include/dir_fns.php:143 ../../include/dir_fns.php:144 #: ../../include/dir_fns.php:145 ../../view/theme/redbasic/php/config.php:105 -#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1707 +#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1708 msgid "Yes" msgstr "Ja" -#: ../../Zotlabs/Module/Connedit.php:411 +#: ../../Zotlabs/Module/Connedit.php:435 msgid "Could not access address book record." msgstr "Konnte nicht auf den Adressbuch-Eintrag zugreifen." -#: ../../Zotlabs/Module/Connedit.php:425 +#: ../../Zotlabs/Module/Connedit.php:455 msgid "Refresh failed - channel is currently unavailable." msgstr "Aktualisierung fehlgeschlagen – der Kanal ist im Moment nicht erreichbar." -#: ../../Zotlabs/Module/Connedit.php:440 ../../Zotlabs/Module/Connedit.php:449 -#: ../../Zotlabs/Module/Connedit.php:458 ../../Zotlabs/Module/Connedit.php:467 -#: ../../Zotlabs/Module/Connedit.php:480 +#: ../../Zotlabs/Module/Connedit.php:470 ../../Zotlabs/Module/Connedit.php:479 +#: ../../Zotlabs/Module/Connedit.php:488 ../../Zotlabs/Module/Connedit.php:497 +#: ../../Zotlabs/Module/Connedit.php:510 msgid "Unable to set address book parameters." msgstr "Konnte die Adressbuch-Parameter nicht setzen." -#: ../../Zotlabs/Module/Connedit.php:503 +#: ../../Zotlabs/Module/Connedit.php:533 msgid "Connection has been removed." msgstr "Verbindung wurde gelöscht." -#: ../../Zotlabs/Module/Connedit.php:519 ../../Zotlabs/Lib/Apps.php:219 -#: ../../include/nav.php:86 ../../include/conversation.php:954 +#: ../../Zotlabs/Module/Connedit.php:549 ../../Zotlabs/Lib/Apps.php:221 +#: ../../include/nav.php:86 ../../include/conversation.php:957 msgid "View Profile" msgstr "Profil ansehen" -#: ../../Zotlabs/Module/Connedit.php:522 +#: ../../Zotlabs/Module/Connedit.php:552 #, php-format msgid "View %s's profile" msgstr "%ss Profil ansehen" -#: ../../Zotlabs/Module/Connedit.php:526 +#: ../../Zotlabs/Module/Connedit.php:556 msgid "Refresh Permissions" msgstr "Zugriffsrechte neu laden" -#: ../../Zotlabs/Module/Connedit.php:529 +#: ../../Zotlabs/Module/Connedit.php:559 msgid "Fetch updated permissions" msgstr "Aktualisierte Zugriffsrechte abfragen" -#: ../../Zotlabs/Module/Connedit.php:533 +#: ../../Zotlabs/Module/Connedit.php:563 msgid "Recent Activity" msgstr "Kürzliche Aktivitäten" -#: ../../Zotlabs/Module/Connedit.php:536 +#: ../../Zotlabs/Module/Connedit.php:566 msgid "View recent posts and comments" msgstr "Betrachte die neuesten Beiträge und Kommentare" -#: ../../Zotlabs/Module/Connedit.php:540 ../../Zotlabs/Module/Admin.php:1041 +#: ../../Zotlabs/Module/Connedit.php:570 ../../Zotlabs/Module/Admin.php:1041 msgid "Unblock" msgstr "Freigeben" -#: ../../Zotlabs/Module/Connedit.php:540 ../../Zotlabs/Module/Admin.php:1040 +#: ../../Zotlabs/Module/Connedit.php:570 ../../Zotlabs/Module/Admin.php:1040 msgid "Block" msgstr "Blockieren" -#: ../../Zotlabs/Module/Connedit.php:543 +#: ../../Zotlabs/Module/Connedit.php:573 msgid "Block (or Unblock) all communications with this connection" msgstr "Jegliche Kommunikation mit dieser Verbindung blockieren/zulassen" -#: ../../Zotlabs/Module/Connedit.php:544 +#: ../../Zotlabs/Module/Connedit.php:574 msgid "This connection is blocked!" msgstr "Die Verbindung ist geblockt!" -#: ../../Zotlabs/Module/Connedit.php:548 +#: ../../Zotlabs/Module/Connedit.php:578 msgid "Unignore" msgstr "Nicht ignorieren" -#: ../../Zotlabs/Module/Connedit.php:548 +#: ../../Zotlabs/Module/Connedit.php:578 #: ../../Zotlabs/Module/Connections.php:277 #: ../../Zotlabs/Module/Notifications.php:55 msgid "Ignore" msgstr "Ignorieren" -#: ../../Zotlabs/Module/Connedit.php:551 +#: ../../Zotlabs/Module/Connedit.php:581 msgid "Ignore (or Unignore) all inbound communications from this connection" msgstr "Jegliche eingehende Kommunikation von dieser Verbindung ignorieren/zulassen" -#: ../../Zotlabs/Module/Connedit.php:552 +#: ../../Zotlabs/Module/Connedit.php:582 msgid "This connection is ignored!" msgstr "Die Verbindung wird ignoriert!" -#: ../../Zotlabs/Module/Connedit.php:556 +#: ../../Zotlabs/Module/Connedit.php:586 msgid "Unarchive" msgstr "Aus Archiv zurückholen" -#: ../../Zotlabs/Module/Connedit.php:556 +#: ../../Zotlabs/Module/Connedit.php:586 msgid "Archive" msgstr "Archivieren" -#: ../../Zotlabs/Module/Connedit.php:559 +#: ../../Zotlabs/Module/Connedit.php:589 msgid "" "Archive (or Unarchive) this connection - mark channel dead but keep content" msgstr "Verbindung archivieren/aus dem Archiv zurückholen (Archiv = Kanal als erloschen markieren, aber die Beiträge behalten)" -#: ../../Zotlabs/Module/Connedit.php:560 +#: ../../Zotlabs/Module/Connedit.php:590 msgid "This connection is archived!" msgstr "Die Verbindung ist archiviert!" -#: ../../Zotlabs/Module/Connedit.php:564 +#: ../../Zotlabs/Module/Connedit.php:594 msgid "Unhide" msgstr "Wieder sichtbar machen" -#: ../../Zotlabs/Module/Connedit.php:564 +#: ../../Zotlabs/Module/Connedit.php:594 msgid "Hide" msgstr "Verstecken" -#: ../../Zotlabs/Module/Connedit.php:567 +#: ../../Zotlabs/Module/Connedit.php:597 msgid "Hide or Unhide this connection from your other connections" msgstr "Diese Verbindung vor anderen Verbindungen verstecken/zeigen" -#: ../../Zotlabs/Module/Connedit.php:568 +#: ../../Zotlabs/Module/Connedit.php:598 msgid "This connection is hidden!" msgstr "Die Verbindung ist versteckt!" -#: ../../Zotlabs/Module/Connedit.php:575 +#: ../../Zotlabs/Module/Connedit.php:605 msgid "Delete this connection" msgstr "Verbindung löschen" -#: ../../Zotlabs/Module/Connedit.php:590 ../../include/widgets.php:493 +#: ../../Zotlabs/Module/Connedit.php:620 ../../include/widgets.php:493 msgid "Me" msgstr "Ich" -#: ../../Zotlabs/Module/Connedit.php:591 ../../include/widgets.php:494 +#: ../../Zotlabs/Module/Connedit.php:621 ../../include/widgets.php:494 msgid "Family" msgstr "Familie" -#: ../../Zotlabs/Module/Connedit.php:592 ../../Zotlabs/Module/Settings.php:342 -#: ../../Zotlabs/Module/Settings.php:346 ../../Zotlabs/Module/Settings.php:347 -#: ../../Zotlabs/Module/Settings.php:350 ../../Zotlabs/Module/Settings.php:361 -#: ../../include/widgets.php:495 ../../include/selectors.php:123 -#: ../../include/channel.php:389 ../../include/channel.php:390 -#: ../../include/channel.php:397 +#: ../../Zotlabs/Module/Connedit.php:622 ../../Zotlabs/Module/Settings.php:391 +#: ../../Zotlabs/Module/Settings.php:395 ../../Zotlabs/Module/Settings.php:396 +#: ../../Zotlabs/Module/Settings.php:399 ../../Zotlabs/Module/Settings.php:410 +#: ../../include/channel.php:402 ../../include/channel.php:403 +#: ../../include/channel.php:410 ../../include/selectors.php:123 +#: ../../include/widgets.php:495 msgid "Friends" msgstr "Freunde" -#: ../../Zotlabs/Module/Connedit.php:593 ../../include/widgets.php:496 +#: ../../Zotlabs/Module/Connedit.php:623 ../../include/widgets.php:496 msgid "Acquaintances" msgstr "Bekannte" -#: ../../Zotlabs/Module/Connedit.php:594 +#: ../../Zotlabs/Module/Connedit.php:624 #: ../../Zotlabs/Module/Connections.php:92 #: ../../Zotlabs/Module/Connections.php:107 ../../include/widgets.php:497 msgid "All" msgstr "Alle" -#: ../../Zotlabs/Module/Connedit.php:654 +#: ../../Zotlabs/Module/Connedit.php:685 msgid "Approve this connection" msgstr "Verbindung genehmigen" -#: ../../Zotlabs/Module/Connedit.php:654 +#: ../../Zotlabs/Module/Connedit.php:685 msgid "Accept connection to allow communication" msgstr "Akzeptiere die Verbindung, um Kommunikation zu ermöglichen" -#: ../../Zotlabs/Module/Connedit.php:659 +#: ../../Zotlabs/Module/Connedit.php:690 msgid "Set Affinity" msgstr "Beziehung festlegen" -#: ../../Zotlabs/Module/Connedit.php:662 +#: ../../Zotlabs/Module/Connedit.php:693 msgid "Set Profile" msgstr "Profil festlegen" -#: ../../Zotlabs/Module/Connedit.php:665 +#: ../../Zotlabs/Module/Connedit.php:696 msgid "Set Affinity & Profile" msgstr "Beziehung und Profile festlegen" -#: ../../Zotlabs/Module/Connedit.php:698 +#: ../../Zotlabs/Module/Connedit.php:745 msgid "none" msgstr "Keine" -#: ../../Zotlabs/Module/Connedit.php:702 ../../include/widgets.php:614 +#: ../../Zotlabs/Module/Connedit.php:749 ../../include/widgets.php:623 msgid "Connection Default Permissions" msgstr "Standardzugriffsrechte für neue Verbindungen:" -#: ../../Zotlabs/Module/Connedit.php:702 ../../include/items.php:3926 +#: ../../Zotlabs/Module/Connedit.php:749 ../../include/items.php:3935 #, php-format msgid "Connection: %s" msgstr "Verbindung: %s" -#: ../../Zotlabs/Module/Connedit.php:703 +#: ../../Zotlabs/Module/Connedit.php:750 msgid "Apply these permissions automatically" msgstr "Diese Berechtigungen automatisch anwenden" -#: ../../Zotlabs/Module/Connedit.php:703 +#: ../../Zotlabs/Module/Connedit.php:750 msgid "Connection requests will be approved without your interaction" msgstr "Verbindungsanfragen werden sofort bestätigt, ohne dass Deine aktive Zustimmung erforderlich ist." -#: ../../Zotlabs/Module/Connedit.php:705 +#: ../../Zotlabs/Module/Connedit.php:752 msgid "This connection's primary address is" msgstr "Die Hauptadresse der Verbindung ist" -#: ../../Zotlabs/Module/Connedit.php:706 +#: ../../Zotlabs/Module/Connedit.php:753 msgid "Available locations:" msgstr "Verfügbare Klone:" -#: ../../Zotlabs/Module/Connedit.php:710 +#: ../../Zotlabs/Module/Connedit.php:757 msgid "" "The permissions indicated on this page will be applied to all new " "connections." msgstr "Die auf dieser Seite angegebenen Berechtigungen werden auf alle neuen Verbindungen angewendet." -#: ../../Zotlabs/Module/Connedit.php:711 +#: ../../Zotlabs/Module/Connedit.php:758 msgid "Connection Tools" msgstr "Verbindungswerkzeuge" -#: ../../Zotlabs/Module/Connedit.php:713 +#: ../../Zotlabs/Module/Connedit.php:760 msgid "Slide to adjust your degree of friendship" msgstr "Verschieben, um den Grad der Freundschaft zu einzustellen" -#: ../../Zotlabs/Module/Connedit.php:714 ../../Zotlabs/Module/Rate.php:159 +#: ../../Zotlabs/Module/Connedit.php:761 ../../Zotlabs/Module/Rate.php:159 #: ../../include/js_strings.php:20 msgid "Rating" msgstr "Bewertung" -#: ../../Zotlabs/Module/Connedit.php:715 +#: ../../Zotlabs/Module/Connedit.php:762 msgid "Slide to adjust your rating" msgstr "Verschieben, um Deine Bewertung einzustellen" -#: ../../Zotlabs/Module/Connedit.php:716 ../../Zotlabs/Module/Connedit.php:721 +#: ../../Zotlabs/Module/Connedit.php:763 ../../Zotlabs/Module/Connedit.php:768 msgid "Optionally explain your rating" msgstr "Optional kannst Du Deine Bewertung begründen" -#: ../../Zotlabs/Module/Connedit.php:718 +#: ../../Zotlabs/Module/Connedit.php:765 msgid "Custom Filter" msgstr "Benutzerdefinierter Filter" -#: ../../Zotlabs/Module/Connedit.php:719 +#: ../../Zotlabs/Module/Connedit.php:766 msgid "Only import posts with this text" msgstr "Nur Beiträge mit diesem Text importieren" -#: ../../Zotlabs/Module/Connedit.php:719 ../../Zotlabs/Module/Connedit.php:720 +#: ../../Zotlabs/Module/Connedit.php:766 ../../Zotlabs/Module/Connedit.php:767 msgid "" "words one per line or #tags or /patterns/ or lang=xx, leave blank to import " "all posts" msgstr "Einzelne Wörter pro Zeile, #Tags oder /Reguläre Ausdrücke/. lang=xx (z.B. lang=de) ermöglicht Filterung nach Sprache. Leer lassen, um alle Beiträge zu importieren." -#: ../../Zotlabs/Module/Connedit.php:720 +#: ../../Zotlabs/Module/Connedit.php:767 msgid "Do not import posts with this text" msgstr "Beiträge mit diesem Text nicht importieren" -#: ../../Zotlabs/Module/Connedit.php:722 +#: ../../Zotlabs/Module/Connedit.php:769 msgid "This information is public!" msgstr "Diese Information ist öffentlich!" -#: ../../Zotlabs/Module/Connedit.php:727 +#: ../../Zotlabs/Module/Connedit.php:774 msgid "Connection Pending Approval" msgstr "Verbindung wartet auf Bestätigung" -#: ../../Zotlabs/Module/Connedit.php:730 +#: ../../Zotlabs/Module/Connedit.php:777 msgid "inherited" msgstr "geerbt" -#: ../../Zotlabs/Module/Connedit.php:732 +#: ../../Zotlabs/Module/Connedit.php:778 ../../Zotlabs/Module/Connect.php:98 +#: ../../Zotlabs/Module/Events.php:474 ../../Zotlabs/Module/Cal.php:338 +#: ../../Zotlabs/Module/Chat.php:196 ../../Zotlabs/Module/Chat.php:238 +#: ../../Zotlabs/Module/Group.php:85 ../../Zotlabs/Module/Appman.php:126 +#: ../../Zotlabs/Module/Pdledit.php:66 +#: ../../Zotlabs/Module/Filestorage.php:161 +#: ../../Zotlabs/Module/Profiles.php:687 ../../Zotlabs/Module/Import.php:560 +#: ../../Zotlabs/Module/Photos.php:675 ../../Zotlabs/Module/Photos.php:1050 +#: ../../Zotlabs/Module/Photos.php:1090 ../../Zotlabs/Module/Photos.php:1208 +#: ../../Zotlabs/Module/Import_items.php:122 +#: ../../Zotlabs/Module/Invite.php:146 ../../Zotlabs/Module/Locs.php:121 +#: ../../Zotlabs/Module/Mail.php:370 ../../Zotlabs/Module/Mood.php:139 +#: ../../Zotlabs/Module/Mitem.php:235 ../../Zotlabs/Module/Admin.php:492 +#: ../../Zotlabs/Module/Admin.php:688 ../../Zotlabs/Module/Admin.php:771 +#: ../../Zotlabs/Module/Admin.php:1032 ../../Zotlabs/Module/Admin.php:1211 +#: ../../Zotlabs/Module/Admin.php:1421 ../../Zotlabs/Module/Admin.php:1648 +#: ../../Zotlabs/Module/Admin.php:1733 ../../Zotlabs/Module/Admin.php:2116 +#: ../../Zotlabs/Module/Poke.php:186 ../../Zotlabs/Module/Pconfig.php:107 +#: ../../Zotlabs/Module/Rate.php:170 ../../Zotlabs/Module/Settings.php:644 +#: ../../Zotlabs/Module/Settings.php:757 ../../Zotlabs/Module/Settings.php:806 +#: ../../Zotlabs/Module/Settings.php:832 ../../Zotlabs/Module/Settings.php:855 +#: ../../Zotlabs/Module/Settings.php:943 +#: ../../Zotlabs/Module/Settings.php:1129 ../../Zotlabs/Module/Setup.php:312 +#: ../../Zotlabs/Module/Setup.php:353 ../../Zotlabs/Module/Thing.php:316 +#: ../../Zotlabs/Module/Thing.php:362 ../../Zotlabs/Module/Sources.php:114 +#: ../../Zotlabs/Module/Sources.php:149 ../../Zotlabs/Module/Xchan.php:15 +#: ../../Zotlabs/Lib/ThreadItem.php:710 ../../include/widgets.php:763 +#: ../../include/js_strings.php:22 ../../view/theme/redbasic/php/config.php:99 +msgid "Submit" +msgstr "Bestätigen" + +#: ../../Zotlabs/Module/Connedit.php:779 #, php-format msgid "" "Please choose the profile you would like to display to %s when viewing your " "profile securely." msgstr "Bitte wähle ein Profil, das wir %s zeigen sollen, wenn Deine Profilseite über eine verifizierte Verbindung aufgerufen wird." -#: ../../Zotlabs/Module/Connedit.php:734 +#: ../../Zotlabs/Module/Connedit.php:781 msgid "Their Settings" msgstr "Deren Einstellungen" -#: ../../Zotlabs/Module/Connedit.php:735 +#: ../../Zotlabs/Module/Connedit.php:782 msgid "My Settings" msgstr "Meine Einstellungen" -#: ../../Zotlabs/Module/Connedit.php:737 +#: ../../Zotlabs/Module/Connedit.php:784 msgid "Individual Permissions" msgstr "Individuelle Zugriffsrechte" -#: ../../Zotlabs/Module/Connedit.php:738 +#: ../../Zotlabs/Module/Connedit.php:785 msgid "" "Some permissions may be inherited from your channel's privacy settings, which have higher " @@ -893,7 +788,7 @@ msgid "" " settings here." msgstr "Einige Berechtigungen werden möglicherweise von den globalen Sicherheits- und Privatsphäre-Einstellungen dieses Kanals vererbt. Diese haben eine höhere Priorität als die Einstellungen an der Verbindung und können hier nicht verändert werden." -#: ../../Zotlabs/Module/Connedit.php:739 +#: ../../Zotlabs/Module/Connedit.php:786 msgid "" "Some permissions may be inherited from your channel's privacy settings, which have higher " @@ -901,17 +796,121 @@ msgid "" "they wont have any impact unless the inherited setting changes." msgstr "Einige Berechtigungen werden möglicherweise von den globalen Sicherheits- und Privatsphäre-Einstellungen dieses Kanals geerbt. Diese haben eine höhere Priorität als die Einstellungen an der Verbindung. Werden geerbte Einstellungen hier geändert, hat dies keine Auswirkungen." -#: ../../Zotlabs/Module/Connedit.php:740 +#: ../../Zotlabs/Module/Connedit.php:787 msgid "Last update:" msgstr "Letzte Aktualisierung:" -#: ../../Zotlabs/Module/Directory.php:63 ../../Zotlabs/Module/Display.php:17 -#: ../../Zotlabs/Module/Photos.php:522 ../../Zotlabs/Module/Ratings.php:86 +#: ../../Zotlabs/Module/Display.php:17 ../../Zotlabs/Module/Directory.php:63 +#: ../../Zotlabs/Module/Photos.php:520 ../../Zotlabs/Module/Ratings.php:86 #: ../../Zotlabs/Module/Search.php:17 -#: ../../Zotlabs/Module/Viewconnections.php:20 +#: ../../Zotlabs/Module/Viewconnections.php:23 msgid "Public access denied." msgstr "Öffentlichen Zugriff verweigert." +#: ../../Zotlabs/Module/Display.php:40 ../../Zotlabs/Module/Filestorage.php:32 +#: ../../Zotlabs/Module/Admin.php:164 ../../Zotlabs/Module/Admin.php:1255 +#: ../../Zotlabs/Module/Admin.php:1561 ../../Zotlabs/Module/Thing.php:89 +#: ../../Zotlabs/Module/Viewsrc.php:24 ../../include/items.php:3369 +msgid "Item not found." +msgstr "Element nicht gefunden." + +#: ../../Zotlabs/Module/Id.php:13 +msgid "First Name" +msgstr "Vorname" + +#: ../../Zotlabs/Module/Id.php:14 +msgid "Last Name" +msgstr "Nachname" + +#: ../../Zotlabs/Module/Id.php:15 +msgid "Nickname" +msgstr "Spitzname" + +#: ../../Zotlabs/Module/Id.php:16 +msgid "Full Name" +msgstr "Voller Name" + +#: ../../Zotlabs/Module/Id.php:17 ../../Zotlabs/Module/Id.php:18 +#: ../../Zotlabs/Module/Admin.php:1035 ../../Zotlabs/Module/Admin.php:1047 +#: ../../include/network.php:2203 +msgid "Email" +msgstr "E-Mail" + +#: ../../Zotlabs/Module/Id.php:19 ../../Zotlabs/Module/Id.php:20 +#: ../../Zotlabs/Module/Id.php:21 ../../Zotlabs/Lib/Apps.php:238 +msgid "Profile Photo" +msgstr "Profilfoto" + +#: ../../Zotlabs/Module/Id.php:22 +msgid "Profile Photo 16px" +msgstr "Profilfoto 16 px" + +#: ../../Zotlabs/Module/Id.php:23 +msgid "Profile Photo 32px" +msgstr "Profilfoto 32 px" + +#: ../../Zotlabs/Module/Id.php:24 +msgid "Profile Photo 48px" +msgstr "Profilfoto 48 px" + +#: ../../Zotlabs/Module/Id.php:25 +msgid "Profile Photo 64px" +msgstr "Profilfoto 64 px" + +#: ../../Zotlabs/Module/Id.php:26 +msgid "Profile Photo 80px" +msgstr "Profilfoto 80 px" + +#: ../../Zotlabs/Module/Id.php:27 +msgid "Profile Photo 128px" +msgstr "Profilfoto 128 px" + +#: ../../Zotlabs/Module/Id.php:28 +msgid "Timezone" +msgstr "Zeitzone" + +#: ../../Zotlabs/Module/Id.php:29 ../../Zotlabs/Module/Profiles.php:731 +msgid "Homepage URL" +msgstr "Homepage-URL" + +#: ../../Zotlabs/Module/Id.php:30 ../../Zotlabs/Lib/Apps.php:236 +msgid "Language" +msgstr "Sprache" + +#: ../../Zotlabs/Module/Id.php:31 +msgid "Birth Year" +msgstr "Geburtsjahr" + +#: ../../Zotlabs/Module/Id.php:32 +msgid "Birth Month" +msgstr "Geburtsmonat" + +#: ../../Zotlabs/Module/Id.php:33 +msgid "Birth Day" +msgstr "Geburtstag" + +#: ../../Zotlabs/Module/Id.php:34 +msgid "Birthdate" +msgstr "Geburtsdatum" + +#: ../../Zotlabs/Module/Id.php:35 ../../Zotlabs/Module/Profiles.php:454 +msgid "Gender" +msgstr "Geschlecht" + +#: ../../Zotlabs/Module/Id.php:108 ../../include/selectors.php:49 +#: ../../include/selectors.php:66 +msgid "Male" +msgstr "Männlich" + +#: ../../Zotlabs/Module/Id.php:110 ../../include/selectors.php:49 +#: ../../include/selectors.php:66 +msgid "Female" +msgstr "Weiblich" + +#: ../../Zotlabs/Module/Follow.php:34 +msgid "Channel added." +msgstr "Kanal hinzugefügt." + #: ../../Zotlabs/Module/Directory.php:243 #, php-format msgid "%d rating" @@ -931,12 +930,12 @@ msgstr "Status:" msgid "Homepage: " msgstr "Webseite:" -#: ../../Zotlabs/Module/Directory.php:306 ../../include/channel.php:1183 +#: ../../Zotlabs/Module/Directory.php:306 ../../include/channel.php:1223 msgid "Age:" msgstr "Alter:" -#: ../../Zotlabs/Module/Directory.php:311 ../../include/event.php:52 -#: ../../include/event.php:84 ../../include/channel.php:1027 +#: ../../Zotlabs/Module/Directory.php:311 ../../include/channel.php:1066 +#: ../../include/event.php:52 ../../include/event.php:84 #: ../../include/bb2diaspora.php:507 msgid "Location:" msgstr "Ort:" @@ -945,18 +944,18 @@ msgstr "Ort:" msgid "Description:" msgstr "Beschreibung:" -#: ../../Zotlabs/Module/Directory.php:322 ../../include/channel.php:1199 +#: ../../Zotlabs/Module/Directory.php:322 ../../include/channel.php:1239 msgid "Hometown:" msgstr "Heimatstadt:" -#: ../../Zotlabs/Module/Directory.php:324 ../../include/channel.php:1207 +#: ../../Zotlabs/Module/Directory.php:324 ../../include/channel.php:1247 msgid "About:" msgstr "Über:" #: ../../Zotlabs/Module/Directory.php:325 ../../Zotlabs/Module/Match.php:68 -#: ../../Zotlabs/Module/Suggest.php:56 ../../include/widgets.php:147 -#: ../../include/widgets.php:184 ../../include/connections.php:78 -#: ../../include/conversation.php:956 ../../include/channel.php:1012 +#: ../../Zotlabs/Module/Suggest.php:56 ../../include/channel.php:1051 +#: ../../include/connections.php:78 ../../include/conversation.php:959 +#: ../../include/widgets.php:147 ../../include/widgets.php:184 msgid "Connect" msgstr "Verbinden" @@ -1032,38 +1031,322 @@ msgstr "Älteste zuerst" msgid "No entries (some entries may be hidden)." msgstr "Keine Einträge gefunden (einige könnten versteckt sein)." -#: ../../Zotlabs/Module/Display.php:40 ../../Zotlabs/Module/Filestorage.php:33 -#: ../../Zotlabs/Module/Admin.php:164 ../../Zotlabs/Module/Admin.php:1255 -#: ../../Zotlabs/Module/Admin.php:1561 ../../Zotlabs/Module/Thing.php:89 -#: ../../Zotlabs/Module/Viewsrc.php:24 ../../include/items.php:3359 -msgid "Item not found." -msgstr "Element nicht gefunden." +#: ../../Zotlabs/Module/Connect.php:61 ../../Zotlabs/Module/Connect.php:109 +msgid "Continue" +msgstr "Fortfahren" + +#: ../../Zotlabs/Module/Connect.php:90 +msgid "Premium Channel Setup" +msgstr "Premium-Kanal-Einrichtung" + +#: ../../Zotlabs/Module/Connect.php:92 +msgid "Enable premium channel connection restrictions" +msgstr "Einschränkungen für einen Premium-Kanal aktivieren" + +#: ../../Zotlabs/Module/Connect.php:93 +msgid "" +"Please enter your restrictions or conditions, such as paypal receipt, usage " +"guidelines, etc." +msgstr "Bitte gib Deine Nutzungsbedingungen ein, z.B. Paypal-Quittung, Richtlinien etc." + +#: ../../Zotlabs/Module/Connect.php:95 ../../Zotlabs/Module/Connect.php:115 +msgid "" +"This channel may require additional steps or acknowledgement of the " +"following conditions prior to connecting:" +msgstr "Unter Umständen sind weitere Schritte oder die Bestätigung der folgenden Bedingungen vor dem Verbinden mit diesem Kanal nötig." + +#: ../../Zotlabs/Module/Connect.php:96 +msgid "" +"Potential connections will then see the following text before proceeding:" +msgstr "Potentielle Kontakte werden den folgenden Text sehen, bevor fortgefahren wird:" + +#: ../../Zotlabs/Module/Connect.php:97 ../../Zotlabs/Module/Connect.php:118 +msgid "" +"By continuing, I certify that I have complied with any instructions provided" +" on this page." +msgstr "Indem ich fortfahre, bestätige ich die Erfüllung aller Anweisungen auf dieser Seite." + +#: ../../Zotlabs/Module/Connect.php:106 +msgid "(No specific instructions have been provided by the channel owner.)" +msgstr "(Der Kanal-Besitzer hat keine speziellen Anweisungen hinterlegt.)" + +#: ../../Zotlabs/Module/Connect.php:114 +msgid "Restricted or Premium Channel" +msgstr "Eingeschränkter oder Premium-Kanal" + +#: ../../Zotlabs/Module/Events.php:25 +msgid "Calendar entries imported." +msgstr "Kalendereinträge wurden importiert." + +#: ../../Zotlabs/Module/Events.php:27 +msgid "No calendar entries found." +msgstr "Keine Kalendereinträge gefunden." + +#: ../../Zotlabs/Module/Events.php:104 +msgid "Event can not end before it has started." +msgstr "Termin-Ende liegt vor dem Beginn." + +#: ../../Zotlabs/Module/Events.php:106 ../../Zotlabs/Module/Events.php:115 +#: ../../Zotlabs/Module/Events.php:135 +msgid "Unable to generate preview." +msgstr "Vorschau konnte nicht erzeugt werden." + +#: ../../Zotlabs/Module/Events.php:113 +msgid "Event title and start time are required." +msgstr "Titel und Startzeit des Termins sind erforderlich." + +#: ../../Zotlabs/Module/Events.php:133 ../../Zotlabs/Module/Events.php:258 +msgid "Event not found." +msgstr "Termin nicht gefunden." + +#: ../../Zotlabs/Module/Events.php:253 ../../Zotlabs/Module/Like.php:372 +#: ../../Zotlabs/Module/Tagger.php:51 ../../include/conversation.php:123 +#: ../../include/text.php:1924 ../../include/event.php:951 +msgid "event" +msgstr "Termin" + +#: ../../Zotlabs/Module/Events.php:448 +msgid "Edit event title" +msgstr "Termintitel bearbeiten" + +#: ../../Zotlabs/Module/Events.php:448 +msgid "Event title" +msgstr "Termintitel" + +#: ../../Zotlabs/Module/Events.php:448 ../../Zotlabs/Module/Events.php:453 +#: ../../Zotlabs/Module/Appman.php:115 ../../Zotlabs/Module/Appman.php:116 +#: ../../Zotlabs/Module/Profiles.php:709 ../../Zotlabs/Module/Profiles.php:713 +#: ../../include/datetime.php:245 +msgid "Required" +msgstr "Benötigt" + +#: ../../Zotlabs/Module/Events.php:450 +msgid "Categories (comma-separated list)" +msgstr "Kategorien (Kommagetrennte Liste)" + +#: ../../Zotlabs/Module/Events.php:451 +msgid "Edit Category" +msgstr "Kategorie bearbeiten" + +#: ../../Zotlabs/Module/Events.php:451 +msgid "Category" +msgstr "Kategorie" + +#: ../../Zotlabs/Module/Events.php:454 +msgid "Edit start date and time" +msgstr "Startdatum und -zeit bearbeiten" + +#: ../../Zotlabs/Module/Events.php:454 +msgid "Start date and time" +msgstr "Startdatum und -zeit" + +#: ../../Zotlabs/Module/Events.php:455 ../../Zotlabs/Module/Events.php:458 +msgid "Finish date and time are not known or not relevant" +msgstr "Enddatum und -zeit sind unbekannt oder irrelevant" + +#: ../../Zotlabs/Module/Events.php:457 +msgid "Edit finish date and time" +msgstr "Enddatum und -zeit bearbeiten" + +#: ../../Zotlabs/Module/Events.php:457 +msgid "Finish date and time" +msgstr "Enddatum und -zeit" + +#: ../../Zotlabs/Module/Events.php:459 ../../Zotlabs/Module/Events.php:460 +msgid "Adjust for viewer timezone" +msgstr "An die Zeitzone des Betrachters anpassen" + +#: ../../Zotlabs/Module/Events.php:459 +msgid "" +"Important for events that happen in a particular place. Not practical for " +"global holidays." +msgstr "Wichtig für Veranstaltungen die an bestimmten Orten stattfinden. Nicht sinnvoll für globale Feiertage / Ferien." + +#: ../../Zotlabs/Module/Events.php:461 +msgid "Edit Description" +msgstr "Beschreibung bearbeiten" + +#: ../../Zotlabs/Module/Events.php:461 ../../Zotlabs/Module/Appman.php:117 +#: ../../Zotlabs/Module/Rbmark.php:101 +msgid "Description" +msgstr "Beschreibung" + +#: ../../Zotlabs/Module/Events.php:463 +msgid "Edit Location" +msgstr "Ort bearbeiten" + +#: ../../Zotlabs/Module/Events.php:463 ../../Zotlabs/Module/Profiles.php:477 +#: ../../Zotlabs/Module/Profiles.php:698 ../../Zotlabs/Module/Locs.php:117 +#: ../../Zotlabs/Module/Pubsites.php:41 ../../include/js_strings.php:25 +msgid "Location" +msgstr "Ort" + +#: ../../Zotlabs/Module/Events.php:466 ../../Zotlabs/Module/Events.php:468 +msgid "Share this event" +msgstr "Den Termin teilen" + +#: ../../Zotlabs/Module/Events.php:469 ../../Zotlabs/Module/Photos.php:1091 +#: ../../Zotlabs/Module/Webpages.php:201 ../../Zotlabs/Lib/ThreadItem.php:719 +#: ../../include/page_widgets.php:43 ../../include/conversation.php:1198 +msgid "Preview" +msgstr "Vorschau" + +#: ../../Zotlabs/Module/Events.php:470 ../../include/conversation.php:1247 +msgid "Permission settings" +msgstr "Berechtigungs-Einstellungen" + +#: ../../Zotlabs/Module/Events.php:475 +msgid "Advanced Options" +msgstr "Weitere Optionen" + +#: ../../Zotlabs/Module/Events.php:587 ../../Zotlabs/Module/Cal.php:259 +msgid "l, F j" +msgstr "l, j. F" + +#: ../../Zotlabs/Module/Events.php:609 +msgid "Edit event" +msgstr "Termin bearbeiten" + +#: ../../Zotlabs/Module/Events.php:611 +msgid "Delete event" +msgstr "Termin löschen" + +#: ../../Zotlabs/Module/Events.php:636 ../../Zotlabs/Module/Cal.php:308 +#: ../../include/text.php:1712 +msgid "Link to Source" +msgstr "Link zur Quelle" + +#: ../../Zotlabs/Module/Events.php:645 +msgid "calendar" +msgstr "Kalender" + +#: ../../Zotlabs/Module/Events.php:664 ../../Zotlabs/Module/Cal.php:331 +msgid "Edit Event" +msgstr "Termin bearbeiten" + +#: ../../Zotlabs/Module/Events.php:664 ../../Zotlabs/Module/Cal.php:331 +msgid "Create Event" +msgstr "Termin anlegen" + +#: ../../Zotlabs/Module/Events.php:665 ../../Zotlabs/Module/Events.php:674 +#: ../../Zotlabs/Module/Cal.php:332 ../../Zotlabs/Module/Cal.php:339 +#: ../../Zotlabs/Module/Photos.php:947 +msgid "Previous" +msgstr "Voriges" + +#: ../../Zotlabs/Module/Events.php:666 ../../Zotlabs/Module/Events.php:675 +#: ../../Zotlabs/Module/Cal.php:333 ../../Zotlabs/Module/Cal.php:340 +#: ../../Zotlabs/Module/Photos.php:956 ../../Zotlabs/Module/Setup.php:267 +msgid "Next" +msgstr "Nächste" + +#: ../../Zotlabs/Module/Events.php:667 ../../Zotlabs/Module/Cal.php:334 +msgid "Export" +msgstr "Exportieren" + +#: ../../Zotlabs/Module/Events.php:670 ../../Zotlabs/Module/Layouts.php:197 +#: ../../Zotlabs/Module/Pubsites.php:47 ../../Zotlabs/Module/Blocks.php:166 +#: ../../Zotlabs/Module/Webpages.php:200 ../../include/page_widgets.php:42 +msgid "View" +msgstr "Ansicht" + +#: ../../Zotlabs/Module/Events.php:671 +msgid "Month" +msgstr "Monat" + +#: ../../Zotlabs/Module/Events.php:672 +msgid "Week" +msgstr "Woche" + +#: ../../Zotlabs/Module/Events.php:673 +msgid "Day" +msgstr "Tag" + +#: ../../Zotlabs/Module/Events.php:676 ../../Zotlabs/Module/Cal.php:341 +msgid "Today" +msgstr "Heute" + +#: ../../Zotlabs/Module/Events.php:707 +msgid "Event removed" +msgstr "Termin gelöscht" + +#: ../../Zotlabs/Module/Events.php:710 +msgid "Failed to remove event" +msgstr "Termin konnte nicht gelöscht werden" + +#: ../../Zotlabs/Module/Bookmarks.php:53 +msgid "Bookmark added" +msgstr "Lesezeichen hinzugefügt" + +#: ../../Zotlabs/Module/Bookmarks.php:75 +msgid "My Bookmarks" +msgstr "Meine Lesezeichen" + +#: ../../Zotlabs/Module/Bookmarks.php:86 +msgid "My Connections Bookmarks" +msgstr "Lesezeichen meiner Kontakte" -#: ../../Zotlabs/Module/Editblock.php:79 ../../Zotlabs/Module/Editblock.php:95 #: ../../Zotlabs/Module/Editpost.php:24 ../../Zotlabs/Module/Editlayout.php:79 -#: ../../Zotlabs/Module/Editwebpage.php:81 +#: ../../Zotlabs/Module/Editwebpage.php:80 +#: ../../Zotlabs/Module/Editblock.php:79 ../../Zotlabs/Module/Editblock.php:95 msgid "Item not found" msgstr "Element nicht gefunden" -#: ../../Zotlabs/Module/Editblock.php:124 ../../include/conversation.php:1228 -msgid "Title (optional)" -msgstr "Titel (optional)" +#: ../../Zotlabs/Module/Editpost.php:35 +msgid "Item is not editable" +msgstr "Element kann nicht bearbeitet werden." -#: ../../Zotlabs/Module/Editblock.php:133 -msgid "Edit Block" -msgstr "Block bearbeiten" +#: ../../Zotlabs/Module/Editpost.php:106 ../../Zotlabs/Module/Rpost.php:134 +msgid "Edit post" +msgstr "Bearbeite Beitrag" -#: ../../Zotlabs/Module/Common.php:14 -msgid "No channel." -msgstr "Kein Kanal." +#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:222 +#: ../../include/nav.php:92 ../../include/conversation.php:1647 +msgid "Photos" +msgstr "Fotos" -#: ../../Zotlabs/Module/Common.php:43 -msgid "Common connections" -msgstr "Gemeinsame Verbindungen" +#: ../../Zotlabs/Module/Fbrowser.php:66 ../../Zotlabs/Module/Fbrowser.php:88 +#: ../../Zotlabs/Module/Admin.php:1406 ../../Zotlabs/Module/Settings.php:645 +#: ../../Zotlabs/Module/Settings.php:671 ../../Zotlabs/Module/Tagrm.php:15 +#: ../../Zotlabs/Module/Tagrm.php:138 ../../Zotlabs/Module/Wiki.php:166 +#: ../../Zotlabs/Module/Wiki.php:202 ../../include/conversation.php:1235 +#: ../../include/conversation.php:1274 +msgid "Cancel" +msgstr "Abbrechen" -#: ../../Zotlabs/Module/Common.php:48 -msgid "No connections in common." -msgstr "Keine gemeinsamen Verbindungen." +#: ../../Zotlabs/Module/Page.php:40 ../../Zotlabs/Module/Block.php:31 +msgid "Invalid item." +msgstr "Ungültiges Element." + +#: ../../Zotlabs/Module/Page.php:56 ../../Zotlabs/Module/Cal.php:62 +#: ../../Zotlabs/Module/Block.php:43 ../../Zotlabs/Module/Wall_upload.php:33 +msgid "Channel not found." +msgstr "Kanal nicht gefunden." + +#: ../../Zotlabs/Module/Page.php:131 +msgid "" +"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod " +"tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam," +" quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo " +"consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse " +"cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat " +"non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." +msgstr "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." + +#: ../../Zotlabs/Module/Filer.php:52 +msgid "Save to Folder:" +msgstr "Speichern in Ordner:" + +#: ../../Zotlabs/Module/Filer.php:52 +msgid "- select -" +msgstr "– auswählen –" + +#: ../../Zotlabs/Module/Filer.php:53 ../../Zotlabs/Module/Admin.php:2033 +#: ../../Zotlabs/Module/Admin.php:2053 ../../Zotlabs/Module/Rbmark.php:32 +#: ../../Zotlabs/Module/Rbmark.php:104 ../../include/text.php:926 +#: ../../include/text.php:938 ../../include/widgets.php:201 +msgid "Save" +msgstr "Speichern" #: ../../Zotlabs/Module/Connections.php:56 #: ../../Zotlabs/Module/Connections.php:161 @@ -1091,7 +1374,7 @@ msgstr "Archiviert" #: ../../Zotlabs/Module/Connections.php:76 #: ../../Zotlabs/Module/Connections.php:86 ../../Zotlabs/Module/Menu.php:116 -#: ../../include/conversation.php:1535 +#: ../../include/conversation.php:1550 msgid "New" msgstr "Neu" @@ -1178,15 +1461,15 @@ msgstr "Verbindung ignorieren" msgid "Recent activity" msgstr "Kürzliche Aktivitäten" -#: ../../Zotlabs/Module/Connections.php:302 ../../Zotlabs/Lib/Apps.php:208 -#: ../../include/text.php:875 ../../include/nav.php:186 +#: ../../Zotlabs/Module/Connections.php:302 ../../Zotlabs/Lib/Apps.php:209 +#: ../../include/nav.php:188 ../../include/text.php:855 msgid "Connections" msgstr "Verbindungen" #: ../../Zotlabs/Module/Connections.php:306 ../../Zotlabs/Module/Search.php:44 -#: ../../Zotlabs/Lib/Apps.php:228 ../../include/text.php:945 -#: ../../include/text.php:957 ../../include/nav.php:165 -#: ../../include/acl_selectors.php:276 +#: ../../Zotlabs/Lib/Apps.php:230 ../../include/nav.php:167 +#: ../../include/text.php:925 ../../include/text.php:937 +#: ../../include/acl_selectors.php:274 msgid "Search" msgstr "Suche" @@ -1199,7 +1482,7 @@ msgid "Connections search" msgstr "Verbindung suchen" #: ../../Zotlabs/Module/Cover_photo.php:58 -#: ../../Zotlabs/Module/Profile_photo.php:79 +#: ../../Zotlabs/Module/Profile_photo.php:61 msgid "Image uploaded but image cropping failed." msgstr "Bild hochgeladen, aber das Zurechtschneiden schlug fehl." @@ -1209,66 +1492,66 @@ msgid "Cover Photos" msgstr "Cover Foto" #: ../../Zotlabs/Module/Cover_photo.php:154 -#: ../../Zotlabs/Module/Profile_photo.php:133 +#: ../../Zotlabs/Module/Profile_photo.php:135 msgid "Image resize failed." msgstr "Bild-Anpassung fehlgeschlagen." #: ../../Zotlabs/Module/Cover_photo.php:168 -#: ../../Zotlabs/Module/Profile_photo.php:192 ../../include/photos.php:144 +#: ../../Zotlabs/Module/Profile_photo.php:196 ../../include/photos.php:148 msgid "Unable to process image" msgstr "Kann Bild nicht verarbeiten" #: ../../Zotlabs/Module/Cover_photo.php:192 -#: ../../Zotlabs/Module/Profile_photo.php:217 +#: ../../Zotlabs/Module/Profile_photo.php:223 msgid "Image upload failed." msgstr "Hochladen des Bilds fehlgeschlagen." #: ../../Zotlabs/Module/Cover_photo.php:210 -#: ../../Zotlabs/Module/Profile_photo.php:236 +#: ../../Zotlabs/Module/Profile_photo.php:242 msgid "Unable to process image." msgstr "Kann Bild nicht verarbeiten." -#: ../../Zotlabs/Module/Cover_photo.php:233 ../../include/items.php:4270 +#: ../../Zotlabs/Module/Cover_photo.php:233 ../../include/items.php:4283 msgid "female" msgstr "weiblich" -#: ../../Zotlabs/Module/Cover_photo.php:234 ../../include/items.php:4271 +#: ../../Zotlabs/Module/Cover_photo.php:234 ../../include/items.php:4284 #, php-format msgid "%1$s updated her %2$s" msgstr "%1$s hat ihr %2$s aktualisiert" -#: ../../Zotlabs/Module/Cover_photo.php:235 ../../include/items.php:4272 +#: ../../Zotlabs/Module/Cover_photo.php:235 ../../include/items.php:4285 msgid "male" msgstr "männlich" -#: ../../Zotlabs/Module/Cover_photo.php:236 ../../include/items.php:4273 +#: ../../Zotlabs/Module/Cover_photo.php:236 ../../include/items.php:4286 #, php-format msgid "%1$s updated his %2$s" msgstr "%1$s hat sein %2$s aktualisiert" -#: ../../Zotlabs/Module/Cover_photo.php:238 ../../include/items.php:4275 +#: ../../Zotlabs/Module/Cover_photo.php:238 ../../include/items.php:4288 #, php-format msgid "%1$s updated their %2$s" msgstr "%1$s hat sein/ihr %2$s aktualisiert" -#: ../../Zotlabs/Module/Cover_photo.php:240 ../../include/channel.php:1661 +#: ../../Zotlabs/Module/Cover_photo.php:240 ../../include/channel.php:1726 msgid "cover photo" msgstr "Cover Foto" #: ../../Zotlabs/Module/Cover_photo.php:303 #: ../../Zotlabs/Module/Cover_photo.php:318 -#: ../../Zotlabs/Module/Profile_photo.php:283 -#: ../../Zotlabs/Module/Profile_photo.php:324 +#: ../../Zotlabs/Module/Profile_photo.php:300 +#: ../../Zotlabs/Module/Profile_photo.php:341 msgid "Photo not available." msgstr "Foto nicht verfügbar." #: ../../Zotlabs/Module/Cover_photo.php:354 -#: ../../Zotlabs/Module/Profile_photo.php:365 +#: ../../Zotlabs/Module/Profile_photo.php:387 msgid "Upload File:" msgstr "Datei hochladen:" #: ../../Zotlabs/Module/Cover_photo.php:355 -#: ../../Zotlabs/Module/Profile_photo.php:366 +#: ../../Zotlabs/Module/Profile_photo.php:388 msgid "Select a profile:" msgstr "Wähle ein Profil:" @@ -1277,200 +1560,69 @@ msgid "Upload Cover Photo" msgstr "Cover Foto hochladen" #: ../../Zotlabs/Module/Cover_photo.php:361 -#: ../../Zotlabs/Module/Profile_photo.php:374 -#: ../../Zotlabs/Module/Settings.php:985 +#: ../../Zotlabs/Module/Profile_photo.php:396 +#: ../../Zotlabs/Module/Settings.php:1080 msgid "or" msgstr "oder" #: ../../Zotlabs/Module/Cover_photo.php:361 -#: ../../Zotlabs/Module/Profile_photo.php:374 +#: ../../Zotlabs/Module/Profile_photo.php:396 msgid "skip this step" msgstr "diesen Schritt überspringen" #: ../../Zotlabs/Module/Cover_photo.php:361 -#: ../../Zotlabs/Module/Profile_photo.php:374 +#: ../../Zotlabs/Module/Profile_photo.php:396 msgid "select a photo from your photo albums" msgstr "ein Foto aus meinen Fotoalben" #: ../../Zotlabs/Module/Cover_photo.php:377 -#: ../../Zotlabs/Module/Profile_photo.php:390 +#: ../../Zotlabs/Module/Profile_photo.php:415 msgid "Crop Image" msgstr "Bild zuschneiden" #: ../../Zotlabs/Module/Cover_photo.php:378 -#: ../../Zotlabs/Module/Profile_photo.php:391 +#: ../../Zotlabs/Module/Profile_photo.php:416 msgid "Please adjust the image cropping for optimum viewing." msgstr "Bitte schneide das Bild für eine optimale Anzeige passend zu." #: ../../Zotlabs/Module/Cover_photo.php:380 -#: ../../Zotlabs/Module/Profile_photo.php:393 +#: ../../Zotlabs/Module/Profile_photo.php:418 msgid "Done Editing" msgstr "Bearbeitung fertigstellen" -#: ../../Zotlabs/Module/Editpost.php:35 -msgid "Item is not editable" -msgstr "Element kann nicht bearbeitet werden." +#: ../../Zotlabs/Module/Impel.php:41 ../../include/bbcode.php:192 +msgid "webpage" +msgstr "Webseite" -#: ../../Zotlabs/Module/Editpost.php:106 ../../Zotlabs/Module/Rpost.php:135 -msgid "Edit post" -msgstr "Bearbeite Beitrag" +#: ../../Zotlabs/Module/Impel.php:46 ../../include/bbcode.php:198 +msgid "block" +msgstr "Block" -#: ../../Zotlabs/Module/Events.php:26 -msgid "Calendar entries imported." -msgstr "Kalendereinträge wurden importiert." +#: ../../Zotlabs/Module/Impel.php:51 ../../include/bbcode.php:195 +msgid "layout" +msgstr "Layout" -#: ../../Zotlabs/Module/Events.php:28 -msgid "No calendar entries found." -msgstr "Keine Kalendereinträge gefunden." +#: ../../Zotlabs/Module/Impel.php:58 ../../include/bbcode.php:201 +msgid "menu" +msgstr "Menü" -#: ../../Zotlabs/Module/Events.php:105 -msgid "Event can not end before it has started." -msgstr "Termin-Ende liegt vor dem Beginn." +#: ../../Zotlabs/Module/Impel.php:187 +#, php-format +msgid "%s element installed" +msgstr "Element für %s installiert" -#: ../../Zotlabs/Module/Events.php:107 ../../Zotlabs/Module/Events.php:116 -#: ../../Zotlabs/Module/Events.php:136 -msgid "Unable to generate preview." -msgstr "Vorschau konnte nicht erzeugt werden." +#: ../../Zotlabs/Module/Impel.php:190 +#, php-format +msgid "%s element installation failed" +msgstr "Installation des Elements %s fehlgeschlagen" -#: ../../Zotlabs/Module/Events.php:114 -msgid "Event title and start time are required." -msgstr "Titel und Startzeit des Termins sind erforderlich." +#: ../../Zotlabs/Module/Cal.php:69 +msgid "Permissions denied." +msgstr "Berechtigung verweigert." -#: ../../Zotlabs/Module/Events.php:134 ../../Zotlabs/Module/Events.php:259 -msgid "Event not found." -msgstr "Termin nicht gefunden." - -#: ../../Zotlabs/Module/Events.php:254 ../../Zotlabs/Module/Like.php:373 -#: ../../Zotlabs/Module/Tagger.php:51 ../../include/event.php:949 -#: ../../include/text.php:1943 ../../include/conversation.php:123 -msgid "event" -msgstr "Termin" - -#: ../../Zotlabs/Module/Events.php:449 -msgid "Edit event title" -msgstr "Termintitel bearbeiten" - -#: ../../Zotlabs/Module/Events.php:449 -msgid "Event title" -msgstr "Termintitel" - -#: ../../Zotlabs/Module/Events.php:449 ../../Zotlabs/Module/Events.php:454 -#: ../../Zotlabs/Module/Profiles.php:709 ../../Zotlabs/Module/Profiles.php:713 -#: ../../Zotlabs/Module/Appman.php:115 ../../Zotlabs/Module/Appman.php:116 -#: ../../include/datetime.php:245 -msgid "Required" -msgstr "Benötigt" - -#: ../../Zotlabs/Module/Events.php:451 -msgid "Categories (comma-separated list)" -msgstr "Kategorien (Kommagetrennte Liste)" - -#: ../../Zotlabs/Module/Events.php:452 -msgid "Edit Category" -msgstr "Kategorie bearbeiten" - -#: ../../Zotlabs/Module/Events.php:452 -msgid "Category" -msgstr "Kategorie" - -#: ../../Zotlabs/Module/Events.php:455 -msgid "Edit start date and time" -msgstr "Startdatum und -zeit bearbeiten" - -#: ../../Zotlabs/Module/Events.php:455 -msgid "Start date and time" -msgstr "Startdatum und -zeit" - -#: ../../Zotlabs/Module/Events.php:456 ../../Zotlabs/Module/Events.php:459 -msgid "Finish date and time are not known or not relevant" -msgstr "Enddatum und -zeit sind unbekannt oder irrelevant" - -#: ../../Zotlabs/Module/Events.php:458 -msgid "Edit finish date and time" -msgstr "Enddatum und -zeit bearbeiten" - -#: ../../Zotlabs/Module/Events.php:458 -msgid "Finish date and time" -msgstr "Enddatum und -zeit" - -#: ../../Zotlabs/Module/Events.php:460 ../../Zotlabs/Module/Events.php:461 -msgid "Adjust for viewer timezone" -msgstr "An die Zeitzone des Betrachters anpassen" - -#: ../../Zotlabs/Module/Events.php:460 -msgid "" -"Important for events that happen in a particular place. Not practical for " -"global holidays." -msgstr "Wichtig für Veranstaltungen die an bestimmten Orten stattfinden. Nicht sinnvoll für globale Feiertage / Ferien." - -#: ../../Zotlabs/Module/Events.php:462 -msgid "Edit Description" -msgstr "Beschreibung bearbeiten" - -#: ../../Zotlabs/Module/Events.php:462 ../../Zotlabs/Module/Appman.php:117 -#: ../../Zotlabs/Module/Rbmark.php:101 -msgid "Description" -msgstr "Beschreibung" - -#: ../../Zotlabs/Module/Events.php:464 -msgid "Edit Location" -msgstr "Ort bearbeiten" - -#: ../../Zotlabs/Module/Events.php:464 ../../Zotlabs/Module/Locs.php:117 -#: ../../Zotlabs/Module/Profiles.php:477 ../../Zotlabs/Module/Profiles.php:698 -#: ../../Zotlabs/Module/Pubsites.php:41 ../../include/js_strings.php:25 -msgid "Location" -msgstr "Ort" - -#: ../../Zotlabs/Module/Events.php:467 ../../Zotlabs/Module/Events.php:469 -msgid "Share this event" -msgstr "Den Termin teilen" - -#: ../../Zotlabs/Module/Events.php:470 ../../Zotlabs/Module/Photos.php:1093 -#: ../../Zotlabs/Module/Webpages.php:194 ../../Zotlabs/Lib/ThreadItem.php:719 -#: ../../include/conversation.php:1187 ../../include/page_widgets.php:40 -msgid "Preview" -msgstr "Vorschau" - -#: ../../Zotlabs/Module/Events.php:471 ../../include/conversation.php:1232 -msgid "Permission settings" -msgstr "Berechtigungs-Einstellungen" - -#: ../../Zotlabs/Module/Events.php:476 -msgid "Advanced Options" -msgstr "Weitere Optionen" - -#: ../../Zotlabs/Module/Events.php:610 -msgid "Edit event" -msgstr "Termin bearbeiten" - -#: ../../Zotlabs/Module/Events.php:612 -msgid "Delete event" -msgstr "Termin löschen" - -#: ../../Zotlabs/Module/Events.php:646 -msgid "calendar" -msgstr "Kalender" - -#: ../../Zotlabs/Module/Events.php:706 -msgid "Event removed" -msgstr "Termin gelöscht" - -#: ../../Zotlabs/Module/Events.php:709 -msgid "Failed to remove event" -msgstr "Termin konnte nicht gelöscht werden" - -#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:220 -#: ../../include/nav.php:92 ../../include/conversation.php:1632 -msgid "Photos" -msgstr "Fotos" - -#: ../../Zotlabs/Module/Fbrowser.php:66 ../../Zotlabs/Module/Fbrowser.php:88 -#: ../../Zotlabs/Module/Admin.php:1406 ../../Zotlabs/Module/Settings.php:591 -#: ../../Zotlabs/Module/Settings.php:617 ../../Zotlabs/Module/Tagrm.php:15 -#: ../../Zotlabs/Module/Tagrm.php:138 ../../include/conversation.php:1259 -msgid "Cancel" -msgstr "Abbrechen" +#: ../../Zotlabs/Module/Cal.php:337 +msgid "Import" +msgstr "Import" #: ../../Zotlabs/Module/Dirsearch.php:25 ../../Zotlabs/Module/Regdir.php:49 msgid "This site is not a directory server" @@ -1480,112 +1632,184 @@ msgstr "Diese Webseite ist kein Verzeichnisserver" msgid "This directory server requires an access token" msgstr "Dieser Verzeichnisserver benötigt einen Zugriffstoken" -#: ../../Zotlabs/Module/Filer.php:52 -msgid "Save to Folder:" -msgstr "Speichern in Ordner:" +#: ../../Zotlabs/Module/Chat.php:25 ../../Zotlabs/Module/Channel.php:28 +#: ../../Zotlabs/Module/Wiki.php:20 +msgid "You must be logged in to see this page." +msgstr "Du musst angemeldet sein, um diese Seite betrachten zu können." -#: ../../Zotlabs/Module/Filer.php:52 -msgid "- select -" -msgstr "– auswählen –" +#: ../../Zotlabs/Module/Chat.php:181 +msgid "Room not found" +msgstr "Chatraum nicht gefunden" -#: ../../Zotlabs/Module/Filer.php:53 ../../Zotlabs/Module/Admin.php:2033 -#: ../../Zotlabs/Module/Admin.php:2053 ../../Zotlabs/Module/Rbmark.php:32 -#: ../../Zotlabs/Module/Rbmark.php:104 ../../include/text.php:946 -#: ../../include/text.php:958 ../../include/widgets.php:201 -msgid "Save" -msgstr "Speichern" +#: ../../Zotlabs/Module/Chat.php:197 +msgid "Leave Room" +msgstr "Raum verlassen" -#: ../../Zotlabs/Module/Dreport.php:27 +#: ../../Zotlabs/Module/Chat.php:198 +msgid "Delete Room" +msgstr "Raum löschen" + +#: ../../Zotlabs/Module/Chat.php:199 +msgid "I am away right now" +msgstr "Ich bin gerade nicht da" + +#: ../../Zotlabs/Module/Chat.php:200 +msgid "I am online" +msgstr "Ich bin online" + +#: ../../Zotlabs/Module/Chat.php:202 +msgid "Bookmark this room" +msgstr "Lesezeichen für diesen Raum setzen" + +#: ../../Zotlabs/Module/Chat.php:205 ../../Zotlabs/Module/Mail.php:197 +#: ../../Zotlabs/Module/Mail.php:306 ../../include/conversation.php:1181 +msgid "Please enter a link URL:" +msgstr "Gib eine URL ein:" + +#: ../../Zotlabs/Module/Chat.php:206 ../../Zotlabs/Module/Mail.php:250 +#: ../../Zotlabs/Module/Mail.php:375 ../../Zotlabs/Lib/ThreadItem.php:722 +#: ../../include/conversation.php:1271 +msgid "Encrypt text" +msgstr "Text verschlüsseln" + +#: ../../Zotlabs/Module/Chat.php:207 ../../Zotlabs/Module/Editwebpage.php:146 +#: ../../Zotlabs/Module/Mail.php:244 ../../Zotlabs/Module/Mail.php:369 +#: ../../Zotlabs/Module/Editblock.php:111 ../../include/conversation.php:1146 +msgid "Insert web link" +msgstr "Link einfügen" + +#: ../../Zotlabs/Module/Chat.php:218 +msgid "Feature disabled." +msgstr "Funktion deaktiviert." + +#: ../../Zotlabs/Module/Chat.php:232 +msgid "New Chatroom" +msgstr "Neuer Chatraum" + +#: ../../Zotlabs/Module/Chat.php:233 +msgid "Chatroom name" +msgstr "Chatraumname" + +#: ../../Zotlabs/Module/Chat.php:234 +msgid "Expiration of chats (minutes)" +msgstr "Verfall von Chats (Minuten)" + +#: ../../Zotlabs/Module/Chat.php:235 ../../Zotlabs/Module/Filestorage.php:152 +#: ../../Zotlabs/Module/Photos.php:669 ../../Zotlabs/Module/Photos.php:1043 +#: ../../Zotlabs/Module/Thing.php:313 ../../Zotlabs/Module/Thing.php:359 +#: ../../include/acl_selectors.php:281 +msgid "Permissions" +msgstr "Berechtigungen" + +#: ../../Zotlabs/Module/Chat.php:246 +#, php-format +msgid "%1$s's Chatrooms" +msgstr "%1$ss Chaträume" + +#: ../../Zotlabs/Module/Chat.php:251 +msgid "No chatrooms available" +msgstr "Keine Chaträume verfügbar" + +#: ../../Zotlabs/Module/Chat.php:252 ../../Zotlabs/Module/Profiles.php:778 +#: ../../Zotlabs/Module/Manage.php:143 +msgid "Create New" +msgstr "Neu anlegen" + +#: ../../Zotlabs/Module/Chat.php:255 +msgid "Expiration" +msgstr "Verfall" + +#: ../../Zotlabs/Module/Chat.php:256 +msgid "min" +msgstr "min" + +#: ../../Zotlabs/Module/Dreport.php:44 msgid "Invalid message" msgstr "Ungültige Beitrags-ID (mid)" -#: ../../Zotlabs/Module/Dreport.php:59 +#: ../../Zotlabs/Module/Dreport.php:76 msgid "no results" msgstr "keine Ergebnisse" -#: ../../Zotlabs/Module/Dreport.php:64 +#: ../../Zotlabs/Module/Dreport.php:91 +msgid "channel sync processed" +msgstr "Kanal-Sync verarbeitet" + +#: ../../Zotlabs/Module/Dreport.php:95 +msgid "queued" +msgstr "zur Warteschlange hinzugefügt" + +#: ../../Zotlabs/Module/Dreport.php:99 +msgid "posted" +msgstr "zugestellt" + +#: ../../Zotlabs/Module/Dreport.php:103 +msgid "accepted for delivery" +msgstr "für Zustellung akzeptiert" + +#: ../../Zotlabs/Module/Dreport.php:107 +msgid "updated" +msgstr "aktualisiert" + +#: ../../Zotlabs/Module/Dreport.php:110 +msgid "update ignored" +msgstr "Aktualisierung ignoriert" + +#: ../../Zotlabs/Module/Dreport.php:113 +msgid "permission denied" +msgstr "Zugriff verweigert" + +#: ../../Zotlabs/Module/Dreport.php:117 +msgid "recipient not found" +msgstr "Empfänger nicht gefunden." + +#: ../../Zotlabs/Module/Dreport.php:120 +msgid "mail recalled" +msgstr "Mail widerrufen" + +#: ../../Zotlabs/Module/Dreport.php:123 +msgid "duplicate mail received" +msgstr "Doppelte Mail erhalten" + +#: ../../Zotlabs/Module/Dreport.php:126 +msgid "mail delivered" +msgstr "Mail zugestellt" + +#: ../../Zotlabs/Module/Dreport.php:146 #, php-format msgid "Delivery report for %1$s" msgstr "Zustellungsbericht für %1$s" -#: ../../Zotlabs/Module/Dreport.php:78 -msgid "channel sync processed" -msgstr "Kanal-Sync verarbeitet" +#: ../../Zotlabs/Module/Dreport.php:149 +msgid "Options" +msgstr "Optionen" -#: ../../Zotlabs/Module/Dreport.php:82 -msgid "queued" -msgstr "zur Warteschlange hinzugefügt" +#: ../../Zotlabs/Module/Dreport.php:150 +msgid "Redeliver" +msgstr "Erneut zustellen" -#: ../../Zotlabs/Module/Dreport.php:86 -msgid "posted" -msgstr "zugestellt" - -#: ../../Zotlabs/Module/Dreport.php:90 -msgid "accepted for delivery" -msgstr "für Zustellung akzeptiert" - -#: ../../Zotlabs/Module/Dreport.php:94 -msgid "updated" -msgstr "aktualisiert" - -#: ../../Zotlabs/Module/Dreport.php:97 -msgid "update ignored" -msgstr "Aktualisierung ignoriert" - -#: ../../Zotlabs/Module/Dreport.php:100 -msgid "permission denied" -msgstr "Zugriff verweigert" - -#: ../../Zotlabs/Module/Dreport.php:104 -msgid "recipient not found" -msgstr "Empfänger nicht gefunden." - -#: ../../Zotlabs/Module/Dreport.php:107 -msgid "mail recalled" -msgstr "Mail widerrufen" - -#: ../../Zotlabs/Module/Dreport.php:110 -msgid "duplicate mail received" -msgstr "Doppelte Mail erhalten" - -#: ../../Zotlabs/Module/Dreport.php:113 -msgid "mail delivered" -msgstr "Mail zugestellt" - -#: ../../Zotlabs/Module/Editlayout.php:126 -#: ../../Zotlabs/Module/Layouts.php:127 ../../Zotlabs/Module/Layouts.php:186 +#: ../../Zotlabs/Module/Editlayout.php:127 +#: ../../Zotlabs/Module/Layouts.php:128 ../../Zotlabs/Module/Layouts.php:188 msgid "Layout Name" msgstr "Layout-Name" -#: ../../Zotlabs/Module/Editlayout.php:127 -#: ../../Zotlabs/Module/Layouts.php:130 +#: ../../Zotlabs/Module/Editlayout.php:128 +#: ../../Zotlabs/Module/Layouts.php:131 msgid "Layout Description (Optional)" msgstr "Layout-Beschreibung (optional)" -#: ../../Zotlabs/Module/Editlayout.php:135 +#: ../../Zotlabs/Module/Editlayout.php:136 msgid "Edit Layout" msgstr "Layout bearbeiten" -#: ../../Zotlabs/Module/Editwebpage.php:143 +#: ../../Zotlabs/Module/Editwebpage.php:142 msgid "Page link" msgstr "Seiten-Link" -#: ../../Zotlabs/Module/Editwebpage.php:169 +#: ../../Zotlabs/Module/Editwebpage.php:168 msgid "Edit Webpage" msgstr "Webseite bearbeiten" -#: ../../Zotlabs/Module/Follow.php:34 -msgid "Channel added." -msgstr "Kanal hinzugefügt." - -#: ../../Zotlabs/Module/Acl.php:227 -msgid "network" -msgstr "Netzwerk" - -#: ../../Zotlabs/Module/Acl.php:237 -msgid "RSS" -msgstr "RSS" - #: ../../Zotlabs/Module/Group.php:24 msgid "Privacy group created." msgstr "Gruppe wurde erstellt." @@ -1595,7 +1819,7 @@ msgid "Could not create privacy group." msgstr "Gruppe konnte nicht erstellt werden." #: ../../Zotlabs/Module/Group.php:42 ../../Zotlabs/Module/Group.php:141 -#: ../../include/items.php:3893 +#: ../../include/items.php:3902 msgid "Privacy group not found." msgstr "Gruppe nicht gefunden." @@ -1639,31 +1863,57 @@ msgstr "Alle verbundenen Kanäle" msgid "Click on a channel to add or remove." msgstr "Wähle einen Kanal zum hinzufügen oder entfernen aus." -#: ../../Zotlabs/Module/Ffsapi.php:12 -msgid "Share content from Firefox to $Projectname" -msgstr "Inhalte von Firefox nach $Projectname teilen" +#: ../../Zotlabs/Module/Appman.php:37 ../../Zotlabs/Module/Appman.php:53 +msgid "App installed." +msgstr "App installiert." -#: ../../Zotlabs/Module/Ffsapi.php:15 -msgid "Activate the Firefox $Projectname provider" -msgstr "Aktiviert den $Projectname-Provider für firefox" +#: ../../Zotlabs/Module/Appman.php:46 +msgid "Malformed app." +msgstr "Fehlerhafte App." -#: ../../Zotlabs/Module/Api.php:61 ../../Zotlabs/Module/Api.php:85 -msgid "Authorize application connection" -msgstr "Zugriff für die Anwendung autorisieren" +#: ../../Zotlabs/Module/Appman.php:104 +msgid "Embed code" +msgstr "Code einbetten" -#: ../../Zotlabs/Module/Api.php:62 -msgid "Return to your app and insert this Securty Code:" -msgstr "Trage folgenden Sicherheitscode in der Anwendung ein:" +#: ../../Zotlabs/Module/Appman.php:110 ../../include/widgets.php:107 +msgid "Edit App" +msgstr "App bearbeiten" -#: ../../Zotlabs/Module/Api.php:72 -msgid "Please login to continue." -msgstr "Zum Weitermachen, bitte einloggen." +#: ../../Zotlabs/Module/Appman.php:110 +msgid "Create App" +msgstr "App erstellen" -#: ../../Zotlabs/Module/Api.php:87 -msgid "" -"Do you want to authorize this application to access your posts and contacts," -" and/or create new posts for you?" -msgstr "Möchtest Du dieser Anwendung erlauben, Deine Nachrichten und Kontakte abzurufen und/oder neue Nachrichten für Dich zu erstellen?" +#: ../../Zotlabs/Module/Appman.php:115 +msgid "Name of app" +msgstr "Name der App" + +#: ../../Zotlabs/Module/Appman.php:116 +msgid "Location (URL) of app" +msgstr "Ort (URL) der App" + +#: ../../Zotlabs/Module/Appman.php:118 +msgid "Photo icon URL" +msgstr "URL zum Icon" + +#: ../../Zotlabs/Module/Appman.php:118 +msgid "80 x 80 pixels - optional" +msgstr "80 x 80 Pixel – optional" + +#: ../../Zotlabs/Module/Appman.php:119 +msgid "Categories (optional, comma separated list)" +msgstr "Kategorien (optional, kommagetrennte Liste)" + +#: ../../Zotlabs/Module/Appman.php:120 +msgid "Version ID" +msgstr "Versions-ID" + +#: ../../Zotlabs/Module/Appman.php:121 +msgid "Price of app" +msgstr "Preis der App" + +#: ../../Zotlabs/Module/Appman.php:122 +msgid "Location (URL) to purchase app" +msgstr "Ort (URL), um die App zu kaufen" #: ../../Zotlabs/Module/Help.php:26 msgid "Documentation Search" @@ -1675,8 +1925,8 @@ msgid "Help:" msgstr "Hilfe:" #: ../../Zotlabs/Module/Help.php:85 ../../Zotlabs/Module/Help.php:90 -#: ../../Zotlabs/Module/Layouts.php:183 ../../Zotlabs/Lib/Apps.php:223 -#: ../../include/nav.php:159 +#: ../../Zotlabs/Module/Layouts.php:185 ../../Zotlabs/Lib/Apps.php:225 +#: ../../include/nav.php:161 msgid "Help" msgstr "Hilfe" @@ -1684,335 +1934,124 @@ msgstr "Hilfe" msgid "$Projectname Documentation" msgstr "$Projectname-Dokumentation" -#: ../../Zotlabs/Module/Filestorage.php:88 -msgid "Permission Denied." -msgstr "Zugriff verweigert." - -#: ../../Zotlabs/Module/Filestorage.php:104 -msgid "File not found." -msgstr "Datei nicht gefunden." - -#: ../../Zotlabs/Module/Filestorage.php:147 -msgid "Edit file permissions" -msgstr "Dateiberechtigungen bearbeiten" - -#: ../../Zotlabs/Module/Filestorage.php:156 -msgid "Set/edit permissions" -msgstr "Berechtigungen setzen/ändern" - -#: ../../Zotlabs/Module/Filestorage.php:157 -msgid "Include all files and sub folders" -msgstr "Alle Dateien und Unterverzeichnisse einbinden" - -#: ../../Zotlabs/Module/Filestorage.php:158 -msgid "Return to file list" -msgstr "Zurück zur Dateiliste" - -#: ../../Zotlabs/Module/Filestorage.php:160 -msgid "Copy/paste this code to attach file to a post" -msgstr "Diesen Code kopieren und einfügen, um die Datei an einen Beitrag anzuhängen" - -#: ../../Zotlabs/Module/Filestorage.php:161 -msgid "Copy/paste this URL to link file from a web page" -msgstr "Diese URL verwenden, um von einer Webseite aus auf die Datei zu verlinken" - -#: ../../Zotlabs/Module/Filestorage.php:163 -msgid "Share this file" -msgstr "Diese Datei freigeben" - -#: ../../Zotlabs/Module/Filestorage.php:164 -msgid "Show URL to this file" -msgstr "URL zu dieser Datei anzeigen" - -#: ../../Zotlabs/Module/Filestorage.php:165 -msgid "Notify your contacts about this file" -msgstr "Meine Kontakte über diese Datei benachrichtigen" - -#: ../../Zotlabs/Module/Apps.php:47 ../../include/widgets.php:102 -#: ../../include/nav.php:163 -msgid "Apps" -msgstr "Apps" - #: ../../Zotlabs/Module/Attach.php:13 msgid "Item not available." msgstr "Element nicht verfügbar." -#: ../../Zotlabs/Module/Import.php:32 -#, php-format -msgid "Your service plan only allows %d channels." -msgstr "Dein Vertrag erlaubt nur %d Kanäle." +#: ../../Zotlabs/Module/Pdledit.php:18 +msgid "Layout updated." +msgstr "Layout aktualisiert." -#: ../../Zotlabs/Module/Import.php:70 ../../Zotlabs/Module/Import_items.php:42 -msgid "Nothing to import." -msgstr "Nichts zu importieren." +#: ../../Zotlabs/Module/Pdledit.php:34 ../../Zotlabs/Module/Pdledit.php:61 +msgid "Edit System Page Description" +msgstr "Systemseitenbeschreibung bearbeiten" -#: ../../Zotlabs/Module/Import.php:94 ../../Zotlabs/Module/Import_items.php:66 -msgid "Unable to download data from old server" -msgstr "Daten können vom alten Server nicht heruntergeladen werden" +#: ../../Zotlabs/Module/Pdledit.php:56 +msgid "Layout not found." +msgstr "Layout nicht gefunden." -#: ../../Zotlabs/Module/Import.php:100 -#: ../../Zotlabs/Module/Import_items.php:72 -msgid "Imported file is empty." -msgstr "Die importierte Datei ist leer." +#: ../../Zotlabs/Module/Pdledit.php:62 +msgid "Module Name:" +msgstr "Modulname:" -#: ../../Zotlabs/Module/Import.php:122 -#: ../../Zotlabs/Module/Import_items.php:86 -#, php-format -msgid "Warning: Database versions differ by %1$d updates." -msgstr "Achtung: Datenbankversionen unterscheiden sich um %1$d Aktualisierungen." +#: ../../Zotlabs/Module/Pdledit.php:63 +msgid "Layout Help" +msgstr "Layout-Hilfe" -#: ../../Zotlabs/Module/Import.php:150 ../../include/import.php:86 -msgid "Cloned channel not found. Import failed." -msgstr "Geklonter Kanal nicht gefunden. Import fehlgeschlagen." +#: ../../Zotlabs/Module/Ffsapi.php:12 +msgid "Share content from Firefox to $Projectname" +msgstr "Inhalte von Firefox nach $Projectname teilen" -#: ../../Zotlabs/Module/Import.php:160 -msgid "No channel. Import failed." -msgstr "Kein Kanal. Import fehlgeschlagen." +#: ../../Zotlabs/Module/Ffsapi.php:15 +msgid "Activate the Firefox $Projectname provider" +msgstr "Aktiviert den $Projectname-Provider für firefox" -#: ../../Zotlabs/Module/Import.php:510 -#: ../../include/Import/import_diaspora.php:142 -msgid "Import completed." -msgstr "Import abgeschlossen." +#: ../../Zotlabs/Module/Acl.php:312 +msgid "network" +msgstr "Netzwerk" -#: ../../Zotlabs/Module/Import.php:532 -msgid "You must be logged in to use this feature." -msgstr "Du musst angemeldet sein um diese Funktion zu nutzen." +#: ../../Zotlabs/Module/Acl.php:322 +msgid "RSS" +msgstr "RSS" -#: ../../Zotlabs/Module/Import.php:537 -msgid "Import Channel" -msgstr "Kanal importieren" +#: ../../Zotlabs/Module/Filestorage.php:87 +msgid "Permission Denied." +msgstr "Zugriff verweigert." -#: ../../Zotlabs/Module/Import.php:538 -msgid "" -"Use this form to import an existing channel from a different server/hub. You" -" may retrieve the channel identity from the old server/hub via the network " -"or provide an export file." -msgstr "Verwende dieses Formular, um einen existierenden Kanal von einem anderen Hub zu importieren. Du kannst den Kanal direkt vom bisherigen Hub über das Netzwerk oder aus einer exportierten Sicherheitskopie importieren." +#: ../../Zotlabs/Module/Filestorage.php:103 +msgid "File not found." +msgstr "Datei nicht gefunden." -#: ../../Zotlabs/Module/Import.php:539 -#: ../../Zotlabs/Module/Import_items.php:119 -msgid "File to Upload" -msgstr "Hochzuladende Datei:" +#: ../../Zotlabs/Module/Filestorage.php:146 +msgid "Edit file permissions" +msgstr "Dateiberechtigungen bearbeiten" -#: ../../Zotlabs/Module/Import.php:540 -msgid "Or provide the old server/hub details" -msgstr "Oder gib die Details Deines bisherigen $Projectname-Hubs ein" +#: ../../Zotlabs/Module/Filestorage.php:155 +msgid "Set/edit permissions" +msgstr "Berechtigungen setzen/ändern" -#: ../../Zotlabs/Module/Import.php:541 -msgid "Your old identity address (xyz@example.com)" -msgstr "Bisherige Kanal-Adresse (xyz@example.com)" +#: ../../Zotlabs/Module/Filestorage.php:156 +msgid "Include all files and sub folders" +msgstr "Alle Dateien und Unterverzeichnisse einbinden" -#: ../../Zotlabs/Module/Import.php:542 -msgid "Your old login email address" -msgstr "Deine alte Login-E-Mail-Adresse" +#: ../../Zotlabs/Module/Filestorage.php:157 +msgid "Return to file list" +msgstr "Zurück zur Dateiliste" -#: ../../Zotlabs/Module/Import.php:543 -msgid "Your old login password" -msgstr "Dein altes Passwort" +#: ../../Zotlabs/Module/Filestorage.php:159 +msgid "Copy/paste this code to attach file to a post" +msgstr "Diesen Code kopieren und einfügen, um die Datei an einen Beitrag anzuhängen" -#: ../../Zotlabs/Module/Import.php:544 -msgid "" -"For either option, please choose whether to make this hub your new primary " -"address, or whether your old location should continue this role. You will be" -" able to post from either location, but only one can be marked as the " -"primary location for files, photos, and media." -msgstr "Egal, welche Option Du wählst – bitte lege fest, ob dieser Server die neue primäre Adresse dieses Kanals sein soll, oder ob der bisherige $Projectname-Hub diese Rolle weiterhin wahrnimmt. Du kannst von beiden Servern aus posten, aber nur einer kann der primäre Ort Deiner Dateien, Fotos und Medien sein." +#: ../../Zotlabs/Module/Filestorage.php:160 +msgid "Copy/paste this URL to link file from a web page" +msgstr "Diese URL verwenden, um von einer Webseite aus auf die Datei zu verlinken" -#: ../../Zotlabs/Module/Import.php:545 -msgid "Make this hub my primary location" -msgstr "Dieser $Pojectname-Hub ist mein primärer Hub." +#: ../../Zotlabs/Module/Filestorage.php:162 +msgid "Share this file" +msgstr "Diese Datei freigeben" -#: ../../Zotlabs/Module/Import.php:546 -msgid "" -"Import existing posts if possible (experimental - limited by available " -"memory" -msgstr "Importiere bestehende Beiträge falls möglich (experimentell - begrenzt durch zur Verfügung stehenden Speicher" +#: ../../Zotlabs/Module/Filestorage.php:163 +msgid "Show URL to this file" +msgstr "URL zu dieser Datei anzeigen" -#: ../../Zotlabs/Module/Import.php:547 -msgid "" -"This process may take several minutes to complete. Please submit the form " -"only once and leave this page open until finished." -msgstr "Dieser Vorgang kann einige Minuten dauern. Bitte sende das Formular nur einmal ab und lasse diese Seite bis zur Fertigstellung offen." +#: ../../Zotlabs/Module/Filestorage.php:164 +msgid "Notify your contacts about this file" +msgstr "Meine Kontakte über diese Datei benachrichtigen" -#: ../../Zotlabs/Module/Item.php:178 -msgid "Unable to locate original post." -msgstr "Originalbeitrag nicht gefunden." - -#: ../../Zotlabs/Module/Item.php:427 -msgid "Empty post discarded." -msgstr "Leeren Beitrag verworfen." - -#: ../../Zotlabs/Module/Item.php:467 -msgid "Executable content type not permitted to this channel." -msgstr "Ausführbarer Content-Typ ist für diesen Kanal nicht freigegeben." - -#: ../../Zotlabs/Module/Item.php:847 -msgid "Duplicate post suppressed." -msgstr "Doppelter Beitrag unterdrückt." - -#: ../../Zotlabs/Module/Item.php:977 -msgid "System error. Post not saved." -msgstr "Systemfehler. Beitrag nicht gespeichert." - -#: ../../Zotlabs/Module/Item.php:1241 -msgid "Unable to obtain post information from database." -msgstr "Beitragsinformationen können nicht aus der Datenbank abgerufen werden." - -#: ../../Zotlabs/Module/Item.php:1248 -#, php-format -msgid "You have reached your limit of %1$.0f top level posts." -msgstr "Du hast die maximale Anzahl von %1$.0f Beiträgen erreicht." - -#: ../../Zotlabs/Module/Item.php:1255 -#, php-format -msgid "You have reached your limit of %1$.0f webpages." -msgstr "Du hast die maximale Anzahl von %1$.0f Webseiten erreicht." - -#: ../../Zotlabs/Module/Layouts.php:181 ../../include/text.php:2267 +#: ../../Zotlabs/Module/Layouts.php:183 ../../include/text.php:2240 msgid "Layouts" msgstr "Layouts" -#: ../../Zotlabs/Module/Layouts.php:183 +#: ../../Zotlabs/Module/Layouts.php:185 msgid "Comanche page description language help" msgstr "Hilfe zur Comanche-Seitenbeschreibungssprache" -#: ../../Zotlabs/Module/Layouts.php:187 +#: ../../Zotlabs/Module/Layouts.php:189 msgid "Layout Description" msgstr "Layout-Beschreibung" -#: ../../Zotlabs/Module/Layouts.php:192 +#: ../../Zotlabs/Module/Layouts.php:190 ../../Zotlabs/Module/Menu.php:114 +#: ../../Zotlabs/Module/Blocks.php:157 ../../Zotlabs/Module/Webpages.php:205 +#: ../../include/page_widgets.php:47 +msgid "Created" +msgstr "Erstellt" + +#: ../../Zotlabs/Module/Layouts.php:191 ../../Zotlabs/Module/Menu.php:115 +#: ../../Zotlabs/Module/Blocks.php:158 ../../Zotlabs/Module/Webpages.php:206 +#: ../../include/page_widgets.php:48 +msgid "Edited" +msgstr "Geändert" + +#: ../../Zotlabs/Module/Layouts.php:193 ../../Zotlabs/Module/Photos.php:1070 +#: ../../Zotlabs/Module/Blocks.php:161 ../../Zotlabs/Module/Webpages.php:195 +#: ../../include/conversation.php:1219 +msgid "Share" +msgstr "Teilen" + +#: ../../Zotlabs/Module/Layouts.php:194 msgid "Download PDL file" msgstr "PDL-Datei herunterladen" -#: ../../Zotlabs/Module/Home.php:61 ../../Zotlabs/Module/Home.php:69 -#: ../../Zotlabs/Module/Siteinfo.php:65 -msgid "$Projectname" -msgstr "$Projectname" - -#: ../../Zotlabs/Module/Home.php:79 -#, php-format -msgid "Welcome to %s" -msgstr "Willkommen auf %s" - -#: ../../Zotlabs/Module/Id.php:13 -msgid "First Name" -msgstr "Vorname" - -#: ../../Zotlabs/Module/Id.php:14 -msgid "Last Name" -msgstr "Nachname" - -#: ../../Zotlabs/Module/Id.php:15 -msgid "Nickname" -msgstr "Spitzname" - -#: ../../Zotlabs/Module/Id.php:16 -msgid "Full Name" -msgstr "Voller Name" - -#: ../../Zotlabs/Module/Id.php:17 ../../Zotlabs/Module/Id.php:18 -#: ../../Zotlabs/Module/Admin.php:1035 ../../Zotlabs/Module/Admin.php:1047 -#: ../../include/network.php:2151 ../../boot.php:1705 -msgid "Email" -msgstr "E-Mail" - -#: ../../Zotlabs/Module/Id.php:19 ../../Zotlabs/Module/Id.php:20 -#: ../../Zotlabs/Module/Id.php:21 ../../Zotlabs/Lib/Apps.php:236 -msgid "Profile Photo" -msgstr "Profilfoto" - -#: ../../Zotlabs/Module/Id.php:22 -msgid "Profile Photo 16px" -msgstr "Profilfoto 16 px" - -#: ../../Zotlabs/Module/Id.php:23 -msgid "Profile Photo 32px" -msgstr "Profilfoto 32 px" - -#: ../../Zotlabs/Module/Id.php:24 -msgid "Profile Photo 48px" -msgstr "Profilfoto 48 px" - -#: ../../Zotlabs/Module/Id.php:25 -msgid "Profile Photo 64px" -msgstr "Profilfoto 64 px" - -#: ../../Zotlabs/Module/Id.php:26 -msgid "Profile Photo 80px" -msgstr "Profilfoto 80 px" - -#: ../../Zotlabs/Module/Id.php:27 -msgid "Profile Photo 128px" -msgstr "Profilfoto 128 px" - -#: ../../Zotlabs/Module/Id.php:28 -msgid "Timezone" -msgstr "Zeitzone" - -#: ../../Zotlabs/Module/Id.php:29 ../../Zotlabs/Module/Profiles.php:731 -msgid "Homepage URL" -msgstr "Homepage-URL" - -#: ../../Zotlabs/Module/Id.php:30 ../../Zotlabs/Lib/Apps.php:234 -msgid "Language" -msgstr "Sprache" - -#: ../../Zotlabs/Module/Id.php:31 -msgid "Birth Year" -msgstr "Geburtsjahr" - -#: ../../Zotlabs/Module/Id.php:32 -msgid "Birth Month" -msgstr "Geburtsmonat" - -#: ../../Zotlabs/Module/Id.php:33 -msgid "Birth Day" -msgstr "Geburtstag" - -#: ../../Zotlabs/Module/Id.php:34 -msgid "Birthdate" -msgstr "Geburtsdatum" - -#: ../../Zotlabs/Module/Id.php:35 ../../Zotlabs/Module/Profiles.php:454 -msgid "Gender" -msgstr "Geschlecht" - -#: ../../Zotlabs/Module/Id.php:108 ../../include/selectors.php:49 -#: ../../include/selectors.php:66 -msgid "Male" -msgstr "Männlich" - -#: ../../Zotlabs/Module/Id.php:110 ../../include/selectors.php:49 -#: ../../include/selectors.php:66 -msgid "Female" -msgstr "Weiblich" - -#: ../../Zotlabs/Module/Impel.php:41 ../../include/bbcode.php:192 -msgid "webpage" -msgstr "Webseite" - -#: ../../Zotlabs/Module/Impel.php:46 ../../include/bbcode.php:198 -msgid "block" -msgstr "Block" - -#: ../../Zotlabs/Module/Impel.php:51 ../../include/bbcode.php:195 -msgid "layout" -msgstr "Layout" - -#: ../../Zotlabs/Module/Impel.php:58 ../../include/bbcode.php:201 -msgid "menu" -msgstr "Menü" - -#: ../../Zotlabs/Module/Impel.php:196 -#, php-format -msgid "%s element installed" -msgstr "Element für %s installiert" - -#: ../../Zotlabs/Module/Impel.php:199 -#, php-format -msgid "%s element installation failed" -msgstr "Installation des Elements %s fehlgeschlagen" - #: ../../Zotlabs/Module/Like.php:19 msgid "Like/Dislike" msgstr "Mögen/Nicht mögen" @@ -2048,1180 +2087,65 @@ msgstr "Kanal nicht vorhanden." msgid "Previous action reversed." msgstr "Die vorherige Aktion wurde rückgängig gemacht." -#: ../../Zotlabs/Module/Like.php:371 ../../Zotlabs/Module/Subthread.php:87 -#: ../../Zotlabs/Module/Tagger.php:47 ../../include/text.php:1940 -#: ../../include/conversation.php:120 +#: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87 +#: ../../Zotlabs/Module/Tagger.php:47 ../../include/conversation.php:120 +#: ../../include/text.php:1921 msgid "photo" msgstr "Foto" -#: ../../Zotlabs/Module/Like.php:371 ../../Zotlabs/Module/Subthread.php:87 -#: ../../include/text.php:1946 ../../include/conversation.php:148 +#: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87 +#: ../../include/conversation.php:148 ../../include/text.php:1927 msgid "status" msgstr "Status" -#: ../../Zotlabs/Module/Like.php:420 ../../include/conversation.php:164 +#: ../../Zotlabs/Module/Like.php:419 ../../include/conversation.php:164 #, php-format msgid "%1$s likes %2$s's %3$s" msgstr "%1$s gefällt %2$ss %3$s" -#: ../../Zotlabs/Module/Like.php:422 ../../include/conversation.php:167 +#: ../../Zotlabs/Module/Like.php:421 ../../include/conversation.php:167 #, php-format msgid "%1$s doesn't like %2$s's %3$s" msgstr "%1$s gefällt %2$ss %3$s nicht" -#: ../../Zotlabs/Module/Like.php:424 +#: ../../Zotlabs/Module/Like.php:423 #, php-format msgid "%1$s agrees with %2$s's %3$s" msgstr "%1$s stimmt %2$ss %3$s zu" -#: ../../Zotlabs/Module/Like.php:426 +#: ../../Zotlabs/Module/Like.php:425 #, php-format msgid "%1$s doesn't agree with %2$s's %3$s" msgstr "%1$s lehnt %2$ss %3$s ab" -#: ../../Zotlabs/Module/Like.php:428 +#: ../../Zotlabs/Module/Like.php:427 #, php-format msgid "%1$s abstains from a decision on %2$s's %3$s" msgstr "%1$s enthält sich zu %2$ss %3$s" -#: ../../Zotlabs/Module/Like.php:430 +#: ../../Zotlabs/Module/Like.php:429 #, php-format msgid "%1$s is attending %2$s's %3$s" msgstr "%1$s nimmt an %2$ss %3$s teil" -#: ../../Zotlabs/Module/Like.php:432 +#: ../../Zotlabs/Module/Like.php:431 #, php-format msgid "%1$s is not attending %2$s's %3$s" msgstr "%1$s nimmt an %2$ss %3$s nicht teil" -#: ../../Zotlabs/Module/Like.php:434 +#: ../../Zotlabs/Module/Like.php:433 #, php-format msgid "%1$s may attend %2$s's %3$s" msgstr "%1$s nimmt vielleicht an %2$ss %3$s teil" -#: ../../Zotlabs/Module/Like.php:537 +#: ../../Zotlabs/Module/Like.php:536 msgid "Action completed." msgstr "Aktion durchgeführt." -#: ../../Zotlabs/Module/Like.php:538 +#: ../../Zotlabs/Module/Like.php:537 msgid "Thank you." msgstr "Vielen Dank." -#: ../../Zotlabs/Module/Import_items.php:102 -msgid "Import completed" -msgstr "Import abgeschlossen" - -#: ../../Zotlabs/Module/Import_items.php:117 -msgid "Import Items" -msgstr "Beiträge importieren" - -#: ../../Zotlabs/Module/Import_items.php:118 -msgid "" -"Use this form to import existing posts and content from an export file." -msgstr "Mit diesem Formular kannst Du existierende Beiträge und Inhalte aus einer Sicherungsdatei importieren." - -#: ../../Zotlabs/Module/Invite.php:29 -msgid "Total invitation limit exceeded." -msgstr "Einladungslimit überschritten." - -#: ../../Zotlabs/Module/Invite.php:53 -#, php-format -msgid "%s : Not a valid email address." -msgstr "%s : Keine gültige Email Adresse." - -#: ../../Zotlabs/Module/Invite.php:63 -msgid "Please join us on $Projectname" -msgstr "Schließe Dich uns auf $Projectname an!" - -#: ../../Zotlabs/Module/Invite.php:74 -msgid "Invitation limit exceeded. Please contact your site administrator." -msgstr "Einladungslimit überschritten. Bitte kontaktiere den Administrator Deines $Projectname-Servers." - -#: ../../Zotlabs/Module/Invite.php:79 -#, php-format -msgid "%s : Message delivery failed." -msgstr "%s : Nachricht konnte nicht zugestellt werden." - -#: ../../Zotlabs/Module/Invite.php:83 -#, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "%d Nachricht gesendet." -msgstr[1] "%d Nachrichten gesendet." - -#: ../../Zotlabs/Module/Invite.php:102 -msgid "You have no more invitations available" -msgstr "Du hast keine weiteren verfügbare Einladungen" - -#: ../../Zotlabs/Module/Invite.php:133 -msgid "Send invitations" -msgstr "Einladungen senden" - -#: ../../Zotlabs/Module/Invite.php:134 -msgid "Enter email addresses, one per line:" -msgstr "Email-Adressen eintragen, eine pro Zeile:" - -#: ../../Zotlabs/Module/Invite.php:135 ../../Zotlabs/Module/Mail.php:249 -msgid "Your message:" -msgstr "Deine Nachricht:" - -#: ../../Zotlabs/Module/Invite.php:136 -msgid "Please join my community on $Projectname." -msgstr "Schließe Dich uns auf $Projectname an!" - -#: ../../Zotlabs/Module/Invite.php:138 -msgid "You will need to supply this invitation code:" -msgstr "Bitte verwende bei der Registrierung den folgenden Einladungscode:" - -#: ../../Zotlabs/Module/Invite.php:139 -msgid "" -"1. Register at any $Projectname location (they are all inter-connected)" -msgstr "1. Registriere Dich auf einem beliebigen $Projectname-Hub (sie sind alle miteinander verbunden)" - -#: ../../Zotlabs/Module/Invite.php:141 -msgid "2. Enter my $Projectname network address into the site searchbar." -msgstr "2. Gib meine $Projectname-Adresse im Suchfeld ein." - -#: ../../Zotlabs/Module/Invite.php:142 -msgid "or visit" -msgstr "oder besuche" - -#: ../../Zotlabs/Module/Invite.php:144 -msgid "3. Click [Connect]" -msgstr "3. Klicke auf [Verbinden]" - -#: ../../Zotlabs/Module/Lockview.php:61 -msgid "Remote privacy information not available." -msgstr "Privatsphäre-Einstellungen anderer Nutzer sind nicht verfügbar." - -#: ../../Zotlabs/Module/Lockview.php:82 -msgid "Visible to:" -msgstr "Sichtbar für:" - -#: ../../Zotlabs/Module/Locs.php:25 ../../Zotlabs/Module/Locs.php:54 -msgid "Location not found." -msgstr "Klon nicht gefunden." - -#: ../../Zotlabs/Module/Locs.php:62 -msgid "Location lookup failed." -msgstr "Nachschlagen des Kanal-Ortes fehlgeschlagen" - -#: ../../Zotlabs/Module/Locs.php:66 -msgid "" -"Please select another location to become primary before removing the primary" -" location." -msgstr "Bitte mache einen anderen Kanal-Ort zum primären Ort, bevor Du den primären Ort löschst." - -#: ../../Zotlabs/Module/Locs.php:95 -msgid "Syncing locations" -msgstr "Synchronisiere Klone" - -#: ../../Zotlabs/Module/Locs.php:105 -msgid "No locations found." -msgstr "Keine Klon-Adressen gefunden." - -#: ../../Zotlabs/Module/Locs.php:116 -msgid "Manage Channel Locations" -msgstr "Klon-Adressen verwalten" - -#: ../../Zotlabs/Module/Locs.php:118 ../../Zotlabs/Module/Profiles.php:470 -#: ../../Zotlabs/Module/Admin.php:1224 -msgid "Address" -msgstr "Adresse" - -#: ../../Zotlabs/Module/Locs.php:119 -msgid "Primary" -msgstr "Primär" - -#: ../../Zotlabs/Module/Locs.php:120 ../../Zotlabs/Module/Menu.php:113 -msgid "Drop" -msgstr "Löschen" - -#: ../../Zotlabs/Module/Locs.php:122 -msgid "Sync Now" -msgstr "Jetzt synchronisieren" - -#: ../../Zotlabs/Module/Locs.php:123 -msgid "Please wait several minutes between consecutive operations." -msgstr "Bitte warte mehrere Minuten zwischen dem Ausführen zweier Operationen!" - -#: ../../Zotlabs/Module/Locs.php:124 -msgid "" -"When possible, drop a location by logging into that website/hub and removing" -" your channel." -msgstr "Wenn möglich, lösche einen Klon, indem Du Dich auf dem jeweiligen Hub einloggst und den Kanal dort löschst." - -#: ../../Zotlabs/Module/Locs.php:125 -msgid "Use this form to drop the location if the hub is no longer operating." -msgstr "Benutze dieses Formular zum Löschen eines Klons, wenn es den Hub nicht mehr gibt." - -#: ../../Zotlabs/Module/Magic.php:71 -msgid "Hub not found." -msgstr "Server nicht gefunden." - -#: ../../Zotlabs/Module/Mail.php:38 -msgid "Unable to lookup recipient." -msgstr "Konnte den Empfänger nicht finden." - -#: ../../Zotlabs/Module/Mail.php:45 -msgid "Unable to communicate with requested channel." -msgstr "Die Kommunikation mit dem ausgewählten Kanal ist fehlgeschlagen." - -#: ../../Zotlabs/Module/Mail.php:52 -msgid "Cannot verify requested channel." -msgstr "Verifizierung des angeforderten Kanals fehlgeschlagen." - -#: ../../Zotlabs/Module/Mail.php:78 -msgid "Selected channel has private message restrictions. Send failed." -msgstr "Der ausgewählte Kanal hat Einschränkungen bzgl. privater Nachrichten. Senden fehlgeschlagen." - -#: ../../Zotlabs/Module/Mail.php:143 -msgid "Messages" -msgstr "Nachrichten" - -#: ../../Zotlabs/Module/Mail.php:178 -msgid "Message recalled." -msgstr "Nachricht widerrufen." - -#: ../../Zotlabs/Module/Mail.php:191 -msgid "Conversation removed." -msgstr "Unterhaltung gelöscht." - -#: ../../Zotlabs/Module/Mail.php:206 ../../Zotlabs/Module/Mail.php:315 -msgid "Expires YYYY-MM-DD HH:MM" -msgstr "Verfällt YYYY-MM-DD HH;MM" - -#: ../../Zotlabs/Module/Mail.php:234 -msgid "Requested channel is not in this network" -msgstr "Angeforderter Kanal ist nicht in diesem Netzwerk." - -#: ../../Zotlabs/Module/Mail.php:242 -msgid "Send Private Message" -msgstr "Private Nachricht senden" - -#: ../../Zotlabs/Module/Mail.php:243 ../../Zotlabs/Module/Mail.php:368 -msgid "To:" -msgstr "An:" - -#: ../../Zotlabs/Module/Mail.php:246 ../../Zotlabs/Module/Mail.php:370 -msgid "Subject:" -msgstr "Betreff:" - -#: ../../Zotlabs/Module/Mail.php:251 ../../Zotlabs/Module/Mail.php:376 -#: ../../include/conversation.php:1220 -msgid "Attach file" -msgstr "Datei anhängen" - -#: ../../Zotlabs/Module/Mail.php:253 -msgid "Send" -msgstr "Absenden" - -#: ../../Zotlabs/Module/Mail.php:256 ../../Zotlabs/Module/Mail.php:381 -#: ../../include/conversation.php:1251 -msgid "Set expiration date" -msgstr "Verfallsdatum" - -#: ../../Zotlabs/Module/Mail.php:340 -msgid "Delete message" -msgstr "Nachricht löschen" - -#: ../../Zotlabs/Module/Mail.php:341 -msgid "Delivery report" -msgstr "Zustellungsbericht" - -#: ../../Zotlabs/Module/Mail.php:342 -msgid "Recall message" -msgstr "Nachricht widerrufen" - -#: ../../Zotlabs/Module/Mail.php:344 -msgid "Message has been recalled." -msgstr "Die Nachricht wurde widerrufen." - -#: ../../Zotlabs/Module/Mail.php:361 -msgid "Delete Conversation" -msgstr "Unterhaltung löschen" - -#: ../../Zotlabs/Module/Mail.php:363 -msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." -msgstr "Keine sichere Kommunikation verfügbar. Eventuell kannst Du auf der Profilseite des Absenders antworten." - -#: ../../Zotlabs/Module/Mail.php:367 -msgid "Send Reply" -msgstr "Antwort senden" - -#: ../../Zotlabs/Module/Mail.php:372 -#, php-format -msgid "Your message for %s (%s):" -msgstr "Deine Nachricht für %s (%s):" - -#: ../../Zotlabs/Module/Manage.php:136 -#: ../../Zotlabs/Module/New_channel.php:121 -#, php-format -msgid "You have created %1$.0f of %2$.0f allowed channels." -msgstr "Du hast %1$.0f von maximal %2$.0f erlaubten Kanälen eingerichtet." - -#: ../../Zotlabs/Module/Manage.php:143 -msgid "Create a new channel" -msgstr "Neuen Kanal anlegen" - -#: ../../Zotlabs/Module/Manage.php:164 ../../Zotlabs/Lib/Apps.php:213 -#: ../../include/nav.php:206 -msgid "Channel Manager" -msgstr "Kanal-Manager" - -#: ../../Zotlabs/Module/Manage.php:165 -msgid "Current Channel" -msgstr "Aktueller Kanal" - -#: ../../Zotlabs/Module/Manage.php:167 -msgid "Switch to one of your channels by selecting it." -msgstr "Wechsle zu einem Deiner Kanäle, indem Du auf ihn klickst." - -#: ../../Zotlabs/Module/Manage.php:168 -msgid "Default Channel" -msgstr "Standard Kanal" - -#: ../../Zotlabs/Module/Manage.php:169 -msgid "Make Default" -msgstr "Zum Standard machen" - -#: ../../Zotlabs/Module/Manage.php:172 -#, php-format -msgid "%d new messages" -msgstr "%d neue Nachrichten" - -#: ../../Zotlabs/Module/Manage.php:173 -#, php-format -msgid "%d new introductions" -msgstr "%d neue Vorstellungen" - -#: ../../Zotlabs/Module/Manage.php:175 -msgid "Delegated Channel" -msgstr "Delegierte Kanäle" - -#: ../../Zotlabs/Module/Lostpass.php:19 -msgid "No valid account found." -msgstr "Kein gültiges Konto gefunden." - -#: ../../Zotlabs/Module/Lostpass.php:33 -msgid "Password reset request issued. Check your email." -msgstr "Zurücksetzen des Passworts eingeleitet. Schau in Deine E-Mails." - -#: ../../Zotlabs/Module/Lostpass.php:39 ../../Zotlabs/Module/Lostpass.php:107 -#, php-format -msgid "Site Member (%s)" -msgstr "Nutzer (%s)" - -#: ../../Zotlabs/Module/Lostpass.php:44 -#, php-format -msgid "Password reset requested at %s" -msgstr "Passwort-Rücksetzung auf %s angefordert" - -#: ../../Zotlabs/Module/Lostpass.php:67 -msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." -msgstr "Die Anfrage konnte nicht verifiziert werden. (Vielleicht hast Du schon einmal auf den Link in der E-Mail geklickt?) Passwort-Rücksetzung fehlgeschlagen." - -#: ../../Zotlabs/Module/Lostpass.php:90 ../../boot.php:1711 -msgid "Password Reset" -msgstr "Zurücksetzen des Kennworts" - -#: ../../Zotlabs/Module/Lostpass.php:91 -msgid "Your password has been reset as requested." -msgstr "Dein Passwort wurde wie angefordert neu erstellt." - -#: ../../Zotlabs/Module/Lostpass.php:92 -msgid "Your new password is" -msgstr "Dein neues Passwort lautet" - -#: ../../Zotlabs/Module/Lostpass.php:93 -msgid "Save or copy your new password - and then" -msgstr "Speichere oder kopiere Dein neues Passwort – und dann" - -#: ../../Zotlabs/Module/Lostpass.php:94 -msgid "click here to login" -msgstr "Klicke hier, um dich anzumelden" - -#: ../../Zotlabs/Module/Lostpass.php:95 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." -msgstr "Dein Passwort kann unter Einstellungen nach einer erfolgreichen Anmeldung geändert werden." - -#: ../../Zotlabs/Module/Lostpass.php:112 -#, php-format -msgid "Your password has changed at %s" -msgstr "Auf %s wurde Dein Passwort geändert" - -#: ../../Zotlabs/Module/Lostpass.php:127 -msgid "Forgot your Password?" -msgstr "Kennwort vergessen?" - -#: ../../Zotlabs/Module/Lostpass.php:128 -msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." -msgstr "Gib Deine E-Mail-Adresse ein, um Dein Passwort zurücksetzen zu lassen. Du erhältst dann weitere Anweisungen per E-Mail." - -#: ../../Zotlabs/Module/Lostpass.php:129 -msgid "Email Address" -msgstr "E-Mail Adresse" - -#: ../../Zotlabs/Module/Lostpass.php:130 -msgid "Reset" -msgstr "Zurücksetzen" - -#: ../../Zotlabs/Module/Menu.php:49 -msgid "Unable to update menu." -msgstr "Kann Menü nicht aktualisieren." - -#: ../../Zotlabs/Module/Menu.php:60 -msgid "Unable to create menu." -msgstr "Kann Menü nicht erstellen." - -#: ../../Zotlabs/Module/Menu.php:98 ../../Zotlabs/Module/Menu.php:110 -msgid "Menu Name" -msgstr "Name des Menüs" - -#: ../../Zotlabs/Module/Menu.php:98 -msgid "Unique name (not visible on webpage) - required" -msgstr "Eindeutiger Name (nicht sichtbar auf der Webseite) – erforderlich" - -#: ../../Zotlabs/Module/Menu.php:99 ../../Zotlabs/Module/Menu.php:111 -msgid "Menu Title" -msgstr "Menütitel" - -#: ../../Zotlabs/Module/Menu.php:99 -msgid "Visible on webpage - leave empty for no title" -msgstr "Sichtbar auf der Webseite – für keinen Titel leer lassen" - -#: ../../Zotlabs/Module/Menu.php:100 -msgid "Allow Bookmarks" -msgstr "Lesezeichen erlauben" - -#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 -msgid "Menu may be used to store saved bookmarks" -msgstr "Im Menü können gespeicherte Lesezeichen abgelegt werden" - -#: ../../Zotlabs/Module/Menu.php:101 ../../Zotlabs/Module/Menu.php:159 -msgid "Submit and proceed" -msgstr "Absenden und fortfahren" - -#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2266 -msgid "Menus" -msgstr "Menüs" - -#: ../../Zotlabs/Module/Menu.php:117 -msgid "Bookmarks allowed" -msgstr "Lesezeichen erlaubt" - -#: ../../Zotlabs/Module/Menu.php:119 -msgid "Delete this menu" -msgstr "Lösche dieses Menü" - -#: ../../Zotlabs/Module/Menu.php:120 ../../Zotlabs/Module/Menu.php:154 -msgid "Edit menu contents" -msgstr "Bearbeite Menü Inhalte" - -#: ../../Zotlabs/Module/Menu.php:121 -msgid "Edit this menu" -msgstr "Dieses Menü bearbeiten" - -#: ../../Zotlabs/Module/Menu.php:136 -msgid "Menu could not be deleted." -msgstr "Menü konnte nicht gelöscht werden." - -#: ../../Zotlabs/Module/Menu.php:144 ../../Zotlabs/Module/Mitem.php:28 -msgid "Menu not found." -msgstr "Menü nicht gefunden" - -#: ../../Zotlabs/Module/Menu.php:149 -msgid "Edit Menu" -msgstr "Menü bearbeiten" - -#: ../../Zotlabs/Module/Menu.php:153 -msgid "Add or remove entries to this menu" -msgstr "Einträge zu diesem Menü hinzufügen oder entfernen" - -#: ../../Zotlabs/Module/Menu.php:155 -msgid "Menu name" -msgstr "Menü Name" - -#: ../../Zotlabs/Module/Menu.php:155 -msgid "Must be unique, only seen by you" -msgstr "Muss eindeutig sein, ist aber nur für Dich sichtbar" - -#: ../../Zotlabs/Module/Menu.php:156 -msgid "Menu title" -msgstr "Menü Titel" - -#: ../../Zotlabs/Module/Menu.php:156 -msgid "Menu title as seen by others" -msgstr "Menü Titel wie er von anderen gesehen wird" - -#: ../../Zotlabs/Module/Menu.php:157 -msgid "Allow bookmarks" -msgstr "Erlaube Lesezeichen" - -#: ../../Zotlabs/Module/Menu.php:166 ../../Zotlabs/Module/Mitem.php:120 -#: ../../Zotlabs/Module/Xchan.php:41 -msgid "Not found." -msgstr "Nicht gefunden." - -#: ../../Zotlabs/Module/Mood.php:67 ../../include/conversation.php:260 -#, php-format -msgctxt "mood" -msgid "%1$s is %2$s" -msgstr "%1$s ist %2$s" - -#: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Lib/Apps.php:225 -msgid "Mood" -msgstr "Laune" - -#: ../../Zotlabs/Module/Mood.php:136 -msgid "Set your current mood and tell your friends" -msgstr "Wähle Deine aktuelle Stimmung und teile sie mit Deinen Freunden" - -#: ../../Zotlabs/Module/Match.php:26 -msgid "Profile Match" -msgstr "Profil-Übereinstimmungen" - -#: ../../Zotlabs/Module/Match.php:35 -msgid "No keywords to match. Please add keywords to your default profile." -msgstr "Keine Schlüsselwörter für den Abgleich gefunden. Bitte füge Schlüsselwörter zu Deinem Standardprofil hinzu." - -#: ../../Zotlabs/Module/Match.php:67 -msgid "is interested in:" -msgstr "interessiert sich für:" - -#: ../../Zotlabs/Module/Match.php:74 -msgid "No matches" -msgstr "Keine Übereinstimmungen" - -#: ../../Zotlabs/Module/Network.php:96 -msgid "No such group" -msgstr "Gruppe nicht gefunden" - -#: ../../Zotlabs/Module/Network.php:136 -msgid "No such channel" -msgstr "Kanal nicht gefunden" - -#: ../../Zotlabs/Module/Network.php:141 -msgid "forum" -msgstr "Forum" - -#: ../../Zotlabs/Module/Network.php:153 -msgid "Search Results For:" -msgstr "Suchergebnisse für:" - -#: ../../Zotlabs/Module/Network.php:217 -msgid "Privacy group is empty" -msgstr "Gruppe ist leer" - -#: ../../Zotlabs/Module/Network.php:226 -msgid "Privacy group: " -msgstr "Gruppe:" - -#: ../../Zotlabs/Module/Network.php:252 -msgid "Invalid connection." -msgstr "Ungültige Verbindung." - -#: ../../Zotlabs/Module/Notify.php:57 -#: ../../Zotlabs/Module/Notifications.php:98 -msgid "No more system notifications." -msgstr "Keine System-Benachrichtigungen mehr." - -#: ../../Zotlabs/Module/Notify.php:61 -#: ../../Zotlabs/Module/Notifications.php:102 -msgid "System Notifications" -msgstr "System-Benachrichtigungen" - -#: ../../Zotlabs/Module/Mitem.php:52 -msgid "Unable to create element." -msgstr "Element konnte nicht erstellt werden." - -#: ../../Zotlabs/Module/Mitem.php:76 -msgid "Unable to update menu element." -msgstr "Kann Menü-Element nicht aktualisieren." - -#: ../../Zotlabs/Module/Mitem.php:92 -msgid "Unable to add menu element." -msgstr "Kann Menü-Bestandteil nicht hinzufügen." - -#: ../../Zotlabs/Module/Mitem.php:153 ../../Zotlabs/Module/Mitem.php:226 -msgid "Menu Item Permissions" -msgstr "Zugriffsrechte des Menü-Elements" - -#: ../../Zotlabs/Module/Mitem.php:154 ../../Zotlabs/Module/Mitem.php:227 -#: ../../Zotlabs/Module/Settings.php:1068 -msgid "(click to open/close)" -msgstr "(zum öffnen/schließen anklicken)" - -#: ../../Zotlabs/Module/Mitem.php:156 ../../Zotlabs/Module/Mitem.php:172 -msgid "Link Name" -msgstr "Name des Links" - -#: ../../Zotlabs/Module/Mitem.php:157 ../../Zotlabs/Module/Mitem.php:231 -msgid "Link or Submenu Target" -msgstr "Ziel des Links oder Untermenüs" - -#: ../../Zotlabs/Module/Mitem.php:157 -msgid "Enter URL of the link or select a menu name to create a submenu" -msgstr "URL des Links eingeben oder Menünamen wählen, um ein Untermenü anzulegen." - -#: ../../Zotlabs/Module/Mitem.php:158 ../../Zotlabs/Module/Mitem.php:232 -msgid "Use magic-auth if available" -msgstr "Magic-Auth verwenden, falls verfügbar" - -#: ../../Zotlabs/Module/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:233 -msgid "Open link in new window" -msgstr "Öffne Link in neuem Fenster" - -#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:234 -msgid "Order in list" -msgstr "Reihenfolge in der Liste" - -#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:234 -msgid "Higher numbers will sink to bottom of listing" -msgstr "Größere Nummern werden weiter unten in der Auflistung einsortiert" - -#: ../../Zotlabs/Module/Mitem.php:161 -msgid "Submit and finish" -msgstr "Absenden und fertigstellen" - -#: ../../Zotlabs/Module/Mitem.php:162 -msgid "Submit and continue" -msgstr "Absenden und fortfahren" - -#: ../../Zotlabs/Module/Mitem.php:170 -msgid "Menu:" -msgstr "Menü:" - -#: ../../Zotlabs/Module/Mitem.php:173 -msgid "Link Target" -msgstr "Ziel des Links" - -#: ../../Zotlabs/Module/Mitem.php:176 -msgid "Edit menu" -msgstr "Menü bearbeiten" - -#: ../../Zotlabs/Module/Mitem.php:179 -msgid "Edit element" -msgstr "Bestandteil bearbeiten" - -#: ../../Zotlabs/Module/Mitem.php:180 -msgid "Drop element" -msgstr "Bestandteil löschen" - -#: ../../Zotlabs/Module/Mitem.php:181 -msgid "New element" -msgstr "Neues Bestandteil" - -#: ../../Zotlabs/Module/Mitem.php:182 -msgid "Edit this menu container" -msgstr "Diesen Menü-Container bearbeiten" - -#: ../../Zotlabs/Module/Mitem.php:183 -msgid "Add menu element" -msgstr "Menüelement hinzufügen" - -#: ../../Zotlabs/Module/Mitem.php:184 -msgid "Delete this menu item" -msgstr "Lösche dieses Menü-Bestandteil" - -#: ../../Zotlabs/Module/Mitem.php:185 -msgid "Edit this menu item" -msgstr "Bearbeite dieses Menü-Bestandteil" - -#: ../../Zotlabs/Module/Mitem.php:202 -msgid "Menu item not found." -msgstr "Menü-Bestandteil nicht gefunden." - -#: ../../Zotlabs/Module/Mitem.php:215 -msgid "Menu item deleted." -msgstr "Menü-Bestandteil gelöscht." - -#: ../../Zotlabs/Module/Mitem.php:217 -msgid "Menu item could not be deleted." -msgstr "Menü-Bestandteil kann nicht gelöscht werden." - -#: ../../Zotlabs/Module/Mitem.php:224 -msgid "Edit Menu Element" -msgstr "Bearbeite Menü-Bestandteil" - -#: ../../Zotlabs/Module/Mitem.php:230 -msgid "Link text" -msgstr "Link Text" - -#: ../../Zotlabs/Module/New_channel.php:128 -#: ../../Zotlabs/Module/Register.php:231 -msgid "Name or caption" -msgstr "Name oder Titel" - -#: ../../Zotlabs/Module/New_channel.php:128 -#: ../../Zotlabs/Module/Register.php:231 -msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\"" -msgstr "Beispiele: „Horst Weidinger“, „Lisa und ihr Meerschweinchen“, „Fußball“, „Segelflieger-Forum“ " - -#: ../../Zotlabs/Module/New_channel.php:130 -#: ../../Zotlabs/Module/Register.php:233 -msgid "Choose a short nickname" -msgstr "Wähle einen kurzen Spitznamen" - -#: ../../Zotlabs/Module/New_channel.php:130 -#: ../../Zotlabs/Module/Register.php:233 -#, php-format -msgid "" -"Your nickname will be used to create an easy to remember channel address " -"e.g. nickname%s" -msgstr "Dein Spitzname wird verwendet, um eine leicht zu merkende Kanal-Adresse (ähnlich einer E-Mail-Adresse) zu erzeugen, die Du mit anderen austauschen kannst, z.B. nickname%s" - -#: ../../Zotlabs/Module/New_channel.php:132 -#: ../../Zotlabs/Module/Register.php:235 -msgid "Channel role and privacy" -msgstr "Kanaltyp und Privatspäre-Einstellungen" - -#: ../../Zotlabs/Module/New_channel.php:132 -#: ../../Zotlabs/Module/Register.php:235 -msgid "Select a channel role with your privacy requirements." -msgstr "Wähle einen passenden Kanaltyp mit den zugehörigen Voreinstellungen zur Privatsphäre." - -#: ../../Zotlabs/Module/New_channel.php:132 -#: ../../Zotlabs/Module/Register.php:235 -msgid "Read more about roles" -msgstr "Mehr Informationen über Rollen" - -#: ../../Zotlabs/Module/New_channel.php:135 -msgid "Create Channel" -msgstr "Einen neuen Kanal anlegen" - -#: ../../Zotlabs/Module/New_channel.php:136 -msgid "" -"A channel is your identity on this network. It can represent a person, a " -"blog, or a forum to name a few. Channels can make connections with other " -"channels to share information with highly detailed permissions." -msgstr "Ein Kanal ist Deine Identität in diesem Netzwerk. Er kann eine Person, ein Blog oder ein Forum repräsentieren, nur um ein paar Beispiele zu nennen. Kanäle können Verbindungen miteinander eingehen, um Informationen zu teilen, jeweils basierend auf sehr detaillierten Berechtigungseinstellungen." - -#: ../../Zotlabs/Module/New_channel.php:137 -msgid "" -"or import an existing channel from another location." -msgstr "oder importiere einen bestehenden Kanal von einem anderen Server." - -#: ../../Zotlabs/Module/Notifications.php:30 -msgid "Invalid request identifier." -msgstr "Ungültiger Anfrage-Identifikator." - -#: ../../Zotlabs/Module/Notifications.php:39 -msgid "Discard" -msgstr "Verwerfen" - -#: ../../Zotlabs/Module/Notifications.php:103 ../../include/nav.php:191 -msgid "Mark all system notifications seen" -msgstr "Markiere alle System-Benachrichtigungen als gesehen" - -#: ../../Zotlabs/Module/Photos.php:84 -msgid "Page owner information could not be retrieved." -msgstr "Informationen über den Besitzer der Seite konnten nicht gefunden werden." - -#: ../../Zotlabs/Module/Photos.php:99 ../../Zotlabs/Module/Photos.php:743 -#: ../../Zotlabs/Module/Profile_photo.php:114 -#: ../../Zotlabs/Module/Profile_photo.php:206 -#: ../../Zotlabs/Module/Profile_photo.php:294 -#: ../../include/photo/photo_driver.php:718 -msgid "Profile Photos" -msgstr "Profilfotos" - -#: ../../Zotlabs/Module/Photos.php:105 ../../Zotlabs/Module/Photos.php:149 -msgid "Album not found." -msgstr "Album nicht gefunden." - -#: ../../Zotlabs/Module/Photos.php:132 -msgid "Delete Album" -msgstr "Album löschen" - -#: ../../Zotlabs/Module/Photos.php:153 -msgid "" -"Multiple storage folders exist with this album name, but within different " -"directories. Please remove the desired folder or folders using the Files " -"manager" -msgstr "Mehrere Speicherordner mit diesem Albumnamen sind bereits vorhanden, aber in verschiedenen Verzeichnissen. Bitte entfernen Sie den oder die gewünschten Ordner mit dem Dateimanager" - -#: ../../Zotlabs/Module/Photos.php:210 ../../Zotlabs/Module/Photos.php:1053 -msgid "Delete Photo" -msgstr "Foto löschen" - -#: ../../Zotlabs/Module/Photos.php:533 -msgid "No photos selected" -msgstr "Keine Fotos ausgewählt" - -#: ../../Zotlabs/Module/Photos.php:582 -msgid "Access to this item is restricted." -msgstr "Der Zugriff auf dieses Foto ist eingeschränkt." - -#: ../../Zotlabs/Module/Photos.php:621 -#, php-format -msgid "%1$.2f MB of %2$.2f MB photo storage used." -msgstr "%1$.2f MB von %2$.2f MB Foto-Speicher belegt." - -#: ../../Zotlabs/Module/Photos.php:624 -#, php-format -msgid "%1$.2f MB photo storage used." -msgstr "%1$.2f MB Foto-Speicher belegt." - -#: ../../Zotlabs/Module/Photos.php:660 -msgid "Upload Photos" -msgstr "Fotos hochladen" - -#: ../../Zotlabs/Module/Photos.php:664 -msgid "Enter an album name" -msgstr "Namen für ein neues Album eingeben" - -#: ../../Zotlabs/Module/Photos.php:665 -msgid "or select an existing album (doubleclick)" -msgstr "oder ein bereits vorhandenes auswählen (Doppelklick)" - -#: ../../Zotlabs/Module/Photos.php:666 -msgid "Create a status post for this upload" -msgstr "Einen Statusbeitrag für diesen Upload erzeugen" - -#: ../../Zotlabs/Module/Photos.php:667 -msgid "Caption (optional):" -msgstr "Beschriftung (optional):" - -#: ../../Zotlabs/Module/Photos.php:668 -msgid "Description (optional):" -msgstr "Beschreibung (optional):" - -#: ../../Zotlabs/Module/Photos.php:695 -msgid "Album name could not be decoded" -msgstr "Albumname konnte nicht dekodiert werden" - -#: ../../Zotlabs/Module/Photos.php:743 -msgid "Contact Photos" -msgstr "Kontakt-Bilder" - -#: ../../Zotlabs/Module/Photos.php:766 -msgid "Show Newest First" -msgstr "Neueste zuerst anzeigen" - -#: ../../Zotlabs/Module/Photos.php:768 -msgid "Show Oldest First" -msgstr "Älteste zuerst anzeigen" - -#: ../../Zotlabs/Module/Photos.php:792 ../../Zotlabs/Module/Photos.php:1331 -#: ../../include/widgets.php:1499 -msgid "View Photo" -msgstr "Foto ansehen" - -#: ../../Zotlabs/Module/Photos.php:823 ../../include/widgets.php:1516 -msgid "Edit Album" -msgstr "Album bearbeiten" - -#: ../../Zotlabs/Module/Photos.php:870 -msgid "Permission denied. Access to this item may be restricted." -msgstr "Berechtigung verweigert. Der Zugriff ist wahrscheinlich eingeschränkt worden." - -#: ../../Zotlabs/Module/Photos.php:872 -msgid "Photo not available" -msgstr "Foto nicht verfügbar" - -#: ../../Zotlabs/Module/Photos.php:930 -msgid "Use as profile photo" -msgstr "Als Profilfoto verwenden" - -#: ../../Zotlabs/Module/Photos.php:931 -msgid "Use as cover photo" -msgstr "Als Titelbild verwenden" - -#: ../../Zotlabs/Module/Photos.php:938 -msgid "Private Photo" -msgstr "Privates Foto" - -#: ../../Zotlabs/Module/Photos.php:953 -msgid "View Full Size" -msgstr "In voller Größe anzeigen" - -#: ../../Zotlabs/Module/Photos.php:998 ../../Zotlabs/Module/Admin.php:1437 -#: ../../Zotlabs/Module/Tagrm.php:137 -msgid "Remove" -msgstr "Entfernen" - -#: ../../Zotlabs/Module/Photos.php:1032 -msgid "Edit photo" -msgstr "Foto bearbeiten" - -#: ../../Zotlabs/Module/Photos.php:1034 -msgid "Rotate CW (right)" -msgstr "Drehen im UZS (rechts)" - -#: ../../Zotlabs/Module/Photos.php:1035 -msgid "Rotate CCW (left)" -msgstr "Drehen gegen UZS (links)" - -#: ../../Zotlabs/Module/Photos.php:1038 -msgid "Enter a new album name" -msgstr "Gib einen Namen für ein neues Album ein" - -#: ../../Zotlabs/Module/Photos.php:1039 -msgid "or select an existing one (doubleclick)" -msgstr "oder wähle ein bereits vorhandenes aus (Doppelklick)" - -#: ../../Zotlabs/Module/Photos.php:1042 -msgid "Caption" -msgstr "Bildunterschrift" - -#: ../../Zotlabs/Module/Photos.php:1044 -msgid "Add a Tag" -msgstr "Schlagwort hinzufügen" - -#: ../../Zotlabs/Module/Photos.php:1048 -msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" -msgstr "Beispiele: @ben, @Karl_Prester, @lieschen@example.com" - -#: ../../Zotlabs/Module/Photos.php:1051 -msgid "Flag as adult in album view" -msgstr "In der Albumansicht als nicht jugendfrei markieren" - -#: ../../Zotlabs/Module/Photos.php:1070 ../../Zotlabs/Lib/ThreadItem.php:261 -msgid "I like this (toggle)" -msgstr "Mir gefällt das (Umschalter)" - -#: ../../Zotlabs/Module/Photos.php:1071 ../../Zotlabs/Lib/ThreadItem.php:262 -msgid "I don't like this (toggle)" -msgstr "Mir gefällt das nicht (Umschalter)" - -#: ../../Zotlabs/Module/Photos.php:1073 ../../Zotlabs/Lib/ThreadItem.php:397 -#: ../../include/conversation.php:740 -msgid "Please wait" -msgstr "Bitte warten" - -#: ../../Zotlabs/Module/Photos.php:1089 ../../Zotlabs/Module/Photos.php:1207 -#: ../../Zotlabs/Lib/ThreadItem.php:707 -msgid "This is you" -msgstr "Das bist Du" - -#: ../../Zotlabs/Module/Photos.php:1091 ../../Zotlabs/Module/Photos.php:1209 -#: ../../Zotlabs/Lib/ThreadItem.php:709 ../../include/js_strings.php:6 -msgid "Comment" -msgstr "Kommentar" - -#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:574 -msgctxt "title" -msgid "Likes" -msgstr "Gefällt mir" - -#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:574 -msgctxt "title" -msgid "Dislikes" -msgstr "Gefällt mir nicht" - -#: ../../Zotlabs/Module/Photos.php:1108 ../../include/conversation.php:575 -msgctxt "title" -msgid "Agree" -msgstr "Zustimmungen" - -#: ../../Zotlabs/Module/Photos.php:1108 ../../include/conversation.php:575 -msgctxt "title" -msgid "Disagree" -msgstr "Ablehnungen" - -#: ../../Zotlabs/Module/Photos.php:1108 ../../include/conversation.php:575 -msgctxt "title" -msgid "Abstain" -msgstr "Enthaltungen" - -#: ../../Zotlabs/Module/Photos.php:1109 ../../include/conversation.php:576 -msgctxt "title" -msgid "Attending" -msgstr "Zusagen" - -#: ../../Zotlabs/Module/Photos.php:1109 ../../include/conversation.php:576 -msgctxt "title" -msgid "Not attending" -msgstr "Absagen" - -#: ../../Zotlabs/Module/Photos.php:1109 ../../include/conversation.php:576 -msgctxt "title" -msgid "Might attend" -msgstr "Vielleicht" - -#: ../../Zotlabs/Module/Photos.php:1126 ../../Zotlabs/Module/Photos.php:1138 -#: ../../Zotlabs/Lib/ThreadItem.php:181 ../../Zotlabs/Lib/ThreadItem.php:193 -#: ../../include/conversation.php:1717 -msgid "View all" -msgstr "Alles anzeigen" - -#: ../../Zotlabs/Module/Photos.php:1130 ../../Zotlabs/Lib/ThreadItem.php:185 -#: ../../include/taxonomy.php:403 ../../include/conversation.php:1741 -#: ../../include/channel.php:1158 -msgctxt "noun" -msgid "Like" -msgid_plural "Likes" -msgstr[0] "Gefällt mir" -msgstr[1] "Gefällt mir" - -#: ../../Zotlabs/Module/Photos.php:1135 ../../Zotlabs/Lib/ThreadItem.php:190 -#: ../../include/conversation.php:1744 -msgctxt "noun" -msgid "Dislike" -msgid_plural "Dislikes" -msgstr[0] "Gefällt nicht" -msgstr[1] "Gefällt nicht" - -#: ../../Zotlabs/Module/Photos.php:1235 -msgid "Photo Tools" -msgstr "Fotowerkzeuge" - -#: ../../Zotlabs/Module/Photos.php:1244 -msgid "In This Photo:" -msgstr "Auf diesem Foto:" - -#: ../../Zotlabs/Module/Photos.php:1249 -msgid "Map" -msgstr "Karte" - -#: ../../Zotlabs/Module/Photos.php:1257 ../../Zotlabs/Lib/ThreadItem.php:386 -msgctxt "noun" -msgid "Likes" -msgstr "Gefällt mir" - -#: ../../Zotlabs/Module/Photos.php:1258 ../../Zotlabs/Lib/ThreadItem.php:387 -msgctxt "noun" -msgid "Dislikes" -msgstr "Gefällt nicht" - -#: ../../Zotlabs/Module/Photos.php:1263 ../../Zotlabs/Lib/ThreadItem.php:392 -#: ../../include/acl_selectors.php:285 -msgid "Close" -msgstr "Schließen" - -#: ../../Zotlabs/Module/Photos.php:1337 -msgid "View Album" -msgstr "Album ansehen" - -#: ../../Zotlabs/Module/Photos.php:1348 ../../Zotlabs/Module/Photos.php:1361 -#: ../../Zotlabs/Module/Photos.php:1362 -msgid "Recent Photos" -msgstr "Neueste Fotos" - -#: ../../Zotlabs/Module/Ping.php:265 -msgid "sent you a private message" -msgstr "hat Dir eine private Nachricht geschickt" - -#: ../../Zotlabs/Module/Ping.php:313 -msgid "added your channel" -msgstr "hat deinen Kanal hinzugefügt" - -#: ../../Zotlabs/Module/Ping.php:323 -msgid "g A l F d" -msgstr "l, d. F, G:i \\U\\h\\r" - -#: ../../Zotlabs/Module/Ping.php:346 -msgid "[today]" -msgstr "[Heute]" - -#: ../../Zotlabs/Module/Ping.php:355 -msgid "posted an event" -msgstr "hat einen Termin veröffentlicht" - -#: ../../Zotlabs/Module/Oexchange.php:27 -msgid "Unable to find your hub." -msgstr "Konnte Deinen Server nicht finden." - -#: ../../Zotlabs/Module/Oexchange.php:41 -msgid "Post successful." -msgstr "Veröffentlichung erfolgreich." - -#: ../../Zotlabs/Module/Openid.php:30 -msgid "OpenID protocol error. No ID returned." -msgstr "OpenID Protokollfehler. Keine ID zurückgegeben." - -#: ../../Zotlabs/Module/Openid.php:193 ../../include/auth.php:226 -msgid "Login failed." -msgstr "Login fehlgeschlagen." - -#: ../../Zotlabs/Module/Page.php:133 -msgid "" -"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod " -"tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam," -" quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo " -"consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse " -"cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat " -"non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." -msgstr "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." - -#: ../../Zotlabs/Module/Pconfig.php:26 ../../Zotlabs/Module/Pconfig.php:59 -msgid "This setting requires special processing and editing has been blocked." -msgstr "Diese Einstellung erfordert eine besondere Verarbeitung und ist blockiert." - -#: ../../Zotlabs/Module/Pconfig.php:48 -msgid "Configuration Editor" -msgstr "Konfigurationseditor" - -#: ../../Zotlabs/Module/Pconfig.php:49 -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 "Warnung: Einige Einstellungen können Deinen Kanal funktionsunfähig machen. Bitte verlasse diese Seite, es sei denn Du bist vertraut damit, wie dieses Feature korrekt verwendet wird." - -#: ../../Zotlabs/Module/Pdledit.php:18 -msgid "Layout updated." -msgstr "Layout aktualisiert." - -#: ../../Zotlabs/Module/Pdledit.php:34 ../../Zotlabs/Module/Pdledit.php:61 -msgid "Edit System Page Description" -msgstr "Systemseitenbeschreibung bearbeiten" - -#: ../../Zotlabs/Module/Pdledit.php:56 -msgid "Layout not found." -msgstr "Layout nicht gefunden." - -#: ../../Zotlabs/Module/Pdledit.php:62 -msgid "Module Name:" -msgstr "Modulname:" - -#: ../../Zotlabs/Module/Pdledit.php:63 -msgid "Layout Help" -msgstr "Layout-Hilfe" - -#: ../../Zotlabs/Module/Poke.php:168 ../../Zotlabs/Lib/Apps.php:226 -#: ../../include/conversation.php:960 -msgid "Poke" -msgstr "Anstupsen" - -#: ../../Zotlabs/Module/Poke.php:169 -msgid "Poke somebody" -msgstr "Jemanden anstupsen" - -#: ../../Zotlabs/Module/Poke.php:172 -msgid "Poke/Prod" -msgstr "Anstupsen/Knuffen" - -#: ../../Zotlabs/Module/Poke.php:173 -msgid "Poke, prod or do other things to somebody" -msgstr "Jemanden anstupsen, knuffen oder sonstiges" - -#: ../../Zotlabs/Module/Poke.php:180 -msgid "Recipient" -msgstr "Empfänger" - -#: ../../Zotlabs/Module/Poke.php:181 -msgid "Choose what you wish to do to recipient" -msgstr "Wähle, was Du mit dem/r Empfänger/in tun willst" - -#: ../../Zotlabs/Module/Poke.php:184 ../../Zotlabs/Module/Poke.php:185 -msgid "Make this post private" -msgstr "Diesen Beitrag privat machen" - -#: ../../Zotlabs/Module/Probe.php:30 ../../Zotlabs/Module/Probe.php:34 -#, php-format -msgid "Fetching URL returns error: %1$s" -msgstr "Abrufen der URL gab einen Fehler zurück: %1$s" - #: ../../Zotlabs/Module/Profiles.php:24 ../../Zotlabs/Module/Profiles.php:189 #: ../../Zotlabs/Module/Profiles.php:246 ../../Zotlabs/Module/Profiles.php:625 msgid "Profile not found." @@ -3291,6 +2215,11 @@ msgstr "Webseite" msgid "Interests" msgstr "Hobbys/Interessen" +#: ../../Zotlabs/Module/Profiles.php:470 ../../Zotlabs/Module/Locs.php:118 +#: ../../Zotlabs/Module/Admin.php:1224 +msgid "Address" +msgstr "Adresse" + #: ../../Zotlabs/Module/Profiles.php:560 msgid "Profile updated." msgstr "Profil aktualisiert." @@ -3308,7 +2237,7 @@ msgid "View this profile" msgstr "Dieses Profil ansehen" #: ../../Zotlabs/Module/Profiles.php:689 ../../Zotlabs/Module/Profiles.php:771 -#: ../../include/channel.php:959 +#: ../../include/channel.php:998 msgid "Edit visibility" msgstr "Sichtbarkeit bearbeiten" @@ -3320,7 +2249,7 @@ msgstr "Profilwerkzeuge" msgid "Change cover photo" msgstr "Titelbild ändern" -#: ../../Zotlabs/Module/Profiles.php:692 ../../include/channel.php:930 +#: ../../Zotlabs/Module/Profiles.php:692 ../../include/channel.php:969 msgid "Change profile photo" msgstr "Profilfoto ändern" @@ -3340,8 +2269,8 @@ msgstr "Dieses Profil löschen" msgid "Add profile things" msgstr "Sachen zum Profil hinzufügen" -#: ../../Zotlabs/Module/Profiles.php:697 ../../include/widgets.php:105 -#: ../../include/conversation.php:1526 +#: ../../Zotlabs/Module/Profiles.php:697 ../../include/conversation.php:1541 +#: ../../include/widgets.php:105 msgid "Personal" msgstr "Persönlich" @@ -3481,119 +2410,1097 @@ msgstr "Kontaktinformation und soziale Netzwerke" msgid "My other channels" msgstr "Meine anderen Kanäle" -#: ../../Zotlabs/Module/Profiles.php:767 ../../include/channel.php:955 +#: ../../Zotlabs/Module/Profiles.php:767 ../../include/channel.php:994 msgid "Profile Image" msgstr "Profilfoto:" #: ../../Zotlabs/Module/Profiles.php:777 ../../include/nav.php:88 -#: ../../include/channel.php:937 +#: ../../include/channel.php:976 msgid "Edit Profiles" msgstr "Profile bearbeiten" -#: ../../Zotlabs/Module/Profile_photo.php:179 -msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." -msgstr "Leere den Browser Cache oder nutze Umschalten-Neu Laden, falls das neue Foto nicht sofort angezeigt wird." - -#: ../../Zotlabs/Module/Profile_photo.php:367 -msgid "Upload Profile Photo" -msgstr "Lade neues Profilfoto hoch" - -#: ../../Zotlabs/Module/Profperm.php:34 ../../Zotlabs/Module/Profperm.php:63 -msgid "Invalid profile identifier." -msgstr "Ungültiger Profil-Identifikator" - -#: ../../Zotlabs/Module/Profperm.php:115 -msgid "Profile Visibility Editor" -msgstr "Profil-Sichtbarkeits-Editor" - -#: ../../Zotlabs/Module/Profperm.php:117 ../../include/channel.php:1249 -msgid "Profile" -msgstr "Profil" - -#: ../../Zotlabs/Module/Profperm.php:119 -msgid "Click on a contact to add or remove." -msgstr "Klicke auf einen Kontakt, um ihn hinzuzufügen oder zu entfernen." - -#: ../../Zotlabs/Module/Profperm.php:128 -msgid "Visible To" -msgstr "Sichtbar für" - -#: ../../Zotlabs/Module/Pubsites.php:22 ../../include/widgets.php:1270 -msgid "Public Hubs" -msgstr "Öffentliche Hubs" - -#: ../../Zotlabs/Module/Pubsites.php:25 -msgid "" -"The listed hubs allow public registration for the $Projectname network. All " -"hubs in the network are interlinked so membership on any of them conveys " -"membership in the network as a whole. Some hubs may require subscription or " -"provide tiered service plans. The hub itself may provide " -"additional details." -msgstr "Die hier aufgeführten Hubs sind öffentlich und erlauben die Registrierung im $Projectname Netzwerk. Alle Hubs dieses Netzwerks sind miteinander verbunden, so dass die Mitgliedschaft auf einem Hub die Verbindung zu beliebigen Seiten und Kanälen auf anderen Hubs ermöglicht. Es könnte sein, dass einige dieser Hubs kostenpflichtig sind oder abgestufte, je nach Umfang kostenpflichtige Mitgliedschaften anbieten. Auf den Seiten der einzelnen Hubs könnten jeweils nähere Informationen dazu stehen." - -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Hub URL" -msgstr "Hub-URL" - -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Access Type" -msgstr "Zugriffstyp" - -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Registration Policy" -msgstr "Registrierungsrichtlinien" - -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Stats" -msgstr "Statistiken" - -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Software" -msgstr "Software" - -#: ../../Zotlabs/Module/Pubsites.php:31 ../../Zotlabs/Module/Ratings.php:103 -#: ../../include/conversation.php:959 -msgid "Ratings" -msgstr "Bewertungen" - -#: ../../Zotlabs/Module/Pubsites.php:38 -msgid "Rate" -msgstr "Bewerten" - -#: ../../Zotlabs/Module/Rate.php:160 -msgid "Website:" -msgstr "Webseite:" - -#: ../../Zotlabs/Module/Rate.php:163 +#: ../../Zotlabs/Module/Import.php:33 #, php-format -msgid "Remote Channel [%s] (not yet known on this site)" -msgstr "Kanal [%s] (auf diesem Server noch unbekannt)" +msgid "Your service plan only allows %d channels." +msgstr "Dein Vertrag erlaubt nur %d Kanäle." -#: ../../Zotlabs/Module/Rate.php:164 -msgid "Rating (this information is public)" -msgstr "Bewertung (öffentlich sichtbar)" +#: ../../Zotlabs/Module/Import.php:71 ../../Zotlabs/Module/Import_items.php:42 +msgid "Nothing to import." +msgstr "Nichts zu importieren." -#: ../../Zotlabs/Module/Rate.php:165 -msgid "Optionally explain your rating (this information is public)" -msgstr "Optional kannst du deine Bewertung erklären (öffentlich sichtbar)" +#: ../../Zotlabs/Module/Import.php:95 ../../Zotlabs/Module/Import_items.php:66 +msgid "Unable to download data from old server" +msgstr "Daten können vom alten Server nicht heruntergeladen werden" -#: ../../Zotlabs/Module/Ratings.php:73 -msgid "No ratings" -msgstr "Keine Bewertungen" +#: ../../Zotlabs/Module/Import.php:101 +#: ../../Zotlabs/Module/Import_items.php:72 +msgid "Imported file is empty." +msgstr "Die importierte Datei ist leer." -#: ../../Zotlabs/Module/Ratings.php:104 -msgid "Rating: " -msgstr "Bewertung: " +#: ../../Zotlabs/Module/Import.php:123 +#: ../../Zotlabs/Module/Import_items.php:88 +#, php-format +msgid "Warning: Database versions differ by %1$d updates." +msgstr "Achtung: Datenbankversionen unterscheiden sich um %1$d Aktualisierungen." -#: ../../Zotlabs/Module/Ratings.php:105 -msgid "Website: " -msgstr "Webseite: " +#: ../../Zotlabs/Module/Import.php:153 ../../include/import.php:107 +msgid "Cloned channel not found. Import failed." +msgstr "Geklonter Kanal nicht gefunden. Import fehlgeschlagen." -#: ../../Zotlabs/Module/Ratings.php:107 -msgid "Description: " -msgstr "Beschreibung: " +#: ../../Zotlabs/Module/Import.php:163 +msgid "No channel. Import failed." +msgstr "Kein Kanal. Import fehlgeschlagen." + +#: ../../Zotlabs/Module/Import.php:520 +#: ../../include/Import/import_diaspora.php:142 +msgid "Import completed." +msgstr "Import abgeschlossen." + +#: ../../Zotlabs/Module/Import.php:542 +msgid "You must be logged in to use this feature." +msgstr "Du musst angemeldet sein um diese Funktion zu nutzen." + +#: ../../Zotlabs/Module/Import.php:547 +msgid "Import Channel" +msgstr "Kanal importieren" + +#: ../../Zotlabs/Module/Import.php:548 +msgid "" +"Use this form to import an existing channel from a different server/hub. You" +" may retrieve the channel identity from the old server/hub via the network " +"or provide an export file." +msgstr "Verwende dieses Formular, um einen existierenden Kanal von einem anderen Hub zu importieren. Du kannst den Kanal direkt vom bisherigen Hub über das Netzwerk oder aus einer exportierten Sicherheitskopie importieren." + +#: ../../Zotlabs/Module/Import.php:549 +#: ../../Zotlabs/Module/Import_items.php:121 +msgid "File to Upload" +msgstr "Hochzuladende Datei:" + +#: ../../Zotlabs/Module/Import.php:550 +msgid "Or provide the old server/hub details" +msgstr "Oder gib die Details Deines bisherigen $Projectname-Hubs ein" + +#: ../../Zotlabs/Module/Import.php:551 +msgid "Your old identity address (xyz@example.com)" +msgstr "Bisherige Kanal-Adresse (xyz@example.com)" + +#: ../../Zotlabs/Module/Import.php:552 +msgid "Your old login email address" +msgstr "Deine alte Login-E-Mail-Adresse" + +#: ../../Zotlabs/Module/Import.php:553 +msgid "Your old login password" +msgstr "Dein altes Passwort" + +#: ../../Zotlabs/Module/Import.php:554 +msgid "" +"For either option, please choose whether to make this hub your new primary " +"address, or whether your old location should continue this role. You will be" +" able to post from either location, but only one can be marked as the " +"primary location for files, photos, and media." +msgstr "Egal, welche Option Du wählst – bitte lege fest, ob dieser Server die neue primäre Adresse dieses Kanals sein soll, oder ob der bisherige $Projectname-Hub diese Rolle weiterhin wahrnimmt. Du kannst von beiden Servern aus posten, aber nur einer kann der primäre Ort Deiner Dateien, Fotos und Medien sein." + +#: ../../Zotlabs/Module/Import.php:555 +msgid "Make this hub my primary location" +msgstr "Dieser $Pojectname-Hub ist mein primärer Hub." + +#: ../../Zotlabs/Module/Import.php:556 +msgid "" +"Import existing posts if possible (experimental - limited by available " +"memory" +msgstr "Importiere bestehende Beiträge falls möglich (experimentell - begrenzt durch zur Verfügung stehenden Speicher" + +#: ../../Zotlabs/Module/Import.php:557 +msgid "" +"This process may take several minutes to complete. Please submit the form " +"only once and leave this page open until finished." +msgstr "Dieser Vorgang kann einige Minuten dauern. Bitte sende das Formular nur einmal ab und lasse diese Seite bis zur Fertigstellung offen." + +#: ../../Zotlabs/Module/Home.php:74 ../../Zotlabs/Module/Home.php:82 +#: ../../Zotlabs/Module/Siteinfo.php:48 +msgid "$Projectname" +msgstr "$Projectname" + +#: ../../Zotlabs/Module/Home.php:92 +#, php-format +msgid "Welcome to %s" +msgstr "Willkommen auf %s" + +#: ../../Zotlabs/Module/Item.php:179 +msgid "Unable to locate original post." +msgstr "Originalbeitrag nicht gefunden." + +#: ../../Zotlabs/Module/Item.php:432 +msgid "Empty post discarded." +msgstr "Leeren Beitrag verworfen." + +#: ../../Zotlabs/Module/Item.php:472 +msgid "Executable content type not permitted to this channel." +msgstr "Ausführbarer Content-Typ ist für diesen Kanal nicht freigegeben." + +#: ../../Zotlabs/Module/Item.php:856 +msgid "Duplicate post suppressed." +msgstr "Doppelter Beitrag unterdrückt." + +#: ../../Zotlabs/Module/Item.php:989 +msgid "System error. Post not saved." +msgstr "Systemfehler. Beitrag nicht gespeichert." + +#: ../../Zotlabs/Module/Item.php:1242 +msgid "Unable to obtain post information from database." +msgstr "Beitragsinformationen können nicht aus der Datenbank abgerufen werden." + +#: ../../Zotlabs/Module/Item.php:1249 +#, php-format +msgid "You have reached your limit of %1$.0f top level posts." +msgstr "Du hast die maximale Anzahl von %1$.0f Beiträgen erreicht." + +#: ../../Zotlabs/Module/Item.php:1256 +#, php-format +msgid "You have reached your limit of %1$.0f webpages." +msgstr "Du hast die maximale Anzahl von %1$.0f Webseiten erreicht." + +#: ../../Zotlabs/Module/Photos.php:82 +msgid "Page owner information could not be retrieved." +msgstr "Informationen über den Besitzer der Seite konnten nicht gefunden werden." + +#: ../../Zotlabs/Module/Photos.php:97 ../../Zotlabs/Module/Photos.php:741 +#: ../../Zotlabs/Module/Profile_photo.php:115 +#: ../../Zotlabs/Module/Profile_photo.php:212 +#: ../../Zotlabs/Module/Profile_photo.php:311 +#: ../../include/photo/photo_driver.php:718 +msgid "Profile Photos" +msgstr "Profilfotos" + +#: ../../Zotlabs/Module/Photos.php:103 ../../Zotlabs/Module/Photos.php:147 +msgid "Album not found." +msgstr "Album nicht gefunden." + +#: ../../Zotlabs/Module/Photos.php:130 +msgid "Delete Album" +msgstr "Album löschen" + +#: ../../Zotlabs/Module/Photos.php:151 +msgid "" +"Multiple storage folders exist with this album name, but within different " +"directories. Please remove the desired folder or folders using the Files " +"manager" +msgstr "Mehrere Speicherordner mit diesem Albumnamen sind bereits vorhanden, aber in verschiedenen Verzeichnissen. Bitte entfernen Sie den oder die gewünschten Ordner mit dem Dateimanager" + +#: ../../Zotlabs/Module/Photos.php:208 ../../Zotlabs/Module/Photos.php:1051 +msgid "Delete Photo" +msgstr "Foto löschen" + +#: ../../Zotlabs/Module/Photos.php:531 +msgid "No photos selected" +msgstr "Keine Fotos ausgewählt" + +#: ../../Zotlabs/Module/Photos.php:580 +msgid "Access to this item is restricted." +msgstr "Der Zugriff auf dieses Foto ist eingeschränkt." + +#: ../../Zotlabs/Module/Photos.php:619 +#, php-format +msgid "%1$.2f MB of %2$.2f MB photo storage used." +msgstr "%1$.2f MB von %2$.2f MB Foto-Speicher belegt." + +#: ../../Zotlabs/Module/Photos.php:622 +#, php-format +msgid "%1$.2f MB photo storage used." +msgstr "%1$.2f MB Foto-Speicher belegt." + +#: ../../Zotlabs/Module/Photos.php:658 +msgid "Upload Photos" +msgstr "Fotos hochladen" + +#: ../../Zotlabs/Module/Photos.php:662 +msgid "Enter an album name" +msgstr "Namen für ein neues Album eingeben" + +#: ../../Zotlabs/Module/Photos.php:663 +msgid "or select an existing album (doubleclick)" +msgstr "oder ein bereits vorhandenes auswählen (Doppelklick)" + +#: ../../Zotlabs/Module/Photos.php:664 +msgid "Create a status post for this upload" +msgstr "Einen Statusbeitrag für diesen Upload erzeugen" + +#: ../../Zotlabs/Module/Photos.php:665 +msgid "Caption (optional):" +msgstr "Beschriftung (optional):" + +#: ../../Zotlabs/Module/Photos.php:666 +msgid "Description (optional):" +msgstr "Beschreibung (optional):" + +#: ../../Zotlabs/Module/Photos.php:693 +msgid "Album name could not be decoded" +msgstr "Albumname konnte nicht dekodiert werden" + +#: ../../Zotlabs/Module/Photos.php:741 +msgid "Contact Photos" +msgstr "Kontakt-Bilder" + +#: ../../Zotlabs/Module/Photos.php:764 +msgid "Show Newest First" +msgstr "Neueste zuerst anzeigen" + +#: ../../Zotlabs/Module/Photos.php:766 +msgid "Show Oldest First" +msgstr "Älteste zuerst anzeigen" + +#: ../../Zotlabs/Module/Photos.php:790 ../../Zotlabs/Module/Photos.php:1329 +#: ../../Zotlabs/Module/Embedphotos.php:141 ../../include/widgets.php:1593 +msgid "View Photo" +msgstr "Foto ansehen" + +#: ../../Zotlabs/Module/Photos.php:821 +#: ../../Zotlabs/Module/Embedphotos.php:157 ../../include/widgets.php:1610 +msgid "Edit Album" +msgstr "Album bearbeiten" + +#: ../../Zotlabs/Module/Photos.php:868 +msgid "Permission denied. Access to this item may be restricted." +msgstr "Berechtigung verweigert. Der Zugriff ist wahrscheinlich eingeschränkt worden." + +#: ../../Zotlabs/Module/Photos.php:870 +msgid "Photo not available" +msgstr "Foto nicht verfügbar" + +#: ../../Zotlabs/Module/Photos.php:928 +msgid "Use as profile photo" +msgstr "Als Profilfoto verwenden" + +#: ../../Zotlabs/Module/Photos.php:929 +msgid "Use as cover photo" +msgstr "Als Titelbild verwenden" + +#: ../../Zotlabs/Module/Photos.php:936 +msgid "Private Photo" +msgstr "Privates Foto" + +#: ../../Zotlabs/Module/Photos.php:951 +msgid "View Full Size" +msgstr "In voller Größe anzeigen" + +#: ../../Zotlabs/Module/Photos.php:996 ../../Zotlabs/Module/Admin.php:1437 +#: ../../Zotlabs/Module/Tagrm.php:137 +msgid "Remove" +msgstr "Entfernen" + +#: ../../Zotlabs/Module/Photos.php:1030 +msgid "Edit photo" +msgstr "Foto bearbeiten" + +#: ../../Zotlabs/Module/Photos.php:1032 +msgid "Rotate CW (right)" +msgstr "Drehen im UZS (rechts)" + +#: ../../Zotlabs/Module/Photos.php:1033 +msgid "Rotate CCW (left)" +msgstr "Drehen gegen UZS (links)" + +#: ../../Zotlabs/Module/Photos.php:1036 +msgid "Enter a new album name" +msgstr "Gib einen Namen für ein neues Album ein" + +#: ../../Zotlabs/Module/Photos.php:1037 +msgid "or select an existing one (doubleclick)" +msgstr "oder wähle ein bereits vorhandenes aus (Doppelklick)" + +#: ../../Zotlabs/Module/Photos.php:1040 +msgid "Caption" +msgstr "Bildunterschrift" + +#: ../../Zotlabs/Module/Photos.php:1042 +msgid "Add a Tag" +msgstr "Schlagwort hinzufügen" + +#: ../../Zotlabs/Module/Photos.php:1046 +msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" +msgstr "Beispiele: @ben, @Karl_Prester, @lieschen@example.com" + +#: ../../Zotlabs/Module/Photos.php:1049 +msgid "Flag as adult in album view" +msgstr "In der Albumansicht als nicht jugendfrei markieren" + +#: ../../Zotlabs/Module/Photos.php:1068 ../../Zotlabs/Lib/ThreadItem.php:261 +msgid "I like this (toggle)" +msgstr "Mir gefällt das (Umschalter)" + +#: ../../Zotlabs/Module/Photos.php:1069 ../../Zotlabs/Lib/ThreadItem.php:262 +msgid "I don't like this (toggle)" +msgstr "Mir gefällt das nicht (Umschalter)" + +#: ../../Zotlabs/Module/Photos.php:1071 ../../Zotlabs/Lib/ThreadItem.php:397 +#: ../../include/conversation.php:743 +msgid "Please wait" +msgstr "Bitte warten" + +#: ../../Zotlabs/Module/Photos.php:1087 ../../Zotlabs/Module/Photos.php:1205 +#: ../../Zotlabs/Lib/ThreadItem.php:707 +msgid "This is you" +msgstr "Das bist Du" + +#: ../../Zotlabs/Module/Photos.php:1089 ../../Zotlabs/Module/Photos.php:1207 +#: ../../Zotlabs/Lib/ThreadItem.php:709 ../../include/js_strings.php:6 +msgid "Comment" +msgstr "Kommentar" + +#: ../../Zotlabs/Module/Photos.php:1105 ../../include/conversation.php:577 +msgctxt "title" +msgid "Likes" +msgstr "Gefällt mir" + +#: ../../Zotlabs/Module/Photos.php:1105 ../../include/conversation.php:577 +msgctxt "title" +msgid "Dislikes" +msgstr "Gefällt mir nicht" + +#: ../../Zotlabs/Module/Photos.php:1106 ../../include/conversation.php:578 +msgctxt "title" +msgid "Agree" +msgstr "Zustimmungen" + +#: ../../Zotlabs/Module/Photos.php:1106 ../../include/conversation.php:578 +msgctxt "title" +msgid "Disagree" +msgstr "Ablehnungen" + +#: ../../Zotlabs/Module/Photos.php:1106 ../../include/conversation.php:578 +msgctxt "title" +msgid "Abstain" +msgstr "Enthaltungen" + +#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:579 +msgctxt "title" +msgid "Attending" +msgstr "Zusagen" + +#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:579 +msgctxt "title" +msgid "Not attending" +msgstr "Absagen" + +#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:579 +msgctxt "title" +msgid "Might attend" +msgstr "Vielleicht" + +#: ../../Zotlabs/Module/Photos.php:1124 ../../Zotlabs/Module/Photos.php:1136 +#: ../../Zotlabs/Lib/ThreadItem.php:181 ../../Zotlabs/Lib/ThreadItem.php:193 +#: ../../include/conversation.php:1738 +msgid "View all" +msgstr "Alles anzeigen" + +#: ../../Zotlabs/Module/Photos.php:1128 ../../Zotlabs/Lib/ThreadItem.php:185 +#: ../../include/taxonomy.php:403 ../../include/channel.php:1198 +#: ../../include/conversation.php:1762 +msgctxt "noun" +msgid "Like" +msgid_plural "Likes" +msgstr[0] "Gefällt mir" +msgstr[1] "Gefällt mir" + +#: ../../Zotlabs/Module/Photos.php:1133 ../../Zotlabs/Lib/ThreadItem.php:190 +#: ../../include/conversation.php:1765 +msgctxt "noun" +msgid "Dislike" +msgid_plural "Dislikes" +msgstr[0] "Gefällt nicht" +msgstr[1] "Gefällt nicht" + +#: ../../Zotlabs/Module/Photos.php:1233 +msgid "Photo Tools" +msgstr "Fotowerkzeuge" + +#: ../../Zotlabs/Module/Photos.php:1242 +msgid "In This Photo:" +msgstr "Auf diesem Foto:" + +#: ../../Zotlabs/Module/Photos.php:1247 +msgid "Map" +msgstr "Karte" + +#: ../../Zotlabs/Module/Photos.php:1255 ../../Zotlabs/Lib/ThreadItem.php:386 +msgctxt "noun" +msgid "Likes" +msgstr "Gefällt mir" + +#: ../../Zotlabs/Module/Photos.php:1256 ../../Zotlabs/Lib/ThreadItem.php:387 +msgctxt "noun" +msgid "Dislikes" +msgstr "Gefällt nicht" + +#: ../../Zotlabs/Module/Photos.php:1261 ../../Zotlabs/Lib/ThreadItem.php:392 +#: ../../include/acl_selectors.php:283 +msgid "Close" +msgstr "Schließen" + +#: ../../Zotlabs/Module/Photos.php:1335 +msgid "View Album" +msgstr "Album ansehen" + +#: ../../Zotlabs/Module/Photos.php:1346 ../../Zotlabs/Module/Photos.php:1359 +#: ../../Zotlabs/Module/Photos.php:1360 +msgid "Recent Photos" +msgstr "Neueste Fotos" + +#: ../../Zotlabs/Module/Lockview.php:75 +msgid "Remote privacy information not available." +msgstr "Privatsphäre-Einstellungen anderer Nutzer sind nicht verfügbar." + +#: ../../Zotlabs/Module/Lockview.php:96 +msgid "Visible to:" +msgstr "Sichtbar für:" + +#: ../../Zotlabs/Module/Import_items.php:104 +msgid "Import completed" +msgstr "Import abgeschlossen" + +#: ../../Zotlabs/Module/Import_items.php:119 +msgid "Import Items" +msgstr "Beiträge importieren" + +#: ../../Zotlabs/Module/Import_items.php:120 +msgid "" +"Use this form to import existing posts and content from an export file." +msgstr "Mit diesem Formular kannst Du existierende Beiträge und Inhalte aus einer Sicherungsdatei importieren." + +#: ../../Zotlabs/Module/Invite.php:29 +msgid "Total invitation limit exceeded." +msgstr "Einladungslimit überschritten." + +#: ../../Zotlabs/Module/Invite.php:53 +#, php-format +msgid "%s : Not a valid email address." +msgstr "%s : Keine gültige Email Adresse." + +#: ../../Zotlabs/Module/Invite.php:63 +msgid "Please join us on $Projectname" +msgstr "Schließe Dich uns auf $Projectname an!" + +#: ../../Zotlabs/Module/Invite.php:74 +msgid "Invitation limit exceeded. Please contact your site administrator." +msgstr "Einladungslimit überschritten. Bitte kontaktiere den Administrator Deines $Projectname-Servers." + +#: ../../Zotlabs/Module/Invite.php:79 +#, php-format +msgid "%s : Message delivery failed." +msgstr "%s : Nachricht konnte nicht zugestellt werden." + +#: ../../Zotlabs/Module/Invite.php:83 +#, php-format +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "%d Nachricht gesendet." +msgstr[1] "%d Nachrichten gesendet." + +#: ../../Zotlabs/Module/Invite.php:102 +msgid "You have no more invitations available" +msgstr "Du hast keine weiteren verfügbare Einladungen" + +#: ../../Zotlabs/Module/Invite.php:133 +msgid "Send invitations" +msgstr "Einladungen senden" + +#: ../../Zotlabs/Module/Invite.php:134 +msgid "Enter email addresses, one per line:" +msgstr "Email-Adressen eintragen, eine pro Zeile:" + +#: ../../Zotlabs/Module/Invite.php:135 ../../Zotlabs/Module/Mail.php:241 +msgid "Your message:" +msgstr "Deine Nachricht:" + +#: ../../Zotlabs/Module/Invite.php:136 +msgid "Please join my community on $Projectname." +msgstr "Schließe Dich uns auf $Projectname an!" + +#: ../../Zotlabs/Module/Invite.php:138 +msgid "You will need to supply this invitation code:" +msgstr "Bitte verwende bei der Registrierung den folgenden Einladungscode:" + +#: ../../Zotlabs/Module/Invite.php:139 +msgid "" +"1. Register at any $Projectname location (they are all inter-connected)" +msgstr "1. Registriere Dich auf einem beliebigen $Projectname-Hub (sie sind alle miteinander verbunden)" + +#: ../../Zotlabs/Module/Invite.php:141 +msgid "2. Enter my $Projectname network address into the site searchbar." +msgstr "2. Gib meine $Projectname-Adresse im Suchfeld ein." + +#: ../../Zotlabs/Module/Invite.php:142 +msgid "or visit" +msgstr "oder besuche" + +#: ../../Zotlabs/Module/Invite.php:144 +msgid "3. Click [Connect]" +msgstr "3. Klicke auf [Verbinden]" + +#: ../../Zotlabs/Module/Locs.php:25 ../../Zotlabs/Module/Locs.php:54 +msgid "Location not found." +msgstr "Klon nicht gefunden." + +#: ../../Zotlabs/Module/Locs.php:62 +msgid "Location lookup failed." +msgstr "Nachschlagen des Kanal-Ortes fehlgeschlagen" + +#: ../../Zotlabs/Module/Locs.php:66 +msgid "" +"Please select another location to become primary before removing the primary" +" location." +msgstr "Bitte mache einen anderen Kanal-Ort zum primären Ort, bevor Du den primären Ort löschst." + +#: ../../Zotlabs/Module/Locs.php:95 +msgid "Syncing locations" +msgstr "Synchronisiere Klone" + +#: ../../Zotlabs/Module/Locs.php:105 +msgid "No locations found." +msgstr "Keine Klon-Adressen gefunden." + +#: ../../Zotlabs/Module/Locs.php:116 +msgid "Manage Channel Locations" +msgstr "Klon-Adressen verwalten" + +#: ../../Zotlabs/Module/Locs.php:119 +msgid "Primary" +msgstr "Primär" + +#: ../../Zotlabs/Module/Locs.php:120 ../../Zotlabs/Module/Menu.php:113 +msgid "Drop" +msgstr "Löschen" + +#: ../../Zotlabs/Module/Locs.php:122 +msgid "Sync Now" +msgstr "Jetzt synchronisieren" + +#: ../../Zotlabs/Module/Locs.php:123 +msgid "Please wait several minutes between consecutive operations." +msgstr "Bitte warte mehrere Minuten zwischen dem Ausführen zweier Operationen!" + +#: ../../Zotlabs/Module/Locs.php:124 +msgid "" +"When possible, drop a location by logging into that website/hub and removing" +" your channel." +msgstr "Wenn möglich, lösche einen Klon, indem Du Dich auf dem jeweiligen Hub einloggst und den Kanal dort löschst." + +#: ../../Zotlabs/Module/Locs.php:125 +msgid "Use this form to drop the location if the hub is no longer operating." +msgstr "Benutze dieses Formular zum Löschen eines Klons, wenn es den Hub nicht mehr gibt." + +#: ../../Zotlabs/Module/Magic.php:71 +msgid "Hub not found." +msgstr "Server nicht gefunden." + +#: ../../Zotlabs/Module/Mail.php:38 +msgid "Unable to lookup recipient." +msgstr "Konnte den Empfänger nicht finden." + +#: ../../Zotlabs/Module/Mail.php:45 +msgid "Unable to communicate with requested channel." +msgstr "Die Kommunikation mit dem ausgewählten Kanal ist fehlgeschlagen." + +#: ../../Zotlabs/Module/Mail.php:52 +msgid "Cannot verify requested channel." +msgstr "Verifizierung des angeforderten Kanals fehlgeschlagen." + +#: ../../Zotlabs/Module/Mail.php:70 +msgid "Selected channel has private message restrictions. Send failed." +msgstr "Der ausgewählte Kanal hat Einschränkungen bzgl. privater Nachrichten. Senden fehlgeschlagen." + +#: ../../Zotlabs/Module/Mail.php:135 +msgid "Messages" +msgstr "Nachrichten" + +#: ../../Zotlabs/Module/Mail.php:170 +msgid "Message recalled." +msgstr "Nachricht widerrufen." + +#: ../../Zotlabs/Module/Mail.php:183 +msgid "Conversation removed." +msgstr "Unterhaltung gelöscht." + +#: ../../Zotlabs/Module/Mail.php:198 ../../Zotlabs/Module/Mail.php:307 +msgid "Expires YYYY-MM-DD HH:MM" +msgstr "Verfällt YYYY-MM-DD HH;MM" + +#: ../../Zotlabs/Module/Mail.php:226 +msgid "Requested channel is not in this network" +msgstr "Angeforderter Kanal ist nicht in diesem Netzwerk." + +#: ../../Zotlabs/Module/Mail.php:234 +msgid "Send Private Message" +msgstr "Private Nachricht senden" + +#: ../../Zotlabs/Module/Mail.php:235 ../../Zotlabs/Module/Mail.php:360 +msgid "To:" +msgstr "An:" + +#: ../../Zotlabs/Module/Mail.php:238 ../../Zotlabs/Module/Mail.php:362 +msgid "Subject:" +msgstr "Betreff:" + +#: ../../Zotlabs/Module/Mail.php:243 ../../Zotlabs/Module/Mail.php:368 +#: ../../include/conversation.php:1231 +msgid "Attach file" +msgstr "Datei anhängen" + +#: ../../Zotlabs/Module/Mail.php:245 +msgid "Send" +msgstr "Absenden" + +#: ../../Zotlabs/Module/Mail.php:248 ../../Zotlabs/Module/Mail.php:373 +#: ../../include/conversation.php:1266 +msgid "Set expiration date" +msgstr "Verfallsdatum" + +#: ../../Zotlabs/Module/Mail.php:332 +msgid "Delete message" +msgstr "Nachricht löschen" + +#: ../../Zotlabs/Module/Mail.php:333 +msgid "Delivery report" +msgstr "Zustellungsbericht" + +#: ../../Zotlabs/Module/Mail.php:334 +msgid "Recall message" +msgstr "Nachricht widerrufen" + +#: ../../Zotlabs/Module/Mail.php:336 +msgid "Message has been recalled." +msgstr "Die Nachricht wurde widerrufen." + +#: ../../Zotlabs/Module/Mail.php:353 +msgid "Delete Conversation" +msgstr "Unterhaltung löschen" + +#: ../../Zotlabs/Module/Mail.php:355 +msgid "" +"No secure communications available. You may be able to " +"respond from the sender's profile page." +msgstr "Keine sichere Kommunikation verfügbar. Eventuell kannst Du auf der Profilseite des Absenders antworten." + +#: ../../Zotlabs/Module/Mail.php:359 +msgid "Send Reply" +msgstr "Antwort senden" + +#: ../../Zotlabs/Module/Mail.php:364 +#, php-format +msgid "Your message for %s (%s):" +msgstr "Deine Nachricht für %s (%s):" + +#: ../../Zotlabs/Module/Manage.php:136 +#: ../../Zotlabs/Module/New_channel.php:121 +#, php-format +msgid "You have created %1$.0f of %2$.0f allowed channels." +msgstr "Du hast %1$.0f von maximal %2$.0f erlaubten Kanälen eingerichtet." + +#: ../../Zotlabs/Module/Manage.php:143 +msgid "Create a new channel" +msgstr "Neuen Kanal anlegen" + +#: ../../Zotlabs/Module/Manage.php:164 ../../Zotlabs/Lib/Apps.php:214 +#: ../../include/nav.php:208 +msgid "Channel Manager" +msgstr "Kanal-Manager" + +#: ../../Zotlabs/Module/Manage.php:165 +msgid "Current Channel" +msgstr "Aktueller Kanal" + +#: ../../Zotlabs/Module/Manage.php:167 +msgid "Switch to one of your channels by selecting it." +msgstr "Wechsle zu einem Deiner Kanäle, indem Du auf ihn klickst." + +#: ../../Zotlabs/Module/Manage.php:168 +msgid "Default Channel" +msgstr "Standard Kanal" + +#: ../../Zotlabs/Module/Manage.php:169 +msgid "Make Default" +msgstr "Zum Standard machen" + +#: ../../Zotlabs/Module/Manage.php:172 +#, php-format +msgid "%d new messages" +msgstr "%d neue Nachrichten" + +#: ../../Zotlabs/Module/Manage.php:173 +#, php-format +msgid "%d new introductions" +msgstr "%d neue Vorstellungen" + +#: ../../Zotlabs/Module/Manage.php:175 +msgid "Delegated Channel" +msgstr "Delegierte Kanäle" + +#: ../../Zotlabs/Module/Menu.php:49 +msgid "Unable to update menu." +msgstr "Kann Menü nicht aktualisieren." + +#: ../../Zotlabs/Module/Menu.php:60 +msgid "Unable to create menu." +msgstr "Kann Menü nicht erstellen." + +#: ../../Zotlabs/Module/Menu.php:98 ../../Zotlabs/Module/Menu.php:110 +msgid "Menu Name" +msgstr "Name des Menüs" + +#: ../../Zotlabs/Module/Menu.php:98 +msgid "Unique name (not visible on webpage) - required" +msgstr "Eindeutiger Name (nicht sichtbar auf der Webseite) – erforderlich" + +#: ../../Zotlabs/Module/Menu.php:99 ../../Zotlabs/Module/Menu.php:111 +msgid "Menu Title" +msgstr "Menütitel" + +#: ../../Zotlabs/Module/Menu.php:99 +msgid "Visible on webpage - leave empty for no title" +msgstr "Sichtbar auf der Webseite – für keinen Titel leer lassen" + +#: ../../Zotlabs/Module/Menu.php:100 +msgid "Allow Bookmarks" +msgstr "Lesezeichen erlauben" + +#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 +msgid "Menu may be used to store saved bookmarks" +msgstr "Im Menü können gespeicherte Lesezeichen abgelegt werden" + +#: ../../Zotlabs/Module/Menu.php:101 ../../Zotlabs/Module/Menu.php:159 +msgid "Submit and proceed" +msgstr "Absenden und fortfahren" + +#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2239 +msgid "Menus" +msgstr "Menüs" + +#: ../../Zotlabs/Module/Menu.php:117 +msgid "Bookmarks allowed" +msgstr "Lesezeichen erlaubt" + +#: ../../Zotlabs/Module/Menu.php:119 +msgid "Delete this menu" +msgstr "Lösche dieses Menü" + +#: ../../Zotlabs/Module/Menu.php:120 ../../Zotlabs/Module/Menu.php:154 +msgid "Edit menu contents" +msgstr "Bearbeite Menü Inhalte" + +#: ../../Zotlabs/Module/Menu.php:121 +msgid "Edit this menu" +msgstr "Dieses Menü bearbeiten" + +#: ../../Zotlabs/Module/Menu.php:136 +msgid "Menu could not be deleted." +msgstr "Menü konnte nicht gelöscht werden." + +#: ../../Zotlabs/Module/Menu.php:144 ../../Zotlabs/Module/Mitem.php:28 +msgid "Menu not found." +msgstr "Menü nicht gefunden" + +#: ../../Zotlabs/Module/Menu.php:149 +msgid "Edit Menu" +msgstr "Menü bearbeiten" + +#: ../../Zotlabs/Module/Menu.php:153 +msgid "Add or remove entries to this menu" +msgstr "Einträge zu diesem Menü hinzufügen oder entfernen" + +#: ../../Zotlabs/Module/Menu.php:155 +msgid "Menu name" +msgstr "Menü Name" + +#: ../../Zotlabs/Module/Menu.php:155 +msgid "Must be unique, only seen by you" +msgstr "Muss eindeutig sein, ist aber nur für Dich sichtbar" + +#: ../../Zotlabs/Module/Menu.php:156 +msgid "Menu title" +msgstr "Menü Titel" + +#: ../../Zotlabs/Module/Menu.php:156 +msgid "Menu title as seen by others" +msgstr "Menü Titel wie er von anderen gesehen wird" + +#: ../../Zotlabs/Module/Menu.php:157 +msgid "Allow bookmarks" +msgstr "Erlaube Lesezeichen" + +#: ../../Zotlabs/Module/Menu.php:166 ../../Zotlabs/Module/Mitem.php:120 +#: ../../Zotlabs/Module/Xchan.php:41 +msgid "Not found." +msgstr "Nicht gefunden." + +#: ../../Zotlabs/Module/Lostpass.php:19 +msgid "No valid account found." +msgstr "Kein gültiges Konto gefunden." + +#: ../../Zotlabs/Module/Lostpass.php:33 +msgid "Password reset request issued. Check your email." +msgstr "Zurücksetzen des Passworts eingeleitet. Schau in Deine E-Mails." + +#: ../../Zotlabs/Module/Lostpass.php:39 ../../Zotlabs/Module/Lostpass.php:107 +#, php-format +msgid "Site Member (%s)" +msgstr "Nutzer (%s)" + +#: ../../Zotlabs/Module/Lostpass.php:44 +#, php-format +msgid "Password reset requested at %s" +msgstr "Passwort-Rücksetzung auf %s angefordert" + +#: ../../Zotlabs/Module/Lostpass.php:67 +msgid "" +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." +msgstr "Die Anfrage konnte nicht verifiziert werden. (Vielleicht hast Du schon einmal auf den Link in der E-Mail geklickt?) Passwort-Rücksetzung fehlgeschlagen." + +#: ../../Zotlabs/Module/Lostpass.php:90 ../../boot.php:1712 +msgid "Password Reset" +msgstr "Zurücksetzen des Kennworts" + +#: ../../Zotlabs/Module/Lostpass.php:91 +msgid "Your password has been reset as requested." +msgstr "Dein Passwort wurde wie angefordert neu erstellt." + +#: ../../Zotlabs/Module/Lostpass.php:92 +msgid "Your new password is" +msgstr "Dein neues Passwort lautet" + +#: ../../Zotlabs/Module/Lostpass.php:93 +msgid "Save or copy your new password - and then" +msgstr "Speichere oder kopiere Dein neues Passwort – und dann" + +#: ../../Zotlabs/Module/Lostpass.php:94 +msgid "click here to login" +msgstr "Klicke hier, um dich anzumelden" + +#: ../../Zotlabs/Module/Lostpass.php:95 +msgid "" +"Your password may be changed from the Settings page after " +"successful login." +msgstr "Dein Passwort kann unter Einstellungen nach einer erfolgreichen Anmeldung geändert werden." + +#: ../../Zotlabs/Module/Lostpass.php:112 +#, php-format +msgid "Your password has changed at %s" +msgstr "Auf %s wurde Dein Passwort geändert" + +#: ../../Zotlabs/Module/Lostpass.php:127 +msgid "Forgot your Password?" +msgstr "Kennwort vergessen?" + +#: ../../Zotlabs/Module/Lostpass.php:128 +msgid "" +"Enter your email address and submit to have your password reset. Then check " +"your email for further instructions." +msgstr "Gib Deine E-Mail-Adresse ein, um Dein Passwort zurücksetzen zu lassen. Du erhältst dann weitere Anweisungen per E-Mail." + +#: ../../Zotlabs/Module/Lostpass.php:129 +msgid "Email Address" +msgstr "E-Mail Adresse" + +#: ../../Zotlabs/Module/Lostpass.php:130 +msgid "Reset" +msgstr "Zurücksetzen" + +#: ../../Zotlabs/Module/Mood.php:67 ../../include/conversation.php:260 +#, php-format +msgctxt "mood" +msgid "%1$s is %2$s" +msgstr "%1$s ist %2$s" + +#: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Lib/Apps.php:227 +msgid "Mood" +msgstr "Laune" + +#: ../../Zotlabs/Module/Mood.php:136 +msgid "Set your current mood and tell your friends" +msgstr "Wähle Deine aktuelle Stimmung und teile sie mit Deinen Freunden" + +#: ../../Zotlabs/Module/Network.php:94 +msgid "No such group" +msgstr "Gruppe nicht gefunden" + +#: ../../Zotlabs/Module/Network.php:134 +msgid "No such channel" +msgstr "Kanal nicht gefunden" + +#: ../../Zotlabs/Module/Network.php:139 +msgid "forum" +msgstr "Forum" + +#: ../../Zotlabs/Module/Network.php:151 +msgid "Search Results For:" +msgstr "Suchergebnisse für:" + +#: ../../Zotlabs/Module/Network.php:215 +msgid "Privacy group is empty" +msgstr "Gruppe ist leer" + +#: ../../Zotlabs/Module/Network.php:224 +msgid "Privacy group: " +msgstr "Gruppe:" + +#: ../../Zotlabs/Module/Network.php:250 +msgid "Invalid connection." +msgstr "Ungültige Verbindung." + +#: ../../Zotlabs/Module/Notify.php:57 +#: ../../Zotlabs/Module/Notifications.php:98 +msgid "No more system notifications." +msgstr "Keine System-Benachrichtigungen mehr." + +#: ../../Zotlabs/Module/Notify.php:61 +#: ../../Zotlabs/Module/Notifications.php:102 +msgid "System Notifications" +msgstr "System-Benachrichtigungen" + +#: ../../Zotlabs/Module/Match.php:26 +msgid "Profile Match" +msgstr "Profil-Übereinstimmungen" + +#: ../../Zotlabs/Module/Match.php:35 +msgid "No keywords to match. Please add keywords to your default profile." +msgstr "Keine Schlüsselwörter für den Abgleich gefunden. Bitte füge Schlüsselwörter zu Deinem Standardprofil hinzu." + +#: ../../Zotlabs/Module/Match.php:67 +msgid "is interested in:" +msgstr "interessiert sich für:" + +#: ../../Zotlabs/Module/Match.php:74 +msgid "No matches" +msgstr "Keine Übereinstimmungen" + +#: ../../Zotlabs/Module/Channel.php:40 +msgid "Posts and comments" +msgstr "Beiträge und Kommentare" + +#: ../../Zotlabs/Module/Channel.php:41 +msgid "Only posts" +msgstr "Nur Beiträge" + +#: ../../Zotlabs/Module/Channel.php:101 +msgid "Insufficient permissions. Request redirected to profile page." +msgstr "Unzureichende Zugriffsrechte. Die Anfrage wurde zur Profil-Seite umgeleitet." + +#: ../../Zotlabs/Module/Mitem.php:52 +msgid "Unable to create element." +msgstr "Element konnte nicht erstellt werden." + +#: ../../Zotlabs/Module/Mitem.php:76 +msgid "Unable to update menu element." +msgstr "Kann Menü-Element nicht aktualisieren." + +#: ../../Zotlabs/Module/Mitem.php:92 +msgid "Unable to add menu element." +msgstr "Kann Menü-Bestandteil nicht hinzufügen." + +#: ../../Zotlabs/Module/Mitem.php:153 ../../Zotlabs/Module/Mitem.php:226 +msgid "Menu Item Permissions" +msgstr "Zugriffsrechte des Menü-Elements" + +#: ../../Zotlabs/Module/Mitem.php:154 ../../Zotlabs/Module/Mitem.php:227 +#: ../../Zotlabs/Module/Settings.php:1163 +msgid "(click to open/close)" +msgstr "(zum öffnen/schließen anklicken)" + +#: ../../Zotlabs/Module/Mitem.php:156 ../../Zotlabs/Module/Mitem.php:172 +msgid "Link Name" +msgstr "Name des Links" + +#: ../../Zotlabs/Module/Mitem.php:157 ../../Zotlabs/Module/Mitem.php:231 +msgid "Link or Submenu Target" +msgstr "Ziel des Links oder Untermenüs" + +#: ../../Zotlabs/Module/Mitem.php:157 +msgid "Enter URL of the link or select a menu name to create a submenu" +msgstr "URL des Links eingeben oder Menünamen wählen, um ein Untermenü anzulegen." + +#: ../../Zotlabs/Module/Mitem.php:158 ../../Zotlabs/Module/Mitem.php:232 +msgid "Use magic-auth if available" +msgstr "Magic-Auth verwenden, falls verfügbar" + +#: ../../Zotlabs/Module/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:233 +msgid "Open link in new window" +msgstr "Öffne Link in neuem Fenster" + +#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:234 +msgid "Order in list" +msgstr "Reihenfolge in der Liste" + +#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:234 +msgid "Higher numbers will sink to bottom of listing" +msgstr "Größere Nummern werden weiter unten in der Auflistung einsortiert" + +#: ../../Zotlabs/Module/Mitem.php:161 +msgid "Submit and finish" +msgstr "Absenden und fertigstellen" + +#: ../../Zotlabs/Module/Mitem.php:162 +msgid "Submit and continue" +msgstr "Absenden und fortfahren" + +#: ../../Zotlabs/Module/Mitem.php:170 +msgid "Menu:" +msgstr "Menü:" + +#: ../../Zotlabs/Module/Mitem.php:173 +msgid "Link Target" +msgstr "Ziel des Links" + +#: ../../Zotlabs/Module/Mitem.php:176 +msgid "Edit menu" +msgstr "Menü bearbeiten" + +#: ../../Zotlabs/Module/Mitem.php:179 +msgid "Edit element" +msgstr "Bestandteil bearbeiten" + +#: ../../Zotlabs/Module/Mitem.php:180 +msgid "Drop element" +msgstr "Bestandteil löschen" + +#: ../../Zotlabs/Module/Mitem.php:181 +msgid "New element" +msgstr "Neues Bestandteil" + +#: ../../Zotlabs/Module/Mitem.php:182 +msgid "Edit this menu container" +msgstr "Diesen Menü-Container bearbeiten" + +#: ../../Zotlabs/Module/Mitem.php:183 +msgid "Add menu element" +msgstr "Menüelement hinzufügen" + +#: ../../Zotlabs/Module/Mitem.php:184 +msgid "Delete this menu item" +msgstr "Lösche dieses Menü-Bestandteil" + +#: ../../Zotlabs/Module/Mitem.php:185 +msgid "Edit this menu item" +msgstr "Bearbeite dieses Menü-Bestandteil" + +#: ../../Zotlabs/Module/Mitem.php:202 +msgid "Menu item not found." +msgstr "Menü-Bestandteil nicht gefunden." + +#: ../../Zotlabs/Module/Mitem.php:215 +msgid "Menu item deleted." +msgstr "Menü-Bestandteil gelöscht." + +#: ../../Zotlabs/Module/Mitem.php:217 +msgid "Menu item could not be deleted." +msgstr "Menü-Bestandteil kann nicht gelöscht werden." + +#: ../../Zotlabs/Module/Mitem.php:224 +msgid "Edit Menu Element" +msgstr "Bearbeite Menü-Bestandteil" + +#: ../../Zotlabs/Module/Mitem.php:230 +msgid "Link text" +msgstr "Link Text" #: ../../Zotlabs/Module/Admin.php:77 msgid "Theme settings updated." @@ -3680,11 +3587,11 @@ msgstr "Repository-Version (dev)" msgid "Site settings updated." msgstr "Site-Einstellungen aktualisiert." -#: ../../Zotlabs/Module/Admin.php:400 ../../include/text.php:2841 +#: ../../Zotlabs/Module/Admin.php:400 ../../include/text.php:2829 msgid "Default" msgstr "Standard" -#: ../../Zotlabs/Module/Admin.php:410 ../../Zotlabs/Module/Settings.php:798 +#: ../../Zotlabs/Module/Admin.php:410 ../../Zotlabs/Module/Settings.php:899 msgid "mobile" msgstr "mobil" @@ -3716,7 +3623,7 @@ msgstr "Meine Seite hat nur freien Zugriff" msgid "My site offers free accounts with optional paid upgrades" msgstr "Mein Server bietet kostenlose Konten mit der Möglichkeit zu bezahlten Upgrades" -#: ../../Zotlabs/Module/Admin.php:491 ../../include/widgets.php:1382 +#: ../../Zotlabs/Module/Admin.php:491 ../../include/widgets.php:1476 msgid "Site" msgstr "Seite" @@ -4004,12 +3911,12 @@ msgid "0 for no expiration of imported content" msgstr "0 = keine Löschung importierter Inhalte" #: ../../Zotlabs/Module/Admin.php:677 ../../Zotlabs/Module/Admin.php:678 -#: ../../Zotlabs/Module/Settings.php:722 +#: ../../Zotlabs/Module/Settings.php:823 msgid "Off" msgstr "Aus" #: ../../Zotlabs/Module/Admin.php:677 ../../Zotlabs/Module/Admin.php:678 -#: ../../Zotlabs/Module/Settings.php:722 +#: ../../Zotlabs/Module/Settings.php:823 msgid "On" msgstr "An" @@ -4066,7 +3973,7 @@ msgid "" "embedded content from that site is explicitly blocked." msgstr "Alle anderen eingebetteten Inhalte werden gefiltert, es sei denn, eingebettete Inhalte von einer bestimmten Seite sind explizit blockiert." -#: ../../Zotlabs/Module/Admin.php:756 ../../include/widgets.php:1385 +#: ../../Zotlabs/Module/Admin.php:756 ../../include/widgets.php:1479 msgid "Security" msgstr "Sicherheit" @@ -4234,7 +4141,7 @@ msgid "Account '%s' unblocked" msgstr "Konto '%s' freigegeben" #: ../../Zotlabs/Module/Admin.php:1031 ../../Zotlabs/Module/Admin.php:1044 -#: ../../include/widgets.php:1383 +#: ../../include/widgets.php:1477 msgid "Accounts" msgstr "Konten" @@ -4340,7 +4247,7 @@ msgstr "Code für Kanal '%s' freigegeben" msgid "Channel '%s' code disallowed" msgstr "Code für Kanal '%s' gesperrt" -#: ../../Zotlabs/Module/Admin.php:1210 ../../include/widgets.php:1384 +#: ../../Zotlabs/Module/Admin.php:1210 ../../include/widgets.php:1478 msgid "Channels" msgstr "Kanäle" @@ -4360,7 +4267,7 @@ msgstr "Code erlauben" msgid "Disallow Code" msgstr "Code sperren" -#: ../../Zotlabs/Module/Admin.php:1218 ../../include/conversation.php:1611 +#: ../../Zotlabs/Module/Admin.php:1218 ../../include/conversation.php:1626 msgid "Channel" msgstr "Kanal" @@ -4399,7 +4306,7 @@ msgid "Enable" msgstr "Aktivieren" #: ../../Zotlabs/Module/Admin.php:1330 ../../Zotlabs/Module/Admin.php:1420 -#: ../../include/widgets.php:1387 +#: ../../include/widgets.php:1481 msgid "Plugins" msgstr "Plug-Ins" @@ -4408,8 +4315,8 @@ msgid "Toggle" msgstr "Umschalten" #: ../../Zotlabs/Module/Admin.php:1332 ../../Zotlabs/Module/Admin.php:1615 -#: ../../Zotlabs/Lib/Apps.php:215 ../../include/widgets.php:638 -#: ../../include/nav.php:208 +#: ../../Zotlabs/Lib/Apps.php:216 ../../include/nav.php:210 +#: ../../include/widgets.php:647 msgid "Settings" msgstr "Einstellungen" @@ -4465,7 +4372,7 @@ msgstr "Plugin-Repository herunterladen" msgid "Install new repo" msgstr "Neues Repository installieren" -#: ../../Zotlabs/Module/Admin.php:1405 ../../Zotlabs/Lib/Apps.php:330 +#: ../../Zotlabs/Module/Admin.php:1405 ../../Zotlabs/Lib/Apps.php:334 msgid "Install" msgstr "Installieren" @@ -4481,8 +4388,8 @@ msgstr "Installierte Plugin-Repositorien" msgid "Install a New Plugin Repository" msgstr "Ein neues Plugin-Repository installieren" -#: ../../Zotlabs/Module/Admin.php:1435 ../../Zotlabs/Module/Settings.php:77 -#: ../../Zotlabs/Module/Settings.php:616 ../../Zotlabs/Lib/Apps.php:330 +#: ../../Zotlabs/Module/Admin.php:1435 ../../Zotlabs/Module/Settings.php:72 +#: ../../Zotlabs/Module/Settings.php:670 ../../Zotlabs/Lib/Apps.php:334 msgid "Update" msgstr "Aktualisieren" @@ -4499,7 +4406,7 @@ msgid "Screenshot" msgstr "Bildschirmfoto" #: ../../Zotlabs/Module/Admin.php:1613 ../../Zotlabs/Module/Admin.php:1647 -#: ../../include/widgets.php:1388 +#: ../../include/widgets.php:1482 msgid "Themes" msgstr "Themes" @@ -4515,8 +4422,8 @@ msgstr "[Nicht unterstützt]" msgid "Log settings updated." msgstr "Protokoll-Einstellungen aktualisiert." -#: ../../Zotlabs/Module/Admin.php:1732 ../../include/widgets.php:1409 -#: ../../include/widgets.php:1419 +#: ../../Zotlabs/Module/Admin.php:1732 ../../include/widgets.php:1503 +#: ../../include/widgets.php:1513 msgid "Logs" msgstr "Protokolle" @@ -4582,7 +4489,7 @@ msgstr "Feld-Definition nicht gefunden" msgid "Edit Profile Field" msgstr "Profilfeld bearbeiten" -#: ../../Zotlabs/Module/Admin.php:2106 ../../include/widgets.php:1390 +#: ../../Zotlabs/Module/Admin.php:2106 ../../include/widgets.php:1484 msgid "Profile Fields" msgstr "Profil Felder" @@ -4610,57 +4517,384 @@ msgstr "Benutzerdefinierte Felder" msgid "Create Custom Field" msgstr "Erstelle benutzerdefiniertes Feld" -#: ../../Zotlabs/Module/Appman.php:37 ../../Zotlabs/Module/Appman.php:53 -msgid "App installed." -msgstr "App installiert." +#: ../../Zotlabs/Module/New_channel.php:128 +#: ../../Zotlabs/Module/Register.php:231 +msgid "Name or caption" +msgstr "Name oder Titel" -#: ../../Zotlabs/Module/Appman.php:46 -msgid "Malformed app." -msgstr "Fehlerhafte App." +#: ../../Zotlabs/Module/New_channel.php:128 +#: ../../Zotlabs/Module/Register.php:231 +msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\"" +msgstr "Beispiele: „Horst Weidinger“, „Lisa und ihr Meerschweinchen“, „Fußball“, „Segelflieger-Forum“ " -#: ../../Zotlabs/Module/Appman.php:104 -msgid "Embed code" -msgstr "Code einbetten" +#: ../../Zotlabs/Module/New_channel.php:130 +#: ../../Zotlabs/Module/Register.php:233 +msgid "Choose a short nickname" +msgstr "Wähle einen kurzen Spitznamen" -#: ../../Zotlabs/Module/Appman.php:110 ../../include/widgets.php:107 -msgid "Edit App" -msgstr "App bearbeiten" +#: ../../Zotlabs/Module/New_channel.php:130 +#: ../../Zotlabs/Module/Register.php:233 +#, php-format +msgid "" +"Your nickname will be used to create an easy to remember channel address " +"e.g. nickname%s" +msgstr "Dein Spitzname wird verwendet, um eine leicht zu merkende Kanal-Adresse (ähnlich einer E-Mail-Adresse) zu erzeugen, die Du mit anderen austauschen kannst, z.B. nickname%s" -#: ../../Zotlabs/Module/Appman.php:110 -msgid "Create App" -msgstr "App erstellen" +#: ../../Zotlabs/Module/New_channel.php:132 +#: ../../Zotlabs/Module/Register.php:235 +msgid "Channel role and privacy" +msgstr "Kanaltyp und Privatspäre-Einstellungen" -#: ../../Zotlabs/Module/Appman.php:115 -msgid "Name of app" -msgstr "Name der App" +#: ../../Zotlabs/Module/New_channel.php:132 +#: ../../Zotlabs/Module/Register.php:235 +msgid "Select a channel role with your privacy requirements." +msgstr "Wähle einen passenden Kanaltyp mit den zugehörigen Voreinstellungen zur Privatsphäre." -#: ../../Zotlabs/Module/Appman.php:116 -msgid "Location (URL) of app" -msgstr "Ort (URL) der App" +#: ../../Zotlabs/Module/New_channel.php:132 +#: ../../Zotlabs/Module/Register.php:235 +msgid "Read more about roles" +msgstr "Mehr Informationen über Rollen" -#: ../../Zotlabs/Module/Appman.php:118 -msgid "Photo icon URL" -msgstr "URL zum Icon" +#: ../../Zotlabs/Module/New_channel.php:135 +msgid "Create Channel" +msgstr "Einen neuen Kanal anlegen" -#: ../../Zotlabs/Module/Appman.php:118 -msgid "80 x 80 pixels - optional" -msgstr "80 x 80 Pixel – optional" +#: ../../Zotlabs/Module/New_channel.php:136 +msgid "" +"A channel is your identity on this network. It can represent a person, a " +"blog, or a forum to name a few. Channels can make connections with other " +"channels to share information with highly detailed permissions." +msgstr "Ein Kanal ist Deine Identität in diesem Netzwerk. Er kann eine Person, ein Blog oder ein Forum repräsentieren, nur um ein paar Beispiele zu nennen. Kanäle können Verbindungen miteinander eingehen, um Informationen zu teilen, jeweils basierend auf sehr detaillierten Berechtigungseinstellungen." -#: ../../Zotlabs/Module/Appman.php:119 -msgid "Categories (optional, comma separated list)" -msgstr "Kategorien (optional, kommagetrennte Liste)" +#: ../../Zotlabs/Module/New_channel.php:137 +msgid "" +"or import an existing channel from another location." +msgstr "oder importiere einen bestehenden Kanal von einem anderen Server." -#: ../../Zotlabs/Module/Appman.php:120 -msgid "Version ID" -msgstr "Versions-ID" +#: ../../Zotlabs/Module/Ping.php:265 +msgid "sent you a private message" +msgstr "hat Dir eine private Nachricht geschickt" -#: ../../Zotlabs/Module/Appman.php:121 -msgid "Price of app" -msgstr "Preis der App" +#: ../../Zotlabs/Module/Ping.php:313 +msgid "added your channel" +msgstr "hat deinen Kanal hinzugefügt" -#: ../../Zotlabs/Module/Appman.php:122 -msgid "Location (URL) to purchase app" -msgstr "Ort (URL), um die App zu kaufen" +#: ../../Zotlabs/Module/Ping.php:323 +msgid "g A l F d" +msgstr "l, d. F, G:i \\U\\h\\r" + +#: ../../Zotlabs/Module/Ping.php:346 +msgid "[today]" +msgstr "[Heute]" + +#: ../../Zotlabs/Module/Ping.php:355 +msgid "posted an event" +msgstr "hat einen Termin veröffentlicht" + +#: ../../Zotlabs/Module/Notifications.php:30 +msgid "Invalid request identifier." +msgstr "Ungültiger Anfrage-Identifikator." + +#: ../../Zotlabs/Module/Notifications.php:39 +msgid "Discard" +msgstr "Verwerfen" + +#: ../../Zotlabs/Module/Notifications.php:103 ../../include/nav.php:193 +msgid "Mark all system notifications seen" +msgstr "Markiere alle System-Benachrichtigungen als gesehen" + +#: ../../Zotlabs/Module/Poke.php:168 ../../Zotlabs/Lib/Apps.php:228 +#: ../../include/conversation.php:963 +msgid "Poke" +msgstr "Anstupsen" + +#: ../../Zotlabs/Module/Poke.php:169 +msgid "Poke somebody" +msgstr "Jemanden anstupsen" + +#: ../../Zotlabs/Module/Poke.php:172 +msgid "Poke/Prod" +msgstr "Anstupsen/Knuffen" + +#: ../../Zotlabs/Module/Poke.php:173 +msgid "Poke, prod or do other things to somebody" +msgstr "Jemanden anstupsen, knuffen oder sonstiges" + +#: ../../Zotlabs/Module/Poke.php:180 +msgid "Recipient" +msgstr "Empfänger" + +#: ../../Zotlabs/Module/Poke.php:181 +msgid "Choose what you wish to do to recipient" +msgstr "Wähle, was Du mit dem/r Empfänger/in tun willst" + +#: ../../Zotlabs/Module/Poke.php:184 ../../Zotlabs/Module/Poke.php:185 +msgid "Make this post private" +msgstr "Diesen Beitrag privat machen" + +#: ../../Zotlabs/Module/Oexchange.php:27 +msgid "Unable to find your hub." +msgstr "Konnte Deinen Server nicht finden." + +#: ../../Zotlabs/Module/Oexchange.php:41 +msgid "Post successful." +msgstr "Veröffentlichung erfolgreich." + +#: ../../Zotlabs/Module/Openid.php:30 +msgid "OpenID protocol error. No ID returned." +msgstr "OpenID Protokollfehler. Keine ID zurückgegeben." + +#: ../../Zotlabs/Module/Openid.php:193 ../../include/auth.php:285 +msgid "Login failed." +msgstr "Login fehlgeschlagen." + +#: ../../Zotlabs/Module/Profperm.php:34 ../../Zotlabs/Module/Profperm.php:63 +msgid "Invalid profile identifier." +msgstr "Ungültiger Profil-Identifikator" + +#: ../../Zotlabs/Module/Profperm.php:115 +msgid "Profile Visibility Editor" +msgstr "Profil-Sichtbarkeits-Editor" + +#: ../../Zotlabs/Module/Profperm.php:117 ../../include/channel.php:1290 +msgid "Profile" +msgstr "Profil" + +#: ../../Zotlabs/Module/Profperm.php:119 +msgid "Click on a contact to add or remove." +msgstr "Klicke auf einen Kontakt, um ihn hinzuzufügen oder zu entfernen." + +#: ../../Zotlabs/Module/Profperm.php:128 +msgid "Visible To" +msgstr "Sichtbar für" + +#: ../../Zotlabs/Module/Pconfig.php:26 ../../Zotlabs/Module/Pconfig.php:59 +msgid "This setting requires special processing and editing has been blocked." +msgstr "Diese Einstellung erfordert eine besondere Verarbeitung und ist blockiert." + +#: ../../Zotlabs/Module/Pconfig.php:48 +msgid "Configuration Editor" +msgstr "Konfigurationseditor" + +#: ../../Zotlabs/Module/Pconfig.php:49 +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 "Warnung: Einige Einstellungen können Deinen Kanal funktionsunfähig machen. Bitte verlasse diese Seite, es sei denn Du bist vertraut damit, wie dieses Feature korrekt verwendet wird." + +#: ../../Zotlabs/Module/Probe.php:28 ../../Zotlabs/Module/Probe.php:32 +#, php-format +msgid "Fetching URL returns error: %1$s" +msgstr "Abrufen der URL gab einen Fehler zurück: %1$s" + +#: ../../Zotlabs/Module/Siteinfo.php:19 +#, php-format +msgid "Version %s" +msgstr "Version %s" + +#: ../../Zotlabs/Module/Siteinfo.php:34 +msgid "Installed plugins/addons/apps:" +msgstr "Installierte Plugins/Addons/Apps" + +#: ../../Zotlabs/Module/Siteinfo.php:36 +msgid "No installed plugins/addons/apps" +msgstr "Keine installierten Plugins/Addons/Apps" + +#: ../../Zotlabs/Module/Siteinfo.php:49 +msgid "" +"This is a hub of $Projectname - a global cooperative network of " +"decentralized privacy enhanced websites." +msgstr "Dieser Hub ist Teil von $Projectname – ein globales, kooperatives Netzwerk aus dezentralen Websites, die Rücksicht auf Deine Privatsphäre nehmen." + +#: ../../Zotlabs/Module/Siteinfo.php:51 +msgid "Tag: " +msgstr "Schlagwort: " + +#: ../../Zotlabs/Module/Siteinfo.php:53 +msgid "Last background fetch: " +msgstr "Letzter Hintergrundabruf:" + +#: ../../Zotlabs/Module/Siteinfo.php:55 +msgid "Current load average: " +msgstr "Aktuelles Load Average:" + +#: ../../Zotlabs/Module/Siteinfo.php:58 +msgid "Running at web location" +msgstr "Erreichbar unter der Web-Adresse" + +#: ../../Zotlabs/Module/Siteinfo.php:59 +msgid "" +"Please visit hubzilla.org to learn more " +"about $Projectname." +msgstr "Bitte besuchen Sie hubzilla.org, um mehr über $Projectname zu erfahren." + +#: ../../Zotlabs/Module/Siteinfo.php:60 +msgid "Bug reports and issues: please visit" +msgstr "Probleme oder Fehler gefunden? Bitte besuche" + +#: ../../Zotlabs/Module/Siteinfo.php:62 +msgid "$projectname issues" +msgstr "$projectname-Bugtracker" + +#: ../../Zotlabs/Module/Siteinfo.php:63 +msgid "" +"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot " +"com" +msgstr "Vorschläge, Lob, usw.: E-Mail an 'redmatrix' at librelist - dot - com" + +#: ../../Zotlabs/Module/Siteinfo.php:65 +msgid "Site Administrators" +msgstr "Administratoren" + +#: ../../Zotlabs/Module/Rmagic.php:44 +msgid "" +"We encountered a problem while logging in with the OpenID you provided. " +"Please check the correct spelling of the ID." +msgstr "Wir haben ein Problem mit der OpenID festgestellt, mit der Du Dich anmelden wolltest. Bitte überprüfe sie noch einmal." + +#: ../../Zotlabs/Module/Rmagic.php:44 +msgid "The error message was:" +msgstr "Die Fehlermeldung war:" + +#: ../../Zotlabs/Module/Rmagic.php:48 +msgid "Authentication failed." +msgstr "Authentifizierung fehlgeschlagen." + +#: ../../Zotlabs/Module/Rmagic.php:88 +msgid "Remote Authentication" +msgstr "Entfernte Authentifizierung" + +#: ../../Zotlabs/Module/Rmagic.php:89 +msgid "Enter your channel address (e.g. channel@example.com)" +msgstr "Deine Kanal-Adresse (z. B. channel@example.com)" + +#: ../../Zotlabs/Module/Rmagic.php:90 +msgid "Authenticate" +msgstr "Authentifizieren" + +#: ../../Zotlabs/Module/Pubsites.php:22 ../../include/widgets.php:1337 +msgid "Public Hubs" +msgstr "Öffentliche Hubs" + +#: ../../Zotlabs/Module/Pubsites.php:25 +msgid "" +"The listed hubs allow public registration for the $Projectname network. All " +"hubs in the network are interlinked so membership on any of them conveys " +"membership in the network as a whole. Some hubs may require subscription or " +"provide tiered service plans. The hub itself may provide " +"additional details." +msgstr "Die hier aufgeführten Hubs sind öffentlich und erlauben die Registrierung im $Projectname Netzwerk. Alle Hubs dieses Netzwerks sind miteinander verbunden, so dass die Mitgliedschaft auf einem Hub die Verbindung zu beliebigen Seiten und Kanälen auf anderen Hubs ermöglicht. Es könnte sein, dass einige dieser Hubs kostenpflichtig sind oder abgestufte, je nach Umfang kostenpflichtige Mitgliedschaften anbieten. Auf den Seiten der einzelnen Hubs könnten jeweils nähere Informationen dazu stehen." + +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Hub URL" +msgstr "Hub-URL" + +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Access Type" +msgstr "Zugriffstyp" + +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Registration Policy" +msgstr "Registrierungsrichtlinien" + +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Stats" +msgstr "Statistiken" + +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Software" +msgstr "Software" + +#: ../../Zotlabs/Module/Pubsites.php:31 ../../Zotlabs/Module/Ratings.php:103 +#: ../../include/conversation.php:962 +msgid "Ratings" +msgstr "Bewertungen" + +#: ../../Zotlabs/Module/Pubsites.php:38 +msgid "Rate" +msgstr "Bewerten" + +#: ../../Zotlabs/Module/Profile_photo.php:186 +msgid "" +"Shift-reload the page or clear browser cache if the new photo does not " +"display immediately." +msgstr "Leere den Browser Cache oder nutze Umschalten-Neu Laden, falls das neue Foto nicht sofort angezeigt wird." + +#: ../../Zotlabs/Module/Profile_photo.php:389 +msgid "Upload Profile Photo" +msgstr "Lade neues Profilfoto hoch" + +#: ../../Zotlabs/Module/Blocks.php:97 ../../Zotlabs/Module/Blocks.php:155 +#: ../../Zotlabs/Module/Editblock.php:108 +msgid "Block Name" +msgstr "Block-Name" + +#: ../../Zotlabs/Module/Blocks.php:154 ../../include/text.php:2238 +msgid "Blocks" +msgstr "Blöcke" + +#: ../../Zotlabs/Module/Blocks.php:156 +msgid "Block Title" +msgstr "Titel des Blocks" + +#: ../../Zotlabs/Module/Rate.php:160 +msgid "Website:" +msgstr "Webseite:" + +#: ../../Zotlabs/Module/Rate.php:163 +#, php-format +msgid "Remote Channel [%s] (not yet known on this site)" +msgstr "Kanal [%s] (auf diesem Server noch unbekannt)" + +#: ../../Zotlabs/Module/Rate.php:164 +msgid "Rating (this information is public)" +msgstr "Bewertung (öffentlich sichtbar)" + +#: ../../Zotlabs/Module/Rate.php:165 +msgid "Optionally explain your rating (this information is public)" +msgstr "Optional kannst du deine Bewertung erklären (öffentlich sichtbar)" + +#: ../../Zotlabs/Module/Ratings.php:73 +msgid "No ratings" +msgstr "Keine Bewertungen" + +#: ../../Zotlabs/Module/Ratings.php:104 +msgid "Rating: " +msgstr "Bewertung: " + +#: ../../Zotlabs/Module/Ratings.php:105 +msgid "Website: " +msgstr "Webseite: " + +#: ../../Zotlabs/Module/Ratings.php:107 +msgid "Description: " +msgstr "Beschreibung: " + +#: ../../Zotlabs/Module/Apps.php:47 ../../include/nav.php:165 +#: ../../include/widgets.php:102 +msgid "Apps" +msgstr "Apps" + +#: ../../Zotlabs/Module/Editblock.php:124 ../../include/conversation.php:1243 +msgid "Title (optional)" +msgstr "Titel (optional)" + +#: ../../Zotlabs/Module/Editblock.php:133 +msgid "Edit Block" +msgstr "Block bearbeiten" + +#: ../../Zotlabs/Module/Common.php:14 +msgid "No channel." +msgstr "Kein Kanal." + +#: ../../Zotlabs/Module/Common.php:43 +msgid "Common connections" +msgstr "Gemeinsame Verbindungen" + +#: ../../Zotlabs/Module/Common.php:48 +msgid "No connections in common." +msgstr "Keine gemeinsamen Verbindungen." #: ../../Zotlabs/Module/Rbmark.php:94 msgid "Select a bookmark folder" @@ -4765,120 +4999,154 @@ msgstr "ja" msgid "Membership on this site is by invitation only." msgstr "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich." -#: ../../Zotlabs/Module/Register.php:262 ../../include/nav.php:147 -#: ../../boot.php:1685 +#: ../../Zotlabs/Module/Register.php:262 ../../include/nav.php:149 +#: ../../boot.php:1686 msgid "Register" msgstr "Registrieren" -#: ../../Zotlabs/Module/Register.php:262 -msgid "Proceed to create your first channel" -msgstr "Fortfahren und Deinen ersten Kanal anlegen" +#: ../../Zotlabs/Module/Register.php:263 +msgid "" +"This site may require email verification after submitting this form. If you " +"are returned to a login page, please check your email for instructions." +msgstr "Diese Seite verlangt möglicherweise eine Emailbestätigung nach dem Ansenden des Formulars. Wenn Du auf eine Login-Seite zurückgeleitet wirst, prüfe bitte auf neue Mail mit entsprechenden Hinweisen." #: ../../Zotlabs/Module/Regmod.php:15 msgid "Please login." msgstr "Bitte melde dich an." -#: ../../Zotlabs/Module/Removeaccount.php:34 +#: ../../Zotlabs/Module/Removeaccount.php:35 msgid "" "Account removals are not allowed within 48 hours of changing the account " "password." msgstr "Das Löschen von Konten innerhalb 48 Stunden nachdem deren Passwort geändert wurde ist nicht erlaubt." -#: ../../Zotlabs/Module/Removeaccount.php:56 +#: ../../Zotlabs/Module/Removeaccount.php:57 msgid "Remove This Account" msgstr "Dieses Konto löschen" -#: ../../Zotlabs/Module/Removeaccount.php:57 -#: ../../Zotlabs/Module/Removeme.php:59 +#: ../../Zotlabs/Module/Removeaccount.php:58 +#: ../../Zotlabs/Module/Removeme.php:61 msgid "WARNING: " msgstr "WARNUNG: " -#: ../../Zotlabs/Module/Removeaccount.php:57 +#: ../../Zotlabs/Module/Removeaccount.php:58 msgid "" "This account and all its channels will be completely removed from the " "network. " msgstr "Dieses Konto mit all seinen Kanälen wird vollständig aus dem Netzwerk gelöscht." -#: ../../Zotlabs/Module/Removeaccount.php:57 -#: ../../Zotlabs/Module/Removeme.php:59 +#: ../../Zotlabs/Module/Removeaccount.php:58 +#: ../../Zotlabs/Module/Removeme.php:61 msgid "This action is permanent and can not be undone!" msgstr "Dieser Schritt ist endgültig und kann nicht rückgängig gemacht werden!" -#: ../../Zotlabs/Module/Removeaccount.php:58 -#: ../../Zotlabs/Module/Removeme.php:60 +#: ../../Zotlabs/Module/Removeaccount.php:59 +#: ../../Zotlabs/Module/Removeme.php:62 msgid "Please enter your password for verification:" msgstr "Bitte gib zur Bestätigung Dein Passwort ein:" -#: ../../Zotlabs/Module/Removeaccount.php:59 +#: ../../Zotlabs/Module/Removeaccount.php:60 msgid "" "Remove this account, all its channels and all its channel clones from the " "network" msgstr "Dieses Konto, all seine Kanäle sowie alle Kanal-Klone aus dem Netzwerk löschen" -#: ../../Zotlabs/Module/Removeaccount.php:59 +#: ../../Zotlabs/Module/Removeaccount.php:60 msgid "" "By default only the instances of the channels located on this hub will be " "removed from the network" msgstr "Standardmäßig werden nur die Kanalklone auf diesem $Projectname-Hub aus dem Netzwerk entfernt" -#: ../../Zotlabs/Module/Removeaccount.php:60 -#: ../../Zotlabs/Module/Settings.php:705 +#: ../../Zotlabs/Module/Removeaccount.php:61 +#: ../../Zotlabs/Module/Settings.php:759 msgid "Remove Account" msgstr "Konto entfernen" -#: ../../Zotlabs/Module/Removeme.php:33 +#: ../../Zotlabs/Module/Removeme.php:35 msgid "" "Channel removals are not allowed within 48 hours of changing the account " "password." msgstr "Innerhalb von 48 Stunden nach einer Änderung des Passworts können keine Kanäle gelöscht werden." -#: ../../Zotlabs/Module/Removeme.php:58 +#: ../../Zotlabs/Module/Removeme.php:60 msgid "Remove This Channel" msgstr "Diesen Kanal löschen" -#: ../../Zotlabs/Module/Removeme.php:59 +#: ../../Zotlabs/Module/Removeme.php:61 msgid "This channel will be completely removed from the network. " msgstr "Dieser Kanal wird vollständig aus dem Netzwerk gelöscht." -#: ../../Zotlabs/Module/Removeme.php:61 +#: ../../Zotlabs/Module/Removeme.php:63 msgid "Remove this channel and all its clones from the network" msgstr "Lösche diesen Kanal und all seine Klone aus dem Netzwerk" -#: ../../Zotlabs/Module/Removeme.php:61 +#: ../../Zotlabs/Module/Removeme.php:63 msgid "" "By default only the instance of the channel located on this hub will be " "removed from the network" msgstr "Standardmäßig wird der Kanal nur auf diesem Server gelöscht, seine Klone verbleiben im Netzwerk" -#: ../../Zotlabs/Module/Removeme.php:62 ../../Zotlabs/Module/Settings.php:1124 +#: ../../Zotlabs/Module/Removeme.php:64 ../../Zotlabs/Module/Settings.php:1219 msgid "Remove Channel" msgstr "Kanal löschen" -#: ../../Zotlabs/Module/Rmagic.php:44 +#: ../../Zotlabs/Module/Uexport.php:55 ../../Zotlabs/Module/Uexport.php:56 +msgid "Export Channel" +msgstr "Kanal exportieren" + +#: ../../Zotlabs/Module/Uexport.php:57 msgid "" -"We encountered a problem while logging in with the OpenID you provided. " -"Please check the correct spelling of the ID." -msgstr "Wir haben ein Problem mit der OpenID festgestellt, mit der Du Dich anmelden wolltest. Bitte überprüfe sie noch einmal." +"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 "Exportiert die grundlegenden Kanal-Informationen in eine kleine Datei. Diese stellt eine Sicherung Deiner Verbindungen, Berechtigungen, Profile und Basisdaten bereit, die für den Import auf einem anderen Hub verwendet werden kann, aber nicht die Beiträge Deines Kanals enthält." -#: ../../Zotlabs/Module/Rmagic.php:44 -msgid "The error message was:" -msgstr "Die Fehlermeldung war:" +#: ../../Zotlabs/Module/Uexport.php:58 +msgid "Export Content" +msgstr "Kanal und Inhalte exportieren" -#: ../../Zotlabs/Module/Rmagic.php:48 -msgid "Authentication failed." -msgstr "Authentifizierung fehlgeschlagen." +#: ../../Zotlabs/Module/Uexport.php:59 +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 "Exportiert Deine Kanal-Informationen sowie alle zugehörigen Inhalte in eine JSON-Sicherungsdatei. Die sichert alle Verbindungen, Berechtigungen, Profildaten und Deine Beiträge aus mehreren Monaten. Diese Datei kann SEHR groß werden! Bitte habe ein wenig Geduld – es kann mehrere Minuten dauern, bis der Download startet." -#: ../../Zotlabs/Module/Rmagic.php:88 -msgid "Remote Authentication" -msgstr "Entfernte Authentifizierung" +#: ../../Zotlabs/Module/Uexport.php:60 +msgid "Export your posts from a given year." +msgstr "Exportiert die Beiträge des angegebenen Jahres." -#: ../../Zotlabs/Module/Rmagic.php:89 -msgid "Enter your channel address (e.g. channel@example.com)" -msgstr "Deine Kanal-Adresse (z. B. channel@example.com)" +#: ../../Zotlabs/Module/Uexport.php:62 +msgid "" +"You may also export your posts and conversations for a particular year or " +"month. Adjust the date in your browser location bar to select other dates. " +"If the export fails (possibly due to memory exhaustion on your server hub), " +"please try again selecting a more limited date range." +msgstr "Du kannst auch die Beiträge und Konversationen eines bestimmten Jahres oder Monats exportieren. Ändere das Datum in der Adresszeile Deines Browsers, um andere Zeiträume zu wählen. Falls der Export fehlschlägt (vermutlich, weil auf diesem Hub nicht genügend Speicher zur Verfügung steht), versuche es noch einmal mit einer kleineren Zeitspanne." -#: ../../Zotlabs/Module/Rmagic.php:90 -msgid "Authenticate" -msgstr "Authentifizieren" +#: ../../Zotlabs/Module/Uexport.php:63 +#, php-format +msgid "" +"To select all posts for a given year, such as this year, visit %2$s" +msgstr "Um alle Beiträge eines bestimmten Jahres, zum Beispiel dieses Jahres, auszuwählen, klicke %2$s." + +#: ../../Zotlabs/Module/Uexport.php:64 +#, php-format +msgid "" +"To select all posts for a given month, such as January of this year, visit " +"%2$s" +msgstr "Um alle Beiträge eines bestimmten Monats auszuwählen, zum Beispiel vom Januar diesen Jahres, klicke %2$s." + +#: ../../Zotlabs/Module/Uexport.php:65 +#, php-format +msgid "" +"These content files may be imported or restored by visiting %2$s on any site containing your channel. For best results" +" please import or restore these in date order (oldest first)." +msgstr "Diese Inhalts-Sicherungen können wiederhergestellt werden, indem Du %2$s auf jeglichem Hub besuchst, der diesen Kanal enthält. Das funktioniert am besten, wenn Du dabei die zeitliche Reihenfolge einhältst, also die Sicherungen für den ältesten Zeitraum zuerst importierst." #: ../../Zotlabs/Module/Search.php:216 #, php-format @@ -4894,609 +5162,652 @@ msgstr "Suchergebnisse für: %s" msgid "No service class restrictions found." msgstr "Keine Dienstklassenbeschränkungen gefunden." -#: ../../Zotlabs/Module/Settings.php:69 +#: ../../Zotlabs/Module/Settings.php:64 msgid "Name is required" msgstr "Name ist erforderlich" -#: ../../Zotlabs/Module/Settings.php:73 +#: ../../Zotlabs/Module/Settings.php:68 msgid "Key and Secret are required" msgstr "Schlüssel und Geheimnis werden benötigt" -#: ../../Zotlabs/Module/Settings.php:225 +#: ../../Zotlabs/Module/Settings.php:138 +#, php-format +msgid "This channel is limited to %d tokens" +msgstr "Dieser Kanal ist auf %d Token begrenzt" + +#: ../../Zotlabs/Module/Settings.php:144 +msgid "Name and Password are required." +msgstr "Name und Passwort sind erforderlich." + +#: ../../Zotlabs/Module/Settings.php:168 +msgid "Token saved." +msgstr "Token gespeichert." + +#: ../../Zotlabs/Module/Settings.php:274 msgid "Not valid email." msgstr "Keine gültige E-Mail Adresse." -#: ../../Zotlabs/Module/Settings.php:228 +#: ../../Zotlabs/Module/Settings.php:277 msgid "Protected email address. Cannot change to that email." msgstr "Geschützte E-Mail Adresse. Diese kann nicht verändert werden." -#: ../../Zotlabs/Module/Settings.php:237 +#: ../../Zotlabs/Module/Settings.php:286 msgid "System failure storing new email. Please try again." msgstr "Systemfehler während des Speicherns der neuen Mail. Bitte versuche es noch einmal." -#: ../../Zotlabs/Module/Settings.php:254 +#: ../../Zotlabs/Module/Settings.php:303 msgid "Password verification failed." msgstr "Passwortüberprüfung fehlgeschlagen." -#: ../../Zotlabs/Module/Settings.php:261 +#: ../../Zotlabs/Module/Settings.php:310 msgid "Passwords do not match. Password unchanged." msgstr "Kennwörter stimmen nicht überein. Kennwort nicht verändert." -#: ../../Zotlabs/Module/Settings.php:265 +#: ../../Zotlabs/Module/Settings.php:314 msgid "Empty passwords are not allowed. Password unchanged." msgstr "Leere Kennwörter sind nicht erlaubt. Kennwort nicht verändert." -#: ../../Zotlabs/Module/Settings.php:279 +#: ../../Zotlabs/Module/Settings.php:328 msgid "Password changed." msgstr "Kennwort geändert." -#: ../../Zotlabs/Module/Settings.php:281 +#: ../../Zotlabs/Module/Settings.php:330 msgid "Password update failed. Please try again." msgstr "Kennwortänderung fehlgeschlagen. Bitte versuche es noch einmal." -#: ../../Zotlabs/Module/Settings.php:525 +#: ../../Zotlabs/Module/Settings.php:579 msgid "Settings updated." msgstr "Einstellungen aktualisiert." -#: ../../Zotlabs/Module/Settings.php:589 ../../Zotlabs/Module/Settings.php:615 -#: ../../Zotlabs/Module/Settings.php:651 +#: ../../Zotlabs/Module/Settings.php:643 ../../Zotlabs/Module/Settings.php:669 +#: ../../Zotlabs/Module/Settings.php:705 msgid "Add application" msgstr "Anwendung hinzufügen" -#: ../../Zotlabs/Module/Settings.php:592 +#: ../../Zotlabs/Module/Settings.php:646 msgid "Name of application" msgstr "Name der Anwendung" -#: ../../Zotlabs/Module/Settings.php:593 ../../Zotlabs/Module/Settings.php:619 +#: ../../Zotlabs/Module/Settings.php:647 ../../Zotlabs/Module/Settings.php:673 msgid "Consumer Key" msgstr "Consumer Key" -#: ../../Zotlabs/Module/Settings.php:593 ../../Zotlabs/Module/Settings.php:594 +#: ../../Zotlabs/Module/Settings.php:647 ../../Zotlabs/Module/Settings.php:648 msgid "Automatically generated - change if desired. Max length 20" msgstr "Automatisch erzeugt – ändern, falls erwünscht. Maximale Länge 20" -#: ../../Zotlabs/Module/Settings.php:594 ../../Zotlabs/Module/Settings.php:620 +#: ../../Zotlabs/Module/Settings.php:648 ../../Zotlabs/Module/Settings.php:674 msgid "Consumer Secret" msgstr "Consumer Secret" -#: ../../Zotlabs/Module/Settings.php:595 ../../Zotlabs/Module/Settings.php:621 +#: ../../Zotlabs/Module/Settings.php:649 ../../Zotlabs/Module/Settings.php:675 msgid "Redirect" msgstr "Umleitung" -#: ../../Zotlabs/Module/Settings.php:595 +#: ../../Zotlabs/Module/Settings.php:649 msgid "" "Redirect URI - leave blank unless your application specifically requires " "this" msgstr "Umleitungs-URl – lasse das leer, solange Deine Anwendung es nicht explizit erfordert" -#: ../../Zotlabs/Module/Settings.php:596 ../../Zotlabs/Module/Settings.php:622 +#: ../../Zotlabs/Module/Settings.php:650 ../../Zotlabs/Module/Settings.php:676 msgid "Icon url" msgstr "Symbol-URL" -#: ../../Zotlabs/Module/Settings.php:596 ../../Zotlabs/Module/Sources.php:112 +#: ../../Zotlabs/Module/Settings.php:650 ../../Zotlabs/Module/Sources.php:112 #: ../../Zotlabs/Module/Sources.php:147 msgid "Optional" msgstr "Optional" -#: ../../Zotlabs/Module/Settings.php:607 +#: ../../Zotlabs/Module/Settings.php:661 msgid "Application not found." msgstr "Die Anwendung wurde nicht gefunden." -#: ../../Zotlabs/Module/Settings.php:650 +#: ../../Zotlabs/Module/Settings.php:704 msgid "Connected Apps" msgstr "Verbundene Apps" -#: ../../Zotlabs/Module/Settings.php:654 +#: ../../Zotlabs/Module/Settings.php:708 msgid "Client key starts with" msgstr "Client Key beginnt mit" -#: ../../Zotlabs/Module/Settings.php:655 +#: ../../Zotlabs/Module/Settings.php:709 msgid "No name" msgstr "Kein Name" -#: ../../Zotlabs/Module/Settings.php:656 +#: ../../Zotlabs/Module/Settings.php:710 msgid "Remove authorization" msgstr "Authorisierung aufheben" -#: ../../Zotlabs/Module/Settings.php:669 +#: ../../Zotlabs/Module/Settings.php:723 msgid "No feature settings configured" msgstr "Keine Funktions-Einstellungen konfiguriert" -#: ../../Zotlabs/Module/Settings.php:676 +#: ../../Zotlabs/Module/Settings.php:730 msgid "Feature/Addon Settings" msgstr "Funktions-/Addon-Einstellungen" -#: ../../Zotlabs/Module/Settings.php:699 +#: ../../Zotlabs/Module/Settings.php:753 msgid "Account Settings" msgstr "Konto-Einstellungen" -#: ../../Zotlabs/Module/Settings.php:700 +#: ../../Zotlabs/Module/Settings.php:754 msgid "Current Password" msgstr "Aktuelles Passwort" -#: ../../Zotlabs/Module/Settings.php:701 +#: ../../Zotlabs/Module/Settings.php:755 msgid "Enter New Password" msgstr "Gib ein neues Passwort ein" -#: ../../Zotlabs/Module/Settings.php:702 +#: ../../Zotlabs/Module/Settings.php:756 msgid "Confirm New Password" msgstr "Bestätige das neue Passwort" -#: ../../Zotlabs/Module/Settings.php:702 +#: ../../Zotlabs/Module/Settings.php:756 msgid "Leave password fields blank unless changing" msgstr "Lasse die Passwort-Felder leer, außer Du möchtest das Passwort ändern" -#: ../../Zotlabs/Module/Settings.php:704 -#: ../../Zotlabs/Module/Settings.php:1041 +#: ../../Zotlabs/Module/Settings.php:758 +#: ../../Zotlabs/Module/Settings.php:1136 msgid "Email Address:" msgstr "Email Adresse:" -#: ../../Zotlabs/Module/Settings.php:706 +#: ../../Zotlabs/Module/Settings.php:760 msgid "Remove this account including all its channels" msgstr "Dieses Konto inklusive all seiner Kanäle löschen" -#: ../../Zotlabs/Module/Settings.php:729 +#: ../../Zotlabs/Module/Settings.php:789 +msgid "" +"Use this form to create temporary access identifiers to share things with " +"non-members. These identities may be used in Access Control Lists and " +"visitors may login using these credentials to access the private content." +msgstr "Mit diesem Formular kannst Du temporäre Zugangs-IDs anlegen, um Inhalte mit Nicht-Mitgliedern zu teilen. Die IDs können in Berechtigungslisten (ACLs) verwendet werden, und Besucher können sich damit einloggen, um auf private Inhalte zuzugreifen." + +#: ../../Zotlabs/Module/Settings.php:791 +msgid "" +"You may also provide dropbox style access links to friends and " +"associates by adding the Login Password to any specific site URL as shown. " +"Examples:" +msgstr "Du kannst auch Dropbox-ähnliche Zugriffslinks an Andere weitergeben, indem du das Login-Passwort an eine entsprechende URL anhängst wie nachfolgend gezeigt. Beispiele:" + +#: ../../Zotlabs/Module/Settings.php:796 ../../include/widgets.php:614 +msgid "Guest Access Tokens" +msgstr "Gastzugangstoken" + +#: ../../Zotlabs/Module/Settings.php:803 +msgid "Login Name" +msgstr "Anmeldename" + +#: ../../Zotlabs/Module/Settings.php:804 +msgid "Login Password" +msgstr "Anmeldepasswort" + +#: ../../Zotlabs/Module/Settings.php:805 +msgid "Expires (yyyy-mm-dd)" +msgstr "Läuft ab (jjjj-mm-tt)" + +#: ../../Zotlabs/Module/Settings.php:830 msgid "Additional Features" msgstr "Zusätzliche Funktionen" -#: ../../Zotlabs/Module/Settings.php:753 +#: ../../Zotlabs/Module/Settings.php:854 msgid "Connector Settings" msgstr "Connector-Einstellungen" -#: ../../Zotlabs/Module/Settings.php:792 +#: ../../Zotlabs/Module/Settings.php:893 msgid "No special theme for mobile devices" msgstr "Keine spezielle Theme für mobile Geräte" -#: ../../Zotlabs/Module/Settings.php:795 +#: ../../Zotlabs/Module/Settings.php:896 #, php-format msgid "%s - (Experimental)" msgstr "%s – (experimentell)" -#: ../../Zotlabs/Module/Settings.php:837 +#: ../../Zotlabs/Module/Settings.php:938 msgid "Display Settings" msgstr "Anzeige-Einstellungen" -#: ../../Zotlabs/Module/Settings.php:838 +#: ../../Zotlabs/Module/Settings.php:939 msgid "Theme Settings" msgstr "Theme-Einstellungen" -#: ../../Zotlabs/Module/Settings.php:839 +#: ../../Zotlabs/Module/Settings.php:940 msgid "Custom Theme Settings" msgstr "Benutzerdefinierte Theme-Einstellungen" -#: ../../Zotlabs/Module/Settings.php:840 +#: ../../Zotlabs/Module/Settings.php:941 msgid "Content Settings" msgstr "Inhaltseinstellungen" -#: ../../Zotlabs/Module/Settings.php:846 +#: ../../Zotlabs/Module/Settings.php:947 msgid "Display Theme:" msgstr "Anzeige-Theme:" -#: ../../Zotlabs/Module/Settings.php:847 +#: ../../Zotlabs/Module/Settings.php:948 msgid "Mobile Theme:" msgstr "Mobile Theme:" -#: ../../Zotlabs/Module/Settings.php:848 +#: ../../Zotlabs/Module/Settings.php:949 msgid "Preload images before rendering the page" msgstr "Bilder im voraus laden, bevor die Seite angezeigt wird" -#: ../../Zotlabs/Module/Settings.php:848 +#: ../../Zotlabs/Module/Settings.php:949 msgid "" "The subjective page load time will be longer but the page will be ready when" " displayed" msgstr "Die empfundene Ladezeit wird sich erhöhen, aber dafür ist das Layout stabil, sobald eine Seite angezeigt wird" -#: ../../Zotlabs/Module/Settings.php:849 +#: ../../Zotlabs/Module/Settings.php:950 msgid "Enable user zoom on mobile devices" msgstr "Zoom auf Mobilgeräten aktivieren" -#: ../../Zotlabs/Module/Settings.php:850 +#: ../../Zotlabs/Module/Settings.php:951 msgid "Update browser every xx seconds" msgstr "Browser alle xx Sekunden aktualisieren" -#: ../../Zotlabs/Module/Settings.php:850 +#: ../../Zotlabs/Module/Settings.php:951 msgid "Minimum of 10 seconds, no maximum" msgstr "Minimum 10 Sekunden, kein Maximum" -#: ../../Zotlabs/Module/Settings.php:851 +#: ../../Zotlabs/Module/Settings.php:952 msgid "Maximum number of conversations to load at any time:" msgstr "Maximale Anzahl von Unterhaltungen, die auf einmal geladen werden sollen:" -#: ../../Zotlabs/Module/Settings.php:851 +#: ../../Zotlabs/Module/Settings.php:952 msgid "Maximum of 100 items" msgstr "Maximum: 100 Beiträge" -#: ../../Zotlabs/Module/Settings.php:852 +#: ../../Zotlabs/Module/Settings.php:953 msgid "Show emoticons (smilies) as images" msgstr "Emoticons (Smilies) als Bilder anzeigen" -#: ../../Zotlabs/Module/Settings.php:853 +#: ../../Zotlabs/Module/Settings.php:954 msgid "Link post titles to source" msgstr "Beitragstitel zum Originalbeitrag verlinken" -#: ../../Zotlabs/Module/Settings.php:854 +#: ../../Zotlabs/Module/Settings.php:955 msgid "System Page Layout Editor - (advanced)" msgstr "System-Seitenlayout-Editor (für Experten)" -#: ../../Zotlabs/Module/Settings.php:857 +#: ../../Zotlabs/Module/Settings.php:958 msgid "Use blog/list mode on channel page" msgstr "Blog-/Listenmodus auf der Kanalseite verwenden" -#: ../../Zotlabs/Module/Settings.php:857 ../../Zotlabs/Module/Settings.php:858 +#: ../../Zotlabs/Module/Settings.php:958 ../../Zotlabs/Module/Settings.php:959 msgid "(comments displayed separately)" msgstr "(Kommentare werden separat angezeigt)" -#: ../../Zotlabs/Module/Settings.php:858 +#: ../../Zotlabs/Module/Settings.php:959 msgid "Use blog/list mode on grid page" msgstr "Blog-/Listenmodus auf der Netzwerkseite verwenden" -#: ../../Zotlabs/Module/Settings.php:859 +#: ../../Zotlabs/Module/Settings.php:960 msgid "Channel page max height of content (in pixels)" msgstr "Maximale Höhe von Beitragsblöcken auf der Kanalseite (in Pixeln)" -#: ../../Zotlabs/Module/Settings.php:859 ../../Zotlabs/Module/Settings.php:860 +#: ../../Zotlabs/Module/Settings.php:960 ../../Zotlabs/Module/Settings.php:961 msgid "click to expand content exceeding this height" msgstr "Blöcke, deren Inhalt diese Höhe überschreitet, können per Klick vergrößert werden." -#: ../../Zotlabs/Module/Settings.php:860 +#: ../../Zotlabs/Module/Settings.php:961 msgid "Grid page max height of content (in pixels)" msgstr "Maximale Höhe (in Pixel) des Inhalts der Netzwerkseite" -#: ../../Zotlabs/Module/Settings.php:894 +#: ../../Zotlabs/Module/Settings.php:990 msgid "Nobody except yourself" msgstr "Niemand außer Dir selbst" -#: ../../Zotlabs/Module/Settings.php:895 +#: ../../Zotlabs/Module/Settings.php:991 msgid "Only those you specifically allow" msgstr "Nur die, denen Du es explizit erlaubst" -#: ../../Zotlabs/Module/Settings.php:896 +#: ../../Zotlabs/Module/Settings.php:992 msgid "Approved connections" msgstr "Angenommene Verbindungen" -#: ../../Zotlabs/Module/Settings.php:897 +#: ../../Zotlabs/Module/Settings.php:993 msgid "Any connections" msgstr "Beliebige Verbindungen" -#: ../../Zotlabs/Module/Settings.php:898 +#: ../../Zotlabs/Module/Settings.php:994 msgid "Anybody on this website" msgstr "Jeder auf dieser Website" -#: ../../Zotlabs/Module/Settings.php:899 +#: ../../Zotlabs/Module/Settings.php:995 msgid "Anybody in this network" msgstr "Alle $Projectname-Mitglieder" -#: ../../Zotlabs/Module/Settings.php:900 +#: ../../Zotlabs/Module/Settings.php:996 msgid "Anybody authenticated" msgstr "Jeder authentifizierte" -#: ../../Zotlabs/Module/Settings.php:901 +#: ../../Zotlabs/Module/Settings.php:997 msgid "Anybody on the internet" msgstr "Jeder im Internet" -#: ../../Zotlabs/Module/Settings.php:976 +#: ../../Zotlabs/Module/Settings.php:1071 msgid "Publish your default profile in the network directory" msgstr "Standard-Profil im Netzwerk-Verzeichnis veröffentlichen" -#: ../../Zotlabs/Module/Settings.php:981 +#: ../../Zotlabs/Module/Settings.php:1076 msgid "Allow us to suggest you as a potential friend to new members?" msgstr "Dürfen wir Dich neuen Mitgliedern als potentiellen Kontakt vorschlagen?" -#: ../../Zotlabs/Module/Settings.php:990 +#: ../../Zotlabs/Module/Settings.php:1085 msgid "Your channel address is" msgstr "Deine Kanal-Adresse lautet" -#: ../../Zotlabs/Module/Settings.php:1032 +#: ../../Zotlabs/Module/Settings.php:1127 msgid "Channel Settings" msgstr "Kanal-Einstellungen" -#: ../../Zotlabs/Module/Settings.php:1039 +#: ../../Zotlabs/Module/Settings.php:1134 msgid "Basic Settings" msgstr "Grundeinstellungen" -#: ../../Zotlabs/Module/Settings.php:1040 ../../include/channel.php:1140 +#: ../../Zotlabs/Module/Settings.php:1135 ../../include/channel.php:1180 msgid "Full Name:" msgstr "Voller Name:" -#: ../../Zotlabs/Module/Settings.php:1042 +#: ../../Zotlabs/Module/Settings.php:1137 msgid "Your Timezone:" msgstr "Ihre Zeitzone:" -#: ../../Zotlabs/Module/Settings.php:1043 +#: ../../Zotlabs/Module/Settings.php:1138 msgid "Default Post Location:" msgstr "Standardstandort:" -#: ../../Zotlabs/Module/Settings.php:1043 +#: ../../Zotlabs/Module/Settings.php:1138 msgid "Geographical location to display on your posts" msgstr "Geografischer Ort, der bei Deinen Beiträgen angezeigt werden soll" -#: ../../Zotlabs/Module/Settings.php:1044 +#: ../../Zotlabs/Module/Settings.php:1139 msgid "Use Browser Location:" msgstr "Standort des Browsers verwenden:" -#: ../../Zotlabs/Module/Settings.php:1046 +#: ../../Zotlabs/Module/Settings.php:1141 msgid "Adult Content" msgstr "Nicht jugendfreie Inhalte" -#: ../../Zotlabs/Module/Settings.php:1046 +#: ../../Zotlabs/Module/Settings.php:1141 msgid "" "This channel frequently or regularly publishes adult content. (Please tag " "any adult material and/or nudity with #NSFW)" msgstr "Dieser Kanal veröffentlicht regelmäßig Inhalte, die für Minderjährige ungeeignet sind. (Bitte markiere solche Inhalte mit dem Schlagwort #NSFW)" -#: ../../Zotlabs/Module/Settings.php:1048 +#: ../../Zotlabs/Module/Settings.php:1143 msgid "Security and Privacy Settings" msgstr "Sicherheits- und Datenschutz-Einstellungen" -#: ../../Zotlabs/Module/Settings.php:1051 +#: ../../Zotlabs/Module/Settings.php:1146 msgid "Your permissions are already configured. Click to view/adjust" msgstr "Deine Zugriffsrechte sind schon konfiguriert. Klicke hier, um sie zu betrachten oder zu ändern" -#: ../../Zotlabs/Module/Settings.php:1053 +#: ../../Zotlabs/Module/Settings.php:1148 msgid "Hide my online presence" msgstr "Meine Online-Präsenz verbergen" -#: ../../Zotlabs/Module/Settings.php:1053 +#: ../../Zotlabs/Module/Settings.php:1148 msgid "Prevents displaying in your profile that you are online" msgstr "Verhindert die Anzeige Deines Online-Status in deinem Profil" -#: ../../Zotlabs/Module/Settings.php:1055 +#: ../../Zotlabs/Module/Settings.php:1150 msgid "Simple Privacy Settings:" msgstr "Einfache Privatsphäre-Einstellungen" -#: ../../Zotlabs/Module/Settings.php:1056 +#: ../../Zotlabs/Module/Settings.php:1151 msgid "" "Very Public - extremely permissive (should be used with caution)" msgstr "Komplett offen – extrem ungeschützt (mit großer Vorsicht verwenden!)" -#: ../../Zotlabs/Module/Settings.php:1057 +#: ../../Zotlabs/Module/Settings.php:1152 msgid "" "Typical - default public, privacy when desired (similar to social " "network permissions but with improved privacy)" msgstr "Typisch – Standard öffentlich, Privatsphäre, wo sie erwünscht ist (ähnlich den Einstellungen in sozialen Netzwerken, aber mit besser geschützter Privatsphäre)" -#: ../../Zotlabs/Module/Settings.php:1058 +#: ../../Zotlabs/Module/Settings.php:1153 msgid "Private - default private, never open or public" msgstr "Privat – Standard privat, nie offen oder öffentlich" -#: ../../Zotlabs/Module/Settings.php:1059 +#: ../../Zotlabs/Module/Settings.php:1154 msgid "Blocked - default blocked to/from everybody" msgstr "Blockiert – Alle standardmäßig blockiert" -#: ../../Zotlabs/Module/Settings.php:1061 +#: ../../Zotlabs/Module/Settings.php:1156 msgid "Allow others to tag your posts" msgstr "Erlaube anderen, Deine Beiträge zu verschlagworten" -#: ../../Zotlabs/Module/Settings.php:1061 +#: ../../Zotlabs/Module/Settings.php:1156 msgid "" "Often used by the community to retro-actively flag inappropriate content" msgstr "Wird oft von der Community genutzt um rückwirkend anstößigen Inhalt zu markieren" -#: ../../Zotlabs/Module/Settings.php:1063 +#: ../../Zotlabs/Module/Settings.php:1158 msgid "Advanced Privacy Settings" msgstr "Fortgeschrittene Privatsphäre-Einstellungen" -#: ../../Zotlabs/Module/Settings.php:1065 +#: ../../Zotlabs/Module/Settings.php:1160 msgid "Expire other channel content after this many days" msgstr "Den Inhalt anderer Kanäle nach dieser Anzahl Tage verfallen lassen" -#: ../../Zotlabs/Module/Settings.php:1065 +#: ../../Zotlabs/Module/Settings.php:1160 msgid "0 or blank to use the website limit." msgstr "0 oder leer lassen, um den voreingestellten Wert der Webseite zu verwenden." -#: ../../Zotlabs/Module/Settings.php:1065 +#: ../../Zotlabs/Module/Settings.php:1160 #, php-format msgid "This website expires after %d days." msgstr "Diese Webseite läuft nach %d Tagen ab." -#: ../../Zotlabs/Module/Settings.php:1065 +#: ../../Zotlabs/Module/Settings.php:1160 msgid "This website does not expire imported content." msgstr "Diese Webseite lässt importierte Inhalte nicht verfallen." -#: ../../Zotlabs/Module/Settings.php:1065 +#: ../../Zotlabs/Module/Settings.php:1160 msgid "The website limit takes precedence if lower than your limit." msgstr "Das Verfallslimit der Webseite hat Vorrang, wenn es niedriger als Deines hier ist." -#: ../../Zotlabs/Module/Settings.php:1066 +#: ../../Zotlabs/Module/Settings.php:1161 msgid "Maximum Friend Requests/Day:" msgstr "Maximale Kontaktanfragen pro Tag:" -#: ../../Zotlabs/Module/Settings.php:1066 +#: ../../Zotlabs/Module/Settings.php:1161 msgid "May reduce spam activity" msgstr "Kann die Spam-Aktivität verringern" -#: ../../Zotlabs/Module/Settings.php:1067 +#: ../../Zotlabs/Module/Settings.php:1162 msgid "Default Post and Publish Permissions" msgstr "Standard-Berechtigungen für Beiträge und andere Inhalte" -#: ../../Zotlabs/Module/Settings.php:1069 +#: ../../Zotlabs/Module/Settings.php:1164 msgid "Use my default audience setting for the type of object published" msgstr "Verwende Deine eingestellte Standard-Zielgruppe des jeweiligen Inhaltstyps" -#: ../../Zotlabs/Module/Settings.php:1072 +#: ../../Zotlabs/Module/Settings.php:1167 msgid "Channel permissions category:" msgstr "Zugriffsrechte-Kategorie des Kanals:" -#: ../../Zotlabs/Module/Settings.php:1078 +#: ../../Zotlabs/Module/Settings.php:1173 msgid "Maximum private messages per day from unknown people:" msgstr "Maximale Anzahl privater Nachrichten pro Tag von unbekannten Leuten:" -#: ../../Zotlabs/Module/Settings.php:1078 +#: ../../Zotlabs/Module/Settings.php:1173 msgid "Useful to reduce spamming" msgstr "Nützlich, um Spam zu verringern" -#: ../../Zotlabs/Module/Settings.php:1081 +#: ../../Zotlabs/Module/Settings.php:1176 msgid "Notification Settings" msgstr "Benachrichtigungs-Einstellungen" -#: ../../Zotlabs/Module/Settings.php:1082 +#: ../../Zotlabs/Module/Settings.php:1177 msgid "By default post a status message when:" msgstr "Sende standardmäßig Status-Nachrichten, wenn:" -#: ../../Zotlabs/Module/Settings.php:1083 +#: ../../Zotlabs/Module/Settings.php:1178 msgid "accepting a friend request" msgstr "Du eine Verbindungsanfrage annimmst" -#: ../../Zotlabs/Module/Settings.php:1084 +#: ../../Zotlabs/Module/Settings.php:1179 msgid "joining a forum/community" msgstr "Du einem Forum beitrittst" -#: ../../Zotlabs/Module/Settings.php:1085 +#: ../../Zotlabs/Module/Settings.php:1180 msgid "making an interesting profile change" msgstr "Du eine interessante Änderung an Deinem Profil vornimmst" -#: ../../Zotlabs/Module/Settings.php:1086 +#: ../../Zotlabs/Module/Settings.php:1181 msgid "Send a notification email when:" msgstr "Eine E-Mail-Benachrichtigung senden, wenn:" -#: ../../Zotlabs/Module/Settings.php:1087 +#: ../../Zotlabs/Module/Settings.php:1182 msgid "You receive a connection request" msgstr "Du eine Verbindungsanfrage erhältst" -#: ../../Zotlabs/Module/Settings.php:1088 +#: ../../Zotlabs/Module/Settings.php:1183 msgid "Your connections are confirmed" msgstr "Eine Verbindung bestätigt wurde" -#: ../../Zotlabs/Module/Settings.php:1089 +#: ../../Zotlabs/Module/Settings.php:1184 msgid "Someone writes on your profile wall" msgstr "Jemand auf Deine Pinnwand schreibt" -#: ../../Zotlabs/Module/Settings.php:1090 +#: ../../Zotlabs/Module/Settings.php:1185 msgid "Someone writes a followup comment" msgstr "Jemand einen Beitrag kommentiert" -#: ../../Zotlabs/Module/Settings.php:1091 +#: ../../Zotlabs/Module/Settings.php:1186 msgid "You receive a private message" msgstr "Du eine private Nachricht erhältst" -#: ../../Zotlabs/Module/Settings.php:1092 +#: ../../Zotlabs/Module/Settings.php:1187 msgid "You receive a friend suggestion" msgstr "Du einen Kontaktvorschlag erhältst" -#: ../../Zotlabs/Module/Settings.php:1093 +#: ../../Zotlabs/Module/Settings.php:1188 msgid "You are tagged in a post" msgstr "Du in einem Beitrag erwähnt wurdest" -#: ../../Zotlabs/Module/Settings.php:1094 +#: ../../Zotlabs/Module/Settings.php:1189 msgid "You are poked/prodded/etc. in a post" msgstr "Du in einem Beitrag angestupst/geknufft/o.ä. wurdest" -#: ../../Zotlabs/Module/Settings.php:1097 +#: ../../Zotlabs/Module/Settings.php:1192 msgid "Show visual notifications including:" msgstr "Visuelle Benachrichtigungen anzeigen für:" -#: ../../Zotlabs/Module/Settings.php:1099 +#: ../../Zotlabs/Module/Settings.php:1194 msgid "Unseen grid activity" msgstr "Ungesehene Netzwerk-Aktivität" -#: ../../Zotlabs/Module/Settings.php:1100 +#: ../../Zotlabs/Module/Settings.php:1195 msgid "Unseen channel activity" msgstr "Ungesehene Kanal-Aktivität" -#: ../../Zotlabs/Module/Settings.php:1101 +#: ../../Zotlabs/Module/Settings.php:1196 msgid "Unseen private messages" msgstr "Ungelesene persönliche Nachrichten" -#: ../../Zotlabs/Module/Settings.php:1101 -#: ../../Zotlabs/Module/Settings.php:1106 -#: ../../Zotlabs/Module/Settings.php:1107 -#: ../../Zotlabs/Module/Settings.php:1108 +#: ../../Zotlabs/Module/Settings.php:1196 +#: ../../Zotlabs/Module/Settings.php:1201 +#: ../../Zotlabs/Module/Settings.php:1202 +#: ../../Zotlabs/Module/Settings.php:1203 msgid "Recommended" msgstr "Empfohlen" -#: ../../Zotlabs/Module/Settings.php:1102 +#: ../../Zotlabs/Module/Settings.php:1197 msgid "Upcoming events" msgstr "Baldige Termine" -#: ../../Zotlabs/Module/Settings.php:1103 +#: ../../Zotlabs/Module/Settings.php:1198 msgid "Events today" msgstr "Heutige Termine" -#: ../../Zotlabs/Module/Settings.php:1104 +#: ../../Zotlabs/Module/Settings.php:1199 msgid "Upcoming birthdays" msgstr "Baldige Geburtstage" -#: ../../Zotlabs/Module/Settings.php:1104 +#: ../../Zotlabs/Module/Settings.php:1199 msgid "Not available in all themes" msgstr "Nicht in allen Themes verfügbar" -#: ../../Zotlabs/Module/Settings.php:1105 +#: ../../Zotlabs/Module/Settings.php:1200 msgid "System (personal) notifications" msgstr "System – (persönliche) Benachrichtigungen" -#: ../../Zotlabs/Module/Settings.php:1106 +#: ../../Zotlabs/Module/Settings.php:1201 msgid "System info messages" msgstr "System – Info-Nachrichten" -#: ../../Zotlabs/Module/Settings.php:1107 +#: ../../Zotlabs/Module/Settings.php:1202 msgid "System critical alerts" msgstr "System – kritische Warnungen" -#: ../../Zotlabs/Module/Settings.php:1108 +#: ../../Zotlabs/Module/Settings.php:1203 msgid "New connections" msgstr "Neue Verbindungen" -#: ../../Zotlabs/Module/Settings.php:1109 +#: ../../Zotlabs/Module/Settings.php:1204 msgid "System Registrations" msgstr "System – Registrierungen" -#: ../../Zotlabs/Module/Settings.php:1110 +#: ../../Zotlabs/Module/Settings.php:1205 msgid "" "Also show new wall posts, private messages and connections under Notices" msgstr "Neue Pinnwand-Nachrichten, private Nachrichten und Verbindungen unter Benachrichtigungen anzeigen" -#: ../../Zotlabs/Module/Settings.php:1112 +#: ../../Zotlabs/Module/Settings.php:1207 msgid "Notify me of events this many days in advance" msgstr "Benachrichtige mich zu Terminen so viele Tage im Voraus" -#: ../../Zotlabs/Module/Settings.php:1112 +#: ../../Zotlabs/Module/Settings.php:1207 msgid "Must be greater than 0" msgstr "Muss größer als 0 sein" -#: ../../Zotlabs/Module/Settings.php:1114 +#: ../../Zotlabs/Module/Settings.php:1209 msgid "Advanced Account/Page Type Settings" msgstr "Erweiterte Account- und Seitenart-Einstellungen" -#: ../../Zotlabs/Module/Settings.php:1115 +#: ../../Zotlabs/Module/Settings.php:1210 msgid "Change the behaviour of this account for special situations" msgstr "Ändere das Verhalten dieses Accounts unter speziellen Umständen" -#: ../../Zotlabs/Module/Settings.php:1118 +#: ../../Zotlabs/Module/Settings.php:1213 msgid "" "Please enable expert mode (in Settings > " "Additional features) to adjust!" msgstr "Aktiviere den Expertenmodus (unter Settings > Zusätzliche Funktionen), um hier Einstellungen vorzunehmen!" -#: ../../Zotlabs/Module/Settings.php:1119 +#: ../../Zotlabs/Module/Settings.php:1214 msgid "Miscellaneous Settings" msgstr "Sonstige Einstellungen" -#: ../../Zotlabs/Module/Settings.php:1120 +#: ../../Zotlabs/Module/Settings.php:1215 msgid "Default photo upload folder" msgstr "Voreingestellter Ordner für hochgeladene Fotos" -#: ../../Zotlabs/Module/Settings.php:1120 -#: ../../Zotlabs/Module/Settings.php:1121 +#: ../../Zotlabs/Module/Settings.php:1215 +#: ../../Zotlabs/Module/Settings.php:1216 msgid "%Y - current year, %m - current month" msgstr "%Y - aktuelles Jahr, %m - aktueller Monat" -#: ../../Zotlabs/Module/Settings.php:1121 +#: ../../Zotlabs/Module/Settings.php:1216 msgid "Default file upload folder" msgstr "Voreingestellter Ordner für hochgeladene Dateien" -#: ../../Zotlabs/Module/Settings.php:1123 +#: ../../Zotlabs/Module/Settings.php:1218 msgid "Personal menu to display in your channel pages" msgstr "Eigenes Menü zur Anzeige auf den Seiten deines Kanals" -#: ../../Zotlabs/Module/Settings.php:1125 +#: ../../Zotlabs/Module/Settings.php:1220 msgid "Remove this channel." msgstr "Diesen Kanal löschen" -#: ../../Zotlabs/Module/Settings.php:1126 +#: ../../Zotlabs/Module/Settings.php:1221 msgid "Firefox Share $Projectname provider" msgstr "$Projectname-Provider für Firefox Share" -#: ../../Zotlabs/Module/Settings.php:1127 +#: ../../Zotlabs/Module/Settings.php:1222 msgid "Start calendar week on monday" msgstr "Montag als erster Tag der Kalenderwoche" @@ -5529,7 +5840,7 @@ msgid "" msgstr "Möglicherweise musst Du die Datei install/schema_xxx.sql manuell mit Hilfe eines Datenkbank-Clients importieren." #: ../../Zotlabs/Module/Setup.php:204 ../../Zotlabs/Module/Setup.php:266 -#: ../../Zotlabs/Module/Setup.php:721 +#: ../../Zotlabs/Module/Setup.php:722 msgid "Please see the file \"install/INSTALL.txt\"." msgstr "Lies die Datei \"install/INSTALL.txt\"." @@ -5729,199 +6040,200 @@ msgid "mb_string PHP module" msgstr "mb_string-PHP-Modul" #: ../../Zotlabs/Module/Setup.php:496 -msgid "mcrypt PHP module" -msgstr "mcrypt-PHP-Modul" - -#: ../../Zotlabs/Module/Setup.php:497 msgid "xml PHP module" msgstr "xml-PHP-Modul" -#: ../../Zotlabs/Module/Setup.php:501 ../../Zotlabs/Module/Setup.php:503 +#: ../../Zotlabs/Module/Setup.php:500 ../../Zotlabs/Module/Setup.php:502 msgid "Apache mod_rewrite module" msgstr "Apache-mod_rewrite-Modul" -#: ../../Zotlabs/Module/Setup.php:501 +#: ../../Zotlabs/Module/Setup.php:500 msgid "" "Error: Apache webserver mod-rewrite module is required but not installed." msgstr "Fehler: Das Apache-Modul mod-rewrite wird benötigt, ist aber nicht installiert." -#: ../../Zotlabs/Module/Setup.php:507 ../../Zotlabs/Module/Setup.php:510 +#: ../../Zotlabs/Module/Setup.php:506 ../../Zotlabs/Module/Setup.php:509 msgid "proc_open" msgstr "proc_open" -#: ../../Zotlabs/Module/Setup.php:507 +#: ../../Zotlabs/Module/Setup.php:506 msgid "" "Error: proc_open is required but is either not installed or has been " "disabled in php.ini" msgstr "Fehler: proc_open wird benötigt, ist aber entweder nicht installiert oder wurde in der php.ini deaktiviert" -#: ../../Zotlabs/Module/Setup.php:515 +#: ../../Zotlabs/Module/Setup.php:514 msgid "Error: libCURL PHP module required but not installed." msgstr "Fehler: Das PHP-Modul libCURL wird benötigt, ist aber nicht installiert." -#: ../../Zotlabs/Module/Setup.php:519 +#: ../../Zotlabs/Module/Setup.php:518 msgid "" "Error: GD graphics PHP module with JPEG support required but not installed." msgstr "Fehler: Das PHP-Modul GD-Grafik mit JPEG-Unterstützung wird benötigt, ist aber nicht installiert." -#: ../../Zotlabs/Module/Setup.php:523 +#: ../../Zotlabs/Module/Setup.php:522 msgid "Error: openssl PHP module required but not installed." msgstr "Fehler: Das PHP-Modul openssl wird benötigt, ist aber nicht installiert." -#: ../../Zotlabs/Module/Setup.php:527 +#: ../../Zotlabs/Module/Setup.php:526 msgid "" "Error: mysqli or postgres PHP module required but neither are installed." msgstr "Fehler: Das mysqli oder postgres PHP-Modul ist erforderlich, aber keines von beiden ist installiert." -#: ../../Zotlabs/Module/Setup.php:531 +#: ../../Zotlabs/Module/Setup.php:530 msgid "Error: mb_string PHP module required but not installed." msgstr "Fehler: Das PHP-Modul mb_string wird benötigt, ist aber nicht installiert." -#: ../../Zotlabs/Module/Setup.php:535 -msgid "Error: mcrypt PHP module required but not installed." -msgstr "Fehler: Das PHP-Modul mcrypt wird benötigt, ist aber nicht installiert." - -#: ../../Zotlabs/Module/Setup.php:539 +#: ../../Zotlabs/Module/Setup.php:534 msgid "Error: xml PHP module required for DAV but not installed." msgstr "Fehler: Das xml-PHP-Modul wird für DAV benötigt, ist aber nicht installiert." -#: ../../Zotlabs/Module/Setup.php:557 +#: ../../Zotlabs/Module/Setup.php:552 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 "Der Installations-Assistent muss in der Lage sein, die Datei \".htconfig.php\" im Stammverzeichnis des Web-Servers anzulegen, ist er aber nicht." -#: ../../Zotlabs/Module/Setup.php:558 +#: ../../Zotlabs/Module/Setup.php:553 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 "Meist liegt das daran, dass der Nutzer, unter dem der Web-Server läuft, keine Schreibrechte in dem Verzeichnis hat – selbst wenn Du selbst das darfst." -#: ../../Zotlabs/Module/Setup.php:559 +#: ../../Zotlabs/Module/Setup.php:554 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 "Am Schluss dieses Vorgangs wird ein Text generiert, den Du unter dem Dateinamen .htconfig.php im Stammverzeichnis Deiner Hubzilla-Installation speichern musst." -#: ../../Zotlabs/Module/Setup.php:560 +#: ../../Zotlabs/Module/Setup.php:555 msgid "" "You can alternatively skip this procedure and perform a manual installation." " Please see the file \"install/INSTALL.txt\" for instructions." msgstr "Alternativ kannst Du diesen Schritt überspringen und die Installation manuell vornehmen. Lies dazu die Datei install/INSTALL.txt." -#: ../../Zotlabs/Module/Setup.php:563 +#: ../../Zotlabs/Module/Setup.php:558 msgid ".htconfig.php is writable" msgstr ".htconfig.php ist beschreibbar" -#: ../../Zotlabs/Module/Setup.php:577 +#: ../../Zotlabs/Module/Setup.php:572 msgid "" "Red uses the Smarty3 template engine to render its web views. Smarty3 " "compiles templates to PHP to speed up rendering." msgstr "$Projectname verwendet Smarty3 um Vorlagen für die Webdarstellung zu übersetzen. Smarty3 übersetzt diese Vorlagen nach PHP, um die Darstellung zu beschleunigen." -#: ../../Zotlabs/Module/Setup.php:578 +#: ../../Zotlabs/Module/Setup.php:573 #, php-format msgid "" "In order to store these compiled templates, the web server needs to have " "write access to the directory %s under the top level web folder." msgstr "Um diese kompilierten Vorlagen speichern zu können, braucht der Web-Server Schreibzugriff auf das Verzeichnis %s unterhalb des Hubzilla-Stammverzeichnisses." -#: ../../Zotlabs/Module/Setup.php:579 ../../Zotlabs/Module/Setup.php:600 +#: ../../Zotlabs/Module/Setup.php:574 ../../Zotlabs/Module/Setup.php:595 msgid "" "Please ensure that the user that your web server runs as (e.g. www-data) has" " write access to this folder." msgstr "Bitte stelle sicher, dass der Nutzer, unter dem der Web-Server läuft (z.B. www-data), Schreibzugriff auf dieses Verzeichnis hat." -#: ../../Zotlabs/Module/Setup.php:580 +#: ../../Zotlabs/Module/Setup.php:575 #, 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 "Hinweis: Aus Sicherheitsgründen sollte der Web-Server nur auf %s Schreibrechte haben, nicht auf die Template-Dateien (.tpl), die das Verzeichnis enthält." -#: ../../Zotlabs/Module/Setup.php:583 +#: ../../Zotlabs/Module/Setup.php:578 #, php-format msgid "%s is writable" msgstr "%s ist beschreibbar" -#: ../../Zotlabs/Module/Setup.php:599 +#: ../../Zotlabs/Module/Setup.php:594 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" -msgstr "$Projectname benutzt das Verzeichnis store, um hochgeladene Dateien zu speichern. Der Webserver benötigt Schreibrechte für dieses Verzeichnis direkt unterhalb des Red-Stammverzeichnisses" +"This software 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 "Diese Software benutzt das Verzeichnis store, um hochgeladene Dateien zu speichern. Der Web-Server benötigt Schreibrechte für dieses Verzeichnis direkt unterhalb des Hubzilla-Stammverzeichnisses" -#: ../../Zotlabs/Module/Setup.php:603 +#: ../../Zotlabs/Module/Setup.php:598 msgid "store is writable" msgstr "store ist schreibbar" -#: ../../Zotlabs/Module/Setup.php:636 +#: ../../Zotlabs/Module/Setup.php:631 msgid "" "SSL certificate cannot be validated. Fix certificate or disable https access" " to this site." msgstr "Das SSL-Zertifikat konnte nicht validiert werden. Korrigiere das Zertifikat oder deaktiviere den HTTPS-Zugriff auf diesen Server." -#: ../../Zotlabs/Module/Setup.php:637 +#: ../../Zotlabs/Module/Setup.php:632 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 "Wenn Du via HTTPS auf Deinen Server zugreifen möchtest, also Verbindungen über den Port 443 möglich sein sollen, ist ein SSL-Zertifikat einer Zertifizierungsstelle (CA) notwendig, das von den Browsern ohne Sicherheitsabfrage akzeptiert wird. Die Verwendung eines selbst signierten Zertifikates ist nicht möglich." -#: ../../Zotlabs/Module/Setup.php:638 +#: ../../Zotlabs/Module/Setup.php:633 msgid "" "This restriction is incorporated because public posts from you may for " "example contain references to images on your own hub." msgstr "Diese Einschränkung wurde eingebaut, weil Deine öffentlichen Beiträge zum Beispiel Verweise auf Bilder auf Deinem eigenen Hub enthalten können." -#: ../../Zotlabs/Module/Setup.php:639 +#: ../../Zotlabs/Module/Setup.php:634 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." msgstr "Wenn Dein Zertifikat nicht von jedem Browser akzeptiert wird, erhalten die Mitglieder anderer $Projectname-Hubs (die mit korrekten Zertifikaten ausgestattet sind) Sicherheits-Warnmeldungen, obwohl sie gar nicht direkt auf Deinem Server unterwegs sind (zum Beispiel, wenn ein Bild aus einem Deiner Beiträge angezeigt wird)." -#: ../../Zotlabs/Module/Setup.php:640 +#: ../../Zotlabs/Module/Setup.php:635 msgid "" "This can cause usability issues elsewhere (not just on your own site) so we " "must insist on this requirement." msgstr "Dies kann Probleme für andere Nutzer (nicht nur auf Deinem eigenen Server) verursachen, so dass wir auf dieser Forderung bestehen müssen." -#: ../../Zotlabs/Module/Setup.php:641 +#: ../../Zotlabs/Module/Setup.php:636 msgid "" "Providers are available that issue free certificates which are browser-" "valid." msgstr "Es gibt einige Zertifizierungsstellen (CAs), bei denen solche Zertifikate kostenlos zu haben sind." -#: ../../Zotlabs/Module/Setup.php:643 +#: ../../Zotlabs/Module/Setup.php:638 +msgid "" +"If you are confident that the certificate is valid and signed by a trusted " +"authority, check to see if you have failed to install an intermediate cert. " +"These are not normally required by browsers, but are required for server-to-" +"server communications." +msgstr "Wenn Du sicher bist, dass das Zertifikat gültig und von einer vertrauenswürdigen Zertifizierungsstelle signiert ist, prüfe auf ggf. noch zu installierende Zwischenzertifikate (intermediate). Diese werden nicht unbedingt von Browsern benötigt, aber sehr wohl für die Kommunikation zwischen Servern." + +#: ../../Zotlabs/Module/Setup.php:641 msgid "SSL certificate validation" msgstr "SSL Zertifikatverifizierung" -#: ../../Zotlabs/Module/Setup.php:649 +#: ../../Zotlabs/Module/Setup.php:647 msgid "" "Url rewrite in .htaccess is not working. Check your server " "configuration.Test: " msgstr "Das Umschreiben von URLs (rewrite) per .htaccess funktioniert nicht. Bitte prüfe die Server-Konfiguration. Test:" -#: ../../Zotlabs/Module/Setup.php:652 +#: ../../Zotlabs/Module/Setup.php:650 msgid "Url rewrite is working" msgstr "Url rewrite funktioniert" -#: ../../Zotlabs/Module/Setup.php:661 +#: ../../Zotlabs/Module/Setup.php:659 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 "Die Datenbank-Konfigurationsdatei „.htconfig.php“ konnte nicht geschrieben werden. Bitte verwende den unten angegebenen Text, um die Konfigurationsdatei im Stammverzeichnis des Webservers anzulegen." -#: ../../Zotlabs/Module/Setup.php:685 +#: ../../Zotlabs/Module/Setup.php:683 msgid "Errors encountered creating database tables." msgstr "Fehler beim Anlegen der Datenbank-Tabellen aufgetreten." -#: ../../Zotlabs/Module/Setup.php:719 +#: ../../Zotlabs/Module/Setup.php:720 msgid "

What next

" msgstr "

Was als Nächstes

" -#: ../../Zotlabs/Module/Setup.php:720 +#: ../../Zotlabs/Module/Setup.php:721 msgid "" "IMPORTANT: You will need to [manually] setup a scheduled task for the " "poller." @@ -5943,64 +6255,62 @@ msgstr "Alle Dateien löschen" msgid "Remove this file" msgstr "Diese Datei löschen" -#: ../../Zotlabs/Module/Siteinfo.php:19 +#: ../../Zotlabs/Module/Thing.php:114 +msgid "Thing updated" +msgstr "Sache aktualisiert" + +#: ../../Zotlabs/Module/Thing.php:166 +msgid "Object store: failed" +msgstr "Speichern des Objekts fehlgeschlagen" + +#: ../../Zotlabs/Module/Thing.php:170 +msgid "Thing added" +msgstr "Sache hinzugefügt" + +#: ../../Zotlabs/Module/Thing.php:196 #, php-format -msgid "Version %s" -msgstr "Version %s" +msgid "OBJ: %1$s %2$s %3$s" +msgstr "OBJ: %1$s %2$s %3$s" -#: ../../Zotlabs/Module/Siteinfo.php:40 -msgid "Installed plugins/addons/apps:" -msgstr "Installierte Plugins/Addons/Apps" +#: ../../Zotlabs/Module/Thing.php:259 +msgid "Show Thing" +msgstr "Sache anzeigen" -#: ../../Zotlabs/Module/Siteinfo.php:53 -msgid "No installed plugins/addons/apps" -msgstr "Keine installierten Plugins/Addons/Apps" +#: ../../Zotlabs/Module/Thing.php:266 +msgid "item not found." +msgstr "Eintrag nicht gefunden" -#: ../../Zotlabs/Module/Siteinfo.php:66 -msgid "" -"This is a hub of $Projectname - a global cooperative network of " -"decentralized privacy enhanced websites." -msgstr "Dieser Hub ist Teil von $Projectname – ein globales, kooperatives Netzwerk aus dezentralen Websites, die Rücksicht auf Deine Privatsphäre nehmen." +#: ../../Zotlabs/Module/Thing.php:299 +msgid "Edit Thing" +msgstr "Sache bearbeiten" -#: ../../Zotlabs/Module/Siteinfo.php:68 -msgid "Tag: " -msgstr "Schlagwort: " +#: ../../Zotlabs/Module/Thing.php:301 ../../Zotlabs/Module/Thing.php:351 +msgid "Select a profile" +msgstr "Wähle ein Profil" -#: ../../Zotlabs/Module/Siteinfo.php:70 -msgid "Last background fetch: " -msgstr "Letzter Hintergrundabruf:" +#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:354 +msgid "Post an activity" +msgstr "Aktivitätsnachricht senden" -#: ../../Zotlabs/Module/Siteinfo.php:72 -msgid "Current load average: " -msgstr "Aktuelles Load Average:" +#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:354 +msgid "Only sends to viewers of the applicable profile" +msgstr "Nur an Betrachter des ausgewählten Profils senden" -#: ../../Zotlabs/Module/Siteinfo.php:75 -msgid "Running at web location" -msgstr "Erreichbar unter der Web-Adresse" +#: ../../Zotlabs/Module/Thing.php:307 ../../Zotlabs/Module/Thing.php:356 +msgid "Name of thing e.g. something" +msgstr "Name der Sache, z. B. irgendwas" -#: ../../Zotlabs/Module/Siteinfo.php:76 -msgid "" -"Please visit hubzilla.org to learn more " -"about $Projectname." -msgstr "Bitte besuchen Sie hubzilla.org, um mehr über $Projectname zu erfahren." +#: ../../Zotlabs/Module/Thing.php:309 ../../Zotlabs/Module/Thing.php:357 +msgid "URL of thing (optional)" +msgstr "URL der Sache (optional)" -#: ../../Zotlabs/Module/Siteinfo.php:77 -msgid "Bug reports and issues: please visit" -msgstr "Probleme oder Fehler gefunden? Bitte besuche" +#: ../../Zotlabs/Module/Thing.php:311 ../../Zotlabs/Module/Thing.php:358 +msgid "URL for photo of thing (optional)" +msgstr "URL eines Fotos der Sache (optional)" -#: ../../Zotlabs/Module/Siteinfo.php:79 -msgid "$projectname issues" -msgstr "$projectname-Bugtracker" - -#: ../../Zotlabs/Module/Siteinfo.php:80 -msgid "" -"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot " -"com" -msgstr "Vorschläge, Lob, usw.: E-Mail an 'redmatrix' at librelist - dot - com" - -#: ../../Zotlabs/Module/Siteinfo.php:82 -msgid "Site Administrators" -msgstr "Administratoren" +#: ../../Zotlabs/Module/Thing.php:349 +msgid "Add Thing to your Profile" +msgstr "Die Sache Deinem Profil hinzufügen" #: ../../Zotlabs/Module/Sources.php:37 msgid "Failed to create source. No channel selected." @@ -6018,8 +6328,8 @@ msgstr "Quelle aktualisiert." msgid "*" msgstr "*" -#: ../../Zotlabs/Module/Sources.php:96 ../../include/widgets.php:630 -#: ../../include/features.php:71 +#: ../../Zotlabs/Module/Sources.php:96 ../../include/features.php:72 +#: ../../include/widgets.php:639 msgid "Channel Sources" msgstr "Kanal-Quellen" @@ -6095,12 +6405,12 @@ msgstr "Keine Vorschläge vorhanden. Wenn das ein neuer Server ist, versuche es msgid "Ignore/Hide" msgstr "Ignorieren/Verstecken" -#: ../../Zotlabs/Module/Tagger.php:55 ../../include/bbcode.php:256 +#: ../../Zotlabs/Module/Tagger.php:55 ../../include/bbcode.php:263 msgid "post" msgstr "Beitrag" -#: ../../Zotlabs/Module/Tagger.php:57 ../../include/text.php:1948 -#: ../../include/conversation.php:150 +#: ../../Zotlabs/Module/Tagger.php:57 ../../include/conversation.php:150 +#: ../../include/text.php:1929 msgid "comment" msgstr "Kommentar" @@ -6121,131 +6431,110 @@ msgstr "Schlagwort entfernen" msgid "Select a tag to remove: " msgstr "Schlagwort zum Entfernen auswählen:" -#: ../../Zotlabs/Module/Thing.php:114 -msgid "Thing updated" -msgstr "Sache aktualisiert" +#: ../../Zotlabs/Module/Webpages.php:191 ../../Zotlabs/Lib/Apps.php:218 +#: ../../include/nav.php:106 ../../include/conversation.php:1700 +msgid "Webpages" +msgstr "Webseiten" -#: ../../Zotlabs/Module/Thing.php:166 -msgid "Object store: failed" -msgstr "Speichern des Objekts fehlgeschlagen" +#: ../../Zotlabs/Module/Webpages.php:202 ../../include/page_widgets.php:44 +msgid "Actions" +msgstr "Aktionen" -#: ../../Zotlabs/Module/Thing.php:170 -msgid "Thing added" -msgstr "Sache hinzugefügt" +#: ../../Zotlabs/Module/Webpages.php:203 ../../include/page_widgets.php:45 +msgid "Page Link" +msgstr "Seiten-Link" -#: ../../Zotlabs/Module/Thing.php:196 -#, php-format -msgid "OBJ: %1$s %2$s %3$s" -msgstr "OBJ: %1$s %2$s %3$s" +#: ../../Zotlabs/Module/Webpages.php:204 +msgid "Page Title" +msgstr "Seitentitel" -#: ../../Zotlabs/Module/Thing.php:259 -msgid "Show Thing" -msgstr "Sache anzeigen" +#: ../../Zotlabs/Module/Wiki.php:34 +msgid "Not found" +msgstr "Nicht gefunden" -#: ../../Zotlabs/Module/Thing.php:266 -msgid "item not found." -msgstr "Eintrag nicht gefunden" +#: ../../Zotlabs/Module/Wiki.php:92 ../../Zotlabs/Lib/Apps.php:219 +#: ../../include/nav.php:108 ../../include/conversation.php:1710 +#: ../../include/conversation.php:1713 ../../include/features.php:55 +msgid "Wiki" +msgstr "Wiki" -#: ../../Zotlabs/Module/Thing.php:299 -msgid "Edit Thing" -msgstr "Sache bearbeiten" +#: ../../Zotlabs/Module/Wiki.php:93 +msgid "Sandbox" +msgstr "Sandbox" -#: ../../Zotlabs/Module/Thing.php:301 ../../Zotlabs/Module/Thing.php:351 -msgid "Select a profile" -msgstr "Wähle ein Profil" - -#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:354 -msgid "Post an activity" -msgstr "Aktivitätsnachricht senden" - -#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:354 -msgid "Only sends to viewers of the applicable profile" -msgstr "Nur an Betrachter des ausgewählten Profils senden" - -#: ../../Zotlabs/Module/Thing.php:307 ../../Zotlabs/Module/Thing.php:356 -msgid "Name of thing e.g. something" -msgstr "Name der Sache, z. B. irgendwas" - -#: ../../Zotlabs/Module/Thing.php:309 ../../Zotlabs/Module/Thing.php:357 -msgid "URL of thing (optional)" -msgstr "URL der Sache (optional)" - -#: ../../Zotlabs/Module/Thing.php:311 ../../Zotlabs/Module/Thing.php:358 -msgid "URL for photo of thing (optional)" -msgstr "URL eines Fotos der Sache (optional)" - -#: ../../Zotlabs/Module/Thing.php:349 -msgid "Add Thing to your Profile" -msgstr "Die Sache Deinem Profil hinzufügen" - -#: ../../Zotlabs/Module/Uexport.php:55 ../../Zotlabs/Module/Uexport.php:56 -msgid "Export Channel" -msgstr "Kanal exportieren" - -#: ../../Zotlabs/Module/Uexport.php:57 +#: ../../Zotlabs/Module/Wiki.php:95 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 "Exportiert die grundlegenden Kanal-Informationen in eine kleine Datei. Diese stellt eine Sicherung Deiner Verbindungen, Berechtigungen, Profile und Basisdaten bereit, die für den Import auf einem anderen Hub verwendet werden kann, aber nicht die Beiträge Deines Kanals enthält." +"\"# Wiki Sandbox\\n\\nContent you **edit** and **preview** here *will not be" +" saved*.\"" +msgstr "\"# Wiki Sandkasten\\n\\nInhalte, die Du hier **veränderst** und **als Vorschau anzeigst**, *werden nicht gespeichert*.\"" -#: ../../Zotlabs/Module/Uexport.php:58 -msgid "Export Content" -msgstr "Kanal und Inhalte exportieren" +#: ../../Zotlabs/Module/Wiki.php:164 +msgid "Revision Comparison" +msgstr "Revisionsvergleich" -#: ../../Zotlabs/Module/Uexport.php:59 -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 "Exportiert Deine Kanal-Informationen sowie alle zugehörigen Inhalte in eine JSON-Sicherungsdatei. Die sichert alle Verbindungen, Berechtigungen, Profildaten und Deine Beiträge aus mehreren Monaten. Diese Datei kann SEHR groß werden! Bitte habe ein wenig Geduld – es kann mehrere Minuten dauern, bis der Download startet." +#: ../../Zotlabs/Module/Wiki.php:165 +msgid "Revert" +msgstr "Rückgängig machen" -#: ../../Zotlabs/Module/Uexport.php:60 -msgid "Export your posts from a given year." -msgstr "Exportiert die Beiträge des angegebenen Jahres." +#: ../../Zotlabs/Module/Wiki.php:192 +msgid "Enter the name of your new wiki:" +msgstr "Gib einen Namen für Dein neues Wiki ein:" -#: ../../Zotlabs/Module/Uexport.php:62 -msgid "" -"You may also export your posts and conversations for a particular year or " -"month. Adjust the date in your browser location bar to select other dates. " -"If the export fails (possibly due to memory exhaustion on your server hub), " -"please try again selecting a more limited date range." -msgstr "Du kannst auch die Beiträge und Konversationen eines bestimmten Jahres oder Monats exportieren. Ändere das Datum in der Adresszeile Deines Browsers, um andere Zeiträume zu wählen. Falls der Export fehlschlägt (vermutlich, weil auf diesem Hub nicht genügend Speicher zur Verfügung steht), versuche es noch einmal mit einer kleineren Zeitspanne." +#: ../../Zotlabs/Module/Wiki.php:193 +msgid "Enter the name of the new page:" +msgstr "Geben Sie den Namen der neuen Seite ein:" -#: ../../Zotlabs/Module/Uexport.php:63 -#, php-format -msgid "" -"To select all posts for a given year, such as this year, visit %2$s" -msgstr "Um alle Beiträge eines bestimmten Jahres, zum Beispiel dieses Jahres, auszuwählen, klicke %2$s." +#: ../../Zotlabs/Module/Wiki.php:194 +msgid "Enter the new name:" +msgstr "Geben Sie den neuen Namen ein:" -#: ../../Zotlabs/Module/Uexport.php:64 -#, php-format -msgid "" -"To select all posts for a given month, such as January of this year, visit " -"%2$s" -msgstr "Um alle Beiträge eines bestimmten Monats auszuwählen, zum Beispiel vom Januar diesen Jahres, klicke %2$s." +#: ../../Zotlabs/Module/Wiki.php:200 ../../include/conversation.php:1150 +msgid "Embed image from photo albums" +msgstr "Bild aus Fotoalben einbetten" -#: ../../Zotlabs/Module/Uexport.php:65 -#, php-format -msgid "" -"These content files may be imported or restored by visiting %2$s on any site containing your channel. For best results" -" please import or restore these in date order (oldest first)." -msgstr "Diese Inhalts-Sicherungen können wiederhergestellt werden, indem Du %2$s auf jeglichem Hub besuchst, der diesen Kanal enthält. Das funktioniert am besten, wenn Du dabei die zeitliche Reihenfolge einhältst, also die Sicherungen für den ältesten Zeitraum zuerst importierst." +#: ../../Zotlabs/Module/Wiki.php:201 ../../include/conversation.php:1234 +msgid "Embed an image from your albums" +msgstr "Betten Sie ein Bild aus Ihren Alben ein" -#: ../../Zotlabs/Module/Viewconnections.php:62 +#: ../../Zotlabs/Module/Wiki.php:203 ../../include/conversation.php:1236 +#: ../../include/conversation.php:1273 +msgid "OK" +msgstr "Ok" + +#: ../../Zotlabs/Module/Wiki.php:204 ../../include/conversation.php:1186 +msgid "Choose images to embed" +msgstr "Wählen Sie Bilder zum Einbetten aus" + +#: ../../Zotlabs/Module/Wiki.php:205 ../../include/conversation.php:1187 +msgid "Choose an album" +msgstr "Wählen Sie ein Album aus" + +#: ../../Zotlabs/Module/Wiki.php:206 ../../include/conversation.php:1188 +msgid "Choose a different album..." +msgstr "Wählen Sie ein anderes Album aus..." + +#: ../../Zotlabs/Module/Wiki.php:207 ../../include/conversation.php:1189 +msgid "Error getting album list" +msgstr "Fehler beim Holen der Albenliste" + +#: ../../Zotlabs/Module/Wiki.php:208 ../../include/conversation.php:1190 +msgid "Error getting photo link" +msgstr "Fehler beim Holen des Fotolinks" + +#: ../../Zotlabs/Module/Wiki.php:209 ../../include/conversation.php:1191 +msgid "Error getting album" +msgstr "Fehler beim Holen des Albums" + +#: ../../Zotlabs/Module/Viewconnections.php:65 msgid "No connections." msgstr "Keine Verbindungen." -#: ../../Zotlabs/Module/Viewconnections.php:75 +#: ../../Zotlabs/Module/Viewconnections.php:78 #, php-format msgid "Visit %s's profile [%s]" msgstr "%ss Profil [%s] besuchen" -#: ../../Zotlabs/Module/Viewconnections.php:104 +#: ../../Zotlabs/Module/Viewconnections.php:107 msgid "View Connections" msgstr "Verbindungen anzeigen" @@ -6253,22 +6542,23 @@ msgstr "Verbindungen anzeigen" msgid "Source of Item" msgstr "Quelle des Elements" -#: ../../Zotlabs/Module/Webpages.php:184 ../../Zotlabs/Lib/Apps.php:217 -#: ../../include/nav.php:106 ../../include/conversation.php:1685 -msgid "Webpages" -msgstr "Webseiten" +#: ../../Zotlabs/Module/Api.php:61 ../../Zotlabs/Module/Api.php:85 +msgid "Authorize application connection" +msgstr "Zugriff für die Anwendung autorisieren" -#: ../../Zotlabs/Module/Webpages.php:195 ../../include/page_widgets.php:41 -msgid "Actions" -msgstr "Aktionen" +#: ../../Zotlabs/Module/Api.php:62 +msgid "Return to your app and insert this Securty Code:" +msgstr "Trage folgenden Sicherheitscode in der Anwendung ein:" -#: ../../Zotlabs/Module/Webpages.php:196 ../../include/page_widgets.php:42 -msgid "Page Link" -msgstr "Seiten-Link" +#: ../../Zotlabs/Module/Api.php:72 +msgid "Please login to continue." +msgstr "Zum Weitermachen, bitte einloggen." -#: ../../Zotlabs/Module/Webpages.php:197 -msgid "Page Title" -msgstr "Seitentitel" +#: ../../Zotlabs/Module/Api.php:87 +msgid "" +"Do you want to authorize this application to access your posts and contacts," +" and/or create new posts for you?" +msgstr "Möchtest Du dieser Anwendung erlauben, Deine Nachrichten und Kontakte abzurufen und/oder neue Nachrichten für Dich zu erstellen?" #: ../../Zotlabs/Module/Xchan.php:10 msgid "Xchan Lookup" @@ -6278,92 +6568,6 @@ msgstr "Xchan-Suche" msgid "Lookup xchan beginning with (or webbie): " msgstr "Nach xchans oder Webbies (Kanal-Adressen) suchen, die wie folgt beginnen:" -#: ../../Zotlabs/Lib/Apps.php:204 -msgid "Site Admin" -msgstr "Hub-Administration" - -#: ../../Zotlabs/Lib/Apps.php:205 -msgid "Bug Report" -msgstr "Fehler-Rückmeldung" - -#: ../../Zotlabs/Lib/Apps.php:206 -msgid "View Bookmarks" -msgstr "Lesezeichen ansehen" - -#: ../../Zotlabs/Lib/Apps.php:207 -msgid "My Chatrooms" -msgstr "Meine Chaträume" - -#: ../../Zotlabs/Lib/Apps.php:209 -msgid "Firefox Share" -msgstr "Teilen-Knopf für Firefox" - -#: ../../Zotlabs/Lib/Apps.php:210 -msgid "Remote Diagnostics" -msgstr "Ferndiagnose" - -#: ../../Zotlabs/Lib/Apps.php:211 ../../include/features.php:89 -msgid "Suggest Channels" -msgstr "Kanäle vorschlagen" - -#: ../../Zotlabs/Lib/Apps.php:212 ../../include/nav.php:110 -#: ../../boot.php:1703 -msgid "Login" -msgstr "Anmelden" - -#: ../../Zotlabs/Lib/Apps.php:214 ../../include/nav.php:179 -msgid "Grid" -msgstr "Grid" - -#: ../../Zotlabs/Lib/Apps.php:218 ../../include/nav.php:182 -msgid "Channel Home" -msgstr "Mein Kanal" - -#: ../../Zotlabs/Lib/Apps.php:221 ../../include/nav.php:201 -#: ../../include/conversation.php:1649 ../../include/conversation.php:1652 -msgid "Events" -msgstr "Termine" - -#: ../../Zotlabs/Lib/Apps.php:222 ../../include/nav.php:167 -msgid "Directory" -msgstr "Verzeichnis" - -#: ../../Zotlabs/Lib/Apps.php:224 ../../include/nav.php:193 -msgid "Mail" -msgstr "Mail" - -#: ../../Zotlabs/Lib/Apps.php:227 ../../include/nav.php:96 -msgid "Chat" -msgstr "Chat" - -#: ../../Zotlabs/Lib/Apps.php:229 -msgid "Probe" -msgstr "Testen" - -#: ../../Zotlabs/Lib/Apps.php:230 -msgid "Suggest" -msgstr "Empfehlen" - -#: ../../Zotlabs/Lib/Apps.php:231 -msgid "Random Channel" -msgstr "Zufälliger Kanal" - -#: ../../Zotlabs/Lib/Apps.php:232 -msgid "Invite" -msgstr "Einladen" - -#: ../../Zotlabs/Lib/Apps.php:233 ../../include/widgets.php:1386 -msgid "Features" -msgstr "Funktionen" - -#: ../../Zotlabs/Lib/Apps.php:235 -msgid "Post" -msgstr "Beitrag schreiben" - -#: ../../Zotlabs/Lib/Apps.php:335 -msgid "Purchase" -msgstr "Kaufen" - #: ../../Zotlabs/Lib/Chatroom.php:27 msgid "Missing room name" msgstr "Der Chatraum hat keinen Namen" @@ -6384,19 +6588,19 @@ msgstr "Chatraum konnte nicht gefunden werden." msgid "Room is full" msgstr "Der Chatraum ist voll" -#: ../../Zotlabs/Lib/Enotify.php:60 ../../include/network.php:1823 +#: ../../Zotlabs/Lib/Enotify.php:60 ../../include/network.php:1882 msgid "$Projectname Notification" msgstr "$Projectname-Benachrichtigung" -#: ../../Zotlabs/Lib/Enotify.php:61 ../../include/network.php:1824 +#: ../../Zotlabs/Lib/Enotify.php:61 ../../include/network.php:1883 msgid "$projectname" msgstr "$projectname" -#: ../../Zotlabs/Lib/Enotify.php:63 ../../include/network.php:1826 +#: ../../Zotlabs/Lib/Enotify.php:63 ../../include/network.php:1885 msgid "Thank You," msgstr "Danke." -#: ../../Zotlabs/Lib/Enotify.php:65 ../../include/network.php:1828 +#: ../../Zotlabs/Lib/Enotify.php:65 ../../include/network.php:1887 #, php-format msgid "%s Administrator" msgstr "der Administrator von %s" @@ -6589,11 +6793,97 @@ msgstr "Neuer Beitrag wurde erzeugt" msgid "commented on %s's post" msgstr "hat %s's Beitrag kommentiert" -#: ../../Zotlabs/Lib/ThreadItem.php:95 ../../include/conversation.php:664 +#: ../../Zotlabs/Lib/Apps.php:205 +msgid "Site Admin" +msgstr "Hub-Administration" + +#: ../../Zotlabs/Lib/Apps.php:206 +msgid "Bug Report" +msgstr "Fehler-Rückmeldung" + +#: ../../Zotlabs/Lib/Apps.php:207 +msgid "View Bookmarks" +msgstr "Lesezeichen ansehen" + +#: ../../Zotlabs/Lib/Apps.php:208 +msgid "My Chatrooms" +msgstr "Meine Chaträume" + +#: ../../Zotlabs/Lib/Apps.php:210 +msgid "Firefox Share" +msgstr "Teilen-Knopf für Firefox" + +#: ../../Zotlabs/Lib/Apps.php:211 +msgid "Remote Diagnostics" +msgstr "Ferndiagnose" + +#: ../../Zotlabs/Lib/Apps.php:212 ../../include/features.php:90 +msgid "Suggest Channels" +msgstr "Kanäle vorschlagen" + +#: ../../Zotlabs/Lib/Apps.php:213 ../../include/nav.php:112 +#: ../../boot.php:1704 +msgid "Login" +msgstr "Anmelden" + +#: ../../Zotlabs/Lib/Apps.php:215 ../../include/nav.php:181 +msgid "Grid" +msgstr "Grid" + +#: ../../Zotlabs/Lib/Apps.php:220 ../../include/nav.php:184 +msgid "Channel Home" +msgstr "Mein Kanal" + +#: ../../Zotlabs/Lib/Apps.php:223 ../../include/nav.php:203 +#: ../../include/conversation.php:1664 ../../include/conversation.php:1667 +msgid "Events" +msgstr "Termine" + +#: ../../Zotlabs/Lib/Apps.php:224 ../../include/nav.php:169 +msgid "Directory" +msgstr "Verzeichnis" + +#: ../../Zotlabs/Lib/Apps.php:226 ../../include/nav.php:195 +msgid "Mail" +msgstr "Mail" + +#: ../../Zotlabs/Lib/Apps.php:229 ../../include/nav.php:96 +msgid "Chat" +msgstr "Chat" + +#: ../../Zotlabs/Lib/Apps.php:231 +msgid "Probe" +msgstr "Testen" + +#: ../../Zotlabs/Lib/Apps.php:232 +msgid "Suggest" +msgstr "Empfehlen" + +#: ../../Zotlabs/Lib/Apps.php:233 +msgid "Random Channel" +msgstr "Zufälliger Kanal" + +#: ../../Zotlabs/Lib/Apps.php:234 +msgid "Invite" +msgstr "Einladen" + +#: ../../Zotlabs/Lib/Apps.php:235 ../../include/widgets.php:1480 +msgid "Features" +msgstr "Funktionen" + +#: ../../Zotlabs/Lib/Apps.php:237 +msgid "Post" +msgstr "Beitrag schreiben" + +#: ../../Zotlabs/Lib/Apps.php:339 +msgid "Purchase" +msgstr "Kaufen" + +#: ../../Zotlabs/Lib/ThreadItem.php:95 ../../include/conversation.php:667 msgid "Private Message" msgstr "Private Nachricht" -#: ../../Zotlabs/Lib/ThreadItem.php:132 ../../include/conversation.php:656 +#: ../../Zotlabs/Lib/ThreadItem.php:132 ../../include/conversation.php:659 msgid "Select" msgstr "Auswählen" @@ -6641,11 +6931,11 @@ msgstr "Markierungsstatus (Stern) umschalten" msgid "starred" msgstr "markiert" -#: ../../Zotlabs/Lib/ThreadItem.php:234 ../../include/conversation.php:671 +#: ../../Zotlabs/Lib/ThreadItem.php:234 ../../include/conversation.php:674 msgid "Message signature validated" msgstr "Signatur überprüft" -#: ../../Zotlabs/Lib/ThreadItem.php:235 ../../include/conversation.php:672 +#: ../../Zotlabs/Lib/ThreadItem.php:235 ../../include/conversation.php:675 msgid "Message signature incorrect" msgstr "Signatur nicht korrekt" @@ -6701,17 +6991,17 @@ msgstr "Wall-to-Wall" msgid "via Wall-To-Wall:" msgstr "via Wall-To-Wall:" -#: ../../Zotlabs/Lib/ThreadItem.php:341 ../../include/conversation.php:719 +#: ../../Zotlabs/Lib/ThreadItem.php:341 ../../include/conversation.php:722 #, php-format msgid "from %s" msgstr "via %s" -#: ../../Zotlabs/Lib/ThreadItem.php:344 ../../include/conversation.php:722 +#: ../../Zotlabs/Lib/ThreadItem.php:344 ../../include/conversation.php:725 #, php-format msgid "last edited: %s" msgstr "zuletzt bearbeitet: %s" -#: ../../Zotlabs/Lib/ThreadItem.php:345 ../../include/conversation.php:723 +#: ../../Zotlabs/Lib/ThreadItem.php:345 ../../include/conversation.php:726 #, php-format msgid "Expires: %s" msgstr "Verfällt: %s" @@ -6729,26 +7019,27 @@ msgid "Mark all seen" msgstr "Alle als gelesen markieren" #: ../../Zotlabs/Lib/ThreadItem.php:421 ../../include/js_strings.php:7 -msgid "[+] show all" -msgstr "[+] Alle anzeigen" +#, php-format +msgid "%s show all" +msgstr "%s mehr anzeigen" -#: ../../Zotlabs/Lib/ThreadItem.php:711 ../../include/conversation.php:1215 +#: ../../Zotlabs/Lib/ThreadItem.php:711 ../../include/conversation.php:1226 msgid "Bold" msgstr "Fett" -#: ../../Zotlabs/Lib/ThreadItem.php:712 ../../include/conversation.php:1216 +#: ../../Zotlabs/Lib/ThreadItem.php:712 ../../include/conversation.php:1227 msgid "Italic" msgstr "Kursiv" -#: ../../Zotlabs/Lib/ThreadItem.php:713 ../../include/conversation.php:1217 +#: ../../Zotlabs/Lib/ThreadItem.php:713 ../../include/conversation.php:1228 msgid "Underline" msgstr "Unterstrichen" -#: ../../Zotlabs/Lib/ThreadItem.php:714 ../../include/conversation.php:1218 +#: ../../Zotlabs/Lib/ThreadItem.php:714 ../../include/conversation.php:1229 msgid "Quote" msgstr "Zitat" -#: ../../Zotlabs/Lib/ThreadItem.php:715 ../../include/conversation.php:1219 +#: ../../Zotlabs/Lib/ThreadItem.php:715 ../../include/conversation.php:1230 msgid "Code" msgstr "Code" @@ -6764,11 +7055,74 @@ msgstr "Link einfügen" msgid "Video" msgstr "Video" +#: ../../Zotlabs/Lib/PermissionDescription.php:31 +#: ../../include/acl_selectors.php:230 +msgid "Visible to your default audience" +msgstr "Standard-Sichtbarkeit gemäß Kanaleinstellungen" + +#: ../../Zotlabs/Lib/PermissionDescription.php:106 +#: ../../include/acl_selectors.php:266 +msgid "Only me" +msgstr "Nur ich" + +#: ../../Zotlabs/Lib/PermissionDescription.php:107 +msgid "Public" +msgstr "Öffentlich" + +#: ../../Zotlabs/Lib/PermissionDescription.php:108 +msgid "Anybody in the $Projectname network" +msgstr "Jeder innerhalb des $Projectname Netzwerks" + +#: ../../Zotlabs/Lib/PermissionDescription.php:109 +#, php-format +msgid "Any account on %s" +msgstr "Jedes Nutzerkonto auf %s" + +#: ../../Zotlabs/Lib/PermissionDescription.php:110 +msgid "Any of my connections" +msgstr "Alle meine Verbindungen" + +#: ../../Zotlabs/Lib/PermissionDescription.php:111 +msgid "Only connections I specifically allow" +msgstr "Nur Verbindungen, denen ich es explizit erlaube" + +#: ../../Zotlabs/Lib/PermissionDescription.php:112 +msgid "Anybody authenticated (could include visitors from other networks)" +msgstr "Jeder, der angemeldet ist (kann Besucher anderer Netzwerke beinhalten)" + +#: ../../Zotlabs/Lib/PermissionDescription.php:113 +msgid "Any connections including those who haven't yet been approved" +msgstr "Alle Verbindungen einschließlich der noch nicht bestätigten" + +#: ../../Zotlabs/Lib/PermissionDescription.php:152 +msgid "" +"This is your default setting for the audience of your normal stream, and " +"posts." +msgstr "Dies ist Deine Voreinstellung für die Sichtbarkeit Deiner normalen Beiträge (Stream)." + +#: ../../Zotlabs/Lib/PermissionDescription.php:153 +msgid "" +"This is your default setting for who can view your default channel profile" +msgstr "Dies ist Deine Voreinstellung für die Sichtbarkeit Deines Standard-Kanalprofils." + +#: ../../Zotlabs/Lib/PermissionDescription.php:154 +msgid "This is your default setting for who can view your connections" +msgstr "Dies ist Deine Voreinstellung für die Sichtbarkeit Deiner Verbindungen." + +#: ../../Zotlabs/Lib/PermissionDescription.php:155 +msgid "" +"This is your default setting for who can view your file storage and photos" +msgstr "Dies ist Deine Voreinstellung für die Sichtbarkeit Deiner Dateien und Fotos." + +#: ../../Zotlabs/Lib/PermissionDescription.php:156 +msgid "This is your default setting for the audience of your webpages" +msgstr "Dies ist Deine Voreinstellung für die Sichtbarkeit Deiner Webseiten." + #: ../../include/Import/import_diaspora.php:16 msgid "No username found in import file." msgstr "Kein Benutzername in der Importdatei gefunden." -#: ../../include/Import/import_diaspora.php:41 ../../include/import.php:50 +#: ../../include/Import/import_diaspora.php:41 ../../include/import.php:51 msgid "Unable to create a unique channel address. Import failed." msgstr "Es war nicht möglich, eine eindeutige Kanal-Adresse zu erzeugen. Der Import ist fehlgeschlagen." @@ -6777,6 +7131,291 @@ msgstr "Es war nicht möglich, eine eindeutige Kanal-Adresse zu erzeugen. Der Im msgid "Cannot locate DNS info for database server '%s'" msgstr "Kann die DNS-Informationen für den Datenbank-Server '%s' nicht finden" +#: ../../include/photos.php:114 +#, php-format +msgid "Image exceeds website size limit of %lu bytes" +msgstr "Bild überschreitet das Webseitenlimit von %lu Bytes" + +#: ../../include/photos.php:121 +msgid "Image file is empty." +msgstr "Bilddatei ist leer." + +#: ../../include/photos.php:259 +msgid "Photo storage failed." +msgstr "Fotospeicherung fehlgeschlagen." + +#: ../../include/photos.php:299 +msgid "a new photo" +msgstr "ein neues Foto" + +#: ../../include/photos.php:303 +#, php-format +msgctxt "photo_upload" +msgid "%1$s posted %2$s to %3$s" +msgstr "%1$s hat %2$s auf %3$s veröffentlicht" + +#: ../../include/photos.php:506 ../../include/conversation.php:1650 +msgid "Photo Albums" +msgstr "Fotoalben" + +#: ../../include/photos.php:510 +msgid "Upload New Photos" +msgstr "Neue Fotos hochladen" + +#: ../../include/nav.php:82 ../../include/nav.php:115 ../../boot.php:1703 +msgid "Logout" +msgstr "Abmelden" + +#: ../../include/nav.php:82 ../../include/nav.php:115 +msgid "End this session" +msgstr "Beende diese Sitzung" + +#: ../../include/nav.php:85 ../../include/nav.php:146 +msgid "Home" +msgstr "Home" + +#: ../../include/nav.php:85 +msgid "Your posts and conversations" +msgstr "Deine Beiträge und Unterhaltungen" + +#: ../../include/nav.php:86 +msgid "Your profile page" +msgstr "Deine Profilseite" + +#: ../../include/nav.php:88 +msgid "Manage/Edit profiles" +msgstr "Profile verwalten" + +#: ../../include/nav.php:90 ../../include/channel.php:980 +msgid "Edit Profile" +msgstr "Profile bearbeiten" + +#: ../../include/nav.php:90 +msgid "Edit your profile" +msgstr "Profil bearbeiten" + +#: ../../include/nav.php:92 +msgid "Your photos" +msgstr "Deine Bilder" + +#: ../../include/nav.php:93 +msgid "Your files" +msgstr "Deine Dateien" + +#: ../../include/nav.php:96 +msgid "Your chatrooms" +msgstr "Deine Chaträume" + +#: ../../include/nav.php:102 ../../include/conversation.php:1690 +msgid "Bookmarks" +msgstr "Lesezeichen" + +#: ../../include/nav.php:102 +msgid "Your bookmarks" +msgstr "Deine Lesezeichen" + +#: ../../include/nav.php:106 +msgid "Your webpages" +msgstr "Deine Webseiten" + +#: ../../include/nav.php:108 +msgid "Your wiki" +msgstr "Dein Wiki" + +#: ../../include/nav.php:112 +msgid "Sign in" +msgstr "Anmelden" + +#: ../../include/nav.php:129 +#, php-format +msgid "%s - click to logout" +msgstr "%s - Klick zum Abmelden" + +#: ../../include/nav.php:132 +msgid "Remote authentication" +msgstr "Über Konto auf anderem Server einloggen" + +#: ../../include/nav.php:132 +msgid "Click to authenticate to your home hub" +msgstr "Klicke, um Dich über Deinen Heimat-Server zu authentifizieren" + +#: ../../include/nav.php:146 +msgid "Home Page" +msgstr "Homepage" + +#: ../../include/nav.php:149 +msgid "Create an account" +msgstr "Erzeuge ein Konto" + +#: ../../include/nav.php:161 +msgid "Help and documentation" +msgstr "Hilfe und Dokumentation" + +#: ../../include/nav.php:165 +msgid "Applications, utilities, links, games" +msgstr "Anwendungen (Apps), Zubehör, Links, Spiele" + +#: ../../include/nav.php:167 +msgid "Search site @name, #tag, ?docs, content" +msgstr "Hub durchsuchen: @Name. #Schlagwort, ?Dokumentation, Inhalt" + +#: ../../include/nav.php:169 +msgid "Channel Directory" +msgstr "Kanal-Verzeichnis" + +#: ../../include/nav.php:181 +msgid "Your grid" +msgstr "Dein Grid" + +#: ../../include/nav.php:182 +msgid "Mark all grid notifications seen" +msgstr "Alle Grid-Benachrichtigungen als angesehen markieren" + +#: ../../include/nav.php:184 +msgid "Channel home" +msgstr "Mein Kanal" + +#: ../../include/nav.php:185 +msgid "Mark all channel notifications seen" +msgstr "Markiere alle Kanal-Benachrichtigungen als angesehen" + +#: ../../include/nav.php:191 +msgid "Notices" +msgstr "Benachrichtigungen" + +#: ../../include/nav.php:191 +msgid "Notifications" +msgstr "Benachrichtigungen" + +#: ../../include/nav.php:192 +msgid "See all notifications" +msgstr "Alle Benachrichtigungen ansehen" + +#: ../../include/nav.php:195 +msgid "Private mail" +msgstr "Persönliche Mail" + +#: ../../include/nav.php:196 +msgid "See all private messages" +msgstr "Alle persönlichen Nachrichten ansehen" + +#: ../../include/nav.php:197 +msgid "Mark all private messages seen" +msgstr "Markiere alle persönlichen Nachrichten als gesehen" + +#: ../../include/nav.php:198 ../../include/widgets.php:667 +msgid "Inbox" +msgstr "Eingang" + +#: ../../include/nav.php:199 ../../include/widgets.php:672 +msgid "Outbox" +msgstr "Ausgang" + +#: ../../include/nav.php:200 ../../include/widgets.php:677 +msgid "New Message" +msgstr "Neue Nachricht" + +#: ../../include/nav.php:203 +msgid "Event Calendar" +msgstr "Terminkalender" + +#: ../../include/nav.php:204 +msgid "See all events" +msgstr "Alle Termine ansehen" + +#: ../../include/nav.php:205 +msgid "Mark all events seen" +msgstr "Markiere alle Termine als gesehen" + +#: ../../include/nav.php:208 +msgid "Manage Your Channels" +msgstr "Verwalte Deine Kanäle" + +#: ../../include/nav.php:210 +msgid "Account/Channel Settings" +msgstr "Konto-/Kanal-Einstellungen" + +#: ../../include/nav.php:218 ../../include/widgets.php:1510 +msgid "Admin" +msgstr "Administration" + +#: ../../include/nav.php:218 +msgid "Site Setup and Configuration" +msgstr "Seiten-Einrichtung und -Konfiguration" + +#: ../../include/nav.php:249 ../../include/conversation.php:854 +msgid "Loading..." +msgstr "Lädt ..." + +#: ../../include/nav.php:254 +msgid "@name, #tag, ?doc, content" +msgstr "@Name, #Schlagwort, ?Dokumentation, Inhalt" + +#: ../../include/nav.php:255 +msgid "Please wait..." +msgstr "Bitte warten..." + +#: ../../include/network.php:704 +msgid "view full size" +msgstr "In Vollbildansicht anschauen" + +#: ../../include/network.php:1930 ../../include/account.php:317 +#: ../../include/account.php:344 ../../include/account.php:404 +msgid "Administrator" +msgstr "Administrator" + +#: ../../include/network.php:1944 +msgid "No Subject" +msgstr "Kein Betreff" + +#: ../../include/network.php:2198 ../../include/network.php:2199 +msgid "Friendica" +msgstr "Friendica" + +#: ../../include/network.php:2200 +msgid "OStatus" +msgstr "OStatus" + +#: ../../include/network.php:2201 +msgid "GNU-Social" +msgstr "GNU-Social" + +#: ../../include/network.php:2202 +msgid "RSS/Atom" +msgstr "RSS/Atom" + +#: ../../include/network.php:2204 +msgid "Diaspora" +msgstr "Diaspora" + +#: ../../include/network.php:2205 +msgid "Facebook" +msgstr "Facebook" + +#: ../../include/network.php:2206 +msgid "Zot" +msgstr "Zot!" + +#: ../../include/network.php:2207 +msgid "LinkedIn" +msgstr "LinkedIn" + +#: ../../include/network.php:2208 +msgid "XMPP/IM" +msgstr "XMPP/IM" + +#: ../../include/network.php:2209 +msgid "MySpace" +msgstr "MySpace" + +#: ../../include/page_widgets.php:7 +msgid "New Page" +msgstr "Neue Seite" + +#: ../../include/page_widgets.php:46 +msgid "Title" +msgstr "Titel" + #: ../../include/taxonomy.php:188 ../../include/taxonomy.php:270 #: ../../include/widgets.php:46 ../../include/widgets.php:429 #: ../../include/contact_widgets.php:91 @@ -6815,952 +7454,159 @@ msgstr "gefällt" msgid "dislikes" msgstr "missfällt" -#: ../../include/event.php:22 ../../include/event.php:69 -#: ../../include/bb2diaspora.php:485 -msgid "l F d, Y \\@ g:i A" -msgstr "l, d. F Y, H:i" +#: ../../include/channel.php:33 +msgid "Unable to obtain identity information from database" +msgstr "Kann keine Identitäts-Informationen aus Datenbank beziehen" -#: ../../include/event.php:30 ../../include/event.php:73 -#: ../../include/bb2diaspora.php:491 -msgid "Starts:" -msgstr "Beginnt:" +#: ../../include/channel.php:67 +msgid "Empty name" +msgstr "Namensfeld leer" -#: ../../include/event.php:40 ../../include/event.php:77 -#: ../../include/bb2diaspora.php:499 -msgid "Finishes:" -msgstr "Endet:" +#: ../../include/channel.php:70 +msgid "Name too long" +msgstr "Name ist zu lang" -#: ../../include/event.php:812 -msgid "This event has been added to your calendar." -msgstr "Dieser Termin wurde zu Deinem Kalender hinzugefügt" +#: ../../include/channel.php:181 +msgid "No account identifier" +msgstr "Keine Account-Kennung" -#: ../../include/event.php:1012 -msgid "Not specified" -msgstr "Keine Angabe" +#: ../../include/channel.php:193 +msgid "Nickname is required." +msgstr "Spitzname ist erforderlich." -#: ../../include/event.php:1013 -msgid "Needs Action" -msgstr "Aktion erforderlich" +#: ../../include/channel.php:207 +msgid "Reserved nickname. Please choose another." +msgstr "Reservierter Kurzname. Bitte wähle einen anderen." -#: ../../include/event.php:1014 -msgid "Completed" -msgstr "Abgeschlossen" - -#: ../../include/event.php:1015 -msgid "In Process" -msgstr "In Bearbeitung" - -#: ../../include/event.php:1016 -msgid "Cancelled" -msgstr "gestrichen" - -#: ../../include/import.php:29 +#: ../../include/channel.php:212 msgid "" -"Cannot create a duplicate channel identifier on this system. Import failed." -msgstr "Kann keinen doppelten Kanal-Identifikator auf diesem System erzeugen (Spitzname oder Hash schon belegt). Import fehlgeschlagen." +"Nickname has unsupported characters or is already being used on this site." +msgstr "Der Spitzname enthält nicht-unterstütze Zeichen oder wird bereits auf dieser Seite genutzt." -#: ../../include/import.php:76 -msgid "Channel clone failed. Import failed." -msgstr "Klonen des Kanals fehlgeschlagen. Import fehlgeschlagen." +#: ../../include/channel.php:272 +msgid "Unable to retrieve created identity" +msgstr "Kann die erstellte Identität nicht empfangen" -#: ../../include/items.php:892 ../../include/items.php:937 -msgid "(Unknown)" -msgstr "(Unbekannt)" +#: ../../include/channel.php:341 +msgid "Default Profile" +msgstr "Standard-Profil" -#: ../../include/items.php:1136 -msgid "Visible to anybody on the internet." -msgstr "Für jeden im Internet sichtbar." +#: ../../include/channel.php:830 +msgid "Requested channel is not available." +msgstr "Angeforderte Kanal nicht verfügbar." -#: ../../include/items.php:1138 -msgid "Visible to you only." -msgstr "Nur für Dich sichtbar." +#: ../../include/channel.php:977 +msgid "Create New Profile" +msgstr "Neues Profil erstellen" -#: ../../include/items.php:1140 -msgid "Visible to anybody in this network." -msgstr "Für jedes $Projectname-Mitglied sichtbar." +#: ../../include/channel.php:997 +msgid "Visible to everybody" +msgstr "Für jeden sichtbar" -#: ../../include/items.php:1142 -msgid "Visible to anybody authenticated." -msgstr "Für jeden sichtbar, der angemeldet ist." +#: ../../include/channel.php:1070 ../../include/channel.php:1182 +msgid "Gender:" +msgstr "Geschlecht:" -#: ../../include/items.php:1144 +#: ../../include/channel.php:1071 ../../include/channel.php:1226 +msgid "Status:" +msgstr "Status:" + +#: ../../include/channel.php:1072 ../../include/channel.php:1237 +msgid "Homepage:" +msgstr "Homepage:" + +#: ../../include/channel.php:1073 +msgid "Online Now" +msgstr "gerade online" + +#: ../../include/channel.php:1187 +msgid "Like this channel" +msgstr "Dieser Kanal gefällt mir" + +#: ../../include/channel.php:1211 +msgid "j F, Y" +msgstr "j. F Y" + +#: ../../include/channel.php:1212 +msgid "j F" +msgstr "j. F" + +#: ../../include/channel.php:1219 +msgid "Birthday:" +msgstr "Geburtstag:" + +#: ../../include/channel.php:1232 #, php-format -msgid "Visible to anybody on %s." -msgstr "Für jeden auf %s sichtbar." +msgid "for %1$d %2$s" +msgstr "seit %1$d %2$s" -#: ../../include/items.php:1146 -msgid "Visible to all connections." -msgstr "Für alle Verbindungen sichtbar." +#: ../../include/channel.php:1235 +msgid "Sexual Preference:" +msgstr "Sexuelle Orientierung:" -#: ../../include/items.php:1148 -msgid "Visible to approved connections." -msgstr "Nur für akzeptierte Verbindungen sichtbar." +#: ../../include/channel.php:1241 +msgid "Tags:" +msgstr "Schlagworte:" -#: ../../include/items.php:1150 -msgid "Visible to specific connections." -msgstr "Sichtbar für bestimmte Verbindungen." +#: ../../include/channel.php:1243 +msgid "Political Views:" +msgstr "Politische Ansichten:" -#: ../../include/items.php:3909 -msgid "Privacy group is empty." -msgstr "Gruppe ist leer." +#: ../../include/channel.php:1245 +msgid "Religion:" +msgstr "Religion:" -#: ../../include/items.php:3916 -#, php-format -msgid "Privacy group: %s" -msgstr "Gruppe: %s" +#: ../../include/channel.php:1249 +msgid "Hobbies/Interests:" +msgstr "Hobbys/Interessen:" -#: ../../include/items.php:3928 -msgid "Connection not found." -msgstr "Die Verbindung wurde nicht gefunden." +#: ../../include/channel.php:1251 +msgid "Likes:" +msgstr "Gefällt:" -#: ../../include/items.php:4277 -msgid "profile photo" -msgstr "Profilfoto" +#: ../../include/channel.php:1253 +msgid "Dislikes:" +msgstr "Gefällt nicht:" -#: ../../include/message.php:20 -msgid "No recipient provided." -msgstr "Kein Empfänger angegeben" +#: ../../include/channel.php:1255 +msgid "Contact information and Social Networks:" +msgstr "Kontaktinformation und soziale Netzwerke:" -#: ../../include/message.php:25 -msgid "[no subject]" -msgstr "[no subject]" +#: ../../include/channel.php:1257 +msgid "My other channels:" +msgstr "Meine anderen Kanäle:" -#: ../../include/message.php:45 -msgid "Unable to determine sender." -msgstr "Kann Absender nicht bestimmen." +#: ../../include/channel.php:1259 +msgid "Musical interests:" +msgstr "Musikalische Interessen:" -#: ../../include/message.php:222 -msgid "Stored post could not be verified." -msgstr "Gespeicherter Beitrag konnten nicht überprüft werden." +#: ../../include/channel.php:1261 +msgid "Books, literature:" +msgstr "Bücher, Literatur:" -#: ../../include/text.php:428 -msgid "prev" -msgstr "vorherige" +#: ../../include/channel.php:1263 +msgid "Television:" +msgstr "Fernsehen:" -#: ../../include/text.php:430 -msgid "first" -msgstr "erste" +#: ../../include/channel.php:1265 +msgid "Film/dance/culture/entertainment:" +msgstr "Film/Tanz/Kultur/Unterhaltung:" -#: ../../include/text.php:459 -msgid "last" -msgstr "letzte" +#: ../../include/channel.php:1267 +msgid "Love/Romance:" +msgstr "Liebe/Romantik:" -#: ../../include/text.php:462 -msgid "next" -msgstr "nächste" +#: ../../include/channel.php:1269 +msgid "Work/employment:" +msgstr "Arbeit/Anstellung:" -#: ../../include/text.php:472 -msgid "older" -msgstr "älter" +#: ../../include/channel.php:1271 +msgid "School/education:" +msgstr "Schule/Ausbildung:" -#: ../../include/text.php:474 -msgid "newer" -msgstr "neuer" - -#: ../../include/text.php:863 -msgid "No connections" -msgstr "Keine Verbindungen" - -#: ../../include/text.php:888 -#, php-format -msgid "View all %s connections" -msgstr "Alle Verbindungen von %s anzeigen" - -#: ../../include/text.php:1033 ../../include/text.php:1038 -msgid "poke" -msgstr "anstupsen" - -#: ../../include/text.php:1033 ../../include/text.php:1038 -#: ../../include/conversation.php:243 -msgid "poked" -msgstr "stupste" - -#: ../../include/text.php:1039 -msgid "ping" -msgstr "anpingen" - -#: ../../include/text.php:1039 -msgid "pinged" -msgstr "pingte" - -#: ../../include/text.php:1040 -msgid "prod" -msgstr "knuffen" - -#: ../../include/text.php:1040 -msgid "prodded" -msgstr "knuffte" - -#: ../../include/text.php:1041 -msgid "slap" -msgstr "ohrfeigen" - -#: ../../include/text.php:1041 -msgid "slapped" -msgstr "ohrfeigte" - -#: ../../include/text.php:1042 -msgid "finger" -msgstr "befummeln" - -#: ../../include/text.php:1042 -msgid "fingered" -msgstr "befummelte" - -#: ../../include/text.php:1043 -msgid "rebuff" -msgstr "eine Abfuhr erteilen" - -#: ../../include/text.php:1043 -msgid "rebuffed" -msgstr "zurückgewiesen" - -#: ../../include/text.php:1055 -msgid "happy" -msgstr "glücklich" - -#: ../../include/text.php:1056 -msgid "sad" -msgstr "traurig" - -#: ../../include/text.php:1057 -msgid "mellow" -msgstr "sanft" - -#: ../../include/text.php:1058 -msgid "tired" -msgstr "müde" - -#: ../../include/text.php:1059 -msgid "perky" -msgstr "frech" - -#: ../../include/text.php:1060 -msgid "angry" -msgstr "sauer" - -#: ../../include/text.php:1061 -msgid "stupefied" -msgstr "verblüfft" - -#: ../../include/text.php:1062 -msgid "puzzled" -msgstr "verwirrt" - -#: ../../include/text.php:1063 -msgid "interested" -msgstr "interessiert" - -#: ../../include/text.php:1064 -msgid "bitter" -msgstr "verbittert" - -#: ../../include/text.php:1065 -msgid "cheerful" -msgstr "fröhlich" - -#: ../../include/text.php:1066 -msgid "alive" -msgstr "lebendig" - -#: ../../include/text.php:1067 -msgid "annoyed" -msgstr "verärgert" - -#: ../../include/text.php:1068 -msgid "anxious" -msgstr "unruhig" - -#: ../../include/text.php:1069 -msgid "cranky" -msgstr "schrullig" - -#: ../../include/text.php:1070 -msgid "disturbed" -msgstr "verstört" - -#: ../../include/text.php:1071 -msgid "frustrated" -msgstr "frustriert" - -#: ../../include/text.php:1072 -msgid "depressed" -msgstr "deprimiert" - -#: ../../include/text.php:1073 -msgid "motivated" -msgstr "motiviert" - -#: ../../include/text.php:1074 -msgid "relaxed" -msgstr "entspannt" - -#: ../../include/text.php:1075 -msgid "surprised" -msgstr "überrascht" - -#: ../../include/text.php:1257 ../../include/js_strings.php:70 -msgid "Monday" -msgstr "Montag" - -#: ../../include/text.php:1257 ../../include/js_strings.php:71 -msgid "Tuesday" -msgstr "Dienstag" - -#: ../../include/text.php:1257 ../../include/js_strings.php:72 -msgid "Wednesday" -msgstr "Mittwoch" - -#: ../../include/text.php:1257 ../../include/js_strings.php:73 -msgid "Thursday" -msgstr "Donnerstag" - -#: ../../include/text.php:1257 ../../include/js_strings.php:74 -msgid "Friday" -msgstr "Freitag" - -#: ../../include/text.php:1257 ../../include/js_strings.php:75 -msgid "Saturday" -msgstr "Samstag" - -#: ../../include/text.php:1257 ../../include/js_strings.php:69 -msgid "Sunday" -msgstr "Sonntag" - -#: ../../include/text.php:1261 ../../include/js_strings.php:45 -msgid "January" -msgstr "Januar" - -#: ../../include/text.php:1261 ../../include/js_strings.php:46 -msgid "February" -msgstr "Februar" - -#: ../../include/text.php:1261 ../../include/js_strings.php:47 -msgid "March" -msgstr "März" - -#: ../../include/text.php:1261 ../../include/js_strings.php:48 -msgid "April" -msgstr "April" - -#: ../../include/text.php:1261 -msgid "May" -msgstr "Mai" - -#: ../../include/text.php:1261 ../../include/js_strings.php:50 -msgid "June" -msgstr "Juni" - -#: ../../include/text.php:1261 ../../include/js_strings.php:51 -msgid "July" -msgstr "Juli" - -#: ../../include/text.php:1261 ../../include/js_strings.php:52 -msgid "August" -msgstr "August" - -#: ../../include/text.php:1261 ../../include/js_strings.php:53 -msgid "September" -msgstr "September" - -#: ../../include/text.php:1261 ../../include/js_strings.php:54 -msgid "October" -msgstr "Oktober" - -#: ../../include/text.php:1261 ../../include/js_strings.php:55 -msgid "November" -msgstr "November" - -#: ../../include/text.php:1261 ../../include/js_strings.php:56 -msgid "December" -msgstr "Dezember" - -#: ../../include/text.php:1338 ../../include/text.php:1342 -msgid "Unknown Attachment" -msgstr "Unbekannter Anhang" - -#: ../../include/text.php:1344 -msgid "unknown" -msgstr "unbekannt" - -#: ../../include/text.php:1380 -msgid "remove category" -msgstr "Kategorie entfernen" - -#: ../../include/text.php:1457 -msgid "remove from file" -msgstr "aus der Datei entfernen" - -#: ../../include/text.php:1753 ../../include/text.php:1824 -msgid "default" -msgstr "Standard" - -#: ../../include/text.php:1761 -msgid "Page layout" -msgstr "Seiten-Layout" - -#: ../../include/text.php:1761 -msgid "You can create your own with the layouts tool" -msgstr "Mit dem Gestaltungswerkzeug kannst Du Deine eigenen Layouts erstellen" - -#: ../../include/text.php:1803 -msgid "Page content type" -msgstr "Art des Seiteninhalts" - -#: ../../include/text.php:1836 -msgid "Select an alternate language" -msgstr "Wähle eine alternative Sprache" - -#: ../../include/text.php:1953 -msgid "activity" -msgstr "Aktivität" - -#: ../../include/text.php:2262 -msgid "Design Tools" -msgstr "Gestaltungswerkzeuge" - -#: ../../include/text.php:2268 -msgid "Pages" -msgstr "Seiten" - -#: ../../include/widgets.php:103 -msgid "System" -msgstr "System" - -#: ../../include/widgets.php:106 -msgid "New App" -msgstr "Neue App" - -#: ../../include/widgets.php:154 -msgid "Suggestions" -msgstr "Vorschläge" - -#: ../../include/widgets.php:155 -msgid "See more..." -msgstr "Mehr anzeigen …" - -#: ../../include/widgets.php:175 -#, php-format -msgid "You have %1$.0f of %2$.0f allowed connections." -msgstr "Du bist %1$.0f von maximal %2$.0f erlaubten Verbindungen eingegangen." - -#: ../../include/widgets.php:181 -msgid "Add New Connection" -msgstr "Neue Verbindung hinzufügen" - -#: ../../include/widgets.php:182 -msgid "Enter channel address" -msgstr "Adresse des Kanals eingeben" - -#: ../../include/widgets.php:183 -msgid "Examples: bob@example.com, https://example.com/barbara" -msgstr "Beispiele: bob@beispiel.com, http://beispiel.com/barbara" - -#: ../../include/widgets.php:199 -msgid "Notes" -msgstr "Notizen" - -#: ../../include/widgets.php:273 -msgid "Remove term" -msgstr "Eintrag löschen" - -#: ../../include/widgets.php:281 ../../include/features.php:84 -msgid "Saved Searches" -msgstr "Gespeicherte Suchanfragen" - -#: ../../include/widgets.php:282 ../../include/group.php:316 -msgid "add" -msgstr "hinzufügen" - -#: ../../include/widgets.php:310 ../../include/contact_widgets.php:53 -#: ../../include/features.php:98 -msgid "Saved Folders" -msgstr "Gespeicherte Ordner" - -#: ../../include/widgets.php:313 ../../include/widgets.php:432 -#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:94 -msgid "Everything" -msgstr "Alles" - -#: ../../include/widgets.php:354 -msgid "Archives" -msgstr "Archive" - -#: ../../include/widgets.php:516 -msgid "Refresh" -msgstr "Aktualisieren" - -#: ../../include/widgets.php:556 -msgid "Account settings" -msgstr "Konto-Einstellungen" - -#: ../../include/widgets.php:562 -msgid "Channel settings" -msgstr "Kanal-Einstellungen" - -#: ../../include/widgets.php:571 -msgid "Additional features" -msgstr "Zusätzliche Funktionen" - -#: ../../include/widgets.php:578 -msgid "Feature/Addon settings" -msgstr "Plugin-Einstellungen" - -#: ../../include/widgets.php:584 -msgid "Display settings" -msgstr "Anzeige-Einstellungen" - -#: ../../include/widgets.php:591 -msgid "Manage locations" -msgstr "Klon-Adressen verwalten" - -#: ../../include/widgets.php:600 -msgid "Export channel" -msgstr "Kanal exportieren" - -#: ../../include/widgets.php:607 -msgid "Connected apps" -msgstr "Verbundene Apps" - -#: ../../include/widgets.php:622 -msgid "Premium Channel Settings" -msgstr "Premium-Kanal-Einstellungen" - -#: ../../include/widgets.php:651 -msgid "Private Mail Menu" -msgstr "Private Nachrichten" - -#: ../../include/widgets.php:653 -msgid "Combined View" -msgstr "Kombinierte Anzeige" - -#: ../../include/widgets.php:658 ../../include/nav.php:196 -msgid "Inbox" -msgstr "Eingang" - -#: ../../include/widgets.php:663 ../../include/nav.php:197 -msgid "Outbox" -msgstr "Ausgang" - -#: ../../include/widgets.php:668 ../../include/nav.php:198 -msgid "New Message" -msgstr "Neue Nachricht" - -#: ../../include/widgets.php:685 ../../include/widgets.php:697 -msgid "Conversations" -msgstr "Konversationen" - -#: ../../include/widgets.php:689 -msgid "Received Messages" -msgstr "Erhaltene Nachrichten" - -#: ../../include/widgets.php:693 -msgid "Sent Messages" -msgstr "Gesendete Nachrichten" - -#: ../../include/widgets.php:707 -msgid "No messages." -msgstr "Keine Nachrichten." - -#: ../../include/widgets.php:725 -msgid "Delete conversation" -msgstr "Unterhaltung löschen" - -#: ../../include/widgets.php:751 -msgid "Events Menu" -msgstr "Kalendermenü" - -#: ../../include/widgets.php:752 -msgid "Day View" -msgstr "Tagesansicht" - -#: ../../include/widgets.php:753 -msgid "Week View" -msgstr "Wochenansicht" - -#: ../../include/widgets.php:754 -msgid "Month View" -msgstr "Monatsansicht" - -#: ../../include/widgets.php:766 -msgid "Events Tools" -msgstr "Kalenderwerkzeuge" - -#: ../../include/widgets.php:767 -msgid "Export Calendar" -msgstr "Kalender exportieren" - -#: ../../include/widgets.php:768 -msgid "Import Calendar" -msgstr "Kalender importieren" - -#: ../../include/widgets.php:842 ../../include/conversation.php:1662 -#: ../../include/conversation.php:1665 -msgid "Chatrooms" -msgstr "Chaträume" - -#: ../../include/widgets.php:846 -msgid "Overview" -msgstr "Übersicht" - -#: ../../include/widgets.php:853 -msgid "Chat Members" -msgstr "Chatmitglieder" - -#: ../../include/widgets.php:876 -msgid "Bookmarked Chatrooms" -msgstr "Gespeicherte Chatrooms" - -#: ../../include/widgets.php:899 -msgid "Suggested Chatrooms" -msgstr "Chatraum-Vorschläge" - -#: ../../include/widgets.php:1044 ../../include/widgets.php:1156 -msgid "photo/image" -msgstr "Foto/Bild" - -#: ../../include/widgets.php:1099 -msgid "Click to show more" -msgstr "Klick, um mehr anzuzeigen" - -#: ../../include/widgets.php:1250 -msgid "Rating Tools" -msgstr "Bewertungswerkzeuge" - -#: ../../include/widgets.php:1254 ../../include/widgets.php:1256 -msgid "Rate Me" -msgstr "Bewerte mich" - -#: ../../include/widgets.php:1259 -msgid "View Ratings" -msgstr "Bewertungen ansehen" - -#: ../../include/widgets.php:1316 -msgid "Forums" -msgstr "Foren" - -#: ../../include/widgets.php:1345 -msgid "Tasks" -msgstr "Aufgaben" - -#: ../../include/widgets.php:1354 -msgid "Documentation" -msgstr "Dokumentation" - -#: ../../include/widgets.php:1356 -msgid "Project/Site Information" -msgstr "Informationen über das Projekt und diesen Hub" - -#: ../../include/widgets.php:1357 -msgid "For Members" -msgstr "Für Mitglieder" - -#: ../../include/widgets.php:1358 -msgid "For Administrators" -msgstr "Für Administratoren" - -#: ../../include/widgets.php:1359 -msgid "For Developers" -msgstr "Für Entwickler" - -#: ../../include/widgets.php:1383 ../../include/widgets.php:1421 -msgid "Member registrations waiting for confirmation" -msgstr "Nutzer-Anmeldungen, die auf Bestätigung warten" - -#: ../../include/widgets.php:1389 -msgid "Inspect queue" -msgstr "Warteschlange kontrollieren" - -#: ../../include/widgets.php:1391 -msgid "DB updates" -msgstr "DB-Aktualisierungen" - -#: ../../include/widgets.php:1416 ../../include/nav.php:216 -msgid "Admin" -msgstr "Administration" - -#: ../../include/widgets.php:1417 -msgid "Plugin Features" -msgstr "Plug-In Funktionen" - -#: ../../include/follow.php:27 -msgid "Channel is blocked on this site." -msgstr "Der Kanal ist auf dieser Seite blockiert " - -#: ../../include/follow.php:32 -msgid "Channel location missing." -msgstr "Adresse des Kanals fehlt." - -#: ../../include/follow.php:81 -msgid "Response from remote channel was incomplete." -msgstr "Antwort des entfernten Kanals war unvollständig." - -#: ../../include/follow.php:98 -msgid "Channel was deleted and no longer exists." -msgstr "Kanal wurde gelöscht und existiert nicht mehr." - -#: ../../include/follow.php:154 ../../include/follow.php:190 -msgid "Protocol disabled." -msgstr "Protokoll deaktiviert." - -#: ../../include/follow.php:178 -msgid "Channel discovery failed." -msgstr "Kanalsuche fehlgeschlagen" - -#: ../../include/follow.php:216 -msgid "Cannot connect to yourself." -msgstr "Du kannst Dich nicht mit Dir selbst verbinden." - -#: ../../include/bookmarks.php:35 -#, php-format -msgid "%1$s's bookmarks" -msgstr "%1$ss Lesezeichen" - -#: ../../include/api.php:1336 -msgid "Public Timeline" -msgstr "Öffentliche Zeitleiste" - -#: ../../include/bbcode.php:123 ../../include/bbcode.php:844 -#: ../../include/bbcode.php:847 ../../include/bbcode.php:852 -#: ../../include/bbcode.php:855 ../../include/bbcode.php:858 -#: ../../include/bbcode.php:861 ../../include/bbcode.php:866 -#: ../../include/bbcode.php:869 ../../include/bbcode.php:874 -#: ../../include/bbcode.php:877 ../../include/bbcode.php:880 -#: ../../include/bbcode.php:883 -msgid "Image/photo" -msgstr "Bild/Foto" - -#: ../../include/bbcode.php:162 ../../include/bbcode.php:894 -msgid "Encrypted content" -msgstr "Verschlüsselter Inhalt" - -#: ../../include/bbcode.php:178 -#, php-format -msgid "Install %s element: " -msgstr "Element %s installieren: " - -#: ../../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 "Dieser Beitrag beinhaltet ein installierbares %s Element, aber Du hast nicht die nötigen Rechte, um es auf diesem Hub zu installieren." - -#: ../../include/bbcode.php:254 -#, php-format -msgid "%1$s wrote the following %2$s %3$s" -msgstr "%1$s schrieb den folgenden %2$s %3$s" - -#: ../../include/bbcode.php:331 ../../include/bbcode.php:339 -msgid "Click to open/close" -msgstr "Klicke zum Öffnen/Schließen" - -#: ../../include/bbcode.php:339 -msgid "spoiler" -msgstr "Spoiler" - -#: ../../include/bbcode.php:585 -msgid "Different viewers will see this text differently" -msgstr "Verschiedene Betrachter werden diesen Text unterschiedlich sehen" - -#: ../../include/bbcode.php:832 -msgid "$1 wrote:" -msgstr "$1 schrieb:" - -#: ../../include/dir_fns.php:141 -msgid "Directory Options" -msgstr "Verzeichnisoptionen" - -#: ../../include/dir_fns.php:143 -msgid "Safe Mode" -msgstr "Sicherer Modus" - -#: ../../include/dir_fns.php:144 -msgid "Public Forums Only" -msgstr "Nur öffentliche Foren" - -#: ../../include/dir_fns.php:145 -msgid "This Website Only" -msgstr "Nur dieser Hub" - -#: ../../include/security.php:383 -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 "Das Security-Token des Formulars war nicht korrekt. Das ist wahrscheinlich passiert, weil das Formular zu lange (>3 Stunden) offen war, bevor es abgeschickt wurde." - -#: ../../include/nav.php:82 ../../include/nav.php:113 ../../boot.php:1702 -msgid "Logout" -msgstr "Abmelden" - -#: ../../include/nav.php:82 ../../include/nav.php:113 -msgid "End this session" -msgstr "Beende diese Sitzung" - -#: ../../include/nav.php:85 ../../include/nav.php:144 -msgid "Home" -msgstr "Home" - -#: ../../include/nav.php:85 -msgid "Your posts and conversations" -msgstr "Deine Beiträge und Unterhaltungen" - -#: ../../include/nav.php:86 -msgid "Your profile page" -msgstr "Deine Profilseite" - -#: ../../include/nav.php:88 -msgid "Manage/Edit profiles" -msgstr "Profile verwalten" - -#: ../../include/nav.php:90 ../../include/channel.php:941 -msgid "Edit Profile" -msgstr "Profile bearbeiten" - -#: ../../include/nav.php:90 -msgid "Edit your profile" -msgstr "Profil bearbeiten" - -#: ../../include/nav.php:92 -msgid "Your photos" -msgstr "Deine Bilder" - -#: ../../include/nav.php:93 -msgid "Your files" -msgstr "Deine Dateien" - -#: ../../include/nav.php:96 -msgid "Your chatrooms" -msgstr "Deine Chaträume" - -#: ../../include/nav.php:102 ../../include/conversation.php:1675 -msgid "Bookmarks" -msgstr "Lesezeichen" - -#: ../../include/nav.php:102 -msgid "Your bookmarks" -msgstr "Deine Lesezeichen" - -#: ../../include/nav.php:106 -msgid "Your webpages" -msgstr "Deine Webseiten" - -#: ../../include/nav.php:110 -msgid "Sign in" -msgstr "Anmelden" - -#: ../../include/nav.php:127 -#, php-format -msgid "%s - click to logout" -msgstr "%s - Klick zum Abmelden" - -#: ../../include/nav.php:130 -msgid "Remote authentication" -msgstr "Über Konto auf anderem Server einloggen" - -#: ../../include/nav.php:130 -msgid "Click to authenticate to your home hub" -msgstr "Klicke, um Dich über Deinen Heimat-Server zu authentifizieren" - -#: ../../include/nav.php:144 -msgid "Home Page" -msgstr "Homepage" - -#: ../../include/nav.php:147 -msgid "Create an account" -msgstr "Erzeuge ein Konto" - -#: ../../include/nav.php:159 -msgid "Help and documentation" -msgstr "Hilfe und Dokumentation" - -#: ../../include/nav.php:163 -msgid "Applications, utilities, links, games" -msgstr "Anwendungen (Apps), Zubehör, Links, Spiele" - -#: ../../include/nav.php:165 -msgid "Search site @name, #tag, ?docs, content" -msgstr "Hub durchsuchen: @Name. #Schlagwort, ?Dokumentation, Inhalt" - -#: ../../include/nav.php:167 -msgid "Channel Directory" -msgstr "Kanal-Verzeichnis" - -#: ../../include/nav.php:179 -msgid "Your grid" -msgstr "Dein Grid" - -#: ../../include/nav.php:180 -msgid "Mark all grid notifications seen" -msgstr "Alle Grid-Benachrichtigungen als angesehen markieren" - -#: ../../include/nav.php:182 -msgid "Channel home" -msgstr "Mein Kanal" - -#: ../../include/nav.php:183 -msgid "Mark all channel notifications seen" -msgstr "Markiere alle Kanal-Benachrichtigungen als angesehen" - -#: ../../include/nav.php:189 -msgid "Notices" -msgstr "Benachrichtigungen" - -#: ../../include/nav.php:189 -msgid "Notifications" -msgstr "Benachrichtigungen" - -#: ../../include/nav.php:190 -msgid "See all notifications" -msgstr "Alle Benachrichtigungen ansehen" - -#: ../../include/nav.php:193 -msgid "Private mail" -msgstr "Persönliche Mail" - -#: ../../include/nav.php:194 -msgid "See all private messages" -msgstr "Alle persönlichen Nachrichten ansehen" - -#: ../../include/nav.php:195 -msgid "Mark all private messages seen" -msgstr "Markiere alle persönlichen Nachrichten als gesehen" - -#: ../../include/nav.php:201 -msgid "Event Calendar" -msgstr "Terminkalender" - -#: ../../include/nav.php:202 -msgid "See all events" -msgstr "Alle Termine ansehen" - -#: ../../include/nav.php:203 -msgid "Mark all events seen" -msgstr "Markiere alle Termine als gesehen" - -#: ../../include/nav.php:206 -msgid "Manage Your Channels" -msgstr "Verwalte Deine Kanäle" - -#: ../../include/nav.php:208 -msgid "Account/Channel Settings" -msgstr "Konto-/Kanal-Einstellungen" - -#: ../../include/nav.php:216 -msgid "Site Setup and Configuration" -msgstr "Seiten-Einrichtung und -Konfiguration" - -#: ../../include/nav.php:247 ../../include/conversation.php:851 -msgid "Loading..." -msgstr "Lädt ..." - -#: ../../include/nav.php:252 -msgid "@name, #tag, ?doc, content" -msgstr "@Name, #Schlagwort, ?Dokumentation, Inhalt" - -#: ../../include/nav.php:253 -msgid "Please wait..." -msgstr "Bitte warten..." +#: ../../include/channel.php:1292 +msgid "Like this thing" +msgstr "Gefällt mir" #: ../../include/connections.php:95 msgid "New window" @@ -7775,52 +7621,6 @@ msgstr "Öffne die markierte Adresse in einem neuen Browserfenster oder Tab" msgid "User '%s' deleted" msgstr "Benutzer '%s' gelöscht" -#: ../../include/contact_widgets.php:11 -#, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "%d Einladung verfügbar" -msgstr[1] "%d Einladungen verfügbar" - -#: ../../include/contact_widgets.php:19 -msgid "Find Channels" -msgstr "Finde Kanäle" - -#: ../../include/contact_widgets.php:20 -msgid "Enter name or interest" -msgstr "Name oder Interessen eingeben" - -#: ../../include/contact_widgets.php:21 -msgid "Connect/Follow" -msgstr "Verbinden/Folgen" - -#: ../../include/contact_widgets.php:22 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "Beispiele: Robert Morgenstein, Angeln" - -#: ../../include/contact_widgets.php:26 -msgid "Random Profile" -msgstr "Zufallsprofil" - -#: ../../include/contact_widgets.php:27 -msgid "Invite Friends" -msgstr "Lade Freunde ein" - -#: ../../include/contact_widgets.php:29 -msgid "Advanced example: name=fred and country=iceland" -msgstr "Fortgeschrittenes Beispiel: name=fred and country=iceland" - -#: ../../include/contact_widgets.php:122 -#, php-format -msgid "%d connection in common" -msgid_plural "%d connections in common" -msgstr[0] "%d gemeinsame Verbindung" -msgstr[1] "%d gemeinsame Verbindungen" - -#: ../../include/contact_widgets.php:127 -msgid "show more" -msgstr "mehr zeigen" - #: ../../include/conversation.php:204 #, php-format msgid "%1$s is now connected with %2$s" @@ -7831,258 +7631,269 @@ msgstr "%1$s ist jetzt mit %2$s verbunden" msgid "%1$s poked %2$s" msgstr "%1$s stupste %2$s an" -#: ../../include/conversation.php:691 +#: ../../include/conversation.php:243 ../../include/text.php:1013 +#: ../../include/text.php:1018 +msgid "poked" +msgstr "stupste" + +#: ../../include/conversation.php:694 #, php-format msgid "View %s's profile @ %s" msgstr "%ss Profil auf %s ansehen" -#: ../../include/conversation.php:710 +#: ../../include/conversation.php:713 msgid "Categories:" msgstr "Kategorien:" -#: ../../include/conversation.php:711 +#: ../../include/conversation.php:714 msgid "Filed under:" msgstr "Gespeichert unter:" -#: ../../include/conversation.php:738 +#: ../../include/conversation.php:741 msgid "View in context" msgstr "Im Zusammenhang anschauen" -#: ../../include/conversation.php:847 +#: ../../include/conversation.php:850 msgid "remove" msgstr "lösche" -#: ../../include/conversation.php:852 +#: ../../include/conversation.php:855 msgid "Delete Selected Items" msgstr "Lösche die ausgewählten Elemente" -#: ../../include/conversation.php:948 +#: ../../include/conversation.php:951 msgid "View Source" msgstr "Quelle anzeigen" -#: ../../include/conversation.php:949 +#: ../../include/conversation.php:952 msgid "Follow Thread" msgstr "Unterhaltung folgen" -#: ../../include/conversation.php:950 +#: ../../include/conversation.php:953 msgid "Unfollow Thread" msgstr "Unterhaltung nicht mehr folgen" -#: ../../include/conversation.php:955 +#: ../../include/conversation.php:958 msgid "Activity/Posts" msgstr "Aktivitäten/Beiträge" -#: ../../include/conversation.php:957 +#: ../../include/conversation.php:960 msgid "Edit Connection" msgstr "Verbindung bearbeiten" -#: ../../include/conversation.php:958 +#: ../../include/conversation.php:961 msgid "Message" msgstr "Nachricht" -#: ../../include/conversation.php:1075 +#: ../../include/conversation.php:1078 #, php-format msgid "%s likes this." msgstr "%s gefällt das." -#: ../../include/conversation.php:1075 +#: ../../include/conversation.php:1078 #, php-format msgid "%s doesn't like this." msgstr "%s gefällt das nicht." -#: ../../include/conversation.php:1079 +#: ../../include/conversation.php:1082 #, php-format msgid "%2$d people like this." msgid_plural "%2$d people like this." msgstr[0] "%2$d Person gefällt das." msgstr[1] "%2$d Leuten gefällt das." -#: ../../include/conversation.php:1081 +#: ../../include/conversation.php:1084 #, php-format msgid "%2$d people don't like this." msgid_plural "%2$d people don't like this." msgstr[0] "%2$d Person gefällt das nicht." msgstr[1] "%2$d Leuten gefällt das nicht." -#: ../../include/conversation.php:1087 +#: ../../include/conversation.php:1090 msgid "and" msgstr "und" -#: ../../include/conversation.php:1090 +#: ../../include/conversation.php:1093 #, php-format msgid ", and %d other people" msgid_plural ", and %d other people" msgstr[0] "" msgstr[1] ", und %d andere" -#: ../../include/conversation.php:1091 +#: ../../include/conversation.php:1094 #, php-format msgid "%s like this." msgstr "%s gefällt das." -#: ../../include/conversation.php:1091 +#: ../../include/conversation.php:1094 #, php-format msgid "%s don't like this." msgstr "%s gefällt das nicht." -#: ../../include/conversation.php:1130 +#: ../../include/conversation.php:1133 msgid "Set your location" msgstr "Standort" -#: ../../include/conversation.php:1131 +#: ../../include/conversation.php:1134 msgid "Clear browser location" msgstr "Browser-Standort löschen" -#: ../../include/conversation.php:1177 +#: ../../include/conversation.php:1182 msgid "Tag term:" msgstr "Schlagwort:" -#: ../../include/conversation.php:1178 +#: ../../include/conversation.php:1183 msgid "Where are you right now?" msgstr "Wo bist Du jetzt grade?" -#: ../../include/conversation.php:1210 +#: ../../include/conversation.php:1221 msgid "Page link name" msgstr "Link zur Seite" -#: ../../include/conversation.php:1213 +#: ../../include/conversation.php:1224 msgid "Post as" msgstr "Veröffentlichen als" -#: ../../include/conversation.php:1223 +#: ../../include/conversation.php:1238 msgid "Toggle voting" msgstr "Umfragewerkzeug aktivieren" -#: ../../include/conversation.php:1231 +#: ../../include/conversation.php:1246 msgid "Categories (optional, comma-separated list)" msgstr "Kategorien (optional, kommagetrennte Liste)" -#: ../../include/conversation.php:1254 +#: ../../include/conversation.php:1269 msgid "Set publish date" msgstr "Veröffentlichungsdatum festlegen" -#: ../../include/conversation.php:1258 -msgid "OK" -msgstr "Ok" - -#: ../../include/conversation.php:1503 +#: ../../include/conversation.php:1518 msgid "Discover" msgstr "Entdecken" -#: ../../include/conversation.php:1506 +#: ../../include/conversation.php:1521 msgid "Imported public streams" msgstr "Importierte öffentliche Beiträge" -#: ../../include/conversation.php:1511 +#: ../../include/conversation.php:1526 msgid "Commented Order" msgstr "Neueste Kommentare" -#: ../../include/conversation.php:1514 +#: ../../include/conversation.php:1529 msgid "Sort by Comment Date" msgstr "Nach Kommentardatum sortiert" -#: ../../include/conversation.php:1518 +#: ../../include/conversation.php:1533 msgid "Posted Order" msgstr "Neueste Beiträge" -#: ../../include/conversation.php:1521 +#: ../../include/conversation.php:1536 msgid "Sort by Post Date" msgstr "Nach Beitragsdatum sortiert" -#: ../../include/conversation.php:1529 +#: ../../include/conversation.php:1544 msgid "Posts that mention or involve you" msgstr "Beiträge mit Beteiligung Deinerseits" -#: ../../include/conversation.php:1538 +#: ../../include/conversation.php:1553 msgid "Activity Stream - by date" msgstr "Activity Stream – nach Datum sortiert" -#: ../../include/conversation.php:1544 +#: ../../include/conversation.php:1559 msgid "Starred" msgstr "Markiert" -#: ../../include/conversation.php:1547 +#: ../../include/conversation.php:1562 msgid "Favourite Posts" msgstr "Markierte Beiträge" -#: ../../include/conversation.php:1554 +#: ../../include/conversation.php:1569 msgid "Spam" msgstr "Spam" -#: ../../include/conversation.php:1557 +#: ../../include/conversation.php:1572 msgid "Posts flagged as SPAM" msgstr "Nachrichten, die als SPAM markiert wurden" -#: ../../include/conversation.php:1614 +#: ../../include/conversation.php:1629 msgid "Status Messages and Posts" msgstr "Statusnachrichten und Beiträge" -#: ../../include/conversation.php:1623 +#: ../../include/conversation.php:1638 msgid "About" msgstr "Über" -#: ../../include/conversation.php:1626 +#: ../../include/conversation.php:1641 msgid "Profile Details" msgstr "Profil-Details" -#: ../../include/conversation.php:1635 ../../include/photos.php:502 -msgid "Photo Albums" -msgstr "Fotoalben" - -#: ../../include/conversation.php:1642 +#: ../../include/conversation.php:1657 msgid "Files and Storage" msgstr "Dateien und Speicher" -#: ../../include/conversation.php:1678 +#: ../../include/conversation.php:1677 ../../include/conversation.php:1680 +#: ../../include/widgets.php:836 +msgid "Chatrooms" +msgstr "Chaträume" + +#: ../../include/conversation.php:1693 msgid "Saved Bookmarks" msgstr "Gespeicherte Lesezeichen" -#: ../../include/conversation.php:1688 +#: ../../include/conversation.php:1703 msgid "Manage Webpages" msgstr "Webseiten verwalten" -#: ../../include/conversation.php:1747 +#: ../../include/conversation.php:1768 msgctxt "noun" msgid "Attending" msgid_plural "Attending" msgstr[0] "Zusage" msgstr[1] "Zusagen" -#: ../../include/conversation.php:1750 +#: ../../include/conversation.php:1771 msgctxt "noun" msgid "Not Attending" msgid_plural "Not Attending" msgstr[0] "Absage" msgstr[1] "Absagen" -#: ../../include/conversation.php:1753 +#: ../../include/conversation.php:1774 msgctxt "noun" msgid "Undecided" msgid_plural "Undecided" msgstr[0] " Unentschlossen" msgstr[1] "Unentschlossene" -#: ../../include/conversation.php:1756 +#: ../../include/conversation.php:1777 msgctxt "noun" msgid "Agree" msgid_plural "Agrees" msgstr[0] "Zustimmung" msgstr[1] "Zustimmungen" -#: ../../include/conversation.php:1759 +#: ../../include/conversation.php:1780 msgctxt "noun" msgid "Disagree" msgid_plural "Disagrees" msgstr[0] "Ablehnung" msgstr[1] "Ablehnungen" -#: ../../include/conversation.php:1762 +#: ../../include/conversation.php:1783 msgctxt "noun" msgid "Abstain" msgid_plural "Abstains" msgstr[0] "Enthaltung" msgstr[1] "Enthaltungen" +#: ../../include/import.php:30 +msgid "" +"Cannot create a duplicate channel identifier on this system. Import failed." +msgstr "Kann keinen doppelten Kanal-Identifikator auf diesem System erzeugen (Spitzname oder Hash schon belegt). Import fehlgeschlagen." + +#: ../../include/import.php:97 +msgid "Channel clone failed. Import failed." +msgstr "Klonen des Kanals fehlgeschlagen. Import fehlgeschlagen." + #: ../../include/selectors.php:30 msgid "Frequently" msgstr "Häufig" @@ -8147,12 +7958,6 @@ msgstr "Geschlechtslos" msgid "Non-specific" msgstr "unklar" -#: ../../include/selectors.php:49 ../../include/selectors.php:66 -#: ../../include/selectors.php:104 ../../include/selectors.php:140 -#: ../../include/permissions.php:881 -msgid "Other" -msgstr "Andere" - #: ../../include/selectors.php:49 msgid "Undecided" msgstr "Unentschieden" @@ -8329,361 +8134,366 @@ msgstr "Interessiert mich nicht" msgid "Ask me" msgstr "Frag mich mal" -#: ../../include/PermissionDescription.php:31 -#: ../../include/acl_selectors.php:232 -msgid "Visible to your default audience" -msgstr "Standard-Sichtbarkeit gemäß Kanaleinstellungen" - -#: ../../include/PermissionDescription.php:115 -#: ../../include/acl_selectors.php:268 -msgid "Only me" -msgstr "Nur ich" - -#: ../../include/PermissionDescription.php:116 -msgid "Public" -msgstr "Öffentlich" - -#: ../../include/PermissionDescription.php:117 -msgid "Anybody in the $Projectname network" -msgstr "Jeder innerhalb des $Projectname Netzwerks" - -#: ../../include/PermissionDescription.php:118 +#: ../../include/bookmarks.php:35 #, php-format -msgid "Any account on %s" -msgstr "Jedes Nutzerkonto auf %s" +msgid "%1$s's bookmarks" +msgstr "%1$ss Lesezeichen" -#: ../../include/PermissionDescription.php:119 -msgid "Any of my connections" -msgstr "Alle meine Verbindungen" +#: ../../include/security.php:109 +msgid "guest:" +msgstr "Gast:" -#: ../../include/PermissionDescription.php:120 -msgid "Only connections I specifically allow" -msgstr "Nur Verbindungen, denen ich es explizit erlaube" - -#: ../../include/PermissionDescription.php:121 -msgid "Anybody authenticated (could include visitors from other networks)" -msgstr "Jeder, der angemeldet ist (kann Besucher anderer Netzwerke beinhalten)" - -#: ../../include/PermissionDescription.php:122 -msgid "Any connections including those who haven't yet been approved" -msgstr "Alle Verbindungen einschließlich der noch nicht bestätigten" - -#: ../../include/PermissionDescription.php:161 +#: ../../include/security.php:427 msgid "" -"This is your default setting for the audience of your normal stream, and " -"posts." -msgstr "Dies ist Deine Voreinstellung für die Sichtbarkeit Deiner normalen Beiträge (Stream)." +"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 "Das Security-Token des Formulars war nicht korrekt. Das ist wahrscheinlich passiert, weil das Formular zu lange (>3 Stunden) offen war, bevor es abgeschickt wurde." -#: ../../include/PermissionDescription.php:162 +#: ../../include/text.php:404 +msgid "prev" +msgstr "vorherige" + +#: ../../include/text.php:406 +msgid "first" +msgstr "erste" + +#: ../../include/text.php:435 +msgid "last" +msgstr "letzte" + +#: ../../include/text.php:438 +msgid "next" +msgstr "nächste" + +#: ../../include/text.php:448 +msgid "older" +msgstr "älter" + +#: ../../include/text.php:450 +msgid "newer" +msgstr "neuer" + +#: ../../include/text.php:843 +msgid "No connections" +msgstr "Keine Verbindungen" + +#: ../../include/text.php:868 +#, php-format +msgid "View all %s connections" +msgstr "Alle Verbindungen von %s anzeigen" + +#: ../../include/text.php:1013 ../../include/text.php:1018 +msgid "poke" +msgstr "anstupsen" + +#: ../../include/text.php:1019 +msgid "ping" +msgstr "anpingen" + +#: ../../include/text.php:1019 +msgid "pinged" +msgstr "pingte" + +#: ../../include/text.php:1020 +msgid "prod" +msgstr "knuffen" + +#: ../../include/text.php:1020 +msgid "prodded" +msgstr "knuffte" + +#: ../../include/text.php:1021 +msgid "slap" +msgstr "ohrfeigen" + +#: ../../include/text.php:1021 +msgid "slapped" +msgstr "ohrfeigte" + +#: ../../include/text.php:1022 +msgid "finger" +msgstr "befummeln" + +#: ../../include/text.php:1022 +msgid "fingered" +msgstr "befummelte" + +#: ../../include/text.php:1023 +msgid "rebuff" +msgstr "eine Abfuhr erteilen" + +#: ../../include/text.php:1023 +msgid "rebuffed" +msgstr "zurückgewiesen" + +#: ../../include/text.php:1035 +msgid "happy" +msgstr "glücklich" + +#: ../../include/text.php:1036 +msgid "sad" +msgstr "traurig" + +#: ../../include/text.php:1037 +msgid "mellow" +msgstr "sanft" + +#: ../../include/text.php:1038 +msgid "tired" +msgstr "müde" + +#: ../../include/text.php:1039 +msgid "perky" +msgstr "frech" + +#: ../../include/text.php:1040 +msgid "angry" +msgstr "sauer" + +#: ../../include/text.php:1041 +msgid "stupefied" +msgstr "verblüfft" + +#: ../../include/text.php:1042 +msgid "puzzled" +msgstr "verwirrt" + +#: ../../include/text.php:1043 +msgid "interested" +msgstr "interessiert" + +#: ../../include/text.php:1044 +msgid "bitter" +msgstr "verbittert" + +#: ../../include/text.php:1045 +msgid "cheerful" +msgstr "fröhlich" + +#: ../../include/text.php:1046 +msgid "alive" +msgstr "lebendig" + +#: ../../include/text.php:1047 +msgid "annoyed" +msgstr "verärgert" + +#: ../../include/text.php:1048 +msgid "anxious" +msgstr "unruhig" + +#: ../../include/text.php:1049 +msgid "cranky" +msgstr "schrullig" + +#: ../../include/text.php:1050 +msgid "disturbed" +msgstr "verstört" + +#: ../../include/text.php:1051 +msgid "frustrated" +msgstr "frustriert" + +#: ../../include/text.php:1052 +msgid "depressed" +msgstr "deprimiert" + +#: ../../include/text.php:1053 +msgid "motivated" +msgstr "motiviert" + +#: ../../include/text.php:1054 +msgid "relaxed" +msgstr "entspannt" + +#: ../../include/text.php:1055 +msgid "surprised" +msgstr "überrascht" + +#: ../../include/text.php:1237 ../../include/js_strings.php:70 +msgid "Monday" +msgstr "Montag" + +#: ../../include/text.php:1237 ../../include/js_strings.php:71 +msgid "Tuesday" +msgstr "Dienstag" + +#: ../../include/text.php:1237 ../../include/js_strings.php:72 +msgid "Wednesday" +msgstr "Mittwoch" + +#: ../../include/text.php:1237 ../../include/js_strings.php:73 +msgid "Thursday" +msgstr "Donnerstag" + +#: ../../include/text.php:1237 ../../include/js_strings.php:74 +msgid "Friday" +msgstr "Freitag" + +#: ../../include/text.php:1237 ../../include/js_strings.php:75 +msgid "Saturday" +msgstr "Samstag" + +#: ../../include/text.php:1237 ../../include/js_strings.php:69 +msgid "Sunday" +msgstr "Sonntag" + +#: ../../include/text.php:1241 ../../include/js_strings.php:45 +msgid "January" +msgstr "Januar" + +#: ../../include/text.php:1241 ../../include/js_strings.php:46 +msgid "February" +msgstr "Februar" + +#: ../../include/text.php:1241 ../../include/js_strings.php:47 +msgid "March" +msgstr "März" + +#: ../../include/text.php:1241 ../../include/js_strings.php:48 +msgid "April" +msgstr "April" + +#: ../../include/text.php:1241 +msgid "May" +msgstr "Mai" + +#: ../../include/text.php:1241 ../../include/js_strings.php:50 +msgid "June" +msgstr "Juni" + +#: ../../include/text.php:1241 ../../include/js_strings.php:51 +msgid "July" +msgstr "Juli" + +#: ../../include/text.php:1241 ../../include/js_strings.php:52 +msgid "August" +msgstr "August" + +#: ../../include/text.php:1241 ../../include/js_strings.php:53 +msgid "September" +msgstr "September" + +#: ../../include/text.php:1241 ../../include/js_strings.php:54 +msgid "October" +msgstr "Oktober" + +#: ../../include/text.php:1241 ../../include/js_strings.php:55 +msgid "November" +msgstr "November" + +#: ../../include/text.php:1241 ../../include/js_strings.php:56 +msgid "December" +msgstr "Dezember" + +#: ../../include/text.php:1318 ../../include/text.php:1322 +msgid "Unknown Attachment" +msgstr "Unbekannter Anhang" + +#: ../../include/text.php:1324 +msgid "unknown" +msgstr "unbekannt" + +#: ../../include/text.php:1360 +msgid "remove category" +msgstr "Kategorie entfernen" + +#: ../../include/text.php:1437 +msgid "remove from file" +msgstr "aus der Datei entfernen" + +#: ../../include/text.php:1734 ../../include/text.php:1805 +msgid "default" +msgstr "Standard" + +#: ../../include/text.php:1742 +msgid "Page layout" +msgstr "Seiten-Layout" + +#: ../../include/text.php:1742 +msgid "You can create your own with the layouts tool" +msgstr "Mit dem Gestaltungswerkzeug kannst Du Deine eigenen Layouts erstellen" + +#: ../../include/text.php:1784 +msgid "Page content type" +msgstr "Art des Seiteninhalts" + +#: ../../include/text.php:1817 +msgid "Select an alternate language" +msgstr "Wähle eine alternative Sprache" + +#: ../../include/text.php:1934 +msgid "activity" +msgstr "Aktivität" + +#: ../../include/text.php:2235 +msgid "Design Tools" +msgstr "Gestaltungswerkzeuge" + +#: ../../include/text.php:2241 +msgid "Pages" +msgstr "Seiten" + +#: ../../include/auth.php:147 +msgid "Logged out." +msgstr "Ausgeloggt." + +#: ../../include/auth.php:274 +msgid "Failed authentication" +msgstr "Authentifizierung fehlgeschlagen" + +#: ../../include/permissions.php:26 +msgid "Can view my normal stream and posts" +msgstr "Kann meine normalen Beiträge sehen" + +#: ../../include/permissions.php:30 +msgid "Can view my webpages" +msgstr "Kann meine Webseiten sehen" + +#: ../../include/permissions.php:34 +msgid "Can post on my channel page (\"wall\")" +msgstr "Kann auf meiner Kanal-Seite (\"wall\") Beiträge veröffentlichen" + +#: ../../include/permissions.php:37 +msgid "Can like/dislike stuff" +msgstr "Kann andere Elemente mögen/nicht mögen" + +#: ../../include/permissions.php:37 +msgid "Profiles and things other than posts/comments" +msgstr "Profile und alles außer Beiträge und Kommentare" + +#: ../../include/permissions.php:39 +msgid "Can forward to all my channel contacts via post @mentions" +msgstr "Kann an alle meine Kontakte via @-Erwähnung Nachrichten weiterleiten" + +#: ../../include/permissions.php:39 +msgid "Advanced - useful for creating group forum channels" +msgstr "Fortgeschritten - sinnvoll, um Gruppen-Kanäle/-Foren zu erstellen" + +#: ../../include/permissions.php:40 +msgid "Can chat with me (when available)" +msgstr "Kann mit mir chatten (wenn verfügbar)" + +#: ../../include/permissions.php:41 +msgid "Can write to my file storage and photos" +msgstr "Kann in meine Datei- und Bilderordner schreiben" + +#: ../../include/permissions.php:42 +msgid "Can edit my webpages" +msgstr "Kann meine Webseiten bearbeiten" + +#: ../../include/permissions.php:44 +msgid "Somewhat advanced - very useful in open communities" +msgstr "Etwas fortgeschritten – sehr nützlich in offenen Gemeinschaften" + +#: ../../include/permissions.php:46 +msgid "Can administer my channel resources" +msgstr "Kann meine Kanäle administrieren" + +#: ../../include/permissions.php:46 msgid "" -"This is your default setting for who can view your default channel profile" -msgstr "Dies ist Deine Voreinstellung für die Sichtbarkeit Deines Standard-Kanalprofils." - -#: ../../include/PermissionDescription.php:163 -msgid "This is your default setting for who can view your connections" -msgstr "Dies ist Deine Voreinstellung für die Sichtbarkeit Deiner Verbindungen." - -#: ../../include/PermissionDescription.php:164 -msgid "" -"This is your default setting for who can view your file storage and photos" -msgstr "Dies ist Deine Voreinstellung für die Sichtbarkeit Deiner Dateien und Fotos." - -#: ../../include/PermissionDescription.php:165 -msgid "This is your default setting for the audience of your webpages" -msgstr "Dies ist Deine Voreinstellung für die Sichtbarkeit Deiner Webseiten." - -#: ../../include/account.php:28 -msgid "Not a valid email address" -msgstr "Ungültige E-Mail-Adresse" - -#: ../../include/account.php:30 -msgid "Your email domain is not among those allowed on this site" -msgstr "Deine E-Mail-Adresse ist auf dieser Seite nicht erlaubt" - -#: ../../include/account.php:36 -msgid "Your email address is already registered at this site." -msgstr "Deine E-Mail-Adresse ist auf dieser Seite bereits registriert." - -#: ../../include/account.php:68 -msgid "An invitation is required." -msgstr "Eine Einladung wird benötigt." - -#: ../../include/account.php:72 -msgid "Invitation could not be verified." -msgstr "Die Einladung konnte nicht bestätigt werden." - -#: ../../include/account.php:122 -msgid "Please enter the required information." -msgstr "Bitte gib die benötigten Informationen ein." - -#: ../../include/account.php:189 -msgid "Failed to store account information." -msgstr "Speichern der Nutzerkontodaten fehlgeschlagen." - -#: ../../include/account.php:249 -#, php-format -msgid "Registration confirmation for %s" -msgstr "Registrierungsbestätigung für %s" - -#: ../../include/account.php:315 -#, php-format -msgid "Registration request at %s" -msgstr "Registrierungsanfrage auf %s" - -#: ../../include/account.php:317 ../../include/account.php:344 -#: ../../include/account.php:404 ../../include/network.php:1871 -msgid "Administrator" -msgstr "Administrator" - -#: ../../include/account.php:339 -msgid "your registration password" -msgstr "Dein Registrierungspasswort" - -#: ../../include/account.php:342 ../../include/account.php:402 -#, php-format -msgid "Registration details for %s" -msgstr "Registrierungsdetails für %s" - -#: ../../include/account.php:414 -msgid "Account approved." -msgstr "Nutzerkonto bestätigt." - -#: ../../include/account.php:454 -#, php-format -msgid "Registration revoked for %s" -msgstr "Registrierung für %s wurde widerrufen" - -#: ../../include/account.php:506 -msgid "Account verified. Please login." -msgstr "Nutzerkonto wurde bestätigt. Bitte melde Dich an!" - -#: ../../include/account.php:723 ../../include/account.php:725 -msgid "Click here to upgrade." -msgstr "Klicke hier, um das Upgrade durchzuführen." - -#: ../../include/account.php:731 -msgid "This action exceeds the limits set by your subscription plan." -msgstr "Diese Aktion überschreitet die Grenzen Ihres Abonnements." - -#: ../../include/account.php:736 -msgid "This action is not available under your subscription plan." -msgstr "Diese Aktion ist in Ihrem Abonnement nicht verfügbar." - -#: ../../include/attach.php:247 ../../include/attach.php:333 -msgid "Item was not found." -msgstr "Beitrag wurde nicht gefunden." - -#: ../../include/attach.php:497 -msgid "No source file." -msgstr "Keine Quelldatei." - -#: ../../include/attach.php:519 -msgid "Cannot locate file to replace" -msgstr "Kann Datei zum Ersetzen nicht finden" - -#: ../../include/attach.php:537 -msgid "Cannot locate file to revise/update" -msgstr "Kann Datei zum Prüfen/Aktualisieren nicht finden" - -#: ../../include/attach.php:672 -#, php-format -msgid "File exceeds size limit of %d" -msgstr "Datei überschreitet das Größen-Limit von %d" - -#: ../../include/attach.php:686 -#, php-format -msgid "You have reached your limit of %1$.0f Mbytes attachment storage." -msgstr "Die Größe Deiner Datei-Anhänge hat das Maximum von %1$.0f MByte erreicht." - -#: ../../include/attach.php:842 -msgid "File upload failed. Possible system limit or action terminated." -msgstr "Datei-Upload fehlgeschlagen. Mögliche Systembegrenzung oder abgebrochener Prozess." - -#: ../../include/attach.php:855 -msgid "Stored file could not be verified. Upload failed." -msgstr "Gespeichert Datei konnte nicht verifiziert werden. Upload abgebrochen." - -#: ../../include/attach.php:909 ../../include/attach.php:925 -msgid "Path not available." -msgstr "Pfad nicht verfügbar." - -#: ../../include/attach.php:971 ../../include/attach.php:1123 -msgid "Empty pathname" -msgstr "Leere Pfadangabe" - -#: ../../include/attach.php:997 -msgid "duplicate filename or path" -msgstr "doppelter Dateiname oder Pfad" - -#: ../../include/attach.php:1019 -msgid "Path not found." -msgstr "Pfad nicht gefunden." - -#: ../../include/attach.php:1077 -msgid "mkdir failed." -msgstr "mkdir fehlgeschlagen." - -#: ../../include/attach.php:1081 -msgid "database storage failed." -msgstr "Speichern in der Datenbank fehlgeschlagen." - -#: ../../include/attach.php:1129 -msgid "Empty path" -msgstr "Leere Pfadangabe" - -#: ../../include/channel.php:32 -msgid "Unable to obtain identity information from database" -msgstr "Kann keine Identitäts-Informationen aus Datenbank beziehen" - -#: ../../include/channel.php:66 -msgid "Empty name" -msgstr "Namensfeld leer" - -#: ../../include/channel.php:69 -msgid "Name too long" -msgstr "Name ist zu lang" - -#: ../../include/channel.php:180 -msgid "No account identifier" -msgstr "Keine Account-Kennung" - -#: ../../include/channel.php:192 -msgid "Nickname is required." -msgstr "Spitzname ist erforderlich." - -#: ../../include/channel.php:206 -msgid "Reserved nickname. Please choose another." -msgstr "Reservierter Kurzname. Bitte wähle einen anderen." - -#: ../../include/channel.php:211 -msgid "" -"Nickname has unsupported characters or is already being used on this site." -msgstr "Der Spitzname enthält nicht-unterstütze Zeichen oder wird bereits auf dieser Seite genutzt." - -#: ../../include/channel.php:287 -msgid "Unable to retrieve created identity" -msgstr "Kann die erstellte Identität nicht empfangen" - -#: ../../include/channel.php:345 -msgid "Default Profile" -msgstr "Standard-Profil" - -#: ../../include/channel.php:791 -msgid "Requested channel is not available." -msgstr "Angeforderte Kanal nicht verfügbar." - -#: ../../include/channel.php:938 -msgid "Create New Profile" -msgstr "Neues Profil erstellen" - -#: ../../include/channel.php:958 -msgid "Visible to everybody" -msgstr "Für jeden sichtbar" - -#: ../../include/channel.php:1031 ../../include/channel.php:1142 -msgid "Gender:" -msgstr "Geschlecht:" - -#: ../../include/channel.php:1032 ../../include/channel.php:1186 -msgid "Status:" -msgstr "Status:" - -#: ../../include/channel.php:1033 ../../include/channel.php:1197 -msgid "Homepage:" -msgstr "Homepage:" - -#: ../../include/channel.php:1034 -msgid "Online Now" -msgstr "gerade online" - -#: ../../include/channel.php:1147 -msgid "Like this channel" -msgstr "Dieser Kanal gefällt mir" - -#: ../../include/channel.php:1171 -msgid "j F, Y" -msgstr "j. F Y" - -#: ../../include/channel.php:1172 -msgid "j F" -msgstr "j. F" - -#: ../../include/channel.php:1179 -msgid "Birthday:" -msgstr "Geburtstag:" - -#: ../../include/channel.php:1192 -#, php-format -msgid "for %1$d %2$s" -msgstr "seit %1$d %2$s" - -#: ../../include/channel.php:1195 -msgid "Sexual Preference:" -msgstr "Sexuelle Orientierung:" - -#: ../../include/channel.php:1201 -msgid "Tags:" -msgstr "Schlagworte:" - -#: ../../include/channel.php:1203 -msgid "Political Views:" -msgstr "Politische Ansichten:" - -#: ../../include/channel.php:1205 -msgid "Religion:" -msgstr "Religion:" - -#: ../../include/channel.php:1209 -msgid "Hobbies/Interests:" -msgstr "Hobbys/Interessen:" - -#: ../../include/channel.php:1211 -msgid "Likes:" -msgstr "Gefällt:" - -#: ../../include/channel.php:1213 -msgid "Dislikes:" -msgstr "Gefällt nicht:" - -#: ../../include/channel.php:1215 -msgid "Contact information and Social Networks:" -msgstr "Kontaktinformation und soziale Netzwerke:" - -#: ../../include/channel.php:1217 -msgid "My other channels:" -msgstr "Meine anderen Kanäle:" - -#: ../../include/channel.php:1219 -msgid "Musical interests:" -msgstr "Musikalische Interessen:" - -#: ../../include/channel.php:1221 -msgid "Books, literature:" -msgstr "Bücher, Literatur:" - -#: ../../include/channel.php:1223 -msgid "Television:" -msgstr "Fernsehen:" - -#: ../../include/channel.php:1225 -msgid "Film/dance/culture/entertainment:" -msgstr "Film/Tanz/Kultur/Unterhaltung:" - -#: ../../include/channel.php:1227 -msgid "Love/Romance:" -msgstr "Liebe/Romantik:" - -#: ../../include/channel.php:1229 -msgid "Work/employment:" -msgstr "Arbeit/Anstellung:" - -#: ../../include/channel.php:1231 -msgid "School/education:" -msgstr "Schule/Ausbildung:" - -#: ../../include/channel.php:1251 -msgid "Like this thing" -msgstr "Gefällt mir" +"Extremely advanced. Leave this alone unless you know what you are doing" +msgstr "Sehr fortgeschritten. Bearbeite das nur, wenn Du genau weißt, was Du tust" #: ../../include/features.php:48 msgid "General Features" @@ -8730,378 +8540,257 @@ msgid "Provide managed web pages on your channel" msgstr "Ermöglicht das Erstellen von Webseiten in Deinem Kanal" #: ../../include/features.php:55 +msgid "Provide a wiki for your channel" +msgstr "Stelle ein Wiki in Deinem Kanal zur Verfügung" + +#: ../../include/features.php:56 msgid "Hide Rating" msgstr "Bewertung verbergen" -#: ../../include/features.php:55 +#: ../../include/features.php:56 msgid "" "Hide the rating buttons on your channel and profile pages. Note: People can " "still rate you somewhere else." msgstr "Verberge die Buttons zur Bewertung auf deiner Profil-Seite und deinem Kanal. Hinweis: Leute können dich weiterhin andernorts bewerten." -#: ../../include/features.php:56 +#: ../../include/features.php:57 msgid "Private Notes" msgstr "Private Notizen" -#: ../../include/features.php:56 +#: ../../include/features.php:57 msgid "Enables a tool to store notes and reminders (note: not encrypted)" msgstr "Aktiviert ein Werkzeug mit dem Notizen und Erinnerungen gespeichert werden können (Hinweis: nicht verschlüsselt)" -#: ../../include/features.php:57 +#: ../../include/features.php:58 msgid "Navigation Channel Select" msgstr "Kanal-Auswahl in der Navigationsleiste" -#: ../../include/features.php:57 +#: ../../include/features.php:58 msgid "Change channels directly from within the navigation dropdown menu" msgstr "Ermöglicht den direkten Wechsel zu anderen Kanälen über das Navigationsmenü" -#: ../../include/features.php:58 +#: ../../include/features.php:59 msgid "Photo Location" msgstr "Aufnahmeort" -#: ../../include/features.php:58 +#: ../../include/features.php:59 msgid "If location data is available on uploaded photos, link this to a map." msgstr "Verlinkt den Aufnahmeort von Fotos (falls verfügbar) auf einer Karte" -#: ../../include/features.php:59 +#: ../../include/features.php:60 msgid "Access Controlled Chatrooms" msgstr "Zugriffskontrollierte Chaträume" -#: ../../include/features.php:59 +#: ../../include/features.php:60 msgid "Provide chatrooms and chat services with access control." msgstr "Bieten Sie Chaträume und Chatdienste mit Zugriffskontrolle an." -#: ../../include/features.php:60 +#: ../../include/features.php:61 msgid "Smart Birthdays" msgstr "Smarte Geburtstage" -#: ../../include/features.php:60 +#: ../../include/features.php:61 msgid "" "Make birthday events timezone aware in case your friends are scattered " "across the planet." msgstr "Stellt für Geburtstage einen Zeitzonenbezug her, falls deine Freunde über den ganzen Planeten verstreut sind." -#: ../../include/features.php:61 +#: ../../include/features.php:62 msgid "Expert Mode" msgstr "Expertenmodus" -#: ../../include/features.php:61 +#: ../../include/features.php:62 msgid "Enable Expert Mode to provide advanced configuration options" msgstr "Aktiviert den Expertenmodus, der fortgeschrittene Konfigurationsoptionen zur Verfügung stellt" -#: ../../include/features.php:62 +#: ../../include/features.php:63 msgid "Premium Channel" msgstr "Premium-Kanal" -#: ../../include/features.php:62 +#: ../../include/features.php:63 msgid "" "Allows you to set restrictions and terms on those that connect with your " "channel" msgstr "Ermöglicht es, Einschränkungen und Bedingungen für Verbindungen dieses Kanals festzulegen" -#: ../../include/features.php:67 +#: ../../include/features.php:68 msgid "Post Composition Features" msgstr "Nachbearbeitungsfunktionen" -#: ../../include/features.php:70 +#: ../../include/features.php:71 msgid "Large Photos" msgstr "Große Fotos" -#: ../../include/features.php:70 +#: ../../include/features.php:71 msgid "" "Include large (1024px) photo thumbnails in posts. If not enabled, use small " "(640px) photo thumbnails" msgstr "Große Vorschaubilder (1024px) in Beiträgen anzeigen. Falls nicht aktiviert, werden kleine Vorschaubilder (640px) verwendet." -#: ../../include/features.php:71 +#: ../../include/features.php:72 msgid "Automatically import channel content from other channels or feeds" msgstr "Ermöglicht den automatischen Import von Inhalten für diesen Kanal von anderen Kanälen oder Feeds" -#: ../../include/features.php:72 +#: ../../include/features.php:73 msgid "Even More Encryption" msgstr "Noch mehr Verschlüsselung" -#: ../../include/features.php:72 +#: ../../include/features.php:73 msgid "" "Allow optional encryption of content end-to-end with a shared secret key" msgstr "Ermöglicht optional die zusätzliche Verschlüsselung von Inhalten (Ende-zu-Ende mit geteiltem Schlüssel)" -#: ../../include/features.php:73 +#: ../../include/features.php:74 msgid "Enable Voting Tools" msgstr "Umfragewerkzeuge aktivieren" -#: ../../include/features.php:73 +#: ../../include/features.php:74 msgid "Provide a class of post which others can vote on" msgstr "Aktiviert die Umfragewerkzeuge, um anderen die Möglichkeit zu geben, einem Beitrag zuzustimmen, ihn abzulehnen oder sich zu enthalten. (Muss im Beitrag selbst noch aktiviert werden.)" -#: ../../include/features.php:74 +#: ../../include/features.php:75 msgid "Delayed Posting" msgstr "Verzögertes Senden" -#: ../../include/features.php:74 +#: ../../include/features.php:75 msgid "Allow posts to be published at a later date" msgstr "Ermöglicht es, Beiträge zu einem späteren Zeitpunkt zu veröffentlichen" -#: ../../include/features.php:75 +#: ../../include/features.php:76 msgid "Suppress Duplicate Posts/Comments" msgstr "Doppelte Beiträge unterdrücken" -#: ../../include/features.php:75 +#: ../../include/features.php:76 msgid "" "Prevent posts with identical content to be published with less than two " "minutes in between submissions." msgstr "Verhindert, dass innerhalb von zwei Minuten Beiträge mit identischem Inhalt veröffentlicht werden." -#: ../../include/features.php:81 +#: ../../include/features.php:82 msgid "Network and Stream Filtering" msgstr "Netzwerk- und Stream-Filter" -#: ../../include/features.php:82 +#: ../../include/features.php:83 msgid "Search by Date" msgstr "Suche nach Datum" -#: ../../include/features.php:82 +#: ../../include/features.php:83 msgid "Ability to select posts by date ranges" msgstr "Möglichkeit, Beiträge nach Zeiträumen auszuwählen" -#: ../../include/features.php:83 ../../include/group.php:311 +#: ../../include/features.php:84 ../../include/group.php:311 msgid "Privacy Groups" msgstr "Gruppen" -#: ../../include/features.php:83 +#: ../../include/features.php:84 msgid "Enable management and selection of privacy groups" msgstr "Auswahl und Verwaltung von Gruppen für Kanäle aktivieren" -#: ../../include/features.php:84 +#: ../../include/features.php:85 ../../include/widgets.php:281 +msgid "Saved Searches" +msgstr "Gespeicherte Suchanfragen" + +#: ../../include/features.php:85 msgid "Save search terms for re-use" msgstr "Ermöglicht das Abspeichern von Suchbegriffen zur Wiederverwendung" -#: ../../include/features.php:85 +#: ../../include/features.php:86 msgid "Network Personal Tab" msgstr "Persönlicher Netzwerkreiter" -#: ../../include/features.php:85 +#: ../../include/features.php:86 msgid "Enable tab to display only Network posts that you've interacted on" msgstr "Aktiviert einen Reiter in der Grid-Ansicht, der nur Netzwerk-Beiträge anzeigt, mit denen Du interagiert hast" -#: ../../include/features.php:86 +#: ../../include/features.php:87 msgid "Network New Tab" msgstr "Netzwerkreiter Neu" -#: ../../include/features.php:86 +#: ../../include/features.php:87 msgid "Enable tab to display all new Network activity" msgstr "Aktiviert einen Reiter in der Grid-Ansicht, der alle neuen Netzwerkaktivitäten anzeigt" -#: ../../include/features.php:87 +#: ../../include/features.php:88 msgid "Affinity Tool" msgstr "Beziehungs-Tool" -#: ../../include/features.php:87 +#: ../../include/features.php:88 msgid "Filter stream activity by depth of relationships" msgstr "Aktiviert ein Werkzeug in der Grid-Ansicht, das den Stream nach Grad der Beziehung filtern kann" -#: ../../include/features.php:88 +#: ../../include/features.php:89 msgid "Connection Filtering" msgstr "Filter für Verbindungen" -#: ../../include/features.php:88 +#: ../../include/features.php:89 msgid "Filter incoming posts from connections based on keywords/content" msgstr "Ermöglicht die Filterung eingehender Beiträge anhand von Schlüsselwörtern (muss an der Verbindung konfiguriert werden)" -#: ../../include/features.php:89 +#: ../../include/features.php:90 msgid "Show channel suggestions" msgstr "Kanalvorschläge anzeigen" -#: ../../include/features.php:94 +#: ../../include/features.php:95 msgid "Post/Comment Tools" msgstr "Beitrag-/Kommentar-Tools" -#: ../../include/features.php:95 +#: ../../include/features.php:96 msgid "Community Tagging" msgstr "Gemeinschaftliches Verschlagworten" -#: ../../include/features.php:95 +#: ../../include/features.php:96 msgid "Ability to tag existing posts" msgstr "Ermöglicht das Verschlagworten existierender Beiträge" -#: ../../include/features.php:96 +#: ../../include/features.php:97 msgid "Post Categories" msgstr "Beitrags-Kategorien" -#: ../../include/features.php:96 +#: ../../include/features.php:97 msgid "Add categories to your posts" msgstr "Aktiviert Kategorien für Beiträge" -#: ../../include/features.php:97 +#: ../../include/features.php:98 msgid "Emoji Reactions" msgstr "Emoji Reaktionen" -#: ../../include/features.php:97 +#: ../../include/features.php:98 msgid "Add emoji reaction ability to posts" msgstr "Aktiviert Emoji-Reaktionen für Beiträge" -#: ../../include/features.php:98 +#: ../../include/features.php:99 ../../include/widgets.php:310 +#: ../../include/contact_widgets.php:53 +msgid "Saved Folders" +msgstr "Gespeicherte Ordner" + +#: ../../include/features.php:99 msgid "Ability to file posts under folders" msgstr "Möglichkeit, Beiträge in Verzeichnissen zu sammeln" -#: ../../include/features.php:99 +#: ../../include/features.php:100 msgid "Dislike Posts" msgstr "Gefällt-mir-nicht-Beiträge" -#: ../../include/features.php:99 +#: ../../include/features.php:100 msgid "Ability to dislike posts/comments" msgstr "Aktiviert die „Gefällt mir nicht“-Schaltfläche" -#: ../../include/features.php:100 +#: ../../include/features.php:101 msgid "Star Posts" msgstr "Beiträge mit Sternchen versehen" -#: ../../include/features.php:100 +#: ../../include/features.php:101 msgid "Ability to mark special posts with a star indicator" msgstr "Ermöglicht die lokale Markierung spezieller Beiträge mit einem Sternchen-Symbol" -#: ../../include/features.php:101 +#: ../../include/features.php:102 msgid "Tag Cloud" msgstr "Schlagwort-Wolke" -#: ../../include/features.php:101 +#: ../../include/features.php:102 msgid "Provide a personal tag cloud on your channel page" msgstr "Aktiviert die Anzeige einer Schlagwort-Wolke (Tag Cloud) auf Deiner Kanal-Seite" -#: ../../include/oembed.php:324 -msgid "Embedded content" -msgstr "Eingebetteter Inhalt" - -#: ../../include/oembed.php:333 -msgid "Embedding disabled" -msgstr "Einbetten ausgeschaltet" - -#: ../../include/acl_selectors.php:271 -msgid "Who can see this?" -msgstr "Wer kann das sehen?" - -#: ../../include/acl_selectors.php:272 -msgid "Custom selection" -msgstr "Benutzerdefinierte Auswahl" - -#: ../../include/acl_selectors.php:273 -msgid "" -"Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit" -" the scope of \"Show\"." -msgstr "Wähle \"Anzeigen\", um Betrachtung zuzulassen. \"Nicht anzeigen\" überstimmt und limitiert den Aktionsradius von \"Anzeigen\" für Ausnahmen." - -#: ../../include/acl_selectors.php:274 -msgid "Show" -msgstr "Anzeigen" - -#: ../../include/acl_selectors.php:275 -msgid "Don't show" -msgstr "Nicht anzeigen" - -#: ../../include/acl_selectors.php:281 -msgid "Other networks and post services" -msgstr "Andere Netzwerke und Platformen" - -#: ../../include/acl_selectors.php:311 -#, php-format -msgid "" -"Post permissions %s cannot be changed %s after a post is shared.
These" -" permissions set who is allowed to view the post." -msgstr "Beitragsberechtigungen %s können nicht geändert werden %s, nachdem der Beitrag gesendet wurde.
Diese Berechtigungen bestimmen, wer den Beitrag sehen kann." - -#: ../../include/auth.php:105 -msgid "Logged out." -msgstr "Ausgeloggt." - -#: ../../include/auth.php:212 -msgid "Failed authentication" -msgstr "Authentifizierung fehlgeschlagen" - -#: ../../include/datetime.php:135 -msgid "Birthday" -msgstr "Geburtstag" - -#: ../../include/datetime.php:137 -msgid "Age: " -msgstr "Alter:" - -#: ../../include/datetime.php:139 -msgid "YYYY-MM-DD or MM-DD" -msgstr "JJJJ-MM-TT oder MM-TT" - -#: ../../include/datetime.php:272 ../../boot.php:2470 -msgid "never" -msgstr "Nie" - -#: ../../include/datetime.php:278 -msgid "less than a second ago" -msgstr "Vor weniger als einer Sekunde" - -#: ../../include/datetime.php:296 -#, php-format -msgctxt "e.g. 22 hours ago, 1 minute ago" -msgid "%1$d %2$s ago" -msgstr "vor %1$d %2$s" - -#: ../../include/datetime.php:307 -msgctxt "relative_date" -msgid "year" -msgid_plural "years" -msgstr[0] "Jahr" -msgstr[1] "Jahre" - -#: ../../include/datetime.php:310 -msgctxt "relative_date" -msgid "month" -msgid_plural "months" -msgstr[0] "Monat" -msgstr[1] "Monate" - -#: ../../include/datetime.php:313 -msgctxt "relative_date" -msgid "week" -msgid_plural "weeks" -msgstr[0] "Woche" -msgstr[1] "Wochen" - -#: ../../include/datetime.php:316 -msgctxt "relative_date" -msgid "day" -msgid_plural "days" -msgstr[0] "Tag" -msgstr[1] "Tage" - -#: ../../include/datetime.php:319 -msgctxt "relative_date" -msgid "hour" -msgid_plural "hours" -msgstr[0] "Stunde" -msgstr[1] "Stunden" - -#: ../../include/datetime.php:322 -msgctxt "relative_date" -msgid "minute" -msgid_plural "minutes" -msgstr[0] "Minute" -msgstr[1] "Minuten" - -#: ../../include/datetime.php:325 -msgctxt "relative_date" -msgid "second" -msgid_plural "seconds" -msgstr[0] "Sekunde" -msgstr[1] "Sekunden" - -#: ../../include/datetime.php:562 -#, php-format -msgid "%1$s's birthday" -msgstr "%1$ss Geburtstag" - -#: ../../include/datetime.php:563 -#, php-format -msgid "Happy Birthday %1$s" -msgstr "Alles Gute zum Geburtstag, %1$s" - #: ../../include/group.php:26 msgid "" "A deleted group with this name was revived. Existing item permissions " @@ -9129,21 +8818,583 @@ msgstr "Gruppe hinzufügen" msgid "Channels not in any privacy group" msgstr "Kanäle, die in keiner Gruppe sind" +#: ../../include/group.php:316 ../../include/widgets.php:282 +msgid "add" +msgstr "hinzufügen" + +#: ../../include/event.php:22 ../../include/event.php:69 +#: ../../include/bb2diaspora.php:485 +msgid "l F d, Y \\@ g:i A" +msgstr "l, d. F Y, H:i" + +#: ../../include/event.php:30 ../../include/event.php:73 +#: ../../include/bb2diaspora.php:491 +msgid "Starts:" +msgstr "Beginnt:" + +#: ../../include/event.php:40 ../../include/event.php:77 +#: ../../include/bb2diaspora.php:499 +msgid "Finishes:" +msgstr "Endet:" + +#: ../../include/event.php:814 +msgid "This event has been added to your calendar." +msgstr "Dieser Termin wurde zu Deinem Kalender hinzugefügt" + +#: ../../include/event.php:1014 +msgid "Not specified" +msgstr "Keine Angabe" + +#: ../../include/event.php:1015 +msgid "Needs Action" +msgstr "Aktion erforderlich" + +#: ../../include/event.php:1016 +msgid "Completed" +msgstr "Abgeschlossen" + +#: ../../include/event.php:1017 +msgid "In Process" +msgstr "In Bearbeitung" + +#: ../../include/event.php:1018 +msgid "Cancelled" +msgstr "gestrichen" + +#: ../../include/account.php:28 +msgid "Not a valid email address" +msgstr "Ungültige E-Mail-Adresse" + +#: ../../include/account.php:30 +msgid "Your email domain is not among those allowed on this site" +msgstr "Deine E-Mail-Adresse ist auf dieser Seite nicht erlaubt" + +#: ../../include/account.php:36 +msgid "Your email address is already registered at this site." +msgstr "Deine E-Mail-Adresse ist auf dieser Seite bereits registriert." + +#: ../../include/account.php:68 +msgid "An invitation is required." +msgstr "Eine Einladung wird benötigt." + +#: ../../include/account.php:72 +msgid "Invitation could not be verified." +msgstr "Die Einladung konnte nicht bestätigt werden." + +#: ../../include/account.php:122 +msgid "Please enter the required information." +msgstr "Bitte gib die benötigten Informationen ein." + +#: ../../include/account.php:189 +msgid "Failed to store account information." +msgstr "Speichern der Nutzerkontodaten fehlgeschlagen." + +#: ../../include/account.php:249 +#, php-format +msgid "Registration confirmation for %s" +msgstr "Registrierungsbestätigung für %s" + +#: ../../include/account.php:315 +#, php-format +msgid "Registration request at %s" +msgstr "Registrierungsanfrage auf %s" + +#: ../../include/account.php:339 +msgid "your registration password" +msgstr "Dein Registrierungspasswort" + +#: ../../include/account.php:342 ../../include/account.php:402 +#, php-format +msgid "Registration details for %s" +msgstr "Registrierungsdetails für %s" + +#: ../../include/account.php:414 +msgid "Account approved." +msgstr "Nutzerkonto bestätigt." + +#: ../../include/account.php:454 +#, php-format +msgid "Registration revoked for %s" +msgstr "Registrierung für %s wurde widerrufen" + +#: ../../include/account.php:739 ../../include/account.php:741 +msgid "Click here to upgrade." +msgstr "Klicke hier, um das Upgrade durchzuführen." + +#: ../../include/account.php:747 +msgid "This action exceeds the limits set by your subscription plan." +msgstr "Diese Aktion überschreitet die Grenzen Ihres Abonnements." + +#: ../../include/account.php:752 +msgid "This action is not available under your subscription plan." +msgstr "Diese Aktion ist in Ihrem Abonnement nicht verfügbar." + +#: ../../include/follow.php:27 +msgid "Channel is blocked on this site." +msgstr "Der Kanal ist auf dieser Seite blockiert " + +#: ../../include/follow.php:32 +msgid "Channel location missing." +msgstr "Adresse des Kanals fehlt." + +#: ../../include/follow.php:80 +msgid "Response from remote channel was incomplete." +msgstr "Antwort des entfernten Kanals war unvollständig." + +#: ../../include/follow.php:97 +msgid "Channel was deleted and no longer exists." +msgstr "Kanal wurde gelöscht und existiert nicht mehr." + +#: ../../include/follow.php:147 ../../include/follow.php:183 +msgid "Protocol disabled." +msgstr "Protokoll deaktiviert." + +#: ../../include/follow.php:171 +msgid "Channel discovery failed." +msgstr "Kanalsuche fehlgeschlagen" + +#: ../../include/follow.php:210 +msgid "Cannot connect to yourself." +msgstr "Du kannst Dich nicht mit Dir selbst verbinden." + +#: ../../include/attach.php:247 ../../include/attach.php:333 +msgid "Item was not found." +msgstr "Beitrag wurde nicht gefunden." + +#: ../../include/attach.php:499 +msgid "No source file." +msgstr "Keine Quelldatei." + +#: ../../include/attach.php:521 +msgid "Cannot locate file to replace" +msgstr "Kann Datei zum Ersetzen nicht finden" + +#: ../../include/attach.php:539 +msgid "Cannot locate file to revise/update" +msgstr "Kann Datei zum Prüfen/Aktualisieren nicht finden" + +#: ../../include/attach.php:674 +#, php-format +msgid "File exceeds size limit of %d" +msgstr "Datei überschreitet das Größen-Limit von %d" + +#: ../../include/attach.php:688 +#, php-format +msgid "You have reached your limit of %1$.0f Mbytes attachment storage." +msgstr "Die Größe Deiner Datei-Anhänge hat das Maximum von %1$.0f MByte erreicht." + +#: ../../include/attach.php:846 +msgid "File upload failed. Possible system limit or action terminated." +msgstr "Datei-Upload fehlgeschlagen. Mögliche Systembegrenzung oder abgebrochener Prozess." + +#: ../../include/attach.php:859 +msgid "Stored file could not be verified. Upload failed." +msgstr "Gespeichert Datei konnte nicht verifiziert werden. Upload abgebrochen." + +#: ../../include/attach.php:915 ../../include/attach.php:931 +msgid "Path not available." +msgstr "Pfad nicht verfügbar." + +#: ../../include/attach.php:977 ../../include/attach.php:1129 +msgid "Empty pathname" +msgstr "Leere Pfadangabe" + +#: ../../include/attach.php:1003 +msgid "duplicate filename or path" +msgstr "doppelter Dateiname oder Pfad" + +#: ../../include/attach.php:1025 +msgid "Path not found." +msgstr "Pfad nicht gefunden." + +#: ../../include/attach.php:1083 +msgid "mkdir failed." +msgstr "mkdir fehlgeschlagen." + +#: ../../include/attach.php:1087 +msgid "database storage failed." +msgstr "Speichern in der Datenbank fehlgeschlagen." + +#: ../../include/attach.php:1135 +msgid "Empty path" +msgstr "Leere Pfadangabe" + +#: ../../include/bbcode.php:123 ../../include/bbcode.php:878 +#: ../../include/bbcode.php:881 ../../include/bbcode.php:886 +#: ../../include/bbcode.php:889 ../../include/bbcode.php:892 +#: ../../include/bbcode.php:895 ../../include/bbcode.php:900 +#: ../../include/bbcode.php:903 ../../include/bbcode.php:908 +#: ../../include/bbcode.php:911 ../../include/bbcode.php:914 +#: ../../include/bbcode.php:917 +msgid "Image/photo" +msgstr "Bild/Foto" + +#: ../../include/bbcode.php:162 ../../include/bbcode.php:928 +msgid "Encrypted content" +msgstr "Verschlüsselter Inhalt" + +#: ../../include/bbcode.php:178 +#, php-format +msgid "Install %s element: " +msgstr "Element %s installieren: " + +#: ../../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 "Dieser Beitrag beinhaltet ein installierbares %s Element, aber Du hast nicht die nötigen Rechte, um es auf diesem Hub zu installieren." + +#: ../../include/bbcode.php:261 +#, php-format +msgid "%1$s wrote the following %2$s %3$s" +msgstr "%1$s schrieb den folgenden %2$s %3$s" + +#: ../../include/bbcode.php:338 ../../include/bbcode.php:346 +msgid "Click to open/close" +msgstr "Klicke zum Öffnen/Schließen" + +#: ../../include/bbcode.php:346 +msgid "spoiler" +msgstr "Spoiler" + +#: ../../include/bbcode.php:619 +msgid "Different viewers will see this text differently" +msgstr "Verschiedene Betrachter werden diesen Text unterschiedlich sehen" + +#: ../../include/bbcode.php:866 +msgid "$1 wrote:" +msgstr "$1 schrieb:" + +#: ../../include/items.php:897 ../../include/items.php:942 +msgid "(Unknown)" +msgstr "(Unbekannt)" + +#: ../../include/items.php:1141 +msgid "Visible to anybody on the internet." +msgstr "Für jeden im Internet sichtbar." + +#: ../../include/items.php:1143 +msgid "Visible to you only." +msgstr "Nur für Dich sichtbar." + +#: ../../include/items.php:1145 +msgid "Visible to anybody in this network." +msgstr "Für jedes $Projectname-Mitglied sichtbar." + +#: ../../include/items.php:1147 +msgid "Visible to anybody authenticated." +msgstr "Für jeden sichtbar, der angemeldet ist." + +#: ../../include/items.php:1149 +#, php-format +msgid "Visible to anybody on %s." +msgstr "Für jeden auf %s sichtbar." + +#: ../../include/items.php:1151 +msgid "Visible to all connections." +msgstr "Für alle Verbindungen sichtbar." + +#: ../../include/items.php:1153 +msgid "Visible to approved connections." +msgstr "Nur für akzeptierte Verbindungen sichtbar." + +#: ../../include/items.php:1155 +msgid "Visible to specific connections." +msgstr "Sichtbar für bestimmte Verbindungen." + +#: ../../include/items.php:3918 +msgid "Privacy group is empty." +msgstr "Gruppe ist leer." + +#: ../../include/items.php:3925 +#, php-format +msgid "Privacy group: %s" +msgstr "Gruppe: %s" + +#: ../../include/items.php:3937 +msgid "Connection not found." +msgstr "Die Verbindung wurde nicht gefunden." + +#: ../../include/items.php:4290 +msgid "profile photo" +msgstr "Profilfoto" + +#: ../../include/oembed.php:336 +msgid "Embedded content" +msgstr "Eingebetteter Inhalt" + +#: ../../include/oembed.php:345 +msgid "Embedding disabled" +msgstr "Einbetten ausgeschaltet" + +#: ../../include/widgets.php:103 +msgid "System" +msgstr "System" + +#: ../../include/widgets.php:106 +msgid "New App" +msgstr "Neue App" + +#: ../../include/widgets.php:154 +msgid "Suggestions" +msgstr "Vorschläge" + +#: ../../include/widgets.php:155 +msgid "See more..." +msgstr "Mehr anzeigen …" + +#: ../../include/widgets.php:175 +#, php-format +msgid "You have %1$.0f of %2$.0f allowed connections." +msgstr "Du bist %1$.0f von maximal %2$.0f erlaubten Verbindungen eingegangen." + +#: ../../include/widgets.php:181 +msgid "Add New Connection" +msgstr "Neue Verbindung hinzufügen" + +#: ../../include/widgets.php:182 +msgid "Enter channel address" +msgstr "Adresse des Kanals eingeben" + +#: ../../include/widgets.php:183 +msgid "Examples: bob@example.com, https://example.com/barbara" +msgstr "Beispiele: bob@beispiel.com, http://beispiel.com/barbara" + +#: ../../include/widgets.php:199 +msgid "Notes" +msgstr "Notizen" + +#: ../../include/widgets.php:273 +msgid "Remove term" +msgstr "Eintrag löschen" + +#: ../../include/widgets.php:313 ../../include/widgets.php:432 +#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:94 +msgid "Everything" +msgstr "Alles" + +#: ../../include/widgets.php:354 +msgid "Archives" +msgstr "Archive" + +#: ../../include/widgets.php:516 +msgid "Refresh" +msgstr "Aktualisieren" + +#: ../../include/widgets.php:556 +msgid "Account settings" +msgstr "Konto-Einstellungen" + +#: ../../include/widgets.php:562 +msgid "Channel settings" +msgstr "Kanal-Einstellungen" + +#: ../../include/widgets.php:571 +msgid "Additional features" +msgstr "Zusätzliche Funktionen" + +#: ../../include/widgets.php:578 +msgid "Feature/Addon settings" +msgstr "Plugin-Einstellungen" + +#: ../../include/widgets.php:584 +msgid "Display settings" +msgstr "Anzeige-Einstellungen" + +#: ../../include/widgets.php:591 +msgid "Manage locations" +msgstr "Klon-Adressen verwalten" + +#: ../../include/widgets.php:600 +msgid "Export channel" +msgstr "Kanal exportieren" + +#: ../../include/widgets.php:607 +msgid "Connected apps" +msgstr "Verbundene Apps" + +#: ../../include/widgets.php:631 +msgid "Premium Channel Settings" +msgstr "Premium-Kanal-Einstellungen" + +#: ../../include/widgets.php:660 +msgid "Private Mail Menu" +msgstr "Private Nachrichten" + +#: ../../include/widgets.php:662 +msgid "Combined View" +msgstr "Kombinierte Anzeige" + +#: ../../include/widgets.php:694 ../../include/widgets.php:706 +msgid "Conversations" +msgstr "Konversationen" + +#: ../../include/widgets.php:698 +msgid "Received Messages" +msgstr "Erhaltene Nachrichten" + +#: ../../include/widgets.php:702 +msgid "Sent Messages" +msgstr "Gesendete Nachrichten" + +#: ../../include/widgets.php:716 +msgid "No messages." +msgstr "Keine Nachrichten." + +#: ../../include/widgets.php:734 +msgid "Delete conversation" +msgstr "Unterhaltung löschen" + +#: ../../include/widgets.php:760 +msgid "Events Tools" +msgstr "Kalenderwerkzeuge" + +#: ../../include/widgets.php:761 +msgid "Export Calendar" +msgstr "Kalender exportieren" + +#: ../../include/widgets.php:762 +msgid "Import Calendar" +msgstr "Kalender importieren" + +#: ../../include/widgets.php:840 +msgid "Overview" +msgstr "Übersicht" + +#: ../../include/widgets.php:847 +msgid "Chat Members" +msgstr "Chatmitglieder" + +#: ../../include/widgets.php:869 +msgid "Wiki List" +msgstr "Wikiliste" + +#: ../../include/widgets.php:907 +msgid "Wiki Pages" +msgstr "Wikiseiten" + +#: ../../include/widgets.php:942 +msgid "Bookmarked Chatrooms" +msgstr "Gespeicherte Chatrooms" + +#: ../../include/widgets.php:965 +msgid "Suggested Chatrooms" +msgstr "Chatraum-Vorschläge" + +#: ../../include/widgets.php:1111 ../../include/widgets.php:1223 +msgid "photo/image" +msgstr "Foto/Bild" + +#: ../../include/widgets.php:1166 +msgid "Click to show more" +msgstr "Klick, um mehr anzuzeigen" + +#: ../../include/widgets.php:1317 +msgid "Rating Tools" +msgstr "Bewertungswerkzeuge" + +#: ../../include/widgets.php:1321 ../../include/widgets.php:1323 +msgid "Rate Me" +msgstr "Bewerte mich" + +#: ../../include/widgets.php:1326 +msgid "View Ratings" +msgstr "Bewertungen ansehen" + +#: ../../include/widgets.php:1410 +msgid "Forums" +msgstr "Foren" + +#: ../../include/widgets.php:1439 +msgid "Tasks" +msgstr "Aufgaben" + +#: ../../include/widgets.php:1448 +msgid "Documentation" +msgstr "Dokumentation" + +#: ../../include/widgets.php:1450 +msgid "Project/Site Information" +msgstr "Informationen über das Projekt und diesen Hub" + +#: ../../include/widgets.php:1451 +msgid "For Members" +msgstr "Für Mitglieder" + +#: ../../include/widgets.php:1452 +msgid "For Administrators" +msgstr "Für Administratoren" + +#: ../../include/widgets.php:1453 +msgid "For Developers" +msgstr "Für Entwickler" + +#: ../../include/widgets.php:1477 ../../include/widgets.php:1515 +msgid "Member registrations waiting for confirmation" +msgstr "Nutzer-Anmeldungen, die auf Bestätigung warten" + +#: ../../include/widgets.php:1483 +msgid "Inspect queue" +msgstr "Warteschlange kontrollieren" + +#: ../../include/widgets.php:1485 +msgid "DB updates" +msgstr "DB-Aktualisierungen" + +#: ../../include/widgets.php:1511 +msgid "Plugin Features" +msgstr "Plug-In Funktionen" + +#: ../../include/activities.php:41 +msgid " and " +msgstr "und" + +#: ../../include/activities.php:49 +msgid "public profile" +msgstr "öffentliches Profil" + +#: ../../include/activities.php:58 +#, php-format +msgid "%1$s changed %2$s to “%3$s”" +msgstr "%1$s hat %2$s auf “%3$s” geändert" + +#: ../../include/activities.php:59 +#, php-format +msgid "Visit %1$s's %2$s" +msgstr "Besuche %1$s's %2$s" + +#: ../../include/activities.php:62 +#, php-format +msgid "%1$s has an updated %2$s, changing %3$s." +msgstr "%1$s hat ein aktualisiertes %2$s, %3$s wurde verändert." + +#: ../../include/bb2diaspora.php:398 +msgid "Attachments:" +msgstr "Anhänge:" + +#: ../../include/bb2diaspora.php:487 +msgid "$Projectname event notification:" +msgstr "$Projectname-Terminbenachrichtigung:" + #: ../../include/js_strings.php:5 msgid "Delete this item?" msgstr "Dieses Element löschen?" #: ../../include/js_strings.php:8 -msgid "[-] show less" -msgstr "[-] Weniger anzeigen" +#, php-format +msgid "%s show less" +msgstr "%s weniger anzeigen" #: ../../include/js_strings.php:9 -msgid "[+] expand" -msgstr "[+] aufklappen" +#, php-format +msgid "%s expand" +msgstr "%s aufklappen" #: ../../include/js_strings.php:10 -msgid "[-] collapse" -msgstr "[-] einklappen" +#, php-format +msgid "%s collapse" +msgstr "%s einklappen" #: ../../include/js_strings.php:11 msgid "Password too short" @@ -9373,278 +9624,223 @@ msgctxt "calendar" msgid "All day" msgstr "Ganztägig" -#: ../../include/network.php:657 -msgid "view full size" -msgstr "In Vollbildansicht anschauen" - -#: ../../include/network.php:1885 -msgid "No Subject" -msgstr "Kein Betreff" - -#: ../../include/network.php:2146 ../../include/network.php:2147 -msgid "Friendica" -msgstr "Friendica" - -#: ../../include/network.php:2148 -msgid "OStatus" -msgstr "OStatus" - -#: ../../include/network.php:2149 -msgid "GNU-Social" -msgstr "GNU-Social" - -#: ../../include/network.php:2150 -msgid "RSS/Atom" -msgstr "RSS/Atom" - -#: ../../include/network.php:2152 -msgid "Diaspora" -msgstr "Diaspora" - -#: ../../include/network.php:2153 -msgid "Facebook" -msgstr "Facebook" - -#: ../../include/network.php:2154 -msgid "Zot" -msgstr "Zot!" - -#: ../../include/network.php:2155 -msgid "LinkedIn" -msgstr "LinkedIn" - -#: ../../include/network.php:2156 -msgid "XMPP/IM" -msgstr "XMPP/IM" - -#: ../../include/network.php:2157 -msgid "MySpace" -msgstr "MySpace" - -#: ../../include/photos.php:110 +#: ../../include/contact_widgets.php:11 #, php-format -msgid "Image exceeds website size limit of %lu bytes" -msgstr "Bild überschreitet das Webseitenlimit von %lu Bytes" +msgid "%d invitation available" +msgid_plural "%d invitations available" +msgstr[0] "%d Einladung verfügbar" +msgstr[1] "%d Einladungen verfügbar" -#: ../../include/photos.php:117 -msgid "Image file is empty." -msgstr "Bilddatei ist leer." +#: ../../include/contact_widgets.php:19 +msgid "Find Channels" +msgstr "Finde Kanäle" -#: ../../include/photos.php:255 -msgid "Photo storage failed." -msgstr "Fotospeicherung fehlgeschlagen." +#: ../../include/contact_widgets.php:20 +msgid "Enter name or interest" +msgstr "Name oder Interessen eingeben" -#: ../../include/photos.php:295 -msgid "a new photo" -msgstr "ein neues Foto" +#: ../../include/contact_widgets.php:21 +msgid "Connect/Follow" +msgstr "Verbinden/Folgen" -#: ../../include/photos.php:299 +#: ../../include/contact_widgets.php:22 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "Beispiele: Robert Morgenstein, Angeln" + +#: ../../include/contact_widgets.php:26 +msgid "Random Profile" +msgstr "Zufallsprofil" + +#: ../../include/contact_widgets.php:27 +msgid "Invite Friends" +msgstr "Lade Freunde ein" + +#: ../../include/contact_widgets.php:29 +msgid "Advanced example: name=fred and country=iceland" +msgstr "Fortgeschrittenes Beispiel: name=fred and country=iceland" + +#: ../../include/contact_widgets.php:122 #, php-format -msgctxt "photo_upload" -msgid "%1$s posted %2$s to %3$s" -msgstr "%1$s hat %2$s auf %3$s veröffentlicht" +msgid "%d connection in common" +msgid_plural "%d connections in common" +msgstr[0] "%d gemeinsame Verbindung" +msgstr[1] "%d gemeinsame Verbindungen" -#: ../../include/photos.php:506 -msgid "Upload New Photos" -msgstr "Neue Fotos hochladen" +#: ../../include/contact_widgets.php:127 +msgid "show more" +msgstr "mehr zeigen" -#: ../../include/zot.php:699 +#: ../../include/dir_fns.php:141 +msgid "Directory Options" +msgstr "Verzeichnisoptionen" + +#: ../../include/dir_fns.php:143 +msgid "Safe Mode" +msgstr "Sicherer Modus" + +#: ../../include/dir_fns.php:144 +msgid "Public Forums Only" +msgstr "Nur öffentliche Foren" + +#: ../../include/dir_fns.php:145 +msgid "This Website Only" +msgstr "Nur dieser Hub" + +#: ../../include/message.php:20 +msgid "No recipient provided." +msgstr "Kein Empfänger angegeben" + +#: ../../include/message.php:25 +msgid "[no subject]" +msgstr "[no subject]" + +#: ../../include/message.php:45 +msgid "Unable to determine sender." +msgstr "Kann Absender nicht bestimmen." + +#: ../../include/message.php:222 +msgid "Stored post could not be verified." +msgstr "Gespeicherter Beitrag konnten nicht überprüft werden." + +#: ../../include/acl_selectors.php:269 +msgid "Who can see this?" +msgstr "Wer kann das sehen?" + +#: ../../include/acl_selectors.php:270 +msgid "Custom selection" +msgstr "Benutzerdefinierte Auswahl" + +#: ../../include/acl_selectors.php:271 +msgid "" +"Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit" +" the scope of \"Show\"." +msgstr "Wähle \"Anzeigen\", um Betrachtung zuzulassen. \"Nicht anzeigen\" überstimmt und limitiert den Aktionsradius von \"Anzeigen\" für Ausnahmen." + +#: ../../include/acl_selectors.php:272 +msgid "Show" +msgstr "Anzeigen" + +#: ../../include/acl_selectors.php:273 +msgid "Don't show" +msgstr "Nicht anzeigen" + +#: ../../include/acl_selectors.php:279 +msgid "Other networks and post services" +msgstr "Andere Netzwerke und Platformen" + +#: ../../include/acl_selectors.php:309 +#, php-format +msgid "" +"Post permissions %s cannot be changed %s after a post is shared.
These" +" permissions set who is allowed to view the post." +msgstr "Beitragsberechtigungen %s können nicht geändert werden %s, nachdem der Beitrag gesendet wurde.
Diese Berechtigungen bestimmen, wer den Beitrag sehen kann." + +#: ../../include/datetime.php:135 +msgid "Birthday" +msgstr "Geburtstag" + +#: ../../include/datetime.php:137 +msgid "Age: " +msgstr "Alter:" + +#: ../../include/datetime.php:139 +msgid "YYYY-MM-DD or MM-DD" +msgstr "JJJJ-MM-TT oder MM-TT" + +#: ../../include/datetime.php:272 ../../boot.php:2479 +msgid "never" +msgstr "Nie" + +#: ../../include/datetime.php:278 +msgid "less than a second ago" +msgstr "Vor weniger als einer Sekunde" + +#: ../../include/datetime.php:296 +#, php-format +msgctxt "e.g. 22 hours ago, 1 minute ago" +msgid "%1$d %2$s ago" +msgstr "vor %1$d %2$s" + +#: ../../include/datetime.php:307 +msgctxt "relative_date" +msgid "year" +msgid_plural "years" +msgstr[0] "Jahr" +msgstr[1] "Jahre" + +#: ../../include/datetime.php:310 +msgctxt "relative_date" +msgid "month" +msgid_plural "months" +msgstr[0] "Monat" +msgstr[1] "Monate" + +#: ../../include/datetime.php:313 +msgctxt "relative_date" +msgid "week" +msgid_plural "weeks" +msgstr[0] "Woche" +msgstr[1] "Wochen" + +#: ../../include/datetime.php:316 +msgctxt "relative_date" +msgid "day" +msgid_plural "days" +msgstr[0] "Tag" +msgstr[1] "Tage" + +#: ../../include/datetime.php:319 +msgctxt "relative_date" +msgid "hour" +msgid_plural "hours" +msgstr[0] "Stunde" +msgstr[1] "Stunden" + +#: ../../include/datetime.php:322 +msgctxt "relative_date" +msgid "minute" +msgid_plural "minutes" +msgstr[0] "Minute" +msgstr[1] "Minuten" + +#: ../../include/datetime.php:325 +msgctxt "relative_date" +msgid "second" +msgid_plural "seconds" +msgstr[0] "Sekunde" +msgstr[1] "Sekunden" + +#: ../../include/datetime.php:562 +#, php-format +msgid "%1$s's birthday" +msgstr "%1$ss Geburtstag" + +#: ../../include/datetime.php:563 +#, php-format +msgid "Happy Birthday %1$s" +msgstr "Alles Gute zum Geburtstag, %1$s" + +#: ../../include/api.php:1327 +msgid "Public Timeline" +msgstr "Öffentliche Zeitleiste" + +#: ../../include/zot.php:697 msgid "Invalid data packet" msgstr "Ungültiges Datenpaket" -#: ../../include/zot.php:715 +#: ../../include/zot.php:713 msgid "Unable to verify channel signature" msgstr "Konnte die Signatur des Kanals nicht verifizieren" -#: ../../include/zot.php:2363 +#: ../../include/zot.php:2326 #, php-format msgid "Unable to verify site signature for %s" msgstr "Kann die Signatur der Seite von %s nicht verifizieren" -#: ../../include/zot.php:3712 +#: ../../include/zot.php:3703 msgid "invalid target signature" msgstr "Ungültige Signatur des Ziels" -#: ../../include/page_widgets.php:6 -msgid "New Page" -msgstr "Neue Seite" - -#: ../../include/page_widgets.php:43 -msgid "Title" -msgstr "Titel" - -#: ../../include/permissions.php:26 -msgid "Can view my normal stream and posts" -msgstr "Kann meine normalen Beiträge sehen" - -#: ../../include/permissions.php:27 -msgid "Can view my default channel profile" -msgstr "Kann mein Standardprofil sehen" - -#: ../../include/permissions.php:28 -msgid "Can view my connections" -msgstr "Kann meine Verbindungen sehen" - -#: ../../include/permissions.php:29 -msgid "Can view my file storage and photos" -msgstr "Kann meine Datei- und Bilderordner sehen" - -#: ../../include/permissions.php:30 -msgid "Can view my webpages" -msgstr "Kann meine Webseiten sehen" - -#: ../../include/permissions.php:33 -msgid "Can send me their channel stream and posts" -msgstr "Kann mir die Beiträge aus seinem/ihrem Kanal schicken" - -#: ../../include/permissions.php:34 -msgid "Can post on my channel page (\"wall\")" -msgstr "Kann auf meiner Kanal-Seite (\"wall\") Beiträge veröffentlichen" - -#: ../../include/permissions.php:35 -msgid "Can comment on or like my posts" -msgstr "Darf meine Beiträge kommentieren und mögen/nicht mögen" - -#: ../../include/permissions.php:36 -msgid "Can send me private mail messages" -msgstr "Kann mir private Nachrichten schicken" - -#: ../../include/permissions.php:37 -msgid "Can like/dislike stuff" -msgstr "Kann andere Elemente mögen/nicht mögen" - -#: ../../include/permissions.php:37 -msgid "Profiles and things other than posts/comments" -msgstr "Profile und alles außer Beiträge und Kommentare" - -#: ../../include/permissions.php:39 -msgid "Can forward to all my channel contacts via post @mentions" -msgstr "Kann an alle meine Kontakte via @-Erwähnung Nachrichten weiterleiten" - -#: ../../include/permissions.php:39 -msgid "Advanced - useful for creating group forum channels" -msgstr "Fortgeschritten - sinnvoll, um Gruppen-Kanäle/-Foren zu erstellen" - -#: ../../include/permissions.php:40 -msgid "Can chat with me (when available)" -msgstr "Kann mit mir chatten (wenn verfügbar)" - -#: ../../include/permissions.php:41 -msgid "Can write to my file storage and photos" -msgstr "Kann in meine Datei- und Bilderordner schreiben" - -#: ../../include/permissions.php:42 -msgid "Can edit my webpages" -msgstr "Kann meine Webseiten bearbeiten" - -#: ../../include/permissions.php:44 -msgid "Can source my public posts in derived channels" -msgstr "Kann meine öffentlichen Beiträge als Quellen für Kanäle verwenden" - -#: ../../include/permissions.php:44 -msgid "Somewhat advanced - very useful in open communities" -msgstr "Etwas fortgeschritten – sehr nützlich in offenen Gemeinschaften" - -#: ../../include/permissions.php:46 -msgid "Can administer my channel resources" -msgstr "Kann meine Kanäle administrieren" - -#: ../../include/permissions.php:46 -msgid "" -"Extremely advanced. Leave this alone unless you know what you are doing" -msgstr "Sehr fortgeschritten. Bearbeite das nur, wenn Du genau weißt, was Du tust" - -#: ../../include/permissions.php:877 -msgid "Social Networking" -msgstr "Soziales Netzwerk" - -#: ../../include/permissions.php:877 -msgid "Social - Mostly Public" -msgstr "Soziales Netzwerk - Weitgehend öffentlich" - -#: ../../include/permissions.php:877 -msgid "Social - Restricted" -msgstr "Soziales Netzwerk - Beschränkt" - -#: ../../include/permissions.php:877 -msgid "Social - Private" -msgstr "Soziales Netzwerk - Privat" - -#: ../../include/permissions.php:878 -msgid "Community Forum" -msgstr "Forum" - -#: ../../include/permissions.php:878 -msgid "Forum - Mostly Public" -msgstr "Forum - Weitgehend öffentlich" - -#: ../../include/permissions.php:878 -msgid "Forum - Restricted" -msgstr "Forum - Beschränkt" - -#: ../../include/permissions.php:878 -msgid "Forum - Private" -msgstr "Forum - Privat" - -#: ../../include/permissions.php:879 -msgid "Feed Republish" -msgstr "Teilen von Feeds" - -#: ../../include/permissions.php:879 -msgid "Feed - Mostly Public" -msgstr "Feeds - Weitgehend öffentlich" - -#: ../../include/permissions.php:879 -msgid "Feed - Restricted" -msgstr "Feeds - Beschränkt" - -#: ../../include/permissions.php:880 -msgid "Special Purpose" -msgstr "Für besondere Zwecke" - -#: ../../include/permissions.php:880 -msgid "Special - Celebrity/Soapbox" -msgstr "Speziell - Mitteilungs-Kanal (keine Kommentare)" - -#: ../../include/permissions.php:880 -msgid "Special - Group Repository" -msgstr "Speziell - Gruppenarchiv" - -#: ../../include/permissions.php:881 -msgid "Custom/Expert Mode" -msgstr "Benutzerdefiniert/Expertenmodus" - -#: ../../include/activities.php:41 -msgid " and " -msgstr "und" - -#: ../../include/activities.php:49 -msgid "public profile" -msgstr "öffentliches Profil" - -#: ../../include/activities.php:58 -#, php-format -msgid "%1$s changed %2$s to “%3$s”" -msgstr "%1$s hat %2$s auf “%3$s” geändert" - -#: ../../include/activities.php:59 -#, php-format -msgid "Visit %1$s's %2$s" -msgstr "Besuche %1$s's %2$s" - -#: ../../include/activities.php:62 -#, php-format -msgid "%1$s has an updated %2$s, changing %3$s." -msgstr "%1$s hat ein aktualisiertes %2$s, %3$s wurde verändert." - -#: ../../include/bb2diaspora.php:398 -msgid "Attachments:" -msgstr "Anhänge:" - -#: ../../include/bb2diaspora.php:487 -msgid "$Projectname event notification:" -msgstr "$Projectname-Terminbenachrichtigung:" - #: ../../view/theme/redbasic/php/config.php:82 msgid "Focus (Hubzilla default)" msgstr "Focus (Voreinstellung für Hubzilla)" @@ -9781,62 +9977,66 @@ msgstr "Größe der Avatare von Themenstartern" msgid "Set size of followup author photos" msgstr "Größe der Avatare von Kommentatoren" -#: ../../boot.php:1162 +#: ../../boot.php:1163 #, php-format msgctxt "opensearch" msgid "Search %1$s (%2$s)" msgstr "Suche %1$s (%2$s)" -#: ../../boot.php:1162 +#: ../../boot.php:1163 msgctxt "opensearch" msgid "$Projectname" msgstr "$Projectname" -#: ../../boot.php:1480 +#: ../../boot.php:1481 #, php-format msgid "Update %s failed. See error logs." msgstr "Aktualisierung %s fehlgeschlagen. Details in den Fehlerprotokollen." -#: ../../boot.php:1483 +#: ../../boot.php:1484 #, php-format msgid "Update Error at %s" msgstr "Aktualisierungsfehler auf %s" -#: ../../boot.php:1684 +#: ../../boot.php:1685 msgid "" "Create an account to access services and applications within the Hubzilla" msgstr "Erstelle ein Konto, um Anwendungen und Dienste innerhalb von Hubzilla nutzen zu können." #: ../../boot.php:1706 +msgid "Login/Email" +msgstr "Anmelden/E-Mail" + +#: ../../boot.php:1707 msgid "Password" msgstr "Kennwort" -#: ../../boot.php:1707 +#: ../../boot.php:1708 msgid "Remember me" msgstr "Angaben speichern" -#: ../../boot.php:1710 +#: ../../boot.php:1711 msgid "Forgot your password?" msgstr "Passwort vergessen?" -#: ../../boot.php:2276 +#: ../../boot.php:2277 msgid "toggle mobile" msgstr "auf/von mobile Ansicht wechseln" -#: ../../boot.php:2425 +#: ../../boot.php:2432 msgid "Website SSL certificate is not valid. Please correct." msgstr "Das SSL-Zertifikat der Website ist nicht gültig. Bitte beheben." -#: ../../boot.php:2428 +#: ../../boot.php:2435 #, php-format msgid "[hubzilla] Website SSL error for %s" msgstr "[hubzilla] Website-SSL-Fehler für %s" -#: ../../boot.php:2469 +#: ../../boot.php:2478 msgid "Cron/Scheduled tasks not running." msgstr "Cron-Aufgaben laufen nicht." -#: ../../boot.php:2473 +#: ../../boot.php:2482 #, php-format msgid "[hubzilla] Cron tasks not running on %s" msgstr "[hubzilla] Cron-Aufgaben für %s laufen nicht" diff --git a/view/de/hstrings.php b/view/de/hstrings.php index eea433fac..6d6fd4ebe 100644 --- a/view/de/hstrings.php +++ b/view/de/hstrings.php @@ -4,7 +4,39 @@ if(! function_exists("string_plural_select_de")) { function string_plural_select_de($n){ return ($n != 1);; }} -; +App::$rtl = 0; +App::$strings["Social Networking"] = "Soziales Netzwerk"; +App::$strings["Social - Mostly Public"] = "Soziales Netzwerk - Weitgehend öffentlich"; +App::$strings["Social - Restricted"] = "Soziales Netzwerk - Beschränkt"; +App::$strings["Social - Private"] = "Soziales Netzwerk - Privat"; +App::$strings["Community Forum"] = "Forum"; +App::$strings["Forum - Mostly Public"] = "Forum - Weitgehend öffentlich"; +App::$strings["Forum - Restricted"] = "Forum - Beschränkt"; +App::$strings["Forum - Private"] = "Forum - Privat"; +App::$strings["Feed Republish"] = "Teilen von Feeds"; +App::$strings["Feed - Mostly Public"] = "Feeds - Weitgehend öffentlich"; +App::$strings["Feed - Restricted"] = "Feeds - Beschränkt"; +App::$strings["Special Purpose"] = "Für besondere Zwecke"; +App::$strings["Special - Celebrity/Soapbox"] = "Speziell - Mitteilungs-Kanal (keine Kommentare)"; +App::$strings["Special - Group Repository"] = "Speziell - Gruppenarchiv"; +App::$strings["Other"] = "Andere"; +App::$strings["Custom/Expert Mode"] = "Benutzerdefiniert/Expertenmodus"; +App::$strings["Can view my channel stream and posts"] = "Kann meinen Kanal-Stream und meine Beiträge sehen"; +App::$strings["Can send me their channel stream and posts"] = "Kann mir die Beiträge aus seinem/ihrem Kanal schicken"; +App::$strings["Can view my default channel profile"] = "Kann mein Standardprofil sehen"; +App::$strings["Can view my connections"] = "Kann meine Verbindungen sehen"; +App::$strings["Can view my file storage and photos"] = "Kann meine Datei- und Bilderordner sehen"; +App::$strings["Can upload/modify my file storage and photos"] = "Kann in meine Datei- und Bilderordner hochladen/ändern"; +App::$strings["Can view my channel webpages"] = "Kann die Webseiten meines Kanals sehen"; +App::$strings["Can create/edit my channel webpages"] = "Kann Webseiten in meinem Kanal erstellen/ändern"; +App::$strings["Can post on my channel (wall) page"] = "Kann auf meiner Kanal-Seite (\"wall\") Beiträge veröffentlichen"; +App::$strings["Can comment on or like my posts"] = "Darf meine Beiträge kommentieren und mögen/nicht mögen"; +App::$strings["Can send me private mail messages"] = "Kann mir private Nachrichten schicken"; +App::$strings["Can like/dislike profiles and profile things"] = "Kann Profile und Profilsachen mögen/nicht mögen"; +App::$strings["Can forward to all my channel connections via @+ mentions in posts"] = "Kann an alle meine Verbindungen via @-Erwähnungen Nachrichten weiterleiten"; +App::$strings["Can chat with me"] = "Kann mit mir chatten"; +App::$strings["Can source my public posts in derived channels"] = "Kann meine öffentlichen Beiträge als Quellen für Kanäle verwenden"; +App::$strings["Can administer my channel"] = "Kann meinen Kanal administrieren"; App::$strings["parent"] = "Übergeordnetes Verzeichnis"; App::$strings["Collection"] = "Sammlung"; App::$strings["Principal"] = "Prinzipal"; @@ -35,65 +67,10 @@ App::$strings["Not Found"] = "Nicht gefunden"; App::$strings["Page not found."] = "Seite nicht gefunden."; App::$strings["Remote authentication blocked. You are logged into this site locally. Please logout and retry."] = "Fern-Authentifizierung blockiert. Du bist lokal auf diesem Server angemeldet. Bitte melde Dich ab und versuche es erneut."; App::$strings["Welcome %s. Remote authentication successful."] = "Willkommen %s. Entfernte Authentifizierung erfolgreich."; -App::$strings["Requested profile is not available."] = "Erwünschte Profil ist nicht verfügbar."; +App::$strings["Requested profile is not available."] = "Das angefragte Profil ist nicht verfügbar."; App::$strings["Some blurb about what to do when you're new here"] = "Ein Hinweis, was man tun kann, wenn man neu hier ist"; -App::$strings["Block Name"] = "Block-Name"; -App::$strings["Blocks"] = "Blöcke"; -App::$strings["Block Title"] = "Titel des Blocks"; -App::$strings["Created"] = "Erstellt"; -App::$strings["Edited"] = "Geändert"; -App::$strings["Share"] = "Teilen"; -App::$strings["View"] = "Ansicht"; -App::$strings["Channel not found."] = "Kanal nicht gefunden."; -App::$strings["Permissions denied."] = "Berechtigung verweigert."; -App::$strings["l, F j"] = "l, j. F"; -App::$strings["Link to Source"] = "Link zur Quelle"; -App::$strings["Edit Event"] = "Termin bearbeiten"; -App::$strings["Create Event"] = "Termin anlegen"; -App::$strings["Previous"] = "Voriges"; -App::$strings["Next"] = "Nächste"; -App::$strings["Export"] = "Exportieren"; -App::$strings["Import"] = "Import"; -App::$strings["Submit"] = "Bestätigen"; -App::$strings["Today"] = "Heute"; -App::$strings["You must be logged in to see this page."] = "Du musst angemeldet sein, um diese Seite betrachten zu können."; -App::$strings["Posts and comments"] = "Beiträge und Kommentare"; -App::$strings["Only posts"] = "Nur Beiträge"; -App::$strings["Insufficient permissions. Request redirected to profile page."] = "Unzureichende Zugriffsrechte. Die Anfrage wurde zur Profil-Seite umgeleitet."; -App::$strings["Room not found"] = "Chatraum nicht gefunden"; -App::$strings["Leave Room"] = "Raum verlassen"; -App::$strings["Delete Room"] = "Raum löschen"; -App::$strings["I am away right now"] = "Ich bin gerade nicht da"; -App::$strings["I am online"] = "Ich bin online"; -App::$strings["Bookmark this room"] = "Lesezeichen für diesen Raum setzen"; -App::$strings["Please enter a link URL:"] = "Gib eine URL ein:"; -App::$strings["Encrypt text"] = "Text verschlüsseln"; -App::$strings["Insert web link"] = "Link einfügen"; -App::$strings["Feature disabled."] = "Funktion deaktiviert."; -App::$strings["New Chatroom"] = "Neuer Chatraum"; -App::$strings["Chatroom name"] = "Chatraumname"; -App::$strings["Expiration of chats (minutes)"] = "Verfall von Chats (Minuten)"; -App::$strings["Permissions"] = "Berechtigungen"; -App::$strings["%1\$s's Chatrooms"] = "%1\$ss Chaträume"; -App::$strings["No chatrooms available"] = "Keine Chaträume verfügbar"; -App::$strings["Create New"] = "Neu anlegen"; -App::$strings["Expiration"] = "Verfall"; -App::$strings["min"] = "min"; App::$strings["Away"] = "Abwesend"; App::$strings["Online"] = "Online"; -App::$strings["Invalid item."] = "Ungültiges Element."; -App::$strings["Bookmark added"] = "Lesezeichen hinzugefügt"; -App::$strings["My Bookmarks"] = "Meine Lesezeichen"; -App::$strings["My Connections Bookmarks"] = "Lesezeichen meiner Kontakte"; -App::$strings["Continue"] = "Fortfahren"; -App::$strings["Premium Channel Setup"] = "Premium-Kanal-Einrichtung"; -App::$strings["Enable premium channel connection restrictions"] = "Einschränkungen für einen Premium-Kanal aktivieren"; -App::$strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = "Bitte gib Deine Nutzungsbedingungen ein, z.B. Paypal-Quittung, Richtlinien etc."; -App::$strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = "Unter Umständen sind weitere Schritte oder die Bestätigung der folgenden Bedingungen vor dem Verbinden mit diesem Kanal nötig."; -App::$strings["Potential connections will then see the following text before proceeding:"] = "Potentielle Kontakte werden den folgenden Text sehen, bevor fortgefahren wird:"; -App::$strings["By continuing, I certify that I have complied with any instructions provided on this page."] = "Indem ich fortfahre, bestätige ich die Erfüllung aller Anweisungen auf dieser Seite."; -App::$strings["(No specific instructions have been provided by the channel owner.)"] = "(Der Kanal-Besitzer hat keine speziellen Anweisungen hinterlegt.)"; -App::$strings["Restricted or Premium Channel"] = "Eingeschränkter oder Premium-Kanal"; App::$strings["Could not access contact record."] = "Konnte nicht auf den Kontakteintrag zugreifen."; App::$strings["Could not locate selected profile."] = "Gewähltes Profil nicht gefunden."; App::$strings["Connection updated."] = "Verbindung aktualisiert."; @@ -158,6 +135,7 @@ App::$strings["Do not import posts with this text"] = "Beiträge mit diesem Text App::$strings["This information is public!"] = "Diese Information ist öffentlich!"; App::$strings["Connection Pending Approval"] = "Verbindung wartet auf Bestätigung"; App::$strings["inherited"] = "geerbt"; +App::$strings["Submit"] = "Bestätigen"; App::$strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Bitte wähle ein Profil, das wir %s zeigen sollen, wenn Deine Profilseite über eine verifizierte Verbindung aufgerufen wird."; App::$strings["Their Settings"] = "Deren Einstellungen"; App::$strings["My Settings"] = "Meine Einstellungen"; @@ -166,6 +144,30 @@ App::$strings["Some permissions may be inherited from your channel's privacy settings, which have higher priority than individual settings. You can change those settings here but they wont have any impact unless the inherited setting changes."] = "Einige Berechtigungen werden möglicherweise von den globalen Sicherheits- und Privatsphäre-Einstellungen dieses Kanals geerbt. Diese haben eine höhere Priorität als die Einstellungen an der Verbindung. Werden geerbte Einstellungen hier geändert, hat dies keine Auswirkungen."; App::$strings["Last update:"] = "Letzte Aktualisierung:"; App::$strings["Public access denied."] = "Öffentlichen Zugriff verweigert."; +App::$strings["Item not found."] = "Element nicht gefunden."; +App::$strings["First Name"] = "Vorname"; +App::$strings["Last Name"] = "Nachname"; +App::$strings["Nickname"] = "Spitzname"; +App::$strings["Full Name"] = "Voller Name"; +App::$strings["Email"] = "E-Mail"; +App::$strings["Profile Photo"] = "Profilfoto"; +App::$strings["Profile Photo 16px"] = "Profilfoto 16 px"; +App::$strings["Profile Photo 32px"] = "Profilfoto 32 px"; +App::$strings["Profile Photo 48px"] = "Profilfoto 48 px"; +App::$strings["Profile Photo 64px"] = "Profilfoto 64 px"; +App::$strings["Profile Photo 80px"] = "Profilfoto 80 px"; +App::$strings["Profile Photo 128px"] = "Profilfoto 128 px"; +App::$strings["Timezone"] = "Zeitzone"; +App::$strings["Homepage URL"] = "Homepage-URL"; +App::$strings["Language"] = "Sprache"; +App::$strings["Birth Year"] = "Geburtsjahr"; +App::$strings["Birth Month"] = "Geburtsmonat"; +App::$strings["Birth Day"] = "Geburtstag"; +App::$strings["Birthdate"] = "Geburtsdatum"; +App::$strings["Gender"] = "Geschlecht"; +App::$strings["Male"] = "Männlich"; +App::$strings["Female"] = "Weiblich"; +App::$strings["Channel added."] = "Kanal hinzugefügt."; App::$strings["%d rating"] = array( 0 => "%d Bewertung", 1 => "%d Bewertungen", @@ -196,13 +198,74 @@ App::$strings["Reverse Alphabetic"] = "Entgegengesetzt alphabetisch"; App::$strings["Newest to Oldest"] = "Neueste zuerst"; App::$strings["Oldest to Newest"] = "Älteste zuerst"; App::$strings["No entries (some entries may be hidden)."] = "Keine Einträge gefunden (einige könnten versteckt sein)."; -App::$strings["Item not found."] = "Element nicht gefunden."; +App::$strings["Continue"] = "Fortfahren"; +App::$strings["Premium Channel Setup"] = "Premium-Kanal-Einrichtung"; +App::$strings["Enable premium channel connection restrictions"] = "Einschränkungen für einen Premium-Kanal aktivieren"; +App::$strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = "Bitte gib Deine Nutzungsbedingungen ein, z.B. Paypal-Quittung, Richtlinien etc."; +App::$strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = "Unter Umständen sind weitere Schritte oder die Bestätigung der folgenden Bedingungen vor dem Verbinden mit diesem Kanal nötig."; +App::$strings["Potential connections will then see the following text before proceeding:"] = "Potentielle Kontakte werden den folgenden Text sehen, bevor fortgefahren wird:"; +App::$strings["By continuing, I certify that I have complied with any instructions provided on this page."] = "Indem ich fortfahre, bestätige ich die Erfüllung aller Anweisungen auf dieser Seite."; +App::$strings["(No specific instructions have been provided by the channel owner.)"] = "(Der Kanal-Besitzer hat keine speziellen Anweisungen hinterlegt.)"; +App::$strings["Restricted or Premium Channel"] = "Eingeschränkter oder Premium-Kanal"; +App::$strings["Calendar entries imported."] = "Kalendereinträge wurden importiert."; +App::$strings["No calendar entries found."] = "Keine Kalendereinträge gefunden."; +App::$strings["Event can not end before it has started."] = "Termin-Ende liegt vor dem Beginn."; +App::$strings["Unable to generate preview."] = "Vorschau konnte nicht erzeugt werden."; +App::$strings["Event title and start time are required."] = "Titel und Startzeit des Termins sind erforderlich."; +App::$strings["Event not found."] = "Termin nicht gefunden."; +App::$strings["event"] = "Termin"; +App::$strings["Edit event title"] = "Termintitel bearbeiten"; +App::$strings["Event title"] = "Termintitel"; +App::$strings["Required"] = "Benötigt"; +App::$strings["Categories (comma-separated list)"] = "Kategorien (Kommagetrennte Liste)"; +App::$strings["Edit Category"] = "Kategorie bearbeiten"; +App::$strings["Category"] = "Kategorie"; +App::$strings["Edit start date and time"] = "Startdatum und -zeit bearbeiten"; +App::$strings["Start date and time"] = "Startdatum und -zeit"; +App::$strings["Finish date and time are not known or not relevant"] = "Enddatum und -zeit sind unbekannt oder irrelevant"; +App::$strings["Edit finish date and time"] = "Enddatum und -zeit bearbeiten"; +App::$strings["Finish date and time"] = "Enddatum und -zeit"; +App::$strings["Adjust for viewer timezone"] = "An die Zeitzone des Betrachters anpassen"; +App::$strings["Important for events that happen in a particular place. Not practical for global holidays."] = "Wichtig für Veranstaltungen die an bestimmten Orten stattfinden. Nicht sinnvoll für globale Feiertage / Ferien."; +App::$strings["Edit Description"] = "Beschreibung bearbeiten"; +App::$strings["Description"] = "Beschreibung"; +App::$strings["Edit Location"] = "Ort bearbeiten"; +App::$strings["Location"] = "Ort"; +App::$strings["Share this event"] = "Den Termin teilen"; +App::$strings["Preview"] = "Vorschau"; +App::$strings["Permission settings"] = "Berechtigungs-Einstellungen"; +App::$strings["Advanced Options"] = "Weitere Optionen"; +App::$strings["l, F j"] = "l, j. F"; +App::$strings["Edit event"] = "Termin bearbeiten"; +App::$strings["Delete event"] = "Termin löschen"; +App::$strings["Link to Source"] = "Link zur Quelle"; +App::$strings["calendar"] = "Kalender"; +App::$strings["Edit Event"] = "Termin bearbeiten"; +App::$strings["Create Event"] = "Termin anlegen"; +App::$strings["Previous"] = "Voriges"; +App::$strings["Next"] = "Nächste"; +App::$strings["Export"] = "Exportieren"; +App::$strings["View"] = "Ansicht"; +App::$strings["Month"] = "Monat"; +App::$strings["Week"] = "Woche"; +App::$strings["Day"] = "Tag"; +App::$strings["Today"] = "Heute"; +App::$strings["Event removed"] = "Termin gelöscht"; +App::$strings["Failed to remove event"] = "Termin konnte nicht gelöscht werden"; +App::$strings["Bookmark added"] = "Lesezeichen hinzugefügt"; +App::$strings["My Bookmarks"] = "Meine Lesezeichen"; +App::$strings["My Connections Bookmarks"] = "Lesezeichen meiner Kontakte"; App::$strings["Item not found"] = "Element nicht gefunden"; -App::$strings["Title (optional)"] = "Titel (optional)"; -App::$strings["Edit Block"] = "Block bearbeiten"; -App::$strings["No channel."] = "Kein Kanal."; -App::$strings["Common connections"] = "Gemeinsame Verbindungen"; -App::$strings["No connections in common."] = "Keine gemeinsamen Verbindungen."; +App::$strings["Item is not editable"] = "Element kann nicht bearbeitet werden."; +App::$strings["Edit post"] = "Bearbeite Beitrag"; +App::$strings["Photos"] = "Fotos"; +App::$strings["Cancel"] = "Abbrechen"; +App::$strings["Invalid item."] = "Ungültiges Element."; +App::$strings["Channel not found."] = "Kanal nicht gefunden."; +App::$strings["Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."] = "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."; +App::$strings["Save to Folder:"] = "Speichern in Ordner:"; +App::$strings["- select -"] = "– auswählen –"; +App::$strings["Save"] = "Speichern"; App::$strings["Blocked"] = "Blockiert"; App::$strings["Ignored"] = "Ignoriert"; App::$strings["Hidden"] = "Versteckt"; @@ -254,51 +317,38 @@ App::$strings["select a photo from your photo albums"] = "ein Foto aus meinen Fo App::$strings["Crop Image"] = "Bild zuschneiden"; App::$strings["Please adjust the image cropping for optimum viewing."] = "Bitte schneide das Bild für eine optimale Anzeige passend zu."; App::$strings["Done Editing"] = "Bearbeitung fertigstellen"; -App::$strings["Item is not editable"] = "Element kann nicht bearbeitet werden."; -App::$strings["Edit post"] = "Bearbeite Beitrag"; -App::$strings["Calendar entries imported."] = "Kalendereinträge wurden importiert."; -App::$strings["No calendar entries found."] = "Keine Kalendereinträge gefunden."; -App::$strings["Event can not end before it has started."] = "Termin-Ende liegt vor dem Beginn."; -App::$strings["Unable to generate preview."] = "Vorschau konnte nicht erzeugt werden."; -App::$strings["Event title and start time are required."] = "Titel und Startzeit des Termins sind erforderlich."; -App::$strings["Event not found."] = "Termin nicht gefunden."; -App::$strings["event"] = "Termin"; -App::$strings["Edit event title"] = "Termintitel bearbeiten"; -App::$strings["Event title"] = "Termintitel"; -App::$strings["Required"] = "Benötigt"; -App::$strings["Categories (comma-separated list)"] = "Kategorien (Kommagetrennte Liste)"; -App::$strings["Edit Category"] = "Kategorie bearbeiten"; -App::$strings["Category"] = "Kategorie"; -App::$strings["Edit start date and time"] = "Startdatum und -zeit bearbeiten"; -App::$strings["Start date and time"] = "Startdatum und -zeit"; -App::$strings["Finish date and time are not known or not relevant"] = "Enddatum und -zeit sind unbekannt oder irrelevant"; -App::$strings["Edit finish date and time"] = "Enddatum und -zeit bearbeiten"; -App::$strings["Finish date and time"] = "Enddatum und -zeit"; -App::$strings["Adjust for viewer timezone"] = "An die Zeitzone des Betrachters anpassen"; -App::$strings["Important for events that happen in a particular place. Not practical for global holidays."] = "Wichtig für Veranstaltungen die an bestimmten Orten stattfinden. Nicht sinnvoll für globale Feiertage / Ferien."; -App::$strings["Edit Description"] = "Beschreibung bearbeiten"; -App::$strings["Description"] = "Beschreibung"; -App::$strings["Edit Location"] = "Ort bearbeiten"; -App::$strings["Location"] = "Ort"; -App::$strings["Share this event"] = "Den Termin teilen"; -App::$strings["Preview"] = "Vorschau"; -App::$strings["Permission settings"] = "Berechtigungs-Einstellungen"; -App::$strings["Advanced Options"] = "Weitere Optionen"; -App::$strings["Edit event"] = "Termin bearbeiten"; -App::$strings["Delete event"] = "Termin löschen"; -App::$strings["calendar"] = "Kalender"; -App::$strings["Event removed"] = "Termin gelöscht"; -App::$strings["Failed to remove event"] = "Termin konnte nicht gelöscht werden"; -App::$strings["Photos"] = "Fotos"; -App::$strings["Cancel"] = "Abbrechen"; +App::$strings["webpage"] = "Webseite"; +App::$strings["block"] = "Block"; +App::$strings["layout"] = "Layout"; +App::$strings["menu"] = "Menü"; +App::$strings["%s element installed"] = "Element für %s installiert"; +App::$strings["%s element installation failed"] = "Installation des Elements %s fehlgeschlagen"; +App::$strings["Permissions denied."] = "Berechtigung verweigert."; +App::$strings["Import"] = "Import"; App::$strings["This site is not a directory server"] = "Diese Webseite ist kein Verzeichnisserver"; App::$strings["This directory server requires an access token"] = "Dieser Verzeichnisserver benötigt einen Zugriffstoken"; -App::$strings["Save to Folder:"] = "Speichern in Ordner:"; -App::$strings["- select -"] = "– auswählen –"; -App::$strings["Save"] = "Speichern"; +App::$strings["You must be logged in to see this page."] = "Du musst angemeldet sein, um diese Seite betrachten zu können."; +App::$strings["Room not found"] = "Chatraum nicht gefunden"; +App::$strings["Leave Room"] = "Raum verlassen"; +App::$strings["Delete Room"] = "Raum löschen"; +App::$strings["I am away right now"] = "Ich bin gerade nicht da"; +App::$strings["I am online"] = "Ich bin online"; +App::$strings["Bookmark this room"] = "Lesezeichen für diesen Raum setzen"; +App::$strings["Please enter a link URL:"] = "Gib eine URL ein:"; +App::$strings["Encrypt text"] = "Text verschlüsseln"; +App::$strings["Insert web link"] = "Link einfügen"; +App::$strings["Feature disabled."] = "Funktion deaktiviert."; +App::$strings["New Chatroom"] = "Neuer Chatraum"; +App::$strings["Chatroom name"] = "Chatraumname"; +App::$strings["Expiration of chats (minutes)"] = "Verfall von Chats (Minuten)"; +App::$strings["Permissions"] = "Berechtigungen"; +App::$strings["%1\$s's Chatrooms"] = "%1\$ss Chaträume"; +App::$strings["No chatrooms available"] = "Keine Chaträume verfügbar"; +App::$strings["Create New"] = "Neu anlegen"; +App::$strings["Expiration"] = "Verfall"; +App::$strings["min"] = "min"; App::$strings["Invalid message"] = "Ungültige Beitrags-ID (mid)"; App::$strings["no results"] = "keine Ergebnisse"; -App::$strings["Delivery report for %1\$s"] = "Zustellungsbericht für %1\$s"; App::$strings["channel sync processed"] = "Kanal-Sync verarbeitet"; App::$strings["queued"] = "zur Warteschlange hinzugefügt"; App::$strings["posted"] = "zugestellt"; @@ -310,14 +360,14 @@ App::$strings["recipient not found"] = "Empfänger nicht gefunden."; App::$strings["mail recalled"] = "Mail widerrufen"; App::$strings["duplicate mail received"] = "Doppelte Mail erhalten"; App::$strings["mail delivered"] = "Mail zugestellt"; +App::$strings["Delivery report for %1\$s"] = "Zustellungsbericht für %1\$s"; +App::$strings["Options"] = "Optionen"; +App::$strings["Redeliver"] = "Erneut zustellen"; App::$strings["Layout Name"] = "Layout-Name"; App::$strings["Layout Description (Optional)"] = "Layout-Beschreibung (optional)"; App::$strings["Edit Layout"] = "Layout bearbeiten"; App::$strings["Page link"] = "Seiten-Link"; App::$strings["Edit Webpage"] = "Webseite bearbeiten"; -App::$strings["Channel added."] = "Kanal hinzugefügt."; -App::$strings["network"] = "Netzwerk"; -App::$strings["RSS"] = "RSS"; App::$strings["Privacy group created."] = "Gruppe wurde erstellt."; App::$strings["Could not create privacy group."] = "Gruppe konnte nicht erstellt werden."; App::$strings["Privacy group not found."] = "Gruppe nicht gefunden."; @@ -331,16 +381,33 @@ App::$strings["Privacy group editor"] = "Gruppeneditor"; App::$strings["Members"] = "Mitglieder"; App::$strings["All Connected Channels"] = "Alle verbundenen Kanäle"; App::$strings["Click on a channel to add or remove."] = "Wähle einen Kanal zum hinzufügen oder entfernen aus."; -App::$strings["Share content from Firefox to \$Projectname"] = "Inhalte von Firefox nach \$Projectname teilen"; -App::$strings["Activate the Firefox \$Projectname provider"] = "Aktiviert den \$Projectname-Provider für firefox"; -App::$strings["Authorize application connection"] = "Zugriff für die Anwendung autorisieren"; -App::$strings["Return to your app and insert this Securty Code:"] = "Trage folgenden Sicherheitscode in der Anwendung ein:"; -App::$strings["Please login to continue."] = "Zum Weitermachen, bitte einloggen."; -App::$strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Möchtest Du dieser Anwendung erlauben, Deine Nachrichten und Kontakte abzurufen und/oder neue Nachrichten für Dich zu erstellen?"; +App::$strings["App installed."] = "App installiert."; +App::$strings["Malformed app."] = "Fehlerhafte App."; +App::$strings["Embed code"] = "Code einbetten"; +App::$strings["Edit App"] = "App bearbeiten"; +App::$strings["Create App"] = "App erstellen"; +App::$strings["Name of app"] = "Name der App"; +App::$strings["Location (URL) of app"] = "Ort (URL) der App"; +App::$strings["Photo icon URL"] = "URL zum Icon"; +App::$strings["80 x 80 pixels - optional"] = "80 x 80 Pixel – optional"; +App::$strings["Categories (optional, comma separated list)"] = "Kategorien (optional, kommagetrennte Liste)"; +App::$strings["Version ID"] = "Versions-ID"; +App::$strings["Price of app"] = "Preis der App"; +App::$strings["Location (URL) to purchase app"] = "Ort (URL), um die App zu kaufen"; App::$strings["Documentation Search"] = "Suche in der Dokumentation"; App::$strings["Help:"] = "Hilfe:"; App::$strings["Help"] = "Hilfe"; App::$strings["\$Projectname Documentation"] = "\$Projectname-Dokumentation"; +App::$strings["Item not available."] = "Element nicht verfügbar."; +App::$strings["Layout updated."] = "Layout aktualisiert."; +App::$strings["Edit System Page Description"] = "Systemseitenbeschreibung bearbeiten"; +App::$strings["Layout not found."] = "Layout nicht gefunden."; +App::$strings["Module Name:"] = "Modulname:"; +App::$strings["Layout Help"] = "Layout-Hilfe"; +App::$strings["Share content from Firefox to \$Projectname"] = "Inhalte von Firefox nach \$Projectname teilen"; +App::$strings["Activate the Firefox \$Projectname provider"] = "Aktiviert den \$Projectname-Provider für firefox"; +App::$strings["network"] = "Netzwerk"; +App::$strings["RSS"] = "RSS"; App::$strings["Permission Denied."] = "Zugriff verweigert."; App::$strings["File not found."] = "Datei nicht gefunden."; App::$strings["Edit file permissions"] = "Dateiberechtigungen bearbeiten"; @@ -352,70 +419,13 @@ App::$strings["Copy/paste this URL to link file from a web page"] = "Diese URL v App::$strings["Share this file"] = "Diese Datei freigeben"; App::$strings["Show URL to this file"] = "URL zu dieser Datei anzeigen"; App::$strings["Notify your contacts about this file"] = "Meine Kontakte über diese Datei benachrichtigen"; -App::$strings["Apps"] = "Apps"; -App::$strings["Item not available."] = "Element nicht verfügbar."; -App::$strings["Your service plan only allows %d channels."] = "Dein Vertrag erlaubt nur %d Kanäle."; -App::$strings["Nothing to import."] = "Nichts zu importieren."; -App::$strings["Unable to download data from old server"] = "Daten können vom alten Server nicht heruntergeladen werden"; -App::$strings["Imported file is empty."] = "Die importierte Datei ist leer."; -App::$strings["Warning: Database versions differ by %1\$d updates."] = "Achtung: Datenbankversionen unterscheiden sich um %1\$d Aktualisierungen."; -App::$strings["Cloned channel not found. Import failed."] = "Geklonter Kanal nicht gefunden. Import fehlgeschlagen."; -App::$strings["No channel. Import failed."] = "Kein Kanal. Import fehlgeschlagen."; -App::$strings["Import completed."] = "Import abgeschlossen."; -App::$strings["You must be logged in to use this feature."] = "Du musst angemeldet sein um diese Funktion zu nutzen."; -App::$strings["Import Channel"] = "Kanal importieren"; -App::$strings["Use this form to import an existing channel from a different server/hub. You may retrieve the channel identity from the old server/hub via the network or provide an export file."] = "Verwende dieses Formular, um einen existierenden Kanal von einem anderen Hub zu importieren. Du kannst den Kanal direkt vom bisherigen Hub über das Netzwerk oder aus einer exportierten Sicherheitskopie importieren."; -App::$strings["File to Upload"] = "Hochzuladende Datei:"; -App::$strings["Or provide the old server/hub details"] = "Oder gib die Details Deines bisherigen \$Projectname-Hubs ein"; -App::$strings["Your old identity address (xyz@example.com)"] = "Bisherige Kanal-Adresse (xyz@example.com)"; -App::$strings["Your old login email address"] = "Deine alte Login-E-Mail-Adresse"; -App::$strings["Your old login password"] = "Dein altes Passwort"; -App::$strings["For either option, please choose whether to make this hub your new primary address, or whether your old location should continue this role. You will be able to post from either location, but only one can be marked as the primary location for files, photos, and media."] = "Egal, welche Option Du wählst – bitte lege fest, ob dieser Server die neue primäre Adresse dieses Kanals sein soll, oder ob der bisherige \$Projectname-Hub diese Rolle weiterhin wahrnimmt. Du kannst von beiden Servern aus posten, aber nur einer kann der primäre Ort Deiner Dateien, Fotos und Medien sein."; -App::$strings["Make this hub my primary location"] = "Dieser $Pojectname-Hub ist mein primärer Hub."; -App::$strings["Import existing posts if possible (experimental - limited by available memory"] = "Importiere bestehende Beiträge falls möglich (experimentell - begrenzt durch zur Verfügung stehenden Speicher"; -App::$strings["This process may take several minutes to complete. Please submit the form only once and leave this page open until finished."] = "Dieser Vorgang kann einige Minuten dauern. Bitte sende das Formular nur einmal ab und lasse diese Seite bis zur Fertigstellung offen."; -App::$strings["Unable to locate original post."] = "Originalbeitrag nicht gefunden."; -App::$strings["Empty post discarded."] = "Leeren Beitrag verworfen."; -App::$strings["Executable content type not permitted to this channel."] = "Ausführbarer Content-Typ ist für diesen Kanal nicht freigegeben."; -App::$strings["Duplicate post suppressed."] = "Doppelter Beitrag unterdrückt."; -App::$strings["System error. Post not saved."] = "Systemfehler. Beitrag nicht gespeichert."; -App::$strings["Unable to obtain post information from database."] = "Beitragsinformationen können nicht aus der Datenbank abgerufen werden."; -App::$strings["You have reached your limit of %1$.0f top level posts."] = "Du hast die maximale Anzahl von %1$.0f Beiträgen erreicht."; -App::$strings["You have reached your limit of %1$.0f webpages."] = "Du hast die maximale Anzahl von %1$.0f Webseiten erreicht."; App::$strings["Layouts"] = "Layouts"; App::$strings["Comanche page description language help"] = "Hilfe zur Comanche-Seitenbeschreibungssprache"; App::$strings["Layout Description"] = "Layout-Beschreibung"; +App::$strings["Created"] = "Erstellt"; +App::$strings["Edited"] = "Geändert"; +App::$strings["Share"] = "Teilen"; App::$strings["Download PDL file"] = "PDL-Datei herunterladen"; -App::$strings["\$Projectname"] = "\$Projectname"; -App::$strings["Welcome to %s"] = "Willkommen auf %s"; -App::$strings["First Name"] = "Vorname"; -App::$strings["Last Name"] = "Nachname"; -App::$strings["Nickname"] = "Spitzname"; -App::$strings["Full Name"] = "Voller Name"; -App::$strings["Email"] = "E-Mail"; -App::$strings["Profile Photo"] = "Profilfoto"; -App::$strings["Profile Photo 16px"] = "Profilfoto 16 px"; -App::$strings["Profile Photo 32px"] = "Profilfoto 32 px"; -App::$strings["Profile Photo 48px"] = "Profilfoto 48 px"; -App::$strings["Profile Photo 64px"] = "Profilfoto 64 px"; -App::$strings["Profile Photo 80px"] = "Profilfoto 80 px"; -App::$strings["Profile Photo 128px"] = "Profilfoto 128 px"; -App::$strings["Timezone"] = "Zeitzone"; -App::$strings["Homepage URL"] = "Homepage-URL"; -App::$strings["Language"] = "Sprache"; -App::$strings["Birth Year"] = "Geburtsjahr"; -App::$strings["Birth Month"] = "Geburtsmonat"; -App::$strings["Birth Day"] = "Geburtstag"; -App::$strings["Birthdate"] = "Geburtsdatum"; -App::$strings["Gender"] = "Geschlecht"; -App::$strings["Male"] = "Männlich"; -App::$strings["Female"] = "Weiblich"; -App::$strings["webpage"] = "Webseite"; -App::$strings["block"] = "Block"; -App::$strings["layout"] = "Layout"; -App::$strings["menu"] = "Menü"; -App::$strings["%s element installed"] = "Element für %s installiert"; -App::$strings["%s element installation failed"] = "Installation des Elements %s fehlgeschlagen"; App::$strings["Like/Dislike"] = "Mögen/Nicht mögen"; App::$strings["This action is restricted to members."] = "Diese Aktion kann nur von Mitgliedern ausgeführt werden."; App::$strings["Please login with your \$Projectname ID or register as a new \$Projectname member to continue."] = "Um fortzufahren melde Dich bitte mit Deiner \$Projectname-ID an oder registriere Dich als neues \$Projectname-Mitglied."; @@ -436,175 +446,103 @@ App::$strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$s nimmt an %2\$ss % App::$strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$s nimmt vielleicht an %2\$ss %3\$s teil"; App::$strings["Action completed."] = "Aktion durchgeführt."; App::$strings["Thank you."] = "Vielen Dank."; -App::$strings["Import completed"] = "Import abgeschlossen"; -App::$strings["Import Items"] = "Beiträge importieren"; -App::$strings["Use this form to import existing posts and content from an export file."] = "Mit diesem Formular kannst Du existierende Beiträge und Inhalte aus einer Sicherungsdatei importieren."; -App::$strings["Total invitation limit exceeded."] = "Einladungslimit überschritten."; -App::$strings["%s : Not a valid email address."] = "%s : Keine gültige Email Adresse."; -App::$strings["Please join us on \$Projectname"] = "Schließe Dich uns auf \$Projectname an!"; -App::$strings["Invitation limit exceeded. Please contact your site administrator."] = "Einladungslimit überschritten. Bitte kontaktiere den Administrator Deines \$Projectname-Servers."; -App::$strings["%s : Message delivery failed."] = "%s : Nachricht konnte nicht zugestellt werden."; -App::$strings["%d message sent."] = array( - 0 => "%d Nachricht gesendet.", - 1 => "%d Nachrichten gesendet.", -); -App::$strings["You have no more invitations available"] = "Du hast keine weiteren verfügbare Einladungen"; -App::$strings["Send invitations"] = "Einladungen senden"; -App::$strings["Enter email addresses, one per line:"] = "Email-Adressen eintragen, eine pro Zeile:"; -App::$strings["Your message:"] = "Deine Nachricht:"; -App::$strings["Please join my community on \$Projectname."] = "Schließe Dich uns auf \$Projectname an!"; -App::$strings["You will need to supply this invitation code:"] = "Bitte verwende bei der Registrierung den folgenden Einladungscode:"; -App::$strings["1. Register at any \$Projectname location (they are all inter-connected)"] = "1. Registriere Dich auf einem beliebigen \$Projectname-Hub (sie sind alle miteinander verbunden)"; -App::$strings["2. Enter my \$Projectname network address into the site searchbar."] = "2. Gib meine \$Projectname-Adresse im Suchfeld ein."; -App::$strings["or visit"] = "oder besuche"; -App::$strings["3. Click [Connect]"] = "3. Klicke auf [Verbinden]"; -App::$strings["Remote privacy information not available."] = "Privatsphäre-Einstellungen anderer Nutzer sind nicht verfügbar."; -App::$strings["Visible to:"] = "Sichtbar für:"; -App::$strings["Location not found."] = "Klon nicht gefunden."; -App::$strings["Location lookup failed."] = "Nachschlagen des Kanal-Ortes fehlgeschlagen"; -App::$strings["Please select another location to become primary before removing the primary location."] = "Bitte mache einen anderen Kanal-Ort zum primären Ort, bevor Du den primären Ort löschst."; -App::$strings["Syncing locations"] = "Synchronisiere Klone"; -App::$strings["No locations found."] = "Keine Klon-Adressen gefunden."; -App::$strings["Manage Channel Locations"] = "Klon-Adressen verwalten"; +App::$strings["Profile not found."] = "Profil nicht gefunden."; +App::$strings["Profile deleted."] = "Profil gelöscht."; +App::$strings["Profile-"] = "Profil-"; +App::$strings["New profile created."] = "Neues Profil erstellt."; +App::$strings["Profile unavailable to clone."] = "Profil kann nicht geklont werden."; +App::$strings["Profile unavailable to export."] = "Dieses Profil kann nicht exportiert werden."; +App::$strings["Profile Name is required."] = "Profil-Name erforderlich."; +App::$strings["Marital Status"] = "Familienstand"; +App::$strings["Romantic Partner"] = "Romantische Partner"; +App::$strings["Likes"] = "Gefällt"; +App::$strings["Dislikes"] = "Gefällt nicht"; +App::$strings["Work/Employment"] = "Arbeit/Anstellung"; +App::$strings["Religion"] = "Religion"; +App::$strings["Political Views"] = "Politische Ansichten"; +App::$strings["Sexual Preference"] = "Sexuelle Orientierung"; +App::$strings["Homepage"] = "Webseite"; +App::$strings["Interests"] = "Hobbys/Interessen"; App::$strings["Address"] = "Adresse"; -App::$strings["Primary"] = "Primär"; -App::$strings["Drop"] = "Löschen"; -App::$strings["Sync Now"] = "Jetzt synchronisieren"; -App::$strings["Please wait several minutes between consecutive operations."] = "Bitte warte mehrere Minuten zwischen dem Ausführen zweier Operationen!"; -App::$strings["When possible, drop a location by logging into that website/hub and removing your channel."] = "Wenn möglich, lösche einen Klon, indem Du Dich auf dem jeweiligen Hub einloggst und den Kanal dort löschst."; -App::$strings["Use this form to drop the location if the hub is no longer operating."] = "Benutze dieses Formular zum Löschen eines Klons, wenn es den Hub nicht mehr gibt."; -App::$strings["Hub not found."] = "Server nicht gefunden."; -App::$strings["Unable to lookup recipient."] = "Konnte den Empfänger nicht finden."; -App::$strings["Unable to communicate with requested channel."] = "Die Kommunikation mit dem ausgewählten Kanal ist fehlgeschlagen."; -App::$strings["Cannot verify requested channel."] = "Verifizierung des angeforderten Kanals fehlgeschlagen."; -App::$strings["Selected channel has private message restrictions. Send failed."] = "Der ausgewählte Kanal hat Einschränkungen bzgl. privater Nachrichten. Senden fehlgeschlagen."; -App::$strings["Messages"] = "Nachrichten"; -App::$strings["Message recalled."] = "Nachricht widerrufen."; -App::$strings["Conversation removed."] = "Unterhaltung gelöscht."; -App::$strings["Expires YYYY-MM-DD HH:MM"] = "Verfällt YYYY-MM-DD HH;MM"; -App::$strings["Requested channel is not in this network"] = "Angeforderter Kanal ist nicht in diesem Netzwerk."; -App::$strings["Send Private Message"] = "Private Nachricht senden"; -App::$strings["To:"] = "An:"; -App::$strings["Subject:"] = "Betreff:"; -App::$strings["Attach file"] = "Datei anhängen"; -App::$strings["Send"] = "Absenden"; -App::$strings["Set expiration date"] = "Verfallsdatum"; -App::$strings["Delete message"] = "Nachricht löschen"; -App::$strings["Delivery report"] = "Zustellungsbericht"; -App::$strings["Recall message"] = "Nachricht widerrufen"; -App::$strings["Message has been recalled."] = "Die Nachricht wurde widerrufen."; -App::$strings["Delete Conversation"] = "Unterhaltung löschen"; -App::$strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Keine sichere Kommunikation verfügbar. Eventuell kannst Du auf der Profilseite des Absenders antworten."; -App::$strings["Send Reply"] = "Antwort senden"; -App::$strings["Your message for %s (%s):"] = "Deine Nachricht für %s (%s):"; -App::$strings["You have created %1$.0f of %2$.0f allowed channels."] = "Du hast %1$.0f von maximal %2$.0f erlaubten Kanälen eingerichtet."; -App::$strings["Create a new channel"] = "Neuen Kanal anlegen"; -App::$strings["Channel Manager"] = "Kanal-Manager"; -App::$strings["Current Channel"] = "Aktueller Kanal"; -App::$strings["Switch to one of your channels by selecting it."] = "Wechsle zu einem Deiner Kanäle, indem Du auf ihn klickst."; -App::$strings["Default Channel"] = "Standard Kanal"; -App::$strings["Make Default"] = "Zum Standard machen"; -App::$strings["%d new messages"] = "%d neue Nachrichten"; -App::$strings["%d new introductions"] = "%d neue Vorstellungen"; -App::$strings["Delegated Channel"] = "Delegierte Kanäle"; -App::$strings["No valid account found."] = "Kein gültiges Konto gefunden."; -App::$strings["Password reset request issued. Check your email."] = "Zurücksetzen des Passworts eingeleitet. Schau in Deine E-Mails."; -App::$strings["Site Member (%s)"] = "Nutzer (%s)"; -App::$strings["Password reset requested at %s"] = "Passwort-Rücksetzung auf %s angefordert"; -App::$strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Die Anfrage konnte nicht verifiziert werden. (Vielleicht hast Du schon einmal auf den Link in der E-Mail geklickt?) Passwort-Rücksetzung fehlgeschlagen."; -App::$strings["Password Reset"] = "Zurücksetzen des Kennworts"; -App::$strings["Your password has been reset as requested."] = "Dein Passwort wurde wie angefordert neu erstellt."; -App::$strings["Your new password is"] = "Dein neues Passwort lautet"; -App::$strings["Save or copy your new password - and then"] = "Speichere oder kopiere Dein neues Passwort – und dann"; -App::$strings["click here to login"] = "Klicke hier, um dich anzumelden"; -App::$strings["Your password may be changed from the Settings page after successful login."] = "Dein Passwort kann unter Einstellungen nach einer erfolgreichen Anmeldung geändert werden."; -App::$strings["Your password has changed at %s"] = "Auf %s wurde Dein Passwort geändert"; -App::$strings["Forgot your Password?"] = "Kennwort vergessen?"; -App::$strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Gib Deine E-Mail-Adresse ein, um Dein Passwort zurücksetzen zu lassen. Du erhältst dann weitere Anweisungen per E-Mail."; -App::$strings["Email Address"] = "E-Mail Adresse"; -App::$strings["Reset"] = "Zurücksetzen"; -App::$strings["Unable to update menu."] = "Kann Menü nicht aktualisieren."; -App::$strings["Unable to create menu."] = "Kann Menü nicht erstellen."; -App::$strings["Menu Name"] = "Name des Menüs"; -App::$strings["Unique name (not visible on webpage) - required"] = "Eindeutiger Name (nicht sichtbar auf der Webseite) – erforderlich"; -App::$strings["Menu Title"] = "Menütitel"; -App::$strings["Visible on webpage - leave empty for no title"] = "Sichtbar auf der Webseite – für keinen Titel leer lassen"; -App::$strings["Allow Bookmarks"] = "Lesezeichen erlauben"; -App::$strings["Menu may be used to store saved bookmarks"] = "Im Menü können gespeicherte Lesezeichen abgelegt werden"; -App::$strings["Submit and proceed"] = "Absenden und fortfahren"; -App::$strings["Menus"] = "Menüs"; -App::$strings["Bookmarks allowed"] = "Lesezeichen erlaubt"; -App::$strings["Delete this menu"] = "Lösche dieses Menü"; -App::$strings["Edit menu contents"] = "Bearbeite Menü Inhalte"; -App::$strings["Edit this menu"] = "Dieses Menü bearbeiten"; -App::$strings["Menu could not be deleted."] = "Menü konnte nicht gelöscht werden."; -App::$strings["Menu not found."] = "Menü nicht gefunden"; -App::$strings["Edit Menu"] = "Menü bearbeiten"; -App::$strings["Add or remove entries to this menu"] = "Einträge zu diesem Menü hinzufügen oder entfernen"; -App::$strings["Menu name"] = "Menü Name"; -App::$strings["Must be unique, only seen by you"] = "Muss eindeutig sein, ist aber nur für Dich sichtbar"; -App::$strings["Menu title"] = "Menü Titel"; -App::$strings["Menu title as seen by others"] = "Menü Titel wie er von anderen gesehen wird"; -App::$strings["Allow bookmarks"] = "Erlaube Lesezeichen"; -App::$strings["Not found."] = "Nicht gefunden."; -App::$strings["__ctx:mood__ %1\$s is %2\$s"] = "%1\$s ist %2\$s"; -App::$strings["Mood"] = "Laune"; -App::$strings["Set your current mood and tell your friends"] = "Wähle Deine aktuelle Stimmung und teile sie mit Deinen Freunden"; -App::$strings["Profile Match"] = "Profil-Übereinstimmungen"; -App::$strings["No keywords to match. Please add keywords to your default profile."] = "Keine Schlüsselwörter für den Abgleich gefunden. Bitte füge Schlüsselwörter zu Deinem Standardprofil hinzu."; -App::$strings["is interested in:"] = "interessiert sich für:"; -App::$strings["No matches"] = "Keine Übereinstimmungen"; -App::$strings["No such group"] = "Gruppe nicht gefunden"; -App::$strings["No such channel"] = "Kanal nicht gefunden"; -App::$strings["forum"] = "Forum"; -App::$strings["Search Results For:"] = "Suchergebnisse für:"; -App::$strings["Privacy group is empty"] = "Gruppe ist leer"; -App::$strings["Privacy group: "] = "Gruppe:"; -App::$strings["Invalid connection."] = "Ungültige Verbindung."; -App::$strings["No more system notifications."] = "Keine System-Benachrichtigungen mehr."; -App::$strings["System Notifications"] = "System-Benachrichtigungen"; -App::$strings["Unable to create element."] = "Element konnte nicht erstellt werden."; -App::$strings["Unable to update menu element."] = "Kann Menü-Element nicht aktualisieren."; -App::$strings["Unable to add menu element."] = "Kann Menü-Bestandteil nicht hinzufügen."; -App::$strings["Menu Item Permissions"] = "Zugriffsrechte des Menü-Elements"; -App::$strings["(click to open/close)"] = "(zum öffnen/schließen anklicken)"; -App::$strings["Link Name"] = "Name des Links"; -App::$strings["Link or Submenu Target"] = "Ziel des Links oder Untermenüs"; -App::$strings["Enter URL of the link or select a menu name to create a submenu"] = "URL des Links eingeben oder Menünamen wählen, um ein Untermenü anzulegen."; -App::$strings["Use magic-auth if available"] = "Magic-Auth verwenden, falls verfügbar"; -App::$strings["Open link in new window"] = "Öffne Link in neuem Fenster"; -App::$strings["Order in list"] = "Reihenfolge in der Liste"; -App::$strings["Higher numbers will sink to bottom of listing"] = "Größere Nummern werden weiter unten in der Auflistung einsortiert"; -App::$strings["Submit and finish"] = "Absenden und fertigstellen"; -App::$strings["Submit and continue"] = "Absenden und fortfahren"; -App::$strings["Menu:"] = "Menü:"; -App::$strings["Link Target"] = "Ziel des Links"; -App::$strings["Edit menu"] = "Menü bearbeiten"; -App::$strings["Edit element"] = "Bestandteil bearbeiten"; -App::$strings["Drop element"] = "Bestandteil löschen"; -App::$strings["New element"] = "Neues Bestandteil"; -App::$strings["Edit this menu container"] = "Diesen Menü-Container bearbeiten"; -App::$strings["Add menu element"] = "Menüelement hinzufügen"; -App::$strings["Delete this menu item"] = "Lösche dieses Menü-Bestandteil"; -App::$strings["Edit this menu item"] = "Bearbeite dieses Menü-Bestandteil"; -App::$strings["Menu item not found."] = "Menü-Bestandteil nicht gefunden."; -App::$strings["Menu item deleted."] = "Menü-Bestandteil gelöscht."; -App::$strings["Menu item could not be deleted."] = "Menü-Bestandteil kann nicht gelöscht werden."; -App::$strings["Edit Menu Element"] = "Bearbeite Menü-Bestandteil"; -App::$strings["Link text"] = "Link Text"; -App::$strings["Name or caption"] = "Name oder Titel"; -App::$strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\""] = "Beispiele: „Horst Weidinger“, „Lisa und ihr Meerschweinchen“, „Fußball“, „Segelflieger-Forum“ "; -App::$strings["Choose a short nickname"] = "Wähle einen kurzen Spitznamen"; -App::$strings["Your nickname will be used to create an easy to remember channel address e.g. nickname%s"] = "Dein Spitzname wird verwendet, um eine leicht zu merkende Kanal-Adresse (ähnlich einer E-Mail-Adresse) zu erzeugen, die Du mit anderen austauschen kannst, z.B. nickname%s"; -App::$strings["Channel role and privacy"] = "Kanaltyp und Privatspäre-Einstellungen"; -App::$strings["Select a channel role with your privacy requirements."] = "Wähle einen passenden Kanaltyp mit den zugehörigen Voreinstellungen zur Privatsphäre."; -App::$strings["Read more about roles"] = "Mehr Informationen über Rollen"; -App::$strings["Create Channel"] = "Einen neuen Kanal anlegen"; -App::$strings["A channel is your identity on this network. It can represent a person, a blog, or a forum to name a few. Channels can make connections with other channels to share information with highly detailed permissions."] = "Ein Kanal ist Deine Identität in diesem Netzwerk. Er kann eine Person, ein Blog oder ein Forum repräsentieren, nur um ein paar Beispiele zu nennen. Kanäle können Verbindungen miteinander eingehen, um Informationen zu teilen, jeweils basierend auf sehr detaillierten Berechtigungseinstellungen."; -App::$strings["or import an existing channel from another location."] = "oder importiere einen bestehenden Kanal von einem anderen Server."; -App::$strings["Invalid request identifier."] = "Ungültiger Anfrage-Identifikator."; -App::$strings["Discard"] = "Verwerfen"; -App::$strings["Mark all system notifications seen"] = "Markiere alle System-Benachrichtigungen als gesehen"; +App::$strings["Profile updated."] = "Profil aktualisiert."; +App::$strings["Hide your connections list from viewers of this profile"] = "Deine Verbindungen vor Betrachtern dieses Profils verbergen"; +App::$strings["Edit Profile Details"] = "Bearbeite Profil-Details"; +App::$strings["View this profile"] = "Dieses Profil ansehen"; +App::$strings["Edit visibility"] = "Sichtbarkeit bearbeiten"; +App::$strings["Profile Tools"] = "Profilwerkzeuge"; +App::$strings["Change cover photo"] = "Titelbild ändern"; +App::$strings["Change profile photo"] = "Profilfoto ändern"; +App::$strings["Create a new profile using these settings"] = "Neues Profil anlegen und diese Einstellungen übernehmen"; +App::$strings["Clone this profile"] = "Dieses Profil klonen"; +App::$strings["Delete this profile"] = "Dieses Profil löschen"; +App::$strings["Add profile things"] = "Sachen zum Profil hinzufügen"; +App::$strings["Personal"] = "Persönlich"; +App::$strings["Relation"] = "Beziehung"; +App::$strings["Miscellaneous"] = "Verschiedenes"; +App::$strings["Import profile from file"] = "Profil aus einer Datei importieren"; +App::$strings["Export profile to file"] = "Profil in eine Datei exportieren"; +App::$strings["Your gender"] = "Dein Geschlecht"; +App::$strings["Marital status"] = "Familienstand"; +App::$strings["Sexual preference"] = "Sexuelle Orientierung"; +App::$strings["Profile name"] = "Profilname"; +App::$strings["This is your default profile."] = "Das ist Dein Standardprofil."; +App::$strings["Your full name"] = "Dein voller Name"; +App::$strings["Title/Description"] = "Titel/Beschreibung"; +App::$strings["Street address"] = "Straße und Hausnummer"; +App::$strings["Locality/City"] = "Wohnort"; +App::$strings["Region/State"] = "Region/Bundesstaat"; +App::$strings["Postal/Zip code"] = "Postleitzahl"; +App::$strings["Country"] = "Land"; +App::$strings["Who (if applicable)"] = "Wer (falls anwendbar)"; +App::$strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Beispiele: cathy123, Cathy Williams, cathy@example.com"; +App::$strings["Since (date)"] = "Seit (Datum)"; +App::$strings["Tell us about yourself"] = "Erzähle uns ein wenig von Dir"; +App::$strings["Hometown"] = "Heimatort"; +App::$strings["Political views"] = "Politische Ansichten"; +App::$strings["Religious views"] = "Religiöse Ansichten"; +App::$strings["Keywords used in directory listings"] = "Schlüsselwörter, die in Verzeichnis-Auflistungen verwendet werden"; +App::$strings["Example: fishing photography software"] = "Beispiel: Angeln Fotografie Software"; +App::$strings["Musical interests"] = "Musikalische Interessen"; +App::$strings["Books, literature"] = "Bücher, Literatur"; +App::$strings["Television"] = "Fernsehen"; +App::$strings["Film/Dance/Culture/Entertainment"] = "Film/Tanz/Kultur/Unterhaltung"; +App::$strings["Hobbies/Interests"] = "Hobbys/Interessen"; +App::$strings["Love/Romance"] = "Liebe/Romantik"; +App::$strings["School/Education"] = "Schule/Ausbildung"; +App::$strings["Contact information and social networks"] = "Kontaktinformation und soziale Netzwerke"; +App::$strings["My other channels"] = "Meine anderen Kanäle"; +App::$strings["Profile Image"] = "Profilfoto:"; +App::$strings["Edit Profiles"] = "Profile bearbeiten"; +App::$strings["Your service plan only allows %d channels."] = "Dein Vertrag erlaubt nur %d Kanäle."; +App::$strings["Nothing to import."] = "Nichts zu importieren."; +App::$strings["Unable to download data from old server"] = "Daten können vom alten Server nicht heruntergeladen werden"; +App::$strings["Imported file is empty."] = "Die importierte Datei ist leer."; +App::$strings["Warning: Database versions differ by %1\$d updates."] = "Achtung: Datenbankversionen unterscheiden sich um %1\$d Aktualisierungen."; +App::$strings["Cloned channel not found. Import failed."] = "Geklonter Kanal nicht gefunden. Import fehlgeschlagen."; +App::$strings["No channel. Import failed."] = "Kein Kanal. Import fehlgeschlagen."; +App::$strings["Import completed."] = "Import abgeschlossen."; +App::$strings["You must be logged in to use this feature."] = "Du musst angemeldet sein um diese Funktion zu nutzen."; +App::$strings["Import Channel"] = "Kanal importieren"; +App::$strings["Use this form to import an existing channel from a different server/hub. You may retrieve the channel identity from the old server/hub via the network or provide an export file."] = "Verwende dieses Formular, um einen existierenden Kanal von einem anderen Hub zu importieren. Du kannst den Kanal direkt vom bisherigen Hub über das Netzwerk oder aus einer exportierten Sicherheitskopie importieren."; +App::$strings["File to Upload"] = "Hochzuladende Datei:"; +App::$strings["Or provide the old server/hub details"] = "Oder gib die Details Deines bisherigen \$Projectname-Hubs ein"; +App::$strings["Your old identity address (xyz@example.com)"] = "Bisherige Kanal-Adresse (xyz@example.com)"; +App::$strings["Your old login email address"] = "Deine alte Login-E-Mail-Adresse"; +App::$strings["Your old login password"] = "Dein altes Passwort"; +App::$strings["For either option, please choose whether to make this hub your new primary address, or whether your old location should continue this role. You will be able to post from either location, but only one can be marked as the primary location for files, photos, and media."] = "Egal, welche Option Du wählst – bitte lege fest, ob dieser Server die neue primäre Adresse dieses Kanals sein soll, oder ob der bisherige \$Projectname-Hub diese Rolle weiterhin wahrnimmt. Du kannst von beiden Servern aus posten, aber nur einer kann der primäre Ort Deiner Dateien, Fotos und Medien sein."; +App::$strings["Make this hub my primary location"] = "Dieser $Pojectname-Hub ist mein primärer Hub."; +App::$strings["Import existing posts if possible (experimental - limited by available memory"] = "Importiere bestehende Beiträge falls möglich (experimentell - begrenzt durch zur Verfügung stehenden Speicher"; +App::$strings["This process may take several minutes to complete. Please submit the form only once and leave this page open until finished."] = "Dieser Vorgang kann einige Minuten dauern. Bitte sende das Formular nur einmal ab und lasse diese Seite bis zur Fertigstellung offen."; +App::$strings["\$Projectname"] = "\$Projectname"; +App::$strings["Welcome to %s"] = "Willkommen auf %s"; +App::$strings["Unable to locate original post."] = "Originalbeitrag nicht gefunden."; +App::$strings["Empty post discarded."] = "Leeren Beitrag verworfen."; +App::$strings["Executable content type not permitted to this channel."] = "Ausführbarer Content-Typ ist für diesen Kanal nicht freigegeben."; +App::$strings["Duplicate post suppressed."] = "Doppelter Beitrag unterdrückt."; +App::$strings["System error. Post not saved."] = "Systemfehler. Beitrag nicht gespeichert."; +App::$strings["Unable to obtain post information from database."] = "Beitragsinformationen können nicht aus der Datenbank abgerufen werden."; +App::$strings["You have reached your limit of %1$.0f top level posts."] = "Du hast die maximale Anzahl von %1$.0f Beiträgen erreicht."; +App::$strings["You have reached your limit of %1$.0f webpages."] = "Du hast die maximale Anzahl von %1$.0f Webseiten erreicht."; App::$strings["Page owner information could not be retrieved."] = "Informationen über den Besitzer der Seite konnten nicht gefunden werden."; App::$strings["Profile Photos"] = "Profilfotos"; App::$strings["Album not found."] = "Album nicht gefunden."; @@ -673,122 +611,164 @@ App::$strings["__ctx:noun__ Dislikes"] = "Gefällt nicht"; App::$strings["Close"] = "Schließen"; App::$strings["View Album"] = "Album ansehen"; App::$strings["Recent Photos"] = "Neueste Fotos"; -App::$strings["sent you a private message"] = "hat Dir eine private Nachricht geschickt"; -App::$strings["added your channel"] = "hat deinen Kanal hinzugefügt"; -App::$strings["g A l F d"] = "l, d. F, G:i \\U\\h\\r"; -App::$strings["[today]"] = "[Heute]"; -App::$strings["posted an event"] = "hat einen Termin veröffentlicht"; -App::$strings["Unable to find your hub."] = "Konnte Deinen Server nicht finden."; -App::$strings["Post successful."] = "Veröffentlichung erfolgreich."; -App::$strings["OpenID protocol error. No ID returned."] = "OpenID Protokollfehler. Keine ID zurückgegeben."; -App::$strings["Login failed."] = "Login fehlgeschlagen."; -App::$strings["Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."] = "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."; -App::$strings["This setting requires special processing and editing has been blocked."] = "Diese Einstellung erfordert eine besondere Verarbeitung und ist blockiert."; -App::$strings["Configuration Editor"] = "Konfigurationseditor"; -App::$strings["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."] = "Warnung: Einige Einstellungen können Deinen Kanal funktionsunfähig machen. Bitte verlasse diese Seite, es sei denn Du bist vertraut damit, wie dieses Feature korrekt verwendet wird."; -App::$strings["Layout updated."] = "Layout aktualisiert."; -App::$strings["Edit System Page Description"] = "Systemseitenbeschreibung bearbeiten"; -App::$strings["Layout not found."] = "Layout nicht gefunden."; -App::$strings["Module Name:"] = "Modulname:"; -App::$strings["Layout Help"] = "Layout-Hilfe"; -App::$strings["Poke"] = "Anstupsen"; -App::$strings["Poke somebody"] = "Jemanden anstupsen"; -App::$strings["Poke/Prod"] = "Anstupsen/Knuffen"; -App::$strings["Poke, prod or do other things to somebody"] = "Jemanden anstupsen, knuffen oder sonstiges"; -App::$strings["Recipient"] = "Empfänger"; -App::$strings["Choose what you wish to do to recipient"] = "Wähle, was Du mit dem/r Empfänger/in tun willst"; -App::$strings["Make this post private"] = "Diesen Beitrag privat machen"; -App::$strings["Fetching URL returns error: %1\$s"] = "Abrufen der URL gab einen Fehler zurück: %1\$s"; -App::$strings["Profile not found."] = "Profil nicht gefunden."; -App::$strings["Profile deleted."] = "Profil gelöscht."; -App::$strings["Profile-"] = "Profil-"; -App::$strings["New profile created."] = "Neues Profil erstellt."; -App::$strings["Profile unavailable to clone."] = "Profil kann nicht geklont werden."; -App::$strings["Profile unavailable to export."] = "Dieses Profil kann nicht exportiert werden."; -App::$strings["Profile Name is required."] = "Profil-Name erforderlich."; -App::$strings["Marital Status"] = "Familienstand"; -App::$strings["Romantic Partner"] = "Romantische Partner"; -App::$strings["Likes"] = "Gefällt"; -App::$strings["Dislikes"] = "Gefällt nicht"; -App::$strings["Work/Employment"] = "Arbeit/Anstellung"; -App::$strings["Religion"] = "Religion"; -App::$strings["Political Views"] = "Politische Ansichten"; -App::$strings["Sexual Preference"] = "Sexuelle Orientierung"; -App::$strings["Homepage"] = "Webseite"; -App::$strings["Interests"] = "Hobbys/Interessen"; -App::$strings["Profile updated."] = "Profil aktualisiert."; -App::$strings["Hide your connections list from viewers of this profile"] = "Deine Verbindungen vor Betrachtern dieses Profils verbergen"; -App::$strings["Edit Profile Details"] = "Bearbeite Profil-Details"; -App::$strings["View this profile"] = "Dieses Profil ansehen"; -App::$strings["Edit visibility"] = "Sichtbarkeit bearbeiten"; -App::$strings["Profile Tools"] = "Profilwerkzeuge"; -App::$strings["Change cover photo"] = "Titelbild ändern"; -App::$strings["Change profile photo"] = "Profilfoto ändern"; -App::$strings["Create a new profile using these settings"] = "Neues Profil anlegen und diese Einstellungen übernehmen"; -App::$strings["Clone this profile"] = "Dieses Profil klonen"; -App::$strings["Delete this profile"] = "Dieses Profil löschen"; -App::$strings["Add profile things"] = "Sachen zum Profil hinzufügen"; -App::$strings["Personal"] = "Persönlich"; -App::$strings["Relation"] = "Beziehung"; -App::$strings["Miscellaneous"] = "Verschiedenes"; -App::$strings["Import profile from file"] = "Profil aus einer Datei importieren"; -App::$strings["Export profile to file"] = "Profil in eine Datei exportieren"; -App::$strings["Your gender"] = "Dein Geschlecht"; -App::$strings["Marital status"] = "Familienstand"; -App::$strings["Sexual preference"] = "Sexuelle Orientierung"; -App::$strings["Profile name"] = "Profilname"; -App::$strings["This is your default profile."] = "Das ist Dein Standardprofil."; -App::$strings["Your full name"] = "Dein voller Name"; -App::$strings["Title/Description"] = "Titel/Beschreibung"; -App::$strings["Street address"] = "Straße und Hausnummer"; -App::$strings["Locality/City"] = "Wohnort"; -App::$strings["Region/State"] = "Region/Bundesstaat"; -App::$strings["Postal/Zip code"] = "Postleitzahl"; -App::$strings["Country"] = "Land"; -App::$strings["Who (if applicable)"] = "Wer (falls anwendbar)"; -App::$strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Beispiele: cathy123, Cathy Williams, cathy@example.com"; -App::$strings["Since (date)"] = "Seit (Datum)"; -App::$strings["Tell us about yourself"] = "Erzähle uns ein wenig von Dir"; -App::$strings["Hometown"] = "Heimatort"; -App::$strings["Political views"] = "Politische Ansichten"; -App::$strings["Religious views"] = "Religiöse Ansichten"; -App::$strings["Keywords used in directory listings"] = "Schlüsselwörter, die in Verzeichnis-Auflistungen verwendet werden"; -App::$strings["Example: fishing photography software"] = "Beispiel: Angeln Fotografie Software"; -App::$strings["Musical interests"] = "Musikalische Interessen"; -App::$strings["Books, literature"] = "Bücher, Literatur"; -App::$strings["Television"] = "Fernsehen"; -App::$strings["Film/Dance/Culture/Entertainment"] = "Film/Tanz/Kultur/Unterhaltung"; -App::$strings["Hobbies/Interests"] = "Hobbys/Interessen"; -App::$strings["Love/Romance"] = "Liebe/Romantik"; -App::$strings["School/Education"] = "Schule/Ausbildung"; -App::$strings["Contact information and social networks"] = "Kontaktinformation und soziale Netzwerke"; -App::$strings["My other channels"] = "Meine anderen Kanäle"; -App::$strings["Profile Image"] = "Profilfoto:"; -App::$strings["Edit Profiles"] = "Profile bearbeiten"; -App::$strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Leere den Browser Cache oder nutze Umschalten-Neu Laden, falls das neue Foto nicht sofort angezeigt wird."; -App::$strings["Upload Profile Photo"] = "Lade neues Profilfoto hoch"; -App::$strings["Invalid profile identifier."] = "Ungültiger Profil-Identifikator"; -App::$strings["Profile Visibility Editor"] = "Profil-Sichtbarkeits-Editor"; -App::$strings["Profile"] = "Profil"; -App::$strings["Click on a contact to add or remove."] = "Klicke auf einen Kontakt, um ihn hinzuzufügen oder zu entfernen."; -App::$strings["Visible To"] = "Sichtbar für"; -App::$strings["Public Hubs"] = "Öffentliche Hubs"; -App::$strings["The listed hubs allow public registration for the \$Projectname network. All hubs in the network are interlinked so membership on any of them conveys membership in the network as a whole. Some hubs may require subscription or provide tiered service plans. The hub itself may provide additional details."] = "Die hier aufgeführten Hubs sind öffentlich und erlauben die Registrierung im \$Projectname Netzwerk. Alle Hubs dieses Netzwerks sind miteinander verbunden, so dass die Mitgliedschaft auf einem Hub die Verbindung zu beliebigen Seiten und Kanälen auf anderen Hubs ermöglicht. Es könnte sein, dass einige dieser Hubs kostenpflichtig sind oder abgestufte, je nach Umfang kostenpflichtige Mitgliedschaften anbieten. Auf den Seiten der einzelnen Hubs könnten jeweils nähere Informationen dazu stehen."; -App::$strings["Hub URL"] = "Hub-URL"; -App::$strings["Access Type"] = "Zugriffstyp"; -App::$strings["Registration Policy"] = "Registrierungsrichtlinien"; -App::$strings["Stats"] = "Statistiken"; -App::$strings["Software"] = "Software"; -App::$strings["Ratings"] = "Bewertungen"; -App::$strings["Rate"] = "Bewerten"; -App::$strings["Website:"] = "Webseite:"; -App::$strings["Remote Channel [%s] (not yet known on this site)"] = "Kanal [%s] (auf diesem Server noch unbekannt)"; -App::$strings["Rating (this information is public)"] = "Bewertung (öffentlich sichtbar)"; -App::$strings["Optionally explain your rating (this information is public)"] = "Optional kannst du deine Bewertung erklären (öffentlich sichtbar)"; -App::$strings["No ratings"] = "Keine Bewertungen"; -App::$strings["Rating: "] = "Bewertung: "; -App::$strings["Website: "] = "Webseite: "; -App::$strings["Description: "] = "Beschreibung: "; +App::$strings["Remote privacy information not available."] = "Privatsphäre-Einstellungen anderer Nutzer sind nicht verfügbar."; +App::$strings["Visible to:"] = "Sichtbar für:"; +App::$strings["Import completed"] = "Import abgeschlossen"; +App::$strings["Import Items"] = "Beiträge importieren"; +App::$strings["Use this form to import existing posts and content from an export file."] = "Mit diesem Formular kannst Du existierende Beiträge und Inhalte aus einer Sicherungsdatei importieren."; +App::$strings["Total invitation limit exceeded."] = "Einladungslimit überschritten."; +App::$strings["%s : Not a valid email address."] = "%s : Keine gültige Email Adresse."; +App::$strings["Please join us on \$Projectname"] = "Schließe Dich uns auf \$Projectname an!"; +App::$strings["Invitation limit exceeded. Please contact your site administrator."] = "Einladungslimit überschritten. Bitte kontaktiere den Administrator Deines \$Projectname-Servers."; +App::$strings["%s : Message delivery failed."] = "%s : Nachricht konnte nicht zugestellt werden."; +App::$strings["%d message sent."] = array( + 0 => "%d Nachricht gesendet.", + 1 => "%d Nachrichten gesendet.", +); +App::$strings["You have no more invitations available"] = "Du hast keine weiteren verfügbare Einladungen"; +App::$strings["Send invitations"] = "Einladungen senden"; +App::$strings["Enter email addresses, one per line:"] = "Email-Adressen eintragen, eine pro Zeile:"; +App::$strings["Your message:"] = "Deine Nachricht:"; +App::$strings["Please join my community on \$Projectname."] = "Schließe Dich uns auf \$Projectname an!"; +App::$strings["You will need to supply this invitation code:"] = "Bitte verwende bei der Registrierung den folgenden Einladungscode:"; +App::$strings["1. Register at any \$Projectname location (they are all inter-connected)"] = "1. Registriere Dich auf einem beliebigen \$Projectname-Hub (sie sind alle miteinander verbunden)"; +App::$strings["2. Enter my \$Projectname network address into the site searchbar."] = "2. Gib meine \$Projectname-Adresse im Suchfeld ein."; +App::$strings["or visit"] = "oder besuche"; +App::$strings["3. Click [Connect]"] = "3. Klicke auf [Verbinden]"; +App::$strings["Location not found."] = "Klon nicht gefunden."; +App::$strings["Location lookup failed."] = "Nachschlagen des Kanal-Ortes fehlgeschlagen"; +App::$strings["Please select another location to become primary before removing the primary location."] = "Bitte mache einen anderen Kanal-Ort zum primären Ort, bevor Du den primären Ort löschst."; +App::$strings["Syncing locations"] = "Synchronisiere Klone"; +App::$strings["No locations found."] = "Keine Klon-Adressen gefunden."; +App::$strings["Manage Channel Locations"] = "Klon-Adressen verwalten"; +App::$strings["Primary"] = "Primär"; +App::$strings["Drop"] = "Löschen"; +App::$strings["Sync Now"] = "Jetzt synchronisieren"; +App::$strings["Please wait several minutes between consecutive operations."] = "Bitte warte mehrere Minuten zwischen dem Ausführen zweier Operationen!"; +App::$strings["When possible, drop a location by logging into that website/hub and removing your channel."] = "Wenn möglich, lösche einen Klon, indem Du Dich auf dem jeweiligen Hub einloggst und den Kanal dort löschst."; +App::$strings["Use this form to drop the location if the hub is no longer operating."] = "Benutze dieses Formular zum Löschen eines Klons, wenn es den Hub nicht mehr gibt."; +App::$strings["Hub not found."] = "Server nicht gefunden."; +App::$strings["Unable to lookup recipient."] = "Konnte den Empfänger nicht finden."; +App::$strings["Unable to communicate with requested channel."] = "Die Kommunikation mit dem ausgewählten Kanal ist fehlgeschlagen."; +App::$strings["Cannot verify requested channel."] = "Verifizierung des angeforderten Kanals fehlgeschlagen."; +App::$strings["Selected channel has private message restrictions. Send failed."] = "Der ausgewählte Kanal hat Einschränkungen bzgl. privater Nachrichten. Senden fehlgeschlagen."; +App::$strings["Messages"] = "Nachrichten"; +App::$strings["Message recalled."] = "Nachricht widerrufen."; +App::$strings["Conversation removed."] = "Unterhaltung gelöscht."; +App::$strings["Expires YYYY-MM-DD HH:MM"] = "Verfällt YYYY-MM-DD HH;MM"; +App::$strings["Requested channel is not in this network"] = "Angeforderter Kanal ist nicht in diesem Netzwerk."; +App::$strings["Send Private Message"] = "Private Nachricht senden"; +App::$strings["To:"] = "An:"; +App::$strings["Subject:"] = "Betreff:"; +App::$strings["Attach file"] = "Datei anhängen"; +App::$strings["Send"] = "Absenden"; +App::$strings["Set expiration date"] = "Verfallsdatum"; +App::$strings["Delete message"] = "Nachricht löschen"; +App::$strings["Delivery report"] = "Zustellungsbericht"; +App::$strings["Recall message"] = "Nachricht widerrufen"; +App::$strings["Message has been recalled."] = "Die Nachricht wurde widerrufen."; +App::$strings["Delete Conversation"] = "Unterhaltung löschen"; +App::$strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Keine sichere Kommunikation verfügbar. Eventuell kannst Du auf der Profilseite des Absenders antworten."; +App::$strings["Send Reply"] = "Antwort senden"; +App::$strings["Your message for %s (%s):"] = "Deine Nachricht für %s (%s):"; +App::$strings["You have created %1$.0f of %2$.0f allowed channels."] = "Du hast %1$.0f von maximal %2$.0f erlaubten Kanälen eingerichtet."; +App::$strings["Create a new channel"] = "Neuen Kanal anlegen"; +App::$strings["Channel Manager"] = "Kanal-Manager"; +App::$strings["Current Channel"] = "Aktueller Kanal"; +App::$strings["Switch to one of your channels by selecting it."] = "Wechsle zu einem Deiner Kanäle, indem Du auf ihn klickst."; +App::$strings["Default Channel"] = "Standard Kanal"; +App::$strings["Make Default"] = "Zum Standard machen"; +App::$strings["%d new messages"] = "%d neue Nachrichten"; +App::$strings["%d new introductions"] = "%d neue Vorstellungen"; +App::$strings["Delegated Channel"] = "Delegierte Kanäle"; +App::$strings["Unable to update menu."] = "Kann Menü nicht aktualisieren."; +App::$strings["Unable to create menu."] = "Kann Menü nicht erstellen."; +App::$strings["Menu Name"] = "Name des Menüs"; +App::$strings["Unique name (not visible on webpage) - required"] = "Eindeutiger Name (nicht sichtbar auf der Webseite) – erforderlich"; +App::$strings["Menu Title"] = "Menütitel"; +App::$strings["Visible on webpage - leave empty for no title"] = "Sichtbar auf der Webseite – für keinen Titel leer lassen"; +App::$strings["Allow Bookmarks"] = "Lesezeichen erlauben"; +App::$strings["Menu may be used to store saved bookmarks"] = "Im Menü können gespeicherte Lesezeichen abgelegt werden"; +App::$strings["Submit and proceed"] = "Absenden und fortfahren"; +App::$strings["Menus"] = "Menüs"; +App::$strings["Bookmarks allowed"] = "Lesezeichen erlaubt"; +App::$strings["Delete this menu"] = "Lösche dieses Menü"; +App::$strings["Edit menu contents"] = "Bearbeite Menü Inhalte"; +App::$strings["Edit this menu"] = "Dieses Menü bearbeiten"; +App::$strings["Menu could not be deleted."] = "Menü konnte nicht gelöscht werden."; +App::$strings["Menu not found."] = "Menü nicht gefunden"; +App::$strings["Edit Menu"] = "Menü bearbeiten"; +App::$strings["Add or remove entries to this menu"] = "Einträge zu diesem Menü hinzufügen oder entfernen"; +App::$strings["Menu name"] = "Menü Name"; +App::$strings["Must be unique, only seen by you"] = "Muss eindeutig sein, ist aber nur für Dich sichtbar"; +App::$strings["Menu title"] = "Menü Titel"; +App::$strings["Menu title as seen by others"] = "Menü Titel wie er von anderen gesehen wird"; +App::$strings["Allow bookmarks"] = "Erlaube Lesezeichen"; +App::$strings["Not found."] = "Nicht gefunden."; +App::$strings["No valid account found."] = "Kein gültiges Konto gefunden."; +App::$strings["Password reset request issued. Check your email."] = "Zurücksetzen des Passworts eingeleitet. Schau in Deine E-Mails."; +App::$strings["Site Member (%s)"] = "Nutzer (%s)"; +App::$strings["Password reset requested at %s"] = "Passwort-Rücksetzung auf %s angefordert"; +App::$strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Die Anfrage konnte nicht verifiziert werden. (Vielleicht hast Du schon einmal auf den Link in der E-Mail geklickt?) Passwort-Rücksetzung fehlgeschlagen."; +App::$strings["Password Reset"] = "Zurücksetzen des Kennworts"; +App::$strings["Your password has been reset as requested."] = "Dein Passwort wurde wie angefordert neu erstellt."; +App::$strings["Your new password is"] = "Dein neues Passwort lautet"; +App::$strings["Save or copy your new password - and then"] = "Speichere oder kopiere Dein neues Passwort – und dann"; +App::$strings["click here to login"] = "Klicke hier, um dich anzumelden"; +App::$strings["Your password may be changed from the Settings page after successful login."] = "Dein Passwort kann unter Einstellungen nach einer erfolgreichen Anmeldung geändert werden."; +App::$strings["Your password has changed at %s"] = "Auf %s wurde Dein Passwort geändert"; +App::$strings["Forgot your Password?"] = "Kennwort vergessen?"; +App::$strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Gib Deine E-Mail-Adresse ein, um Dein Passwort zurücksetzen zu lassen. Du erhältst dann weitere Anweisungen per E-Mail."; +App::$strings["Email Address"] = "E-Mail Adresse"; +App::$strings["Reset"] = "Zurücksetzen"; +App::$strings["__ctx:mood__ %1\$s is %2\$s"] = "%1\$s ist %2\$s"; +App::$strings["Mood"] = "Laune"; +App::$strings["Set your current mood and tell your friends"] = "Wähle Deine aktuelle Stimmung und teile sie mit Deinen Freunden"; +App::$strings["No such group"] = "Gruppe nicht gefunden"; +App::$strings["No such channel"] = "Kanal nicht gefunden"; +App::$strings["forum"] = "Forum"; +App::$strings["Search Results For:"] = "Suchergebnisse für:"; +App::$strings["Privacy group is empty"] = "Gruppe ist leer"; +App::$strings["Privacy group: "] = "Gruppe:"; +App::$strings["Invalid connection."] = "Ungültige Verbindung."; +App::$strings["No more system notifications."] = "Keine System-Benachrichtigungen mehr."; +App::$strings["System Notifications"] = "System-Benachrichtigungen"; +App::$strings["Profile Match"] = "Profil-Übereinstimmungen"; +App::$strings["No keywords to match. Please add keywords to your default profile."] = "Keine Schlüsselwörter für den Abgleich gefunden. Bitte füge Schlüsselwörter zu Deinem Standardprofil hinzu."; +App::$strings["is interested in:"] = "interessiert sich für:"; +App::$strings["No matches"] = "Keine Übereinstimmungen"; +App::$strings["Posts and comments"] = "Beiträge und Kommentare"; +App::$strings["Only posts"] = "Nur Beiträge"; +App::$strings["Insufficient permissions. Request redirected to profile page."] = "Unzureichende Zugriffsrechte. Die Anfrage wurde zur Profil-Seite umgeleitet."; +App::$strings["Unable to create element."] = "Element konnte nicht erstellt werden."; +App::$strings["Unable to update menu element."] = "Kann Menü-Element nicht aktualisieren."; +App::$strings["Unable to add menu element."] = "Kann Menü-Bestandteil nicht hinzufügen."; +App::$strings["Menu Item Permissions"] = "Zugriffsrechte des Menü-Elements"; +App::$strings["(click to open/close)"] = "(zum öffnen/schließen anklicken)"; +App::$strings["Link Name"] = "Name des Links"; +App::$strings["Link or Submenu Target"] = "Ziel des Links oder Untermenüs"; +App::$strings["Enter URL of the link or select a menu name to create a submenu"] = "URL des Links eingeben oder Menünamen wählen, um ein Untermenü anzulegen."; +App::$strings["Use magic-auth if available"] = "Magic-Auth verwenden, falls verfügbar"; +App::$strings["Open link in new window"] = "Öffne Link in neuem Fenster"; +App::$strings["Order in list"] = "Reihenfolge in der Liste"; +App::$strings["Higher numbers will sink to bottom of listing"] = "Größere Nummern werden weiter unten in der Auflistung einsortiert"; +App::$strings["Submit and finish"] = "Absenden und fertigstellen"; +App::$strings["Submit and continue"] = "Absenden und fortfahren"; +App::$strings["Menu:"] = "Menü:"; +App::$strings["Link Target"] = "Ziel des Links"; +App::$strings["Edit menu"] = "Menü bearbeiten"; +App::$strings["Edit element"] = "Bestandteil bearbeiten"; +App::$strings["Drop element"] = "Bestandteil löschen"; +App::$strings["New element"] = "Neues Bestandteil"; +App::$strings["Edit this menu container"] = "Diesen Menü-Container bearbeiten"; +App::$strings["Add menu element"] = "Menüelement hinzufügen"; +App::$strings["Delete this menu item"] = "Lösche dieses Menü-Bestandteil"; +App::$strings["Edit this menu item"] = "Bearbeite dieses Menü-Bestandteil"; +App::$strings["Menu item not found."] = "Menü-Bestandteil nicht gefunden."; +App::$strings["Menu item deleted."] = "Menü-Bestandteil gelöscht."; +App::$strings["Menu item could not be deleted."] = "Menü-Bestandteil kann nicht gelöscht werden."; +App::$strings["Edit Menu Element"] = "Bearbeite Menü-Bestandteil"; +App::$strings["Link text"] = "Link Text"; App::$strings["Theme settings updated."] = "Theme-Einstellungen aktualisiert."; App::$strings["# Accounts"] = "Anzahl der Konten"; App::$strings["# blocked accounts"] = "Anzahl der blockierten Konten"; @@ -1031,19 +1011,91 @@ App::$strings["(In addition to basic fields)"] = "(zusätzlich zu notwendige Fel App::$strings["All available fields"] = "Alle verfügbaren Felder"; App::$strings["Custom Fields"] = "Benutzerdefinierte Felder"; App::$strings["Create Custom Field"] = "Erstelle benutzerdefiniertes Feld"; -App::$strings["App installed."] = "App installiert."; -App::$strings["Malformed app."] = "Fehlerhafte App."; -App::$strings["Embed code"] = "Code einbetten"; -App::$strings["Edit App"] = "App bearbeiten"; -App::$strings["Create App"] = "App erstellen"; -App::$strings["Name of app"] = "Name der App"; -App::$strings["Location (URL) of app"] = "Ort (URL) der App"; -App::$strings["Photo icon URL"] = "URL zum Icon"; -App::$strings["80 x 80 pixels - optional"] = "80 x 80 Pixel – optional"; -App::$strings["Categories (optional, comma separated list)"] = "Kategorien (optional, kommagetrennte Liste)"; -App::$strings["Version ID"] = "Versions-ID"; -App::$strings["Price of app"] = "Preis der App"; -App::$strings["Location (URL) to purchase app"] = "Ort (URL), um die App zu kaufen"; +App::$strings["Name or caption"] = "Name oder Titel"; +App::$strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\""] = "Beispiele: „Horst Weidinger“, „Lisa und ihr Meerschweinchen“, „Fußball“, „Segelflieger-Forum“ "; +App::$strings["Choose a short nickname"] = "Wähle einen kurzen Spitznamen"; +App::$strings["Your nickname will be used to create an easy to remember channel address e.g. nickname%s"] = "Dein Spitzname wird verwendet, um eine leicht zu merkende Kanal-Adresse (ähnlich einer E-Mail-Adresse) zu erzeugen, die Du mit anderen austauschen kannst, z.B. nickname%s"; +App::$strings["Channel role and privacy"] = "Kanaltyp und Privatspäre-Einstellungen"; +App::$strings["Select a channel role with your privacy requirements."] = "Wähle einen passenden Kanaltyp mit den zugehörigen Voreinstellungen zur Privatsphäre."; +App::$strings["Read more about roles"] = "Mehr Informationen über Rollen"; +App::$strings["Create Channel"] = "Einen neuen Kanal anlegen"; +App::$strings["A channel is your identity on this network. It can represent a person, a blog, or a forum to name a few. Channels can make connections with other channels to share information with highly detailed permissions."] = "Ein Kanal ist Deine Identität in diesem Netzwerk. Er kann eine Person, ein Blog oder ein Forum repräsentieren, nur um ein paar Beispiele zu nennen. Kanäle können Verbindungen miteinander eingehen, um Informationen zu teilen, jeweils basierend auf sehr detaillierten Berechtigungseinstellungen."; +App::$strings["or import an existing channel from another location."] = "oder importiere einen bestehenden Kanal von einem anderen Server."; +App::$strings["sent you a private message"] = "hat Dir eine private Nachricht geschickt"; +App::$strings["added your channel"] = "hat deinen Kanal hinzugefügt"; +App::$strings["g A l F d"] = "l, d. F, G:i \\U\\h\\r"; +App::$strings["[today]"] = "[Heute]"; +App::$strings["posted an event"] = "hat einen Termin veröffentlicht"; +App::$strings["Invalid request identifier."] = "Ungültiger Anfrage-Identifikator."; +App::$strings["Discard"] = "Verwerfen"; +App::$strings["Mark all system notifications seen"] = "Markiere alle System-Benachrichtigungen als gesehen"; +App::$strings["Poke"] = "Anstupsen"; +App::$strings["Poke somebody"] = "Jemanden anstupsen"; +App::$strings["Poke/Prod"] = "Anstupsen/Knuffen"; +App::$strings["Poke, prod or do other things to somebody"] = "Jemanden anstupsen, knuffen oder sonstiges"; +App::$strings["Recipient"] = "Empfänger"; +App::$strings["Choose what you wish to do to recipient"] = "Wähle, was Du mit dem/r Empfänger/in tun willst"; +App::$strings["Make this post private"] = "Diesen Beitrag privat machen"; +App::$strings["Unable to find your hub."] = "Konnte Deinen Server nicht finden."; +App::$strings["Post successful."] = "Veröffentlichung erfolgreich."; +App::$strings["OpenID protocol error. No ID returned."] = "OpenID Protokollfehler. Keine ID zurückgegeben."; +App::$strings["Login failed."] = "Login fehlgeschlagen."; +App::$strings["Invalid profile identifier."] = "Ungültiger Profil-Identifikator"; +App::$strings["Profile Visibility Editor"] = "Profil-Sichtbarkeits-Editor"; +App::$strings["Profile"] = "Profil"; +App::$strings["Click on a contact to add or remove."] = "Klicke auf einen Kontakt, um ihn hinzuzufügen oder zu entfernen."; +App::$strings["Visible To"] = "Sichtbar für"; +App::$strings["This setting requires special processing and editing has been blocked."] = "Diese Einstellung erfordert eine besondere Verarbeitung und ist blockiert."; +App::$strings["Configuration Editor"] = "Konfigurationseditor"; +App::$strings["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."] = "Warnung: Einige Einstellungen können Deinen Kanal funktionsunfähig machen. Bitte verlasse diese Seite, es sei denn Du bist vertraut damit, wie dieses Feature korrekt verwendet wird."; +App::$strings["Fetching URL returns error: %1\$s"] = "Abrufen der URL gab einen Fehler zurück: %1\$s"; +App::$strings["Version %s"] = "Version %s"; +App::$strings["Installed plugins/addons/apps:"] = "Installierte Plugins/Addons/Apps"; +App::$strings["No installed plugins/addons/apps"] = "Keine installierten Plugins/Addons/Apps"; +App::$strings["This is a hub of \$Projectname - a global cooperative network of decentralized privacy enhanced websites."] = "Dieser Hub ist Teil von \$Projectname – ein globales, kooperatives Netzwerk aus dezentralen Websites, die Rücksicht auf Deine Privatsphäre nehmen."; +App::$strings["Tag: "] = "Schlagwort: "; +App::$strings["Last background fetch: "] = "Letzter Hintergrundabruf:"; +App::$strings["Current load average: "] = "Aktuelles Load Average:"; +App::$strings["Running at web location"] = "Erreichbar unter der Web-Adresse"; +App::$strings["Please visit hubzilla.org to learn more about \$Projectname."] = "Bitte besuchen Sie hubzilla.org, um mehr über \$Projectname zu erfahren."; +App::$strings["Bug reports and issues: please visit"] = "Probleme oder Fehler gefunden? Bitte besuche"; +App::$strings["\$projectname issues"] = "\$projectname-Bugtracker"; +App::$strings["Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com"] = "Vorschläge, Lob, usw.: E-Mail an 'redmatrix' at librelist - dot - com"; +App::$strings["Site Administrators"] = "Administratoren"; +App::$strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Wir haben ein Problem mit der OpenID festgestellt, mit der Du Dich anmelden wolltest. Bitte überprüfe sie noch einmal."; +App::$strings["The error message was:"] = "Die Fehlermeldung war:"; +App::$strings["Authentication failed."] = "Authentifizierung fehlgeschlagen."; +App::$strings["Remote Authentication"] = "Entfernte Authentifizierung"; +App::$strings["Enter your channel address (e.g. channel@example.com)"] = "Deine Kanal-Adresse (z. B. channel@example.com)"; +App::$strings["Authenticate"] = "Authentifizieren"; +App::$strings["Public Hubs"] = "Öffentliche Hubs"; +App::$strings["The listed hubs allow public registration for the \$Projectname network. All hubs in the network are interlinked so membership on any of them conveys membership in the network as a whole. Some hubs may require subscription or provide tiered service plans. The hub itself may provide additional details."] = "Die hier aufgeführten Hubs sind öffentlich und erlauben die Registrierung im \$Projectname Netzwerk. Alle Hubs dieses Netzwerks sind miteinander verbunden, so dass die Mitgliedschaft auf einem Hub die Verbindung zu beliebigen Seiten und Kanälen auf anderen Hubs ermöglicht. Es könnte sein, dass einige dieser Hubs kostenpflichtig sind oder abgestufte, je nach Umfang kostenpflichtige Mitgliedschaften anbieten. Auf den Seiten der einzelnen Hubs könnten jeweils nähere Informationen dazu stehen."; +App::$strings["Hub URL"] = "Hub-URL"; +App::$strings["Access Type"] = "Zugriffstyp"; +App::$strings["Registration Policy"] = "Registrierungsrichtlinien"; +App::$strings["Stats"] = "Statistiken"; +App::$strings["Software"] = "Software"; +App::$strings["Ratings"] = "Bewertungen"; +App::$strings["Rate"] = "Bewerten"; +App::$strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Leere den Browser Cache oder nutze Umschalten-Neu Laden, falls das neue Foto nicht sofort angezeigt wird."; +App::$strings["Upload Profile Photo"] = "Lade neues Profilfoto hoch"; +App::$strings["Block Name"] = "Block-Name"; +App::$strings["Blocks"] = "Blöcke"; +App::$strings["Block Title"] = "Titel des Blocks"; +App::$strings["Website:"] = "Webseite:"; +App::$strings["Remote Channel [%s] (not yet known on this site)"] = "Kanal [%s] (auf diesem Server noch unbekannt)"; +App::$strings["Rating (this information is public)"] = "Bewertung (öffentlich sichtbar)"; +App::$strings["Optionally explain your rating (this information is public)"] = "Optional kannst du deine Bewertung erklären (öffentlich sichtbar)"; +App::$strings["No ratings"] = "Keine Bewertungen"; +App::$strings["Rating: "] = "Bewertung: "; +App::$strings["Website: "] = "Webseite: "; +App::$strings["Description: "] = "Beschreibung: "; +App::$strings["Apps"] = "Apps"; +App::$strings["Title (optional)"] = "Titel (optional)"; +App::$strings["Edit Block"] = "Block bearbeiten"; +App::$strings["No channel."] = "Kein Kanal."; +App::$strings["Common connections"] = "Gemeinsame Verbindungen"; +App::$strings["No connections in common."] = "Keine gemeinsamen Verbindungen."; App::$strings["Select a bookmark folder"] = "Lesezeichenordner wählen"; App::$strings["Save Bookmark"] = "Lesezeichen speichern"; App::$strings["URL of bookmark"] = "URL des Lesezeichens"; @@ -1069,7 +1121,7 @@ App::$strings["no"] = "nein"; App::$strings["yes"] = "ja"; App::$strings["Membership on this site is by invitation only."] = "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich."; App::$strings["Register"] = "Registrieren"; -App::$strings["Proceed to create your first channel"] = "Fortfahren und Deinen ersten Kanal anlegen"; +App::$strings["This site may require email verification after submitting this form. If you are returned to a login page, please check your email for instructions."] = "Diese Seite verlangt möglicherweise eine Emailbestätigung nach dem Ansenden des Formulars. Wenn Du auf eine Login-Seite zurückgeleitet wirst, prüfe bitte auf neue Mail mit entsprechenden Hinweisen."; App::$strings["Please login."] = "Bitte melde dich an."; App::$strings["Account removals are not allowed within 48 hours of changing the account password."] = "Das Löschen von Konten innerhalb 48 Stunden nachdem deren Passwort geändert wurde ist nicht erlaubt."; App::$strings["Remove This Account"] = "Dieses Konto löschen"; @@ -1086,17 +1138,23 @@ App::$strings["This channel will be completely removed from the network. "] = "D App::$strings["Remove this channel and all its clones from the network"] = "Lösche diesen Kanal und all seine Klone aus dem Netzwerk"; App::$strings["By default only the instance of the channel located on this hub will be removed from the network"] = "Standardmäßig wird der Kanal nur auf diesem Server gelöscht, seine Klone verbleiben im Netzwerk"; App::$strings["Remove Channel"] = "Kanal löschen"; -App::$strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Wir haben ein Problem mit der OpenID festgestellt, mit der Du Dich anmelden wolltest. Bitte überprüfe sie noch einmal."; -App::$strings["The error message was:"] = "Die Fehlermeldung war:"; -App::$strings["Authentication failed."] = "Authentifizierung fehlgeschlagen."; -App::$strings["Remote Authentication"] = "Entfernte Authentifizierung"; -App::$strings["Enter your channel address (e.g. channel@example.com)"] = "Deine Kanal-Adresse (z. B. channel@example.com)"; -App::$strings["Authenticate"] = "Authentifizieren"; +App::$strings["Export Channel"] = "Kanal exportieren"; +App::$strings["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."] = "Exportiert die grundlegenden Kanal-Informationen in eine kleine Datei. Diese stellt eine Sicherung Deiner Verbindungen, Berechtigungen, Profile und Basisdaten bereit, die für den Import auf einem anderen Hub verwendet werden kann, aber nicht die Beiträge Deines Kanals enthält."; +App::$strings["Export Content"] = "Kanal und Inhalte exportieren"; +App::$strings["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."] = "Exportiert Deine Kanal-Informationen sowie alle zugehörigen Inhalte in eine JSON-Sicherungsdatei. Die sichert alle Verbindungen, Berechtigungen, Profildaten und Deine Beiträge aus mehreren Monaten. Diese Datei kann SEHR groß werden! Bitte habe ein wenig Geduld – es kann mehrere Minuten dauern, bis der Download startet."; +App::$strings["Export your posts from a given year."] = "Exportiert die Beiträge des angegebenen Jahres."; +App::$strings["You may also export your posts and conversations for a particular year or month. Adjust the date in your browser location bar to select other dates. If the export fails (possibly due to memory exhaustion on your server hub), please try again selecting a more limited date range."] = "Du kannst auch die Beiträge und Konversationen eines bestimmten Jahres oder Monats exportieren. Ändere das Datum in der Adresszeile Deines Browsers, um andere Zeiträume zu wählen. Falls der Export fehlschlägt (vermutlich, weil auf diesem Hub nicht genügend Speicher zur Verfügung steht), versuche es noch einmal mit einer kleineren Zeitspanne."; +App::$strings["To select all posts for a given year, such as this year, visit %2\$s"] = "Um alle Beiträge eines bestimmten Jahres, zum Beispiel dieses Jahres, auszuwählen, klicke %2\$s."; +App::$strings["To select all posts for a given month, such as January of this year, visit %2\$s"] = "Um alle Beiträge eines bestimmten Monats auszuwählen, zum Beispiel vom Januar diesen Jahres, klicke %2\$s."; +App::$strings["These content files may be imported or restored by visiting %2\$s on any site containing your channel. For best results please import or restore these in date order (oldest first)."] = "Diese Inhalts-Sicherungen können wiederhergestellt werden, indem Du %2\$s auf jeglichem Hub besuchst, der diesen Kanal enthält. Das funktioniert am besten, wenn Du dabei die zeitliche Reihenfolge einhältst, also die Sicherungen für den ältesten Zeitraum zuerst importierst."; App::$strings["Items tagged with: %s"] = "Beiträge mit Schlagwort: %s"; App::$strings["Search results for: %s"] = "Suchergebnisse für: %s"; App::$strings["No service class restrictions found."] = "Keine Dienstklassenbeschränkungen gefunden."; App::$strings["Name is required"] = "Name ist erforderlich"; App::$strings["Key and Secret are required"] = "Schlüssel und Geheimnis werden benötigt"; +App::$strings["This channel is limited to %d tokens"] = "Dieser Kanal ist auf %d Token begrenzt"; +App::$strings["Name and Password are required."] = "Name und Passwort sind erforderlich."; +App::$strings["Token saved."] = "Token gespeichert."; App::$strings["Not valid email."] = "Keine gültige E-Mail Adresse."; App::$strings["Protected email address. Cannot change to that email."] = "Geschützte E-Mail Adresse. Diese kann nicht verändert werden."; App::$strings["System failure storing new email. Please try again."] = "Systemfehler während des Speicherns der neuen Mail. Bitte versuche es noch einmal."; @@ -1129,6 +1187,12 @@ App::$strings["Confirm New Password"] = "Bestätige das neue Passwort"; App::$strings["Leave password fields blank unless changing"] = "Lasse die Passwort-Felder leer, außer Du möchtest das Passwort ändern"; App::$strings["Email Address:"] = "Email Adresse:"; App::$strings["Remove this account including all its channels"] = "Dieses Konto inklusive all seiner Kanäle löschen"; +App::$strings["Use this form to create temporary access identifiers to share things with non-members. These identities may be used in Access Control Lists and visitors may login using these credentials to access the private content."] = "Mit diesem Formular kannst Du temporäre Zugangs-IDs anlegen, um Inhalte mit Nicht-Mitgliedern zu teilen. Die IDs können in Berechtigungslisten (ACLs) verwendet werden, und Besucher können sich damit einloggen, um auf private Inhalte zuzugreifen."; +App::$strings["You may also provide dropbox style access links to friends and associates by adding the Login Password to any specific site URL as shown. Examples:"] = "Du kannst auch Dropbox-ähnliche Zugriffslinks an Andere weitergeben, indem du das Login-Passwort an eine entsprechende URL anhängst wie nachfolgend gezeigt. Beispiele:"; +App::$strings["Guest Access Tokens"] = "Gastzugangstoken"; +App::$strings["Login Name"] = "Anmeldename"; +App::$strings["Login Password"] = "Anmeldepasswort"; +App::$strings["Expires (yyyy-mm-dd)"] = "Läuft ab (jjjj-mm-tt)"; App::$strings["Additional Features"] = "Zusätzliche Funktionen"; App::$strings["Connector Settings"] = "Connector-Einstellungen"; App::$strings["No special theme for mobile devices"] = "Keine spezielle Theme für mobile Geräte"; @@ -1291,7 +1355,6 @@ App::$strings["GD graphics PHP module"] = "GD-Grafik-PHP-Modul"; App::$strings["OpenSSL PHP module"] = "OpenSSL-PHP-Modul"; App::$strings["mysqli or postgres PHP module"] = "mysqli oder postgres PHP-Modul"; App::$strings["mb_string PHP module"] = "mb_string-PHP-Modul"; -App::$strings["mcrypt PHP module"] = "mcrypt-PHP-Modul"; App::$strings["xml PHP module"] = "xml-PHP-Modul"; App::$strings["Apache mod_rewrite module"] = "Apache-mod_rewrite-Modul"; App::$strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Fehler: Das Apache-Modul mod-rewrite wird benötigt, ist aber nicht installiert."; @@ -1302,7 +1365,6 @@ App::$strings["Error: GD graphics PHP module with JPEG support required but not App::$strings["Error: openssl PHP module required but not installed."] = "Fehler: Das PHP-Modul openssl wird benötigt, ist aber nicht installiert."; App::$strings["Error: mysqli or postgres PHP module required but neither are installed."] = "Fehler: Das mysqli oder postgres PHP-Modul ist erforderlich, aber keines von beiden ist installiert."; App::$strings["Error: mb_string PHP module required but not installed."] = "Fehler: Das PHP-Modul mb_string wird benötigt, ist aber nicht installiert."; -App::$strings["Error: mcrypt PHP module required but not installed."] = "Fehler: Das PHP-Modul mcrypt wird benötigt, ist aber nicht installiert."; App::$strings["Error: xml PHP module required for DAV but not installed."] = "Fehler: Das xml-PHP-Modul wird für DAV benötigt, ist aber nicht installiert."; App::$strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "Der Installations-Assistent muss in der Lage sein, die Datei \".htconfig.php\" im Stammverzeichnis des Web-Servers anzulegen, ist er aber nicht."; App::$strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "Meist liegt das daran, dass der Nutzer, unter dem der Web-Server läuft, keine Schreibrechte in dem Verzeichnis hat – selbst wenn Du selbst das darfst."; @@ -1314,7 +1376,7 @@ App::$strings["In order to store these compiled templates, the web server needs App::$strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Bitte stelle sicher, dass der Nutzer, unter dem der Web-Server läuft (z.B. www-data), Schreibzugriff auf dieses Verzeichnis hat."; App::$strings["Note: as a security measure, you should give the web server write access to %s only--not the template files (.tpl) that it contains."] = "Hinweis: Aus Sicherheitsgründen sollte der Web-Server nur auf %s Schreibrechte haben, nicht auf die Template-Dateien (.tpl), die das Verzeichnis enthält."; App::$strings["%s is writable"] = "%s ist beschreibbar"; -App::$strings["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"] = "\$Projectname benutzt das Verzeichnis store, um hochgeladene Dateien zu speichern. Der Webserver benötigt Schreibrechte für dieses Verzeichnis direkt unterhalb des Red-Stammverzeichnisses"; +App::$strings["This software 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"] = "Diese Software benutzt das Verzeichnis store, um hochgeladene Dateien zu speichern. Der Web-Server benötigt Schreibrechte für dieses Verzeichnis direkt unterhalb des Hubzilla-Stammverzeichnisses"; App::$strings["store is writable"] = "store ist schreibbar"; App::$strings["SSL certificate cannot be validated. Fix certificate or disable https access to this site."] = "Das SSL-Zertifikat konnte nicht validiert werden. Korrigiere das Zertifikat oder deaktiviere den HTTPS-Zugriff auf diesen Server."; App::$strings["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!"] = "Wenn Du via HTTPS auf Deinen Server zugreifen möchtest, also Verbindungen über den Port 443 möglich sein sollen, ist ein SSL-Zertifikat einer Zertifizierungsstelle (CA) notwendig, das von den Browsern ohne Sicherheitsabfrage akzeptiert wird. Die Verwendung eines selbst signierten Zertifikates ist nicht möglich."; @@ -1322,6 +1384,7 @@ App::$strings["This restriction is incorporated because public posts from you ma App::$strings["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."] = "Wenn Dein Zertifikat nicht von jedem Browser akzeptiert wird, erhalten die Mitglieder anderer \$Projectname-Hubs (die mit korrekten Zertifikaten ausgestattet sind) Sicherheits-Warnmeldungen, obwohl sie gar nicht direkt auf Deinem Server unterwegs sind (zum Beispiel, wenn ein Bild aus einem Deiner Beiträge angezeigt wird)."; App::$strings["This can cause usability issues elsewhere (not just on your own site) so we must insist on this requirement."] = "Dies kann Probleme für andere Nutzer (nicht nur auf Deinem eigenen Server) verursachen, so dass wir auf dieser Forderung bestehen müssen."; App::$strings["Providers are available that issue free certificates which are browser-valid."] = "Es gibt einige Zertifizierungsstellen (CAs), bei denen solche Zertifikate kostenlos zu haben sind."; +App::$strings["If you are confident that the certificate is valid and signed by a trusted authority, check to see if you have failed to install an intermediate cert. These are not normally required by browsers, but are required for server-to-server communications."] = "Wenn Du sicher bist, dass das Zertifikat gültig und von einer vertrauenswürdigen Zertifizierungsstelle signiert ist, prüfe auf ggf. noch zu installierende Zwischenzertifikate (intermediate). Diese werden nicht unbedingt von Browsern benötigt, aber sehr wohl für die Kommunikation zwischen Servern."; App::$strings["SSL certificate validation"] = "SSL Zertifikatverifizierung"; App::$strings["Url rewrite in .htaccess is not working. Check your server configuration.Test: "] = "Das Umschreiben von URLs (rewrite) per .htaccess funktioniert nicht. Bitte prüfe die Server-Konfiguration. Test:"; App::$strings["Url rewrite is working"] = "Url rewrite funktioniert"; @@ -1333,19 +1396,20 @@ App::$strings["Files: shared with me"] = "Dateien, die mit mir geteilt wurden"; App::$strings["NEW"] = "NEU"; App::$strings["Remove all files"] = "Alle Dateien löschen"; App::$strings["Remove this file"] = "Diese Datei löschen"; -App::$strings["Version %s"] = "Version %s"; -App::$strings["Installed plugins/addons/apps:"] = "Installierte Plugins/Addons/Apps"; -App::$strings["No installed plugins/addons/apps"] = "Keine installierten Plugins/Addons/Apps"; -App::$strings["This is a hub of \$Projectname - a global cooperative network of decentralized privacy enhanced websites."] = "Dieser Hub ist Teil von \$Projectname – ein globales, kooperatives Netzwerk aus dezentralen Websites, die Rücksicht auf Deine Privatsphäre nehmen."; -App::$strings["Tag: "] = "Schlagwort: "; -App::$strings["Last background fetch: "] = "Letzter Hintergrundabruf:"; -App::$strings["Current load average: "] = "Aktuelles Load Average:"; -App::$strings["Running at web location"] = "Erreichbar unter der Web-Adresse"; -App::$strings["Please visit hubzilla.org to learn more about \$Projectname."] = "Bitte besuchen Sie hubzilla.org, um mehr über \$Projectname zu erfahren."; -App::$strings["Bug reports and issues: please visit"] = "Probleme oder Fehler gefunden? Bitte besuche"; -App::$strings["\$projectname issues"] = "\$projectname-Bugtracker"; -App::$strings["Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com"] = "Vorschläge, Lob, usw.: E-Mail an 'redmatrix' at librelist - dot - com"; -App::$strings["Site Administrators"] = "Administratoren"; +App::$strings["Thing updated"] = "Sache aktualisiert"; +App::$strings["Object store: failed"] = "Speichern des Objekts fehlgeschlagen"; +App::$strings["Thing added"] = "Sache hinzugefügt"; +App::$strings["OBJ: %1\$s %2\$s %3\$s"] = "OBJ: %1\$s %2\$s %3\$s"; +App::$strings["Show Thing"] = "Sache anzeigen"; +App::$strings["item not found."] = "Eintrag nicht gefunden"; +App::$strings["Edit Thing"] = "Sache bearbeiten"; +App::$strings["Select a profile"] = "Wähle ein Profil"; +App::$strings["Post an activity"] = "Aktivitätsnachricht senden"; +App::$strings["Only sends to viewers of the applicable profile"] = "Nur an Betrachter des ausgewählten Profils senden"; +App::$strings["Name of thing e.g. something"] = "Name der Sache, z. B. irgendwas"; +App::$strings["URL of thing (optional)"] = "URL der Sache (optional)"; +App::$strings["URL for photo of thing (optional)"] = "URL eines Fotos der Sache (optional)"; +App::$strings["Add Thing to your Profile"] = "Die Sache Deinem Profil hinzufügen"; App::$strings["Failed to create source. No channel selected."] = "Konnte die Quelle nicht anlegen. Kein Kanal ausgewählt."; App::$strings["Source created."] = "Quelle erstellt."; App::$strings["Source updated."] = "Quelle aktualisiert."; @@ -1373,60 +1437,38 @@ App::$strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s hat %2\$ss %3\$s App::$strings["Tag removed"] = "Schlagwort entfernt"; App::$strings["Remove Item Tag"] = "Schlagwort entfernen"; App::$strings["Select a tag to remove: "] = "Schlagwort zum Entfernen auswählen:"; -App::$strings["Thing updated"] = "Sache aktualisiert"; -App::$strings["Object store: failed"] = "Speichern des Objekts fehlgeschlagen"; -App::$strings["Thing added"] = "Sache hinzugefügt"; -App::$strings["OBJ: %1\$s %2\$s %3\$s"] = "OBJ: %1\$s %2\$s %3\$s"; -App::$strings["Show Thing"] = "Sache anzeigen"; -App::$strings["item not found."] = "Eintrag nicht gefunden"; -App::$strings["Edit Thing"] = "Sache bearbeiten"; -App::$strings["Select a profile"] = "Wähle ein Profil"; -App::$strings["Post an activity"] = "Aktivitätsnachricht senden"; -App::$strings["Only sends to viewers of the applicable profile"] = "Nur an Betrachter des ausgewählten Profils senden"; -App::$strings["Name of thing e.g. something"] = "Name der Sache, z. B. irgendwas"; -App::$strings["URL of thing (optional)"] = "URL der Sache (optional)"; -App::$strings["URL for photo of thing (optional)"] = "URL eines Fotos der Sache (optional)"; -App::$strings["Add Thing to your Profile"] = "Die Sache Deinem Profil hinzufügen"; -App::$strings["Export Channel"] = "Kanal exportieren"; -App::$strings["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."] = "Exportiert die grundlegenden Kanal-Informationen in eine kleine Datei. Diese stellt eine Sicherung Deiner Verbindungen, Berechtigungen, Profile und Basisdaten bereit, die für den Import auf einem anderen Hub verwendet werden kann, aber nicht die Beiträge Deines Kanals enthält."; -App::$strings["Export Content"] = "Kanal und Inhalte exportieren"; -App::$strings["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."] = "Exportiert Deine Kanal-Informationen sowie alle zugehörigen Inhalte in eine JSON-Sicherungsdatei. Die sichert alle Verbindungen, Berechtigungen, Profildaten und Deine Beiträge aus mehreren Monaten. Diese Datei kann SEHR groß werden! Bitte habe ein wenig Geduld – es kann mehrere Minuten dauern, bis der Download startet."; -App::$strings["Export your posts from a given year."] = "Exportiert die Beiträge des angegebenen Jahres."; -App::$strings["You may also export your posts and conversations for a particular year or month. Adjust the date in your browser location bar to select other dates. If the export fails (possibly due to memory exhaustion on your server hub), please try again selecting a more limited date range."] = "Du kannst auch die Beiträge und Konversationen eines bestimmten Jahres oder Monats exportieren. Ändere das Datum in der Adresszeile Deines Browsers, um andere Zeiträume zu wählen. Falls der Export fehlschlägt (vermutlich, weil auf diesem Hub nicht genügend Speicher zur Verfügung steht), versuche es noch einmal mit einer kleineren Zeitspanne."; -App::$strings["To select all posts for a given year, such as this year, visit %2\$s"] = "Um alle Beiträge eines bestimmten Jahres, zum Beispiel dieses Jahres, auszuwählen, klicke %2\$s."; -App::$strings["To select all posts for a given month, such as January of this year, visit %2\$s"] = "Um alle Beiträge eines bestimmten Monats auszuwählen, zum Beispiel vom Januar diesen Jahres, klicke %2\$s."; -App::$strings["These content files may be imported or restored by visiting %2\$s on any site containing your channel. For best results please import or restore these in date order (oldest first)."] = "Diese Inhalts-Sicherungen können wiederhergestellt werden, indem Du %2\$s auf jeglichem Hub besuchst, der diesen Kanal enthält. Das funktioniert am besten, wenn Du dabei die zeitliche Reihenfolge einhältst, also die Sicherungen für den ältesten Zeitraum zuerst importierst."; -App::$strings["No connections."] = "Keine Verbindungen."; -App::$strings["Visit %s's profile [%s]"] = "%ss Profil [%s] besuchen"; -App::$strings["View Connections"] = "Verbindungen anzeigen"; -App::$strings["Source of Item"] = "Quelle des Elements"; App::$strings["Webpages"] = "Webseiten"; App::$strings["Actions"] = "Aktionen"; App::$strings["Page Link"] = "Seiten-Link"; App::$strings["Page Title"] = "Seitentitel"; +App::$strings["Not found"] = "Nicht gefunden"; +App::$strings["Wiki"] = "Wiki"; +App::$strings["Sandbox"] = "Sandbox"; +App::$strings["\"# Wiki Sandbox\\n\\nContent you **edit** and **preview** here *will not be saved*.\""] = "\"# Wiki Sandkasten\\n\\nInhalte, die Du hier **veränderst** und **als Vorschau anzeigst**, *werden nicht gespeichert*.\""; +App::$strings["Revision Comparison"] = "Revisionsvergleich"; +App::$strings["Revert"] = "Rückgängig machen"; +App::$strings["Enter the name of your new wiki:"] = "Gib einen Namen für Dein neues Wiki ein:"; +App::$strings["Enter the name of the new page:"] = "Geben Sie den Namen der neuen Seite ein:"; +App::$strings["Enter the new name:"] = "Geben Sie den neuen Namen ein:"; +App::$strings["Embed image from photo albums"] = "Bild aus Fotoalben einbetten"; +App::$strings["Embed an image from your albums"] = "Betten Sie ein Bild aus Ihren Alben ein"; +App::$strings["OK"] = "Ok"; +App::$strings["Choose images to embed"] = "Wählen Sie Bilder zum Einbetten aus"; +App::$strings["Choose an album"] = "Wählen Sie ein Album aus"; +App::$strings["Choose a different album..."] = "Wählen Sie ein anderes Album aus..."; +App::$strings["Error getting album list"] = "Fehler beim Holen der Albenliste"; +App::$strings["Error getting photo link"] = "Fehler beim Holen des Fotolinks"; +App::$strings["Error getting album"] = "Fehler beim Holen des Albums"; +App::$strings["No connections."] = "Keine Verbindungen."; +App::$strings["Visit %s's profile [%s]"] = "%ss Profil [%s] besuchen"; +App::$strings["View Connections"] = "Verbindungen anzeigen"; +App::$strings["Source of Item"] = "Quelle des Elements"; +App::$strings["Authorize application connection"] = "Zugriff für die Anwendung autorisieren"; +App::$strings["Return to your app and insert this Securty Code:"] = "Trage folgenden Sicherheitscode in der Anwendung ein:"; +App::$strings["Please login to continue."] = "Zum Weitermachen, bitte einloggen."; +App::$strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Möchtest Du dieser Anwendung erlauben, Deine Nachrichten und Kontakte abzurufen und/oder neue Nachrichten für Dich zu erstellen?"; App::$strings["Xchan Lookup"] = "Xchan-Suche"; App::$strings["Lookup xchan beginning with (or webbie): "] = "Nach xchans oder Webbies (Kanal-Adressen) suchen, die wie folgt beginnen:"; -App::$strings["Site Admin"] = "Hub-Administration"; -App::$strings["Bug Report"] = "Fehler-Rückmeldung"; -App::$strings["View Bookmarks"] = "Lesezeichen ansehen"; -App::$strings["My Chatrooms"] = "Meine Chaträume"; -App::$strings["Firefox Share"] = "Teilen-Knopf für Firefox"; -App::$strings["Remote Diagnostics"] = "Ferndiagnose"; -App::$strings["Suggest Channels"] = "Kanäle vorschlagen"; -App::$strings["Login"] = "Anmelden"; -App::$strings["Grid"] = "Grid"; -App::$strings["Channel Home"] = "Mein Kanal"; -App::$strings["Events"] = "Termine"; -App::$strings["Directory"] = "Verzeichnis"; -App::$strings["Mail"] = "Mail"; -App::$strings["Chat"] = "Chat"; -App::$strings["Probe"] = "Testen"; -App::$strings["Suggest"] = "Empfehlen"; -App::$strings["Random Channel"] = "Zufälliger Kanal"; -App::$strings["Invite"] = "Einladen"; -App::$strings["Features"] = "Funktionen"; -App::$strings["Post"] = "Beitrag schreiben"; -App::$strings["Purchase"] = "Kaufen"; App::$strings["Missing room name"] = "Der Chatraum hat keinen Namen"; App::$strings["Duplicate room name"] = "Name des Chatraums bereits vergeben"; App::$strings["Invalid room specifier."] = "Ungültiger Raumbezeichner."; @@ -1474,6 +1516,27 @@ App::$strings["Please visit %s to approve or reject the suggestion."] = "Bitte b App::$strings["[Hubzilla:Notify]"] = "[Hubzilla:Benachrichtigung]"; App::$strings["created a new post"] = "Neuer Beitrag wurde erzeugt"; App::$strings["commented on %s's post"] = "hat %s's Beitrag kommentiert"; +App::$strings["Site Admin"] = "Hub-Administration"; +App::$strings["Bug Report"] = "Fehler-Rückmeldung"; +App::$strings["View Bookmarks"] = "Lesezeichen ansehen"; +App::$strings["My Chatrooms"] = "Meine Chaträume"; +App::$strings["Firefox Share"] = "Teilen-Knopf für Firefox"; +App::$strings["Remote Diagnostics"] = "Ferndiagnose"; +App::$strings["Suggest Channels"] = "Kanäle vorschlagen"; +App::$strings["Login"] = "Anmelden"; +App::$strings["Grid"] = "Grid"; +App::$strings["Channel Home"] = "Mein Kanal"; +App::$strings["Events"] = "Termine"; +App::$strings["Directory"] = "Verzeichnis"; +App::$strings["Mail"] = "Mail"; +App::$strings["Chat"] = "Chat"; +App::$strings["Probe"] = "Testen"; +App::$strings["Suggest"] = "Empfehlen"; +App::$strings["Random Channel"] = "Zufälliger Kanal"; +App::$strings["Invite"] = "Einladen"; +App::$strings["Features"] = "Funktionen"; +App::$strings["Post"] = "Beitrag schreiben"; +App::$strings["Purchase"] = "Kaufen"; App::$strings["Private Message"] = "Private Nachricht"; App::$strings["Select"] = "Auswählen"; App::$strings["Save to Folder"] = "In Ordner speichern"; @@ -1510,7 +1573,7 @@ App::$strings["Expires: %s"] = "Verfällt: %s"; App::$strings["Save Bookmarks"] = "Favoriten speichern"; App::$strings["Add to Calendar"] = "Zum Kalender hinzufügen"; App::$strings["Mark all seen"] = "Alle als gelesen markieren"; -App::$strings["[+] show all"] = "[+] Alle anzeigen"; +App::$strings["%s show all"] = "%s mehr anzeigen"; App::$strings["Bold"] = "Fett"; App::$strings["Italic"] = "Kursiv"; App::$strings["Underline"] = "Unterstrichen"; @@ -1519,9 +1582,93 @@ App::$strings["Code"] = "Code"; App::$strings["Image"] = "Bild"; App::$strings["Insert Link"] = "Link einfügen"; App::$strings["Video"] = "Video"; +App::$strings["Visible to your default audience"] = "Standard-Sichtbarkeit gemäß Kanaleinstellungen"; +App::$strings["Only me"] = "Nur ich"; +App::$strings["Public"] = "Öffentlich"; +App::$strings["Anybody in the \$Projectname network"] = "Jeder innerhalb des \$Projectname Netzwerks"; +App::$strings["Any account on %s"] = "Jedes Nutzerkonto auf %s"; +App::$strings["Any of my connections"] = "Alle meine Verbindungen"; +App::$strings["Only connections I specifically allow"] = "Nur Verbindungen, denen ich es explizit erlaube"; +App::$strings["Anybody authenticated (could include visitors from other networks)"] = "Jeder, der angemeldet ist (kann Besucher anderer Netzwerke beinhalten)"; +App::$strings["Any connections including those who haven't yet been approved"] = "Alle Verbindungen einschließlich der noch nicht bestätigten"; +App::$strings["This is your default setting for the audience of your normal stream, and posts."] = "Dies ist Deine Voreinstellung für die Sichtbarkeit Deiner normalen Beiträge (Stream)."; +App::$strings["This is your default setting for who can view your default channel profile"] = "Dies ist Deine Voreinstellung für die Sichtbarkeit Deines Standard-Kanalprofils."; +App::$strings["This is your default setting for who can view your connections"] = "Dies ist Deine Voreinstellung für die Sichtbarkeit Deiner Verbindungen."; +App::$strings["This is your default setting for who can view your file storage and photos"] = "Dies ist Deine Voreinstellung für die Sichtbarkeit Deiner Dateien und Fotos."; +App::$strings["This is your default setting for the audience of your webpages"] = "Dies ist Deine Voreinstellung für die Sichtbarkeit Deiner Webseiten."; App::$strings["No username found in import file."] = "Kein Benutzername in der Importdatei gefunden."; App::$strings["Unable to create a unique channel address. Import failed."] = "Es war nicht möglich, eine eindeutige Kanal-Adresse zu erzeugen. Der Import ist fehlgeschlagen."; App::$strings["Cannot locate DNS info for database server '%s'"] = "Kann die DNS-Informationen für den Datenbank-Server '%s' nicht finden"; +App::$strings["Image exceeds website size limit of %lu bytes"] = "Bild überschreitet das Webseitenlimit von %lu Bytes"; +App::$strings["Image file is empty."] = "Bilddatei ist leer."; +App::$strings["Photo storage failed."] = "Fotospeicherung fehlgeschlagen."; +App::$strings["a new photo"] = "ein neues Foto"; +App::$strings["__ctx:photo_upload__ %1\$s posted %2\$s to %3\$s"] = "%1\$s hat %2\$s auf %3\$s veröffentlicht"; +App::$strings["Photo Albums"] = "Fotoalben"; +App::$strings["Upload New Photos"] = "Neue Fotos hochladen"; +App::$strings["Logout"] = "Abmelden"; +App::$strings["End this session"] = "Beende diese Sitzung"; +App::$strings["Home"] = "Home"; +App::$strings["Your posts and conversations"] = "Deine Beiträge und Unterhaltungen"; +App::$strings["Your profile page"] = "Deine Profilseite"; +App::$strings["Manage/Edit profiles"] = "Profile verwalten"; +App::$strings["Edit Profile"] = "Profile bearbeiten"; +App::$strings["Edit your profile"] = "Profil bearbeiten"; +App::$strings["Your photos"] = "Deine Bilder"; +App::$strings["Your files"] = "Deine Dateien"; +App::$strings["Your chatrooms"] = "Deine Chaträume"; +App::$strings["Bookmarks"] = "Lesezeichen"; +App::$strings["Your bookmarks"] = "Deine Lesezeichen"; +App::$strings["Your webpages"] = "Deine Webseiten"; +App::$strings["Your wiki"] = "Dein Wiki"; +App::$strings["Sign in"] = "Anmelden"; +App::$strings["%s - click to logout"] = "%s - Klick zum Abmelden"; +App::$strings["Remote authentication"] = "Über Konto auf anderem Server einloggen"; +App::$strings["Click to authenticate to your home hub"] = "Klicke, um Dich über Deinen Heimat-Server zu authentifizieren"; +App::$strings["Home Page"] = "Homepage"; +App::$strings["Create an account"] = "Erzeuge ein Konto"; +App::$strings["Help and documentation"] = "Hilfe und Dokumentation"; +App::$strings["Applications, utilities, links, games"] = "Anwendungen (Apps), Zubehör, Links, Spiele"; +App::$strings["Search site @name, #tag, ?docs, content"] = "Hub durchsuchen: @Name. #Schlagwort, ?Dokumentation, Inhalt"; +App::$strings["Channel Directory"] = "Kanal-Verzeichnis"; +App::$strings["Your grid"] = "Dein Grid"; +App::$strings["Mark all grid notifications seen"] = "Alle Grid-Benachrichtigungen als angesehen markieren"; +App::$strings["Channel home"] = "Mein Kanal"; +App::$strings["Mark all channel notifications seen"] = "Markiere alle Kanal-Benachrichtigungen als angesehen"; +App::$strings["Notices"] = "Benachrichtigungen"; +App::$strings["Notifications"] = "Benachrichtigungen"; +App::$strings["See all notifications"] = "Alle Benachrichtigungen ansehen"; +App::$strings["Private mail"] = "Persönliche Mail"; +App::$strings["See all private messages"] = "Alle persönlichen Nachrichten ansehen"; +App::$strings["Mark all private messages seen"] = "Markiere alle persönlichen Nachrichten als gesehen"; +App::$strings["Inbox"] = "Eingang"; +App::$strings["Outbox"] = "Ausgang"; +App::$strings["New Message"] = "Neue Nachricht"; +App::$strings["Event Calendar"] = "Terminkalender"; +App::$strings["See all events"] = "Alle Termine ansehen"; +App::$strings["Mark all events seen"] = "Markiere alle Termine als gesehen"; +App::$strings["Manage Your Channels"] = "Verwalte Deine Kanäle"; +App::$strings["Account/Channel Settings"] = "Konto-/Kanal-Einstellungen"; +App::$strings["Admin"] = "Administration"; +App::$strings["Site Setup and Configuration"] = "Seiten-Einrichtung und -Konfiguration"; +App::$strings["Loading..."] = "Lädt ..."; +App::$strings["@name, #tag, ?doc, content"] = "@Name, #Schlagwort, ?Dokumentation, Inhalt"; +App::$strings["Please wait..."] = "Bitte warten..."; +App::$strings["view full size"] = "In Vollbildansicht anschauen"; +App::$strings["Administrator"] = "Administrator"; +App::$strings["No Subject"] = "Kein Betreff"; +App::$strings["Friendica"] = "Friendica"; +App::$strings["OStatus"] = "OStatus"; +App::$strings["GNU-Social"] = "GNU-Social"; +App::$strings["RSS/Atom"] = "RSS/Atom"; +App::$strings["Diaspora"] = "Diaspora"; +App::$strings["Facebook"] = "Facebook"; +App::$strings["Zot"] = "Zot!"; +App::$strings["LinkedIn"] = "LinkedIn"; +App::$strings["XMPP/IM"] = "XMPP/IM"; +App::$strings["MySpace"] = "MySpace"; +App::$strings["New Page"] = "Neue Seite"; +App::$strings["Title"] = "Titel"; App::$strings["Categories"] = "Kategorien"; App::$strings["Tags"] = "Schlagwörter"; App::$strings["Keywords"] = "Schlüsselwörter"; @@ -1531,34 +1678,196 @@ App::$strings["want"] = "will"; App::$strings["wants"] = "will"; App::$strings["likes"] = "gefällt"; App::$strings["dislikes"] = "missfällt"; -App::$strings["l F d, Y \\@ g:i A"] = "l, d. F Y, H:i"; -App::$strings["Starts:"] = "Beginnt:"; -App::$strings["Finishes:"] = "Endet:"; -App::$strings["This event has been added to your calendar."] = "Dieser Termin wurde zu Deinem Kalender hinzugefügt"; -App::$strings["Not specified"] = "Keine Angabe"; -App::$strings["Needs Action"] = "Aktion erforderlich"; -App::$strings["Completed"] = "Abgeschlossen"; -App::$strings["In Process"] = "In Bearbeitung"; -App::$strings["Cancelled"] = "gestrichen"; +App::$strings["Unable to obtain identity information from database"] = "Kann keine Identitäts-Informationen aus Datenbank beziehen"; +App::$strings["Empty name"] = "Namensfeld leer"; +App::$strings["Name too long"] = "Name ist zu lang"; +App::$strings["No account identifier"] = "Keine Account-Kennung"; +App::$strings["Nickname is required."] = "Spitzname ist erforderlich."; +App::$strings["Reserved nickname. Please choose another."] = "Reservierter Kurzname. Bitte wähle einen anderen."; +App::$strings["Nickname has unsupported characters or is already being used on this site."] = "Der Spitzname enthält nicht-unterstütze Zeichen oder wird bereits auf dieser Seite genutzt."; +App::$strings["Unable to retrieve created identity"] = "Kann die erstellte Identität nicht empfangen"; +App::$strings["Default Profile"] = "Standard-Profil"; +App::$strings["Requested channel is not available."] = "Angeforderte Kanal nicht verfügbar."; +App::$strings["Create New Profile"] = "Neues Profil erstellen"; +App::$strings["Visible to everybody"] = "Für jeden sichtbar"; +App::$strings["Gender:"] = "Geschlecht:"; +App::$strings["Status:"] = "Status:"; +App::$strings["Homepage:"] = "Homepage:"; +App::$strings["Online Now"] = "gerade online"; +App::$strings["Like this channel"] = "Dieser Kanal gefällt mir"; +App::$strings["j F, Y"] = "j. F Y"; +App::$strings["j F"] = "j. F"; +App::$strings["Birthday:"] = "Geburtstag:"; +App::$strings["for %1\$d %2\$s"] = "seit %1\$d %2\$s"; +App::$strings["Sexual Preference:"] = "Sexuelle Orientierung:"; +App::$strings["Tags:"] = "Schlagworte:"; +App::$strings["Political Views:"] = "Politische Ansichten:"; +App::$strings["Religion:"] = "Religion:"; +App::$strings["Hobbies/Interests:"] = "Hobbys/Interessen:"; +App::$strings["Likes:"] = "Gefällt:"; +App::$strings["Dislikes:"] = "Gefällt nicht:"; +App::$strings["Contact information and Social Networks:"] = "Kontaktinformation und soziale Netzwerke:"; +App::$strings["My other channels:"] = "Meine anderen Kanäle:"; +App::$strings["Musical interests:"] = "Musikalische Interessen:"; +App::$strings["Books, literature:"] = "Bücher, Literatur:"; +App::$strings["Television:"] = "Fernsehen:"; +App::$strings["Film/dance/culture/entertainment:"] = "Film/Tanz/Kultur/Unterhaltung:"; +App::$strings["Love/Romance:"] = "Liebe/Romantik:"; +App::$strings["Work/employment:"] = "Arbeit/Anstellung:"; +App::$strings["School/education:"] = "Schule/Ausbildung:"; +App::$strings["Like this thing"] = "Gefällt mir"; +App::$strings["New window"] = "Neues Fenster"; +App::$strings["Open the selected location in a different window or browser tab"] = "Öffne die markierte Adresse in einem neuen Browserfenster oder Tab"; +App::$strings["User '%s' deleted"] = "Benutzer '%s' gelöscht"; +App::$strings["%1\$s is now connected with %2\$s"] = "%1\$s ist jetzt mit %2\$s verbunden"; +App::$strings["%1\$s poked %2\$s"] = "%1\$s stupste %2\$s an"; +App::$strings["poked"] = "stupste"; +App::$strings["View %s's profile @ %s"] = "%ss Profil auf %s ansehen"; +App::$strings["Categories:"] = "Kategorien:"; +App::$strings["Filed under:"] = "Gespeichert unter:"; +App::$strings["View in context"] = "Im Zusammenhang anschauen"; +App::$strings["remove"] = "lösche"; +App::$strings["Delete Selected Items"] = "Lösche die ausgewählten Elemente"; +App::$strings["View Source"] = "Quelle anzeigen"; +App::$strings["Follow Thread"] = "Unterhaltung folgen"; +App::$strings["Unfollow Thread"] = "Unterhaltung nicht mehr folgen"; +App::$strings["Activity/Posts"] = "Aktivitäten/Beiträge"; +App::$strings["Edit Connection"] = "Verbindung bearbeiten"; +App::$strings["Message"] = "Nachricht"; +App::$strings["%s likes this."] = "%s gefällt das."; +App::$strings["%s doesn't like this."] = "%s gefällt das nicht."; +App::$strings["%2\$d people like this."] = array( + 0 => "%2\$d Person gefällt das.", + 1 => "%2\$d Leuten gefällt das.", +); +App::$strings["%2\$d people don't like this."] = array( + 0 => "%2\$d Person gefällt das nicht.", + 1 => "%2\$d Leuten gefällt das nicht.", +); +App::$strings["and"] = "und"; +App::$strings[", and %d other people"] = array( + 0 => "", + 1 => ", und %d andere", +); +App::$strings["%s like this."] = "%s gefällt das."; +App::$strings["%s don't like this."] = "%s gefällt das nicht."; +App::$strings["Set your location"] = "Standort"; +App::$strings["Clear browser location"] = "Browser-Standort löschen"; +App::$strings["Tag term:"] = "Schlagwort:"; +App::$strings["Where are you right now?"] = "Wo bist Du jetzt grade?"; +App::$strings["Page link name"] = "Link zur Seite"; +App::$strings["Post as"] = "Veröffentlichen als"; +App::$strings["Toggle voting"] = "Umfragewerkzeug aktivieren"; +App::$strings["Categories (optional, comma-separated list)"] = "Kategorien (optional, kommagetrennte Liste)"; +App::$strings["Set publish date"] = "Veröffentlichungsdatum festlegen"; +App::$strings["Discover"] = "Entdecken"; +App::$strings["Imported public streams"] = "Importierte öffentliche Beiträge"; +App::$strings["Commented Order"] = "Neueste Kommentare"; +App::$strings["Sort by Comment Date"] = "Nach Kommentardatum sortiert"; +App::$strings["Posted Order"] = "Neueste Beiträge"; +App::$strings["Sort by Post Date"] = "Nach Beitragsdatum sortiert"; +App::$strings["Posts that mention or involve you"] = "Beiträge mit Beteiligung Deinerseits"; +App::$strings["Activity Stream - by date"] = "Activity Stream – nach Datum sortiert"; +App::$strings["Starred"] = "Markiert"; +App::$strings["Favourite Posts"] = "Markierte Beiträge"; +App::$strings["Spam"] = "Spam"; +App::$strings["Posts flagged as SPAM"] = "Nachrichten, die als SPAM markiert wurden"; +App::$strings["Status Messages and Posts"] = "Statusnachrichten und Beiträge"; +App::$strings["About"] = "Über"; +App::$strings["Profile Details"] = "Profil-Details"; +App::$strings["Files and Storage"] = "Dateien und Speicher"; +App::$strings["Chatrooms"] = "Chaträume"; +App::$strings["Saved Bookmarks"] = "Gespeicherte Lesezeichen"; +App::$strings["Manage Webpages"] = "Webseiten verwalten"; +App::$strings["__ctx:noun__ Attending"] = array( + 0 => "Zusage", + 1 => "Zusagen", +); +App::$strings["__ctx:noun__ Not Attending"] = array( + 0 => "Absage", + 1 => "Absagen", +); +App::$strings["__ctx:noun__ Undecided"] = array( + 0 => " Unentschlossen", + 1 => "Unentschlossene", +); +App::$strings["__ctx:noun__ Agree"] = array( + 0 => "Zustimmung", + 1 => "Zustimmungen", +); +App::$strings["__ctx:noun__ Disagree"] = array( + 0 => "Ablehnung", + 1 => "Ablehnungen", +); +App::$strings["__ctx:noun__ Abstain"] = array( + 0 => "Enthaltung", + 1 => "Enthaltungen", +); App::$strings["Cannot create a duplicate channel identifier on this system. Import failed."] = "Kann keinen doppelten Kanal-Identifikator auf diesem System erzeugen (Spitzname oder Hash schon belegt). Import fehlgeschlagen."; App::$strings["Channel clone failed. Import failed."] = "Klonen des Kanals fehlgeschlagen. Import fehlgeschlagen."; -App::$strings["(Unknown)"] = "(Unbekannt)"; -App::$strings["Visible to anybody on the internet."] = "Für jeden im Internet sichtbar."; -App::$strings["Visible to you only."] = "Nur für Dich sichtbar."; -App::$strings["Visible to anybody in this network."] = "Für jedes \$Projectname-Mitglied sichtbar."; -App::$strings["Visible to anybody authenticated."] = "Für jeden sichtbar, der angemeldet ist."; -App::$strings["Visible to anybody on %s."] = "Für jeden auf %s sichtbar."; -App::$strings["Visible to all connections."] = "Für alle Verbindungen sichtbar."; -App::$strings["Visible to approved connections."] = "Nur für akzeptierte Verbindungen sichtbar."; -App::$strings["Visible to specific connections."] = "Sichtbar für bestimmte Verbindungen."; -App::$strings["Privacy group is empty."] = "Gruppe ist leer."; -App::$strings["Privacy group: %s"] = "Gruppe: %s"; -App::$strings["Connection not found."] = "Die Verbindung wurde nicht gefunden."; -App::$strings["profile photo"] = "Profilfoto"; -App::$strings["No recipient provided."] = "Kein Empfänger angegeben"; -App::$strings["[no subject]"] = "[no subject]"; -App::$strings["Unable to determine sender."] = "Kann Absender nicht bestimmen."; -App::$strings["Stored post could not be verified."] = "Gespeicherter Beitrag konnten nicht überprüft werden."; +App::$strings["Frequently"] = "Häufig"; +App::$strings["Hourly"] = "Stündlich"; +App::$strings["Twice daily"] = "Zwei Mal am Tag"; +App::$strings["Daily"] = "Täglich"; +App::$strings["Weekly"] = "Wöchentlich"; +App::$strings["Monthly"] = "Monatlich"; +App::$strings["Currently Male"] = "Momentan männlich"; +App::$strings["Currently Female"] = "Momentan weiblich"; +App::$strings["Mostly Male"] = "Größtenteils männlich"; +App::$strings["Mostly Female"] = "Größtenteils weiblich"; +App::$strings["Transgender"] = "Transsexuell"; +App::$strings["Intersex"] = "Zwischengeschlechtlich"; +App::$strings["Transsexual"] = "Transsexuell"; +App::$strings["Hermaphrodite"] = "Zwitter"; +App::$strings["Neuter"] = "Geschlechtslos"; +App::$strings["Non-specific"] = "unklar"; +App::$strings["Undecided"] = "Unentschieden"; +App::$strings["Males"] = "Männer"; +App::$strings["Females"] = "Frauen"; +App::$strings["Gay"] = "Schwul"; +App::$strings["Lesbian"] = "Lesbisch"; +App::$strings["No Preference"] = "Keine Bevorzugung"; +App::$strings["Bisexual"] = "Bisexuell"; +App::$strings["Autosexual"] = "Autosexuell"; +App::$strings["Abstinent"] = "Enthaltsam"; +App::$strings["Virgin"] = "Jungfräulich"; +App::$strings["Deviant"] = "Abweichend"; +App::$strings["Fetish"] = "Fetisch"; +App::$strings["Oodles"] = "Unmengen"; +App::$strings["Nonsexual"] = "Sexlos"; +App::$strings["Single"] = "Single"; +App::$strings["Lonely"] = "Einsam"; +App::$strings["Available"] = "Verfügbar"; +App::$strings["Unavailable"] = "Nicht verfügbar"; +App::$strings["Has crush"] = "Verguckt"; +App::$strings["Infatuated"] = "Verknallt"; +App::$strings["Dating"] = "Lerne gerade jemanden kennen"; +App::$strings["Unfaithful"] = "Treulos"; +App::$strings["Sex Addict"] = "Sexabhängig"; +App::$strings["Friends/Benefits"] = "Freunde/Begünstigte"; +App::$strings["Casual"] = "Lose"; +App::$strings["Engaged"] = "Verlobt"; +App::$strings["Married"] = "Verheiratet"; +App::$strings["Imaginarily married"] = "Gewissermaßen verheiratet"; +App::$strings["Partners"] = "Partner"; +App::$strings["Cohabiting"] = "Lebensgemeinschaft"; +App::$strings["Common law"] = "Informelle Ehe"; +App::$strings["Happy"] = "Glücklich"; +App::$strings["Not looking"] = "Nicht Ausschau haltend"; +App::$strings["Swinger"] = "Swinger"; +App::$strings["Betrayed"] = "Betrogen"; +App::$strings["Separated"] = "Getrennt"; +App::$strings["Unstable"] = "Labil"; +App::$strings["Divorced"] = "Geschieden"; +App::$strings["Imaginarily divorced"] = "Gewissermaßen geschieden"; +App::$strings["Widowed"] = "Verwitwet"; +App::$strings["Uncertain"] = "Ungewiss"; +App::$strings["It's complicated"] = "Es ist kompliziert"; +App::$strings["Don't care"] = "Interessiert mich nicht"; +App::$strings["Ask me"] = "Frag mich mal"; +App::$strings["%1\$s's bookmarks"] = "%1\$ss Lesezeichen"; +App::$strings["guest:"] = "Gast:"; +App::$strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "Das Security-Token des Formulars war nicht korrekt. Das ist wahrscheinlich passiert, weil das Formular zu lange (>3 Stunden) offen war, bevor es abgeschickt wurde."; App::$strings["prev"] = "vorherige"; App::$strings["first"] = "erste"; App::$strings["last"] = "letzte"; @@ -1568,7 +1877,6 @@ App::$strings["newer"] = "neuer"; App::$strings["No connections"] = "Keine Verbindungen"; App::$strings["View all %s connections"] = "Alle Verbindungen von %s anzeigen"; App::$strings["poke"] = "anstupsen"; -App::$strings["poked"] = "stupste"; App::$strings["ping"] = "anpingen"; App::$strings["pinged"] = "pingte"; App::$strings["prod"] = "knuffen"; @@ -1631,385 +1939,21 @@ App::$strings["Select an alternate language"] = "Wähle eine alternative Sprache App::$strings["activity"] = "Aktivität"; App::$strings["Design Tools"] = "Gestaltungswerkzeuge"; App::$strings["Pages"] = "Seiten"; -App::$strings["System"] = "System"; -App::$strings["New App"] = "Neue App"; -App::$strings["Suggestions"] = "Vorschläge"; -App::$strings["See more..."] = "Mehr anzeigen …"; -App::$strings["You have %1$.0f of %2$.0f allowed connections."] = "Du bist %1$.0f von maximal %2$.0f erlaubten Verbindungen eingegangen."; -App::$strings["Add New Connection"] = "Neue Verbindung hinzufügen"; -App::$strings["Enter channel address"] = "Adresse des Kanals eingeben"; -App::$strings["Examples: bob@example.com, https://example.com/barbara"] = "Beispiele: bob@beispiel.com, http://beispiel.com/barbara"; -App::$strings["Notes"] = "Notizen"; -App::$strings["Remove term"] = "Eintrag löschen"; -App::$strings["Saved Searches"] = "Gespeicherte Suchanfragen"; -App::$strings["add"] = "hinzufügen"; -App::$strings["Saved Folders"] = "Gespeicherte Ordner"; -App::$strings["Everything"] = "Alles"; -App::$strings["Archives"] = "Archive"; -App::$strings["Refresh"] = "Aktualisieren"; -App::$strings["Account settings"] = "Konto-Einstellungen"; -App::$strings["Channel settings"] = "Kanal-Einstellungen"; -App::$strings["Additional features"] = "Zusätzliche Funktionen"; -App::$strings["Feature/Addon settings"] = "Plugin-Einstellungen"; -App::$strings["Display settings"] = "Anzeige-Einstellungen"; -App::$strings["Manage locations"] = "Klon-Adressen verwalten"; -App::$strings["Export channel"] = "Kanal exportieren"; -App::$strings["Connected apps"] = "Verbundene Apps"; -App::$strings["Premium Channel Settings"] = "Premium-Kanal-Einstellungen"; -App::$strings["Private Mail Menu"] = "Private Nachrichten"; -App::$strings["Combined View"] = "Kombinierte Anzeige"; -App::$strings["Inbox"] = "Eingang"; -App::$strings["Outbox"] = "Ausgang"; -App::$strings["New Message"] = "Neue Nachricht"; -App::$strings["Conversations"] = "Konversationen"; -App::$strings["Received Messages"] = "Erhaltene Nachrichten"; -App::$strings["Sent Messages"] = "Gesendete Nachrichten"; -App::$strings["No messages."] = "Keine Nachrichten."; -App::$strings["Delete conversation"] = "Unterhaltung löschen"; -App::$strings["Events Menu"] = "Kalendermenü"; -App::$strings["Day View"] = "Tagesansicht"; -App::$strings["Week View"] = "Wochenansicht"; -App::$strings["Month View"] = "Monatsansicht"; -App::$strings["Events Tools"] = "Kalenderwerkzeuge"; -App::$strings["Export Calendar"] = "Kalender exportieren"; -App::$strings["Import Calendar"] = "Kalender importieren"; -App::$strings["Chatrooms"] = "Chaträume"; -App::$strings["Overview"] = "Übersicht"; -App::$strings["Chat Members"] = "Chatmitglieder"; -App::$strings["Bookmarked Chatrooms"] = "Gespeicherte Chatrooms"; -App::$strings["Suggested Chatrooms"] = "Chatraum-Vorschläge"; -App::$strings["photo/image"] = "Foto/Bild"; -App::$strings["Click to show more"] = "Klick, um mehr anzuzeigen"; -App::$strings["Rating Tools"] = "Bewertungswerkzeuge"; -App::$strings["Rate Me"] = "Bewerte mich"; -App::$strings["View Ratings"] = "Bewertungen ansehen"; -App::$strings["Forums"] = "Foren"; -App::$strings["Tasks"] = "Aufgaben"; -App::$strings["Documentation"] = "Dokumentation"; -App::$strings["Project/Site Information"] = "Informationen über das Projekt und diesen Hub"; -App::$strings["For Members"] = "Für Mitglieder"; -App::$strings["For Administrators"] = "Für Administratoren"; -App::$strings["For Developers"] = "Für Entwickler"; -App::$strings["Member registrations waiting for confirmation"] = "Nutzer-Anmeldungen, die auf Bestätigung warten"; -App::$strings["Inspect queue"] = "Warteschlange kontrollieren"; -App::$strings["DB updates"] = "DB-Aktualisierungen"; -App::$strings["Admin"] = "Administration"; -App::$strings["Plugin Features"] = "Plug-In Funktionen"; -App::$strings["Channel is blocked on this site."] = "Der Kanal ist auf dieser Seite blockiert "; -App::$strings["Channel location missing."] = "Adresse des Kanals fehlt."; -App::$strings["Response from remote channel was incomplete."] = "Antwort des entfernten Kanals war unvollständig."; -App::$strings["Channel was deleted and no longer exists."] = "Kanal wurde gelöscht und existiert nicht mehr."; -App::$strings["Protocol disabled."] = "Protokoll deaktiviert."; -App::$strings["Channel discovery failed."] = "Kanalsuche fehlgeschlagen"; -App::$strings["Cannot connect to yourself."] = "Du kannst Dich nicht mit Dir selbst verbinden."; -App::$strings["%1\$s's bookmarks"] = "%1\$ss Lesezeichen"; -App::$strings["Public Timeline"] = "Öffentliche Zeitleiste"; -App::$strings["Image/photo"] = "Bild/Foto"; -App::$strings["Encrypted content"] = "Verschlüsselter Inhalt"; -App::$strings["Install %s element: "] = "Element %s installieren: "; -App::$strings["This post contains an installable %s element, however you lack permissions to install it on this site."] = "Dieser Beitrag beinhaltet ein installierbares %s Element, aber Du hast nicht die nötigen Rechte, um es auf diesem Hub zu installieren."; -App::$strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s schrieb den folgenden %2\$s %3\$s"; -App::$strings["Click to open/close"] = "Klicke zum Öffnen/Schließen"; -App::$strings["spoiler"] = "Spoiler"; -App::$strings["Different viewers will see this text differently"] = "Verschiedene Betrachter werden diesen Text unterschiedlich sehen"; -App::$strings["$1 wrote:"] = "$1 schrieb:"; -App::$strings["Directory Options"] = "Verzeichnisoptionen"; -App::$strings["Safe Mode"] = "Sicherer Modus"; -App::$strings["Public Forums Only"] = "Nur öffentliche Foren"; -App::$strings["This Website Only"] = "Nur dieser Hub"; -App::$strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "Das Security-Token des Formulars war nicht korrekt. Das ist wahrscheinlich passiert, weil das Formular zu lange (>3 Stunden) offen war, bevor es abgeschickt wurde."; -App::$strings["Logout"] = "Abmelden"; -App::$strings["End this session"] = "Beende diese Sitzung"; -App::$strings["Home"] = "Home"; -App::$strings["Your posts and conversations"] = "Deine Beiträge und Unterhaltungen"; -App::$strings["Your profile page"] = "Deine Profilseite"; -App::$strings["Manage/Edit profiles"] = "Profile verwalten"; -App::$strings["Edit Profile"] = "Profile bearbeiten"; -App::$strings["Edit your profile"] = "Profil bearbeiten"; -App::$strings["Your photos"] = "Deine Bilder"; -App::$strings["Your files"] = "Deine Dateien"; -App::$strings["Your chatrooms"] = "Deine Chaträume"; -App::$strings["Bookmarks"] = "Lesezeichen"; -App::$strings["Your bookmarks"] = "Deine Lesezeichen"; -App::$strings["Your webpages"] = "Deine Webseiten"; -App::$strings["Sign in"] = "Anmelden"; -App::$strings["%s - click to logout"] = "%s - Klick zum Abmelden"; -App::$strings["Remote authentication"] = "Über Konto auf anderem Server einloggen"; -App::$strings["Click to authenticate to your home hub"] = "Klicke, um Dich über Deinen Heimat-Server zu authentifizieren"; -App::$strings["Home Page"] = "Homepage"; -App::$strings["Create an account"] = "Erzeuge ein Konto"; -App::$strings["Help and documentation"] = "Hilfe und Dokumentation"; -App::$strings["Applications, utilities, links, games"] = "Anwendungen (Apps), Zubehör, Links, Spiele"; -App::$strings["Search site @name, #tag, ?docs, content"] = "Hub durchsuchen: @Name. #Schlagwort, ?Dokumentation, Inhalt"; -App::$strings["Channel Directory"] = "Kanal-Verzeichnis"; -App::$strings["Your grid"] = "Dein Grid"; -App::$strings["Mark all grid notifications seen"] = "Alle Grid-Benachrichtigungen als angesehen markieren"; -App::$strings["Channel home"] = "Mein Kanal"; -App::$strings["Mark all channel notifications seen"] = "Markiere alle Kanal-Benachrichtigungen als angesehen"; -App::$strings["Notices"] = "Benachrichtigungen"; -App::$strings["Notifications"] = "Benachrichtigungen"; -App::$strings["See all notifications"] = "Alle Benachrichtigungen ansehen"; -App::$strings["Private mail"] = "Persönliche Mail"; -App::$strings["See all private messages"] = "Alle persönlichen Nachrichten ansehen"; -App::$strings["Mark all private messages seen"] = "Markiere alle persönlichen Nachrichten als gesehen"; -App::$strings["Event Calendar"] = "Terminkalender"; -App::$strings["See all events"] = "Alle Termine ansehen"; -App::$strings["Mark all events seen"] = "Markiere alle Termine als gesehen"; -App::$strings["Manage Your Channels"] = "Verwalte Deine Kanäle"; -App::$strings["Account/Channel Settings"] = "Konto-/Kanal-Einstellungen"; -App::$strings["Site Setup and Configuration"] = "Seiten-Einrichtung und -Konfiguration"; -App::$strings["Loading..."] = "Lädt ..."; -App::$strings["@name, #tag, ?doc, content"] = "@Name, #Schlagwort, ?Dokumentation, Inhalt"; -App::$strings["Please wait..."] = "Bitte warten..."; -App::$strings["New window"] = "Neues Fenster"; -App::$strings["Open the selected location in a different window or browser tab"] = "Öffne die markierte Adresse in einem neuen Browserfenster oder Tab"; -App::$strings["User '%s' deleted"] = "Benutzer '%s' gelöscht"; -App::$strings["%d invitation available"] = array( - 0 => "%d Einladung verfügbar", - 1 => "%d Einladungen verfügbar", -); -App::$strings["Find Channels"] = "Finde Kanäle"; -App::$strings["Enter name or interest"] = "Name oder Interessen eingeben"; -App::$strings["Connect/Follow"] = "Verbinden/Folgen"; -App::$strings["Examples: Robert Morgenstein, Fishing"] = "Beispiele: Robert Morgenstein, Angeln"; -App::$strings["Random Profile"] = "Zufallsprofil"; -App::$strings["Invite Friends"] = "Lade Freunde ein"; -App::$strings["Advanced example: name=fred and country=iceland"] = "Fortgeschrittenes Beispiel: name=fred and country=iceland"; -App::$strings["%d connection in common"] = array( - 0 => "%d gemeinsame Verbindung", - 1 => "%d gemeinsame Verbindungen", -); -App::$strings["show more"] = "mehr zeigen"; -App::$strings["%1\$s is now connected with %2\$s"] = "%1\$s ist jetzt mit %2\$s verbunden"; -App::$strings["%1\$s poked %2\$s"] = "%1\$s stupste %2\$s an"; -App::$strings["View %s's profile @ %s"] = "%ss Profil auf %s ansehen"; -App::$strings["Categories:"] = "Kategorien:"; -App::$strings["Filed under:"] = "Gespeichert unter:"; -App::$strings["View in context"] = "Im Zusammenhang anschauen"; -App::$strings["remove"] = "lösche"; -App::$strings["Delete Selected Items"] = "Lösche die ausgewählten Elemente"; -App::$strings["View Source"] = "Quelle anzeigen"; -App::$strings["Follow Thread"] = "Unterhaltung folgen"; -App::$strings["Unfollow Thread"] = "Unterhaltung nicht mehr folgen"; -App::$strings["Activity/Posts"] = "Aktivitäten/Beiträge"; -App::$strings["Edit Connection"] = "Verbindung bearbeiten"; -App::$strings["Message"] = "Nachricht"; -App::$strings["%s likes this."] = "%s gefällt das."; -App::$strings["%s doesn't like this."] = "%s gefällt das nicht."; -App::$strings["%2\$d people like this."] = array( - 0 => "%2\$d Person gefällt das.", - 1 => "%2\$d Leuten gefällt das.", -); -App::$strings["%2\$d people don't like this."] = array( - 0 => "%2\$d Person gefällt das nicht.", - 1 => "%2\$d Leuten gefällt das nicht.", -); -App::$strings["and"] = "und"; -App::$strings[", and %d other people"] = array( - 0 => "", - 1 => ", und %d andere", -); -App::$strings["%s like this."] = "%s gefällt das."; -App::$strings["%s don't like this."] = "%s gefällt das nicht."; -App::$strings["Set your location"] = "Standort"; -App::$strings["Clear browser location"] = "Browser-Standort löschen"; -App::$strings["Tag term:"] = "Schlagwort:"; -App::$strings["Where are you right now?"] = "Wo bist Du jetzt grade?"; -App::$strings["Page link name"] = "Link zur Seite"; -App::$strings["Post as"] = "Veröffentlichen als"; -App::$strings["Toggle voting"] = "Umfragewerkzeug aktivieren"; -App::$strings["Categories (optional, comma-separated list)"] = "Kategorien (optional, kommagetrennte Liste)"; -App::$strings["Set publish date"] = "Veröffentlichungsdatum festlegen"; -App::$strings["OK"] = "Ok"; -App::$strings["Discover"] = "Entdecken"; -App::$strings["Imported public streams"] = "Importierte öffentliche Beiträge"; -App::$strings["Commented Order"] = "Neueste Kommentare"; -App::$strings["Sort by Comment Date"] = "Nach Kommentardatum sortiert"; -App::$strings["Posted Order"] = "Neueste Beiträge"; -App::$strings["Sort by Post Date"] = "Nach Beitragsdatum sortiert"; -App::$strings["Posts that mention or involve you"] = "Beiträge mit Beteiligung Deinerseits"; -App::$strings["Activity Stream - by date"] = "Activity Stream – nach Datum sortiert"; -App::$strings["Starred"] = "Markiert"; -App::$strings["Favourite Posts"] = "Markierte Beiträge"; -App::$strings["Spam"] = "Spam"; -App::$strings["Posts flagged as SPAM"] = "Nachrichten, die als SPAM markiert wurden"; -App::$strings["Status Messages and Posts"] = "Statusnachrichten und Beiträge"; -App::$strings["About"] = "Über"; -App::$strings["Profile Details"] = "Profil-Details"; -App::$strings["Photo Albums"] = "Fotoalben"; -App::$strings["Files and Storage"] = "Dateien und Speicher"; -App::$strings["Saved Bookmarks"] = "Gespeicherte Lesezeichen"; -App::$strings["Manage Webpages"] = "Webseiten verwalten"; -App::$strings["__ctx:noun__ Attending"] = array( - 0 => "Zusage", - 1 => "Zusagen", -); -App::$strings["__ctx:noun__ Not Attending"] = array( - 0 => "Absage", - 1 => "Absagen", -); -App::$strings["__ctx:noun__ Undecided"] = array( - 0 => " Unentschlossen", - 1 => "Unentschlossene", -); -App::$strings["__ctx:noun__ Agree"] = array( - 0 => "Zustimmung", - 1 => "Zustimmungen", -); -App::$strings["__ctx:noun__ Disagree"] = array( - 0 => "Ablehnung", - 1 => "Ablehnungen", -); -App::$strings["__ctx:noun__ Abstain"] = array( - 0 => "Enthaltung", - 1 => "Enthaltungen", -); -App::$strings["Frequently"] = "Häufig"; -App::$strings["Hourly"] = "Stündlich"; -App::$strings["Twice daily"] = "Zwei Mal am Tag"; -App::$strings["Daily"] = "Täglich"; -App::$strings["Weekly"] = "Wöchentlich"; -App::$strings["Monthly"] = "Monatlich"; -App::$strings["Currently Male"] = "Momentan männlich"; -App::$strings["Currently Female"] = "Momentan weiblich"; -App::$strings["Mostly Male"] = "Größtenteils männlich"; -App::$strings["Mostly Female"] = "Größtenteils weiblich"; -App::$strings["Transgender"] = "Transsexuell"; -App::$strings["Intersex"] = "Zwischengeschlechtlich"; -App::$strings["Transsexual"] = "Transsexuell"; -App::$strings["Hermaphrodite"] = "Zwitter"; -App::$strings["Neuter"] = "Geschlechtslos"; -App::$strings["Non-specific"] = "unklar"; -App::$strings["Other"] = "Andere"; -App::$strings["Undecided"] = "Unentschieden"; -App::$strings["Males"] = "Männer"; -App::$strings["Females"] = "Frauen"; -App::$strings["Gay"] = "Schwul"; -App::$strings["Lesbian"] = "Lesbisch"; -App::$strings["No Preference"] = "Keine Bevorzugung"; -App::$strings["Bisexual"] = "Bisexuell"; -App::$strings["Autosexual"] = "Autosexuell"; -App::$strings["Abstinent"] = "Enthaltsam"; -App::$strings["Virgin"] = "Jungfräulich"; -App::$strings["Deviant"] = "Abweichend"; -App::$strings["Fetish"] = "Fetisch"; -App::$strings["Oodles"] = "Unmengen"; -App::$strings["Nonsexual"] = "Sexlos"; -App::$strings["Single"] = "Single"; -App::$strings["Lonely"] = "Einsam"; -App::$strings["Available"] = "Verfügbar"; -App::$strings["Unavailable"] = "Nicht verfügbar"; -App::$strings["Has crush"] = "Verguckt"; -App::$strings["Infatuated"] = "Verknallt"; -App::$strings["Dating"] = "Lerne gerade jemanden kennen"; -App::$strings["Unfaithful"] = "Treulos"; -App::$strings["Sex Addict"] = "Sexabhängig"; -App::$strings["Friends/Benefits"] = "Freunde/Begünstigte"; -App::$strings["Casual"] = "Lose"; -App::$strings["Engaged"] = "Verlobt"; -App::$strings["Married"] = "Verheiratet"; -App::$strings["Imaginarily married"] = "Gewissermaßen verheiratet"; -App::$strings["Partners"] = "Partner"; -App::$strings["Cohabiting"] = "Lebensgemeinschaft"; -App::$strings["Common law"] = "Informelle Ehe"; -App::$strings["Happy"] = "Glücklich"; -App::$strings["Not looking"] = "Nicht Ausschau haltend"; -App::$strings["Swinger"] = "Swinger"; -App::$strings["Betrayed"] = "Betrogen"; -App::$strings["Separated"] = "Getrennt"; -App::$strings["Unstable"] = "Labil"; -App::$strings["Divorced"] = "Geschieden"; -App::$strings["Imaginarily divorced"] = "Gewissermaßen geschieden"; -App::$strings["Widowed"] = "Verwitwet"; -App::$strings["Uncertain"] = "Ungewiss"; -App::$strings["It's complicated"] = "Es ist kompliziert"; -App::$strings["Don't care"] = "Interessiert mich nicht"; -App::$strings["Ask me"] = "Frag mich mal"; -App::$strings["Visible to your default audience"] = "Standard-Sichtbarkeit gemäß Kanaleinstellungen"; -App::$strings["Only me"] = "Nur ich"; -App::$strings["Public"] = "Öffentlich"; -App::$strings["Anybody in the \$Projectname network"] = "Jeder innerhalb des \$Projectname Netzwerks"; -App::$strings["Any account on %s"] = "Jedes Nutzerkonto auf %s"; -App::$strings["Any of my connections"] = "Alle meine Verbindungen"; -App::$strings["Only connections I specifically allow"] = "Nur Verbindungen, denen ich es explizit erlaube"; -App::$strings["Anybody authenticated (could include visitors from other networks)"] = "Jeder, der angemeldet ist (kann Besucher anderer Netzwerke beinhalten)"; -App::$strings["Any connections including those who haven't yet been approved"] = "Alle Verbindungen einschließlich der noch nicht bestätigten"; -App::$strings["This is your default setting for the audience of your normal stream, and posts."] = "Dies ist Deine Voreinstellung für die Sichtbarkeit Deiner normalen Beiträge (Stream)."; -App::$strings["This is your default setting for who can view your default channel profile"] = "Dies ist Deine Voreinstellung für die Sichtbarkeit Deines Standard-Kanalprofils."; -App::$strings["This is your default setting for who can view your connections"] = "Dies ist Deine Voreinstellung für die Sichtbarkeit Deiner Verbindungen."; -App::$strings["This is your default setting for who can view your file storage and photos"] = "Dies ist Deine Voreinstellung für die Sichtbarkeit Deiner Dateien und Fotos."; -App::$strings["This is your default setting for the audience of your webpages"] = "Dies ist Deine Voreinstellung für die Sichtbarkeit Deiner Webseiten."; -App::$strings["Not a valid email address"] = "Ungültige E-Mail-Adresse"; -App::$strings["Your email domain is not among those allowed on this site"] = "Deine E-Mail-Adresse ist auf dieser Seite nicht erlaubt"; -App::$strings["Your email address is already registered at this site."] = "Deine E-Mail-Adresse ist auf dieser Seite bereits registriert."; -App::$strings["An invitation is required."] = "Eine Einladung wird benötigt."; -App::$strings["Invitation could not be verified."] = "Die Einladung konnte nicht bestätigt werden."; -App::$strings["Please enter the required information."] = "Bitte gib die benötigten Informationen ein."; -App::$strings["Failed to store account information."] = "Speichern der Nutzerkontodaten fehlgeschlagen."; -App::$strings["Registration confirmation for %s"] = "Registrierungsbestätigung für %s"; -App::$strings["Registration request at %s"] = "Registrierungsanfrage auf %s"; -App::$strings["Administrator"] = "Administrator"; -App::$strings["your registration password"] = "Dein Registrierungspasswort"; -App::$strings["Registration details for %s"] = "Registrierungsdetails für %s"; -App::$strings["Account approved."] = "Nutzerkonto bestätigt."; -App::$strings["Registration revoked for %s"] = "Registrierung für %s wurde widerrufen"; -App::$strings["Account verified. Please login."] = "Nutzerkonto wurde bestätigt. Bitte melde Dich an!"; -App::$strings["Click here to upgrade."] = "Klicke hier, um das Upgrade durchzuführen."; -App::$strings["This action exceeds the limits set by your subscription plan."] = "Diese Aktion überschreitet die Grenzen Ihres Abonnements."; -App::$strings["This action is not available under your subscription plan."] = "Diese Aktion ist in Ihrem Abonnement nicht verfügbar."; -App::$strings["Item was not found."] = "Beitrag wurde nicht gefunden."; -App::$strings["No source file."] = "Keine Quelldatei."; -App::$strings["Cannot locate file to replace"] = "Kann Datei zum Ersetzen nicht finden"; -App::$strings["Cannot locate file to revise/update"] = "Kann Datei zum Prüfen/Aktualisieren nicht finden"; -App::$strings["File exceeds size limit of %d"] = "Datei überschreitet das Größen-Limit von %d"; -App::$strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Die Größe Deiner Datei-Anhänge hat das Maximum von %1$.0f MByte erreicht."; -App::$strings["File upload failed. Possible system limit or action terminated."] = "Datei-Upload fehlgeschlagen. Mögliche Systembegrenzung oder abgebrochener Prozess."; -App::$strings["Stored file could not be verified. Upload failed."] = "Gespeichert Datei konnte nicht verifiziert werden. Upload abgebrochen."; -App::$strings["Path not available."] = "Pfad nicht verfügbar."; -App::$strings["Empty pathname"] = "Leere Pfadangabe"; -App::$strings["duplicate filename or path"] = "doppelter Dateiname oder Pfad"; -App::$strings["Path not found."] = "Pfad nicht gefunden."; -App::$strings["mkdir failed."] = "mkdir fehlgeschlagen."; -App::$strings["database storage failed."] = "Speichern in der Datenbank fehlgeschlagen."; -App::$strings["Empty path"] = "Leere Pfadangabe"; -App::$strings["Unable to obtain identity information from database"] = "Kann keine Identitäts-Informationen aus Datenbank beziehen"; -App::$strings["Empty name"] = "Namensfeld leer"; -App::$strings["Name too long"] = "Name ist zu lang"; -App::$strings["No account identifier"] = "Keine Account-Kennung"; -App::$strings["Nickname is required."] = "Spitzname ist erforderlich."; -App::$strings["Reserved nickname. Please choose another."] = "Reservierter Kurzname. Bitte wähle einen anderen."; -App::$strings["Nickname has unsupported characters or is already being used on this site."] = "Der Spitzname enthält nicht-unterstütze Zeichen oder wird bereits auf dieser Seite genutzt."; -App::$strings["Unable to retrieve created identity"] = "Kann die erstellte Identität nicht empfangen"; -App::$strings["Default Profile"] = "Standard-Profil"; -App::$strings["Requested channel is not available."] = "Angeforderte Kanal nicht verfügbar."; -App::$strings["Create New Profile"] = "Neues Profil erstellen"; -App::$strings["Visible to everybody"] = "Für jeden sichtbar"; -App::$strings["Gender:"] = "Geschlecht:"; -App::$strings["Status:"] = "Status:"; -App::$strings["Homepage:"] = "Homepage:"; -App::$strings["Online Now"] = "gerade online"; -App::$strings["Like this channel"] = "Dieser Kanal gefällt mir"; -App::$strings["j F, Y"] = "j. F Y"; -App::$strings["j F"] = "j. F"; -App::$strings["Birthday:"] = "Geburtstag:"; -App::$strings["for %1\$d %2\$s"] = "seit %1\$d %2\$s"; -App::$strings["Sexual Preference:"] = "Sexuelle Orientierung:"; -App::$strings["Tags:"] = "Schlagworte:"; -App::$strings["Political Views:"] = "Politische Ansichten:"; -App::$strings["Religion:"] = "Religion:"; -App::$strings["Hobbies/Interests:"] = "Hobbys/Interessen:"; -App::$strings["Likes:"] = "Gefällt:"; -App::$strings["Dislikes:"] = "Gefällt nicht:"; -App::$strings["Contact information and Social Networks:"] = "Kontaktinformation und soziale Netzwerke:"; -App::$strings["My other channels:"] = "Meine anderen Kanäle:"; -App::$strings["Musical interests:"] = "Musikalische Interessen:"; -App::$strings["Books, literature:"] = "Bücher, Literatur:"; -App::$strings["Television:"] = "Fernsehen:"; -App::$strings["Film/dance/culture/entertainment:"] = "Film/Tanz/Kultur/Unterhaltung:"; -App::$strings["Love/Romance:"] = "Liebe/Romantik:"; -App::$strings["Work/employment:"] = "Arbeit/Anstellung:"; -App::$strings["School/education:"] = "Schule/Ausbildung:"; -App::$strings["Like this thing"] = "Gefällt mir"; +App::$strings["Logged out."] = "Ausgeloggt."; +App::$strings["Failed authentication"] = "Authentifizierung fehlgeschlagen"; +App::$strings["Can view my normal stream and posts"] = "Kann meine normalen Beiträge sehen"; +App::$strings["Can view my webpages"] = "Kann meine Webseiten sehen"; +App::$strings["Can post on my channel page (\"wall\")"] = "Kann auf meiner Kanal-Seite (\"wall\") Beiträge veröffentlichen"; +App::$strings["Can like/dislike stuff"] = "Kann andere Elemente mögen/nicht mögen"; +App::$strings["Profiles and things other than posts/comments"] = "Profile und alles außer Beiträge und Kommentare"; +App::$strings["Can forward to all my channel contacts via post @mentions"] = "Kann an alle meine Kontakte via @-Erwähnung Nachrichten weiterleiten"; +App::$strings["Advanced - useful for creating group forum channels"] = "Fortgeschritten - sinnvoll, um Gruppen-Kanäle/-Foren zu erstellen"; +App::$strings["Can chat with me (when available)"] = "Kann mit mir chatten (wenn verfügbar)"; +App::$strings["Can write to my file storage and photos"] = "Kann in meine Datei- und Bilderordner schreiben"; +App::$strings["Can edit my webpages"] = "Kann meine Webseiten bearbeiten"; +App::$strings["Somewhat advanced - very useful in open communities"] = "Etwas fortgeschritten – sehr nützlich in offenen Gemeinschaften"; +App::$strings["Can administer my channel resources"] = "Kann meine Kanäle administrieren"; +App::$strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "Sehr fortgeschritten. Bearbeite das nur, wenn Du genau weißt, was Du tust"; App::$strings["General Features"] = "Allgemeine Funktionen"; App::$strings["Content Expiration"] = "Verfall von Inhalten"; App::$strings["Remove posts/comments and/or private messages at a future time"] = "Ermöglicht das automatische Löschen von Beiträgen, Kommentaren und/oder privaten Nachrichten zu einem zukünftigen Datum."; @@ -2021,6 +1965,7 @@ App::$strings["Profile Import/Export"] = "Profil-Import/Export"; App::$strings["Save and load profile details across sites/channels"] = "Ermöglicht das Speichern von Profilen, um sie in einen anderen Kanal zu importieren"; App::$strings["Web Pages"] = "Webseiten"; App::$strings["Provide managed web pages on your channel"] = "Ermöglicht das Erstellen von Webseiten in Deinem Kanal"; +App::$strings["Provide a wiki for your channel"] = "Stelle ein Wiki in Deinem Kanal zur Verfügung"; App::$strings["Hide Rating"] = "Bewertung verbergen"; App::$strings["Hide the rating buttons on your channel and profile pages. Note: People can still rate you somewhere else."] = "Verberge die Buttons zur Bewertung auf deiner Profil-Seite und deinem Kanal. Hinweis: Leute können dich weiterhin andernorts bewerten."; App::$strings["Private Notes"] = "Private Notizen"; @@ -2054,6 +1999,7 @@ App::$strings["Search by Date"] = "Suche nach Datum"; App::$strings["Ability to select posts by date ranges"] = "Möglichkeit, Beiträge nach Zeiträumen auszuwählen"; App::$strings["Privacy Groups"] = "Gruppen"; App::$strings["Enable management and selection of privacy groups"] = "Auswahl und Verwaltung von Gruppen für Kanäle aktivieren"; +App::$strings["Saved Searches"] = "Gespeicherte Suchanfragen"; App::$strings["Save search terms for re-use"] = "Ermöglicht das Abspeichern von Suchbegriffen zur Wiederverwendung"; App::$strings["Network Personal Tab"] = "Persönlicher Netzwerkreiter"; App::$strings["Enable tab to display only Network posts that you've interacted on"] = "Aktiviert einen Reiter in der Grid-Ansicht, der nur Netzwerk-Beiträge anzeigt, mit denen Du interagiert hast"; @@ -2071,6 +2017,7 @@ App::$strings["Post Categories"] = "Beitrags-Kategorien"; App::$strings["Add categories to your posts"] = "Aktiviert Kategorien für Beiträge"; App::$strings["Emoji Reactions"] = "Emoji Reaktionen"; App::$strings["Add emoji reaction ability to posts"] = "Aktiviert Emoji-Reaktionen für Beiträge"; +App::$strings["Saved Folders"] = "Gespeicherte Ordner"; App::$strings["Ability to file posts under folders"] = "Möglichkeit, Beiträge in Verzeichnissen zu sammeln"; App::$strings["Dislike Posts"] = "Gefällt-mir-nicht-Beiträge"; App::$strings["Ability to dislike posts/comments"] = "Aktiviert die „Gefällt mir nicht“-Schaltfläche"; @@ -2078,63 +2025,149 @@ App::$strings["Star Posts"] = "Beiträge mit Sternchen versehen"; App::$strings["Ability to mark special posts with a star indicator"] = "Ermöglicht die lokale Markierung spezieller Beiträge mit einem Sternchen-Symbol"; App::$strings["Tag Cloud"] = "Schlagwort-Wolke"; App::$strings["Provide a personal tag cloud on your channel page"] = "Aktiviert die Anzeige einer Schlagwort-Wolke (Tag Cloud) auf Deiner Kanal-Seite"; -App::$strings["Embedded content"] = "Eingebetteter Inhalt"; -App::$strings["Embedding disabled"] = "Einbetten ausgeschaltet"; -App::$strings["Who can see this?"] = "Wer kann das sehen?"; -App::$strings["Custom selection"] = "Benutzerdefinierte Auswahl"; -App::$strings["Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit the scope of \"Show\"."] = "Wähle \"Anzeigen\", um Betrachtung zuzulassen. \"Nicht anzeigen\" überstimmt und limitiert den Aktionsradius von \"Anzeigen\" für Ausnahmen."; -App::$strings["Show"] = "Anzeigen"; -App::$strings["Don't show"] = "Nicht anzeigen"; -App::$strings["Other networks and post services"] = "Andere Netzwerke und Platformen"; -App::$strings["Post permissions %s cannot be changed %s after a post is shared.
These permissions set who is allowed to view the post."] = "Beitragsberechtigungen %s können nicht geändert werden %s, nachdem der Beitrag gesendet wurde.
Diese Berechtigungen bestimmen, wer den Beitrag sehen kann."; -App::$strings["Logged out."] = "Ausgeloggt."; -App::$strings["Failed authentication"] = "Authentifizierung fehlgeschlagen"; -App::$strings["Birthday"] = "Geburtstag"; -App::$strings["Age: "] = "Alter:"; -App::$strings["YYYY-MM-DD or MM-DD"] = "JJJJ-MM-TT oder MM-TT"; -App::$strings["never"] = "Nie"; -App::$strings["less than a second ago"] = "Vor weniger als einer Sekunde"; -App::$strings["__ctx:e.g. 22 hours ago, 1 minute ago__ %1\$d %2\$s ago"] = "vor %1\$d %2\$s"; -App::$strings["__ctx:relative_date__ year"] = array( - 0 => "Jahr", - 1 => "Jahre", -); -App::$strings["__ctx:relative_date__ month"] = array( - 0 => "Monat", - 1 => "Monate", -); -App::$strings["__ctx:relative_date__ week"] = array( - 0 => "Woche", - 1 => "Wochen", -); -App::$strings["__ctx:relative_date__ day"] = array( - 0 => "Tag", - 1 => "Tage", -); -App::$strings["__ctx:relative_date__ hour"] = array( - 0 => "Stunde", - 1 => "Stunden", -); -App::$strings["__ctx:relative_date__ minute"] = array( - 0 => "Minute", - 1 => "Minuten", -); -App::$strings["__ctx:relative_date__ second"] = array( - 0 => "Sekunde", - 1 => "Sekunden", -); -App::$strings["%1\$s's birthday"] = "%1\$ss Geburtstag"; -App::$strings["Happy Birthday %1\$s"] = "Alles Gute zum Geburtstag, %1\$s"; App::$strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Es hat früher schon einmal eine Gruppe mit diesem Namen existiert, die gelöscht wurde. Es könnten von damals noch Elemente (Beiträge, Dateien etc.) vorhanden sein, die allen jetzigen und zukünftigen Mitgliedern dieser Gruppe den Zugriff erlauben. Wenn das nicht Deine Absicht ist, erstelle bitte eine neue Gruppe mit einem anderen Namen."; App::$strings["Add new connections to this privacy group"] = "Neue Verbindung zu dieser Gruppe hinzufügen"; App::$strings["edit"] = "Bearbeiten"; App::$strings["Edit group"] = "Gruppe ändern"; App::$strings["Add privacy group"] = "Gruppe hinzufügen"; App::$strings["Channels not in any privacy group"] = "Kanäle, die in keiner Gruppe sind"; +App::$strings["add"] = "hinzufügen"; +App::$strings["l F d, Y \\@ g:i A"] = "l, d. F Y, H:i"; +App::$strings["Starts:"] = "Beginnt:"; +App::$strings["Finishes:"] = "Endet:"; +App::$strings["This event has been added to your calendar."] = "Dieser Termin wurde zu Deinem Kalender hinzugefügt"; +App::$strings["Not specified"] = "Keine Angabe"; +App::$strings["Needs Action"] = "Aktion erforderlich"; +App::$strings["Completed"] = "Abgeschlossen"; +App::$strings["In Process"] = "In Bearbeitung"; +App::$strings["Cancelled"] = "gestrichen"; +App::$strings["Not a valid email address"] = "Ungültige E-Mail-Adresse"; +App::$strings["Your email domain is not among those allowed on this site"] = "Deine E-Mail-Adresse ist auf dieser Seite nicht erlaubt"; +App::$strings["Your email address is already registered at this site."] = "Deine E-Mail-Adresse ist auf dieser Seite bereits registriert."; +App::$strings["An invitation is required."] = "Eine Einladung wird benötigt."; +App::$strings["Invitation could not be verified."] = "Die Einladung konnte nicht bestätigt werden."; +App::$strings["Please enter the required information."] = "Bitte gib die benötigten Informationen ein."; +App::$strings["Failed to store account information."] = "Speichern der Nutzerkontodaten fehlgeschlagen."; +App::$strings["Registration confirmation for %s"] = "Registrierungsbestätigung für %s"; +App::$strings["Registration request at %s"] = "Registrierungsanfrage auf %s"; +App::$strings["your registration password"] = "Dein Registrierungspasswort"; +App::$strings["Registration details for %s"] = "Registrierungsdetails für %s"; +App::$strings["Account approved."] = "Nutzerkonto bestätigt."; +App::$strings["Registration revoked for %s"] = "Registrierung für %s wurde widerrufen"; +App::$strings["Click here to upgrade."] = "Klicke hier, um das Upgrade durchzuführen."; +App::$strings["This action exceeds the limits set by your subscription plan."] = "Diese Aktion überschreitet die Grenzen Ihres Abonnements."; +App::$strings["This action is not available under your subscription plan."] = "Diese Aktion ist in Ihrem Abonnement nicht verfügbar."; +App::$strings["Channel is blocked on this site."] = "Der Kanal ist auf dieser Seite blockiert "; +App::$strings["Channel location missing."] = "Adresse des Kanals fehlt."; +App::$strings["Response from remote channel was incomplete."] = "Antwort des entfernten Kanals war unvollständig."; +App::$strings["Channel was deleted and no longer exists."] = "Kanal wurde gelöscht und existiert nicht mehr."; +App::$strings["Protocol disabled."] = "Protokoll deaktiviert."; +App::$strings["Channel discovery failed."] = "Kanalsuche fehlgeschlagen"; +App::$strings["Cannot connect to yourself."] = "Du kannst Dich nicht mit Dir selbst verbinden."; +App::$strings["Item was not found."] = "Beitrag wurde nicht gefunden."; +App::$strings["No source file."] = "Keine Quelldatei."; +App::$strings["Cannot locate file to replace"] = "Kann Datei zum Ersetzen nicht finden"; +App::$strings["Cannot locate file to revise/update"] = "Kann Datei zum Prüfen/Aktualisieren nicht finden"; +App::$strings["File exceeds size limit of %d"] = "Datei überschreitet das Größen-Limit von %d"; +App::$strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Die Größe Deiner Datei-Anhänge hat das Maximum von %1$.0f MByte erreicht."; +App::$strings["File upload failed. Possible system limit or action terminated."] = "Datei-Upload fehlgeschlagen. Mögliche Systembegrenzung oder abgebrochener Prozess."; +App::$strings["Stored file could not be verified. Upload failed."] = "Gespeichert Datei konnte nicht verifiziert werden. Upload abgebrochen."; +App::$strings["Path not available."] = "Pfad nicht verfügbar."; +App::$strings["Empty pathname"] = "Leere Pfadangabe"; +App::$strings["duplicate filename or path"] = "doppelter Dateiname oder Pfad"; +App::$strings["Path not found."] = "Pfad nicht gefunden."; +App::$strings["mkdir failed."] = "mkdir fehlgeschlagen."; +App::$strings["database storage failed."] = "Speichern in der Datenbank fehlgeschlagen."; +App::$strings["Empty path"] = "Leere Pfadangabe"; +App::$strings["Image/photo"] = "Bild/Foto"; +App::$strings["Encrypted content"] = "Verschlüsselter Inhalt"; +App::$strings["Install %s element: "] = "Element %s installieren: "; +App::$strings["This post contains an installable %s element, however you lack permissions to install it on this site."] = "Dieser Beitrag beinhaltet ein installierbares %s Element, aber Du hast nicht die nötigen Rechte, um es auf diesem Hub zu installieren."; +App::$strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s schrieb den folgenden %2\$s %3\$s"; +App::$strings["Click to open/close"] = "Klicke zum Öffnen/Schließen"; +App::$strings["spoiler"] = "Spoiler"; +App::$strings["Different viewers will see this text differently"] = "Verschiedene Betrachter werden diesen Text unterschiedlich sehen"; +App::$strings["$1 wrote:"] = "$1 schrieb:"; +App::$strings["(Unknown)"] = "(Unbekannt)"; +App::$strings["Visible to anybody on the internet."] = "Für jeden im Internet sichtbar."; +App::$strings["Visible to you only."] = "Nur für Dich sichtbar."; +App::$strings["Visible to anybody in this network."] = "Für jedes \$Projectname-Mitglied sichtbar."; +App::$strings["Visible to anybody authenticated."] = "Für jeden sichtbar, der angemeldet ist."; +App::$strings["Visible to anybody on %s."] = "Für jeden auf %s sichtbar."; +App::$strings["Visible to all connections."] = "Für alle Verbindungen sichtbar."; +App::$strings["Visible to approved connections."] = "Nur für akzeptierte Verbindungen sichtbar."; +App::$strings["Visible to specific connections."] = "Sichtbar für bestimmte Verbindungen."; +App::$strings["Privacy group is empty."] = "Gruppe ist leer."; +App::$strings["Privacy group: %s"] = "Gruppe: %s"; +App::$strings["Connection not found."] = "Die Verbindung wurde nicht gefunden."; +App::$strings["profile photo"] = "Profilfoto"; +App::$strings["Embedded content"] = "Eingebetteter Inhalt"; +App::$strings["Embedding disabled"] = "Einbetten ausgeschaltet"; +App::$strings["System"] = "System"; +App::$strings["New App"] = "Neue App"; +App::$strings["Suggestions"] = "Vorschläge"; +App::$strings["See more..."] = "Mehr anzeigen …"; +App::$strings["You have %1$.0f of %2$.0f allowed connections."] = "Du bist %1$.0f von maximal %2$.0f erlaubten Verbindungen eingegangen."; +App::$strings["Add New Connection"] = "Neue Verbindung hinzufügen"; +App::$strings["Enter channel address"] = "Adresse des Kanals eingeben"; +App::$strings["Examples: bob@example.com, https://example.com/barbara"] = "Beispiele: bob@beispiel.com, http://beispiel.com/barbara"; +App::$strings["Notes"] = "Notizen"; +App::$strings["Remove term"] = "Eintrag löschen"; +App::$strings["Everything"] = "Alles"; +App::$strings["Archives"] = "Archive"; +App::$strings["Refresh"] = "Aktualisieren"; +App::$strings["Account settings"] = "Konto-Einstellungen"; +App::$strings["Channel settings"] = "Kanal-Einstellungen"; +App::$strings["Additional features"] = "Zusätzliche Funktionen"; +App::$strings["Feature/Addon settings"] = "Plugin-Einstellungen"; +App::$strings["Display settings"] = "Anzeige-Einstellungen"; +App::$strings["Manage locations"] = "Klon-Adressen verwalten"; +App::$strings["Export channel"] = "Kanal exportieren"; +App::$strings["Connected apps"] = "Verbundene Apps"; +App::$strings["Premium Channel Settings"] = "Premium-Kanal-Einstellungen"; +App::$strings["Private Mail Menu"] = "Private Nachrichten"; +App::$strings["Combined View"] = "Kombinierte Anzeige"; +App::$strings["Conversations"] = "Konversationen"; +App::$strings["Received Messages"] = "Erhaltene Nachrichten"; +App::$strings["Sent Messages"] = "Gesendete Nachrichten"; +App::$strings["No messages."] = "Keine Nachrichten."; +App::$strings["Delete conversation"] = "Unterhaltung löschen"; +App::$strings["Events Tools"] = "Kalenderwerkzeuge"; +App::$strings["Export Calendar"] = "Kalender exportieren"; +App::$strings["Import Calendar"] = "Kalender importieren"; +App::$strings["Overview"] = "Übersicht"; +App::$strings["Chat Members"] = "Chatmitglieder"; +App::$strings["Wiki List"] = "Wikiliste"; +App::$strings["Wiki Pages"] = "Wikiseiten"; +App::$strings["Bookmarked Chatrooms"] = "Gespeicherte Chatrooms"; +App::$strings["Suggested Chatrooms"] = "Chatraum-Vorschläge"; +App::$strings["photo/image"] = "Foto/Bild"; +App::$strings["Click to show more"] = "Klick, um mehr anzuzeigen"; +App::$strings["Rating Tools"] = "Bewertungswerkzeuge"; +App::$strings["Rate Me"] = "Bewerte mich"; +App::$strings["View Ratings"] = "Bewertungen ansehen"; +App::$strings["Forums"] = "Foren"; +App::$strings["Tasks"] = "Aufgaben"; +App::$strings["Documentation"] = "Dokumentation"; +App::$strings["Project/Site Information"] = "Informationen über das Projekt und diesen Hub"; +App::$strings["For Members"] = "Für Mitglieder"; +App::$strings["For Administrators"] = "Für Administratoren"; +App::$strings["For Developers"] = "Für Entwickler"; +App::$strings["Member registrations waiting for confirmation"] = "Nutzer-Anmeldungen, die auf Bestätigung warten"; +App::$strings["Inspect queue"] = "Warteschlange kontrollieren"; +App::$strings["DB updates"] = "DB-Aktualisierungen"; +App::$strings["Plugin Features"] = "Plug-In Funktionen"; +App::$strings[" and "] = "und"; +App::$strings["public profile"] = "öffentliches Profil"; +App::$strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s hat %2\$s auf “%3\$s” geändert"; +App::$strings["Visit %1\$s's %2\$s"] = "Besuche %1\$s's %2\$s"; +App::$strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s hat ein aktualisiertes %2\$s, %3\$s wurde verändert."; +App::$strings["Attachments:"] = "Anhänge:"; +App::$strings["\$Projectname event notification:"] = "\$Projectname-Terminbenachrichtigung:"; App::$strings["Delete this item?"] = "Dieses Element löschen?"; -App::$strings["[-] show less"] = "[-] Weniger anzeigen"; -App::$strings["[+] expand"] = "[+] aufklappen"; -App::$strings["[-] collapse"] = "[-] einklappen"; +App::$strings["%s show less"] = "%s weniger anzeigen"; +App::$strings["%s expand"] = "%s aufklappen"; +App::$strings["%s collapse"] = "%s einklappen"; App::$strings["Password too short"] = "Kennwort zu kurz"; App::$strings["Passwords do not match"] = "Kennwörter stimmen nicht überein"; App::$strings["everybody"] = "alle"; @@ -2189,72 +2222,78 @@ App::$strings["__ctx:calendar__ month"] = "Monat"; App::$strings["__ctx:calendar__ week"] = "Woche"; App::$strings["__ctx:calendar__ day"] = "Tag"; App::$strings["__ctx:calendar__ All day"] = "Ganztägig"; -App::$strings["view full size"] = "In Vollbildansicht anschauen"; -App::$strings["No Subject"] = "Kein Betreff"; -App::$strings["Friendica"] = "Friendica"; -App::$strings["OStatus"] = "OStatus"; -App::$strings["GNU-Social"] = "GNU-Social"; -App::$strings["RSS/Atom"] = "RSS/Atom"; -App::$strings["Diaspora"] = "Diaspora"; -App::$strings["Facebook"] = "Facebook"; -App::$strings["Zot"] = "Zot!"; -App::$strings["LinkedIn"] = "LinkedIn"; -App::$strings["XMPP/IM"] = "XMPP/IM"; -App::$strings["MySpace"] = "MySpace"; -App::$strings["Image exceeds website size limit of %lu bytes"] = "Bild überschreitet das Webseitenlimit von %lu Bytes"; -App::$strings["Image file is empty."] = "Bilddatei ist leer."; -App::$strings["Photo storage failed."] = "Fotospeicherung fehlgeschlagen."; -App::$strings["a new photo"] = "ein neues Foto"; -App::$strings["__ctx:photo_upload__ %1\$s posted %2\$s to %3\$s"] = "%1\$s hat %2\$s auf %3\$s veröffentlicht"; -App::$strings["Upload New Photos"] = "Neue Fotos hochladen"; +App::$strings["%d invitation available"] = array( + 0 => "%d Einladung verfügbar", + 1 => "%d Einladungen verfügbar", +); +App::$strings["Find Channels"] = "Finde Kanäle"; +App::$strings["Enter name or interest"] = "Name oder Interessen eingeben"; +App::$strings["Connect/Follow"] = "Verbinden/Folgen"; +App::$strings["Examples: Robert Morgenstein, Fishing"] = "Beispiele: Robert Morgenstein, Angeln"; +App::$strings["Random Profile"] = "Zufallsprofil"; +App::$strings["Invite Friends"] = "Lade Freunde ein"; +App::$strings["Advanced example: name=fred and country=iceland"] = "Fortgeschrittenes Beispiel: name=fred and country=iceland"; +App::$strings["%d connection in common"] = array( + 0 => "%d gemeinsame Verbindung", + 1 => "%d gemeinsame Verbindungen", +); +App::$strings["show more"] = "mehr zeigen"; +App::$strings["Directory Options"] = "Verzeichnisoptionen"; +App::$strings["Safe Mode"] = "Sicherer Modus"; +App::$strings["Public Forums Only"] = "Nur öffentliche Foren"; +App::$strings["This Website Only"] = "Nur dieser Hub"; +App::$strings["No recipient provided."] = "Kein Empfänger angegeben"; +App::$strings["[no subject]"] = "[no subject]"; +App::$strings["Unable to determine sender."] = "Kann Absender nicht bestimmen."; +App::$strings["Stored post could not be verified."] = "Gespeicherter Beitrag konnten nicht überprüft werden."; +App::$strings["Who can see this?"] = "Wer kann das sehen?"; +App::$strings["Custom selection"] = "Benutzerdefinierte Auswahl"; +App::$strings["Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit the scope of \"Show\"."] = "Wähle \"Anzeigen\", um Betrachtung zuzulassen. \"Nicht anzeigen\" überstimmt und limitiert den Aktionsradius von \"Anzeigen\" für Ausnahmen."; +App::$strings["Show"] = "Anzeigen"; +App::$strings["Don't show"] = "Nicht anzeigen"; +App::$strings["Other networks and post services"] = "Andere Netzwerke und Platformen"; +App::$strings["Post permissions %s cannot be changed %s after a post is shared.
These permissions set who is allowed to view the post."] = "Beitragsberechtigungen %s können nicht geändert werden %s, nachdem der Beitrag gesendet wurde.
Diese Berechtigungen bestimmen, wer den Beitrag sehen kann."; +App::$strings["Birthday"] = "Geburtstag"; +App::$strings["Age: "] = "Alter:"; +App::$strings["YYYY-MM-DD or MM-DD"] = "JJJJ-MM-TT oder MM-TT"; +App::$strings["never"] = "Nie"; +App::$strings["less than a second ago"] = "Vor weniger als einer Sekunde"; +App::$strings["__ctx:e.g. 22 hours ago, 1 minute ago__ %1\$d %2\$s ago"] = "vor %1\$d %2\$s"; +App::$strings["__ctx:relative_date__ year"] = array( + 0 => "Jahr", + 1 => "Jahre", +); +App::$strings["__ctx:relative_date__ month"] = array( + 0 => "Monat", + 1 => "Monate", +); +App::$strings["__ctx:relative_date__ week"] = array( + 0 => "Woche", + 1 => "Wochen", +); +App::$strings["__ctx:relative_date__ day"] = array( + 0 => "Tag", + 1 => "Tage", +); +App::$strings["__ctx:relative_date__ hour"] = array( + 0 => "Stunde", + 1 => "Stunden", +); +App::$strings["__ctx:relative_date__ minute"] = array( + 0 => "Minute", + 1 => "Minuten", +); +App::$strings["__ctx:relative_date__ second"] = array( + 0 => "Sekunde", + 1 => "Sekunden", +); +App::$strings["%1\$s's birthday"] = "%1\$ss Geburtstag"; +App::$strings["Happy Birthday %1\$s"] = "Alles Gute zum Geburtstag, %1\$s"; +App::$strings["Public Timeline"] = "Öffentliche Zeitleiste"; App::$strings["Invalid data packet"] = "Ungültiges Datenpaket"; App::$strings["Unable to verify channel signature"] = "Konnte die Signatur des Kanals nicht verifizieren"; App::$strings["Unable to verify site signature for %s"] = "Kann die Signatur der Seite von %s nicht verifizieren"; App::$strings["invalid target signature"] = "Ungültige Signatur des Ziels"; -App::$strings["New Page"] = "Neue Seite"; -App::$strings["Title"] = "Titel"; -App::$strings["Can view my normal stream and posts"] = "Kann meine normalen Beiträge sehen"; -App::$strings["Can view my default channel profile"] = "Kann mein Standardprofil sehen"; -App::$strings["Can view my connections"] = "Kann meine Verbindungen sehen"; -App::$strings["Can view my file storage and photos"] = "Kann meine Datei- und Bilderordner sehen"; -App::$strings["Can view my webpages"] = "Kann meine Webseiten sehen"; -App::$strings["Can send me their channel stream and posts"] = "Kann mir die Beiträge aus seinem/ihrem Kanal schicken"; -App::$strings["Can post on my channel page (\"wall\")"] = "Kann auf meiner Kanal-Seite (\"wall\") Beiträge veröffentlichen"; -App::$strings["Can comment on or like my posts"] = "Darf meine Beiträge kommentieren und mögen/nicht mögen"; -App::$strings["Can send me private mail messages"] = "Kann mir private Nachrichten schicken"; -App::$strings["Can like/dislike stuff"] = "Kann andere Elemente mögen/nicht mögen"; -App::$strings["Profiles and things other than posts/comments"] = "Profile und alles außer Beiträge und Kommentare"; -App::$strings["Can forward to all my channel contacts via post @mentions"] = "Kann an alle meine Kontakte via @-Erwähnung Nachrichten weiterleiten"; -App::$strings["Advanced - useful for creating group forum channels"] = "Fortgeschritten - sinnvoll, um Gruppen-Kanäle/-Foren zu erstellen"; -App::$strings["Can chat with me (when available)"] = "Kann mit mir chatten (wenn verfügbar)"; -App::$strings["Can write to my file storage and photos"] = "Kann in meine Datei- und Bilderordner schreiben"; -App::$strings["Can edit my webpages"] = "Kann meine Webseiten bearbeiten"; -App::$strings["Can source my public posts in derived channels"] = "Kann meine öffentlichen Beiträge als Quellen für Kanäle verwenden"; -App::$strings["Somewhat advanced - very useful in open communities"] = "Etwas fortgeschritten – sehr nützlich in offenen Gemeinschaften"; -App::$strings["Can administer my channel resources"] = "Kann meine Kanäle administrieren"; -App::$strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "Sehr fortgeschritten. Bearbeite das nur, wenn Du genau weißt, was Du tust"; -App::$strings["Social Networking"] = "Soziales Netzwerk"; -App::$strings["Social - Mostly Public"] = "Soziales Netzwerk - Weitgehend öffentlich"; -App::$strings["Social - Restricted"] = "Soziales Netzwerk - Beschränkt"; -App::$strings["Social - Private"] = "Soziales Netzwerk - Privat"; -App::$strings["Community Forum"] = "Forum"; -App::$strings["Forum - Mostly Public"] = "Forum - Weitgehend öffentlich"; -App::$strings["Forum - Restricted"] = "Forum - Beschränkt"; -App::$strings["Forum - Private"] = "Forum - Privat"; -App::$strings["Feed Republish"] = "Teilen von Feeds"; -App::$strings["Feed - Mostly Public"] = "Feeds - Weitgehend öffentlich"; -App::$strings["Feed - Restricted"] = "Feeds - Beschränkt"; -App::$strings["Special Purpose"] = "Für besondere Zwecke"; -App::$strings["Special - Celebrity/Soapbox"] = "Speziell - Mitteilungs-Kanal (keine Kommentare)"; -App::$strings["Special - Group Repository"] = "Speziell - Gruppenarchiv"; -App::$strings["Custom/Expert Mode"] = "Benutzerdefiniert/Expertenmodus"; -App::$strings[" and "] = "und"; -App::$strings["public profile"] = "öffentliches Profil"; -App::$strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s hat %2\$s auf “%3\$s” geändert"; -App::$strings["Visit %1\$s's %2\$s"] = "Besuche %1\$s's %2\$s"; -App::$strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s hat ein aktualisiertes %2\$s, %3\$s wurde verändert."; -App::$strings["Attachments:"] = "Anhänge:"; -App::$strings["\$Projectname event notification:"] = "\$Projectname-Terminbenachrichtigung:"; App::$strings["Focus (Hubzilla default)"] = "Focus (Voreinstellung für Hubzilla)"; App::$strings["Theme settings"] = "Theme-Einstellungen"; App::$strings["Select scheme"] = "Schema wählen"; @@ -2294,6 +2333,7 @@ App::$strings["__ctx:opensearch__ \$Projectname"] = "\$Projectname"; App::$strings["Update %s failed. See error logs."] = "Aktualisierung %s fehlgeschlagen. Details in den Fehlerprotokollen."; App::$strings["Update Error at %s"] = "Aktualisierungsfehler auf %s"; App::$strings["Create an account to access services and applications within the Hubzilla"] = "Erstelle ein Konto, um Anwendungen und Dienste innerhalb von Hubzilla nutzen zu können."; +App::$strings["Login/Email"] = "Anmelden/E-Mail"; App::$strings["Password"] = "Kennwort"; App::$strings["Remember me"] = "Angaben speichern"; App::$strings["Forgot your password?"] = "Passwort vergessen?"; From 47e1c4e059303167b173a10b986086d3c00c8384 Mon Sep 17 00:00:00 2001 From: jeroenpraat Date: Thu, 28 Jul 2016 21:33:02 +0200 Subject: [PATCH 016/819] Updated language files for release --- view/ca/hmessages.po | 9714 ++++++++++++++++++++------------------- view/ca/hstrings.php | 2202 ++++----- view/de/hmessages.po | 9670 +++++++++++++++++++------------------- view/de/hstrings.php | 2160 ++++----- view/es-es/hmessages.po | 9670 +++++++++++++++++++------------------- view/es-es/hstrings.php | 2158 ++++----- view/fr/hmessages.po | 9644 +++++++++++++++++++------------------- view/fr/hstrings.php | 2158 ++++----- view/it/hstrings.php | 1 - view/nb-no/hmessages.po | 9470 +++++++++++++++++++------------------- view/nb-no/hstrings.php | 2144 ++++----- view/nl/hmessages.po | 9668 +++++++++++++++++++------------------- view/nl/hstrings.php | 2158 ++++----- 13 files changed, 36128 insertions(+), 34689 deletions(-) diff --git a/view/ca/hmessages.po b/view/ca/hmessages.po index ecb96b8f8..2eda76a7a 100644 --- a/view/ca/hmessages.po +++ b/view/ca/hmessages.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: Redmatrix\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-06-10 00:02-0700\n" -"PO-Revision-Date: 2016-06-10 09:14+0000\n" +"POT-Creation-Date: 2016-07-22 00:02-0700\n" +"PO-Revision-Date: 2016-07-25 08:54+0000\n" "Last-Translator: fabrixxm \n" "Language-Team: Catalan (Spain) (http://www.transifex.com/Friendica/red-matrix/language/ca_ES/)\n" "MIME-Version: 1.0\n" @@ -21,11 +21,156 @@ msgstr "" "Language: ca_ES\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ../../Zotlabs/Access/PermissionRoles.php:182 +#: ../../include/permissions.php:904 +msgid "Social Networking" +msgstr "Xarxes Socials" + +#: ../../Zotlabs/Access/PermissionRoles.php:183 +#: ../../include/permissions.php:904 +msgid "Social - Mostly Public" +msgstr "Social - Principalment Públic" + +#: ../../Zotlabs/Access/PermissionRoles.php:184 +#: ../../include/permissions.php:904 +msgid "Social - Restricted" +msgstr "Social - Restingit" + +#: ../../Zotlabs/Access/PermissionRoles.php:185 +#: ../../include/permissions.php:904 +msgid "Social - Private" +msgstr "Social - Privat" + +#: ../../Zotlabs/Access/PermissionRoles.php:188 +#: ../../include/permissions.php:905 +msgid "Community Forum" +msgstr "Foro de Comunitat" + +#: ../../Zotlabs/Access/PermissionRoles.php:189 +#: ../../include/permissions.php:905 +msgid "Forum - Mostly Public" +msgstr "Fòrum - Principalment Públic" + +#: ../../Zotlabs/Access/PermissionRoles.php:190 +#: ../../include/permissions.php:905 +msgid "Forum - Restricted" +msgstr "Fòrum - Restringit" + +#: ../../Zotlabs/Access/PermissionRoles.php:191 +#: ../../include/permissions.php:905 +msgid "Forum - Private" +msgstr "Fòrum - Privat" + +#: ../../Zotlabs/Access/PermissionRoles.php:194 +#: ../../include/permissions.php:906 +msgid "Feed Republish" +msgstr "Republicador" + +#: ../../Zotlabs/Access/PermissionRoles.php:195 +#: ../../include/permissions.php:906 +msgid "Feed - Mostly Public" +msgstr "Realimentador - Públic Principalment" + +#: ../../Zotlabs/Access/PermissionRoles.php:196 +#: ../../include/permissions.php:906 +msgid "Feed - Restricted" +msgstr "Retroalimentador - Restringit" + +#: ../../Zotlabs/Access/PermissionRoles.php:199 +#: ../../include/permissions.php:907 +msgid "Special Purpose" +msgstr "Objectiu Especial" + +#: ../../Zotlabs/Access/PermissionRoles.php:200 +#: ../../include/permissions.php:907 +msgid "Special - Celebrity/Soapbox" +msgstr "Espacial - Celebritat/Plataforma" + +#: ../../Zotlabs/Access/PermissionRoles.php:201 +#: ../../include/permissions.php:907 +msgid "Special - Group Repository" +msgstr "Especial - Repositori d'un Grup" + +#: ../../Zotlabs/Access/PermissionRoles.php:204 ../../include/selectors.php:49 +#: ../../include/selectors.php:66 ../../include/selectors.php:104 +#: ../../include/selectors.php:140 ../../include/permissions.php:908 +msgid "Other" +msgstr "Altres" + +#: ../../Zotlabs/Access/PermissionRoles.php:205 +#: ../../include/permissions.php:908 +msgid "Custom/Expert Mode" +msgstr "Personalitzat/Manera Experta" + +#: ../../Zotlabs/Access/Permissions.php:30 +msgid "Can view my channel stream and posts" +msgstr "" + +#: ../../Zotlabs/Access/Permissions.php:31 ../../include/permissions.php:33 +msgid "Can send me their channel stream and posts" +msgstr "Pot enviar-me el flux i entrades del seu canal" + +#: ../../Zotlabs/Access/Permissions.php:32 ../../include/permissions.php:27 +msgid "Can view my default channel profile" +msgstr "Pot veure el meu perfil del canal per defecte" + +#: ../../Zotlabs/Access/Permissions.php:33 ../../include/permissions.php:28 +msgid "Can view my connections" +msgstr "Pot veure les meves connexions" + +#: ../../Zotlabs/Access/Permissions.php:34 ../../include/permissions.php:29 +msgid "Can view my file storage and photos" +msgstr "Pot veure al meu magatzem d'arxius i fotos" + +#: ../../Zotlabs/Access/Permissions.php:35 +msgid "Can upload/modify my file storage and photos" +msgstr "" + +#: ../../Zotlabs/Access/Permissions.php:36 +msgid "Can view my channel webpages" +msgstr "" + +#: ../../Zotlabs/Access/Permissions.php:37 +msgid "Can create/edit my channel webpages" +msgstr "" + +#: ../../Zotlabs/Access/Permissions.php:38 +msgid "Can post on my channel (wall) page" +msgstr "" + +#: ../../Zotlabs/Access/Permissions.php:39 ../../include/permissions.php:35 +msgid "Can comment on or like my posts" +msgstr "Pot fer comentaris o dir si agrada en les meves entrades" + +#: ../../Zotlabs/Access/Permissions.php:40 ../../include/permissions.php:36 +msgid "Can send me private mail messages" +msgstr "Pot enviar-me un missatge de correu privat" + +#: ../../Zotlabs/Access/Permissions.php:41 +msgid "Can like/dislike profiles and profile things" +msgstr "" + +#: ../../Zotlabs/Access/Permissions.php:42 +msgid "Can forward to all my channel connections via @+ mentions in posts" +msgstr "" + +#: ../../Zotlabs/Access/Permissions.php:43 +msgid "Can chat with me" +msgstr "" + +#: ../../Zotlabs/Access/Permissions.php:44 ../../include/permissions.php:44 +msgid "Can source my public posts in derived channels" +msgstr "Pot mostrar l'origen de les meves entrades públiques en altres canals" + +#: ../../Zotlabs/Access/Permissions.php:45 +msgid "Can administer my channel" +msgstr "" + #: ../../Zotlabs/Storage/Browser.php:107 ../../Zotlabs/Storage/Browser.php:239 msgid "parent" -msgstr "pare" +msgstr "amunt" -#: ../../Zotlabs/Storage/Browser.php:131 ../../include/text.php:2620 +#: ../../Zotlabs/Storage/Browser.php:131 ../../include/text.php:2605 msgid "Collection" msgstr "Col·lecció" @@ -49,16 +194,17 @@ msgstr "Programació de la bústia d'entrada" msgid "Schedule Outbox" msgstr "Programació de la bústia de sortida" -#: ../../Zotlabs/Storage/Browser.php:164 ../../Zotlabs/Module/Photos.php:798 -#: ../../Zotlabs/Module/Photos.php:1243 ../../Zotlabs/Lib/Apps.php:486 -#: ../../Zotlabs/Lib/Apps.php:561 ../../include/widgets.php:1505 -#: ../../include/conversation.php:1032 +#: ../../Zotlabs/Storage/Browser.php:164 ../../Zotlabs/Module/Photos.php:796 +#: ../../Zotlabs/Module/Photos.php:1241 +#: ../../Zotlabs/Module/Embedphotos.php:147 ../../Zotlabs/Lib/Apps.php:490 +#: ../../Zotlabs/Lib/Apps.php:565 ../../include/conversation.php:1035 +#: ../../include/widgets.php:1599 msgid "Unknown" msgstr "Desconegut" #: ../../Zotlabs/Storage/Browser.php:226 ../../Zotlabs/Module/Fbrowser.php:85 -#: ../../Zotlabs/Lib/Apps.php:216 ../../include/nav.php:93 -#: ../../include/conversation.php:1639 +#: ../../Zotlabs/Lib/Apps.php:217 ../../include/nav.php:93 +#: ../../include/conversation.php:1654 msgid "Files" msgstr "Arxius" @@ -71,22 +217,23 @@ msgid "Shared" msgstr "Compartit" #: ../../Zotlabs/Storage/Browser.php:230 ../../Zotlabs/Storage/Browser.php:306 -#: ../../Zotlabs/Module/Blocks.php:156 ../../Zotlabs/Module/Layouts.php:182 -#: ../../Zotlabs/Module/Menu.php:118 ../../Zotlabs/Module/New_channel.php:142 -#: ../../Zotlabs/Module/Webpages.php:186 +#: ../../Zotlabs/Module/Layouts.php:184 ../../Zotlabs/Module/Menu.php:118 +#: ../../Zotlabs/Module/New_channel.php:142 +#: ../../Zotlabs/Module/Blocks.php:159 ../../Zotlabs/Module/Webpages.php:193 msgid "Create" msgstr "Crear" #: ../../Zotlabs/Storage/Browser.php:231 ../../Zotlabs/Storage/Browser.php:308 #: ../../Zotlabs/Module/Cover_photo.php:357 -#: ../../Zotlabs/Module/Photos.php:825 ../../Zotlabs/Module/Photos.php:1364 -#: ../../Zotlabs/Module/Profile_photo.php:368 ../../include/widgets.php:1518 +#: ../../Zotlabs/Module/Photos.php:823 ../../Zotlabs/Module/Photos.php:1362 +#: ../../Zotlabs/Module/Profile_photo.php:390 +#: ../../Zotlabs/Module/Embedphotos.php:159 ../../include/widgets.php:1612 msgid "Upload" msgstr "Pujar" #: ../../Zotlabs/Storage/Browser.php:235 ../../Zotlabs/Module/Chat.php:247 -#: ../../Zotlabs/Module/Admin.php:1223 ../../Zotlabs/Module/Settings.php:592 -#: ../../Zotlabs/Module/Settings.php:618 +#: ../../Zotlabs/Module/Admin.php:1223 ../../Zotlabs/Module/Settings.php:646 +#: ../../Zotlabs/Module/Settings.php:672 #: ../../Zotlabs/Module/Sharedwithme.php:99 msgid "Name" msgstr "Nom" @@ -96,7 +243,7 @@ msgid "Type" msgstr "Tipus" #: ../../Zotlabs/Storage/Browser.php:237 -#: ../../Zotlabs/Module/Sharedwithme.php:101 ../../include/text.php:1344 +#: ../../Zotlabs/Module/Sharedwithme.php:101 ../../include/text.php:1324 msgid "Size" msgstr "Mida" @@ -105,34 +252,32 @@ msgstr "Mida" msgid "Last Modified" msgstr "Últim Modificat" -#: ../../Zotlabs/Storage/Browser.php:240 ../../Zotlabs/Module/Blocks.php:157 -#: ../../Zotlabs/Module/Editblock.php:109 +#: ../../Zotlabs/Storage/Browser.php:240 ../../Zotlabs/Module/Editpost.php:84 #: ../../Zotlabs/Module/Connections.php:290 #: ../../Zotlabs/Module/Connections.php:310 -#: ../../Zotlabs/Module/Editpost.php:84 -#: ../../Zotlabs/Module/Editlayout.php:113 -#: ../../Zotlabs/Module/Editwebpage.php:146 -#: ../../Zotlabs/Module/Layouts.php:190 ../../Zotlabs/Module/Menu.php:112 -#: ../../Zotlabs/Module/Admin.php:2113 ../../Zotlabs/Module/Settings.php:652 -#: ../../Zotlabs/Module/Thing.php:260 ../../Zotlabs/Module/Webpages.php:187 -#: ../../Zotlabs/Lib/Apps.php:337 ../../Zotlabs/Lib/ThreadItem.php:106 -#: ../../include/channel.php:937 ../../include/channel.php:941 -#: ../../include/menu.php:108 ../../include/page_widgets.php:8 -#: ../../include/page_widgets.php:36 +#: ../../Zotlabs/Module/Editlayout.php:114 +#: ../../Zotlabs/Module/Editwebpage.php:145 +#: ../../Zotlabs/Module/Layouts.php:192 ../../Zotlabs/Module/Menu.php:112 +#: ../../Zotlabs/Module/Admin.php:2113 ../../Zotlabs/Module/Blocks.php:160 +#: ../../Zotlabs/Module/Editblock.php:109 +#: ../../Zotlabs/Module/Settings.php:706 ../../Zotlabs/Module/Thing.php:260 +#: ../../Zotlabs/Module/Webpages.php:194 ../../Zotlabs/Lib/Apps.php:341 +#: ../../Zotlabs/Lib/ThreadItem.php:106 ../../include/page_widgets.php:9 +#: ../../include/page_widgets.php:39 ../../include/channel.php:976 +#: ../../include/channel.php:980 ../../include/menu.php:108 msgid "Edit" msgstr "Edita" -#: ../../Zotlabs/Storage/Browser.php:241 ../../Zotlabs/Module/Blocks.php:159 -#: ../../Zotlabs/Module/Connedit.php:572 -#: ../../Zotlabs/Module/Editblock.php:134 +#: ../../Zotlabs/Storage/Browser.php:241 ../../Zotlabs/Module/Connedit.php:602 #: ../../Zotlabs/Module/Connections.php:263 -#: ../../Zotlabs/Module/Editlayout.php:136 -#: ../../Zotlabs/Module/Editwebpage.php:170 ../../Zotlabs/Module/Group.php:177 -#: ../../Zotlabs/Module/Photos.php:1173 ../../Zotlabs/Module/Admin.php:1039 +#: ../../Zotlabs/Module/Editlayout.php:137 +#: ../../Zotlabs/Module/Editwebpage.php:169 ../../Zotlabs/Module/Group.php:177 +#: ../../Zotlabs/Module/Photos.php:1171 ../../Zotlabs/Module/Admin.php:1039 #: ../../Zotlabs/Module/Admin.php:1213 ../../Zotlabs/Module/Admin.php:2114 -#: ../../Zotlabs/Module/Settings.php:653 ../../Zotlabs/Module/Thing.php:261 -#: ../../Zotlabs/Module/Webpages.php:189 ../../Zotlabs/Lib/Apps.php:338 -#: ../../Zotlabs/Lib/ThreadItem.php:126 ../../include/conversation.php:657 +#: ../../Zotlabs/Module/Blocks.php:162 ../../Zotlabs/Module/Editblock.php:134 +#: ../../Zotlabs/Module/Settings.php:707 ../../Zotlabs/Module/Thing.php:261 +#: ../../Zotlabs/Module/Webpages.php:196 ../../Zotlabs/Lib/Apps.php:342 +#: ../../Zotlabs/Lib/ThreadItem.php:126 ../../include/conversation.php:660 msgid "Delete" msgstr "Esborra" @@ -158,74 +303,73 @@ msgstr "Crea una nova carpeta" msgid "Upload file" msgstr "Puja arxiu" -#: ../../Zotlabs/Web/WebServer.php:120 ../../Zotlabs/Module/Dreport.php:10 -#: ../../Zotlabs/Module/Dreport.php:49 ../../Zotlabs/Module/Group.php:72 -#: ../../Zotlabs/Module/Like.php:284 ../../Zotlabs/Module/Import_items.php:112 +#: ../../Zotlabs/Web/WebServer.php:127 ../../Zotlabs/Module/Dreport.php:10 +#: ../../Zotlabs/Module/Dreport.php:66 ../../Zotlabs/Module/Group.php:72 +#: ../../Zotlabs/Module/Like.php:283 ../../Zotlabs/Module/Import_items.php:114 #: ../../Zotlabs/Module/Profperm.php:28 ../../Zotlabs/Module/Subthread.php:62 -#: ../../include/items.php:385 +#: ../../include/items.php:384 msgid "Permission denied" msgstr "Permís denegat" -#: ../../Zotlabs/Web/WebServer.php:121 ../../Zotlabs/Web/Router.php:65 -#: ../../Zotlabs/Module/Achievements.php:34 ../../Zotlabs/Module/Blocks.php:73 -#: ../../Zotlabs/Module/Blocks.php:80 ../../Zotlabs/Module/Channel.php:105 -#: ../../Zotlabs/Module/Channel.php:226 ../../Zotlabs/Module/Channel.php:267 -#: ../../Zotlabs/Module/Chat.php:100 ../../Zotlabs/Module/Chat.php:105 -#: ../../Zotlabs/Module/Authtest.php:16 ../../Zotlabs/Module/Block.php:26 -#: ../../Zotlabs/Module/Block.php:76 ../../Zotlabs/Module/Bookmarks.php:61 -#: ../../Zotlabs/Module/Connedit.php:366 ../../Zotlabs/Module/Editblock.php:67 -#: ../../Zotlabs/Module/Common.php:39 ../../Zotlabs/Module/Connections.php:33 +#: ../../Zotlabs/Web/WebServer.php:128 ../../Zotlabs/Web/Router.php:65 +#: ../../Zotlabs/Module/Achievements.php:34 +#: ../../Zotlabs/Module/Connedit.php:390 ../../Zotlabs/Module/Id.php:76 +#: ../../Zotlabs/Module/Authtest.php:16 ../../Zotlabs/Module/Events.php:264 +#: ../../Zotlabs/Module/Bookmarks.php:61 ../../Zotlabs/Module/Editpost.php:17 +#: ../../Zotlabs/Module/Page.php:35 ../../Zotlabs/Module/Page.php:91 +#: ../../Zotlabs/Module/Connections.php:33 #: ../../Zotlabs/Module/Cover_photo.php:277 -#: ../../Zotlabs/Module/Cover_photo.php:290 -#: ../../Zotlabs/Module/Editpost.php:17 ../../Zotlabs/Module/Events.php:265 -#: ../../Zotlabs/Module/Editlayout.php:67 +#: ../../Zotlabs/Module/Cover_photo.php:290 ../../Zotlabs/Module/Chat.php:100 +#: ../../Zotlabs/Module/Chat.php:105 ../../Zotlabs/Module/Editlayout.php:67 #: ../../Zotlabs/Module/Editlayout.php:90 -#: ../../Zotlabs/Module/Editwebpage.php:69 -#: ../../Zotlabs/Module/Editwebpage.php:90 -#: ../../Zotlabs/Module/Editwebpage.php:105 -#: ../../Zotlabs/Module/Editwebpage.php:127 ../../Zotlabs/Module/Group.php:13 -#: ../../Zotlabs/Module/Api.php:13 ../../Zotlabs/Module/Api.php:18 -#: ../../Zotlabs/Module/Filestorage.php:24 -#: ../../Zotlabs/Module/Filestorage.php:79 -#: ../../Zotlabs/Module/Filestorage.php:94 -#: ../../Zotlabs/Module/Filestorage.php:121 ../../Zotlabs/Module/Item.php:210 -#: ../../Zotlabs/Module/Item.php:218 ../../Zotlabs/Module/Item.php:1070 +#: ../../Zotlabs/Module/Editwebpage.php:68 +#: ../../Zotlabs/Module/Editwebpage.php:89 +#: ../../Zotlabs/Module/Editwebpage.php:104 +#: ../../Zotlabs/Module/Editwebpage.php:126 ../../Zotlabs/Module/Group.php:13 +#: ../../Zotlabs/Module/Appman.php:75 ../../Zotlabs/Module/Pdledit.php:26 +#: ../../Zotlabs/Module/Filestorage.php:23 +#: ../../Zotlabs/Module/Filestorage.php:78 +#: ../../Zotlabs/Module/Filestorage.php:93 +#: ../../Zotlabs/Module/Filestorage.php:120 #: ../../Zotlabs/Module/Layouts.php:71 ../../Zotlabs/Module/Layouts.php:78 -#: ../../Zotlabs/Module/Layouts.php:89 ../../Zotlabs/Module/Id.php:76 -#: ../../Zotlabs/Module/Like.php:181 ../../Zotlabs/Module/Invite.php:17 -#: ../../Zotlabs/Module/Invite.php:91 ../../Zotlabs/Module/Locs.php:87 -#: ../../Zotlabs/Module/Mail.php:129 ../../Zotlabs/Module/Manage.php:10 -#: ../../Zotlabs/Module/Menu.php:78 ../../Zotlabs/Module/Message.php:18 -#: ../../Zotlabs/Module/Mood.php:116 ../../Zotlabs/Module/Network.php:17 +#: ../../Zotlabs/Module/Layouts.php:89 ../../Zotlabs/Module/Like.php:181 +#: ../../Zotlabs/Module/Profiles.php:203 ../../Zotlabs/Module/Profiles.php:601 +#: ../../Zotlabs/Module/Item.php:213 ../../Zotlabs/Module/Item.php:221 +#: ../../Zotlabs/Module/Item.php:1071 ../../Zotlabs/Module/Photos.php:73 +#: ../../Zotlabs/Module/Invite.php:17 ../../Zotlabs/Module/Invite.php:91 +#: ../../Zotlabs/Module/Locs.php:87 ../../Zotlabs/Module/Mail.php:121 +#: ../../Zotlabs/Module/Manage.php:10 ../../Zotlabs/Module/Menu.php:78 +#: ../../Zotlabs/Module/Message.php:18 ../../Zotlabs/Module/Mood.php:116 +#: ../../Zotlabs/Module/Network.php:15 ../../Zotlabs/Module/Channel.php:104 +#: ../../Zotlabs/Module/Channel.php:225 ../../Zotlabs/Module/Channel.php:266 #: ../../Zotlabs/Module/Mitem.php:115 ../../Zotlabs/Module/New_channel.php:77 #: ../../Zotlabs/Module/New_channel.php:104 -#: ../../Zotlabs/Module/Notifications.php:70 -#: ../../Zotlabs/Module/Photos.php:75 ../../Zotlabs/Module/Page.php:35 -#: ../../Zotlabs/Module/Page.php:90 ../../Zotlabs/Module/Pdledit.php:26 -#: ../../Zotlabs/Module/Poke.php:137 ../../Zotlabs/Module/Profile.php:68 -#: ../../Zotlabs/Module/Profile.php:76 ../../Zotlabs/Module/Profiles.php:203 -#: ../../Zotlabs/Module/Profiles.php:601 -#: ../../Zotlabs/Module/Profile_photo.php:256 -#: ../../Zotlabs/Module/Profile_photo.php:269 -#: ../../Zotlabs/Module/Rate.php:113 ../../Zotlabs/Module/Appman.php:75 -#: ../../Zotlabs/Module/Register.php:77 ../../Zotlabs/Module/Regmod.php:21 +#: ../../Zotlabs/Module/Notifications.php:70 ../../Zotlabs/Module/Poke.php:137 +#: ../../Zotlabs/Module/Profile.php:68 ../../Zotlabs/Module/Profile.php:76 +#: ../../Zotlabs/Module/Block.php:26 ../../Zotlabs/Module/Block.php:76 +#: ../../Zotlabs/Module/Profile_photo.php:265 +#: ../../Zotlabs/Module/Profile_photo.php:278 +#: ../../Zotlabs/Module/Blocks.php:73 ../../Zotlabs/Module/Blocks.php:80 +#: ../../Zotlabs/Module/Rate.php:113 ../../Zotlabs/Module/Editblock.php:67 +#: ../../Zotlabs/Module/Common.php:39 ../../Zotlabs/Module/Register.php:77 +#: ../../Zotlabs/Module/Regmod.php:21 #: ../../Zotlabs/Module/Service_limits.php:11 -#: ../../Zotlabs/Module/Settings.php:572 ../../Zotlabs/Module/Setup.php:215 -#: ../../Zotlabs/Module/Sharedwithme.php:11 +#: ../../Zotlabs/Module/Settings.php:626 ../../Zotlabs/Module/Setup.php:215 +#: ../../Zotlabs/Module/Sharedwithme.php:11 ../../Zotlabs/Module/Thing.php:274 +#: ../../Zotlabs/Module/Thing.php:294 ../../Zotlabs/Module/Thing.php:331 #: ../../Zotlabs/Module/Sources.php:74 ../../Zotlabs/Module/Suggest.php:30 -#: ../../Zotlabs/Module/Thing.php:274 ../../Zotlabs/Module/Thing.php:294 -#: ../../Zotlabs/Module/Thing.php:331 -#: ../../Zotlabs/Module/Viewconnections.php:25 -#: ../../Zotlabs/Module/Viewconnections.php:30 -#: ../../Zotlabs/Module/Viewsrc.php:18 ../../Zotlabs/Module/Webpages.php:74 -#: ../../Zotlabs/Lib/Chatroom.php:137 ../../include/items.php:3438 -#: ../../include/attach.php:141 ../../include/attach.php:189 -#: ../../include/attach.php:252 ../../include/attach.php:266 -#: ../../include/attach.php:273 ../../include/attach.php:338 -#: ../../include/attach.php:352 ../../include/attach.php:359 -#: ../../include/attach.php:437 ../../include/attach.php:895 -#: ../../include/attach.php:966 ../../include/attach.php:1118 -#: ../../include/photos.php:27 +#: ../../Zotlabs/Module/Webpages.php:73 +#: ../../Zotlabs/Module/Viewconnections.php:28 +#: ../../Zotlabs/Module/Viewconnections.php:33 +#: ../../Zotlabs/Module/Viewsrc.php:18 ../../Zotlabs/Module/Api.php:13 +#: ../../Zotlabs/Module/Api.php:18 ../../Zotlabs/Lib/Chatroom.php:137 +#: ../../include/photos.php:27 ../../include/attach.php:141 +#: ../../include/attach.php:189 ../../include/attach.php:252 +#: ../../include/attach.php:266 ../../include/attach.php:273 +#: ../../include/attach.php:338 ../../include/attach.php:352 +#: ../../include/attach.php:359 ../../include/attach.php:439 +#: ../../include/attach.php:901 ../../include/attach.php:972 +#: ../../include/attach.php:1124 ../../include/items.php:3448 msgid "Permission denied." msgstr "Permís denegat." @@ -233,9 +377,9 @@ msgstr "Permís denegat." msgid "Not Found" msgstr "No s'ha pogut trobar la pàgina" -#: ../../Zotlabs/Web/Router.php:149 ../../Zotlabs/Module/Block.php:79 -#: ../../Zotlabs/Module/Display.php:117 ../../Zotlabs/Module/Help.php:97 -#: ../../Zotlabs/Module/Page.php:93 +#: ../../Zotlabs/Web/Router.php:149 ../../Zotlabs/Module/Display.php:118 +#: ../../Zotlabs/Module/Page.php:94 ../../Zotlabs/Module/Help.php:97 +#: ../../Zotlabs/Module/Block.php:79 msgid "Page not found." msgstr "Pàgina no trobada." @@ -251,13 +395,13 @@ msgstr "Autenticació remota bloquejada. Ha iniciat sessió en aquest lloc a niv msgid "Welcome %s. Remote authentication successful." msgstr "Benvingut %s. Autenticació remota reeixida." -#: ../../Zotlabs/Module/Achievements.php:15 ../../Zotlabs/Module/Blocks.php:33 -#: ../../Zotlabs/Module/Connect.php:17 ../../Zotlabs/Module/Editblock.php:31 -#: ../../Zotlabs/Module/Editlayout.php:31 -#: ../../Zotlabs/Module/Editwebpage.php:33 -#: ../../Zotlabs/Module/Filestorage.php:60 ../../Zotlabs/Module/Hcard.php:12 -#: ../../Zotlabs/Module/Layouts.php:31 ../../Zotlabs/Module/Profile.php:20 -#: ../../Zotlabs/Module/Webpages.php:34 ../../include/channel.php:837 +#: ../../Zotlabs/Module/Achievements.php:15 +#: ../../Zotlabs/Module/Connect.php:17 ../../Zotlabs/Module/Editlayout.php:31 +#: ../../Zotlabs/Module/Editwebpage.php:32 ../../Zotlabs/Module/Hcard.php:12 +#: ../../Zotlabs/Module/Filestorage.php:59 ../../Zotlabs/Module/Layouts.php:31 +#: ../../Zotlabs/Module/Profile.php:20 ../../Zotlabs/Module/Blocks.php:33 +#: ../../Zotlabs/Module/Editblock.php:31 ../../Zotlabs/Module/Webpages.php:33 +#: ../../include/channel.php:876 msgid "Requested profile is not available." msgstr "El perfil demanat no està disponible." @@ -265,229 +409,6 @@ msgstr "El perfil demanat no està disponible." msgid "Some blurb about what to do when you're new here" msgstr "Algunes propostes sobre el que cal fer quan ets nou aquí" -#: ../../Zotlabs/Module/Blocks.php:97 ../../Zotlabs/Module/Blocks.php:152 -#: ../../Zotlabs/Module/Editblock.php:108 -msgid "Block Name" -msgstr "Nom del Bloc" - -#: ../../Zotlabs/Module/Blocks.php:151 ../../include/text.php:2265 -msgid "Blocks" -msgstr "Bloc" - -#: ../../Zotlabs/Module/Blocks.php:153 -msgid "Block Title" -msgstr "Títol del bloc" - -#: ../../Zotlabs/Module/Blocks.php:154 ../../Zotlabs/Module/Layouts.php:188 -#: ../../Zotlabs/Module/Menu.php:114 ../../Zotlabs/Module/Webpages.php:198 -#: ../../include/page_widgets.php:44 -msgid "Created" -msgstr "Creat" - -#: ../../Zotlabs/Module/Blocks.php:155 ../../Zotlabs/Module/Layouts.php:189 -#: ../../Zotlabs/Module/Menu.php:115 ../../Zotlabs/Module/Webpages.php:199 -#: ../../include/page_widgets.php:45 -msgid "Edited" -msgstr "Editat" - -#: ../../Zotlabs/Module/Blocks.php:158 ../../Zotlabs/Module/Layouts.php:191 -#: ../../Zotlabs/Module/Photos.php:1072 ../../Zotlabs/Module/Webpages.php:188 -#: ../../include/conversation.php:1208 -msgid "Share" -msgstr "Compartir" - -#: ../../Zotlabs/Module/Blocks.php:163 ../../Zotlabs/Module/Layouts.php:195 -#: ../../Zotlabs/Module/Pubsites.php:47 ../../Zotlabs/Module/Webpages.php:193 -#: ../../include/page_widgets.php:39 -msgid "View" -msgstr "Mostra" - -#: ../../Zotlabs/Module/Cal.php:62 ../../Zotlabs/Module/Block.php:43 -#: ../../Zotlabs/Module/Page.php:56 ../../Zotlabs/Module/Wall_upload.php:33 -msgid "Channel not found." -msgstr "Canal no trobat." - -#: ../../Zotlabs/Module/Cal.php:69 -msgid "Permissions denied." -msgstr "Permís denegat." - -#: ../../Zotlabs/Module/Cal.php:259 ../../Zotlabs/Module/Events.php:588 -msgid "l, F j" -msgstr "l, F j" - -#: ../../Zotlabs/Module/Cal.php:308 ../../Zotlabs/Module/Events.php:637 -#: ../../include/text.php:1732 -msgid "Link to Source" -msgstr "Enllaç a la Font" - -#: ../../Zotlabs/Module/Cal.php:331 ../../Zotlabs/Module/Events.php:665 -msgid "Edit Event" -msgstr "Editar l'Esdeveniment" - -#: ../../Zotlabs/Module/Cal.php:331 ../../Zotlabs/Module/Events.php:665 -msgid "Create Event" -msgstr "Crear Esdeveniment" - -#: ../../Zotlabs/Module/Cal.php:332 ../../Zotlabs/Module/Cal.php:339 -#: ../../Zotlabs/Module/Events.php:666 ../../Zotlabs/Module/Events.php:673 -#: ../../Zotlabs/Module/Photos.php:949 -msgid "Previous" -msgstr "Anterior" - -#: ../../Zotlabs/Module/Cal.php:333 ../../Zotlabs/Module/Cal.php:340 -#: ../../Zotlabs/Module/Events.php:667 ../../Zotlabs/Module/Events.php:674 -#: ../../Zotlabs/Module/Photos.php:958 ../../Zotlabs/Module/Setup.php:267 -msgid "Next" -msgstr "Pròxim" - -#: ../../Zotlabs/Module/Cal.php:334 ../../Zotlabs/Module/Events.php:668 -#: ../../include/widgets.php:755 -msgid "Export" -msgstr "Exporta" - -#: ../../Zotlabs/Module/Cal.php:337 ../../Zotlabs/Module/Events.php:671 -#: ../../include/widgets.php:756 -msgid "Import" -msgstr "Importar" - -#: ../../Zotlabs/Module/Cal.php:338 ../../Zotlabs/Module/Chat.php:196 -#: ../../Zotlabs/Module/Chat.php:238 ../../Zotlabs/Module/Connect.php:98 -#: ../../Zotlabs/Module/Connedit.php:731 ../../Zotlabs/Module/Events.php:475 -#: ../../Zotlabs/Module/Events.php:672 ../../Zotlabs/Module/Group.php:85 -#: ../../Zotlabs/Module/Filestorage.php:162 -#: ../../Zotlabs/Module/Import.php:550 -#: ../../Zotlabs/Module/Import_items.php:120 -#: ../../Zotlabs/Module/Invite.php:146 ../../Zotlabs/Module/Locs.php:121 -#: ../../Zotlabs/Module/Mail.php:378 ../../Zotlabs/Module/Mood.php:139 -#: ../../Zotlabs/Module/Mitem.php:235 ../../Zotlabs/Module/Photos.php:677 -#: ../../Zotlabs/Module/Photos.php:1052 ../../Zotlabs/Module/Photos.php:1092 -#: ../../Zotlabs/Module/Photos.php:1210 ../../Zotlabs/Module/Pconfig.php:107 -#: ../../Zotlabs/Module/Pdledit.php:66 ../../Zotlabs/Module/Poke.php:186 -#: ../../Zotlabs/Module/Profiles.php:687 ../../Zotlabs/Module/Rate.php:170 -#: ../../Zotlabs/Module/Admin.php:492 ../../Zotlabs/Module/Admin.php:688 -#: ../../Zotlabs/Module/Admin.php:771 ../../Zotlabs/Module/Admin.php:1032 -#: ../../Zotlabs/Module/Admin.php:1211 ../../Zotlabs/Module/Admin.php:1421 -#: ../../Zotlabs/Module/Admin.php:1648 ../../Zotlabs/Module/Admin.php:1733 -#: ../../Zotlabs/Module/Admin.php:2116 ../../Zotlabs/Module/Appman.php:126 -#: ../../Zotlabs/Module/Settings.php:590 ../../Zotlabs/Module/Settings.php:703 -#: ../../Zotlabs/Module/Settings.php:731 ../../Zotlabs/Module/Settings.php:754 -#: ../../Zotlabs/Module/Settings.php:842 -#: ../../Zotlabs/Module/Settings.php:1034 ../../Zotlabs/Module/Setup.php:312 -#: ../../Zotlabs/Module/Setup.php:353 ../../Zotlabs/Module/Sources.php:114 -#: ../../Zotlabs/Module/Sources.php:149 ../../Zotlabs/Module/Thing.php:316 -#: ../../Zotlabs/Module/Thing.php:362 ../../Zotlabs/Module/Xchan.php:15 -#: ../../Zotlabs/Lib/ThreadItem.php:710 ../../include/widgets.php:757 -#: ../../include/widgets.php:769 ../../include/js_strings.php:22 -#: ../../view/theme/redbasic/php/config.php:99 -msgid "Submit" -msgstr "Enviar" - -#: ../../Zotlabs/Module/Cal.php:341 ../../Zotlabs/Module/Events.php:675 -msgid "Today" -msgstr "Avui" - -#: ../../Zotlabs/Module/Channel.php:29 ../../Zotlabs/Module/Chat.php:25 -msgid "You must be logged in to see this page." -msgstr "Has d'estar identificat per a veure aquesta pàgina." - -#: ../../Zotlabs/Module/Channel.php:41 -msgid "Posts and comments" -msgstr "Entrades i comentaris" - -#: ../../Zotlabs/Module/Channel.php:42 -msgid "Only posts" -msgstr "Només entrades" - -#: ../../Zotlabs/Module/Channel.php:102 -msgid "Insufficient permissions. Request redirected to profile page." -msgstr "Permisos insuficients. Petició redirigida a la pàgina del perfil." - -#: ../../Zotlabs/Module/Chat.php:181 -msgid "Room not found" -msgstr "No s'ha trobat la sala" - -#: ../../Zotlabs/Module/Chat.php:197 -msgid "Leave Room" -msgstr "Abandona la sala" - -#: ../../Zotlabs/Module/Chat.php:198 -msgid "Delete Room" -msgstr "Esborra Sala" - -#: ../../Zotlabs/Module/Chat.php:199 -msgid "I am away right now" -msgstr "Absent" - -#: ../../Zotlabs/Module/Chat.php:200 -msgid "I am online" -msgstr "Estic connectat/da" - -#: ../../Zotlabs/Module/Chat.php:202 -msgid "Bookmark this room" -msgstr "Fes favorit aquest xat" - -#: ../../Zotlabs/Module/Chat.php:205 ../../Zotlabs/Module/Mail.php:205 -#: ../../Zotlabs/Module/Mail.php:314 ../../include/conversation.php:1176 -msgid "Please enter a link URL:" -msgstr "Si us plau entra l'enllaç URL:" - -#: ../../Zotlabs/Module/Chat.php:206 ../../Zotlabs/Module/Mail.php:258 -#: ../../Zotlabs/Module/Mail.php:383 ../../Zotlabs/Lib/ThreadItem.php:722 -#: ../../include/conversation.php:1256 -msgid "Encrypt text" -msgstr "Text encriptat" - -#: ../../Zotlabs/Module/Chat.php:207 ../../Zotlabs/Module/Editblock.php:111 -#: ../../Zotlabs/Module/Editwebpage.php:147 ../../Zotlabs/Module/Mail.php:252 -#: ../../Zotlabs/Module/Mail.php:377 ../../include/conversation.php:1143 -msgid "Insert web link" -msgstr "Insereix enllaç web" - -#: ../../Zotlabs/Module/Chat.php:218 -msgid "Feature disabled." -msgstr "Funcionalitat desactivada." - -#: ../../Zotlabs/Module/Chat.php:232 -msgid "New Chatroom" -msgstr "Nova sala per a Xerrar" - -#: ../../Zotlabs/Module/Chat.php:233 -msgid "Chatroom name" -msgstr "Nom de la sala de xat" - -#: ../../Zotlabs/Module/Chat.php:234 -msgid "Expiration of chats (minutes)" -msgstr "Expiració dels chats (minuts)" - -#: ../../Zotlabs/Module/Chat.php:235 ../../Zotlabs/Module/Filestorage.php:153 -#: ../../Zotlabs/Module/Photos.php:671 ../../Zotlabs/Module/Photos.php:1045 -#: ../../Zotlabs/Module/Thing.php:313 ../../Zotlabs/Module/Thing.php:359 -#: ../../include/acl_selectors.php:283 -msgid "Permissions" -msgstr "Permisos " - -#: ../../Zotlabs/Module/Chat.php:246 -#, php-format -msgid "%1$s's Chatrooms" -msgstr "%1$s de Xats" - -#: ../../Zotlabs/Module/Chat.php:251 -msgid "No chatrooms available" -msgstr "No hi ha sales de xat disponibles" - -#: ../../Zotlabs/Module/Chat.php:252 ../../Zotlabs/Module/Manage.php:143 -#: ../../Zotlabs/Module/Profiles.php:778 -msgid "Create New" -msgstr "Crear Nou" - -#: ../../Zotlabs/Module/Chat.php:255 -msgid "Expiration" -msgstr "Expiració" - -#: ../../Zotlabs/Module/Chat.php:256 -msgid "min" -msgstr "min" - #: ../../Zotlabs/Module/Chatsvc.php:117 msgid "Away" msgstr "Absent" @@ -496,65 +417,6 @@ msgstr "Absent" msgid "Online" msgstr "En connexió" -#: ../../Zotlabs/Module/Block.php:31 ../../Zotlabs/Module/Page.php:40 -msgid "Invalid item." -msgstr "Article invàlid." - -#: ../../Zotlabs/Module/Bookmarks.php:53 -msgid "Bookmark added" -msgstr "Favorit afegit" - -#: ../../Zotlabs/Module/Bookmarks.php:75 -msgid "My Bookmarks" -msgstr "Els Meus Favorits" - -#: ../../Zotlabs/Module/Bookmarks.php:86 -msgid "My Connections Bookmarks" -msgstr "Les connexions dels meus Favorits" - -#: ../../Zotlabs/Module/Connect.php:61 ../../Zotlabs/Module/Connect.php:109 -msgid "Continue" -msgstr "Continua" - -#: ../../Zotlabs/Module/Connect.php:90 -msgid "Premium Channel Setup" -msgstr "Configuració de Canals Premium" - -#: ../../Zotlabs/Module/Connect.php:92 -msgid "Enable premium channel connection restrictions" -msgstr "Habilita les restriccions de connexió del canal premium" - -#: ../../Zotlabs/Module/Connect.php:93 -msgid "" -"Please enter your restrictions or conditions, such as paypal receipt, usage " -"guidelines, etc." -msgstr "Si us plau, introdueixi les restriccions o condicions, com ara el rebut de PayPal, les pautes d'ús, etc." - -#: ../../Zotlabs/Module/Connect.php:95 ../../Zotlabs/Module/Connect.php:115 -msgid "" -"This channel may require additional steps or acknowledgement of the " -"following conditions prior to connecting:" -msgstr "Aquest canal pot requerir passos addicionals o reconeixement de les següents condicions abans de connectar:" - -#: ../../Zotlabs/Module/Connect.php:96 -msgid "" -"Potential connections will then see the following text before proceeding:" -msgstr "Connexions potencials veuran el següent text abans de continuar:" - -#: ../../Zotlabs/Module/Connect.php:97 ../../Zotlabs/Module/Connect.php:118 -msgid "" -"By continuing, I certify that I have complied with any instructions provided" -" on this page." -msgstr "En continuar, certifico que he complert amb totes les instruccions proporcionades en aquesta pàgina." - -#: ../../Zotlabs/Module/Connect.php:106 -msgid "(No specific instructions have been provided by the channel owner.)" -msgstr "(No s'han proporcionat instruccions específiques pel propietari del canal.)" - -#: ../../Zotlabs/Module/Connect.php:114 -msgid "Restricted or Premium Channel" -msgstr "Canal Restringit o Premium" - #: ../../Zotlabs/Module/Connedit.php:80 msgid "Could not access contact record." msgstr "No s'ha pogut accedir al llibre de contactes." @@ -563,317 +425,350 @@ msgstr "No s'ha pogut accedir al llibre de contactes." msgid "Could not locate selected profile." msgstr "No s'ha trobat el perfil indicat." -#: ../../Zotlabs/Module/Connedit.php:227 +#: ../../Zotlabs/Module/Connedit.php:248 msgid "Connection updated." msgstr "S'ha actualitzat la connexió." -#: ../../Zotlabs/Module/Connedit.php:229 +#: ../../Zotlabs/Module/Connedit.php:250 msgid "Failed to update connection record." msgstr "No s'ha pogut actualitzar el registre de connexió." -#: ../../Zotlabs/Module/Connedit.php:276 +#: ../../Zotlabs/Module/Connedit.php:300 msgid "is now connected to" msgstr "Ara està conectat amb" -#: ../../Zotlabs/Module/Connedit.php:379 ../../Zotlabs/Module/Connedit.php:654 -#: ../../Zotlabs/Module/Events.php:459 ../../Zotlabs/Module/Events.php:460 -#: ../../Zotlabs/Module/Events.php:469 ../../Zotlabs/Module/Api.php:89 -#: ../../Zotlabs/Module/Filestorage.php:157 -#: ../../Zotlabs/Module/Filestorage.php:165 ../../Zotlabs/Module/Menu.php:100 -#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Mitem.php:158 -#: ../../Zotlabs/Module/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:232 -#: ../../Zotlabs/Module/Mitem.php:233 ../../Zotlabs/Module/Photos.php:666 -#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Admin.php:459 -#: ../../Zotlabs/Module/Removeme.php:61 ../../Zotlabs/Module/Settings.php:581 +#: ../../Zotlabs/Module/Connedit.php:403 ../../Zotlabs/Module/Connedit.php:685 +#: ../../Zotlabs/Module/Events.php:458 ../../Zotlabs/Module/Events.php:459 +#: ../../Zotlabs/Module/Events.php:468 +#: ../../Zotlabs/Module/Filestorage.php:156 +#: ../../Zotlabs/Module/Filestorage.php:164 +#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Photos.php:664 +#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 +#: ../../Zotlabs/Module/Mitem.php:158 ../../Zotlabs/Module/Mitem.php:159 +#: ../../Zotlabs/Module/Mitem.php:232 ../../Zotlabs/Module/Mitem.php:233 +#: ../../Zotlabs/Module/Admin.php:459 ../../Zotlabs/Module/Removeme.php:63 +#: ../../Zotlabs/Module/Settings.php:635 ../../Zotlabs/Module/Api.php:89 #: ../../include/dir_fns.php:143 ../../include/dir_fns.php:144 #: ../../include/dir_fns.php:145 ../../view/theme/redbasic/php/config.php:105 -#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1707 +#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1708 msgid "No" msgstr "No" -#: ../../Zotlabs/Module/Connedit.php:379 ../../Zotlabs/Module/Events.php:459 -#: ../../Zotlabs/Module/Events.php:460 ../../Zotlabs/Module/Events.php:469 -#: ../../Zotlabs/Module/Api.php:88 ../../Zotlabs/Module/Filestorage.php:157 -#: ../../Zotlabs/Module/Filestorage.php:165 ../../Zotlabs/Module/Menu.php:100 -#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Mitem.php:158 -#: ../../Zotlabs/Module/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:232 -#: ../../Zotlabs/Module/Mitem.php:233 ../../Zotlabs/Module/Photos.php:666 -#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Admin.php:461 -#: ../../Zotlabs/Module/Removeme.php:61 ../../Zotlabs/Module/Settings.php:581 +#: ../../Zotlabs/Module/Connedit.php:403 ../../Zotlabs/Module/Events.php:458 +#: ../../Zotlabs/Module/Events.php:459 ../../Zotlabs/Module/Events.php:468 +#: ../../Zotlabs/Module/Filestorage.php:156 +#: ../../Zotlabs/Module/Filestorage.php:164 +#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Photos.php:664 +#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 +#: ../../Zotlabs/Module/Mitem.php:158 ../../Zotlabs/Module/Mitem.php:159 +#: ../../Zotlabs/Module/Mitem.php:232 ../../Zotlabs/Module/Mitem.php:233 +#: ../../Zotlabs/Module/Admin.php:461 ../../Zotlabs/Module/Removeme.php:63 +#: ../../Zotlabs/Module/Settings.php:635 ../../Zotlabs/Module/Api.php:88 #: ../../include/dir_fns.php:143 ../../include/dir_fns.php:144 #: ../../include/dir_fns.php:145 ../../view/theme/redbasic/php/config.php:105 -#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1707 +#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1708 msgid "Yes" msgstr "Sí" -#: ../../Zotlabs/Module/Connedit.php:411 +#: ../../Zotlabs/Module/Connedit.php:435 msgid "Could not access address book record." msgstr "No puc accedir al registre del contacte" -#: ../../Zotlabs/Module/Connedit.php:425 +#: ../../Zotlabs/Module/Connedit.php:455 msgid "Refresh failed - channel is currently unavailable." msgstr "Ha fallat la recàrrega - el canal es actualment inaccesible." -#: ../../Zotlabs/Module/Connedit.php:440 ../../Zotlabs/Module/Connedit.php:449 -#: ../../Zotlabs/Module/Connedit.php:458 ../../Zotlabs/Module/Connedit.php:467 -#: ../../Zotlabs/Module/Connedit.php:480 +#: ../../Zotlabs/Module/Connedit.php:470 ../../Zotlabs/Module/Connedit.php:479 +#: ../../Zotlabs/Module/Connedit.php:488 ../../Zotlabs/Module/Connedit.php:497 +#: ../../Zotlabs/Module/Connedit.php:510 msgid "Unable to set address book parameters." msgstr "No es poden ajustar els paràmetres dels contactes." -#: ../../Zotlabs/Module/Connedit.php:503 +#: ../../Zotlabs/Module/Connedit.php:533 msgid "Connection has been removed." msgstr "S'han eliminat les conexions." -#: ../../Zotlabs/Module/Connedit.php:519 ../../Zotlabs/Lib/Apps.php:219 -#: ../../include/nav.php:86 ../../include/conversation.php:954 +#: ../../Zotlabs/Module/Connedit.php:549 ../../Zotlabs/Lib/Apps.php:221 +#: ../../include/nav.php:86 ../../include/conversation.php:957 msgid "View Profile" msgstr "Veure Perfil" -#: ../../Zotlabs/Module/Connedit.php:522 +#: ../../Zotlabs/Module/Connedit.php:552 #, php-format msgid "View %s's profile" msgstr "Mostra el perfil de %s" -#: ../../Zotlabs/Module/Connedit.php:526 +#: ../../Zotlabs/Module/Connedit.php:556 msgid "Refresh Permissions" msgstr "Recarrega els Permissos" -#: ../../Zotlabs/Module/Connedit.php:529 +#: ../../Zotlabs/Module/Connedit.php:559 msgid "Fetch updated permissions" msgstr "Obté els permisos actualitzats" -#: ../../Zotlabs/Module/Connedit.php:533 +#: ../../Zotlabs/Module/Connedit.php:563 msgid "Recent Activity" msgstr "Activitat Recent" -#: ../../Zotlabs/Module/Connedit.php:536 +#: ../../Zotlabs/Module/Connedit.php:566 msgid "View recent posts and comments" msgstr "Mostra les entrades i comentaris recents" -#: ../../Zotlabs/Module/Connedit.php:540 ../../Zotlabs/Module/Admin.php:1041 +#: ../../Zotlabs/Module/Connedit.php:570 ../../Zotlabs/Module/Admin.php:1041 msgid "Unblock" msgstr "Desbloquejat" -#: ../../Zotlabs/Module/Connedit.php:540 ../../Zotlabs/Module/Admin.php:1040 +#: ../../Zotlabs/Module/Connedit.php:570 ../../Zotlabs/Module/Admin.php:1040 msgid "Block" msgstr "Bloquejat" -#: ../../Zotlabs/Module/Connedit.php:543 +#: ../../Zotlabs/Module/Connedit.php:573 msgid "Block (or Unblock) all communications with this connection" msgstr "Boqueja (o Desbloqueja) les comunicacions amb aquesta connexió" -#: ../../Zotlabs/Module/Connedit.php:544 +#: ../../Zotlabs/Module/Connedit.php:574 msgid "This connection is blocked!" msgstr "Aquesta connexió està bloquejada!" -#: ../../Zotlabs/Module/Connedit.php:548 +#: ../../Zotlabs/Module/Connedit.php:578 msgid "Unignore" msgstr "Inhabilita" -#: ../../Zotlabs/Module/Connedit.php:548 +#: ../../Zotlabs/Module/Connedit.php:578 #: ../../Zotlabs/Module/Connections.php:277 #: ../../Zotlabs/Module/Notifications.php:55 msgid "Ignore" msgstr "Ignora" -#: ../../Zotlabs/Module/Connedit.php:551 +#: ../../Zotlabs/Module/Connedit.php:581 msgid "Ignore (or Unignore) all inbound communications from this connection" msgstr "Ignora (o Considera) les communicacions entrants d'aquesta connexió" -#: ../../Zotlabs/Module/Connedit.php:552 +#: ../../Zotlabs/Module/Connedit.php:582 msgid "This connection is ignored!" msgstr "Aquesta connexió es ignorada!" -#: ../../Zotlabs/Module/Connedit.php:556 +#: ../../Zotlabs/Module/Connedit.php:586 msgid "Unarchive" msgstr "Desarxiva" -#: ../../Zotlabs/Module/Connedit.php:556 +#: ../../Zotlabs/Module/Connedit.php:586 msgid "Archive" msgstr "Arxiva" -#: ../../Zotlabs/Module/Connedit.php:559 +#: ../../Zotlabs/Module/Connedit.php:589 msgid "" "Archive (or Unarchive) this connection - mark channel dead but keep content" msgstr "Arxiva (o Desarxiva) aquesta connexió - Marca el canal com a mort pero manté el contingut " -#: ../../Zotlabs/Module/Connedit.php:560 +#: ../../Zotlabs/Module/Connedit.php:590 msgid "This connection is archived!" msgstr "Aquesta connexió està arxivada!" -#: ../../Zotlabs/Module/Connedit.php:564 +#: ../../Zotlabs/Module/Connedit.php:594 msgid "Unhide" msgstr "Mostra" -#: ../../Zotlabs/Module/Connedit.php:564 +#: ../../Zotlabs/Module/Connedit.php:594 msgid "Hide" msgstr "Amaga" -#: ../../Zotlabs/Module/Connedit.php:567 +#: ../../Zotlabs/Module/Connedit.php:597 msgid "Hide or Unhide this connection from your other connections" msgstr "Amaga (o Mostra) aquesta connexió de les altres connexions teves" -#: ../../Zotlabs/Module/Connedit.php:568 +#: ../../Zotlabs/Module/Connedit.php:598 msgid "This connection is hidden!" msgstr "Aquesta connexió està amagada!" -#: ../../Zotlabs/Module/Connedit.php:575 +#: ../../Zotlabs/Module/Connedit.php:605 msgid "Delete this connection" msgstr "Elimina aquesta connexió" -#: ../../Zotlabs/Module/Connedit.php:590 ../../include/widgets.php:493 +#: ../../Zotlabs/Module/Connedit.php:620 ../../include/widgets.php:493 msgid "Me" msgstr "Jo" -#: ../../Zotlabs/Module/Connedit.php:591 ../../include/widgets.php:494 +#: ../../Zotlabs/Module/Connedit.php:621 ../../include/widgets.php:494 msgid "Family" msgstr "Família" -#: ../../Zotlabs/Module/Connedit.php:592 ../../Zotlabs/Module/Settings.php:342 -#: ../../Zotlabs/Module/Settings.php:346 ../../Zotlabs/Module/Settings.php:347 -#: ../../Zotlabs/Module/Settings.php:350 ../../Zotlabs/Module/Settings.php:361 -#: ../../include/widgets.php:495 ../../include/selectors.php:123 -#: ../../include/channel.php:389 ../../include/channel.php:390 -#: ../../include/channel.php:397 +#: ../../Zotlabs/Module/Connedit.php:622 ../../Zotlabs/Module/Settings.php:391 +#: ../../Zotlabs/Module/Settings.php:395 ../../Zotlabs/Module/Settings.php:396 +#: ../../Zotlabs/Module/Settings.php:399 ../../Zotlabs/Module/Settings.php:410 +#: ../../include/channel.php:402 ../../include/channel.php:403 +#: ../../include/channel.php:410 ../../include/selectors.php:123 +#: ../../include/widgets.php:495 msgid "Friends" msgstr "Amics" -#: ../../Zotlabs/Module/Connedit.php:593 ../../include/widgets.php:496 +#: ../../Zotlabs/Module/Connedit.php:623 ../../include/widgets.php:496 msgid "Acquaintances" msgstr "Coneguts" -#: ../../Zotlabs/Module/Connedit.php:594 +#: ../../Zotlabs/Module/Connedit.php:624 #: ../../Zotlabs/Module/Connections.php:92 #: ../../Zotlabs/Module/Connections.php:107 ../../include/widgets.php:497 msgid "All" msgstr "Tots" -#: ../../Zotlabs/Module/Connedit.php:654 +#: ../../Zotlabs/Module/Connedit.php:685 msgid "Approve this connection" msgstr "Apccepta aquesta connexió" -#: ../../Zotlabs/Module/Connedit.php:654 +#: ../../Zotlabs/Module/Connedit.php:685 msgid "Accept connection to allow communication" msgstr "Accepta la connexió per permetre la comunicació" -#: ../../Zotlabs/Module/Connedit.php:659 +#: ../../Zotlabs/Module/Connedit.php:690 msgid "Set Affinity" msgstr "Ajusta l'Afinitat" -#: ../../Zotlabs/Module/Connedit.php:662 +#: ../../Zotlabs/Module/Connedit.php:693 msgid "Set Profile" msgstr "Ajusta el Perfil" -#: ../../Zotlabs/Module/Connedit.php:665 +#: ../../Zotlabs/Module/Connedit.php:696 msgid "Set Affinity & Profile" msgstr "Ajusta Afinitat i Perfil" -#: ../../Zotlabs/Module/Connedit.php:698 +#: ../../Zotlabs/Module/Connedit.php:745 msgid "none" msgstr "res" -#: ../../Zotlabs/Module/Connedit.php:702 ../../include/widgets.php:614 +#: ../../Zotlabs/Module/Connedit.php:749 ../../include/widgets.php:623 msgid "Connection Default Permissions" msgstr "Permisos per Defecte de la Connexió" -#: ../../Zotlabs/Module/Connedit.php:702 ../../include/items.php:3926 +#: ../../Zotlabs/Module/Connedit.php:749 ../../include/items.php:3935 #, php-format msgid "Connection: %s" msgstr "Connexió: %s" -#: ../../Zotlabs/Module/Connedit.php:703 +#: ../../Zotlabs/Module/Connedit.php:750 msgid "Apply these permissions automatically" msgstr "Aplica aquests permissos automaticament" -#: ../../Zotlabs/Module/Connedit.php:703 +#: ../../Zotlabs/Module/Connedit.php:750 msgid "Connection requests will be approved without your interaction" msgstr "Les peticions de connexió seran aprovades sense la teva interacció" -#: ../../Zotlabs/Module/Connedit.php:705 +#: ../../Zotlabs/Module/Connedit.php:752 msgid "This connection's primary address is" msgstr "La primera adreça d'aqueste connexió es" -#: ../../Zotlabs/Module/Connedit.php:706 +#: ../../Zotlabs/Module/Connedit.php:753 msgid "Available locations:" msgstr "Localització disponible:" -#: ../../Zotlabs/Module/Connedit.php:710 +#: ../../Zotlabs/Module/Connedit.php:757 msgid "" "The permissions indicated on this page will be applied to all new " "connections." msgstr "Els permisos indicats en aquesta pàgina seran aplicats a totes les noves connexions." -#: ../../Zotlabs/Module/Connedit.php:711 +#: ../../Zotlabs/Module/Connedit.php:758 msgid "Connection Tools" msgstr "Eines de Connexió" -#: ../../Zotlabs/Module/Connedit.php:713 +#: ../../Zotlabs/Module/Connedit.php:760 msgid "Slide to adjust your degree of friendship" msgstr "Llisca per ajustar el nivell d'amistat" -#: ../../Zotlabs/Module/Connedit.php:714 ../../Zotlabs/Module/Rate.php:159 +#: ../../Zotlabs/Module/Connedit.php:761 ../../Zotlabs/Module/Rate.php:159 #: ../../include/js_strings.php:20 msgid "Rating" msgstr "Valora" -#: ../../Zotlabs/Module/Connedit.php:715 +#: ../../Zotlabs/Module/Connedit.php:762 msgid "Slide to adjust your rating" msgstr "Llisca per ajustar la valoració" -#: ../../Zotlabs/Module/Connedit.php:716 ../../Zotlabs/Module/Connedit.php:721 +#: ../../Zotlabs/Module/Connedit.php:763 ../../Zotlabs/Module/Connedit.php:768 msgid "Optionally explain your rating" msgstr "Opcionalment pots explicar la teva valoració" -#: ../../Zotlabs/Module/Connedit.php:718 +#: ../../Zotlabs/Module/Connedit.php:765 msgid "Custom Filter" msgstr "Filtre a mida" -#: ../../Zotlabs/Module/Connedit.php:719 +#: ../../Zotlabs/Module/Connedit.php:766 msgid "Only import posts with this text" msgstr "Importa exclusivament entrades amb aquest text" -#: ../../Zotlabs/Module/Connedit.php:719 ../../Zotlabs/Module/Connedit.php:720 +#: ../../Zotlabs/Module/Connedit.php:766 ../../Zotlabs/Module/Connedit.php:767 msgid "" "words one per line or #tags or /patterns/ or lang=xx, leave blank to import " "all posts" msgstr "paraules una per línia o #etiquetes o /patrons/ o idioma=xx, deixar en blanc per importar totes les entrades" -#: ../../Zotlabs/Module/Connedit.php:720 +#: ../../Zotlabs/Module/Connedit.php:767 msgid "Do not import posts with this text" msgstr "No importar entrades amb aquest text" -#: ../../Zotlabs/Module/Connedit.php:722 +#: ../../Zotlabs/Module/Connedit.php:769 msgid "This information is public!" msgstr "Aquesta informació es pública!" -#: ../../Zotlabs/Module/Connedit.php:727 +#: ../../Zotlabs/Module/Connedit.php:774 msgid "Connection Pending Approval" msgstr "Connexió Pendent d'Aprovació" -#: ../../Zotlabs/Module/Connedit.php:730 +#: ../../Zotlabs/Module/Connedit.php:777 msgid "inherited" msgstr "heretat" -#: ../../Zotlabs/Module/Connedit.php:732 +#: ../../Zotlabs/Module/Connedit.php:778 ../../Zotlabs/Module/Connect.php:98 +#: ../../Zotlabs/Module/Events.php:474 ../../Zotlabs/Module/Cal.php:338 +#: ../../Zotlabs/Module/Chat.php:196 ../../Zotlabs/Module/Chat.php:238 +#: ../../Zotlabs/Module/Group.php:85 ../../Zotlabs/Module/Appman.php:126 +#: ../../Zotlabs/Module/Pdledit.php:66 +#: ../../Zotlabs/Module/Filestorage.php:161 +#: ../../Zotlabs/Module/Profiles.php:687 ../../Zotlabs/Module/Import.php:560 +#: ../../Zotlabs/Module/Photos.php:675 ../../Zotlabs/Module/Photos.php:1050 +#: ../../Zotlabs/Module/Photos.php:1090 ../../Zotlabs/Module/Photos.php:1208 +#: ../../Zotlabs/Module/Import_items.php:122 +#: ../../Zotlabs/Module/Invite.php:146 ../../Zotlabs/Module/Locs.php:121 +#: ../../Zotlabs/Module/Mail.php:370 ../../Zotlabs/Module/Mood.php:139 +#: ../../Zotlabs/Module/Mitem.php:235 ../../Zotlabs/Module/Admin.php:492 +#: ../../Zotlabs/Module/Admin.php:688 ../../Zotlabs/Module/Admin.php:771 +#: ../../Zotlabs/Module/Admin.php:1032 ../../Zotlabs/Module/Admin.php:1211 +#: ../../Zotlabs/Module/Admin.php:1421 ../../Zotlabs/Module/Admin.php:1648 +#: ../../Zotlabs/Module/Admin.php:1733 ../../Zotlabs/Module/Admin.php:2116 +#: ../../Zotlabs/Module/Poke.php:186 ../../Zotlabs/Module/Pconfig.php:107 +#: ../../Zotlabs/Module/Rate.php:170 ../../Zotlabs/Module/Settings.php:644 +#: ../../Zotlabs/Module/Settings.php:757 ../../Zotlabs/Module/Settings.php:806 +#: ../../Zotlabs/Module/Settings.php:832 ../../Zotlabs/Module/Settings.php:855 +#: ../../Zotlabs/Module/Settings.php:943 +#: ../../Zotlabs/Module/Settings.php:1129 ../../Zotlabs/Module/Setup.php:312 +#: ../../Zotlabs/Module/Setup.php:353 ../../Zotlabs/Module/Thing.php:316 +#: ../../Zotlabs/Module/Thing.php:362 ../../Zotlabs/Module/Sources.php:114 +#: ../../Zotlabs/Module/Sources.php:149 ../../Zotlabs/Module/Xchan.php:15 +#: ../../Zotlabs/Lib/ThreadItem.php:710 ../../include/widgets.php:763 +#: ../../include/js_strings.php:22 ../../view/theme/redbasic/php/config.php:99 +msgid "Submit" +msgstr "Enviar" + +#: ../../Zotlabs/Module/Connedit.php:779 #, php-format msgid "" "Please choose the profile you would like to display to %s when viewing your " "profile securely." msgstr "Tria el perfil que vols mostrar a %s quan es vegi el perfil segur." -#: ../../Zotlabs/Module/Connedit.php:734 +#: ../../Zotlabs/Module/Connedit.php:781 msgid "Their Settings" msgstr "Els seus Ajustos" -#: ../../Zotlabs/Module/Connedit.php:735 +#: ../../Zotlabs/Module/Connedit.php:782 msgid "My Settings" msgstr "Els Meus Ajustos" -#: ../../Zotlabs/Module/Connedit.php:737 +#: ../../Zotlabs/Module/Connedit.php:784 msgid "Individual Permissions" msgstr "Permisos Individuals" -#: ../../Zotlabs/Module/Connedit.php:738 +#: ../../Zotlabs/Module/Connedit.php:785 msgid "" "Some permissions may be inherited from your channel's privacy settings, which have higher " @@ -881,7 +776,7 @@ msgid "" " settings here." msgstr "Alguns permisos poden ser heretats dels teus canals ajustos de privacitat, Els quals tenen més prioritat que els ajustos individuals. No pots canviar aquests ajustos aquí." -#: ../../Zotlabs/Module/Connedit.php:739 +#: ../../Zotlabs/Module/Connedit.php:786 msgid "" "Some permissions may be inherited from your channel's privacy settings, which have higher " @@ -889,17 +784,121 @@ msgid "" "they wont have any impact unless the inherited setting changes." msgstr "Alguns permisos poden ser heretats dels teus canals ajustos de privacitat, Els quals tenen més prioritat que els ajustos individuals. Pots canviar aquests ajustos aquí pero no tindran cap impacte fins que no canviis els ajustos heretats." -#: ../../Zotlabs/Module/Connedit.php:740 +#: ../../Zotlabs/Module/Connedit.php:787 msgid "Last update:" msgstr "Darrera actualització:" -#: ../../Zotlabs/Module/Directory.php:63 ../../Zotlabs/Module/Display.php:17 -#: ../../Zotlabs/Module/Photos.php:522 ../../Zotlabs/Module/Ratings.php:86 +#: ../../Zotlabs/Module/Display.php:17 ../../Zotlabs/Module/Directory.php:63 +#: ../../Zotlabs/Module/Photos.php:520 ../../Zotlabs/Module/Ratings.php:86 #: ../../Zotlabs/Module/Search.php:17 -#: ../../Zotlabs/Module/Viewconnections.php:20 +#: ../../Zotlabs/Module/Viewconnections.php:23 msgid "Public access denied." msgstr "Accés públic denegat." +#: ../../Zotlabs/Module/Display.php:40 ../../Zotlabs/Module/Filestorage.php:32 +#: ../../Zotlabs/Module/Admin.php:164 ../../Zotlabs/Module/Admin.php:1255 +#: ../../Zotlabs/Module/Admin.php:1561 ../../Zotlabs/Module/Thing.php:89 +#: ../../Zotlabs/Module/Viewsrc.php:24 ../../include/items.php:3369 +msgid "Item not found." +msgstr "Element no trobat." + +#: ../../Zotlabs/Module/Id.php:13 +msgid "First Name" +msgstr "Nom" + +#: ../../Zotlabs/Module/Id.php:14 +msgid "Last Name" +msgstr "Cognoms" + +#: ../../Zotlabs/Module/Id.php:15 +msgid "Nickname" +msgstr "Àlies" + +#: ../../Zotlabs/Module/Id.php:16 +msgid "Full Name" +msgstr "Nom Sencer" + +#: ../../Zotlabs/Module/Id.php:17 ../../Zotlabs/Module/Id.php:18 +#: ../../Zotlabs/Module/Admin.php:1035 ../../Zotlabs/Module/Admin.php:1047 +#: ../../include/network.php:2203 +msgid "Email" +msgstr "Correu electrónic" + +#: ../../Zotlabs/Module/Id.php:19 ../../Zotlabs/Module/Id.php:20 +#: ../../Zotlabs/Module/Id.php:21 ../../Zotlabs/Lib/Apps.php:238 +msgid "Profile Photo" +msgstr "Foto del Perfil" + +#: ../../Zotlabs/Module/Id.php:22 +msgid "Profile Photo 16px" +msgstr "Foto del Perfil 16px" + +#: ../../Zotlabs/Module/Id.php:23 +msgid "Profile Photo 32px" +msgstr "Foto del Perfil 32px" + +#: ../../Zotlabs/Module/Id.php:24 +msgid "Profile Photo 48px" +msgstr "Foto del Perfil 48px" + +#: ../../Zotlabs/Module/Id.php:25 +msgid "Profile Photo 64px" +msgstr "Foto del Perfil 64px" + +#: ../../Zotlabs/Module/Id.php:26 +msgid "Profile Photo 80px" +msgstr "Foto del Perfil 80px" + +#: ../../Zotlabs/Module/Id.php:27 +msgid "Profile Photo 128px" +msgstr "Foto del Perfil 128px" + +#: ../../Zotlabs/Module/Id.php:28 +msgid "Timezone" +msgstr "Zona horària" + +#: ../../Zotlabs/Module/Id.php:29 ../../Zotlabs/Module/Profiles.php:731 +msgid "Homepage URL" +msgstr "URL de la pàgina d'inici" + +#: ../../Zotlabs/Module/Id.php:30 ../../Zotlabs/Lib/Apps.php:236 +msgid "Language" +msgstr "Idioma" + +#: ../../Zotlabs/Module/Id.php:31 +msgid "Birth Year" +msgstr "Any de Naixement" + +#: ../../Zotlabs/Module/Id.php:32 +msgid "Birth Month" +msgstr "Mes de Naixement" + +#: ../../Zotlabs/Module/Id.php:33 +msgid "Birth Day" +msgstr "Dia de Naixement" + +#: ../../Zotlabs/Module/Id.php:34 +msgid "Birthdate" +msgstr "Aniversari" + +#: ../../Zotlabs/Module/Id.php:35 ../../Zotlabs/Module/Profiles.php:454 +msgid "Gender" +msgstr "Gènere" + +#: ../../Zotlabs/Module/Id.php:108 ../../include/selectors.php:49 +#: ../../include/selectors.php:66 +msgid "Male" +msgstr "Masculí" + +#: ../../Zotlabs/Module/Id.php:110 ../../include/selectors.php:49 +#: ../../include/selectors.php:66 +msgid "Female" +msgstr "Femení" + +#: ../../Zotlabs/Module/Follow.php:34 +msgid "Channel added." +msgstr "S'ha afegit el canal." + #: ../../Zotlabs/Module/Directory.php:243 #, php-format msgid "%d rating" @@ -919,12 +918,12 @@ msgstr "Estatus:" msgid "Homepage: " msgstr "Pàgina Personal:" -#: ../../Zotlabs/Module/Directory.php:306 ../../include/channel.php:1183 +#: ../../Zotlabs/Module/Directory.php:306 ../../include/channel.php:1223 msgid "Age:" msgstr "Edat:" -#: ../../Zotlabs/Module/Directory.php:311 ../../include/event.php:52 -#: ../../include/event.php:84 ../../include/channel.php:1027 +#: ../../Zotlabs/Module/Directory.php:311 ../../include/channel.php:1066 +#: ../../include/event.php:52 ../../include/event.php:84 #: ../../include/bb2diaspora.php:507 msgid "Location:" msgstr "Localització:" @@ -933,18 +932,18 @@ msgstr "Localització:" msgid "Description:" msgstr "Descripció:" -#: ../../Zotlabs/Module/Directory.php:322 ../../include/channel.php:1199 +#: ../../Zotlabs/Module/Directory.php:322 ../../include/channel.php:1239 msgid "Hometown:" msgstr "Ciutat Natal:" -#: ../../Zotlabs/Module/Directory.php:324 ../../include/channel.php:1207 +#: ../../Zotlabs/Module/Directory.php:324 ../../include/channel.php:1247 msgid "About:" msgstr "Sobre:" #: ../../Zotlabs/Module/Directory.php:325 ../../Zotlabs/Module/Match.php:68 -#: ../../Zotlabs/Module/Suggest.php:56 ../../include/widgets.php:147 -#: ../../include/widgets.php:184 ../../include/connections.php:78 -#: ../../include/conversation.php:956 ../../include/channel.php:1012 +#: ../../Zotlabs/Module/Suggest.php:56 ../../include/channel.php:1051 +#: ../../include/connections.php:78 ../../include/conversation.php:959 +#: ../../include/widgets.php:147 ../../include/widgets.php:184 msgid "Connect" msgstr "Connecta " @@ -1020,38 +1019,322 @@ msgstr "De més Antic a més Nou" msgid "No entries (some entries may be hidden)." msgstr "Sense entrades (algunes podrien estar amagades)." -#: ../../Zotlabs/Module/Display.php:40 ../../Zotlabs/Module/Filestorage.php:33 -#: ../../Zotlabs/Module/Admin.php:164 ../../Zotlabs/Module/Admin.php:1255 -#: ../../Zotlabs/Module/Admin.php:1561 ../../Zotlabs/Module/Thing.php:89 -#: ../../Zotlabs/Module/Viewsrc.php:24 ../../include/items.php:3359 -msgid "Item not found." -msgstr "Element no trobat." +#: ../../Zotlabs/Module/Connect.php:61 ../../Zotlabs/Module/Connect.php:109 +msgid "Continue" +msgstr "Continua" + +#: ../../Zotlabs/Module/Connect.php:90 +msgid "Premium Channel Setup" +msgstr "Configuració de Canals Premium" + +#: ../../Zotlabs/Module/Connect.php:92 +msgid "Enable premium channel connection restrictions" +msgstr "Habilita les restriccions de connexió del canal premium" + +#: ../../Zotlabs/Module/Connect.php:93 +msgid "" +"Please enter your restrictions or conditions, such as paypal receipt, usage " +"guidelines, etc." +msgstr "Si us plau, introdueixi les restriccions o condicions, com ara el rebut de PayPal, les pautes d'ús, etc." + +#: ../../Zotlabs/Module/Connect.php:95 ../../Zotlabs/Module/Connect.php:115 +msgid "" +"This channel may require additional steps or acknowledgement of the " +"following conditions prior to connecting:" +msgstr "Aquest canal pot requerir passos addicionals o reconeixement de les següents condicions abans de connectar:" + +#: ../../Zotlabs/Module/Connect.php:96 +msgid "" +"Potential connections will then see the following text before proceeding:" +msgstr "Connexions potencials veuran el següent text abans de continuar:" + +#: ../../Zotlabs/Module/Connect.php:97 ../../Zotlabs/Module/Connect.php:118 +msgid "" +"By continuing, I certify that I have complied with any instructions provided" +" on this page." +msgstr "En continuar, certifico que he complert amb totes les instruccions proporcionades en aquesta pàgina." + +#: ../../Zotlabs/Module/Connect.php:106 +msgid "(No specific instructions have been provided by the channel owner.)" +msgstr "(No s'han proporcionat instruccions específiques pel propietari del canal.)" + +#: ../../Zotlabs/Module/Connect.php:114 +msgid "Restricted or Premium Channel" +msgstr "Canal Restringit o Premium" + +#: ../../Zotlabs/Module/Events.php:25 +msgid "Calendar entries imported." +msgstr "Entrades de Calendari importades." + +#: ../../Zotlabs/Module/Events.php:27 +msgid "No calendar entries found." +msgstr "No es troben entrades decalendari." + +#: ../../Zotlabs/Module/Events.php:104 +msgid "Event can not end before it has started." +msgstr "L'esdeveniment ha de començar abans d'acabar." + +#: ../../Zotlabs/Module/Events.php:106 ../../Zotlabs/Module/Events.php:115 +#: ../../Zotlabs/Module/Events.php:135 +msgid "Unable to generate preview." +msgstr "No s'ha pogut generar la vista prèvia." + +#: ../../Zotlabs/Module/Events.php:113 +msgid "Event title and start time are required." +msgstr "Cal indicar l'inici i el final de l'esdeveniment." + +#: ../../Zotlabs/Module/Events.php:133 ../../Zotlabs/Module/Events.php:258 +msgid "Event not found." +msgstr "No s'ha trobat l'esdeveniment." + +#: ../../Zotlabs/Module/Events.php:253 ../../Zotlabs/Module/Like.php:372 +#: ../../Zotlabs/Module/Tagger.php:51 ../../include/conversation.php:123 +#: ../../include/text.php:1924 ../../include/event.php:951 +msgid "event" +msgstr "succés" + +#: ../../Zotlabs/Module/Events.php:448 +msgid "Edit event title" +msgstr "Edita el títol d'esdeveniment" + +#: ../../Zotlabs/Module/Events.php:448 +msgid "Event title" +msgstr "Títol esdeveniment" + +#: ../../Zotlabs/Module/Events.php:448 ../../Zotlabs/Module/Events.php:453 +#: ../../Zotlabs/Module/Appman.php:115 ../../Zotlabs/Module/Appman.php:116 +#: ../../Zotlabs/Module/Profiles.php:709 ../../Zotlabs/Module/Profiles.php:713 +#: ../../include/datetime.php:245 +msgid "Required" +msgstr "Requerit" + +#: ../../Zotlabs/Module/Events.php:450 +msgid "Categories (comma-separated list)" +msgstr "Categories (llista separada per comes)" + +#: ../../Zotlabs/Module/Events.php:451 +msgid "Edit Category" +msgstr "Editar Categoria" + +#: ../../Zotlabs/Module/Events.php:451 +msgid "Category" +msgstr "Categoria" + +#: ../../Zotlabs/Module/Events.php:454 +msgid "Edit start date and time" +msgstr "Editar data i hora d'inici" + +#: ../../Zotlabs/Module/Events.php:454 +msgid "Start date and time" +msgstr "Data i hora d'inici" + +#: ../../Zotlabs/Module/Events.php:455 ../../Zotlabs/Module/Events.php:458 +msgid "Finish date and time are not known or not relevant" +msgstr "L'ora de finalització no es coneix o es irrelevant." + +#: ../../Zotlabs/Module/Events.php:457 +msgid "Edit finish date and time" +msgstr "Editar la data i hora de finalització" + +#: ../../Zotlabs/Module/Events.php:457 +msgid "Finish date and time" +msgstr "Data i hora de finalització" + +#: ../../Zotlabs/Module/Events.php:459 ../../Zotlabs/Module/Events.php:460 +msgid "Adjust for viewer timezone" +msgstr "Ajusta a la zona horària del visitant." + +#: ../../Zotlabs/Module/Events.php:459 +msgid "" +"Important for events that happen in a particular place. Not practical for " +"global holidays." +msgstr "És important per esdeveniments locals, però pels globals no és pràctic." + +#: ../../Zotlabs/Module/Events.php:461 +msgid "Edit Description" +msgstr "Editar la Descripció" + +#: ../../Zotlabs/Module/Events.php:461 ../../Zotlabs/Module/Appman.php:117 +#: ../../Zotlabs/Module/Rbmark.php:101 +msgid "Description" +msgstr "Descripció" + +#: ../../Zotlabs/Module/Events.php:463 +msgid "Edit Location" +msgstr "Editar la localització" + +#: ../../Zotlabs/Module/Events.php:463 ../../Zotlabs/Module/Profiles.php:477 +#: ../../Zotlabs/Module/Profiles.php:698 ../../Zotlabs/Module/Locs.php:117 +#: ../../Zotlabs/Module/Pubsites.php:41 ../../include/js_strings.php:25 +msgid "Location" +msgstr "Localització" + +#: ../../Zotlabs/Module/Events.php:466 ../../Zotlabs/Module/Events.php:468 +msgid "Share this event" +msgstr "Comparteix aquest esdeveniment" + +#: ../../Zotlabs/Module/Events.php:469 ../../Zotlabs/Module/Photos.php:1091 +#: ../../Zotlabs/Module/Webpages.php:201 ../../Zotlabs/Lib/ThreadItem.php:719 +#: ../../include/page_widgets.php:43 ../../include/conversation.php:1198 +msgid "Preview" +msgstr "Avanç" + +#: ../../Zotlabs/Module/Events.php:470 ../../include/conversation.php:1247 +msgid "Permission settings" +msgstr "Ajustos de permisos" + +#: ../../Zotlabs/Module/Events.php:475 +msgid "Advanced Options" +msgstr "Opcions Avançades" + +#: ../../Zotlabs/Module/Events.php:587 ../../Zotlabs/Module/Cal.php:259 +msgid "l, F j" +msgstr "l, j \\d\\e/\\d' F" + +#: ../../Zotlabs/Module/Events.php:609 +msgid "Edit event" +msgstr "Edita l'esdeveniment" + +#: ../../Zotlabs/Module/Events.php:611 +msgid "Delete event" +msgstr "Esborra l'esdeveniment" + +#: ../../Zotlabs/Module/Events.php:636 ../../Zotlabs/Module/Cal.php:308 +#: ../../include/text.php:1712 +msgid "Link to Source" +msgstr "Enllaç a la Font" + +#: ../../Zotlabs/Module/Events.php:645 +msgid "calendar" +msgstr "calendari" + +#: ../../Zotlabs/Module/Events.php:664 ../../Zotlabs/Module/Cal.php:331 +msgid "Edit Event" +msgstr "Editar l'Esdeveniment" + +#: ../../Zotlabs/Module/Events.php:664 ../../Zotlabs/Module/Cal.php:331 +msgid "Create Event" +msgstr "Crear Esdeveniment" + +#: ../../Zotlabs/Module/Events.php:665 ../../Zotlabs/Module/Events.php:674 +#: ../../Zotlabs/Module/Cal.php:332 ../../Zotlabs/Module/Cal.php:339 +#: ../../Zotlabs/Module/Photos.php:947 +msgid "Previous" +msgstr "Anterior" + +#: ../../Zotlabs/Module/Events.php:666 ../../Zotlabs/Module/Events.php:675 +#: ../../Zotlabs/Module/Cal.php:333 ../../Zotlabs/Module/Cal.php:340 +#: ../../Zotlabs/Module/Photos.php:956 ../../Zotlabs/Module/Setup.php:267 +msgid "Next" +msgstr "Pròxim" + +#: ../../Zotlabs/Module/Events.php:667 ../../Zotlabs/Module/Cal.php:334 +msgid "Export" +msgstr "Exporta" + +#: ../../Zotlabs/Module/Events.php:670 ../../Zotlabs/Module/Layouts.php:197 +#: ../../Zotlabs/Module/Pubsites.php:47 ../../Zotlabs/Module/Blocks.php:166 +#: ../../Zotlabs/Module/Webpages.php:200 ../../include/page_widgets.php:42 +msgid "View" +msgstr "Mostra" + +#: ../../Zotlabs/Module/Events.php:671 +msgid "Month" +msgstr "" + +#: ../../Zotlabs/Module/Events.php:672 +msgid "Week" +msgstr "" + +#: ../../Zotlabs/Module/Events.php:673 +msgid "Day" +msgstr "" + +#: ../../Zotlabs/Module/Events.php:676 ../../Zotlabs/Module/Cal.php:341 +msgid "Today" +msgstr "Avui" + +#: ../../Zotlabs/Module/Events.php:707 +msgid "Event removed" +msgstr "S'ha eliminat l'esdeveniment" + +#: ../../Zotlabs/Module/Events.php:710 +msgid "Failed to remove event" +msgstr "No s'ha pogut esborrar l'esdeveniment" + +#: ../../Zotlabs/Module/Bookmarks.php:53 +msgid "Bookmark added" +msgstr "Favorit afegit" + +#: ../../Zotlabs/Module/Bookmarks.php:75 +msgid "My Bookmarks" +msgstr "Els Meus Favorits" + +#: ../../Zotlabs/Module/Bookmarks.php:86 +msgid "My Connections Bookmarks" +msgstr "Les connexions dels meus Favorits" -#: ../../Zotlabs/Module/Editblock.php:79 ../../Zotlabs/Module/Editblock.php:95 #: ../../Zotlabs/Module/Editpost.php:24 ../../Zotlabs/Module/Editlayout.php:79 -#: ../../Zotlabs/Module/Editwebpage.php:81 +#: ../../Zotlabs/Module/Editwebpage.php:80 +#: ../../Zotlabs/Module/Editblock.php:79 ../../Zotlabs/Module/Editblock.php:95 msgid "Item not found" msgstr "No s'ha trobat l'element" -#: ../../Zotlabs/Module/Editblock.php:124 ../../include/conversation.php:1228 -msgid "Title (optional)" -msgstr "Títol (opcional)" +#: ../../Zotlabs/Module/Editpost.php:35 +msgid "Item is not editable" +msgstr "Article no editable" -#: ../../Zotlabs/Module/Editblock.php:133 -msgid "Edit Block" -msgstr "Editar Bloc" +#: ../../Zotlabs/Module/Editpost.php:106 ../../Zotlabs/Module/Rpost.php:134 +msgid "Edit post" +msgstr "Modifica l'entrada" -#: ../../Zotlabs/Module/Common.php:14 -msgid "No channel." -msgstr "No s'ha trobat el canal" +#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:222 +#: ../../include/nav.php:92 ../../include/conversation.php:1647 +msgid "Photos" +msgstr "Fotos" -#: ../../Zotlabs/Module/Common.php:43 -msgid "Common connections" -msgstr "Connexions en comú" +#: ../../Zotlabs/Module/Fbrowser.php:66 ../../Zotlabs/Module/Fbrowser.php:88 +#: ../../Zotlabs/Module/Admin.php:1406 ../../Zotlabs/Module/Settings.php:645 +#: ../../Zotlabs/Module/Settings.php:671 ../../Zotlabs/Module/Tagrm.php:15 +#: ../../Zotlabs/Module/Tagrm.php:138 ../../Zotlabs/Module/Wiki.php:166 +#: ../../Zotlabs/Module/Wiki.php:202 ../../include/conversation.php:1235 +#: ../../include/conversation.php:1274 +msgid "Cancel" +msgstr "Cancel·la" -#: ../../Zotlabs/Module/Common.php:48 -msgid "No connections in common." -msgstr "No hi ha connexions en comú." +#: ../../Zotlabs/Module/Page.php:40 ../../Zotlabs/Module/Block.php:31 +msgid "Invalid item." +msgstr "Article invàlid." + +#: ../../Zotlabs/Module/Page.php:56 ../../Zotlabs/Module/Cal.php:62 +#: ../../Zotlabs/Module/Block.php:43 ../../Zotlabs/Module/Wall_upload.php:33 +msgid "Channel not found." +msgstr "Canal no trobat." + +#: ../../Zotlabs/Module/Page.php:131 +msgid "" +"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod " +"tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam," +" quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo " +"consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse " +"cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat " +"non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." +msgstr "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." + +#: ../../Zotlabs/Module/Filer.php:52 +msgid "Save to Folder:" +msgstr "Guardar en la Carpeta" + +#: ../../Zotlabs/Module/Filer.php:52 +msgid "- select -" +msgstr "- selecciona -" + +#: ../../Zotlabs/Module/Filer.php:53 ../../Zotlabs/Module/Admin.php:2033 +#: ../../Zotlabs/Module/Admin.php:2053 ../../Zotlabs/Module/Rbmark.php:32 +#: ../../Zotlabs/Module/Rbmark.php:104 ../../include/text.php:926 +#: ../../include/text.php:938 ../../include/widgets.php:201 +msgid "Save" +msgstr "Guardar" #: ../../Zotlabs/Module/Connections.php:56 #: ../../Zotlabs/Module/Connections.php:161 @@ -1079,7 +1362,7 @@ msgstr "Arxivades" #: ../../Zotlabs/Module/Connections.php:76 #: ../../Zotlabs/Module/Connections.php:86 ../../Zotlabs/Module/Menu.php:116 -#: ../../include/conversation.php:1535 +#: ../../include/conversation.php:1550 msgid "New" msgstr "Nou" @@ -1166,15 +1449,15 @@ msgstr "Ignorar connexió" msgid "Recent activity" msgstr "Activitat recent" -#: ../../Zotlabs/Module/Connections.php:302 ../../Zotlabs/Lib/Apps.php:208 -#: ../../include/text.php:875 ../../include/nav.php:186 +#: ../../Zotlabs/Module/Connections.php:302 ../../Zotlabs/Lib/Apps.php:209 +#: ../../include/nav.php:188 ../../include/text.php:855 msgid "Connections" msgstr "Connexions" #: ../../Zotlabs/Module/Connections.php:306 ../../Zotlabs/Module/Search.php:44 -#: ../../Zotlabs/Lib/Apps.php:228 ../../include/text.php:945 -#: ../../include/text.php:957 ../../include/nav.php:165 -#: ../../include/acl_selectors.php:276 +#: ../../Zotlabs/Lib/Apps.php:230 ../../include/nav.php:167 +#: ../../include/text.php:925 ../../include/text.php:937 +#: ../../include/acl_selectors.php:274 msgid "Search" msgstr "Cerca" @@ -1187,7 +1470,7 @@ msgid "Connections search" msgstr "Cerca connexions" #: ../../Zotlabs/Module/Cover_photo.php:58 -#: ../../Zotlabs/Module/Profile_photo.php:79 +#: ../../Zotlabs/Module/Profile_photo.php:61 msgid "Image uploaded but image cropping failed." msgstr "S'ha pujat la imatge però no s'ha pogut retallar." @@ -1197,66 +1480,66 @@ msgid "Cover Photos" msgstr "Fotos de Portada" #: ../../Zotlabs/Module/Cover_photo.php:154 -#: ../../Zotlabs/Module/Profile_photo.php:133 +#: ../../Zotlabs/Module/Profile_photo.php:135 msgid "Image resize failed." msgstr "No s'ha pogut escalar la imatge." #: ../../Zotlabs/Module/Cover_photo.php:168 -#: ../../Zotlabs/Module/Profile_photo.php:192 ../../include/photos.php:144 +#: ../../Zotlabs/Module/Profile_photo.php:196 ../../include/photos.php:148 msgid "Unable to process image" msgstr "incapaç de processar la imatge" #: ../../Zotlabs/Module/Cover_photo.php:192 -#: ../../Zotlabs/Module/Profile_photo.php:217 +#: ../../Zotlabs/Module/Profile_photo.php:223 msgid "Image upload failed." msgstr "La pujada de la imatge va fracassar." #: ../../Zotlabs/Module/Cover_photo.php:210 -#: ../../Zotlabs/Module/Profile_photo.php:236 +#: ../../Zotlabs/Module/Profile_photo.php:242 msgid "Unable to process image." msgstr "Incapaç de processar l'imatge." -#: ../../Zotlabs/Module/Cover_photo.php:233 ../../include/items.php:4270 +#: ../../Zotlabs/Module/Cover_photo.php:233 ../../include/items.php:4283 msgid "female" msgstr "femení" -#: ../../Zotlabs/Module/Cover_photo.php:234 ../../include/items.php:4271 +#: ../../Zotlabs/Module/Cover_photo.php:234 ../../include/items.php:4284 #, php-format msgid "%1$s updated her %2$s" msgstr "%1$s actualitzà el seu %2$s" -#: ../../Zotlabs/Module/Cover_photo.php:235 ../../include/items.php:4272 +#: ../../Zotlabs/Module/Cover_photo.php:235 ../../include/items.php:4285 msgid "male" msgstr "masculí" -#: ../../Zotlabs/Module/Cover_photo.php:236 ../../include/items.php:4273 +#: ../../Zotlabs/Module/Cover_photo.php:236 ../../include/items.php:4286 #, php-format msgid "%1$s updated his %2$s" msgstr "%1$s actualitzà el seu %2$s" -#: ../../Zotlabs/Module/Cover_photo.php:238 ../../include/items.php:4275 +#: ../../Zotlabs/Module/Cover_photo.php:238 ../../include/items.php:4288 #, php-format msgid "%1$s updated their %2$s" msgstr "%1$s actualitzà els seus %2$s" -#: ../../Zotlabs/Module/Cover_photo.php:240 ../../include/channel.php:1661 +#: ../../Zotlabs/Module/Cover_photo.php:240 ../../include/channel.php:1726 msgid "cover photo" msgstr "Foto de la portada" #: ../../Zotlabs/Module/Cover_photo.php:303 #: ../../Zotlabs/Module/Cover_photo.php:318 -#: ../../Zotlabs/Module/Profile_photo.php:283 -#: ../../Zotlabs/Module/Profile_photo.php:324 +#: ../../Zotlabs/Module/Profile_photo.php:300 +#: ../../Zotlabs/Module/Profile_photo.php:341 msgid "Photo not available." msgstr "Foto no disponible." #: ../../Zotlabs/Module/Cover_photo.php:354 -#: ../../Zotlabs/Module/Profile_photo.php:365 +#: ../../Zotlabs/Module/Profile_photo.php:387 msgid "Upload File:" msgstr "Puja Arxiu:" #: ../../Zotlabs/Module/Cover_photo.php:355 -#: ../../Zotlabs/Module/Profile_photo.php:366 +#: ../../Zotlabs/Module/Profile_photo.php:388 msgid "Select a profile:" msgstr "Tria un perfil:" @@ -1265,200 +1548,69 @@ msgid "Upload Cover Photo" msgstr "Puja Foto de Portada" #: ../../Zotlabs/Module/Cover_photo.php:361 -#: ../../Zotlabs/Module/Profile_photo.php:374 -#: ../../Zotlabs/Module/Settings.php:985 +#: ../../Zotlabs/Module/Profile_photo.php:396 +#: ../../Zotlabs/Module/Settings.php:1080 msgid "or" msgstr "o" #: ../../Zotlabs/Module/Cover_photo.php:361 -#: ../../Zotlabs/Module/Profile_photo.php:374 +#: ../../Zotlabs/Module/Profile_photo.php:396 msgid "skip this step" msgstr "salta aquest pas" #: ../../Zotlabs/Module/Cover_photo.php:361 -#: ../../Zotlabs/Module/Profile_photo.php:374 +#: ../../Zotlabs/Module/Profile_photo.php:396 msgid "select a photo from your photo albums" msgstr "tria una foto del teu àlbum de fotos" #: ../../Zotlabs/Module/Cover_photo.php:377 -#: ../../Zotlabs/Module/Profile_photo.php:390 +#: ../../Zotlabs/Module/Profile_photo.php:415 msgid "Crop Image" msgstr "Retalla Imatge" #: ../../Zotlabs/Module/Cover_photo.php:378 -#: ../../Zotlabs/Module/Profile_photo.php:391 +#: ../../Zotlabs/Module/Profile_photo.php:416 msgid "Please adjust the image cropping for optimum viewing." msgstr "Si us plau, retalla la imatge per a una optima visualització" #: ../../Zotlabs/Module/Cover_photo.php:380 -#: ../../Zotlabs/Module/Profile_photo.php:393 +#: ../../Zotlabs/Module/Profile_photo.php:418 msgid "Done Editing" msgstr "Edició Feta" -#: ../../Zotlabs/Module/Editpost.php:35 -msgid "Item is not editable" -msgstr "Article no editable" +#: ../../Zotlabs/Module/Impel.php:41 ../../include/bbcode.php:192 +msgid "webpage" +msgstr "pàgina web" -#: ../../Zotlabs/Module/Editpost.php:106 ../../Zotlabs/Module/Rpost.php:135 -msgid "Edit post" -msgstr "Modifica l'entrada" +#: ../../Zotlabs/Module/Impel.php:46 ../../include/bbcode.php:198 +msgid "block" +msgstr "bloc" -#: ../../Zotlabs/Module/Events.php:26 -msgid "Calendar entries imported." -msgstr "Entrades de Calendari importades." +#: ../../Zotlabs/Module/Impel.php:51 ../../include/bbcode.php:195 +msgid "layout" +msgstr "disposició" -#: ../../Zotlabs/Module/Events.php:28 -msgid "No calendar entries found." -msgstr "No es troben entrades decalendari." +#: ../../Zotlabs/Module/Impel.php:58 ../../include/bbcode.php:201 +msgid "menu" +msgstr "menú" -#: ../../Zotlabs/Module/Events.php:105 -msgid "Event can not end before it has started." -msgstr "L'esdeveniment ha de començar abans d'acabar." +#: ../../Zotlabs/Module/Impel.php:187 +#, php-format +msgid "%s element installed" +msgstr "%s element instal·lat" -#: ../../Zotlabs/Module/Events.php:107 ../../Zotlabs/Module/Events.php:116 -#: ../../Zotlabs/Module/Events.php:136 -msgid "Unable to generate preview." -msgstr "No s'ha pogut generar la vista prèvia." +#: ../../Zotlabs/Module/Impel.php:190 +#, php-format +msgid "%s element installation failed" +msgstr "%s instal·lació d'element va fallar" -#: ../../Zotlabs/Module/Events.php:114 -msgid "Event title and start time are required." -msgstr "Cal indicar l'inici i el final de l'esdeveniment." +#: ../../Zotlabs/Module/Cal.php:69 +msgid "Permissions denied." +msgstr "Permís denegat." -#: ../../Zotlabs/Module/Events.php:134 ../../Zotlabs/Module/Events.php:259 -msgid "Event not found." -msgstr "No s'ha trobat l'esdeveniment." - -#: ../../Zotlabs/Module/Events.php:254 ../../Zotlabs/Module/Like.php:373 -#: ../../Zotlabs/Module/Tagger.php:51 ../../include/event.php:949 -#: ../../include/text.php:1943 ../../include/conversation.php:123 -msgid "event" -msgstr "succés" - -#: ../../Zotlabs/Module/Events.php:449 -msgid "Edit event title" -msgstr "Edita el títol d'esdeveniment" - -#: ../../Zotlabs/Module/Events.php:449 -msgid "Event title" -msgstr "Títol esdeveniment" - -#: ../../Zotlabs/Module/Events.php:449 ../../Zotlabs/Module/Events.php:454 -#: ../../Zotlabs/Module/Profiles.php:709 ../../Zotlabs/Module/Profiles.php:713 -#: ../../Zotlabs/Module/Appman.php:115 ../../Zotlabs/Module/Appman.php:116 -#: ../../include/datetime.php:245 -msgid "Required" -msgstr "Requerit" - -#: ../../Zotlabs/Module/Events.php:451 -msgid "Categories (comma-separated list)" -msgstr "Categories (llista separada per comes)" - -#: ../../Zotlabs/Module/Events.php:452 -msgid "Edit Category" -msgstr "Editar Categoria" - -#: ../../Zotlabs/Module/Events.php:452 -msgid "Category" -msgstr "Categoria" - -#: ../../Zotlabs/Module/Events.php:455 -msgid "Edit start date and time" -msgstr "Editar data i hora d'inici" - -#: ../../Zotlabs/Module/Events.php:455 -msgid "Start date and time" -msgstr "Data i hora d'inici" - -#: ../../Zotlabs/Module/Events.php:456 ../../Zotlabs/Module/Events.php:459 -msgid "Finish date and time are not known or not relevant" -msgstr "L'ora de finalització no es coneix o es irrelevant." - -#: ../../Zotlabs/Module/Events.php:458 -msgid "Edit finish date and time" -msgstr "Editar la data i hora de finalització" - -#: ../../Zotlabs/Module/Events.php:458 -msgid "Finish date and time" -msgstr "Data i hora de finalització" - -#: ../../Zotlabs/Module/Events.php:460 ../../Zotlabs/Module/Events.php:461 -msgid "Adjust for viewer timezone" -msgstr "Ajusta a la zona horària del visitant." - -#: ../../Zotlabs/Module/Events.php:460 -msgid "" -"Important for events that happen in a particular place. Not practical for " -"global holidays." -msgstr "És important per esdeveniments locals, però pels globals no és pràctic." - -#: ../../Zotlabs/Module/Events.php:462 -msgid "Edit Description" -msgstr "Editar la Descripció" - -#: ../../Zotlabs/Module/Events.php:462 ../../Zotlabs/Module/Appman.php:117 -#: ../../Zotlabs/Module/Rbmark.php:101 -msgid "Description" -msgstr "Descripció" - -#: ../../Zotlabs/Module/Events.php:464 -msgid "Edit Location" -msgstr "Editar la localització" - -#: ../../Zotlabs/Module/Events.php:464 ../../Zotlabs/Module/Locs.php:117 -#: ../../Zotlabs/Module/Profiles.php:477 ../../Zotlabs/Module/Profiles.php:698 -#: ../../Zotlabs/Module/Pubsites.php:41 ../../include/js_strings.php:25 -msgid "Location" -msgstr "Localització" - -#: ../../Zotlabs/Module/Events.php:467 ../../Zotlabs/Module/Events.php:469 -msgid "Share this event" -msgstr "Comparteix aquest esdeveniment" - -#: ../../Zotlabs/Module/Events.php:470 ../../Zotlabs/Module/Photos.php:1093 -#: ../../Zotlabs/Module/Webpages.php:194 ../../Zotlabs/Lib/ThreadItem.php:719 -#: ../../include/conversation.php:1187 ../../include/page_widgets.php:40 -msgid "Preview" -msgstr "Avanç" - -#: ../../Zotlabs/Module/Events.php:471 ../../include/conversation.php:1232 -msgid "Permission settings" -msgstr "Ajustos de permisos" - -#: ../../Zotlabs/Module/Events.php:476 -msgid "Advanced Options" -msgstr "Opcions Avançades" - -#: ../../Zotlabs/Module/Events.php:610 -msgid "Edit event" -msgstr "Edita l'esdeveniment" - -#: ../../Zotlabs/Module/Events.php:612 -msgid "Delete event" -msgstr "Esborra l'esdeveniment" - -#: ../../Zotlabs/Module/Events.php:646 -msgid "calendar" -msgstr "calendari" - -#: ../../Zotlabs/Module/Events.php:706 -msgid "Event removed" -msgstr "S'ha eliminat l'esdeveniment" - -#: ../../Zotlabs/Module/Events.php:709 -msgid "Failed to remove event" -msgstr "No s'ha pogut esborrar l'esdeveniment" - -#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:220 -#: ../../include/nav.php:92 ../../include/conversation.php:1632 -msgid "Photos" -msgstr "Fotos" - -#: ../../Zotlabs/Module/Fbrowser.php:66 ../../Zotlabs/Module/Fbrowser.php:88 -#: ../../Zotlabs/Module/Admin.php:1406 ../../Zotlabs/Module/Settings.php:591 -#: ../../Zotlabs/Module/Settings.php:617 ../../Zotlabs/Module/Tagrm.php:15 -#: ../../Zotlabs/Module/Tagrm.php:138 ../../include/conversation.php:1259 -msgid "Cancel" -msgstr "Cancel·la" +#: ../../Zotlabs/Module/Cal.php:337 +msgid "Import" +msgstr "Importar" #: ../../Zotlabs/Module/Dirsearch.php:25 ../../Zotlabs/Module/Regdir.php:49 msgid "This site is not a directory server" @@ -1468,112 +1620,184 @@ msgstr "Aquest lloc web no és un servidor de directori" msgid "This directory server requires an access token" msgstr "Aquest servidor de directori requereix un token de accès" -#: ../../Zotlabs/Module/Filer.php:52 -msgid "Save to Folder:" -msgstr "Guardar en la Carpeta" +#: ../../Zotlabs/Module/Chat.php:25 ../../Zotlabs/Module/Channel.php:28 +#: ../../Zotlabs/Module/Wiki.php:20 +msgid "You must be logged in to see this page." +msgstr "Has d'estar identificat per a veure aquesta pàgina." -#: ../../Zotlabs/Module/Filer.php:52 -msgid "- select -" -msgstr "- selecciona -" +#: ../../Zotlabs/Module/Chat.php:181 +msgid "Room not found" +msgstr "No s'ha trobat la sala" -#: ../../Zotlabs/Module/Filer.php:53 ../../Zotlabs/Module/Admin.php:2033 -#: ../../Zotlabs/Module/Admin.php:2053 ../../Zotlabs/Module/Rbmark.php:32 -#: ../../Zotlabs/Module/Rbmark.php:104 ../../include/text.php:946 -#: ../../include/text.php:958 ../../include/widgets.php:201 -msgid "Save" -msgstr "Guardar" +#: ../../Zotlabs/Module/Chat.php:197 +msgid "Leave Room" +msgstr "Abandona la sala" -#: ../../Zotlabs/Module/Dreport.php:27 +#: ../../Zotlabs/Module/Chat.php:198 +msgid "Delete Room" +msgstr "Esborra Sala" + +#: ../../Zotlabs/Module/Chat.php:199 +msgid "I am away right now" +msgstr "Absent" + +#: ../../Zotlabs/Module/Chat.php:200 +msgid "I am online" +msgstr "Estic connectat/da" + +#: ../../Zotlabs/Module/Chat.php:202 +msgid "Bookmark this room" +msgstr "Fes favorit aquest xat" + +#: ../../Zotlabs/Module/Chat.php:205 ../../Zotlabs/Module/Mail.php:197 +#: ../../Zotlabs/Module/Mail.php:306 ../../include/conversation.php:1181 +msgid "Please enter a link URL:" +msgstr "Si us plau entra l'enllaç URL:" + +#: ../../Zotlabs/Module/Chat.php:206 ../../Zotlabs/Module/Mail.php:250 +#: ../../Zotlabs/Module/Mail.php:375 ../../Zotlabs/Lib/ThreadItem.php:722 +#: ../../include/conversation.php:1271 +msgid "Encrypt text" +msgstr "Text encriptat" + +#: ../../Zotlabs/Module/Chat.php:207 ../../Zotlabs/Module/Editwebpage.php:146 +#: ../../Zotlabs/Module/Mail.php:244 ../../Zotlabs/Module/Mail.php:369 +#: ../../Zotlabs/Module/Editblock.php:111 ../../include/conversation.php:1146 +msgid "Insert web link" +msgstr "Insereix enllaç web" + +#: ../../Zotlabs/Module/Chat.php:218 +msgid "Feature disabled." +msgstr "Funcionalitat desactivada." + +#: ../../Zotlabs/Module/Chat.php:232 +msgid "New Chatroom" +msgstr "Nova sala per a Xerrar" + +#: ../../Zotlabs/Module/Chat.php:233 +msgid "Chatroom name" +msgstr "Nom de la sala de xat" + +#: ../../Zotlabs/Module/Chat.php:234 +msgid "Expiration of chats (minutes)" +msgstr "Expiració dels chats (minuts)" + +#: ../../Zotlabs/Module/Chat.php:235 ../../Zotlabs/Module/Filestorage.php:152 +#: ../../Zotlabs/Module/Photos.php:669 ../../Zotlabs/Module/Photos.php:1043 +#: ../../Zotlabs/Module/Thing.php:313 ../../Zotlabs/Module/Thing.php:359 +#: ../../include/acl_selectors.php:281 +msgid "Permissions" +msgstr "Permisos " + +#: ../../Zotlabs/Module/Chat.php:246 +#, php-format +msgid "%1$s's Chatrooms" +msgstr "%1$s de Xats" + +#: ../../Zotlabs/Module/Chat.php:251 +msgid "No chatrooms available" +msgstr "No hi ha sales de xat disponibles" + +#: ../../Zotlabs/Module/Chat.php:252 ../../Zotlabs/Module/Profiles.php:778 +#: ../../Zotlabs/Module/Manage.php:143 +msgid "Create New" +msgstr "Crear Nou" + +#: ../../Zotlabs/Module/Chat.php:255 +msgid "Expiration" +msgstr "Expiració" + +#: ../../Zotlabs/Module/Chat.php:256 +msgid "min" +msgstr "min" + +#: ../../Zotlabs/Module/Dreport.php:44 msgid "Invalid message" msgstr "Missatge invàlid." -#: ../../Zotlabs/Module/Dreport.php:59 +#: ../../Zotlabs/Module/Dreport.php:76 msgid "no results" msgstr "sense resultats" -#: ../../Zotlabs/Module/Dreport.php:64 +#: ../../Zotlabs/Module/Dreport.php:91 +msgid "channel sync processed" +msgstr "sincronització del canal processada" + +#: ../../Zotlabs/Module/Dreport.php:95 +msgid "queued" +msgstr "Posat en cua" + +#: ../../Zotlabs/Module/Dreport.php:99 +msgid "posted" +msgstr "enviat" + +#: ../../Zotlabs/Module/Dreport.php:103 +msgid "accepted for delivery" +msgstr "acceptat per entregar" + +#: ../../Zotlabs/Module/Dreport.php:107 +msgid "updated" +msgstr "actualitzat" + +#: ../../Zotlabs/Module/Dreport.php:110 +msgid "update ignored" +msgstr "actualització ignorada" + +#: ../../Zotlabs/Module/Dreport.php:113 +msgid "permission denied" +msgstr "permís denegat" + +#: ../../Zotlabs/Module/Dreport.php:117 +msgid "recipient not found" +msgstr "Contenidor no trobat" + +#: ../../Zotlabs/Module/Dreport.php:120 +msgid "mail recalled" +msgstr "Recupera el correu" + +#: ../../Zotlabs/Module/Dreport.php:123 +msgid "duplicate mail received" +msgstr "rebut correu duplicat" + +#: ../../Zotlabs/Module/Dreport.php:126 +msgid "mail delivered" +msgstr "correu entregat" + +#: ../../Zotlabs/Module/Dreport.php:146 #, php-format msgid "Delivery report for %1$s" msgstr "Informe de lliurament per %1$s" -#: ../../Zotlabs/Module/Dreport.php:78 -msgid "channel sync processed" -msgstr "sincronització del canal processada" +#: ../../Zotlabs/Module/Dreport.php:149 +msgid "Options" +msgstr "" -#: ../../Zotlabs/Module/Dreport.php:82 -msgid "queued" -msgstr "Posat en cua" +#: ../../Zotlabs/Module/Dreport.php:150 +msgid "Redeliver" +msgstr "" -#: ../../Zotlabs/Module/Dreport.php:86 -msgid "posted" -msgstr "enviat" - -#: ../../Zotlabs/Module/Dreport.php:90 -msgid "accepted for delivery" -msgstr "acceptat per entregar" - -#: ../../Zotlabs/Module/Dreport.php:94 -msgid "updated" -msgstr "actualitzat" - -#: ../../Zotlabs/Module/Dreport.php:97 -msgid "update ignored" -msgstr "actualització ignorada" - -#: ../../Zotlabs/Module/Dreport.php:100 -msgid "permission denied" -msgstr "permís denegat" - -#: ../../Zotlabs/Module/Dreport.php:104 -msgid "recipient not found" -msgstr "Contenidor no trobat" - -#: ../../Zotlabs/Module/Dreport.php:107 -msgid "mail recalled" -msgstr "Recupera el correu" - -#: ../../Zotlabs/Module/Dreport.php:110 -msgid "duplicate mail received" -msgstr "rebut correu duplicat" - -#: ../../Zotlabs/Module/Dreport.php:113 -msgid "mail delivered" -msgstr "correu entregat" - -#: ../../Zotlabs/Module/Editlayout.php:126 -#: ../../Zotlabs/Module/Layouts.php:127 ../../Zotlabs/Module/Layouts.php:186 +#: ../../Zotlabs/Module/Editlayout.php:127 +#: ../../Zotlabs/Module/Layouts.php:128 ../../Zotlabs/Module/Layouts.php:188 msgid "Layout Name" msgstr "Nom del Format Gràfic" -#: ../../Zotlabs/Module/Editlayout.php:127 -#: ../../Zotlabs/Module/Layouts.php:130 +#: ../../Zotlabs/Module/Editlayout.php:128 +#: ../../Zotlabs/Module/Layouts.php:131 msgid "Layout Description (Optional)" msgstr "Descripció del Format (Opcional)" -#: ../../Zotlabs/Module/Editlayout.php:135 +#: ../../Zotlabs/Module/Editlayout.php:136 msgid "Edit Layout" msgstr "Edita Format Gràfic" -#: ../../Zotlabs/Module/Editwebpage.php:143 +#: ../../Zotlabs/Module/Editwebpage.php:142 msgid "Page link" msgstr "Enllaç de la pàgina" -#: ../../Zotlabs/Module/Editwebpage.php:169 +#: ../../Zotlabs/Module/Editwebpage.php:168 msgid "Edit Webpage" msgstr "Edita la Pàgina Web" -#: ../../Zotlabs/Module/Follow.php:34 -msgid "Channel added." -msgstr "S'ha afegit el canal." - -#: ../../Zotlabs/Module/Acl.php:227 -msgid "network" -msgstr "xarxa" - -#: ../../Zotlabs/Module/Acl.php:237 -msgid "RSS" -msgstr "RSS" - #: ../../Zotlabs/Module/Group.php:24 msgid "Privacy group created." msgstr "Creat grup privat." @@ -1583,7 +1807,7 @@ msgid "Could not create privacy group." msgstr "No es pot crear el grup privat." #: ../../Zotlabs/Module/Group.php:42 ../../Zotlabs/Module/Group.php:141 -#: ../../include/items.php:3893 +#: ../../include/items.php:3902 msgid "Privacy group not found." msgstr "No es troben grups privats." @@ -1627,31 +1851,57 @@ msgstr "Tots els Canals Connectats" msgid "Click on a channel to add or remove." msgstr "Clic sobre el canal per afegir o esborrar." -#: ../../Zotlabs/Module/Ffsapi.php:12 -msgid "Share content from Firefox to $Projectname" -msgstr "Compartir contingut des de Firefox a $Projectname" +#: ../../Zotlabs/Module/Appman.php:37 ../../Zotlabs/Module/Appman.php:53 +msgid "App installed." +msgstr "Aplicació instal·lada." -#: ../../Zotlabs/Module/Ffsapi.php:15 -msgid "Activate the Firefox $Projectname provider" -msgstr "Activar el proveïdor de $Projectname a Firefox" +#: ../../Zotlabs/Module/Appman.php:46 +msgid "Malformed app." +msgstr "Aplicació amb errors" -#: ../../Zotlabs/Module/Api.php:61 ../../Zotlabs/Module/Api.php:85 -msgid "Authorize application connection" -msgstr "Autoritza la connexió de l'aplicació" +#: ../../Zotlabs/Module/Appman.php:104 +msgid "Embed code" +msgstr "Codi embegut" -#: ../../Zotlabs/Module/Api.php:62 -msgid "Return to your app and insert this Securty Code:" -msgstr "Torna a la teva aplicació i insereix aquest Codi de Seguretat:" +#: ../../Zotlabs/Module/Appman.php:110 ../../include/widgets.php:107 +msgid "Edit App" +msgstr "Edita l'Aplicació" -#: ../../Zotlabs/Module/Api.php:72 -msgid "Please login to continue." -msgstr "Si et plau, identifica't per continuar." +#: ../../Zotlabs/Module/Appman.php:110 +msgid "Create App" +msgstr "Crea l'Aplicació" -#: ../../Zotlabs/Module/Api.php:87 -msgid "" -"Do you want to authorize this application to access your posts and contacts," -" and/or create new posts for you?" -msgstr "Vols autoritzar a aquesta aplicació l'accés a les teves entrades i contactes i/o a crear noves entrades com si fos tu mateix." +#: ../../Zotlabs/Module/Appman.php:115 +msgid "Name of app" +msgstr "Nom de l'Aplicació" + +#: ../../Zotlabs/Module/Appman.php:116 +msgid "Location (URL) of app" +msgstr "Ubicació (URL) de l'aplicació" + +#: ../../Zotlabs/Module/Appman.php:118 +msgid "Photo icon URL" +msgstr "Foto icona URL" + +#: ../../Zotlabs/Module/Appman.php:118 +msgid "80 x 80 pixels - optional" +msgstr "80 x 80 pixels - opcional" + +#: ../../Zotlabs/Module/Appman.php:119 +msgid "Categories (optional, comma separated list)" +msgstr "Categories (opcional, lista separada per comes)" + +#: ../../Zotlabs/Module/Appman.php:120 +msgid "Version ID" +msgstr "Versió ID" + +#: ../../Zotlabs/Module/Appman.php:121 +msgid "Price of app" +msgstr "Preu de l'aplicació" + +#: ../../Zotlabs/Module/Appman.php:122 +msgid "Location (URL) to purchase app" +msgstr "Ubicació (URL) per comprar l'aplicació" #: ../../Zotlabs/Module/Help.php:26 msgid "Documentation Search" @@ -1663,8 +1913,8 @@ msgid "Help:" msgstr "Ajuda:" #: ../../Zotlabs/Module/Help.php:85 ../../Zotlabs/Module/Help.php:90 -#: ../../Zotlabs/Module/Layouts.php:183 ../../Zotlabs/Lib/Apps.php:223 -#: ../../include/nav.php:159 +#: ../../Zotlabs/Module/Layouts.php:185 ../../Zotlabs/Lib/Apps.php:225 +#: ../../include/nav.php:161 msgid "Help" msgstr "Ajuda" @@ -1672,335 +1922,124 @@ msgstr "Ajuda" msgid "$Projectname Documentation" msgstr "$Projectname Documentació" -#: ../../Zotlabs/Module/Filestorage.php:88 -msgid "Permission Denied." -msgstr "Permisos Denegats." - -#: ../../Zotlabs/Module/Filestorage.php:104 -msgid "File not found." -msgstr "Arxiu no torbat." - -#: ../../Zotlabs/Module/Filestorage.php:147 -msgid "Edit file permissions" -msgstr "Edita els permisos d'arxiu" - -#: ../../Zotlabs/Module/Filestorage.php:156 -msgid "Set/edit permissions" -msgstr "Canvia/edita permisos" - -#: ../../Zotlabs/Module/Filestorage.php:157 -msgid "Include all files and sub folders" -msgstr "Inclou tots als arxius i subdirectoris" - -#: ../../Zotlabs/Module/Filestorage.php:158 -msgid "Return to file list" -msgstr "Tornar al llistat d'arxius" - -#: ../../Zotlabs/Module/Filestorage.php:160 -msgid "Copy/paste this code to attach file to a post" -msgstr "Copia/enganxa aquest codi per a adjuntar un arxiu a l'entrada" - -#: ../../Zotlabs/Module/Filestorage.php:161 -msgid "Copy/paste this URL to link file from a web page" -msgstr "Copia/enganxa aquesta URL per a enllaçar l'arxiu d'una pàgina web" - -#: ../../Zotlabs/Module/Filestorage.php:163 -msgid "Share this file" -msgstr "Comparteix l'arxiu" - -#: ../../Zotlabs/Module/Filestorage.php:164 -msgid "Show URL to this file" -msgstr "Mostra la URL d'aquest arxiu" - -#: ../../Zotlabs/Module/Filestorage.php:165 -msgid "Notify your contacts about this file" -msgstr "Notifica als teus contactes aquest arxiu" - -#: ../../Zotlabs/Module/Apps.php:47 ../../include/widgets.php:102 -#: ../../include/nav.php:163 -msgid "Apps" -msgstr "Aplicatius" - #: ../../Zotlabs/Module/Attach.php:13 msgid "Item not available." msgstr "Article no disponible." -#: ../../Zotlabs/Module/Import.php:32 -#, php-format -msgid "Your service plan only allows %d channels." -msgstr "El teu paquet de serveis només admet %d canals." +#: ../../Zotlabs/Module/Pdledit.php:18 +msgid "Layout updated." +msgstr "S'ha actualitzat la disposició." -#: ../../Zotlabs/Module/Import.php:70 ../../Zotlabs/Module/Import_items.php:42 -msgid "Nothing to import." -msgstr "No hi ha res a importar." +#: ../../Zotlabs/Module/Pdledit.php:34 ../../Zotlabs/Module/Pdledit.php:61 +msgid "Edit System Page Description" +msgstr "Editor del Sistema de Descripció de Pàgines" -#: ../../Zotlabs/Module/Import.php:94 ../../Zotlabs/Module/Import_items.php:66 -msgid "Unable to download data from old server" -msgstr "No s'han pogut descarregar les dades del servidor antic" +#: ../../Zotlabs/Module/Pdledit.php:56 +msgid "Layout not found." +msgstr "No s'ha trobat cap disposició de pàgina." -#: ../../Zotlabs/Module/Import.php:100 -#: ../../Zotlabs/Module/Import_items.php:72 -msgid "Imported file is empty." -msgstr "El fitxer importat està buit." +#: ../../Zotlabs/Module/Pdledit.php:62 +msgid "Module Name:" +msgstr "Nom del mòdul:" -#: ../../Zotlabs/Module/Import.php:122 -#: ../../Zotlabs/Module/Import_items.php:86 -#, php-format -msgid "Warning: Database versions differ by %1$d updates." -msgstr "Atenció: Les versions de la Base de Dades difereixen en %1$d actualitzacions." +#: ../../Zotlabs/Module/Pdledit.php:63 +msgid "Layout Help" +msgstr "Ajuda per la disposició de pàgina" -#: ../../Zotlabs/Module/Import.php:150 ../../include/import.php:86 -msgid "Cloned channel not found. Import failed." -msgstr "No s'ha pogut importar el canal perquè el canal clonat no s'ha trobat." +#: ../../Zotlabs/Module/Ffsapi.php:12 +msgid "Share content from Firefox to $Projectname" +msgstr "Compartir contingut des de Firefox a $Projectname" -#: ../../Zotlabs/Module/Import.php:160 -msgid "No channel. Import failed." -msgstr "Sense canal. No s'ha pogut importar." +#: ../../Zotlabs/Module/Ffsapi.php:15 +msgid "Activate the Firefox $Projectname provider" +msgstr "Activar el proveïdor de $Projectname a Firefox" -#: ../../Zotlabs/Module/Import.php:510 -#: ../../include/Import/import_diaspora.php:142 -msgid "Import completed." -msgstr "S'ha completat la importació." +#: ../../Zotlabs/Module/Acl.php:312 +msgid "network" +msgstr "xarxa" -#: ../../Zotlabs/Module/Import.php:532 -msgid "You must be logged in to use this feature." -msgstr "Has d'estar registrat per fer servir aquesta funcionalitat." +#: ../../Zotlabs/Module/Acl.php:322 +msgid "RSS" +msgstr "RSS" -#: ../../Zotlabs/Module/Import.php:537 -msgid "Import Channel" -msgstr "Importa un canal" +#: ../../Zotlabs/Module/Filestorage.php:87 +msgid "Permission Denied." +msgstr "Permisos Denegats." -#: ../../Zotlabs/Module/Import.php:538 -msgid "" -"Use this form to import an existing channel from a different server/hub. You" -" may retrieve the channel identity from the old server/hub via the network " -"or provide an export file." -msgstr "Empra aquest formulari per importar un canal existent en un altre servidor/concentrador. Pots recuperar el canal des de l'antic servidor/concentrador via la xarxa o mitjançant un fitxer d'exportació" +#: ../../Zotlabs/Module/Filestorage.php:103 +msgid "File not found." +msgstr "Arxiu no torbat." -#: ../../Zotlabs/Module/Import.php:539 -#: ../../Zotlabs/Module/Import_items.php:119 -msgid "File to Upload" -msgstr "Fitxer a pujar" +#: ../../Zotlabs/Module/Filestorage.php:146 +msgid "Edit file permissions" +msgstr "Edita els permisos d'arxiu" -#: ../../Zotlabs/Module/Import.php:540 -msgid "Or provide the old server/hub details" -msgstr "O proveeix els detalls de l'antic servidor/node" +#: ../../Zotlabs/Module/Filestorage.php:155 +msgid "Set/edit permissions" +msgstr "Canvia/edita permisos" -#: ../../Zotlabs/Module/Import.php:541 -msgid "Your old identity address (xyz@example.com)" -msgstr "La teva adreça de canal antiga. El format és canal@exemple.org" +#: ../../Zotlabs/Module/Filestorage.php:156 +msgid "Include all files and sub folders" +msgstr "Inclou tots als arxius i subdirectoris" -#: ../../Zotlabs/Module/Import.php:542 -msgid "Your old login email address" -msgstr "La teva adreça de correu electrònic antiga" +#: ../../Zotlabs/Module/Filestorage.php:157 +msgid "Return to file list" +msgstr "Tornar al llistat d'arxius" -#: ../../Zotlabs/Module/Import.php:543 -msgid "Your old login password" -msgstr "La teva contrasenya antiga" +#: ../../Zotlabs/Module/Filestorage.php:159 +msgid "Copy/paste this code to attach file to a post" +msgstr "Copia/enganxa aquest codi per a adjuntar un arxiu a l'entrada" -#: ../../Zotlabs/Module/Import.php:544 -msgid "" -"For either option, please choose whether to make this hub your new primary " -"address, or whether your old location should continue this role. You will be" -" able to post from either location, but only one can be marked as the " -"primary location for files, photos, and media." -msgstr "Per a qualsevol de les opcions, escull si vols fer primària l'adreça d'aquest node o mantenir l'anterior com a primària. Podràs penjar entrades des de totes dues adreces, però per als fitxers, imatges i altres en cal una de primària." +#: ../../Zotlabs/Module/Filestorage.php:160 +msgid "Copy/paste this URL to link file from a web page" +msgstr "Copia/enganxa aquesta URL per a enllaçar l'arxiu d'una pàgina web" -#: ../../Zotlabs/Module/Import.php:545 -msgid "Make this hub my primary location" -msgstr "Fes d'aquest node la meva ubicació primària" +#: ../../Zotlabs/Module/Filestorage.php:162 +msgid "Share this file" +msgstr "Comparteix l'arxiu" -#: ../../Zotlabs/Module/Import.php:546 -msgid "" -"Import existing posts if possible (experimental - limited by available " -"memory" -msgstr "Importa les entrades existents si es possible (experimental - limitat per la memòria disponible" +#: ../../Zotlabs/Module/Filestorage.php:163 +msgid "Show URL to this file" +msgstr "Mostra la URL d'aquest arxiu" -#: ../../Zotlabs/Module/Import.php:547 -msgid "" -"This process may take several minutes to complete. Please submit the form " -"only once and leave this page open until finished." -msgstr "Aquest procès pot trigar minuts en completar. Si et plau envia el formulari només una vegada i manté aquesta pàgina oberta fins que finalitzi." +#: ../../Zotlabs/Module/Filestorage.php:164 +msgid "Notify your contacts about this file" +msgstr "Notifica als teus contactes aquest arxiu" -#: ../../Zotlabs/Module/Item.php:178 -msgid "Unable to locate original post." -msgstr "No s'ha pogut trobar l'entrada original." - -#: ../../Zotlabs/Module/Item.php:427 -msgid "Empty post discarded." -msgstr "S'ha descartat l'entrada perquè no té contingut." - -#: ../../Zotlabs/Module/Item.php:467 -msgid "Executable content type not permitted to this channel." -msgstr "No està permès el contingut de tipus executable en aquest canal." - -#: ../../Zotlabs/Module/Item.php:847 -msgid "Duplicate post suppressed." -msgstr "Publicació duplicada s'ha suprimit." - -#: ../../Zotlabs/Module/Item.php:977 -msgid "System error. Post not saved." -msgstr "Hi ha hagut un error del sistema. L'entrada no s'ha desat." - -#: ../../Zotlabs/Module/Item.php:1241 -msgid "Unable to obtain post information from database." -msgstr "No s'ha pogut obtenir informació de l'entrada a la base de dades." - -#: ../../Zotlabs/Module/Item.php:1248 -#, php-format -msgid "You have reached your limit of %1$.0f top level posts." -msgstr "Has assolit el teu límit de %1$.0f entrades (descomptant comentaris)." - -#: ../../Zotlabs/Module/Item.php:1255 -#, php-format -msgid "You have reached your limit of %1$.0f webpages." -msgstr "Has assolit el teu limit de %1$.0f pàgines web." - -#: ../../Zotlabs/Module/Layouts.php:181 ../../include/text.php:2267 +#: ../../Zotlabs/Module/Layouts.php:183 ../../include/text.php:2240 msgid "Layouts" msgstr "Format Gràfic" -#: ../../Zotlabs/Module/Layouts.php:183 +#: ../../Zotlabs/Module/Layouts.php:185 msgid "Comanche page description language help" msgstr "Pgina d'ajuda del llenguatge Comanche" -#: ../../Zotlabs/Module/Layouts.php:187 +#: ../../Zotlabs/Module/Layouts.php:189 msgid "Layout Description" msgstr "Descripció del Disseny de la Pàgina" -#: ../../Zotlabs/Module/Layouts.php:192 +#: ../../Zotlabs/Module/Layouts.php:190 ../../Zotlabs/Module/Menu.php:114 +#: ../../Zotlabs/Module/Blocks.php:157 ../../Zotlabs/Module/Webpages.php:205 +#: ../../include/page_widgets.php:47 +msgid "Created" +msgstr "Creat" + +#: ../../Zotlabs/Module/Layouts.php:191 ../../Zotlabs/Module/Menu.php:115 +#: ../../Zotlabs/Module/Blocks.php:158 ../../Zotlabs/Module/Webpages.php:206 +#: ../../include/page_widgets.php:48 +msgid "Edited" +msgstr "Editat" + +#: ../../Zotlabs/Module/Layouts.php:193 ../../Zotlabs/Module/Photos.php:1070 +#: ../../Zotlabs/Module/Blocks.php:161 ../../Zotlabs/Module/Webpages.php:195 +#: ../../include/conversation.php:1219 +msgid "Share" +msgstr "Compartir" + +#: ../../Zotlabs/Module/Layouts.php:194 msgid "Download PDL file" msgstr "Descarrega l'arxiu PDL" -#: ../../Zotlabs/Module/Home.php:61 ../../Zotlabs/Module/Home.php:69 -#: ../../Zotlabs/Module/Siteinfo.php:65 -msgid "$Projectname" -msgstr "$Projectname" - -#: ../../Zotlabs/Module/Home.php:79 -#, php-format -msgid "Welcome to %s" -msgstr "Benvingut a %s" - -#: ../../Zotlabs/Module/Id.php:13 -msgid "First Name" -msgstr "Nom" - -#: ../../Zotlabs/Module/Id.php:14 -msgid "Last Name" -msgstr "Cognoms" - -#: ../../Zotlabs/Module/Id.php:15 -msgid "Nickname" -msgstr "Àlies" - -#: ../../Zotlabs/Module/Id.php:16 -msgid "Full Name" -msgstr "Nom Sencer" - -#: ../../Zotlabs/Module/Id.php:17 ../../Zotlabs/Module/Id.php:18 -#: ../../Zotlabs/Module/Admin.php:1035 ../../Zotlabs/Module/Admin.php:1047 -#: ../../include/network.php:2151 ../../boot.php:1705 -msgid "Email" -msgstr "Correu electrónic" - -#: ../../Zotlabs/Module/Id.php:19 ../../Zotlabs/Module/Id.php:20 -#: ../../Zotlabs/Module/Id.php:21 ../../Zotlabs/Lib/Apps.php:236 -msgid "Profile Photo" -msgstr "Foto del Perfil" - -#: ../../Zotlabs/Module/Id.php:22 -msgid "Profile Photo 16px" -msgstr "Foto del Perfil 16px" - -#: ../../Zotlabs/Module/Id.php:23 -msgid "Profile Photo 32px" -msgstr "Foto del Perfil 32px" - -#: ../../Zotlabs/Module/Id.php:24 -msgid "Profile Photo 48px" -msgstr "Foto del Perfil 48px" - -#: ../../Zotlabs/Module/Id.php:25 -msgid "Profile Photo 64px" -msgstr "Foto del Perfil 64px" - -#: ../../Zotlabs/Module/Id.php:26 -msgid "Profile Photo 80px" -msgstr "Foto del Perfil 80px" - -#: ../../Zotlabs/Module/Id.php:27 -msgid "Profile Photo 128px" -msgstr "Foto del Perfil 128px" - -#: ../../Zotlabs/Module/Id.php:28 -msgid "Timezone" -msgstr "Zona horària" - -#: ../../Zotlabs/Module/Id.php:29 ../../Zotlabs/Module/Profiles.php:731 -msgid "Homepage URL" -msgstr "URL de la pàgina d'inici" - -#: ../../Zotlabs/Module/Id.php:30 ../../Zotlabs/Lib/Apps.php:234 -msgid "Language" -msgstr "Idioma" - -#: ../../Zotlabs/Module/Id.php:31 -msgid "Birth Year" -msgstr "Any de Naixement" - -#: ../../Zotlabs/Module/Id.php:32 -msgid "Birth Month" -msgstr "Mes de Naixement" - -#: ../../Zotlabs/Module/Id.php:33 -msgid "Birth Day" -msgstr "Dia de Naixement" - -#: ../../Zotlabs/Module/Id.php:34 -msgid "Birthdate" -msgstr "Aniversari" - -#: ../../Zotlabs/Module/Id.php:35 ../../Zotlabs/Module/Profiles.php:454 -msgid "Gender" -msgstr "Gènere" - -#: ../../Zotlabs/Module/Id.php:108 ../../include/selectors.php:49 -#: ../../include/selectors.php:66 -msgid "Male" -msgstr "Masculí" - -#: ../../Zotlabs/Module/Id.php:110 ../../include/selectors.php:49 -#: ../../include/selectors.php:66 -msgid "Female" -msgstr "Femení" - -#: ../../Zotlabs/Module/Impel.php:41 ../../include/bbcode.php:192 -msgid "webpage" -msgstr "pàgina web" - -#: ../../Zotlabs/Module/Impel.php:46 ../../include/bbcode.php:198 -msgid "block" -msgstr "bloc" - -#: ../../Zotlabs/Module/Impel.php:51 ../../include/bbcode.php:195 -msgid "layout" -msgstr "disposició" - -#: ../../Zotlabs/Module/Impel.php:58 ../../include/bbcode.php:201 -msgid "menu" -msgstr "menú" - -#: ../../Zotlabs/Module/Impel.php:196 -#, php-format -msgid "%s element installed" -msgstr "%s element instal·lat" - -#: ../../Zotlabs/Module/Impel.php:199 -#, php-format -msgid "%s element installation failed" -msgstr "%s instal·lació d'element va fallar" - #: ../../Zotlabs/Module/Like.php:19 msgid "Like/Dislike" msgstr "M'agrada / No m'agrada" @@ -2036,1180 +2075,65 @@ msgstr "El canal està inactiu." msgid "Previous action reversed." msgstr "S'ha desfet l'acció anterior." -#: ../../Zotlabs/Module/Like.php:371 ../../Zotlabs/Module/Subthread.php:87 -#: ../../Zotlabs/Module/Tagger.php:47 ../../include/text.php:1940 -#: ../../include/conversation.php:120 +#: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87 +#: ../../Zotlabs/Module/Tagger.php:47 ../../include/conversation.php:120 +#: ../../include/text.php:1921 msgid "photo" msgstr "foto" -#: ../../Zotlabs/Module/Like.php:371 ../../Zotlabs/Module/Subthread.php:87 -#: ../../include/text.php:1946 ../../include/conversation.php:148 +#: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87 +#: ../../include/conversation.php:148 ../../include/text.php:1927 msgid "status" msgstr "estat" -#: ../../Zotlabs/Module/Like.php:420 ../../include/conversation.php:164 +#: ../../Zotlabs/Module/Like.php:419 ../../include/conversation.php:164 #, php-format msgid "%1$s likes %2$s's %3$s" msgstr "%1$s agrada %2$s de %3$s" -#: ../../Zotlabs/Module/Like.php:422 ../../include/conversation.php:167 +#: ../../Zotlabs/Module/Like.php:421 ../../include/conversation.php:167 #, php-format msgid "%1$s doesn't like %2$s's %3$s" msgstr "%1$s no agrada %2$s de %3$s" -#: ../../Zotlabs/Module/Like.php:424 +#: ../../Zotlabs/Module/Like.php:423 #, php-format msgid "%1$s agrees with %2$s's %3$s" msgstr "%1$s està d'acord amb %3$s de %2$s" -#: ../../Zotlabs/Module/Like.php:426 +#: ../../Zotlabs/Module/Like.php:425 #, php-format msgid "%1$s doesn't agree with %2$s's %3$s" msgstr "%1$s no està d'acord amb %3$s de %2$s" -#: ../../Zotlabs/Module/Like.php:428 +#: ../../Zotlabs/Module/Like.php:427 #, php-format msgid "%1$s abstains from a decision on %2$s's %3$s" msgstr "%1$s s'abstén en %3$s de %2$s" -#: ../../Zotlabs/Module/Like.php:430 +#: ../../Zotlabs/Module/Like.php:429 #, php-format msgid "%1$s is attending %2$s's %3$s" msgstr "%1$s assistirà a %3$s de %2$s" -#: ../../Zotlabs/Module/Like.php:432 +#: ../../Zotlabs/Module/Like.php:431 #, php-format msgid "%1$s is not attending %2$s's %3$s" msgstr "%1$s no assistirà a %3$s de %2$s" -#: ../../Zotlabs/Module/Like.php:434 +#: ../../Zotlabs/Module/Like.php:433 #, php-format msgid "%1$s may attend %2$s's %3$s" msgstr "%1$s potser assistirà a %3$s de %2$s" -#: ../../Zotlabs/Module/Like.php:537 +#: ../../Zotlabs/Module/Like.php:536 msgid "Action completed." msgstr "S'ha completat l'acció." -#: ../../Zotlabs/Module/Like.php:538 +#: ../../Zotlabs/Module/Like.php:537 msgid "Thank you." msgstr "Gràcies." -#: ../../Zotlabs/Module/Import_items.php:102 -msgid "Import completed" -msgstr "S'ha completat la importació" - -#: ../../Zotlabs/Module/Import_items.php:117 -msgid "Import Items" -msgstr "Importa Articles" - -#: ../../Zotlabs/Module/Import_items.php:118 -msgid "" -"Use this form to import existing posts and content from an export file." -msgstr "Empra aquest formulari per importar entrades existents i contingut d'un arxiu d'exportació." - -#: ../../Zotlabs/Module/Invite.php:29 -msgid "Total invitation limit exceeded." -msgstr "El límit total invitacions s'ha superat." - -#: ../../Zotlabs/Module/Invite.php:53 -#, php-format -msgid "%s : Not a valid email address." -msgstr "%s: adreça de correu electrònic no vàlida." - -#: ../../Zotlabs/Module/Invite.php:63 -msgid "Please join us on $Projectname" -msgstr "Si us plau uneix-te a nosaltres a $Projectname." - -#: ../../Zotlabs/Module/Invite.php:74 -msgid "Invitation limit exceeded. Please contact your site administrator." -msgstr "Límit d'invitacions excedit. Si us plau, poseu-vos en contacte amb l'administrador del lloc." - -#: ../../Zotlabs/Module/Invite.php:79 -#, php-format -msgid "%s : Message delivery failed." -msgstr "%s : Entrega del Missatge fallida." - -#: ../../Zotlabs/Module/Invite.php:83 -#, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "%d missatge enviat." -msgstr[1] "%d missatges enviats." - -#: ../../Zotlabs/Module/Invite.php:102 -msgid "You have no more invitations available" -msgstr "No té més invitacions disponibles" - -#: ../../Zotlabs/Module/Invite.php:133 -msgid "Send invitations" -msgstr "Enviar invitacions" - -#: ../../Zotlabs/Module/Invite.php:134 -msgid "Enter email addresses, one per line:" -msgstr "Introduïu les adreces de correu electrònic, una per línia:" - -#: ../../Zotlabs/Module/Invite.php:135 ../../Zotlabs/Module/Mail.php:249 -msgid "Your message:" -msgstr "El teu missatge:" - -#: ../../Zotlabs/Module/Invite.php:136 -msgid "Please join my community on $Projectname." -msgstr "Si us plau uneix-te la meva comunitat en $Projectname." - -#: ../../Zotlabs/Module/Invite.php:138 -msgid "You will need to supply this invitation code:" -msgstr "Hauràs de facilitar aquest codi d'invitació:" - -#: ../../Zotlabs/Module/Invite.php:139 -msgid "" -"1. Register at any $Projectname location (they are all inter-connected)" -msgstr "1. Pots registrar-te a qualsevol node de $Projectname (estàn tots interconnectats)" - -#: ../../Zotlabs/Module/Invite.php:141 -msgid "2. Enter my $Projectname network address into the site searchbar." -msgstr "2. Escriu la meva adreça de xarxa al $Projectname, a la barra de cerca del lloc." - -#: ../../Zotlabs/Module/Invite.php:142 -msgid "or visit" -msgstr "o visitar" - -#: ../../Zotlabs/Module/Invite.php:144 -msgid "3. Click [Connect]" -msgstr "3. Clicar [Conectar]" - -#: ../../Zotlabs/Module/Lockview.php:61 -msgid "Remote privacy information not available." -msgstr "informació privada remota no disponible." - -#: ../../Zotlabs/Module/Lockview.php:82 -msgid "Visible to:" -msgstr "Visible per:" - -#: ../../Zotlabs/Module/Locs.php:25 ../../Zotlabs/Module/Locs.php:54 -msgid "Location not found." -msgstr "Situació que no es troba." - -#: ../../Zotlabs/Module/Locs.php:62 -msgid "Location lookup failed." -msgstr "Ha fallat la cerca d'ubicació." - -#: ../../Zotlabs/Module/Locs.php:66 -msgid "" -"Please select another location to become primary before removing the primary" -" location." -msgstr "Seleccioneu una altra ubicació per esdevenir primària abans de retirar la ubicació principal." - -#: ../../Zotlabs/Module/Locs.php:95 -msgid "Syncing locations" -msgstr "Sincronitza ubicacions" - -#: ../../Zotlabs/Module/Locs.php:105 -msgid "No locations found." -msgstr "No es troben els llocs." - -#: ../../Zotlabs/Module/Locs.php:116 -msgid "Manage Channel Locations" -msgstr "Gestionar Ubicacions de Canal" - -#: ../../Zotlabs/Module/Locs.php:118 ../../Zotlabs/Module/Profiles.php:470 -#: ../../Zotlabs/Module/Admin.php:1224 -msgid "Address" -msgstr "Adreça" - -#: ../../Zotlabs/Module/Locs.php:119 -msgid "Primary" -msgstr "Primari" - -#: ../../Zotlabs/Module/Locs.php:120 ../../Zotlabs/Module/Menu.php:113 -msgid "Drop" -msgstr "Menysprea" - -#: ../../Zotlabs/Module/Locs.php:122 -msgid "Sync Now" -msgstr "Sincronitza Ara" - -#: ../../Zotlabs/Module/Locs.php:123 -msgid "Please wait several minutes between consecutive operations." -msgstr "Si us plau espera diversos minuts entre operacions consecutives." - -#: ../../Zotlabs/Module/Locs.php:124 -msgid "" -"When possible, drop a location by logging into that website/hub and removing" -" your channel." -msgstr "Quan sigui possible, per desapareixer d'un lloc, accedeix a aquest lloc web/node i elimina el teu canal." - -#: ../../Zotlabs/Module/Locs.php:125 -msgid "Use this form to drop the location if the hub is no longer operating." -msgstr "Empra aquest formulari per desapareixer del lloc si el node ja no està operatiu." - -#: ../../Zotlabs/Module/Magic.php:71 -msgid "Hub not found." -msgstr "Node no trobat." - -#: ../../Zotlabs/Module/Mail.php:38 -msgid "Unable to lookup recipient." -msgstr "Incapaç de trobar el destinatari." - -#: ../../Zotlabs/Module/Mail.php:45 -msgid "Unable to communicate with requested channel." -msgstr "Incapaç de comunicar amb el canal demanat." - -#: ../../Zotlabs/Module/Mail.php:52 -msgid "Cannot verify requested channel." -msgstr "No puc verificar el canal demanat." - -#: ../../Zotlabs/Module/Mail.php:78 -msgid "Selected channel has private message restrictions. Send failed." -msgstr "El canal seleccionat te restriccions sobre els missatges privats. L'enviament ha fallat." - -#: ../../Zotlabs/Module/Mail.php:143 -msgid "Messages" -msgstr "Missatges" - -#: ../../Zotlabs/Module/Mail.php:178 -msgid "Message recalled." -msgstr "Recupera el missatge." - -#: ../../Zotlabs/Module/Mail.php:191 -msgid "Conversation removed." -msgstr "Conversació eliminada." - -#: ../../Zotlabs/Module/Mail.php:206 ../../Zotlabs/Module/Mail.php:315 -msgid "Expires YYYY-MM-DD HH:MM" -msgstr "Expira YYYY-MM-DD HH:MM" - -#: ../../Zotlabs/Module/Mail.php:234 -msgid "Requested channel is not in this network" -msgstr "El canal demanat no hi es en questa xarxa" - -#: ../../Zotlabs/Module/Mail.php:242 -msgid "Send Private Message" -msgstr "Envia Missatge Privat" - -#: ../../Zotlabs/Module/Mail.php:243 ../../Zotlabs/Module/Mail.php:368 -msgid "To:" -msgstr "Per:" - -#: ../../Zotlabs/Module/Mail.php:246 ../../Zotlabs/Module/Mail.php:370 -msgid "Subject:" -msgstr "Assumpte:" - -#: ../../Zotlabs/Module/Mail.php:251 ../../Zotlabs/Module/Mail.php:376 -#: ../../include/conversation.php:1220 -msgid "Attach file" -msgstr "Adjunta arxiu" - -#: ../../Zotlabs/Module/Mail.php:253 -msgid "Send" -msgstr "Envia" - -#: ../../Zotlabs/Module/Mail.php:256 ../../Zotlabs/Module/Mail.php:381 -#: ../../include/conversation.php:1251 -msgid "Set expiration date" -msgstr "Ajusta la data d'expiració" - -#: ../../Zotlabs/Module/Mail.php:340 -msgid "Delete message" -msgstr "Elimina el missatge" - -#: ../../Zotlabs/Module/Mail.php:341 -msgid "Delivery report" -msgstr "Informe d'entrega" - -#: ../../Zotlabs/Module/Mail.php:342 -msgid "Recall message" -msgstr "Recupera el missatge" - -#: ../../Zotlabs/Module/Mail.php:344 -msgid "Message has been recalled." -msgstr "El missatge s'ha recuperat." - -#: ../../Zotlabs/Module/Mail.php:361 -msgid "Delete Conversation" -msgstr "Conversació esborrada" - -#: ../../Zotlabs/Module/Mail.php:363 -msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." -msgstr "Comunicació segura no disponible. Pots respondre des de la pàgina de perfil del remitent." - -#: ../../Zotlabs/Module/Mail.php:367 -msgid "Send Reply" -msgstr "Envia Resposta" - -#: ../../Zotlabs/Module/Mail.php:372 -#, php-format -msgid "Your message for %s (%s):" -msgstr "El teu missatge per %s (%s):" - -#: ../../Zotlabs/Module/Manage.php:136 -#: ../../Zotlabs/Module/New_channel.php:121 -#, php-format -msgid "You have created %1$.0f of %2$.0f allowed channels." -msgstr "Has creat %1$.0f de %2$.0f canals permesos." - -#: ../../Zotlabs/Module/Manage.php:143 -msgid "Create a new channel" -msgstr "Crear un nou canal" - -#: ../../Zotlabs/Module/Manage.php:164 ../../Zotlabs/Lib/Apps.php:213 -#: ../../include/nav.php:206 -msgid "Channel Manager" -msgstr "Gestor de Canals" - -#: ../../Zotlabs/Module/Manage.php:165 -msgid "Current Channel" -msgstr "Canal Actual" - -#: ../../Zotlabs/Module/Manage.php:167 -msgid "Switch to one of your channels by selecting it." -msgstr "Canviar a un altre dels teus canals seleccionant-ho." - -#: ../../Zotlabs/Module/Manage.php:168 -msgid "Default Channel" -msgstr "Canal per Defecte" - -#: ../../Zotlabs/Module/Manage.php:169 -msgid "Make Default" -msgstr "Estableix com a Predeterminat" - -#: ../../Zotlabs/Module/Manage.php:172 -#, php-format -msgid "%d new messages" -msgstr "%d missatges nous" - -#: ../../Zotlabs/Module/Manage.php:173 -#, php-format -msgid "%d new introductions" -msgstr "%d noves presentacions" - -#: ../../Zotlabs/Module/Manage.php:175 -msgid "Delegated Channel" -msgstr "Canal Delegat" - -#: ../../Zotlabs/Module/Lostpass.php:19 -msgid "No valid account found." -msgstr "No es troba un compte vàlid." - -#: ../../Zotlabs/Module/Lostpass.php:33 -msgid "Password reset request issued. Check your email." -msgstr "Sol·licitud de restabliment de contrasenya emesa. Consulta el teu correu electrònic." - -#: ../../Zotlabs/Module/Lostpass.php:39 ../../Zotlabs/Module/Lostpass.php:107 -#, php-format -msgid "Site Member (%s)" -msgstr "Lloc d'Usuari (%s)" - -#: ../../Zotlabs/Module/Lostpass.php:44 -#, php-format -msgid "Password reset requested at %s" -msgstr "S'ha soŀlicitat restablir la contrasenya al hub %s" - -#: ../../Zotlabs/Module/Lostpass.php:67 -msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." -msgstr "Ha fallat el restabliment de contrasenya perquè la no s'ha pogut verificar soŀlicitud. Pot ser que ja ho hàgiu soŀlicitat abans." - -#: ../../Zotlabs/Module/Lostpass.php:90 ../../boot.php:1711 -msgid "Password Reset" -msgstr "Restabliment de contrasenya" - -#: ../../Zotlabs/Module/Lostpass.php:91 -msgid "Your password has been reset as requested." -msgstr "S'ha restablert la vostra contrasenya." - -#: ../../Zotlabs/Module/Lostpass.php:92 -msgid "Your new password is" -msgstr "La nova contrasenya és" - -#: ../../Zotlabs/Module/Lostpass.php:93 -msgid "Save or copy your new password - and then" -msgstr "Desa o copia la nova contrasenya, i després" - -#: ../../Zotlabs/Module/Lostpass.php:94 -msgid "click here to login" -msgstr "fes clic aquí per iniciar sessió" - -#: ../../Zotlabs/Module/Lostpass.php:95 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." -msgstr "Pots canviar la contrasenya a la pàgina Paràmetres, un cop iniciada la sessió." - -#: ../../Zotlabs/Module/Lostpass.php:112 -#, php-format -msgid "Your password has changed at %s" -msgstr "La teva contrasenya a %s ha canviat" - -#: ../../Zotlabs/Module/Lostpass.php:127 -msgid "Forgot your Password?" -msgstr "No recordes la contrasenya?" - -#: ../../Zotlabs/Module/Lostpass.php:128 -msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." -msgstr "Escriu la teva adreça de correu electrònic i envia per restablir la contrasenya. Després revisa el seu correu electrònic per obtenir més instruccions." - -#: ../../Zotlabs/Module/Lostpass.php:129 -msgid "Email Address" -msgstr "Adreça electrònica" - -#: ../../Zotlabs/Module/Lostpass.php:130 -msgid "Reset" -msgstr "Reajustar" - -#: ../../Zotlabs/Module/Menu.php:49 -msgid "Unable to update menu." -msgstr "No s'ha pogut actualitzar el menú." - -#: ../../Zotlabs/Module/Menu.php:60 -msgid "Unable to create menu." -msgstr "No s'ha pogut crear el menú." - -#: ../../Zotlabs/Module/Menu.php:98 ../../Zotlabs/Module/Menu.php:110 -msgid "Menu Name" -msgstr "Nom del menú" - -#: ../../Zotlabs/Module/Menu.php:98 -msgid "Unique name (not visible on webpage) - required" -msgstr "Nom únic (no visible a la pàgina web) - requerit" - -#: ../../Zotlabs/Module/Menu.php:99 ../../Zotlabs/Module/Menu.php:111 -msgid "Menu Title" -msgstr "Títol del menú" - -#: ../../Zotlabs/Module/Menu.php:99 -msgid "Visible on webpage - leave empty for no title" -msgstr "Visible a la pàgina web - deixar buit per a no posar títol" - -#: ../../Zotlabs/Module/Menu.php:100 -msgid "Allow Bookmarks" -msgstr "Permetre Marcadors" - -#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 -msgid "Menu may be used to store saved bookmarks" -msgstr "El menú es pot emprar per a guardar marcadors" - -#: ../../Zotlabs/Module/Menu.php:101 ../../Zotlabs/Module/Menu.php:159 -msgid "Submit and proceed" -msgstr "Envia i procedeix" - -#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2266 -msgid "Menus" -msgstr "Menús" - -#: ../../Zotlabs/Module/Menu.php:117 -msgid "Bookmarks allowed" -msgstr "Marcadors permesos" - -#: ../../Zotlabs/Module/Menu.php:119 -msgid "Delete this menu" -msgstr "Esborra el menú" - -#: ../../Zotlabs/Module/Menu.php:120 ../../Zotlabs/Module/Menu.php:154 -msgid "Edit menu contents" -msgstr "Edita el contingut del menú" - -#: ../../Zotlabs/Module/Menu.php:121 -msgid "Edit this menu" -msgstr "Edita el menú" - -#: ../../Zotlabs/Module/Menu.php:136 -msgid "Menu could not be deleted." -msgstr "El menu no es pot esborrar." - -#: ../../Zotlabs/Module/Menu.php:144 ../../Zotlabs/Module/Mitem.php:28 -msgid "Menu not found." -msgstr "Menú no trobat." - -#: ../../Zotlabs/Module/Menu.php:149 -msgid "Edit Menu" -msgstr "Edita Menú" - -#: ../../Zotlabs/Module/Menu.php:153 -msgid "Add or remove entries to this menu" -msgstr "Afegeix o esborra entrades a aquest menú" - -#: ../../Zotlabs/Module/Menu.php:155 -msgid "Menu name" -msgstr "Nom del Menú" - -#: ../../Zotlabs/Module/Menu.php:155 -msgid "Must be unique, only seen by you" -msgstr "Ha de ser únic, nomes vist per tú" - -#: ../../Zotlabs/Module/Menu.php:156 -msgid "Menu title" -msgstr "Títol del menú" - -#: ../../Zotlabs/Module/Menu.php:156 -msgid "Menu title as seen by others" -msgstr "Títol del menú vist pels altres" - -#: ../../Zotlabs/Module/Menu.php:157 -msgid "Allow bookmarks" -msgstr "Marcadors permesos" - -#: ../../Zotlabs/Module/Menu.php:166 ../../Zotlabs/Module/Mitem.php:120 -#: ../../Zotlabs/Module/Xchan.php:41 -msgid "Not found." -msgstr "No trobat." - -#: ../../Zotlabs/Module/Mood.php:67 ../../include/conversation.php:260 -#, php-format -msgctxt "mood" -msgid "%1$s is %2$s" -msgstr "%1$s es %2$s" - -#: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Lib/Apps.php:225 -msgid "Mood" -msgstr "Ànim" - -#: ../../Zotlabs/Module/Mood.php:136 -msgid "Set your current mood and tell your friends" -msgstr "Estableix el teu estat d'ànim actual i digues-li als teus amics" - -#: ../../Zotlabs/Module/Match.php:26 -msgid "Profile Match" -msgstr "Perfils compatibles" - -#: ../../Zotlabs/Module/Match.php:35 -msgid "No keywords to match. Please add keywords to your default profile." -msgstr "No tens paraules clau al perfil principal per poder cercar perfils semblants." - -#: ../../Zotlabs/Module/Match.php:67 -msgid "is interested in:" -msgstr "té interès en:" - -#: ../../Zotlabs/Module/Match.php:74 -msgid "No matches" -msgstr "No s'han trobat perfils compatibles" - -#: ../../Zotlabs/Module/Network.php:96 -msgid "No such group" -msgstr "No existeix el grup" - -#: ../../Zotlabs/Module/Network.php:136 -msgid "No such channel" -msgstr "No existeix el canal" - -#: ../../Zotlabs/Module/Network.php:141 -msgid "forum" -msgstr "fòrum" - -#: ../../Zotlabs/Module/Network.php:153 -msgid "Search Results For:" -msgstr "Cerca resultats per:" - -#: ../../Zotlabs/Module/Network.php:217 -msgid "Privacy group is empty" -msgstr "el grup privat està vuit" - -#: ../../Zotlabs/Module/Network.php:226 -msgid "Privacy group: " -msgstr "Grup privat:" - -#: ../../Zotlabs/Module/Network.php:252 -msgid "Invalid connection." -msgstr "La connexió és invàlida." - -#: ../../Zotlabs/Module/Notify.php:57 -#: ../../Zotlabs/Module/Notifications.php:98 -msgid "No more system notifications." -msgstr "No hi ha més notificacions del sistema." - -#: ../../Zotlabs/Module/Notify.php:61 -#: ../../Zotlabs/Module/Notifications.php:102 -msgid "System Notifications" -msgstr "Notificacions del sistema" - -#: ../../Zotlabs/Module/Mitem.php:52 -msgid "Unable to create element." -msgstr "Incapaç de crear l'element." - -#: ../../Zotlabs/Module/Mitem.php:76 -msgid "Unable to update menu element." -msgstr "Incapaç d'actualitzar un element del menú." - -#: ../../Zotlabs/Module/Mitem.php:92 -msgid "Unable to add menu element." -msgstr "Incapaç d'afegir l'element del menú." - -#: ../../Zotlabs/Module/Mitem.php:153 ../../Zotlabs/Module/Mitem.php:226 -msgid "Menu Item Permissions" -msgstr "Permisos de l'Article del Menú" - -#: ../../Zotlabs/Module/Mitem.php:154 ../../Zotlabs/Module/Mitem.php:227 -#: ../../Zotlabs/Module/Settings.php:1068 -msgid "(click to open/close)" -msgstr "(clica per obrir/tancar)" - -#: ../../Zotlabs/Module/Mitem.php:156 ../../Zotlabs/Module/Mitem.php:172 -msgid "Link Name" -msgstr "Nom de l'Enllaç" - -#: ../../Zotlabs/Module/Mitem.php:157 ../../Zotlabs/Module/Mitem.php:231 -msgid "Link or Submenu Target" -msgstr "Enllaç o Submenú Objectiu" - -#: ../../Zotlabs/Module/Mitem.php:157 -msgid "Enter URL of the link or select a menu name to create a submenu" -msgstr "Entra la URL de l'enlla´o tria un nom de menú per crear un submenú" - -#: ../../Zotlabs/Module/Mitem.php:158 ../../Zotlabs/Module/Mitem.php:232 -msgid "Use magic-auth if available" -msgstr "Empra magic-auth si esta disponible" - -#: ../../Zotlabs/Module/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:233 -msgid "Open link in new window" -msgstr "Obrir l'enllaç en una nova finestra" - -#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:234 -msgid "Order in list" -msgstr "Ordre per llista" - -#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:234 -msgid "Higher numbers will sink to bottom of listing" -msgstr "Els números més alts aniràn al fons de la llista" - -#: ../../Zotlabs/Module/Mitem.php:161 -msgid "Submit and finish" -msgstr "Envia i termina" - -#: ../../Zotlabs/Module/Mitem.php:162 -msgid "Submit and continue" -msgstr "Envia i continua" - -#: ../../Zotlabs/Module/Mitem.php:170 -msgid "Menu:" -msgstr "Menú:" - -#: ../../Zotlabs/Module/Mitem.php:173 -msgid "Link Target" -msgstr "Enllaç Objectiu" - -#: ../../Zotlabs/Module/Mitem.php:176 -msgid "Edit menu" -msgstr "Edita menú" - -#: ../../Zotlabs/Module/Mitem.php:179 -msgid "Edit element" -msgstr "Edita element" - -#: ../../Zotlabs/Module/Mitem.php:180 -msgid "Drop element" -msgstr "Deixa anar element" - -#: ../../Zotlabs/Module/Mitem.php:181 -msgid "New element" -msgstr "Nou element" - -#: ../../Zotlabs/Module/Mitem.php:182 -msgid "Edit this menu container" -msgstr "Edita aquest contenidor de menú" - -#: ../../Zotlabs/Module/Mitem.php:183 -msgid "Add menu element" -msgstr "Afegeix element de menú" - -#: ../../Zotlabs/Module/Mitem.php:184 -msgid "Delete this menu item" -msgstr "Esborra aquest article del menú" - -#: ../../Zotlabs/Module/Mitem.php:185 -msgid "Edit this menu item" -msgstr "Edita aquest article del menú" - -#: ../../Zotlabs/Module/Mitem.php:202 -msgid "Menu item not found." -msgstr "Article del menú no trobat." - -#: ../../Zotlabs/Module/Mitem.php:215 -msgid "Menu item deleted." -msgstr "Article del menú eliminat." - -#: ../../Zotlabs/Module/Mitem.php:217 -msgid "Menu item could not be deleted." -msgstr "Article del menú no es pot eliminar." - -#: ../../Zotlabs/Module/Mitem.php:224 -msgid "Edit Menu Element" -msgstr "Editar Element del Menú" - -#: ../../Zotlabs/Module/Mitem.php:230 -msgid "Link text" -msgstr "Enllaç de text" - -#: ../../Zotlabs/Module/New_channel.php:128 -#: ../../Zotlabs/Module/Register.php:231 -msgid "Name or caption" -msgstr "Nom o llegenda" - -#: ../../Zotlabs/Module/New_channel.php:128 -#: ../../Zotlabs/Module/Register.php:231 -msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\"" -msgstr "Exemples: \"Pep Gomila\", \"Manel i els seus Cavalls\", \"Fútbol\", \"Grup d'Aviadors\"" - -#: ../../Zotlabs/Module/New_channel.php:130 -#: ../../Zotlabs/Module/Register.php:233 -msgid "Choose a short nickname" -msgstr "Tria un àlies curt" - -#: ../../Zotlabs/Module/New_channel.php:130 -#: ../../Zotlabs/Module/Register.php:233 -#, php-format -msgid "" -"Your nickname will be used to create an easy to remember channel address " -"e.g. nickname%s" -msgstr "El teu àlies serà emprat per crear un nom fàcil per recordar l'adreça del canal p.e. àlies%s" - -#: ../../Zotlabs/Module/New_channel.php:132 -#: ../../Zotlabs/Module/Register.php:235 -msgid "Channel role and privacy" -msgstr "Funció i privacitat del canal" - -#: ../../Zotlabs/Module/New_channel.php:132 -#: ../../Zotlabs/Module/Register.php:235 -msgid "Select a channel role with your privacy requirements." -msgstr "Tria una funció pel canal amb els teus requisits de privacitat." - -#: ../../Zotlabs/Module/New_channel.php:132 -#: ../../Zotlabs/Module/Register.php:235 -msgid "Read more about roles" -msgstr "Llegix més sobre els rols" - -#: ../../Zotlabs/Module/New_channel.php:135 -msgid "Create Channel" -msgstr "Crea un Canal" - -#: ../../Zotlabs/Module/New_channel.php:136 -msgid "" -"A channel is your identity on this network. It can represent a person, a " -"blog, or a forum to name a few. Channels can make connections with other " -"channels to share information with highly detailed permissions." -msgstr "Un canal es la tva identitat en aquesta xarxa. Pot representar una persona, un bloc, o un fòrum per anomenar alguns. Els canals poden connectar-se amb altres canals per compartir informació amb permisos molt detallats." - -#: ../../Zotlabs/Module/New_channel.php:137 -msgid "" -"or import an existing channel from another location." -msgstr "o importa un canal existent des d'un altre ubicació." - -#: ../../Zotlabs/Module/Notifications.php:30 -msgid "Invalid request identifier." -msgstr "Sol·licitud d'identificació invàlida." - -#: ../../Zotlabs/Module/Notifications.php:39 -msgid "Discard" -msgstr "Descarta" - -#: ../../Zotlabs/Module/Notifications.php:103 ../../include/nav.php:191 -msgid "Mark all system notifications seen" -msgstr "Marca totes les notificacions vistes" - -#: ../../Zotlabs/Module/Photos.php:84 -msgid "Page owner information could not be retrieved." -msgstr "La informació del propietari de la pàgina no va poder ser recuperada" - -#: ../../Zotlabs/Module/Photos.php:99 ../../Zotlabs/Module/Photos.php:743 -#: ../../Zotlabs/Module/Profile_photo.php:114 -#: ../../Zotlabs/Module/Profile_photo.php:206 -#: ../../Zotlabs/Module/Profile_photo.php:294 -#: ../../include/photo/photo_driver.php:718 -msgid "Profile Photos" -msgstr "Fotos del Perfil" - -#: ../../Zotlabs/Module/Photos.php:105 ../../Zotlabs/Module/Photos.php:149 -msgid "Album not found." -msgstr "Àlbum no trobat" - -#: ../../Zotlabs/Module/Photos.php:132 -msgid "Delete Album" -msgstr "Esborra Àlbum" - -#: ../../Zotlabs/Module/Photos.php:153 -msgid "" -"Multiple storage folders exist with this album name, but within different " -"directories. Please remove the desired folder or folders using the Files " -"manager" -msgstr "Existeixen moltes carpetes de emmagatzemament amb aquest nom d'àlbum, però en diferents directoris. Si us plau esborra la carpeta o carpetes amb el gestor d'arxius." - -#: ../../Zotlabs/Module/Photos.php:210 ../../Zotlabs/Module/Photos.php:1053 -msgid "Delete Photo" -msgstr "Esborra Foto" - -#: ../../Zotlabs/Module/Photos.php:533 -msgid "No photos selected" -msgstr "No has seleccionat fotos" - -#: ../../Zotlabs/Module/Photos.php:582 -msgid "Access to this item is restricted." -msgstr "L'accés a aquest element esta restringit." - -#: ../../Zotlabs/Module/Photos.php:621 -#, php-format -msgid "%1$.2f MB of %2$.2f MB photo storage used." -msgstr "S'estan fent servir %1$.2f MB de %2$.2f MB de l'espai per a imatges." - -#: ../../Zotlabs/Module/Photos.php:624 -#, php-format -msgid "%1$.2f MB photo storage used." -msgstr "S'estan fent servir %1$.2f MB de l'espai per a imatges." - -#: ../../Zotlabs/Module/Photos.php:660 -msgid "Upload Photos" -msgstr "Puja imatges" - -#: ../../Zotlabs/Module/Photos.php:664 -msgid "Enter an album name" -msgstr "Escriu el nom del àlbum" - -#: ../../Zotlabs/Module/Photos.php:665 -msgid "or select an existing album (doubleclick)" -msgstr "o bé fes doble clic a un d'existent" - -#: ../../Zotlabs/Module/Photos.php:666 -msgid "Create a status post for this upload" -msgstr "Genera una entrada a partir de la pujada" - -#: ../../Zotlabs/Module/Photos.php:667 -msgid "Caption (optional):" -msgstr "Subtítol (opcional):" - -#: ../../Zotlabs/Module/Photos.php:668 -msgid "Description (optional):" -msgstr "Descripció (opcional):" - -#: ../../Zotlabs/Module/Photos.php:695 -msgid "Album name could not be decoded" -msgstr "No s'ha pogut descodificar el nom de l'àlbum" - -#: ../../Zotlabs/Module/Photos.php:743 -msgid "Contact Photos" -msgstr "Imatges de contactes" - -#: ../../Zotlabs/Module/Photos.php:766 -msgid "Show Newest First" -msgstr "Ordena de més nou a més antic" - -#: ../../Zotlabs/Module/Photos.php:768 -msgid "Show Oldest First" -msgstr "Ordena de més antic a més nou" - -#: ../../Zotlabs/Module/Photos.php:792 ../../Zotlabs/Module/Photos.php:1331 -#: ../../include/widgets.php:1499 -msgid "View Photo" -msgstr "Mostra la imatge" - -#: ../../Zotlabs/Module/Photos.php:823 ../../include/widgets.php:1516 -msgid "Edit Album" -msgstr "Modifica l'àlbum" - -#: ../../Zotlabs/Module/Photos.php:870 -msgid "Permission denied. Access to this item may be restricted." -msgstr "S'ha denegat el permís. Pot ser que l'accés estigui restringit." - -#: ../../Zotlabs/Module/Photos.php:872 -msgid "Photo not available" -msgstr "La imatge no està disponible" - -#: ../../Zotlabs/Module/Photos.php:930 -msgid "Use as profile photo" -msgstr "Fes-la imatge de perfil" - -#: ../../Zotlabs/Module/Photos.php:931 -msgid "Use as cover photo" -msgstr "Emprar com a foto de portada" - -#: ../../Zotlabs/Module/Photos.php:938 -msgid "Private Photo" -msgstr "Imatge privada" - -#: ../../Zotlabs/Module/Photos.php:953 -msgid "View Full Size" -msgstr "Mostra a mida completa" - -#: ../../Zotlabs/Module/Photos.php:998 ../../Zotlabs/Module/Admin.php:1437 -#: ../../Zotlabs/Module/Tagrm.php:137 -msgid "Remove" -msgstr "Esborra" - -#: ../../Zotlabs/Module/Photos.php:1032 -msgid "Edit photo" -msgstr "Modifica la imatge" - -#: ../../Zotlabs/Module/Photos.php:1034 -msgid "Rotate CW (right)" -msgstr "Tomba cap a la dreta" - -#: ../../Zotlabs/Module/Photos.php:1035 -msgid "Rotate CCW (left)" -msgstr "Tomba cap a l'esquerra" - -#: ../../Zotlabs/Module/Photos.php:1038 -msgid "Enter a new album name" -msgstr "Escriu el nom del nou àlbum" - -#: ../../Zotlabs/Module/Photos.php:1039 -msgid "or select an existing one (doubleclick)" -msgstr "o bé fes doble clic a un d'existent" - -#: ../../Zotlabs/Module/Photos.php:1042 -msgid "Caption" -msgstr "Llegenda" - -#: ../../Zotlabs/Module/Photos.php:1044 -msgid "Add a Tag" -msgstr "Afegeix una etiqueta" - -#: ../../Zotlabs/Module/Photos.php:1048 -msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" -msgstr "Exemple: @joan, @Paula_Peris, @mar@exemple.org" - -#: ../../Zotlabs/Module/Photos.php:1051 -msgid "Flag as adult in album view" -msgstr "Marca com a contingut adult" - -#: ../../Zotlabs/Module/Photos.php:1070 ../../Zotlabs/Lib/ThreadItem.php:261 -msgid "I like this (toggle)" -msgstr "M'agrada això (canvia)" - -#: ../../Zotlabs/Module/Photos.php:1071 ../../Zotlabs/Lib/ThreadItem.php:262 -msgid "I don't like this (toggle)" -msgstr "No m'agrada això (canvia)" - -#: ../../Zotlabs/Module/Photos.php:1073 ../../Zotlabs/Lib/ThreadItem.php:397 -#: ../../include/conversation.php:740 -msgid "Please wait" -msgstr "Si us plau, espera" - -#: ../../Zotlabs/Module/Photos.php:1089 ../../Zotlabs/Module/Photos.php:1207 -#: ../../Zotlabs/Lib/ThreadItem.php:707 -msgid "This is you" -msgstr "Ets tú" - -#: ../../Zotlabs/Module/Photos.php:1091 ../../Zotlabs/Module/Photos.php:1209 -#: ../../Zotlabs/Lib/ThreadItem.php:709 ../../include/js_strings.php:6 -msgid "Comment" -msgstr "Comentari" - -#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:574 -msgctxt "title" -msgid "Likes" -msgstr "Agrada" - -#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:574 -msgctxt "title" -msgid "Dislikes" -msgstr "Desagrada" - -#: ../../Zotlabs/Module/Photos.php:1108 ../../include/conversation.php:575 -msgctxt "title" -msgid "Agree" -msgstr "Acord" - -#: ../../Zotlabs/Module/Photos.php:1108 ../../include/conversation.php:575 -msgctxt "title" -msgid "Disagree" -msgstr "Desacord" - -#: ../../Zotlabs/Module/Photos.php:1108 ../../include/conversation.php:575 -msgctxt "title" -msgid "Abstain" -msgstr "Abstenirse" - -#: ../../Zotlabs/Module/Photos.php:1109 ../../include/conversation.php:576 -msgctxt "title" -msgid "Attending" -msgstr "Assistint" - -#: ../../Zotlabs/Module/Photos.php:1109 ../../include/conversation.php:576 -msgctxt "title" -msgid "Not attending" -msgstr "Desassistint" - -#: ../../Zotlabs/Module/Photos.php:1109 ../../include/conversation.php:576 -msgctxt "title" -msgid "Might attend" -msgstr "Podrien assistir" - -#: ../../Zotlabs/Module/Photos.php:1126 ../../Zotlabs/Module/Photos.php:1138 -#: ../../Zotlabs/Lib/ThreadItem.php:181 ../../Zotlabs/Lib/ThreadItem.php:193 -#: ../../include/conversation.php:1717 -msgid "View all" -msgstr "Veure tot" - -#: ../../Zotlabs/Module/Photos.php:1130 ../../Zotlabs/Lib/ThreadItem.php:185 -#: ../../include/taxonomy.php:403 ../../include/conversation.php:1741 -#: ../../include/channel.php:1158 -msgctxt "noun" -msgid "Like" -msgid_plural "Likes" -msgstr[0] "Agrada" -msgstr[1] "Agraden" - -#: ../../Zotlabs/Module/Photos.php:1135 ../../Zotlabs/Lib/ThreadItem.php:190 -#: ../../include/conversation.php:1744 -msgctxt "noun" -msgid "Dislike" -msgid_plural "Dislikes" -msgstr[0] "Desagrada" -msgstr[1] "Desagrada" - -#: ../../Zotlabs/Module/Photos.php:1235 -msgid "Photo Tools" -msgstr "Eines per Fotos" - -#: ../../Zotlabs/Module/Photos.php:1244 -msgid "In This Photo:" -msgstr "Hi apareixen:" - -#: ../../Zotlabs/Module/Photos.php:1249 -msgid "Map" -msgstr "Mapa" - -#: ../../Zotlabs/Module/Photos.php:1257 ../../Zotlabs/Lib/ThreadItem.php:386 -msgctxt "noun" -msgid "Likes" -msgstr "Agrada" - -#: ../../Zotlabs/Module/Photos.php:1258 ../../Zotlabs/Lib/ThreadItem.php:387 -msgctxt "noun" -msgid "Dislikes" -msgstr "Desagrada" - -#: ../../Zotlabs/Module/Photos.php:1263 ../../Zotlabs/Lib/ThreadItem.php:392 -#: ../../include/acl_selectors.php:285 -msgid "Close" -msgstr "Tanca" - -#: ../../Zotlabs/Module/Photos.php:1337 -msgid "View Album" -msgstr "Mostra'n l'àlbum" - -#: ../../Zotlabs/Module/Photos.php:1348 ../../Zotlabs/Module/Photos.php:1361 -#: ../../Zotlabs/Module/Photos.php:1362 -msgid "Recent Photos" -msgstr "Imatges recents" - -#: ../../Zotlabs/Module/Ping.php:265 -msgid "sent you a private message" -msgstr "Se t'ha enviat un missatge privat" - -#: ../../Zotlabs/Module/Ping.php:313 -msgid "added your channel" -msgstr "el teu canal s'ha afegit" - -#: ../../Zotlabs/Module/Ping.php:323 -msgid "g A l F d" -msgstr "g A l F d" - -#: ../../Zotlabs/Module/Ping.php:346 -msgid "[today]" -msgstr "[avui]" - -#: ../../Zotlabs/Module/Ping.php:355 -msgid "posted an event" -msgstr "enviat un esdeveniment" - -#: ../../Zotlabs/Module/Oexchange.php:27 -msgid "Unable to find your hub." -msgstr "No es possible trobar el node" - -#: ../../Zotlabs/Module/Oexchange.php:41 -msgid "Post successful." -msgstr "Entrada realitzada amb èxit. " - -#: ../../Zotlabs/Module/Openid.php:30 -msgid "OpenID protocol error. No ID returned." -msgstr "Error del protocol OpenID. No ha retornat ID" - -#: ../../Zotlabs/Module/Openid.php:193 ../../include/auth.php:226 -msgid "Login failed." -msgstr "Identificació fallida." - -#: ../../Zotlabs/Module/Page.php:133 -msgid "" -"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod " -"tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam," -" quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo " -"consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse " -"cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat " -"non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." -msgstr "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." - -#: ../../Zotlabs/Module/Pconfig.php:26 ../../Zotlabs/Module/Pconfig.php:59 -msgid "This setting requires special processing and editing has been blocked." -msgstr "Aquest ajust requereix un procés espedial i l'edició esta bloquejada." - -#: ../../Zotlabs/Module/Pconfig.php:48 -msgid "Configuration Editor" -msgstr "Editor de Configuració" - -#: ../../Zotlabs/Module/Pconfig.php:49 -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 "atenció: Realitzar segons quins ajustos pot fer el canal inoperable. Deixa aquesta pàgina si no estas segur i tens suficients coneixements sobre l'ús correcte d'aquesta característica." - -#: ../../Zotlabs/Module/Pdledit.php:18 -msgid "Layout updated." -msgstr "S'ha actualitzat la disposició." - -#: ../../Zotlabs/Module/Pdledit.php:34 ../../Zotlabs/Module/Pdledit.php:61 -msgid "Edit System Page Description" -msgstr "Editor del Sistema de Descripció de Pàgines" - -#: ../../Zotlabs/Module/Pdledit.php:56 -msgid "Layout not found." -msgstr "No s'ha trobat cap disposició de pàgina." - -#: ../../Zotlabs/Module/Pdledit.php:62 -msgid "Module Name:" -msgstr "Nom del mòdul:" - -#: ../../Zotlabs/Module/Pdledit.php:63 -msgid "Layout Help" -msgstr "Ajuda per la disposició de pàgina" - -#: ../../Zotlabs/Module/Poke.php:168 ../../Zotlabs/Lib/Apps.php:226 -#: ../../include/conversation.php:960 -msgid "Poke" -msgstr "Esperonar" - -#: ../../Zotlabs/Module/Poke.php:169 -msgid "Poke somebody" -msgstr "Emprenyar algú" - -#: ../../Zotlabs/Module/Poke.php:172 -msgid "Poke/Prod" -msgstr "Esperonat/Picat" - -#: ../../Zotlabs/Module/Poke.php:173 -msgid "Poke, prod or do other things to somebody" -msgstr "emprenyar, picar o fer altres coses a algú" - -#: ../../Zotlabs/Module/Poke.php:180 -msgid "Recipient" -msgstr "Destinatari" - -#: ../../Zotlabs/Module/Poke.php:181 -msgid "Choose what you wish to do to recipient" -msgstr "Tria que vols fer amb el destinatari" - -#: ../../Zotlabs/Module/Poke.php:184 ../../Zotlabs/Module/Poke.php:185 -msgid "Make this post private" -msgstr "Fer aquesta entrada privada" - -#: ../../Zotlabs/Module/Probe.php:30 ../../Zotlabs/Module/Probe.php:34 -#, php-format -msgid "Fetching URL returns error: %1$s" -msgstr "URL sol·licitada retorna error: %1$s" - #: ../../Zotlabs/Module/Profiles.php:24 ../../Zotlabs/Module/Profiles.php:189 #: ../../Zotlabs/Module/Profiles.php:246 ../../Zotlabs/Module/Profiles.php:625 msgid "Profile not found." @@ -3279,6 +2203,11 @@ msgstr "Pàgina Personal" msgid "Interests" msgstr "Interessos" +#: ../../Zotlabs/Module/Profiles.php:470 ../../Zotlabs/Module/Locs.php:118 +#: ../../Zotlabs/Module/Admin.php:1224 +msgid "Address" +msgstr "Adreça" + #: ../../Zotlabs/Module/Profiles.php:560 msgid "Profile updated." msgstr "Perfil actualitzat." @@ -3296,7 +2225,7 @@ msgid "View this profile" msgstr "Veure aquest perfil" #: ../../Zotlabs/Module/Profiles.php:689 ../../Zotlabs/Module/Profiles.php:771 -#: ../../include/channel.php:959 +#: ../../include/channel.php:998 msgid "Edit visibility" msgstr "Editar visibilitat" @@ -3308,7 +2237,7 @@ msgstr "Eines per Perfils" msgid "Change cover photo" msgstr "Canviar la foto de portada" -#: ../../Zotlabs/Module/Profiles.php:692 ../../include/channel.php:930 +#: ../../Zotlabs/Module/Profiles.php:692 ../../include/channel.php:969 msgid "Change profile photo" msgstr "Canviar la foto del perfil" @@ -3328,8 +2257,8 @@ msgstr "Elimina aquest perfil" msgid "Add profile things" msgstr "Afegeix coses al perfil" -#: ../../Zotlabs/Module/Profiles.php:697 ../../include/widgets.php:105 -#: ../../include/conversation.php:1526 +#: ../../Zotlabs/Module/Profiles.php:697 ../../include/conversation.php:1541 +#: ../../include/widgets.php:105 msgid "Personal" msgstr "Personal" @@ -3469,119 +2398,1097 @@ msgstr "Informació de contacte i xarxes socials" msgid "My other channels" msgstr "Els meus altres canals" -#: ../../Zotlabs/Module/Profiles.php:767 ../../include/channel.php:955 +#: ../../Zotlabs/Module/Profiles.php:767 ../../include/channel.php:994 msgid "Profile Image" msgstr "Imatge del Perfil" #: ../../Zotlabs/Module/Profiles.php:777 ../../include/nav.php:88 -#: ../../include/channel.php:937 +#: ../../include/channel.php:976 msgid "Edit Profiles" msgstr "Editar Perfils" -#: ../../Zotlabs/Module/Profile_photo.php:179 -msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." -msgstr "Refresca la memòria cau del navegador si la foto no s'actualitza immediatament. Dreceres: «Ctrl+F5» i «Ctrl+Maj+R»" - -#: ../../Zotlabs/Module/Profile_photo.php:367 -msgid "Upload Profile Photo" -msgstr "Puja una Foto pel Perfil" - -#: ../../Zotlabs/Module/Profperm.php:34 ../../Zotlabs/Module/Profperm.php:63 -msgid "Invalid profile identifier." -msgstr "Identificador invàlid de perfil." - -#: ../../Zotlabs/Module/Profperm.php:115 -msgid "Profile Visibility Editor" -msgstr "Perfil del Editor de Visibilitat" - -#: ../../Zotlabs/Module/Profperm.php:117 ../../include/channel.php:1249 -msgid "Profile" -msgstr "Perfil" - -#: ../../Zotlabs/Module/Profperm.php:119 -msgid "Click on a contact to add or remove." -msgstr "Clica sobre el contacte per afegir o esborrar." - -#: ../../Zotlabs/Module/Profperm.php:128 -msgid "Visible To" -msgstr "Visible per" - -#: ../../Zotlabs/Module/Pubsites.php:22 ../../include/widgets.php:1270 -msgid "Public Hubs" -msgstr "Nodes Públics" - -#: ../../Zotlabs/Module/Pubsites.php:25 -msgid "" -"The listed hubs allow public registration for the $Projectname network. All " -"hubs in the network are interlinked so membership on any of them conveys " -"membership in the network as a whole. Some hubs may require subscription or " -"provide tiered service plans. The hub itself may provide " -"additional details." -msgstr "Els nodes llistats permeten registrar usuaris de la xarxa $Projectname. Com que tots els nodes estan enllaçats entre ells, la identitat és vàlida a tota la xarxa. Alguns nodes poden demanar subscripció o oferir serveis addicional de pagament. Per a més detalls, proveu de seguir els enllaços dels proveïdors." - -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Hub URL" -msgstr "URL del Node" - -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Access Type" -msgstr "Tipus d'accés" - -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Registration Policy" -msgstr "Condicions de registre" - -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Stats" -msgstr "Estadístiques" - -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Software" -msgstr "Programari" - -#: ../../Zotlabs/Module/Pubsites.php:31 ../../Zotlabs/Module/Ratings.php:103 -#: ../../include/conversation.php:959 -msgid "Ratings" -msgstr "Valoracions" - -#: ../../Zotlabs/Module/Pubsites.php:38 -msgid "Rate" -msgstr "Puntua" - -#: ../../Zotlabs/Module/Rate.php:160 -msgid "Website:" -msgstr "Lloc web:" - -#: ../../Zotlabs/Module/Rate.php:163 +#: ../../Zotlabs/Module/Import.php:33 #, php-format -msgid "Remote Channel [%s] (not yet known on this site)" -msgstr "Canal Remot [%s] (encara no es coneix en aquest lloc)" +msgid "Your service plan only allows %d channels." +msgstr "El teu paquet de serveis només admet %d canals." -#: ../../Zotlabs/Module/Rate.php:164 -msgid "Rating (this information is public)" -msgstr "Valoració (aquesta informació és pública)" +#: ../../Zotlabs/Module/Import.php:71 ../../Zotlabs/Module/Import_items.php:42 +msgid "Nothing to import." +msgstr "No hi ha res a importar." -#: ../../Zotlabs/Module/Rate.php:165 -msgid "Optionally explain your rating (this information is public)" -msgstr "Opcionalment pots explicar la teva qualificació (aquesta informació és pública)" +#: ../../Zotlabs/Module/Import.php:95 ../../Zotlabs/Module/Import_items.php:66 +msgid "Unable to download data from old server" +msgstr "No s'han pogut descarregar les dades del servidor antic" -#: ../../Zotlabs/Module/Ratings.php:73 -msgid "No ratings" -msgstr "No valorat" +#: ../../Zotlabs/Module/Import.php:101 +#: ../../Zotlabs/Module/Import_items.php:72 +msgid "Imported file is empty." +msgstr "El fitxer importat està buit." -#: ../../Zotlabs/Module/Ratings.php:104 -msgid "Rating: " -msgstr "Valoració:" +#: ../../Zotlabs/Module/Import.php:123 +#: ../../Zotlabs/Module/Import_items.php:88 +#, php-format +msgid "Warning: Database versions differ by %1$d updates." +msgstr "Atenció: Les versions de la Base de Dades difereixen en %1$d actualitzacions." -#: ../../Zotlabs/Module/Ratings.php:105 -msgid "Website: " -msgstr "Lloc web:" +#: ../../Zotlabs/Module/Import.php:153 ../../include/import.php:107 +msgid "Cloned channel not found. Import failed." +msgstr "No s'ha pogut importar el canal perquè el canal clonat no s'ha trobat." -#: ../../Zotlabs/Module/Ratings.php:107 -msgid "Description: " -msgstr "Descripció:" +#: ../../Zotlabs/Module/Import.php:163 +msgid "No channel. Import failed." +msgstr "Sense canal. No s'ha pogut importar." + +#: ../../Zotlabs/Module/Import.php:520 +#: ../../include/Import/import_diaspora.php:142 +msgid "Import completed." +msgstr "S'ha completat la importació." + +#: ../../Zotlabs/Module/Import.php:542 +msgid "You must be logged in to use this feature." +msgstr "Has d'estar registrat per fer servir aquesta funcionalitat." + +#: ../../Zotlabs/Module/Import.php:547 +msgid "Import Channel" +msgstr "Importa un canal" + +#: ../../Zotlabs/Module/Import.php:548 +msgid "" +"Use this form to import an existing channel from a different server/hub. You" +" may retrieve the channel identity from the old server/hub via the network " +"or provide an export file." +msgstr "Empra aquest formulari per importar un canal existent en un altre servidor/concentrador. Pots recuperar el canal des de l'antic servidor/concentrador via la xarxa o mitjançant un fitxer d'exportació" + +#: ../../Zotlabs/Module/Import.php:549 +#: ../../Zotlabs/Module/Import_items.php:121 +msgid "File to Upload" +msgstr "Fitxer a pujar" + +#: ../../Zotlabs/Module/Import.php:550 +msgid "Or provide the old server/hub details" +msgstr "O proveeix els detalls de l'antic servidor/node" + +#: ../../Zotlabs/Module/Import.php:551 +msgid "Your old identity address (xyz@example.com)" +msgstr "La teva adreça de canal antiga. El format és canal@exemple.org" + +#: ../../Zotlabs/Module/Import.php:552 +msgid "Your old login email address" +msgstr "La teva adreça de correu electrònic antiga" + +#: ../../Zotlabs/Module/Import.php:553 +msgid "Your old login password" +msgstr "La teva contrasenya antiga" + +#: ../../Zotlabs/Module/Import.php:554 +msgid "" +"For either option, please choose whether to make this hub your new primary " +"address, or whether your old location should continue this role. You will be" +" able to post from either location, but only one can be marked as the " +"primary location for files, photos, and media." +msgstr "Per a qualsevol de les opcions, escull si vols fer primària l'adreça d'aquest node o mantenir l'anterior com a primària. Podràs penjar entrades des de totes dues adreces, però per als fitxers, imatges i altres en cal una de primària." + +#: ../../Zotlabs/Module/Import.php:555 +msgid "Make this hub my primary location" +msgstr "Fes d'aquest node la meva ubicació primària" + +#: ../../Zotlabs/Module/Import.php:556 +msgid "" +"Import existing posts if possible (experimental - limited by available " +"memory" +msgstr "Importa les entrades existents si es possible (experimental - limitat per la memòria disponible" + +#: ../../Zotlabs/Module/Import.php:557 +msgid "" +"This process may take several minutes to complete. Please submit the form " +"only once and leave this page open until finished." +msgstr "Aquest procès pot trigar minuts en completar. Si et plau envia el formulari només una vegada i manté aquesta pàgina oberta fins que finalitzi." + +#: ../../Zotlabs/Module/Home.php:74 ../../Zotlabs/Module/Home.php:82 +#: ../../Zotlabs/Module/Siteinfo.php:48 +msgid "$Projectname" +msgstr "$Projectname" + +#: ../../Zotlabs/Module/Home.php:92 +#, php-format +msgid "Welcome to %s" +msgstr "Benvingut a %s" + +#: ../../Zotlabs/Module/Item.php:179 +msgid "Unable to locate original post." +msgstr "No s'ha pogut trobar l'entrada original." + +#: ../../Zotlabs/Module/Item.php:432 +msgid "Empty post discarded." +msgstr "S'ha descartat l'entrada perquè no té contingut." + +#: ../../Zotlabs/Module/Item.php:472 +msgid "Executable content type not permitted to this channel." +msgstr "No està permès el contingut de tipus executable en aquest canal." + +#: ../../Zotlabs/Module/Item.php:856 +msgid "Duplicate post suppressed." +msgstr "Publicació duplicada s'ha suprimit." + +#: ../../Zotlabs/Module/Item.php:989 +msgid "System error. Post not saved." +msgstr "Hi ha hagut un error del sistema. L'entrada no s'ha desat." + +#: ../../Zotlabs/Module/Item.php:1242 +msgid "Unable to obtain post information from database." +msgstr "No s'ha pogut obtenir informació de l'entrada a la base de dades." + +#: ../../Zotlabs/Module/Item.php:1249 +#, php-format +msgid "You have reached your limit of %1$.0f top level posts." +msgstr "Has assolit el teu límit de %1$.0f entrades (descomptant comentaris)." + +#: ../../Zotlabs/Module/Item.php:1256 +#, php-format +msgid "You have reached your limit of %1$.0f webpages." +msgstr "Has assolit el teu limit de %1$.0f pàgines web." + +#: ../../Zotlabs/Module/Photos.php:82 +msgid "Page owner information could not be retrieved." +msgstr "La informació del propietari de la pàgina no va poder ser recuperada" + +#: ../../Zotlabs/Module/Photos.php:97 ../../Zotlabs/Module/Photos.php:741 +#: ../../Zotlabs/Module/Profile_photo.php:115 +#: ../../Zotlabs/Module/Profile_photo.php:212 +#: ../../Zotlabs/Module/Profile_photo.php:311 +#: ../../include/photo/photo_driver.php:718 +msgid "Profile Photos" +msgstr "Fotos del Perfil" + +#: ../../Zotlabs/Module/Photos.php:103 ../../Zotlabs/Module/Photos.php:147 +msgid "Album not found." +msgstr "Àlbum no trobat" + +#: ../../Zotlabs/Module/Photos.php:130 +msgid "Delete Album" +msgstr "Esborra Àlbum" + +#: ../../Zotlabs/Module/Photos.php:151 +msgid "" +"Multiple storage folders exist with this album name, but within different " +"directories. Please remove the desired folder or folders using the Files " +"manager" +msgstr "Existeixen moltes carpetes de emmagatzemament amb aquest nom d'àlbum, però en diferents directoris. Si us plau esborra la carpeta o carpetes amb el gestor d'arxius." + +#: ../../Zotlabs/Module/Photos.php:208 ../../Zotlabs/Module/Photos.php:1051 +msgid "Delete Photo" +msgstr "Esborra Foto" + +#: ../../Zotlabs/Module/Photos.php:531 +msgid "No photos selected" +msgstr "No has seleccionat fotos" + +#: ../../Zotlabs/Module/Photos.php:580 +msgid "Access to this item is restricted." +msgstr "L'accés a aquest element esta restringit." + +#: ../../Zotlabs/Module/Photos.php:619 +#, php-format +msgid "%1$.2f MB of %2$.2f MB photo storage used." +msgstr "S'estan fent servir %1$.2f MB de %2$.2f MB de l'espai per a imatges." + +#: ../../Zotlabs/Module/Photos.php:622 +#, php-format +msgid "%1$.2f MB photo storage used." +msgstr "S'estan fent servir %1$.2f MB de l'espai per a imatges." + +#: ../../Zotlabs/Module/Photos.php:658 +msgid "Upload Photos" +msgstr "Puja imatges" + +#: ../../Zotlabs/Module/Photos.php:662 +msgid "Enter an album name" +msgstr "Escriu el nom del àlbum" + +#: ../../Zotlabs/Module/Photos.php:663 +msgid "or select an existing album (doubleclick)" +msgstr "o bé fes doble clic a un d'existent" + +#: ../../Zotlabs/Module/Photos.php:664 +msgid "Create a status post for this upload" +msgstr "Genera una entrada a partir de la pujada" + +#: ../../Zotlabs/Module/Photos.php:665 +msgid "Caption (optional):" +msgstr "Subtítol (opcional):" + +#: ../../Zotlabs/Module/Photos.php:666 +msgid "Description (optional):" +msgstr "Descripció (opcional):" + +#: ../../Zotlabs/Module/Photos.php:693 +msgid "Album name could not be decoded" +msgstr "No s'ha pogut descodificar el nom de l'àlbum" + +#: ../../Zotlabs/Module/Photos.php:741 +msgid "Contact Photos" +msgstr "Imatges de contactes" + +#: ../../Zotlabs/Module/Photos.php:764 +msgid "Show Newest First" +msgstr "Ordena de més nou a més antic" + +#: ../../Zotlabs/Module/Photos.php:766 +msgid "Show Oldest First" +msgstr "Ordena de més antic a més nou" + +#: ../../Zotlabs/Module/Photos.php:790 ../../Zotlabs/Module/Photos.php:1329 +#: ../../Zotlabs/Module/Embedphotos.php:141 ../../include/widgets.php:1593 +msgid "View Photo" +msgstr "Mostra la imatge" + +#: ../../Zotlabs/Module/Photos.php:821 +#: ../../Zotlabs/Module/Embedphotos.php:157 ../../include/widgets.php:1610 +msgid "Edit Album" +msgstr "Modifica l'àlbum" + +#: ../../Zotlabs/Module/Photos.php:868 +msgid "Permission denied. Access to this item may be restricted." +msgstr "S'ha denegat el permís. Pot ser que l'accés estigui restringit." + +#: ../../Zotlabs/Module/Photos.php:870 +msgid "Photo not available" +msgstr "La imatge no està disponible" + +#: ../../Zotlabs/Module/Photos.php:928 +msgid "Use as profile photo" +msgstr "Fes-la imatge de perfil" + +#: ../../Zotlabs/Module/Photos.php:929 +msgid "Use as cover photo" +msgstr "Emprar com a foto de portada" + +#: ../../Zotlabs/Module/Photos.php:936 +msgid "Private Photo" +msgstr "Imatge privada" + +#: ../../Zotlabs/Module/Photos.php:951 +msgid "View Full Size" +msgstr "Mostra a mida completa" + +#: ../../Zotlabs/Module/Photos.php:996 ../../Zotlabs/Module/Admin.php:1437 +#: ../../Zotlabs/Module/Tagrm.php:137 +msgid "Remove" +msgstr "Esborra" + +#: ../../Zotlabs/Module/Photos.php:1030 +msgid "Edit photo" +msgstr "Modifica la imatge" + +#: ../../Zotlabs/Module/Photos.php:1032 +msgid "Rotate CW (right)" +msgstr "Tomba cap a la dreta" + +#: ../../Zotlabs/Module/Photos.php:1033 +msgid "Rotate CCW (left)" +msgstr "Tomba cap a l'esquerra" + +#: ../../Zotlabs/Module/Photos.php:1036 +msgid "Enter a new album name" +msgstr "Escriu el nom del nou àlbum" + +#: ../../Zotlabs/Module/Photos.php:1037 +msgid "or select an existing one (doubleclick)" +msgstr "o bé fes doble clic a un d'existent" + +#: ../../Zotlabs/Module/Photos.php:1040 +msgid "Caption" +msgstr "Llegenda" + +#: ../../Zotlabs/Module/Photos.php:1042 +msgid "Add a Tag" +msgstr "Afegeix una etiqueta" + +#: ../../Zotlabs/Module/Photos.php:1046 +msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" +msgstr "Exemple: @joan, @Paula_Peris, @mar@exemple.org" + +#: ../../Zotlabs/Module/Photos.php:1049 +msgid "Flag as adult in album view" +msgstr "Marca com a contingut adult" + +#: ../../Zotlabs/Module/Photos.php:1068 ../../Zotlabs/Lib/ThreadItem.php:261 +msgid "I like this (toggle)" +msgstr "M'agrada això (canvia)" + +#: ../../Zotlabs/Module/Photos.php:1069 ../../Zotlabs/Lib/ThreadItem.php:262 +msgid "I don't like this (toggle)" +msgstr "No m'agrada això (canvia)" + +#: ../../Zotlabs/Module/Photos.php:1071 ../../Zotlabs/Lib/ThreadItem.php:397 +#: ../../include/conversation.php:743 +msgid "Please wait" +msgstr "Si us plau, espera" + +#: ../../Zotlabs/Module/Photos.php:1087 ../../Zotlabs/Module/Photos.php:1205 +#: ../../Zotlabs/Lib/ThreadItem.php:707 +msgid "This is you" +msgstr "Ets tú" + +#: ../../Zotlabs/Module/Photos.php:1089 ../../Zotlabs/Module/Photos.php:1207 +#: ../../Zotlabs/Lib/ThreadItem.php:709 ../../include/js_strings.php:6 +msgid "Comment" +msgstr "Comentari" + +#: ../../Zotlabs/Module/Photos.php:1105 ../../include/conversation.php:577 +msgctxt "title" +msgid "Likes" +msgstr "Agrada" + +#: ../../Zotlabs/Module/Photos.php:1105 ../../include/conversation.php:577 +msgctxt "title" +msgid "Dislikes" +msgstr "Desagrada" + +#: ../../Zotlabs/Module/Photos.php:1106 ../../include/conversation.php:578 +msgctxt "title" +msgid "Agree" +msgstr "Acord" + +#: ../../Zotlabs/Module/Photos.php:1106 ../../include/conversation.php:578 +msgctxt "title" +msgid "Disagree" +msgstr "Desacord" + +#: ../../Zotlabs/Module/Photos.php:1106 ../../include/conversation.php:578 +msgctxt "title" +msgid "Abstain" +msgstr "Abstenirse" + +#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:579 +msgctxt "title" +msgid "Attending" +msgstr "Assistint" + +#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:579 +msgctxt "title" +msgid "Not attending" +msgstr "Desassistint" + +#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:579 +msgctxt "title" +msgid "Might attend" +msgstr "Podrien assistir" + +#: ../../Zotlabs/Module/Photos.php:1124 ../../Zotlabs/Module/Photos.php:1136 +#: ../../Zotlabs/Lib/ThreadItem.php:181 ../../Zotlabs/Lib/ThreadItem.php:193 +#: ../../include/conversation.php:1738 +msgid "View all" +msgstr "Veure tot" + +#: ../../Zotlabs/Module/Photos.php:1128 ../../Zotlabs/Lib/ThreadItem.php:185 +#: ../../include/taxonomy.php:403 ../../include/channel.php:1198 +#: ../../include/conversation.php:1762 +msgctxt "noun" +msgid "Like" +msgid_plural "Likes" +msgstr[0] "Agrada" +msgstr[1] "Agraden" + +#: ../../Zotlabs/Module/Photos.php:1133 ../../Zotlabs/Lib/ThreadItem.php:190 +#: ../../include/conversation.php:1765 +msgctxt "noun" +msgid "Dislike" +msgid_plural "Dislikes" +msgstr[0] "Desagrada" +msgstr[1] "Desagrada" + +#: ../../Zotlabs/Module/Photos.php:1233 +msgid "Photo Tools" +msgstr "Eines per Fotos" + +#: ../../Zotlabs/Module/Photos.php:1242 +msgid "In This Photo:" +msgstr "Hi apareixen:" + +#: ../../Zotlabs/Module/Photos.php:1247 +msgid "Map" +msgstr "Mapa" + +#: ../../Zotlabs/Module/Photos.php:1255 ../../Zotlabs/Lib/ThreadItem.php:386 +msgctxt "noun" +msgid "Likes" +msgstr "Agrada" + +#: ../../Zotlabs/Module/Photos.php:1256 ../../Zotlabs/Lib/ThreadItem.php:387 +msgctxt "noun" +msgid "Dislikes" +msgstr "Desagrada" + +#: ../../Zotlabs/Module/Photos.php:1261 ../../Zotlabs/Lib/ThreadItem.php:392 +#: ../../include/acl_selectors.php:283 +msgid "Close" +msgstr "Tanca" + +#: ../../Zotlabs/Module/Photos.php:1335 +msgid "View Album" +msgstr "Mostra'n l'àlbum" + +#: ../../Zotlabs/Module/Photos.php:1346 ../../Zotlabs/Module/Photos.php:1359 +#: ../../Zotlabs/Module/Photos.php:1360 +msgid "Recent Photos" +msgstr "Imatges recents" + +#: ../../Zotlabs/Module/Lockview.php:75 +msgid "Remote privacy information not available." +msgstr "informació privada remota no disponible." + +#: ../../Zotlabs/Module/Lockview.php:96 +msgid "Visible to:" +msgstr "Visible per:" + +#: ../../Zotlabs/Module/Import_items.php:104 +msgid "Import completed" +msgstr "S'ha completat la importació" + +#: ../../Zotlabs/Module/Import_items.php:119 +msgid "Import Items" +msgstr "Importa Articles" + +#: ../../Zotlabs/Module/Import_items.php:120 +msgid "" +"Use this form to import existing posts and content from an export file." +msgstr "Empra aquest formulari per importar entrades existents i contingut d'un arxiu d'exportació." + +#: ../../Zotlabs/Module/Invite.php:29 +msgid "Total invitation limit exceeded." +msgstr "El límit total invitacions s'ha superat." + +#: ../../Zotlabs/Module/Invite.php:53 +#, php-format +msgid "%s : Not a valid email address." +msgstr "%s: adreça de correu electrònic no vàlida." + +#: ../../Zotlabs/Module/Invite.php:63 +msgid "Please join us on $Projectname" +msgstr "Si us plau uneix-te a nosaltres a $Projectname." + +#: ../../Zotlabs/Module/Invite.php:74 +msgid "Invitation limit exceeded. Please contact your site administrator." +msgstr "Límit d'invitacions excedit. Si us plau, poseu-vos en contacte amb l'administrador del lloc." + +#: ../../Zotlabs/Module/Invite.php:79 +#, php-format +msgid "%s : Message delivery failed." +msgstr "%s : Entrega del Missatge fallida." + +#: ../../Zotlabs/Module/Invite.php:83 +#, php-format +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "%d missatge enviat." +msgstr[1] "%d missatges enviats." + +#: ../../Zotlabs/Module/Invite.php:102 +msgid "You have no more invitations available" +msgstr "No té més invitacions disponibles" + +#: ../../Zotlabs/Module/Invite.php:133 +msgid "Send invitations" +msgstr "Enviar invitacions" + +#: ../../Zotlabs/Module/Invite.php:134 +msgid "Enter email addresses, one per line:" +msgstr "Introduïu les adreces de correu electrònic, una per línia:" + +#: ../../Zotlabs/Module/Invite.php:135 ../../Zotlabs/Module/Mail.php:241 +msgid "Your message:" +msgstr "El teu missatge:" + +#: ../../Zotlabs/Module/Invite.php:136 +msgid "Please join my community on $Projectname." +msgstr "Si us plau uneix-te la meva comunitat en $Projectname." + +#: ../../Zotlabs/Module/Invite.php:138 +msgid "You will need to supply this invitation code:" +msgstr "Hauràs de facilitar aquest codi d'invitació:" + +#: ../../Zotlabs/Module/Invite.php:139 +msgid "" +"1. Register at any $Projectname location (they are all inter-connected)" +msgstr "1. Pots registrar-te a qualsevol node de $Projectname (estàn tots interconnectats)" + +#: ../../Zotlabs/Module/Invite.php:141 +msgid "2. Enter my $Projectname network address into the site searchbar." +msgstr "2. Escriu la meva adreça de xarxa al $Projectname, a la barra de cerca del lloc." + +#: ../../Zotlabs/Module/Invite.php:142 +msgid "or visit" +msgstr "o visitar" + +#: ../../Zotlabs/Module/Invite.php:144 +msgid "3. Click [Connect]" +msgstr "3. Clicar [Conectar]" + +#: ../../Zotlabs/Module/Locs.php:25 ../../Zotlabs/Module/Locs.php:54 +msgid "Location not found." +msgstr "Situació que no es troba." + +#: ../../Zotlabs/Module/Locs.php:62 +msgid "Location lookup failed." +msgstr "Ha fallat la cerca d'ubicació." + +#: ../../Zotlabs/Module/Locs.php:66 +msgid "" +"Please select another location to become primary before removing the primary" +" location." +msgstr "Seleccioneu una altra ubicació per esdevenir primària abans de retirar la ubicació principal." + +#: ../../Zotlabs/Module/Locs.php:95 +msgid "Syncing locations" +msgstr "Sincronitza ubicacions" + +#: ../../Zotlabs/Module/Locs.php:105 +msgid "No locations found." +msgstr "No es troben els llocs." + +#: ../../Zotlabs/Module/Locs.php:116 +msgid "Manage Channel Locations" +msgstr "Gestionar Ubicacions de Canal" + +#: ../../Zotlabs/Module/Locs.php:119 +msgid "Primary" +msgstr "Primari" + +#: ../../Zotlabs/Module/Locs.php:120 ../../Zotlabs/Module/Menu.php:113 +msgid "Drop" +msgstr "Menysprea" + +#: ../../Zotlabs/Module/Locs.php:122 +msgid "Sync Now" +msgstr "Sincronitza Ara" + +#: ../../Zotlabs/Module/Locs.php:123 +msgid "Please wait several minutes between consecutive operations." +msgstr "Si us plau espera diversos minuts entre operacions consecutives." + +#: ../../Zotlabs/Module/Locs.php:124 +msgid "" +"When possible, drop a location by logging into that website/hub and removing" +" your channel." +msgstr "Quan sigui possible, per desapareixer d'un lloc, accedeix a aquest lloc web/node i elimina el teu canal." + +#: ../../Zotlabs/Module/Locs.php:125 +msgid "Use this form to drop the location if the hub is no longer operating." +msgstr "Empra aquest formulari per desapareixer del lloc si el node ja no està operatiu." + +#: ../../Zotlabs/Module/Magic.php:71 +msgid "Hub not found." +msgstr "Node no trobat." + +#: ../../Zotlabs/Module/Mail.php:38 +msgid "Unable to lookup recipient." +msgstr "Incapaç de trobar el destinatari." + +#: ../../Zotlabs/Module/Mail.php:45 +msgid "Unable to communicate with requested channel." +msgstr "Incapaç de comunicar amb el canal demanat." + +#: ../../Zotlabs/Module/Mail.php:52 +msgid "Cannot verify requested channel." +msgstr "No puc verificar el canal demanat." + +#: ../../Zotlabs/Module/Mail.php:70 +msgid "Selected channel has private message restrictions. Send failed." +msgstr "El canal seleccionat te restriccions sobre els missatges privats. L'enviament ha fallat." + +#: ../../Zotlabs/Module/Mail.php:135 +msgid "Messages" +msgstr "Missatges" + +#: ../../Zotlabs/Module/Mail.php:170 +msgid "Message recalled." +msgstr "Recupera el missatge." + +#: ../../Zotlabs/Module/Mail.php:183 +msgid "Conversation removed." +msgstr "Conversació eliminada." + +#: ../../Zotlabs/Module/Mail.php:198 ../../Zotlabs/Module/Mail.php:307 +msgid "Expires YYYY-MM-DD HH:MM" +msgstr "Expira YYYY-MM-DD HH:MM" + +#: ../../Zotlabs/Module/Mail.php:226 +msgid "Requested channel is not in this network" +msgstr "El canal demanat no hi es en questa xarxa" + +#: ../../Zotlabs/Module/Mail.php:234 +msgid "Send Private Message" +msgstr "Envia Missatge Privat" + +#: ../../Zotlabs/Module/Mail.php:235 ../../Zotlabs/Module/Mail.php:360 +msgid "To:" +msgstr "Per:" + +#: ../../Zotlabs/Module/Mail.php:238 ../../Zotlabs/Module/Mail.php:362 +msgid "Subject:" +msgstr "Assumpte:" + +#: ../../Zotlabs/Module/Mail.php:243 ../../Zotlabs/Module/Mail.php:368 +#: ../../include/conversation.php:1231 +msgid "Attach file" +msgstr "Adjunta arxiu" + +#: ../../Zotlabs/Module/Mail.php:245 +msgid "Send" +msgstr "Envia" + +#: ../../Zotlabs/Module/Mail.php:248 ../../Zotlabs/Module/Mail.php:373 +#: ../../include/conversation.php:1266 +msgid "Set expiration date" +msgstr "Ajusta la data d'expiració" + +#: ../../Zotlabs/Module/Mail.php:332 +msgid "Delete message" +msgstr "Elimina el missatge" + +#: ../../Zotlabs/Module/Mail.php:333 +msgid "Delivery report" +msgstr "Informe d'entrega" + +#: ../../Zotlabs/Module/Mail.php:334 +msgid "Recall message" +msgstr "Recupera el missatge" + +#: ../../Zotlabs/Module/Mail.php:336 +msgid "Message has been recalled." +msgstr "El missatge s'ha recuperat." + +#: ../../Zotlabs/Module/Mail.php:353 +msgid "Delete Conversation" +msgstr "Conversació esborrada" + +#: ../../Zotlabs/Module/Mail.php:355 +msgid "" +"No secure communications available. You may be able to " +"respond from the sender's profile page." +msgstr "Comunicació segura no disponible. Pots respondre des de la pàgina de perfil del remitent." + +#: ../../Zotlabs/Module/Mail.php:359 +msgid "Send Reply" +msgstr "Envia Resposta" + +#: ../../Zotlabs/Module/Mail.php:364 +#, php-format +msgid "Your message for %s (%s):" +msgstr "El teu missatge per %s (%s):" + +#: ../../Zotlabs/Module/Manage.php:136 +#: ../../Zotlabs/Module/New_channel.php:121 +#, php-format +msgid "You have created %1$.0f of %2$.0f allowed channels." +msgstr "Has creat %1$.0f de %2$.0f canals permesos." + +#: ../../Zotlabs/Module/Manage.php:143 +msgid "Create a new channel" +msgstr "Crear un nou canal" + +#: ../../Zotlabs/Module/Manage.php:164 ../../Zotlabs/Lib/Apps.php:214 +#: ../../include/nav.php:208 +msgid "Channel Manager" +msgstr "Gestor de Canals" + +#: ../../Zotlabs/Module/Manage.php:165 +msgid "Current Channel" +msgstr "Canal Actual" + +#: ../../Zotlabs/Module/Manage.php:167 +msgid "Switch to one of your channels by selecting it." +msgstr "Canviar a un altre dels teus canals seleccionant-ho." + +#: ../../Zotlabs/Module/Manage.php:168 +msgid "Default Channel" +msgstr "Canal per Defecte" + +#: ../../Zotlabs/Module/Manage.php:169 +msgid "Make Default" +msgstr "Estableix com a Predeterminat" + +#: ../../Zotlabs/Module/Manage.php:172 +#, php-format +msgid "%d new messages" +msgstr "%d missatges nous" + +#: ../../Zotlabs/Module/Manage.php:173 +#, php-format +msgid "%d new introductions" +msgstr "%d noves presentacions" + +#: ../../Zotlabs/Module/Manage.php:175 +msgid "Delegated Channel" +msgstr "Canal Delegat" + +#: ../../Zotlabs/Module/Menu.php:49 +msgid "Unable to update menu." +msgstr "No s'ha pogut actualitzar el menú." + +#: ../../Zotlabs/Module/Menu.php:60 +msgid "Unable to create menu." +msgstr "No s'ha pogut crear el menú." + +#: ../../Zotlabs/Module/Menu.php:98 ../../Zotlabs/Module/Menu.php:110 +msgid "Menu Name" +msgstr "Nom del menú" + +#: ../../Zotlabs/Module/Menu.php:98 +msgid "Unique name (not visible on webpage) - required" +msgstr "Nom únic (no visible a la pàgina web) - requerit" + +#: ../../Zotlabs/Module/Menu.php:99 ../../Zotlabs/Module/Menu.php:111 +msgid "Menu Title" +msgstr "Títol del menú" + +#: ../../Zotlabs/Module/Menu.php:99 +msgid "Visible on webpage - leave empty for no title" +msgstr "Visible a la pàgina web - deixar buit per a no posar títol" + +#: ../../Zotlabs/Module/Menu.php:100 +msgid "Allow Bookmarks" +msgstr "Permetre Marcadors" + +#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 +msgid "Menu may be used to store saved bookmarks" +msgstr "El menú es pot emprar per a guardar marcadors" + +#: ../../Zotlabs/Module/Menu.php:101 ../../Zotlabs/Module/Menu.php:159 +msgid "Submit and proceed" +msgstr "Envia i procedeix" + +#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2239 +msgid "Menus" +msgstr "Menús" + +#: ../../Zotlabs/Module/Menu.php:117 +msgid "Bookmarks allowed" +msgstr "Marcadors permesos" + +#: ../../Zotlabs/Module/Menu.php:119 +msgid "Delete this menu" +msgstr "Esborra el menú" + +#: ../../Zotlabs/Module/Menu.php:120 ../../Zotlabs/Module/Menu.php:154 +msgid "Edit menu contents" +msgstr "Edita el contingut del menú" + +#: ../../Zotlabs/Module/Menu.php:121 +msgid "Edit this menu" +msgstr "Edita el menú" + +#: ../../Zotlabs/Module/Menu.php:136 +msgid "Menu could not be deleted." +msgstr "El menu no es pot esborrar." + +#: ../../Zotlabs/Module/Menu.php:144 ../../Zotlabs/Module/Mitem.php:28 +msgid "Menu not found." +msgstr "Menú no trobat." + +#: ../../Zotlabs/Module/Menu.php:149 +msgid "Edit Menu" +msgstr "Edita Menú" + +#: ../../Zotlabs/Module/Menu.php:153 +msgid "Add or remove entries to this menu" +msgstr "Afegeix o esborra entrades a aquest menú" + +#: ../../Zotlabs/Module/Menu.php:155 +msgid "Menu name" +msgstr "Nom del Menú" + +#: ../../Zotlabs/Module/Menu.php:155 +msgid "Must be unique, only seen by you" +msgstr "Ha de ser únic, nomes vist per tú" + +#: ../../Zotlabs/Module/Menu.php:156 +msgid "Menu title" +msgstr "Títol del menú" + +#: ../../Zotlabs/Module/Menu.php:156 +msgid "Menu title as seen by others" +msgstr "Títol del menú vist pels altres" + +#: ../../Zotlabs/Module/Menu.php:157 +msgid "Allow bookmarks" +msgstr "Marcadors permesos" + +#: ../../Zotlabs/Module/Menu.php:166 ../../Zotlabs/Module/Mitem.php:120 +#: ../../Zotlabs/Module/Xchan.php:41 +msgid "Not found." +msgstr "No trobat." + +#: ../../Zotlabs/Module/Lostpass.php:19 +msgid "No valid account found." +msgstr "No es troba un compte vàlid." + +#: ../../Zotlabs/Module/Lostpass.php:33 +msgid "Password reset request issued. Check your email." +msgstr "Sol·licitud de restabliment de contrasenya emesa. Consulta el teu correu electrònic." + +#: ../../Zotlabs/Module/Lostpass.php:39 ../../Zotlabs/Module/Lostpass.php:107 +#, php-format +msgid "Site Member (%s)" +msgstr "Lloc d'Usuari (%s)" + +#: ../../Zotlabs/Module/Lostpass.php:44 +#, php-format +msgid "Password reset requested at %s" +msgstr "S'ha soŀlicitat restablir la contrasenya al hub %s" + +#: ../../Zotlabs/Module/Lostpass.php:67 +msgid "" +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." +msgstr "Ha fallat el restabliment de contrasenya perquè la no s'ha pogut verificar soŀlicitud. Pot ser que ja ho hàgiu soŀlicitat abans." + +#: ../../Zotlabs/Module/Lostpass.php:90 ../../boot.php:1712 +msgid "Password Reset" +msgstr "Restabliment de contrasenya" + +#: ../../Zotlabs/Module/Lostpass.php:91 +msgid "Your password has been reset as requested." +msgstr "S'ha restablert la vostra contrasenya." + +#: ../../Zotlabs/Module/Lostpass.php:92 +msgid "Your new password is" +msgstr "La nova contrasenya és" + +#: ../../Zotlabs/Module/Lostpass.php:93 +msgid "Save or copy your new password - and then" +msgstr "Desa o copia la nova contrasenya, i després" + +#: ../../Zotlabs/Module/Lostpass.php:94 +msgid "click here to login" +msgstr "fes clic aquí per iniciar sessió" + +#: ../../Zotlabs/Module/Lostpass.php:95 +msgid "" +"Your password may be changed from the Settings page after " +"successful login." +msgstr "Pots canviar la contrasenya a la pàgina Paràmetres, un cop iniciada la sessió." + +#: ../../Zotlabs/Module/Lostpass.php:112 +#, php-format +msgid "Your password has changed at %s" +msgstr "La teva contrasenya a %s ha canviat" + +#: ../../Zotlabs/Module/Lostpass.php:127 +msgid "Forgot your Password?" +msgstr "No recordes la contrasenya?" + +#: ../../Zotlabs/Module/Lostpass.php:128 +msgid "" +"Enter your email address and submit to have your password reset. Then check " +"your email for further instructions." +msgstr "Escriu la teva adreça de correu electrònic i envia per restablir la contrasenya. Després revisa el seu correu electrònic per obtenir més instruccions." + +#: ../../Zotlabs/Module/Lostpass.php:129 +msgid "Email Address" +msgstr "Adreça electrònica" + +#: ../../Zotlabs/Module/Lostpass.php:130 +msgid "Reset" +msgstr "Reajustar" + +#: ../../Zotlabs/Module/Mood.php:67 ../../include/conversation.php:260 +#, php-format +msgctxt "mood" +msgid "%1$s is %2$s" +msgstr "%1$s es %2$s" + +#: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Lib/Apps.php:227 +msgid "Mood" +msgstr "Ànim" + +#: ../../Zotlabs/Module/Mood.php:136 +msgid "Set your current mood and tell your friends" +msgstr "Estableix el teu estat d'ànim actual i digues-li als teus amics" + +#: ../../Zotlabs/Module/Network.php:94 +msgid "No such group" +msgstr "No existeix el grup" + +#: ../../Zotlabs/Module/Network.php:134 +msgid "No such channel" +msgstr "No existeix el canal" + +#: ../../Zotlabs/Module/Network.php:139 +msgid "forum" +msgstr "fòrum" + +#: ../../Zotlabs/Module/Network.php:151 +msgid "Search Results For:" +msgstr "Cerca resultats per:" + +#: ../../Zotlabs/Module/Network.php:215 +msgid "Privacy group is empty" +msgstr "el grup privat està vuit" + +#: ../../Zotlabs/Module/Network.php:224 +msgid "Privacy group: " +msgstr "Grup privat:" + +#: ../../Zotlabs/Module/Network.php:250 +msgid "Invalid connection." +msgstr "La connexió és invàlida." + +#: ../../Zotlabs/Module/Notify.php:57 +#: ../../Zotlabs/Module/Notifications.php:98 +msgid "No more system notifications." +msgstr "No hi ha més notificacions del sistema." + +#: ../../Zotlabs/Module/Notify.php:61 +#: ../../Zotlabs/Module/Notifications.php:102 +msgid "System Notifications" +msgstr "Notificacions del sistema" + +#: ../../Zotlabs/Module/Match.php:26 +msgid "Profile Match" +msgstr "Perfils compatibles" + +#: ../../Zotlabs/Module/Match.php:35 +msgid "No keywords to match. Please add keywords to your default profile." +msgstr "No tens paraules clau al perfil principal per poder cercar perfils semblants." + +#: ../../Zotlabs/Module/Match.php:67 +msgid "is interested in:" +msgstr "té interès en:" + +#: ../../Zotlabs/Module/Match.php:74 +msgid "No matches" +msgstr "No s'han trobat perfils compatibles" + +#: ../../Zotlabs/Module/Channel.php:40 +msgid "Posts and comments" +msgstr "Entrades i comentaris" + +#: ../../Zotlabs/Module/Channel.php:41 +msgid "Only posts" +msgstr "Només entrades" + +#: ../../Zotlabs/Module/Channel.php:101 +msgid "Insufficient permissions. Request redirected to profile page." +msgstr "Permisos insuficients. Petició redirigida a la pàgina del perfil." + +#: ../../Zotlabs/Module/Mitem.php:52 +msgid "Unable to create element." +msgstr "Incapaç de crear l'element." + +#: ../../Zotlabs/Module/Mitem.php:76 +msgid "Unable to update menu element." +msgstr "Incapaç d'actualitzar un element del menú." + +#: ../../Zotlabs/Module/Mitem.php:92 +msgid "Unable to add menu element." +msgstr "Incapaç d'afegir l'element del menú." + +#: ../../Zotlabs/Module/Mitem.php:153 ../../Zotlabs/Module/Mitem.php:226 +msgid "Menu Item Permissions" +msgstr "Permisos de l'Article del Menú" + +#: ../../Zotlabs/Module/Mitem.php:154 ../../Zotlabs/Module/Mitem.php:227 +#: ../../Zotlabs/Module/Settings.php:1163 +msgid "(click to open/close)" +msgstr "(clica per obrir/tancar)" + +#: ../../Zotlabs/Module/Mitem.php:156 ../../Zotlabs/Module/Mitem.php:172 +msgid "Link Name" +msgstr "Nom de l'Enllaç" + +#: ../../Zotlabs/Module/Mitem.php:157 ../../Zotlabs/Module/Mitem.php:231 +msgid "Link or Submenu Target" +msgstr "Enllaç o Submenú Objectiu" + +#: ../../Zotlabs/Module/Mitem.php:157 +msgid "Enter URL of the link or select a menu name to create a submenu" +msgstr "Entra la URL de l'enlla´o tria un nom de menú per crear un submenú" + +#: ../../Zotlabs/Module/Mitem.php:158 ../../Zotlabs/Module/Mitem.php:232 +msgid "Use magic-auth if available" +msgstr "Empra magic-auth si esta disponible" + +#: ../../Zotlabs/Module/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:233 +msgid "Open link in new window" +msgstr "Obrir l'enllaç en una nova finestra" + +#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:234 +msgid "Order in list" +msgstr "Ordre per llista" + +#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:234 +msgid "Higher numbers will sink to bottom of listing" +msgstr "Els números més alts aniràn al fons de la llista" + +#: ../../Zotlabs/Module/Mitem.php:161 +msgid "Submit and finish" +msgstr "Envia i termina" + +#: ../../Zotlabs/Module/Mitem.php:162 +msgid "Submit and continue" +msgstr "Envia i continua" + +#: ../../Zotlabs/Module/Mitem.php:170 +msgid "Menu:" +msgstr "Menú:" + +#: ../../Zotlabs/Module/Mitem.php:173 +msgid "Link Target" +msgstr "Enllaç Objectiu" + +#: ../../Zotlabs/Module/Mitem.php:176 +msgid "Edit menu" +msgstr "Edita menú" + +#: ../../Zotlabs/Module/Mitem.php:179 +msgid "Edit element" +msgstr "Edita element" + +#: ../../Zotlabs/Module/Mitem.php:180 +msgid "Drop element" +msgstr "Deixa anar element" + +#: ../../Zotlabs/Module/Mitem.php:181 +msgid "New element" +msgstr "Nou element" + +#: ../../Zotlabs/Module/Mitem.php:182 +msgid "Edit this menu container" +msgstr "Edita aquest contenidor de menú" + +#: ../../Zotlabs/Module/Mitem.php:183 +msgid "Add menu element" +msgstr "Afegeix element de menú" + +#: ../../Zotlabs/Module/Mitem.php:184 +msgid "Delete this menu item" +msgstr "Esborra aquest article del menú" + +#: ../../Zotlabs/Module/Mitem.php:185 +msgid "Edit this menu item" +msgstr "Edita aquest article del menú" + +#: ../../Zotlabs/Module/Mitem.php:202 +msgid "Menu item not found." +msgstr "Article del menú no trobat." + +#: ../../Zotlabs/Module/Mitem.php:215 +msgid "Menu item deleted." +msgstr "Article del menú eliminat." + +#: ../../Zotlabs/Module/Mitem.php:217 +msgid "Menu item could not be deleted." +msgstr "Article del menú no es pot eliminar." + +#: ../../Zotlabs/Module/Mitem.php:224 +msgid "Edit Menu Element" +msgstr "Editar Element del Menú" + +#: ../../Zotlabs/Module/Mitem.php:230 +msgid "Link text" +msgstr "Enllaç de text" #: ../../Zotlabs/Module/Admin.php:77 msgid "Theme settings updated." @@ -3642,7 +3549,7 @@ msgstr "Comptes registrades" #: ../../Zotlabs/Module/Admin.php:246 ../../Zotlabs/Module/Admin.php:715 msgid "Pending registrations" -msgstr "Comptes pendents de registre" +msgstr "Comptes pendents d'inscripció" #: ../../Zotlabs/Module/Admin.php:247 msgid "Registered channels" @@ -3668,11 +3575,11 @@ msgstr "Versió (desenvolupament) del repositori" msgid "Site settings updated." msgstr "Ajustos del Lloc actualitzats" -#: ../../Zotlabs/Module/Admin.php:400 ../../include/text.php:2841 +#: ../../Zotlabs/Module/Admin.php:400 ../../include/text.php:2829 msgid "Default" msgstr "Predeterminat" -#: ../../Zotlabs/Module/Admin.php:410 ../../Zotlabs/Module/Settings.php:798 +#: ../../Zotlabs/Module/Admin.php:410 ../../Zotlabs/Module/Settings.php:899 msgid "mobile" msgstr "mòbil" @@ -3704,13 +3611,13 @@ msgstr "El meu lloc te lliure accés" msgid "My site offers free accounts with optional paid upgrades" msgstr "El meu lloc te comptes gratis amb opció de millores per pagament" -#: ../../Zotlabs/Module/Admin.php:491 ../../include/widgets.php:1382 +#: ../../Zotlabs/Module/Admin.php:491 ../../include/widgets.php:1476 msgid "Site" msgstr "Lloc" #: ../../Zotlabs/Module/Admin.php:493 ../../Zotlabs/Module/Register.php:245 msgid "Registration" -msgstr "Registre" +msgstr "Inscripcions" #: ../../Zotlabs/Module/Admin.php:494 msgid "File upload" @@ -3784,7 +3691,7 @@ msgstr "Mida màxima en bytes d'imatges pujades. Per defecte es 0, el que vol di #: ../../Zotlabs/Module/Admin.php:509 msgid "Does this site allow new member registration?" -msgstr "Permet aquest lloc registre de nous membres?" +msgstr "Permet aquest lloc l'inscripció de nous membres?" #: ../../Zotlabs/Module/Admin.php:510 msgid "Invitation only" @@ -3794,7 +3701,7 @@ msgstr "Només per invitació" msgid "" "Only allow new member registrations with an invitation code. Above register " "policy must be set to Yes." -msgstr "Només permet registre de nos membres amb codi d'invitació. A més la política de registre s'ha d'establir a Sí." +msgstr "Només permet inscriure nous membres amb codi d'invitació. A més la política de registre s'ha d'establir a Sí." #: ../../Zotlabs/Module/Admin.php:511 msgid "Which best describes the types of account offered by this hub?" @@ -3802,11 +3709,11 @@ msgstr "Que es es que millor descriu la mena de comptes oferits per aquest conce #: ../../Zotlabs/Module/Admin.php:512 msgid "Register text" -msgstr "text de registre" +msgstr "Text d'inscripció" #: ../../Zotlabs/Module/Admin.php:512 msgid "Will be displayed prominently on the registration page." -msgstr "Es mostrarà preminentment a la pàgina de registre" +msgstr "Es mostrarà preminentment a la pàgina d'inscripció" #: ../../Zotlabs/Module/Admin.php:513 msgid "Site homepage to show visitors (default: login box)" @@ -3992,12 +3899,12 @@ msgid "0 for no expiration of imported content" msgstr "0 vol dir sense temps d'expiració pel contingut importat" #: ../../Zotlabs/Module/Admin.php:677 ../../Zotlabs/Module/Admin.php:678 -#: ../../Zotlabs/Module/Settings.php:722 +#: ../../Zotlabs/Module/Settings.php:823 msgid "Off" msgstr "Apagat" #: ../../Zotlabs/Module/Admin.php:677 ../../Zotlabs/Module/Admin.php:678 -#: ../../Zotlabs/Module/Settings.php:722 +#: ../../Zotlabs/Module/Settings.php:823 msgid "On" msgstr "Funcionant" @@ -4054,7 +3961,7 @@ msgid "" "embedded content from that site is explicitly blocked." msgstr "Tota la resta de contingut embegut seà filtrat, excepte contingut embegut d'aquest lloc que està blocat explícitament." -#: ../../Zotlabs/Module/Admin.php:756 ../../include/widgets.php:1385 +#: ../../Zotlabs/Module/Admin.php:756 ../../include/widgets.php:1479 msgid "Security" msgstr "Seguretat" @@ -4222,7 +4129,7 @@ msgid "Account '%s' unblocked" msgstr "S'ha desbloquejat el compte '%s'" #: ../../Zotlabs/Module/Admin.php:1031 ../../Zotlabs/Module/Admin.php:1044 -#: ../../include/widgets.php:1383 +#: ../../include/widgets.php:1477 msgid "Accounts" msgstr "Comptes" @@ -4232,7 +4139,7 @@ msgstr "Sel·leciona-ho tot" #: ../../Zotlabs/Module/Admin.php:1034 msgid "Registrations waiting for confirm" -msgstr "" +msgstr "Inscripcions esperant confirmació" #: ../../Zotlabs/Module/Admin.php:1035 msgid "Request date" @@ -4252,7 +4159,7 @@ msgstr "Tots els Canals" #: ../../Zotlabs/Module/Admin.php:1049 msgid "Register date" -msgstr "Data de registre" +msgstr "Data d'inscripció" #: ../../Zotlabs/Module/Admin.php:1050 msgid "Last login" @@ -4328,7 +4235,7 @@ msgstr "Canal '%s' permet codi" msgid "Channel '%s' code disallowed" msgstr "Canal '%s' no permet codi" -#: ../../Zotlabs/Module/Admin.php:1210 ../../include/widgets.php:1384 +#: ../../Zotlabs/Module/Admin.php:1210 ../../include/widgets.php:1478 msgid "Channels" msgstr "Canals" @@ -4348,7 +4255,7 @@ msgstr "Permet Codi" msgid "Disallow Code" msgstr "No Permet Codi" -#: ../../Zotlabs/Module/Admin.php:1218 ../../include/conversation.php:1611 +#: ../../Zotlabs/Module/Admin.php:1218 ../../include/conversation.php:1626 msgid "Channel" msgstr "Canal" @@ -4387,7 +4294,7 @@ msgid "Enable" msgstr "Activat" #: ../../Zotlabs/Module/Admin.php:1330 ../../Zotlabs/Module/Admin.php:1420 -#: ../../include/widgets.php:1387 +#: ../../include/widgets.php:1481 msgid "Plugins" msgstr "Plugins" @@ -4396,8 +4303,8 @@ msgid "Toggle" msgstr "Commutar" #: ../../Zotlabs/Module/Admin.php:1332 ../../Zotlabs/Module/Admin.php:1615 -#: ../../Zotlabs/Lib/Apps.php:215 ../../include/widgets.php:638 -#: ../../include/nav.php:208 +#: ../../Zotlabs/Lib/Apps.php:216 ../../include/nav.php:210 +#: ../../include/widgets.php:647 msgid "Settings" msgstr "Ajustos" @@ -4453,7 +4360,7 @@ msgstr "Descarrega el Repositori de Plugins" msgid "Install new repo" msgstr "Instal·la un nou repositori " -#: ../../Zotlabs/Module/Admin.php:1405 ../../Zotlabs/Lib/Apps.php:330 +#: ../../Zotlabs/Module/Admin.php:1405 ../../Zotlabs/Lib/Apps.php:334 msgid "Install" msgstr "Instal·lar" @@ -4469,8 +4376,8 @@ msgstr "Repositori de Plugins Instal·lat" msgid "Install a New Plugin Repository" msgstr "Instal·la un Nou Repositori de Plugins" -#: ../../Zotlabs/Module/Admin.php:1435 ../../Zotlabs/Module/Settings.php:77 -#: ../../Zotlabs/Module/Settings.php:616 ../../Zotlabs/Lib/Apps.php:330 +#: ../../Zotlabs/Module/Admin.php:1435 ../../Zotlabs/Module/Settings.php:72 +#: ../../Zotlabs/Module/Settings.php:670 ../../Zotlabs/Lib/Apps.php:334 msgid "Update" msgstr "Actualització" @@ -4487,7 +4394,7 @@ msgid "Screenshot" msgstr "Copia de pantalla" #: ../../Zotlabs/Module/Admin.php:1613 ../../Zotlabs/Module/Admin.php:1647 -#: ../../include/widgets.php:1388 +#: ../../include/widgets.php:1482 msgid "Themes" msgstr "Temes" @@ -4503,8 +4410,8 @@ msgstr "[No soportat]" msgid "Log settings updated." msgstr "Registre d'ajustos actualitzat." -#: ../../Zotlabs/Module/Admin.php:1732 ../../include/widgets.php:1409 -#: ../../include/widgets.php:1419 +#: ../../Zotlabs/Module/Admin.php:1732 ../../include/widgets.php:1503 +#: ../../include/widgets.php:1513 msgid "Logs" msgstr "Logs" @@ -4524,7 +4431,7 @@ msgstr "Arxiu de registre" msgid "" "Must be writable by web server. Relative to your top-level webserver " "directory." -msgstr "" +msgstr "Ha de ser escribible pel servidor web. Relatiu al directori de nivell superior del servidor web" #: ../../Zotlabs/Module/Admin.php:1742 msgid "Log level" @@ -4570,7 +4477,7 @@ msgstr "No es troba la definició del camp" msgid "Edit Profile Field" msgstr "Camp d'Edició del Perfil" -#: ../../Zotlabs/Module/Admin.php:2106 ../../include/widgets.php:1390 +#: ../../Zotlabs/Module/Admin.php:2106 ../../include/widgets.php:1484 msgid "Profile Fields" msgstr "Camps del Perfil" @@ -4598,57 +4505,384 @@ msgstr "Camps Personalitzats" msgid "Create Custom Field" msgstr "Crear un Camp Personalitzat" -#: ../../Zotlabs/Module/Appman.php:37 ../../Zotlabs/Module/Appman.php:53 -msgid "App installed." -msgstr "Aplicació instal·lada." +#: ../../Zotlabs/Module/New_channel.php:128 +#: ../../Zotlabs/Module/Register.php:231 +msgid "Name or caption" +msgstr "Nom o llegenda" -#: ../../Zotlabs/Module/Appman.php:46 -msgid "Malformed app." -msgstr "Aplicació amb errors" +#: ../../Zotlabs/Module/New_channel.php:128 +#: ../../Zotlabs/Module/Register.php:231 +msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\"" +msgstr "Exemples: \"Pep Gomila\", \"Manel i els seus Cavalls\", \"Fútbol\", \"Grup d'Aviadors\"" -#: ../../Zotlabs/Module/Appman.php:104 -msgid "Embed code" -msgstr "Codi embegut" +#: ../../Zotlabs/Module/New_channel.php:130 +#: ../../Zotlabs/Module/Register.php:233 +msgid "Choose a short nickname" +msgstr "Tria un àlies curt" -#: ../../Zotlabs/Module/Appman.php:110 ../../include/widgets.php:107 -msgid "Edit App" -msgstr "Edita l'Aplicació" +#: ../../Zotlabs/Module/New_channel.php:130 +#: ../../Zotlabs/Module/Register.php:233 +#, php-format +msgid "" +"Your nickname will be used to create an easy to remember channel address " +"e.g. nickname%s" +msgstr "El teu àlies serà emprat per crear un nom fàcil per recordar l'adreça del canal p.e. àlies%s" -#: ../../Zotlabs/Module/Appman.php:110 -msgid "Create App" -msgstr "Crea l'Aplicació" +#: ../../Zotlabs/Module/New_channel.php:132 +#: ../../Zotlabs/Module/Register.php:235 +msgid "Channel role and privacy" +msgstr "Funció i privacitat del canal" -#: ../../Zotlabs/Module/Appman.php:115 -msgid "Name of app" -msgstr "Nom de l'Aplicació" +#: ../../Zotlabs/Module/New_channel.php:132 +#: ../../Zotlabs/Module/Register.php:235 +msgid "Select a channel role with your privacy requirements." +msgstr "Tria una funció pel canal amb els teus requisits de privacitat." -#: ../../Zotlabs/Module/Appman.php:116 -msgid "Location (URL) of app" -msgstr "Ubicació (URL) de l'aplicació" +#: ../../Zotlabs/Module/New_channel.php:132 +#: ../../Zotlabs/Module/Register.php:235 +msgid "Read more about roles" +msgstr "Llegix més sobre els rols" -#: ../../Zotlabs/Module/Appman.php:118 -msgid "Photo icon URL" -msgstr "Foto icona URL" +#: ../../Zotlabs/Module/New_channel.php:135 +msgid "Create Channel" +msgstr "Crea un Canal" -#: ../../Zotlabs/Module/Appman.php:118 -msgid "80 x 80 pixels - optional" -msgstr "80 x 80 pixels - opcional" +#: ../../Zotlabs/Module/New_channel.php:136 +msgid "" +"A channel is your identity on this network. It can represent a person, a " +"blog, or a forum to name a few. Channels can make connections with other " +"channels to share information with highly detailed permissions." +msgstr "Un canal es la tva identitat en aquesta xarxa. Pot representar una persona, un bloc, o un fòrum per anomenar alguns. Els canals poden connectar-se amb altres canals per compartir informació amb permisos molt detallats." -#: ../../Zotlabs/Module/Appman.php:119 -msgid "Categories (optional, comma separated list)" -msgstr "Categories (opcional, lista separada per comes)" +#: ../../Zotlabs/Module/New_channel.php:137 +msgid "" +"or import an existing channel from another location." +msgstr "o importa un canal existent des d'un altre ubicació." -#: ../../Zotlabs/Module/Appman.php:120 -msgid "Version ID" -msgstr "Versió ID" +#: ../../Zotlabs/Module/Ping.php:265 +msgid "sent you a private message" +msgstr "Se t'ha enviat un missatge privat" -#: ../../Zotlabs/Module/Appman.php:121 -msgid "Price of app" -msgstr "Preu de l'aplicació" +#: ../../Zotlabs/Module/Ping.php:313 +msgid "added your channel" +msgstr "el teu canal s'ha afegit" -#: ../../Zotlabs/Module/Appman.php:122 -msgid "Location (URL) to purchase app" -msgstr "Ubicació (URL) per comprar l'aplicació" +#: ../../Zotlabs/Module/Ping.php:323 +msgid "g A l F d" +msgstr "g A l F d" + +#: ../../Zotlabs/Module/Ping.php:346 +msgid "[today]" +msgstr "[avui]" + +#: ../../Zotlabs/Module/Ping.php:355 +msgid "posted an event" +msgstr "enviat un esdeveniment" + +#: ../../Zotlabs/Module/Notifications.php:30 +msgid "Invalid request identifier." +msgstr "Sol·licitud d'identificació invàlida." + +#: ../../Zotlabs/Module/Notifications.php:39 +msgid "Discard" +msgstr "Descarta" + +#: ../../Zotlabs/Module/Notifications.php:103 ../../include/nav.php:193 +msgid "Mark all system notifications seen" +msgstr "Marca totes les notificacions vistes" + +#: ../../Zotlabs/Module/Poke.php:168 ../../Zotlabs/Lib/Apps.php:228 +#: ../../include/conversation.php:963 +msgid "Poke" +msgstr "Esperonar" + +#: ../../Zotlabs/Module/Poke.php:169 +msgid "Poke somebody" +msgstr "Emprenyar algú" + +#: ../../Zotlabs/Module/Poke.php:172 +msgid "Poke/Prod" +msgstr "Esperonat/Picat" + +#: ../../Zotlabs/Module/Poke.php:173 +msgid "Poke, prod or do other things to somebody" +msgstr "emprenyar, picar o fer altres coses a algú" + +#: ../../Zotlabs/Module/Poke.php:180 +msgid "Recipient" +msgstr "Destinatari" + +#: ../../Zotlabs/Module/Poke.php:181 +msgid "Choose what you wish to do to recipient" +msgstr "Tria que vols fer amb el destinatari" + +#: ../../Zotlabs/Module/Poke.php:184 ../../Zotlabs/Module/Poke.php:185 +msgid "Make this post private" +msgstr "Fer aquesta entrada privada" + +#: ../../Zotlabs/Module/Oexchange.php:27 +msgid "Unable to find your hub." +msgstr "No es possible trobar el node" + +#: ../../Zotlabs/Module/Oexchange.php:41 +msgid "Post successful." +msgstr "Entrada realitzada amb èxit. " + +#: ../../Zotlabs/Module/Openid.php:30 +msgid "OpenID protocol error. No ID returned." +msgstr "Error del protocol OpenID. No ha retornat ID" + +#: ../../Zotlabs/Module/Openid.php:193 ../../include/auth.php:285 +msgid "Login failed." +msgstr "Identificació fallida." + +#: ../../Zotlabs/Module/Profperm.php:34 ../../Zotlabs/Module/Profperm.php:63 +msgid "Invalid profile identifier." +msgstr "Identificador invàlid de perfil." + +#: ../../Zotlabs/Module/Profperm.php:115 +msgid "Profile Visibility Editor" +msgstr "Perfil del Editor de Visibilitat" + +#: ../../Zotlabs/Module/Profperm.php:117 ../../include/channel.php:1290 +msgid "Profile" +msgstr "Perfil" + +#: ../../Zotlabs/Module/Profperm.php:119 +msgid "Click on a contact to add or remove." +msgstr "Clica sobre el contacte per afegir o esborrar." + +#: ../../Zotlabs/Module/Profperm.php:128 +msgid "Visible To" +msgstr "Visible per" + +#: ../../Zotlabs/Module/Pconfig.php:26 ../../Zotlabs/Module/Pconfig.php:59 +msgid "This setting requires special processing and editing has been blocked." +msgstr "Aquest ajust requereix un procés espedial i l'edició esta bloquejada." + +#: ../../Zotlabs/Module/Pconfig.php:48 +msgid "Configuration Editor" +msgstr "Editor de Configuració" + +#: ../../Zotlabs/Module/Pconfig.php:49 +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 "atenció: Realitzar segons quins ajustos pot fer el canal inoperable. Deixa aquesta pàgina si no estas segur i tens suficients coneixements sobre l'ús correcte d'aquesta característica." + +#: ../../Zotlabs/Module/Probe.php:28 ../../Zotlabs/Module/Probe.php:32 +#, php-format +msgid "Fetching URL returns error: %1$s" +msgstr "URL sol·licitada retorna error: %1$s" + +#: ../../Zotlabs/Module/Siteinfo.php:19 +#, php-format +msgid "Version %s" +msgstr "Versió %s" + +#: ../../Zotlabs/Module/Siteinfo.php:34 +msgid "Installed plugins/addons/apps:" +msgstr "Plugins/addons/apps Instal·lats:" + +#: ../../Zotlabs/Module/Siteinfo.php:36 +msgid "No installed plugins/addons/apps" +msgstr "Plugins/addons/apps no instal·lats" + +#: ../../Zotlabs/Module/Siteinfo.php:49 +msgid "" +"This is a hub of $Projectname - a global cooperative network of " +"decentralized privacy enhanced websites." +msgstr "Aquest és un node de $Projectname, una xarxa cooperativa mundial de llocs web descentralitzats amb gran control de la privacitat." + +#: ../../Zotlabs/Module/Siteinfo.php:51 +msgid "Tag: " +msgstr "Etiqueta:" + +#: ../../Zotlabs/Module/Siteinfo.php:53 +msgid "Last background fetch: " +msgstr "Última actualització en rerefons:" + +#: ../../Zotlabs/Module/Siteinfo.php:55 +msgid "Current load average: " +msgstr "Càrrega actual mitja:" + +#: ../../Zotlabs/Module/Siteinfo.php:58 +msgid "Running at web location" +msgstr "Correguent en el lloc web" + +#: ../../Zotlabs/Module/Siteinfo.php:59 +msgid "" +"Please visit hubzilla.org to learn more " +"about $Projectname." +msgstr "Visita hubzilla.org per saber-ne més de $Projectname." + +#: ../../Zotlabs/Module/Siteinfo.php:60 +msgid "Bug reports and issues: please visit" +msgstr "Per informar d'errors o problemes ves a" + +#: ../../Zotlabs/Module/Siteinfo.php:62 +msgid "$projectname issues" +msgstr "$projectname qüestions" + +#: ../../Zotlabs/Module/Siteinfo.php:63 +msgid "" +"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot " +"com" +msgstr "Per suggerències, felicitacions i altres, envia'ns un mail a «redmatrix» [arroba] librelist [punt] com" + +#: ../../Zotlabs/Module/Siteinfo.php:65 +msgid "Site Administrators" +msgstr "Administradors del lloc" + +#: ../../Zotlabs/Module/Rmagic.php:44 +msgid "" +"We encountered a problem while logging in with the OpenID you provided. " +"Please check the correct spelling of the ID." +msgstr "Em trobat un problema durant l'inici de sessió amb el OpenID que has facilitat. verifica l'ortografia correcta de la ID." + +#: ../../Zotlabs/Module/Rmagic.php:44 +msgid "The error message was:" +msgstr "El missatge d'error fou:" + +#: ../../Zotlabs/Module/Rmagic.php:48 +msgid "Authentication failed." +msgstr "Ha fallat l'autentificació." + +#: ../../Zotlabs/Module/Rmagic.php:88 +msgid "Remote Authentication" +msgstr "Autentificació Remota" + +#: ../../Zotlabs/Module/Rmagic.php:89 +msgid "Enter your channel address (e.g. channel@example.com)" +msgstr "Introdueix la teva adreça del canal (eg canal@exemple.com)" + +#: ../../Zotlabs/Module/Rmagic.php:90 +msgid "Authenticate" +msgstr "Autentica't" + +#: ../../Zotlabs/Module/Pubsites.php:22 ../../include/widgets.php:1337 +msgid "Public Hubs" +msgstr "Nodes Públics" + +#: ../../Zotlabs/Module/Pubsites.php:25 +msgid "" +"The listed hubs allow public registration for the $Projectname network. All " +"hubs in the network are interlinked so membership on any of them conveys " +"membership in the network as a whole. Some hubs may require subscription or " +"provide tiered service plans. The hub itself may provide " +"additional details." +msgstr "Els nodes llistats permeten registrar usuaris de la xarxa $Projectname. Com que tots els nodes estan enllaçats entre ells, la identitat és vàlida a tota la xarxa. Alguns nodes poden demanar subscripció o oferir serveis addicional de pagament. Per a més detalls, proveu de seguir els enllaços dels proveïdors." + +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Hub URL" +msgstr "URL del Node" + +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Access Type" +msgstr "Tipus d'accés" + +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Registration Policy" +msgstr "Condicions d'inscripció" + +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Stats" +msgstr "Estadístiques" + +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Software" +msgstr "Programari" + +#: ../../Zotlabs/Module/Pubsites.php:31 ../../Zotlabs/Module/Ratings.php:103 +#: ../../include/conversation.php:962 +msgid "Ratings" +msgstr "Valoracions" + +#: ../../Zotlabs/Module/Pubsites.php:38 +msgid "Rate" +msgstr "Puntua" + +#: ../../Zotlabs/Module/Profile_photo.php:186 +msgid "" +"Shift-reload the page or clear browser cache if the new photo does not " +"display immediately." +msgstr "Refresca la memòria cau del navegador si la foto no s'actualitza immediatament. Dreceres: «Ctrl+F5» i «Ctrl+Maj+R»" + +#: ../../Zotlabs/Module/Profile_photo.php:389 +msgid "Upload Profile Photo" +msgstr "Puja una Foto pel Perfil" + +#: ../../Zotlabs/Module/Blocks.php:97 ../../Zotlabs/Module/Blocks.php:155 +#: ../../Zotlabs/Module/Editblock.php:108 +msgid "Block Name" +msgstr "Nom del Bloc" + +#: ../../Zotlabs/Module/Blocks.php:154 ../../include/text.php:2238 +msgid "Blocks" +msgstr "Bloc" + +#: ../../Zotlabs/Module/Blocks.php:156 +msgid "Block Title" +msgstr "Títol del bloc" + +#: ../../Zotlabs/Module/Rate.php:160 +msgid "Website:" +msgstr "Lloc web:" + +#: ../../Zotlabs/Module/Rate.php:163 +#, php-format +msgid "Remote Channel [%s] (not yet known on this site)" +msgstr "Canal Remot [%s] (encara no es coneix en aquest lloc)" + +#: ../../Zotlabs/Module/Rate.php:164 +msgid "Rating (this information is public)" +msgstr "Valoració (aquesta informació és pública)" + +#: ../../Zotlabs/Module/Rate.php:165 +msgid "Optionally explain your rating (this information is public)" +msgstr "Opcionalment pots explicar la teva qualificació (aquesta informació és pública)" + +#: ../../Zotlabs/Module/Ratings.php:73 +msgid "No ratings" +msgstr "No valorat" + +#: ../../Zotlabs/Module/Ratings.php:104 +msgid "Rating: " +msgstr "Valoració:" + +#: ../../Zotlabs/Module/Ratings.php:105 +msgid "Website: " +msgstr "Lloc web:" + +#: ../../Zotlabs/Module/Ratings.php:107 +msgid "Description: " +msgstr "Descripció:" + +#: ../../Zotlabs/Module/Apps.php:47 ../../include/nav.php:165 +#: ../../include/widgets.php:102 +msgid "Apps" +msgstr "Aplicatius" + +#: ../../Zotlabs/Module/Editblock.php:124 ../../include/conversation.php:1243 +msgid "Title (optional)" +msgstr "Títol (opcional)" + +#: ../../Zotlabs/Module/Editblock.php:133 +msgid "Edit Block" +msgstr "Editar Bloc" + +#: ../../Zotlabs/Module/Common.php:14 +msgid "No channel." +msgstr "No s'ha trobat el canal" + +#: ../../Zotlabs/Module/Common.php:43 +msgid "Common connections" +msgstr "Connexions en comú" + +#: ../../Zotlabs/Module/Common.php:48 +msgid "No connections in common." +msgstr "No hi ha connexions en comú." #: ../../Zotlabs/Module/Rbmark.php:94 msgid "Select a bookmark folder" @@ -4668,12 +4902,12 @@ msgstr "O entra un nou nom de favorit" #: ../../Zotlabs/Module/Register.php:49 msgid "Maximum daily site registrations exceeded. Please try again tomorrow." -msgstr "Nombre màxim de registres diaris excedit. Si us plau, provau demà." +msgstr "Nombre màxim d'inscripcions diaris excedit. Si us plau, provau demà." #: ../../Zotlabs/Module/Register.php:55 msgid "" "Please indicate acceptance of the Terms of Service. Registration failed." -msgstr "El registre ha fallat. Si et plau, indica que acceptes les Condicions del Servei." +msgstr "L'inscripció ha fallat. Si et plau, indica que acceptes les Condicions del Servei." #: ../../Zotlabs/Module/Register.php:89 msgid "Passwords do not match." @@ -4687,29 +4921,29 @@ msgstr "Registrat amb èxit. Si et plau revisa el teu correu electrònic per a l #: ../../Zotlabs/Module/Register.php:137 msgid "Your registration is pending approval by the site owner." -msgstr "El teu registre esta pendent de validació pel propietari del lloc." +msgstr "La teva inscripció esta pendent de validació pel propietari del lloc." #: ../../Zotlabs/Module/Register.php:140 msgid "Your registration can not be processed." -msgstr "El teu registre no ha pogut ser processat. " +msgstr "La teva inscripció no ha pogut ser processat. " #: ../../Zotlabs/Module/Register.php:184 msgid "Registration on this hub is disabled." -msgstr "El registre en aquest node està deshabilitat." +msgstr "L'inscripció en aquest node està deshabilitat." #: ../../Zotlabs/Module/Register.php:193 msgid "Registration on this hub is by approval only." -msgstr "El registre en aquest node es únicament per validació." +msgstr "L'inscripció en aquest node es únicament per validació." #: ../../Zotlabs/Module/Register.php:194 msgid "Register at another affiliated hub." -msgstr "Registre en altre node afiliat" +msgstr "Inscripció en altre node afiliat" #: ../../Zotlabs/Module/Register.php:204 msgid "" "This site has exceeded the number of allowed daily account registrations. " "Please try again tomorrow." -msgstr "El lloc ha excedit el límit màxim diari de nous comptes/registres. Provau demà." +msgstr "El lloc ha excedit el límit màxim diari de nous comptes/inscripció. Provau demà." #: ../../Zotlabs/Module/Register.php:215 msgid "Terms of Service" @@ -4753,120 +4987,154 @@ msgstr "sí" msgid "Membership on this site is by invitation only." msgstr "La pertinença en aquest lloc es per invitació exclusivament." -#: ../../Zotlabs/Module/Register.php:262 ../../include/nav.php:147 -#: ../../boot.php:1685 +#: ../../Zotlabs/Module/Register.php:262 ../../include/nav.php:149 +#: ../../boot.php:1686 msgid "Register" -msgstr "Registre" +msgstr "Inscripció" -#: ../../Zotlabs/Module/Register.php:262 -msgid "Proceed to create your first channel" -msgstr "Comença a crear el teu primer canal" +#: ../../Zotlabs/Module/Register.php:263 +msgid "" +"This site may require email verification after submitting this form. If you " +"are returned to a login page, please check your email for instructions." +msgstr "" #: ../../Zotlabs/Module/Regmod.php:15 msgid "Please login." msgstr "Inicia Sessió." -#: ../../Zotlabs/Module/Removeaccount.php:34 +#: ../../Zotlabs/Module/Removeaccount.php:35 msgid "" "Account removals are not allowed within 48 hours of changing the account " "password." msgstr "L'esborrat de comptes no està permès fins que transcorren 48 hores des de l'últim canvi de contrasenya." -#: ../../Zotlabs/Module/Removeaccount.php:56 +#: ../../Zotlabs/Module/Removeaccount.php:57 msgid "Remove This Account" msgstr "Esborra el compte" -#: ../../Zotlabs/Module/Removeaccount.php:57 -#: ../../Zotlabs/Module/Removeme.php:59 +#: ../../Zotlabs/Module/Removeaccount.php:58 +#: ../../Zotlabs/Module/Removeme.php:61 msgid "WARNING: " msgstr "ALERTA:" -#: ../../Zotlabs/Module/Removeaccount.php:57 +#: ../../Zotlabs/Module/Removeaccount.php:58 msgid "" "This account and all its channels will be completely removed from the " "network. " msgstr "Aquest compte i tots els seus canals s'estan apunt d'esborrar totalment de la xarxa." -#: ../../Zotlabs/Module/Removeaccount.php:57 -#: ../../Zotlabs/Module/Removeme.php:59 +#: ../../Zotlabs/Module/Removeaccount.php:58 +#: ../../Zotlabs/Module/Removeme.php:61 msgid "This action is permanent and can not be undone!" msgstr "Aquesta acció és irreversible!" -#: ../../Zotlabs/Module/Removeaccount.php:58 -#: ../../Zotlabs/Module/Removeme.php:60 +#: ../../Zotlabs/Module/Removeaccount.php:59 +#: ../../Zotlabs/Module/Removeme.php:62 msgid "Please enter your password for verification:" msgstr "Aquesta acció requereix tornar a introduir la contrasenya:" -#: ../../Zotlabs/Module/Removeaccount.php:59 +#: ../../Zotlabs/Module/Removeaccount.php:60 msgid "" "Remove this account, all its channels and all its channel clones from the " "network" msgstr "Esborra de la xarxa aquest compte, tots els seus canals, i tots els seus canals clons." -#: ../../Zotlabs/Module/Removeaccount.php:59 +#: ../../Zotlabs/Module/Removeaccount.php:60 msgid "" "By default only the instances of the channels located on this hub will be " "removed from the network" msgstr "Per defecte, només les instancies dels canal ubicats en aquest node poden esser esborrades de la xarxa" -#: ../../Zotlabs/Module/Removeaccount.php:60 -#: ../../Zotlabs/Module/Settings.php:705 +#: ../../Zotlabs/Module/Removeaccount.php:61 +#: ../../Zotlabs/Module/Settings.php:759 msgid "Remove Account" msgstr "Esborra el Compte" -#: ../../Zotlabs/Module/Removeme.php:33 +#: ../../Zotlabs/Module/Removeme.php:35 msgid "" "Channel removals are not allowed within 48 hours of changing the account " "password." msgstr "L'esborrat de canals no està permès fins que transcorren 48 hores des de l'últim canvi de contrasenya." -#: ../../Zotlabs/Module/Removeme.php:58 +#: ../../Zotlabs/Module/Removeme.php:60 msgid "Remove This Channel" msgstr "Elimina Aquest Canal" -#: ../../Zotlabs/Module/Removeme.php:59 +#: ../../Zotlabs/Module/Removeme.php:61 msgid "This channel will be completely removed from the network. " msgstr "Aquest canal serà completament eliminat de la xarxa." -#: ../../Zotlabs/Module/Removeme.php:61 +#: ../../Zotlabs/Module/Removeme.php:63 msgid "Remove this channel and all its clones from the network" msgstr "Elimina aquest canal i els seus clons de la xarxa" -#: ../../Zotlabs/Module/Removeme.php:61 +#: ../../Zotlabs/Module/Removeme.php:63 msgid "" "By default only the instance of the channel located on this hub will be " "removed from the network" msgstr "Per defecte, només la instancia del canal ubicat en aquest node pot esser esborrat de la xarxa" -#: ../../Zotlabs/Module/Removeme.php:62 ../../Zotlabs/Module/Settings.php:1124 +#: ../../Zotlabs/Module/Removeme.php:64 ../../Zotlabs/Module/Settings.php:1219 msgid "Remove Channel" msgstr "Elimina el canal" -#: ../../Zotlabs/Module/Rmagic.php:44 +#: ../../Zotlabs/Module/Uexport.php:55 ../../Zotlabs/Module/Uexport.php:56 +msgid "Export Channel" +msgstr "Exportar Canal" + +#: ../../Zotlabs/Module/Uexport.php:57 msgid "" -"We encountered a problem while logging in with the OpenID you provided. " -"Please check the correct spelling of the ID." -msgstr "Em trobat un problema durant l'inici de sessió amb el OpenID que has facilitat. verifica l'ortografia correcta de la ID." +"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 "Exporta la informació bàsica del canal a un arxiu. Això actua com a còpia de recolzament de les teves connexions, permisos, perfil i dades bàsiques, les quals pots emprar per traslladar aquestes dades a una altre lloc/node, però no conté el contingut del canal." -#: ../../Zotlabs/Module/Rmagic.php:44 -msgid "The error message was:" -msgstr "El missatge d'error fou:" +#: ../../Zotlabs/Module/Uexport.php:58 +msgid "Export Content" +msgstr "Exportar el Contingut" -#: ../../Zotlabs/Module/Rmagic.php:48 -msgid "Authentication failed." -msgstr "Ha fallat l'autentificació." +#: ../../Zotlabs/Module/Uexport.php:59 +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 "Exporta la informació del canal i tot el contingut recent a un arxiu de recolzament JSON que por ser restaurat o importat en altre lloc/node. Això còpia totes les teves connexions, permisos, perfil i dades i mesos de entrades. L'arxiu pot ser MOLT gran. Si et plau, sigues pacient ja que pot trigar uns minuts a començar a baixar." -#: ../../Zotlabs/Module/Rmagic.php:88 -msgid "Remote Authentication" -msgstr "Autentificació Remota" +#: ../../Zotlabs/Module/Uexport.php:60 +msgid "Export your posts from a given year." +msgstr "Exporta les teves entrades d'un any donat." -#: ../../Zotlabs/Module/Rmagic.php:89 -msgid "Enter your channel address (e.g. channel@example.com)" -msgstr "Introdueix la teva adreça del canal (eg canal@exemple.com)" +#: ../../Zotlabs/Module/Uexport.php:62 +msgid "" +"You may also export your posts and conversations for a particular year or " +"month. Adjust the date in your browser location bar to select other dates. " +"If the export fails (possibly due to memory exhaustion on your server hub), " +"please try again selecting a more limited date range." +msgstr "Pots també exportar les teves entrades i conversacions d'un any o un mes en particular. Ajusta la data a la barra de direccions del navegador per seleccionar altres dates. Si la exportació falla (possiblement degut al esgotament de la memòria del node servidor), si et plau, intenta de nou la selecció d'un rang de dates més limitat." -#: ../../Zotlabs/Module/Rmagic.php:90 -msgid "Authenticate" -msgstr "Autentica't" +#: ../../Zotlabs/Module/Uexport.php:63 +#, php-format +msgid "" +"To select all posts for a given year, such as this year, visit %2$s" +msgstr "Per seleccionar tots els missatges per a un any determinat, com aquest any, visiteu %2$s" + +#: ../../Zotlabs/Module/Uexport.php:64 +#, php-format +msgid "" +"To select all posts for a given month, such as January of this year, visit " +"%2$s" +msgstr "Per seleccionar tots els missatges per a un mes determinat, com el de gener d'aquest any, visiteu %2$s" + +#: ../../Zotlabs/Module/Uexport.php:65 +#, php-format +msgid "" +"These content files may be imported or restored by visiting %2$s on any site containing your channel. For best results" +" please import or restore these in date order (oldest first)." +msgstr "Aquests arxius de contingut poden ser importats o restaurats per visitar %2$s en qualsevol lloc que conté el teu canal. Per obtenir els millors resultats si us plau, importar o restaurar aquests en ordre de data (la més antiga primer)." #: ../../Zotlabs/Module/Search.php:216 #, php-format @@ -4882,609 +5150,652 @@ msgstr "Resultats de cerca per: %s" msgid "No service class restrictions found." msgstr "No s'han trobat restriccions de clase." -#: ../../Zotlabs/Module/Settings.php:69 +#: ../../Zotlabs/Module/Settings.php:64 msgid "Name is required" msgstr "Es requereix un Nom" -#: ../../Zotlabs/Module/Settings.php:73 +#: ../../Zotlabs/Module/Settings.php:68 msgid "Key and Secret are required" msgstr "Es requereix Clau (Key) i el Secret (Secret)" -#: ../../Zotlabs/Module/Settings.php:225 +#: ../../Zotlabs/Module/Settings.php:138 +#, php-format +msgid "This channel is limited to %d tokens" +msgstr "" + +#: ../../Zotlabs/Module/Settings.php:144 +msgid "Name and Password are required." +msgstr "" + +#: ../../Zotlabs/Module/Settings.php:168 +msgid "Token saved." +msgstr "" + +#: ../../Zotlabs/Module/Settings.php:274 msgid "Not valid email." msgstr "E-correu no vàlid." -#: ../../Zotlabs/Module/Settings.php:228 +#: ../../Zotlabs/Module/Settings.php:277 msgid "Protected email address. Cannot change to that email." msgstr "Adreça d'e-correu protegida. No es pot canviar a aquest e-correu." -#: ../../Zotlabs/Module/Settings.php:237 +#: ../../Zotlabs/Module/Settings.php:286 msgid "System failure storing new email. Please try again." msgstr "Fallada del sistema al guardar un nou correu. Si us plau, proba de nou." -#: ../../Zotlabs/Module/Settings.php:254 +#: ../../Zotlabs/Module/Settings.php:303 msgid "Password verification failed." msgstr "La verificació de la contrasenya ha fallat." -#: ../../Zotlabs/Module/Settings.php:261 +#: ../../Zotlabs/Module/Settings.php:310 msgid "Passwords do not match. Password unchanged." msgstr "Les contrasenyes no coincideixen. Contrasenya sense canvis." -#: ../../Zotlabs/Module/Settings.php:265 +#: ../../Zotlabs/Module/Settings.php:314 msgid "Empty passwords are not allowed. Password unchanged." msgstr "Les contrasenyes en blanc no estan permesas. Contrasenya sense canvis." -#: ../../Zotlabs/Module/Settings.php:279 +#: ../../Zotlabs/Module/Settings.php:328 msgid "Password changed." msgstr "Contrasenya canviada." -#: ../../Zotlabs/Module/Settings.php:281 +#: ../../Zotlabs/Module/Settings.php:330 msgid "Password update failed. Please try again." msgstr "L'actualització de la contrasenya va fallar. Si us plau, torneu a intentar-ho." -#: ../../Zotlabs/Module/Settings.php:525 +#: ../../Zotlabs/Module/Settings.php:579 msgid "Settings updated." msgstr "Ajustes actualizados." -#: ../../Zotlabs/Module/Settings.php:589 ../../Zotlabs/Module/Settings.php:615 -#: ../../Zotlabs/Module/Settings.php:651 +#: ../../Zotlabs/Module/Settings.php:643 ../../Zotlabs/Module/Settings.php:669 +#: ../../Zotlabs/Module/Settings.php:705 msgid "Add application" msgstr "Afegir aplicatiu" -#: ../../Zotlabs/Module/Settings.php:592 +#: ../../Zotlabs/Module/Settings.php:646 msgid "Name of application" msgstr "Nom de l'aplicatiu" -#: ../../Zotlabs/Module/Settings.php:593 ../../Zotlabs/Module/Settings.php:619 +#: ../../Zotlabs/Module/Settings.php:647 ../../Zotlabs/Module/Settings.php:673 msgid "Consumer Key" msgstr "Consumer Key" -#: ../../Zotlabs/Module/Settings.php:593 ../../Zotlabs/Module/Settings.php:594 +#: ../../Zotlabs/Module/Settings.php:647 ../../Zotlabs/Module/Settings.php:648 msgid "Automatically generated - change if desired. Max length 20" msgstr "Generat automàticament- Canvia-ho si ho vols. Max. longitud 20" -#: ../../Zotlabs/Module/Settings.php:594 ../../Zotlabs/Module/Settings.php:620 +#: ../../Zotlabs/Module/Settings.php:648 ../../Zotlabs/Module/Settings.php:674 msgid "Consumer Secret" msgstr "Consumer Secret" -#: ../../Zotlabs/Module/Settings.php:595 ../../Zotlabs/Module/Settings.php:621 +#: ../../Zotlabs/Module/Settings.php:649 ../../Zotlabs/Module/Settings.php:675 msgid "Redirect" msgstr "Redirecciona" -#: ../../Zotlabs/Module/Settings.php:595 +#: ../../Zotlabs/Module/Settings.php:649 msgid "" "Redirect URI - leave blank unless your application specifically requires " "this" msgstr "URI redirigida - No canviar excepte perquè el teu aplicatiu ho requereixi." -#: ../../Zotlabs/Module/Settings.php:596 ../../Zotlabs/Module/Settings.php:622 +#: ../../Zotlabs/Module/Settings.php:650 ../../Zotlabs/Module/Settings.php:676 msgid "Icon url" msgstr "Icona de url" -#: ../../Zotlabs/Module/Settings.php:596 ../../Zotlabs/Module/Sources.php:112 +#: ../../Zotlabs/Module/Settings.php:650 ../../Zotlabs/Module/Sources.php:112 #: ../../Zotlabs/Module/Sources.php:147 msgid "Optional" msgstr "Opcional" -#: ../../Zotlabs/Module/Settings.php:607 +#: ../../Zotlabs/Module/Settings.php:661 msgid "Application not found." msgstr "Aplicatiu no trobat." -#: ../../Zotlabs/Module/Settings.php:650 +#: ../../Zotlabs/Module/Settings.php:704 msgid "Connected Apps" msgstr "Aplicatius Conectats" -#: ../../Zotlabs/Module/Settings.php:654 +#: ../../Zotlabs/Module/Settings.php:708 msgid "Client key starts with" msgstr "La clau del client comença amb" -#: ../../Zotlabs/Module/Settings.php:655 +#: ../../Zotlabs/Module/Settings.php:709 msgid "No name" msgstr "Sin nombre" -#: ../../Zotlabs/Module/Settings.php:656 +#: ../../Zotlabs/Module/Settings.php:710 msgid "Remove authorization" msgstr "Elimina autorització" -#: ../../Zotlabs/Module/Settings.php:669 +#: ../../Zotlabs/Module/Settings.php:723 msgid "No feature settings configured" msgstr "No hi ha opcions de les funcions configurades" -#: ../../Zotlabs/Module/Settings.php:676 +#: ../../Zotlabs/Module/Settings.php:730 msgid "Feature/Addon Settings" msgstr "Ajustos de Complements" -#: ../../Zotlabs/Module/Settings.php:699 +#: ../../Zotlabs/Module/Settings.php:753 msgid "Account Settings" msgstr "Ajustos de Compte" -#: ../../Zotlabs/Module/Settings.php:700 +#: ../../Zotlabs/Module/Settings.php:754 msgid "Current Password" msgstr "Contrasenya Actual" -#: ../../Zotlabs/Module/Settings.php:701 +#: ../../Zotlabs/Module/Settings.php:755 msgid "Enter New Password" msgstr "Entra la Nova Contrasenya" -#: ../../Zotlabs/Module/Settings.php:702 +#: ../../Zotlabs/Module/Settings.php:756 msgid "Confirm New Password" msgstr "Confirma la Nova Contrasenya" -#: ../../Zotlabs/Module/Settings.php:702 +#: ../../Zotlabs/Module/Settings.php:756 msgid "Leave password fields blank unless changing" msgstr "Deixa els camps de contrasenya en blanc llevat que la vulguis canviar" -#: ../../Zotlabs/Module/Settings.php:704 -#: ../../Zotlabs/Module/Settings.php:1041 +#: ../../Zotlabs/Module/Settings.php:758 +#: ../../Zotlabs/Module/Settings.php:1136 msgid "Email Address:" msgstr "Adreça de E-Correu:" -#: ../../Zotlabs/Module/Settings.php:706 +#: ../../Zotlabs/Module/Settings.php:760 msgid "Remove this account including all its channels" msgstr "Esborra aquest compte inclosos tots els seus canals" -#: ../../Zotlabs/Module/Settings.php:729 +#: ../../Zotlabs/Module/Settings.php:789 +msgid "" +"Use this form to create temporary access identifiers to share things with " +"non-members. These identities may be used in Access Control Lists and " +"visitors may login using these credentials to access the private content." +msgstr "" + +#: ../../Zotlabs/Module/Settings.php:791 +msgid "" +"You may also provide dropbox style access links to friends and " +"associates by adding the Login Password to any specific site URL as shown. " +"Examples:" +msgstr "" + +#: ../../Zotlabs/Module/Settings.php:796 ../../include/widgets.php:614 +msgid "Guest Access Tokens" +msgstr "" + +#: ../../Zotlabs/Module/Settings.php:803 +msgid "Login Name" +msgstr "" + +#: ../../Zotlabs/Module/Settings.php:804 +msgid "Login Password" +msgstr "" + +#: ../../Zotlabs/Module/Settings.php:805 +msgid "Expires (yyyy-mm-dd)" +msgstr "" + +#: ../../Zotlabs/Module/Settings.php:830 msgid "Additional Features" msgstr "Característiques Addicionals" -#: ../../Zotlabs/Module/Settings.php:753 +#: ../../Zotlabs/Module/Settings.php:854 msgid "Connector Settings" msgstr "Ajustos de Connector" -#: ../../Zotlabs/Module/Settings.php:792 +#: ../../Zotlabs/Module/Settings.php:893 msgid "No special theme for mobile devices" msgstr "No emprar tema especial per aparells mòbils" -#: ../../Zotlabs/Module/Settings.php:795 +#: ../../Zotlabs/Module/Settings.php:896 #, php-format msgid "%s - (Experimental)" msgstr "%s - (Experimental)" -#: ../../Zotlabs/Module/Settings.php:837 +#: ../../Zotlabs/Module/Settings.php:938 msgid "Display Settings" msgstr "Ajustos de Pantalla" -#: ../../Zotlabs/Module/Settings.php:838 +#: ../../Zotlabs/Module/Settings.php:939 msgid "Theme Settings" msgstr "Ajustos de Tema" -#: ../../Zotlabs/Module/Settings.php:839 +#: ../../Zotlabs/Module/Settings.php:940 msgid "Custom Theme Settings" msgstr "Ajustos Personals de Tema" -#: ../../Zotlabs/Module/Settings.php:840 +#: ../../Zotlabs/Module/Settings.php:941 msgid "Content Settings" msgstr "Ajustos de Contingut" -#: ../../Zotlabs/Module/Settings.php:846 +#: ../../Zotlabs/Module/Settings.php:947 msgid "Display Theme:" msgstr "Ajustos de Tema:" -#: ../../Zotlabs/Module/Settings.php:847 +#: ../../Zotlabs/Module/Settings.php:948 msgid "Mobile Theme:" msgstr "Tema Mòbil:" -#: ../../Zotlabs/Module/Settings.php:848 +#: ../../Zotlabs/Module/Settings.php:949 msgid "Preload images before rendering the page" msgstr "Precarrega les imatges abans de dibuixar la pàgina" -#: ../../Zotlabs/Module/Settings.php:848 +#: ../../Zotlabs/Module/Settings.php:949 msgid "" "The subjective page load time will be longer but the page will be ready when" " displayed" msgstr "El temps subjectiu per carregar la pàgina pot ser llarg però la pàgina estarà preparada quan es mostri" -#: ../../Zotlabs/Module/Settings.php:849 +#: ../../Zotlabs/Module/Settings.php:950 msgid "Enable user zoom on mobile devices" msgstr "Zoom d'usuari en dispositius mòbils" -#: ../../Zotlabs/Module/Settings.php:850 +#: ../../Zotlabs/Module/Settings.php:951 msgid "Update browser every xx seconds" msgstr "Actualitza el navegador cada xx segons" -#: ../../Zotlabs/Module/Settings.php:850 +#: ../../Zotlabs/Module/Settings.php:951 msgid "Minimum of 10 seconds, no maximum" msgstr "Mínim de 10 segons, sense màxim" -#: ../../Zotlabs/Module/Settings.php:851 +#: ../../Zotlabs/Module/Settings.php:952 msgid "Maximum number of conversations to load at any time:" msgstr "Nombre màxim de conversacions a càrregar cada vegada" -#: ../../Zotlabs/Module/Settings.php:851 +#: ../../Zotlabs/Module/Settings.php:952 msgid "Maximum of 100 items" msgstr "Màxim de 100 elements" -#: ../../Zotlabs/Module/Settings.php:852 +#: ../../Zotlabs/Module/Settings.php:953 msgid "Show emoticons (smilies) as images" msgstr "Mostra emoticons (smilies) com a imatges" -#: ../../Zotlabs/Module/Settings.php:853 +#: ../../Zotlabs/Module/Settings.php:954 msgid "Link post titles to source" msgstr "Enllaça a l'origen els títols de l'entrada" -#: ../../Zotlabs/Module/Settings.php:854 +#: ../../Zotlabs/Module/Settings.php:955 msgid "System Page Layout Editor - (advanced)" msgstr "Editor de Disseny de la Pàgina del Sistema - (avançat)" -#: ../../Zotlabs/Module/Settings.php:857 +#: ../../Zotlabs/Module/Settings.php:958 msgid "Use blog/list mode on channel page" msgstr "Empra el mode blog/llista a la pàgina del canal" -#: ../../Zotlabs/Module/Settings.php:857 ../../Zotlabs/Module/Settings.php:858 +#: ../../Zotlabs/Module/Settings.php:958 ../../Zotlabs/Module/Settings.php:959 msgid "(comments displayed separately)" msgstr "(Observacions es mostren per separat)" -#: ../../Zotlabs/Module/Settings.php:858 +#: ../../Zotlabs/Module/Settings.php:959 msgid "Use blog/list mode on grid page" msgstr "Empra el mode de blog/llista a la pàgina de la malla" -#: ../../Zotlabs/Module/Settings.php:859 +#: ../../Zotlabs/Module/Settings.php:960 msgid "Channel page max height of content (in pixels)" msgstr "Alçada màxima de contingut (en píxels) de la pàgina de Canal" -#: ../../Zotlabs/Module/Settings.php:859 ../../Zotlabs/Module/Settings.php:860 +#: ../../Zotlabs/Module/Settings.php:960 ../../Zotlabs/Module/Settings.php:961 msgid "click to expand content exceeding this height" msgstr "Clic per expandir el contingut que excedeixi aquesta alçada" -#: ../../Zotlabs/Module/Settings.php:860 +#: ../../Zotlabs/Module/Settings.php:961 msgid "Grid page max height of content (in pixels)" msgstr "Alçada màxima dels continguts (en píxels) de la Pàgina de Malla " -#: ../../Zotlabs/Module/Settings.php:894 +#: ../../Zotlabs/Module/Settings.php:990 msgid "Nobody except yourself" msgstr "Ningú excepte tú" -#: ../../Zotlabs/Module/Settings.php:895 +#: ../../Zotlabs/Module/Settings.php:991 msgid "Only those you specifically allow" msgstr "Només allò que específicament permetis" -#: ../../Zotlabs/Module/Settings.php:896 +#: ../../Zotlabs/Module/Settings.php:992 msgid "Approved connections" msgstr "Connexions aprovades" -#: ../../Zotlabs/Module/Settings.php:897 +#: ../../Zotlabs/Module/Settings.php:993 msgid "Any connections" msgstr "Qualsevol connexió" -#: ../../Zotlabs/Module/Settings.php:898 +#: ../../Zotlabs/Module/Settings.php:994 msgid "Anybody on this website" msgstr "Qualsevol en aquest lloc" -#: ../../Zotlabs/Module/Settings.php:899 +#: ../../Zotlabs/Module/Settings.php:995 msgid "Anybody in this network" msgstr "Qualsevol en aquesta xarxa" -#: ../../Zotlabs/Module/Settings.php:900 +#: ../../Zotlabs/Module/Settings.php:996 msgid "Anybody authenticated" msgstr "Qualsevol autenticat" -#: ../../Zotlabs/Module/Settings.php:901 +#: ../../Zotlabs/Module/Settings.php:997 msgid "Anybody on the internet" msgstr "Qualsevol a internet" -#: ../../Zotlabs/Module/Settings.php:976 +#: ../../Zotlabs/Module/Settings.php:1071 msgid "Publish your default profile in the network directory" msgstr "Publica el teu perfil per defecte al directori de la xarxa" -#: ../../Zotlabs/Module/Settings.php:981 +#: ../../Zotlabs/Module/Settings.php:1076 msgid "Allow us to suggest you as a potential friend to new members?" msgstr "Ens permets suggerir-te com a potencial amic als nous membres?" -#: ../../Zotlabs/Module/Settings.php:990 +#: ../../Zotlabs/Module/Settings.php:1085 msgid "Your channel address is" msgstr "La teva adreça del canal es" -#: ../../Zotlabs/Module/Settings.php:1032 +#: ../../Zotlabs/Module/Settings.php:1127 msgid "Channel Settings" msgstr "Ajustos del Canal" -#: ../../Zotlabs/Module/Settings.php:1039 +#: ../../Zotlabs/Module/Settings.php:1134 msgid "Basic Settings" msgstr "Ajustos Bàsics" -#: ../../Zotlabs/Module/Settings.php:1040 ../../include/channel.php:1140 +#: ../../Zotlabs/Module/Settings.php:1135 ../../include/channel.php:1180 msgid "Full Name:" msgstr "Nom Complet:" -#: ../../Zotlabs/Module/Settings.php:1042 +#: ../../Zotlabs/Module/Settings.php:1137 msgid "Your Timezone:" msgstr "La teva Franja Horària" -#: ../../Zotlabs/Module/Settings.php:1043 +#: ../../Zotlabs/Module/Settings.php:1138 msgid "Default Post Location:" msgstr "Localització Predeterminada de les Entrades:" -#: ../../Zotlabs/Module/Settings.php:1043 +#: ../../Zotlabs/Module/Settings.php:1138 msgid "Geographical location to display on your posts" msgstr "Posició geogràfica a mostrar a les teves entrades" -#: ../../Zotlabs/Module/Settings.php:1044 +#: ../../Zotlabs/Module/Settings.php:1139 msgid "Use Browser Location:" msgstr "Empra la Localització del Navegador:" -#: ../../Zotlabs/Module/Settings.php:1046 +#: ../../Zotlabs/Module/Settings.php:1141 msgid "Adult Content" msgstr "Contingut per a Adults" -#: ../../Zotlabs/Module/Settings.php:1046 +#: ../../Zotlabs/Module/Settings.php:1141 msgid "" "This channel frequently or regularly publishes adult content. (Please tag " "any adult material and/or nudity with #NSFW)" msgstr "Aquest canal publica freqúentment o amb regularitat contingut per a adults. (Si us plau, etiqueti qualsevol material per a adults amb #NSFW)" -#: ../../Zotlabs/Module/Settings.php:1048 +#: ../../Zotlabs/Module/Settings.php:1143 msgid "Security and Privacy Settings" msgstr "Ajustos de Seguretat i Privacitat" -#: ../../Zotlabs/Module/Settings.php:1051 +#: ../../Zotlabs/Module/Settings.php:1146 msgid "Your permissions are already configured. Click to view/adjust" msgstr "Els teus permisos estan configurats. Clic per veure/ajustar" -#: ../../Zotlabs/Module/Settings.php:1053 +#: ../../Zotlabs/Module/Settings.php:1148 msgid "Hide my online presence" msgstr "Amaga la meva presencia en línia" -#: ../../Zotlabs/Module/Settings.php:1053 +#: ../../Zotlabs/Module/Settings.php:1148 msgid "Prevents displaying in your profile that you are online" msgstr "Evita mostrar en el teu perfil, que estàs en línia" -#: ../../Zotlabs/Module/Settings.php:1055 +#: ../../Zotlabs/Module/Settings.php:1150 msgid "Simple Privacy Settings:" msgstr "Ajustos simples de privacitat:" -#: ../../Zotlabs/Module/Settings.php:1056 +#: ../../Zotlabs/Module/Settings.php:1151 msgid "" "Very Public - extremely permissive (should be used with caution)" msgstr "Molt públic - extremadament permissiu (s'ha d'anar en compte)" -#: ../../Zotlabs/Module/Settings.php:1057 +#: ../../Zotlabs/Module/Settings.php:1152 msgid "" "Typical - default public, privacy when desired (similar to social " "network permissions but with improved privacy)" msgstr "Normal - públic per defecte, privat quan es desitgi (similar als permisos de xarxa social, però amb millor privacitat)" -#: ../../Zotlabs/Module/Settings.php:1058 +#: ../../Zotlabs/Module/Settings.php:1153 msgid "Private - default private, never open or public" msgstr "Privat - privat per defecte, mai públic o obert" -#: ../../Zotlabs/Module/Settings.php:1059 +#: ../../Zotlabs/Module/Settings.php:1154 msgid "Blocked - default blocked to/from everybody" msgstr "Bloquejat - tothom bloquejat per defecte" -#: ../../Zotlabs/Module/Settings.php:1061 +#: ../../Zotlabs/Module/Settings.php:1156 msgid "Allow others to tag your posts" msgstr "Permet a altres etiquetar les teves entrades" -#: ../../Zotlabs/Module/Settings.php:1061 +#: ../../Zotlabs/Module/Settings.php:1156 msgid "" "Often used by the community to retro-actively flag inappropriate content" msgstr "Sovint emprat per la comunitat per marcar retroactivament contingut inapropiat" -#: ../../Zotlabs/Module/Settings.php:1063 +#: ../../Zotlabs/Module/Settings.php:1158 msgid "Advanced Privacy Settings" msgstr "Ajustos avançats de privacitat" -#: ../../Zotlabs/Module/Settings.php:1065 +#: ../../Zotlabs/Module/Settings.php:1160 msgid "Expire other channel content after this many days" msgstr "El contingut d'altes canals caduca després d'aquests dies" -#: ../../Zotlabs/Module/Settings.php:1065 +#: ../../Zotlabs/Module/Settings.php:1160 msgid "0 or blank to use the website limit." msgstr "0 o en blanc per emprar el limit del lloc web." -#: ../../Zotlabs/Module/Settings.php:1065 +#: ../../Zotlabs/Module/Settings.php:1160 #, php-format msgid "This website expires after %d days." msgstr "Aquest lloc web expira després de %d dies." -#: ../../Zotlabs/Module/Settings.php:1065 +#: ../../Zotlabs/Module/Settings.php:1160 msgid "This website does not expire imported content." msgstr "A aquest lloc web no expira el contingut importat" -#: ../../Zotlabs/Module/Settings.php:1065 +#: ../../Zotlabs/Module/Settings.php:1160 msgid "The website limit takes precedence if lower than your limit." msgstr "El límit del lloc web pren la preferència si es inferior al teu límit." -#: ../../Zotlabs/Module/Settings.php:1066 +#: ../../Zotlabs/Module/Settings.php:1161 msgid "Maximum Friend Requests/Day:" msgstr "Nombre màxim de peticions d'amistat per dia" -#: ../../Zotlabs/Module/Settings.php:1066 +#: ../../Zotlabs/Module/Settings.php:1161 msgid "May reduce spam activity" msgstr "Pot reduir l'SPAM" -#: ../../Zotlabs/Module/Settings.php:1067 +#: ../../Zotlabs/Module/Settings.php:1162 msgid "Default Post and Publish Permissions" msgstr "Permisos de Entrades i Publicació per defecte" -#: ../../Zotlabs/Module/Settings.php:1069 +#: ../../Zotlabs/Module/Settings.php:1164 msgid "Use my default audience setting for the type of object published" msgstr "Empra els meus ajustos per defecte segons el tipus de entrada publicada" -#: ../../Zotlabs/Module/Settings.php:1072 +#: ../../Zotlabs/Module/Settings.php:1167 msgid "Channel permissions category:" msgstr "Categoria de permisos de canal:" -#: ../../Zotlabs/Module/Settings.php:1078 +#: ../../Zotlabs/Module/Settings.php:1173 msgid "Maximum private messages per day from unknown people:" msgstr "Nombre màxim de missatges privats de desconeguts al dia:" -#: ../../Zotlabs/Module/Settings.php:1078 +#: ../../Zotlabs/Module/Settings.php:1173 msgid "Useful to reduce spamming" msgstr "Útil per a reduir l'spam" -#: ../../Zotlabs/Module/Settings.php:1081 +#: ../../Zotlabs/Module/Settings.php:1176 msgid "Notification Settings" msgstr "Ajustos de notificacions" -#: ../../Zotlabs/Module/Settings.php:1082 +#: ../../Zotlabs/Module/Settings.php:1177 msgid "By default post a status message when:" msgstr "Per defecte envia un missatge d'estat quan:" -#: ../../Zotlabs/Module/Settings.php:1083 +#: ../../Zotlabs/Module/Settings.php:1178 msgid "accepting a friend request" msgstr "S'accepta una sol·licitud d'amistat" -#: ../../Zotlabs/Module/Settings.php:1084 +#: ../../Zotlabs/Module/Settings.php:1179 msgid "joining a forum/community" msgstr "Apuntar-se a un fòrum o comunitat" -#: ../../Zotlabs/Module/Settings.php:1085 +#: ../../Zotlabs/Module/Settings.php:1180 msgid "making an interesting profile change" msgstr "Faci un canvi interesant al perfil" -#: ../../Zotlabs/Module/Settings.php:1086 +#: ../../Zotlabs/Module/Settings.php:1181 msgid "Send a notification email when:" msgstr "Notifica per correu quan:" -#: ../../Zotlabs/Module/Settings.php:1087 +#: ../../Zotlabs/Module/Settings.php:1182 msgid "You receive a connection request" msgstr "Rebi una petició de connexió" -#: ../../Zotlabs/Module/Settings.php:1088 +#: ../../Zotlabs/Module/Settings.php:1183 msgid "Your connections are confirmed" msgstr "Es confirma una connexió" -#: ../../Zotlabs/Module/Settings.php:1089 +#: ../../Zotlabs/Module/Settings.php:1184 msgid "Someone writes on your profile wall" msgstr "Algú ha escrit al mur del teu perfil" -#: ../../Zotlabs/Module/Settings.php:1090 +#: ../../Zotlabs/Module/Settings.php:1185 msgid "Someone writes a followup comment" msgstr "Algú ha escrit un comentari de resposta" -#: ../../Zotlabs/Module/Settings.php:1091 +#: ../../Zotlabs/Module/Settings.php:1186 msgid "You receive a private message" msgstr "Rebi un missatge privat" -#: ../../Zotlabs/Module/Settings.php:1092 +#: ../../Zotlabs/Module/Settings.php:1187 msgid "You receive a friend suggestion" msgstr "Rebi una suggerència d'amistat" -#: ../../Zotlabs/Module/Settings.php:1093 +#: ../../Zotlabs/Module/Settings.php:1188 msgid "You are tagged in a post" msgstr "Estàs etiquetat a l'entrada" -#: ../../Zotlabs/Module/Settings.php:1094 +#: ../../Zotlabs/Module/Settings.php:1189 msgid "You are poked/prodded/etc. in a post" msgstr "S'enfoten/te piquen/etc. en una entrada" -#: ../../Zotlabs/Module/Settings.php:1097 +#: ../../Zotlabs/Module/Settings.php:1192 msgid "Show visual notifications including:" msgstr "Mostra notificacion visuals, com ara:" -#: ../../Zotlabs/Module/Settings.php:1099 +#: ../../Zotlabs/Module/Settings.php:1194 msgid "Unseen grid activity" msgstr "Activitat de malla no vista" -#: ../../Zotlabs/Module/Settings.php:1100 +#: ../../Zotlabs/Module/Settings.php:1195 msgid "Unseen channel activity" msgstr "Activitat no vista del canal" -#: ../../Zotlabs/Module/Settings.php:1101 +#: ../../Zotlabs/Module/Settings.php:1196 msgid "Unseen private messages" msgstr "Missatges privats no llegits" -#: ../../Zotlabs/Module/Settings.php:1101 -#: ../../Zotlabs/Module/Settings.php:1106 -#: ../../Zotlabs/Module/Settings.php:1107 -#: ../../Zotlabs/Module/Settings.php:1108 +#: ../../Zotlabs/Module/Settings.php:1196 +#: ../../Zotlabs/Module/Settings.php:1201 +#: ../../Zotlabs/Module/Settings.php:1202 +#: ../../Zotlabs/Module/Settings.php:1203 msgid "Recommended" msgstr "Recomanat" -#: ../../Zotlabs/Module/Settings.php:1102 +#: ../../Zotlabs/Module/Settings.php:1197 msgid "Upcoming events" msgstr "Esdeveniments propers" -#: ../../Zotlabs/Module/Settings.php:1103 +#: ../../Zotlabs/Module/Settings.php:1198 msgid "Events today" msgstr "Esdeveniments d'avui" -#: ../../Zotlabs/Module/Settings.php:1104 +#: ../../Zotlabs/Module/Settings.php:1199 msgid "Upcoming birthdays" msgstr "Aniversaris propers" -#: ../../Zotlabs/Module/Settings.php:1104 +#: ../../Zotlabs/Module/Settings.php:1199 msgid "Not available in all themes" msgstr "No està disponible en tots els temes" -#: ../../Zotlabs/Module/Settings.php:1105 +#: ../../Zotlabs/Module/Settings.php:1200 msgid "System (personal) notifications" msgstr "Notificacions (personals) del sistema" -#: ../../Zotlabs/Module/Settings.php:1106 +#: ../../Zotlabs/Module/Settings.php:1201 msgid "System info messages" msgstr "Missatges d'informació del sistema" -#: ../../Zotlabs/Module/Settings.php:1107 +#: ../../Zotlabs/Module/Settings.php:1202 msgid "System critical alerts" msgstr "Alertes crítiques del sistema" -#: ../../Zotlabs/Module/Settings.php:1108 +#: ../../Zotlabs/Module/Settings.php:1203 msgid "New connections" msgstr "Noves connexions" -#: ../../Zotlabs/Module/Settings.php:1109 +#: ../../Zotlabs/Module/Settings.php:1204 msgid "System Registrations" -msgstr "Registres del sistema" +msgstr "Inscripcions del Sistema" -#: ../../Zotlabs/Module/Settings.php:1110 +#: ../../Zotlabs/Module/Settings.php:1205 msgid "" "Also show new wall posts, private messages and connections under Notices" msgstr "Mostra també les entrades de mur noves, les entrades privades i les connexions a \"Notícies\"" -#: ../../Zotlabs/Module/Settings.php:1112 +#: ../../Zotlabs/Module/Settings.php:1207 msgid "Notify me of events this many days in advance" msgstr "Notifica'm dels esdeveniments amb aquests dies d'antelació" -#: ../../Zotlabs/Module/Settings.php:1112 +#: ../../Zotlabs/Module/Settings.php:1207 msgid "Must be greater than 0" msgstr "Ha de ser més gran que 0" -#: ../../Zotlabs/Module/Settings.php:1114 +#: ../../Zotlabs/Module/Settings.php:1209 msgid "Advanced Account/Page Type Settings" msgstr "Ajustos avançats de compte i tipus de pàgina" -#: ../../Zotlabs/Module/Settings.php:1115 +#: ../../Zotlabs/Module/Settings.php:1210 msgid "Change the behaviour of this account for special situations" msgstr "Modifica el comportament d'aquest compte en situacions especials" -#: ../../Zotlabs/Module/Settings.php:1118 +#: ../../Zotlabs/Module/Settings.php:1213 msgid "" "Please enable expert mode (in Settings > " "Additional features) to adjust!" msgstr "Activa el mode d'expert (a Ajustos > Més funcions)" -#: ../../Zotlabs/Module/Settings.php:1119 +#: ../../Zotlabs/Module/Settings.php:1214 msgid "Miscellaneous Settings" msgstr "Ajustos diversos" -#: ../../Zotlabs/Module/Settings.php:1120 +#: ../../Zotlabs/Module/Settings.php:1215 msgid "Default photo upload folder" msgstr "Carpeta per defecte de fotos pujades" -#: ../../Zotlabs/Module/Settings.php:1120 -#: ../../Zotlabs/Module/Settings.php:1121 +#: ../../Zotlabs/Module/Settings.php:1215 +#: ../../Zotlabs/Module/Settings.php:1216 msgid "%Y - current year, %m - current month" msgstr "%Y - any en curs, %m - mes corrent" -#: ../../Zotlabs/Module/Settings.php:1121 +#: ../../Zotlabs/Module/Settings.php:1216 msgid "Default file upload folder" msgstr "Carpeta per defecte d'arxius pujats" -#: ../../Zotlabs/Module/Settings.php:1123 +#: ../../Zotlabs/Module/Settings.php:1218 msgid "Personal menu to display in your channel pages" msgstr "Menú personal per mostrar en les teves pàgines de canal" -#: ../../Zotlabs/Module/Settings.php:1125 +#: ../../Zotlabs/Module/Settings.php:1220 msgid "Remove this channel." msgstr "Elimina aquest canal." -#: ../../Zotlabs/Module/Settings.php:1126 +#: ../../Zotlabs/Module/Settings.php:1221 msgid "Firefox Share $Projectname provider" msgstr "Firefox Share $Projectname provider" -#: ../../Zotlabs/Module/Settings.php:1127 +#: ../../Zotlabs/Module/Settings.php:1222 msgid "Start calendar week on monday" msgstr "Comença la setmana del calendari el dilluns" @@ -5517,7 +5828,7 @@ msgid "" msgstr "Podria ser necessari importar el fitxer \"install / schema_xxx.sql\" manualment utilitzant un client de base de dades." #: ../../Zotlabs/Module/Setup.php:204 ../../Zotlabs/Module/Setup.php:266 -#: ../../Zotlabs/Module/Setup.php:721 +#: ../../Zotlabs/Module/Setup.php:722 msgid "Please see the file \"install/INSTALL.txt\"." msgstr "Si us plau, consulteu el fitxer \"install / INSTALL.txt\"." @@ -5717,199 +6028,200 @@ msgid "mb_string PHP module" msgstr "mòdul PHP mb_string" #: ../../Zotlabs/Module/Setup.php:496 -msgid "mcrypt PHP module" -msgstr "mòdul PHP mcrypt" - -#: ../../Zotlabs/Module/Setup.php:497 msgid "xml PHP module" msgstr "Mòdul xml de PHP" -#: ../../Zotlabs/Module/Setup.php:501 ../../Zotlabs/Module/Setup.php:503 +#: ../../Zotlabs/Module/Setup.php:500 ../../Zotlabs/Module/Setup.php:502 msgid "Apache mod_rewrite module" msgstr "mòdul Apache mod_rewrite" -#: ../../Zotlabs/Module/Setup.php:501 +#: ../../Zotlabs/Module/Setup.php:500 msgid "" "Error: Apache webserver mod-rewrite module is required but not installed." msgstr "Error: el mòdul mod-rewrite del servidor web Apache es requereix i no està instal·lat." -#: ../../Zotlabs/Module/Setup.php:507 ../../Zotlabs/Module/Setup.php:510 +#: ../../Zotlabs/Module/Setup.php:506 ../../Zotlabs/Module/Setup.php:509 msgid "proc_open" msgstr "proc_open" -#: ../../Zotlabs/Module/Setup.php:507 +#: ../../Zotlabs/Module/Setup.php:506 msgid "" "Error: proc_open is required but is either not installed or has been " "disabled in php.ini" msgstr "Error: es requereix proc_open però o no està instal·lat o ha estat desactivat a php.ini" -#: ../../Zotlabs/Module/Setup.php:515 +#: ../../Zotlabs/Module/Setup.php:514 msgid "Error: libCURL PHP module required but not installed." msgstr "Error: el mòdul PHP libCURL es requereix però no està instal·lat." -#: ../../Zotlabs/Module/Setup.php:519 +#: ../../Zotlabs/Module/Setup.php:518 msgid "" "Error: GD graphics PHP module with JPEG support required but not installed." msgstr "Error: el mòdul PHP GD graphics amb support JPEG es requereix però no està instal·lat." -#: ../../Zotlabs/Module/Setup.php:523 +#: ../../Zotlabs/Module/Setup.php:522 msgid "Error: openssl PHP module required but not installed." msgstr "Error: el mòdul PHP openssl es requereix però no està instal·lat." -#: ../../Zotlabs/Module/Setup.php:527 +#: ../../Zotlabs/Module/Setup.php:526 msgid "" "Error: mysqli or postgres PHP module required but neither are installed." msgstr "Error: el mòdul PHO mysqli o postgres es requereix però no està instal·lat." -#: ../../Zotlabs/Module/Setup.php:531 +#: ../../Zotlabs/Module/Setup.php:530 msgid "Error: mb_string PHP module required but not installed." msgstr "Error: el mòdul PHP mb_string es requereix però no està instal·lat." -#: ../../Zotlabs/Module/Setup.php:535 -msgid "Error: mcrypt PHP module required but not installed." -msgstr "Error: el mòdul PHP mcrypt es requereix però no està instal·lat." - -#: ../../Zotlabs/Module/Setup.php:539 +#: ../../Zotlabs/Module/Setup.php:534 msgid "Error: xml PHP module required for DAV but not installed." msgstr "Error: el mòdul xml de PHP es requereix per DAV però no està instal·lat." -#: ../../Zotlabs/Module/Setup.php:557 +#: ../../Zotlabs/Module/Setup.php:552 msgid "" "The web installer needs to be able to create a file called \".htconfig.php\"" " in the top folder of your web server and it is unable to do so." msgstr "L'instaŀlador ha de poder crear i modificar un fitxer anomenat «.htconfig.php» a la carpeta arrel del servidor, però sembla que no ho pot fer." -#: ../../Zotlabs/Module/Setup.php:558 +#: ../../Zotlabs/Module/Setup.php:553 msgid "" "This is most often a permission setting, as the web server may not be able " "to write files in your folder - even if you can." msgstr "Això sol ser un problema de permisos. Per molt que el teu usuari pugui modificar-lo, és el del servidor web qui necessita els poders de modificació." -#: ../../Zotlabs/Module/Setup.php:559 +#: ../../Zotlabs/Module/Setup.php:554 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 "Al final d'aquest procés hauràs de desar un text a l'arxiu «.htconfig.php», que es troba a la carpeta arrel del servidor." -#: ../../Zotlabs/Module/Setup.php:560 +#: ../../Zotlabs/Module/Setup.php:555 msgid "" "You can alternatively skip this procedure and perform a manual installation." " Please see the file \"install/INSTALL.txt\" for instructions." msgstr "Aquest procés és opcional. Per a fer una instaŀlació manual consulta les instruccions a «install/INSTALL.txt\"." -#: ../../Zotlabs/Module/Setup.php:563 +#: ../../Zotlabs/Module/Setup.php:558 msgid ".htconfig.php is writable" msgstr "L'arxiu «.htconfig.php» es pot modificar" -#: ../../Zotlabs/Module/Setup.php:577 +#: ../../Zotlabs/Module/Setup.php:572 msgid "" "Red uses the Smarty3 template engine to render its web views. Smarty3 " "compiles templates to PHP to speed up rendering." msgstr "Red fa servir el motor de plantilles Smarty3 per a renderitzar les vistes més ràpidament." -#: ../../Zotlabs/Module/Setup.php:578 +#: ../../Zotlabs/Module/Setup.php:573 #, php-format msgid "" "In order to store these compiled templates, the web server needs to have " "write access to the directory %s under the top level web folder." msgstr "Per tal de guardar aquestes plantilles compilades, el servidor web necessita tenir premis d'escriptura en el directori %s sota la carpeta principal." -#: ../../Zotlabs/Module/Setup.php:579 ../../Zotlabs/Module/Setup.php:600 +#: ../../Zotlabs/Module/Setup.php:574 ../../Zotlabs/Module/Setup.php:595 msgid "" "Please ensure that the user that your web server runs as (e.g. www-data) has" " write access to this folder." msgstr "Comprova que l'usuari que executa el servidor (www-data en Apache) té permisos d'escriptura en aquesta carpeta." -#: ../../Zotlabs/Module/Setup.php:580 +#: ../../Zotlabs/Module/Setup.php:575 #, 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 "Nota: com a mesura de seguretat l'usuari del servidor web ha de tenir accés d'escriptura només a %s, i no a les plantilles (.tpl) que conté." -#: ../../Zotlabs/Module/Setup.php:583 +#: ../../Zotlabs/Module/Setup.php:578 #, php-format msgid "%s is writable" msgstr "Es pot escriure a %s" -#: ../../Zotlabs/Module/Setup.php:599 +#: ../../Zotlabs/Module/Setup.php:594 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" -msgstr "Red fa servir la carpeta «store» per a desar els fitxers pujats. Per tant, el servidor web necessita tenir permís d'escriptura en aquesta carpeta, que està a l'arrel del servidor web." +"This software 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 "" -#: ../../Zotlabs/Module/Setup.php:603 +#: ../../Zotlabs/Module/Setup.php:598 msgid "store is writable" msgstr "Es pot escriure al magatzem (store)" -#: ../../Zotlabs/Module/Setup.php:636 +#: ../../Zotlabs/Module/Setup.php:631 msgid "" "SSL certificate cannot be validated. Fix certificate or disable https access" " to this site." msgstr "El certificat SSL no s'ha pogut validar. Arregla-ho o deshabilita l'accés https a aquest lloc" -#: ../../Zotlabs/Module/Setup.php:637 +#: ../../Zotlabs/Module/Setup.php:632 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 "Si tens accès pet https al teu lloc web o permets connexions pel port TCP 443 (port https), Has d'emprar un certificat VÀLID. NO es poden emprar certificats AUTO-SIGNATS!" -#: ../../Zotlabs/Module/Setup.php:638 +#: ../../Zotlabs/Module/Setup.php:633 msgid "" "This restriction is incorporated because public posts from you may for " "example contain references to images on your own hub." msgstr "El motiu d'aquesta restricció és que les teves entrades públiques poden contenir referències a imatges del teu propi node." -#: ../../Zotlabs/Module/Setup.php:639 +#: ../../Zotlabs/Module/Setup.php:634 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." msgstr "Si el teu certificat no és reconegut, llavors el membres d'altres hubs, encara que tinguin certificats vàlids, rebran una advertència de seguretat en carregar contingut teu." -#: ../../Zotlabs/Module/Setup.php:640 +#: ../../Zotlabs/Module/Setup.php:635 msgid "" "This can cause usability issues elsewhere (not just on your own site) so we " "must insist on this requirement." msgstr "Per tant, com que perjudica la usabilitat més enllà del teu lloc, la restricció de tenir un certificat reconegut és molt important." -#: ../../Zotlabs/Module/Setup.php:641 +#: ../../Zotlabs/Module/Setup.php:636 msgid "" "Providers are available that issue free certificates which are browser-" "valid." msgstr "Hi ha autoritats de certificació reconegudes que ofereixen certificats gratuïts." -#: ../../Zotlabs/Module/Setup.php:643 +#: ../../Zotlabs/Module/Setup.php:638 +msgid "" +"If you are confident that the certificate is valid and signed by a trusted " +"authority, check to see if you have failed to install an intermediate cert. " +"These are not normally required by browsers, but are required for server-to-" +"server communications." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:641 msgid "SSL certificate validation" msgstr "Validació del certificat SSL" -#: ../../Zotlabs/Module/Setup.php:649 +#: ../../Zotlabs/Module/Setup.php:647 msgid "" "Url rewrite in .htaccess is not working. Check your server " "configuration.Test: " msgstr "No es poden reescriure les URL a «.htaccess». Comprova la configuració del servidor:" -#: ../../Zotlabs/Module/Setup.php:652 +#: ../../Zotlabs/Module/Setup.php:650 msgid "Url rewrite is working" msgstr "Es poden reescriure les URL a «.htaccess»" -#: ../../Zotlabs/Module/Setup.php:661 +#: ../../Zotlabs/Module/Setup.php:659 msgid "" "The database configuration file \".htconfig.php\" could not be written. " "Please use the enclosed text to create a configuration file in your web " "server root." msgstr "L'arxiu de configuracio de la base de dades «.htconfig.php» no s'ha pogut modificar. El pots crear tu a l'arrel del servidor web amb el text de la caixa com a contingut." -#: ../../Zotlabs/Module/Setup.php:685 +#: ../../Zotlabs/Module/Setup.php:683 msgid "Errors encountered creating database tables." msgstr "S'han produït errors mentre es creaven taules a la base de dades." -#: ../../Zotlabs/Module/Setup.php:719 +#: ../../Zotlabs/Module/Setup.php:720 msgid "

What next

" msgstr "

I ara què?

" -#: ../../Zotlabs/Module/Setup.php:720 +#: ../../Zotlabs/Module/Setup.php:721 msgid "" "IMPORTANT: You will need to [manually] setup a scheduled task for the " "poller." @@ -5931,64 +6243,62 @@ msgstr "Esborra tots els arxius" msgid "Remove this file" msgstr "Esborra l'arxiu" -#: ../../Zotlabs/Module/Siteinfo.php:19 +#: ../../Zotlabs/Module/Thing.php:114 +msgid "Thing updated" +msgstr "S'ha actualitzat la cosa" + +#: ../../Zotlabs/Module/Thing.php:166 +msgid "Object store: failed" +msgstr "No s'ha pogut emmagatzemar l'objecte" + +#: ../../Zotlabs/Module/Thing.php:170 +msgid "Thing added" +msgstr "S'ha afegit la cosa" + +#: ../../Zotlabs/Module/Thing.php:196 #, php-format -msgid "Version %s" -msgstr "Versió %s" +msgid "OBJ: %1$s %2$s %3$s" +msgstr "OBJ: %1$s %2$s %3$s" -#: ../../Zotlabs/Module/Siteinfo.php:40 -msgid "Installed plugins/addons/apps:" -msgstr "Plugins/addons/apps Instal·lats:" +#: ../../Zotlabs/Module/Thing.php:259 +msgid "Show Thing" +msgstr "Mostra la cosa" -#: ../../Zotlabs/Module/Siteinfo.php:53 -msgid "No installed plugins/addons/apps" -msgstr "Plugins/addons/apps no instal·lats" +#: ../../Zotlabs/Module/Thing.php:266 +msgid "item not found." +msgstr "no s'ha trobat l'element." -#: ../../Zotlabs/Module/Siteinfo.php:66 -msgid "" -"This is a hub of $Projectname - a global cooperative network of " -"decentralized privacy enhanced websites." -msgstr "Aquest és un node de $Projectname, una xarxa cooperativa mundial de llocs web descentralitzats amb gran control de la privacitat." +#: ../../Zotlabs/Module/Thing.php:299 +msgid "Edit Thing" +msgstr "Edita la cosa" -#: ../../Zotlabs/Module/Siteinfo.php:68 -msgid "Tag: " -msgstr "Etiqueta:" +#: ../../Zotlabs/Module/Thing.php:301 ../../Zotlabs/Module/Thing.php:351 +msgid "Select a profile" +msgstr "Tria un perfil" -#: ../../Zotlabs/Module/Siteinfo.php:70 -msgid "Last background fetch: " -msgstr "Última actualització en rerefons:" +#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:354 +msgid "Post an activity" +msgstr "Publica una activitat" -#: ../../Zotlabs/Module/Siteinfo.php:72 -msgid "Current load average: " -msgstr "Càrrega actual mitja:" +#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:354 +msgid "Only sends to viewers of the applicable profile" +msgstr "S'envia només a visitants del perfil corresponent" -#: ../../Zotlabs/Module/Siteinfo.php:75 -msgid "Running at web location" -msgstr "Correguent en el lloc web" +#: ../../Zotlabs/Module/Thing.php:307 ../../Zotlabs/Module/Thing.php:356 +msgid "Name of thing e.g. something" +msgstr "Nom de la cosa. Exemple: patata" -#: ../../Zotlabs/Module/Siteinfo.php:76 -msgid "" -"Please visit hubzilla.org to learn more " -"about $Projectname." -msgstr "Visita hubzilla.org per saber-ne més de $Projectname." +#: ../../Zotlabs/Module/Thing.php:309 ../../Zotlabs/Module/Thing.php:357 +msgid "URL of thing (optional)" +msgstr "Adreça URL de la cosa (opcional)" -#: ../../Zotlabs/Module/Siteinfo.php:77 -msgid "Bug reports and issues: please visit" -msgstr "Per informar d'errors o problemes ves a" +#: ../../Zotlabs/Module/Thing.php:311 ../../Zotlabs/Module/Thing.php:358 +msgid "URL for photo of thing (optional)" +msgstr "Adreça URL de la foto d'una cosa (opcional)" -#: ../../Zotlabs/Module/Siteinfo.php:79 -msgid "$projectname issues" -msgstr "$projectname qüestions" - -#: ../../Zotlabs/Module/Siteinfo.php:80 -msgid "" -"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot " -"com" -msgstr "Per suggerències, felicitacions i altres, envia'ns un mail a «redmatrix» [arroba] librelist [punt] com" - -#: ../../Zotlabs/Module/Siteinfo.php:82 -msgid "Site Administrators" -msgstr "Administradors del lloc" +#: ../../Zotlabs/Module/Thing.php:349 +msgid "Add Thing to your Profile" +msgstr "Afegeix una cosa al teu perfil" #: ../../Zotlabs/Module/Sources.php:37 msgid "Failed to create source. No channel selected." @@ -6006,8 +6316,8 @@ msgstr "Origen actualitzat." msgid "*" msgstr "*" -#: ../../Zotlabs/Module/Sources.php:96 ../../include/widgets.php:630 -#: ../../include/features.php:71 +#: ../../Zotlabs/Module/Sources.php:96 ../../include/features.php:72 +#: ../../include/widgets.php:639 msgid "Channel Sources" msgstr "Canal Origen" @@ -6083,12 +6393,12 @@ msgstr "No hi ha suggerencies. Si es un lloc nou, espera 24 hores i proba de nou msgid "Ignore/Hide" msgstr "Ignora/Amaga" -#: ../../Zotlabs/Module/Tagger.php:55 ../../include/bbcode.php:256 +#: ../../Zotlabs/Module/Tagger.php:55 ../../include/bbcode.php:263 msgid "post" msgstr "entrada" -#: ../../Zotlabs/Module/Tagger.php:57 ../../include/text.php:1948 -#: ../../include/conversation.php:150 +#: ../../Zotlabs/Module/Tagger.php:57 ../../include/conversation.php:150 +#: ../../include/text.php:1929 msgid "comment" msgstr "comentari" @@ -6109,131 +6419,110 @@ msgstr "Elimina l'etiqueta d'element" msgid "Select a tag to remove: " msgstr "Tria l'etiqueta a eliminar:" -#: ../../Zotlabs/Module/Thing.php:114 -msgid "Thing updated" -msgstr "S'ha actualitzat la cosa" +#: ../../Zotlabs/Module/Webpages.php:191 ../../Zotlabs/Lib/Apps.php:218 +#: ../../include/nav.php:106 ../../include/conversation.php:1700 +msgid "Webpages" +msgstr "Pàgines web" -#: ../../Zotlabs/Module/Thing.php:166 -msgid "Object store: failed" -msgstr "No s'ha pogut emmagatzemar l'objecte" +#: ../../Zotlabs/Module/Webpages.php:202 ../../include/page_widgets.php:44 +msgid "Actions" +msgstr "Accions" -#: ../../Zotlabs/Module/Thing.php:170 -msgid "Thing added" -msgstr "S'ha afegit la cosa" +#: ../../Zotlabs/Module/Webpages.php:203 ../../include/page_widgets.php:45 +msgid "Page Link" +msgstr "Enllaç a Pàgina" -#: ../../Zotlabs/Module/Thing.php:196 -#, php-format -msgid "OBJ: %1$s %2$s %3$s" -msgstr "OBJ: %1$s %2$s %3$s" +#: ../../Zotlabs/Module/Webpages.php:204 +msgid "Page Title" +msgstr "Títol de la pàgina" -#: ../../Zotlabs/Module/Thing.php:259 -msgid "Show Thing" -msgstr "Mostra la cosa" +#: ../../Zotlabs/Module/Wiki.php:34 +msgid "Not found" +msgstr "" -#: ../../Zotlabs/Module/Thing.php:266 -msgid "item not found." -msgstr "no s'ha trobat l'element." +#: ../../Zotlabs/Module/Wiki.php:92 ../../Zotlabs/Lib/Apps.php:219 +#: ../../include/nav.php:108 ../../include/conversation.php:1710 +#: ../../include/conversation.php:1713 ../../include/features.php:55 +msgid "Wiki" +msgstr "Wiki" -#: ../../Zotlabs/Module/Thing.php:299 -msgid "Edit Thing" -msgstr "Edita la cosa" +#: ../../Zotlabs/Module/Wiki.php:93 +msgid "Sandbox" +msgstr "Sandbox" -#: ../../Zotlabs/Module/Thing.php:301 ../../Zotlabs/Module/Thing.php:351 -msgid "Select a profile" -msgstr "Tria un perfil" - -#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:354 -msgid "Post an activity" -msgstr "Publica una activitat" - -#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:354 -msgid "Only sends to viewers of the applicable profile" -msgstr "S'envia només a visitants del perfil corresponent" - -#: ../../Zotlabs/Module/Thing.php:307 ../../Zotlabs/Module/Thing.php:356 -msgid "Name of thing e.g. something" -msgstr "Nom de la cosa. Exemple: patata" - -#: ../../Zotlabs/Module/Thing.php:309 ../../Zotlabs/Module/Thing.php:357 -msgid "URL of thing (optional)" -msgstr "Adreça URL de la cosa (opcional)" - -#: ../../Zotlabs/Module/Thing.php:311 ../../Zotlabs/Module/Thing.php:358 -msgid "URL for photo of thing (optional)" -msgstr "Adreça URL de la foto d'una cosa (opcional)" - -#: ../../Zotlabs/Module/Thing.php:349 -msgid "Add Thing to your Profile" -msgstr "Afegeix una cosa al teu perfil" - -#: ../../Zotlabs/Module/Uexport.php:55 ../../Zotlabs/Module/Uexport.php:56 -msgid "Export Channel" -msgstr "Exportar Canal" - -#: ../../Zotlabs/Module/Uexport.php:57 +#: ../../Zotlabs/Module/Wiki.php:95 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 "Exporta la informació bàsica del canal a un arxiu. Això actua com a còpia de recolzament de les teves connexions, permisos, perfil i dades bàsiques, les quals pots emprar per traslladar aquestes dades a una altre lloc/node, però no conté el contingut del canal." +"\"# Wiki Sandbox\\n\\nContent you **edit** and **preview** here *will not be" +" saved*.\"" +msgstr "" -#: ../../Zotlabs/Module/Uexport.php:58 -msgid "Export Content" -msgstr "Exportar el Contingut" +#: ../../Zotlabs/Module/Wiki.php:164 +msgid "Revision Comparison" +msgstr "Comparació de revisió" -#: ../../Zotlabs/Module/Uexport.php:59 -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 "Exporta la informació del canal i tot el contingut recent a un arxiu de recolzament JSON que por ser restaurat o importat en altre lloc/node. Això còpia totes les teves connexions, permisos, perfil i dades i mesos de entrades. L'arxiu pot ser MOLT gran. Si et plau, sigues pacient ja que pot trigar uns minuts a començar a baixar." +#: ../../Zotlabs/Module/Wiki.php:165 +msgid "Revert" +msgstr "Reverteix" -#: ../../Zotlabs/Module/Uexport.php:60 -msgid "Export your posts from a given year." -msgstr "Exporta les teves entrades d'un any donat." +#: ../../Zotlabs/Module/Wiki.php:192 +msgid "Enter the name of your new wiki:" +msgstr "Escriu el nom del teu nou wiki:" -#: ../../Zotlabs/Module/Uexport.php:62 -msgid "" -"You may also export your posts and conversations for a particular year or " -"month. Adjust the date in your browser location bar to select other dates. " -"If the export fails (possibly due to memory exhaustion on your server hub), " -"please try again selecting a more limited date range." -msgstr "Pots també exportar les teves entrades i conversacions d'un any o un mes en particular. Ajusta la data a la barra de direccions del navegador per seleccionar altres dates. Si la exportació falla (possiblement degut al esgotament de la memòria del node servidor), si et plau, intenta de nou la selecció d'un rang de dates més limitat." +#: ../../Zotlabs/Module/Wiki.php:193 +msgid "Enter the name of the new page:" +msgstr "Escriu el nom de la teva nova pàgina:" -#: ../../Zotlabs/Module/Uexport.php:63 -#, php-format -msgid "" -"To select all posts for a given year, such as this year, visit %2$s" -msgstr "Per seleccionar tots els missatges per a un any determinat, com aquest any, visiteu %2$s" +#: ../../Zotlabs/Module/Wiki.php:194 +msgid "Enter the new name:" +msgstr "Escriu el nou nom:" -#: ../../Zotlabs/Module/Uexport.php:64 -#, php-format -msgid "" -"To select all posts for a given month, such as January of this year, visit " -"%2$s" -msgstr "Per seleccionar tots els missatges per a un mes determinat, com el de gener d'aquest any, visiteu %2$s" +#: ../../Zotlabs/Module/Wiki.php:200 ../../include/conversation.php:1150 +msgid "Embed image from photo albums" +msgstr "Embeu una imatge dels àlbums de fotos" -#: ../../Zotlabs/Module/Uexport.php:65 -#, php-format -msgid "" -"These content files may be imported or restored by visiting %2$s on any site containing your channel. For best results" -" please import or restore these in date order (oldest first)." -msgstr "Aquests arxius de contingut poden ser importats o restaurats per visitar %2$s en qualsevol lloc que conté el teu canal. Per obtenir els millors resultats si us plau, importar o restaurar aquests en ordre de data (la més antiga primer)." +#: ../../Zotlabs/Module/Wiki.php:201 ../../include/conversation.php:1234 +msgid "Embed an image from your albums" +msgstr "Embeu una imatge dels teus àlbums" -#: ../../Zotlabs/Module/Viewconnections.php:62 +#: ../../Zotlabs/Module/Wiki.php:203 ../../include/conversation.php:1236 +#: ../../include/conversation.php:1273 +msgid "OK" +msgstr "OK" + +#: ../../Zotlabs/Module/Wiki.php:204 ../../include/conversation.php:1186 +msgid "Choose images to embed" +msgstr "Tria una imatge per a embeure-la" + +#: ../../Zotlabs/Module/Wiki.php:205 ../../include/conversation.php:1187 +msgid "Choose an album" +msgstr "Tria un àlbum" + +#: ../../Zotlabs/Module/Wiki.php:206 ../../include/conversation.php:1188 +msgid "Choose a different album..." +msgstr "Tria un àlbum diferent..." + +#: ../../Zotlabs/Module/Wiki.php:207 ../../include/conversation.php:1189 +msgid "Error getting album list" +msgstr "Ha ocorregut un error quan treia la llista de àlbums" + +#: ../../Zotlabs/Module/Wiki.php:208 ../../include/conversation.php:1190 +msgid "Error getting photo link" +msgstr "Ha ocorregut un error quan treia l'enllaç a la foto" + +#: ../../Zotlabs/Module/Wiki.php:209 ../../include/conversation.php:1191 +msgid "Error getting album" +msgstr "Ha ocorregut un error treient l'àlbum" + +#: ../../Zotlabs/Module/Viewconnections.php:65 msgid "No connections." msgstr "Sense connexions." -#: ../../Zotlabs/Module/Viewconnections.php:75 +#: ../../Zotlabs/Module/Viewconnections.php:78 #, php-format msgid "Visit %s's profile [%s]" msgstr "Visita el perfil [%s] de %s" -#: ../../Zotlabs/Module/Viewconnections.php:104 +#: ../../Zotlabs/Module/Viewconnections.php:107 msgid "View Connections" msgstr "Veure Connexions" @@ -6241,22 +6530,23 @@ msgstr "Veure Connexions" msgid "Source of Item" msgstr "Origen de l'article" -#: ../../Zotlabs/Module/Webpages.php:184 ../../Zotlabs/Lib/Apps.php:217 -#: ../../include/nav.php:106 ../../include/conversation.php:1685 -msgid "Webpages" -msgstr "Pàgines web" +#: ../../Zotlabs/Module/Api.php:61 ../../Zotlabs/Module/Api.php:85 +msgid "Authorize application connection" +msgstr "Autoritza la connexió de l'aplicació" -#: ../../Zotlabs/Module/Webpages.php:195 ../../include/page_widgets.php:41 -msgid "Actions" -msgstr "Accions" +#: ../../Zotlabs/Module/Api.php:62 +msgid "Return to your app and insert this Securty Code:" +msgstr "Torna a la teva aplicació i insereix aquest Codi de Seguretat:" -#: ../../Zotlabs/Module/Webpages.php:196 ../../include/page_widgets.php:42 -msgid "Page Link" -msgstr "Enllaç a Pàgina" +#: ../../Zotlabs/Module/Api.php:72 +msgid "Please login to continue." +msgstr "Si et plau, identifica't per continuar." -#: ../../Zotlabs/Module/Webpages.php:197 -msgid "Page Title" -msgstr "Títol de la pàgina" +#: ../../Zotlabs/Module/Api.php:87 +msgid "" +"Do you want to authorize this application to access your posts and contacts," +" and/or create new posts for you?" +msgstr "Vols autoritzar a aquesta aplicació l'accés a les teves entrades i contactes i/o a crear noves entrades com si fos tu mateix." #: ../../Zotlabs/Module/Xchan.php:10 msgid "Xchan Lookup" @@ -6266,92 +6556,6 @@ msgstr "Cerca a xchan" msgid "Lookup xchan beginning with (or webbie): " msgstr "Cerca a xchan començant per (o webbie)" -#: ../../Zotlabs/Lib/Apps.php:204 -msgid "Site Admin" -msgstr "Administració" - -#: ../../Zotlabs/Lib/Apps.php:205 -msgid "Bug Report" -msgstr "Informe d'Errors" - -#: ../../Zotlabs/Lib/Apps.php:206 -msgid "View Bookmarks" -msgstr "Veure Marcadors" - -#: ../../Zotlabs/Lib/Apps.php:207 -msgid "My Chatrooms" -msgstr "Les meves Sales de Xat" - -#: ../../Zotlabs/Lib/Apps.php:209 -msgid "Firefox Share" -msgstr "Compartir amb Firefox" - -#: ../../Zotlabs/Lib/Apps.php:210 -msgid "Remote Diagnostics" -msgstr "Diagnòstics Remots" - -#: ../../Zotlabs/Lib/Apps.php:211 ../../include/features.php:89 -msgid "Suggest Channels" -msgstr "Suggerir Canals" - -#: ../../Zotlabs/Lib/Apps.php:212 ../../include/nav.php:110 -#: ../../boot.php:1703 -msgid "Login" -msgstr "Identifica't" - -#: ../../Zotlabs/Lib/Apps.php:214 ../../include/nav.php:179 -msgid "Grid" -msgstr "Malla" - -#: ../../Zotlabs/Lib/Apps.php:218 ../../include/nav.php:182 -msgid "Channel Home" -msgstr "Canal Personal" - -#: ../../Zotlabs/Lib/Apps.php:221 ../../include/nav.php:201 -#: ../../include/conversation.php:1649 ../../include/conversation.php:1652 -msgid "Events" -msgstr "Esdeveniments" - -#: ../../Zotlabs/Lib/Apps.php:222 ../../include/nav.php:167 -msgid "Directory" -msgstr "Directori" - -#: ../../Zotlabs/Lib/Apps.php:224 ../../include/nav.php:193 -msgid "Mail" -msgstr "Correu" - -#: ../../Zotlabs/Lib/Apps.php:227 ../../include/nav.php:96 -msgid "Chat" -msgstr "Xerrar" - -#: ../../Zotlabs/Lib/Apps.php:229 -msgid "Probe" -msgstr "Sondeig" - -#: ../../Zotlabs/Lib/Apps.php:230 -msgid "Suggest" -msgstr "Suggeriment" - -#: ../../Zotlabs/Lib/Apps.php:231 -msgid "Random Channel" -msgstr "Canal Aleatori" - -#: ../../Zotlabs/Lib/Apps.php:232 -msgid "Invite" -msgstr "Convida" - -#: ../../Zotlabs/Lib/Apps.php:233 ../../include/widgets.php:1386 -msgid "Features" -msgstr "Funcionalitats" - -#: ../../Zotlabs/Lib/Apps.php:235 -msgid "Post" -msgstr "Entrada" - -#: ../../Zotlabs/Lib/Apps.php:335 -msgid "Purchase" -msgstr "Compra" - #: ../../Zotlabs/Lib/Chatroom.php:27 msgid "Missing room name" msgstr "Perdut el nom de la sala" @@ -6372,19 +6576,19 @@ msgstr "Sala no trobada." msgid "Room is full" msgstr "La sala es plena" -#: ../../Zotlabs/Lib/Enotify.php:60 ../../include/network.php:1823 +#: ../../Zotlabs/Lib/Enotify.php:60 ../../include/network.php:1882 msgid "$Projectname Notification" msgstr "Notificació de $Projectname" -#: ../../Zotlabs/Lib/Enotify.php:61 ../../include/network.php:1824 +#: ../../Zotlabs/Lib/Enotify.php:61 ../../include/network.php:1883 msgid "$projectname" msgstr "$projectname" -#: ../../Zotlabs/Lib/Enotify.php:63 ../../include/network.php:1826 +#: ../../Zotlabs/Lib/Enotify.php:63 ../../include/network.php:1885 msgid "Thank You," msgstr "Gràcies," -#: ../../Zotlabs/Lib/Enotify.php:65 ../../include/network.php:1828 +#: ../../Zotlabs/Lib/Enotify.php:65 ../../include/network.php:1887 #, php-format msgid "%s Administrator" msgstr "%s Administrador" @@ -6577,11 +6781,97 @@ msgstr "Creada una nova entrada" msgid "commented on %s's post" msgstr "comentat a l'entrada de %s" -#: ../../Zotlabs/Lib/ThreadItem.php:95 ../../include/conversation.php:664 +#: ../../Zotlabs/Lib/Apps.php:205 +msgid "Site Admin" +msgstr "Administració" + +#: ../../Zotlabs/Lib/Apps.php:206 +msgid "Bug Report" +msgstr "Informe d'Errors" + +#: ../../Zotlabs/Lib/Apps.php:207 +msgid "View Bookmarks" +msgstr "Veure Marcadors" + +#: ../../Zotlabs/Lib/Apps.php:208 +msgid "My Chatrooms" +msgstr "Les meves Sales de Xat" + +#: ../../Zotlabs/Lib/Apps.php:210 +msgid "Firefox Share" +msgstr "Compartir amb Firefox" + +#: ../../Zotlabs/Lib/Apps.php:211 +msgid "Remote Diagnostics" +msgstr "Diagnòstics Remots" + +#: ../../Zotlabs/Lib/Apps.php:212 ../../include/features.php:90 +msgid "Suggest Channels" +msgstr "Suggerir Canals" + +#: ../../Zotlabs/Lib/Apps.php:213 ../../include/nav.php:112 +#: ../../boot.php:1704 +msgid "Login" +msgstr "Identifica't" + +#: ../../Zotlabs/Lib/Apps.php:215 ../../include/nav.php:181 +msgid "Grid" +msgstr "Malla" + +#: ../../Zotlabs/Lib/Apps.php:220 ../../include/nav.php:184 +msgid "Channel Home" +msgstr "Canal Personal" + +#: ../../Zotlabs/Lib/Apps.php:223 ../../include/nav.php:203 +#: ../../include/conversation.php:1664 ../../include/conversation.php:1667 +msgid "Events" +msgstr "Esdeveniments" + +#: ../../Zotlabs/Lib/Apps.php:224 ../../include/nav.php:169 +msgid "Directory" +msgstr "Directori" + +#: ../../Zotlabs/Lib/Apps.php:226 ../../include/nav.php:195 +msgid "Mail" +msgstr "Correu" + +#: ../../Zotlabs/Lib/Apps.php:229 ../../include/nav.php:96 +msgid "Chat" +msgstr "Xerrar" + +#: ../../Zotlabs/Lib/Apps.php:231 +msgid "Probe" +msgstr "Sondeig" + +#: ../../Zotlabs/Lib/Apps.php:232 +msgid "Suggest" +msgstr "Suggeriment" + +#: ../../Zotlabs/Lib/Apps.php:233 +msgid "Random Channel" +msgstr "Canal Aleatori" + +#: ../../Zotlabs/Lib/Apps.php:234 +msgid "Invite" +msgstr "Convida" + +#: ../../Zotlabs/Lib/Apps.php:235 ../../include/widgets.php:1480 +msgid "Features" +msgstr "Funcionalitats" + +#: ../../Zotlabs/Lib/Apps.php:237 +msgid "Post" +msgstr "Entrada" + +#: ../../Zotlabs/Lib/Apps.php:339 +msgid "Purchase" +msgstr "Compra" + +#: ../../Zotlabs/Lib/ThreadItem.php:95 ../../include/conversation.php:667 msgid "Private Message" msgstr "Missatge Privat" -#: ../../Zotlabs/Lib/ThreadItem.php:132 ../../include/conversation.php:656 +#: ../../Zotlabs/Lib/ThreadItem.php:132 ../../include/conversation.php:659 msgid "Select" msgstr "Selecciona" @@ -6629,11 +6919,11 @@ msgstr "Canvia el Estat de la Preferència" msgid "starred" msgstr "preferit" -#: ../../Zotlabs/Lib/ThreadItem.php:234 ../../include/conversation.php:671 +#: ../../Zotlabs/Lib/ThreadItem.php:234 ../../include/conversation.php:674 msgid "Message signature validated" msgstr "Validada la signatura del missatge" -#: ../../Zotlabs/Lib/ThreadItem.php:235 ../../include/conversation.php:672 +#: ../../Zotlabs/Lib/ThreadItem.php:235 ../../include/conversation.php:675 msgid "Message signature incorrect" msgstr "Signatura del missatge incorrecta" @@ -6689,17 +6979,17 @@ msgstr "Mur-a-Mur" msgid "via Wall-To-Wall:" msgstr "via Mur-a-Mur:" -#: ../../Zotlabs/Lib/ThreadItem.php:341 ../../include/conversation.php:719 +#: ../../Zotlabs/Lib/ThreadItem.php:341 ../../include/conversation.php:722 #, php-format msgid "from %s" msgstr "De %s" -#: ../../Zotlabs/Lib/ThreadItem.php:344 ../../include/conversation.php:722 +#: ../../Zotlabs/Lib/ThreadItem.php:344 ../../include/conversation.php:725 #, php-format msgid "last edited: %s" msgstr "últim editat: %s" -#: ../../Zotlabs/Lib/ThreadItem.php:345 ../../include/conversation.php:723 +#: ../../Zotlabs/Lib/ThreadItem.php:345 ../../include/conversation.php:726 #, php-format msgid "Expires: %s" msgstr "Expira: %s" @@ -6717,26 +7007,27 @@ msgid "Mark all seen" msgstr "Marca tot com ja vist" #: ../../Zotlabs/Lib/ThreadItem.php:421 ../../include/js_strings.php:7 -msgid "[+] show all" -msgstr "[+] mostra tot" +#, php-format +msgid "%s show all" +msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:711 ../../include/conversation.php:1215 +#: ../../Zotlabs/Lib/ThreadItem.php:711 ../../include/conversation.php:1226 msgid "Bold" msgstr "Negreta" -#: ../../Zotlabs/Lib/ThreadItem.php:712 ../../include/conversation.php:1216 +#: ../../Zotlabs/Lib/ThreadItem.php:712 ../../include/conversation.php:1227 msgid "Italic" msgstr "Italica" -#: ../../Zotlabs/Lib/ThreadItem.php:713 ../../include/conversation.php:1217 +#: ../../Zotlabs/Lib/ThreadItem.php:713 ../../include/conversation.php:1228 msgid "Underline" msgstr "Subratllat" -#: ../../Zotlabs/Lib/ThreadItem.php:714 ../../include/conversation.php:1218 +#: ../../Zotlabs/Lib/ThreadItem.php:714 ../../include/conversation.php:1229 msgid "Quote" msgstr "Cometes" -#: ../../Zotlabs/Lib/ThreadItem.php:715 ../../include/conversation.php:1219 +#: ../../Zotlabs/Lib/ThreadItem.php:715 ../../include/conversation.php:1230 msgid "Code" msgstr "Codi" @@ -6752,11 +7043,74 @@ msgstr "Insereix Enllaç" msgid "Video" msgstr "Video" +#: ../../Zotlabs/Lib/PermissionDescription.php:31 +#: ../../include/acl_selectors.php:230 +msgid "Visible to your default audience" +msgstr "Visible per a la teva audiència " + +#: ../../Zotlabs/Lib/PermissionDescription.php:106 +#: ../../include/acl_selectors.php:266 +msgid "Only me" +msgstr "Només jo" + +#: ../../Zotlabs/Lib/PermissionDescription.php:107 +msgid "Public" +msgstr "Públic" + +#: ../../Zotlabs/Lib/PermissionDescription.php:108 +msgid "Anybody in the $Projectname network" +msgstr "Ningú a la xarxa $Projectname" + +#: ../../Zotlabs/Lib/PermissionDescription.php:109 +#, php-format +msgid "Any account on %s" +msgstr "Qualsevol compte a %s" + +#: ../../Zotlabs/Lib/PermissionDescription.php:110 +msgid "Any of my connections" +msgstr "Qualsevol de les meves connexions" + +#: ../../Zotlabs/Lib/PermissionDescription.php:111 +msgid "Only connections I specifically allow" +msgstr "Només les connexions que permeto específicament" + +#: ../../Zotlabs/Lib/PermissionDescription.php:112 +msgid "Anybody authenticated (could include visitors from other networks)" +msgstr "Qualsevol persona autenticada (podria incloure als usuaris d'altres xarxes)" + +#: ../../Zotlabs/Lib/PermissionDescription.php:113 +msgid "Any connections including those who haven't yet been approved" +msgstr "Qualsevol connexió incloent aquells que encara no han estat aprovats" + +#: ../../Zotlabs/Lib/PermissionDescription.php:152 +msgid "" +"This is your default setting for the audience of your normal stream, and " +"posts." +msgstr "Aquest és l'ajust per defecte per al públic del seu flux normal i entrades." + +#: ../../Zotlabs/Lib/PermissionDescription.php:153 +msgid "" +"This is your default setting for who can view your default channel profile" +msgstr "Aquesta és la configuració per defecte per a qui pugui veure el teu perfil per defecte del canal" + +#: ../../Zotlabs/Lib/PermissionDescription.php:154 +msgid "This is your default setting for who can view your connections" +msgstr "Aquesta és la configuració per defecte per a qui pugui veure les teves connexions" + +#: ../../Zotlabs/Lib/PermissionDescription.php:155 +msgid "" +"This is your default setting for who can view your file storage and photos" +msgstr "Aquesta és la configuració per defecte per a qui pugui veure els teus arxius i fotos" + +#: ../../Zotlabs/Lib/PermissionDescription.php:156 +msgid "This is your default setting for the audience of your webpages" +msgstr "Aquests son els ajustos per defecte de l'audiència de les teves pàgines web" + #: ../../include/Import/import_diaspora.php:16 msgid "No username found in import file." msgstr "No s'ha trobat nom d'usuari a l'arxiu d'importació." -#: ../../include/Import/import_diaspora.php:41 ../../include/import.php:50 +#: ../../include/Import/import_diaspora.php:41 ../../include/import.php:51 msgid "Unable to create a unique channel address. Import failed." msgstr "No s'ha pogut importar el canal perquè l'adreça única de canal no s'ha pogut crear." @@ -6765,6 +7119,291 @@ msgstr "No s'ha pogut importar el canal perquè l'adreça única de canal no s'h msgid "Cannot locate DNS info for database server '%s'" msgstr "No s'ha trobat informació de DNS pel servidor de base de dades '%s'" +#: ../../include/photos.php:114 +#, php-format +msgid "Image exceeds website size limit of %lu bytes" +msgstr "La imatge excedeix la mida limit pel lloc web en %lu bytes" + +#: ../../include/photos.php:121 +msgid "Image file is empty." +msgstr "El fitxer d'imatge esta buit." + +#: ../../include/photos.php:259 +msgid "Photo storage failed." +msgstr "Fracassà l'emmagatzematge de la Foto" + +#: ../../include/photos.php:299 +msgid "a new photo" +msgstr "Una foto nova" + +#: ../../include/photos.php:303 +#, php-format +msgctxt "photo_upload" +msgid "%1$s posted %2$s to %3$s" +msgstr "%1$s enviat %2$s a %3$s" + +#: ../../include/photos.php:506 ../../include/conversation.php:1650 +msgid "Photo Albums" +msgstr "Albums de Fotos" + +#: ../../include/photos.php:510 +msgid "Upload New Photos" +msgstr "Puja Noves Fotos" + +#: ../../include/nav.php:82 ../../include/nav.php:115 ../../boot.php:1703 +msgid "Logout" +msgstr "Desconectar" + +#: ../../include/nav.php:82 ../../include/nav.php:115 +msgid "End this session" +msgstr "Finalitza aquesta sessió" + +#: ../../include/nav.php:85 ../../include/nav.php:146 +msgid "Home" +msgstr "Inici" + +#: ../../include/nav.php:85 +msgid "Your posts and conversations" +msgstr "Les teves entrades i converses" + +#: ../../include/nav.php:86 +msgid "Your profile page" +msgstr "La teva pàgina de perfil" + +#: ../../include/nav.php:88 +msgid "Manage/Edit profiles" +msgstr "Gestiona/Edita perfils" + +#: ../../include/nav.php:90 ../../include/channel.php:980 +msgid "Edit Profile" +msgstr "Edita Perfil" + +#: ../../include/nav.php:90 +msgid "Edit your profile" +msgstr "Edita el teu perfil" + +#: ../../include/nav.php:92 +msgid "Your photos" +msgstr "Les Teves Fotos" + +#: ../../include/nav.php:93 +msgid "Your files" +msgstr "Els teus arxius" + +#: ../../include/nav.php:96 +msgid "Your chatrooms" +msgstr "Les teves sales de xerrar" + +#: ../../include/nav.php:102 ../../include/conversation.php:1690 +msgid "Bookmarks" +msgstr "Marcadors" + +#: ../../include/nav.php:102 +msgid "Your bookmarks" +msgstr "Els teus marcadors" + +#: ../../include/nav.php:106 +msgid "Your webpages" +msgstr "Les teves pàgines web" + +#: ../../include/nav.php:108 +msgid "Your wiki" +msgstr "" + +#: ../../include/nav.php:112 +msgid "Sign in" +msgstr "Signatura" + +#: ../../include/nav.php:129 +#, php-format +msgid "%s - click to logout" +msgstr "%s - click per desconectar" + +#: ../../include/nav.php:132 +msgid "Remote authentication" +msgstr "Autenticació remota" + +#: ../../include/nav.php:132 +msgid "Click to authenticate to your home hub" +msgstr "Clica per autentificar-te en el teu node" + +#: ../../include/nav.php:146 +msgid "Home Page" +msgstr "Pàgina Personal" + +#: ../../include/nav.php:149 +msgid "Create an account" +msgstr "Crear un compte" + +#: ../../include/nav.php:161 +msgid "Help and documentation" +msgstr "Ajuda i documentació" + +#: ../../include/nav.php:165 +msgid "Applications, utilities, links, games" +msgstr "Aplicacions, utilitats, enllaços, jocs" + +#: ../../include/nav.php:167 +msgid "Search site @name, #tag, ?docs, content" +msgstr "Cerca pel lloc @name, #tag, ?docs, contingut" + +#: ../../include/nav.php:169 +msgid "Channel Directory" +msgstr "Directori de Canals" + +#: ../../include/nav.php:181 +msgid "Your grid" +msgstr "La teva malla" + +#: ../../include/nav.php:182 +msgid "Mark all grid notifications seen" +msgstr "Marca totes les notificacions de la malla vistes" + +#: ../../include/nav.php:184 +msgid "Channel home" +msgstr "Canal personal" + +#: ../../include/nav.php:185 +msgid "Mark all channel notifications seen" +msgstr "Marca totes les notificacions de canal vistes" + +#: ../../include/nav.php:191 +msgid "Notices" +msgstr "Noticies" + +#: ../../include/nav.php:191 +msgid "Notifications" +msgstr "Notificacions" + +#: ../../include/nav.php:192 +msgid "See all notifications" +msgstr "Veure totes les Notificacions" + +#: ../../include/nav.php:195 +msgid "Private mail" +msgstr "Correu privat" + +#: ../../include/nav.php:196 +msgid "See all private messages" +msgstr "Veure tots els missatges privats" + +#: ../../include/nav.php:197 +msgid "Mark all private messages seen" +msgstr "Marcar tots els missatges privats vistos" + +#: ../../include/nav.php:198 ../../include/widgets.php:667 +msgid "Inbox" +msgstr "Safata d'entrada" + +#: ../../include/nav.php:199 ../../include/widgets.php:672 +msgid "Outbox" +msgstr "Safata de sortida" + +#: ../../include/nav.php:200 ../../include/widgets.php:677 +msgid "New Message" +msgstr "Nou Missatge" + +#: ../../include/nav.php:203 +msgid "Event Calendar" +msgstr "Calendari d'Events" + +#: ../../include/nav.php:204 +msgid "See all events" +msgstr "Veure tots els esdeveniments" + +#: ../../include/nav.php:205 +msgid "Mark all events seen" +msgstr "Marcar tots els esdeveniments vistos" + +#: ../../include/nav.php:208 +msgid "Manage Your Channels" +msgstr "Gestiona els Teus Canals" + +#: ../../include/nav.php:210 +msgid "Account/Channel Settings" +msgstr "Ajustos de Compte/Canal" + +#: ../../include/nav.php:218 ../../include/widgets.php:1510 +msgid "Admin" +msgstr "Admin" + +#: ../../include/nav.php:218 +msgid "Site Setup and Configuration" +msgstr "Ajustos i Configuració del Lloc" + +#: ../../include/nav.php:249 ../../include/conversation.php:854 +msgid "Loading..." +msgstr "Carregant..." + +#: ../../include/nav.php:254 +msgid "@name, #tag, ?doc, content" +msgstr "@nom, #etiqueta, ?doc, contingut" + +#: ../../include/nav.php:255 +msgid "Please wait..." +msgstr "Si us plau, espera......." + +#: ../../include/network.php:704 +msgid "view full size" +msgstr "Veure a mida competa" + +#: ../../include/network.php:1930 ../../include/account.php:317 +#: ../../include/account.php:344 ../../include/account.php:404 +msgid "Administrator" +msgstr "Administrador" + +#: ../../include/network.php:1944 +msgid "No Subject" +msgstr "Sense Assumpte" + +#: ../../include/network.php:2198 ../../include/network.php:2199 +msgid "Friendica" +msgstr "Friendica" + +#: ../../include/network.php:2200 +msgid "OStatus" +msgstr "OStatus" + +#: ../../include/network.php:2201 +msgid "GNU-Social" +msgstr "GNU-Social" + +#: ../../include/network.php:2202 +msgid "RSS/Atom" +msgstr "RSS/Atom" + +#: ../../include/network.php:2204 +msgid "Diaspora" +msgstr "Diaspora" + +#: ../../include/network.php:2205 +msgid "Facebook" +msgstr "Facebook" + +#: ../../include/network.php:2206 +msgid "Zot" +msgstr "Zot" + +#: ../../include/network.php:2207 +msgid "LinkedIn" +msgstr "LinkedIn" + +#: ../../include/network.php:2208 +msgid "XMPP/IM" +msgstr "XMPP/IM" + +#: ../../include/network.php:2209 +msgid "MySpace" +msgstr "MySpace" + +#: ../../include/page_widgets.php:7 +msgid "New Page" +msgstr "Pàgina Nova" + +#: ../../include/page_widgets.php:46 +msgid "Title" +msgstr "Títol" + #: ../../include/taxonomy.php:188 ../../include/taxonomy.php:270 #: ../../include/widgets.php:46 ../../include/widgets.php:429 #: ../../include/contact_widgets.php:91 @@ -6803,952 +7442,159 @@ msgstr "agrada" msgid "dislikes" msgstr "desagrada" -#: ../../include/event.php:22 ../../include/event.php:69 -#: ../../include/bb2diaspora.php:485 -msgid "l F d, Y \\@ g:i A" -msgstr "l F d, Y \\@ g:i A" +#: ../../include/channel.php:33 +msgid "Unable to obtain identity information from database" +msgstr "Incapaç de trobar l'informació d'identitat a la base de dades" -#: ../../include/event.php:30 ../../include/event.php:73 -#: ../../include/bb2diaspora.php:491 -msgid "Starts:" -msgstr "Inicia:" +#: ../../include/channel.php:67 +msgid "Empty name" +msgstr "Nom buit" -#: ../../include/event.php:40 ../../include/event.php:77 -#: ../../include/bb2diaspora.php:499 -msgid "Finishes:" -msgstr "Acaba:" +#: ../../include/channel.php:70 +msgid "Name too long" +msgstr "Nom massa llarg" -#: ../../include/event.php:812 -msgid "This event has been added to your calendar." -msgstr "Aquest succés ha estat afegit al teu calendari." +#: ../../include/channel.php:181 +msgid "No account identifier" +msgstr "Sense identificador de compte" -#: ../../include/event.php:1012 -msgid "Not specified" -msgstr "Sense especificar" +#: ../../include/channel.php:193 +msgid "Nickname is required." +msgstr "Alies/malnom es requerit." -#: ../../include/event.php:1013 -msgid "Needs Action" -msgstr "Necessita una Acció" +#: ../../include/channel.php:207 +msgid "Reserved nickname. Please choose another." +msgstr "Àlies reservat. Tria un altre." -#: ../../include/event.php:1014 -msgid "Completed" -msgstr "Completat" - -#: ../../include/event.php:1015 -msgid "In Process" -msgstr "En Procès" - -#: ../../include/event.php:1016 -msgid "Cancelled" -msgstr "Cancel·lat" - -#: ../../include/import.php:29 +#: ../../include/channel.php:212 msgid "" -"Cannot create a duplicate channel identifier on this system. Import failed." -msgstr "No s'ha pogut importar el canal perquè l'identificador del canal no s'ha pogut duplicar en aquest servidor." +"Nickname has unsupported characters or is already being used on this site." +msgstr "L'álies te caracters no soportats o ja esta en ús en aquest lloc" -#: ../../include/import.php:76 -msgid "Channel clone failed. Import failed." -msgstr "No s'ha pogut importar el canal perquè el canal no s'ha pogut clonar." +#: ../../include/channel.php:272 +msgid "Unable to retrieve created identity" +msgstr "No es pot recuperar la identitat creada" -#: ../../include/items.php:892 ../../include/items.php:937 -msgid "(Unknown)" -msgstr "(Desconegut)" +#: ../../include/channel.php:341 +msgid "Default Profile" +msgstr "Perfil per Defecte" -#: ../../include/items.php:1136 -msgid "Visible to anybody on the internet." -msgstr "Visible per tothom a la Internet" +#: ../../include/channel.php:830 +msgid "Requested channel is not available." +msgstr "El canal demanat no està disponible." -#: ../../include/items.php:1138 -msgid "Visible to you only." -msgstr "Visible només per tú." +#: ../../include/channel.php:977 +msgid "Create New Profile" +msgstr "Crear un Perfil Nou" -#: ../../include/items.php:1140 -msgid "Visible to anybody in this network." -msgstr "Visible per tothom en aquesta xarxa." +#: ../../include/channel.php:997 +msgid "Visible to everybody" +msgstr "Visible per tothom" -#: ../../include/items.php:1142 -msgid "Visible to anybody authenticated." -msgstr "Visible per tothom autenticat." +#: ../../include/channel.php:1070 ../../include/channel.php:1182 +msgid "Gender:" +msgstr "Gènere:" -#: ../../include/items.php:1144 +#: ../../include/channel.php:1071 ../../include/channel.php:1226 +msgid "Status:" +msgstr "Estatus:" + +#: ../../include/channel.php:1072 ../../include/channel.php:1237 +msgid "Homepage:" +msgstr "Pàgina Personal:" + +#: ../../include/channel.php:1073 +msgid "Online Now" +msgstr "Ara en Linia" + +#: ../../include/channel.php:1187 +msgid "Like this channel" +msgstr "M'agrada aquest canal" + +#: ../../include/channel.php:1211 +msgid "j F, Y" +msgstr "j F, Y" + +#: ../../include/channel.php:1212 +msgid "j F" +msgstr "j F" + +#: ../../include/channel.php:1219 +msgid "Birthday:" +msgstr "Aniversari:" + +#: ../../include/channel.php:1232 #, php-format -msgid "Visible to anybody on %s." -msgstr "Visible per a tothom a %s." +msgid "for %1$d %2$s" +msgstr "per %1$d %2$s" -#: ../../include/items.php:1146 -msgid "Visible to all connections." -msgstr "Visible per a totes les connexions." +#: ../../include/channel.php:1235 +msgid "Sexual Preference:" +msgstr "Preferència Sexual:" -#: ../../include/items.php:1148 -msgid "Visible to approved connections." -msgstr "Visible per a les connexions aprovades." +#: ../../include/channel.php:1241 +msgid "Tags:" +msgstr "Etiquetes:" -#: ../../include/items.php:1150 -msgid "Visible to specific connections." -msgstr "Visible per a específiques connexions." +#: ../../include/channel.php:1243 +msgid "Political Views:" +msgstr "Idees Polítiques:" -#: ../../include/items.php:3909 -msgid "Privacy group is empty." -msgstr "El grup privat està vuit." +#: ../../include/channel.php:1245 +msgid "Religion:" +msgstr "Religió:" -#: ../../include/items.php:3916 -#, php-format -msgid "Privacy group: %s" -msgstr "Grup privat: %s" +#: ../../include/channel.php:1249 +msgid "Hobbies/Interests:" +msgstr "Aficions/Interessos:" -#: ../../include/items.php:3928 -msgid "Connection not found." -msgstr "Connexió no trobada." +#: ../../include/channel.php:1251 +msgid "Likes:" +msgstr "Agrada:" -#: ../../include/items.php:4277 -msgid "profile photo" -msgstr "foto del perfil" +#: ../../include/channel.php:1253 +msgid "Dislikes:" +msgstr "Desagrada:" -#: ../../include/message.php:20 -msgid "No recipient provided." -msgstr "No s'ha proporcionat bústia." +#: ../../include/channel.php:1255 +msgid "Contact information and Social Networks:" +msgstr "Informació de contacte i Xarxes Socials:" -#: ../../include/message.php:25 -msgid "[no subject]" -msgstr "[no subject]" +#: ../../include/channel.php:1257 +msgid "My other channels:" +msgstr "Els meus altres canals:" -#: ../../include/message.php:45 -msgid "Unable to determine sender." -msgstr "incapaç de determinar el remitent" +#: ../../include/channel.php:1259 +msgid "Musical interests:" +msgstr "Interessos Musicals:" -#: ../../include/message.php:222 -msgid "Stored post could not be verified." -msgstr "L'entrada guardada no pot ser verificada" +#: ../../include/channel.php:1261 +msgid "Books, literature:" +msgstr "Llibres, literatura:" -#: ../../include/text.php:428 -msgid "prev" -msgstr "prev" +#: ../../include/channel.php:1263 +msgid "Television:" +msgstr "Televisió:" -#: ../../include/text.php:430 -msgid "first" -msgstr "primer" +#: ../../include/channel.php:1265 +msgid "Film/dance/culture/entertainment:" +msgstr "Películes/Dança/Cultura/Entreteniment:" -#: ../../include/text.php:459 -msgid "last" -msgstr "últim" +#: ../../include/channel.php:1267 +msgid "Love/Romance:" +msgstr "Amor/Romace:" -#: ../../include/text.php:462 -msgid "next" -msgstr "pròxim" +#: ../../include/channel.php:1269 +msgid "Work/employment:" +msgstr "Treball/feina:" -#: ../../include/text.php:472 -msgid "older" -msgstr "el més antic" +#: ../../include/channel.php:1271 +msgid "School/education:" +msgstr "Escola/educació:" -#: ../../include/text.php:474 -msgid "newer" -msgstr "El més nou" - -#: ../../include/text.php:863 -msgid "No connections" -msgstr "Sense Connexions" - -#: ../../include/text.php:888 -#, php-format -msgid "View all %s connections" -msgstr "Veure totes les connexions de %s" - -#: ../../include/text.php:1033 ../../include/text.php:1038 -msgid "poke" -msgstr "esperona" - -#: ../../include/text.php:1033 ../../include/text.php:1038 -#: ../../include/conversation.php:243 -msgid "poked" -msgstr "esperonat" - -#: ../../include/text.php:1039 -msgid "ping" -msgstr "coloca" - -#: ../../include/text.php:1039 -msgid "pinged" -msgstr "colocat" - -#: ../../include/text.php:1040 -msgid "prod" -msgstr "picar" - -#: ../../include/text.php:1040 -msgid "prodded" -msgstr "picat" - -#: ../../include/text.php:1041 -msgid "slap" -msgstr "bufetada" - -#: ../../include/text.php:1041 -msgid "slapped" -msgstr "bufetejat" - -#: ../../include/text.php:1042 -msgid "finger" -msgstr "senyal" - -#: ../../include/text.php:1042 -msgid "fingered" -msgstr "senyalat" - -#: ../../include/text.php:1043 -msgid "rebuff" -msgstr "menyspreu" - -#: ../../include/text.php:1043 -msgid "rebuffed" -msgstr "menyspreuat" - -#: ../../include/text.php:1055 -msgid "happy" -msgstr "feliç" - -#: ../../include/text.php:1056 -msgid "sad" -msgstr "trist" - -#: ../../include/text.php:1057 -msgid "mellow" -msgstr "melós" - -#: ../../include/text.php:1058 -msgid "tired" -msgstr "cansat" - -#: ../../include/text.php:1059 -msgid "perky" -msgstr "turgent" - -#: ../../include/text.php:1060 -msgid "angry" -msgstr "enfadat" - -#: ../../include/text.php:1061 -msgid "stupefied" -msgstr "estupefacte" - -#: ../../include/text.php:1062 -msgid "puzzled" -msgstr "perplexe" - -#: ../../include/text.php:1063 -msgid "interested" -msgstr "Interessat" - -#: ../../include/text.php:1064 -msgid "bitter" -msgstr "amargat" - -#: ../../include/text.php:1065 -msgid "cheerful" -msgstr "feliç" - -#: ../../include/text.php:1066 -msgid "alive" -msgstr "viu" - -#: ../../include/text.php:1067 -msgid "annoyed" -msgstr "molest" - -#: ../../include/text.php:1068 -msgid "anxious" -msgstr "ansiós" - -#: ../../include/text.php:1069 -msgid "cranky" -msgstr "malagaitós" - -#: ../../include/text.php:1070 -msgid "disturbed" -msgstr "transtornat" - -#: ../../include/text.php:1071 -msgid "frustrated" -msgstr "frustrat" - -#: ../../include/text.php:1072 -msgid "depressed" -msgstr "deprimit" - -#: ../../include/text.php:1073 -msgid "motivated" -msgstr "motivat" - -#: ../../include/text.php:1074 -msgid "relaxed" -msgstr "relaxat" - -#: ../../include/text.php:1075 -msgid "surprised" -msgstr "sorprès" - -#: ../../include/text.php:1257 ../../include/js_strings.php:70 -msgid "Monday" -msgstr "Dilluns" - -#: ../../include/text.php:1257 ../../include/js_strings.php:71 -msgid "Tuesday" -msgstr "Dimarts" - -#: ../../include/text.php:1257 ../../include/js_strings.php:72 -msgid "Wednesday" -msgstr "Dimecres" - -#: ../../include/text.php:1257 ../../include/js_strings.php:73 -msgid "Thursday" -msgstr "Dijous" - -#: ../../include/text.php:1257 ../../include/js_strings.php:74 -msgid "Friday" -msgstr "Divendres" - -#: ../../include/text.php:1257 ../../include/js_strings.php:75 -msgid "Saturday" -msgstr "Dissabte" - -#: ../../include/text.php:1257 ../../include/js_strings.php:69 -msgid "Sunday" -msgstr "Diumenge" - -#: ../../include/text.php:1261 ../../include/js_strings.php:45 -msgid "January" -msgstr "Gener" - -#: ../../include/text.php:1261 ../../include/js_strings.php:46 -msgid "February" -msgstr "Febrer" - -#: ../../include/text.php:1261 ../../include/js_strings.php:47 -msgid "March" -msgstr "Març" - -#: ../../include/text.php:1261 ../../include/js_strings.php:48 -msgid "April" -msgstr "Abril" - -#: ../../include/text.php:1261 -msgid "May" -msgstr "Maig" - -#: ../../include/text.php:1261 ../../include/js_strings.php:50 -msgid "June" -msgstr "Juny" - -#: ../../include/text.php:1261 ../../include/js_strings.php:51 -msgid "July" -msgstr "Juliol" - -#: ../../include/text.php:1261 ../../include/js_strings.php:52 -msgid "August" -msgstr "Agost" - -#: ../../include/text.php:1261 ../../include/js_strings.php:53 -msgid "September" -msgstr "Setembre" - -#: ../../include/text.php:1261 ../../include/js_strings.php:54 -msgid "October" -msgstr "Octubre" - -#: ../../include/text.php:1261 ../../include/js_strings.php:55 -msgid "November" -msgstr "Novembre" - -#: ../../include/text.php:1261 ../../include/js_strings.php:56 -msgid "December" -msgstr "Desembre" - -#: ../../include/text.php:1338 ../../include/text.php:1342 -msgid "Unknown Attachment" -msgstr "Adjunt Desconegut" - -#: ../../include/text.php:1344 -msgid "unknown" -msgstr "desconegut" - -#: ../../include/text.php:1380 -msgid "remove category" -msgstr "elimina categoria" - -#: ../../include/text.php:1457 -msgid "remove from file" -msgstr "elimina del arxiu" - -#: ../../include/text.php:1753 ../../include/text.php:1824 -msgid "default" -msgstr "per defecte" - -#: ../../include/text.php:1761 -msgid "Page layout" -msgstr "Format de la pàgina" - -#: ../../include/text.php:1761 -msgid "You can create your own with the layouts tool" -msgstr "Pots crear el teu propi amb l'editor de format de pàgina." - -#: ../../include/text.php:1803 -msgid "Page content type" -msgstr "Tipus de contingut de la pàgina" - -#: ../../include/text.php:1836 -msgid "Select an alternate language" -msgstr "Tria un idioma alternatiu" - -#: ../../include/text.php:1953 -msgid "activity" -msgstr "activitat" - -#: ../../include/text.php:2262 -msgid "Design Tools" -msgstr "Eines de disseny" - -#: ../../include/text.php:2268 -msgid "Pages" -msgstr "Pàgines" - -#: ../../include/widgets.php:103 -msgid "System" -msgstr "Sistema" - -#: ../../include/widgets.php:106 -msgid "New App" -msgstr "Nova App" - -#: ../../include/widgets.php:154 -msgid "Suggestions" -msgstr "Suggerencies" - -#: ../../include/widgets.php:155 -msgid "See more..." -msgstr "Veure més....." - -#: ../../include/widgets.php:175 -#, php-format -msgid "You have %1$.0f of %2$.0f allowed connections." -msgstr "Tens %1$.0f de %2$.0f connexions permeses." - -#: ../../include/widgets.php:181 -msgid "Add New Connection" -msgstr "Afegeix una Nova Connexió" - -#: ../../include/widgets.php:182 -msgid "Enter channel address" -msgstr "Introdueix l'adreça del canal" - -#: ../../include/widgets.php:183 -msgid "Examples: bob@example.com, https://example.com/barbara" -msgstr "Exemples: bob@example.com, https://exemple.com/barbara" - -#: ../../include/widgets.php:199 -msgid "Notes" -msgstr "Notes" - -#: ../../include/widgets.php:273 -msgid "Remove term" -msgstr "Plaç de remoció" - -#: ../../include/widgets.php:281 ../../include/features.php:84 -msgid "Saved Searches" -msgstr "Cerques Guardades" - -#: ../../include/widgets.php:282 ../../include/group.php:316 -msgid "add" -msgstr "afegeix" - -#: ../../include/widgets.php:310 ../../include/contact_widgets.php:53 -#: ../../include/features.php:98 -msgid "Saved Folders" -msgstr "Carpetes Guardades" - -#: ../../include/widgets.php:313 ../../include/widgets.php:432 -#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:94 -msgid "Everything" -msgstr "Tot" - -#: ../../include/widgets.php:354 -msgid "Archives" -msgstr "Arxius" - -#: ../../include/widgets.php:516 -msgid "Refresh" -msgstr "Refresc" - -#: ../../include/widgets.php:556 -msgid "Account settings" -msgstr "Ajustos de Compte" - -#: ../../include/widgets.php:562 -msgid "Channel settings" -msgstr "Ajustos de Canal" - -#: ../../include/widgets.php:571 -msgid "Additional features" -msgstr "Característiques addicionals" - -#: ../../include/widgets.php:578 -msgid "Feature/Addon settings" -msgstr "Ajustos de Complements" - -#: ../../include/widgets.php:584 -msgid "Display settings" -msgstr "Ajustos de pantalla" - -#: ../../include/widgets.php:591 -msgid "Manage locations" -msgstr "Gestiona ubicacions" - -#: ../../include/widgets.php:600 -msgid "Export channel" -msgstr "Exportat canal" - -#: ../../include/widgets.php:607 -msgid "Connected apps" -msgstr "Apps connectades" - -#: ../../include/widgets.php:622 -msgid "Premium Channel Settings" -msgstr "Ajustos Premium de Canal" - -#: ../../include/widgets.php:651 -msgid "Private Mail Menu" -msgstr "Menú de Correu Privat" - -#: ../../include/widgets.php:653 -msgid "Combined View" -msgstr "Vista Combinada" - -#: ../../include/widgets.php:658 ../../include/nav.php:196 -msgid "Inbox" -msgstr "Safata d'entrada" - -#: ../../include/widgets.php:663 ../../include/nav.php:197 -msgid "Outbox" -msgstr "Safata de sortida" - -#: ../../include/widgets.php:668 ../../include/nav.php:198 -msgid "New Message" -msgstr "Nou Missatge" - -#: ../../include/widgets.php:685 ../../include/widgets.php:697 -msgid "Conversations" -msgstr "Conversacions" - -#: ../../include/widgets.php:689 -msgid "Received Messages" -msgstr "Missatges Rebuts" - -#: ../../include/widgets.php:693 -msgid "Sent Messages" -msgstr "Missatges Enviats" - -#: ../../include/widgets.php:707 -msgid "No messages." -msgstr "Sense missatges." - -#: ../../include/widgets.php:725 -msgid "Delete conversation" -msgstr "Conversació esborrada" - -#: ../../include/widgets.php:751 -msgid "Events Menu" -msgstr "Menú d'Esdeveniments" - -#: ../../include/widgets.php:752 -msgid "Day View" -msgstr "Vista de Dia" - -#: ../../include/widgets.php:753 -msgid "Week View" -msgstr "Vista de Setmana" - -#: ../../include/widgets.php:754 -msgid "Month View" -msgstr "Vista de Mes" - -#: ../../include/widgets.php:766 -msgid "Events Tools" -msgstr "Eina d'Esdeveniments" - -#: ../../include/widgets.php:767 -msgid "Export Calendar" -msgstr "Exportar Calendari" - -#: ../../include/widgets.php:768 -msgid "Import Calendar" -msgstr "Importar Calendari" - -#: ../../include/widgets.php:842 ../../include/conversation.php:1662 -#: ../../include/conversation.php:1665 -msgid "Chatrooms" -msgstr "Sala per Xerrar" - -#: ../../include/widgets.php:846 -msgid "Overview" -msgstr "Visió General" - -#: ../../include/widgets.php:853 -msgid "Chat Members" -msgstr "Membres de la Sala de Xat" - -#: ../../include/widgets.php:876 -msgid "Bookmarked Chatrooms" -msgstr "Sales de Xat Favorites" - -#: ../../include/widgets.php:899 -msgid "Suggested Chatrooms" -msgstr "Sales de Xat Suggerides" - -#: ../../include/widgets.php:1044 ../../include/widgets.php:1156 -msgid "photo/image" -msgstr "foto/imatge" - -#: ../../include/widgets.php:1099 -msgid "Click to show more" -msgstr "Fes clic per veure més" - -#: ../../include/widgets.php:1250 -msgid "Rating Tools" -msgstr "Eines de Valoració" - -#: ../../include/widgets.php:1254 ../../include/widgets.php:1256 -msgid "Rate Me" -msgstr "Valora'm" - -#: ../../include/widgets.php:1259 -msgid "View Ratings" -msgstr "Veure Valoracions" - -#: ../../include/widgets.php:1316 -msgid "Forums" -msgstr "Forums" - -#: ../../include/widgets.php:1345 -msgid "Tasks" -msgstr "Tasques" - -#: ../../include/widgets.php:1354 -msgid "Documentation" -msgstr "Documentació" - -#: ../../include/widgets.php:1356 -msgid "Project/Site Information" -msgstr "Informació del Projecte/Lloc" - -#: ../../include/widgets.php:1357 -msgid "For Members" -msgstr "Per Membres" - -#: ../../include/widgets.php:1358 -msgid "For Administrators" -msgstr "Per Administradors" - -#: ../../include/widgets.php:1359 -msgid "For Developers" -msgstr "Per Desenvolupadors" - -#: ../../include/widgets.php:1383 ../../include/widgets.php:1421 -msgid "Member registrations waiting for confirmation" -msgstr "Una inscripció per a ser membre està esperant confirmació" - -#: ../../include/widgets.php:1389 -msgid "Inspect queue" -msgstr "Revisa cua" - -#: ../../include/widgets.php:1391 -msgid "DB updates" -msgstr "Actualitzacions de Base de Dades" - -#: ../../include/widgets.php:1416 ../../include/nav.php:216 -msgid "Admin" -msgstr "Admin" - -#: ../../include/widgets.php:1417 -msgid "Plugin Features" -msgstr "Característiques del Plugin" - -#: ../../include/follow.php:27 -msgid "Channel is blocked on this site." -msgstr "El canal està bloquejat en aquest lloc." - -#: ../../include/follow.php:32 -msgid "Channel location missing." -msgstr "Ubicació del canal perduda." - -#: ../../include/follow.php:81 -msgid "Response from remote channel was incomplete." -msgstr "La resposta del canal remot fou incompleta." - -#: ../../include/follow.php:98 -msgid "Channel was deleted and no longer exists." -msgstr "El canal fou esborrat i actualment no existeix." - -#: ../../include/follow.php:154 ../../include/follow.php:190 -msgid "Protocol disabled." -msgstr "Protocol desactivat." - -#: ../../include/follow.php:178 -msgid "Channel discovery failed." -msgstr "Descobriment de canal fallit." - -#: ../../include/follow.php:216 -msgid "Cannot connect to yourself." -msgstr "No pots connectar amb tu mateix." - -#: ../../include/bookmarks.php:35 -#, php-format -msgid "%1$s's bookmarks" -msgstr "%1$s de marcadors" - -#: ../../include/api.php:1336 -msgid "Public Timeline" -msgstr "Línia de Temps Pública" - -#: ../../include/bbcode.php:123 ../../include/bbcode.php:844 -#: ../../include/bbcode.php:847 ../../include/bbcode.php:852 -#: ../../include/bbcode.php:855 ../../include/bbcode.php:858 -#: ../../include/bbcode.php:861 ../../include/bbcode.php:866 -#: ../../include/bbcode.php:869 ../../include/bbcode.php:874 -#: ../../include/bbcode.php:877 ../../include/bbcode.php:880 -#: ../../include/bbcode.php:883 -msgid "Image/photo" -msgstr "Imatge/foto" - -#: ../../include/bbcode.php:162 ../../include/bbcode.php:894 -msgid "Encrypted content" -msgstr "Contingut encriptat" - -#: ../../include/bbcode.php:178 -#, php-format -msgid "Install %s element: " -msgstr "Instal·la l'element %s:" - -#: ../../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 "Aquesta entrada contè un element %s instal·lable, potser manques de permissos per instal·lar-lo en aquest lloc." - -#: ../../include/bbcode.php:254 -#, php-format -msgid "%1$s wrote the following %2$s %3$s" -msgstr "%1$s va escriure el següent %2$s %3$s" - -#: ../../include/bbcode.php:331 ../../include/bbcode.php:339 -msgid "Click to open/close" -msgstr "Clic per obrir/tancar" - -#: ../../include/bbcode.php:339 -msgid "spoiler" -msgstr "xafa guitarres" - -#: ../../include/bbcode.php:585 -msgid "Different viewers will see this text differently" -msgstr "Diferents observadors veuran aquest text de diferents formes" - -#: ../../include/bbcode.php:832 -msgid "$1 wrote:" -msgstr "$1 va escriure:" - -#: ../../include/dir_fns.php:141 -msgid "Directory Options" -msgstr "Opcions de Directori" - -#: ../../include/dir_fns.php:143 -msgid "Safe Mode" -msgstr "Manera Segura" - -#: ../../include/dir_fns.php:144 -msgid "Public Forums Only" -msgstr "Només Fòrums Públics" - -#: ../../include/dir_fns.php:145 -msgid "This Website Only" -msgstr "Només Aquest Lloc Web" - -#: ../../include/security.php:383 -msgid "" -"The form security token was not correct. This probably happened because the " -"form has been opened for too long (>3 hours) before submitting it." -msgstr "El formulario de la cadena de seguridad no era correcto. Esto probablemente ocurrió porque el formulario se ha abierto durante demasiado tiempo (> 3 horas) antes de enviarlo." - -#: ../../include/nav.php:82 ../../include/nav.php:113 ../../boot.php:1702 -msgid "Logout" -msgstr "Desconectar" - -#: ../../include/nav.php:82 ../../include/nav.php:113 -msgid "End this session" -msgstr "Finalitza aquesta sessió" - -#: ../../include/nav.php:85 ../../include/nav.php:144 -msgid "Home" -msgstr "Inici" - -#: ../../include/nav.php:85 -msgid "Your posts and conversations" -msgstr "Les teves entrades i converses" - -#: ../../include/nav.php:86 -msgid "Your profile page" -msgstr "La teva pàgina de perfil" - -#: ../../include/nav.php:88 -msgid "Manage/Edit profiles" -msgstr "Gestiona/Edita perfils" - -#: ../../include/nav.php:90 ../../include/channel.php:941 -msgid "Edit Profile" -msgstr "Edita Perfil" - -#: ../../include/nav.php:90 -msgid "Edit your profile" -msgstr "Edita el teu perfil" - -#: ../../include/nav.php:92 -msgid "Your photos" -msgstr "Les Teves Fotos" - -#: ../../include/nav.php:93 -msgid "Your files" -msgstr "Els teus arxius" - -#: ../../include/nav.php:96 -msgid "Your chatrooms" -msgstr "Les teves sales de xerrar" - -#: ../../include/nav.php:102 ../../include/conversation.php:1675 -msgid "Bookmarks" -msgstr "Marcadors" - -#: ../../include/nav.php:102 -msgid "Your bookmarks" -msgstr "Els teus marcadors" - -#: ../../include/nav.php:106 -msgid "Your webpages" -msgstr "Les teves pàgines web" - -#: ../../include/nav.php:110 -msgid "Sign in" -msgstr "Signatura" - -#: ../../include/nav.php:127 -#, php-format -msgid "%s - click to logout" -msgstr "%s - click per desconectar" - -#: ../../include/nav.php:130 -msgid "Remote authentication" -msgstr "Autenticació remota" - -#: ../../include/nav.php:130 -msgid "Click to authenticate to your home hub" -msgstr "Clica per autentificar-te en el teu node" - -#: ../../include/nav.php:144 -msgid "Home Page" -msgstr "Pàgina Personal" - -#: ../../include/nav.php:147 -msgid "Create an account" -msgstr "Crear un compte" - -#: ../../include/nav.php:159 -msgid "Help and documentation" -msgstr "Ajuda i documentació" - -#: ../../include/nav.php:163 -msgid "Applications, utilities, links, games" -msgstr "Aplicacions, utilitats, enllaços, jocs" - -#: ../../include/nav.php:165 -msgid "Search site @name, #tag, ?docs, content" -msgstr "Cerca pel lloc @name, #tag, ?docs, contingut" - -#: ../../include/nav.php:167 -msgid "Channel Directory" -msgstr "Directori de Canals" - -#: ../../include/nav.php:179 -msgid "Your grid" -msgstr "La teva malla" - -#: ../../include/nav.php:180 -msgid "Mark all grid notifications seen" -msgstr "Marca totes les notificacions de la malla vistes" - -#: ../../include/nav.php:182 -msgid "Channel home" -msgstr "Canal personal" - -#: ../../include/nav.php:183 -msgid "Mark all channel notifications seen" -msgstr "Marca totes les notificacions de canal vistes" - -#: ../../include/nav.php:189 -msgid "Notices" -msgstr "Noticies" - -#: ../../include/nav.php:189 -msgid "Notifications" -msgstr "Notificacions" - -#: ../../include/nav.php:190 -msgid "See all notifications" -msgstr "Veure totes les Notificacions" - -#: ../../include/nav.php:193 -msgid "Private mail" -msgstr "Correu privat" - -#: ../../include/nav.php:194 -msgid "See all private messages" -msgstr "Veure tots els missatges privats" - -#: ../../include/nav.php:195 -msgid "Mark all private messages seen" -msgstr "Marcar tots els missatges privats vistos" - -#: ../../include/nav.php:201 -msgid "Event Calendar" -msgstr "Calendari d'Events" - -#: ../../include/nav.php:202 -msgid "See all events" -msgstr "Veure tots els esdeveniments" - -#: ../../include/nav.php:203 -msgid "Mark all events seen" -msgstr "Marcar tots els esdeveniments vistos" - -#: ../../include/nav.php:206 -msgid "Manage Your Channels" -msgstr "Gestiona els Teus Canals" - -#: ../../include/nav.php:208 -msgid "Account/Channel Settings" -msgstr "Ajustos de Compte/Canal" - -#: ../../include/nav.php:216 -msgid "Site Setup and Configuration" -msgstr "Ajustos i Configuració del Lloc" - -#: ../../include/nav.php:247 ../../include/conversation.php:851 -msgid "Loading..." -msgstr "Carregant..." - -#: ../../include/nav.php:252 -msgid "@name, #tag, ?doc, content" -msgstr "@nom, #etiqueta, ?doc, contingut" - -#: ../../include/nav.php:253 -msgid "Please wait..." -msgstr "Si us plau, espera......." +#: ../../include/channel.php:1292 +msgid "Like this thing" +msgstr "M'agrada això" #: ../../include/connections.php:95 msgid "New window" @@ -7763,52 +7609,6 @@ msgstr "Obrir la localització seleccionada en un altre finestra o pestanya del msgid "User '%s' deleted" msgstr "usuari '%s' esborrat" -#: ../../include/contact_widgets.php:11 -#, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "%d invitació disponible" -msgstr[1] "%d invitacions disponibles" - -#: ../../include/contact_widgets.php:19 -msgid "Find Channels" -msgstr "Troba Canals" - -#: ../../include/contact_widgets.php:20 -msgid "Enter name or interest" -msgstr "Entra un nom o interes" - -#: ../../include/contact_widgets.php:21 -msgid "Connect/Follow" -msgstr "Conecta/Segueix" - -#: ../../include/contact_widgets.php:22 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "Exemples: Lionel Messi, Futbolista" - -#: ../../include/contact_widgets.php:26 -msgid "Random Profile" -msgstr "Perfil Aleatori" - -#: ../../include/contact_widgets.php:27 -msgid "Invite Friends" -msgstr "Convida Amics" - -#: ../../include/contact_widgets.php:29 -msgid "Advanced example: name=fred and country=iceland" -msgstr "Exemple avançat: nom=pep i pais=eire" - -#: ../../include/contact_widgets.php:122 -#, php-format -msgid "%d connection in common" -msgid_plural "%d connections in common" -msgstr[0] "%d connexió en comú" -msgstr[1] "%d connexions en comú" - -#: ../../include/contact_widgets.php:127 -msgid "show more" -msgstr "mostrar més" - #: ../../include/conversation.php:204 #, php-format msgid "%1$s is now connected with %2$s" @@ -7819,258 +7619,269 @@ msgstr "%1$s esta ara connectat amb %2$s" msgid "%1$s poked %2$s" msgstr "%1$s a esperonat %2$s" -#: ../../include/conversation.php:691 +#: ../../include/conversation.php:243 ../../include/text.php:1013 +#: ../../include/text.php:1018 +msgid "poked" +msgstr "esperonat" + +#: ../../include/conversation.php:694 #, php-format msgid "View %s's profile @ %s" msgstr "Vista %s del perfil @ %s" -#: ../../include/conversation.php:710 +#: ../../include/conversation.php:713 msgid "Categories:" msgstr "Categories:" -#: ../../include/conversation.php:711 +#: ../../include/conversation.php:714 msgid "Filed under:" msgstr "Arxivar a:" -#: ../../include/conversation.php:738 +#: ../../include/conversation.php:741 msgid "View in context" msgstr "Veure en context" -#: ../../include/conversation.php:847 +#: ../../include/conversation.php:850 msgid "remove" msgstr "treu" -#: ../../include/conversation.php:852 +#: ../../include/conversation.php:855 msgid "Delete Selected Items" msgstr "Esborra els Articles Seleccionats" -#: ../../include/conversation.php:948 +#: ../../include/conversation.php:951 msgid "View Source" msgstr "Veure l'Origen" -#: ../../include/conversation.php:949 +#: ../../include/conversation.php:952 msgid "Follow Thread" msgstr "Segueix el Fil" -#: ../../include/conversation.php:950 +#: ../../include/conversation.php:953 msgid "Unfollow Thread" msgstr "Fil Abandonat" -#: ../../include/conversation.php:955 +#: ../../include/conversation.php:958 msgid "Activity/Posts" msgstr "Activitat/Entrades" -#: ../../include/conversation.php:957 +#: ../../include/conversation.php:960 msgid "Edit Connection" msgstr "Modifica la Connexió" -#: ../../include/conversation.php:958 +#: ../../include/conversation.php:961 msgid "Message" msgstr "Missatge" -#: ../../include/conversation.php:1075 +#: ../../include/conversation.php:1078 #, php-format msgid "%s likes this." msgstr "%s agrada això." -#: ../../include/conversation.php:1075 +#: ../../include/conversation.php:1078 #, php-format msgid "%s doesn't like this." msgstr "%s no agrada això." -#: ../../include/conversation.php:1079 +#: ../../include/conversation.php:1082 #, php-format msgid "%2$d people like this." msgid_plural "%2$d people like this." msgstr[0] "%2$d gent agrada això." msgstr[1] "%2$d gent agrada això." -#: ../../include/conversation.php:1081 +#: ../../include/conversation.php:1084 #, php-format msgid "%2$d people don't like this." msgid_plural "%2$d people don't like this." msgstr[0] "%2$d gent no agrada això." msgstr[1] "%2$d gent no agrada això." -#: ../../include/conversation.php:1087 +#: ../../include/conversation.php:1090 msgid "and" msgstr "i" -#: ../../include/conversation.php:1090 +#: ../../include/conversation.php:1093 #, php-format msgid ", and %d other people" msgid_plural ", and %d other people" msgstr[0] ", i %d altra gent" msgstr[1] ", i %d altra gent" -#: ../../include/conversation.php:1091 +#: ../../include/conversation.php:1094 #, php-format msgid "%s like this." msgstr "%s agrada això." -#: ../../include/conversation.php:1091 +#: ../../include/conversation.php:1094 #, php-format msgid "%s don't like this." msgstr "%s no agrada això." -#: ../../include/conversation.php:1130 +#: ../../include/conversation.php:1133 msgid "Set your location" msgstr "Ajusta la teva ubicació" -#: ../../include/conversation.php:1131 +#: ../../include/conversation.php:1134 msgid "Clear browser location" msgstr "Treu la localització del navegador" -#: ../../include/conversation.php:1177 +#: ../../include/conversation.php:1182 msgid "Tag term:" msgstr "Paraula de l'Etiqueta:" -#: ../../include/conversation.php:1178 +#: ../../include/conversation.php:1183 msgid "Where are you right now?" msgstr "On ets ara?" -#: ../../include/conversation.php:1210 +#: ../../include/conversation.php:1221 msgid "Page link name" msgstr "Nom de la pàgina enllaçada" -#: ../../include/conversation.php:1213 +#: ../../include/conversation.php:1224 msgid "Post as" msgstr "Envia com" -#: ../../include/conversation.php:1223 +#: ../../include/conversation.php:1238 msgid "Toggle voting" msgstr "Commutar votació" -#: ../../include/conversation.php:1231 +#: ../../include/conversation.php:1246 msgid "Categories (optional, comma-separated list)" msgstr "Categories (opcional, llista separada per comes)" -#: ../../include/conversation.php:1254 +#: ../../include/conversation.php:1269 msgid "Set publish date" msgstr "Ajusta la data de publicació" -#: ../../include/conversation.php:1258 -msgid "OK" -msgstr "OK" - -#: ../../include/conversation.php:1503 +#: ../../include/conversation.php:1518 msgid "Discover" msgstr "Descobrir" -#: ../../include/conversation.php:1506 +#: ../../include/conversation.php:1521 msgid "Imported public streams" msgstr "Importar fluxos públics" -#: ../../include/conversation.php:1511 +#: ../../include/conversation.php:1526 msgid "Commented Order" msgstr "Ordenar per Comentaris" -#: ../../include/conversation.php:1514 +#: ../../include/conversation.php:1529 msgid "Sort by Comment Date" msgstr "Ordenar per Data del Comentari" -#: ../../include/conversation.php:1518 +#: ../../include/conversation.php:1533 msgid "Posted Order" msgstr "Ordenar per Entrades" -#: ../../include/conversation.php:1521 +#: ../../include/conversation.php:1536 msgid "Sort by Post Date" msgstr "Ordenar per Data d' Entrada" -#: ../../include/conversation.php:1529 +#: ../../include/conversation.php:1544 msgid "Posts that mention or involve you" msgstr "Entrades que et mencionen o involucren" -#: ../../include/conversation.php:1538 +#: ../../include/conversation.php:1553 msgid "Activity Stream - by date" msgstr "Activitat del Flux - per data" -#: ../../include/conversation.php:1544 +#: ../../include/conversation.php:1559 msgid "Starred" msgstr "Preferit" -#: ../../include/conversation.php:1547 +#: ../../include/conversation.php:1562 msgid "Favourite Posts" msgstr "Entrades Favorites" -#: ../../include/conversation.php:1554 +#: ../../include/conversation.php:1569 msgid "Spam" msgstr "Spam" -#: ../../include/conversation.php:1557 +#: ../../include/conversation.php:1572 msgid "Posts flagged as SPAM" msgstr "Entrades marcades com a SPAM" -#: ../../include/conversation.php:1614 +#: ../../include/conversation.php:1629 msgid "Status Messages and Posts" msgstr "Estat dels Missatges i Entrades" -#: ../../include/conversation.php:1623 +#: ../../include/conversation.php:1638 msgid "About" msgstr "El Meu Perfil" -#: ../../include/conversation.php:1626 +#: ../../include/conversation.php:1641 msgid "Profile Details" msgstr "Detalls del Perfil" -#: ../../include/conversation.php:1635 ../../include/photos.php:502 -msgid "Photo Albums" -msgstr "Albums de Fotos" - -#: ../../include/conversation.php:1642 +#: ../../include/conversation.php:1657 msgid "Files and Storage" msgstr "Arxius i Emmagatzegament" -#: ../../include/conversation.php:1678 +#: ../../include/conversation.php:1677 ../../include/conversation.php:1680 +#: ../../include/widgets.php:836 +msgid "Chatrooms" +msgstr "Sala per Xerrar" + +#: ../../include/conversation.php:1693 msgid "Saved Bookmarks" msgstr "Marcadors Guardats" -#: ../../include/conversation.php:1688 +#: ../../include/conversation.php:1703 msgid "Manage Webpages" msgstr "Gestió de Pàgines Web" -#: ../../include/conversation.php:1747 +#: ../../include/conversation.php:1768 msgctxt "noun" msgid "Attending" msgid_plural "Attending" msgstr[0] "Assistint" msgstr[1] "Assistint" -#: ../../include/conversation.php:1750 +#: ../../include/conversation.php:1771 msgctxt "noun" msgid "Not Attending" msgid_plural "Not Attending" msgstr[0] "Desassistint" msgstr[1] "Desassistint" -#: ../../include/conversation.php:1753 +#: ../../include/conversation.php:1774 msgctxt "noun" msgid "Undecided" msgid_plural "Undecided" msgstr[0] "Indecís" msgstr[1] "Indecisos" -#: ../../include/conversation.php:1756 +#: ../../include/conversation.php:1777 msgctxt "noun" msgid "Agree" msgid_plural "Agrees" msgstr[0] "Acord" msgstr[1] "Acords" -#: ../../include/conversation.php:1759 +#: ../../include/conversation.php:1780 msgctxt "noun" msgid "Disagree" msgid_plural "Disagrees" msgstr[0] "Desacord" msgstr[1] "Desacords" -#: ../../include/conversation.php:1762 +#: ../../include/conversation.php:1783 msgctxt "noun" msgid "Abstain" msgid_plural "Abstains" msgstr[0] "Abstenirse" msgstr[1] "Abstenirse" +#: ../../include/import.php:30 +msgid "" +"Cannot create a duplicate channel identifier on this system. Import failed." +msgstr "No s'ha pogut importar el canal perquè l'identificador del canal no s'ha pogut duplicar en aquest servidor." + +#: ../../include/import.php:97 +msgid "Channel clone failed. Import failed." +msgstr "No s'ha pogut importar el canal perquè el canal no s'ha pogut clonar." + #: ../../include/selectors.php:30 msgid "Frequently" msgstr "Freqüentment" @@ -8135,12 +7946,6 @@ msgstr "Neutre" msgid "Non-specific" msgstr "Indefinit" -#: ../../include/selectors.php:49 ../../include/selectors.php:66 -#: ../../include/selectors.php:104 ../../include/selectors.php:140 -#: ../../include/permissions.php:881 -msgid "Other" -msgstr "Altres" - #: ../../include/selectors.php:49 msgid "Undecided" msgstr "Indecís" @@ -8317,361 +8122,366 @@ msgstr "No Et Fa Res" msgid "Ask me" msgstr "Pregunta" -#: ../../include/PermissionDescription.php:31 -#: ../../include/acl_selectors.php:232 -msgid "Visible to your default audience" -msgstr "Visible per a la teva audiència " - -#: ../../include/PermissionDescription.php:115 -#: ../../include/acl_selectors.php:268 -msgid "Only me" -msgstr "Només jo" - -#: ../../include/PermissionDescription.php:116 -msgid "Public" -msgstr "Públic" - -#: ../../include/PermissionDescription.php:117 -msgid "Anybody in the $Projectname network" -msgstr "Ningú a la xarxa $Projectname" - -#: ../../include/PermissionDescription.php:118 +#: ../../include/bookmarks.php:35 #, php-format -msgid "Any account on %s" -msgstr "Qualsevol compte a %s" +msgid "%1$s's bookmarks" +msgstr "%1$s de marcadors" -#: ../../include/PermissionDescription.php:119 -msgid "Any of my connections" -msgstr "Qualsevol de les meves connexions" +#: ../../include/security.php:109 +msgid "guest:" +msgstr "" -#: ../../include/PermissionDescription.php:120 -msgid "Only connections I specifically allow" -msgstr "Només les connexions que permeto específicament" - -#: ../../include/PermissionDescription.php:121 -msgid "Anybody authenticated (could include visitors from other networks)" -msgstr "Qualsevol persona autenticada (podria incloure als usuaris d'altres xarxes)" - -#: ../../include/PermissionDescription.php:122 -msgid "Any connections including those who haven't yet been approved" -msgstr "Qualsevol connexió incloent aquells que encara no han estat aprovats" - -#: ../../include/PermissionDescription.php:161 +#: ../../include/security.php:427 msgid "" -"This is your default setting for the audience of your normal stream, and " -"posts." -msgstr "Aquest és l'ajust per defecte per al públic del seu flux normal i entrades." +"The form security token was not correct. This probably happened because the " +"form has been opened for too long (>3 hours) before submitting it." +msgstr "El formulario de la cadena de seguridad no era correcto. Esto probablemente ocurrió porque el formulario se ha abierto durante demasiado tiempo (> 3 horas) antes de enviarlo." -#: ../../include/PermissionDescription.php:162 +#: ../../include/text.php:404 +msgid "prev" +msgstr "prev" + +#: ../../include/text.php:406 +msgid "first" +msgstr "primer" + +#: ../../include/text.php:435 +msgid "last" +msgstr "últim" + +#: ../../include/text.php:438 +msgid "next" +msgstr "pròxim" + +#: ../../include/text.php:448 +msgid "older" +msgstr "el més antic" + +#: ../../include/text.php:450 +msgid "newer" +msgstr "El més nou" + +#: ../../include/text.php:843 +msgid "No connections" +msgstr "Sense Connexions" + +#: ../../include/text.php:868 +#, php-format +msgid "View all %s connections" +msgstr "Veure totes les connexions de %s" + +#: ../../include/text.php:1013 ../../include/text.php:1018 +msgid "poke" +msgstr "esperona" + +#: ../../include/text.php:1019 +msgid "ping" +msgstr "coloca" + +#: ../../include/text.php:1019 +msgid "pinged" +msgstr "colocat" + +#: ../../include/text.php:1020 +msgid "prod" +msgstr "picar" + +#: ../../include/text.php:1020 +msgid "prodded" +msgstr "picat" + +#: ../../include/text.php:1021 +msgid "slap" +msgstr "bufetada" + +#: ../../include/text.php:1021 +msgid "slapped" +msgstr "bufetejat" + +#: ../../include/text.php:1022 +msgid "finger" +msgstr "senyal" + +#: ../../include/text.php:1022 +msgid "fingered" +msgstr "senyalat" + +#: ../../include/text.php:1023 +msgid "rebuff" +msgstr "menyspreu" + +#: ../../include/text.php:1023 +msgid "rebuffed" +msgstr "menyspreuat" + +#: ../../include/text.php:1035 +msgid "happy" +msgstr "feliç" + +#: ../../include/text.php:1036 +msgid "sad" +msgstr "trist" + +#: ../../include/text.php:1037 +msgid "mellow" +msgstr "melós" + +#: ../../include/text.php:1038 +msgid "tired" +msgstr "cansat" + +#: ../../include/text.php:1039 +msgid "perky" +msgstr "turgent" + +#: ../../include/text.php:1040 +msgid "angry" +msgstr "enfadat" + +#: ../../include/text.php:1041 +msgid "stupefied" +msgstr "estupefacte" + +#: ../../include/text.php:1042 +msgid "puzzled" +msgstr "perplexe" + +#: ../../include/text.php:1043 +msgid "interested" +msgstr "Interessat" + +#: ../../include/text.php:1044 +msgid "bitter" +msgstr "amargat" + +#: ../../include/text.php:1045 +msgid "cheerful" +msgstr "feliç" + +#: ../../include/text.php:1046 +msgid "alive" +msgstr "viu" + +#: ../../include/text.php:1047 +msgid "annoyed" +msgstr "molest" + +#: ../../include/text.php:1048 +msgid "anxious" +msgstr "ansiós" + +#: ../../include/text.php:1049 +msgid "cranky" +msgstr "malagaitós" + +#: ../../include/text.php:1050 +msgid "disturbed" +msgstr "transtornat" + +#: ../../include/text.php:1051 +msgid "frustrated" +msgstr "frustrat" + +#: ../../include/text.php:1052 +msgid "depressed" +msgstr "deprimit" + +#: ../../include/text.php:1053 +msgid "motivated" +msgstr "motivat" + +#: ../../include/text.php:1054 +msgid "relaxed" +msgstr "relaxat" + +#: ../../include/text.php:1055 +msgid "surprised" +msgstr "sorprès" + +#: ../../include/text.php:1237 ../../include/js_strings.php:70 +msgid "Monday" +msgstr "Dilluns" + +#: ../../include/text.php:1237 ../../include/js_strings.php:71 +msgid "Tuesday" +msgstr "Dimarts" + +#: ../../include/text.php:1237 ../../include/js_strings.php:72 +msgid "Wednesday" +msgstr "Dimecres" + +#: ../../include/text.php:1237 ../../include/js_strings.php:73 +msgid "Thursday" +msgstr "Dijous" + +#: ../../include/text.php:1237 ../../include/js_strings.php:74 +msgid "Friday" +msgstr "Divendres" + +#: ../../include/text.php:1237 ../../include/js_strings.php:75 +msgid "Saturday" +msgstr "Dissabte" + +#: ../../include/text.php:1237 ../../include/js_strings.php:69 +msgid "Sunday" +msgstr "Diumenge" + +#: ../../include/text.php:1241 ../../include/js_strings.php:45 +msgid "January" +msgstr "Gener" + +#: ../../include/text.php:1241 ../../include/js_strings.php:46 +msgid "February" +msgstr "Febrer" + +#: ../../include/text.php:1241 ../../include/js_strings.php:47 +msgid "March" +msgstr "Març" + +#: ../../include/text.php:1241 ../../include/js_strings.php:48 +msgid "April" +msgstr "Abril" + +#: ../../include/text.php:1241 +msgid "May" +msgstr "Maig" + +#: ../../include/text.php:1241 ../../include/js_strings.php:50 +msgid "June" +msgstr "Juny" + +#: ../../include/text.php:1241 ../../include/js_strings.php:51 +msgid "July" +msgstr "Juliol" + +#: ../../include/text.php:1241 ../../include/js_strings.php:52 +msgid "August" +msgstr "Agost" + +#: ../../include/text.php:1241 ../../include/js_strings.php:53 +msgid "September" +msgstr "Setembre" + +#: ../../include/text.php:1241 ../../include/js_strings.php:54 +msgid "October" +msgstr "Octubre" + +#: ../../include/text.php:1241 ../../include/js_strings.php:55 +msgid "November" +msgstr "Novembre" + +#: ../../include/text.php:1241 ../../include/js_strings.php:56 +msgid "December" +msgstr "Desembre" + +#: ../../include/text.php:1318 ../../include/text.php:1322 +msgid "Unknown Attachment" +msgstr "Adjunt Desconegut" + +#: ../../include/text.php:1324 +msgid "unknown" +msgstr "desconegut" + +#: ../../include/text.php:1360 +msgid "remove category" +msgstr "elimina categoria" + +#: ../../include/text.php:1437 +msgid "remove from file" +msgstr "elimina del arxiu" + +#: ../../include/text.php:1734 ../../include/text.php:1805 +msgid "default" +msgstr "per defecte" + +#: ../../include/text.php:1742 +msgid "Page layout" +msgstr "Format de la pàgina" + +#: ../../include/text.php:1742 +msgid "You can create your own with the layouts tool" +msgstr "Pots crear el teu propi amb l'editor de format de pàgina." + +#: ../../include/text.php:1784 +msgid "Page content type" +msgstr "Tipus de contingut de la pàgina" + +#: ../../include/text.php:1817 +msgid "Select an alternate language" +msgstr "Tria un idioma alternatiu" + +#: ../../include/text.php:1934 +msgid "activity" +msgstr "activitat" + +#: ../../include/text.php:2235 +msgid "Design Tools" +msgstr "Eines de disseny" + +#: ../../include/text.php:2241 +msgid "Pages" +msgstr "Pàgines" + +#: ../../include/auth.php:147 +msgid "Logged out." +msgstr "Sortir." + +#: ../../include/auth.php:274 +msgid "Failed authentication" +msgstr "Autenticació fallida" + +#: ../../include/permissions.php:26 +msgid "Can view my normal stream and posts" +msgstr "Pot veure el flux i entrades normals" + +#: ../../include/permissions.php:30 +msgid "Can view my webpages" +msgstr "Pot veure les meves pàgines web" + +#: ../../include/permissions.php:34 +msgid "Can post on my channel page (\"wall\")" +msgstr "Pot fer entrades a la meva pàgina de canal (\"mur\")" + +#: ../../include/permissions.php:37 +msgid "Can like/dislike stuff" +msgstr "Pot dir si agrada/desagrada " + +#: ../../include/permissions.php:37 +msgid "Profiles and things other than posts/comments" +msgstr "Perfils i altres coses a més d'entrades/comentaris" + +#: ../../include/permissions.php:39 +msgid "Can forward to all my channel contacts via post @mentions" +msgstr "Ho pot enviar a tots els meus contactes del canal via entrades @mencions" + +#: ../../include/permissions.php:39 +msgid "Advanced - useful for creating group forum channels" +msgstr "Avançat - capaç de crear canals de grups de foro" + +#: ../../include/permissions.php:40 +msgid "Can chat with me (when available)" +msgstr "Pot xatejar amb mi (si estic disponible)" + +#: ../../include/permissions.php:41 +msgid "Can write to my file storage and photos" +msgstr "Pot escriure al meu magatzem d'arxius i fotos" + +#: ../../include/permissions.php:42 +msgid "Can edit my webpages" +msgstr "Pot editar les meves pàgines web" + +#: ../../include/permissions.php:44 +msgid "Somewhat advanced - very useful in open communities" +msgstr "Quelcom avançat - molt útil en comunitats obertes" + +#: ../../include/permissions.php:46 +msgid "Can administer my channel resources" +msgstr "Pot administrar els meus recursos del canal" + +#: ../../include/permissions.php:46 msgid "" -"This is your default setting for who can view your default channel profile" -msgstr "Aquesta és la configuració per defecte per a qui pugui veure el teu perfil per defecte del canal" - -#: ../../include/PermissionDescription.php:163 -msgid "This is your default setting for who can view your connections" -msgstr "Aquesta és la configuració per defecte per a qui pugui veure les teves connexions" - -#: ../../include/PermissionDescription.php:164 -msgid "" -"This is your default setting for who can view your file storage and photos" -msgstr "Aquesta és la configuració per defecte per a qui pugui veure els teus arxius i fotos" - -#: ../../include/PermissionDescription.php:165 -msgid "This is your default setting for the audience of your webpages" -msgstr "Aquests son els ajustos per defecte de l'audiència de les teves pàgines web" - -#: ../../include/account.php:28 -msgid "Not a valid email address" -msgstr "Adreça de correu electrònic no vàlida" - -#: ../../include/account.php:30 -msgid "Your email domain is not among those allowed on this site" -msgstr "El seu domini de correu electrònic no es troba entre els permesos en aquest lloc" - -#: ../../include/account.php:36 -msgid "Your email address is already registered at this site." -msgstr "La teva adreça de correu electrònic ja esta registrada en aquest lloc" - -#: ../../include/account.php:68 -msgid "An invitation is required." -msgstr "Es requereix Invitació" - -#: ../../include/account.php:72 -msgid "Invitation could not be verified." -msgstr "L'invitació no ha pogut ser verificada" - -#: ../../include/account.php:122 -msgid "Please enter the required information." -msgstr "Entra la informació sol·licitada" - -#: ../../include/account.php:189 -msgid "Failed to store account information." -msgstr "Ha fallat guardar la informació del compte" - -#: ../../include/account.php:249 -#, php-format -msgid "Registration confirmation for %s" -msgstr "Registre confirmat per %s" - -#: ../../include/account.php:315 -#, php-format -msgid "Registration request at %s" -msgstr "Sol·licitud de registre a %s" - -#: ../../include/account.php:317 ../../include/account.php:344 -#: ../../include/account.php:404 ../../include/network.php:1871 -msgid "Administrator" -msgstr "Administrador" - -#: ../../include/account.php:339 -msgid "your registration password" -msgstr "la teva contrasenya registrada" - -#: ../../include/account.php:342 ../../include/account.php:402 -#, php-format -msgid "Registration details for %s" -msgstr "Detalls del registre per %s" - -#: ../../include/account.php:414 -msgid "Account approved." -msgstr "Compte aprovat." - -#: ../../include/account.php:454 -#, php-format -msgid "Registration revoked for %s" -msgstr "Registre revocat per %s" - -#: ../../include/account.php:506 -msgid "Account verified. Please login." -msgstr "Compte verificat. Si us plau, inicia sessió." - -#: ../../include/account.php:723 ../../include/account.php:725 -msgid "Click here to upgrade." -msgstr "Feu clic aquí per actualitzar." - -#: ../../include/account.php:731 -msgid "This action exceeds the limits set by your subscription plan." -msgstr "Aquesta acció és superior als límits establerts pel seu pla de subscripció." - -#: ../../include/account.php:736 -msgid "This action is not available under your subscription plan." -msgstr "Aquesta acció no està disponible en el seu pla de subscripció." - -#: ../../include/attach.php:247 ../../include/attach.php:333 -msgid "Item was not found." -msgstr "Article no trobat." - -#: ../../include/attach.php:497 -msgid "No source file." -msgstr "No hi ha arxiu d'origen." - -#: ../../include/attach.php:519 -msgid "Cannot locate file to replace" -msgstr "No trobo l'arxiu a reemplaçar" - -#: ../../include/attach.php:537 -msgid "Cannot locate file to revise/update" -msgstr "No trobo l'arxiu a revisar/actualitzar" - -#: ../../include/attach.php:672 -#, php-format -msgid "File exceeds size limit of %d" -msgstr "L'arxiu excedeix la mida limit de %d" - -#: ../../include/attach.php:686 -#, php-format -msgid "You have reached your limit of %1$.0f Mbytes attachment storage." -msgstr "Has arribat al teu límit de %1$.0f Mbytes de emagatzematge d'adjunts." - -#: ../../include/attach.php:842 -msgid "File upload failed. Possible system limit or action terminated." -msgstr "Pujada del arxiu fallida. Possible límit del sistema o acció interrompuda." - -#: ../../include/attach.php:855 -msgid "Stored file could not be verified. Upload failed." -msgstr "L'arxiu guardat no es pot verificar. Pujada fallida." - -#: ../../include/attach.php:909 ../../include/attach.php:925 -msgid "Path not available." -msgstr "Trajectòria no disponible" - -#: ../../include/attach.php:971 ../../include/attach.php:1123 -msgid "Empty pathname" -msgstr "Trajèctoria vuida." - -#: ../../include/attach.php:997 -msgid "duplicate filename or path" -msgstr "Nom o trajectòria duplicat" - -#: ../../include/attach.php:1019 -msgid "Path not found." -msgstr "Trajectòria no trobada." - -#: ../../include/attach.php:1077 -msgid "mkdir failed." -msgstr "mkdir va fracassar." - -#: ../../include/attach.php:1081 -msgid "database storage failed." -msgstr "Arxiu de base de dades va fallar." - -#: ../../include/attach.php:1129 -msgid "Empty path" -msgstr "Trajèctoria vuida" - -#: ../../include/channel.php:32 -msgid "Unable to obtain identity information from database" -msgstr "Incapaç de trobar l'informació d'identitat a la base de dades" - -#: ../../include/channel.php:66 -msgid "Empty name" -msgstr "Nom buit" - -#: ../../include/channel.php:69 -msgid "Name too long" -msgstr "Nom massa llarg" - -#: ../../include/channel.php:180 -msgid "No account identifier" -msgstr "Sense identificador de compte" - -#: ../../include/channel.php:192 -msgid "Nickname is required." -msgstr "Alies/malnom es requerit." - -#: ../../include/channel.php:206 -msgid "Reserved nickname. Please choose another." -msgstr "Àlies reservat. Tria un altre." - -#: ../../include/channel.php:211 -msgid "" -"Nickname has unsupported characters or is already being used on this site." -msgstr "L'álies te caracters no soportats o ja esta en ús en aquest lloc" - -#: ../../include/channel.php:287 -msgid "Unable to retrieve created identity" -msgstr "No es pot recuperar la identitat creada" - -#: ../../include/channel.php:345 -msgid "Default Profile" -msgstr "Perfil per Defecte" - -#: ../../include/channel.php:791 -msgid "Requested channel is not available." -msgstr "El canal demanat no està disponible." - -#: ../../include/channel.php:938 -msgid "Create New Profile" -msgstr "Crear un Perfil Nou" - -#: ../../include/channel.php:958 -msgid "Visible to everybody" -msgstr "Visible per tothom" - -#: ../../include/channel.php:1031 ../../include/channel.php:1142 -msgid "Gender:" -msgstr "Gènere:" - -#: ../../include/channel.php:1032 ../../include/channel.php:1186 -msgid "Status:" -msgstr "Estatus:" - -#: ../../include/channel.php:1033 ../../include/channel.php:1197 -msgid "Homepage:" -msgstr "Pàgina Personal:" - -#: ../../include/channel.php:1034 -msgid "Online Now" -msgstr "Ara en Linia" - -#: ../../include/channel.php:1147 -msgid "Like this channel" -msgstr "M'agrada aquest canal" - -#: ../../include/channel.php:1171 -msgid "j F, Y" -msgstr "j F, Y" - -#: ../../include/channel.php:1172 -msgid "j F" -msgstr "j F" - -#: ../../include/channel.php:1179 -msgid "Birthday:" -msgstr "Aniversari:" - -#: ../../include/channel.php:1192 -#, php-format -msgid "for %1$d %2$s" -msgstr "per %1$d %2$s" - -#: ../../include/channel.php:1195 -msgid "Sexual Preference:" -msgstr "Preferència Sexual:" - -#: ../../include/channel.php:1201 -msgid "Tags:" -msgstr "Etiquetes:" - -#: ../../include/channel.php:1203 -msgid "Political Views:" -msgstr "Idees Polítiques:" - -#: ../../include/channel.php:1205 -msgid "Religion:" -msgstr "Religió:" - -#: ../../include/channel.php:1209 -msgid "Hobbies/Interests:" -msgstr "Aficions/Interessos:" - -#: ../../include/channel.php:1211 -msgid "Likes:" -msgstr "Agrada:" - -#: ../../include/channel.php:1213 -msgid "Dislikes:" -msgstr "Desagrada:" - -#: ../../include/channel.php:1215 -msgid "Contact information and Social Networks:" -msgstr "Informació de contacte i Xarxes Socials:" - -#: ../../include/channel.php:1217 -msgid "My other channels:" -msgstr "Els meus altres canals:" - -#: ../../include/channel.php:1219 -msgid "Musical interests:" -msgstr "Interessos Musicals:" - -#: ../../include/channel.php:1221 -msgid "Books, literature:" -msgstr "Llibres, literatura:" - -#: ../../include/channel.php:1223 -msgid "Television:" -msgstr "Televisió:" - -#: ../../include/channel.php:1225 -msgid "Film/dance/culture/entertainment:" -msgstr "Películes/Dança/Cultura/Entreteniment:" - -#: ../../include/channel.php:1227 -msgid "Love/Romance:" -msgstr "Amor/Romace:" - -#: ../../include/channel.php:1229 -msgid "Work/employment:" -msgstr "Treball/feina:" - -#: ../../include/channel.php:1231 -msgid "School/education:" -msgstr "Escola/educació:" - -#: ../../include/channel.php:1251 -msgid "Like this thing" -msgstr "M'agrada això" +"Extremely advanced. Leave this alone unless you know what you are doing" +msgstr "Extremadament avançat. No toquis res si no saps que estàs fent" #: ../../include/features.php:48 msgid "General Features" @@ -8718,378 +8528,257 @@ msgid "Provide managed web pages on your channel" msgstr "Proporcionar pàgines web gestionades al seu canal" #: ../../include/features.php:55 +msgid "Provide a wiki for your channel" +msgstr "" + +#: ../../include/features.php:56 msgid "Hide Rating" msgstr "Amaga la Valoració" -#: ../../include/features.php:55 +#: ../../include/features.php:56 msgid "" "Hide the rating buttons on your channel and profile pages. Note: People can " "still rate you somewhere else." msgstr "Amaga el botó de valoracions al teu canal i pàgines del perfil. Nota: Et poden continuar valorant en altres llocs." -#: ../../include/features.php:56 +#: ../../include/features.php:57 msgid "Private Notes" msgstr "Notes Privades" -#: ../../include/features.php:56 +#: ../../include/features.php:57 msgid "Enables a tool to store notes and reminders (note: not encrypted)" msgstr "Activa l'eina per guardar notes i recordatoris (nota:no està encriptat)" -#: ../../include/features.php:57 +#: ../../include/features.php:58 msgid "Navigation Channel Select" msgstr "Navegació pel Selector de Canals" -#: ../../include/features.php:57 +#: ../../include/features.php:58 msgid "Change channels directly from within the navigation dropdown menu" msgstr "Canvieu els canals directament des del menú desplegable de navegació" -#: ../../include/features.php:58 +#: ../../include/features.php:59 msgid "Photo Location" msgstr "Ubicació de la Foto" -#: ../../include/features.php:58 +#: ../../include/features.php:59 msgid "If location data is available on uploaded photos, link this to a map." msgstr "Si les dades d'ubicació estàn disponibles a les fotos pujades, vincular a un mapa." -#: ../../include/features.php:59 +#: ../../include/features.php:60 msgid "Access Controlled Chatrooms" msgstr "Accés Controlat a les Sales de Xat" -#: ../../include/features.php:59 +#: ../../include/features.php:60 msgid "Provide chatrooms and chat services with access control." msgstr "Proveeix sales de Xat i serveis de Xat amb control d'accés." -#: ../../include/features.php:60 +#: ../../include/features.php:61 msgid "Smart Birthdays" msgstr "Aniversaris Intel·ligents" -#: ../../include/features.php:60 +#: ../../include/features.php:61 msgid "" "Make birthday events timezone aware in case your friends are scattered " "across the planet." msgstr "Fes, conscients de la zona horària, els esdeveniments d'aniversari, en cas que els teus amics estiguin dispersos per tot el planeta." -#: ../../include/features.php:61 +#: ../../include/features.php:62 msgid "Expert Mode" msgstr "Manera Experta" -#: ../../include/features.php:61 +#: ../../include/features.php:62 msgid "Enable Expert Mode to provide advanced configuration options" msgstr "Activar Mode Expert per a proporcionar opcions avançades de configuració" -#: ../../include/features.php:62 +#: ../../include/features.php:63 msgid "Premium Channel" msgstr "Privilegis del Canal" -#: ../../include/features.php:62 +#: ../../include/features.php:63 msgid "" "Allows you to set restrictions and terms on those that connect with your " "channel" msgstr "Li permet establir restriccions i els termes en els quals es connecten amb el seu canal" -#: ../../include/features.php:67 +#: ../../include/features.php:68 msgid "Post Composition Features" msgstr "Característiques de Composició d'Entrades" -#: ../../include/features.php:70 +#: ../../include/features.php:71 msgid "Large Photos" msgstr "Grans Fotos" -#: ../../include/features.php:70 +#: ../../include/features.php:71 msgid "" "Include large (1024px) photo thumbnails in posts. If not enabled, use small " "(640px) photo thumbnails" msgstr "Inclou gran (1024px) foto de miniatura a les entrades. Si no està activat, empra petita (640px) foto de miniatura." -#: ../../include/features.php:71 +#: ../../include/features.php:72 msgid "Automatically import channel content from other channels or feeds" msgstr "Importa automàticament el contingut del canal des de altres canals o feeds" -#: ../../include/features.php:72 +#: ../../include/features.php:73 msgid "Even More Encryption" msgstr "Encara Més Encriptació" -#: ../../include/features.php:72 +#: ../../include/features.php:73 msgid "" "Allow optional encryption of content end-to-end with a shared secret key" msgstr "Permet l'encripció opcional del contingut extrem-a-extrem amb clau secreta compartida" -#: ../../include/features.php:73 +#: ../../include/features.php:74 msgid "Enable Voting Tools" msgstr "Habilitar Eines de Votació" -#: ../../include/features.php:73 +#: ../../include/features.php:74 msgid "Provide a class of post which others can vote on" msgstr "Proporcionar una classe d'entrada que altres puguin votar" -#: ../../include/features.php:74 +#: ../../include/features.php:75 msgid "Delayed Posting" msgstr "Retarda Publicació" -#: ../../include/features.php:74 +#: ../../include/features.php:75 msgid "Allow posts to be published at a later date" msgstr "Permet que les publicacions es publiquin en data posterior" -#: ../../include/features.php:75 +#: ../../include/features.php:76 msgid "Suppress Duplicate Posts/Comments" msgstr "Suprimeix Duplicats de Publicacions/Comentaris" -#: ../../include/features.php:75 +#: ../../include/features.php:76 msgid "" "Prevent posts with identical content to be published with less than two " "minutes in between submissions." msgstr "Evita que publicacions amb identic contingut siguin publicades amb menys de dos minuts entre entregues." -#: ../../include/features.php:81 +#: ../../include/features.php:82 msgid "Network and Stream Filtering" msgstr "Filtrat de Xarxa i Flux" -#: ../../include/features.php:82 +#: ../../include/features.php:83 msgid "Search by Date" msgstr "Cerca per Data" -#: ../../include/features.php:82 +#: ../../include/features.php:83 msgid "Ability to select posts by date ranges" msgstr "Capacitat per seleccionar entrades per rang de dates" -#: ../../include/features.php:83 ../../include/group.php:311 +#: ../../include/features.php:84 ../../include/group.php:311 msgid "Privacy Groups" msgstr "Grup Privat" -#: ../../include/features.php:83 +#: ../../include/features.php:84 msgid "Enable management and selection of privacy groups" msgstr "Habilita gestió i selecció de grups privats" -#: ../../include/features.php:84 +#: ../../include/features.php:85 ../../include/widgets.php:281 +msgid "Saved Searches" +msgstr "Cerques Guardades" + +#: ../../include/features.php:85 msgid "Save search terms for re-use" msgstr "Guardar els termin de la cerca per a re-usar" -#: ../../include/features.php:85 +#: ../../include/features.php:86 msgid "Network Personal Tab" msgstr "Pestanya Personal de Xarxa" -#: ../../include/features.php:85 +#: ../../include/features.php:86 msgid "Enable tab to display only Network posts that you've interacted on" msgstr "Activa la pestanya per mostrar només les entrades de xarxa en les que has intervingut" -#: ../../include/features.php:86 +#: ../../include/features.php:87 msgid "Network New Tab" msgstr "Pestanya Nou a la Xarxa" -#: ../../include/features.php:86 +#: ../../include/features.php:87 msgid "Enable tab to display all new Network activity" msgstr "Activa pestanya per mostrar tota l'activitat nova de la Xarxa" -#: ../../include/features.php:87 +#: ../../include/features.php:88 msgid "Affinity Tool" msgstr "Eina d'Afinitat" -#: ../../include/features.php:87 +#: ../../include/features.php:88 msgid "Filter stream activity by depth of relationships" msgstr "Filtre d'activitat del flux per importància de la relació" -#: ../../include/features.php:88 +#: ../../include/features.php:89 msgid "Connection Filtering" msgstr "Filtre de Connexió" -#: ../../include/features.php:88 +#: ../../include/features.php:89 msgid "Filter incoming posts from connections based on keywords/content" msgstr "Filtre de missatges d'entrada de conexions, basat en paraules clau/contingut " -#: ../../include/features.php:89 +#: ../../include/features.php:90 msgid "Show channel suggestions" msgstr "Mostra suggerencies de canals" -#: ../../include/features.php:94 +#: ../../include/features.php:95 msgid "Post/Comment Tools" msgstr "Eina d'Entrades/Comentaris" -#: ../../include/features.php:95 +#: ../../include/features.php:96 msgid "Community Tagging" msgstr "Etiquetat per la Comunitat" -#: ../../include/features.php:95 +#: ../../include/features.php:96 msgid "Ability to tag existing posts" msgstr "Capacitat d'etiquetar entrades existents" -#: ../../include/features.php:96 +#: ../../include/features.php:97 msgid "Post Categories" msgstr "Categories d'Entrades" -#: ../../include/features.php:96 +#: ../../include/features.php:97 msgid "Add categories to your posts" msgstr "Afegeix categoria a la teva entrada" -#: ../../include/features.php:97 +#: ../../include/features.php:98 msgid "Emoji Reactions" -msgstr "" - -#: ../../include/features.php:97 -msgid "Add emoji reaction ability to posts" -msgstr "" +msgstr "Reaccions dels Emoji" #: ../../include/features.php:98 +msgid "Add emoji reaction ability to posts" +msgstr "Afegeix un emoji habilitat per reaccionar a entrades" + +#: ../../include/features.php:99 ../../include/widgets.php:310 +#: ../../include/contact_widgets.php:53 +msgid "Saved Folders" +msgstr "Carpetes Guardades" + +#: ../../include/features.php:99 msgid "Ability to file posts under folders" msgstr "Capacitat de arxivar entrades en les carpetes" -#: ../../include/features.php:99 +#: ../../include/features.php:100 msgid "Dislike Posts" msgstr "No Agrada l'Entrada" -#: ../../include/features.php:99 +#: ../../include/features.php:100 msgid "Ability to dislike posts/comments" msgstr "Capacitat per marcar amb \"No Agrada\" les entrades/comentaris" -#: ../../include/features.php:100 +#: ../../include/features.php:101 msgid "Star Posts" msgstr "Entrades Excel·lents" -#: ../../include/features.php:100 +#: ../../include/features.php:101 msgid "Ability to mark special posts with a star indicator" msgstr "Capacitat per marcar entrades especials amb l'indicador d'excel·lencia" -#: ../../include/features.php:101 +#: ../../include/features.php:102 msgid "Tag Cloud" msgstr "Núvol d'Etiquetes." -#: ../../include/features.php:101 +#: ../../include/features.php:102 msgid "Provide a personal tag cloud on your channel page" msgstr "Proporcionar un núvol d'etiquetes personals a la teva pàgina de canal" -#: ../../include/oembed.php:324 -msgid "Embedded content" -msgstr "Contingut embegut" - -#: ../../include/oembed.php:333 -msgid "Embedding disabled" -msgstr "Incorporació desactivada" - -#: ../../include/acl_selectors.php:271 -msgid "Who can see this?" -msgstr "Qui pot veure això?" - -#: ../../include/acl_selectors.php:272 -msgid "Custom selection" -msgstr "Selecció a mida" - -#: ../../include/acl_selectors.php:273 -msgid "" -"Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit" -" the scope of \"Show\"." -msgstr "Selecciona \"Mostrar\" per permetre la visualització. \"No Mostrar\" et permet obviar i limitar l'abast de \"Mostrar\"." - -#: ../../include/acl_selectors.php:274 -msgid "Show" -msgstr "Mostra" - -#: ../../include/acl_selectors.php:275 -msgid "Don't show" -msgstr "No mostrar" - -#: ../../include/acl_selectors.php:281 -msgid "Other networks and post services" -msgstr "Altres xarxes i serveis de correu" - -#: ../../include/acl_selectors.php:311 -#, php-format -msgid "" -"Post permissions %s cannot be changed %s after a post is shared.
These" -" permissions set who is allowed to view the post." -msgstr "Els permisos d'entrada %s no poden esser canviats %s posteriorment a que una entrada ja està compartida.
Aquest ajust dels permisos indica qui pot veure l'entrada." - -#: ../../include/auth.php:105 -msgid "Logged out." -msgstr "Sortir." - -#: ../../include/auth.php:212 -msgid "Failed authentication" -msgstr "Autenticació fallida" - -#: ../../include/datetime.php:135 -msgid "Birthday" -msgstr "Aniversari" - -#: ../../include/datetime.php:137 -msgid "Age: " -msgstr "Edat:" - -#: ../../include/datetime.php:139 -msgid "YYYY-MM-DD or MM-DD" -msgstr "YYYY-MM-DD o MM-DD" - -#: ../../include/datetime.php:272 ../../boot.php:2470 -msgid "never" -msgstr "mai" - -#: ../../include/datetime.php:278 -msgid "less than a second ago" -msgstr "fa menys d'un segon" - -#: ../../include/datetime.php:296 -#, php-format -msgctxt "e.g. 22 hours ago, 1 minute ago" -msgid "%1$d %2$s ago" -msgstr "Fa %1$d %2$s" - -#: ../../include/datetime.php:307 -msgctxt "relative_date" -msgid "year" -msgid_plural "years" -msgstr[0] "any" -msgstr[1] "anys" - -#: ../../include/datetime.php:310 -msgctxt "relative_date" -msgid "month" -msgid_plural "months" -msgstr[0] "mes" -msgstr[1] "mesos " - -#: ../../include/datetime.php:313 -msgctxt "relative_date" -msgid "week" -msgid_plural "weeks" -msgstr[0] "setmana" -msgstr[1] "setmanes" - -#: ../../include/datetime.php:316 -msgctxt "relative_date" -msgid "day" -msgid_plural "days" -msgstr[0] "dia" -msgstr[1] "dies" - -#: ../../include/datetime.php:319 -msgctxt "relative_date" -msgid "hour" -msgid_plural "hours" -msgstr[0] "hora" -msgstr[1] "hores" - -#: ../../include/datetime.php:322 -msgctxt "relative_date" -msgid "minute" -msgid_plural "minutes" -msgstr[0] "minut" -msgstr[1] "minuts" - -#: ../../include/datetime.php:325 -msgctxt "relative_date" -msgid "second" -msgid_plural "seconds" -msgstr[0] "segon" -msgstr[1] "segons" - -#: ../../include/datetime.php:562 -#, php-format -msgid "%1$s's birthday" -msgstr "Aniversari de %1$s" - -#: ../../include/datetime.php:563 -#, php-format -msgid "Happy Birthday %1$s" -msgstr "Feliç Aniversari %1$s" - #: ../../include/group.php:26 msgid "" "A deleted group with this name was revived. Existing item permissions " @@ -9117,21 +8806,583 @@ msgstr "Afegir grup privat" msgid "Channels not in any privacy group" msgstr "Sense canals en grups privats" +#: ../../include/group.php:316 ../../include/widgets.php:282 +msgid "add" +msgstr "afegeix" + +#: ../../include/event.php:22 ../../include/event.php:69 +#: ../../include/bb2diaspora.php:485 +msgid "l F d, Y \\@ g:i A" +msgstr "l d \\d\\e/\\d' F de Y \\@ H:i T" + +#: ../../include/event.php:30 ../../include/event.php:73 +#: ../../include/bb2diaspora.php:491 +msgid "Starts:" +msgstr "Inicia:" + +#: ../../include/event.php:40 ../../include/event.php:77 +#: ../../include/bb2diaspora.php:499 +msgid "Finishes:" +msgstr "Acaba:" + +#: ../../include/event.php:814 +msgid "This event has been added to your calendar." +msgstr "Aquest succés ha estat afegit al teu calendari." + +#: ../../include/event.php:1014 +msgid "Not specified" +msgstr "Sense especificar" + +#: ../../include/event.php:1015 +msgid "Needs Action" +msgstr "Necessita una Acció" + +#: ../../include/event.php:1016 +msgid "Completed" +msgstr "Completat" + +#: ../../include/event.php:1017 +msgid "In Process" +msgstr "En Procès" + +#: ../../include/event.php:1018 +msgid "Cancelled" +msgstr "Cancel·lat" + +#: ../../include/account.php:28 +msgid "Not a valid email address" +msgstr "Adreça de correu electrònic no vàlida" + +#: ../../include/account.php:30 +msgid "Your email domain is not among those allowed on this site" +msgstr "El seu domini de correu electrònic no es troba entre els permesos en aquest lloc" + +#: ../../include/account.php:36 +msgid "Your email address is already registered at this site." +msgstr "La teva adreça de correu electrònic ja esta registrada en aquest lloc" + +#: ../../include/account.php:68 +msgid "An invitation is required." +msgstr "Es requereix Invitació" + +#: ../../include/account.php:72 +msgid "Invitation could not be verified." +msgstr "L'invitació no ha pogut ser verificada" + +#: ../../include/account.php:122 +msgid "Please enter the required information." +msgstr "Entra la informació sol·licitada" + +#: ../../include/account.php:189 +msgid "Failed to store account information." +msgstr "Ha fallat guardar la informació del compte" + +#: ../../include/account.php:249 +#, php-format +msgid "Registration confirmation for %s" +msgstr "Inscripció confirmada per %s" + +#: ../../include/account.php:315 +#, php-format +msgid "Registration request at %s" +msgstr "Sol·licitud d'inscripció a %s" + +#: ../../include/account.php:339 +msgid "your registration password" +msgstr "la teva contrasenya registrada" + +#: ../../include/account.php:342 ../../include/account.php:402 +#, php-format +msgid "Registration details for %s" +msgstr "Detalls de l'inscripció per %s" + +#: ../../include/account.php:414 +msgid "Account approved." +msgstr "Compte aprovat." + +#: ../../include/account.php:454 +#, php-format +msgid "Registration revoked for %s" +msgstr "Inscripció revocada per %s" + +#: ../../include/account.php:739 ../../include/account.php:741 +msgid "Click here to upgrade." +msgstr "Feu clic aquí per actualitzar." + +#: ../../include/account.php:747 +msgid "This action exceeds the limits set by your subscription plan." +msgstr "Aquesta acció és superior als límits establerts pel seu pla de subscripció." + +#: ../../include/account.php:752 +msgid "This action is not available under your subscription plan." +msgstr "Aquesta acció no està disponible en el seu pla de subscripció." + +#: ../../include/follow.php:27 +msgid "Channel is blocked on this site." +msgstr "El canal està bloquejat en aquest lloc." + +#: ../../include/follow.php:32 +msgid "Channel location missing." +msgstr "Ubicació del canal perduda." + +#: ../../include/follow.php:80 +msgid "Response from remote channel was incomplete." +msgstr "La resposta del canal remot fou incompleta." + +#: ../../include/follow.php:97 +msgid "Channel was deleted and no longer exists." +msgstr "El canal fou esborrat i actualment no existeix." + +#: ../../include/follow.php:147 ../../include/follow.php:183 +msgid "Protocol disabled." +msgstr "Protocol desactivat." + +#: ../../include/follow.php:171 +msgid "Channel discovery failed." +msgstr "Descobriment de canal fallit." + +#: ../../include/follow.php:210 +msgid "Cannot connect to yourself." +msgstr "No pots connectar amb tu mateix." + +#: ../../include/attach.php:247 ../../include/attach.php:333 +msgid "Item was not found." +msgstr "Article no trobat." + +#: ../../include/attach.php:499 +msgid "No source file." +msgstr "No hi ha arxiu d'origen." + +#: ../../include/attach.php:521 +msgid "Cannot locate file to replace" +msgstr "No trobo l'arxiu a reemplaçar" + +#: ../../include/attach.php:539 +msgid "Cannot locate file to revise/update" +msgstr "No trobo l'arxiu a revisar/actualitzar" + +#: ../../include/attach.php:674 +#, php-format +msgid "File exceeds size limit of %d" +msgstr "L'arxiu excedeix la mida limit de %d" + +#: ../../include/attach.php:688 +#, php-format +msgid "You have reached your limit of %1$.0f Mbytes attachment storage." +msgstr "Has arribat al teu límit de %1$.0f Mbytes de emagatzematge d'adjunts." + +#: ../../include/attach.php:846 +msgid "File upload failed. Possible system limit or action terminated." +msgstr "Pujada del arxiu fallida. Possible límit del sistema o acció interrompuda." + +#: ../../include/attach.php:859 +msgid "Stored file could not be verified. Upload failed." +msgstr "L'arxiu guardat no es pot verificar. Pujada fallida." + +#: ../../include/attach.php:915 ../../include/attach.php:931 +msgid "Path not available." +msgstr "Trajectòria no disponible" + +#: ../../include/attach.php:977 ../../include/attach.php:1129 +msgid "Empty pathname" +msgstr "Trajèctoria vuida." + +#: ../../include/attach.php:1003 +msgid "duplicate filename or path" +msgstr "Nom o trajectòria duplicat" + +#: ../../include/attach.php:1025 +msgid "Path not found." +msgstr "Trajectòria no trobada." + +#: ../../include/attach.php:1083 +msgid "mkdir failed." +msgstr "mkdir va fracassar." + +#: ../../include/attach.php:1087 +msgid "database storage failed." +msgstr "Arxiu de base de dades va fallar." + +#: ../../include/attach.php:1135 +msgid "Empty path" +msgstr "Trajèctoria vuida" + +#: ../../include/bbcode.php:123 ../../include/bbcode.php:878 +#: ../../include/bbcode.php:881 ../../include/bbcode.php:886 +#: ../../include/bbcode.php:889 ../../include/bbcode.php:892 +#: ../../include/bbcode.php:895 ../../include/bbcode.php:900 +#: ../../include/bbcode.php:903 ../../include/bbcode.php:908 +#: ../../include/bbcode.php:911 ../../include/bbcode.php:914 +#: ../../include/bbcode.php:917 +msgid "Image/photo" +msgstr "Imatge/foto" + +#: ../../include/bbcode.php:162 ../../include/bbcode.php:928 +msgid "Encrypted content" +msgstr "Contingut encriptat" + +#: ../../include/bbcode.php:178 +#, php-format +msgid "Install %s element: " +msgstr "Instal·la l'element %s:" + +#: ../../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 "Aquesta entrada contè un element %s instal·lable, potser manques de permissos per instal·lar-lo en aquest lloc." + +#: ../../include/bbcode.php:261 +#, php-format +msgid "%1$s wrote the following %2$s %3$s" +msgstr "%1$s va escriure el següent %2$s %3$s" + +#: ../../include/bbcode.php:338 ../../include/bbcode.php:346 +msgid "Click to open/close" +msgstr "Clic per obrir/tancar" + +#: ../../include/bbcode.php:346 +msgid "spoiler" +msgstr "xafa guitarres" + +#: ../../include/bbcode.php:619 +msgid "Different viewers will see this text differently" +msgstr "Diferents observadors veuran aquest text de diferents formes" + +#: ../../include/bbcode.php:866 +msgid "$1 wrote:" +msgstr "$1 va escriure:" + +#: ../../include/items.php:897 ../../include/items.php:942 +msgid "(Unknown)" +msgstr "(Desconegut)" + +#: ../../include/items.php:1141 +msgid "Visible to anybody on the internet." +msgstr "Visible per tothom a la Internet" + +#: ../../include/items.php:1143 +msgid "Visible to you only." +msgstr "Visible només per tú." + +#: ../../include/items.php:1145 +msgid "Visible to anybody in this network." +msgstr "Visible per tothom en aquesta xarxa." + +#: ../../include/items.php:1147 +msgid "Visible to anybody authenticated." +msgstr "Visible per tothom autenticat." + +#: ../../include/items.php:1149 +#, php-format +msgid "Visible to anybody on %s." +msgstr "Visible per a tothom a %s." + +#: ../../include/items.php:1151 +msgid "Visible to all connections." +msgstr "Visible per a totes les connexions." + +#: ../../include/items.php:1153 +msgid "Visible to approved connections." +msgstr "Visible per a les connexions aprovades." + +#: ../../include/items.php:1155 +msgid "Visible to specific connections." +msgstr "Visible per a específiques connexions." + +#: ../../include/items.php:3918 +msgid "Privacy group is empty." +msgstr "El grup privat està vuit." + +#: ../../include/items.php:3925 +#, php-format +msgid "Privacy group: %s" +msgstr "Grup privat: %s" + +#: ../../include/items.php:3937 +msgid "Connection not found." +msgstr "Connexió no trobada." + +#: ../../include/items.php:4290 +msgid "profile photo" +msgstr "foto del perfil" + +#: ../../include/oembed.php:336 +msgid "Embedded content" +msgstr "Contingut embegut" + +#: ../../include/oembed.php:345 +msgid "Embedding disabled" +msgstr "Incorporació desactivada" + +#: ../../include/widgets.php:103 +msgid "System" +msgstr "Sistema" + +#: ../../include/widgets.php:106 +msgid "New App" +msgstr "Nova App" + +#: ../../include/widgets.php:154 +msgid "Suggestions" +msgstr "Suggerencies" + +#: ../../include/widgets.php:155 +msgid "See more..." +msgstr "Veure més....." + +#: ../../include/widgets.php:175 +#, php-format +msgid "You have %1$.0f of %2$.0f allowed connections." +msgstr "Tens %1$.0f de %2$.0f connexions permeses." + +#: ../../include/widgets.php:181 +msgid "Add New Connection" +msgstr "Afegeix una Nova Connexió" + +#: ../../include/widgets.php:182 +msgid "Enter channel address" +msgstr "Introdueix l'adreça del canal" + +#: ../../include/widgets.php:183 +msgid "Examples: bob@example.com, https://example.com/barbara" +msgstr "Exemples: bob@example.com, https://exemple.com/barbara" + +#: ../../include/widgets.php:199 +msgid "Notes" +msgstr "Notes" + +#: ../../include/widgets.php:273 +msgid "Remove term" +msgstr "Plaç de remoció" + +#: ../../include/widgets.php:313 ../../include/widgets.php:432 +#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:94 +msgid "Everything" +msgstr "Tot" + +#: ../../include/widgets.php:354 +msgid "Archives" +msgstr "Arxius" + +#: ../../include/widgets.php:516 +msgid "Refresh" +msgstr "Refresc" + +#: ../../include/widgets.php:556 +msgid "Account settings" +msgstr "Ajustos de Compte" + +#: ../../include/widgets.php:562 +msgid "Channel settings" +msgstr "Ajustos de Canal" + +#: ../../include/widgets.php:571 +msgid "Additional features" +msgstr "Característiques addicionals" + +#: ../../include/widgets.php:578 +msgid "Feature/Addon settings" +msgstr "Ajustos de Complements" + +#: ../../include/widgets.php:584 +msgid "Display settings" +msgstr "Ajustos de pantalla" + +#: ../../include/widgets.php:591 +msgid "Manage locations" +msgstr "Gestiona ubicacions" + +#: ../../include/widgets.php:600 +msgid "Export channel" +msgstr "Exportat canal" + +#: ../../include/widgets.php:607 +msgid "Connected apps" +msgstr "Apps connectades" + +#: ../../include/widgets.php:631 +msgid "Premium Channel Settings" +msgstr "Ajustos Premium de Canal" + +#: ../../include/widgets.php:660 +msgid "Private Mail Menu" +msgstr "Menú de Correu Privat" + +#: ../../include/widgets.php:662 +msgid "Combined View" +msgstr "Vista Combinada" + +#: ../../include/widgets.php:694 ../../include/widgets.php:706 +msgid "Conversations" +msgstr "Conversacions" + +#: ../../include/widgets.php:698 +msgid "Received Messages" +msgstr "Missatges Rebuts" + +#: ../../include/widgets.php:702 +msgid "Sent Messages" +msgstr "Missatges Enviats" + +#: ../../include/widgets.php:716 +msgid "No messages." +msgstr "Sense missatges." + +#: ../../include/widgets.php:734 +msgid "Delete conversation" +msgstr "Conversació esborrada" + +#: ../../include/widgets.php:760 +msgid "Events Tools" +msgstr "Eina d'Esdeveniments" + +#: ../../include/widgets.php:761 +msgid "Export Calendar" +msgstr "Exportar Calendari" + +#: ../../include/widgets.php:762 +msgid "Import Calendar" +msgstr "Importar Calendari" + +#: ../../include/widgets.php:840 +msgid "Overview" +msgstr "Visió General" + +#: ../../include/widgets.php:847 +msgid "Chat Members" +msgstr "Membres de la Sala de Xat" + +#: ../../include/widgets.php:869 +msgid "Wiki List" +msgstr "Llista de Wikis" + +#: ../../include/widgets.php:907 +msgid "Wiki Pages" +msgstr "Pàgines de Wikis" + +#: ../../include/widgets.php:942 +msgid "Bookmarked Chatrooms" +msgstr "Sales de Xat Favorites" + +#: ../../include/widgets.php:965 +msgid "Suggested Chatrooms" +msgstr "Sales de Xat Suggerides" + +#: ../../include/widgets.php:1111 ../../include/widgets.php:1223 +msgid "photo/image" +msgstr "foto/imatge" + +#: ../../include/widgets.php:1166 +msgid "Click to show more" +msgstr "Fes clic per veure més" + +#: ../../include/widgets.php:1317 +msgid "Rating Tools" +msgstr "Eines de Valoració" + +#: ../../include/widgets.php:1321 ../../include/widgets.php:1323 +msgid "Rate Me" +msgstr "Valora'm" + +#: ../../include/widgets.php:1326 +msgid "View Ratings" +msgstr "Veure Valoracions" + +#: ../../include/widgets.php:1410 +msgid "Forums" +msgstr "Forums" + +#: ../../include/widgets.php:1439 +msgid "Tasks" +msgstr "Tasques" + +#: ../../include/widgets.php:1448 +msgid "Documentation" +msgstr "Documentació" + +#: ../../include/widgets.php:1450 +msgid "Project/Site Information" +msgstr "Informació del Projecte/Lloc" + +#: ../../include/widgets.php:1451 +msgid "For Members" +msgstr "Per Membres" + +#: ../../include/widgets.php:1452 +msgid "For Administrators" +msgstr "Per Administradors" + +#: ../../include/widgets.php:1453 +msgid "For Developers" +msgstr "Per Desenvolupadors" + +#: ../../include/widgets.php:1477 ../../include/widgets.php:1515 +msgid "Member registrations waiting for confirmation" +msgstr "Una inscripció per a ser membre està esperant confirmació" + +#: ../../include/widgets.php:1483 +msgid "Inspect queue" +msgstr "Revisa cua" + +#: ../../include/widgets.php:1485 +msgid "DB updates" +msgstr "Actualitzacions de Base de Dades" + +#: ../../include/widgets.php:1511 +msgid "Plugin Features" +msgstr "Característiques del Plugin" + +#: ../../include/activities.php:41 +msgid " and " +msgstr "i" + +#: ../../include/activities.php:49 +msgid "public profile" +msgstr "Perfil públic" + +#: ../../include/activities.php:58 +#, php-format +msgid "%1$s changed %2$s to “%3$s”" +msgstr "%1$s canviat %2$s a “%3$s”" + +#: ../../include/activities.php:59 +#, php-format +msgid "Visit %1$s's %2$s" +msgstr "Visita %1$s en %2$s" + +#: ../../include/activities.php:62 +#, php-format +msgid "%1$s has an updated %2$s, changing %3$s." +msgstr "%1$s Ha actualitzat %2$s, canviant %3$s." + +#: ../../include/bb2diaspora.php:398 +msgid "Attachments:" +msgstr "Adjuntat:" + +#: ../../include/bb2diaspora.php:487 +msgid "$Projectname event notification:" +msgstr "Notificació d'esdeveniment de $Projectname" + #: ../../include/js_strings.php:5 msgid "Delete this item?" msgstr "Esborrar aquest item?" #: ../../include/js_strings.php:8 -msgid "[-] show less" -msgstr "[-] mostra menys" +#, php-format +msgid "%s show less" +msgstr "" #: ../../include/js_strings.php:9 -msgid "[+] expand" -msgstr "[+] expandeix" +#, php-format +msgid "%s expand" +msgstr "" #: ../../include/js_strings.php:10 -msgid "[-] collapse" -msgstr "[-] colapsa" +#, php-format +msgid "%s collapse" +msgstr "" #: ../../include/js_strings.php:11 msgid "Password too short" @@ -9361,278 +9612,223 @@ msgctxt "calendar" msgid "All day" msgstr "Tot el dia" -#: ../../include/network.php:657 -msgid "view full size" -msgstr "Veure a mida competa" - -#: ../../include/network.php:1885 -msgid "No Subject" -msgstr "Sense Assumpte" - -#: ../../include/network.php:2146 ../../include/network.php:2147 -msgid "Friendica" -msgstr "Friendica" - -#: ../../include/network.php:2148 -msgid "OStatus" -msgstr "OStatus" - -#: ../../include/network.php:2149 -msgid "GNU-Social" -msgstr "GNU-Social" - -#: ../../include/network.php:2150 -msgid "RSS/Atom" -msgstr "RSS/Atom" - -#: ../../include/network.php:2152 -msgid "Diaspora" -msgstr "Diaspora" - -#: ../../include/network.php:2153 -msgid "Facebook" -msgstr "Facebook" - -#: ../../include/network.php:2154 -msgid "Zot" -msgstr "Zot" - -#: ../../include/network.php:2155 -msgid "LinkedIn" -msgstr "LinkedIn" - -#: ../../include/network.php:2156 -msgid "XMPP/IM" -msgstr "XMPP/IM" - -#: ../../include/network.php:2157 -msgid "MySpace" -msgstr "MySpace" - -#: ../../include/photos.php:110 +#: ../../include/contact_widgets.php:11 #, php-format -msgid "Image exceeds website size limit of %lu bytes" -msgstr "La imatge excedeix la mida limit pel lloc web en %lu bytes" +msgid "%d invitation available" +msgid_plural "%d invitations available" +msgstr[0] "%d invitació disponible" +msgstr[1] "%d invitacions disponibles" -#: ../../include/photos.php:117 -msgid "Image file is empty." -msgstr "El fitxer d'imatge esta buit." +#: ../../include/contact_widgets.php:19 +msgid "Find Channels" +msgstr "Troba Canals" -#: ../../include/photos.php:255 -msgid "Photo storage failed." -msgstr "Fracassà l'emmagatzematge de la Foto" +#: ../../include/contact_widgets.php:20 +msgid "Enter name or interest" +msgstr "Entra un nom o interes" -#: ../../include/photos.php:295 -msgid "a new photo" -msgstr "Una foto nova" +#: ../../include/contact_widgets.php:21 +msgid "Connect/Follow" +msgstr "Conecta/Segueix" -#: ../../include/photos.php:299 +#: ../../include/contact_widgets.php:22 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "Exemples: Lionel Messi, Futbolista" + +#: ../../include/contact_widgets.php:26 +msgid "Random Profile" +msgstr "Perfil Aleatori" + +#: ../../include/contact_widgets.php:27 +msgid "Invite Friends" +msgstr "Convida Amics" + +#: ../../include/contact_widgets.php:29 +msgid "Advanced example: name=fred and country=iceland" +msgstr "Exemple avançat: nom=pep i pais=eire" + +#: ../../include/contact_widgets.php:122 #, php-format -msgctxt "photo_upload" -msgid "%1$s posted %2$s to %3$s" -msgstr "%1$s enviat %2$s a %3$s" +msgid "%d connection in common" +msgid_plural "%d connections in common" +msgstr[0] "%d connexió en comú" +msgstr[1] "%d connexions en comú" -#: ../../include/photos.php:506 -msgid "Upload New Photos" -msgstr "Puja Noves Fotos" +#: ../../include/contact_widgets.php:127 +msgid "show more" +msgstr "mostrar més" -#: ../../include/zot.php:699 +#: ../../include/dir_fns.php:141 +msgid "Directory Options" +msgstr "Opcions de Directori" + +#: ../../include/dir_fns.php:143 +msgid "Safe Mode" +msgstr "Manera Segura" + +#: ../../include/dir_fns.php:144 +msgid "Public Forums Only" +msgstr "Només Fòrums Públics" + +#: ../../include/dir_fns.php:145 +msgid "This Website Only" +msgstr "Només Aquest Lloc Web" + +#: ../../include/message.php:20 +msgid "No recipient provided." +msgstr "No s'ha proporcionat bústia." + +#: ../../include/message.php:25 +msgid "[no subject]" +msgstr "[no subject]" + +#: ../../include/message.php:45 +msgid "Unable to determine sender." +msgstr "incapaç de determinar el remitent" + +#: ../../include/message.php:222 +msgid "Stored post could not be verified." +msgstr "L'entrada guardada no pot ser verificada" + +#: ../../include/acl_selectors.php:269 +msgid "Who can see this?" +msgstr "Qui pot veure això?" + +#: ../../include/acl_selectors.php:270 +msgid "Custom selection" +msgstr "Selecció a mida" + +#: ../../include/acl_selectors.php:271 +msgid "" +"Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit" +" the scope of \"Show\"." +msgstr "Selecciona \"Mostrar\" per permetre la visualització. \"No Mostrar\" et permet obviar i limitar l'abast de \"Mostrar\"." + +#: ../../include/acl_selectors.php:272 +msgid "Show" +msgstr "Mostra" + +#: ../../include/acl_selectors.php:273 +msgid "Don't show" +msgstr "No mostrar" + +#: ../../include/acl_selectors.php:279 +msgid "Other networks and post services" +msgstr "Altres xarxes i serveis de correu" + +#: ../../include/acl_selectors.php:309 +#, php-format +msgid "" +"Post permissions %s cannot be changed %s after a post is shared.
These" +" permissions set who is allowed to view the post." +msgstr "Els permisos d'entrada %s no poden esser canviats %s posteriorment a que una entrada ja està compartida.
Aquest ajust dels permisos indica qui pot veure l'entrada." + +#: ../../include/datetime.php:135 +msgid "Birthday" +msgstr "Aniversari" + +#: ../../include/datetime.php:137 +msgid "Age: " +msgstr "Edat:" + +#: ../../include/datetime.php:139 +msgid "YYYY-MM-DD or MM-DD" +msgstr "YYYY-MM-DD o MM-DD" + +#: ../../include/datetime.php:272 ../../boot.php:2479 +msgid "never" +msgstr "mai" + +#: ../../include/datetime.php:278 +msgid "less than a second ago" +msgstr "fa menys d'un segon" + +#: ../../include/datetime.php:296 +#, php-format +msgctxt "e.g. 22 hours ago, 1 minute ago" +msgid "%1$d %2$s ago" +msgstr "Fa %1$d %2$s" + +#: ../../include/datetime.php:307 +msgctxt "relative_date" +msgid "year" +msgid_plural "years" +msgstr[0] "any" +msgstr[1] "anys" + +#: ../../include/datetime.php:310 +msgctxt "relative_date" +msgid "month" +msgid_plural "months" +msgstr[0] "mes" +msgstr[1] "mesos " + +#: ../../include/datetime.php:313 +msgctxt "relative_date" +msgid "week" +msgid_plural "weeks" +msgstr[0] "setmana" +msgstr[1] "setmanes" + +#: ../../include/datetime.php:316 +msgctxt "relative_date" +msgid "day" +msgid_plural "days" +msgstr[0] "dia" +msgstr[1] "dies" + +#: ../../include/datetime.php:319 +msgctxt "relative_date" +msgid "hour" +msgid_plural "hours" +msgstr[0] "hora" +msgstr[1] "hores" + +#: ../../include/datetime.php:322 +msgctxt "relative_date" +msgid "minute" +msgid_plural "minutes" +msgstr[0] "minut" +msgstr[1] "minuts" + +#: ../../include/datetime.php:325 +msgctxt "relative_date" +msgid "second" +msgid_plural "seconds" +msgstr[0] "segon" +msgstr[1] "segons" + +#: ../../include/datetime.php:562 +#, php-format +msgid "%1$s's birthday" +msgstr "Aniversari de %1$s" + +#: ../../include/datetime.php:563 +#, php-format +msgid "Happy Birthday %1$s" +msgstr "Feliç Aniversari %1$s" + +#: ../../include/api.php:1327 +msgid "Public Timeline" +msgstr "Línia de Temps Pública" + +#: ../../include/zot.php:697 msgid "Invalid data packet" msgstr "paquet de dades invàlid" -#: ../../include/zot.php:715 +#: ../../include/zot.php:713 msgid "Unable to verify channel signature" msgstr "No es pot verificar la signatura del canal" -#: ../../include/zot.php:2363 +#: ../../include/zot.php:2326 #, php-format msgid "Unable to verify site signature for %s" msgstr "No es pot verificar la signatura del lloc per %s" -#: ../../include/zot.php:3712 +#: ../../include/zot.php:3703 msgid "invalid target signature" msgstr "Signatura objectiu invàlida" -#: ../../include/page_widgets.php:6 -msgid "New Page" -msgstr "Pàgina Nova" - -#: ../../include/page_widgets.php:43 -msgid "Title" -msgstr "Títol" - -#: ../../include/permissions.php:26 -msgid "Can view my normal stream and posts" -msgstr "Pot veure el flux i entrades normals" - -#: ../../include/permissions.php:27 -msgid "Can view my default channel profile" -msgstr "Pot veure el meu perfil del canal per defecte" - -#: ../../include/permissions.php:28 -msgid "Can view my connections" -msgstr "Pot veure les meves connexions" - -#: ../../include/permissions.php:29 -msgid "Can view my file storage and photos" -msgstr "Pot veure al meu magatzem d'arxius i fotos" - -#: ../../include/permissions.php:30 -msgid "Can view my webpages" -msgstr "Pot veure les meves pàgines web" - -#: ../../include/permissions.php:33 -msgid "Can send me their channel stream and posts" -msgstr "Pot enviar-me el flux i entrades del seu canal" - -#: ../../include/permissions.php:34 -msgid "Can post on my channel page (\"wall\")" -msgstr "Pot fer entrades a la meva pàgina de canal (\"mur\")" - -#: ../../include/permissions.php:35 -msgid "Can comment on or like my posts" -msgstr "Pot fer comentaris o dir si agrada en les meves entrades" - -#: ../../include/permissions.php:36 -msgid "Can send me private mail messages" -msgstr "Pot enviar-me un missatge de correu privat" - -#: ../../include/permissions.php:37 -msgid "Can like/dislike stuff" -msgstr "Pot dir si agrada/desagrada " - -#: ../../include/permissions.php:37 -msgid "Profiles and things other than posts/comments" -msgstr "Perfils i altres coses a més d'entrades/comentaris" - -#: ../../include/permissions.php:39 -msgid "Can forward to all my channel contacts via post @mentions" -msgstr "Ho pot enviar a tots els meus contactes del canal via entrades @mencions" - -#: ../../include/permissions.php:39 -msgid "Advanced - useful for creating group forum channels" -msgstr "Avançat - capaç de crear canals de grups de foro" - -#: ../../include/permissions.php:40 -msgid "Can chat with me (when available)" -msgstr "Pot xatejar amb mi (si estic disponible)" - -#: ../../include/permissions.php:41 -msgid "Can write to my file storage and photos" -msgstr "Pot escriure al meu magatzem d'arxius i fotos" - -#: ../../include/permissions.php:42 -msgid "Can edit my webpages" -msgstr "Pot editar les meves pàgines web" - -#: ../../include/permissions.php:44 -msgid "Can source my public posts in derived channels" -msgstr "Pot mostrar l'origen de les meves entrades públiques en altres canals" - -#: ../../include/permissions.php:44 -msgid "Somewhat advanced - very useful in open communities" -msgstr "Quelcom avançat - molt útil en comunitats obertes" - -#: ../../include/permissions.php:46 -msgid "Can administer my channel resources" -msgstr "Pot administrar els meus recursos del canal" - -#: ../../include/permissions.php:46 -msgid "" -"Extremely advanced. Leave this alone unless you know what you are doing" -msgstr "Extremadament avançat. No toquis res si no saps que estàs fent" - -#: ../../include/permissions.php:877 -msgid "Social Networking" -msgstr "Xarxes Socials" - -#: ../../include/permissions.php:877 -msgid "Social - Mostly Public" -msgstr "Social - Principalment Públic" - -#: ../../include/permissions.php:877 -msgid "Social - Restricted" -msgstr "Social - Restingit" - -#: ../../include/permissions.php:877 -msgid "Social - Private" -msgstr "Social - Privat" - -#: ../../include/permissions.php:878 -msgid "Community Forum" -msgstr "Foro de Comunitat" - -#: ../../include/permissions.php:878 -msgid "Forum - Mostly Public" -msgstr "Fòrum - Principalment Públic" - -#: ../../include/permissions.php:878 -msgid "Forum - Restricted" -msgstr "Fòrum - Restringit" - -#: ../../include/permissions.php:878 -msgid "Forum - Private" -msgstr "Fòrum - Privat" - -#: ../../include/permissions.php:879 -msgid "Feed Republish" -msgstr "Republicador" - -#: ../../include/permissions.php:879 -msgid "Feed - Mostly Public" -msgstr "Realimentador - Públic Principalment" - -#: ../../include/permissions.php:879 -msgid "Feed - Restricted" -msgstr "Retroalimentador - Restringit" - -#: ../../include/permissions.php:880 -msgid "Special Purpose" -msgstr "Objectiu Especial" - -#: ../../include/permissions.php:880 -msgid "Special - Celebrity/Soapbox" -msgstr "Espacial - Celebritat/Plataforma" - -#: ../../include/permissions.php:880 -msgid "Special - Group Repository" -msgstr "Especial - Repositori d'un Grup" - -#: ../../include/permissions.php:881 -msgid "Custom/Expert Mode" -msgstr "Personalitzat/Manera Experta" - -#: ../../include/activities.php:41 -msgid " and " -msgstr "i" - -#: ../../include/activities.php:49 -msgid "public profile" -msgstr "Perfil públic" - -#: ../../include/activities.php:58 -#, php-format -msgid "%1$s changed %2$s to “%3$s”" -msgstr "%1$s canviat %2$s a “%3$s”" - -#: ../../include/activities.php:59 -#, php-format -msgid "Visit %1$s's %2$s" -msgstr "Visita %1$s en %2$s" - -#: ../../include/activities.php:62 -#, php-format -msgid "%1$s has an updated %2$s, changing %3$s." -msgstr "%1$s Ha actualitzat %2$s, canviant %3$s." - -#: ../../include/bb2diaspora.php:398 -msgid "Attachments:" -msgstr "Adjuntat:" - -#: ../../include/bb2diaspora.php:487 -msgid "$Projectname event notification:" -msgstr "Notificació d'esdeveniment de $Projectname" - #: ../../view/theme/redbasic/php/config.php:82 msgid "Focus (Hubzilla default)" msgstr "Focus (Hubzilla per defecte)" @@ -9769,62 +9965,66 @@ msgstr "Ajusta la mida de la foto del autor a la conversa" msgid "Set size of followup author photos" msgstr "Ajusta la mida del seguidor de les fotos de l'autor" -#: ../../boot.php:1162 +#: ../../boot.php:1163 #, php-format msgctxt "opensearch" msgid "Search %1$s (%2$s)" msgstr "Cerca %1$s(%2$s)" -#: ../../boot.php:1162 +#: ../../boot.php:1163 msgctxt "opensearch" msgid "$Projectname" msgstr "$Projectname" -#: ../../boot.php:1480 +#: ../../boot.php:1481 #, php-format msgid "Update %s failed. See error logs." msgstr "L'actualització %s ha fallat. Mira el registre d'errors." -#: ../../boot.php:1483 +#: ../../boot.php:1484 #, php-format msgid "Update Error at %s" msgstr "Error d'Actualització a %s" -#: ../../boot.php:1684 +#: ../../boot.php:1685 msgid "" "Create an account to access services and applications within the Hubzilla" msgstr "Crea un compte per accedir als serveis i aplicacions dins de Hubzilla" #: ../../boot.php:1706 +msgid "Login/Email" +msgstr "" + +#: ../../boot.php:1707 msgid "Password" msgstr "Contrasenya" -#: ../../boot.php:1707 +#: ../../boot.php:1708 msgid "Remember me" msgstr "Recorda'm" -#: ../../boot.php:1710 +#: ../../boot.php:1711 msgid "Forgot your password?" msgstr "Has perdut la Contrasenya?" -#: ../../boot.php:2276 +#: ../../boot.php:2277 msgid "toggle mobile" msgstr "canvia a format per a mòbils" -#: ../../boot.php:2425 +#: ../../boot.php:2432 msgid "Website SSL certificate is not valid. Please correct." msgstr "El certificat SSL és invalid, soluciona-ho, si us plau." -#: ../../boot.php:2428 +#: ../../boot.php:2435 #, php-format msgid "[hubzilla] Website SSL error for %s" msgstr "[hubzilla] Error de SSL per la web %s" -#: ../../boot.php:2469 +#: ../../boot.php:2478 msgid "Cron/Scheduled tasks not running." msgstr "No s'estan executant les tasques programades al cron." -#: ../../boot.php:2473 +#: ../../boot.php:2482 #, php-format msgid "[hubzilla] Cron tasks not running on %s" msgstr "[hubzilla] Les tasques de Cron no rulen a %s" diff --git a/view/ca/hstrings.php b/view/ca/hstrings.php index 7470f8c84..d876aea80 100644 --- a/view/ca/hstrings.php +++ b/view/ca/hstrings.php @@ -4,8 +4,40 @@ if(! function_exists("string_plural_select_ca")) { function string_plural_select_ca($n){ return ($n != 1);; }} -; -App::$strings["parent"] = "pare"; +App::$rtl = 0; +App::$strings["Social Networking"] = "Xarxes Socials"; +App::$strings["Social - Mostly Public"] = "Social - Principalment Públic"; +App::$strings["Social - Restricted"] = "Social - Restingit"; +App::$strings["Social - Private"] = "Social - Privat"; +App::$strings["Community Forum"] = "Foro de Comunitat"; +App::$strings["Forum - Mostly Public"] = "Fòrum - Principalment Públic"; +App::$strings["Forum - Restricted"] = "Fòrum - Restringit"; +App::$strings["Forum - Private"] = "Fòrum - Privat"; +App::$strings["Feed Republish"] = "Republicador"; +App::$strings["Feed - Mostly Public"] = "Realimentador - Públic Principalment"; +App::$strings["Feed - Restricted"] = "Retroalimentador - Restringit"; +App::$strings["Special Purpose"] = "Objectiu Especial"; +App::$strings["Special - Celebrity/Soapbox"] = "Espacial - Celebritat/Plataforma"; +App::$strings["Special - Group Repository"] = "Especial - Repositori d'un Grup"; +App::$strings["Other"] = "Altres"; +App::$strings["Custom/Expert Mode"] = "Personalitzat/Manera Experta"; +App::$strings["Can view my channel stream and posts"] = ""; +App::$strings["Can send me their channel stream and posts"] = "Pot enviar-me el flux i entrades del seu canal"; +App::$strings["Can view my default channel profile"] = "Pot veure el meu perfil del canal per defecte"; +App::$strings["Can view my connections"] = "Pot veure les meves connexions"; +App::$strings["Can view my file storage and photos"] = "Pot veure al meu magatzem d'arxius i fotos"; +App::$strings["Can upload/modify my file storage and photos"] = ""; +App::$strings["Can view my channel webpages"] = ""; +App::$strings["Can create/edit my channel webpages"] = ""; +App::$strings["Can post on my channel (wall) page"] = ""; +App::$strings["Can comment on or like my posts"] = "Pot fer comentaris o dir si agrada en les meves entrades"; +App::$strings["Can send me private mail messages"] = "Pot enviar-me un missatge de correu privat"; +App::$strings["Can like/dislike profiles and profile things"] = ""; +App::$strings["Can forward to all my channel connections via @+ mentions in posts"] = ""; +App::$strings["Can chat with me"] = ""; +App::$strings["Can source my public posts in derived channels"] = "Pot mostrar l'origen de les meves entrades públiques en altres canals"; +App::$strings["Can administer my channel"] = ""; +App::$strings["parent"] = "amunt"; App::$strings["Collection"] = "Col·lecció"; App::$strings["Principal"] = "Principal"; App::$strings["Addressbook"] = "Llista d'Adreçes"; @@ -37,63 +69,8 @@ App::$strings["Remote authentication blocked. You are logged into this site loca App::$strings["Welcome %s. Remote authentication successful."] = "Benvingut %s. Autenticació remota reeixida."; App::$strings["Requested profile is not available."] = "El perfil demanat no està disponible."; App::$strings["Some blurb about what to do when you're new here"] = "Algunes propostes sobre el que cal fer quan ets nou aquí"; -App::$strings["Block Name"] = "Nom del Bloc"; -App::$strings["Blocks"] = "Bloc"; -App::$strings["Block Title"] = "Títol del bloc"; -App::$strings["Created"] = "Creat"; -App::$strings["Edited"] = "Editat"; -App::$strings["Share"] = "Compartir"; -App::$strings["View"] = "Mostra"; -App::$strings["Channel not found."] = "Canal no trobat."; -App::$strings["Permissions denied."] = "Permís denegat."; -App::$strings["l, F j"] = "l, F j"; -App::$strings["Link to Source"] = "Enllaç a la Font"; -App::$strings["Edit Event"] = "Editar l'Esdeveniment"; -App::$strings["Create Event"] = "Crear Esdeveniment"; -App::$strings["Previous"] = "Anterior"; -App::$strings["Next"] = "Pròxim"; -App::$strings["Export"] = "Exporta"; -App::$strings["Import"] = "Importar"; -App::$strings["Submit"] = "Enviar"; -App::$strings["Today"] = "Avui"; -App::$strings["You must be logged in to see this page."] = "Has d'estar identificat per a veure aquesta pàgina."; -App::$strings["Posts and comments"] = "Entrades i comentaris"; -App::$strings["Only posts"] = "Només entrades"; -App::$strings["Insufficient permissions. Request redirected to profile page."] = "Permisos insuficients. Petició redirigida a la pàgina del perfil."; -App::$strings["Room not found"] = "No s'ha trobat la sala"; -App::$strings["Leave Room"] = "Abandona la sala"; -App::$strings["Delete Room"] = "Esborra Sala"; -App::$strings["I am away right now"] = "Absent"; -App::$strings["I am online"] = "Estic connectat/da"; -App::$strings["Bookmark this room"] = "Fes favorit aquest xat"; -App::$strings["Please enter a link URL:"] = "Si us plau entra l'enllaç URL:"; -App::$strings["Encrypt text"] = "Text encriptat"; -App::$strings["Insert web link"] = "Insereix enllaç web"; -App::$strings["Feature disabled."] = "Funcionalitat desactivada."; -App::$strings["New Chatroom"] = "Nova sala per a Xerrar"; -App::$strings["Chatroom name"] = "Nom de la sala de xat"; -App::$strings["Expiration of chats (minutes)"] = "Expiració dels chats (minuts)"; -App::$strings["Permissions"] = "Permisos "; -App::$strings["%1\$s's Chatrooms"] = "%1\$s de Xats"; -App::$strings["No chatrooms available"] = "No hi ha sales de xat disponibles"; -App::$strings["Create New"] = "Crear Nou"; -App::$strings["Expiration"] = "Expiració"; -App::$strings["min"] = "min"; App::$strings["Away"] = "Absent"; App::$strings["Online"] = "En connexió"; -App::$strings["Invalid item."] = "Article invàlid."; -App::$strings["Bookmark added"] = "Favorit afegit"; -App::$strings["My Bookmarks"] = "Els Meus Favorits"; -App::$strings["My Connections Bookmarks"] = "Les connexions dels meus Favorits"; -App::$strings["Continue"] = "Continua"; -App::$strings["Premium Channel Setup"] = "Configuració de Canals Premium"; -App::$strings["Enable premium channel connection restrictions"] = "Habilita les restriccions de connexió del canal premium"; -App::$strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = "Si us plau, introdueixi les restriccions o condicions, com ara el rebut de PayPal, les pautes d'ús, etc."; -App::$strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = "Aquest canal pot requerir passos addicionals o reconeixement de les següents condicions abans de connectar:"; -App::$strings["Potential connections will then see the following text before proceeding:"] = "Connexions potencials veuran el següent text abans de continuar:"; -App::$strings["By continuing, I certify that I have complied with any instructions provided on this page."] = "En continuar, certifico que he complert amb totes les instruccions proporcionades en aquesta pàgina."; -App::$strings["(No specific instructions have been provided by the channel owner.)"] = "(No s'han proporcionat instruccions específiques pel propietari del canal.)"; -App::$strings["Restricted or Premium Channel"] = "Canal Restringit o Premium"; App::$strings["Could not access contact record."] = "No s'ha pogut accedir al llibre de contactes."; App::$strings["Could not locate selected profile."] = "No s'ha trobat el perfil indicat."; App::$strings["Connection updated."] = "S'ha actualitzat la connexió."; @@ -158,6 +135,7 @@ App::$strings["Do not import posts with this text"] = "No importar entrades amb App::$strings["This information is public!"] = "Aquesta informació es pública!"; App::$strings["Connection Pending Approval"] = "Connexió Pendent d'Aprovació"; App::$strings["inherited"] = "heretat"; +App::$strings["Submit"] = "Enviar"; App::$strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Tria el perfil que vols mostrar a %s quan es vegi el perfil segur."; App::$strings["Their Settings"] = "Els seus Ajustos"; App::$strings["My Settings"] = "Els Meus Ajustos"; @@ -166,6 +144,30 @@ App::$strings["Some permissions may be inherited from your channel's privacy settings, which have higher priority than individual settings. You can change those settings here but they wont have any impact unless the inherited setting changes."] = "Alguns permisos poden ser heretats dels teus canals ajustos de privacitat, Els quals tenen més prioritat que els ajustos individuals. Pots canviar aquests ajustos aquí pero no tindran cap impacte fins que no canviis els ajustos heretats."; App::$strings["Last update:"] = "Darrera actualització:"; App::$strings["Public access denied."] = "Accés públic denegat."; +App::$strings["Item not found."] = "Element no trobat."; +App::$strings["First Name"] = "Nom"; +App::$strings["Last Name"] = "Cognoms"; +App::$strings["Nickname"] = "Àlies"; +App::$strings["Full Name"] = "Nom Sencer"; +App::$strings["Email"] = "Correu electrónic"; +App::$strings["Profile Photo"] = "Foto del Perfil"; +App::$strings["Profile Photo 16px"] = "Foto del Perfil 16px"; +App::$strings["Profile Photo 32px"] = "Foto del Perfil 32px"; +App::$strings["Profile Photo 48px"] = "Foto del Perfil 48px"; +App::$strings["Profile Photo 64px"] = "Foto del Perfil 64px"; +App::$strings["Profile Photo 80px"] = "Foto del Perfil 80px"; +App::$strings["Profile Photo 128px"] = "Foto del Perfil 128px"; +App::$strings["Timezone"] = "Zona horària"; +App::$strings["Homepage URL"] = "URL de la pàgina d'inici"; +App::$strings["Language"] = "Idioma"; +App::$strings["Birth Year"] = "Any de Naixement"; +App::$strings["Birth Month"] = "Mes de Naixement"; +App::$strings["Birth Day"] = "Dia de Naixement"; +App::$strings["Birthdate"] = "Aniversari"; +App::$strings["Gender"] = "Gènere"; +App::$strings["Male"] = "Masculí"; +App::$strings["Female"] = "Femení"; +App::$strings["Channel added."] = "S'ha afegit el canal."; App::$strings["%d rating"] = array( 0 => "%d valoració", 1 => "%d valoracions", @@ -196,13 +198,74 @@ App::$strings["Reverse Alphabetic"] = "Alfabètic Invers"; App::$strings["Newest to Oldest"] = "De més Nou a més Vell"; App::$strings["Oldest to Newest"] = "De més Antic a més Nou"; App::$strings["No entries (some entries may be hidden)."] = "Sense entrades (algunes podrien estar amagades)."; -App::$strings["Item not found."] = "Element no trobat."; +App::$strings["Continue"] = "Continua"; +App::$strings["Premium Channel Setup"] = "Configuració de Canals Premium"; +App::$strings["Enable premium channel connection restrictions"] = "Habilita les restriccions de connexió del canal premium"; +App::$strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = "Si us plau, introdueixi les restriccions o condicions, com ara el rebut de PayPal, les pautes d'ús, etc."; +App::$strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = "Aquest canal pot requerir passos addicionals o reconeixement de les següents condicions abans de connectar:"; +App::$strings["Potential connections will then see the following text before proceeding:"] = "Connexions potencials veuran el següent text abans de continuar:"; +App::$strings["By continuing, I certify that I have complied with any instructions provided on this page."] = "En continuar, certifico que he complert amb totes les instruccions proporcionades en aquesta pàgina."; +App::$strings["(No specific instructions have been provided by the channel owner.)"] = "(No s'han proporcionat instruccions específiques pel propietari del canal.)"; +App::$strings["Restricted or Premium Channel"] = "Canal Restringit o Premium"; +App::$strings["Calendar entries imported."] = "Entrades de Calendari importades."; +App::$strings["No calendar entries found."] = "No es troben entrades decalendari."; +App::$strings["Event can not end before it has started."] = "L'esdeveniment ha de començar abans d'acabar."; +App::$strings["Unable to generate preview."] = "No s'ha pogut generar la vista prèvia."; +App::$strings["Event title and start time are required."] = "Cal indicar l'inici i el final de l'esdeveniment."; +App::$strings["Event not found."] = "No s'ha trobat l'esdeveniment."; +App::$strings["event"] = "succés"; +App::$strings["Edit event title"] = "Edita el títol d'esdeveniment"; +App::$strings["Event title"] = "Títol esdeveniment"; +App::$strings["Required"] = "Requerit"; +App::$strings["Categories (comma-separated list)"] = "Categories (llista separada per comes)"; +App::$strings["Edit Category"] = "Editar Categoria"; +App::$strings["Category"] = "Categoria"; +App::$strings["Edit start date and time"] = "Editar data i hora d'inici"; +App::$strings["Start date and time"] = "Data i hora d'inici"; +App::$strings["Finish date and time are not known or not relevant"] = "L'ora de finalització no es coneix o es irrelevant."; +App::$strings["Edit finish date and time"] = "Editar la data i hora de finalització"; +App::$strings["Finish date and time"] = "Data i hora de finalització"; +App::$strings["Adjust for viewer timezone"] = "Ajusta a la zona horària del visitant."; +App::$strings["Important for events that happen in a particular place. Not practical for global holidays."] = "És important per esdeveniments locals, però pels globals no és pràctic."; +App::$strings["Edit Description"] = "Editar la Descripció"; +App::$strings["Description"] = "Descripció"; +App::$strings["Edit Location"] = "Editar la localització"; +App::$strings["Location"] = "Localització"; +App::$strings["Share this event"] = "Comparteix aquest esdeveniment"; +App::$strings["Preview"] = "Avanç"; +App::$strings["Permission settings"] = "Ajustos de permisos"; +App::$strings["Advanced Options"] = "Opcions Avançades"; +App::$strings["l, F j"] = "l, j \\d\\e/\\d' F"; +App::$strings["Edit event"] = "Edita l'esdeveniment"; +App::$strings["Delete event"] = "Esborra l'esdeveniment"; +App::$strings["Link to Source"] = "Enllaç a la Font"; +App::$strings["calendar"] = "calendari"; +App::$strings["Edit Event"] = "Editar l'Esdeveniment"; +App::$strings["Create Event"] = "Crear Esdeveniment"; +App::$strings["Previous"] = "Anterior"; +App::$strings["Next"] = "Pròxim"; +App::$strings["Export"] = "Exporta"; +App::$strings["View"] = "Mostra"; +App::$strings["Month"] = ""; +App::$strings["Week"] = ""; +App::$strings["Day"] = ""; +App::$strings["Today"] = "Avui"; +App::$strings["Event removed"] = "S'ha eliminat l'esdeveniment"; +App::$strings["Failed to remove event"] = "No s'ha pogut esborrar l'esdeveniment"; +App::$strings["Bookmark added"] = "Favorit afegit"; +App::$strings["My Bookmarks"] = "Els Meus Favorits"; +App::$strings["My Connections Bookmarks"] = "Les connexions dels meus Favorits"; App::$strings["Item not found"] = "No s'ha trobat l'element"; -App::$strings["Title (optional)"] = "Títol (opcional)"; -App::$strings["Edit Block"] = "Editar Bloc"; -App::$strings["No channel."] = "No s'ha trobat el canal"; -App::$strings["Common connections"] = "Connexions en comú"; -App::$strings["No connections in common."] = "No hi ha connexions en comú."; +App::$strings["Item is not editable"] = "Article no editable"; +App::$strings["Edit post"] = "Modifica l'entrada"; +App::$strings["Photos"] = "Fotos"; +App::$strings["Cancel"] = "Cancel·la"; +App::$strings["Invalid item."] = "Article invàlid."; +App::$strings["Channel not found."] = "Canal no trobat."; +App::$strings["Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."] = "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."; +App::$strings["Save to Folder:"] = "Guardar en la Carpeta"; +App::$strings["- select -"] = "- selecciona -"; +App::$strings["Save"] = "Guardar"; App::$strings["Blocked"] = "Bloquejades"; App::$strings["Ignored"] = "Ignorades"; App::$strings["Hidden"] = "Amagades"; @@ -254,51 +317,38 @@ App::$strings["select a photo from your photo albums"] = "tria una foto del teu App::$strings["Crop Image"] = "Retalla Imatge"; App::$strings["Please adjust the image cropping for optimum viewing."] = "Si us plau, retalla la imatge per a una optima visualització"; App::$strings["Done Editing"] = "Edició Feta"; -App::$strings["Item is not editable"] = "Article no editable"; -App::$strings["Edit post"] = "Modifica l'entrada"; -App::$strings["Calendar entries imported."] = "Entrades de Calendari importades."; -App::$strings["No calendar entries found."] = "No es troben entrades decalendari."; -App::$strings["Event can not end before it has started."] = "L'esdeveniment ha de començar abans d'acabar."; -App::$strings["Unable to generate preview."] = "No s'ha pogut generar la vista prèvia."; -App::$strings["Event title and start time are required."] = "Cal indicar l'inici i el final de l'esdeveniment."; -App::$strings["Event not found."] = "No s'ha trobat l'esdeveniment."; -App::$strings["event"] = "succés"; -App::$strings["Edit event title"] = "Edita el títol d'esdeveniment"; -App::$strings["Event title"] = "Títol esdeveniment"; -App::$strings["Required"] = "Requerit"; -App::$strings["Categories (comma-separated list)"] = "Categories (llista separada per comes)"; -App::$strings["Edit Category"] = "Editar Categoria"; -App::$strings["Category"] = "Categoria"; -App::$strings["Edit start date and time"] = "Editar data i hora d'inici"; -App::$strings["Start date and time"] = "Data i hora d'inici"; -App::$strings["Finish date and time are not known or not relevant"] = "L'ora de finalització no es coneix o es irrelevant."; -App::$strings["Edit finish date and time"] = "Editar la data i hora de finalització"; -App::$strings["Finish date and time"] = "Data i hora de finalització"; -App::$strings["Adjust for viewer timezone"] = "Ajusta a la zona horària del visitant."; -App::$strings["Important for events that happen in a particular place. Not practical for global holidays."] = "És important per esdeveniments locals, però pels globals no és pràctic."; -App::$strings["Edit Description"] = "Editar la Descripció"; -App::$strings["Description"] = "Descripció"; -App::$strings["Edit Location"] = "Editar la localització"; -App::$strings["Location"] = "Localització"; -App::$strings["Share this event"] = "Comparteix aquest esdeveniment"; -App::$strings["Preview"] = "Avanç"; -App::$strings["Permission settings"] = "Ajustos de permisos"; -App::$strings["Advanced Options"] = "Opcions Avançades"; -App::$strings["Edit event"] = "Edita l'esdeveniment"; -App::$strings["Delete event"] = "Esborra l'esdeveniment"; -App::$strings["calendar"] = "calendari"; -App::$strings["Event removed"] = "S'ha eliminat l'esdeveniment"; -App::$strings["Failed to remove event"] = "No s'ha pogut esborrar l'esdeveniment"; -App::$strings["Photos"] = "Fotos"; -App::$strings["Cancel"] = "Cancel·la"; +App::$strings["webpage"] = "pàgina web"; +App::$strings["block"] = "bloc"; +App::$strings["layout"] = "disposició"; +App::$strings["menu"] = "menú"; +App::$strings["%s element installed"] = "%s element instal·lat"; +App::$strings["%s element installation failed"] = "%s instal·lació d'element va fallar"; +App::$strings["Permissions denied."] = "Permís denegat."; +App::$strings["Import"] = "Importar"; App::$strings["This site is not a directory server"] = "Aquest lloc web no és un servidor de directori"; App::$strings["This directory server requires an access token"] = "Aquest servidor de directori requereix un token de accès"; -App::$strings["Save to Folder:"] = "Guardar en la Carpeta"; -App::$strings["- select -"] = "- selecciona -"; -App::$strings["Save"] = "Guardar"; +App::$strings["You must be logged in to see this page."] = "Has d'estar identificat per a veure aquesta pàgina."; +App::$strings["Room not found"] = "No s'ha trobat la sala"; +App::$strings["Leave Room"] = "Abandona la sala"; +App::$strings["Delete Room"] = "Esborra Sala"; +App::$strings["I am away right now"] = "Absent"; +App::$strings["I am online"] = "Estic connectat/da"; +App::$strings["Bookmark this room"] = "Fes favorit aquest xat"; +App::$strings["Please enter a link URL:"] = "Si us plau entra l'enllaç URL:"; +App::$strings["Encrypt text"] = "Text encriptat"; +App::$strings["Insert web link"] = "Insereix enllaç web"; +App::$strings["Feature disabled."] = "Funcionalitat desactivada."; +App::$strings["New Chatroom"] = "Nova sala per a Xerrar"; +App::$strings["Chatroom name"] = "Nom de la sala de xat"; +App::$strings["Expiration of chats (minutes)"] = "Expiració dels chats (minuts)"; +App::$strings["Permissions"] = "Permisos "; +App::$strings["%1\$s's Chatrooms"] = "%1\$s de Xats"; +App::$strings["No chatrooms available"] = "No hi ha sales de xat disponibles"; +App::$strings["Create New"] = "Crear Nou"; +App::$strings["Expiration"] = "Expiració"; +App::$strings["min"] = "min"; App::$strings["Invalid message"] = "Missatge invàlid."; App::$strings["no results"] = "sense resultats"; -App::$strings["Delivery report for %1\$s"] = "Informe de lliurament per %1\$s"; App::$strings["channel sync processed"] = "sincronització del canal processada"; App::$strings["queued"] = "Posat en cua"; App::$strings["posted"] = "enviat"; @@ -310,14 +360,14 @@ App::$strings["recipient not found"] = "Contenidor no trobat"; App::$strings["mail recalled"] = "Recupera el correu"; App::$strings["duplicate mail received"] = "rebut correu duplicat"; App::$strings["mail delivered"] = "correu entregat"; +App::$strings["Delivery report for %1\$s"] = "Informe de lliurament per %1\$s"; +App::$strings["Options"] = ""; +App::$strings["Redeliver"] = ""; App::$strings["Layout Name"] = "Nom del Format Gràfic"; App::$strings["Layout Description (Optional)"] = "Descripció del Format (Opcional)"; App::$strings["Edit Layout"] = "Edita Format Gràfic"; App::$strings["Page link"] = "Enllaç de la pàgina"; App::$strings["Edit Webpage"] = "Edita la Pàgina Web"; -App::$strings["Channel added."] = "S'ha afegit el canal."; -App::$strings["network"] = "xarxa"; -App::$strings["RSS"] = "RSS"; App::$strings["Privacy group created."] = "Creat grup privat."; App::$strings["Could not create privacy group."] = "No es pot crear el grup privat."; App::$strings["Privacy group not found."] = "No es troben grups privats."; @@ -331,16 +381,33 @@ App::$strings["Privacy group editor"] = "Editor del grup privat"; App::$strings["Members"] = "Membres"; App::$strings["All Connected Channels"] = "Tots els Canals Connectats"; App::$strings["Click on a channel to add or remove."] = "Clic sobre el canal per afegir o esborrar."; -App::$strings["Share content from Firefox to \$Projectname"] = "Compartir contingut des de Firefox a \$Projectname"; -App::$strings["Activate the Firefox \$Projectname provider"] = "Activar el proveïdor de \$Projectname a Firefox"; -App::$strings["Authorize application connection"] = "Autoritza la connexió de l'aplicació"; -App::$strings["Return to your app and insert this Securty Code:"] = "Torna a la teva aplicació i insereix aquest Codi de Seguretat:"; -App::$strings["Please login to continue."] = "Si et plau, identifica't per continuar."; -App::$strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Vols autoritzar a aquesta aplicació l'accés a les teves entrades i contactes i/o a crear noves entrades com si fos tu mateix."; +App::$strings["App installed."] = "Aplicació instal·lada."; +App::$strings["Malformed app."] = "Aplicació amb errors"; +App::$strings["Embed code"] = "Codi embegut"; +App::$strings["Edit App"] = "Edita l'Aplicació"; +App::$strings["Create App"] = "Crea l'Aplicació"; +App::$strings["Name of app"] = "Nom de l'Aplicació"; +App::$strings["Location (URL) of app"] = "Ubicació (URL) de l'aplicació"; +App::$strings["Photo icon URL"] = "Foto icona URL"; +App::$strings["80 x 80 pixels - optional"] = "80 x 80 pixels - opcional"; +App::$strings["Categories (optional, comma separated list)"] = "Categories (opcional, lista separada per comes)"; +App::$strings["Version ID"] = "Versió ID"; +App::$strings["Price of app"] = "Preu de l'aplicació"; +App::$strings["Location (URL) to purchase app"] = "Ubicació (URL) per comprar l'aplicació"; App::$strings["Documentation Search"] = "Cerca de Documentació"; App::$strings["Help:"] = "Ajuda:"; App::$strings["Help"] = "Ajuda"; App::$strings["\$Projectname Documentation"] = "\$Projectname Documentació"; +App::$strings["Item not available."] = "Article no disponible."; +App::$strings["Layout updated."] = "S'ha actualitzat la disposició."; +App::$strings["Edit System Page Description"] = "Editor del Sistema de Descripció de Pàgines"; +App::$strings["Layout not found."] = "No s'ha trobat cap disposició de pàgina."; +App::$strings["Module Name:"] = "Nom del mòdul:"; +App::$strings["Layout Help"] = "Ajuda per la disposició de pàgina"; +App::$strings["Share content from Firefox to \$Projectname"] = "Compartir contingut des de Firefox a \$Projectname"; +App::$strings["Activate the Firefox \$Projectname provider"] = "Activar el proveïdor de \$Projectname a Firefox"; +App::$strings["network"] = "xarxa"; +App::$strings["RSS"] = "RSS"; App::$strings["Permission Denied."] = "Permisos Denegats."; App::$strings["File not found."] = "Arxiu no torbat."; App::$strings["Edit file permissions"] = "Edita els permisos d'arxiu"; @@ -352,70 +419,13 @@ App::$strings["Copy/paste this URL to link file from a web page"] = "Copia/engan App::$strings["Share this file"] = "Comparteix l'arxiu"; App::$strings["Show URL to this file"] = "Mostra la URL d'aquest arxiu"; App::$strings["Notify your contacts about this file"] = "Notifica als teus contactes aquest arxiu"; -App::$strings["Apps"] = "Aplicatius"; -App::$strings["Item not available."] = "Article no disponible."; -App::$strings["Your service plan only allows %d channels."] = "El teu paquet de serveis només admet %d canals."; -App::$strings["Nothing to import."] = "No hi ha res a importar."; -App::$strings["Unable to download data from old server"] = "No s'han pogut descarregar les dades del servidor antic"; -App::$strings["Imported file is empty."] = "El fitxer importat està buit."; -App::$strings["Warning: Database versions differ by %1\$d updates."] = "Atenció: Les versions de la Base de Dades difereixen en %1\$d actualitzacions."; -App::$strings["Cloned channel not found. Import failed."] = "No s'ha pogut importar el canal perquè el canal clonat no s'ha trobat."; -App::$strings["No channel. Import failed."] = "Sense canal. No s'ha pogut importar."; -App::$strings["Import completed."] = "S'ha completat la importació."; -App::$strings["You must be logged in to use this feature."] = "Has d'estar registrat per fer servir aquesta funcionalitat."; -App::$strings["Import Channel"] = "Importa un canal"; -App::$strings["Use this form to import an existing channel from a different server/hub. You may retrieve the channel identity from the old server/hub via the network or provide an export file."] = "Empra aquest formulari per importar un canal existent en un altre servidor/concentrador. Pots recuperar el canal des de l'antic servidor/concentrador via la xarxa o mitjançant un fitxer d'exportació"; -App::$strings["File to Upload"] = "Fitxer a pujar"; -App::$strings["Or provide the old server/hub details"] = "O proveeix els detalls de l'antic servidor/node"; -App::$strings["Your old identity address (xyz@example.com)"] = "La teva adreça de canal antiga. El format és canal@exemple.org"; -App::$strings["Your old login email address"] = "La teva adreça de correu electrònic antiga"; -App::$strings["Your old login password"] = "La teva contrasenya antiga"; -App::$strings["For either option, please choose whether to make this hub your new primary address, or whether your old location should continue this role. You will be able to post from either location, but only one can be marked as the primary location for files, photos, and media."] = "Per a qualsevol de les opcions, escull si vols fer primària l'adreça d'aquest node o mantenir l'anterior com a primària. Podràs penjar entrades des de totes dues adreces, però per als fitxers, imatges i altres en cal una de primària."; -App::$strings["Make this hub my primary location"] = "Fes d'aquest node la meva ubicació primària"; -App::$strings["Import existing posts if possible (experimental - limited by available memory"] = "Importa les entrades existents si es possible (experimental - limitat per la memòria disponible"; -App::$strings["This process may take several minutes to complete. Please submit the form only once and leave this page open until finished."] = "Aquest procès pot trigar minuts en completar. Si et plau envia el formulari només una vegada i manté aquesta pàgina oberta fins que finalitzi."; -App::$strings["Unable to locate original post."] = "No s'ha pogut trobar l'entrada original."; -App::$strings["Empty post discarded."] = "S'ha descartat l'entrada perquè no té contingut."; -App::$strings["Executable content type not permitted to this channel."] = "No està permès el contingut de tipus executable en aquest canal."; -App::$strings["Duplicate post suppressed."] = "Publicació duplicada s'ha suprimit."; -App::$strings["System error. Post not saved."] = "Hi ha hagut un error del sistema. L'entrada no s'ha desat."; -App::$strings["Unable to obtain post information from database."] = "No s'ha pogut obtenir informació de l'entrada a la base de dades."; -App::$strings["You have reached your limit of %1$.0f top level posts."] = "Has assolit el teu límit de %1$.0f entrades (descomptant comentaris)."; -App::$strings["You have reached your limit of %1$.0f webpages."] = "Has assolit el teu limit de %1$.0f pàgines web."; App::$strings["Layouts"] = "Format Gràfic"; App::$strings["Comanche page description language help"] = "Pgina d'ajuda del llenguatge Comanche"; App::$strings["Layout Description"] = "Descripció del Disseny de la Pàgina"; +App::$strings["Created"] = "Creat"; +App::$strings["Edited"] = "Editat"; +App::$strings["Share"] = "Compartir"; App::$strings["Download PDL file"] = "Descarrega l'arxiu PDL"; -App::$strings["\$Projectname"] = "\$Projectname"; -App::$strings["Welcome to %s"] = "Benvingut a %s"; -App::$strings["First Name"] = "Nom"; -App::$strings["Last Name"] = "Cognoms"; -App::$strings["Nickname"] = "Àlies"; -App::$strings["Full Name"] = "Nom Sencer"; -App::$strings["Email"] = "Correu electrónic"; -App::$strings["Profile Photo"] = "Foto del Perfil"; -App::$strings["Profile Photo 16px"] = "Foto del Perfil 16px"; -App::$strings["Profile Photo 32px"] = "Foto del Perfil 32px"; -App::$strings["Profile Photo 48px"] = "Foto del Perfil 48px"; -App::$strings["Profile Photo 64px"] = "Foto del Perfil 64px"; -App::$strings["Profile Photo 80px"] = "Foto del Perfil 80px"; -App::$strings["Profile Photo 128px"] = "Foto del Perfil 128px"; -App::$strings["Timezone"] = "Zona horària"; -App::$strings["Homepage URL"] = "URL de la pàgina d'inici"; -App::$strings["Language"] = "Idioma"; -App::$strings["Birth Year"] = "Any de Naixement"; -App::$strings["Birth Month"] = "Mes de Naixement"; -App::$strings["Birth Day"] = "Dia de Naixement"; -App::$strings["Birthdate"] = "Aniversari"; -App::$strings["Gender"] = "Gènere"; -App::$strings["Male"] = "Masculí"; -App::$strings["Female"] = "Femení"; -App::$strings["webpage"] = "pàgina web"; -App::$strings["block"] = "bloc"; -App::$strings["layout"] = "disposició"; -App::$strings["menu"] = "menú"; -App::$strings["%s element installed"] = "%s element instal·lat"; -App::$strings["%s element installation failed"] = "%s instal·lació d'element va fallar"; App::$strings["Like/Dislike"] = "M'agrada / No m'agrada"; App::$strings["This action is restricted to members."] = "Aquesta acció està restringida als membres."; App::$strings["Please login with your \$Projectname ID or register as a new \$Projectname member to continue."] = "Entra amb la teva identitat \$Projectname o registra't a \$Projectname per continuar."; @@ -436,175 +446,103 @@ App::$strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$s no assistirà a % App::$strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$s potser assistirà a %3\$s de %2\$s"; App::$strings["Action completed."] = "S'ha completat l'acció."; App::$strings["Thank you."] = "Gràcies."; -App::$strings["Import completed"] = "S'ha completat la importació"; -App::$strings["Import Items"] = "Importa Articles"; -App::$strings["Use this form to import existing posts and content from an export file."] = "Empra aquest formulari per importar entrades existents i contingut d'un arxiu d'exportació."; -App::$strings["Total invitation limit exceeded."] = "El límit total invitacions s'ha superat."; -App::$strings["%s : Not a valid email address."] = "%s: adreça de correu electrònic no vàlida."; -App::$strings["Please join us on \$Projectname"] = "Si us plau uneix-te a nosaltres a \$Projectname."; -App::$strings["Invitation limit exceeded. Please contact your site administrator."] = "Límit d'invitacions excedit. Si us plau, poseu-vos en contacte amb l'administrador del lloc."; -App::$strings["%s : Message delivery failed."] = "%s : Entrega del Missatge fallida."; -App::$strings["%d message sent."] = array( - 0 => "%d missatge enviat.", - 1 => "%d missatges enviats.", -); -App::$strings["You have no more invitations available"] = "No té més invitacions disponibles"; -App::$strings["Send invitations"] = "Enviar invitacions"; -App::$strings["Enter email addresses, one per line:"] = "Introduïu les adreces de correu electrònic, una per línia:"; -App::$strings["Your message:"] = "El teu missatge:"; -App::$strings["Please join my community on \$Projectname."] = "Si us plau uneix-te la meva comunitat en \$Projectname."; -App::$strings["You will need to supply this invitation code:"] = "Hauràs de facilitar aquest codi d'invitació:"; -App::$strings["1. Register at any \$Projectname location (they are all inter-connected)"] = "1. Pots registrar-te a qualsevol node de \$Projectname (estàn tots interconnectats)"; -App::$strings["2. Enter my \$Projectname network address into the site searchbar."] = "2. Escriu la meva adreça de xarxa al \$Projectname, a la barra de cerca del lloc."; -App::$strings["or visit"] = "o visitar"; -App::$strings["3. Click [Connect]"] = "3. Clicar [Conectar]"; -App::$strings["Remote privacy information not available."] = "informació privada remota no disponible."; -App::$strings["Visible to:"] = "Visible per:"; -App::$strings["Location not found."] = "Situació que no es troba."; -App::$strings["Location lookup failed."] = "Ha fallat la cerca d'ubicació."; -App::$strings["Please select another location to become primary before removing the primary location."] = "Seleccioneu una altra ubicació per esdevenir primària abans de retirar la ubicació principal."; -App::$strings["Syncing locations"] = "Sincronitza ubicacions"; -App::$strings["No locations found."] = "No es troben els llocs."; -App::$strings["Manage Channel Locations"] = "Gestionar Ubicacions de Canal"; +App::$strings["Profile not found."] = "Perfil no trobat."; +App::$strings["Profile deleted."] = "Perfil eliminat."; +App::$strings["Profile-"] = "Perfil-"; +App::$strings["New profile created."] = "Nou perfil creat."; +App::$strings["Profile unavailable to clone."] = "Perfil que no es pot clonar."; +App::$strings["Profile unavailable to export."] = "Perfil que no es pot exportar."; +App::$strings["Profile Name is required."] = "Es requereix el Nom del Perfil."; +App::$strings["Marital Status"] = "Estat Marital"; +App::$strings["Romantic Partner"] = "Company/a Romàntic"; +App::$strings["Likes"] = "Agrada"; +App::$strings["Dislikes"] = "Desagrada"; +App::$strings["Work/Employment"] = "Treball/Feina"; +App::$strings["Religion"] = "Religió"; +App::$strings["Political Views"] = "Idees Polítiques"; +App::$strings["Sexual Preference"] = "Preferència Sexual"; +App::$strings["Homepage"] = "Pàgina Personal"; +App::$strings["Interests"] = "Interessos"; App::$strings["Address"] = "Adreça"; -App::$strings["Primary"] = "Primari"; -App::$strings["Drop"] = "Menysprea"; -App::$strings["Sync Now"] = "Sincronitza Ara"; -App::$strings["Please wait several minutes between consecutive operations."] = "Si us plau espera diversos minuts entre operacions consecutives."; -App::$strings["When possible, drop a location by logging into that website/hub and removing your channel."] = "Quan sigui possible, per desapareixer d'un lloc, accedeix a aquest lloc web/node i elimina el teu canal."; -App::$strings["Use this form to drop the location if the hub is no longer operating."] = "Empra aquest formulari per desapareixer del lloc si el node ja no està operatiu."; -App::$strings["Hub not found."] = "Node no trobat."; -App::$strings["Unable to lookup recipient."] = "Incapaç de trobar el destinatari."; -App::$strings["Unable to communicate with requested channel."] = "Incapaç de comunicar amb el canal demanat."; -App::$strings["Cannot verify requested channel."] = "No puc verificar el canal demanat."; -App::$strings["Selected channel has private message restrictions. Send failed."] = "El canal seleccionat te restriccions sobre els missatges privats. L'enviament ha fallat."; -App::$strings["Messages"] = "Missatges"; -App::$strings["Message recalled."] = "Recupera el missatge."; -App::$strings["Conversation removed."] = "Conversació eliminada."; -App::$strings["Expires YYYY-MM-DD HH:MM"] = "Expira YYYY-MM-DD HH:MM"; -App::$strings["Requested channel is not in this network"] = "El canal demanat no hi es en questa xarxa"; -App::$strings["Send Private Message"] = "Envia Missatge Privat"; -App::$strings["To:"] = "Per:"; -App::$strings["Subject:"] = "Assumpte:"; -App::$strings["Attach file"] = "Adjunta arxiu"; -App::$strings["Send"] = "Envia"; -App::$strings["Set expiration date"] = "Ajusta la data d'expiració"; -App::$strings["Delete message"] = "Elimina el missatge"; -App::$strings["Delivery report"] = "Informe d'entrega"; -App::$strings["Recall message"] = "Recupera el missatge"; -App::$strings["Message has been recalled."] = "El missatge s'ha recuperat."; -App::$strings["Delete Conversation"] = "Conversació esborrada"; -App::$strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Comunicació segura no disponible. Pots respondre des de la pàgina de perfil del remitent."; -App::$strings["Send Reply"] = "Envia Resposta"; -App::$strings["Your message for %s (%s):"] = "El teu missatge per %s (%s):"; -App::$strings["You have created %1$.0f of %2$.0f allowed channels."] = "Has creat %1$.0f de %2$.0f canals permesos."; -App::$strings["Create a new channel"] = "Crear un nou canal"; -App::$strings["Channel Manager"] = "Gestor de Canals"; -App::$strings["Current Channel"] = "Canal Actual"; -App::$strings["Switch to one of your channels by selecting it."] = "Canviar a un altre dels teus canals seleccionant-ho."; -App::$strings["Default Channel"] = "Canal per Defecte"; -App::$strings["Make Default"] = "Estableix com a Predeterminat"; -App::$strings["%d new messages"] = "%d missatges nous"; -App::$strings["%d new introductions"] = "%d noves presentacions"; -App::$strings["Delegated Channel"] = "Canal Delegat"; -App::$strings["No valid account found."] = "No es troba un compte vàlid."; -App::$strings["Password reset request issued. Check your email."] = "Sol·licitud de restabliment de contrasenya emesa. Consulta el teu correu electrònic."; -App::$strings["Site Member (%s)"] = "Lloc d'Usuari (%s)"; -App::$strings["Password reset requested at %s"] = "S'ha soŀlicitat restablir la contrasenya al hub %s"; -App::$strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Ha fallat el restabliment de contrasenya perquè la no s'ha pogut verificar soŀlicitud. Pot ser que ja ho hàgiu soŀlicitat abans."; -App::$strings["Password Reset"] = "Restabliment de contrasenya"; -App::$strings["Your password has been reset as requested."] = "S'ha restablert la vostra contrasenya."; -App::$strings["Your new password is"] = "La nova contrasenya és"; -App::$strings["Save or copy your new password - and then"] = "Desa o copia la nova contrasenya, i després"; -App::$strings["click here to login"] = "fes clic aquí per iniciar sessió"; -App::$strings["Your password may be changed from the Settings page after successful login."] = "Pots canviar la contrasenya a la pàgina Paràmetres, un cop iniciada la sessió."; -App::$strings["Your password has changed at %s"] = "La teva contrasenya a %s ha canviat"; -App::$strings["Forgot your Password?"] = "No recordes la contrasenya?"; -App::$strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Escriu la teva adreça de correu electrònic i envia per restablir la contrasenya. Després revisa el seu correu electrònic per obtenir més instruccions."; -App::$strings["Email Address"] = "Adreça electrònica"; -App::$strings["Reset"] = "Reajustar"; -App::$strings["Unable to update menu."] = "No s'ha pogut actualitzar el menú."; -App::$strings["Unable to create menu."] = "No s'ha pogut crear el menú."; -App::$strings["Menu Name"] = "Nom del menú"; -App::$strings["Unique name (not visible on webpage) - required"] = "Nom únic (no visible a la pàgina web) - requerit"; -App::$strings["Menu Title"] = "Títol del menú"; -App::$strings["Visible on webpage - leave empty for no title"] = "Visible a la pàgina web - deixar buit per a no posar títol"; -App::$strings["Allow Bookmarks"] = "Permetre Marcadors"; -App::$strings["Menu may be used to store saved bookmarks"] = "El menú es pot emprar per a guardar marcadors"; -App::$strings["Submit and proceed"] = "Envia i procedeix"; -App::$strings["Menus"] = "Menús"; -App::$strings["Bookmarks allowed"] = "Marcadors permesos"; -App::$strings["Delete this menu"] = "Esborra el menú"; -App::$strings["Edit menu contents"] = "Edita el contingut del menú"; -App::$strings["Edit this menu"] = "Edita el menú"; -App::$strings["Menu could not be deleted."] = "El menu no es pot esborrar."; -App::$strings["Menu not found."] = "Menú no trobat."; -App::$strings["Edit Menu"] = "Edita Menú"; -App::$strings["Add or remove entries to this menu"] = "Afegeix o esborra entrades a aquest menú"; -App::$strings["Menu name"] = "Nom del Menú"; -App::$strings["Must be unique, only seen by you"] = "Ha de ser únic, nomes vist per tú"; -App::$strings["Menu title"] = "Títol del menú"; -App::$strings["Menu title as seen by others"] = "Títol del menú vist pels altres"; -App::$strings["Allow bookmarks"] = "Marcadors permesos"; -App::$strings["Not found."] = "No trobat."; -App::$strings["__ctx:mood__ %1\$s is %2\$s"] = "%1\$s es %2\$s"; -App::$strings["Mood"] = "Ànim"; -App::$strings["Set your current mood and tell your friends"] = "Estableix el teu estat d'ànim actual i digues-li als teus amics"; -App::$strings["Profile Match"] = "Perfils compatibles"; -App::$strings["No keywords to match. Please add keywords to your default profile."] = "No tens paraules clau al perfil principal per poder cercar perfils semblants."; -App::$strings["is interested in:"] = "té interès en:"; -App::$strings["No matches"] = "No s'han trobat perfils compatibles"; -App::$strings["No such group"] = "No existeix el grup"; -App::$strings["No such channel"] = "No existeix el canal"; -App::$strings["forum"] = "fòrum"; -App::$strings["Search Results For:"] = "Cerca resultats per:"; -App::$strings["Privacy group is empty"] = "el grup privat està vuit"; -App::$strings["Privacy group: "] = "Grup privat:"; -App::$strings["Invalid connection."] = "La connexió és invàlida."; -App::$strings["No more system notifications."] = "No hi ha més notificacions del sistema."; -App::$strings["System Notifications"] = "Notificacions del sistema"; -App::$strings["Unable to create element."] = "Incapaç de crear l'element."; -App::$strings["Unable to update menu element."] = "Incapaç d'actualitzar un element del menú."; -App::$strings["Unable to add menu element."] = "Incapaç d'afegir l'element del menú."; -App::$strings["Menu Item Permissions"] = "Permisos de l'Article del Menú"; -App::$strings["(click to open/close)"] = "(clica per obrir/tancar)"; -App::$strings["Link Name"] = "Nom de l'Enllaç"; -App::$strings["Link or Submenu Target"] = "Enllaç o Submenú Objectiu"; -App::$strings["Enter URL of the link or select a menu name to create a submenu"] = "Entra la URL de l'enlla´o tria un nom de menú per crear un submenú"; -App::$strings["Use magic-auth if available"] = "Empra magic-auth si esta disponible"; -App::$strings["Open link in new window"] = "Obrir l'enllaç en una nova finestra"; -App::$strings["Order in list"] = "Ordre per llista"; -App::$strings["Higher numbers will sink to bottom of listing"] = "Els números més alts aniràn al fons de la llista"; -App::$strings["Submit and finish"] = "Envia i termina"; -App::$strings["Submit and continue"] = "Envia i continua"; -App::$strings["Menu:"] = "Menú:"; -App::$strings["Link Target"] = "Enllaç Objectiu"; -App::$strings["Edit menu"] = "Edita menú"; -App::$strings["Edit element"] = "Edita element"; -App::$strings["Drop element"] = "Deixa anar element"; -App::$strings["New element"] = "Nou element"; -App::$strings["Edit this menu container"] = "Edita aquest contenidor de menú"; -App::$strings["Add menu element"] = "Afegeix element de menú"; -App::$strings["Delete this menu item"] = "Esborra aquest article del menú"; -App::$strings["Edit this menu item"] = "Edita aquest article del menú"; -App::$strings["Menu item not found."] = "Article del menú no trobat."; -App::$strings["Menu item deleted."] = "Article del menú eliminat."; -App::$strings["Menu item could not be deleted."] = "Article del menú no es pot eliminar."; -App::$strings["Edit Menu Element"] = "Editar Element del Menú"; -App::$strings["Link text"] = "Enllaç de text"; -App::$strings["Name or caption"] = "Nom o llegenda"; -App::$strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\""] = "Exemples: \"Pep Gomila\", \"Manel i els seus Cavalls\", \"Fútbol\", \"Grup d'Aviadors\""; -App::$strings["Choose a short nickname"] = "Tria un àlies curt"; -App::$strings["Your nickname will be used to create an easy to remember channel address e.g. nickname%s"] = "El teu àlies serà emprat per crear un nom fàcil per recordar l'adreça del canal p.e. àlies%s"; -App::$strings["Channel role and privacy"] = "Funció i privacitat del canal"; -App::$strings["Select a channel role with your privacy requirements."] = "Tria una funció pel canal amb els teus requisits de privacitat."; -App::$strings["Read more about roles"] = "Llegix més sobre els rols"; -App::$strings["Create Channel"] = "Crea un Canal"; -App::$strings["A channel is your identity on this network. It can represent a person, a blog, or a forum to name a few. Channels can make connections with other channels to share information with highly detailed permissions."] = "Un canal es la tva identitat en aquesta xarxa. Pot representar una persona, un bloc, o un fòrum per anomenar alguns. Els canals poden connectar-se amb altres canals per compartir informació amb permisos molt detallats."; -App::$strings["or import an existing channel from another location."] = "o importa un canal existent des d'un altre ubicació."; -App::$strings["Invalid request identifier."] = "Sol·licitud d'identificació invàlida."; -App::$strings["Discard"] = "Descarta"; -App::$strings["Mark all system notifications seen"] = "Marca totes les notificacions vistes"; +App::$strings["Profile updated."] = "Perfil actualitzat."; +App::$strings["Hide your connections list from viewers of this profile"] = "Amaga dels curiosos la teva llista de connexions d'aquest perfil"; +App::$strings["Edit Profile Details"] = "Edita els Detalls del Perfil"; +App::$strings["View this profile"] = "Veure aquest perfil"; +App::$strings["Edit visibility"] = "Editar visibilitat"; +App::$strings["Profile Tools"] = "Eines per Perfils"; +App::$strings["Change cover photo"] = "Canviar la foto de portada"; +App::$strings["Change profile photo"] = "Canviar la foto del perfil"; +App::$strings["Create a new profile using these settings"] = "Crea un perfil nou amb aquests ajustos"; +App::$strings["Clone this profile"] = "Clonar aquest perfil"; +App::$strings["Delete this profile"] = "Elimina aquest perfil"; +App::$strings["Add profile things"] = "Afegeix coses al perfil"; +App::$strings["Personal"] = "Personal"; +App::$strings["Relation"] = "Relació"; +App::$strings["Miscellaneous"] = "Miscelania"; +App::$strings["Import profile from file"] = "Importa perfil des d'un arxiu"; +App::$strings["Export profile to file"] = "Exporta perfil a un arxiu"; +App::$strings["Your gender"] = "El teu gènere"; +App::$strings["Marital status"] = "Estat marital"; +App::$strings["Sexual preference"] = "Preferència sexual"; +App::$strings["Profile name"] = "Nom del perfil"; +App::$strings["This is your default profile."] = "Aquest es el teu perfil per defecte"; +App::$strings["Your full name"] = "El teu nom complet"; +App::$strings["Title/Description"] = "Títol/Descripció"; +App::$strings["Street address"] = "Carrer"; +App::$strings["Locality/City"] = "Població/Ciutat"; +App::$strings["Region/State"] = "Regió/Estat"; +App::$strings["Postal/Zip code"] = "Codi Postal"; +App::$strings["Country"] = "País"; +App::$strings["Who (if applicable)"] = "Qui (si es aplicable)"; +App::$strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Examples: cathy123, Cathy Williams, cathy@example.com"; +App::$strings["Since (date)"] = "Des de (data)"; +App::$strings["Tell us about yourself"] = "Quelcom sobre tu"; +App::$strings["Hometown"] = "Ciutat Natal"; +App::$strings["Political views"] = "Idees polítiques"; +App::$strings["Religious views"] = "Creences religioses"; +App::$strings["Keywords used in directory listings"] = "Paraules clau emprades en els llistats de directoris"; +App::$strings["Example: fishing photography software"] = "Exemple: software de fotografia submarina"; +App::$strings["Musical interests"] = "Interessos Musicals"; +App::$strings["Books, literature"] = "Llibres, literatura"; +App::$strings["Television"] = "Televisió"; +App::$strings["Film/Dance/Culture/Entertainment"] = "Pel·lícules/Dansa/Cultura/Entreteniment"; +App::$strings["Hobbies/Interests"] = "Aficions/Interessos"; +App::$strings["Love/Romance"] = "Amor/Romace"; +App::$strings["School/Education"] = "Escola/Educació"; +App::$strings["Contact information and social networks"] = "Informació de contacte i xarxes socials"; +App::$strings["My other channels"] = "Els meus altres canals"; +App::$strings["Profile Image"] = "Imatge del Perfil"; +App::$strings["Edit Profiles"] = "Editar Perfils"; +App::$strings["Your service plan only allows %d channels."] = "El teu paquet de serveis només admet %d canals."; +App::$strings["Nothing to import."] = "No hi ha res a importar."; +App::$strings["Unable to download data from old server"] = "No s'han pogut descarregar les dades del servidor antic"; +App::$strings["Imported file is empty."] = "El fitxer importat està buit."; +App::$strings["Warning: Database versions differ by %1\$d updates."] = "Atenció: Les versions de la Base de Dades difereixen en %1\$d actualitzacions."; +App::$strings["Cloned channel not found. Import failed."] = "No s'ha pogut importar el canal perquè el canal clonat no s'ha trobat."; +App::$strings["No channel. Import failed."] = "Sense canal. No s'ha pogut importar."; +App::$strings["Import completed."] = "S'ha completat la importació."; +App::$strings["You must be logged in to use this feature."] = "Has d'estar registrat per fer servir aquesta funcionalitat."; +App::$strings["Import Channel"] = "Importa un canal"; +App::$strings["Use this form to import an existing channel from a different server/hub. You may retrieve the channel identity from the old server/hub via the network or provide an export file."] = "Empra aquest formulari per importar un canal existent en un altre servidor/concentrador. Pots recuperar el canal des de l'antic servidor/concentrador via la xarxa o mitjançant un fitxer d'exportació"; +App::$strings["File to Upload"] = "Fitxer a pujar"; +App::$strings["Or provide the old server/hub details"] = "O proveeix els detalls de l'antic servidor/node"; +App::$strings["Your old identity address (xyz@example.com)"] = "La teva adreça de canal antiga. El format és canal@exemple.org"; +App::$strings["Your old login email address"] = "La teva adreça de correu electrònic antiga"; +App::$strings["Your old login password"] = "La teva contrasenya antiga"; +App::$strings["For either option, please choose whether to make this hub your new primary address, or whether your old location should continue this role. You will be able to post from either location, but only one can be marked as the primary location for files, photos, and media."] = "Per a qualsevol de les opcions, escull si vols fer primària l'adreça d'aquest node o mantenir l'anterior com a primària. Podràs penjar entrades des de totes dues adreces, però per als fitxers, imatges i altres en cal una de primària."; +App::$strings["Make this hub my primary location"] = "Fes d'aquest node la meva ubicació primària"; +App::$strings["Import existing posts if possible (experimental - limited by available memory"] = "Importa les entrades existents si es possible (experimental - limitat per la memòria disponible"; +App::$strings["This process may take several minutes to complete. Please submit the form only once and leave this page open until finished."] = "Aquest procès pot trigar minuts en completar. Si et plau envia el formulari només una vegada i manté aquesta pàgina oberta fins que finalitzi."; +App::$strings["\$Projectname"] = "\$Projectname"; +App::$strings["Welcome to %s"] = "Benvingut a %s"; +App::$strings["Unable to locate original post."] = "No s'ha pogut trobar l'entrada original."; +App::$strings["Empty post discarded."] = "S'ha descartat l'entrada perquè no té contingut."; +App::$strings["Executable content type not permitted to this channel."] = "No està permès el contingut de tipus executable en aquest canal."; +App::$strings["Duplicate post suppressed."] = "Publicació duplicada s'ha suprimit."; +App::$strings["System error. Post not saved."] = "Hi ha hagut un error del sistema. L'entrada no s'ha desat."; +App::$strings["Unable to obtain post information from database."] = "No s'ha pogut obtenir informació de l'entrada a la base de dades."; +App::$strings["You have reached your limit of %1$.0f top level posts."] = "Has assolit el teu límit de %1$.0f entrades (descomptant comentaris)."; +App::$strings["You have reached your limit of %1$.0f webpages."] = "Has assolit el teu limit de %1$.0f pàgines web."; App::$strings["Page owner information could not be retrieved."] = "La informació del propietari de la pàgina no va poder ser recuperada"; App::$strings["Profile Photos"] = "Fotos del Perfil"; App::$strings["Album not found."] = "Àlbum no trobat"; @@ -673,122 +611,164 @@ App::$strings["__ctx:noun__ Dislikes"] = "Desagrada"; App::$strings["Close"] = "Tanca"; App::$strings["View Album"] = "Mostra'n l'àlbum"; App::$strings["Recent Photos"] = "Imatges recents"; -App::$strings["sent you a private message"] = "Se t'ha enviat un missatge privat"; -App::$strings["added your channel"] = "el teu canal s'ha afegit"; -App::$strings["g A l F d"] = "g A l F d"; -App::$strings["[today]"] = "[avui]"; -App::$strings["posted an event"] = "enviat un esdeveniment"; -App::$strings["Unable to find your hub."] = "No es possible trobar el node"; -App::$strings["Post successful."] = "Entrada realitzada amb èxit. "; -App::$strings["OpenID protocol error. No ID returned."] = "Error del protocol OpenID. No ha retornat ID"; -App::$strings["Login failed."] = "Identificació fallida."; -App::$strings["Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."] = "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."; -App::$strings["This setting requires special processing and editing has been blocked."] = "Aquest ajust requereix un procés espedial i l'edició esta bloquejada."; -App::$strings["Configuration Editor"] = "Editor de Configuració"; -App::$strings["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."] = "atenció: Realitzar segons quins ajustos pot fer el canal inoperable. Deixa aquesta pàgina si no estas segur i tens suficients coneixements sobre l'ús correcte d'aquesta característica."; -App::$strings["Layout updated."] = "S'ha actualitzat la disposició."; -App::$strings["Edit System Page Description"] = "Editor del Sistema de Descripció de Pàgines"; -App::$strings["Layout not found."] = "No s'ha trobat cap disposició de pàgina."; -App::$strings["Module Name:"] = "Nom del mòdul:"; -App::$strings["Layout Help"] = "Ajuda per la disposició de pàgina"; -App::$strings["Poke"] = "Esperonar"; -App::$strings["Poke somebody"] = "Emprenyar algú"; -App::$strings["Poke/Prod"] = "Esperonat/Picat"; -App::$strings["Poke, prod or do other things to somebody"] = "emprenyar, picar o fer altres coses a algú"; -App::$strings["Recipient"] = "Destinatari"; -App::$strings["Choose what you wish to do to recipient"] = "Tria que vols fer amb el destinatari"; -App::$strings["Make this post private"] = "Fer aquesta entrada privada"; -App::$strings["Fetching URL returns error: %1\$s"] = "URL sol·licitada retorna error: %1\$s"; -App::$strings["Profile not found."] = "Perfil no trobat."; -App::$strings["Profile deleted."] = "Perfil eliminat."; -App::$strings["Profile-"] = "Perfil-"; -App::$strings["New profile created."] = "Nou perfil creat."; -App::$strings["Profile unavailable to clone."] = "Perfil que no es pot clonar."; -App::$strings["Profile unavailable to export."] = "Perfil que no es pot exportar."; -App::$strings["Profile Name is required."] = "Es requereix el Nom del Perfil."; -App::$strings["Marital Status"] = "Estat Marital"; -App::$strings["Romantic Partner"] = "Company/a Romàntic"; -App::$strings["Likes"] = "Agrada"; -App::$strings["Dislikes"] = "Desagrada"; -App::$strings["Work/Employment"] = "Treball/Feina"; -App::$strings["Religion"] = "Religió"; -App::$strings["Political Views"] = "Idees Polítiques"; -App::$strings["Sexual Preference"] = "Preferència Sexual"; -App::$strings["Homepage"] = "Pàgina Personal"; -App::$strings["Interests"] = "Interessos"; -App::$strings["Profile updated."] = "Perfil actualitzat."; -App::$strings["Hide your connections list from viewers of this profile"] = "Amaga dels curiosos la teva llista de connexions d'aquest perfil"; -App::$strings["Edit Profile Details"] = "Edita els Detalls del Perfil"; -App::$strings["View this profile"] = "Veure aquest perfil"; -App::$strings["Edit visibility"] = "Editar visibilitat"; -App::$strings["Profile Tools"] = "Eines per Perfils"; -App::$strings["Change cover photo"] = "Canviar la foto de portada"; -App::$strings["Change profile photo"] = "Canviar la foto del perfil"; -App::$strings["Create a new profile using these settings"] = "Crea un perfil nou amb aquests ajustos"; -App::$strings["Clone this profile"] = "Clonar aquest perfil"; -App::$strings["Delete this profile"] = "Elimina aquest perfil"; -App::$strings["Add profile things"] = "Afegeix coses al perfil"; -App::$strings["Personal"] = "Personal"; -App::$strings["Relation"] = "Relació"; -App::$strings["Miscellaneous"] = "Miscelania"; -App::$strings["Import profile from file"] = "Importa perfil des d'un arxiu"; -App::$strings["Export profile to file"] = "Exporta perfil a un arxiu"; -App::$strings["Your gender"] = "El teu gènere"; -App::$strings["Marital status"] = "Estat marital"; -App::$strings["Sexual preference"] = "Preferència sexual"; -App::$strings["Profile name"] = "Nom del perfil"; -App::$strings["This is your default profile."] = "Aquest es el teu perfil per defecte"; -App::$strings["Your full name"] = "El teu nom complet"; -App::$strings["Title/Description"] = "Títol/Descripció"; -App::$strings["Street address"] = "Carrer"; -App::$strings["Locality/City"] = "Població/Ciutat"; -App::$strings["Region/State"] = "Regió/Estat"; -App::$strings["Postal/Zip code"] = "Codi Postal"; -App::$strings["Country"] = "País"; -App::$strings["Who (if applicable)"] = "Qui (si es aplicable)"; -App::$strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Examples: cathy123, Cathy Williams, cathy@example.com"; -App::$strings["Since (date)"] = "Des de (data)"; -App::$strings["Tell us about yourself"] = "Quelcom sobre tu"; -App::$strings["Hometown"] = "Ciutat Natal"; -App::$strings["Political views"] = "Idees polítiques"; -App::$strings["Religious views"] = "Creences religioses"; -App::$strings["Keywords used in directory listings"] = "Paraules clau emprades en els llistats de directoris"; -App::$strings["Example: fishing photography software"] = "Exemple: software de fotografia submarina"; -App::$strings["Musical interests"] = "Interessos Musicals"; -App::$strings["Books, literature"] = "Llibres, literatura"; -App::$strings["Television"] = "Televisió"; -App::$strings["Film/Dance/Culture/Entertainment"] = "Pel·lícules/Dansa/Cultura/Entreteniment"; -App::$strings["Hobbies/Interests"] = "Aficions/Interessos"; -App::$strings["Love/Romance"] = "Amor/Romace"; -App::$strings["School/Education"] = "Escola/Educació"; -App::$strings["Contact information and social networks"] = "Informació de contacte i xarxes socials"; -App::$strings["My other channels"] = "Els meus altres canals"; -App::$strings["Profile Image"] = "Imatge del Perfil"; -App::$strings["Edit Profiles"] = "Editar Perfils"; -App::$strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Refresca la memòria cau del navegador si la foto no s'actualitza immediatament. Dreceres: «Ctrl+F5» i «Ctrl+Maj+R»"; -App::$strings["Upload Profile Photo"] = "Puja una Foto pel Perfil"; -App::$strings["Invalid profile identifier."] = "Identificador invàlid de perfil."; -App::$strings["Profile Visibility Editor"] = "Perfil del Editor de Visibilitat"; -App::$strings["Profile"] = "Perfil"; -App::$strings["Click on a contact to add or remove."] = "Clica sobre el contacte per afegir o esborrar."; -App::$strings["Visible To"] = "Visible per"; -App::$strings["Public Hubs"] = "Nodes Públics"; -App::$strings["The listed hubs allow public registration for the \$Projectname network. All hubs in the network are interlinked so membership on any of them conveys membership in the network as a whole. Some hubs may require subscription or provide tiered service plans. The hub itself may provide additional details."] = "Els nodes llistats permeten registrar usuaris de la xarxa \$Projectname. Com que tots els nodes estan enllaçats entre ells, la identitat és vàlida a tota la xarxa. Alguns nodes poden demanar subscripció o oferir serveis addicional de pagament. Per a més detalls, proveu de seguir els enllaços dels proveïdors."; -App::$strings["Hub URL"] = "URL del Node"; -App::$strings["Access Type"] = "Tipus d'accés"; -App::$strings["Registration Policy"] = "Condicions de registre"; -App::$strings["Stats"] = "Estadístiques"; -App::$strings["Software"] = "Programari"; -App::$strings["Ratings"] = "Valoracions"; -App::$strings["Rate"] = "Puntua"; -App::$strings["Website:"] = "Lloc web:"; -App::$strings["Remote Channel [%s] (not yet known on this site)"] = "Canal Remot [%s] (encara no es coneix en aquest lloc)"; -App::$strings["Rating (this information is public)"] = "Valoració (aquesta informació és pública)"; -App::$strings["Optionally explain your rating (this information is public)"] = "Opcionalment pots explicar la teva qualificació (aquesta informació és pública)"; -App::$strings["No ratings"] = "No valorat"; -App::$strings["Rating: "] = "Valoració:"; -App::$strings["Website: "] = "Lloc web:"; -App::$strings["Description: "] = "Descripció:"; +App::$strings["Remote privacy information not available."] = "informació privada remota no disponible."; +App::$strings["Visible to:"] = "Visible per:"; +App::$strings["Import completed"] = "S'ha completat la importació"; +App::$strings["Import Items"] = "Importa Articles"; +App::$strings["Use this form to import existing posts and content from an export file."] = "Empra aquest formulari per importar entrades existents i contingut d'un arxiu d'exportació."; +App::$strings["Total invitation limit exceeded."] = "El límit total invitacions s'ha superat."; +App::$strings["%s : Not a valid email address."] = "%s: adreça de correu electrònic no vàlida."; +App::$strings["Please join us on \$Projectname"] = "Si us plau uneix-te a nosaltres a \$Projectname."; +App::$strings["Invitation limit exceeded. Please contact your site administrator."] = "Límit d'invitacions excedit. Si us plau, poseu-vos en contacte amb l'administrador del lloc."; +App::$strings["%s : Message delivery failed."] = "%s : Entrega del Missatge fallida."; +App::$strings["%d message sent."] = array( + 0 => "%d missatge enviat.", + 1 => "%d missatges enviats.", +); +App::$strings["You have no more invitations available"] = "No té més invitacions disponibles"; +App::$strings["Send invitations"] = "Enviar invitacions"; +App::$strings["Enter email addresses, one per line:"] = "Introduïu les adreces de correu electrònic, una per línia:"; +App::$strings["Your message:"] = "El teu missatge:"; +App::$strings["Please join my community on \$Projectname."] = "Si us plau uneix-te la meva comunitat en \$Projectname."; +App::$strings["You will need to supply this invitation code:"] = "Hauràs de facilitar aquest codi d'invitació:"; +App::$strings["1. Register at any \$Projectname location (they are all inter-connected)"] = "1. Pots registrar-te a qualsevol node de \$Projectname (estàn tots interconnectats)"; +App::$strings["2. Enter my \$Projectname network address into the site searchbar."] = "2. Escriu la meva adreça de xarxa al \$Projectname, a la barra de cerca del lloc."; +App::$strings["or visit"] = "o visitar"; +App::$strings["3. Click [Connect]"] = "3. Clicar [Conectar]"; +App::$strings["Location not found."] = "Situació que no es troba."; +App::$strings["Location lookup failed."] = "Ha fallat la cerca d'ubicació."; +App::$strings["Please select another location to become primary before removing the primary location."] = "Seleccioneu una altra ubicació per esdevenir primària abans de retirar la ubicació principal."; +App::$strings["Syncing locations"] = "Sincronitza ubicacions"; +App::$strings["No locations found."] = "No es troben els llocs."; +App::$strings["Manage Channel Locations"] = "Gestionar Ubicacions de Canal"; +App::$strings["Primary"] = "Primari"; +App::$strings["Drop"] = "Menysprea"; +App::$strings["Sync Now"] = "Sincronitza Ara"; +App::$strings["Please wait several minutes between consecutive operations."] = "Si us plau espera diversos minuts entre operacions consecutives."; +App::$strings["When possible, drop a location by logging into that website/hub and removing your channel."] = "Quan sigui possible, per desapareixer d'un lloc, accedeix a aquest lloc web/node i elimina el teu canal."; +App::$strings["Use this form to drop the location if the hub is no longer operating."] = "Empra aquest formulari per desapareixer del lloc si el node ja no està operatiu."; +App::$strings["Hub not found."] = "Node no trobat."; +App::$strings["Unable to lookup recipient."] = "Incapaç de trobar el destinatari."; +App::$strings["Unable to communicate with requested channel."] = "Incapaç de comunicar amb el canal demanat."; +App::$strings["Cannot verify requested channel."] = "No puc verificar el canal demanat."; +App::$strings["Selected channel has private message restrictions. Send failed."] = "El canal seleccionat te restriccions sobre els missatges privats. L'enviament ha fallat."; +App::$strings["Messages"] = "Missatges"; +App::$strings["Message recalled."] = "Recupera el missatge."; +App::$strings["Conversation removed."] = "Conversació eliminada."; +App::$strings["Expires YYYY-MM-DD HH:MM"] = "Expira YYYY-MM-DD HH:MM"; +App::$strings["Requested channel is not in this network"] = "El canal demanat no hi es en questa xarxa"; +App::$strings["Send Private Message"] = "Envia Missatge Privat"; +App::$strings["To:"] = "Per:"; +App::$strings["Subject:"] = "Assumpte:"; +App::$strings["Attach file"] = "Adjunta arxiu"; +App::$strings["Send"] = "Envia"; +App::$strings["Set expiration date"] = "Ajusta la data d'expiració"; +App::$strings["Delete message"] = "Elimina el missatge"; +App::$strings["Delivery report"] = "Informe d'entrega"; +App::$strings["Recall message"] = "Recupera el missatge"; +App::$strings["Message has been recalled."] = "El missatge s'ha recuperat."; +App::$strings["Delete Conversation"] = "Conversació esborrada"; +App::$strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Comunicació segura no disponible. Pots respondre des de la pàgina de perfil del remitent."; +App::$strings["Send Reply"] = "Envia Resposta"; +App::$strings["Your message for %s (%s):"] = "El teu missatge per %s (%s):"; +App::$strings["You have created %1$.0f of %2$.0f allowed channels."] = "Has creat %1$.0f de %2$.0f canals permesos."; +App::$strings["Create a new channel"] = "Crear un nou canal"; +App::$strings["Channel Manager"] = "Gestor de Canals"; +App::$strings["Current Channel"] = "Canal Actual"; +App::$strings["Switch to one of your channels by selecting it."] = "Canviar a un altre dels teus canals seleccionant-ho."; +App::$strings["Default Channel"] = "Canal per Defecte"; +App::$strings["Make Default"] = "Estableix com a Predeterminat"; +App::$strings["%d new messages"] = "%d missatges nous"; +App::$strings["%d new introductions"] = "%d noves presentacions"; +App::$strings["Delegated Channel"] = "Canal Delegat"; +App::$strings["Unable to update menu."] = "No s'ha pogut actualitzar el menú."; +App::$strings["Unable to create menu."] = "No s'ha pogut crear el menú."; +App::$strings["Menu Name"] = "Nom del menú"; +App::$strings["Unique name (not visible on webpage) - required"] = "Nom únic (no visible a la pàgina web) - requerit"; +App::$strings["Menu Title"] = "Títol del menú"; +App::$strings["Visible on webpage - leave empty for no title"] = "Visible a la pàgina web - deixar buit per a no posar títol"; +App::$strings["Allow Bookmarks"] = "Permetre Marcadors"; +App::$strings["Menu may be used to store saved bookmarks"] = "El menú es pot emprar per a guardar marcadors"; +App::$strings["Submit and proceed"] = "Envia i procedeix"; +App::$strings["Menus"] = "Menús"; +App::$strings["Bookmarks allowed"] = "Marcadors permesos"; +App::$strings["Delete this menu"] = "Esborra el menú"; +App::$strings["Edit menu contents"] = "Edita el contingut del menú"; +App::$strings["Edit this menu"] = "Edita el menú"; +App::$strings["Menu could not be deleted."] = "El menu no es pot esborrar."; +App::$strings["Menu not found."] = "Menú no trobat."; +App::$strings["Edit Menu"] = "Edita Menú"; +App::$strings["Add or remove entries to this menu"] = "Afegeix o esborra entrades a aquest menú"; +App::$strings["Menu name"] = "Nom del Menú"; +App::$strings["Must be unique, only seen by you"] = "Ha de ser únic, nomes vist per tú"; +App::$strings["Menu title"] = "Títol del menú"; +App::$strings["Menu title as seen by others"] = "Títol del menú vist pels altres"; +App::$strings["Allow bookmarks"] = "Marcadors permesos"; +App::$strings["Not found."] = "No trobat."; +App::$strings["No valid account found."] = "No es troba un compte vàlid."; +App::$strings["Password reset request issued. Check your email."] = "Sol·licitud de restabliment de contrasenya emesa. Consulta el teu correu electrònic."; +App::$strings["Site Member (%s)"] = "Lloc d'Usuari (%s)"; +App::$strings["Password reset requested at %s"] = "S'ha soŀlicitat restablir la contrasenya al hub %s"; +App::$strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Ha fallat el restabliment de contrasenya perquè la no s'ha pogut verificar soŀlicitud. Pot ser que ja ho hàgiu soŀlicitat abans."; +App::$strings["Password Reset"] = "Restabliment de contrasenya"; +App::$strings["Your password has been reset as requested."] = "S'ha restablert la vostra contrasenya."; +App::$strings["Your new password is"] = "La nova contrasenya és"; +App::$strings["Save or copy your new password - and then"] = "Desa o copia la nova contrasenya, i després"; +App::$strings["click here to login"] = "fes clic aquí per iniciar sessió"; +App::$strings["Your password may be changed from the Settings page after successful login."] = "Pots canviar la contrasenya a la pàgina Paràmetres, un cop iniciada la sessió."; +App::$strings["Your password has changed at %s"] = "La teva contrasenya a %s ha canviat"; +App::$strings["Forgot your Password?"] = "No recordes la contrasenya?"; +App::$strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Escriu la teva adreça de correu electrònic i envia per restablir la contrasenya. Després revisa el seu correu electrònic per obtenir més instruccions."; +App::$strings["Email Address"] = "Adreça electrònica"; +App::$strings["Reset"] = "Reajustar"; +App::$strings["__ctx:mood__ %1\$s is %2\$s"] = "%1\$s es %2\$s"; +App::$strings["Mood"] = "Ànim"; +App::$strings["Set your current mood and tell your friends"] = "Estableix el teu estat d'ànim actual i digues-li als teus amics"; +App::$strings["No such group"] = "No existeix el grup"; +App::$strings["No such channel"] = "No existeix el canal"; +App::$strings["forum"] = "fòrum"; +App::$strings["Search Results For:"] = "Cerca resultats per:"; +App::$strings["Privacy group is empty"] = "el grup privat està vuit"; +App::$strings["Privacy group: "] = "Grup privat:"; +App::$strings["Invalid connection."] = "La connexió és invàlida."; +App::$strings["No more system notifications."] = "No hi ha més notificacions del sistema."; +App::$strings["System Notifications"] = "Notificacions del sistema"; +App::$strings["Profile Match"] = "Perfils compatibles"; +App::$strings["No keywords to match. Please add keywords to your default profile."] = "No tens paraules clau al perfil principal per poder cercar perfils semblants."; +App::$strings["is interested in:"] = "té interès en:"; +App::$strings["No matches"] = "No s'han trobat perfils compatibles"; +App::$strings["Posts and comments"] = "Entrades i comentaris"; +App::$strings["Only posts"] = "Només entrades"; +App::$strings["Insufficient permissions. Request redirected to profile page."] = "Permisos insuficients. Petició redirigida a la pàgina del perfil."; +App::$strings["Unable to create element."] = "Incapaç de crear l'element."; +App::$strings["Unable to update menu element."] = "Incapaç d'actualitzar un element del menú."; +App::$strings["Unable to add menu element."] = "Incapaç d'afegir l'element del menú."; +App::$strings["Menu Item Permissions"] = "Permisos de l'Article del Menú"; +App::$strings["(click to open/close)"] = "(clica per obrir/tancar)"; +App::$strings["Link Name"] = "Nom de l'Enllaç"; +App::$strings["Link or Submenu Target"] = "Enllaç o Submenú Objectiu"; +App::$strings["Enter URL of the link or select a menu name to create a submenu"] = "Entra la URL de l'enlla´o tria un nom de menú per crear un submenú"; +App::$strings["Use magic-auth if available"] = "Empra magic-auth si esta disponible"; +App::$strings["Open link in new window"] = "Obrir l'enllaç en una nova finestra"; +App::$strings["Order in list"] = "Ordre per llista"; +App::$strings["Higher numbers will sink to bottom of listing"] = "Els números més alts aniràn al fons de la llista"; +App::$strings["Submit and finish"] = "Envia i termina"; +App::$strings["Submit and continue"] = "Envia i continua"; +App::$strings["Menu:"] = "Menú:"; +App::$strings["Link Target"] = "Enllaç Objectiu"; +App::$strings["Edit menu"] = "Edita menú"; +App::$strings["Edit element"] = "Edita element"; +App::$strings["Drop element"] = "Deixa anar element"; +App::$strings["New element"] = "Nou element"; +App::$strings["Edit this menu container"] = "Edita aquest contenidor de menú"; +App::$strings["Add menu element"] = "Afegeix element de menú"; +App::$strings["Delete this menu item"] = "Esborra aquest article del menú"; +App::$strings["Edit this menu item"] = "Edita aquest article del menú"; +App::$strings["Menu item not found."] = "Article del menú no trobat."; +App::$strings["Menu item deleted."] = "Article del menú eliminat."; +App::$strings["Menu item could not be deleted."] = "Article del menú no es pot eliminar."; +App::$strings["Edit Menu Element"] = "Editar Element del Menú"; +App::$strings["Link text"] = "Enllaç de text"; App::$strings["Theme settings updated."] = "Ajustos de tema actualitzats."; App::$strings["# Accounts"] = "# Comptes"; App::$strings["# blocked accounts"] = "# comptes bloquejats"; @@ -802,7 +782,7 @@ App::$strings["Your software should be updated"] = "El teu programari cal que s' App::$strings["Administration"] = "Administració"; App::$strings["Summary"] = "Sumari"; App::$strings["Registered accounts"] = "Comptes registrades"; -App::$strings["Pending registrations"] = "Comptes pendents de registre"; +App::$strings["Pending registrations"] = "Comptes pendents d'inscripció"; App::$strings["Registered channels"] = "Canals registrats"; App::$strings["Active plugins"] = "Plugins actius"; App::$strings["Version"] = "Versió"; @@ -819,7 +799,7 @@ App::$strings["My site has paid access only"] = "El meu lloc te accès per pagam App::$strings["My site has free access only"] = "El meu lloc te lliure accés"; App::$strings["My site offers free accounts with optional paid upgrades"] = "El meu lloc te comptes gratis amb opció de millores per pagament"; App::$strings["Site"] = "Lloc"; -App::$strings["Registration"] = "Registre"; +App::$strings["Registration"] = "Inscripcions"; App::$strings["File upload"] = "Pujar arxiu"; App::$strings["Policies"] = "Polítiques"; App::$strings["Advanced"] = "Avançat"; @@ -836,12 +816,12 @@ App::$strings["Allow Feeds as Connections"] = "Permetre Retroalimentadors com Co App::$strings["(Heavy system resource usage)"] = "(Demana molts recursos del sistema)"; App::$strings["Maximum image size"] = "Mida màxima d'imatge"; App::$strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Mida màxima en bytes d'imatges pujades. Per defecte es 0, el que vol dir sense límits."; -App::$strings["Does this site allow new member registration?"] = "Permet aquest lloc registre de nous membres?"; +App::$strings["Does this site allow new member registration?"] = "Permet aquest lloc l'inscripció de nous membres?"; App::$strings["Invitation only"] = "Només per invitació"; -App::$strings["Only allow new member registrations with an invitation code. Above register policy must be set to Yes."] = "Només permet registre de nos membres amb codi d'invitació. A més la política de registre s'ha d'establir a Sí."; +App::$strings["Only allow new member registrations with an invitation code. Above register policy must be set to Yes."] = "Només permet inscriure nous membres amb codi d'invitació. A més la política de registre s'ha d'establir a Sí."; App::$strings["Which best describes the types of account offered by this hub?"] = "Que es es que millor descriu la mena de comptes oferits per aquest concentrador?"; -App::$strings["Register text"] = "text de registre"; -App::$strings["Will be displayed prominently on the registration page."] = "Es mostrarà preminentment a la pàgina de registre"; +App::$strings["Register text"] = "Text d'inscripció"; +App::$strings["Will be displayed prominently on the registration page."] = "Es mostrarà preminentment a la pàgina d'inscripció"; App::$strings["Site homepage to show visitors (default: login box)"] = "Pàgina d'inici a mostrar als visitants (per defecte: la pàgina d'identificació)"; App::$strings["example: 'public' to show public stream, 'page/sys/home' to show a system webpage called 'home' or 'include:home.html' to include a file."] = "exemple: 'públic' per a mostrar un flux públic, 'page/sys/home' per a mostrar una pàgina web dita 'home' o 'include:home.html' per a incloure un arxiu."; App::$strings["Preserve site homepage URL"] = "Preservar URL de la pàgina web"; @@ -938,12 +918,12 @@ App::$strings["Account '%s' blocked"] = "S'ha bloquejat el compte '%s'"; App::$strings["Account '%s' unblocked"] = "S'ha desbloquejat el compte '%s'"; App::$strings["Accounts"] = "Comptes"; App::$strings["select all"] = "Sel·leciona-ho tot"; -App::$strings["Registrations waiting for confirm"] = ""; +App::$strings["Registrations waiting for confirm"] = "Inscripcions esperant confirmació"; App::$strings["Request date"] = "Data de la petició"; App::$strings["No registrations."] = "Sense registracions."; App::$strings["Deny"] = "Denegat"; App::$strings["All Channels"] = "Tots els Canals"; -App::$strings["Register date"] = "Data de registre"; +App::$strings["Register date"] = "Data d'inscripció"; App::$strings["Last login"] = "Darrera identificació"; App::$strings["Expires"] = "Expira"; App::$strings["Service Class"] = "Classe de Servei"; @@ -1012,7 +992,7 @@ App::$strings["Logs"] = "Logs"; App::$strings["Clear"] = "Neteja"; App::$strings["Debugging"] = "Depurant"; App::$strings["Log file"] = "Arxiu de registre"; -App::$strings["Must be writable by web server. Relative to your top-level webserver directory."] = ""; +App::$strings["Must be writable by web server. Relative to your top-level webserver directory."] = "Ha de ser escribible pel servidor web. Relatiu al directori de nivell superior del servidor web"; App::$strings["Log level"] = "Nivell de registre"; App::$strings["New Profile Field"] = "Camp de Perfil Nou"; App::$strings["Field nickname"] = "Àlies de Camp"; @@ -1031,33 +1011,105 @@ App::$strings["(In addition to basic fields)"] = "( addicionalment als camps bà App::$strings["All available fields"] = "Tots els camps disponibles"; App::$strings["Custom Fields"] = "Camps Personalitzats"; App::$strings["Create Custom Field"] = "Crear un Camp Personalitzat"; -App::$strings["App installed."] = "Aplicació instal·lada."; -App::$strings["Malformed app."] = "Aplicació amb errors"; -App::$strings["Embed code"] = "Codi embegut"; -App::$strings["Edit App"] = "Edita l'Aplicació"; -App::$strings["Create App"] = "Crea l'Aplicació"; -App::$strings["Name of app"] = "Nom de l'Aplicació"; -App::$strings["Location (URL) of app"] = "Ubicació (URL) de l'aplicació"; -App::$strings["Photo icon URL"] = "Foto icona URL"; -App::$strings["80 x 80 pixels - optional"] = "80 x 80 pixels - opcional"; -App::$strings["Categories (optional, comma separated list)"] = "Categories (opcional, lista separada per comes)"; -App::$strings["Version ID"] = "Versió ID"; -App::$strings["Price of app"] = "Preu de l'aplicació"; -App::$strings["Location (URL) to purchase app"] = "Ubicació (URL) per comprar l'aplicació"; +App::$strings["Name or caption"] = "Nom o llegenda"; +App::$strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\""] = "Exemples: \"Pep Gomila\", \"Manel i els seus Cavalls\", \"Fútbol\", \"Grup d'Aviadors\""; +App::$strings["Choose a short nickname"] = "Tria un àlies curt"; +App::$strings["Your nickname will be used to create an easy to remember channel address e.g. nickname%s"] = "El teu àlies serà emprat per crear un nom fàcil per recordar l'adreça del canal p.e. àlies%s"; +App::$strings["Channel role and privacy"] = "Funció i privacitat del canal"; +App::$strings["Select a channel role with your privacy requirements."] = "Tria una funció pel canal amb els teus requisits de privacitat."; +App::$strings["Read more about roles"] = "Llegix més sobre els rols"; +App::$strings["Create Channel"] = "Crea un Canal"; +App::$strings["A channel is your identity on this network. It can represent a person, a blog, or a forum to name a few. Channels can make connections with other channels to share information with highly detailed permissions."] = "Un canal es la tva identitat en aquesta xarxa. Pot representar una persona, un bloc, o un fòrum per anomenar alguns. Els canals poden connectar-se amb altres canals per compartir informació amb permisos molt detallats."; +App::$strings["or import an existing channel from another location."] = "o importa un canal existent des d'un altre ubicació."; +App::$strings["sent you a private message"] = "Se t'ha enviat un missatge privat"; +App::$strings["added your channel"] = "el teu canal s'ha afegit"; +App::$strings["g A l F d"] = "g A l F d"; +App::$strings["[today]"] = "[avui]"; +App::$strings["posted an event"] = "enviat un esdeveniment"; +App::$strings["Invalid request identifier."] = "Sol·licitud d'identificació invàlida."; +App::$strings["Discard"] = "Descarta"; +App::$strings["Mark all system notifications seen"] = "Marca totes les notificacions vistes"; +App::$strings["Poke"] = "Esperonar"; +App::$strings["Poke somebody"] = "Emprenyar algú"; +App::$strings["Poke/Prod"] = "Esperonat/Picat"; +App::$strings["Poke, prod or do other things to somebody"] = "emprenyar, picar o fer altres coses a algú"; +App::$strings["Recipient"] = "Destinatari"; +App::$strings["Choose what you wish to do to recipient"] = "Tria que vols fer amb el destinatari"; +App::$strings["Make this post private"] = "Fer aquesta entrada privada"; +App::$strings["Unable to find your hub."] = "No es possible trobar el node"; +App::$strings["Post successful."] = "Entrada realitzada amb èxit. "; +App::$strings["OpenID protocol error. No ID returned."] = "Error del protocol OpenID. No ha retornat ID"; +App::$strings["Login failed."] = "Identificació fallida."; +App::$strings["Invalid profile identifier."] = "Identificador invàlid de perfil."; +App::$strings["Profile Visibility Editor"] = "Perfil del Editor de Visibilitat"; +App::$strings["Profile"] = "Perfil"; +App::$strings["Click on a contact to add or remove."] = "Clica sobre el contacte per afegir o esborrar."; +App::$strings["Visible To"] = "Visible per"; +App::$strings["This setting requires special processing and editing has been blocked."] = "Aquest ajust requereix un procés espedial i l'edició esta bloquejada."; +App::$strings["Configuration Editor"] = "Editor de Configuració"; +App::$strings["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."] = "atenció: Realitzar segons quins ajustos pot fer el canal inoperable. Deixa aquesta pàgina si no estas segur i tens suficients coneixements sobre l'ús correcte d'aquesta característica."; +App::$strings["Fetching URL returns error: %1\$s"] = "URL sol·licitada retorna error: %1\$s"; +App::$strings["Version %s"] = "Versió %s"; +App::$strings["Installed plugins/addons/apps:"] = "Plugins/addons/apps Instal·lats:"; +App::$strings["No installed plugins/addons/apps"] = "Plugins/addons/apps no instal·lats"; +App::$strings["This is a hub of \$Projectname - a global cooperative network of decentralized privacy enhanced websites."] = "Aquest és un node de \$Projectname, una xarxa cooperativa mundial de llocs web descentralitzats amb gran control de la privacitat."; +App::$strings["Tag: "] = "Etiqueta:"; +App::$strings["Last background fetch: "] = "Última actualització en rerefons:"; +App::$strings["Current load average: "] = "Càrrega actual mitja:"; +App::$strings["Running at web location"] = "Correguent en el lloc web"; +App::$strings["Please visit hubzilla.org to learn more about \$Projectname."] = "Visita hubzilla.org per saber-ne més de \$Projectname."; +App::$strings["Bug reports and issues: please visit"] = "Per informar d'errors o problemes ves a"; +App::$strings["\$projectname issues"] = "\$projectname qüestions"; +App::$strings["Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com"] = "Per suggerències, felicitacions i altres, envia'ns un mail a «redmatrix» [arroba] librelist [punt] com"; +App::$strings["Site Administrators"] = "Administradors del lloc"; +App::$strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Em trobat un problema durant l'inici de sessió amb el OpenID que has facilitat. verifica l'ortografia correcta de la ID."; +App::$strings["The error message was:"] = "El missatge d'error fou:"; +App::$strings["Authentication failed."] = "Ha fallat l'autentificació."; +App::$strings["Remote Authentication"] = "Autentificació Remota"; +App::$strings["Enter your channel address (e.g. channel@example.com)"] = "Introdueix la teva adreça del canal (eg canal@exemple.com)"; +App::$strings["Authenticate"] = "Autentica't"; +App::$strings["Public Hubs"] = "Nodes Públics"; +App::$strings["The listed hubs allow public registration for the \$Projectname network. All hubs in the network are interlinked so membership on any of them conveys membership in the network as a whole. Some hubs may require subscription or provide tiered service plans. The hub itself may provide additional details."] = "Els nodes llistats permeten registrar usuaris de la xarxa \$Projectname. Com que tots els nodes estan enllaçats entre ells, la identitat és vàlida a tota la xarxa. Alguns nodes poden demanar subscripció o oferir serveis addicional de pagament. Per a més detalls, proveu de seguir els enllaços dels proveïdors."; +App::$strings["Hub URL"] = "URL del Node"; +App::$strings["Access Type"] = "Tipus d'accés"; +App::$strings["Registration Policy"] = "Condicions d'inscripció"; +App::$strings["Stats"] = "Estadístiques"; +App::$strings["Software"] = "Programari"; +App::$strings["Ratings"] = "Valoracions"; +App::$strings["Rate"] = "Puntua"; +App::$strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Refresca la memòria cau del navegador si la foto no s'actualitza immediatament. Dreceres: «Ctrl+F5» i «Ctrl+Maj+R»"; +App::$strings["Upload Profile Photo"] = "Puja una Foto pel Perfil"; +App::$strings["Block Name"] = "Nom del Bloc"; +App::$strings["Blocks"] = "Bloc"; +App::$strings["Block Title"] = "Títol del bloc"; +App::$strings["Website:"] = "Lloc web:"; +App::$strings["Remote Channel [%s] (not yet known on this site)"] = "Canal Remot [%s] (encara no es coneix en aquest lloc)"; +App::$strings["Rating (this information is public)"] = "Valoració (aquesta informació és pública)"; +App::$strings["Optionally explain your rating (this information is public)"] = "Opcionalment pots explicar la teva qualificació (aquesta informació és pública)"; +App::$strings["No ratings"] = "No valorat"; +App::$strings["Rating: "] = "Valoració:"; +App::$strings["Website: "] = "Lloc web:"; +App::$strings["Description: "] = "Descripció:"; +App::$strings["Apps"] = "Aplicatius"; +App::$strings["Title (optional)"] = "Títol (opcional)"; +App::$strings["Edit Block"] = "Editar Bloc"; +App::$strings["No channel."] = "No s'ha trobat el canal"; +App::$strings["Common connections"] = "Connexions en comú"; +App::$strings["No connections in common."] = "No hi ha connexions en comú."; App::$strings["Select a bookmark folder"] = "Tria una carpeta d'interès"; App::$strings["Save Bookmark"] = "Guarda Favorits"; App::$strings["URL of bookmark"] = "URL de favorit"; App::$strings["Or enter new bookmark folder name"] = "O entra un nou nom de favorit"; -App::$strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = "Nombre màxim de registres diaris excedit. Si us plau, provau demà."; -App::$strings["Please indicate acceptance of the Terms of Service. Registration failed."] = "El registre ha fallat. Si et plau, indica que acceptes les Condicions del Servei."; +App::$strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = "Nombre màxim d'inscripcions diaris excedit. Si us plau, provau demà."; +App::$strings["Please indicate acceptance of the Terms of Service. Registration failed."] = "L'inscripció ha fallat. Si et plau, indica que acceptes les Condicions del Servei."; App::$strings["Passwords do not match."] = "Les contrasenyes no coincideixen."; App::$strings["Registration successful. Please check your email for validation instructions."] = "Registrat amb èxit. Si et plau revisa el teu correu electrònic per a les instruccions de validació."; -App::$strings["Your registration is pending approval by the site owner."] = "El teu registre esta pendent de validació pel propietari del lloc."; -App::$strings["Your registration can not be processed."] = "El teu registre no ha pogut ser processat. "; -App::$strings["Registration on this hub is disabled."] = "El registre en aquest node està deshabilitat."; -App::$strings["Registration on this hub is by approval only."] = "El registre en aquest node es únicament per validació."; -App::$strings["Register at another affiliated hub."] = "Registre en altre node afiliat"; -App::$strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "El lloc ha excedit el límit màxim diari de nous comptes/registres. Provau demà."; +App::$strings["Your registration is pending approval by the site owner."] = "La teva inscripció esta pendent de validació pel propietari del lloc."; +App::$strings["Your registration can not be processed."] = "La teva inscripció no ha pogut ser processat. "; +App::$strings["Registration on this hub is disabled."] = "L'inscripció en aquest node està deshabilitat."; +App::$strings["Registration on this hub is by approval only."] = "L'inscripció en aquest node es únicament per validació."; +App::$strings["Register at another affiliated hub."] = "Inscripció en altre node afiliat"; +App::$strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "El lloc ha excedit el límit màxim diari de nous comptes/inscripció. Provau demà."; App::$strings["Terms of Service"] = "Condicions del Servei"; App::$strings["I accept the %s for this website"] = "Accepto el %s per a aquest lloc web"; App::$strings["I am over 13 years of age and accept the %s for this website"] = "Tinc més de 13 anys i accepto les %s d'aquest lloc web"; @@ -1068,8 +1120,8 @@ App::$strings["Please enter your invitation code"] = "Si et plau, introdueix el App::$strings["no"] = "no"; App::$strings["yes"] = "sí"; App::$strings["Membership on this site is by invitation only."] = "La pertinença en aquest lloc es per invitació exclusivament."; -App::$strings["Register"] = "Registre"; -App::$strings["Proceed to create your first channel"] = "Comença a crear el teu primer canal"; +App::$strings["Register"] = "Inscripció"; +App::$strings["This site may require email verification after submitting this form. If you are returned to a login page, please check your email for instructions."] = ""; App::$strings["Please login."] = "Inicia Sessió."; App::$strings["Account removals are not allowed within 48 hours of changing the account password."] = "L'esborrat de comptes no està permès fins que transcorren 48 hores des de l'últim canvi de contrasenya."; App::$strings["Remove This Account"] = "Esborra el compte"; @@ -1086,17 +1138,23 @@ App::$strings["This channel will be completely removed from the network. "] = "A App::$strings["Remove this channel and all its clones from the network"] = "Elimina aquest canal i els seus clons de la xarxa"; App::$strings["By default only the instance of the channel located on this hub will be removed from the network"] = "Per defecte, només la instancia del canal ubicat en aquest node pot esser esborrat de la xarxa"; App::$strings["Remove Channel"] = "Elimina el canal"; -App::$strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Em trobat un problema durant l'inici de sessió amb el OpenID que has facilitat. verifica l'ortografia correcta de la ID."; -App::$strings["The error message was:"] = "El missatge d'error fou:"; -App::$strings["Authentication failed."] = "Ha fallat l'autentificació."; -App::$strings["Remote Authentication"] = "Autentificació Remota"; -App::$strings["Enter your channel address (e.g. channel@example.com)"] = "Introdueix la teva adreça del canal (eg canal@exemple.com)"; -App::$strings["Authenticate"] = "Autentica't"; +App::$strings["Export Channel"] = "Exportar Canal"; +App::$strings["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."] = "Exporta la informació bàsica del canal a un arxiu. Això actua com a còpia de recolzament de les teves connexions, permisos, perfil i dades bàsiques, les quals pots emprar per traslladar aquestes dades a una altre lloc/node, però no conté el contingut del canal."; +App::$strings["Export Content"] = "Exportar el Contingut"; +App::$strings["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."] = "Exporta la informació del canal i tot el contingut recent a un arxiu de recolzament JSON que por ser restaurat o importat en altre lloc/node. Això còpia totes les teves connexions, permisos, perfil i dades i mesos de entrades. L'arxiu pot ser MOLT gran. Si et plau, sigues pacient ja que pot trigar uns minuts a començar a baixar."; +App::$strings["Export your posts from a given year."] = "Exporta les teves entrades d'un any donat."; +App::$strings["You may also export your posts and conversations for a particular year or month. Adjust the date in your browser location bar to select other dates. If the export fails (possibly due to memory exhaustion on your server hub), please try again selecting a more limited date range."] = "Pots també exportar les teves entrades i conversacions d'un any o un mes en particular. Ajusta la data a la barra de direccions del navegador per seleccionar altres dates. Si la exportació falla (possiblement degut al esgotament de la memòria del node servidor), si et plau, intenta de nou la selecció d'un rang de dates més limitat."; +App::$strings["To select all posts for a given year, such as this year, visit %2\$s"] = "Per seleccionar tots els missatges per a un any determinat, com aquest any, visiteu %2\$s"; +App::$strings["To select all posts for a given month, such as January of this year, visit %2\$s"] = "Per seleccionar tots els missatges per a un mes determinat, com el de gener d'aquest any, visiteu %2\$s"; +App::$strings["These content files may be imported or restored by visiting %2\$s on any site containing your channel. For best results please import or restore these in date order (oldest first)."] = "Aquests arxius de contingut poden ser importats o restaurats per visitar %2\$s en qualsevol lloc que conté el teu canal. Per obtenir els millors resultats si us plau, importar o restaurar aquests en ordre de data (la més antiga primer)."; App::$strings["Items tagged with: %s"] = "Elements etiquetats amb: %s"; App::$strings["Search results for: %s"] = "Resultats de cerca per: %s"; App::$strings["No service class restrictions found."] = "No s'han trobat restriccions de clase."; App::$strings["Name is required"] = "Es requereix un Nom"; App::$strings["Key and Secret are required"] = "Es requereix Clau (Key) i el Secret (Secret)"; +App::$strings["This channel is limited to %d tokens"] = ""; +App::$strings["Name and Password are required."] = ""; +App::$strings["Token saved."] = ""; App::$strings["Not valid email."] = "E-correu no vàlid."; App::$strings["Protected email address. Cannot change to that email."] = "Adreça d'e-correu protegida. No es pot canviar a aquest e-correu."; App::$strings["System failure storing new email. Please try again."] = "Fallada del sistema al guardar un nou correu. Si us plau, proba de nou."; @@ -1129,6 +1187,12 @@ App::$strings["Confirm New Password"] = "Confirma la Nova Contrasenya"; App::$strings["Leave password fields blank unless changing"] = "Deixa els camps de contrasenya en blanc llevat que la vulguis canviar"; App::$strings["Email Address:"] = "Adreça de E-Correu:"; App::$strings["Remove this account including all its channels"] = "Esborra aquest compte inclosos tots els seus canals"; +App::$strings["Use this form to create temporary access identifiers to share things with non-members. These identities may be used in Access Control Lists and visitors may login using these credentials to access the private content."] = ""; +App::$strings["You may also provide dropbox style access links to friends and associates by adding the Login Password to any specific site URL as shown. Examples:"] = ""; +App::$strings["Guest Access Tokens"] = ""; +App::$strings["Login Name"] = ""; +App::$strings["Login Password"] = ""; +App::$strings["Expires (yyyy-mm-dd)"] = ""; App::$strings["Additional Features"] = "Característiques Addicionals"; App::$strings["Connector Settings"] = "Ajustos de Connector"; App::$strings["No special theme for mobile devices"] = "No emprar tema especial per aparells mòbils"; @@ -1226,7 +1290,7 @@ App::$strings["System (personal) notifications"] = "Notificacions (personals) de App::$strings["System info messages"] = "Missatges d'informació del sistema"; App::$strings["System critical alerts"] = "Alertes crítiques del sistema"; App::$strings["New connections"] = "Noves connexions"; -App::$strings["System Registrations"] = "Registres del sistema"; +App::$strings["System Registrations"] = "Inscripcions del Sistema"; App::$strings["Also show new wall posts, private messages and connections under Notices"] = "Mostra també les entrades de mur noves, les entrades privades i les connexions a \"Notícies\""; App::$strings["Notify me of events this many days in advance"] = "Notifica'm dels esdeveniments amb aquests dies d'antelació"; App::$strings["Must be greater than 0"] = "Ha de ser més gran que 0"; @@ -1291,7 +1355,6 @@ App::$strings["GD graphics PHP module"] = "mòdul PHP GD gràfics"; App::$strings["OpenSSL PHP module"] = "mòdul PHP OpenSSL"; App::$strings["mysqli or postgres PHP module"] = "mòdul PHP mysqli o postgres"; App::$strings["mb_string PHP module"] = "mòdul PHP mb_string"; -App::$strings["mcrypt PHP module"] = "mòdul PHP mcrypt"; App::$strings["xml PHP module"] = "Mòdul xml de PHP"; App::$strings["Apache mod_rewrite module"] = "mòdul Apache mod_rewrite"; App::$strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Error: el mòdul mod-rewrite del servidor web Apache es requereix i no està instal·lat."; @@ -1302,7 +1365,6 @@ App::$strings["Error: GD graphics PHP module with JPEG support required but not App::$strings["Error: openssl PHP module required but not installed."] = "Error: el mòdul PHP openssl es requereix però no està instal·lat."; App::$strings["Error: mysqli or postgres PHP module required but neither are installed."] = "Error: el mòdul PHO mysqli o postgres es requereix però no està instal·lat."; App::$strings["Error: mb_string PHP module required but not installed."] = "Error: el mòdul PHP mb_string es requereix però no està instal·lat."; -App::$strings["Error: mcrypt PHP module required but not installed."] = "Error: el mòdul PHP mcrypt es requereix però no està instal·lat."; App::$strings["Error: xml PHP module required for DAV but not installed."] = "Error: el mòdul xml de PHP es requereix per DAV però no està instal·lat."; App::$strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "L'instaŀlador ha de poder crear i modificar un fitxer anomenat «.htconfig.php» a la carpeta arrel del servidor, però sembla que no ho pot fer."; App::$strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "Això sol ser un problema de permisos. Per molt que el teu usuari pugui modificar-lo, és el del servidor web qui necessita els poders de modificació."; @@ -1314,7 +1376,7 @@ App::$strings["In order to store these compiled templates, the web server needs App::$strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Comprova que l'usuari que executa el servidor (www-data en Apache) té permisos d'escriptura en aquesta carpeta."; App::$strings["Note: as a security measure, you should give the web server write access to %s only--not the template files (.tpl) that it contains."] = "Nota: com a mesura de seguretat l'usuari del servidor web ha de tenir accés d'escriptura només a %s, i no a les plantilles (.tpl) que conté."; App::$strings["%s is writable"] = "Es pot escriure a %s"; -App::$strings["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"] = "Red fa servir la carpeta «store» per a desar els fitxers pujats. Per tant, el servidor web necessita tenir permís d'escriptura en aquesta carpeta, que està a l'arrel del servidor web."; +App::$strings["This software 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"] = ""; App::$strings["store is writable"] = "Es pot escriure al magatzem (store)"; App::$strings["SSL certificate cannot be validated. Fix certificate or disable https access to this site."] = "El certificat SSL no s'ha pogut validar. Arregla-ho o deshabilita l'accés https a aquest lloc"; App::$strings["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!"] = "Si tens accès pet https al teu lloc web o permets connexions pel port TCP 443 (port https), Has d'emprar un certificat VÀLID. NO es poden emprar certificats AUTO-SIGNATS!"; @@ -1322,6 +1384,7 @@ App::$strings["This restriction is incorporated because public posts from you ma App::$strings["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."] = "Si el teu certificat no és reconegut, llavors el membres d'altres hubs, encara que tinguin certificats vàlids, rebran una advertència de seguretat en carregar contingut teu."; App::$strings["This can cause usability issues elsewhere (not just on your own site) so we must insist on this requirement."] = "Per tant, com que perjudica la usabilitat més enllà del teu lloc, la restricció de tenir un certificat reconegut és molt important."; App::$strings["Providers are available that issue free certificates which are browser-valid."] = "Hi ha autoritats de certificació reconegudes que ofereixen certificats gratuïts."; +App::$strings["If you are confident that the certificate is valid and signed by a trusted authority, check to see if you have failed to install an intermediate cert. These are not normally required by browsers, but are required for server-to-server communications."] = ""; App::$strings["SSL certificate validation"] = "Validació del certificat SSL"; App::$strings["Url rewrite in .htaccess is not working. Check your server configuration.Test: "] = "No es poden reescriure les URL a «.htaccess». Comprova la configuració del servidor:"; App::$strings["Url rewrite is working"] = "Es poden reescriure les URL a «.htaccess»"; @@ -1333,19 +1396,20 @@ App::$strings["Files: shared with me"] = "Arxius: compartits amb jo"; App::$strings["NEW"] = "NOU"; App::$strings["Remove all files"] = "Esborra tots els arxius"; App::$strings["Remove this file"] = "Esborra l'arxiu"; -App::$strings["Version %s"] = "Versió %s"; -App::$strings["Installed plugins/addons/apps:"] = "Plugins/addons/apps Instal·lats:"; -App::$strings["No installed plugins/addons/apps"] = "Plugins/addons/apps no instal·lats"; -App::$strings["This is a hub of \$Projectname - a global cooperative network of decentralized privacy enhanced websites."] = "Aquest és un node de \$Projectname, una xarxa cooperativa mundial de llocs web descentralitzats amb gran control de la privacitat."; -App::$strings["Tag: "] = "Etiqueta:"; -App::$strings["Last background fetch: "] = "Última actualització en rerefons:"; -App::$strings["Current load average: "] = "Càrrega actual mitja:"; -App::$strings["Running at web location"] = "Correguent en el lloc web"; -App::$strings["Please visit hubzilla.org to learn more about \$Projectname."] = "Visita hubzilla.org per saber-ne més de \$Projectname."; -App::$strings["Bug reports and issues: please visit"] = "Per informar d'errors o problemes ves a"; -App::$strings["\$projectname issues"] = "\$projectname qüestions"; -App::$strings["Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com"] = "Per suggerències, felicitacions i altres, envia'ns un mail a «redmatrix» [arroba] librelist [punt] com"; -App::$strings["Site Administrators"] = "Administradors del lloc"; +App::$strings["Thing updated"] = "S'ha actualitzat la cosa"; +App::$strings["Object store: failed"] = "No s'ha pogut emmagatzemar l'objecte"; +App::$strings["Thing added"] = "S'ha afegit la cosa"; +App::$strings["OBJ: %1\$s %2\$s %3\$s"] = "OBJ: %1\$s %2\$s %3\$s"; +App::$strings["Show Thing"] = "Mostra la cosa"; +App::$strings["item not found."] = "no s'ha trobat l'element."; +App::$strings["Edit Thing"] = "Edita la cosa"; +App::$strings["Select a profile"] = "Tria un perfil"; +App::$strings["Post an activity"] = "Publica una activitat"; +App::$strings["Only sends to viewers of the applicable profile"] = "S'envia només a visitants del perfil corresponent"; +App::$strings["Name of thing e.g. something"] = "Nom de la cosa. Exemple: patata"; +App::$strings["URL of thing (optional)"] = "Adreça URL de la cosa (opcional)"; +App::$strings["URL for photo of thing (optional)"] = "Adreça URL de la foto d'una cosa (opcional)"; +App::$strings["Add Thing to your Profile"] = "Afegeix una cosa al teu perfil"; App::$strings["Failed to create source. No channel selected."] = "Error en crear l'origen. Cap canal seleccionat."; App::$strings["Source created."] = "Origen creat."; App::$strings["Source updated."] = "Origen actualitzat."; @@ -1373,60 +1437,38 @@ App::$strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s ha etiquetat %3\ App::$strings["Tag removed"] = "S'ha tret l'etiqueta"; App::$strings["Remove Item Tag"] = "Elimina l'etiqueta d'element"; App::$strings["Select a tag to remove: "] = "Tria l'etiqueta a eliminar:"; -App::$strings["Thing updated"] = "S'ha actualitzat la cosa"; -App::$strings["Object store: failed"] = "No s'ha pogut emmagatzemar l'objecte"; -App::$strings["Thing added"] = "S'ha afegit la cosa"; -App::$strings["OBJ: %1\$s %2\$s %3\$s"] = "OBJ: %1\$s %2\$s %3\$s"; -App::$strings["Show Thing"] = "Mostra la cosa"; -App::$strings["item not found."] = "no s'ha trobat l'element."; -App::$strings["Edit Thing"] = "Edita la cosa"; -App::$strings["Select a profile"] = "Tria un perfil"; -App::$strings["Post an activity"] = "Publica una activitat"; -App::$strings["Only sends to viewers of the applicable profile"] = "S'envia només a visitants del perfil corresponent"; -App::$strings["Name of thing e.g. something"] = "Nom de la cosa. Exemple: patata"; -App::$strings["URL of thing (optional)"] = "Adreça URL de la cosa (opcional)"; -App::$strings["URL for photo of thing (optional)"] = "Adreça URL de la foto d'una cosa (opcional)"; -App::$strings["Add Thing to your Profile"] = "Afegeix una cosa al teu perfil"; -App::$strings["Export Channel"] = "Exportar Canal"; -App::$strings["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."] = "Exporta la informació bàsica del canal a un arxiu. Això actua com a còpia de recolzament de les teves connexions, permisos, perfil i dades bàsiques, les quals pots emprar per traslladar aquestes dades a una altre lloc/node, però no conté el contingut del canal."; -App::$strings["Export Content"] = "Exportar el Contingut"; -App::$strings["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."] = "Exporta la informació del canal i tot el contingut recent a un arxiu de recolzament JSON que por ser restaurat o importat en altre lloc/node. Això còpia totes les teves connexions, permisos, perfil i dades i mesos de entrades. L'arxiu pot ser MOLT gran. Si et plau, sigues pacient ja que pot trigar uns minuts a començar a baixar."; -App::$strings["Export your posts from a given year."] = "Exporta les teves entrades d'un any donat."; -App::$strings["You may also export your posts and conversations for a particular year or month. Adjust the date in your browser location bar to select other dates. If the export fails (possibly due to memory exhaustion on your server hub), please try again selecting a more limited date range."] = "Pots també exportar les teves entrades i conversacions d'un any o un mes en particular. Ajusta la data a la barra de direccions del navegador per seleccionar altres dates. Si la exportació falla (possiblement degut al esgotament de la memòria del node servidor), si et plau, intenta de nou la selecció d'un rang de dates més limitat."; -App::$strings["To select all posts for a given year, such as this year, visit %2\$s"] = "Per seleccionar tots els missatges per a un any determinat, com aquest any, visiteu %2\$s"; -App::$strings["To select all posts for a given month, such as January of this year, visit %2\$s"] = "Per seleccionar tots els missatges per a un mes determinat, com el de gener d'aquest any, visiteu %2\$s"; -App::$strings["These content files may be imported or restored by visiting %2\$s on any site containing your channel. For best results please import or restore these in date order (oldest first)."] = "Aquests arxius de contingut poden ser importats o restaurats per visitar %2\$s en qualsevol lloc que conté el teu canal. Per obtenir els millors resultats si us plau, importar o restaurar aquests en ordre de data (la més antiga primer)."; -App::$strings["No connections."] = "Sense connexions."; -App::$strings["Visit %s's profile [%s]"] = "Visita el perfil [%s] de %s"; -App::$strings["View Connections"] = "Veure Connexions"; -App::$strings["Source of Item"] = "Origen de l'article"; App::$strings["Webpages"] = "Pàgines web"; App::$strings["Actions"] = "Accions"; App::$strings["Page Link"] = "Enllaç a Pàgina"; App::$strings["Page Title"] = "Títol de la pàgina"; +App::$strings["Not found"] = ""; +App::$strings["Wiki"] = "Wiki"; +App::$strings["Sandbox"] = "Sandbox"; +App::$strings["\"# Wiki Sandbox\\n\\nContent you **edit** and **preview** here *will not be saved*.\""] = ""; +App::$strings["Revision Comparison"] = "Comparació de revisió"; +App::$strings["Revert"] = "Reverteix"; +App::$strings["Enter the name of your new wiki:"] = "Escriu el nom del teu nou wiki:"; +App::$strings["Enter the name of the new page:"] = "Escriu el nom de la teva nova pàgina:"; +App::$strings["Enter the new name:"] = "Escriu el nou nom:"; +App::$strings["Embed image from photo albums"] = "Embeu una imatge dels àlbums de fotos"; +App::$strings["Embed an image from your albums"] = "Embeu una imatge dels teus àlbums"; +App::$strings["OK"] = "OK"; +App::$strings["Choose images to embed"] = "Tria una imatge per a embeure-la"; +App::$strings["Choose an album"] = "Tria un àlbum"; +App::$strings["Choose a different album..."] = "Tria un àlbum diferent..."; +App::$strings["Error getting album list"] = "Ha ocorregut un error quan treia la llista de àlbums"; +App::$strings["Error getting photo link"] = "Ha ocorregut un error quan treia l'enllaç a la foto"; +App::$strings["Error getting album"] = "Ha ocorregut un error treient l'àlbum"; +App::$strings["No connections."] = "Sense connexions."; +App::$strings["Visit %s's profile [%s]"] = "Visita el perfil [%s] de %s"; +App::$strings["View Connections"] = "Veure Connexions"; +App::$strings["Source of Item"] = "Origen de l'article"; +App::$strings["Authorize application connection"] = "Autoritza la connexió de l'aplicació"; +App::$strings["Return to your app and insert this Securty Code:"] = "Torna a la teva aplicació i insereix aquest Codi de Seguretat:"; +App::$strings["Please login to continue."] = "Si et plau, identifica't per continuar."; +App::$strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Vols autoritzar a aquesta aplicació l'accés a les teves entrades i contactes i/o a crear noves entrades com si fos tu mateix."; App::$strings["Xchan Lookup"] = "Cerca a xchan"; App::$strings["Lookup xchan beginning with (or webbie): "] = "Cerca a xchan començant per (o webbie)"; -App::$strings["Site Admin"] = "Administració"; -App::$strings["Bug Report"] = "Informe d'Errors"; -App::$strings["View Bookmarks"] = "Veure Marcadors"; -App::$strings["My Chatrooms"] = "Les meves Sales de Xat"; -App::$strings["Firefox Share"] = "Compartir amb Firefox"; -App::$strings["Remote Diagnostics"] = "Diagnòstics Remots"; -App::$strings["Suggest Channels"] = "Suggerir Canals"; -App::$strings["Login"] = "Identifica't"; -App::$strings["Grid"] = "Malla"; -App::$strings["Channel Home"] = "Canal Personal"; -App::$strings["Events"] = "Esdeveniments"; -App::$strings["Directory"] = "Directori"; -App::$strings["Mail"] = "Correu"; -App::$strings["Chat"] = "Xerrar"; -App::$strings["Probe"] = "Sondeig"; -App::$strings["Suggest"] = "Suggeriment"; -App::$strings["Random Channel"] = "Canal Aleatori"; -App::$strings["Invite"] = "Convida"; -App::$strings["Features"] = "Funcionalitats"; -App::$strings["Post"] = "Entrada"; -App::$strings["Purchase"] = "Compra"; App::$strings["Missing room name"] = "Perdut el nom de la sala"; App::$strings["Duplicate room name"] = "Nom de la sala duplicat"; App::$strings["Invalid room specifier."] = "Especificació de la sala invàlida."; @@ -1474,6 +1516,27 @@ App::$strings["Please visit %s to approve or reject the suggestion."] = "Per fav App::$strings["[Hubzilla:Notify]"] = "[Hubzilla:Notificació]"; App::$strings["created a new post"] = "Creada una nova entrada"; App::$strings["commented on %s's post"] = "comentat a l'entrada de %s"; +App::$strings["Site Admin"] = "Administració"; +App::$strings["Bug Report"] = "Informe d'Errors"; +App::$strings["View Bookmarks"] = "Veure Marcadors"; +App::$strings["My Chatrooms"] = "Les meves Sales de Xat"; +App::$strings["Firefox Share"] = "Compartir amb Firefox"; +App::$strings["Remote Diagnostics"] = "Diagnòstics Remots"; +App::$strings["Suggest Channels"] = "Suggerir Canals"; +App::$strings["Login"] = "Identifica't"; +App::$strings["Grid"] = "Malla"; +App::$strings["Channel Home"] = "Canal Personal"; +App::$strings["Events"] = "Esdeveniments"; +App::$strings["Directory"] = "Directori"; +App::$strings["Mail"] = "Correu"; +App::$strings["Chat"] = "Xerrar"; +App::$strings["Probe"] = "Sondeig"; +App::$strings["Suggest"] = "Suggeriment"; +App::$strings["Random Channel"] = "Canal Aleatori"; +App::$strings["Invite"] = "Convida"; +App::$strings["Features"] = "Funcionalitats"; +App::$strings["Post"] = "Entrada"; +App::$strings["Purchase"] = "Compra"; App::$strings["Private Message"] = "Missatge Privat"; App::$strings["Select"] = "Selecciona"; App::$strings["Save to Folder"] = "Guardar en la Carpeta"; @@ -1510,7 +1573,7 @@ App::$strings["Expires: %s"] = "Expira: %s"; App::$strings["Save Bookmarks"] = "Guarda Favorits"; App::$strings["Add to Calendar"] = "Afegeix al Calendari"; App::$strings["Mark all seen"] = "Marca tot com ja vist"; -App::$strings["[+] show all"] = "[+] mostra tot"; +App::$strings["%s show all"] = ""; App::$strings["Bold"] = "Negreta"; App::$strings["Italic"] = "Italica"; App::$strings["Underline"] = "Subratllat"; @@ -1519,9 +1582,93 @@ App::$strings["Code"] = "Codi"; App::$strings["Image"] = "Imatge"; App::$strings["Insert Link"] = "Insereix Enllaç"; App::$strings["Video"] = "Video"; +App::$strings["Visible to your default audience"] = "Visible per a la teva audiència "; +App::$strings["Only me"] = "Només jo"; +App::$strings["Public"] = "Públic"; +App::$strings["Anybody in the \$Projectname network"] = "Ningú a la xarxa \$Projectname"; +App::$strings["Any account on %s"] = "Qualsevol compte a %s"; +App::$strings["Any of my connections"] = "Qualsevol de les meves connexions"; +App::$strings["Only connections I specifically allow"] = "Només les connexions que permeto específicament"; +App::$strings["Anybody authenticated (could include visitors from other networks)"] = "Qualsevol persona autenticada (podria incloure als usuaris d'altres xarxes)"; +App::$strings["Any connections including those who haven't yet been approved"] = "Qualsevol connexió incloent aquells que encara no han estat aprovats"; +App::$strings["This is your default setting for the audience of your normal stream, and posts."] = "Aquest és l'ajust per defecte per al públic del seu flux normal i entrades."; +App::$strings["This is your default setting for who can view your default channel profile"] = "Aquesta és la configuració per defecte per a qui pugui veure el teu perfil per defecte del canal"; +App::$strings["This is your default setting for who can view your connections"] = "Aquesta és la configuració per defecte per a qui pugui veure les teves connexions"; +App::$strings["This is your default setting for who can view your file storage and photos"] = "Aquesta és la configuració per defecte per a qui pugui veure els teus arxius i fotos"; +App::$strings["This is your default setting for the audience of your webpages"] = "Aquests son els ajustos per defecte de l'audiència de les teves pàgines web"; App::$strings["No username found in import file."] = "No s'ha trobat nom d'usuari a l'arxiu d'importació."; App::$strings["Unable to create a unique channel address. Import failed."] = "No s'ha pogut importar el canal perquè l'adreça única de canal no s'ha pogut crear."; App::$strings["Cannot locate DNS info for database server '%s'"] = "No s'ha trobat informació de DNS pel servidor de base de dades '%s'"; +App::$strings["Image exceeds website size limit of %lu bytes"] = "La imatge excedeix la mida limit pel lloc web en %lu bytes"; +App::$strings["Image file is empty."] = "El fitxer d'imatge esta buit."; +App::$strings["Photo storage failed."] = "Fracassà l'emmagatzematge de la Foto"; +App::$strings["a new photo"] = "Una foto nova"; +App::$strings["__ctx:photo_upload__ %1\$s posted %2\$s to %3\$s"] = "%1\$s enviat %2\$s a %3\$s"; +App::$strings["Photo Albums"] = "Albums de Fotos"; +App::$strings["Upload New Photos"] = "Puja Noves Fotos"; +App::$strings["Logout"] = "Desconectar"; +App::$strings["End this session"] = "Finalitza aquesta sessió"; +App::$strings["Home"] = "Inici"; +App::$strings["Your posts and conversations"] = "Les teves entrades i converses"; +App::$strings["Your profile page"] = "La teva pàgina de perfil"; +App::$strings["Manage/Edit profiles"] = "Gestiona/Edita perfils"; +App::$strings["Edit Profile"] = "Edita Perfil"; +App::$strings["Edit your profile"] = "Edita el teu perfil"; +App::$strings["Your photos"] = "Les Teves Fotos"; +App::$strings["Your files"] = "Els teus arxius"; +App::$strings["Your chatrooms"] = "Les teves sales de xerrar"; +App::$strings["Bookmarks"] = "Marcadors"; +App::$strings["Your bookmarks"] = "Els teus marcadors"; +App::$strings["Your webpages"] = "Les teves pàgines web"; +App::$strings["Your wiki"] = ""; +App::$strings["Sign in"] = "Signatura"; +App::$strings["%s - click to logout"] = "%s - click per desconectar"; +App::$strings["Remote authentication"] = "Autenticació remota"; +App::$strings["Click to authenticate to your home hub"] = "Clica per autentificar-te en el teu node"; +App::$strings["Home Page"] = "Pàgina Personal"; +App::$strings["Create an account"] = "Crear un compte"; +App::$strings["Help and documentation"] = "Ajuda i documentació"; +App::$strings["Applications, utilities, links, games"] = "Aplicacions, utilitats, enllaços, jocs"; +App::$strings["Search site @name, #tag, ?docs, content"] = "Cerca pel lloc @name, #tag, ?docs, contingut"; +App::$strings["Channel Directory"] = "Directori de Canals"; +App::$strings["Your grid"] = "La teva malla"; +App::$strings["Mark all grid notifications seen"] = "Marca totes les notificacions de la malla vistes"; +App::$strings["Channel home"] = "Canal personal"; +App::$strings["Mark all channel notifications seen"] = "Marca totes les notificacions de canal vistes"; +App::$strings["Notices"] = "Noticies"; +App::$strings["Notifications"] = "Notificacions"; +App::$strings["See all notifications"] = "Veure totes les Notificacions"; +App::$strings["Private mail"] = "Correu privat"; +App::$strings["See all private messages"] = "Veure tots els missatges privats"; +App::$strings["Mark all private messages seen"] = "Marcar tots els missatges privats vistos"; +App::$strings["Inbox"] = "Safata d'entrada"; +App::$strings["Outbox"] = "Safata de sortida"; +App::$strings["New Message"] = "Nou Missatge"; +App::$strings["Event Calendar"] = "Calendari d'Events"; +App::$strings["See all events"] = "Veure tots els esdeveniments"; +App::$strings["Mark all events seen"] = "Marcar tots els esdeveniments vistos"; +App::$strings["Manage Your Channels"] = "Gestiona els Teus Canals"; +App::$strings["Account/Channel Settings"] = "Ajustos de Compte/Canal"; +App::$strings["Admin"] = "Admin"; +App::$strings["Site Setup and Configuration"] = "Ajustos i Configuració del Lloc"; +App::$strings["Loading..."] = "Carregant..."; +App::$strings["@name, #tag, ?doc, content"] = "@nom, #etiqueta, ?doc, contingut"; +App::$strings["Please wait..."] = "Si us plau, espera......."; +App::$strings["view full size"] = "Veure a mida competa"; +App::$strings["Administrator"] = "Administrador"; +App::$strings["No Subject"] = "Sense Assumpte"; +App::$strings["Friendica"] = "Friendica"; +App::$strings["OStatus"] = "OStatus"; +App::$strings["GNU-Social"] = "GNU-Social"; +App::$strings["RSS/Atom"] = "RSS/Atom"; +App::$strings["Diaspora"] = "Diaspora"; +App::$strings["Facebook"] = "Facebook"; +App::$strings["Zot"] = "Zot"; +App::$strings["LinkedIn"] = "LinkedIn"; +App::$strings["XMPP/IM"] = "XMPP/IM"; +App::$strings["MySpace"] = "MySpace"; +App::$strings["New Page"] = "Pàgina Nova"; +App::$strings["Title"] = "Títol"; App::$strings["Categories"] = "Categories"; App::$strings["Tags"] = "Etiquetes"; App::$strings["Keywords"] = "Paraules clau"; @@ -1531,34 +1678,196 @@ App::$strings["want"] = "vull"; App::$strings["wants"] = "vols"; App::$strings["likes"] = "agrada"; App::$strings["dislikes"] = "desagrada"; -App::$strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A"; -App::$strings["Starts:"] = "Inicia:"; -App::$strings["Finishes:"] = "Acaba:"; -App::$strings["This event has been added to your calendar."] = "Aquest succés ha estat afegit al teu calendari."; -App::$strings["Not specified"] = "Sense especificar"; -App::$strings["Needs Action"] = "Necessita una Acció"; -App::$strings["Completed"] = "Completat"; -App::$strings["In Process"] = "En Procès"; -App::$strings["Cancelled"] = "Cancel·lat"; +App::$strings["Unable to obtain identity information from database"] = "Incapaç de trobar l'informació d'identitat a la base de dades"; +App::$strings["Empty name"] = "Nom buit"; +App::$strings["Name too long"] = "Nom massa llarg"; +App::$strings["No account identifier"] = "Sense identificador de compte"; +App::$strings["Nickname is required."] = "Alies/malnom es requerit."; +App::$strings["Reserved nickname. Please choose another."] = "Àlies reservat. Tria un altre."; +App::$strings["Nickname has unsupported characters or is already being used on this site."] = "L'álies te caracters no soportats o ja esta en ús en aquest lloc"; +App::$strings["Unable to retrieve created identity"] = "No es pot recuperar la identitat creada"; +App::$strings["Default Profile"] = "Perfil per Defecte"; +App::$strings["Requested channel is not available."] = "El canal demanat no està disponible."; +App::$strings["Create New Profile"] = "Crear un Perfil Nou"; +App::$strings["Visible to everybody"] = "Visible per tothom"; +App::$strings["Gender:"] = "Gènere:"; +App::$strings["Status:"] = "Estatus:"; +App::$strings["Homepage:"] = "Pàgina Personal:"; +App::$strings["Online Now"] = "Ara en Linia"; +App::$strings["Like this channel"] = "M'agrada aquest canal"; +App::$strings["j F, Y"] = "j F, Y"; +App::$strings["j F"] = "j F"; +App::$strings["Birthday:"] = "Aniversari:"; +App::$strings["for %1\$d %2\$s"] = "per %1\$d %2\$s"; +App::$strings["Sexual Preference:"] = "Preferència Sexual:"; +App::$strings["Tags:"] = "Etiquetes:"; +App::$strings["Political Views:"] = "Idees Polítiques:"; +App::$strings["Religion:"] = "Religió:"; +App::$strings["Hobbies/Interests:"] = "Aficions/Interessos:"; +App::$strings["Likes:"] = "Agrada:"; +App::$strings["Dislikes:"] = "Desagrada:"; +App::$strings["Contact information and Social Networks:"] = "Informació de contacte i Xarxes Socials:"; +App::$strings["My other channels:"] = "Els meus altres canals:"; +App::$strings["Musical interests:"] = "Interessos Musicals:"; +App::$strings["Books, literature:"] = "Llibres, literatura:"; +App::$strings["Television:"] = "Televisió:"; +App::$strings["Film/dance/culture/entertainment:"] = "Películes/Dança/Cultura/Entreteniment:"; +App::$strings["Love/Romance:"] = "Amor/Romace:"; +App::$strings["Work/employment:"] = "Treball/feina:"; +App::$strings["School/education:"] = "Escola/educació:"; +App::$strings["Like this thing"] = "M'agrada això"; +App::$strings["New window"] = "Nova finestra"; +App::$strings["Open the selected location in a different window or browser tab"] = "Obrir la localització seleccionada en un altre finestra o pestanya del navegador"; +App::$strings["User '%s' deleted"] = "usuari '%s' esborrat"; +App::$strings["%1\$s is now connected with %2\$s"] = "%1\$s esta ara connectat amb %2\$s"; +App::$strings["%1\$s poked %2\$s"] = "%1\$s a esperonat %2\$s"; +App::$strings["poked"] = "esperonat"; +App::$strings["View %s's profile @ %s"] = "Vista %s del perfil @ %s"; +App::$strings["Categories:"] = "Categories:"; +App::$strings["Filed under:"] = "Arxivar a:"; +App::$strings["View in context"] = "Veure en context"; +App::$strings["remove"] = "treu"; +App::$strings["Delete Selected Items"] = "Esborra els Articles Seleccionats"; +App::$strings["View Source"] = "Veure l'Origen"; +App::$strings["Follow Thread"] = "Segueix el Fil"; +App::$strings["Unfollow Thread"] = "Fil Abandonat"; +App::$strings["Activity/Posts"] = "Activitat/Entrades"; +App::$strings["Edit Connection"] = "Modifica la Connexió"; +App::$strings["Message"] = "Missatge"; +App::$strings["%s likes this."] = "%s agrada això."; +App::$strings["%s doesn't like this."] = "%s no agrada això."; +App::$strings["%2\$d people like this."] = array( + 0 => "%2\$d gent agrada això.", + 1 => "%2\$d gent agrada això.", +); +App::$strings["%2\$d people don't like this."] = array( + 0 => "%2\$d gent no agrada això.", + 1 => "%2\$d gent no agrada això.", +); +App::$strings["and"] = "i"; +App::$strings[", and %d other people"] = array( + 0 => ", i %d altra gent", + 1 => ", i %d altra gent", +); +App::$strings["%s like this."] = "%s agrada això."; +App::$strings["%s don't like this."] = "%s no agrada això."; +App::$strings["Set your location"] = "Ajusta la teva ubicació"; +App::$strings["Clear browser location"] = "Treu la localització del navegador"; +App::$strings["Tag term:"] = "Paraula de l'Etiqueta:"; +App::$strings["Where are you right now?"] = "On ets ara?"; +App::$strings["Page link name"] = "Nom de la pàgina enllaçada"; +App::$strings["Post as"] = "Envia com"; +App::$strings["Toggle voting"] = "Commutar votació"; +App::$strings["Categories (optional, comma-separated list)"] = "Categories (opcional, llista separada per comes)"; +App::$strings["Set publish date"] = "Ajusta la data de publicació"; +App::$strings["Discover"] = "Descobrir"; +App::$strings["Imported public streams"] = "Importar fluxos públics"; +App::$strings["Commented Order"] = "Ordenar per Comentaris"; +App::$strings["Sort by Comment Date"] = "Ordenar per Data del Comentari"; +App::$strings["Posted Order"] = "Ordenar per Entrades"; +App::$strings["Sort by Post Date"] = "Ordenar per Data d' Entrada"; +App::$strings["Posts that mention or involve you"] = "Entrades que et mencionen o involucren"; +App::$strings["Activity Stream - by date"] = "Activitat del Flux - per data"; +App::$strings["Starred"] = "Preferit"; +App::$strings["Favourite Posts"] = "Entrades Favorites"; +App::$strings["Spam"] = "Spam"; +App::$strings["Posts flagged as SPAM"] = "Entrades marcades com a SPAM"; +App::$strings["Status Messages and Posts"] = "Estat dels Missatges i Entrades"; +App::$strings["About"] = "El Meu Perfil"; +App::$strings["Profile Details"] = "Detalls del Perfil"; +App::$strings["Files and Storage"] = "Arxius i Emmagatzegament"; +App::$strings["Chatrooms"] = "Sala per Xerrar"; +App::$strings["Saved Bookmarks"] = "Marcadors Guardats"; +App::$strings["Manage Webpages"] = "Gestió de Pàgines Web"; +App::$strings["__ctx:noun__ Attending"] = array( + 0 => "Assistint", + 1 => "Assistint", +); +App::$strings["__ctx:noun__ Not Attending"] = array( + 0 => "Desassistint", + 1 => "Desassistint", +); +App::$strings["__ctx:noun__ Undecided"] = array( + 0 => "Indecís", + 1 => "Indecisos", +); +App::$strings["__ctx:noun__ Agree"] = array( + 0 => "Acord", + 1 => "Acords", +); +App::$strings["__ctx:noun__ Disagree"] = array( + 0 => "Desacord", + 1 => "Desacords", +); +App::$strings["__ctx:noun__ Abstain"] = array( + 0 => "Abstenirse", + 1 => "Abstenirse", +); App::$strings["Cannot create a duplicate channel identifier on this system. Import failed."] = "No s'ha pogut importar el canal perquè l'identificador del canal no s'ha pogut duplicar en aquest servidor."; App::$strings["Channel clone failed. Import failed."] = "No s'ha pogut importar el canal perquè el canal no s'ha pogut clonar."; -App::$strings["(Unknown)"] = "(Desconegut)"; -App::$strings["Visible to anybody on the internet."] = "Visible per tothom a la Internet"; -App::$strings["Visible to you only."] = "Visible només per tú."; -App::$strings["Visible to anybody in this network."] = "Visible per tothom en aquesta xarxa."; -App::$strings["Visible to anybody authenticated."] = "Visible per tothom autenticat."; -App::$strings["Visible to anybody on %s."] = "Visible per a tothom a %s."; -App::$strings["Visible to all connections."] = "Visible per a totes les connexions."; -App::$strings["Visible to approved connections."] = "Visible per a les connexions aprovades."; -App::$strings["Visible to specific connections."] = "Visible per a específiques connexions."; -App::$strings["Privacy group is empty."] = "El grup privat està vuit."; -App::$strings["Privacy group: %s"] = "Grup privat: %s"; -App::$strings["Connection not found."] = "Connexió no trobada."; -App::$strings["profile photo"] = "foto del perfil"; -App::$strings["No recipient provided."] = "No s'ha proporcionat bústia."; -App::$strings["[no subject]"] = "[no subject]"; -App::$strings["Unable to determine sender."] = "incapaç de determinar el remitent"; -App::$strings["Stored post could not be verified."] = "L'entrada guardada no pot ser verificada"; +App::$strings["Frequently"] = "Freqüentment"; +App::$strings["Hourly"] = "Horariament"; +App::$strings["Twice daily"] = "Dos vegades al dia"; +App::$strings["Daily"] = "Diariament"; +App::$strings["Weekly"] = "Setmanalment"; +App::$strings["Monthly"] = "Mensualment"; +App::$strings["Currently Male"] = "Actualment Masculí"; +App::$strings["Currently Female"] = "Actualment Femení"; +App::$strings["Mostly Male"] = "Més aviat Masculí"; +App::$strings["Mostly Female"] = "Més Aviat Femení"; +App::$strings["Transgender"] = "Canvi de Sexe"; +App::$strings["Intersex"] = "Intersexual"; +App::$strings["Transsexual"] = "Transsexual"; +App::$strings["Hermaphrodite"] = "Hermafrodita"; +App::$strings["Neuter"] = "Neutre"; +App::$strings["Non-specific"] = "Indefinit"; +App::$strings["Undecided"] = "Indecís"; +App::$strings["Males"] = "Homes"; +App::$strings["Females"] = "Dones"; +App::$strings["Gay"] = "Gay"; +App::$strings["Lesbian"] = "Lesbianes"; +App::$strings["No Preference"] = "Sense Preferències"; +App::$strings["Bisexual"] = "Bisexual"; +App::$strings["Autosexual"] = "Autosexual"; +App::$strings["Abstinent"] = "Abstinent"; +App::$strings["Virgin"] = "Verge"; +App::$strings["Deviant"] = "Desviat"; +App::$strings["Fetish"] = "Fetixiste"; +App::$strings["Oodles"] = "Orgies"; +App::$strings["Nonsexual"] = "Asexual"; +App::$strings["Single"] = "Solter"; +App::$strings["Lonely"] = "Solitari"; +App::$strings["Available"] = "Disponible"; +App::$strings["Unavailable"] = "No Disponible"; +App::$strings["Has crush"] = "Aplastat"; +App::$strings["Infatuated"] = "Encapritxat"; +App::$strings["Dating"] = "Promés"; +App::$strings["Unfaithful"] = "Infidel"; +App::$strings["Sex Addict"] = "Adicte al Sexe"; +App::$strings["Friends/Benefits"] = "Amics amb Beneficis"; +App::$strings["Casual"] = "Casual"; +App::$strings["Engaged"] = "Ocupat"; +App::$strings["Married"] = "Casat"; +App::$strings["Imaginarily married"] = "Casat Imaginàriament"; +App::$strings["Partners"] = "Parella"; +App::$strings["Cohabiting"] = "Cohabitant"; +App::$strings["Common law"] = "Tradició"; +App::$strings["Happy"] = "Feliç"; +App::$strings["Not looking"] = "No Cerco"; +App::$strings["Swinger"] = "Llibertí"; +App::$strings["Betrayed"] = "Traït"; +App::$strings["Separated"] = "Separat"; +App::$strings["Unstable"] = "Inestable"; +App::$strings["Divorced"] = "Divorciat"; +App::$strings["Imaginarily divorced"] = "Divorciat Imaginàriament"; +App::$strings["Widowed"] = "Vidu/ua"; +App::$strings["Uncertain"] = "Incert"; +App::$strings["It's complicated"] = "Es Complicat"; +App::$strings["Don't care"] = "No Et Fa Res"; +App::$strings["Ask me"] = "Pregunta"; +App::$strings["%1\$s's bookmarks"] = "%1\$s de marcadors"; +App::$strings["guest:"] = ""; +App::$strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "El formulario de la cadena de seguridad no era correcto. Esto probablemente ocurrió porque el formulario se ha abierto durante demasiado tiempo (> 3 horas) antes de enviarlo."; App::$strings["prev"] = "prev"; App::$strings["first"] = "primer"; App::$strings["last"] = "últim"; @@ -1568,7 +1877,6 @@ App::$strings["newer"] = "El més nou"; App::$strings["No connections"] = "Sense Connexions"; App::$strings["View all %s connections"] = "Veure totes les connexions de %s"; App::$strings["poke"] = "esperona"; -App::$strings["poked"] = "esperonat"; App::$strings["ping"] = "coloca"; App::$strings["pinged"] = "colocat"; App::$strings["prod"] = "picar"; @@ -1631,385 +1939,21 @@ App::$strings["Select an alternate language"] = "Tria un idioma alternatiu"; App::$strings["activity"] = "activitat"; App::$strings["Design Tools"] = "Eines de disseny"; App::$strings["Pages"] = "Pàgines"; -App::$strings["System"] = "Sistema"; -App::$strings["New App"] = "Nova App"; -App::$strings["Suggestions"] = "Suggerencies"; -App::$strings["See more..."] = "Veure més....."; -App::$strings["You have %1$.0f of %2$.0f allowed connections."] = "Tens %1$.0f de %2$.0f connexions permeses."; -App::$strings["Add New Connection"] = "Afegeix una Nova Connexió"; -App::$strings["Enter channel address"] = "Introdueix l'adreça del canal"; -App::$strings["Examples: bob@example.com, https://example.com/barbara"] = "Exemples: bob@example.com, https://exemple.com/barbara"; -App::$strings["Notes"] = "Notes"; -App::$strings["Remove term"] = "Plaç de remoció"; -App::$strings["Saved Searches"] = "Cerques Guardades"; -App::$strings["add"] = "afegeix"; -App::$strings["Saved Folders"] = "Carpetes Guardades"; -App::$strings["Everything"] = "Tot"; -App::$strings["Archives"] = "Arxius"; -App::$strings["Refresh"] = "Refresc"; -App::$strings["Account settings"] = "Ajustos de Compte"; -App::$strings["Channel settings"] = "Ajustos de Canal"; -App::$strings["Additional features"] = "Característiques addicionals"; -App::$strings["Feature/Addon settings"] = "Ajustos de Complements"; -App::$strings["Display settings"] = "Ajustos de pantalla"; -App::$strings["Manage locations"] = "Gestiona ubicacions"; -App::$strings["Export channel"] = "Exportat canal"; -App::$strings["Connected apps"] = "Apps connectades"; -App::$strings["Premium Channel Settings"] = "Ajustos Premium de Canal"; -App::$strings["Private Mail Menu"] = "Menú de Correu Privat"; -App::$strings["Combined View"] = "Vista Combinada"; -App::$strings["Inbox"] = "Safata d'entrada"; -App::$strings["Outbox"] = "Safata de sortida"; -App::$strings["New Message"] = "Nou Missatge"; -App::$strings["Conversations"] = "Conversacions"; -App::$strings["Received Messages"] = "Missatges Rebuts"; -App::$strings["Sent Messages"] = "Missatges Enviats"; -App::$strings["No messages."] = "Sense missatges."; -App::$strings["Delete conversation"] = "Conversació esborrada"; -App::$strings["Events Menu"] = "Menú d'Esdeveniments"; -App::$strings["Day View"] = "Vista de Dia"; -App::$strings["Week View"] = "Vista de Setmana"; -App::$strings["Month View"] = "Vista de Mes"; -App::$strings["Events Tools"] = "Eina d'Esdeveniments"; -App::$strings["Export Calendar"] = "Exportar Calendari"; -App::$strings["Import Calendar"] = "Importar Calendari"; -App::$strings["Chatrooms"] = "Sala per Xerrar"; -App::$strings["Overview"] = "Visió General"; -App::$strings["Chat Members"] = "Membres de la Sala de Xat"; -App::$strings["Bookmarked Chatrooms"] = "Sales de Xat Favorites"; -App::$strings["Suggested Chatrooms"] = "Sales de Xat Suggerides"; -App::$strings["photo/image"] = "foto/imatge"; -App::$strings["Click to show more"] = "Fes clic per veure més"; -App::$strings["Rating Tools"] = "Eines de Valoració"; -App::$strings["Rate Me"] = "Valora'm"; -App::$strings["View Ratings"] = "Veure Valoracions"; -App::$strings["Forums"] = "Forums"; -App::$strings["Tasks"] = "Tasques"; -App::$strings["Documentation"] = "Documentació"; -App::$strings["Project/Site Information"] = "Informació del Projecte/Lloc"; -App::$strings["For Members"] = "Per Membres"; -App::$strings["For Administrators"] = "Per Administradors"; -App::$strings["For Developers"] = "Per Desenvolupadors"; -App::$strings["Member registrations waiting for confirmation"] = "Una inscripció per a ser membre està esperant confirmació"; -App::$strings["Inspect queue"] = "Revisa cua"; -App::$strings["DB updates"] = "Actualitzacions de Base de Dades"; -App::$strings["Admin"] = "Admin"; -App::$strings["Plugin Features"] = "Característiques del Plugin"; -App::$strings["Channel is blocked on this site."] = "El canal està bloquejat en aquest lloc."; -App::$strings["Channel location missing."] = "Ubicació del canal perduda."; -App::$strings["Response from remote channel was incomplete."] = "La resposta del canal remot fou incompleta."; -App::$strings["Channel was deleted and no longer exists."] = "El canal fou esborrat i actualment no existeix."; -App::$strings["Protocol disabled."] = "Protocol desactivat."; -App::$strings["Channel discovery failed."] = "Descobriment de canal fallit."; -App::$strings["Cannot connect to yourself."] = "No pots connectar amb tu mateix."; -App::$strings["%1\$s's bookmarks"] = "%1\$s de marcadors"; -App::$strings["Public Timeline"] = "Línia de Temps Pública"; -App::$strings["Image/photo"] = "Imatge/foto"; -App::$strings["Encrypted content"] = "Contingut encriptat"; -App::$strings["Install %s element: "] = "Instal·la l'element %s:"; -App::$strings["This post contains an installable %s element, however you lack permissions to install it on this site."] = "Aquesta entrada contè un element %s instal·lable, potser manques de permissos per instal·lar-lo en aquest lloc."; -App::$strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s va escriure el següent %2\$s %3\$s"; -App::$strings["Click to open/close"] = "Clic per obrir/tancar"; -App::$strings["spoiler"] = "xafa guitarres"; -App::$strings["Different viewers will see this text differently"] = "Diferents observadors veuran aquest text de diferents formes"; -App::$strings["$1 wrote:"] = "$1 va escriure:"; -App::$strings["Directory Options"] = "Opcions de Directori"; -App::$strings["Safe Mode"] = "Manera Segura"; -App::$strings["Public Forums Only"] = "Només Fòrums Públics"; -App::$strings["This Website Only"] = "Només Aquest Lloc Web"; -App::$strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "El formulario de la cadena de seguridad no era correcto. Esto probablemente ocurrió porque el formulario se ha abierto durante demasiado tiempo (> 3 horas) antes de enviarlo."; -App::$strings["Logout"] = "Desconectar"; -App::$strings["End this session"] = "Finalitza aquesta sessió"; -App::$strings["Home"] = "Inici"; -App::$strings["Your posts and conversations"] = "Les teves entrades i converses"; -App::$strings["Your profile page"] = "La teva pàgina de perfil"; -App::$strings["Manage/Edit profiles"] = "Gestiona/Edita perfils"; -App::$strings["Edit Profile"] = "Edita Perfil"; -App::$strings["Edit your profile"] = "Edita el teu perfil"; -App::$strings["Your photos"] = "Les Teves Fotos"; -App::$strings["Your files"] = "Els teus arxius"; -App::$strings["Your chatrooms"] = "Les teves sales de xerrar"; -App::$strings["Bookmarks"] = "Marcadors"; -App::$strings["Your bookmarks"] = "Els teus marcadors"; -App::$strings["Your webpages"] = "Les teves pàgines web"; -App::$strings["Sign in"] = "Signatura"; -App::$strings["%s - click to logout"] = "%s - click per desconectar"; -App::$strings["Remote authentication"] = "Autenticació remota"; -App::$strings["Click to authenticate to your home hub"] = "Clica per autentificar-te en el teu node"; -App::$strings["Home Page"] = "Pàgina Personal"; -App::$strings["Create an account"] = "Crear un compte"; -App::$strings["Help and documentation"] = "Ajuda i documentació"; -App::$strings["Applications, utilities, links, games"] = "Aplicacions, utilitats, enllaços, jocs"; -App::$strings["Search site @name, #tag, ?docs, content"] = "Cerca pel lloc @name, #tag, ?docs, contingut"; -App::$strings["Channel Directory"] = "Directori de Canals"; -App::$strings["Your grid"] = "La teva malla"; -App::$strings["Mark all grid notifications seen"] = "Marca totes les notificacions de la malla vistes"; -App::$strings["Channel home"] = "Canal personal"; -App::$strings["Mark all channel notifications seen"] = "Marca totes les notificacions de canal vistes"; -App::$strings["Notices"] = "Noticies"; -App::$strings["Notifications"] = "Notificacions"; -App::$strings["See all notifications"] = "Veure totes les Notificacions"; -App::$strings["Private mail"] = "Correu privat"; -App::$strings["See all private messages"] = "Veure tots els missatges privats"; -App::$strings["Mark all private messages seen"] = "Marcar tots els missatges privats vistos"; -App::$strings["Event Calendar"] = "Calendari d'Events"; -App::$strings["See all events"] = "Veure tots els esdeveniments"; -App::$strings["Mark all events seen"] = "Marcar tots els esdeveniments vistos"; -App::$strings["Manage Your Channels"] = "Gestiona els Teus Canals"; -App::$strings["Account/Channel Settings"] = "Ajustos de Compte/Canal"; -App::$strings["Site Setup and Configuration"] = "Ajustos i Configuració del Lloc"; -App::$strings["Loading..."] = "Carregant..."; -App::$strings["@name, #tag, ?doc, content"] = "@nom, #etiqueta, ?doc, contingut"; -App::$strings["Please wait..."] = "Si us plau, espera......."; -App::$strings["New window"] = "Nova finestra"; -App::$strings["Open the selected location in a different window or browser tab"] = "Obrir la localització seleccionada en un altre finestra o pestanya del navegador"; -App::$strings["User '%s' deleted"] = "usuari '%s' esborrat"; -App::$strings["%d invitation available"] = array( - 0 => "%d invitació disponible", - 1 => "%d invitacions disponibles", -); -App::$strings["Find Channels"] = "Troba Canals"; -App::$strings["Enter name or interest"] = "Entra un nom o interes"; -App::$strings["Connect/Follow"] = "Conecta/Segueix"; -App::$strings["Examples: Robert Morgenstein, Fishing"] = "Exemples: Lionel Messi, Futbolista"; -App::$strings["Random Profile"] = "Perfil Aleatori"; -App::$strings["Invite Friends"] = "Convida Amics"; -App::$strings["Advanced example: name=fred and country=iceland"] = "Exemple avançat: nom=pep i pais=eire"; -App::$strings["%d connection in common"] = array( - 0 => "%d connexió en comú", - 1 => "%d connexions en comú", -); -App::$strings["show more"] = "mostrar més"; -App::$strings["%1\$s is now connected with %2\$s"] = "%1\$s esta ara connectat amb %2\$s"; -App::$strings["%1\$s poked %2\$s"] = "%1\$s a esperonat %2\$s"; -App::$strings["View %s's profile @ %s"] = "Vista %s del perfil @ %s"; -App::$strings["Categories:"] = "Categories:"; -App::$strings["Filed under:"] = "Arxivar a:"; -App::$strings["View in context"] = "Veure en context"; -App::$strings["remove"] = "treu"; -App::$strings["Delete Selected Items"] = "Esborra els Articles Seleccionats"; -App::$strings["View Source"] = "Veure l'Origen"; -App::$strings["Follow Thread"] = "Segueix el Fil"; -App::$strings["Unfollow Thread"] = "Fil Abandonat"; -App::$strings["Activity/Posts"] = "Activitat/Entrades"; -App::$strings["Edit Connection"] = "Modifica la Connexió"; -App::$strings["Message"] = "Missatge"; -App::$strings["%s likes this."] = "%s agrada això."; -App::$strings["%s doesn't like this."] = "%s no agrada això."; -App::$strings["%2\$d people like this."] = array( - 0 => "%2\$d gent agrada això.", - 1 => "%2\$d gent agrada això.", -); -App::$strings["%2\$d people don't like this."] = array( - 0 => "%2\$d gent no agrada això.", - 1 => "%2\$d gent no agrada això.", -); -App::$strings["and"] = "i"; -App::$strings[", and %d other people"] = array( - 0 => ", i %d altra gent", - 1 => ", i %d altra gent", -); -App::$strings["%s like this."] = "%s agrada això."; -App::$strings["%s don't like this."] = "%s no agrada això."; -App::$strings["Set your location"] = "Ajusta la teva ubicació"; -App::$strings["Clear browser location"] = "Treu la localització del navegador"; -App::$strings["Tag term:"] = "Paraula de l'Etiqueta:"; -App::$strings["Where are you right now?"] = "On ets ara?"; -App::$strings["Page link name"] = "Nom de la pàgina enllaçada"; -App::$strings["Post as"] = "Envia com"; -App::$strings["Toggle voting"] = "Commutar votació"; -App::$strings["Categories (optional, comma-separated list)"] = "Categories (opcional, llista separada per comes)"; -App::$strings["Set publish date"] = "Ajusta la data de publicació"; -App::$strings["OK"] = "OK"; -App::$strings["Discover"] = "Descobrir"; -App::$strings["Imported public streams"] = "Importar fluxos públics"; -App::$strings["Commented Order"] = "Ordenar per Comentaris"; -App::$strings["Sort by Comment Date"] = "Ordenar per Data del Comentari"; -App::$strings["Posted Order"] = "Ordenar per Entrades"; -App::$strings["Sort by Post Date"] = "Ordenar per Data d' Entrada"; -App::$strings["Posts that mention or involve you"] = "Entrades que et mencionen o involucren"; -App::$strings["Activity Stream - by date"] = "Activitat del Flux - per data"; -App::$strings["Starred"] = "Preferit"; -App::$strings["Favourite Posts"] = "Entrades Favorites"; -App::$strings["Spam"] = "Spam"; -App::$strings["Posts flagged as SPAM"] = "Entrades marcades com a SPAM"; -App::$strings["Status Messages and Posts"] = "Estat dels Missatges i Entrades"; -App::$strings["About"] = "El Meu Perfil"; -App::$strings["Profile Details"] = "Detalls del Perfil"; -App::$strings["Photo Albums"] = "Albums de Fotos"; -App::$strings["Files and Storage"] = "Arxius i Emmagatzegament"; -App::$strings["Saved Bookmarks"] = "Marcadors Guardats"; -App::$strings["Manage Webpages"] = "Gestió de Pàgines Web"; -App::$strings["__ctx:noun__ Attending"] = array( - 0 => "Assistint", - 1 => "Assistint", -); -App::$strings["__ctx:noun__ Not Attending"] = array( - 0 => "Desassistint", - 1 => "Desassistint", -); -App::$strings["__ctx:noun__ Undecided"] = array( - 0 => "Indecís", - 1 => "Indecisos", -); -App::$strings["__ctx:noun__ Agree"] = array( - 0 => "Acord", - 1 => "Acords", -); -App::$strings["__ctx:noun__ Disagree"] = array( - 0 => "Desacord", - 1 => "Desacords", -); -App::$strings["__ctx:noun__ Abstain"] = array( - 0 => "Abstenirse", - 1 => "Abstenirse", -); -App::$strings["Frequently"] = "Freqüentment"; -App::$strings["Hourly"] = "Horariament"; -App::$strings["Twice daily"] = "Dos vegades al dia"; -App::$strings["Daily"] = "Diariament"; -App::$strings["Weekly"] = "Setmanalment"; -App::$strings["Monthly"] = "Mensualment"; -App::$strings["Currently Male"] = "Actualment Masculí"; -App::$strings["Currently Female"] = "Actualment Femení"; -App::$strings["Mostly Male"] = "Més aviat Masculí"; -App::$strings["Mostly Female"] = "Més Aviat Femení"; -App::$strings["Transgender"] = "Canvi de Sexe"; -App::$strings["Intersex"] = "Intersexual"; -App::$strings["Transsexual"] = "Transsexual"; -App::$strings["Hermaphrodite"] = "Hermafrodita"; -App::$strings["Neuter"] = "Neutre"; -App::$strings["Non-specific"] = "Indefinit"; -App::$strings["Other"] = "Altres"; -App::$strings["Undecided"] = "Indecís"; -App::$strings["Males"] = "Homes"; -App::$strings["Females"] = "Dones"; -App::$strings["Gay"] = "Gay"; -App::$strings["Lesbian"] = "Lesbianes"; -App::$strings["No Preference"] = "Sense Preferències"; -App::$strings["Bisexual"] = "Bisexual"; -App::$strings["Autosexual"] = "Autosexual"; -App::$strings["Abstinent"] = "Abstinent"; -App::$strings["Virgin"] = "Verge"; -App::$strings["Deviant"] = "Desviat"; -App::$strings["Fetish"] = "Fetixiste"; -App::$strings["Oodles"] = "Orgies"; -App::$strings["Nonsexual"] = "Asexual"; -App::$strings["Single"] = "Solter"; -App::$strings["Lonely"] = "Solitari"; -App::$strings["Available"] = "Disponible"; -App::$strings["Unavailable"] = "No Disponible"; -App::$strings["Has crush"] = "Aplastat"; -App::$strings["Infatuated"] = "Encapritxat"; -App::$strings["Dating"] = "Promés"; -App::$strings["Unfaithful"] = "Infidel"; -App::$strings["Sex Addict"] = "Adicte al Sexe"; -App::$strings["Friends/Benefits"] = "Amics amb Beneficis"; -App::$strings["Casual"] = "Casual"; -App::$strings["Engaged"] = "Ocupat"; -App::$strings["Married"] = "Casat"; -App::$strings["Imaginarily married"] = "Casat Imaginàriament"; -App::$strings["Partners"] = "Parella"; -App::$strings["Cohabiting"] = "Cohabitant"; -App::$strings["Common law"] = "Tradició"; -App::$strings["Happy"] = "Feliç"; -App::$strings["Not looking"] = "No Cerco"; -App::$strings["Swinger"] = "Llibertí"; -App::$strings["Betrayed"] = "Traït"; -App::$strings["Separated"] = "Separat"; -App::$strings["Unstable"] = "Inestable"; -App::$strings["Divorced"] = "Divorciat"; -App::$strings["Imaginarily divorced"] = "Divorciat Imaginàriament"; -App::$strings["Widowed"] = "Vidu/ua"; -App::$strings["Uncertain"] = "Incert"; -App::$strings["It's complicated"] = "Es Complicat"; -App::$strings["Don't care"] = "No Et Fa Res"; -App::$strings["Ask me"] = "Pregunta"; -App::$strings["Visible to your default audience"] = "Visible per a la teva audiència "; -App::$strings["Only me"] = "Només jo"; -App::$strings["Public"] = "Públic"; -App::$strings["Anybody in the \$Projectname network"] = "Ningú a la xarxa \$Projectname"; -App::$strings["Any account on %s"] = "Qualsevol compte a %s"; -App::$strings["Any of my connections"] = "Qualsevol de les meves connexions"; -App::$strings["Only connections I specifically allow"] = "Només les connexions que permeto específicament"; -App::$strings["Anybody authenticated (could include visitors from other networks)"] = "Qualsevol persona autenticada (podria incloure als usuaris d'altres xarxes)"; -App::$strings["Any connections including those who haven't yet been approved"] = "Qualsevol connexió incloent aquells que encara no han estat aprovats"; -App::$strings["This is your default setting for the audience of your normal stream, and posts."] = "Aquest és l'ajust per defecte per al públic del seu flux normal i entrades."; -App::$strings["This is your default setting for who can view your default channel profile"] = "Aquesta és la configuració per defecte per a qui pugui veure el teu perfil per defecte del canal"; -App::$strings["This is your default setting for who can view your connections"] = "Aquesta és la configuració per defecte per a qui pugui veure les teves connexions"; -App::$strings["This is your default setting for who can view your file storage and photos"] = "Aquesta és la configuració per defecte per a qui pugui veure els teus arxius i fotos"; -App::$strings["This is your default setting for the audience of your webpages"] = "Aquests son els ajustos per defecte de l'audiència de les teves pàgines web"; -App::$strings["Not a valid email address"] = "Adreça de correu electrònic no vàlida"; -App::$strings["Your email domain is not among those allowed on this site"] = "El seu domini de correu electrònic no es troba entre els permesos en aquest lloc"; -App::$strings["Your email address is already registered at this site."] = "La teva adreça de correu electrònic ja esta registrada en aquest lloc"; -App::$strings["An invitation is required."] = "Es requereix Invitació"; -App::$strings["Invitation could not be verified."] = "L'invitació no ha pogut ser verificada"; -App::$strings["Please enter the required information."] = "Entra la informació sol·licitada"; -App::$strings["Failed to store account information."] = "Ha fallat guardar la informació del compte"; -App::$strings["Registration confirmation for %s"] = "Registre confirmat per %s"; -App::$strings["Registration request at %s"] = "Sol·licitud de registre a %s"; -App::$strings["Administrator"] = "Administrador"; -App::$strings["your registration password"] = "la teva contrasenya registrada"; -App::$strings["Registration details for %s"] = "Detalls del registre per %s"; -App::$strings["Account approved."] = "Compte aprovat."; -App::$strings["Registration revoked for %s"] = "Registre revocat per %s"; -App::$strings["Account verified. Please login."] = "Compte verificat. Si us plau, inicia sessió."; -App::$strings["Click here to upgrade."] = "Feu clic aquí per actualitzar."; -App::$strings["This action exceeds the limits set by your subscription plan."] = "Aquesta acció és superior als límits establerts pel seu pla de subscripció."; -App::$strings["This action is not available under your subscription plan."] = "Aquesta acció no està disponible en el seu pla de subscripció."; -App::$strings["Item was not found."] = "Article no trobat."; -App::$strings["No source file."] = "No hi ha arxiu d'origen."; -App::$strings["Cannot locate file to replace"] = "No trobo l'arxiu a reemplaçar"; -App::$strings["Cannot locate file to revise/update"] = "No trobo l'arxiu a revisar/actualitzar"; -App::$strings["File exceeds size limit of %d"] = "L'arxiu excedeix la mida limit de %d"; -App::$strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Has arribat al teu límit de %1$.0f Mbytes de emagatzematge d'adjunts."; -App::$strings["File upload failed. Possible system limit or action terminated."] = "Pujada del arxiu fallida. Possible límit del sistema o acció interrompuda."; -App::$strings["Stored file could not be verified. Upload failed."] = "L'arxiu guardat no es pot verificar. Pujada fallida."; -App::$strings["Path not available."] = "Trajectòria no disponible"; -App::$strings["Empty pathname"] = "Trajèctoria vuida."; -App::$strings["duplicate filename or path"] = "Nom o trajectòria duplicat"; -App::$strings["Path not found."] = "Trajectòria no trobada."; -App::$strings["mkdir failed."] = "mkdir va fracassar."; -App::$strings["database storage failed."] = "Arxiu de base de dades va fallar."; -App::$strings["Empty path"] = "Trajèctoria vuida"; -App::$strings["Unable to obtain identity information from database"] = "Incapaç de trobar l'informació d'identitat a la base de dades"; -App::$strings["Empty name"] = "Nom buit"; -App::$strings["Name too long"] = "Nom massa llarg"; -App::$strings["No account identifier"] = "Sense identificador de compte"; -App::$strings["Nickname is required."] = "Alies/malnom es requerit."; -App::$strings["Reserved nickname. Please choose another."] = "Àlies reservat. Tria un altre."; -App::$strings["Nickname has unsupported characters or is already being used on this site."] = "L'álies te caracters no soportats o ja esta en ús en aquest lloc"; -App::$strings["Unable to retrieve created identity"] = "No es pot recuperar la identitat creada"; -App::$strings["Default Profile"] = "Perfil per Defecte"; -App::$strings["Requested channel is not available."] = "El canal demanat no està disponible."; -App::$strings["Create New Profile"] = "Crear un Perfil Nou"; -App::$strings["Visible to everybody"] = "Visible per tothom"; -App::$strings["Gender:"] = "Gènere:"; -App::$strings["Status:"] = "Estatus:"; -App::$strings["Homepage:"] = "Pàgina Personal:"; -App::$strings["Online Now"] = "Ara en Linia"; -App::$strings["Like this channel"] = "M'agrada aquest canal"; -App::$strings["j F, Y"] = "j F, Y"; -App::$strings["j F"] = "j F"; -App::$strings["Birthday:"] = "Aniversari:"; -App::$strings["for %1\$d %2\$s"] = "per %1\$d %2\$s"; -App::$strings["Sexual Preference:"] = "Preferència Sexual:"; -App::$strings["Tags:"] = "Etiquetes:"; -App::$strings["Political Views:"] = "Idees Polítiques:"; -App::$strings["Religion:"] = "Religió:"; -App::$strings["Hobbies/Interests:"] = "Aficions/Interessos:"; -App::$strings["Likes:"] = "Agrada:"; -App::$strings["Dislikes:"] = "Desagrada:"; -App::$strings["Contact information and Social Networks:"] = "Informació de contacte i Xarxes Socials:"; -App::$strings["My other channels:"] = "Els meus altres canals:"; -App::$strings["Musical interests:"] = "Interessos Musicals:"; -App::$strings["Books, literature:"] = "Llibres, literatura:"; -App::$strings["Television:"] = "Televisió:"; -App::$strings["Film/dance/culture/entertainment:"] = "Películes/Dança/Cultura/Entreteniment:"; -App::$strings["Love/Romance:"] = "Amor/Romace:"; -App::$strings["Work/employment:"] = "Treball/feina:"; -App::$strings["School/education:"] = "Escola/educació:"; -App::$strings["Like this thing"] = "M'agrada això"; +App::$strings["Logged out."] = "Sortir."; +App::$strings["Failed authentication"] = "Autenticació fallida"; +App::$strings["Can view my normal stream and posts"] = "Pot veure el flux i entrades normals"; +App::$strings["Can view my webpages"] = "Pot veure les meves pàgines web"; +App::$strings["Can post on my channel page (\"wall\")"] = "Pot fer entrades a la meva pàgina de canal (\"mur\")"; +App::$strings["Can like/dislike stuff"] = "Pot dir si agrada/desagrada "; +App::$strings["Profiles and things other than posts/comments"] = "Perfils i altres coses a més d'entrades/comentaris"; +App::$strings["Can forward to all my channel contacts via post @mentions"] = "Ho pot enviar a tots els meus contactes del canal via entrades @mencions"; +App::$strings["Advanced - useful for creating group forum channels"] = "Avançat - capaç de crear canals de grups de foro"; +App::$strings["Can chat with me (when available)"] = "Pot xatejar amb mi (si estic disponible)"; +App::$strings["Can write to my file storage and photos"] = "Pot escriure al meu magatzem d'arxius i fotos"; +App::$strings["Can edit my webpages"] = "Pot editar les meves pàgines web"; +App::$strings["Somewhat advanced - very useful in open communities"] = "Quelcom avançat - molt útil en comunitats obertes"; +App::$strings["Can administer my channel resources"] = "Pot administrar els meus recursos del canal"; +App::$strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "Extremadament avançat. No toquis res si no saps que estàs fent"; App::$strings["General Features"] = "Característiques Generals"; App::$strings["Content Expiration"] = "Expiració del Contingut"; App::$strings["Remove posts/comments and/or private messages at a future time"] = "eliminarà entrades/comentaris i/o missatges privats en un període determinat de temps."; @@ -2021,6 +1965,7 @@ App::$strings["Profile Import/Export"] = "Importar/Exportar Perfil"; App::$strings["Save and load profile details across sites/channels"] = "Guarda i carrega els detalls del perfil al llarg dels llocs/canals"; App::$strings["Web Pages"] = "Pàgines Web"; App::$strings["Provide managed web pages on your channel"] = "Proporcionar pàgines web gestionades al seu canal"; +App::$strings["Provide a wiki for your channel"] = ""; App::$strings["Hide Rating"] = "Amaga la Valoració"; App::$strings["Hide the rating buttons on your channel and profile pages. Note: People can still rate you somewhere else."] = "Amaga el botó de valoracions al teu canal i pàgines del perfil. Nota: Et poden continuar valorant en altres llocs."; App::$strings["Private Notes"] = "Notes Privades"; @@ -2054,6 +1999,7 @@ App::$strings["Search by Date"] = "Cerca per Data"; App::$strings["Ability to select posts by date ranges"] = "Capacitat per seleccionar entrades per rang de dates"; App::$strings["Privacy Groups"] = "Grup Privat"; App::$strings["Enable management and selection of privacy groups"] = "Habilita gestió i selecció de grups privats"; +App::$strings["Saved Searches"] = "Cerques Guardades"; App::$strings["Save search terms for re-use"] = "Guardar els termin de la cerca per a re-usar"; App::$strings["Network Personal Tab"] = "Pestanya Personal de Xarxa"; App::$strings["Enable tab to display only Network posts that you've interacted on"] = "Activa la pestanya per mostrar només les entrades de xarxa en les que has intervingut"; @@ -2069,8 +2015,9 @@ App::$strings["Community Tagging"] = "Etiquetat per la Comunitat"; App::$strings["Ability to tag existing posts"] = "Capacitat d'etiquetar entrades existents"; App::$strings["Post Categories"] = "Categories d'Entrades"; App::$strings["Add categories to your posts"] = "Afegeix categoria a la teva entrada"; -App::$strings["Emoji Reactions"] = ""; -App::$strings["Add emoji reaction ability to posts"] = ""; +App::$strings["Emoji Reactions"] = "Reaccions dels Emoji"; +App::$strings["Add emoji reaction ability to posts"] = "Afegeix un emoji habilitat per reaccionar a entrades"; +App::$strings["Saved Folders"] = "Carpetes Guardades"; App::$strings["Ability to file posts under folders"] = "Capacitat de arxivar entrades en les carpetes"; App::$strings["Dislike Posts"] = "No Agrada l'Entrada"; App::$strings["Ability to dislike posts/comments"] = "Capacitat per marcar amb \"No Agrada\" les entrades/comentaris"; @@ -2078,63 +2025,149 @@ App::$strings["Star Posts"] = "Entrades Excel·lents"; App::$strings["Ability to mark special posts with a star indicator"] = "Capacitat per marcar entrades especials amb l'indicador d'excel·lencia"; App::$strings["Tag Cloud"] = "Núvol d'Etiquetes."; App::$strings["Provide a personal tag cloud on your channel page"] = "Proporcionar un núvol d'etiquetes personals a la teva pàgina de canal"; -App::$strings["Embedded content"] = "Contingut embegut"; -App::$strings["Embedding disabled"] = "Incorporació desactivada"; -App::$strings["Who can see this?"] = "Qui pot veure això?"; -App::$strings["Custom selection"] = "Selecció a mida"; -App::$strings["Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit the scope of \"Show\"."] = "Selecciona \"Mostrar\" per permetre la visualització. \"No Mostrar\" et permet obviar i limitar l'abast de \"Mostrar\"."; -App::$strings["Show"] = "Mostra"; -App::$strings["Don't show"] = "No mostrar"; -App::$strings["Other networks and post services"] = "Altres xarxes i serveis de correu"; -App::$strings["Post permissions %s cannot be changed %s after a post is shared.
These permissions set who is allowed to view the post."] = "Els permisos d'entrada %s no poden esser canviats %s posteriorment a que una entrada ja està compartida.
Aquest ajust dels permisos indica qui pot veure l'entrada."; -App::$strings["Logged out."] = "Sortir."; -App::$strings["Failed authentication"] = "Autenticació fallida"; -App::$strings["Birthday"] = "Aniversari"; -App::$strings["Age: "] = "Edat:"; -App::$strings["YYYY-MM-DD or MM-DD"] = "YYYY-MM-DD o MM-DD"; -App::$strings["never"] = "mai"; -App::$strings["less than a second ago"] = "fa menys d'un segon"; -App::$strings["__ctx:e.g. 22 hours ago, 1 minute ago__ %1\$d %2\$s ago"] = "Fa %1\$d %2\$s"; -App::$strings["__ctx:relative_date__ year"] = array( - 0 => "any", - 1 => "anys", -); -App::$strings["__ctx:relative_date__ month"] = array( - 0 => "mes", - 1 => "mesos ", -); -App::$strings["__ctx:relative_date__ week"] = array( - 0 => "setmana", - 1 => "setmanes", -); -App::$strings["__ctx:relative_date__ day"] = array( - 0 => "dia", - 1 => "dies", -); -App::$strings["__ctx:relative_date__ hour"] = array( - 0 => "hora", - 1 => "hores", -); -App::$strings["__ctx:relative_date__ minute"] = array( - 0 => "minut", - 1 => "minuts", -); -App::$strings["__ctx:relative_date__ second"] = array( - 0 => "segon", - 1 => "segons", -); -App::$strings["%1\$s's birthday"] = "Aniversari de %1\$s"; -App::$strings["Happy Birthday %1\$s"] = "Feliç Aniversari %1\$s"; App::$strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Un grup esborrat amb aquest nom fou reviscolat. Els permisos dels items existents poden aplicar-se a aquest grup i qualsevol membre futur. Si no es això el que vols, si et plau, crea un altre grup amb un nom diferent."; App::$strings["Add new connections to this privacy group"] = "Afegir noves connexions a aquest grup privat"; App::$strings["edit"] = "edita"; App::$strings["Edit group"] = "Editar grup"; App::$strings["Add privacy group"] = "Afegir grup privat"; App::$strings["Channels not in any privacy group"] = "Sense canals en grups privats"; +App::$strings["add"] = "afegeix"; +App::$strings["l F d, Y \\@ g:i A"] = "l d \\d\\e/\\d' F de Y \\@ H:i T"; +App::$strings["Starts:"] = "Inicia:"; +App::$strings["Finishes:"] = "Acaba:"; +App::$strings["This event has been added to your calendar."] = "Aquest succés ha estat afegit al teu calendari."; +App::$strings["Not specified"] = "Sense especificar"; +App::$strings["Needs Action"] = "Necessita una Acció"; +App::$strings["Completed"] = "Completat"; +App::$strings["In Process"] = "En Procès"; +App::$strings["Cancelled"] = "Cancel·lat"; +App::$strings["Not a valid email address"] = "Adreça de correu electrònic no vàlida"; +App::$strings["Your email domain is not among those allowed on this site"] = "El seu domini de correu electrònic no es troba entre els permesos en aquest lloc"; +App::$strings["Your email address is already registered at this site."] = "La teva adreça de correu electrònic ja esta registrada en aquest lloc"; +App::$strings["An invitation is required."] = "Es requereix Invitació"; +App::$strings["Invitation could not be verified."] = "L'invitació no ha pogut ser verificada"; +App::$strings["Please enter the required information."] = "Entra la informació sol·licitada"; +App::$strings["Failed to store account information."] = "Ha fallat guardar la informació del compte"; +App::$strings["Registration confirmation for %s"] = "Inscripció confirmada per %s"; +App::$strings["Registration request at %s"] = "Sol·licitud d'inscripció a %s"; +App::$strings["your registration password"] = "la teva contrasenya registrada"; +App::$strings["Registration details for %s"] = "Detalls de l'inscripció per %s"; +App::$strings["Account approved."] = "Compte aprovat."; +App::$strings["Registration revoked for %s"] = "Inscripció revocada per %s"; +App::$strings["Click here to upgrade."] = "Feu clic aquí per actualitzar."; +App::$strings["This action exceeds the limits set by your subscription plan."] = "Aquesta acció és superior als límits establerts pel seu pla de subscripció."; +App::$strings["This action is not available under your subscription plan."] = "Aquesta acció no està disponible en el seu pla de subscripció."; +App::$strings["Channel is blocked on this site."] = "El canal està bloquejat en aquest lloc."; +App::$strings["Channel location missing."] = "Ubicació del canal perduda."; +App::$strings["Response from remote channel was incomplete."] = "La resposta del canal remot fou incompleta."; +App::$strings["Channel was deleted and no longer exists."] = "El canal fou esborrat i actualment no existeix."; +App::$strings["Protocol disabled."] = "Protocol desactivat."; +App::$strings["Channel discovery failed."] = "Descobriment de canal fallit."; +App::$strings["Cannot connect to yourself."] = "No pots connectar amb tu mateix."; +App::$strings["Item was not found."] = "Article no trobat."; +App::$strings["No source file."] = "No hi ha arxiu d'origen."; +App::$strings["Cannot locate file to replace"] = "No trobo l'arxiu a reemplaçar"; +App::$strings["Cannot locate file to revise/update"] = "No trobo l'arxiu a revisar/actualitzar"; +App::$strings["File exceeds size limit of %d"] = "L'arxiu excedeix la mida limit de %d"; +App::$strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Has arribat al teu límit de %1$.0f Mbytes de emagatzematge d'adjunts."; +App::$strings["File upload failed. Possible system limit or action terminated."] = "Pujada del arxiu fallida. Possible límit del sistema o acció interrompuda."; +App::$strings["Stored file could not be verified. Upload failed."] = "L'arxiu guardat no es pot verificar. Pujada fallida."; +App::$strings["Path not available."] = "Trajectòria no disponible"; +App::$strings["Empty pathname"] = "Trajèctoria vuida."; +App::$strings["duplicate filename or path"] = "Nom o trajectòria duplicat"; +App::$strings["Path not found."] = "Trajectòria no trobada."; +App::$strings["mkdir failed."] = "mkdir va fracassar."; +App::$strings["database storage failed."] = "Arxiu de base de dades va fallar."; +App::$strings["Empty path"] = "Trajèctoria vuida"; +App::$strings["Image/photo"] = "Imatge/foto"; +App::$strings["Encrypted content"] = "Contingut encriptat"; +App::$strings["Install %s element: "] = "Instal·la l'element %s:"; +App::$strings["This post contains an installable %s element, however you lack permissions to install it on this site."] = "Aquesta entrada contè un element %s instal·lable, potser manques de permissos per instal·lar-lo en aquest lloc."; +App::$strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s va escriure el següent %2\$s %3\$s"; +App::$strings["Click to open/close"] = "Clic per obrir/tancar"; +App::$strings["spoiler"] = "xafa guitarres"; +App::$strings["Different viewers will see this text differently"] = "Diferents observadors veuran aquest text de diferents formes"; +App::$strings["$1 wrote:"] = "$1 va escriure:"; +App::$strings["(Unknown)"] = "(Desconegut)"; +App::$strings["Visible to anybody on the internet."] = "Visible per tothom a la Internet"; +App::$strings["Visible to you only."] = "Visible només per tú."; +App::$strings["Visible to anybody in this network."] = "Visible per tothom en aquesta xarxa."; +App::$strings["Visible to anybody authenticated."] = "Visible per tothom autenticat."; +App::$strings["Visible to anybody on %s."] = "Visible per a tothom a %s."; +App::$strings["Visible to all connections."] = "Visible per a totes les connexions."; +App::$strings["Visible to approved connections."] = "Visible per a les connexions aprovades."; +App::$strings["Visible to specific connections."] = "Visible per a específiques connexions."; +App::$strings["Privacy group is empty."] = "El grup privat està vuit."; +App::$strings["Privacy group: %s"] = "Grup privat: %s"; +App::$strings["Connection not found."] = "Connexió no trobada."; +App::$strings["profile photo"] = "foto del perfil"; +App::$strings["Embedded content"] = "Contingut embegut"; +App::$strings["Embedding disabled"] = "Incorporació desactivada"; +App::$strings["System"] = "Sistema"; +App::$strings["New App"] = "Nova App"; +App::$strings["Suggestions"] = "Suggerencies"; +App::$strings["See more..."] = "Veure més....."; +App::$strings["You have %1$.0f of %2$.0f allowed connections."] = "Tens %1$.0f de %2$.0f connexions permeses."; +App::$strings["Add New Connection"] = "Afegeix una Nova Connexió"; +App::$strings["Enter channel address"] = "Introdueix l'adreça del canal"; +App::$strings["Examples: bob@example.com, https://example.com/barbara"] = "Exemples: bob@example.com, https://exemple.com/barbara"; +App::$strings["Notes"] = "Notes"; +App::$strings["Remove term"] = "Plaç de remoció"; +App::$strings["Everything"] = "Tot"; +App::$strings["Archives"] = "Arxius"; +App::$strings["Refresh"] = "Refresc"; +App::$strings["Account settings"] = "Ajustos de Compte"; +App::$strings["Channel settings"] = "Ajustos de Canal"; +App::$strings["Additional features"] = "Característiques addicionals"; +App::$strings["Feature/Addon settings"] = "Ajustos de Complements"; +App::$strings["Display settings"] = "Ajustos de pantalla"; +App::$strings["Manage locations"] = "Gestiona ubicacions"; +App::$strings["Export channel"] = "Exportat canal"; +App::$strings["Connected apps"] = "Apps connectades"; +App::$strings["Premium Channel Settings"] = "Ajustos Premium de Canal"; +App::$strings["Private Mail Menu"] = "Menú de Correu Privat"; +App::$strings["Combined View"] = "Vista Combinada"; +App::$strings["Conversations"] = "Conversacions"; +App::$strings["Received Messages"] = "Missatges Rebuts"; +App::$strings["Sent Messages"] = "Missatges Enviats"; +App::$strings["No messages."] = "Sense missatges."; +App::$strings["Delete conversation"] = "Conversació esborrada"; +App::$strings["Events Tools"] = "Eina d'Esdeveniments"; +App::$strings["Export Calendar"] = "Exportar Calendari"; +App::$strings["Import Calendar"] = "Importar Calendari"; +App::$strings["Overview"] = "Visió General"; +App::$strings["Chat Members"] = "Membres de la Sala de Xat"; +App::$strings["Wiki List"] = "Llista de Wikis"; +App::$strings["Wiki Pages"] = "Pàgines de Wikis"; +App::$strings["Bookmarked Chatrooms"] = "Sales de Xat Favorites"; +App::$strings["Suggested Chatrooms"] = "Sales de Xat Suggerides"; +App::$strings["photo/image"] = "foto/imatge"; +App::$strings["Click to show more"] = "Fes clic per veure més"; +App::$strings["Rating Tools"] = "Eines de Valoració"; +App::$strings["Rate Me"] = "Valora'm"; +App::$strings["View Ratings"] = "Veure Valoracions"; +App::$strings["Forums"] = "Forums"; +App::$strings["Tasks"] = "Tasques"; +App::$strings["Documentation"] = "Documentació"; +App::$strings["Project/Site Information"] = "Informació del Projecte/Lloc"; +App::$strings["For Members"] = "Per Membres"; +App::$strings["For Administrators"] = "Per Administradors"; +App::$strings["For Developers"] = "Per Desenvolupadors"; +App::$strings["Member registrations waiting for confirmation"] = "Una inscripció per a ser membre està esperant confirmació"; +App::$strings["Inspect queue"] = "Revisa cua"; +App::$strings["DB updates"] = "Actualitzacions de Base de Dades"; +App::$strings["Plugin Features"] = "Característiques del Plugin"; +App::$strings[" and "] = "i"; +App::$strings["public profile"] = "Perfil públic"; +App::$strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s canviat %2\$s a “%3\$s”"; +App::$strings["Visit %1\$s's %2\$s"] = "Visita %1\$s en %2\$s"; +App::$strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s Ha actualitzat %2\$s, canviant %3\$s."; +App::$strings["Attachments:"] = "Adjuntat:"; +App::$strings["\$Projectname event notification:"] = "Notificació d'esdeveniment de \$Projectname"; App::$strings["Delete this item?"] = "Esborrar aquest item?"; -App::$strings["[-] show less"] = "[-] mostra menys"; -App::$strings["[+] expand"] = "[+] expandeix"; -App::$strings["[-] collapse"] = "[-] colapsa"; +App::$strings["%s show less"] = ""; +App::$strings["%s expand"] = ""; +App::$strings["%s collapse"] = ""; App::$strings["Password too short"] = "Contrasenya massa curta"; App::$strings["Passwords do not match"] = "Les paraules de pas no coincideixen"; App::$strings["everybody"] = "tothom"; @@ -2189,72 +2222,78 @@ App::$strings["__ctx:calendar__ month"] = "mes"; App::$strings["__ctx:calendar__ week"] = "setmana"; App::$strings["__ctx:calendar__ day"] = "dia"; App::$strings["__ctx:calendar__ All day"] = "Tot el dia"; -App::$strings["view full size"] = "Veure a mida competa"; -App::$strings["No Subject"] = "Sense Assumpte"; -App::$strings["Friendica"] = "Friendica"; -App::$strings["OStatus"] = "OStatus"; -App::$strings["GNU-Social"] = "GNU-Social"; -App::$strings["RSS/Atom"] = "RSS/Atom"; -App::$strings["Diaspora"] = "Diaspora"; -App::$strings["Facebook"] = "Facebook"; -App::$strings["Zot"] = "Zot"; -App::$strings["LinkedIn"] = "LinkedIn"; -App::$strings["XMPP/IM"] = "XMPP/IM"; -App::$strings["MySpace"] = "MySpace"; -App::$strings["Image exceeds website size limit of %lu bytes"] = "La imatge excedeix la mida limit pel lloc web en %lu bytes"; -App::$strings["Image file is empty."] = "El fitxer d'imatge esta buit."; -App::$strings["Photo storage failed."] = "Fracassà l'emmagatzematge de la Foto"; -App::$strings["a new photo"] = "Una foto nova"; -App::$strings["__ctx:photo_upload__ %1\$s posted %2\$s to %3\$s"] = "%1\$s enviat %2\$s a %3\$s"; -App::$strings["Upload New Photos"] = "Puja Noves Fotos"; +App::$strings["%d invitation available"] = array( + 0 => "%d invitació disponible", + 1 => "%d invitacions disponibles", +); +App::$strings["Find Channels"] = "Troba Canals"; +App::$strings["Enter name or interest"] = "Entra un nom o interes"; +App::$strings["Connect/Follow"] = "Conecta/Segueix"; +App::$strings["Examples: Robert Morgenstein, Fishing"] = "Exemples: Lionel Messi, Futbolista"; +App::$strings["Random Profile"] = "Perfil Aleatori"; +App::$strings["Invite Friends"] = "Convida Amics"; +App::$strings["Advanced example: name=fred and country=iceland"] = "Exemple avançat: nom=pep i pais=eire"; +App::$strings["%d connection in common"] = array( + 0 => "%d connexió en comú", + 1 => "%d connexions en comú", +); +App::$strings["show more"] = "mostrar més"; +App::$strings["Directory Options"] = "Opcions de Directori"; +App::$strings["Safe Mode"] = "Manera Segura"; +App::$strings["Public Forums Only"] = "Només Fòrums Públics"; +App::$strings["This Website Only"] = "Només Aquest Lloc Web"; +App::$strings["No recipient provided."] = "No s'ha proporcionat bústia."; +App::$strings["[no subject]"] = "[no subject]"; +App::$strings["Unable to determine sender."] = "incapaç de determinar el remitent"; +App::$strings["Stored post could not be verified."] = "L'entrada guardada no pot ser verificada"; +App::$strings["Who can see this?"] = "Qui pot veure això?"; +App::$strings["Custom selection"] = "Selecció a mida"; +App::$strings["Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit the scope of \"Show\"."] = "Selecciona \"Mostrar\" per permetre la visualització. \"No Mostrar\" et permet obviar i limitar l'abast de \"Mostrar\"."; +App::$strings["Show"] = "Mostra"; +App::$strings["Don't show"] = "No mostrar"; +App::$strings["Other networks and post services"] = "Altres xarxes i serveis de correu"; +App::$strings["Post permissions %s cannot be changed %s after a post is shared.
These permissions set who is allowed to view the post."] = "Els permisos d'entrada %s no poden esser canviats %s posteriorment a que una entrada ja està compartida.
Aquest ajust dels permisos indica qui pot veure l'entrada."; +App::$strings["Birthday"] = "Aniversari"; +App::$strings["Age: "] = "Edat:"; +App::$strings["YYYY-MM-DD or MM-DD"] = "YYYY-MM-DD o MM-DD"; +App::$strings["never"] = "mai"; +App::$strings["less than a second ago"] = "fa menys d'un segon"; +App::$strings["__ctx:e.g. 22 hours ago, 1 minute ago__ %1\$d %2\$s ago"] = "Fa %1\$d %2\$s"; +App::$strings["__ctx:relative_date__ year"] = array( + 0 => "any", + 1 => "anys", +); +App::$strings["__ctx:relative_date__ month"] = array( + 0 => "mes", + 1 => "mesos ", +); +App::$strings["__ctx:relative_date__ week"] = array( + 0 => "setmana", + 1 => "setmanes", +); +App::$strings["__ctx:relative_date__ day"] = array( + 0 => "dia", + 1 => "dies", +); +App::$strings["__ctx:relative_date__ hour"] = array( + 0 => "hora", + 1 => "hores", +); +App::$strings["__ctx:relative_date__ minute"] = array( + 0 => "minut", + 1 => "minuts", +); +App::$strings["__ctx:relative_date__ second"] = array( + 0 => "segon", + 1 => "segons", +); +App::$strings["%1\$s's birthday"] = "Aniversari de %1\$s"; +App::$strings["Happy Birthday %1\$s"] = "Feliç Aniversari %1\$s"; +App::$strings["Public Timeline"] = "Línia de Temps Pública"; App::$strings["Invalid data packet"] = "paquet de dades invàlid"; App::$strings["Unable to verify channel signature"] = "No es pot verificar la signatura del canal"; App::$strings["Unable to verify site signature for %s"] = "No es pot verificar la signatura del lloc per %s"; App::$strings["invalid target signature"] = "Signatura objectiu invàlida"; -App::$strings["New Page"] = "Pàgina Nova"; -App::$strings["Title"] = "Títol"; -App::$strings["Can view my normal stream and posts"] = "Pot veure el flux i entrades normals"; -App::$strings["Can view my default channel profile"] = "Pot veure el meu perfil del canal per defecte"; -App::$strings["Can view my connections"] = "Pot veure les meves connexions"; -App::$strings["Can view my file storage and photos"] = "Pot veure al meu magatzem d'arxius i fotos"; -App::$strings["Can view my webpages"] = "Pot veure les meves pàgines web"; -App::$strings["Can send me their channel stream and posts"] = "Pot enviar-me el flux i entrades del seu canal"; -App::$strings["Can post on my channel page (\"wall\")"] = "Pot fer entrades a la meva pàgina de canal (\"mur\")"; -App::$strings["Can comment on or like my posts"] = "Pot fer comentaris o dir si agrada en les meves entrades"; -App::$strings["Can send me private mail messages"] = "Pot enviar-me un missatge de correu privat"; -App::$strings["Can like/dislike stuff"] = "Pot dir si agrada/desagrada "; -App::$strings["Profiles and things other than posts/comments"] = "Perfils i altres coses a més d'entrades/comentaris"; -App::$strings["Can forward to all my channel contacts via post @mentions"] = "Ho pot enviar a tots els meus contactes del canal via entrades @mencions"; -App::$strings["Advanced - useful for creating group forum channels"] = "Avançat - capaç de crear canals de grups de foro"; -App::$strings["Can chat with me (when available)"] = "Pot xatejar amb mi (si estic disponible)"; -App::$strings["Can write to my file storage and photos"] = "Pot escriure al meu magatzem d'arxius i fotos"; -App::$strings["Can edit my webpages"] = "Pot editar les meves pàgines web"; -App::$strings["Can source my public posts in derived channels"] = "Pot mostrar l'origen de les meves entrades públiques en altres canals"; -App::$strings["Somewhat advanced - very useful in open communities"] = "Quelcom avançat - molt útil en comunitats obertes"; -App::$strings["Can administer my channel resources"] = "Pot administrar els meus recursos del canal"; -App::$strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "Extremadament avançat. No toquis res si no saps que estàs fent"; -App::$strings["Social Networking"] = "Xarxes Socials"; -App::$strings["Social - Mostly Public"] = "Social - Principalment Públic"; -App::$strings["Social - Restricted"] = "Social - Restingit"; -App::$strings["Social - Private"] = "Social - Privat"; -App::$strings["Community Forum"] = "Foro de Comunitat"; -App::$strings["Forum - Mostly Public"] = "Fòrum - Principalment Públic"; -App::$strings["Forum - Restricted"] = "Fòrum - Restringit"; -App::$strings["Forum - Private"] = "Fòrum - Privat"; -App::$strings["Feed Republish"] = "Republicador"; -App::$strings["Feed - Mostly Public"] = "Realimentador - Públic Principalment"; -App::$strings["Feed - Restricted"] = "Retroalimentador - Restringit"; -App::$strings["Special Purpose"] = "Objectiu Especial"; -App::$strings["Special - Celebrity/Soapbox"] = "Espacial - Celebritat/Plataforma"; -App::$strings["Special - Group Repository"] = "Especial - Repositori d'un Grup"; -App::$strings["Custom/Expert Mode"] = "Personalitzat/Manera Experta"; -App::$strings[" and "] = "i"; -App::$strings["public profile"] = "Perfil públic"; -App::$strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s canviat %2\$s a “%3\$s”"; -App::$strings["Visit %1\$s's %2\$s"] = "Visita %1\$s en %2\$s"; -App::$strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s Ha actualitzat %2\$s, canviant %3\$s."; -App::$strings["Attachments:"] = "Adjuntat:"; -App::$strings["\$Projectname event notification:"] = "Notificació d'esdeveniment de \$Projectname"; App::$strings["Focus (Hubzilla default)"] = "Focus (Hubzilla per defecte)"; App::$strings["Theme settings"] = "Ajustos de tema"; App::$strings["Select scheme"] = "Tria esquema"; @@ -2294,6 +2333,7 @@ App::$strings["__ctx:opensearch__ \$Projectname"] = "\$Projectname"; App::$strings["Update %s failed. See error logs."] = "L'actualització %s ha fallat. Mira el registre d'errors."; App::$strings["Update Error at %s"] = "Error d'Actualització a %s"; App::$strings["Create an account to access services and applications within the Hubzilla"] = "Crea un compte per accedir als serveis i aplicacions dins de Hubzilla"; +App::$strings["Login/Email"] = ""; App::$strings["Password"] = "Contrasenya"; App::$strings["Remember me"] = "Recorda'm"; App::$strings["Forgot your password?"] = "Has perdut la Contrasenya?"; diff --git a/view/de/hmessages.po b/view/de/hmessages.po index 5c3b981ad..c160cd6bc 100644 --- a/view/de/hmessages.po +++ b/view/de/hmessages.po @@ -23,8 +23,8 @@ msgid "" msgstr "" "Project-Id-Version: Redmatrix\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-06-10 00:02-0700\n" -"PO-Revision-Date: 2016-06-15 09:43+0000\n" +"POT-Creation-Date: 2016-07-22 00:02-0700\n" +"PO-Revision-Date: 2016-07-28 09:16+0000\n" "Last-Translator: Phellmes \n" "Language-Team: German (http://www.transifex.com/Friendica/red-matrix/language/de/)\n" "MIME-Version: 1.0\n" @@ -33,11 +33,156 @@ msgstr "" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ../../Zotlabs/Access/PermissionRoles.php:182 +#: ../../include/permissions.php:904 +msgid "Social Networking" +msgstr "Soziales Netzwerk" + +#: ../../Zotlabs/Access/PermissionRoles.php:183 +#: ../../include/permissions.php:904 +msgid "Social - Mostly Public" +msgstr "Soziales Netzwerk - Weitgehend öffentlich" + +#: ../../Zotlabs/Access/PermissionRoles.php:184 +#: ../../include/permissions.php:904 +msgid "Social - Restricted" +msgstr "Soziales Netzwerk - Beschränkt" + +#: ../../Zotlabs/Access/PermissionRoles.php:185 +#: ../../include/permissions.php:904 +msgid "Social - Private" +msgstr "Soziales Netzwerk - Privat" + +#: ../../Zotlabs/Access/PermissionRoles.php:188 +#: ../../include/permissions.php:905 +msgid "Community Forum" +msgstr "Forum" + +#: ../../Zotlabs/Access/PermissionRoles.php:189 +#: ../../include/permissions.php:905 +msgid "Forum - Mostly Public" +msgstr "Forum - Weitgehend öffentlich" + +#: ../../Zotlabs/Access/PermissionRoles.php:190 +#: ../../include/permissions.php:905 +msgid "Forum - Restricted" +msgstr "Forum - Beschränkt" + +#: ../../Zotlabs/Access/PermissionRoles.php:191 +#: ../../include/permissions.php:905 +msgid "Forum - Private" +msgstr "Forum - Privat" + +#: ../../Zotlabs/Access/PermissionRoles.php:194 +#: ../../include/permissions.php:906 +msgid "Feed Republish" +msgstr "Teilen von Feeds" + +#: ../../Zotlabs/Access/PermissionRoles.php:195 +#: ../../include/permissions.php:906 +msgid "Feed - Mostly Public" +msgstr "Feeds - Weitgehend öffentlich" + +#: ../../Zotlabs/Access/PermissionRoles.php:196 +#: ../../include/permissions.php:906 +msgid "Feed - Restricted" +msgstr "Feeds - Beschränkt" + +#: ../../Zotlabs/Access/PermissionRoles.php:199 +#: ../../include/permissions.php:907 +msgid "Special Purpose" +msgstr "Für besondere Zwecke" + +#: ../../Zotlabs/Access/PermissionRoles.php:200 +#: ../../include/permissions.php:907 +msgid "Special - Celebrity/Soapbox" +msgstr "Speziell - Mitteilungs-Kanal (keine Kommentare)" + +#: ../../Zotlabs/Access/PermissionRoles.php:201 +#: ../../include/permissions.php:907 +msgid "Special - Group Repository" +msgstr "Speziell - Gruppenarchiv" + +#: ../../Zotlabs/Access/PermissionRoles.php:204 ../../include/selectors.php:49 +#: ../../include/selectors.php:66 ../../include/selectors.php:104 +#: ../../include/selectors.php:140 ../../include/permissions.php:908 +msgid "Other" +msgstr "Andere" + +#: ../../Zotlabs/Access/PermissionRoles.php:205 +#: ../../include/permissions.php:908 +msgid "Custom/Expert Mode" +msgstr "Benutzerdefiniert/Expertenmodus" + +#: ../../Zotlabs/Access/Permissions.php:30 +msgid "Can view my channel stream and posts" +msgstr "Kann meinen Kanal-Stream und meine Beiträge sehen" + +#: ../../Zotlabs/Access/Permissions.php:31 ../../include/permissions.php:33 +msgid "Can send me their channel stream and posts" +msgstr "Kann mir die Beiträge aus seinem/ihrem Kanal schicken" + +#: ../../Zotlabs/Access/Permissions.php:32 ../../include/permissions.php:27 +msgid "Can view my default channel profile" +msgstr "Kann mein Standardprofil sehen" + +#: ../../Zotlabs/Access/Permissions.php:33 ../../include/permissions.php:28 +msgid "Can view my connections" +msgstr "Kann meine Verbindungen sehen" + +#: ../../Zotlabs/Access/Permissions.php:34 ../../include/permissions.php:29 +msgid "Can view my file storage and photos" +msgstr "Kann meine Datei- und Bilderordner sehen" + +#: ../../Zotlabs/Access/Permissions.php:35 +msgid "Can upload/modify my file storage and photos" +msgstr "Kann in meine Datei- und Bilderordner hochladen/ändern" + +#: ../../Zotlabs/Access/Permissions.php:36 +msgid "Can view my channel webpages" +msgstr "Kann die Webseiten meines Kanals sehen" + +#: ../../Zotlabs/Access/Permissions.php:37 +msgid "Can create/edit my channel webpages" +msgstr "Kann Webseiten in meinem Kanal erstellen/ändern" + +#: ../../Zotlabs/Access/Permissions.php:38 +msgid "Can post on my channel (wall) page" +msgstr "Kann auf meiner Kanal-Seite (\"wall\") Beiträge veröffentlichen" + +#: ../../Zotlabs/Access/Permissions.php:39 ../../include/permissions.php:35 +msgid "Can comment on or like my posts" +msgstr "Darf meine Beiträge kommentieren und mögen/nicht mögen" + +#: ../../Zotlabs/Access/Permissions.php:40 ../../include/permissions.php:36 +msgid "Can send me private mail messages" +msgstr "Kann mir private Nachrichten schicken" + +#: ../../Zotlabs/Access/Permissions.php:41 +msgid "Can like/dislike profiles and profile things" +msgstr "Kann Profile und Profilsachen mögen/nicht mögen" + +#: ../../Zotlabs/Access/Permissions.php:42 +msgid "Can forward to all my channel connections via @+ mentions in posts" +msgstr "Kann an alle meine Verbindungen via @-Erwähnungen Nachrichten weiterleiten" + +#: ../../Zotlabs/Access/Permissions.php:43 +msgid "Can chat with me" +msgstr "Kann mit mir chatten" + +#: ../../Zotlabs/Access/Permissions.php:44 ../../include/permissions.php:44 +msgid "Can source my public posts in derived channels" +msgstr "Kann meine öffentlichen Beiträge als Quellen für Kanäle verwenden" + +#: ../../Zotlabs/Access/Permissions.php:45 +msgid "Can administer my channel" +msgstr "Kann meinen Kanal administrieren" + #: ../../Zotlabs/Storage/Browser.php:107 ../../Zotlabs/Storage/Browser.php:239 msgid "parent" msgstr "Übergeordnetes Verzeichnis" -#: ../../Zotlabs/Storage/Browser.php:131 ../../include/text.php:2620 +#: ../../Zotlabs/Storage/Browser.php:131 ../../include/text.php:2605 msgid "Collection" msgstr "Sammlung" @@ -61,16 +206,17 @@ msgstr "Posteingang für überwachte Kalender" msgid "Schedule Outbox" msgstr "Postausgang für überwachte Kalender" -#: ../../Zotlabs/Storage/Browser.php:164 ../../Zotlabs/Module/Photos.php:798 -#: ../../Zotlabs/Module/Photos.php:1243 ../../Zotlabs/Lib/Apps.php:486 -#: ../../Zotlabs/Lib/Apps.php:561 ../../include/widgets.php:1505 -#: ../../include/conversation.php:1032 +#: ../../Zotlabs/Storage/Browser.php:164 ../../Zotlabs/Module/Photos.php:796 +#: ../../Zotlabs/Module/Photos.php:1241 +#: ../../Zotlabs/Module/Embedphotos.php:147 ../../Zotlabs/Lib/Apps.php:490 +#: ../../Zotlabs/Lib/Apps.php:565 ../../include/conversation.php:1035 +#: ../../include/widgets.php:1599 msgid "Unknown" msgstr "Unbekannt" #: ../../Zotlabs/Storage/Browser.php:226 ../../Zotlabs/Module/Fbrowser.php:85 -#: ../../Zotlabs/Lib/Apps.php:216 ../../include/nav.php:93 -#: ../../include/conversation.php:1639 +#: ../../Zotlabs/Lib/Apps.php:217 ../../include/nav.php:93 +#: ../../include/conversation.php:1654 msgid "Files" msgstr "Dateien" @@ -83,22 +229,23 @@ msgid "Shared" msgstr "Geteilt" #: ../../Zotlabs/Storage/Browser.php:230 ../../Zotlabs/Storage/Browser.php:306 -#: ../../Zotlabs/Module/Blocks.php:156 ../../Zotlabs/Module/Layouts.php:182 -#: ../../Zotlabs/Module/Menu.php:118 ../../Zotlabs/Module/New_channel.php:142 -#: ../../Zotlabs/Module/Webpages.php:186 +#: ../../Zotlabs/Module/Layouts.php:184 ../../Zotlabs/Module/Menu.php:118 +#: ../../Zotlabs/Module/New_channel.php:142 +#: ../../Zotlabs/Module/Blocks.php:159 ../../Zotlabs/Module/Webpages.php:193 msgid "Create" msgstr "Erstelle" #: ../../Zotlabs/Storage/Browser.php:231 ../../Zotlabs/Storage/Browser.php:308 #: ../../Zotlabs/Module/Cover_photo.php:357 -#: ../../Zotlabs/Module/Photos.php:825 ../../Zotlabs/Module/Photos.php:1364 -#: ../../Zotlabs/Module/Profile_photo.php:368 ../../include/widgets.php:1518 +#: ../../Zotlabs/Module/Photos.php:823 ../../Zotlabs/Module/Photos.php:1362 +#: ../../Zotlabs/Module/Profile_photo.php:390 +#: ../../Zotlabs/Module/Embedphotos.php:159 ../../include/widgets.php:1612 msgid "Upload" msgstr "Hochladen" #: ../../Zotlabs/Storage/Browser.php:235 ../../Zotlabs/Module/Chat.php:247 -#: ../../Zotlabs/Module/Admin.php:1223 ../../Zotlabs/Module/Settings.php:592 -#: ../../Zotlabs/Module/Settings.php:618 +#: ../../Zotlabs/Module/Admin.php:1223 ../../Zotlabs/Module/Settings.php:646 +#: ../../Zotlabs/Module/Settings.php:672 #: ../../Zotlabs/Module/Sharedwithme.php:99 msgid "Name" msgstr "Name" @@ -108,7 +255,7 @@ msgid "Type" msgstr "Typ" #: ../../Zotlabs/Storage/Browser.php:237 -#: ../../Zotlabs/Module/Sharedwithme.php:101 ../../include/text.php:1344 +#: ../../Zotlabs/Module/Sharedwithme.php:101 ../../include/text.php:1324 msgid "Size" msgstr "Größe" @@ -117,34 +264,32 @@ msgstr "Größe" msgid "Last Modified" msgstr "Zuletzt geändert" -#: ../../Zotlabs/Storage/Browser.php:240 ../../Zotlabs/Module/Blocks.php:157 -#: ../../Zotlabs/Module/Editblock.php:109 +#: ../../Zotlabs/Storage/Browser.php:240 ../../Zotlabs/Module/Editpost.php:84 #: ../../Zotlabs/Module/Connections.php:290 #: ../../Zotlabs/Module/Connections.php:310 -#: ../../Zotlabs/Module/Editpost.php:84 -#: ../../Zotlabs/Module/Editlayout.php:113 -#: ../../Zotlabs/Module/Editwebpage.php:146 -#: ../../Zotlabs/Module/Layouts.php:190 ../../Zotlabs/Module/Menu.php:112 -#: ../../Zotlabs/Module/Admin.php:2113 ../../Zotlabs/Module/Settings.php:652 -#: ../../Zotlabs/Module/Thing.php:260 ../../Zotlabs/Module/Webpages.php:187 -#: ../../Zotlabs/Lib/Apps.php:337 ../../Zotlabs/Lib/ThreadItem.php:106 -#: ../../include/channel.php:937 ../../include/channel.php:941 -#: ../../include/menu.php:108 ../../include/page_widgets.php:8 -#: ../../include/page_widgets.php:36 +#: ../../Zotlabs/Module/Editlayout.php:114 +#: ../../Zotlabs/Module/Editwebpage.php:145 +#: ../../Zotlabs/Module/Layouts.php:192 ../../Zotlabs/Module/Menu.php:112 +#: ../../Zotlabs/Module/Admin.php:2113 ../../Zotlabs/Module/Blocks.php:160 +#: ../../Zotlabs/Module/Editblock.php:109 +#: ../../Zotlabs/Module/Settings.php:706 ../../Zotlabs/Module/Thing.php:260 +#: ../../Zotlabs/Module/Webpages.php:194 ../../Zotlabs/Lib/Apps.php:341 +#: ../../Zotlabs/Lib/ThreadItem.php:106 ../../include/page_widgets.php:9 +#: ../../include/page_widgets.php:39 ../../include/channel.php:976 +#: ../../include/channel.php:980 ../../include/menu.php:108 msgid "Edit" msgstr "Bearbeiten" -#: ../../Zotlabs/Storage/Browser.php:241 ../../Zotlabs/Module/Blocks.php:159 -#: ../../Zotlabs/Module/Connedit.php:572 -#: ../../Zotlabs/Module/Editblock.php:134 +#: ../../Zotlabs/Storage/Browser.php:241 ../../Zotlabs/Module/Connedit.php:602 #: ../../Zotlabs/Module/Connections.php:263 -#: ../../Zotlabs/Module/Editlayout.php:136 -#: ../../Zotlabs/Module/Editwebpage.php:170 ../../Zotlabs/Module/Group.php:177 -#: ../../Zotlabs/Module/Photos.php:1173 ../../Zotlabs/Module/Admin.php:1039 +#: ../../Zotlabs/Module/Editlayout.php:137 +#: ../../Zotlabs/Module/Editwebpage.php:169 ../../Zotlabs/Module/Group.php:177 +#: ../../Zotlabs/Module/Photos.php:1171 ../../Zotlabs/Module/Admin.php:1039 #: ../../Zotlabs/Module/Admin.php:1213 ../../Zotlabs/Module/Admin.php:2114 -#: ../../Zotlabs/Module/Settings.php:653 ../../Zotlabs/Module/Thing.php:261 -#: ../../Zotlabs/Module/Webpages.php:189 ../../Zotlabs/Lib/Apps.php:338 -#: ../../Zotlabs/Lib/ThreadItem.php:126 ../../include/conversation.php:657 +#: ../../Zotlabs/Module/Blocks.php:162 ../../Zotlabs/Module/Editblock.php:134 +#: ../../Zotlabs/Module/Settings.php:707 ../../Zotlabs/Module/Thing.php:261 +#: ../../Zotlabs/Module/Webpages.php:196 ../../Zotlabs/Lib/Apps.php:342 +#: ../../Zotlabs/Lib/ThreadItem.php:126 ../../include/conversation.php:660 msgid "Delete" msgstr "Löschen" @@ -170,74 +315,73 @@ msgstr "Neuen Ordner anlegen" msgid "Upload file" msgstr "Datei hochladen" -#: ../../Zotlabs/Web/WebServer.php:120 ../../Zotlabs/Module/Dreport.php:10 -#: ../../Zotlabs/Module/Dreport.php:49 ../../Zotlabs/Module/Group.php:72 -#: ../../Zotlabs/Module/Like.php:284 ../../Zotlabs/Module/Import_items.php:112 +#: ../../Zotlabs/Web/WebServer.php:127 ../../Zotlabs/Module/Dreport.php:10 +#: ../../Zotlabs/Module/Dreport.php:66 ../../Zotlabs/Module/Group.php:72 +#: ../../Zotlabs/Module/Like.php:283 ../../Zotlabs/Module/Import_items.php:114 #: ../../Zotlabs/Module/Profperm.php:28 ../../Zotlabs/Module/Subthread.php:62 -#: ../../include/items.php:385 +#: ../../include/items.php:384 msgid "Permission denied" msgstr "Keine Berechtigung" -#: ../../Zotlabs/Web/WebServer.php:121 ../../Zotlabs/Web/Router.php:65 -#: ../../Zotlabs/Module/Achievements.php:34 ../../Zotlabs/Module/Blocks.php:73 -#: ../../Zotlabs/Module/Blocks.php:80 ../../Zotlabs/Module/Channel.php:105 -#: ../../Zotlabs/Module/Channel.php:226 ../../Zotlabs/Module/Channel.php:267 -#: ../../Zotlabs/Module/Chat.php:100 ../../Zotlabs/Module/Chat.php:105 -#: ../../Zotlabs/Module/Authtest.php:16 ../../Zotlabs/Module/Block.php:26 -#: ../../Zotlabs/Module/Block.php:76 ../../Zotlabs/Module/Bookmarks.php:61 -#: ../../Zotlabs/Module/Connedit.php:366 ../../Zotlabs/Module/Editblock.php:67 -#: ../../Zotlabs/Module/Common.php:39 ../../Zotlabs/Module/Connections.php:33 +#: ../../Zotlabs/Web/WebServer.php:128 ../../Zotlabs/Web/Router.php:65 +#: ../../Zotlabs/Module/Achievements.php:34 +#: ../../Zotlabs/Module/Connedit.php:390 ../../Zotlabs/Module/Id.php:76 +#: ../../Zotlabs/Module/Authtest.php:16 ../../Zotlabs/Module/Events.php:264 +#: ../../Zotlabs/Module/Bookmarks.php:61 ../../Zotlabs/Module/Editpost.php:17 +#: ../../Zotlabs/Module/Page.php:35 ../../Zotlabs/Module/Page.php:91 +#: ../../Zotlabs/Module/Connections.php:33 #: ../../Zotlabs/Module/Cover_photo.php:277 -#: ../../Zotlabs/Module/Cover_photo.php:290 -#: ../../Zotlabs/Module/Editpost.php:17 ../../Zotlabs/Module/Events.php:265 -#: ../../Zotlabs/Module/Editlayout.php:67 +#: ../../Zotlabs/Module/Cover_photo.php:290 ../../Zotlabs/Module/Chat.php:100 +#: ../../Zotlabs/Module/Chat.php:105 ../../Zotlabs/Module/Editlayout.php:67 #: ../../Zotlabs/Module/Editlayout.php:90 -#: ../../Zotlabs/Module/Editwebpage.php:69 -#: ../../Zotlabs/Module/Editwebpage.php:90 -#: ../../Zotlabs/Module/Editwebpage.php:105 -#: ../../Zotlabs/Module/Editwebpage.php:127 ../../Zotlabs/Module/Group.php:13 -#: ../../Zotlabs/Module/Api.php:13 ../../Zotlabs/Module/Api.php:18 -#: ../../Zotlabs/Module/Filestorage.php:24 -#: ../../Zotlabs/Module/Filestorage.php:79 -#: ../../Zotlabs/Module/Filestorage.php:94 -#: ../../Zotlabs/Module/Filestorage.php:121 ../../Zotlabs/Module/Item.php:210 -#: ../../Zotlabs/Module/Item.php:218 ../../Zotlabs/Module/Item.php:1070 +#: ../../Zotlabs/Module/Editwebpage.php:68 +#: ../../Zotlabs/Module/Editwebpage.php:89 +#: ../../Zotlabs/Module/Editwebpage.php:104 +#: ../../Zotlabs/Module/Editwebpage.php:126 ../../Zotlabs/Module/Group.php:13 +#: ../../Zotlabs/Module/Appman.php:75 ../../Zotlabs/Module/Pdledit.php:26 +#: ../../Zotlabs/Module/Filestorage.php:23 +#: ../../Zotlabs/Module/Filestorage.php:78 +#: ../../Zotlabs/Module/Filestorage.php:93 +#: ../../Zotlabs/Module/Filestorage.php:120 #: ../../Zotlabs/Module/Layouts.php:71 ../../Zotlabs/Module/Layouts.php:78 -#: ../../Zotlabs/Module/Layouts.php:89 ../../Zotlabs/Module/Id.php:76 -#: ../../Zotlabs/Module/Like.php:181 ../../Zotlabs/Module/Invite.php:17 -#: ../../Zotlabs/Module/Invite.php:91 ../../Zotlabs/Module/Locs.php:87 -#: ../../Zotlabs/Module/Mail.php:129 ../../Zotlabs/Module/Manage.php:10 -#: ../../Zotlabs/Module/Menu.php:78 ../../Zotlabs/Module/Message.php:18 -#: ../../Zotlabs/Module/Mood.php:116 ../../Zotlabs/Module/Network.php:17 +#: ../../Zotlabs/Module/Layouts.php:89 ../../Zotlabs/Module/Like.php:181 +#: ../../Zotlabs/Module/Profiles.php:203 ../../Zotlabs/Module/Profiles.php:601 +#: ../../Zotlabs/Module/Item.php:213 ../../Zotlabs/Module/Item.php:221 +#: ../../Zotlabs/Module/Item.php:1071 ../../Zotlabs/Module/Photos.php:73 +#: ../../Zotlabs/Module/Invite.php:17 ../../Zotlabs/Module/Invite.php:91 +#: ../../Zotlabs/Module/Locs.php:87 ../../Zotlabs/Module/Mail.php:121 +#: ../../Zotlabs/Module/Manage.php:10 ../../Zotlabs/Module/Menu.php:78 +#: ../../Zotlabs/Module/Message.php:18 ../../Zotlabs/Module/Mood.php:116 +#: ../../Zotlabs/Module/Network.php:15 ../../Zotlabs/Module/Channel.php:104 +#: ../../Zotlabs/Module/Channel.php:225 ../../Zotlabs/Module/Channel.php:266 #: ../../Zotlabs/Module/Mitem.php:115 ../../Zotlabs/Module/New_channel.php:77 #: ../../Zotlabs/Module/New_channel.php:104 -#: ../../Zotlabs/Module/Notifications.php:70 -#: ../../Zotlabs/Module/Photos.php:75 ../../Zotlabs/Module/Page.php:35 -#: ../../Zotlabs/Module/Page.php:90 ../../Zotlabs/Module/Pdledit.php:26 -#: ../../Zotlabs/Module/Poke.php:137 ../../Zotlabs/Module/Profile.php:68 -#: ../../Zotlabs/Module/Profile.php:76 ../../Zotlabs/Module/Profiles.php:203 -#: ../../Zotlabs/Module/Profiles.php:601 -#: ../../Zotlabs/Module/Profile_photo.php:256 -#: ../../Zotlabs/Module/Profile_photo.php:269 -#: ../../Zotlabs/Module/Rate.php:113 ../../Zotlabs/Module/Appman.php:75 -#: ../../Zotlabs/Module/Register.php:77 ../../Zotlabs/Module/Regmod.php:21 +#: ../../Zotlabs/Module/Notifications.php:70 ../../Zotlabs/Module/Poke.php:137 +#: ../../Zotlabs/Module/Profile.php:68 ../../Zotlabs/Module/Profile.php:76 +#: ../../Zotlabs/Module/Block.php:26 ../../Zotlabs/Module/Block.php:76 +#: ../../Zotlabs/Module/Profile_photo.php:265 +#: ../../Zotlabs/Module/Profile_photo.php:278 +#: ../../Zotlabs/Module/Blocks.php:73 ../../Zotlabs/Module/Blocks.php:80 +#: ../../Zotlabs/Module/Rate.php:113 ../../Zotlabs/Module/Editblock.php:67 +#: ../../Zotlabs/Module/Common.php:39 ../../Zotlabs/Module/Register.php:77 +#: ../../Zotlabs/Module/Regmod.php:21 #: ../../Zotlabs/Module/Service_limits.php:11 -#: ../../Zotlabs/Module/Settings.php:572 ../../Zotlabs/Module/Setup.php:215 -#: ../../Zotlabs/Module/Sharedwithme.php:11 +#: ../../Zotlabs/Module/Settings.php:626 ../../Zotlabs/Module/Setup.php:215 +#: ../../Zotlabs/Module/Sharedwithme.php:11 ../../Zotlabs/Module/Thing.php:274 +#: ../../Zotlabs/Module/Thing.php:294 ../../Zotlabs/Module/Thing.php:331 #: ../../Zotlabs/Module/Sources.php:74 ../../Zotlabs/Module/Suggest.php:30 -#: ../../Zotlabs/Module/Thing.php:274 ../../Zotlabs/Module/Thing.php:294 -#: ../../Zotlabs/Module/Thing.php:331 -#: ../../Zotlabs/Module/Viewconnections.php:25 -#: ../../Zotlabs/Module/Viewconnections.php:30 -#: ../../Zotlabs/Module/Viewsrc.php:18 ../../Zotlabs/Module/Webpages.php:74 -#: ../../Zotlabs/Lib/Chatroom.php:137 ../../include/items.php:3438 -#: ../../include/attach.php:141 ../../include/attach.php:189 -#: ../../include/attach.php:252 ../../include/attach.php:266 -#: ../../include/attach.php:273 ../../include/attach.php:338 -#: ../../include/attach.php:352 ../../include/attach.php:359 -#: ../../include/attach.php:437 ../../include/attach.php:895 -#: ../../include/attach.php:966 ../../include/attach.php:1118 -#: ../../include/photos.php:27 +#: ../../Zotlabs/Module/Webpages.php:73 +#: ../../Zotlabs/Module/Viewconnections.php:28 +#: ../../Zotlabs/Module/Viewconnections.php:33 +#: ../../Zotlabs/Module/Viewsrc.php:18 ../../Zotlabs/Module/Api.php:13 +#: ../../Zotlabs/Module/Api.php:18 ../../Zotlabs/Lib/Chatroom.php:137 +#: ../../include/photos.php:27 ../../include/attach.php:141 +#: ../../include/attach.php:189 ../../include/attach.php:252 +#: ../../include/attach.php:266 ../../include/attach.php:273 +#: ../../include/attach.php:338 ../../include/attach.php:352 +#: ../../include/attach.php:359 ../../include/attach.php:439 +#: ../../include/attach.php:901 ../../include/attach.php:972 +#: ../../include/attach.php:1124 ../../include/items.php:3448 msgid "Permission denied." msgstr "Berechtigung verweigert." @@ -245,9 +389,9 @@ msgstr "Berechtigung verweigert." msgid "Not Found" msgstr "Nicht gefunden" -#: ../../Zotlabs/Web/Router.php:149 ../../Zotlabs/Module/Block.php:79 -#: ../../Zotlabs/Module/Display.php:117 ../../Zotlabs/Module/Help.php:97 -#: ../../Zotlabs/Module/Page.php:93 +#: ../../Zotlabs/Web/Router.php:149 ../../Zotlabs/Module/Display.php:118 +#: ../../Zotlabs/Module/Page.php:94 ../../Zotlabs/Module/Help.php:97 +#: ../../Zotlabs/Module/Block.php:79 msgid "Page not found." msgstr "Seite nicht gefunden." @@ -263,243 +407,20 @@ msgstr "Fern-Authentifizierung blockiert. Du bist lokal auf diesem Server angeme msgid "Welcome %s. Remote authentication successful." msgstr "Willkommen %s. Entfernte Authentifizierung erfolgreich." -#: ../../Zotlabs/Module/Achievements.php:15 ../../Zotlabs/Module/Blocks.php:33 -#: ../../Zotlabs/Module/Connect.php:17 ../../Zotlabs/Module/Editblock.php:31 -#: ../../Zotlabs/Module/Editlayout.php:31 -#: ../../Zotlabs/Module/Editwebpage.php:33 -#: ../../Zotlabs/Module/Filestorage.php:60 ../../Zotlabs/Module/Hcard.php:12 -#: ../../Zotlabs/Module/Layouts.php:31 ../../Zotlabs/Module/Profile.php:20 -#: ../../Zotlabs/Module/Webpages.php:34 ../../include/channel.php:837 +#: ../../Zotlabs/Module/Achievements.php:15 +#: ../../Zotlabs/Module/Connect.php:17 ../../Zotlabs/Module/Editlayout.php:31 +#: ../../Zotlabs/Module/Editwebpage.php:32 ../../Zotlabs/Module/Hcard.php:12 +#: ../../Zotlabs/Module/Filestorage.php:59 ../../Zotlabs/Module/Layouts.php:31 +#: ../../Zotlabs/Module/Profile.php:20 ../../Zotlabs/Module/Blocks.php:33 +#: ../../Zotlabs/Module/Editblock.php:31 ../../Zotlabs/Module/Webpages.php:33 +#: ../../include/channel.php:876 msgid "Requested profile is not available." -msgstr "Erwünschte Profil ist nicht verfügbar." +msgstr "Das angefragte Profil ist nicht verfügbar." #: ../../Zotlabs/Module/Achievements.php:38 msgid "Some blurb about what to do when you're new here" msgstr "Ein Hinweis, was man tun kann, wenn man neu hier ist" -#: ../../Zotlabs/Module/Blocks.php:97 ../../Zotlabs/Module/Blocks.php:152 -#: ../../Zotlabs/Module/Editblock.php:108 -msgid "Block Name" -msgstr "Block-Name" - -#: ../../Zotlabs/Module/Blocks.php:151 ../../include/text.php:2265 -msgid "Blocks" -msgstr "Blöcke" - -#: ../../Zotlabs/Module/Blocks.php:153 -msgid "Block Title" -msgstr "Titel des Blocks" - -#: ../../Zotlabs/Module/Blocks.php:154 ../../Zotlabs/Module/Layouts.php:188 -#: ../../Zotlabs/Module/Menu.php:114 ../../Zotlabs/Module/Webpages.php:198 -#: ../../include/page_widgets.php:44 -msgid "Created" -msgstr "Erstellt" - -#: ../../Zotlabs/Module/Blocks.php:155 ../../Zotlabs/Module/Layouts.php:189 -#: ../../Zotlabs/Module/Menu.php:115 ../../Zotlabs/Module/Webpages.php:199 -#: ../../include/page_widgets.php:45 -msgid "Edited" -msgstr "Geändert" - -#: ../../Zotlabs/Module/Blocks.php:158 ../../Zotlabs/Module/Layouts.php:191 -#: ../../Zotlabs/Module/Photos.php:1072 ../../Zotlabs/Module/Webpages.php:188 -#: ../../include/conversation.php:1208 -msgid "Share" -msgstr "Teilen" - -#: ../../Zotlabs/Module/Blocks.php:163 ../../Zotlabs/Module/Layouts.php:195 -#: ../../Zotlabs/Module/Pubsites.php:47 ../../Zotlabs/Module/Webpages.php:193 -#: ../../include/page_widgets.php:39 -msgid "View" -msgstr "Ansicht" - -#: ../../Zotlabs/Module/Cal.php:62 ../../Zotlabs/Module/Block.php:43 -#: ../../Zotlabs/Module/Page.php:56 ../../Zotlabs/Module/Wall_upload.php:33 -msgid "Channel not found." -msgstr "Kanal nicht gefunden." - -#: ../../Zotlabs/Module/Cal.php:69 -msgid "Permissions denied." -msgstr "Berechtigung verweigert." - -#: ../../Zotlabs/Module/Cal.php:259 ../../Zotlabs/Module/Events.php:588 -msgid "l, F j" -msgstr "l, j. F" - -#: ../../Zotlabs/Module/Cal.php:308 ../../Zotlabs/Module/Events.php:637 -#: ../../include/text.php:1732 -msgid "Link to Source" -msgstr "Link zur Quelle" - -#: ../../Zotlabs/Module/Cal.php:331 ../../Zotlabs/Module/Events.php:665 -msgid "Edit Event" -msgstr "Termin bearbeiten" - -#: ../../Zotlabs/Module/Cal.php:331 ../../Zotlabs/Module/Events.php:665 -msgid "Create Event" -msgstr "Termin anlegen" - -#: ../../Zotlabs/Module/Cal.php:332 ../../Zotlabs/Module/Cal.php:339 -#: ../../Zotlabs/Module/Events.php:666 ../../Zotlabs/Module/Events.php:673 -#: ../../Zotlabs/Module/Photos.php:949 -msgid "Previous" -msgstr "Voriges" - -#: ../../Zotlabs/Module/Cal.php:333 ../../Zotlabs/Module/Cal.php:340 -#: ../../Zotlabs/Module/Events.php:667 ../../Zotlabs/Module/Events.php:674 -#: ../../Zotlabs/Module/Photos.php:958 ../../Zotlabs/Module/Setup.php:267 -msgid "Next" -msgstr "Nächste" - -#: ../../Zotlabs/Module/Cal.php:334 ../../Zotlabs/Module/Events.php:668 -#: ../../include/widgets.php:755 -msgid "Export" -msgstr "Exportieren" - -#: ../../Zotlabs/Module/Cal.php:337 ../../Zotlabs/Module/Events.php:671 -#: ../../include/widgets.php:756 -msgid "Import" -msgstr "Import" - -#: ../../Zotlabs/Module/Cal.php:338 ../../Zotlabs/Module/Chat.php:196 -#: ../../Zotlabs/Module/Chat.php:238 ../../Zotlabs/Module/Connect.php:98 -#: ../../Zotlabs/Module/Connedit.php:731 ../../Zotlabs/Module/Events.php:475 -#: ../../Zotlabs/Module/Events.php:672 ../../Zotlabs/Module/Group.php:85 -#: ../../Zotlabs/Module/Filestorage.php:162 -#: ../../Zotlabs/Module/Import.php:550 -#: ../../Zotlabs/Module/Import_items.php:120 -#: ../../Zotlabs/Module/Invite.php:146 ../../Zotlabs/Module/Locs.php:121 -#: ../../Zotlabs/Module/Mail.php:378 ../../Zotlabs/Module/Mood.php:139 -#: ../../Zotlabs/Module/Mitem.php:235 ../../Zotlabs/Module/Photos.php:677 -#: ../../Zotlabs/Module/Photos.php:1052 ../../Zotlabs/Module/Photos.php:1092 -#: ../../Zotlabs/Module/Photos.php:1210 ../../Zotlabs/Module/Pconfig.php:107 -#: ../../Zotlabs/Module/Pdledit.php:66 ../../Zotlabs/Module/Poke.php:186 -#: ../../Zotlabs/Module/Profiles.php:687 ../../Zotlabs/Module/Rate.php:170 -#: ../../Zotlabs/Module/Admin.php:492 ../../Zotlabs/Module/Admin.php:688 -#: ../../Zotlabs/Module/Admin.php:771 ../../Zotlabs/Module/Admin.php:1032 -#: ../../Zotlabs/Module/Admin.php:1211 ../../Zotlabs/Module/Admin.php:1421 -#: ../../Zotlabs/Module/Admin.php:1648 ../../Zotlabs/Module/Admin.php:1733 -#: ../../Zotlabs/Module/Admin.php:2116 ../../Zotlabs/Module/Appman.php:126 -#: ../../Zotlabs/Module/Settings.php:590 ../../Zotlabs/Module/Settings.php:703 -#: ../../Zotlabs/Module/Settings.php:731 ../../Zotlabs/Module/Settings.php:754 -#: ../../Zotlabs/Module/Settings.php:842 -#: ../../Zotlabs/Module/Settings.php:1034 ../../Zotlabs/Module/Setup.php:312 -#: ../../Zotlabs/Module/Setup.php:353 ../../Zotlabs/Module/Sources.php:114 -#: ../../Zotlabs/Module/Sources.php:149 ../../Zotlabs/Module/Thing.php:316 -#: ../../Zotlabs/Module/Thing.php:362 ../../Zotlabs/Module/Xchan.php:15 -#: ../../Zotlabs/Lib/ThreadItem.php:710 ../../include/widgets.php:757 -#: ../../include/widgets.php:769 ../../include/js_strings.php:22 -#: ../../view/theme/redbasic/php/config.php:99 -msgid "Submit" -msgstr "Bestätigen" - -#: ../../Zotlabs/Module/Cal.php:341 ../../Zotlabs/Module/Events.php:675 -msgid "Today" -msgstr "Heute" - -#: ../../Zotlabs/Module/Channel.php:29 ../../Zotlabs/Module/Chat.php:25 -msgid "You must be logged in to see this page." -msgstr "Du musst angemeldet sein, um diese Seite betrachten zu können." - -#: ../../Zotlabs/Module/Channel.php:41 -msgid "Posts and comments" -msgstr "Beiträge und Kommentare" - -#: ../../Zotlabs/Module/Channel.php:42 -msgid "Only posts" -msgstr "Nur Beiträge" - -#: ../../Zotlabs/Module/Channel.php:102 -msgid "Insufficient permissions. Request redirected to profile page." -msgstr "Unzureichende Zugriffsrechte. Die Anfrage wurde zur Profil-Seite umgeleitet." - -#: ../../Zotlabs/Module/Chat.php:181 -msgid "Room not found" -msgstr "Chatraum nicht gefunden" - -#: ../../Zotlabs/Module/Chat.php:197 -msgid "Leave Room" -msgstr "Raum verlassen" - -#: ../../Zotlabs/Module/Chat.php:198 -msgid "Delete Room" -msgstr "Raum löschen" - -#: ../../Zotlabs/Module/Chat.php:199 -msgid "I am away right now" -msgstr "Ich bin gerade nicht da" - -#: ../../Zotlabs/Module/Chat.php:200 -msgid "I am online" -msgstr "Ich bin online" - -#: ../../Zotlabs/Module/Chat.php:202 -msgid "Bookmark this room" -msgstr "Lesezeichen für diesen Raum setzen" - -#: ../../Zotlabs/Module/Chat.php:205 ../../Zotlabs/Module/Mail.php:205 -#: ../../Zotlabs/Module/Mail.php:314 ../../include/conversation.php:1176 -msgid "Please enter a link URL:" -msgstr "Gib eine URL ein:" - -#: ../../Zotlabs/Module/Chat.php:206 ../../Zotlabs/Module/Mail.php:258 -#: ../../Zotlabs/Module/Mail.php:383 ../../Zotlabs/Lib/ThreadItem.php:722 -#: ../../include/conversation.php:1256 -msgid "Encrypt text" -msgstr "Text verschlüsseln" - -#: ../../Zotlabs/Module/Chat.php:207 ../../Zotlabs/Module/Editblock.php:111 -#: ../../Zotlabs/Module/Editwebpage.php:147 ../../Zotlabs/Module/Mail.php:252 -#: ../../Zotlabs/Module/Mail.php:377 ../../include/conversation.php:1143 -msgid "Insert web link" -msgstr "Link einfügen" - -#: ../../Zotlabs/Module/Chat.php:218 -msgid "Feature disabled." -msgstr "Funktion deaktiviert." - -#: ../../Zotlabs/Module/Chat.php:232 -msgid "New Chatroom" -msgstr "Neuer Chatraum" - -#: ../../Zotlabs/Module/Chat.php:233 -msgid "Chatroom name" -msgstr "Chatraumname" - -#: ../../Zotlabs/Module/Chat.php:234 -msgid "Expiration of chats (minutes)" -msgstr "Verfall von Chats (Minuten)" - -#: ../../Zotlabs/Module/Chat.php:235 ../../Zotlabs/Module/Filestorage.php:153 -#: ../../Zotlabs/Module/Photos.php:671 ../../Zotlabs/Module/Photos.php:1045 -#: ../../Zotlabs/Module/Thing.php:313 ../../Zotlabs/Module/Thing.php:359 -#: ../../include/acl_selectors.php:283 -msgid "Permissions" -msgstr "Berechtigungen" - -#: ../../Zotlabs/Module/Chat.php:246 -#, php-format -msgid "%1$s's Chatrooms" -msgstr "%1$ss Chaträume" - -#: ../../Zotlabs/Module/Chat.php:251 -msgid "No chatrooms available" -msgstr "Keine Chaträume verfügbar" - -#: ../../Zotlabs/Module/Chat.php:252 ../../Zotlabs/Module/Manage.php:143 -#: ../../Zotlabs/Module/Profiles.php:778 -msgid "Create New" -msgstr "Neu anlegen" - -#: ../../Zotlabs/Module/Chat.php:255 -msgid "Expiration" -msgstr "Verfall" - -#: ../../Zotlabs/Module/Chat.php:256 -msgid "min" -msgstr "min" - #: ../../Zotlabs/Module/Chatsvc.php:117 msgid "Away" msgstr "Abwesend" @@ -508,65 +429,6 @@ msgstr "Abwesend" msgid "Online" msgstr "Online" -#: ../../Zotlabs/Module/Block.php:31 ../../Zotlabs/Module/Page.php:40 -msgid "Invalid item." -msgstr "Ungültiges Element." - -#: ../../Zotlabs/Module/Bookmarks.php:53 -msgid "Bookmark added" -msgstr "Lesezeichen hinzugefügt" - -#: ../../Zotlabs/Module/Bookmarks.php:75 -msgid "My Bookmarks" -msgstr "Meine Lesezeichen" - -#: ../../Zotlabs/Module/Bookmarks.php:86 -msgid "My Connections Bookmarks" -msgstr "Lesezeichen meiner Kontakte" - -#: ../../Zotlabs/Module/Connect.php:61 ../../Zotlabs/Module/Connect.php:109 -msgid "Continue" -msgstr "Fortfahren" - -#: ../../Zotlabs/Module/Connect.php:90 -msgid "Premium Channel Setup" -msgstr "Premium-Kanal-Einrichtung" - -#: ../../Zotlabs/Module/Connect.php:92 -msgid "Enable premium channel connection restrictions" -msgstr "Einschränkungen für einen Premium-Kanal aktivieren" - -#: ../../Zotlabs/Module/Connect.php:93 -msgid "" -"Please enter your restrictions or conditions, such as paypal receipt, usage " -"guidelines, etc." -msgstr "Bitte gib Deine Nutzungsbedingungen ein, z.B. Paypal-Quittung, Richtlinien etc." - -#: ../../Zotlabs/Module/Connect.php:95 ../../Zotlabs/Module/Connect.php:115 -msgid "" -"This channel may require additional steps or acknowledgement of the " -"following conditions prior to connecting:" -msgstr "Unter Umständen sind weitere Schritte oder die Bestätigung der folgenden Bedingungen vor dem Verbinden mit diesem Kanal nötig." - -#: ../../Zotlabs/Module/Connect.php:96 -msgid "" -"Potential connections will then see the following text before proceeding:" -msgstr "Potentielle Kontakte werden den folgenden Text sehen, bevor fortgefahren wird:" - -#: ../../Zotlabs/Module/Connect.php:97 ../../Zotlabs/Module/Connect.php:118 -msgid "" -"By continuing, I certify that I have complied with any instructions provided" -" on this page." -msgstr "Indem ich fortfahre, bestätige ich die Erfüllung aller Anweisungen auf dieser Seite." - -#: ../../Zotlabs/Module/Connect.php:106 -msgid "(No specific instructions have been provided by the channel owner.)" -msgstr "(Der Kanal-Besitzer hat keine speziellen Anweisungen hinterlegt.)" - -#: ../../Zotlabs/Module/Connect.php:114 -msgid "Restricted or Premium Channel" -msgstr "Eingeschränkter oder Premium-Kanal" - #: ../../Zotlabs/Module/Connedit.php:80 msgid "Could not access contact record." msgstr "Konnte nicht auf den Kontakteintrag zugreifen." @@ -575,317 +437,350 @@ msgstr "Konnte nicht auf den Kontakteintrag zugreifen." msgid "Could not locate selected profile." msgstr "Gewähltes Profil nicht gefunden." -#: ../../Zotlabs/Module/Connedit.php:227 +#: ../../Zotlabs/Module/Connedit.php:248 msgid "Connection updated." msgstr "Verbindung aktualisiert." -#: ../../Zotlabs/Module/Connedit.php:229 +#: ../../Zotlabs/Module/Connedit.php:250 msgid "Failed to update connection record." msgstr "Konnte den Verbindungseintrag nicht aktualisieren." -#: ../../Zotlabs/Module/Connedit.php:276 +#: ../../Zotlabs/Module/Connedit.php:300 msgid "is now connected to" msgstr "ist jetzt verbunden mit" -#: ../../Zotlabs/Module/Connedit.php:379 ../../Zotlabs/Module/Connedit.php:654 -#: ../../Zotlabs/Module/Events.php:459 ../../Zotlabs/Module/Events.php:460 -#: ../../Zotlabs/Module/Events.php:469 ../../Zotlabs/Module/Api.php:89 -#: ../../Zotlabs/Module/Filestorage.php:157 -#: ../../Zotlabs/Module/Filestorage.php:165 ../../Zotlabs/Module/Menu.php:100 -#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Mitem.php:158 -#: ../../Zotlabs/Module/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:232 -#: ../../Zotlabs/Module/Mitem.php:233 ../../Zotlabs/Module/Photos.php:666 -#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Admin.php:459 -#: ../../Zotlabs/Module/Removeme.php:61 ../../Zotlabs/Module/Settings.php:581 +#: ../../Zotlabs/Module/Connedit.php:403 ../../Zotlabs/Module/Connedit.php:685 +#: ../../Zotlabs/Module/Events.php:458 ../../Zotlabs/Module/Events.php:459 +#: ../../Zotlabs/Module/Events.php:468 +#: ../../Zotlabs/Module/Filestorage.php:156 +#: ../../Zotlabs/Module/Filestorage.php:164 +#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Photos.php:664 +#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 +#: ../../Zotlabs/Module/Mitem.php:158 ../../Zotlabs/Module/Mitem.php:159 +#: ../../Zotlabs/Module/Mitem.php:232 ../../Zotlabs/Module/Mitem.php:233 +#: ../../Zotlabs/Module/Admin.php:459 ../../Zotlabs/Module/Removeme.php:63 +#: ../../Zotlabs/Module/Settings.php:635 ../../Zotlabs/Module/Api.php:89 #: ../../include/dir_fns.php:143 ../../include/dir_fns.php:144 #: ../../include/dir_fns.php:145 ../../view/theme/redbasic/php/config.php:105 -#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1707 +#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1708 msgid "No" msgstr "Nein" -#: ../../Zotlabs/Module/Connedit.php:379 ../../Zotlabs/Module/Events.php:459 -#: ../../Zotlabs/Module/Events.php:460 ../../Zotlabs/Module/Events.php:469 -#: ../../Zotlabs/Module/Api.php:88 ../../Zotlabs/Module/Filestorage.php:157 -#: ../../Zotlabs/Module/Filestorage.php:165 ../../Zotlabs/Module/Menu.php:100 -#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Mitem.php:158 -#: ../../Zotlabs/Module/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:232 -#: ../../Zotlabs/Module/Mitem.php:233 ../../Zotlabs/Module/Photos.php:666 -#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Admin.php:461 -#: ../../Zotlabs/Module/Removeme.php:61 ../../Zotlabs/Module/Settings.php:581 +#: ../../Zotlabs/Module/Connedit.php:403 ../../Zotlabs/Module/Events.php:458 +#: ../../Zotlabs/Module/Events.php:459 ../../Zotlabs/Module/Events.php:468 +#: ../../Zotlabs/Module/Filestorage.php:156 +#: ../../Zotlabs/Module/Filestorage.php:164 +#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Photos.php:664 +#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 +#: ../../Zotlabs/Module/Mitem.php:158 ../../Zotlabs/Module/Mitem.php:159 +#: ../../Zotlabs/Module/Mitem.php:232 ../../Zotlabs/Module/Mitem.php:233 +#: ../../Zotlabs/Module/Admin.php:461 ../../Zotlabs/Module/Removeme.php:63 +#: ../../Zotlabs/Module/Settings.php:635 ../../Zotlabs/Module/Api.php:88 #: ../../include/dir_fns.php:143 ../../include/dir_fns.php:144 #: ../../include/dir_fns.php:145 ../../view/theme/redbasic/php/config.php:105 -#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1707 +#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1708 msgid "Yes" msgstr "Ja" -#: ../../Zotlabs/Module/Connedit.php:411 +#: ../../Zotlabs/Module/Connedit.php:435 msgid "Could not access address book record." msgstr "Konnte nicht auf den Adressbuch-Eintrag zugreifen." -#: ../../Zotlabs/Module/Connedit.php:425 +#: ../../Zotlabs/Module/Connedit.php:455 msgid "Refresh failed - channel is currently unavailable." msgstr "Aktualisierung fehlgeschlagen – der Kanal ist im Moment nicht erreichbar." -#: ../../Zotlabs/Module/Connedit.php:440 ../../Zotlabs/Module/Connedit.php:449 -#: ../../Zotlabs/Module/Connedit.php:458 ../../Zotlabs/Module/Connedit.php:467 -#: ../../Zotlabs/Module/Connedit.php:480 +#: ../../Zotlabs/Module/Connedit.php:470 ../../Zotlabs/Module/Connedit.php:479 +#: ../../Zotlabs/Module/Connedit.php:488 ../../Zotlabs/Module/Connedit.php:497 +#: ../../Zotlabs/Module/Connedit.php:510 msgid "Unable to set address book parameters." msgstr "Konnte die Adressbuch-Parameter nicht setzen." -#: ../../Zotlabs/Module/Connedit.php:503 +#: ../../Zotlabs/Module/Connedit.php:533 msgid "Connection has been removed." msgstr "Verbindung wurde gelöscht." -#: ../../Zotlabs/Module/Connedit.php:519 ../../Zotlabs/Lib/Apps.php:219 -#: ../../include/nav.php:86 ../../include/conversation.php:954 +#: ../../Zotlabs/Module/Connedit.php:549 ../../Zotlabs/Lib/Apps.php:221 +#: ../../include/nav.php:86 ../../include/conversation.php:957 msgid "View Profile" msgstr "Profil ansehen" -#: ../../Zotlabs/Module/Connedit.php:522 +#: ../../Zotlabs/Module/Connedit.php:552 #, php-format msgid "View %s's profile" msgstr "%ss Profil ansehen" -#: ../../Zotlabs/Module/Connedit.php:526 +#: ../../Zotlabs/Module/Connedit.php:556 msgid "Refresh Permissions" msgstr "Zugriffsrechte neu laden" -#: ../../Zotlabs/Module/Connedit.php:529 +#: ../../Zotlabs/Module/Connedit.php:559 msgid "Fetch updated permissions" msgstr "Aktualisierte Zugriffsrechte abfragen" -#: ../../Zotlabs/Module/Connedit.php:533 +#: ../../Zotlabs/Module/Connedit.php:563 msgid "Recent Activity" msgstr "Kürzliche Aktivitäten" -#: ../../Zotlabs/Module/Connedit.php:536 +#: ../../Zotlabs/Module/Connedit.php:566 msgid "View recent posts and comments" msgstr "Betrachte die neuesten Beiträge und Kommentare" -#: ../../Zotlabs/Module/Connedit.php:540 ../../Zotlabs/Module/Admin.php:1041 +#: ../../Zotlabs/Module/Connedit.php:570 ../../Zotlabs/Module/Admin.php:1041 msgid "Unblock" msgstr "Freigeben" -#: ../../Zotlabs/Module/Connedit.php:540 ../../Zotlabs/Module/Admin.php:1040 +#: ../../Zotlabs/Module/Connedit.php:570 ../../Zotlabs/Module/Admin.php:1040 msgid "Block" msgstr "Blockieren" -#: ../../Zotlabs/Module/Connedit.php:543 +#: ../../Zotlabs/Module/Connedit.php:573 msgid "Block (or Unblock) all communications with this connection" msgstr "Jegliche Kommunikation mit dieser Verbindung blockieren/zulassen" -#: ../../Zotlabs/Module/Connedit.php:544 +#: ../../Zotlabs/Module/Connedit.php:574 msgid "This connection is blocked!" msgstr "Die Verbindung ist geblockt!" -#: ../../Zotlabs/Module/Connedit.php:548 +#: ../../Zotlabs/Module/Connedit.php:578 msgid "Unignore" msgstr "Nicht ignorieren" -#: ../../Zotlabs/Module/Connedit.php:548 +#: ../../Zotlabs/Module/Connedit.php:578 #: ../../Zotlabs/Module/Connections.php:277 #: ../../Zotlabs/Module/Notifications.php:55 msgid "Ignore" msgstr "Ignorieren" -#: ../../Zotlabs/Module/Connedit.php:551 +#: ../../Zotlabs/Module/Connedit.php:581 msgid "Ignore (or Unignore) all inbound communications from this connection" msgstr "Jegliche eingehende Kommunikation von dieser Verbindung ignorieren/zulassen" -#: ../../Zotlabs/Module/Connedit.php:552 +#: ../../Zotlabs/Module/Connedit.php:582 msgid "This connection is ignored!" msgstr "Die Verbindung wird ignoriert!" -#: ../../Zotlabs/Module/Connedit.php:556 +#: ../../Zotlabs/Module/Connedit.php:586 msgid "Unarchive" msgstr "Aus Archiv zurückholen" -#: ../../Zotlabs/Module/Connedit.php:556 +#: ../../Zotlabs/Module/Connedit.php:586 msgid "Archive" msgstr "Archivieren" -#: ../../Zotlabs/Module/Connedit.php:559 +#: ../../Zotlabs/Module/Connedit.php:589 msgid "" "Archive (or Unarchive) this connection - mark channel dead but keep content" msgstr "Verbindung archivieren/aus dem Archiv zurückholen (Archiv = Kanal als erloschen markieren, aber die Beiträge behalten)" -#: ../../Zotlabs/Module/Connedit.php:560 +#: ../../Zotlabs/Module/Connedit.php:590 msgid "This connection is archived!" msgstr "Die Verbindung ist archiviert!" -#: ../../Zotlabs/Module/Connedit.php:564 +#: ../../Zotlabs/Module/Connedit.php:594 msgid "Unhide" msgstr "Wieder sichtbar machen" -#: ../../Zotlabs/Module/Connedit.php:564 +#: ../../Zotlabs/Module/Connedit.php:594 msgid "Hide" msgstr "Verstecken" -#: ../../Zotlabs/Module/Connedit.php:567 +#: ../../Zotlabs/Module/Connedit.php:597 msgid "Hide or Unhide this connection from your other connections" msgstr "Diese Verbindung vor anderen Verbindungen verstecken/zeigen" -#: ../../Zotlabs/Module/Connedit.php:568 +#: ../../Zotlabs/Module/Connedit.php:598 msgid "This connection is hidden!" msgstr "Die Verbindung ist versteckt!" -#: ../../Zotlabs/Module/Connedit.php:575 +#: ../../Zotlabs/Module/Connedit.php:605 msgid "Delete this connection" msgstr "Verbindung löschen" -#: ../../Zotlabs/Module/Connedit.php:590 ../../include/widgets.php:493 +#: ../../Zotlabs/Module/Connedit.php:620 ../../include/widgets.php:493 msgid "Me" msgstr "Ich" -#: ../../Zotlabs/Module/Connedit.php:591 ../../include/widgets.php:494 +#: ../../Zotlabs/Module/Connedit.php:621 ../../include/widgets.php:494 msgid "Family" msgstr "Familie" -#: ../../Zotlabs/Module/Connedit.php:592 ../../Zotlabs/Module/Settings.php:342 -#: ../../Zotlabs/Module/Settings.php:346 ../../Zotlabs/Module/Settings.php:347 -#: ../../Zotlabs/Module/Settings.php:350 ../../Zotlabs/Module/Settings.php:361 -#: ../../include/widgets.php:495 ../../include/selectors.php:123 -#: ../../include/channel.php:389 ../../include/channel.php:390 -#: ../../include/channel.php:397 +#: ../../Zotlabs/Module/Connedit.php:622 ../../Zotlabs/Module/Settings.php:391 +#: ../../Zotlabs/Module/Settings.php:395 ../../Zotlabs/Module/Settings.php:396 +#: ../../Zotlabs/Module/Settings.php:399 ../../Zotlabs/Module/Settings.php:410 +#: ../../include/channel.php:402 ../../include/channel.php:403 +#: ../../include/channel.php:410 ../../include/selectors.php:123 +#: ../../include/widgets.php:495 msgid "Friends" msgstr "Freunde" -#: ../../Zotlabs/Module/Connedit.php:593 ../../include/widgets.php:496 +#: ../../Zotlabs/Module/Connedit.php:623 ../../include/widgets.php:496 msgid "Acquaintances" msgstr "Bekannte" -#: ../../Zotlabs/Module/Connedit.php:594 +#: ../../Zotlabs/Module/Connedit.php:624 #: ../../Zotlabs/Module/Connections.php:92 #: ../../Zotlabs/Module/Connections.php:107 ../../include/widgets.php:497 msgid "All" msgstr "Alle" -#: ../../Zotlabs/Module/Connedit.php:654 +#: ../../Zotlabs/Module/Connedit.php:685 msgid "Approve this connection" msgstr "Verbindung genehmigen" -#: ../../Zotlabs/Module/Connedit.php:654 +#: ../../Zotlabs/Module/Connedit.php:685 msgid "Accept connection to allow communication" msgstr "Akzeptiere die Verbindung, um Kommunikation zu ermöglichen" -#: ../../Zotlabs/Module/Connedit.php:659 +#: ../../Zotlabs/Module/Connedit.php:690 msgid "Set Affinity" msgstr "Beziehung festlegen" -#: ../../Zotlabs/Module/Connedit.php:662 +#: ../../Zotlabs/Module/Connedit.php:693 msgid "Set Profile" msgstr "Profil festlegen" -#: ../../Zotlabs/Module/Connedit.php:665 +#: ../../Zotlabs/Module/Connedit.php:696 msgid "Set Affinity & Profile" msgstr "Beziehung und Profile festlegen" -#: ../../Zotlabs/Module/Connedit.php:698 +#: ../../Zotlabs/Module/Connedit.php:745 msgid "none" msgstr "Keine" -#: ../../Zotlabs/Module/Connedit.php:702 ../../include/widgets.php:614 +#: ../../Zotlabs/Module/Connedit.php:749 ../../include/widgets.php:623 msgid "Connection Default Permissions" msgstr "Standardzugriffsrechte für neue Verbindungen:" -#: ../../Zotlabs/Module/Connedit.php:702 ../../include/items.php:3926 +#: ../../Zotlabs/Module/Connedit.php:749 ../../include/items.php:3935 #, php-format msgid "Connection: %s" msgstr "Verbindung: %s" -#: ../../Zotlabs/Module/Connedit.php:703 +#: ../../Zotlabs/Module/Connedit.php:750 msgid "Apply these permissions automatically" msgstr "Diese Berechtigungen automatisch anwenden" -#: ../../Zotlabs/Module/Connedit.php:703 +#: ../../Zotlabs/Module/Connedit.php:750 msgid "Connection requests will be approved without your interaction" msgstr "Verbindungsanfragen werden sofort bestätigt, ohne dass Deine aktive Zustimmung erforderlich ist." -#: ../../Zotlabs/Module/Connedit.php:705 +#: ../../Zotlabs/Module/Connedit.php:752 msgid "This connection's primary address is" msgstr "Die Hauptadresse der Verbindung ist" -#: ../../Zotlabs/Module/Connedit.php:706 +#: ../../Zotlabs/Module/Connedit.php:753 msgid "Available locations:" msgstr "Verfügbare Klone:" -#: ../../Zotlabs/Module/Connedit.php:710 +#: ../../Zotlabs/Module/Connedit.php:757 msgid "" "The permissions indicated on this page will be applied to all new " "connections." msgstr "Die auf dieser Seite angegebenen Berechtigungen werden auf alle neuen Verbindungen angewendet." -#: ../../Zotlabs/Module/Connedit.php:711 +#: ../../Zotlabs/Module/Connedit.php:758 msgid "Connection Tools" msgstr "Verbindungswerkzeuge" -#: ../../Zotlabs/Module/Connedit.php:713 +#: ../../Zotlabs/Module/Connedit.php:760 msgid "Slide to adjust your degree of friendship" msgstr "Verschieben, um den Grad der Freundschaft zu einzustellen" -#: ../../Zotlabs/Module/Connedit.php:714 ../../Zotlabs/Module/Rate.php:159 +#: ../../Zotlabs/Module/Connedit.php:761 ../../Zotlabs/Module/Rate.php:159 #: ../../include/js_strings.php:20 msgid "Rating" msgstr "Bewertung" -#: ../../Zotlabs/Module/Connedit.php:715 +#: ../../Zotlabs/Module/Connedit.php:762 msgid "Slide to adjust your rating" msgstr "Verschieben, um Deine Bewertung einzustellen" -#: ../../Zotlabs/Module/Connedit.php:716 ../../Zotlabs/Module/Connedit.php:721 +#: ../../Zotlabs/Module/Connedit.php:763 ../../Zotlabs/Module/Connedit.php:768 msgid "Optionally explain your rating" msgstr "Optional kannst Du Deine Bewertung begründen" -#: ../../Zotlabs/Module/Connedit.php:718 +#: ../../Zotlabs/Module/Connedit.php:765 msgid "Custom Filter" msgstr "Benutzerdefinierter Filter" -#: ../../Zotlabs/Module/Connedit.php:719 +#: ../../Zotlabs/Module/Connedit.php:766 msgid "Only import posts with this text" msgstr "Nur Beiträge mit diesem Text importieren" -#: ../../Zotlabs/Module/Connedit.php:719 ../../Zotlabs/Module/Connedit.php:720 +#: ../../Zotlabs/Module/Connedit.php:766 ../../Zotlabs/Module/Connedit.php:767 msgid "" "words one per line or #tags or /patterns/ or lang=xx, leave blank to import " "all posts" msgstr "Einzelne Wörter pro Zeile, #Tags oder /Reguläre Ausdrücke/. lang=xx (z.B. lang=de) ermöglicht Filterung nach Sprache. Leer lassen, um alle Beiträge zu importieren." -#: ../../Zotlabs/Module/Connedit.php:720 +#: ../../Zotlabs/Module/Connedit.php:767 msgid "Do not import posts with this text" msgstr "Beiträge mit diesem Text nicht importieren" -#: ../../Zotlabs/Module/Connedit.php:722 +#: ../../Zotlabs/Module/Connedit.php:769 msgid "This information is public!" msgstr "Diese Information ist öffentlich!" -#: ../../Zotlabs/Module/Connedit.php:727 +#: ../../Zotlabs/Module/Connedit.php:774 msgid "Connection Pending Approval" msgstr "Verbindung wartet auf Bestätigung" -#: ../../Zotlabs/Module/Connedit.php:730 +#: ../../Zotlabs/Module/Connedit.php:777 msgid "inherited" msgstr "geerbt" -#: ../../Zotlabs/Module/Connedit.php:732 +#: ../../Zotlabs/Module/Connedit.php:778 ../../Zotlabs/Module/Connect.php:98 +#: ../../Zotlabs/Module/Events.php:474 ../../Zotlabs/Module/Cal.php:338 +#: ../../Zotlabs/Module/Chat.php:196 ../../Zotlabs/Module/Chat.php:238 +#: ../../Zotlabs/Module/Group.php:85 ../../Zotlabs/Module/Appman.php:126 +#: ../../Zotlabs/Module/Pdledit.php:66 +#: ../../Zotlabs/Module/Filestorage.php:161 +#: ../../Zotlabs/Module/Profiles.php:687 ../../Zotlabs/Module/Import.php:560 +#: ../../Zotlabs/Module/Photos.php:675 ../../Zotlabs/Module/Photos.php:1050 +#: ../../Zotlabs/Module/Photos.php:1090 ../../Zotlabs/Module/Photos.php:1208 +#: ../../Zotlabs/Module/Import_items.php:122 +#: ../../Zotlabs/Module/Invite.php:146 ../../Zotlabs/Module/Locs.php:121 +#: ../../Zotlabs/Module/Mail.php:370 ../../Zotlabs/Module/Mood.php:139 +#: ../../Zotlabs/Module/Mitem.php:235 ../../Zotlabs/Module/Admin.php:492 +#: ../../Zotlabs/Module/Admin.php:688 ../../Zotlabs/Module/Admin.php:771 +#: ../../Zotlabs/Module/Admin.php:1032 ../../Zotlabs/Module/Admin.php:1211 +#: ../../Zotlabs/Module/Admin.php:1421 ../../Zotlabs/Module/Admin.php:1648 +#: ../../Zotlabs/Module/Admin.php:1733 ../../Zotlabs/Module/Admin.php:2116 +#: ../../Zotlabs/Module/Poke.php:186 ../../Zotlabs/Module/Pconfig.php:107 +#: ../../Zotlabs/Module/Rate.php:170 ../../Zotlabs/Module/Settings.php:644 +#: ../../Zotlabs/Module/Settings.php:757 ../../Zotlabs/Module/Settings.php:806 +#: ../../Zotlabs/Module/Settings.php:832 ../../Zotlabs/Module/Settings.php:855 +#: ../../Zotlabs/Module/Settings.php:943 +#: ../../Zotlabs/Module/Settings.php:1129 ../../Zotlabs/Module/Setup.php:312 +#: ../../Zotlabs/Module/Setup.php:353 ../../Zotlabs/Module/Thing.php:316 +#: ../../Zotlabs/Module/Thing.php:362 ../../Zotlabs/Module/Sources.php:114 +#: ../../Zotlabs/Module/Sources.php:149 ../../Zotlabs/Module/Xchan.php:15 +#: ../../Zotlabs/Lib/ThreadItem.php:710 ../../include/widgets.php:763 +#: ../../include/js_strings.php:22 ../../view/theme/redbasic/php/config.php:99 +msgid "Submit" +msgstr "Bestätigen" + +#: ../../Zotlabs/Module/Connedit.php:779 #, php-format msgid "" "Please choose the profile you would like to display to %s when viewing your " "profile securely." msgstr "Bitte wähle ein Profil, das wir %s zeigen sollen, wenn Deine Profilseite über eine verifizierte Verbindung aufgerufen wird." -#: ../../Zotlabs/Module/Connedit.php:734 +#: ../../Zotlabs/Module/Connedit.php:781 msgid "Their Settings" msgstr "Deren Einstellungen" -#: ../../Zotlabs/Module/Connedit.php:735 +#: ../../Zotlabs/Module/Connedit.php:782 msgid "My Settings" msgstr "Meine Einstellungen" -#: ../../Zotlabs/Module/Connedit.php:737 +#: ../../Zotlabs/Module/Connedit.php:784 msgid "Individual Permissions" msgstr "Individuelle Zugriffsrechte" -#: ../../Zotlabs/Module/Connedit.php:738 +#: ../../Zotlabs/Module/Connedit.php:785 msgid "" "Some permissions may be inherited from your channel's privacy settings, which have higher " @@ -893,7 +788,7 @@ msgid "" " settings here." msgstr "Einige Berechtigungen werden möglicherweise von den globalen Sicherheits- und Privatsphäre-Einstellungen dieses Kanals vererbt. Diese haben eine höhere Priorität als die Einstellungen an der Verbindung und können hier nicht verändert werden." -#: ../../Zotlabs/Module/Connedit.php:739 +#: ../../Zotlabs/Module/Connedit.php:786 msgid "" "Some permissions may be inherited from your channel's privacy settings, which have higher " @@ -901,17 +796,121 @@ msgid "" "they wont have any impact unless the inherited setting changes." msgstr "Einige Berechtigungen werden möglicherweise von den globalen Sicherheits- und Privatsphäre-Einstellungen dieses Kanals geerbt. Diese haben eine höhere Priorität als die Einstellungen an der Verbindung. Werden geerbte Einstellungen hier geändert, hat dies keine Auswirkungen." -#: ../../Zotlabs/Module/Connedit.php:740 +#: ../../Zotlabs/Module/Connedit.php:787 msgid "Last update:" msgstr "Letzte Aktualisierung:" -#: ../../Zotlabs/Module/Directory.php:63 ../../Zotlabs/Module/Display.php:17 -#: ../../Zotlabs/Module/Photos.php:522 ../../Zotlabs/Module/Ratings.php:86 +#: ../../Zotlabs/Module/Display.php:17 ../../Zotlabs/Module/Directory.php:63 +#: ../../Zotlabs/Module/Photos.php:520 ../../Zotlabs/Module/Ratings.php:86 #: ../../Zotlabs/Module/Search.php:17 -#: ../../Zotlabs/Module/Viewconnections.php:20 +#: ../../Zotlabs/Module/Viewconnections.php:23 msgid "Public access denied." msgstr "Öffentlichen Zugriff verweigert." +#: ../../Zotlabs/Module/Display.php:40 ../../Zotlabs/Module/Filestorage.php:32 +#: ../../Zotlabs/Module/Admin.php:164 ../../Zotlabs/Module/Admin.php:1255 +#: ../../Zotlabs/Module/Admin.php:1561 ../../Zotlabs/Module/Thing.php:89 +#: ../../Zotlabs/Module/Viewsrc.php:24 ../../include/items.php:3369 +msgid "Item not found." +msgstr "Element nicht gefunden." + +#: ../../Zotlabs/Module/Id.php:13 +msgid "First Name" +msgstr "Vorname" + +#: ../../Zotlabs/Module/Id.php:14 +msgid "Last Name" +msgstr "Nachname" + +#: ../../Zotlabs/Module/Id.php:15 +msgid "Nickname" +msgstr "Spitzname" + +#: ../../Zotlabs/Module/Id.php:16 +msgid "Full Name" +msgstr "Voller Name" + +#: ../../Zotlabs/Module/Id.php:17 ../../Zotlabs/Module/Id.php:18 +#: ../../Zotlabs/Module/Admin.php:1035 ../../Zotlabs/Module/Admin.php:1047 +#: ../../include/network.php:2203 +msgid "Email" +msgstr "E-Mail" + +#: ../../Zotlabs/Module/Id.php:19 ../../Zotlabs/Module/Id.php:20 +#: ../../Zotlabs/Module/Id.php:21 ../../Zotlabs/Lib/Apps.php:238 +msgid "Profile Photo" +msgstr "Profilfoto" + +#: ../../Zotlabs/Module/Id.php:22 +msgid "Profile Photo 16px" +msgstr "Profilfoto 16 px" + +#: ../../Zotlabs/Module/Id.php:23 +msgid "Profile Photo 32px" +msgstr "Profilfoto 32 px" + +#: ../../Zotlabs/Module/Id.php:24 +msgid "Profile Photo 48px" +msgstr "Profilfoto 48 px" + +#: ../../Zotlabs/Module/Id.php:25 +msgid "Profile Photo 64px" +msgstr "Profilfoto 64 px" + +#: ../../Zotlabs/Module/Id.php:26 +msgid "Profile Photo 80px" +msgstr "Profilfoto 80 px" + +#: ../../Zotlabs/Module/Id.php:27 +msgid "Profile Photo 128px" +msgstr "Profilfoto 128 px" + +#: ../../Zotlabs/Module/Id.php:28 +msgid "Timezone" +msgstr "Zeitzone" + +#: ../../Zotlabs/Module/Id.php:29 ../../Zotlabs/Module/Profiles.php:731 +msgid "Homepage URL" +msgstr "Homepage-URL" + +#: ../../Zotlabs/Module/Id.php:30 ../../Zotlabs/Lib/Apps.php:236 +msgid "Language" +msgstr "Sprache" + +#: ../../Zotlabs/Module/Id.php:31 +msgid "Birth Year" +msgstr "Geburtsjahr" + +#: ../../Zotlabs/Module/Id.php:32 +msgid "Birth Month" +msgstr "Geburtsmonat" + +#: ../../Zotlabs/Module/Id.php:33 +msgid "Birth Day" +msgstr "Geburtstag" + +#: ../../Zotlabs/Module/Id.php:34 +msgid "Birthdate" +msgstr "Geburtsdatum" + +#: ../../Zotlabs/Module/Id.php:35 ../../Zotlabs/Module/Profiles.php:454 +msgid "Gender" +msgstr "Geschlecht" + +#: ../../Zotlabs/Module/Id.php:108 ../../include/selectors.php:49 +#: ../../include/selectors.php:66 +msgid "Male" +msgstr "Männlich" + +#: ../../Zotlabs/Module/Id.php:110 ../../include/selectors.php:49 +#: ../../include/selectors.php:66 +msgid "Female" +msgstr "Weiblich" + +#: ../../Zotlabs/Module/Follow.php:34 +msgid "Channel added." +msgstr "Kanal hinzugefügt." + #: ../../Zotlabs/Module/Directory.php:243 #, php-format msgid "%d rating" @@ -931,12 +930,12 @@ msgstr "Status:" msgid "Homepage: " msgstr "Webseite:" -#: ../../Zotlabs/Module/Directory.php:306 ../../include/channel.php:1183 +#: ../../Zotlabs/Module/Directory.php:306 ../../include/channel.php:1223 msgid "Age:" msgstr "Alter:" -#: ../../Zotlabs/Module/Directory.php:311 ../../include/event.php:52 -#: ../../include/event.php:84 ../../include/channel.php:1027 +#: ../../Zotlabs/Module/Directory.php:311 ../../include/channel.php:1066 +#: ../../include/event.php:52 ../../include/event.php:84 #: ../../include/bb2diaspora.php:507 msgid "Location:" msgstr "Ort:" @@ -945,18 +944,18 @@ msgstr "Ort:" msgid "Description:" msgstr "Beschreibung:" -#: ../../Zotlabs/Module/Directory.php:322 ../../include/channel.php:1199 +#: ../../Zotlabs/Module/Directory.php:322 ../../include/channel.php:1239 msgid "Hometown:" msgstr "Heimatstadt:" -#: ../../Zotlabs/Module/Directory.php:324 ../../include/channel.php:1207 +#: ../../Zotlabs/Module/Directory.php:324 ../../include/channel.php:1247 msgid "About:" msgstr "Über:" #: ../../Zotlabs/Module/Directory.php:325 ../../Zotlabs/Module/Match.php:68 -#: ../../Zotlabs/Module/Suggest.php:56 ../../include/widgets.php:147 -#: ../../include/widgets.php:184 ../../include/connections.php:78 -#: ../../include/conversation.php:956 ../../include/channel.php:1012 +#: ../../Zotlabs/Module/Suggest.php:56 ../../include/channel.php:1051 +#: ../../include/connections.php:78 ../../include/conversation.php:959 +#: ../../include/widgets.php:147 ../../include/widgets.php:184 msgid "Connect" msgstr "Verbinden" @@ -1032,38 +1031,322 @@ msgstr "Älteste zuerst" msgid "No entries (some entries may be hidden)." msgstr "Keine Einträge gefunden (einige könnten versteckt sein)." -#: ../../Zotlabs/Module/Display.php:40 ../../Zotlabs/Module/Filestorage.php:33 -#: ../../Zotlabs/Module/Admin.php:164 ../../Zotlabs/Module/Admin.php:1255 -#: ../../Zotlabs/Module/Admin.php:1561 ../../Zotlabs/Module/Thing.php:89 -#: ../../Zotlabs/Module/Viewsrc.php:24 ../../include/items.php:3359 -msgid "Item not found." -msgstr "Element nicht gefunden." +#: ../../Zotlabs/Module/Connect.php:61 ../../Zotlabs/Module/Connect.php:109 +msgid "Continue" +msgstr "Fortfahren" + +#: ../../Zotlabs/Module/Connect.php:90 +msgid "Premium Channel Setup" +msgstr "Premium-Kanal-Einrichtung" + +#: ../../Zotlabs/Module/Connect.php:92 +msgid "Enable premium channel connection restrictions" +msgstr "Einschränkungen für einen Premium-Kanal aktivieren" + +#: ../../Zotlabs/Module/Connect.php:93 +msgid "" +"Please enter your restrictions or conditions, such as paypal receipt, usage " +"guidelines, etc." +msgstr "Bitte gib Deine Nutzungsbedingungen ein, z.B. Paypal-Quittung, Richtlinien etc." + +#: ../../Zotlabs/Module/Connect.php:95 ../../Zotlabs/Module/Connect.php:115 +msgid "" +"This channel may require additional steps or acknowledgement of the " +"following conditions prior to connecting:" +msgstr "Unter Umständen sind weitere Schritte oder die Bestätigung der folgenden Bedingungen vor dem Verbinden mit diesem Kanal nötig." + +#: ../../Zotlabs/Module/Connect.php:96 +msgid "" +"Potential connections will then see the following text before proceeding:" +msgstr "Potentielle Kontakte werden den folgenden Text sehen, bevor fortgefahren wird:" + +#: ../../Zotlabs/Module/Connect.php:97 ../../Zotlabs/Module/Connect.php:118 +msgid "" +"By continuing, I certify that I have complied with any instructions provided" +" on this page." +msgstr "Indem ich fortfahre, bestätige ich die Erfüllung aller Anweisungen auf dieser Seite." + +#: ../../Zotlabs/Module/Connect.php:106 +msgid "(No specific instructions have been provided by the channel owner.)" +msgstr "(Der Kanal-Besitzer hat keine speziellen Anweisungen hinterlegt.)" + +#: ../../Zotlabs/Module/Connect.php:114 +msgid "Restricted or Premium Channel" +msgstr "Eingeschränkter oder Premium-Kanal" + +#: ../../Zotlabs/Module/Events.php:25 +msgid "Calendar entries imported." +msgstr "Kalendereinträge wurden importiert." + +#: ../../Zotlabs/Module/Events.php:27 +msgid "No calendar entries found." +msgstr "Keine Kalendereinträge gefunden." + +#: ../../Zotlabs/Module/Events.php:104 +msgid "Event can not end before it has started." +msgstr "Termin-Ende liegt vor dem Beginn." + +#: ../../Zotlabs/Module/Events.php:106 ../../Zotlabs/Module/Events.php:115 +#: ../../Zotlabs/Module/Events.php:135 +msgid "Unable to generate preview." +msgstr "Vorschau konnte nicht erzeugt werden." + +#: ../../Zotlabs/Module/Events.php:113 +msgid "Event title and start time are required." +msgstr "Titel und Startzeit des Termins sind erforderlich." + +#: ../../Zotlabs/Module/Events.php:133 ../../Zotlabs/Module/Events.php:258 +msgid "Event not found." +msgstr "Termin nicht gefunden." + +#: ../../Zotlabs/Module/Events.php:253 ../../Zotlabs/Module/Like.php:372 +#: ../../Zotlabs/Module/Tagger.php:51 ../../include/conversation.php:123 +#: ../../include/text.php:1924 ../../include/event.php:951 +msgid "event" +msgstr "Termin" + +#: ../../Zotlabs/Module/Events.php:448 +msgid "Edit event title" +msgstr "Termintitel bearbeiten" + +#: ../../Zotlabs/Module/Events.php:448 +msgid "Event title" +msgstr "Termintitel" + +#: ../../Zotlabs/Module/Events.php:448 ../../Zotlabs/Module/Events.php:453 +#: ../../Zotlabs/Module/Appman.php:115 ../../Zotlabs/Module/Appman.php:116 +#: ../../Zotlabs/Module/Profiles.php:709 ../../Zotlabs/Module/Profiles.php:713 +#: ../../include/datetime.php:245 +msgid "Required" +msgstr "Benötigt" + +#: ../../Zotlabs/Module/Events.php:450 +msgid "Categories (comma-separated list)" +msgstr "Kategorien (Kommagetrennte Liste)" + +#: ../../Zotlabs/Module/Events.php:451 +msgid "Edit Category" +msgstr "Kategorie bearbeiten" + +#: ../../Zotlabs/Module/Events.php:451 +msgid "Category" +msgstr "Kategorie" + +#: ../../Zotlabs/Module/Events.php:454 +msgid "Edit start date and time" +msgstr "Startdatum und -zeit bearbeiten" + +#: ../../Zotlabs/Module/Events.php:454 +msgid "Start date and time" +msgstr "Startdatum und -zeit" + +#: ../../Zotlabs/Module/Events.php:455 ../../Zotlabs/Module/Events.php:458 +msgid "Finish date and time are not known or not relevant" +msgstr "Enddatum und -zeit sind unbekannt oder irrelevant" + +#: ../../Zotlabs/Module/Events.php:457 +msgid "Edit finish date and time" +msgstr "Enddatum und -zeit bearbeiten" + +#: ../../Zotlabs/Module/Events.php:457 +msgid "Finish date and time" +msgstr "Enddatum und -zeit" + +#: ../../Zotlabs/Module/Events.php:459 ../../Zotlabs/Module/Events.php:460 +msgid "Adjust for viewer timezone" +msgstr "An die Zeitzone des Betrachters anpassen" + +#: ../../Zotlabs/Module/Events.php:459 +msgid "" +"Important for events that happen in a particular place. Not practical for " +"global holidays." +msgstr "Wichtig für Veranstaltungen die an bestimmten Orten stattfinden. Nicht sinnvoll für globale Feiertage / Ferien." + +#: ../../Zotlabs/Module/Events.php:461 +msgid "Edit Description" +msgstr "Beschreibung bearbeiten" + +#: ../../Zotlabs/Module/Events.php:461 ../../Zotlabs/Module/Appman.php:117 +#: ../../Zotlabs/Module/Rbmark.php:101 +msgid "Description" +msgstr "Beschreibung" + +#: ../../Zotlabs/Module/Events.php:463 +msgid "Edit Location" +msgstr "Ort bearbeiten" + +#: ../../Zotlabs/Module/Events.php:463 ../../Zotlabs/Module/Profiles.php:477 +#: ../../Zotlabs/Module/Profiles.php:698 ../../Zotlabs/Module/Locs.php:117 +#: ../../Zotlabs/Module/Pubsites.php:41 ../../include/js_strings.php:25 +msgid "Location" +msgstr "Ort" + +#: ../../Zotlabs/Module/Events.php:466 ../../Zotlabs/Module/Events.php:468 +msgid "Share this event" +msgstr "Den Termin teilen" + +#: ../../Zotlabs/Module/Events.php:469 ../../Zotlabs/Module/Photos.php:1091 +#: ../../Zotlabs/Module/Webpages.php:201 ../../Zotlabs/Lib/ThreadItem.php:719 +#: ../../include/page_widgets.php:43 ../../include/conversation.php:1198 +msgid "Preview" +msgstr "Vorschau" + +#: ../../Zotlabs/Module/Events.php:470 ../../include/conversation.php:1247 +msgid "Permission settings" +msgstr "Berechtigungs-Einstellungen" + +#: ../../Zotlabs/Module/Events.php:475 +msgid "Advanced Options" +msgstr "Weitere Optionen" + +#: ../../Zotlabs/Module/Events.php:587 ../../Zotlabs/Module/Cal.php:259 +msgid "l, F j" +msgstr "l, j. F" + +#: ../../Zotlabs/Module/Events.php:609 +msgid "Edit event" +msgstr "Termin bearbeiten" + +#: ../../Zotlabs/Module/Events.php:611 +msgid "Delete event" +msgstr "Termin löschen" + +#: ../../Zotlabs/Module/Events.php:636 ../../Zotlabs/Module/Cal.php:308 +#: ../../include/text.php:1712 +msgid "Link to Source" +msgstr "Link zur Quelle" + +#: ../../Zotlabs/Module/Events.php:645 +msgid "calendar" +msgstr "Kalender" + +#: ../../Zotlabs/Module/Events.php:664 ../../Zotlabs/Module/Cal.php:331 +msgid "Edit Event" +msgstr "Termin bearbeiten" + +#: ../../Zotlabs/Module/Events.php:664 ../../Zotlabs/Module/Cal.php:331 +msgid "Create Event" +msgstr "Termin anlegen" + +#: ../../Zotlabs/Module/Events.php:665 ../../Zotlabs/Module/Events.php:674 +#: ../../Zotlabs/Module/Cal.php:332 ../../Zotlabs/Module/Cal.php:339 +#: ../../Zotlabs/Module/Photos.php:947 +msgid "Previous" +msgstr "Voriges" + +#: ../../Zotlabs/Module/Events.php:666 ../../Zotlabs/Module/Events.php:675 +#: ../../Zotlabs/Module/Cal.php:333 ../../Zotlabs/Module/Cal.php:340 +#: ../../Zotlabs/Module/Photos.php:956 ../../Zotlabs/Module/Setup.php:267 +msgid "Next" +msgstr "Nächste" + +#: ../../Zotlabs/Module/Events.php:667 ../../Zotlabs/Module/Cal.php:334 +msgid "Export" +msgstr "Exportieren" + +#: ../../Zotlabs/Module/Events.php:670 ../../Zotlabs/Module/Layouts.php:197 +#: ../../Zotlabs/Module/Pubsites.php:47 ../../Zotlabs/Module/Blocks.php:166 +#: ../../Zotlabs/Module/Webpages.php:200 ../../include/page_widgets.php:42 +msgid "View" +msgstr "Ansicht" + +#: ../../Zotlabs/Module/Events.php:671 +msgid "Month" +msgstr "Monat" + +#: ../../Zotlabs/Module/Events.php:672 +msgid "Week" +msgstr "Woche" + +#: ../../Zotlabs/Module/Events.php:673 +msgid "Day" +msgstr "Tag" + +#: ../../Zotlabs/Module/Events.php:676 ../../Zotlabs/Module/Cal.php:341 +msgid "Today" +msgstr "Heute" + +#: ../../Zotlabs/Module/Events.php:707 +msgid "Event removed" +msgstr "Termin gelöscht" + +#: ../../Zotlabs/Module/Events.php:710 +msgid "Failed to remove event" +msgstr "Termin konnte nicht gelöscht werden" + +#: ../../Zotlabs/Module/Bookmarks.php:53 +msgid "Bookmark added" +msgstr "Lesezeichen hinzugefügt" + +#: ../../Zotlabs/Module/Bookmarks.php:75 +msgid "My Bookmarks" +msgstr "Meine Lesezeichen" + +#: ../../Zotlabs/Module/Bookmarks.php:86 +msgid "My Connections Bookmarks" +msgstr "Lesezeichen meiner Kontakte" -#: ../../Zotlabs/Module/Editblock.php:79 ../../Zotlabs/Module/Editblock.php:95 #: ../../Zotlabs/Module/Editpost.php:24 ../../Zotlabs/Module/Editlayout.php:79 -#: ../../Zotlabs/Module/Editwebpage.php:81 +#: ../../Zotlabs/Module/Editwebpage.php:80 +#: ../../Zotlabs/Module/Editblock.php:79 ../../Zotlabs/Module/Editblock.php:95 msgid "Item not found" msgstr "Element nicht gefunden" -#: ../../Zotlabs/Module/Editblock.php:124 ../../include/conversation.php:1228 -msgid "Title (optional)" -msgstr "Titel (optional)" +#: ../../Zotlabs/Module/Editpost.php:35 +msgid "Item is not editable" +msgstr "Element kann nicht bearbeitet werden." -#: ../../Zotlabs/Module/Editblock.php:133 -msgid "Edit Block" -msgstr "Block bearbeiten" +#: ../../Zotlabs/Module/Editpost.php:106 ../../Zotlabs/Module/Rpost.php:134 +msgid "Edit post" +msgstr "Bearbeite Beitrag" -#: ../../Zotlabs/Module/Common.php:14 -msgid "No channel." -msgstr "Kein Kanal." +#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:222 +#: ../../include/nav.php:92 ../../include/conversation.php:1647 +msgid "Photos" +msgstr "Fotos" -#: ../../Zotlabs/Module/Common.php:43 -msgid "Common connections" -msgstr "Gemeinsame Verbindungen" +#: ../../Zotlabs/Module/Fbrowser.php:66 ../../Zotlabs/Module/Fbrowser.php:88 +#: ../../Zotlabs/Module/Admin.php:1406 ../../Zotlabs/Module/Settings.php:645 +#: ../../Zotlabs/Module/Settings.php:671 ../../Zotlabs/Module/Tagrm.php:15 +#: ../../Zotlabs/Module/Tagrm.php:138 ../../Zotlabs/Module/Wiki.php:166 +#: ../../Zotlabs/Module/Wiki.php:202 ../../include/conversation.php:1235 +#: ../../include/conversation.php:1274 +msgid "Cancel" +msgstr "Abbrechen" -#: ../../Zotlabs/Module/Common.php:48 -msgid "No connections in common." -msgstr "Keine gemeinsamen Verbindungen." +#: ../../Zotlabs/Module/Page.php:40 ../../Zotlabs/Module/Block.php:31 +msgid "Invalid item." +msgstr "Ungültiges Element." + +#: ../../Zotlabs/Module/Page.php:56 ../../Zotlabs/Module/Cal.php:62 +#: ../../Zotlabs/Module/Block.php:43 ../../Zotlabs/Module/Wall_upload.php:33 +msgid "Channel not found." +msgstr "Kanal nicht gefunden." + +#: ../../Zotlabs/Module/Page.php:131 +msgid "" +"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod " +"tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam," +" quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo " +"consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse " +"cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat " +"non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." +msgstr "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." + +#: ../../Zotlabs/Module/Filer.php:52 +msgid "Save to Folder:" +msgstr "Speichern in Ordner:" + +#: ../../Zotlabs/Module/Filer.php:52 +msgid "- select -" +msgstr "– auswählen –" + +#: ../../Zotlabs/Module/Filer.php:53 ../../Zotlabs/Module/Admin.php:2033 +#: ../../Zotlabs/Module/Admin.php:2053 ../../Zotlabs/Module/Rbmark.php:32 +#: ../../Zotlabs/Module/Rbmark.php:104 ../../include/text.php:926 +#: ../../include/text.php:938 ../../include/widgets.php:201 +msgid "Save" +msgstr "Speichern" #: ../../Zotlabs/Module/Connections.php:56 #: ../../Zotlabs/Module/Connections.php:161 @@ -1091,7 +1374,7 @@ msgstr "Archiviert" #: ../../Zotlabs/Module/Connections.php:76 #: ../../Zotlabs/Module/Connections.php:86 ../../Zotlabs/Module/Menu.php:116 -#: ../../include/conversation.php:1535 +#: ../../include/conversation.php:1550 msgid "New" msgstr "Neu" @@ -1178,15 +1461,15 @@ msgstr "Verbindung ignorieren" msgid "Recent activity" msgstr "Kürzliche Aktivitäten" -#: ../../Zotlabs/Module/Connections.php:302 ../../Zotlabs/Lib/Apps.php:208 -#: ../../include/text.php:875 ../../include/nav.php:186 +#: ../../Zotlabs/Module/Connections.php:302 ../../Zotlabs/Lib/Apps.php:209 +#: ../../include/nav.php:188 ../../include/text.php:855 msgid "Connections" msgstr "Verbindungen" #: ../../Zotlabs/Module/Connections.php:306 ../../Zotlabs/Module/Search.php:44 -#: ../../Zotlabs/Lib/Apps.php:228 ../../include/text.php:945 -#: ../../include/text.php:957 ../../include/nav.php:165 -#: ../../include/acl_selectors.php:276 +#: ../../Zotlabs/Lib/Apps.php:230 ../../include/nav.php:167 +#: ../../include/text.php:925 ../../include/text.php:937 +#: ../../include/acl_selectors.php:274 msgid "Search" msgstr "Suche" @@ -1199,7 +1482,7 @@ msgid "Connections search" msgstr "Verbindung suchen" #: ../../Zotlabs/Module/Cover_photo.php:58 -#: ../../Zotlabs/Module/Profile_photo.php:79 +#: ../../Zotlabs/Module/Profile_photo.php:61 msgid "Image uploaded but image cropping failed." msgstr "Bild hochgeladen, aber das Zurechtschneiden schlug fehl." @@ -1209,66 +1492,66 @@ msgid "Cover Photos" msgstr "Cover Foto" #: ../../Zotlabs/Module/Cover_photo.php:154 -#: ../../Zotlabs/Module/Profile_photo.php:133 +#: ../../Zotlabs/Module/Profile_photo.php:135 msgid "Image resize failed." msgstr "Bild-Anpassung fehlgeschlagen." #: ../../Zotlabs/Module/Cover_photo.php:168 -#: ../../Zotlabs/Module/Profile_photo.php:192 ../../include/photos.php:144 +#: ../../Zotlabs/Module/Profile_photo.php:196 ../../include/photos.php:148 msgid "Unable to process image" msgstr "Kann Bild nicht verarbeiten" #: ../../Zotlabs/Module/Cover_photo.php:192 -#: ../../Zotlabs/Module/Profile_photo.php:217 +#: ../../Zotlabs/Module/Profile_photo.php:223 msgid "Image upload failed." msgstr "Hochladen des Bilds fehlgeschlagen." #: ../../Zotlabs/Module/Cover_photo.php:210 -#: ../../Zotlabs/Module/Profile_photo.php:236 +#: ../../Zotlabs/Module/Profile_photo.php:242 msgid "Unable to process image." msgstr "Kann Bild nicht verarbeiten." -#: ../../Zotlabs/Module/Cover_photo.php:233 ../../include/items.php:4270 +#: ../../Zotlabs/Module/Cover_photo.php:233 ../../include/items.php:4283 msgid "female" msgstr "weiblich" -#: ../../Zotlabs/Module/Cover_photo.php:234 ../../include/items.php:4271 +#: ../../Zotlabs/Module/Cover_photo.php:234 ../../include/items.php:4284 #, php-format msgid "%1$s updated her %2$s" msgstr "%1$s hat ihr %2$s aktualisiert" -#: ../../Zotlabs/Module/Cover_photo.php:235 ../../include/items.php:4272 +#: ../../Zotlabs/Module/Cover_photo.php:235 ../../include/items.php:4285 msgid "male" msgstr "männlich" -#: ../../Zotlabs/Module/Cover_photo.php:236 ../../include/items.php:4273 +#: ../../Zotlabs/Module/Cover_photo.php:236 ../../include/items.php:4286 #, php-format msgid "%1$s updated his %2$s" msgstr "%1$s hat sein %2$s aktualisiert" -#: ../../Zotlabs/Module/Cover_photo.php:238 ../../include/items.php:4275 +#: ../../Zotlabs/Module/Cover_photo.php:238 ../../include/items.php:4288 #, php-format msgid "%1$s updated their %2$s" msgstr "%1$s hat sein/ihr %2$s aktualisiert" -#: ../../Zotlabs/Module/Cover_photo.php:240 ../../include/channel.php:1661 +#: ../../Zotlabs/Module/Cover_photo.php:240 ../../include/channel.php:1726 msgid "cover photo" msgstr "Cover Foto" #: ../../Zotlabs/Module/Cover_photo.php:303 #: ../../Zotlabs/Module/Cover_photo.php:318 -#: ../../Zotlabs/Module/Profile_photo.php:283 -#: ../../Zotlabs/Module/Profile_photo.php:324 +#: ../../Zotlabs/Module/Profile_photo.php:300 +#: ../../Zotlabs/Module/Profile_photo.php:341 msgid "Photo not available." msgstr "Foto nicht verfügbar." #: ../../Zotlabs/Module/Cover_photo.php:354 -#: ../../Zotlabs/Module/Profile_photo.php:365 +#: ../../Zotlabs/Module/Profile_photo.php:387 msgid "Upload File:" msgstr "Datei hochladen:" #: ../../Zotlabs/Module/Cover_photo.php:355 -#: ../../Zotlabs/Module/Profile_photo.php:366 +#: ../../Zotlabs/Module/Profile_photo.php:388 msgid "Select a profile:" msgstr "Wähle ein Profil:" @@ -1277,200 +1560,69 @@ msgid "Upload Cover Photo" msgstr "Cover Foto hochladen" #: ../../Zotlabs/Module/Cover_photo.php:361 -#: ../../Zotlabs/Module/Profile_photo.php:374 -#: ../../Zotlabs/Module/Settings.php:985 +#: ../../Zotlabs/Module/Profile_photo.php:396 +#: ../../Zotlabs/Module/Settings.php:1080 msgid "or" msgstr "oder" #: ../../Zotlabs/Module/Cover_photo.php:361 -#: ../../Zotlabs/Module/Profile_photo.php:374 +#: ../../Zotlabs/Module/Profile_photo.php:396 msgid "skip this step" msgstr "diesen Schritt überspringen" #: ../../Zotlabs/Module/Cover_photo.php:361 -#: ../../Zotlabs/Module/Profile_photo.php:374 +#: ../../Zotlabs/Module/Profile_photo.php:396 msgid "select a photo from your photo albums" msgstr "ein Foto aus meinen Fotoalben" #: ../../Zotlabs/Module/Cover_photo.php:377 -#: ../../Zotlabs/Module/Profile_photo.php:390 +#: ../../Zotlabs/Module/Profile_photo.php:415 msgid "Crop Image" msgstr "Bild zuschneiden" #: ../../Zotlabs/Module/Cover_photo.php:378 -#: ../../Zotlabs/Module/Profile_photo.php:391 +#: ../../Zotlabs/Module/Profile_photo.php:416 msgid "Please adjust the image cropping for optimum viewing." msgstr "Bitte schneide das Bild für eine optimale Anzeige passend zu." #: ../../Zotlabs/Module/Cover_photo.php:380 -#: ../../Zotlabs/Module/Profile_photo.php:393 +#: ../../Zotlabs/Module/Profile_photo.php:418 msgid "Done Editing" msgstr "Bearbeitung fertigstellen" -#: ../../Zotlabs/Module/Editpost.php:35 -msgid "Item is not editable" -msgstr "Element kann nicht bearbeitet werden." +#: ../../Zotlabs/Module/Impel.php:41 ../../include/bbcode.php:192 +msgid "webpage" +msgstr "Webseite" -#: ../../Zotlabs/Module/Editpost.php:106 ../../Zotlabs/Module/Rpost.php:135 -msgid "Edit post" -msgstr "Bearbeite Beitrag" +#: ../../Zotlabs/Module/Impel.php:46 ../../include/bbcode.php:198 +msgid "block" +msgstr "Block" -#: ../../Zotlabs/Module/Events.php:26 -msgid "Calendar entries imported." -msgstr "Kalendereinträge wurden importiert." +#: ../../Zotlabs/Module/Impel.php:51 ../../include/bbcode.php:195 +msgid "layout" +msgstr "Layout" -#: ../../Zotlabs/Module/Events.php:28 -msgid "No calendar entries found." -msgstr "Keine Kalendereinträge gefunden." +#: ../../Zotlabs/Module/Impel.php:58 ../../include/bbcode.php:201 +msgid "menu" +msgstr "Menü" -#: ../../Zotlabs/Module/Events.php:105 -msgid "Event can not end before it has started." -msgstr "Termin-Ende liegt vor dem Beginn." +#: ../../Zotlabs/Module/Impel.php:187 +#, php-format +msgid "%s element installed" +msgstr "Element für %s installiert" -#: ../../Zotlabs/Module/Events.php:107 ../../Zotlabs/Module/Events.php:116 -#: ../../Zotlabs/Module/Events.php:136 -msgid "Unable to generate preview." -msgstr "Vorschau konnte nicht erzeugt werden." +#: ../../Zotlabs/Module/Impel.php:190 +#, php-format +msgid "%s element installation failed" +msgstr "Installation des Elements %s fehlgeschlagen" -#: ../../Zotlabs/Module/Events.php:114 -msgid "Event title and start time are required." -msgstr "Titel und Startzeit des Termins sind erforderlich." +#: ../../Zotlabs/Module/Cal.php:69 +msgid "Permissions denied." +msgstr "Berechtigung verweigert." -#: ../../Zotlabs/Module/Events.php:134 ../../Zotlabs/Module/Events.php:259 -msgid "Event not found." -msgstr "Termin nicht gefunden." - -#: ../../Zotlabs/Module/Events.php:254 ../../Zotlabs/Module/Like.php:373 -#: ../../Zotlabs/Module/Tagger.php:51 ../../include/event.php:949 -#: ../../include/text.php:1943 ../../include/conversation.php:123 -msgid "event" -msgstr "Termin" - -#: ../../Zotlabs/Module/Events.php:449 -msgid "Edit event title" -msgstr "Termintitel bearbeiten" - -#: ../../Zotlabs/Module/Events.php:449 -msgid "Event title" -msgstr "Termintitel" - -#: ../../Zotlabs/Module/Events.php:449 ../../Zotlabs/Module/Events.php:454 -#: ../../Zotlabs/Module/Profiles.php:709 ../../Zotlabs/Module/Profiles.php:713 -#: ../../Zotlabs/Module/Appman.php:115 ../../Zotlabs/Module/Appman.php:116 -#: ../../include/datetime.php:245 -msgid "Required" -msgstr "Benötigt" - -#: ../../Zotlabs/Module/Events.php:451 -msgid "Categories (comma-separated list)" -msgstr "Kategorien (Kommagetrennte Liste)" - -#: ../../Zotlabs/Module/Events.php:452 -msgid "Edit Category" -msgstr "Kategorie bearbeiten" - -#: ../../Zotlabs/Module/Events.php:452 -msgid "Category" -msgstr "Kategorie" - -#: ../../Zotlabs/Module/Events.php:455 -msgid "Edit start date and time" -msgstr "Startdatum und -zeit bearbeiten" - -#: ../../Zotlabs/Module/Events.php:455 -msgid "Start date and time" -msgstr "Startdatum und -zeit" - -#: ../../Zotlabs/Module/Events.php:456 ../../Zotlabs/Module/Events.php:459 -msgid "Finish date and time are not known or not relevant" -msgstr "Enddatum und -zeit sind unbekannt oder irrelevant" - -#: ../../Zotlabs/Module/Events.php:458 -msgid "Edit finish date and time" -msgstr "Enddatum und -zeit bearbeiten" - -#: ../../Zotlabs/Module/Events.php:458 -msgid "Finish date and time" -msgstr "Enddatum und -zeit" - -#: ../../Zotlabs/Module/Events.php:460 ../../Zotlabs/Module/Events.php:461 -msgid "Adjust for viewer timezone" -msgstr "An die Zeitzone des Betrachters anpassen" - -#: ../../Zotlabs/Module/Events.php:460 -msgid "" -"Important for events that happen in a particular place. Not practical for " -"global holidays." -msgstr "Wichtig für Veranstaltungen die an bestimmten Orten stattfinden. Nicht sinnvoll für globale Feiertage / Ferien." - -#: ../../Zotlabs/Module/Events.php:462 -msgid "Edit Description" -msgstr "Beschreibung bearbeiten" - -#: ../../Zotlabs/Module/Events.php:462 ../../Zotlabs/Module/Appman.php:117 -#: ../../Zotlabs/Module/Rbmark.php:101 -msgid "Description" -msgstr "Beschreibung" - -#: ../../Zotlabs/Module/Events.php:464 -msgid "Edit Location" -msgstr "Ort bearbeiten" - -#: ../../Zotlabs/Module/Events.php:464 ../../Zotlabs/Module/Locs.php:117 -#: ../../Zotlabs/Module/Profiles.php:477 ../../Zotlabs/Module/Profiles.php:698 -#: ../../Zotlabs/Module/Pubsites.php:41 ../../include/js_strings.php:25 -msgid "Location" -msgstr "Ort" - -#: ../../Zotlabs/Module/Events.php:467 ../../Zotlabs/Module/Events.php:469 -msgid "Share this event" -msgstr "Den Termin teilen" - -#: ../../Zotlabs/Module/Events.php:470 ../../Zotlabs/Module/Photos.php:1093 -#: ../../Zotlabs/Module/Webpages.php:194 ../../Zotlabs/Lib/ThreadItem.php:719 -#: ../../include/conversation.php:1187 ../../include/page_widgets.php:40 -msgid "Preview" -msgstr "Vorschau" - -#: ../../Zotlabs/Module/Events.php:471 ../../include/conversation.php:1232 -msgid "Permission settings" -msgstr "Berechtigungs-Einstellungen" - -#: ../../Zotlabs/Module/Events.php:476 -msgid "Advanced Options" -msgstr "Weitere Optionen" - -#: ../../Zotlabs/Module/Events.php:610 -msgid "Edit event" -msgstr "Termin bearbeiten" - -#: ../../Zotlabs/Module/Events.php:612 -msgid "Delete event" -msgstr "Termin löschen" - -#: ../../Zotlabs/Module/Events.php:646 -msgid "calendar" -msgstr "Kalender" - -#: ../../Zotlabs/Module/Events.php:706 -msgid "Event removed" -msgstr "Termin gelöscht" - -#: ../../Zotlabs/Module/Events.php:709 -msgid "Failed to remove event" -msgstr "Termin konnte nicht gelöscht werden" - -#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:220 -#: ../../include/nav.php:92 ../../include/conversation.php:1632 -msgid "Photos" -msgstr "Fotos" - -#: ../../Zotlabs/Module/Fbrowser.php:66 ../../Zotlabs/Module/Fbrowser.php:88 -#: ../../Zotlabs/Module/Admin.php:1406 ../../Zotlabs/Module/Settings.php:591 -#: ../../Zotlabs/Module/Settings.php:617 ../../Zotlabs/Module/Tagrm.php:15 -#: ../../Zotlabs/Module/Tagrm.php:138 ../../include/conversation.php:1259 -msgid "Cancel" -msgstr "Abbrechen" +#: ../../Zotlabs/Module/Cal.php:337 +msgid "Import" +msgstr "Import" #: ../../Zotlabs/Module/Dirsearch.php:25 ../../Zotlabs/Module/Regdir.php:49 msgid "This site is not a directory server" @@ -1480,112 +1632,184 @@ msgstr "Diese Webseite ist kein Verzeichnisserver" msgid "This directory server requires an access token" msgstr "Dieser Verzeichnisserver benötigt einen Zugriffstoken" -#: ../../Zotlabs/Module/Filer.php:52 -msgid "Save to Folder:" -msgstr "Speichern in Ordner:" +#: ../../Zotlabs/Module/Chat.php:25 ../../Zotlabs/Module/Channel.php:28 +#: ../../Zotlabs/Module/Wiki.php:20 +msgid "You must be logged in to see this page." +msgstr "Du musst angemeldet sein, um diese Seite betrachten zu können." -#: ../../Zotlabs/Module/Filer.php:52 -msgid "- select -" -msgstr "– auswählen –" +#: ../../Zotlabs/Module/Chat.php:181 +msgid "Room not found" +msgstr "Chatraum nicht gefunden" -#: ../../Zotlabs/Module/Filer.php:53 ../../Zotlabs/Module/Admin.php:2033 -#: ../../Zotlabs/Module/Admin.php:2053 ../../Zotlabs/Module/Rbmark.php:32 -#: ../../Zotlabs/Module/Rbmark.php:104 ../../include/text.php:946 -#: ../../include/text.php:958 ../../include/widgets.php:201 -msgid "Save" -msgstr "Speichern" +#: ../../Zotlabs/Module/Chat.php:197 +msgid "Leave Room" +msgstr "Raum verlassen" -#: ../../Zotlabs/Module/Dreport.php:27 +#: ../../Zotlabs/Module/Chat.php:198 +msgid "Delete Room" +msgstr "Raum löschen" + +#: ../../Zotlabs/Module/Chat.php:199 +msgid "I am away right now" +msgstr "Ich bin gerade nicht da" + +#: ../../Zotlabs/Module/Chat.php:200 +msgid "I am online" +msgstr "Ich bin online" + +#: ../../Zotlabs/Module/Chat.php:202 +msgid "Bookmark this room" +msgstr "Lesezeichen für diesen Raum setzen" + +#: ../../Zotlabs/Module/Chat.php:205 ../../Zotlabs/Module/Mail.php:197 +#: ../../Zotlabs/Module/Mail.php:306 ../../include/conversation.php:1181 +msgid "Please enter a link URL:" +msgstr "Gib eine URL ein:" + +#: ../../Zotlabs/Module/Chat.php:206 ../../Zotlabs/Module/Mail.php:250 +#: ../../Zotlabs/Module/Mail.php:375 ../../Zotlabs/Lib/ThreadItem.php:722 +#: ../../include/conversation.php:1271 +msgid "Encrypt text" +msgstr "Text verschlüsseln" + +#: ../../Zotlabs/Module/Chat.php:207 ../../Zotlabs/Module/Editwebpage.php:146 +#: ../../Zotlabs/Module/Mail.php:244 ../../Zotlabs/Module/Mail.php:369 +#: ../../Zotlabs/Module/Editblock.php:111 ../../include/conversation.php:1146 +msgid "Insert web link" +msgstr "Link einfügen" + +#: ../../Zotlabs/Module/Chat.php:218 +msgid "Feature disabled." +msgstr "Funktion deaktiviert." + +#: ../../Zotlabs/Module/Chat.php:232 +msgid "New Chatroom" +msgstr "Neuer Chatraum" + +#: ../../Zotlabs/Module/Chat.php:233 +msgid "Chatroom name" +msgstr "Chatraumname" + +#: ../../Zotlabs/Module/Chat.php:234 +msgid "Expiration of chats (minutes)" +msgstr "Verfall von Chats (Minuten)" + +#: ../../Zotlabs/Module/Chat.php:235 ../../Zotlabs/Module/Filestorage.php:152 +#: ../../Zotlabs/Module/Photos.php:669 ../../Zotlabs/Module/Photos.php:1043 +#: ../../Zotlabs/Module/Thing.php:313 ../../Zotlabs/Module/Thing.php:359 +#: ../../include/acl_selectors.php:281 +msgid "Permissions" +msgstr "Berechtigungen" + +#: ../../Zotlabs/Module/Chat.php:246 +#, php-format +msgid "%1$s's Chatrooms" +msgstr "%1$ss Chaträume" + +#: ../../Zotlabs/Module/Chat.php:251 +msgid "No chatrooms available" +msgstr "Keine Chaträume verfügbar" + +#: ../../Zotlabs/Module/Chat.php:252 ../../Zotlabs/Module/Profiles.php:778 +#: ../../Zotlabs/Module/Manage.php:143 +msgid "Create New" +msgstr "Neu anlegen" + +#: ../../Zotlabs/Module/Chat.php:255 +msgid "Expiration" +msgstr "Verfall" + +#: ../../Zotlabs/Module/Chat.php:256 +msgid "min" +msgstr "min" + +#: ../../Zotlabs/Module/Dreport.php:44 msgid "Invalid message" msgstr "Ungültige Beitrags-ID (mid)" -#: ../../Zotlabs/Module/Dreport.php:59 +#: ../../Zotlabs/Module/Dreport.php:76 msgid "no results" msgstr "keine Ergebnisse" -#: ../../Zotlabs/Module/Dreport.php:64 +#: ../../Zotlabs/Module/Dreport.php:91 +msgid "channel sync processed" +msgstr "Kanal-Sync verarbeitet" + +#: ../../Zotlabs/Module/Dreport.php:95 +msgid "queued" +msgstr "zur Warteschlange hinzugefügt" + +#: ../../Zotlabs/Module/Dreport.php:99 +msgid "posted" +msgstr "zugestellt" + +#: ../../Zotlabs/Module/Dreport.php:103 +msgid "accepted for delivery" +msgstr "für Zustellung akzeptiert" + +#: ../../Zotlabs/Module/Dreport.php:107 +msgid "updated" +msgstr "aktualisiert" + +#: ../../Zotlabs/Module/Dreport.php:110 +msgid "update ignored" +msgstr "Aktualisierung ignoriert" + +#: ../../Zotlabs/Module/Dreport.php:113 +msgid "permission denied" +msgstr "Zugriff verweigert" + +#: ../../Zotlabs/Module/Dreport.php:117 +msgid "recipient not found" +msgstr "Empfänger nicht gefunden." + +#: ../../Zotlabs/Module/Dreport.php:120 +msgid "mail recalled" +msgstr "Mail widerrufen" + +#: ../../Zotlabs/Module/Dreport.php:123 +msgid "duplicate mail received" +msgstr "Doppelte Mail erhalten" + +#: ../../Zotlabs/Module/Dreport.php:126 +msgid "mail delivered" +msgstr "Mail zugestellt" + +#: ../../Zotlabs/Module/Dreport.php:146 #, php-format msgid "Delivery report for %1$s" msgstr "Zustellungsbericht für %1$s" -#: ../../Zotlabs/Module/Dreport.php:78 -msgid "channel sync processed" -msgstr "Kanal-Sync verarbeitet" +#: ../../Zotlabs/Module/Dreport.php:149 +msgid "Options" +msgstr "Optionen" -#: ../../Zotlabs/Module/Dreport.php:82 -msgid "queued" -msgstr "zur Warteschlange hinzugefügt" +#: ../../Zotlabs/Module/Dreport.php:150 +msgid "Redeliver" +msgstr "Erneut zustellen" -#: ../../Zotlabs/Module/Dreport.php:86 -msgid "posted" -msgstr "zugestellt" - -#: ../../Zotlabs/Module/Dreport.php:90 -msgid "accepted for delivery" -msgstr "für Zustellung akzeptiert" - -#: ../../Zotlabs/Module/Dreport.php:94 -msgid "updated" -msgstr "aktualisiert" - -#: ../../Zotlabs/Module/Dreport.php:97 -msgid "update ignored" -msgstr "Aktualisierung ignoriert" - -#: ../../Zotlabs/Module/Dreport.php:100 -msgid "permission denied" -msgstr "Zugriff verweigert" - -#: ../../Zotlabs/Module/Dreport.php:104 -msgid "recipient not found" -msgstr "Empfänger nicht gefunden." - -#: ../../Zotlabs/Module/Dreport.php:107 -msgid "mail recalled" -msgstr "Mail widerrufen" - -#: ../../Zotlabs/Module/Dreport.php:110 -msgid "duplicate mail received" -msgstr "Doppelte Mail erhalten" - -#: ../../Zotlabs/Module/Dreport.php:113 -msgid "mail delivered" -msgstr "Mail zugestellt" - -#: ../../Zotlabs/Module/Editlayout.php:126 -#: ../../Zotlabs/Module/Layouts.php:127 ../../Zotlabs/Module/Layouts.php:186 +#: ../../Zotlabs/Module/Editlayout.php:127 +#: ../../Zotlabs/Module/Layouts.php:128 ../../Zotlabs/Module/Layouts.php:188 msgid "Layout Name" msgstr "Layout-Name" -#: ../../Zotlabs/Module/Editlayout.php:127 -#: ../../Zotlabs/Module/Layouts.php:130 +#: ../../Zotlabs/Module/Editlayout.php:128 +#: ../../Zotlabs/Module/Layouts.php:131 msgid "Layout Description (Optional)" msgstr "Layout-Beschreibung (optional)" -#: ../../Zotlabs/Module/Editlayout.php:135 +#: ../../Zotlabs/Module/Editlayout.php:136 msgid "Edit Layout" msgstr "Layout bearbeiten" -#: ../../Zotlabs/Module/Editwebpage.php:143 +#: ../../Zotlabs/Module/Editwebpage.php:142 msgid "Page link" msgstr "Seiten-Link" -#: ../../Zotlabs/Module/Editwebpage.php:169 +#: ../../Zotlabs/Module/Editwebpage.php:168 msgid "Edit Webpage" msgstr "Webseite bearbeiten" -#: ../../Zotlabs/Module/Follow.php:34 -msgid "Channel added." -msgstr "Kanal hinzugefügt." - -#: ../../Zotlabs/Module/Acl.php:227 -msgid "network" -msgstr "Netzwerk" - -#: ../../Zotlabs/Module/Acl.php:237 -msgid "RSS" -msgstr "RSS" - #: ../../Zotlabs/Module/Group.php:24 msgid "Privacy group created." msgstr "Gruppe wurde erstellt." @@ -1595,7 +1819,7 @@ msgid "Could not create privacy group." msgstr "Gruppe konnte nicht erstellt werden." #: ../../Zotlabs/Module/Group.php:42 ../../Zotlabs/Module/Group.php:141 -#: ../../include/items.php:3893 +#: ../../include/items.php:3902 msgid "Privacy group not found." msgstr "Gruppe nicht gefunden." @@ -1639,31 +1863,57 @@ msgstr "Alle verbundenen Kanäle" msgid "Click on a channel to add or remove." msgstr "Wähle einen Kanal zum hinzufügen oder entfernen aus." -#: ../../Zotlabs/Module/Ffsapi.php:12 -msgid "Share content from Firefox to $Projectname" -msgstr "Inhalte von Firefox nach $Projectname teilen" +#: ../../Zotlabs/Module/Appman.php:37 ../../Zotlabs/Module/Appman.php:53 +msgid "App installed." +msgstr "App installiert." -#: ../../Zotlabs/Module/Ffsapi.php:15 -msgid "Activate the Firefox $Projectname provider" -msgstr "Aktiviert den $Projectname-Provider für firefox" +#: ../../Zotlabs/Module/Appman.php:46 +msgid "Malformed app." +msgstr "Fehlerhafte App." -#: ../../Zotlabs/Module/Api.php:61 ../../Zotlabs/Module/Api.php:85 -msgid "Authorize application connection" -msgstr "Zugriff für die Anwendung autorisieren" +#: ../../Zotlabs/Module/Appman.php:104 +msgid "Embed code" +msgstr "Code einbetten" -#: ../../Zotlabs/Module/Api.php:62 -msgid "Return to your app and insert this Securty Code:" -msgstr "Trage folgenden Sicherheitscode in der Anwendung ein:" +#: ../../Zotlabs/Module/Appman.php:110 ../../include/widgets.php:107 +msgid "Edit App" +msgstr "App bearbeiten" -#: ../../Zotlabs/Module/Api.php:72 -msgid "Please login to continue." -msgstr "Zum Weitermachen, bitte einloggen." +#: ../../Zotlabs/Module/Appman.php:110 +msgid "Create App" +msgstr "App erstellen" -#: ../../Zotlabs/Module/Api.php:87 -msgid "" -"Do you want to authorize this application to access your posts and contacts," -" and/or create new posts for you?" -msgstr "Möchtest Du dieser Anwendung erlauben, Deine Nachrichten und Kontakte abzurufen und/oder neue Nachrichten für Dich zu erstellen?" +#: ../../Zotlabs/Module/Appman.php:115 +msgid "Name of app" +msgstr "Name der App" + +#: ../../Zotlabs/Module/Appman.php:116 +msgid "Location (URL) of app" +msgstr "Ort (URL) der App" + +#: ../../Zotlabs/Module/Appman.php:118 +msgid "Photo icon URL" +msgstr "URL zum Icon" + +#: ../../Zotlabs/Module/Appman.php:118 +msgid "80 x 80 pixels - optional" +msgstr "80 x 80 Pixel – optional" + +#: ../../Zotlabs/Module/Appman.php:119 +msgid "Categories (optional, comma separated list)" +msgstr "Kategorien (optional, kommagetrennte Liste)" + +#: ../../Zotlabs/Module/Appman.php:120 +msgid "Version ID" +msgstr "Versions-ID" + +#: ../../Zotlabs/Module/Appman.php:121 +msgid "Price of app" +msgstr "Preis der App" + +#: ../../Zotlabs/Module/Appman.php:122 +msgid "Location (URL) to purchase app" +msgstr "Ort (URL), um die App zu kaufen" #: ../../Zotlabs/Module/Help.php:26 msgid "Documentation Search" @@ -1675,8 +1925,8 @@ msgid "Help:" msgstr "Hilfe:" #: ../../Zotlabs/Module/Help.php:85 ../../Zotlabs/Module/Help.php:90 -#: ../../Zotlabs/Module/Layouts.php:183 ../../Zotlabs/Lib/Apps.php:223 -#: ../../include/nav.php:159 +#: ../../Zotlabs/Module/Layouts.php:185 ../../Zotlabs/Lib/Apps.php:225 +#: ../../include/nav.php:161 msgid "Help" msgstr "Hilfe" @@ -1684,335 +1934,124 @@ msgstr "Hilfe" msgid "$Projectname Documentation" msgstr "$Projectname-Dokumentation" -#: ../../Zotlabs/Module/Filestorage.php:88 -msgid "Permission Denied." -msgstr "Zugriff verweigert." - -#: ../../Zotlabs/Module/Filestorage.php:104 -msgid "File not found." -msgstr "Datei nicht gefunden." - -#: ../../Zotlabs/Module/Filestorage.php:147 -msgid "Edit file permissions" -msgstr "Dateiberechtigungen bearbeiten" - -#: ../../Zotlabs/Module/Filestorage.php:156 -msgid "Set/edit permissions" -msgstr "Berechtigungen setzen/ändern" - -#: ../../Zotlabs/Module/Filestorage.php:157 -msgid "Include all files and sub folders" -msgstr "Alle Dateien und Unterverzeichnisse einbinden" - -#: ../../Zotlabs/Module/Filestorage.php:158 -msgid "Return to file list" -msgstr "Zurück zur Dateiliste" - -#: ../../Zotlabs/Module/Filestorage.php:160 -msgid "Copy/paste this code to attach file to a post" -msgstr "Diesen Code kopieren und einfügen, um die Datei an einen Beitrag anzuhängen" - -#: ../../Zotlabs/Module/Filestorage.php:161 -msgid "Copy/paste this URL to link file from a web page" -msgstr "Diese URL verwenden, um von einer Webseite aus auf die Datei zu verlinken" - -#: ../../Zotlabs/Module/Filestorage.php:163 -msgid "Share this file" -msgstr "Diese Datei freigeben" - -#: ../../Zotlabs/Module/Filestorage.php:164 -msgid "Show URL to this file" -msgstr "URL zu dieser Datei anzeigen" - -#: ../../Zotlabs/Module/Filestorage.php:165 -msgid "Notify your contacts about this file" -msgstr "Meine Kontakte über diese Datei benachrichtigen" - -#: ../../Zotlabs/Module/Apps.php:47 ../../include/widgets.php:102 -#: ../../include/nav.php:163 -msgid "Apps" -msgstr "Apps" - #: ../../Zotlabs/Module/Attach.php:13 msgid "Item not available." msgstr "Element nicht verfügbar." -#: ../../Zotlabs/Module/Import.php:32 -#, php-format -msgid "Your service plan only allows %d channels." -msgstr "Dein Vertrag erlaubt nur %d Kanäle." +#: ../../Zotlabs/Module/Pdledit.php:18 +msgid "Layout updated." +msgstr "Layout aktualisiert." -#: ../../Zotlabs/Module/Import.php:70 ../../Zotlabs/Module/Import_items.php:42 -msgid "Nothing to import." -msgstr "Nichts zu importieren." +#: ../../Zotlabs/Module/Pdledit.php:34 ../../Zotlabs/Module/Pdledit.php:61 +msgid "Edit System Page Description" +msgstr "Systemseitenbeschreibung bearbeiten" -#: ../../Zotlabs/Module/Import.php:94 ../../Zotlabs/Module/Import_items.php:66 -msgid "Unable to download data from old server" -msgstr "Daten können vom alten Server nicht heruntergeladen werden" +#: ../../Zotlabs/Module/Pdledit.php:56 +msgid "Layout not found." +msgstr "Layout nicht gefunden." -#: ../../Zotlabs/Module/Import.php:100 -#: ../../Zotlabs/Module/Import_items.php:72 -msgid "Imported file is empty." -msgstr "Die importierte Datei ist leer." +#: ../../Zotlabs/Module/Pdledit.php:62 +msgid "Module Name:" +msgstr "Modulname:" -#: ../../Zotlabs/Module/Import.php:122 -#: ../../Zotlabs/Module/Import_items.php:86 -#, php-format -msgid "Warning: Database versions differ by %1$d updates." -msgstr "Achtung: Datenbankversionen unterscheiden sich um %1$d Aktualisierungen." +#: ../../Zotlabs/Module/Pdledit.php:63 +msgid "Layout Help" +msgstr "Layout-Hilfe" -#: ../../Zotlabs/Module/Import.php:150 ../../include/import.php:86 -msgid "Cloned channel not found. Import failed." -msgstr "Geklonter Kanal nicht gefunden. Import fehlgeschlagen." +#: ../../Zotlabs/Module/Ffsapi.php:12 +msgid "Share content from Firefox to $Projectname" +msgstr "Inhalte von Firefox nach $Projectname teilen" -#: ../../Zotlabs/Module/Import.php:160 -msgid "No channel. Import failed." -msgstr "Kein Kanal. Import fehlgeschlagen." +#: ../../Zotlabs/Module/Ffsapi.php:15 +msgid "Activate the Firefox $Projectname provider" +msgstr "Aktiviert den $Projectname-Provider für firefox" -#: ../../Zotlabs/Module/Import.php:510 -#: ../../include/Import/import_diaspora.php:142 -msgid "Import completed." -msgstr "Import abgeschlossen." +#: ../../Zotlabs/Module/Acl.php:312 +msgid "network" +msgstr "Netzwerk" -#: ../../Zotlabs/Module/Import.php:532 -msgid "You must be logged in to use this feature." -msgstr "Du musst angemeldet sein um diese Funktion zu nutzen." +#: ../../Zotlabs/Module/Acl.php:322 +msgid "RSS" +msgstr "RSS" -#: ../../Zotlabs/Module/Import.php:537 -msgid "Import Channel" -msgstr "Kanal importieren" +#: ../../Zotlabs/Module/Filestorage.php:87 +msgid "Permission Denied." +msgstr "Zugriff verweigert." -#: ../../Zotlabs/Module/Import.php:538 -msgid "" -"Use this form to import an existing channel from a different server/hub. You" -" may retrieve the channel identity from the old server/hub via the network " -"or provide an export file." -msgstr "Verwende dieses Formular, um einen existierenden Kanal von einem anderen Hub zu importieren. Du kannst den Kanal direkt vom bisherigen Hub über das Netzwerk oder aus einer exportierten Sicherheitskopie importieren." +#: ../../Zotlabs/Module/Filestorage.php:103 +msgid "File not found." +msgstr "Datei nicht gefunden." -#: ../../Zotlabs/Module/Import.php:539 -#: ../../Zotlabs/Module/Import_items.php:119 -msgid "File to Upload" -msgstr "Hochzuladende Datei:" +#: ../../Zotlabs/Module/Filestorage.php:146 +msgid "Edit file permissions" +msgstr "Dateiberechtigungen bearbeiten" -#: ../../Zotlabs/Module/Import.php:540 -msgid "Or provide the old server/hub details" -msgstr "Oder gib die Details Deines bisherigen $Projectname-Hubs ein" +#: ../../Zotlabs/Module/Filestorage.php:155 +msgid "Set/edit permissions" +msgstr "Berechtigungen setzen/ändern" -#: ../../Zotlabs/Module/Import.php:541 -msgid "Your old identity address (xyz@example.com)" -msgstr "Bisherige Kanal-Adresse (xyz@example.com)" +#: ../../Zotlabs/Module/Filestorage.php:156 +msgid "Include all files and sub folders" +msgstr "Alle Dateien und Unterverzeichnisse einbinden" -#: ../../Zotlabs/Module/Import.php:542 -msgid "Your old login email address" -msgstr "Deine alte Login-E-Mail-Adresse" +#: ../../Zotlabs/Module/Filestorage.php:157 +msgid "Return to file list" +msgstr "Zurück zur Dateiliste" -#: ../../Zotlabs/Module/Import.php:543 -msgid "Your old login password" -msgstr "Dein altes Passwort" +#: ../../Zotlabs/Module/Filestorage.php:159 +msgid "Copy/paste this code to attach file to a post" +msgstr "Diesen Code kopieren und einfügen, um die Datei an einen Beitrag anzuhängen" -#: ../../Zotlabs/Module/Import.php:544 -msgid "" -"For either option, please choose whether to make this hub your new primary " -"address, or whether your old location should continue this role. You will be" -" able to post from either location, but only one can be marked as the " -"primary location for files, photos, and media." -msgstr "Egal, welche Option Du wählst – bitte lege fest, ob dieser Server die neue primäre Adresse dieses Kanals sein soll, oder ob der bisherige $Projectname-Hub diese Rolle weiterhin wahrnimmt. Du kannst von beiden Servern aus posten, aber nur einer kann der primäre Ort Deiner Dateien, Fotos und Medien sein." +#: ../../Zotlabs/Module/Filestorage.php:160 +msgid "Copy/paste this URL to link file from a web page" +msgstr "Diese URL verwenden, um von einer Webseite aus auf die Datei zu verlinken" -#: ../../Zotlabs/Module/Import.php:545 -msgid "Make this hub my primary location" -msgstr "Dieser $Pojectname-Hub ist mein primärer Hub." +#: ../../Zotlabs/Module/Filestorage.php:162 +msgid "Share this file" +msgstr "Diese Datei freigeben" -#: ../../Zotlabs/Module/Import.php:546 -msgid "" -"Import existing posts if possible (experimental - limited by available " -"memory" -msgstr "Importiere bestehende Beiträge falls möglich (experimentell - begrenzt durch zur Verfügung stehenden Speicher" +#: ../../Zotlabs/Module/Filestorage.php:163 +msgid "Show URL to this file" +msgstr "URL zu dieser Datei anzeigen" -#: ../../Zotlabs/Module/Import.php:547 -msgid "" -"This process may take several minutes to complete. Please submit the form " -"only once and leave this page open until finished." -msgstr "Dieser Vorgang kann einige Minuten dauern. Bitte sende das Formular nur einmal ab und lasse diese Seite bis zur Fertigstellung offen." +#: ../../Zotlabs/Module/Filestorage.php:164 +msgid "Notify your contacts about this file" +msgstr "Meine Kontakte über diese Datei benachrichtigen" -#: ../../Zotlabs/Module/Item.php:178 -msgid "Unable to locate original post." -msgstr "Originalbeitrag nicht gefunden." - -#: ../../Zotlabs/Module/Item.php:427 -msgid "Empty post discarded." -msgstr "Leeren Beitrag verworfen." - -#: ../../Zotlabs/Module/Item.php:467 -msgid "Executable content type not permitted to this channel." -msgstr "Ausführbarer Content-Typ ist für diesen Kanal nicht freigegeben." - -#: ../../Zotlabs/Module/Item.php:847 -msgid "Duplicate post suppressed." -msgstr "Doppelter Beitrag unterdrückt." - -#: ../../Zotlabs/Module/Item.php:977 -msgid "System error. Post not saved." -msgstr "Systemfehler. Beitrag nicht gespeichert." - -#: ../../Zotlabs/Module/Item.php:1241 -msgid "Unable to obtain post information from database." -msgstr "Beitragsinformationen können nicht aus der Datenbank abgerufen werden." - -#: ../../Zotlabs/Module/Item.php:1248 -#, php-format -msgid "You have reached your limit of %1$.0f top level posts." -msgstr "Du hast die maximale Anzahl von %1$.0f Beiträgen erreicht." - -#: ../../Zotlabs/Module/Item.php:1255 -#, php-format -msgid "You have reached your limit of %1$.0f webpages." -msgstr "Du hast die maximale Anzahl von %1$.0f Webseiten erreicht." - -#: ../../Zotlabs/Module/Layouts.php:181 ../../include/text.php:2267 +#: ../../Zotlabs/Module/Layouts.php:183 ../../include/text.php:2240 msgid "Layouts" msgstr "Layouts" -#: ../../Zotlabs/Module/Layouts.php:183 +#: ../../Zotlabs/Module/Layouts.php:185 msgid "Comanche page description language help" msgstr "Hilfe zur Comanche-Seitenbeschreibungssprache" -#: ../../Zotlabs/Module/Layouts.php:187 +#: ../../Zotlabs/Module/Layouts.php:189 msgid "Layout Description" msgstr "Layout-Beschreibung" -#: ../../Zotlabs/Module/Layouts.php:192 +#: ../../Zotlabs/Module/Layouts.php:190 ../../Zotlabs/Module/Menu.php:114 +#: ../../Zotlabs/Module/Blocks.php:157 ../../Zotlabs/Module/Webpages.php:205 +#: ../../include/page_widgets.php:47 +msgid "Created" +msgstr "Erstellt" + +#: ../../Zotlabs/Module/Layouts.php:191 ../../Zotlabs/Module/Menu.php:115 +#: ../../Zotlabs/Module/Blocks.php:158 ../../Zotlabs/Module/Webpages.php:206 +#: ../../include/page_widgets.php:48 +msgid "Edited" +msgstr "Geändert" + +#: ../../Zotlabs/Module/Layouts.php:193 ../../Zotlabs/Module/Photos.php:1070 +#: ../../Zotlabs/Module/Blocks.php:161 ../../Zotlabs/Module/Webpages.php:195 +#: ../../include/conversation.php:1219 +msgid "Share" +msgstr "Teilen" + +#: ../../Zotlabs/Module/Layouts.php:194 msgid "Download PDL file" msgstr "PDL-Datei herunterladen" -#: ../../Zotlabs/Module/Home.php:61 ../../Zotlabs/Module/Home.php:69 -#: ../../Zotlabs/Module/Siteinfo.php:65 -msgid "$Projectname" -msgstr "$Projectname" - -#: ../../Zotlabs/Module/Home.php:79 -#, php-format -msgid "Welcome to %s" -msgstr "Willkommen auf %s" - -#: ../../Zotlabs/Module/Id.php:13 -msgid "First Name" -msgstr "Vorname" - -#: ../../Zotlabs/Module/Id.php:14 -msgid "Last Name" -msgstr "Nachname" - -#: ../../Zotlabs/Module/Id.php:15 -msgid "Nickname" -msgstr "Spitzname" - -#: ../../Zotlabs/Module/Id.php:16 -msgid "Full Name" -msgstr "Voller Name" - -#: ../../Zotlabs/Module/Id.php:17 ../../Zotlabs/Module/Id.php:18 -#: ../../Zotlabs/Module/Admin.php:1035 ../../Zotlabs/Module/Admin.php:1047 -#: ../../include/network.php:2151 ../../boot.php:1705 -msgid "Email" -msgstr "E-Mail" - -#: ../../Zotlabs/Module/Id.php:19 ../../Zotlabs/Module/Id.php:20 -#: ../../Zotlabs/Module/Id.php:21 ../../Zotlabs/Lib/Apps.php:236 -msgid "Profile Photo" -msgstr "Profilfoto" - -#: ../../Zotlabs/Module/Id.php:22 -msgid "Profile Photo 16px" -msgstr "Profilfoto 16 px" - -#: ../../Zotlabs/Module/Id.php:23 -msgid "Profile Photo 32px" -msgstr "Profilfoto 32 px" - -#: ../../Zotlabs/Module/Id.php:24 -msgid "Profile Photo 48px" -msgstr "Profilfoto 48 px" - -#: ../../Zotlabs/Module/Id.php:25 -msgid "Profile Photo 64px" -msgstr "Profilfoto 64 px" - -#: ../../Zotlabs/Module/Id.php:26 -msgid "Profile Photo 80px" -msgstr "Profilfoto 80 px" - -#: ../../Zotlabs/Module/Id.php:27 -msgid "Profile Photo 128px" -msgstr "Profilfoto 128 px" - -#: ../../Zotlabs/Module/Id.php:28 -msgid "Timezone" -msgstr "Zeitzone" - -#: ../../Zotlabs/Module/Id.php:29 ../../Zotlabs/Module/Profiles.php:731 -msgid "Homepage URL" -msgstr "Homepage-URL" - -#: ../../Zotlabs/Module/Id.php:30 ../../Zotlabs/Lib/Apps.php:234 -msgid "Language" -msgstr "Sprache" - -#: ../../Zotlabs/Module/Id.php:31 -msgid "Birth Year" -msgstr "Geburtsjahr" - -#: ../../Zotlabs/Module/Id.php:32 -msgid "Birth Month" -msgstr "Geburtsmonat" - -#: ../../Zotlabs/Module/Id.php:33 -msgid "Birth Day" -msgstr "Geburtstag" - -#: ../../Zotlabs/Module/Id.php:34 -msgid "Birthdate" -msgstr "Geburtsdatum" - -#: ../../Zotlabs/Module/Id.php:35 ../../Zotlabs/Module/Profiles.php:454 -msgid "Gender" -msgstr "Geschlecht" - -#: ../../Zotlabs/Module/Id.php:108 ../../include/selectors.php:49 -#: ../../include/selectors.php:66 -msgid "Male" -msgstr "Männlich" - -#: ../../Zotlabs/Module/Id.php:110 ../../include/selectors.php:49 -#: ../../include/selectors.php:66 -msgid "Female" -msgstr "Weiblich" - -#: ../../Zotlabs/Module/Impel.php:41 ../../include/bbcode.php:192 -msgid "webpage" -msgstr "Webseite" - -#: ../../Zotlabs/Module/Impel.php:46 ../../include/bbcode.php:198 -msgid "block" -msgstr "Block" - -#: ../../Zotlabs/Module/Impel.php:51 ../../include/bbcode.php:195 -msgid "layout" -msgstr "Layout" - -#: ../../Zotlabs/Module/Impel.php:58 ../../include/bbcode.php:201 -msgid "menu" -msgstr "Menü" - -#: ../../Zotlabs/Module/Impel.php:196 -#, php-format -msgid "%s element installed" -msgstr "Element für %s installiert" - -#: ../../Zotlabs/Module/Impel.php:199 -#, php-format -msgid "%s element installation failed" -msgstr "Installation des Elements %s fehlgeschlagen" - #: ../../Zotlabs/Module/Like.php:19 msgid "Like/Dislike" msgstr "Mögen/Nicht mögen" @@ -2048,1180 +2087,65 @@ msgstr "Kanal nicht vorhanden." msgid "Previous action reversed." msgstr "Die vorherige Aktion wurde rückgängig gemacht." -#: ../../Zotlabs/Module/Like.php:371 ../../Zotlabs/Module/Subthread.php:87 -#: ../../Zotlabs/Module/Tagger.php:47 ../../include/text.php:1940 -#: ../../include/conversation.php:120 +#: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87 +#: ../../Zotlabs/Module/Tagger.php:47 ../../include/conversation.php:120 +#: ../../include/text.php:1921 msgid "photo" msgstr "Foto" -#: ../../Zotlabs/Module/Like.php:371 ../../Zotlabs/Module/Subthread.php:87 -#: ../../include/text.php:1946 ../../include/conversation.php:148 +#: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87 +#: ../../include/conversation.php:148 ../../include/text.php:1927 msgid "status" msgstr "Status" -#: ../../Zotlabs/Module/Like.php:420 ../../include/conversation.php:164 +#: ../../Zotlabs/Module/Like.php:419 ../../include/conversation.php:164 #, php-format msgid "%1$s likes %2$s's %3$s" msgstr "%1$s gefällt %2$ss %3$s" -#: ../../Zotlabs/Module/Like.php:422 ../../include/conversation.php:167 +#: ../../Zotlabs/Module/Like.php:421 ../../include/conversation.php:167 #, php-format msgid "%1$s doesn't like %2$s's %3$s" msgstr "%1$s gefällt %2$ss %3$s nicht" -#: ../../Zotlabs/Module/Like.php:424 +#: ../../Zotlabs/Module/Like.php:423 #, php-format msgid "%1$s agrees with %2$s's %3$s" msgstr "%1$s stimmt %2$ss %3$s zu" -#: ../../Zotlabs/Module/Like.php:426 +#: ../../Zotlabs/Module/Like.php:425 #, php-format msgid "%1$s doesn't agree with %2$s's %3$s" msgstr "%1$s lehnt %2$ss %3$s ab" -#: ../../Zotlabs/Module/Like.php:428 +#: ../../Zotlabs/Module/Like.php:427 #, php-format msgid "%1$s abstains from a decision on %2$s's %3$s" msgstr "%1$s enthält sich zu %2$ss %3$s" -#: ../../Zotlabs/Module/Like.php:430 +#: ../../Zotlabs/Module/Like.php:429 #, php-format msgid "%1$s is attending %2$s's %3$s" msgstr "%1$s nimmt an %2$ss %3$s teil" -#: ../../Zotlabs/Module/Like.php:432 +#: ../../Zotlabs/Module/Like.php:431 #, php-format msgid "%1$s is not attending %2$s's %3$s" msgstr "%1$s nimmt an %2$ss %3$s nicht teil" -#: ../../Zotlabs/Module/Like.php:434 +#: ../../Zotlabs/Module/Like.php:433 #, php-format msgid "%1$s may attend %2$s's %3$s" msgstr "%1$s nimmt vielleicht an %2$ss %3$s teil" -#: ../../Zotlabs/Module/Like.php:537 +#: ../../Zotlabs/Module/Like.php:536 msgid "Action completed." msgstr "Aktion durchgeführt." -#: ../../Zotlabs/Module/Like.php:538 +#: ../../Zotlabs/Module/Like.php:537 msgid "Thank you." msgstr "Vielen Dank." -#: ../../Zotlabs/Module/Import_items.php:102 -msgid "Import completed" -msgstr "Import abgeschlossen" - -#: ../../Zotlabs/Module/Import_items.php:117 -msgid "Import Items" -msgstr "Beiträge importieren" - -#: ../../Zotlabs/Module/Import_items.php:118 -msgid "" -"Use this form to import existing posts and content from an export file." -msgstr "Mit diesem Formular kannst Du existierende Beiträge und Inhalte aus einer Sicherungsdatei importieren." - -#: ../../Zotlabs/Module/Invite.php:29 -msgid "Total invitation limit exceeded." -msgstr "Einladungslimit überschritten." - -#: ../../Zotlabs/Module/Invite.php:53 -#, php-format -msgid "%s : Not a valid email address." -msgstr "%s : Keine gültige Email Adresse." - -#: ../../Zotlabs/Module/Invite.php:63 -msgid "Please join us on $Projectname" -msgstr "Schließe Dich uns auf $Projectname an!" - -#: ../../Zotlabs/Module/Invite.php:74 -msgid "Invitation limit exceeded. Please contact your site administrator." -msgstr "Einladungslimit überschritten. Bitte kontaktiere den Administrator Deines $Projectname-Servers." - -#: ../../Zotlabs/Module/Invite.php:79 -#, php-format -msgid "%s : Message delivery failed." -msgstr "%s : Nachricht konnte nicht zugestellt werden." - -#: ../../Zotlabs/Module/Invite.php:83 -#, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "%d Nachricht gesendet." -msgstr[1] "%d Nachrichten gesendet." - -#: ../../Zotlabs/Module/Invite.php:102 -msgid "You have no more invitations available" -msgstr "Du hast keine weiteren verfügbare Einladungen" - -#: ../../Zotlabs/Module/Invite.php:133 -msgid "Send invitations" -msgstr "Einladungen senden" - -#: ../../Zotlabs/Module/Invite.php:134 -msgid "Enter email addresses, one per line:" -msgstr "Email-Adressen eintragen, eine pro Zeile:" - -#: ../../Zotlabs/Module/Invite.php:135 ../../Zotlabs/Module/Mail.php:249 -msgid "Your message:" -msgstr "Deine Nachricht:" - -#: ../../Zotlabs/Module/Invite.php:136 -msgid "Please join my community on $Projectname." -msgstr "Schließe Dich uns auf $Projectname an!" - -#: ../../Zotlabs/Module/Invite.php:138 -msgid "You will need to supply this invitation code:" -msgstr "Bitte verwende bei der Registrierung den folgenden Einladungscode:" - -#: ../../Zotlabs/Module/Invite.php:139 -msgid "" -"1. Register at any $Projectname location (they are all inter-connected)" -msgstr "1. Registriere Dich auf einem beliebigen $Projectname-Hub (sie sind alle miteinander verbunden)" - -#: ../../Zotlabs/Module/Invite.php:141 -msgid "2. Enter my $Projectname network address into the site searchbar." -msgstr "2. Gib meine $Projectname-Adresse im Suchfeld ein." - -#: ../../Zotlabs/Module/Invite.php:142 -msgid "or visit" -msgstr "oder besuche" - -#: ../../Zotlabs/Module/Invite.php:144 -msgid "3. Click [Connect]" -msgstr "3. Klicke auf [Verbinden]" - -#: ../../Zotlabs/Module/Lockview.php:61 -msgid "Remote privacy information not available." -msgstr "Privatsphäre-Einstellungen anderer Nutzer sind nicht verfügbar." - -#: ../../Zotlabs/Module/Lockview.php:82 -msgid "Visible to:" -msgstr "Sichtbar für:" - -#: ../../Zotlabs/Module/Locs.php:25 ../../Zotlabs/Module/Locs.php:54 -msgid "Location not found." -msgstr "Klon nicht gefunden." - -#: ../../Zotlabs/Module/Locs.php:62 -msgid "Location lookup failed." -msgstr "Nachschlagen des Kanal-Ortes fehlgeschlagen" - -#: ../../Zotlabs/Module/Locs.php:66 -msgid "" -"Please select another location to become primary before removing the primary" -" location." -msgstr "Bitte mache einen anderen Kanal-Ort zum primären Ort, bevor Du den primären Ort löschst." - -#: ../../Zotlabs/Module/Locs.php:95 -msgid "Syncing locations" -msgstr "Synchronisiere Klone" - -#: ../../Zotlabs/Module/Locs.php:105 -msgid "No locations found." -msgstr "Keine Klon-Adressen gefunden." - -#: ../../Zotlabs/Module/Locs.php:116 -msgid "Manage Channel Locations" -msgstr "Klon-Adressen verwalten" - -#: ../../Zotlabs/Module/Locs.php:118 ../../Zotlabs/Module/Profiles.php:470 -#: ../../Zotlabs/Module/Admin.php:1224 -msgid "Address" -msgstr "Adresse" - -#: ../../Zotlabs/Module/Locs.php:119 -msgid "Primary" -msgstr "Primär" - -#: ../../Zotlabs/Module/Locs.php:120 ../../Zotlabs/Module/Menu.php:113 -msgid "Drop" -msgstr "Löschen" - -#: ../../Zotlabs/Module/Locs.php:122 -msgid "Sync Now" -msgstr "Jetzt synchronisieren" - -#: ../../Zotlabs/Module/Locs.php:123 -msgid "Please wait several minutes between consecutive operations." -msgstr "Bitte warte mehrere Minuten zwischen dem Ausführen zweier Operationen!" - -#: ../../Zotlabs/Module/Locs.php:124 -msgid "" -"When possible, drop a location by logging into that website/hub and removing" -" your channel." -msgstr "Wenn möglich, lösche einen Klon, indem Du Dich auf dem jeweiligen Hub einloggst und den Kanal dort löschst." - -#: ../../Zotlabs/Module/Locs.php:125 -msgid "Use this form to drop the location if the hub is no longer operating." -msgstr "Benutze dieses Formular zum Löschen eines Klons, wenn es den Hub nicht mehr gibt." - -#: ../../Zotlabs/Module/Magic.php:71 -msgid "Hub not found." -msgstr "Server nicht gefunden." - -#: ../../Zotlabs/Module/Mail.php:38 -msgid "Unable to lookup recipient." -msgstr "Konnte den Empfänger nicht finden." - -#: ../../Zotlabs/Module/Mail.php:45 -msgid "Unable to communicate with requested channel." -msgstr "Die Kommunikation mit dem ausgewählten Kanal ist fehlgeschlagen." - -#: ../../Zotlabs/Module/Mail.php:52 -msgid "Cannot verify requested channel." -msgstr "Verifizierung des angeforderten Kanals fehlgeschlagen." - -#: ../../Zotlabs/Module/Mail.php:78 -msgid "Selected channel has private message restrictions. Send failed." -msgstr "Der ausgewählte Kanal hat Einschränkungen bzgl. privater Nachrichten. Senden fehlgeschlagen." - -#: ../../Zotlabs/Module/Mail.php:143 -msgid "Messages" -msgstr "Nachrichten" - -#: ../../Zotlabs/Module/Mail.php:178 -msgid "Message recalled." -msgstr "Nachricht widerrufen." - -#: ../../Zotlabs/Module/Mail.php:191 -msgid "Conversation removed." -msgstr "Unterhaltung gelöscht." - -#: ../../Zotlabs/Module/Mail.php:206 ../../Zotlabs/Module/Mail.php:315 -msgid "Expires YYYY-MM-DD HH:MM" -msgstr "Verfällt YYYY-MM-DD HH;MM" - -#: ../../Zotlabs/Module/Mail.php:234 -msgid "Requested channel is not in this network" -msgstr "Angeforderter Kanal ist nicht in diesem Netzwerk." - -#: ../../Zotlabs/Module/Mail.php:242 -msgid "Send Private Message" -msgstr "Private Nachricht senden" - -#: ../../Zotlabs/Module/Mail.php:243 ../../Zotlabs/Module/Mail.php:368 -msgid "To:" -msgstr "An:" - -#: ../../Zotlabs/Module/Mail.php:246 ../../Zotlabs/Module/Mail.php:370 -msgid "Subject:" -msgstr "Betreff:" - -#: ../../Zotlabs/Module/Mail.php:251 ../../Zotlabs/Module/Mail.php:376 -#: ../../include/conversation.php:1220 -msgid "Attach file" -msgstr "Datei anhängen" - -#: ../../Zotlabs/Module/Mail.php:253 -msgid "Send" -msgstr "Absenden" - -#: ../../Zotlabs/Module/Mail.php:256 ../../Zotlabs/Module/Mail.php:381 -#: ../../include/conversation.php:1251 -msgid "Set expiration date" -msgstr "Verfallsdatum" - -#: ../../Zotlabs/Module/Mail.php:340 -msgid "Delete message" -msgstr "Nachricht löschen" - -#: ../../Zotlabs/Module/Mail.php:341 -msgid "Delivery report" -msgstr "Zustellungsbericht" - -#: ../../Zotlabs/Module/Mail.php:342 -msgid "Recall message" -msgstr "Nachricht widerrufen" - -#: ../../Zotlabs/Module/Mail.php:344 -msgid "Message has been recalled." -msgstr "Die Nachricht wurde widerrufen." - -#: ../../Zotlabs/Module/Mail.php:361 -msgid "Delete Conversation" -msgstr "Unterhaltung löschen" - -#: ../../Zotlabs/Module/Mail.php:363 -msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." -msgstr "Keine sichere Kommunikation verfügbar. Eventuell kannst Du auf der Profilseite des Absenders antworten." - -#: ../../Zotlabs/Module/Mail.php:367 -msgid "Send Reply" -msgstr "Antwort senden" - -#: ../../Zotlabs/Module/Mail.php:372 -#, php-format -msgid "Your message for %s (%s):" -msgstr "Deine Nachricht für %s (%s):" - -#: ../../Zotlabs/Module/Manage.php:136 -#: ../../Zotlabs/Module/New_channel.php:121 -#, php-format -msgid "You have created %1$.0f of %2$.0f allowed channels." -msgstr "Du hast %1$.0f von maximal %2$.0f erlaubten Kanälen eingerichtet." - -#: ../../Zotlabs/Module/Manage.php:143 -msgid "Create a new channel" -msgstr "Neuen Kanal anlegen" - -#: ../../Zotlabs/Module/Manage.php:164 ../../Zotlabs/Lib/Apps.php:213 -#: ../../include/nav.php:206 -msgid "Channel Manager" -msgstr "Kanal-Manager" - -#: ../../Zotlabs/Module/Manage.php:165 -msgid "Current Channel" -msgstr "Aktueller Kanal" - -#: ../../Zotlabs/Module/Manage.php:167 -msgid "Switch to one of your channels by selecting it." -msgstr "Wechsle zu einem Deiner Kanäle, indem Du auf ihn klickst." - -#: ../../Zotlabs/Module/Manage.php:168 -msgid "Default Channel" -msgstr "Standard Kanal" - -#: ../../Zotlabs/Module/Manage.php:169 -msgid "Make Default" -msgstr "Zum Standard machen" - -#: ../../Zotlabs/Module/Manage.php:172 -#, php-format -msgid "%d new messages" -msgstr "%d neue Nachrichten" - -#: ../../Zotlabs/Module/Manage.php:173 -#, php-format -msgid "%d new introductions" -msgstr "%d neue Vorstellungen" - -#: ../../Zotlabs/Module/Manage.php:175 -msgid "Delegated Channel" -msgstr "Delegierte Kanäle" - -#: ../../Zotlabs/Module/Lostpass.php:19 -msgid "No valid account found." -msgstr "Kein gültiges Konto gefunden." - -#: ../../Zotlabs/Module/Lostpass.php:33 -msgid "Password reset request issued. Check your email." -msgstr "Zurücksetzen des Passworts eingeleitet. Schau in Deine E-Mails." - -#: ../../Zotlabs/Module/Lostpass.php:39 ../../Zotlabs/Module/Lostpass.php:107 -#, php-format -msgid "Site Member (%s)" -msgstr "Nutzer (%s)" - -#: ../../Zotlabs/Module/Lostpass.php:44 -#, php-format -msgid "Password reset requested at %s" -msgstr "Passwort-Rücksetzung auf %s angefordert" - -#: ../../Zotlabs/Module/Lostpass.php:67 -msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." -msgstr "Die Anfrage konnte nicht verifiziert werden. (Vielleicht hast Du schon einmal auf den Link in der E-Mail geklickt?) Passwort-Rücksetzung fehlgeschlagen." - -#: ../../Zotlabs/Module/Lostpass.php:90 ../../boot.php:1711 -msgid "Password Reset" -msgstr "Zurücksetzen des Kennworts" - -#: ../../Zotlabs/Module/Lostpass.php:91 -msgid "Your password has been reset as requested." -msgstr "Dein Passwort wurde wie angefordert neu erstellt." - -#: ../../Zotlabs/Module/Lostpass.php:92 -msgid "Your new password is" -msgstr "Dein neues Passwort lautet" - -#: ../../Zotlabs/Module/Lostpass.php:93 -msgid "Save or copy your new password - and then" -msgstr "Speichere oder kopiere Dein neues Passwort – und dann" - -#: ../../Zotlabs/Module/Lostpass.php:94 -msgid "click here to login" -msgstr "Klicke hier, um dich anzumelden" - -#: ../../Zotlabs/Module/Lostpass.php:95 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." -msgstr "Dein Passwort kann unter Einstellungen nach einer erfolgreichen Anmeldung geändert werden." - -#: ../../Zotlabs/Module/Lostpass.php:112 -#, php-format -msgid "Your password has changed at %s" -msgstr "Auf %s wurde Dein Passwort geändert" - -#: ../../Zotlabs/Module/Lostpass.php:127 -msgid "Forgot your Password?" -msgstr "Kennwort vergessen?" - -#: ../../Zotlabs/Module/Lostpass.php:128 -msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." -msgstr "Gib Deine E-Mail-Adresse ein, um Dein Passwort zurücksetzen zu lassen. Du erhältst dann weitere Anweisungen per E-Mail." - -#: ../../Zotlabs/Module/Lostpass.php:129 -msgid "Email Address" -msgstr "E-Mail Adresse" - -#: ../../Zotlabs/Module/Lostpass.php:130 -msgid "Reset" -msgstr "Zurücksetzen" - -#: ../../Zotlabs/Module/Menu.php:49 -msgid "Unable to update menu." -msgstr "Kann Menü nicht aktualisieren." - -#: ../../Zotlabs/Module/Menu.php:60 -msgid "Unable to create menu." -msgstr "Kann Menü nicht erstellen." - -#: ../../Zotlabs/Module/Menu.php:98 ../../Zotlabs/Module/Menu.php:110 -msgid "Menu Name" -msgstr "Name des Menüs" - -#: ../../Zotlabs/Module/Menu.php:98 -msgid "Unique name (not visible on webpage) - required" -msgstr "Eindeutiger Name (nicht sichtbar auf der Webseite) – erforderlich" - -#: ../../Zotlabs/Module/Menu.php:99 ../../Zotlabs/Module/Menu.php:111 -msgid "Menu Title" -msgstr "Menütitel" - -#: ../../Zotlabs/Module/Menu.php:99 -msgid "Visible on webpage - leave empty for no title" -msgstr "Sichtbar auf der Webseite – für keinen Titel leer lassen" - -#: ../../Zotlabs/Module/Menu.php:100 -msgid "Allow Bookmarks" -msgstr "Lesezeichen erlauben" - -#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 -msgid "Menu may be used to store saved bookmarks" -msgstr "Im Menü können gespeicherte Lesezeichen abgelegt werden" - -#: ../../Zotlabs/Module/Menu.php:101 ../../Zotlabs/Module/Menu.php:159 -msgid "Submit and proceed" -msgstr "Absenden und fortfahren" - -#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2266 -msgid "Menus" -msgstr "Menüs" - -#: ../../Zotlabs/Module/Menu.php:117 -msgid "Bookmarks allowed" -msgstr "Lesezeichen erlaubt" - -#: ../../Zotlabs/Module/Menu.php:119 -msgid "Delete this menu" -msgstr "Lösche dieses Menü" - -#: ../../Zotlabs/Module/Menu.php:120 ../../Zotlabs/Module/Menu.php:154 -msgid "Edit menu contents" -msgstr "Bearbeite Menü Inhalte" - -#: ../../Zotlabs/Module/Menu.php:121 -msgid "Edit this menu" -msgstr "Dieses Menü bearbeiten" - -#: ../../Zotlabs/Module/Menu.php:136 -msgid "Menu could not be deleted." -msgstr "Menü konnte nicht gelöscht werden." - -#: ../../Zotlabs/Module/Menu.php:144 ../../Zotlabs/Module/Mitem.php:28 -msgid "Menu not found." -msgstr "Menü nicht gefunden" - -#: ../../Zotlabs/Module/Menu.php:149 -msgid "Edit Menu" -msgstr "Menü bearbeiten" - -#: ../../Zotlabs/Module/Menu.php:153 -msgid "Add or remove entries to this menu" -msgstr "Einträge zu diesem Menü hinzufügen oder entfernen" - -#: ../../Zotlabs/Module/Menu.php:155 -msgid "Menu name" -msgstr "Menü Name" - -#: ../../Zotlabs/Module/Menu.php:155 -msgid "Must be unique, only seen by you" -msgstr "Muss eindeutig sein, ist aber nur für Dich sichtbar" - -#: ../../Zotlabs/Module/Menu.php:156 -msgid "Menu title" -msgstr "Menü Titel" - -#: ../../Zotlabs/Module/Menu.php:156 -msgid "Menu title as seen by others" -msgstr "Menü Titel wie er von anderen gesehen wird" - -#: ../../Zotlabs/Module/Menu.php:157 -msgid "Allow bookmarks" -msgstr "Erlaube Lesezeichen" - -#: ../../Zotlabs/Module/Menu.php:166 ../../Zotlabs/Module/Mitem.php:120 -#: ../../Zotlabs/Module/Xchan.php:41 -msgid "Not found." -msgstr "Nicht gefunden." - -#: ../../Zotlabs/Module/Mood.php:67 ../../include/conversation.php:260 -#, php-format -msgctxt "mood" -msgid "%1$s is %2$s" -msgstr "%1$s ist %2$s" - -#: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Lib/Apps.php:225 -msgid "Mood" -msgstr "Laune" - -#: ../../Zotlabs/Module/Mood.php:136 -msgid "Set your current mood and tell your friends" -msgstr "Wähle Deine aktuelle Stimmung und teile sie mit Deinen Freunden" - -#: ../../Zotlabs/Module/Match.php:26 -msgid "Profile Match" -msgstr "Profil-Übereinstimmungen" - -#: ../../Zotlabs/Module/Match.php:35 -msgid "No keywords to match. Please add keywords to your default profile." -msgstr "Keine Schlüsselwörter für den Abgleich gefunden. Bitte füge Schlüsselwörter zu Deinem Standardprofil hinzu." - -#: ../../Zotlabs/Module/Match.php:67 -msgid "is interested in:" -msgstr "interessiert sich für:" - -#: ../../Zotlabs/Module/Match.php:74 -msgid "No matches" -msgstr "Keine Übereinstimmungen" - -#: ../../Zotlabs/Module/Network.php:96 -msgid "No such group" -msgstr "Gruppe nicht gefunden" - -#: ../../Zotlabs/Module/Network.php:136 -msgid "No such channel" -msgstr "Kanal nicht gefunden" - -#: ../../Zotlabs/Module/Network.php:141 -msgid "forum" -msgstr "Forum" - -#: ../../Zotlabs/Module/Network.php:153 -msgid "Search Results For:" -msgstr "Suchergebnisse für:" - -#: ../../Zotlabs/Module/Network.php:217 -msgid "Privacy group is empty" -msgstr "Gruppe ist leer" - -#: ../../Zotlabs/Module/Network.php:226 -msgid "Privacy group: " -msgstr "Gruppe:" - -#: ../../Zotlabs/Module/Network.php:252 -msgid "Invalid connection." -msgstr "Ungültige Verbindung." - -#: ../../Zotlabs/Module/Notify.php:57 -#: ../../Zotlabs/Module/Notifications.php:98 -msgid "No more system notifications." -msgstr "Keine System-Benachrichtigungen mehr." - -#: ../../Zotlabs/Module/Notify.php:61 -#: ../../Zotlabs/Module/Notifications.php:102 -msgid "System Notifications" -msgstr "System-Benachrichtigungen" - -#: ../../Zotlabs/Module/Mitem.php:52 -msgid "Unable to create element." -msgstr "Element konnte nicht erstellt werden." - -#: ../../Zotlabs/Module/Mitem.php:76 -msgid "Unable to update menu element." -msgstr "Kann Menü-Element nicht aktualisieren." - -#: ../../Zotlabs/Module/Mitem.php:92 -msgid "Unable to add menu element." -msgstr "Kann Menü-Bestandteil nicht hinzufügen." - -#: ../../Zotlabs/Module/Mitem.php:153 ../../Zotlabs/Module/Mitem.php:226 -msgid "Menu Item Permissions" -msgstr "Zugriffsrechte des Menü-Elements" - -#: ../../Zotlabs/Module/Mitem.php:154 ../../Zotlabs/Module/Mitem.php:227 -#: ../../Zotlabs/Module/Settings.php:1068 -msgid "(click to open/close)" -msgstr "(zum öffnen/schließen anklicken)" - -#: ../../Zotlabs/Module/Mitem.php:156 ../../Zotlabs/Module/Mitem.php:172 -msgid "Link Name" -msgstr "Name des Links" - -#: ../../Zotlabs/Module/Mitem.php:157 ../../Zotlabs/Module/Mitem.php:231 -msgid "Link or Submenu Target" -msgstr "Ziel des Links oder Untermenüs" - -#: ../../Zotlabs/Module/Mitem.php:157 -msgid "Enter URL of the link or select a menu name to create a submenu" -msgstr "URL des Links eingeben oder Menünamen wählen, um ein Untermenü anzulegen." - -#: ../../Zotlabs/Module/Mitem.php:158 ../../Zotlabs/Module/Mitem.php:232 -msgid "Use magic-auth if available" -msgstr "Magic-Auth verwenden, falls verfügbar" - -#: ../../Zotlabs/Module/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:233 -msgid "Open link in new window" -msgstr "Öffne Link in neuem Fenster" - -#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:234 -msgid "Order in list" -msgstr "Reihenfolge in der Liste" - -#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:234 -msgid "Higher numbers will sink to bottom of listing" -msgstr "Größere Nummern werden weiter unten in der Auflistung einsortiert" - -#: ../../Zotlabs/Module/Mitem.php:161 -msgid "Submit and finish" -msgstr "Absenden und fertigstellen" - -#: ../../Zotlabs/Module/Mitem.php:162 -msgid "Submit and continue" -msgstr "Absenden und fortfahren" - -#: ../../Zotlabs/Module/Mitem.php:170 -msgid "Menu:" -msgstr "Menü:" - -#: ../../Zotlabs/Module/Mitem.php:173 -msgid "Link Target" -msgstr "Ziel des Links" - -#: ../../Zotlabs/Module/Mitem.php:176 -msgid "Edit menu" -msgstr "Menü bearbeiten" - -#: ../../Zotlabs/Module/Mitem.php:179 -msgid "Edit element" -msgstr "Bestandteil bearbeiten" - -#: ../../Zotlabs/Module/Mitem.php:180 -msgid "Drop element" -msgstr "Bestandteil löschen" - -#: ../../Zotlabs/Module/Mitem.php:181 -msgid "New element" -msgstr "Neues Bestandteil" - -#: ../../Zotlabs/Module/Mitem.php:182 -msgid "Edit this menu container" -msgstr "Diesen Menü-Container bearbeiten" - -#: ../../Zotlabs/Module/Mitem.php:183 -msgid "Add menu element" -msgstr "Menüelement hinzufügen" - -#: ../../Zotlabs/Module/Mitem.php:184 -msgid "Delete this menu item" -msgstr "Lösche dieses Menü-Bestandteil" - -#: ../../Zotlabs/Module/Mitem.php:185 -msgid "Edit this menu item" -msgstr "Bearbeite dieses Menü-Bestandteil" - -#: ../../Zotlabs/Module/Mitem.php:202 -msgid "Menu item not found." -msgstr "Menü-Bestandteil nicht gefunden." - -#: ../../Zotlabs/Module/Mitem.php:215 -msgid "Menu item deleted." -msgstr "Menü-Bestandteil gelöscht." - -#: ../../Zotlabs/Module/Mitem.php:217 -msgid "Menu item could not be deleted." -msgstr "Menü-Bestandteil kann nicht gelöscht werden." - -#: ../../Zotlabs/Module/Mitem.php:224 -msgid "Edit Menu Element" -msgstr "Bearbeite Menü-Bestandteil" - -#: ../../Zotlabs/Module/Mitem.php:230 -msgid "Link text" -msgstr "Link Text" - -#: ../../Zotlabs/Module/New_channel.php:128 -#: ../../Zotlabs/Module/Register.php:231 -msgid "Name or caption" -msgstr "Name oder Titel" - -#: ../../Zotlabs/Module/New_channel.php:128 -#: ../../Zotlabs/Module/Register.php:231 -msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\"" -msgstr "Beispiele: „Horst Weidinger“, „Lisa und ihr Meerschweinchen“, „Fußball“, „Segelflieger-Forum“ " - -#: ../../Zotlabs/Module/New_channel.php:130 -#: ../../Zotlabs/Module/Register.php:233 -msgid "Choose a short nickname" -msgstr "Wähle einen kurzen Spitznamen" - -#: ../../Zotlabs/Module/New_channel.php:130 -#: ../../Zotlabs/Module/Register.php:233 -#, php-format -msgid "" -"Your nickname will be used to create an easy to remember channel address " -"e.g. nickname%s" -msgstr "Dein Spitzname wird verwendet, um eine leicht zu merkende Kanal-Adresse (ähnlich einer E-Mail-Adresse) zu erzeugen, die Du mit anderen austauschen kannst, z.B. nickname%s" - -#: ../../Zotlabs/Module/New_channel.php:132 -#: ../../Zotlabs/Module/Register.php:235 -msgid "Channel role and privacy" -msgstr "Kanaltyp und Privatspäre-Einstellungen" - -#: ../../Zotlabs/Module/New_channel.php:132 -#: ../../Zotlabs/Module/Register.php:235 -msgid "Select a channel role with your privacy requirements." -msgstr "Wähle einen passenden Kanaltyp mit den zugehörigen Voreinstellungen zur Privatsphäre." - -#: ../../Zotlabs/Module/New_channel.php:132 -#: ../../Zotlabs/Module/Register.php:235 -msgid "Read more about roles" -msgstr "Mehr Informationen über Rollen" - -#: ../../Zotlabs/Module/New_channel.php:135 -msgid "Create Channel" -msgstr "Einen neuen Kanal anlegen" - -#: ../../Zotlabs/Module/New_channel.php:136 -msgid "" -"A channel is your identity on this network. It can represent a person, a " -"blog, or a forum to name a few. Channels can make connections with other " -"channels to share information with highly detailed permissions." -msgstr "Ein Kanal ist Deine Identität in diesem Netzwerk. Er kann eine Person, ein Blog oder ein Forum repräsentieren, nur um ein paar Beispiele zu nennen. Kanäle können Verbindungen miteinander eingehen, um Informationen zu teilen, jeweils basierend auf sehr detaillierten Berechtigungseinstellungen." - -#: ../../Zotlabs/Module/New_channel.php:137 -msgid "" -"or import an existing channel from another location." -msgstr "oder importiere einen bestehenden Kanal von einem anderen Server." - -#: ../../Zotlabs/Module/Notifications.php:30 -msgid "Invalid request identifier." -msgstr "Ungültiger Anfrage-Identifikator." - -#: ../../Zotlabs/Module/Notifications.php:39 -msgid "Discard" -msgstr "Verwerfen" - -#: ../../Zotlabs/Module/Notifications.php:103 ../../include/nav.php:191 -msgid "Mark all system notifications seen" -msgstr "Markiere alle System-Benachrichtigungen als gesehen" - -#: ../../Zotlabs/Module/Photos.php:84 -msgid "Page owner information could not be retrieved." -msgstr "Informationen über den Besitzer der Seite konnten nicht gefunden werden." - -#: ../../Zotlabs/Module/Photos.php:99 ../../Zotlabs/Module/Photos.php:743 -#: ../../Zotlabs/Module/Profile_photo.php:114 -#: ../../Zotlabs/Module/Profile_photo.php:206 -#: ../../Zotlabs/Module/Profile_photo.php:294 -#: ../../include/photo/photo_driver.php:718 -msgid "Profile Photos" -msgstr "Profilfotos" - -#: ../../Zotlabs/Module/Photos.php:105 ../../Zotlabs/Module/Photos.php:149 -msgid "Album not found." -msgstr "Album nicht gefunden." - -#: ../../Zotlabs/Module/Photos.php:132 -msgid "Delete Album" -msgstr "Album löschen" - -#: ../../Zotlabs/Module/Photos.php:153 -msgid "" -"Multiple storage folders exist with this album name, but within different " -"directories. Please remove the desired folder or folders using the Files " -"manager" -msgstr "Mehrere Speicherordner mit diesem Albumnamen sind bereits vorhanden, aber in verschiedenen Verzeichnissen. Bitte entfernen Sie den oder die gewünschten Ordner mit dem Dateimanager" - -#: ../../Zotlabs/Module/Photos.php:210 ../../Zotlabs/Module/Photos.php:1053 -msgid "Delete Photo" -msgstr "Foto löschen" - -#: ../../Zotlabs/Module/Photos.php:533 -msgid "No photos selected" -msgstr "Keine Fotos ausgewählt" - -#: ../../Zotlabs/Module/Photos.php:582 -msgid "Access to this item is restricted." -msgstr "Der Zugriff auf dieses Foto ist eingeschränkt." - -#: ../../Zotlabs/Module/Photos.php:621 -#, php-format -msgid "%1$.2f MB of %2$.2f MB photo storage used." -msgstr "%1$.2f MB von %2$.2f MB Foto-Speicher belegt." - -#: ../../Zotlabs/Module/Photos.php:624 -#, php-format -msgid "%1$.2f MB photo storage used." -msgstr "%1$.2f MB Foto-Speicher belegt." - -#: ../../Zotlabs/Module/Photos.php:660 -msgid "Upload Photos" -msgstr "Fotos hochladen" - -#: ../../Zotlabs/Module/Photos.php:664 -msgid "Enter an album name" -msgstr "Namen für ein neues Album eingeben" - -#: ../../Zotlabs/Module/Photos.php:665 -msgid "or select an existing album (doubleclick)" -msgstr "oder ein bereits vorhandenes auswählen (Doppelklick)" - -#: ../../Zotlabs/Module/Photos.php:666 -msgid "Create a status post for this upload" -msgstr "Einen Statusbeitrag für diesen Upload erzeugen" - -#: ../../Zotlabs/Module/Photos.php:667 -msgid "Caption (optional):" -msgstr "Beschriftung (optional):" - -#: ../../Zotlabs/Module/Photos.php:668 -msgid "Description (optional):" -msgstr "Beschreibung (optional):" - -#: ../../Zotlabs/Module/Photos.php:695 -msgid "Album name could not be decoded" -msgstr "Albumname konnte nicht dekodiert werden" - -#: ../../Zotlabs/Module/Photos.php:743 -msgid "Contact Photos" -msgstr "Kontakt-Bilder" - -#: ../../Zotlabs/Module/Photos.php:766 -msgid "Show Newest First" -msgstr "Neueste zuerst anzeigen" - -#: ../../Zotlabs/Module/Photos.php:768 -msgid "Show Oldest First" -msgstr "Älteste zuerst anzeigen" - -#: ../../Zotlabs/Module/Photos.php:792 ../../Zotlabs/Module/Photos.php:1331 -#: ../../include/widgets.php:1499 -msgid "View Photo" -msgstr "Foto ansehen" - -#: ../../Zotlabs/Module/Photos.php:823 ../../include/widgets.php:1516 -msgid "Edit Album" -msgstr "Album bearbeiten" - -#: ../../Zotlabs/Module/Photos.php:870 -msgid "Permission denied. Access to this item may be restricted." -msgstr "Berechtigung verweigert. Der Zugriff ist wahrscheinlich eingeschränkt worden." - -#: ../../Zotlabs/Module/Photos.php:872 -msgid "Photo not available" -msgstr "Foto nicht verfügbar" - -#: ../../Zotlabs/Module/Photos.php:930 -msgid "Use as profile photo" -msgstr "Als Profilfoto verwenden" - -#: ../../Zotlabs/Module/Photos.php:931 -msgid "Use as cover photo" -msgstr "Als Titelbild verwenden" - -#: ../../Zotlabs/Module/Photos.php:938 -msgid "Private Photo" -msgstr "Privates Foto" - -#: ../../Zotlabs/Module/Photos.php:953 -msgid "View Full Size" -msgstr "In voller Größe anzeigen" - -#: ../../Zotlabs/Module/Photos.php:998 ../../Zotlabs/Module/Admin.php:1437 -#: ../../Zotlabs/Module/Tagrm.php:137 -msgid "Remove" -msgstr "Entfernen" - -#: ../../Zotlabs/Module/Photos.php:1032 -msgid "Edit photo" -msgstr "Foto bearbeiten" - -#: ../../Zotlabs/Module/Photos.php:1034 -msgid "Rotate CW (right)" -msgstr "Drehen im UZS (rechts)" - -#: ../../Zotlabs/Module/Photos.php:1035 -msgid "Rotate CCW (left)" -msgstr "Drehen gegen UZS (links)" - -#: ../../Zotlabs/Module/Photos.php:1038 -msgid "Enter a new album name" -msgstr "Gib einen Namen für ein neues Album ein" - -#: ../../Zotlabs/Module/Photos.php:1039 -msgid "or select an existing one (doubleclick)" -msgstr "oder wähle ein bereits vorhandenes aus (Doppelklick)" - -#: ../../Zotlabs/Module/Photos.php:1042 -msgid "Caption" -msgstr "Bildunterschrift" - -#: ../../Zotlabs/Module/Photos.php:1044 -msgid "Add a Tag" -msgstr "Schlagwort hinzufügen" - -#: ../../Zotlabs/Module/Photos.php:1048 -msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" -msgstr "Beispiele: @ben, @Karl_Prester, @lieschen@example.com" - -#: ../../Zotlabs/Module/Photos.php:1051 -msgid "Flag as adult in album view" -msgstr "In der Albumansicht als nicht jugendfrei markieren" - -#: ../../Zotlabs/Module/Photos.php:1070 ../../Zotlabs/Lib/ThreadItem.php:261 -msgid "I like this (toggle)" -msgstr "Mir gefällt das (Umschalter)" - -#: ../../Zotlabs/Module/Photos.php:1071 ../../Zotlabs/Lib/ThreadItem.php:262 -msgid "I don't like this (toggle)" -msgstr "Mir gefällt das nicht (Umschalter)" - -#: ../../Zotlabs/Module/Photos.php:1073 ../../Zotlabs/Lib/ThreadItem.php:397 -#: ../../include/conversation.php:740 -msgid "Please wait" -msgstr "Bitte warten" - -#: ../../Zotlabs/Module/Photos.php:1089 ../../Zotlabs/Module/Photos.php:1207 -#: ../../Zotlabs/Lib/ThreadItem.php:707 -msgid "This is you" -msgstr "Das bist Du" - -#: ../../Zotlabs/Module/Photos.php:1091 ../../Zotlabs/Module/Photos.php:1209 -#: ../../Zotlabs/Lib/ThreadItem.php:709 ../../include/js_strings.php:6 -msgid "Comment" -msgstr "Kommentar" - -#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:574 -msgctxt "title" -msgid "Likes" -msgstr "Gefällt mir" - -#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:574 -msgctxt "title" -msgid "Dislikes" -msgstr "Gefällt mir nicht" - -#: ../../Zotlabs/Module/Photos.php:1108 ../../include/conversation.php:575 -msgctxt "title" -msgid "Agree" -msgstr "Zustimmungen" - -#: ../../Zotlabs/Module/Photos.php:1108 ../../include/conversation.php:575 -msgctxt "title" -msgid "Disagree" -msgstr "Ablehnungen" - -#: ../../Zotlabs/Module/Photos.php:1108 ../../include/conversation.php:575 -msgctxt "title" -msgid "Abstain" -msgstr "Enthaltungen" - -#: ../../Zotlabs/Module/Photos.php:1109 ../../include/conversation.php:576 -msgctxt "title" -msgid "Attending" -msgstr "Zusagen" - -#: ../../Zotlabs/Module/Photos.php:1109 ../../include/conversation.php:576 -msgctxt "title" -msgid "Not attending" -msgstr "Absagen" - -#: ../../Zotlabs/Module/Photos.php:1109 ../../include/conversation.php:576 -msgctxt "title" -msgid "Might attend" -msgstr "Vielleicht" - -#: ../../Zotlabs/Module/Photos.php:1126 ../../Zotlabs/Module/Photos.php:1138 -#: ../../Zotlabs/Lib/ThreadItem.php:181 ../../Zotlabs/Lib/ThreadItem.php:193 -#: ../../include/conversation.php:1717 -msgid "View all" -msgstr "Alles anzeigen" - -#: ../../Zotlabs/Module/Photos.php:1130 ../../Zotlabs/Lib/ThreadItem.php:185 -#: ../../include/taxonomy.php:403 ../../include/conversation.php:1741 -#: ../../include/channel.php:1158 -msgctxt "noun" -msgid "Like" -msgid_plural "Likes" -msgstr[0] "Gefällt mir" -msgstr[1] "Gefällt mir" - -#: ../../Zotlabs/Module/Photos.php:1135 ../../Zotlabs/Lib/ThreadItem.php:190 -#: ../../include/conversation.php:1744 -msgctxt "noun" -msgid "Dislike" -msgid_plural "Dislikes" -msgstr[0] "Gefällt nicht" -msgstr[1] "Gefällt nicht" - -#: ../../Zotlabs/Module/Photos.php:1235 -msgid "Photo Tools" -msgstr "Fotowerkzeuge" - -#: ../../Zotlabs/Module/Photos.php:1244 -msgid "In This Photo:" -msgstr "Auf diesem Foto:" - -#: ../../Zotlabs/Module/Photos.php:1249 -msgid "Map" -msgstr "Karte" - -#: ../../Zotlabs/Module/Photos.php:1257 ../../Zotlabs/Lib/ThreadItem.php:386 -msgctxt "noun" -msgid "Likes" -msgstr "Gefällt mir" - -#: ../../Zotlabs/Module/Photos.php:1258 ../../Zotlabs/Lib/ThreadItem.php:387 -msgctxt "noun" -msgid "Dislikes" -msgstr "Gefällt nicht" - -#: ../../Zotlabs/Module/Photos.php:1263 ../../Zotlabs/Lib/ThreadItem.php:392 -#: ../../include/acl_selectors.php:285 -msgid "Close" -msgstr "Schließen" - -#: ../../Zotlabs/Module/Photos.php:1337 -msgid "View Album" -msgstr "Album ansehen" - -#: ../../Zotlabs/Module/Photos.php:1348 ../../Zotlabs/Module/Photos.php:1361 -#: ../../Zotlabs/Module/Photos.php:1362 -msgid "Recent Photos" -msgstr "Neueste Fotos" - -#: ../../Zotlabs/Module/Ping.php:265 -msgid "sent you a private message" -msgstr "hat Dir eine private Nachricht geschickt" - -#: ../../Zotlabs/Module/Ping.php:313 -msgid "added your channel" -msgstr "hat deinen Kanal hinzugefügt" - -#: ../../Zotlabs/Module/Ping.php:323 -msgid "g A l F d" -msgstr "l, d. F, G:i \\U\\h\\r" - -#: ../../Zotlabs/Module/Ping.php:346 -msgid "[today]" -msgstr "[Heute]" - -#: ../../Zotlabs/Module/Ping.php:355 -msgid "posted an event" -msgstr "hat einen Termin veröffentlicht" - -#: ../../Zotlabs/Module/Oexchange.php:27 -msgid "Unable to find your hub." -msgstr "Konnte Deinen Server nicht finden." - -#: ../../Zotlabs/Module/Oexchange.php:41 -msgid "Post successful." -msgstr "Veröffentlichung erfolgreich." - -#: ../../Zotlabs/Module/Openid.php:30 -msgid "OpenID protocol error. No ID returned." -msgstr "OpenID Protokollfehler. Keine ID zurückgegeben." - -#: ../../Zotlabs/Module/Openid.php:193 ../../include/auth.php:226 -msgid "Login failed." -msgstr "Login fehlgeschlagen." - -#: ../../Zotlabs/Module/Page.php:133 -msgid "" -"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod " -"tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam," -" quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo " -"consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse " -"cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat " -"non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." -msgstr "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." - -#: ../../Zotlabs/Module/Pconfig.php:26 ../../Zotlabs/Module/Pconfig.php:59 -msgid "This setting requires special processing and editing has been blocked." -msgstr "Diese Einstellung erfordert eine besondere Verarbeitung und ist blockiert." - -#: ../../Zotlabs/Module/Pconfig.php:48 -msgid "Configuration Editor" -msgstr "Konfigurationseditor" - -#: ../../Zotlabs/Module/Pconfig.php:49 -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 "Warnung: Einige Einstellungen können Deinen Kanal funktionsunfähig machen. Bitte verlasse diese Seite, es sei denn Du bist vertraut damit, wie dieses Feature korrekt verwendet wird." - -#: ../../Zotlabs/Module/Pdledit.php:18 -msgid "Layout updated." -msgstr "Layout aktualisiert." - -#: ../../Zotlabs/Module/Pdledit.php:34 ../../Zotlabs/Module/Pdledit.php:61 -msgid "Edit System Page Description" -msgstr "Systemseitenbeschreibung bearbeiten" - -#: ../../Zotlabs/Module/Pdledit.php:56 -msgid "Layout not found." -msgstr "Layout nicht gefunden." - -#: ../../Zotlabs/Module/Pdledit.php:62 -msgid "Module Name:" -msgstr "Modulname:" - -#: ../../Zotlabs/Module/Pdledit.php:63 -msgid "Layout Help" -msgstr "Layout-Hilfe" - -#: ../../Zotlabs/Module/Poke.php:168 ../../Zotlabs/Lib/Apps.php:226 -#: ../../include/conversation.php:960 -msgid "Poke" -msgstr "Anstupsen" - -#: ../../Zotlabs/Module/Poke.php:169 -msgid "Poke somebody" -msgstr "Jemanden anstupsen" - -#: ../../Zotlabs/Module/Poke.php:172 -msgid "Poke/Prod" -msgstr "Anstupsen/Knuffen" - -#: ../../Zotlabs/Module/Poke.php:173 -msgid "Poke, prod or do other things to somebody" -msgstr "Jemanden anstupsen, knuffen oder sonstiges" - -#: ../../Zotlabs/Module/Poke.php:180 -msgid "Recipient" -msgstr "Empfänger" - -#: ../../Zotlabs/Module/Poke.php:181 -msgid "Choose what you wish to do to recipient" -msgstr "Wähle, was Du mit dem/r Empfänger/in tun willst" - -#: ../../Zotlabs/Module/Poke.php:184 ../../Zotlabs/Module/Poke.php:185 -msgid "Make this post private" -msgstr "Diesen Beitrag privat machen" - -#: ../../Zotlabs/Module/Probe.php:30 ../../Zotlabs/Module/Probe.php:34 -#, php-format -msgid "Fetching URL returns error: %1$s" -msgstr "Abrufen der URL gab einen Fehler zurück: %1$s" - #: ../../Zotlabs/Module/Profiles.php:24 ../../Zotlabs/Module/Profiles.php:189 #: ../../Zotlabs/Module/Profiles.php:246 ../../Zotlabs/Module/Profiles.php:625 msgid "Profile not found." @@ -3291,6 +2215,11 @@ msgstr "Webseite" msgid "Interests" msgstr "Hobbys/Interessen" +#: ../../Zotlabs/Module/Profiles.php:470 ../../Zotlabs/Module/Locs.php:118 +#: ../../Zotlabs/Module/Admin.php:1224 +msgid "Address" +msgstr "Adresse" + #: ../../Zotlabs/Module/Profiles.php:560 msgid "Profile updated." msgstr "Profil aktualisiert." @@ -3308,7 +2237,7 @@ msgid "View this profile" msgstr "Dieses Profil ansehen" #: ../../Zotlabs/Module/Profiles.php:689 ../../Zotlabs/Module/Profiles.php:771 -#: ../../include/channel.php:959 +#: ../../include/channel.php:998 msgid "Edit visibility" msgstr "Sichtbarkeit bearbeiten" @@ -3320,7 +2249,7 @@ msgstr "Profilwerkzeuge" msgid "Change cover photo" msgstr "Titelbild ändern" -#: ../../Zotlabs/Module/Profiles.php:692 ../../include/channel.php:930 +#: ../../Zotlabs/Module/Profiles.php:692 ../../include/channel.php:969 msgid "Change profile photo" msgstr "Profilfoto ändern" @@ -3340,8 +2269,8 @@ msgstr "Dieses Profil löschen" msgid "Add profile things" msgstr "Sachen zum Profil hinzufügen" -#: ../../Zotlabs/Module/Profiles.php:697 ../../include/widgets.php:105 -#: ../../include/conversation.php:1526 +#: ../../Zotlabs/Module/Profiles.php:697 ../../include/conversation.php:1541 +#: ../../include/widgets.php:105 msgid "Personal" msgstr "Persönlich" @@ -3481,119 +2410,1097 @@ msgstr "Kontaktinformation und soziale Netzwerke" msgid "My other channels" msgstr "Meine anderen Kanäle" -#: ../../Zotlabs/Module/Profiles.php:767 ../../include/channel.php:955 +#: ../../Zotlabs/Module/Profiles.php:767 ../../include/channel.php:994 msgid "Profile Image" msgstr "Profilfoto:" #: ../../Zotlabs/Module/Profiles.php:777 ../../include/nav.php:88 -#: ../../include/channel.php:937 +#: ../../include/channel.php:976 msgid "Edit Profiles" msgstr "Profile bearbeiten" -#: ../../Zotlabs/Module/Profile_photo.php:179 -msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." -msgstr "Leere den Browser Cache oder nutze Umschalten-Neu Laden, falls das neue Foto nicht sofort angezeigt wird." - -#: ../../Zotlabs/Module/Profile_photo.php:367 -msgid "Upload Profile Photo" -msgstr "Lade neues Profilfoto hoch" - -#: ../../Zotlabs/Module/Profperm.php:34 ../../Zotlabs/Module/Profperm.php:63 -msgid "Invalid profile identifier." -msgstr "Ungültiger Profil-Identifikator" - -#: ../../Zotlabs/Module/Profperm.php:115 -msgid "Profile Visibility Editor" -msgstr "Profil-Sichtbarkeits-Editor" - -#: ../../Zotlabs/Module/Profperm.php:117 ../../include/channel.php:1249 -msgid "Profile" -msgstr "Profil" - -#: ../../Zotlabs/Module/Profperm.php:119 -msgid "Click on a contact to add or remove." -msgstr "Klicke auf einen Kontakt, um ihn hinzuzufügen oder zu entfernen." - -#: ../../Zotlabs/Module/Profperm.php:128 -msgid "Visible To" -msgstr "Sichtbar für" - -#: ../../Zotlabs/Module/Pubsites.php:22 ../../include/widgets.php:1270 -msgid "Public Hubs" -msgstr "Öffentliche Hubs" - -#: ../../Zotlabs/Module/Pubsites.php:25 -msgid "" -"The listed hubs allow public registration for the $Projectname network. All " -"hubs in the network are interlinked so membership on any of them conveys " -"membership in the network as a whole. Some hubs may require subscription or " -"provide tiered service plans. The hub itself may provide " -"additional details." -msgstr "Die hier aufgeführten Hubs sind öffentlich und erlauben die Registrierung im $Projectname Netzwerk. Alle Hubs dieses Netzwerks sind miteinander verbunden, so dass die Mitgliedschaft auf einem Hub die Verbindung zu beliebigen Seiten und Kanälen auf anderen Hubs ermöglicht. Es könnte sein, dass einige dieser Hubs kostenpflichtig sind oder abgestufte, je nach Umfang kostenpflichtige Mitgliedschaften anbieten. Auf den Seiten der einzelnen Hubs könnten jeweils nähere Informationen dazu stehen." - -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Hub URL" -msgstr "Hub-URL" - -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Access Type" -msgstr "Zugriffstyp" - -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Registration Policy" -msgstr "Registrierungsrichtlinien" - -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Stats" -msgstr "Statistiken" - -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Software" -msgstr "Software" - -#: ../../Zotlabs/Module/Pubsites.php:31 ../../Zotlabs/Module/Ratings.php:103 -#: ../../include/conversation.php:959 -msgid "Ratings" -msgstr "Bewertungen" - -#: ../../Zotlabs/Module/Pubsites.php:38 -msgid "Rate" -msgstr "Bewerten" - -#: ../../Zotlabs/Module/Rate.php:160 -msgid "Website:" -msgstr "Webseite:" - -#: ../../Zotlabs/Module/Rate.php:163 +#: ../../Zotlabs/Module/Import.php:33 #, php-format -msgid "Remote Channel [%s] (not yet known on this site)" -msgstr "Kanal [%s] (auf diesem Server noch unbekannt)" +msgid "Your service plan only allows %d channels." +msgstr "Dein Vertrag erlaubt nur %d Kanäle." -#: ../../Zotlabs/Module/Rate.php:164 -msgid "Rating (this information is public)" -msgstr "Bewertung (öffentlich sichtbar)" +#: ../../Zotlabs/Module/Import.php:71 ../../Zotlabs/Module/Import_items.php:42 +msgid "Nothing to import." +msgstr "Nichts zu importieren." -#: ../../Zotlabs/Module/Rate.php:165 -msgid "Optionally explain your rating (this information is public)" -msgstr "Optional kannst du deine Bewertung erklären (öffentlich sichtbar)" +#: ../../Zotlabs/Module/Import.php:95 ../../Zotlabs/Module/Import_items.php:66 +msgid "Unable to download data from old server" +msgstr "Daten können vom alten Server nicht heruntergeladen werden" -#: ../../Zotlabs/Module/Ratings.php:73 -msgid "No ratings" -msgstr "Keine Bewertungen" +#: ../../Zotlabs/Module/Import.php:101 +#: ../../Zotlabs/Module/Import_items.php:72 +msgid "Imported file is empty." +msgstr "Die importierte Datei ist leer." -#: ../../Zotlabs/Module/Ratings.php:104 -msgid "Rating: " -msgstr "Bewertung: " +#: ../../Zotlabs/Module/Import.php:123 +#: ../../Zotlabs/Module/Import_items.php:88 +#, php-format +msgid "Warning: Database versions differ by %1$d updates." +msgstr "Achtung: Datenbankversionen unterscheiden sich um %1$d Aktualisierungen." -#: ../../Zotlabs/Module/Ratings.php:105 -msgid "Website: " -msgstr "Webseite: " +#: ../../Zotlabs/Module/Import.php:153 ../../include/import.php:107 +msgid "Cloned channel not found. Import failed." +msgstr "Geklonter Kanal nicht gefunden. Import fehlgeschlagen." -#: ../../Zotlabs/Module/Ratings.php:107 -msgid "Description: " -msgstr "Beschreibung: " +#: ../../Zotlabs/Module/Import.php:163 +msgid "No channel. Import failed." +msgstr "Kein Kanal. Import fehlgeschlagen." + +#: ../../Zotlabs/Module/Import.php:520 +#: ../../include/Import/import_diaspora.php:142 +msgid "Import completed." +msgstr "Import abgeschlossen." + +#: ../../Zotlabs/Module/Import.php:542 +msgid "You must be logged in to use this feature." +msgstr "Du musst angemeldet sein um diese Funktion zu nutzen." + +#: ../../Zotlabs/Module/Import.php:547 +msgid "Import Channel" +msgstr "Kanal importieren" + +#: ../../Zotlabs/Module/Import.php:548 +msgid "" +"Use this form to import an existing channel from a different server/hub. You" +" may retrieve the channel identity from the old server/hub via the network " +"or provide an export file." +msgstr "Verwende dieses Formular, um einen existierenden Kanal von einem anderen Hub zu importieren. Du kannst den Kanal direkt vom bisherigen Hub über das Netzwerk oder aus einer exportierten Sicherheitskopie importieren." + +#: ../../Zotlabs/Module/Import.php:549 +#: ../../Zotlabs/Module/Import_items.php:121 +msgid "File to Upload" +msgstr "Hochzuladende Datei:" + +#: ../../Zotlabs/Module/Import.php:550 +msgid "Or provide the old server/hub details" +msgstr "Oder gib die Details Deines bisherigen $Projectname-Hubs ein" + +#: ../../Zotlabs/Module/Import.php:551 +msgid "Your old identity address (xyz@example.com)" +msgstr "Bisherige Kanal-Adresse (xyz@example.com)" + +#: ../../Zotlabs/Module/Import.php:552 +msgid "Your old login email address" +msgstr "Deine alte Login-E-Mail-Adresse" + +#: ../../Zotlabs/Module/Import.php:553 +msgid "Your old login password" +msgstr "Dein altes Passwort" + +#: ../../Zotlabs/Module/Import.php:554 +msgid "" +"For either option, please choose whether to make this hub your new primary " +"address, or whether your old location should continue this role. You will be" +" able to post from either location, but only one can be marked as the " +"primary location for files, photos, and media." +msgstr "Egal, welche Option Du wählst – bitte lege fest, ob dieser Server die neue primäre Adresse dieses Kanals sein soll, oder ob der bisherige $Projectname-Hub diese Rolle weiterhin wahrnimmt. Du kannst von beiden Servern aus posten, aber nur einer kann der primäre Ort Deiner Dateien, Fotos und Medien sein." + +#: ../../Zotlabs/Module/Import.php:555 +msgid "Make this hub my primary location" +msgstr "Dieser $Pojectname-Hub ist mein primärer Hub." + +#: ../../Zotlabs/Module/Import.php:556 +msgid "" +"Import existing posts if possible (experimental - limited by available " +"memory" +msgstr "Importiere bestehende Beiträge falls möglich (experimentell - begrenzt durch zur Verfügung stehenden Speicher" + +#: ../../Zotlabs/Module/Import.php:557 +msgid "" +"This process may take several minutes to complete. Please submit the form " +"only once and leave this page open until finished." +msgstr "Dieser Vorgang kann einige Minuten dauern. Bitte sende das Formular nur einmal ab und lasse diese Seite bis zur Fertigstellung offen." + +#: ../../Zotlabs/Module/Home.php:74 ../../Zotlabs/Module/Home.php:82 +#: ../../Zotlabs/Module/Siteinfo.php:48 +msgid "$Projectname" +msgstr "$Projectname" + +#: ../../Zotlabs/Module/Home.php:92 +#, php-format +msgid "Welcome to %s" +msgstr "Willkommen auf %s" + +#: ../../Zotlabs/Module/Item.php:179 +msgid "Unable to locate original post." +msgstr "Originalbeitrag nicht gefunden." + +#: ../../Zotlabs/Module/Item.php:432 +msgid "Empty post discarded." +msgstr "Leeren Beitrag verworfen." + +#: ../../Zotlabs/Module/Item.php:472 +msgid "Executable content type not permitted to this channel." +msgstr "Ausführbarer Content-Typ ist für diesen Kanal nicht freigegeben." + +#: ../../Zotlabs/Module/Item.php:856 +msgid "Duplicate post suppressed." +msgstr "Doppelter Beitrag unterdrückt." + +#: ../../Zotlabs/Module/Item.php:989 +msgid "System error. Post not saved." +msgstr "Systemfehler. Beitrag nicht gespeichert." + +#: ../../Zotlabs/Module/Item.php:1242 +msgid "Unable to obtain post information from database." +msgstr "Beitragsinformationen können nicht aus der Datenbank abgerufen werden." + +#: ../../Zotlabs/Module/Item.php:1249 +#, php-format +msgid "You have reached your limit of %1$.0f top level posts." +msgstr "Du hast die maximale Anzahl von %1$.0f Beiträgen erreicht." + +#: ../../Zotlabs/Module/Item.php:1256 +#, php-format +msgid "You have reached your limit of %1$.0f webpages." +msgstr "Du hast die maximale Anzahl von %1$.0f Webseiten erreicht." + +#: ../../Zotlabs/Module/Photos.php:82 +msgid "Page owner information could not be retrieved." +msgstr "Informationen über den Besitzer der Seite konnten nicht gefunden werden." + +#: ../../Zotlabs/Module/Photos.php:97 ../../Zotlabs/Module/Photos.php:741 +#: ../../Zotlabs/Module/Profile_photo.php:115 +#: ../../Zotlabs/Module/Profile_photo.php:212 +#: ../../Zotlabs/Module/Profile_photo.php:311 +#: ../../include/photo/photo_driver.php:718 +msgid "Profile Photos" +msgstr "Profilfotos" + +#: ../../Zotlabs/Module/Photos.php:103 ../../Zotlabs/Module/Photos.php:147 +msgid "Album not found." +msgstr "Album nicht gefunden." + +#: ../../Zotlabs/Module/Photos.php:130 +msgid "Delete Album" +msgstr "Album löschen" + +#: ../../Zotlabs/Module/Photos.php:151 +msgid "" +"Multiple storage folders exist with this album name, but within different " +"directories. Please remove the desired folder or folders using the Files " +"manager" +msgstr "Mehrere Speicherordner mit diesem Albumnamen sind bereits vorhanden, aber in verschiedenen Verzeichnissen. Bitte entfernen Sie den oder die gewünschten Ordner mit dem Dateimanager" + +#: ../../Zotlabs/Module/Photos.php:208 ../../Zotlabs/Module/Photos.php:1051 +msgid "Delete Photo" +msgstr "Foto löschen" + +#: ../../Zotlabs/Module/Photos.php:531 +msgid "No photos selected" +msgstr "Keine Fotos ausgewählt" + +#: ../../Zotlabs/Module/Photos.php:580 +msgid "Access to this item is restricted." +msgstr "Der Zugriff auf dieses Foto ist eingeschränkt." + +#: ../../Zotlabs/Module/Photos.php:619 +#, php-format +msgid "%1$.2f MB of %2$.2f MB photo storage used." +msgstr "%1$.2f MB von %2$.2f MB Foto-Speicher belegt." + +#: ../../Zotlabs/Module/Photos.php:622 +#, php-format +msgid "%1$.2f MB photo storage used." +msgstr "%1$.2f MB Foto-Speicher belegt." + +#: ../../Zotlabs/Module/Photos.php:658 +msgid "Upload Photos" +msgstr "Fotos hochladen" + +#: ../../Zotlabs/Module/Photos.php:662 +msgid "Enter an album name" +msgstr "Namen für ein neues Album eingeben" + +#: ../../Zotlabs/Module/Photos.php:663 +msgid "or select an existing album (doubleclick)" +msgstr "oder ein bereits vorhandenes auswählen (Doppelklick)" + +#: ../../Zotlabs/Module/Photos.php:664 +msgid "Create a status post for this upload" +msgstr "Einen Statusbeitrag für diesen Upload erzeugen" + +#: ../../Zotlabs/Module/Photos.php:665 +msgid "Caption (optional):" +msgstr "Beschriftung (optional):" + +#: ../../Zotlabs/Module/Photos.php:666 +msgid "Description (optional):" +msgstr "Beschreibung (optional):" + +#: ../../Zotlabs/Module/Photos.php:693 +msgid "Album name could not be decoded" +msgstr "Albumname konnte nicht dekodiert werden" + +#: ../../Zotlabs/Module/Photos.php:741 +msgid "Contact Photos" +msgstr "Kontakt-Bilder" + +#: ../../Zotlabs/Module/Photos.php:764 +msgid "Show Newest First" +msgstr "Neueste zuerst anzeigen" + +#: ../../Zotlabs/Module/Photos.php:766 +msgid "Show Oldest First" +msgstr "Älteste zuerst anzeigen" + +#: ../../Zotlabs/Module/Photos.php:790 ../../Zotlabs/Module/Photos.php:1329 +#: ../../Zotlabs/Module/Embedphotos.php:141 ../../include/widgets.php:1593 +msgid "View Photo" +msgstr "Foto ansehen" + +#: ../../Zotlabs/Module/Photos.php:821 +#: ../../Zotlabs/Module/Embedphotos.php:157 ../../include/widgets.php:1610 +msgid "Edit Album" +msgstr "Album bearbeiten" + +#: ../../Zotlabs/Module/Photos.php:868 +msgid "Permission denied. Access to this item may be restricted." +msgstr "Berechtigung verweigert. Der Zugriff ist wahrscheinlich eingeschränkt worden." + +#: ../../Zotlabs/Module/Photos.php:870 +msgid "Photo not available" +msgstr "Foto nicht verfügbar" + +#: ../../Zotlabs/Module/Photos.php:928 +msgid "Use as profile photo" +msgstr "Als Profilfoto verwenden" + +#: ../../Zotlabs/Module/Photos.php:929 +msgid "Use as cover photo" +msgstr "Als Titelbild verwenden" + +#: ../../Zotlabs/Module/Photos.php:936 +msgid "Private Photo" +msgstr "Privates Foto" + +#: ../../Zotlabs/Module/Photos.php:951 +msgid "View Full Size" +msgstr "In voller Größe anzeigen" + +#: ../../Zotlabs/Module/Photos.php:996 ../../Zotlabs/Module/Admin.php:1437 +#: ../../Zotlabs/Module/Tagrm.php:137 +msgid "Remove" +msgstr "Entfernen" + +#: ../../Zotlabs/Module/Photos.php:1030 +msgid "Edit photo" +msgstr "Foto bearbeiten" + +#: ../../Zotlabs/Module/Photos.php:1032 +msgid "Rotate CW (right)" +msgstr "Drehen im UZS (rechts)" + +#: ../../Zotlabs/Module/Photos.php:1033 +msgid "Rotate CCW (left)" +msgstr "Drehen gegen UZS (links)" + +#: ../../Zotlabs/Module/Photos.php:1036 +msgid "Enter a new album name" +msgstr "Gib einen Namen für ein neues Album ein" + +#: ../../Zotlabs/Module/Photos.php:1037 +msgid "or select an existing one (doubleclick)" +msgstr "oder wähle ein bereits vorhandenes aus (Doppelklick)" + +#: ../../Zotlabs/Module/Photos.php:1040 +msgid "Caption" +msgstr "Bildunterschrift" + +#: ../../Zotlabs/Module/Photos.php:1042 +msgid "Add a Tag" +msgstr "Schlagwort hinzufügen" + +#: ../../Zotlabs/Module/Photos.php:1046 +msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" +msgstr "Beispiele: @ben, @Karl_Prester, @lieschen@example.com" + +#: ../../Zotlabs/Module/Photos.php:1049 +msgid "Flag as adult in album view" +msgstr "In der Albumansicht als nicht jugendfrei markieren" + +#: ../../Zotlabs/Module/Photos.php:1068 ../../Zotlabs/Lib/ThreadItem.php:261 +msgid "I like this (toggle)" +msgstr "Mir gefällt das (Umschalter)" + +#: ../../Zotlabs/Module/Photos.php:1069 ../../Zotlabs/Lib/ThreadItem.php:262 +msgid "I don't like this (toggle)" +msgstr "Mir gefällt das nicht (Umschalter)" + +#: ../../Zotlabs/Module/Photos.php:1071 ../../Zotlabs/Lib/ThreadItem.php:397 +#: ../../include/conversation.php:743 +msgid "Please wait" +msgstr "Bitte warten" + +#: ../../Zotlabs/Module/Photos.php:1087 ../../Zotlabs/Module/Photos.php:1205 +#: ../../Zotlabs/Lib/ThreadItem.php:707 +msgid "This is you" +msgstr "Das bist Du" + +#: ../../Zotlabs/Module/Photos.php:1089 ../../Zotlabs/Module/Photos.php:1207 +#: ../../Zotlabs/Lib/ThreadItem.php:709 ../../include/js_strings.php:6 +msgid "Comment" +msgstr "Kommentar" + +#: ../../Zotlabs/Module/Photos.php:1105 ../../include/conversation.php:577 +msgctxt "title" +msgid "Likes" +msgstr "Gefällt mir" + +#: ../../Zotlabs/Module/Photos.php:1105 ../../include/conversation.php:577 +msgctxt "title" +msgid "Dislikes" +msgstr "Gefällt mir nicht" + +#: ../../Zotlabs/Module/Photos.php:1106 ../../include/conversation.php:578 +msgctxt "title" +msgid "Agree" +msgstr "Zustimmungen" + +#: ../../Zotlabs/Module/Photos.php:1106 ../../include/conversation.php:578 +msgctxt "title" +msgid "Disagree" +msgstr "Ablehnungen" + +#: ../../Zotlabs/Module/Photos.php:1106 ../../include/conversation.php:578 +msgctxt "title" +msgid "Abstain" +msgstr "Enthaltungen" + +#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:579 +msgctxt "title" +msgid "Attending" +msgstr "Zusagen" + +#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:579 +msgctxt "title" +msgid "Not attending" +msgstr "Absagen" + +#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:579 +msgctxt "title" +msgid "Might attend" +msgstr "Vielleicht" + +#: ../../Zotlabs/Module/Photos.php:1124 ../../Zotlabs/Module/Photos.php:1136 +#: ../../Zotlabs/Lib/ThreadItem.php:181 ../../Zotlabs/Lib/ThreadItem.php:193 +#: ../../include/conversation.php:1738 +msgid "View all" +msgstr "Alles anzeigen" + +#: ../../Zotlabs/Module/Photos.php:1128 ../../Zotlabs/Lib/ThreadItem.php:185 +#: ../../include/taxonomy.php:403 ../../include/channel.php:1198 +#: ../../include/conversation.php:1762 +msgctxt "noun" +msgid "Like" +msgid_plural "Likes" +msgstr[0] "Gefällt mir" +msgstr[1] "Gefällt mir" + +#: ../../Zotlabs/Module/Photos.php:1133 ../../Zotlabs/Lib/ThreadItem.php:190 +#: ../../include/conversation.php:1765 +msgctxt "noun" +msgid "Dislike" +msgid_plural "Dislikes" +msgstr[0] "Gefällt nicht" +msgstr[1] "Gefällt nicht" + +#: ../../Zotlabs/Module/Photos.php:1233 +msgid "Photo Tools" +msgstr "Fotowerkzeuge" + +#: ../../Zotlabs/Module/Photos.php:1242 +msgid "In This Photo:" +msgstr "Auf diesem Foto:" + +#: ../../Zotlabs/Module/Photos.php:1247 +msgid "Map" +msgstr "Karte" + +#: ../../Zotlabs/Module/Photos.php:1255 ../../Zotlabs/Lib/ThreadItem.php:386 +msgctxt "noun" +msgid "Likes" +msgstr "Gefällt mir" + +#: ../../Zotlabs/Module/Photos.php:1256 ../../Zotlabs/Lib/ThreadItem.php:387 +msgctxt "noun" +msgid "Dislikes" +msgstr "Gefällt nicht" + +#: ../../Zotlabs/Module/Photos.php:1261 ../../Zotlabs/Lib/ThreadItem.php:392 +#: ../../include/acl_selectors.php:283 +msgid "Close" +msgstr "Schließen" + +#: ../../Zotlabs/Module/Photos.php:1335 +msgid "View Album" +msgstr "Album ansehen" + +#: ../../Zotlabs/Module/Photos.php:1346 ../../Zotlabs/Module/Photos.php:1359 +#: ../../Zotlabs/Module/Photos.php:1360 +msgid "Recent Photos" +msgstr "Neueste Fotos" + +#: ../../Zotlabs/Module/Lockview.php:75 +msgid "Remote privacy information not available." +msgstr "Privatsphäre-Einstellungen anderer Nutzer sind nicht verfügbar." + +#: ../../Zotlabs/Module/Lockview.php:96 +msgid "Visible to:" +msgstr "Sichtbar für:" + +#: ../../Zotlabs/Module/Import_items.php:104 +msgid "Import completed" +msgstr "Import abgeschlossen" + +#: ../../Zotlabs/Module/Import_items.php:119 +msgid "Import Items" +msgstr "Beiträge importieren" + +#: ../../Zotlabs/Module/Import_items.php:120 +msgid "" +"Use this form to import existing posts and content from an export file." +msgstr "Mit diesem Formular kannst Du existierende Beiträge und Inhalte aus einer Sicherungsdatei importieren." + +#: ../../Zotlabs/Module/Invite.php:29 +msgid "Total invitation limit exceeded." +msgstr "Einladungslimit überschritten." + +#: ../../Zotlabs/Module/Invite.php:53 +#, php-format +msgid "%s : Not a valid email address." +msgstr "%s : Keine gültige Email Adresse." + +#: ../../Zotlabs/Module/Invite.php:63 +msgid "Please join us on $Projectname" +msgstr "Schließe Dich uns auf $Projectname an!" + +#: ../../Zotlabs/Module/Invite.php:74 +msgid "Invitation limit exceeded. Please contact your site administrator." +msgstr "Einladungslimit überschritten. Bitte kontaktiere den Administrator Deines $Projectname-Servers." + +#: ../../Zotlabs/Module/Invite.php:79 +#, php-format +msgid "%s : Message delivery failed." +msgstr "%s : Nachricht konnte nicht zugestellt werden." + +#: ../../Zotlabs/Module/Invite.php:83 +#, php-format +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "%d Nachricht gesendet." +msgstr[1] "%d Nachrichten gesendet." + +#: ../../Zotlabs/Module/Invite.php:102 +msgid "You have no more invitations available" +msgstr "Du hast keine weiteren verfügbare Einladungen" + +#: ../../Zotlabs/Module/Invite.php:133 +msgid "Send invitations" +msgstr "Einladungen senden" + +#: ../../Zotlabs/Module/Invite.php:134 +msgid "Enter email addresses, one per line:" +msgstr "Email-Adressen eintragen, eine pro Zeile:" + +#: ../../Zotlabs/Module/Invite.php:135 ../../Zotlabs/Module/Mail.php:241 +msgid "Your message:" +msgstr "Deine Nachricht:" + +#: ../../Zotlabs/Module/Invite.php:136 +msgid "Please join my community on $Projectname." +msgstr "Schließe Dich uns auf $Projectname an!" + +#: ../../Zotlabs/Module/Invite.php:138 +msgid "You will need to supply this invitation code:" +msgstr "Bitte verwende bei der Registrierung den folgenden Einladungscode:" + +#: ../../Zotlabs/Module/Invite.php:139 +msgid "" +"1. Register at any $Projectname location (they are all inter-connected)" +msgstr "1. Registriere Dich auf einem beliebigen $Projectname-Hub (sie sind alle miteinander verbunden)" + +#: ../../Zotlabs/Module/Invite.php:141 +msgid "2. Enter my $Projectname network address into the site searchbar." +msgstr "2. Gib meine $Projectname-Adresse im Suchfeld ein." + +#: ../../Zotlabs/Module/Invite.php:142 +msgid "or visit" +msgstr "oder besuche" + +#: ../../Zotlabs/Module/Invite.php:144 +msgid "3. Click [Connect]" +msgstr "3. Klicke auf [Verbinden]" + +#: ../../Zotlabs/Module/Locs.php:25 ../../Zotlabs/Module/Locs.php:54 +msgid "Location not found." +msgstr "Klon nicht gefunden." + +#: ../../Zotlabs/Module/Locs.php:62 +msgid "Location lookup failed." +msgstr "Nachschlagen des Kanal-Ortes fehlgeschlagen" + +#: ../../Zotlabs/Module/Locs.php:66 +msgid "" +"Please select another location to become primary before removing the primary" +" location." +msgstr "Bitte mache einen anderen Kanal-Ort zum primären Ort, bevor Du den primären Ort löschst." + +#: ../../Zotlabs/Module/Locs.php:95 +msgid "Syncing locations" +msgstr "Synchronisiere Klone" + +#: ../../Zotlabs/Module/Locs.php:105 +msgid "No locations found." +msgstr "Keine Klon-Adressen gefunden." + +#: ../../Zotlabs/Module/Locs.php:116 +msgid "Manage Channel Locations" +msgstr "Klon-Adressen verwalten" + +#: ../../Zotlabs/Module/Locs.php:119 +msgid "Primary" +msgstr "Primär" + +#: ../../Zotlabs/Module/Locs.php:120 ../../Zotlabs/Module/Menu.php:113 +msgid "Drop" +msgstr "Löschen" + +#: ../../Zotlabs/Module/Locs.php:122 +msgid "Sync Now" +msgstr "Jetzt synchronisieren" + +#: ../../Zotlabs/Module/Locs.php:123 +msgid "Please wait several minutes between consecutive operations." +msgstr "Bitte warte mehrere Minuten zwischen dem Ausführen zweier Operationen!" + +#: ../../Zotlabs/Module/Locs.php:124 +msgid "" +"When possible, drop a location by logging into that website/hub and removing" +" your channel." +msgstr "Wenn möglich, lösche einen Klon, indem Du Dich auf dem jeweiligen Hub einloggst und den Kanal dort löschst." + +#: ../../Zotlabs/Module/Locs.php:125 +msgid "Use this form to drop the location if the hub is no longer operating." +msgstr "Benutze dieses Formular zum Löschen eines Klons, wenn es den Hub nicht mehr gibt." + +#: ../../Zotlabs/Module/Magic.php:71 +msgid "Hub not found." +msgstr "Server nicht gefunden." + +#: ../../Zotlabs/Module/Mail.php:38 +msgid "Unable to lookup recipient." +msgstr "Konnte den Empfänger nicht finden." + +#: ../../Zotlabs/Module/Mail.php:45 +msgid "Unable to communicate with requested channel." +msgstr "Die Kommunikation mit dem ausgewählten Kanal ist fehlgeschlagen." + +#: ../../Zotlabs/Module/Mail.php:52 +msgid "Cannot verify requested channel." +msgstr "Verifizierung des angeforderten Kanals fehlgeschlagen." + +#: ../../Zotlabs/Module/Mail.php:70 +msgid "Selected channel has private message restrictions. Send failed." +msgstr "Der ausgewählte Kanal hat Einschränkungen bzgl. privater Nachrichten. Senden fehlgeschlagen." + +#: ../../Zotlabs/Module/Mail.php:135 +msgid "Messages" +msgstr "Nachrichten" + +#: ../../Zotlabs/Module/Mail.php:170 +msgid "Message recalled." +msgstr "Nachricht widerrufen." + +#: ../../Zotlabs/Module/Mail.php:183 +msgid "Conversation removed." +msgstr "Unterhaltung gelöscht." + +#: ../../Zotlabs/Module/Mail.php:198 ../../Zotlabs/Module/Mail.php:307 +msgid "Expires YYYY-MM-DD HH:MM" +msgstr "Verfällt YYYY-MM-DD HH;MM" + +#: ../../Zotlabs/Module/Mail.php:226 +msgid "Requested channel is not in this network" +msgstr "Angeforderter Kanal ist nicht in diesem Netzwerk." + +#: ../../Zotlabs/Module/Mail.php:234 +msgid "Send Private Message" +msgstr "Private Nachricht senden" + +#: ../../Zotlabs/Module/Mail.php:235 ../../Zotlabs/Module/Mail.php:360 +msgid "To:" +msgstr "An:" + +#: ../../Zotlabs/Module/Mail.php:238 ../../Zotlabs/Module/Mail.php:362 +msgid "Subject:" +msgstr "Betreff:" + +#: ../../Zotlabs/Module/Mail.php:243 ../../Zotlabs/Module/Mail.php:368 +#: ../../include/conversation.php:1231 +msgid "Attach file" +msgstr "Datei anhängen" + +#: ../../Zotlabs/Module/Mail.php:245 +msgid "Send" +msgstr "Absenden" + +#: ../../Zotlabs/Module/Mail.php:248 ../../Zotlabs/Module/Mail.php:373 +#: ../../include/conversation.php:1266 +msgid "Set expiration date" +msgstr "Verfallsdatum" + +#: ../../Zotlabs/Module/Mail.php:332 +msgid "Delete message" +msgstr "Nachricht löschen" + +#: ../../Zotlabs/Module/Mail.php:333 +msgid "Delivery report" +msgstr "Zustellungsbericht" + +#: ../../Zotlabs/Module/Mail.php:334 +msgid "Recall message" +msgstr "Nachricht widerrufen" + +#: ../../Zotlabs/Module/Mail.php:336 +msgid "Message has been recalled." +msgstr "Die Nachricht wurde widerrufen." + +#: ../../Zotlabs/Module/Mail.php:353 +msgid "Delete Conversation" +msgstr "Unterhaltung löschen" + +#: ../../Zotlabs/Module/Mail.php:355 +msgid "" +"No secure communications available. You may be able to " +"respond from the sender's profile page." +msgstr "Keine sichere Kommunikation verfügbar. Eventuell kannst Du auf der Profilseite des Absenders antworten." + +#: ../../Zotlabs/Module/Mail.php:359 +msgid "Send Reply" +msgstr "Antwort senden" + +#: ../../Zotlabs/Module/Mail.php:364 +#, php-format +msgid "Your message for %s (%s):" +msgstr "Deine Nachricht für %s (%s):" + +#: ../../Zotlabs/Module/Manage.php:136 +#: ../../Zotlabs/Module/New_channel.php:121 +#, php-format +msgid "You have created %1$.0f of %2$.0f allowed channels." +msgstr "Du hast %1$.0f von maximal %2$.0f erlaubten Kanälen eingerichtet." + +#: ../../Zotlabs/Module/Manage.php:143 +msgid "Create a new channel" +msgstr "Neuen Kanal anlegen" + +#: ../../Zotlabs/Module/Manage.php:164 ../../Zotlabs/Lib/Apps.php:214 +#: ../../include/nav.php:208 +msgid "Channel Manager" +msgstr "Kanal-Manager" + +#: ../../Zotlabs/Module/Manage.php:165 +msgid "Current Channel" +msgstr "Aktueller Kanal" + +#: ../../Zotlabs/Module/Manage.php:167 +msgid "Switch to one of your channels by selecting it." +msgstr "Wechsle zu einem Deiner Kanäle, indem Du auf ihn klickst." + +#: ../../Zotlabs/Module/Manage.php:168 +msgid "Default Channel" +msgstr "Standard Kanal" + +#: ../../Zotlabs/Module/Manage.php:169 +msgid "Make Default" +msgstr "Zum Standard machen" + +#: ../../Zotlabs/Module/Manage.php:172 +#, php-format +msgid "%d new messages" +msgstr "%d neue Nachrichten" + +#: ../../Zotlabs/Module/Manage.php:173 +#, php-format +msgid "%d new introductions" +msgstr "%d neue Vorstellungen" + +#: ../../Zotlabs/Module/Manage.php:175 +msgid "Delegated Channel" +msgstr "Delegierte Kanäle" + +#: ../../Zotlabs/Module/Menu.php:49 +msgid "Unable to update menu." +msgstr "Kann Menü nicht aktualisieren." + +#: ../../Zotlabs/Module/Menu.php:60 +msgid "Unable to create menu." +msgstr "Kann Menü nicht erstellen." + +#: ../../Zotlabs/Module/Menu.php:98 ../../Zotlabs/Module/Menu.php:110 +msgid "Menu Name" +msgstr "Name des Menüs" + +#: ../../Zotlabs/Module/Menu.php:98 +msgid "Unique name (not visible on webpage) - required" +msgstr "Eindeutiger Name (nicht sichtbar auf der Webseite) – erforderlich" + +#: ../../Zotlabs/Module/Menu.php:99 ../../Zotlabs/Module/Menu.php:111 +msgid "Menu Title" +msgstr "Menütitel" + +#: ../../Zotlabs/Module/Menu.php:99 +msgid "Visible on webpage - leave empty for no title" +msgstr "Sichtbar auf der Webseite – für keinen Titel leer lassen" + +#: ../../Zotlabs/Module/Menu.php:100 +msgid "Allow Bookmarks" +msgstr "Lesezeichen erlauben" + +#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 +msgid "Menu may be used to store saved bookmarks" +msgstr "Im Menü können gespeicherte Lesezeichen abgelegt werden" + +#: ../../Zotlabs/Module/Menu.php:101 ../../Zotlabs/Module/Menu.php:159 +msgid "Submit and proceed" +msgstr "Absenden und fortfahren" + +#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2239 +msgid "Menus" +msgstr "Menüs" + +#: ../../Zotlabs/Module/Menu.php:117 +msgid "Bookmarks allowed" +msgstr "Lesezeichen erlaubt" + +#: ../../Zotlabs/Module/Menu.php:119 +msgid "Delete this menu" +msgstr "Lösche dieses Menü" + +#: ../../Zotlabs/Module/Menu.php:120 ../../Zotlabs/Module/Menu.php:154 +msgid "Edit menu contents" +msgstr "Bearbeite Menü Inhalte" + +#: ../../Zotlabs/Module/Menu.php:121 +msgid "Edit this menu" +msgstr "Dieses Menü bearbeiten" + +#: ../../Zotlabs/Module/Menu.php:136 +msgid "Menu could not be deleted." +msgstr "Menü konnte nicht gelöscht werden." + +#: ../../Zotlabs/Module/Menu.php:144 ../../Zotlabs/Module/Mitem.php:28 +msgid "Menu not found." +msgstr "Menü nicht gefunden" + +#: ../../Zotlabs/Module/Menu.php:149 +msgid "Edit Menu" +msgstr "Menü bearbeiten" + +#: ../../Zotlabs/Module/Menu.php:153 +msgid "Add or remove entries to this menu" +msgstr "Einträge zu diesem Menü hinzufügen oder entfernen" + +#: ../../Zotlabs/Module/Menu.php:155 +msgid "Menu name" +msgstr "Menü Name" + +#: ../../Zotlabs/Module/Menu.php:155 +msgid "Must be unique, only seen by you" +msgstr "Muss eindeutig sein, ist aber nur für Dich sichtbar" + +#: ../../Zotlabs/Module/Menu.php:156 +msgid "Menu title" +msgstr "Menü Titel" + +#: ../../Zotlabs/Module/Menu.php:156 +msgid "Menu title as seen by others" +msgstr "Menü Titel wie er von anderen gesehen wird" + +#: ../../Zotlabs/Module/Menu.php:157 +msgid "Allow bookmarks" +msgstr "Erlaube Lesezeichen" + +#: ../../Zotlabs/Module/Menu.php:166 ../../Zotlabs/Module/Mitem.php:120 +#: ../../Zotlabs/Module/Xchan.php:41 +msgid "Not found." +msgstr "Nicht gefunden." + +#: ../../Zotlabs/Module/Lostpass.php:19 +msgid "No valid account found." +msgstr "Kein gültiges Konto gefunden." + +#: ../../Zotlabs/Module/Lostpass.php:33 +msgid "Password reset request issued. Check your email." +msgstr "Zurücksetzen des Passworts eingeleitet. Schau in Deine E-Mails." + +#: ../../Zotlabs/Module/Lostpass.php:39 ../../Zotlabs/Module/Lostpass.php:107 +#, php-format +msgid "Site Member (%s)" +msgstr "Nutzer (%s)" + +#: ../../Zotlabs/Module/Lostpass.php:44 +#, php-format +msgid "Password reset requested at %s" +msgstr "Passwort-Rücksetzung auf %s angefordert" + +#: ../../Zotlabs/Module/Lostpass.php:67 +msgid "" +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." +msgstr "Die Anfrage konnte nicht verifiziert werden. (Vielleicht hast Du schon einmal auf den Link in der E-Mail geklickt?) Passwort-Rücksetzung fehlgeschlagen." + +#: ../../Zotlabs/Module/Lostpass.php:90 ../../boot.php:1712 +msgid "Password Reset" +msgstr "Zurücksetzen des Kennworts" + +#: ../../Zotlabs/Module/Lostpass.php:91 +msgid "Your password has been reset as requested." +msgstr "Dein Passwort wurde wie angefordert neu erstellt." + +#: ../../Zotlabs/Module/Lostpass.php:92 +msgid "Your new password is" +msgstr "Dein neues Passwort lautet" + +#: ../../Zotlabs/Module/Lostpass.php:93 +msgid "Save or copy your new password - and then" +msgstr "Speichere oder kopiere Dein neues Passwort – und dann" + +#: ../../Zotlabs/Module/Lostpass.php:94 +msgid "click here to login" +msgstr "Klicke hier, um dich anzumelden" + +#: ../../Zotlabs/Module/Lostpass.php:95 +msgid "" +"Your password may be changed from the Settings page after " +"successful login." +msgstr "Dein Passwort kann unter Einstellungen nach einer erfolgreichen Anmeldung geändert werden." + +#: ../../Zotlabs/Module/Lostpass.php:112 +#, php-format +msgid "Your password has changed at %s" +msgstr "Auf %s wurde Dein Passwort geändert" + +#: ../../Zotlabs/Module/Lostpass.php:127 +msgid "Forgot your Password?" +msgstr "Kennwort vergessen?" + +#: ../../Zotlabs/Module/Lostpass.php:128 +msgid "" +"Enter your email address and submit to have your password reset. Then check " +"your email for further instructions." +msgstr "Gib Deine E-Mail-Adresse ein, um Dein Passwort zurücksetzen zu lassen. Du erhältst dann weitere Anweisungen per E-Mail." + +#: ../../Zotlabs/Module/Lostpass.php:129 +msgid "Email Address" +msgstr "E-Mail Adresse" + +#: ../../Zotlabs/Module/Lostpass.php:130 +msgid "Reset" +msgstr "Zurücksetzen" + +#: ../../Zotlabs/Module/Mood.php:67 ../../include/conversation.php:260 +#, php-format +msgctxt "mood" +msgid "%1$s is %2$s" +msgstr "%1$s ist %2$s" + +#: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Lib/Apps.php:227 +msgid "Mood" +msgstr "Laune" + +#: ../../Zotlabs/Module/Mood.php:136 +msgid "Set your current mood and tell your friends" +msgstr "Wähle Deine aktuelle Stimmung und teile sie mit Deinen Freunden" + +#: ../../Zotlabs/Module/Network.php:94 +msgid "No such group" +msgstr "Gruppe nicht gefunden" + +#: ../../Zotlabs/Module/Network.php:134 +msgid "No such channel" +msgstr "Kanal nicht gefunden" + +#: ../../Zotlabs/Module/Network.php:139 +msgid "forum" +msgstr "Forum" + +#: ../../Zotlabs/Module/Network.php:151 +msgid "Search Results For:" +msgstr "Suchergebnisse für:" + +#: ../../Zotlabs/Module/Network.php:215 +msgid "Privacy group is empty" +msgstr "Gruppe ist leer" + +#: ../../Zotlabs/Module/Network.php:224 +msgid "Privacy group: " +msgstr "Gruppe:" + +#: ../../Zotlabs/Module/Network.php:250 +msgid "Invalid connection." +msgstr "Ungültige Verbindung." + +#: ../../Zotlabs/Module/Notify.php:57 +#: ../../Zotlabs/Module/Notifications.php:98 +msgid "No more system notifications." +msgstr "Keine System-Benachrichtigungen mehr." + +#: ../../Zotlabs/Module/Notify.php:61 +#: ../../Zotlabs/Module/Notifications.php:102 +msgid "System Notifications" +msgstr "System-Benachrichtigungen" + +#: ../../Zotlabs/Module/Match.php:26 +msgid "Profile Match" +msgstr "Profil-Übereinstimmungen" + +#: ../../Zotlabs/Module/Match.php:35 +msgid "No keywords to match. Please add keywords to your default profile." +msgstr "Keine Schlüsselwörter für den Abgleich gefunden. Bitte füge Schlüsselwörter zu Deinem Standardprofil hinzu." + +#: ../../Zotlabs/Module/Match.php:67 +msgid "is interested in:" +msgstr "interessiert sich für:" + +#: ../../Zotlabs/Module/Match.php:74 +msgid "No matches" +msgstr "Keine Übereinstimmungen" + +#: ../../Zotlabs/Module/Channel.php:40 +msgid "Posts and comments" +msgstr "Beiträge und Kommentare" + +#: ../../Zotlabs/Module/Channel.php:41 +msgid "Only posts" +msgstr "Nur Beiträge" + +#: ../../Zotlabs/Module/Channel.php:101 +msgid "Insufficient permissions. Request redirected to profile page." +msgstr "Unzureichende Zugriffsrechte. Die Anfrage wurde zur Profil-Seite umgeleitet." + +#: ../../Zotlabs/Module/Mitem.php:52 +msgid "Unable to create element." +msgstr "Element konnte nicht erstellt werden." + +#: ../../Zotlabs/Module/Mitem.php:76 +msgid "Unable to update menu element." +msgstr "Kann Menü-Element nicht aktualisieren." + +#: ../../Zotlabs/Module/Mitem.php:92 +msgid "Unable to add menu element." +msgstr "Kann Menü-Bestandteil nicht hinzufügen." + +#: ../../Zotlabs/Module/Mitem.php:153 ../../Zotlabs/Module/Mitem.php:226 +msgid "Menu Item Permissions" +msgstr "Zugriffsrechte des Menü-Elements" + +#: ../../Zotlabs/Module/Mitem.php:154 ../../Zotlabs/Module/Mitem.php:227 +#: ../../Zotlabs/Module/Settings.php:1163 +msgid "(click to open/close)" +msgstr "(zum öffnen/schließen anklicken)" + +#: ../../Zotlabs/Module/Mitem.php:156 ../../Zotlabs/Module/Mitem.php:172 +msgid "Link Name" +msgstr "Name des Links" + +#: ../../Zotlabs/Module/Mitem.php:157 ../../Zotlabs/Module/Mitem.php:231 +msgid "Link or Submenu Target" +msgstr "Ziel des Links oder Untermenüs" + +#: ../../Zotlabs/Module/Mitem.php:157 +msgid "Enter URL of the link or select a menu name to create a submenu" +msgstr "URL des Links eingeben oder Menünamen wählen, um ein Untermenü anzulegen." + +#: ../../Zotlabs/Module/Mitem.php:158 ../../Zotlabs/Module/Mitem.php:232 +msgid "Use magic-auth if available" +msgstr "Magic-Auth verwenden, falls verfügbar" + +#: ../../Zotlabs/Module/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:233 +msgid "Open link in new window" +msgstr "Öffne Link in neuem Fenster" + +#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:234 +msgid "Order in list" +msgstr "Reihenfolge in der Liste" + +#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:234 +msgid "Higher numbers will sink to bottom of listing" +msgstr "Größere Nummern werden weiter unten in der Auflistung einsortiert" + +#: ../../Zotlabs/Module/Mitem.php:161 +msgid "Submit and finish" +msgstr "Absenden und fertigstellen" + +#: ../../Zotlabs/Module/Mitem.php:162 +msgid "Submit and continue" +msgstr "Absenden und fortfahren" + +#: ../../Zotlabs/Module/Mitem.php:170 +msgid "Menu:" +msgstr "Menü:" + +#: ../../Zotlabs/Module/Mitem.php:173 +msgid "Link Target" +msgstr "Ziel des Links" + +#: ../../Zotlabs/Module/Mitem.php:176 +msgid "Edit menu" +msgstr "Menü bearbeiten" + +#: ../../Zotlabs/Module/Mitem.php:179 +msgid "Edit element" +msgstr "Bestandteil bearbeiten" + +#: ../../Zotlabs/Module/Mitem.php:180 +msgid "Drop element" +msgstr "Bestandteil löschen" + +#: ../../Zotlabs/Module/Mitem.php:181 +msgid "New element" +msgstr "Neues Bestandteil" + +#: ../../Zotlabs/Module/Mitem.php:182 +msgid "Edit this menu container" +msgstr "Diesen Menü-Container bearbeiten" + +#: ../../Zotlabs/Module/Mitem.php:183 +msgid "Add menu element" +msgstr "Menüelement hinzufügen" + +#: ../../Zotlabs/Module/Mitem.php:184 +msgid "Delete this menu item" +msgstr "Lösche dieses Menü-Bestandteil" + +#: ../../Zotlabs/Module/Mitem.php:185 +msgid "Edit this menu item" +msgstr "Bearbeite dieses Menü-Bestandteil" + +#: ../../Zotlabs/Module/Mitem.php:202 +msgid "Menu item not found." +msgstr "Menü-Bestandteil nicht gefunden." + +#: ../../Zotlabs/Module/Mitem.php:215 +msgid "Menu item deleted." +msgstr "Menü-Bestandteil gelöscht." + +#: ../../Zotlabs/Module/Mitem.php:217 +msgid "Menu item could not be deleted." +msgstr "Menü-Bestandteil kann nicht gelöscht werden." + +#: ../../Zotlabs/Module/Mitem.php:224 +msgid "Edit Menu Element" +msgstr "Bearbeite Menü-Bestandteil" + +#: ../../Zotlabs/Module/Mitem.php:230 +msgid "Link text" +msgstr "Link Text" #: ../../Zotlabs/Module/Admin.php:77 msgid "Theme settings updated." @@ -3680,11 +3587,11 @@ msgstr "Repository-Version (dev)" msgid "Site settings updated." msgstr "Site-Einstellungen aktualisiert." -#: ../../Zotlabs/Module/Admin.php:400 ../../include/text.php:2841 +#: ../../Zotlabs/Module/Admin.php:400 ../../include/text.php:2829 msgid "Default" msgstr "Standard" -#: ../../Zotlabs/Module/Admin.php:410 ../../Zotlabs/Module/Settings.php:798 +#: ../../Zotlabs/Module/Admin.php:410 ../../Zotlabs/Module/Settings.php:899 msgid "mobile" msgstr "mobil" @@ -3716,7 +3623,7 @@ msgstr "Meine Seite hat nur freien Zugriff" msgid "My site offers free accounts with optional paid upgrades" msgstr "Mein Server bietet kostenlose Konten mit der Möglichkeit zu bezahlten Upgrades" -#: ../../Zotlabs/Module/Admin.php:491 ../../include/widgets.php:1382 +#: ../../Zotlabs/Module/Admin.php:491 ../../include/widgets.php:1476 msgid "Site" msgstr "Seite" @@ -4004,12 +3911,12 @@ msgid "0 for no expiration of imported content" msgstr "0 = keine Löschung importierter Inhalte" #: ../../Zotlabs/Module/Admin.php:677 ../../Zotlabs/Module/Admin.php:678 -#: ../../Zotlabs/Module/Settings.php:722 +#: ../../Zotlabs/Module/Settings.php:823 msgid "Off" msgstr "Aus" #: ../../Zotlabs/Module/Admin.php:677 ../../Zotlabs/Module/Admin.php:678 -#: ../../Zotlabs/Module/Settings.php:722 +#: ../../Zotlabs/Module/Settings.php:823 msgid "On" msgstr "An" @@ -4066,7 +3973,7 @@ msgid "" "embedded content from that site is explicitly blocked." msgstr "Alle anderen eingebetteten Inhalte werden gefiltert, es sei denn, eingebettete Inhalte von einer bestimmten Seite sind explizit blockiert." -#: ../../Zotlabs/Module/Admin.php:756 ../../include/widgets.php:1385 +#: ../../Zotlabs/Module/Admin.php:756 ../../include/widgets.php:1479 msgid "Security" msgstr "Sicherheit" @@ -4234,7 +4141,7 @@ msgid "Account '%s' unblocked" msgstr "Konto '%s' freigegeben" #: ../../Zotlabs/Module/Admin.php:1031 ../../Zotlabs/Module/Admin.php:1044 -#: ../../include/widgets.php:1383 +#: ../../include/widgets.php:1477 msgid "Accounts" msgstr "Konten" @@ -4340,7 +4247,7 @@ msgstr "Code für Kanal '%s' freigegeben" msgid "Channel '%s' code disallowed" msgstr "Code für Kanal '%s' gesperrt" -#: ../../Zotlabs/Module/Admin.php:1210 ../../include/widgets.php:1384 +#: ../../Zotlabs/Module/Admin.php:1210 ../../include/widgets.php:1478 msgid "Channels" msgstr "Kanäle" @@ -4360,7 +4267,7 @@ msgstr "Code erlauben" msgid "Disallow Code" msgstr "Code sperren" -#: ../../Zotlabs/Module/Admin.php:1218 ../../include/conversation.php:1611 +#: ../../Zotlabs/Module/Admin.php:1218 ../../include/conversation.php:1626 msgid "Channel" msgstr "Kanal" @@ -4399,7 +4306,7 @@ msgid "Enable" msgstr "Aktivieren" #: ../../Zotlabs/Module/Admin.php:1330 ../../Zotlabs/Module/Admin.php:1420 -#: ../../include/widgets.php:1387 +#: ../../include/widgets.php:1481 msgid "Plugins" msgstr "Plug-Ins" @@ -4408,8 +4315,8 @@ msgid "Toggle" msgstr "Umschalten" #: ../../Zotlabs/Module/Admin.php:1332 ../../Zotlabs/Module/Admin.php:1615 -#: ../../Zotlabs/Lib/Apps.php:215 ../../include/widgets.php:638 -#: ../../include/nav.php:208 +#: ../../Zotlabs/Lib/Apps.php:216 ../../include/nav.php:210 +#: ../../include/widgets.php:647 msgid "Settings" msgstr "Einstellungen" @@ -4465,7 +4372,7 @@ msgstr "Plugin-Repository herunterladen" msgid "Install new repo" msgstr "Neues Repository installieren" -#: ../../Zotlabs/Module/Admin.php:1405 ../../Zotlabs/Lib/Apps.php:330 +#: ../../Zotlabs/Module/Admin.php:1405 ../../Zotlabs/Lib/Apps.php:334 msgid "Install" msgstr "Installieren" @@ -4481,8 +4388,8 @@ msgstr "Installierte Plugin-Repositorien" msgid "Install a New Plugin Repository" msgstr "Ein neues Plugin-Repository installieren" -#: ../../Zotlabs/Module/Admin.php:1435 ../../Zotlabs/Module/Settings.php:77 -#: ../../Zotlabs/Module/Settings.php:616 ../../Zotlabs/Lib/Apps.php:330 +#: ../../Zotlabs/Module/Admin.php:1435 ../../Zotlabs/Module/Settings.php:72 +#: ../../Zotlabs/Module/Settings.php:670 ../../Zotlabs/Lib/Apps.php:334 msgid "Update" msgstr "Aktualisieren" @@ -4499,7 +4406,7 @@ msgid "Screenshot" msgstr "Bildschirmfoto" #: ../../Zotlabs/Module/Admin.php:1613 ../../Zotlabs/Module/Admin.php:1647 -#: ../../include/widgets.php:1388 +#: ../../include/widgets.php:1482 msgid "Themes" msgstr "Themes" @@ -4515,8 +4422,8 @@ msgstr "[Nicht unterstützt]" msgid "Log settings updated." msgstr "Protokoll-Einstellungen aktualisiert." -#: ../../Zotlabs/Module/Admin.php:1732 ../../include/widgets.php:1409 -#: ../../include/widgets.php:1419 +#: ../../Zotlabs/Module/Admin.php:1732 ../../include/widgets.php:1503 +#: ../../include/widgets.php:1513 msgid "Logs" msgstr "Protokolle" @@ -4582,7 +4489,7 @@ msgstr "Feld-Definition nicht gefunden" msgid "Edit Profile Field" msgstr "Profilfeld bearbeiten" -#: ../../Zotlabs/Module/Admin.php:2106 ../../include/widgets.php:1390 +#: ../../Zotlabs/Module/Admin.php:2106 ../../include/widgets.php:1484 msgid "Profile Fields" msgstr "Profil Felder" @@ -4610,57 +4517,384 @@ msgstr "Benutzerdefinierte Felder" msgid "Create Custom Field" msgstr "Erstelle benutzerdefiniertes Feld" -#: ../../Zotlabs/Module/Appman.php:37 ../../Zotlabs/Module/Appman.php:53 -msgid "App installed." -msgstr "App installiert." +#: ../../Zotlabs/Module/New_channel.php:128 +#: ../../Zotlabs/Module/Register.php:231 +msgid "Name or caption" +msgstr "Name oder Titel" -#: ../../Zotlabs/Module/Appman.php:46 -msgid "Malformed app." -msgstr "Fehlerhafte App." +#: ../../Zotlabs/Module/New_channel.php:128 +#: ../../Zotlabs/Module/Register.php:231 +msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\"" +msgstr "Beispiele: „Horst Weidinger“, „Lisa und ihr Meerschweinchen“, „Fußball“, „Segelflieger-Forum“ " -#: ../../Zotlabs/Module/Appman.php:104 -msgid "Embed code" -msgstr "Code einbetten" +#: ../../Zotlabs/Module/New_channel.php:130 +#: ../../Zotlabs/Module/Register.php:233 +msgid "Choose a short nickname" +msgstr "Wähle einen kurzen Spitznamen" -#: ../../Zotlabs/Module/Appman.php:110 ../../include/widgets.php:107 -msgid "Edit App" -msgstr "App bearbeiten" +#: ../../Zotlabs/Module/New_channel.php:130 +#: ../../Zotlabs/Module/Register.php:233 +#, php-format +msgid "" +"Your nickname will be used to create an easy to remember channel address " +"e.g. nickname%s" +msgstr "Dein Spitzname wird verwendet, um eine leicht zu merkende Kanal-Adresse (ähnlich einer E-Mail-Adresse) zu erzeugen, die Du mit anderen austauschen kannst, z.B. nickname%s" -#: ../../Zotlabs/Module/Appman.php:110 -msgid "Create App" -msgstr "App erstellen" +#: ../../Zotlabs/Module/New_channel.php:132 +#: ../../Zotlabs/Module/Register.php:235 +msgid "Channel role and privacy" +msgstr "Kanaltyp und Privatspäre-Einstellungen" -#: ../../Zotlabs/Module/Appman.php:115 -msgid "Name of app" -msgstr "Name der App" +#: ../../Zotlabs/Module/New_channel.php:132 +#: ../../Zotlabs/Module/Register.php:235 +msgid "Select a channel role with your privacy requirements." +msgstr "Wähle einen passenden Kanaltyp mit den zugehörigen Voreinstellungen zur Privatsphäre." -#: ../../Zotlabs/Module/Appman.php:116 -msgid "Location (URL) of app" -msgstr "Ort (URL) der App" +#: ../../Zotlabs/Module/New_channel.php:132 +#: ../../Zotlabs/Module/Register.php:235 +msgid "Read more about roles" +msgstr "Mehr Informationen über Rollen" -#: ../../Zotlabs/Module/Appman.php:118 -msgid "Photo icon URL" -msgstr "URL zum Icon" +#: ../../Zotlabs/Module/New_channel.php:135 +msgid "Create Channel" +msgstr "Einen neuen Kanal anlegen" -#: ../../Zotlabs/Module/Appman.php:118 -msgid "80 x 80 pixels - optional" -msgstr "80 x 80 Pixel – optional" +#: ../../Zotlabs/Module/New_channel.php:136 +msgid "" +"A channel is your identity on this network. It can represent a person, a " +"blog, or a forum to name a few. Channels can make connections with other " +"channels to share information with highly detailed permissions." +msgstr "Ein Kanal ist Deine Identität in diesem Netzwerk. Er kann eine Person, ein Blog oder ein Forum repräsentieren, nur um ein paar Beispiele zu nennen. Kanäle können Verbindungen miteinander eingehen, um Informationen zu teilen, jeweils basierend auf sehr detaillierten Berechtigungseinstellungen." -#: ../../Zotlabs/Module/Appman.php:119 -msgid "Categories (optional, comma separated list)" -msgstr "Kategorien (optional, kommagetrennte Liste)" +#: ../../Zotlabs/Module/New_channel.php:137 +msgid "" +"or import an existing channel from another location." +msgstr "oder importiere einen bestehenden Kanal von einem anderen Server." -#: ../../Zotlabs/Module/Appman.php:120 -msgid "Version ID" -msgstr "Versions-ID" +#: ../../Zotlabs/Module/Ping.php:265 +msgid "sent you a private message" +msgstr "hat Dir eine private Nachricht geschickt" -#: ../../Zotlabs/Module/Appman.php:121 -msgid "Price of app" -msgstr "Preis der App" +#: ../../Zotlabs/Module/Ping.php:313 +msgid "added your channel" +msgstr "hat deinen Kanal hinzugefügt" -#: ../../Zotlabs/Module/Appman.php:122 -msgid "Location (URL) to purchase app" -msgstr "Ort (URL), um die App zu kaufen" +#: ../../Zotlabs/Module/Ping.php:323 +msgid "g A l F d" +msgstr "l, d. F, G:i \\U\\h\\r" + +#: ../../Zotlabs/Module/Ping.php:346 +msgid "[today]" +msgstr "[Heute]" + +#: ../../Zotlabs/Module/Ping.php:355 +msgid "posted an event" +msgstr "hat einen Termin veröffentlicht" + +#: ../../Zotlabs/Module/Notifications.php:30 +msgid "Invalid request identifier." +msgstr "Ungültiger Anfrage-Identifikator." + +#: ../../Zotlabs/Module/Notifications.php:39 +msgid "Discard" +msgstr "Verwerfen" + +#: ../../Zotlabs/Module/Notifications.php:103 ../../include/nav.php:193 +msgid "Mark all system notifications seen" +msgstr "Markiere alle System-Benachrichtigungen als gesehen" + +#: ../../Zotlabs/Module/Poke.php:168 ../../Zotlabs/Lib/Apps.php:228 +#: ../../include/conversation.php:963 +msgid "Poke" +msgstr "Anstupsen" + +#: ../../Zotlabs/Module/Poke.php:169 +msgid "Poke somebody" +msgstr "Jemanden anstupsen" + +#: ../../Zotlabs/Module/Poke.php:172 +msgid "Poke/Prod" +msgstr "Anstupsen/Knuffen" + +#: ../../Zotlabs/Module/Poke.php:173 +msgid "Poke, prod or do other things to somebody" +msgstr "Jemanden anstupsen, knuffen oder sonstiges" + +#: ../../Zotlabs/Module/Poke.php:180 +msgid "Recipient" +msgstr "Empfänger" + +#: ../../Zotlabs/Module/Poke.php:181 +msgid "Choose what you wish to do to recipient" +msgstr "Wähle, was Du mit dem/r Empfänger/in tun willst" + +#: ../../Zotlabs/Module/Poke.php:184 ../../Zotlabs/Module/Poke.php:185 +msgid "Make this post private" +msgstr "Diesen Beitrag privat machen" + +#: ../../Zotlabs/Module/Oexchange.php:27 +msgid "Unable to find your hub." +msgstr "Konnte Deinen Server nicht finden." + +#: ../../Zotlabs/Module/Oexchange.php:41 +msgid "Post successful." +msgstr "Veröffentlichung erfolgreich." + +#: ../../Zotlabs/Module/Openid.php:30 +msgid "OpenID protocol error. No ID returned." +msgstr "OpenID Protokollfehler. Keine ID zurückgegeben." + +#: ../../Zotlabs/Module/Openid.php:193 ../../include/auth.php:285 +msgid "Login failed." +msgstr "Login fehlgeschlagen." + +#: ../../Zotlabs/Module/Profperm.php:34 ../../Zotlabs/Module/Profperm.php:63 +msgid "Invalid profile identifier." +msgstr "Ungültiger Profil-Identifikator" + +#: ../../Zotlabs/Module/Profperm.php:115 +msgid "Profile Visibility Editor" +msgstr "Profil-Sichtbarkeits-Editor" + +#: ../../Zotlabs/Module/Profperm.php:117 ../../include/channel.php:1290 +msgid "Profile" +msgstr "Profil" + +#: ../../Zotlabs/Module/Profperm.php:119 +msgid "Click on a contact to add or remove." +msgstr "Klicke auf einen Kontakt, um ihn hinzuzufügen oder zu entfernen." + +#: ../../Zotlabs/Module/Profperm.php:128 +msgid "Visible To" +msgstr "Sichtbar für" + +#: ../../Zotlabs/Module/Pconfig.php:26 ../../Zotlabs/Module/Pconfig.php:59 +msgid "This setting requires special processing and editing has been blocked." +msgstr "Diese Einstellung erfordert eine besondere Verarbeitung und ist blockiert." + +#: ../../Zotlabs/Module/Pconfig.php:48 +msgid "Configuration Editor" +msgstr "Konfigurationseditor" + +#: ../../Zotlabs/Module/Pconfig.php:49 +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 "Warnung: Einige Einstellungen können Deinen Kanal funktionsunfähig machen. Bitte verlasse diese Seite, es sei denn Du bist vertraut damit, wie dieses Feature korrekt verwendet wird." + +#: ../../Zotlabs/Module/Probe.php:28 ../../Zotlabs/Module/Probe.php:32 +#, php-format +msgid "Fetching URL returns error: %1$s" +msgstr "Abrufen der URL gab einen Fehler zurück: %1$s" + +#: ../../Zotlabs/Module/Siteinfo.php:19 +#, php-format +msgid "Version %s" +msgstr "Version %s" + +#: ../../Zotlabs/Module/Siteinfo.php:34 +msgid "Installed plugins/addons/apps:" +msgstr "Installierte Plugins/Addons/Apps" + +#: ../../Zotlabs/Module/Siteinfo.php:36 +msgid "No installed plugins/addons/apps" +msgstr "Keine installierten Plugins/Addons/Apps" + +#: ../../Zotlabs/Module/Siteinfo.php:49 +msgid "" +"This is a hub of $Projectname - a global cooperative network of " +"decentralized privacy enhanced websites." +msgstr "Dieser Hub ist Teil von $Projectname – ein globales, kooperatives Netzwerk aus dezentralen Websites, die Rücksicht auf Deine Privatsphäre nehmen." + +#: ../../Zotlabs/Module/Siteinfo.php:51 +msgid "Tag: " +msgstr "Schlagwort: " + +#: ../../Zotlabs/Module/Siteinfo.php:53 +msgid "Last background fetch: " +msgstr "Letzter Hintergrundabruf:" + +#: ../../Zotlabs/Module/Siteinfo.php:55 +msgid "Current load average: " +msgstr "Aktuelles Load Average:" + +#: ../../Zotlabs/Module/Siteinfo.php:58 +msgid "Running at web location" +msgstr "Erreichbar unter der Web-Adresse" + +#: ../../Zotlabs/Module/Siteinfo.php:59 +msgid "" +"Please visit hubzilla.org to learn more " +"about $Projectname." +msgstr "Bitte besuchen Sie hubzilla.org, um mehr über $Projectname zu erfahren." + +#: ../../Zotlabs/Module/Siteinfo.php:60 +msgid "Bug reports and issues: please visit" +msgstr "Probleme oder Fehler gefunden? Bitte besuche" + +#: ../../Zotlabs/Module/Siteinfo.php:62 +msgid "$projectname issues" +msgstr "$projectname-Bugtracker" + +#: ../../Zotlabs/Module/Siteinfo.php:63 +msgid "" +"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot " +"com" +msgstr "Vorschläge, Lob, usw.: E-Mail an 'redmatrix' at librelist - dot - com" + +#: ../../Zotlabs/Module/Siteinfo.php:65 +msgid "Site Administrators" +msgstr "Administratoren" + +#: ../../Zotlabs/Module/Rmagic.php:44 +msgid "" +"We encountered a problem while logging in with the OpenID you provided. " +"Please check the correct spelling of the ID." +msgstr "Wir haben ein Problem mit der OpenID festgestellt, mit der Du Dich anmelden wolltest. Bitte überprüfe sie noch einmal." + +#: ../../Zotlabs/Module/Rmagic.php:44 +msgid "The error message was:" +msgstr "Die Fehlermeldung war:" + +#: ../../Zotlabs/Module/Rmagic.php:48 +msgid "Authentication failed." +msgstr "Authentifizierung fehlgeschlagen." + +#: ../../Zotlabs/Module/Rmagic.php:88 +msgid "Remote Authentication" +msgstr "Entfernte Authentifizierung" + +#: ../../Zotlabs/Module/Rmagic.php:89 +msgid "Enter your channel address (e.g. channel@example.com)" +msgstr "Deine Kanal-Adresse (z. B. channel@example.com)" + +#: ../../Zotlabs/Module/Rmagic.php:90 +msgid "Authenticate" +msgstr "Authentifizieren" + +#: ../../Zotlabs/Module/Pubsites.php:22 ../../include/widgets.php:1337 +msgid "Public Hubs" +msgstr "Öffentliche Hubs" + +#: ../../Zotlabs/Module/Pubsites.php:25 +msgid "" +"The listed hubs allow public registration for the $Projectname network. All " +"hubs in the network are interlinked so membership on any of them conveys " +"membership in the network as a whole. Some hubs may require subscription or " +"provide tiered service plans. The hub itself may provide " +"additional details." +msgstr "Die hier aufgeführten Hubs sind öffentlich und erlauben die Registrierung im $Projectname Netzwerk. Alle Hubs dieses Netzwerks sind miteinander verbunden, so dass die Mitgliedschaft auf einem Hub die Verbindung zu beliebigen Seiten und Kanälen auf anderen Hubs ermöglicht. Es könnte sein, dass einige dieser Hubs kostenpflichtig sind oder abgestufte, je nach Umfang kostenpflichtige Mitgliedschaften anbieten. Auf den Seiten der einzelnen Hubs könnten jeweils nähere Informationen dazu stehen." + +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Hub URL" +msgstr "Hub-URL" + +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Access Type" +msgstr "Zugriffstyp" + +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Registration Policy" +msgstr "Registrierungsrichtlinien" + +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Stats" +msgstr "Statistiken" + +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Software" +msgstr "Software" + +#: ../../Zotlabs/Module/Pubsites.php:31 ../../Zotlabs/Module/Ratings.php:103 +#: ../../include/conversation.php:962 +msgid "Ratings" +msgstr "Bewertungen" + +#: ../../Zotlabs/Module/Pubsites.php:38 +msgid "Rate" +msgstr "Bewerten" + +#: ../../Zotlabs/Module/Profile_photo.php:186 +msgid "" +"Shift-reload the page or clear browser cache if the new photo does not " +"display immediately." +msgstr "Leere den Browser Cache oder nutze Umschalten-Neu Laden, falls das neue Foto nicht sofort angezeigt wird." + +#: ../../Zotlabs/Module/Profile_photo.php:389 +msgid "Upload Profile Photo" +msgstr "Lade neues Profilfoto hoch" + +#: ../../Zotlabs/Module/Blocks.php:97 ../../Zotlabs/Module/Blocks.php:155 +#: ../../Zotlabs/Module/Editblock.php:108 +msgid "Block Name" +msgstr "Block-Name" + +#: ../../Zotlabs/Module/Blocks.php:154 ../../include/text.php:2238 +msgid "Blocks" +msgstr "Blöcke" + +#: ../../Zotlabs/Module/Blocks.php:156 +msgid "Block Title" +msgstr "Titel des Blocks" + +#: ../../Zotlabs/Module/Rate.php:160 +msgid "Website:" +msgstr "Webseite:" + +#: ../../Zotlabs/Module/Rate.php:163 +#, php-format +msgid "Remote Channel [%s] (not yet known on this site)" +msgstr "Kanal [%s] (auf diesem Server noch unbekannt)" + +#: ../../Zotlabs/Module/Rate.php:164 +msgid "Rating (this information is public)" +msgstr "Bewertung (öffentlich sichtbar)" + +#: ../../Zotlabs/Module/Rate.php:165 +msgid "Optionally explain your rating (this information is public)" +msgstr "Optional kannst du deine Bewertung erklären (öffentlich sichtbar)" + +#: ../../Zotlabs/Module/Ratings.php:73 +msgid "No ratings" +msgstr "Keine Bewertungen" + +#: ../../Zotlabs/Module/Ratings.php:104 +msgid "Rating: " +msgstr "Bewertung: " + +#: ../../Zotlabs/Module/Ratings.php:105 +msgid "Website: " +msgstr "Webseite: " + +#: ../../Zotlabs/Module/Ratings.php:107 +msgid "Description: " +msgstr "Beschreibung: " + +#: ../../Zotlabs/Module/Apps.php:47 ../../include/nav.php:165 +#: ../../include/widgets.php:102 +msgid "Apps" +msgstr "Apps" + +#: ../../Zotlabs/Module/Editblock.php:124 ../../include/conversation.php:1243 +msgid "Title (optional)" +msgstr "Titel (optional)" + +#: ../../Zotlabs/Module/Editblock.php:133 +msgid "Edit Block" +msgstr "Block bearbeiten" + +#: ../../Zotlabs/Module/Common.php:14 +msgid "No channel." +msgstr "Kein Kanal." + +#: ../../Zotlabs/Module/Common.php:43 +msgid "Common connections" +msgstr "Gemeinsame Verbindungen" + +#: ../../Zotlabs/Module/Common.php:48 +msgid "No connections in common." +msgstr "Keine gemeinsamen Verbindungen." #: ../../Zotlabs/Module/Rbmark.php:94 msgid "Select a bookmark folder" @@ -4765,120 +4999,154 @@ msgstr "ja" msgid "Membership on this site is by invitation only." msgstr "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich." -#: ../../Zotlabs/Module/Register.php:262 ../../include/nav.php:147 -#: ../../boot.php:1685 +#: ../../Zotlabs/Module/Register.php:262 ../../include/nav.php:149 +#: ../../boot.php:1686 msgid "Register" msgstr "Registrieren" -#: ../../Zotlabs/Module/Register.php:262 -msgid "Proceed to create your first channel" -msgstr "Fortfahren und Deinen ersten Kanal anlegen" +#: ../../Zotlabs/Module/Register.php:263 +msgid "" +"This site may require email verification after submitting this form. If you " +"are returned to a login page, please check your email for instructions." +msgstr "Diese Seite verlangt möglicherweise eine Emailbestätigung nach dem Ansenden des Formulars. Wenn Du auf eine Login-Seite zurückgeleitet wirst, prüfe bitte auf neue Mail mit entsprechenden Hinweisen." #: ../../Zotlabs/Module/Regmod.php:15 msgid "Please login." msgstr "Bitte melde dich an." -#: ../../Zotlabs/Module/Removeaccount.php:34 +#: ../../Zotlabs/Module/Removeaccount.php:35 msgid "" "Account removals are not allowed within 48 hours of changing the account " "password." msgstr "Das Löschen von Konten innerhalb 48 Stunden nachdem deren Passwort geändert wurde ist nicht erlaubt." -#: ../../Zotlabs/Module/Removeaccount.php:56 +#: ../../Zotlabs/Module/Removeaccount.php:57 msgid "Remove This Account" msgstr "Dieses Konto löschen" -#: ../../Zotlabs/Module/Removeaccount.php:57 -#: ../../Zotlabs/Module/Removeme.php:59 +#: ../../Zotlabs/Module/Removeaccount.php:58 +#: ../../Zotlabs/Module/Removeme.php:61 msgid "WARNING: " msgstr "WARNUNG: " -#: ../../Zotlabs/Module/Removeaccount.php:57 +#: ../../Zotlabs/Module/Removeaccount.php:58 msgid "" "This account and all its channels will be completely removed from the " "network. " msgstr "Dieses Konto mit all seinen Kanälen wird vollständig aus dem Netzwerk gelöscht." -#: ../../Zotlabs/Module/Removeaccount.php:57 -#: ../../Zotlabs/Module/Removeme.php:59 +#: ../../Zotlabs/Module/Removeaccount.php:58 +#: ../../Zotlabs/Module/Removeme.php:61 msgid "This action is permanent and can not be undone!" msgstr "Dieser Schritt ist endgültig und kann nicht rückgängig gemacht werden!" -#: ../../Zotlabs/Module/Removeaccount.php:58 -#: ../../Zotlabs/Module/Removeme.php:60 +#: ../../Zotlabs/Module/Removeaccount.php:59 +#: ../../Zotlabs/Module/Removeme.php:62 msgid "Please enter your password for verification:" msgstr "Bitte gib zur Bestätigung Dein Passwort ein:" -#: ../../Zotlabs/Module/Removeaccount.php:59 +#: ../../Zotlabs/Module/Removeaccount.php:60 msgid "" "Remove this account, all its channels and all its channel clones from the " "network" msgstr "Dieses Konto, all seine Kanäle sowie alle Kanal-Klone aus dem Netzwerk löschen" -#: ../../Zotlabs/Module/Removeaccount.php:59 +#: ../../Zotlabs/Module/Removeaccount.php:60 msgid "" "By default only the instances of the channels located on this hub will be " "removed from the network" msgstr "Standardmäßig werden nur die Kanalklone auf diesem $Projectname-Hub aus dem Netzwerk entfernt" -#: ../../Zotlabs/Module/Removeaccount.php:60 -#: ../../Zotlabs/Module/Settings.php:705 +#: ../../Zotlabs/Module/Removeaccount.php:61 +#: ../../Zotlabs/Module/Settings.php:759 msgid "Remove Account" msgstr "Konto entfernen" -#: ../../Zotlabs/Module/Removeme.php:33 +#: ../../Zotlabs/Module/Removeme.php:35 msgid "" "Channel removals are not allowed within 48 hours of changing the account " "password." msgstr "Innerhalb von 48 Stunden nach einer Änderung des Passworts können keine Kanäle gelöscht werden." -#: ../../Zotlabs/Module/Removeme.php:58 +#: ../../Zotlabs/Module/Removeme.php:60 msgid "Remove This Channel" msgstr "Diesen Kanal löschen" -#: ../../Zotlabs/Module/Removeme.php:59 +#: ../../Zotlabs/Module/Removeme.php:61 msgid "This channel will be completely removed from the network. " msgstr "Dieser Kanal wird vollständig aus dem Netzwerk gelöscht." -#: ../../Zotlabs/Module/Removeme.php:61 +#: ../../Zotlabs/Module/Removeme.php:63 msgid "Remove this channel and all its clones from the network" msgstr "Lösche diesen Kanal und all seine Klone aus dem Netzwerk" -#: ../../Zotlabs/Module/Removeme.php:61 +#: ../../Zotlabs/Module/Removeme.php:63 msgid "" "By default only the instance of the channel located on this hub will be " "removed from the network" msgstr "Standardmäßig wird der Kanal nur auf diesem Server gelöscht, seine Klone verbleiben im Netzwerk" -#: ../../Zotlabs/Module/Removeme.php:62 ../../Zotlabs/Module/Settings.php:1124 +#: ../../Zotlabs/Module/Removeme.php:64 ../../Zotlabs/Module/Settings.php:1219 msgid "Remove Channel" msgstr "Kanal löschen" -#: ../../Zotlabs/Module/Rmagic.php:44 +#: ../../Zotlabs/Module/Uexport.php:55 ../../Zotlabs/Module/Uexport.php:56 +msgid "Export Channel" +msgstr "Kanal exportieren" + +#: ../../Zotlabs/Module/Uexport.php:57 msgid "" -"We encountered a problem while logging in with the OpenID you provided. " -"Please check the correct spelling of the ID." -msgstr "Wir haben ein Problem mit der OpenID festgestellt, mit der Du Dich anmelden wolltest. Bitte überprüfe sie noch einmal." +"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 "Exportiert die grundlegenden Kanal-Informationen in eine kleine Datei. Diese stellt eine Sicherung Deiner Verbindungen, Berechtigungen, Profile und Basisdaten bereit, die für den Import auf einem anderen Hub verwendet werden kann, aber nicht die Beiträge Deines Kanals enthält." -#: ../../Zotlabs/Module/Rmagic.php:44 -msgid "The error message was:" -msgstr "Die Fehlermeldung war:" +#: ../../Zotlabs/Module/Uexport.php:58 +msgid "Export Content" +msgstr "Kanal und Inhalte exportieren" -#: ../../Zotlabs/Module/Rmagic.php:48 -msgid "Authentication failed." -msgstr "Authentifizierung fehlgeschlagen." +#: ../../Zotlabs/Module/Uexport.php:59 +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 "Exportiert Deine Kanal-Informationen sowie alle zugehörigen Inhalte in eine JSON-Sicherungsdatei. Die sichert alle Verbindungen, Berechtigungen, Profildaten und Deine Beiträge aus mehreren Monaten. Diese Datei kann SEHR groß werden! Bitte habe ein wenig Geduld – es kann mehrere Minuten dauern, bis der Download startet." -#: ../../Zotlabs/Module/Rmagic.php:88 -msgid "Remote Authentication" -msgstr "Entfernte Authentifizierung" +#: ../../Zotlabs/Module/Uexport.php:60 +msgid "Export your posts from a given year." +msgstr "Exportiert die Beiträge des angegebenen Jahres." -#: ../../Zotlabs/Module/Rmagic.php:89 -msgid "Enter your channel address (e.g. channel@example.com)" -msgstr "Deine Kanal-Adresse (z. B. channel@example.com)" +#: ../../Zotlabs/Module/Uexport.php:62 +msgid "" +"You may also export your posts and conversations for a particular year or " +"month. Adjust the date in your browser location bar to select other dates. " +"If the export fails (possibly due to memory exhaustion on your server hub), " +"please try again selecting a more limited date range." +msgstr "Du kannst auch die Beiträge und Konversationen eines bestimmten Jahres oder Monats exportieren. Ändere das Datum in der Adresszeile Deines Browsers, um andere Zeiträume zu wählen. Falls der Export fehlschlägt (vermutlich, weil auf diesem Hub nicht genügend Speicher zur Verfügung steht), versuche es noch einmal mit einer kleineren Zeitspanne." -#: ../../Zotlabs/Module/Rmagic.php:90 -msgid "Authenticate" -msgstr "Authentifizieren" +#: ../../Zotlabs/Module/Uexport.php:63 +#, php-format +msgid "" +"To select all posts for a given year, such as this year, visit %2$s" +msgstr "Um alle Beiträge eines bestimmten Jahres, zum Beispiel dieses Jahres, auszuwählen, klicke %2$s." + +#: ../../Zotlabs/Module/Uexport.php:64 +#, php-format +msgid "" +"To select all posts for a given month, such as January of this year, visit " +"%2$s" +msgstr "Um alle Beiträge eines bestimmten Monats auszuwählen, zum Beispiel vom Januar diesen Jahres, klicke %2$s." + +#: ../../Zotlabs/Module/Uexport.php:65 +#, php-format +msgid "" +"These content files may be imported or restored by visiting %2$s on any site containing your channel. For best results" +" please import or restore these in date order (oldest first)." +msgstr "Diese Inhalts-Sicherungen können wiederhergestellt werden, indem Du %2$s auf jeglichem Hub besuchst, der diesen Kanal enthält. Das funktioniert am besten, wenn Du dabei die zeitliche Reihenfolge einhältst, also die Sicherungen für den ältesten Zeitraum zuerst importierst." #: ../../Zotlabs/Module/Search.php:216 #, php-format @@ -4894,609 +5162,652 @@ msgstr "Suchergebnisse für: %s" msgid "No service class restrictions found." msgstr "Keine Dienstklassenbeschränkungen gefunden." -#: ../../Zotlabs/Module/Settings.php:69 +#: ../../Zotlabs/Module/Settings.php:64 msgid "Name is required" msgstr "Name ist erforderlich" -#: ../../Zotlabs/Module/Settings.php:73 +#: ../../Zotlabs/Module/Settings.php:68 msgid "Key and Secret are required" msgstr "Schlüssel und Geheimnis werden benötigt" -#: ../../Zotlabs/Module/Settings.php:225 +#: ../../Zotlabs/Module/Settings.php:138 +#, php-format +msgid "This channel is limited to %d tokens" +msgstr "Dieser Kanal ist auf %d Token begrenzt" + +#: ../../Zotlabs/Module/Settings.php:144 +msgid "Name and Password are required." +msgstr "Name und Passwort sind erforderlich." + +#: ../../Zotlabs/Module/Settings.php:168 +msgid "Token saved." +msgstr "Token gespeichert." + +#: ../../Zotlabs/Module/Settings.php:274 msgid "Not valid email." msgstr "Keine gültige E-Mail Adresse." -#: ../../Zotlabs/Module/Settings.php:228 +#: ../../Zotlabs/Module/Settings.php:277 msgid "Protected email address. Cannot change to that email." msgstr "Geschützte E-Mail Adresse. Diese kann nicht verändert werden." -#: ../../Zotlabs/Module/Settings.php:237 +#: ../../Zotlabs/Module/Settings.php:286 msgid "System failure storing new email. Please try again." msgstr "Systemfehler während des Speicherns der neuen Mail. Bitte versuche es noch einmal." -#: ../../Zotlabs/Module/Settings.php:254 +#: ../../Zotlabs/Module/Settings.php:303 msgid "Password verification failed." msgstr "Passwortüberprüfung fehlgeschlagen." -#: ../../Zotlabs/Module/Settings.php:261 +#: ../../Zotlabs/Module/Settings.php:310 msgid "Passwords do not match. Password unchanged." msgstr "Kennwörter stimmen nicht überein. Kennwort nicht verändert." -#: ../../Zotlabs/Module/Settings.php:265 +#: ../../Zotlabs/Module/Settings.php:314 msgid "Empty passwords are not allowed. Password unchanged." msgstr "Leere Kennwörter sind nicht erlaubt. Kennwort nicht verändert." -#: ../../Zotlabs/Module/Settings.php:279 +#: ../../Zotlabs/Module/Settings.php:328 msgid "Password changed." msgstr "Kennwort geändert." -#: ../../Zotlabs/Module/Settings.php:281 +#: ../../Zotlabs/Module/Settings.php:330 msgid "Password update failed. Please try again." msgstr "Kennwortänderung fehlgeschlagen. Bitte versuche es noch einmal." -#: ../../Zotlabs/Module/Settings.php:525 +#: ../../Zotlabs/Module/Settings.php:579 msgid "Settings updated." msgstr "Einstellungen aktualisiert." -#: ../../Zotlabs/Module/Settings.php:589 ../../Zotlabs/Module/Settings.php:615 -#: ../../Zotlabs/Module/Settings.php:651 +#: ../../Zotlabs/Module/Settings.php:643 ../../Zotlabs/Module/Settings.php:669 +#: ../../Zotlabs/Module/Settings.php:705 msgid "Add application" msgstr "Anwendung hinzufügen" -#: ../../Zotlabs/Module/Settings.php:592 +#: ../../Zotlabs/Module/Settings.php:646 msgid "Name of application" msgstr "Name der Anwendung" -#: ../../Zotlabs/Module/Settings.php:593 ../../Zotlabs/Module/Settings.php:619 +#: ../../Zotlabs/Module/Settings.php:647 ../../Zotlabs/Module/Settings.php:673 msgid "Consumer Key" msgstr "Consumer Key" -#: ../../Zotlabs/Module/Settings.php:593 ../../Zotlabs/Module/Settings.php:594 +#: ../../Zotlabs/Module/Settings.php:647 ../../Zotlabs/Module/Settings.php:648 msgid "Automatically generated - change if desired. Max length 20" msgstr "Automatisch erzeugt – ändern, falls erwünscht. Maximale Länge 20" -#: ../../Zotlabs/Module/Settings.php:594 ../../Zotlabs/Module/Settings.php:620 +#: ../../Zotlabs/Module/Settings.php:648 ../../Zotlabs/Module/Settings.php:674 msgid "Consumer Secret" msgstr "Consumer Secret" -#: ../../Zotlabs/Module/Settings.php:595 ../../Zotlabs/Module/Settings.php:621 +#: ../../Zotlabs/Module/Settings.php:649 ../../Zotlabs/Module/Settings.php:675 msgid "Redirect" msgstr "Umleitung" -#: ../../Zotlabs/Module/Settings.php:595 +#: ../../Zotlabs/Module/Settings.php:649 msgid "" "Redirect URI - leave blank unless your application specifically requires " "this" msgstr "Umleitungs-URl – lasse das leer, solange Deine Anwendung es nicht explizit erfordert" -#: ../../Zotlabs/Module/Settings.php:596 ../../Zotlabs/Module/Settings.php:622 +#: ../../Zotlabs/Module/Settings.php:650 ../../Zotlabs/Module/Settings.php:676 msgid "Icon url" msgstr "Symbol-URL" -#: ../../Zotlabs/Module/Settings.php:596 ../../Zotlabs/Module/Sources.php:112 +#: ../../Zotlabs/Module/Settings.php:650 ../../Zotlabs/Module/Sources.php:112 #: ../../Zotlabs/Module/Sources.php:147 msgid "Optional" msgstr "Optional" -#: ../../Zotlabs/Module/Settings.php:607 +#: ../../Zotlabs/Module/Settings.php:661 msgid "Application not found." msgstr "Die Anwendung wurde nicht gefunden." -#: ../../Zotlabs/Module/Settings.php:650 +#: ../../Zotlabs/Module/Settings.php:704 msgid "Connected Apps" msgstr "Verbundene Apps" -#: ../../Zotlabs/Module/Settings.php:654 +#: ../../Zotlabs/Module/Settings.php:708 msgid "Client key starts with" msgstr "Client Key beginnt mit" -#: ../../Zotlabs/Module/Settings.php:655 +#: ../../Zotlabs/Module/Settings.php:709 msgid "No name" msgstr "Kein Name" -#: ../../Zotlabs/Module/Settings.php:656 +#: ../../Zotlabs/Module/Settings.php:710 msgid "Remove authorization" msgstr "Authorisierung aufheben" -#: ../../Zotlabs/Module/Settings.php:669 +#: ../../Zotlabs/Module/Settings.php:723 msgid "No feature settings configured" msgstr "Keine Funktions-Einstellungen konfiguriert" -#: ../../Zotlabs/Module/Settings.php:676 +#: ../../Zotlabs/Module/Settings.php:730 msgid "Feature/Addon Settings" msgstr "Funktions-/Addon-Einstellungen" -#: ../../Zotlabs/Module/Settings.php:699 +#: ../../Zotlabs/Module/Settings.php:753 msgid "Account Settings" msgstr "Konto-Einstellungen" -#: ../../Zotlabs/Module/Settings.php:700 +#: ../../Zotlabs/Module/Settings.php:754 msgid "Current Password" msgstr "Aktuelles Passwort" -#: ../../Zotlabs/Module/Settings.php:701 +#: ../../Zotlabs/Module/Settings.php:755 msgid "Enter New Password" msgstr "Gib ein neues Passwort ein" -#: ../../Zotlabs/Module/Settings.php:702 +#: ../../Zotlabs/Module/Settings.php:756 msgid "Confirm New Password" msgstr "Bestätige das neue Passwort" -#: ../../Zotlabs/Module/Settings.php:702 +#: ../../Zotlabs/Module/Settings.php:756 msgid "Leave password fields blank unless changing" msgstr "Lasse die Passwort-Felder leer, außer Du möchtest das Passwort ändern" -#: ../../Zotlabs/Module/Settings.php:704 -#: ../../Zotlabs/Module/Settings.php:1041 +#: ../../Zotlabs/Module/Settings.php:758 +#: ../../Zotlabs/Module/Settings.php:1136 msgid "Email Address:" msgstr "Email Adresse:" -#: ../../Zotlabs/Module/Settings.php:706 +#: ../../Zotlabs/Module/Settings.php:760 msgid "Remove this account including all its channels" msgstr "Dieses Konto inklusive all seiner Kanäle löschen" -#: ../../Zotlabs/Module/Settings.php:729 +#: ../../Zotlabs/Module/Settings.php:789 +msgid "" +"Use this form to create temporary access identifiers to share things with " +"non-members. These identities may be used in Access Control Lists and " +"visitors may login using these credentials to access the private content." +msgstr "Mit diesem Formular kannst Du temporäre Zugangs-IDs anlegen, um Inhalte mit Nicht-Mitgliedern zu teilen. Die IDs können in Berechtigungslisten (ACLs) verwendet werden, und Besucher können sich damit einloggen, um auf private Inhalte zuzugreifen." + +#: ../../Zotlabs/Module/Settings.php:791 +msgid "" +"You may also provide dropbox style access links to friends and " +"associates by adding the Login Password to any specific site URL as shown. " +"Examples:" +msgstr "Du kannst auch Dropbox-ähnliche Zugriffslinks an Andere weitergeben, indem du das Login-Passwort an eine entsprechende URL anhängst wie nachfolgend gezeigt. Beispiele:" + +#: ../../Zotlabs/Module/Settings.php:796 ../../include/widgets.php:614 +msgid "Guest Access Tokens" +msgstr "Gastzugangstoken" + +#: ../../Zotlabs/Module/Settings.php:803 +msgid "Login Name" +msgstr "Anmeldename" + +#: ../../Zotlabs/Module/Settings.php:804 +msgid "Login Password" +msgstr "Anmeldepasswort" + +#: ../../Zotlabs/Module/Settings.php:805 +msgid "Expires (yyyy-mm-dd)" +msgstr "Läuft ab (jjjj-mm-tt)" + +#: ../../Zotlabs/Module/Settings.php:830 msgid "Additional Features" msgstr "Zusätzliche Funktionen" -#: ../../Zotlabs/Module/Settings.php:753 +#: ../../Zotlabs/Module/Settings.php:854 msgid "Connector Settings" msgstr "Connector-Einstellungen" -#: ../../Zotlabs/Module/Settings.php:792 +#: ../../Zotlabs/Module/Settings.php:893 msgid "No special theme for mobile devices" msgstr "Keine spezielle Theme für mobile Geräte" -#: ../../Zotlabs/Module/Settings.php:795 +#: ../../Zotlabs/Module/Settings.php:896 #, php-format msgid "%s - (Experimental)" msgstr "%s – (experimentell)" -#: ../../Zotlabs/Module/Settings.php:837 +#: ../../Zotlabs/Module/Settings.php:938 msgid "Display Settings" msgstr "Anzeige-Einstellungen" -#: ../../Zotlabs/Module/Settings.php:838 +#: ../../Zotlabs/Module/Settings.php:939 msgid "Theme Settings" msgstr "Theme-Einstellungen" -#: ../../Zotlabs/Module/Settings.php:839 +#: ../../Zotlabs/Module/Settings.php:940 msgid "Custom Theme Settings" msgstr "Benutzerdefinierte Theme-Einstellungen" -#: ../../Zotlabs/Module/Settings.php:840 +#: ../../Zotlabs/Module/Settings.php:941 msgid "Content Settings" msgstr "Inhaltseinstellungen" -#: ../../Zotlabs/Module/Settings.php:846 +#: ../../Zotlabs/Module/Settings.php:947 msgid "Display Theme:" msgstr "Anzeige-Theme:" -#: ../../Zotlabs/Module/Settings.php:847 +#: ../../Zotlabs/Module/Settings.php:948 msgid "Mobile Theme:" msgstr "Mobile Theme:" -#: ../../Zotlabs/Module/Settings.php:848 +#: ../../Zotlabs/Module/Settings.php:949 msgid "Preload images before rendering the page" msgstr "Bilder im voraus laden, bevor die Seite angezeigt wird" -#: ../../Zotlabs/Module/Settings.php:848 +#: ../../Zotlabs/Module/Settings.php:949 msgid "" "The subjective page load time will be longer but the page will be ready when" " displayed" msgstr "Die empfundene Ladezeit wird sich erhöhen, aber dafür ist das Layout stabil, sobald eine Seite angezeigt wird" -#: ../../Zotlabs/Module/Settings.php:849 +#: ../../Zotlabs/Module/Settings.php:950 msgid "Enable user zoom on mobile devices" msgstr "Zoom auf Mobilgeräten aktivieren" -#: ../../Zotlabs/Module/Settings.php:850 +#: ../../Zotlabs/Module/Settings.php:951 msgid "Update browser every xx seconds" msgstr "Browser alle xx Sekunden aktualisieren" -#: ../../Zotlabs/Module/Settings.php:850 +#: ../../Zotlabs/Module/Settings.php:951 msgid "Minimum of 10 seconds, no maximum" msgstr "Minimum 10 Sekunden, kein Maximum" -#: ../../Zotlabs/Module/Settings.php:851 +#: ../../Zotlabs/Module/Settings.php:952 msgid "Maximum number of conversations to load at any time:" msgstr "Maximale Anzahl von Unterhaltungen, die auf einmal geladen werden sollen:" -#: ../../Zotlabs/Module/Settings.php:851 +#: ../../Zotlabs/Module/Settings.php:952 msgid "Maximum of 100 items" msgstr "Maximum: 100 Beiträge" -#: ../../Zotlabs/Module/Settings.php:852 +#: ../../Zotlabs/Module/Settings.php:953 msgid "Show emoticons (smilies) as images" msgstr "Emoticons (Smilies) als Bilder anzeigen" -#: ../../Zotlabs/Module/Settings.php:853 +#: ../../Zotlabs/Module/Settings.php:954 msgid "Link post titles to source" msgstr "Beitragstitel zum Originalbeitrag verlinken" -#: ../../Zotlabs/Module/Settings.php:854 +#: ../../Zotlabs/Module/Settings.php:955 msgid "System Page Layout Editor - (advanced)" msgstr "System-Seitenlayout-Editor (für Experten)" -#: ../../Zotlabs/Module/Settings.php:857 +#: ../../Zotlabs/Module/Settings.php:958 msgid "Use blog/list mode on channel page" msgstr "Blog-/Listenmodus auf der Kanalseite verwenden" -#: ../../Zotlabs/Module/Settings.php:857 ../../Zotlabs/Module/Settings.php:858 +#: ../../Zotlabs/Module/Settings.php:958 ../../Zotlabs/Module/Settings.php:959 msgid "(comments displayed separately)" msgstr "(Kommentare werden separat angezeigt)" -#: ../../Zotlabs/Module/Settings.php:858 +#: ../../Zotlabs/Module/Settings.php:959 msgid "Use blog/list mode on grid page" msgstr "Blog-/Listenmodus auf der Netzwerkseite verwenden" -#: ../../Zotlabs/Module/Settings.php:859 +#: ../../Zotlabs/Module/Settings.php:960 msgid "Channel page max height of content (in pixels)" msgstr "Maximale Höhe von Beitragsblöcken auf der Kanalseite (in Pixeln)" -#: ../../Zotlabs/Module/Settings.php:859 ../../Zotlabs/Module/Settings.php:860 +#: ../../Zotlabs/Module/Settings.php:960 ../../Zotlabs/Module/Settings.php:961 msgid "click to expand content exceeding this height" msgstr "Blöcke, deren Inhalt diese Höhe überschreitet, können per Klick vergrößert werden." -#: ../../Zotlabs/Module/Settings.php:860 +#: ../../Zotlabs/Module/Settings.php:961 msgid "Grid page max height of content (in pixels)" msgstr "Maximale Höhe (in Pixel) des Inhalts der Netzwerkseite" -#: ../../Zotlabs/Module/Settings.php:894 +#: ../../Zotlabs/Module/Settings.php:990 msgid "Nobody except yourself" msgstr "Niemand außer Dir selbst" -#: ../../Zotlabs/Module/Settings.php:895 +#: ../../Zotlabs/Module/Settings.php:991 msgid "Only those you specifically allow" msgstr "Nur die, denen Du es explizit erlaubst" -#: ../../Zotlabs/Module/Settings.php:896 +#: ../../Zotlabs/Module/Settings.php:992 msgid "Approved connections" msgstr "Angenommene Verbindungen" -#: ../../Zotlabs/Module/Settings.php:897 +#: ../../Zotlabs/Module/Settings.php:993 msgid "Any connections" msgstr "Beliebige Verbindungen" -#: ../../Zotlabs/Module/Settings.php:898 +#: ../../Zotlabs/Module/Settings.php:994 msgid "Anybody on this website" msgstr "Jeder auf dieser Website" -#: ../../Zotlabs/Module/Settings.php:899 +#: ../../Zotlabs/Module/Settings.php:995 msgid "Anybody in this network" msgstr "Alle $Projectname-Mitglieder" -#: ../../Zotlabs/Module/Settings.php:900 +#: ../../Zotlabs/Module/Settings.php:996 msgid "Anybody authenticated" msgstr "Jeder authentifizierte" -#: ../../Zotlabs/Module/Settings.php:901 +#: ../../Zotlabs/Module/Settings.php:997 msgid "Anybody on the internet" msgstr "Jeder im Internet" -#: ../../Zotlabs/Module/Settings.php:976 +#: ../../Zotlabs/Module/Settings.php:1071 msgid "Publish your default profile in the network directory" msgstr "Standard-Profil im Netzwerk-Verzeichnis veröffentlichen" -#: ../../Zotlabs/Module/Settings.php:981 +#: ../../Zotlabs/Module/Settings.php:1076 msgid "Allow us to suggest you as a potential friend to new members?" msgstr "Dürfen wir Dich neuen Mitgliedern als potentiellen Kontakt vorschlagen?" -#: ../../Zotlabs/Module/Settings.php:990 +#: ../../Zotlabs/Module/Settings.php:1085 msgid "Your channel address is" msgstr "Deine Kanal-Adresse lautet" -#: ../../Zotlabs/Module/Settings.php:1032 +#: ../../Zotlabs/Module/Settings.php:1127 msgid "Channel Settings" msgstr "Kanal-Einstellungen" -#: ../../Zotlabs/Module/Settings.php:1039 +#: ../../Zotlabs/Module/Settings.php:1134 msgid "Basic Settings" msgstr "Grundeinstellungen" -#: ../../Zotlabs/Module/Settings.php:1040 ../../include/channel.php:1140 +#: ../../Zotlabs/Module/Settings.php:1135 ../../include/channel.php:1180 msgid "Full Name:" msgstr "Voller Name:" -#: ../../Zotlabs/Module/Settings.php:1042 +#: ../../Zotlabs/Module/Settings.php:1137 msgid "Your Timezone:" msgstr "Ihre Zeitzone:" -#: ../../Zotlabs/Module/Settings.php:1043 +#: ../../Zotlabs/Module/Settings.php:1138 msgid "Default Post Location:" msgstr "Standardstandort:" -#: ../../Zotlabs/Module/Settings.php:1043 +#: ../../Zotlabs/Module/Settings.php:1138 msgid "Geographical location to display on your posts" msgstr "Geografischer Ort, der bei Deinen Beiträgen angezeigt werden soll" -#: ../../Zotlabs/Module/Settings.php:1044 +#: ../../Zotlabs/Module/Settings.php:1139 msgid "Use Browser Location:" msgstr "Standort des Browsers verwenden:" -#: ../../Zotlabs/Module/Settings.php:1046 +#: ../../Zotlabs/Module/Settings.php:1141 msgid "Adult Content" msgstr "Nicht jugendfreie Inhalte" -#: ../../Zotlabs/Module/Settings.php:1046 +#: ../../Zotlabs/Module/Settings.php:1141 msgid "" "This channel frequently or regularly publishes adult content. (Please tag " "any adult material and/or nudity with #NSFW)" msgstr "Dieser Kanal veröffentlicht regelmäßig Inhalte, die für Minderjährige ungeeignet sind. (Bitte markiere solche Inhalte mit dem Schlagwort #NSFW)" -#: ../../Zotlabs/Module/Settings.php:1048 +#: ../../Zotlabs/Module/Settings.php:1143 msgid "Security and Privacy Settings" msgstr "Sicherheits- und Datenschutz-Einstellungen" -#: ../../Zotlabs/Module/Settings.php:1051 +#: ../../Zotlabs/Module/Settings.php:1146 msgid "Your permissions are already configured. Click to view/adjust" msgstr "Deine Zugriffsrechte sind schon konfiguriert. Klicke hier, um sie zu betrachten oder zu ändern" -#: ../../Zotlabs/Module/Settings.php:1053 +#: ../../Zotlabs/Module/Settings.php:1148 msgid "Hide my online presence" msgstr "Meine Online-Präsenz verbergen" -#: ../../Zotlabs/Module/Settings.php:1053 +#: ../../Zotlabs/Module/Settings.php:1148 msgid "Prevents displaying in your profile that you are online" msgstr "Verhindert die Anzeige Deines Online-Status in deinem Profil" -#: ../../Zotlabs/Module/Settings.php:1055 +#: ../../Zotlabs/Module/Settings.php:1150 msgid "Simple Privacy Settings:" msgstr "Einfache Privatsphäre-Einstellungen" -#: ../../Zotlabs/Module/Settings.php:1056 +#: ../../Zotlabs/Module/Settings.php:1151 msgid "" "Very Public - extremely permissive (should be used with caution)" msgstr "Komplett offen – extrem ungeschützt (mit großer Vorsicht verwenden!)" -#: ../../Zotlabs/Module/Settings.php:1057 +#: ../../Zotlabs/Module/Settings.php:1152 msgid "" "Typical - default public, privacy when desired (similar to social " "network permissions but with improved privacy)" msgstr "Typisch – Standard öffentlich, Privatsphäre, wo sie erwünscht ist (ähnlich den Einstellungen in sozialen Netzwerken, aber mit besser geschützter Privatsphäre)" -#: ../../Zotlabs/Module/Settings.php:1058 +#: ../../Zotlabs/Module/Settings.php:1153 msgid "Private - default private, never open or public" msgstr "Privat – Standard privat, nie offen oder öffentlich" -#: ../../Zotlabs/Module/Settings.php:1059 +#: ../../Zotlabs/Module/Settings.php:1154 msgid "Blocked - default blocked to/from everybody" msgstr "Blockiert – Alle standardmäßig blockiert" -#: ../../Zotlabs/Module/Settings.php:1061 +#: ../../Zotlabs/Module/Settings.php:1156 msgid "Allow others to tag your posts" msgstr "Erlaube anderen, Deine Beiträge zu verschlagworten" -#: ../../Zotlabs/Module/Settings.php:1061 +#: ../../Zotlabs/Module/Settings.php:1156 msgid "" "Often used by the community to retro-actively flag inappropriate content" msgstr "Wird oft von der Community genutzt um rückwirkend anstößigen Inhalt zu markieren" -#: ../../Zotlabs/Module/Settings.php:1063 +#: ../../Zotlabs/Module/Settings.php:1158 msgid "Advanced Privacy Settings" msgstr "Fortgeschrittene Privatsphäre-Einstellungen" -#: ../../Zotlabs/Module/Settings.php:1065 +#: ../../Zotlabs/Module/Settings.php:1160 msgid "Expire other channel content after this many days" msgstr "Den Inhalt anderer Kanäle nach dieser Anzahl Tage verfallen lassen" -#: ../../Zotlabs/Module/Settings.php:1065 +#: ../../Zotlabs/Module/Settings.php:1160 msgid "0 or blank to use the website limit." msgstr "0 oder leer lassen, um den voreingestellten Wert der Webseite zu verwenden." -#: ../../Zotlabs/Module/Settings.php:1065 +#: ../../Zotlabs/Module/Settings.php:1160 #, php-format msgid "This website expires after %d days." msgstr "Diese Webseite läuft nach %d Tagen ab." -#: ../../Zotlabs/Module/Settings.php:1065 +#: ../../Zotlabs/Module/Settings.php:1160 msgid "This website does not expire imported content." msgstr "Diese Webseite lässt importierte Inhalte nicht verfallen." -#: ../../Zotlabs/Module/Settings.php:1065 +#: ../../Zotlabs/Module/Settings.php:1160 msgid "The website limit takes precedence if lower than your limit." msgstr "Das Verfallslimit der Webseite hat Vorrang, wenn es niedriger als Deines hier ist." -#: ../../Zotlabs/Module/Settings.php:1066 +#: ../../Zotlabs/Module/Settings.php:1161 msgid "Maximum Friend Requests/Day:" msgstr "Maximale Kontaktanfragen pro Tag:" -#: ../../Zotlabs/Module/Settings.php:1066 +#: ../../Zotlabs/Module/Settings.php:1161 msgid "May reduce spam activity" msgstr "Kann die Spam-Aktivität verringern" -#: ../../Zotlabs/Module/Settings.php:1067 +#: ../../Zotlabs/Module/Settings.php:1162 msgid "Default Post and Publish Permissions" msgstr "Standard-Berechtigungen für Beiträge und andere Inhalte" -#: ../../Zotlabs/Module/Settings.php:1069 +#: ../../Zotlabs/Module/Settings.php:1164 msgid "Use my default audience setting for the type of object published" msgstr "Verwende Deine eingestellte Standard-Zielgruppe des jeweiligen Inhaltstyps" -#: ../../Zotlabs/Module/Settings.php:1072 +#: ../../Zotlabs/Module/Settings.php:1167 msgid "Channel permissions category:" msgstr "Zugriffsrechte-Kategorie des Kanals:" -#: ../../Zotlabs/Module/Settings.php:1078 +#: ../../Zotlabs/Module/Settings.php:1173 msgid "Maximum private messages per day from unknown people:" msgstr "Maximale Anzahl privater Nachrichten pro Tag von unbekannten Leuten:" -#: ../../Zotlabs/Module/Settings.php:1078 +#: ../../Zotlabs/Module/Settings.php:1173 msgid "Useful to reduce spamming" msgstr "Nützlich, um Spam zu verringern" -#: ../../Zotlabs/Module/Settings.php:1081 +#: ../../Zotlabs/Module/Settings.php:1176 msgid "Notification Settings" msgstr "Benachrichtigungs-Einstellungen" -#: ../../Zotlabs/Module/Settings.php:1082 +#: ../../Zotlabs/Module/Settings.php:1177 msgid "By default post a status message when:" msgstr "Sende standardmäßig Status-Nachrichten, wenn:" -#: ../../Zotlabs/Module/Settings.php:1083 +#: ../../Zotlabs/Module/Settings.php:1178 msgid "accepting a friend request" msgstr "Du eine Verbindungsanfrage annimmst" -#: ../../Zotlabs/Module/Settings.php:1084 +#: ../../Zotlabs/Module/Settings.php:1179 msgid "joining a forum/community" msgstr "Du einem Forum beitrittst" -#: ../../Zotlabs/Module/Settings.php:1085 +#: ../../Zotlabs/Module/Settings.php:1180 msgid "making an interesting profile change" msgstr "Du eine interessante Änderung an Deinem Profil vornimmst" -#: ../../Zotlabs/Module/Settings.php:1086 +#: ../../Zotlabs/Module/Settings.php:1181 msgid "Send a notification email when:" msgstr "Eine E-Mail-Benachrichtigung senden, wenn:" -#: ../../Zotlabs/Module/Settings.php:1087 +#: ../../Zotlabs/Module/Settings.php:1182 msgid "You receive a connection request" msgstr "Du eine Verbindungsanfrage erhältst" -#: ../../Zotlabs/Module/Settings.php:1088 +#: ../../Zotlabs/Module/Settings.php:1183 msgid "Your connections are confirmed" msgstr "Eine Verbindung bestätigt wurde" -#: ../../Zotlabs/Module/Settings.php:1089 +#: ../../Zotlabs/Module/Settings.php:1184 msgid "Someone writes on your profile wall" msgstr "Jemand auf Deine Pinnwand schreibt" -#: ../../Zotlabs/Module/Settings.php:1090 +#: ../../Zotlabs/Module/Settings.php:1185 msgid "Someone writes a followup comment" msgstr "Jemand einen Beitrag kommentiert" -#: ../../Zotlabs/Module/Settings.php:1091 +#: ../../Zotlabs/Module/Settings.php:1186 msgid "You receive a private message" msgstr "Du eine private Nachricht erhältst" -#: ../../Zotlabs/Module/Settings.php:1092 +#: ../../Zotlabs/Module/Settings.php:1187 msgid "You receive a friend suggestion" msgstr "Du einen Kontaktvorschlag erhältst" -#: ../../Zotlabs/Module/Settings.php:1093 +#: ../../Zotlabs/Module/Settings.php:1188 msgid "You are tagged in a post" msgstr "Du in einem Beitrag erwähnt wurdest" -#: ../../Zotlabs/Module/Settings.php:1094 +#: ../../Zotlabs/Module/Settings.php:1189 msgid "You are poked/prodded/etc. in a post" msgstr "Du in einem Beitrag angestupst/geknufft/o.ä. wurdest" -#: ../../Zotlabs/Module/Settings.php:1097 +#: ../../Zotlabs/Module/Settings.php:1192 msgid "Show visual notifications including:" msgstr "Visuelle Benachrichtigungen anzeigen für:" -#: ../../Zotlabs/Module/Settings.php:1099 +#: ../../Zotlabs/Module/Settings.php:1194 msgid "Unseen grid activity" msgstr "Ungesehene Netzwerk-Aktivität" -#: ../../Zotlabs/Module/Settings.php:1100 +#: ../../Zotlabs/Module/Settings.php:1195 msgid "Unseen channel activity" msgstr "Ungesehene Kanal-Aktivität" -#: ../../Zotlabs/Module/Settings.php:1101 +#: ../../Zotlabs/Module/Settings.php:1196 msgid "Unseen private messages" msgstr "Ungelesene persönliche Nachrichten" -#: ../../Zotlabs/Module/Settings.php:1101 -#: ../../Zotlabs/Module/Settings.php:1106 -#: ../../Zotlabs/Module/Settings.php:1107 -#: ../../Zotlabs/Module/Settings.php:1108 +#: ../../Zotlabs/Module/Settings.php:1196 +#: ../../Zotlabs/Module/Settings.php:1201 +#: ../../Zotlabs/Module/Settings.php:1202 +#: ../../Zotlabs/Module/Settings.php:1203 msgid "Recommended" msgstr "Empfohlen" -#: ../../Zotlabs/Module/Settings.php:1102 +#: ../../Zotlabs/Module/Settings.php:1197 msgid "Upcoming events" msgstr "Baldige Termine" -#: ../../Zotlabs/Module/Settings.php:1103 +#: ../../Zotlabs/Module/Settings.php:1198 msgid "Events today" msgstr "Heutige Termine" -#: ../../Zotlabs/Module/Settings.php:1104 +#: ../../Zotlabs/Module/Settings.php:1199 msgid "Upcoming birthdays" msgstr "Baldige Geburtstage" -#: ../../Zotlabs/Module/Settings.php:1104 +#: ../../Zotlabs/Module/Settings.php:1199 msgid "Not available in all themes" msgstr "Nicht in allen Themes verfügbar" -#: ../../Zotlabs/Module/Settings.php:1105 +#: ../../Zotlabs/Module/Settings.php:1200 msgid "System (personal) notifications" msgstr "System – (persönliche) Benachrichtigungen" -#: ../../Zotlabs/Module/Settings.php:1106 +#: ../../Zotlabs/Module/Settings.php:1201 msgid "System info messages" msgstr "System – Info-Nachrichten" -#: ../../Zotlabs/Module/Settings.php:1107 +#: ../../Zotlabs/Module/Settings.php:1202 msgid "System critical alerts" msgstr "System – kritische Warnungen" -#: ../../Zotlabs/Module/Settings.php:1108 +#: ../../Zotlabs/Module/Settings.php:1203 msgid "New connections" msgstr "Neue Verbindungen" -#: ../../Zotlabs/Module/Settings.php:1109 +#: ../../Zotlabs/Module/Settings.php:1204 msgid "System Registrations" msgstr "System – Registrierungen" -#: ../../Zotlabs/Module/Settings.php:1110 +#: ../../Zotlabs/Module/Settings.php:1205 msgid "" "Also show new wall posts, private messages and connections under Notices" msgstr "Neue Pinnwand-Nachrichten, private Nachrichten und Verbindungen unter Benachrichtigungen anzeigen" -#: ../../Zotlabs/Module/Settings.php:1112 +#: ../../Zotlabs/Module/Settings.php:1207 msgid "Notify me of events this many days in advance" msgstr "Benachrichtige mich zu Terminen so viele Tage im Voraus" -#: ../../Zotlabs/Module/Settings.php:1112 +#: ../../Zotlabs/Module/Settings.php:1207 msgid "Must be greater than 0" msgstr "Muss größer als 0 sein" -#: ../../Zotlabs/Module/Settings.php:1114 +#: ../../Zotlabs/Module/Settings.php:1209 msgid "Advanced Account/Page Type Settings" msgstr "Erweiterte Account- und Seitenart-Einstellungen" -#: ../../Zotlabs/Module/Settings.php:1115 +#: ../../Zotlabs/Module/Settings.php:1210 msgid "Change the behaviour of this account for special situations" msgstr "Ändere das Verhalten dieses Accounts unter speziellen Umständen" -#: ../../Zotlabs/Module/Settings.php:1118 +#: ../../Zotlabs/Module/Settings.php:1213 msgid "" "Please enable expert mode (in Settings > " "Additional features) to adjust!" msgstr "Aktiviere den Expertenmodus (unter Settings > Zusätzliche Funktionen), um hier Einstellungen vorzunehmen!" -#: ../../Zotlabs/Module/Settings.php:1119 +#: ../../Zotlabs/Module/Settings.php:1214 msgid "Miscellaneous Settings" msgstr "Sonstige Einstellungen" -#: ../../Zotlabs/Module/Settings.php:1120 +#: ../../Zotlabs/Module/Settings.php:1215 msgid "Default photo upload folder" msgstr "Voreingestellter Ordner für hochgeladene Fotos" -#: ../../Zotlabs/Module/Settings.php:1120 -#: ../../Zotlabs/Module/Settings.php:1121 +#: ../../Zotlabs/Module/Settings.php:1215 +#: ../../Zotlabs/Module/Settings.php:1216 msgid "%Y - current year, %m - current month" msgstr "%Y - aktuelles Jahr, %m - aktueller Monat" -#: ../../Zotlabs/Module/Settings.php:1121 +#: ../../Zotlabs/Module/Settings.php:1216 msgid "Default file upload folder" msgstr "Voreingestellter Ordner für hochgeladene Dateien" -#: ../../Zotlabs/Module/Settings.php:1123 +#: ../../Zotlabs/Module/Settings.php:1218 msgid "Personal menu to display in your channel pages" msgstr "Eigenes Menü zur Anzeige auf den Seiten deines Kanals" -#: ../../Zotlabs/Module/Settings.php:1125 +#: ../../Zotlabs/Module/Settings.php:1220 msgid "Remove this channel." msgstr "Diesen Kanal löschen" -#: ../../Zotlabs/Module/Settings.php:1126 +#: ../../Zotlabs/Module/Settings.php:1221 msgid "Firefox Share $Projectname provider" msgstr "$Projectname-Provider für Firefox Share" -#: ../../Zotlabs/Module/Settings.php:1127 +#: ../../Zotlabs/Module/Settings.php:1222 msgid "Start calendar week on monday" msgstr "Montag als erster Tag der Kalenderwoche" @@ -5529,7 +5840,7 @@ msgid "" msgstr "Möglicherweise musst Du die Datei install/schema_xxx.sql manuell mit Hilfe eines Datenkbank-Clients importieren." #: ../../Zotlabs/Module/Setup.php:204 ../../Zotlabs/Module/Setup.php:266 -#: ../../Zotlabs/Module/Setup.php:721 +#: ../../Zotlabs/Module/Setup.php:722 msgid "Please see the file \"install/INSTALL.txt\"." msgstr "Lies die Datei \"install/INSTALL.txt\"." @@ -5729,199 +6040,200 @@ msgid "mb_string PHP module" msgstr "mb_string-PHP-Modul" #: ../../Zotlabs/Module/Setup.php:496 -msgid "mcrypt PHP module" -msgstr "mcrypt-PHP-Modul" - -#: ../../Zotlabs/Module/Setup.php:497 msgid "xml PHP module" msgstr "xml-PHP-Modul" -#: ../../Zotlabs/Module/Setup.php:501 ../../Zotlabs/Module/Setup.php:503 +#: ../../Zotlabs/Module/Setup.php:500 ../../Zotlabs/Module/Setup.php:502 msgid "Apache mod_rewrite module" msgstr "Apache-mod_rewrite-Modul" -#: ../../Zotlabs/Module/Setup.php:501 +#: ../../Zotlabs/Module/Setup.php:500 msgid "" "Error: Apache webserver mod-rewrite module is required but not installed." msgstr "Fehler: Das Apache-Modul mod-rewrite wird benötigt, ist aber nicht installiert." -#: ../../Zotlabs/Module/Setup.php:507 ../../Zotlabs/Module/Setup.php:510 +#: ../../Zotlabs/Module/Setup.php:506 ../../Zotlabs/Module/Setup.php:509 msgid "proc_open" msgstr "proc_open" -#: ../../Zotlabs/Module/Setup.php:507 +#: ../../Zotlabs/Module/Setup.php:506 msgid "" "Error: proc_open is required but is either not installed or has been " "disabled in php.ini" msgstr "Fehler: proc_open wird benötigt, ist aber entweder nicht installiert oder wurde in der php.ini deaktiviert" -#: ../../Zotlabs/Module/Setup.php:515 +#: ../../Zotlabs/Module/Setup.php:514 msgid "Error: libCURL PHP module required but not installed." msgstr "Fehler: Das PHP-Modul libCURL wird benötigt, ist aber nicht installiert." -#: ../../Zotlabs/Module/Setup.php:519 +#: ../../Zotlabs/Module/Setup.php:518 msgid "" "Error: GD graphics PHP module with JPEG support required but not installed." msgstr "Fehler: Das PHP-Modul GD-Grafik mit JPEG-Unterstützung wird benötigt, ist aber nicht installiert." -#: ../../Zotlabs/Module/Setup.php:523 +#: ../../Zotlabs/Module/Setup.php:522 msgid "Error: openssl PHP module required but not installed." msgstr "Fehler: Das PHP-Modul openssl wird benötigt, ist aber nicht installiert." -#: ../../Zotlabs/Module/Setup.php:527 +#: ../../Zotlabs/Module/Setup.php:526 msgid "" "Error: mysqli or postgres PHP module required but neither are installed." msgstr "Fehler: Das mysqli oder postgres PHP-Modul ist erforderlich, aber keines von beiden ist installiert." -#: ../../Zotlabs/Module/Setup.php:531 +#: ../../Zotlabs/Module/Setup.php:530 msgid "Error: mb_string PHP module required but not installed." msgstr "Fehler: Das PHP-Modul mb_string wird benötigt, ist aber nicht installiert." -#: ../../Zotlabs/Module/Setup.php:535 -msgid "Error: mcrypt PHP module required but not installed." -msgstr "Fehler: Das PHP-Modul mcrypt wird benötigt, ist aber nicht installiert." - -#: ../../Zotlabs/Module/Setup.php:539 +#: ../../Zotlabs/Module/Setup.php:534 msgid "Error: xml PHP module required for DAV but not installed." msgstr "Fehler: Das xml-PHP-Modul wird für DAV benötigt, ist aber nicht installiert." -#: ../../Zotlabs/Module/Setup.php:557 +#: ../../Zotlabs/Module/Setup.php:552 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 "Der Installations-Assistent muss in der Lage sein, die Datei \".htconfig.php\" im Stammverzeichnis des Web-Servers anzulegen, ist er aber nicht." -#: ../../Zotlabs/Module/Setup.php:558 +#: ../../Zotlabs/Module/Setup.php:553 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 "Meist liegt das daran, dass der Nutzer, unter dem der Web-Server läuft, keine Schreibrechte in dem Verzeichnis hat – selbst wenn Du selbst das darfst." -#: ../../Zotlabs/Module/Setup.php:559 +#: ../../Zotlabs/Module/Setup.php:554 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 "Am Schluss dieses Vorgangs wird ein Text generiert, den Du unter dem Dateinamen .htconfig.php im Stammverzeichnis Deiner Hubzilla-Installation speichern musst." -#: ../../Zotlabs/Module/Setup.php:560 +#: ../../Zotlabs/Module/Setup.php:555 msgid "" "You can alternatively skip this procedure and perform a manual installation." " Please see the file \"install/INSTALL.txt\" for instructions." msgstr "Alternativ kannst Du diesen Schritt überspringen und die Installation manuell vornehmen. Lies dazu die Datei install/INSTALL.txt." -#: ../../Zotlabs/Module/Setup.php:563 +#: ../../Zotlabs/Module/Setup.php:558 msgid ".htconfig.php is writable" msgstr ".htconfig.php ist beschreibbar" -#: ../../Zotlabs/Module/Setup.php:577 +#: ../../Zotlabs/Module/Setup.php:572 msgid "" "Red uses the Smarty3 template engine to render its web views. Smarty3 " "compiles templates to PHP to speed up rendering." msgstr "$Projectname verwendet Smarty3 um Vorlagen für die Webdarstellung zu übersetzen. Smarty3 übersetzt diese Vorlagen nach PHP, um die Darstellung zu beschleunigen." -#: ../../Zotlabs/Module/Setup.php:578 +#: ../../Zotlabs/Module/Setup.php:573 #, php-format msgid "" "In order to store these compiled templates, the web server needs to have " "write access to the directory %s under the top level web folder." msgstr "Um diese kompilierten Vorlagen speichern zu können, braucht der Web-Server Schreibzugriff auf das Verzeichnis %s unterhalb des Hubzilla-Stammverzeichnisses." -#: ../../Zotlabs/Module/Setup.php:579 ../../Zotlabs/Module/Setup.php:600 +#: ../../Zotlabs/Module/Setup.php:574 ../../Zotlabs/Module/Setup.php:595 msgid "" "Please ensure that the user that your web server runs as (e.g. www-data) has" " write access to this folder." msgstr "Bitte stelle sicher, dass der Nutzer, unter dem der Web-Server läuft (z.B. www-data), Schreibzugriff auf dieses Verzeichnis hat." -#: ../../Zotlabs/Module/Setup.php:580 +#: ../../Zotlabs/Module/Setup.php:575 #, 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 "Hinweis: Aus Sicherheitsgründen sollte der Web-Server nur auf %s Schreibrechte haben, nicht auf die Template-Dateien (.tpl), die das Verzeichnis enthält." -#: ../../Zotlabs/Module/Setup.php:583 +#: ../../Zotlabs/Module/Setup.php:578 #, php-format msgid "%s is writable" msgstr "%s ist beschreibbar" -#: ../../Zotlabs/Module/Setup.php:599 +#: ../../Zotlabs/Module/Setup.php:594 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" -msgstr "$Projectname benutzt das Verzeichnis store, um hochgeladene Dateien zu speichern. Der Webserver benötigt Schreibrechte für dieses Verzeichnis direkt unterhalb des Red-Stammverzeichnisses" +"This software 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 "Diese Software benutzt das Verzeichnis store, um hochgeladene Dateien zu speichern. Der Web-Server benötigt Schreibrechte für dieses Verzeichnis direkt unterhalb des Hubzilla-Stammverzeichnisses" -#: ../../Zotlabs/Module/Setup.php:603 +#: ../../Zotlabs/Module/Setup.php:598 msgid "store is writable" msgstr "store ist schreibbar" -#: ../../Zotlabs/Module/Setup.php:636 +#: ../../Zotlabs/Module/Setup.php:631 msgid "" "SSL certificate cannot be validated. Fix certificate or disable https access" " to this site." msgstr "Das SSL-Zertifikat konnte nicht validiert werden. Korrigiere das Zertifikat oder deaktiviere den HTTPS-Zugriff auf diesen Server." -#: ../../Zotlabs/Module/Setup.php:637 +#: ../../Zotlabs/Module/Setup.php:632 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 "Wenn Du via HTTPS auf Deinen Server zugreifen möchtest, also Verbindungen über den Port 443 möglich sein sollen, ist ein SSL-Zertifikat einer Zertifizierungsstelle (CA) notwendig, das von den Browsern ohne Sicherheitsabfrage akzeptiert wird. Die Verwendung eines selbst signierten Zertifikates ist nicht möglich." -#: ../../Zotlabs/Module/Setup.php:638 +#: ../../Zotlabs/Module/Setup.php:633 msgid "" "This restriction is incorporated because public posts from you may for " "example contain references to images on your own hub." msgstr "Diese Einschränkung wurde eingebaut, weil Deine öffentlichen Beiträge zum Beispiel Verweise auf Bilder auf Deinem eigenen Hub enthalten können." -#: ../../Zotlabs/Module/Setup.php:639 +#: ../../Zotlabs/Module/Setup.php:634 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." msgstr "Wenn Dein Zertifikat nicht von jedem Browser akzeptiert wird, erhalten die Mitglieder anderer $Projectname-Hubs (die mit korrekten Zertifikaten ausgestattet sind) Sicherheits-Warnmeldungen, obwohl sie gar nicht direkt auf Deinem Server unterwegs sind (zum Beispiel, wenn ein Bild aus einem Deiner Beiträge angezeigt wird)." -#: ../../Zotlabs/Module/Setup.php:640 +#: ../../Zotlabs/Module/Setup.php:635 msgid "" "This can cause usability issues elsewhere (not just on your own site) so we " "must insist on this requirement." msgstr "Dies kann Probleme für andere Nutzer (nicht nur auf Deinem eigenen Server) verursachen, so dass wir auf dieser Forderung bestehen müssen." -#: ../../Zotlabs/Module/Setup.php:641 +#: ../../Zotlabs/Module/Setup.php:636 msgid "" "Providers are available that issue free certificates which are browser-" "valid." msgstr "Es gibt einige Zertifizierungsstellen (CAs), bei denen solche Zertifikate kostenlos zu haben sind." -#: ../../Zotlabs/Module/Setup.php:643 +#: ../../Zotlabs/Module/Setup.php:638 +msgid "" +"If you are confident that the certificate is valid and signed by a trusted " +"authority, check to see if you have failed to install an intermediate cert. " +"These are not normally required by browsers, but are required for server-to-" +"server communications." +msgstr "Wenn Du sicher bist, dass das Zertifikat gültig und von einer vertrauenswürdigen Zertifizierungsstelle signiert ist, prüfe auf ggf. noch zu installierende Zwischenzertifikate (intermediate). Diese werden nicht unbedingt von Browsern benötigt, aber sehr wohl für die Kommunikation zwischen Servern." + +#: ../../Zotlabs/Module/Setup.php:641 msgid "SSL certificate validation" msgstr "SSL Zertifikatverifizierung" -#: ../../Zotlabs/Module/Setup.php:649 +#: ../../Zotlabs/Module/Setup.php:647 msgid "" "Url rewrite in .htaccess is not working. Check your server " "configuration.Test: " msgstr "Das Umschreiben von URLs (rewrite) per .htaccess funktioniert nicht. Bitte prüfe die Server-Konfiguration. Test:" -#: ../../Zotlabs/Module/Setup.php:652 +#: ../../Zotlabs/Module/Setup.php:650 msgid "Url rewrite is working" msgstr "Url rewrite funktioniert" -#: ../../Zotlabs/Module/Setup.php:661 +#: ../../Zotlabs/Module/Setup.php:659 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 "Die Datenbank-Konfigurationsdatei „.htconfig.php“ konnte nicht geschrieben werden. Bitte verwende den unten angegebenen Text, um die Konfigurationsdatei im Stammverzeichnis des Webservers anzulegen." -#: ../../Zotlabs/Module/Setup.php:685 +#: ../../Zotlabs/Module/Setup.php:683 msgid "Errors encountered creating database tables." msgstr "Fehler beim Anlegen der Datenbank-Tabellen aufgetreten." -#: ../../Zotlabs/Module/Setup.php:719 +#: ../../Zotlabs/Module/Setup.php:720 msgid "

What next

" msgstr "

Was als Nächstes

" -#: ../../Zotlabs/Module/Setup.php:720 +#: ../../Zotlabs/Module/Setup.php:721 msgid "" "IMPORTANT: You will need to [manually] setup a scheduled task for the " "poller." @@ -5943,64 +6255,62 @@ msgstr "Alle Dateien löschen" msgid "Remove this file" msgstr "Diese Datei löschen" -#: ../../Zotlabs/Module/Siteinfo.php:19 +#: ../../Zotlabs/Module/Thing.php:114 +msgid "Thing updated" +msgstr "Sache aktualisiert" + +#: ../../Zotlabs/Module/Thing.php:166 +msgid "Object store: failed" +msgstr "Speichern des Objekts fehlgeschlagen" + +#: ../../Zotlabs/Module/Thing.php:170 +msgid "Thing added" +msgstr "Sache hinzugefügt" + +#: ../../Zotlabs/Module/Thing.php:196 #, php-format -msgid "Version %s" -msgstr "Version %s" +msgid "OBJ: %1$s %2$s %3$s" +msgstr "OBJ: %1$s %2$s %3$s" -#: ../../Zotlabs/Module/Siteinfo.php:40 -msgid "Installed plugins/addons/apps:" -msgstr "Installierte Plugins/Addons/Apps" +#: ../../Zotlabs/Module/Thing.php:259 +msgid "Show Thing" +msgstr "Sache anzeigen" -#: ../../Zotlabs/Module/Siteinfo.php:53 -msgid "No installed plugins/addons/apps" -msgstr "Keine installierten Plugins/Addons/Apps" +#: ../../Zotlabs/Module/Thing.php:266 +msgid "item not found." +msgstr "Eintrag nicht gefunden" -#: ../../Zotlabs/Module/Siteinfo.php:66 -msgid "" -"This is a hub of $Projectname - a global cooperative network of " -"decentralized privacy enhanced websites." -msgstr "Dieser Hub ist Teil von $Projectname – ein globales, kooperatives Netzwerk aus dezentralen Websites, die Rücksicht auf Deine Privatsphäre nehmen." +#: ../../Zotlabs/Module/Thing.php:299 +msgid "Edit Thing" +msgstr "Sache bearbeiten" -#: ../../Zotlabs/Module/Siteinfo.php:68 -msgid "Tag: " -msgstr "Schlagwort: " +#: ../../Zotlabs/Module/Thing.php:301 ../../Zotlabs/Module/Thing.php:351 +msgid "Select a profile" +msgstr "Wähle ein Profil" -#: ../../Zotlabs/Module/Siteinfo.php:70 -msgid "Last background fetch: " -msgstr "Letzter Hintergrundabruf:" +#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:354 +msgid "Post an activity" +msgstr "Aktivitätsnachricht senden" -#: ../../Zotlabs/Module/Siteinfo.php:72 -msgid "Current load average: " -msgstr "Aktuelles Load Average:" +#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:354 +msgid "Only sends to viewers of the applicable profile" +msgstr "Nur an Betrachter des ausgewählten Profils senden" -#: ../../Zotlabs/Module/Siteinfo.php:75 -msgid "Running at web location" -msgstr "Erreichbar unter der Web-Adresse" +#: ../../Zotlabs/Module/Thing.php:307 ../../Zotlabs/Module/Thing.php:356 +msgid "Name of thing e.g. something" +msgstr "Name der Sache, z. B. irgendwas" -#: ../../Zotlabs/Module/Siteinfo.php:76 -msgid "" -"Please visit hubzilla.org to learn more " -"about $Projectname." -msgstr "Bitte besuchen Sie hubzilla.org, um mehr über $Projectname zu erfahren." +#: ../../Zotlabs/Module/Thing.php:309 ../../Zotlabs/Module/Thing.php:357 +msgid "URL of thing (optional)" +msgstr "URL der Sache (optional)" -#: ../../Zotlabs/Module/Siteinfo.php:77 -msgid "Bug reports and issues: please visit" -msgstr "Probleme oder Fehler gefunden? Bitte besuche" +#: ../../Zotlabs/Module/Thing.php:311 ../../Zotlabs/Module/Thing.php:358 +msgid "URL for photo of thing (optional)" +msgstr "URL eines Fotos der Sache (optional)" -#: ../../Zotlabs/Module/Siteinfo.php:79 -msgid "$projectname issues" -msgstr "$projectname-Bugtracker" - -#: ../../Zotlabs/Module/Siteinfo.php:80 -msgid "" -"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot " -"com" -msgstr "Vorschläge, Lob, usw.: E-Mail an 'redmatrix' at librelist - dot - com" - -#: ../../Zotlabs/Module/Siteinfo.php:82 -msgid "Site Administrators" -msgstr "Administratoren" +#: ../../Zotlabs/Module/Thing.php:349 +msgid "Add Thing to your Profile" +msgstr "Die Sache Deinem Profil hinzufügen" #: ../../Zotlabs/Module/Sources.php:37 msgid "Failed to create source. No channel selected." @@ -6018,8 +6328,8 @@ msgstr "Quelle aktualisiert." msgid "*" msgstr "*" -#: ../../Zotlabs/Module/Sources.php:96 ../../include/widgets.php:630 -#: ../../include/features.php:71 +#: ../../Zotlabs/Module/Sources.php:96 ../../include/features.php:72 +#: ../../include/widgets.php:639 msgid "Channel Sources" msgstr "Kanal-Quellen" @@ -6095,12 +6405,12 @@ msgstr "Keine Vorschläge vorhanden. Wenn das ein neuer Server ist, versuche es msgid "Ignore/Hide" msgstr "Ignorieren/Verstecken" -#: ../../Zotlabs/Module/Tagger.php:55 ../../include/bbcode.php:256 +#: ../../Zotlabs/Module/Tagger.php:55 ../../include/bbcode.php:263 msgid "post" msgstr "Beitrag" -#: ../../Zotlabs/Module/Tagger.php:57 ../../include/text.php:1948 -#: ../../include/conversation.php:150 +#: ../../Zotlabs/Module/Tagger.php:57 ../../include/conversation.php:150 +#: ../../include/text.php:1929 msgid "comment" msgstr "Kommentar" @@ -6121,131 +6431,110 @@ msgstr "Schlagwort entfernen" msgid "Select a tag to remove: " msgstr "Schlagwort zum Entfernen auswählen:" -#: ../../Zotlabs/Module/Thing.php:114 -msgid "Thing updated" -msgstr "Sache aktualisiert" +#: ../../Zotlabs/Module/Webpages.php:191 ../../Zotlabs/Lib/Apps.php:218 +#: ../../include/nav.php:106 ../../include/conversation.php:1700 +msgid "Webpages" +msgstr "Webseiten" -#: ../../Zotlabs/Module/Thing.php:166 -msgid "Object store: failed" -msgstr "Speichern des Objekts fehlgeschlagen" +#: ../../Zotlabs/Module/Webpages.php:202 ../../include/page_widgets.php:44 +msgid "Actions" +msgstr "Aktionen" -#: ../../Zotlabs/Module/Thing.php:170 -msgid "Thing added" -msgstr "Sache hinzugefügt" +#: ../../Zotlabs/Module/Webpages.php:203 ../../include/page_widgets.php:45 +msgid "Page Link" +msgstr "Seiten-Link" -#: ../../Zotlabs/Module/Thing.php:196 -#, php-format -msgid "OBJ: %1$s %2$s %3$s" -msgstr "OBJ: %1$s %2$s %3$s" +#: ../../Zotlabs/Module/Webpages.php:204 +msgid "Page Title" +msgstr "Seitentitel" -#: ../../Zotlabs/Module/Thing.php:259 -msgid "Show Thing" -msgstr "Sache anzeigen" +#: ../../Zotlabs/Module/Wiki.php:34 +msgid "Not found" +msgstr "Nicht gefunden" -#: ../../Zotlabs/Module/Thing.php:266 -msgid "item not found." -msgstr "Eintrag nicht gefunden" +#: ../../Zotlabs/Module/Wiki.php:92 ../../Zotlabs/Lib/Apps.php:219 +#: ../../include/nav.php:108 ../../include/conversation.php:1710 +#: ../../include/conversation.php:1713 ../../include/features.php:55 +msgid "Wiki" +msgstr "Wiki" -#: ../../Zotlabs/Module/Thing.php:299 -msgid "Edit Thing" -msgstr "Sache bearbeiten" +#: ../../Zotlabs/Module/Wiki.php:93 +msgid "Sandbox" +msgstr "Sandbox" -#: ../../Zotlabs/Module/Thing.php:301 ../../Zotlabs/Module/Thing.php:351 -msgid "Select a profile" -msgstr "Wähle ein Profil" - -#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:354 -msgid "Post an activity" -msgstr "Aktivitätsnachricht senden" - -#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:354 -msgid "Only sends to viewers of the applicable profile" -msgstr "Nur an Betrachter des ausgewählten Profils senden" - -#: ../../Zotlabs/Module/Thing.php:307 ../../Zotlabs/Module/Thing.php:356 -msgid "Name of thing e.g. something" -msgstr "Name der Sache, z. B. irgendwas" - -#: ../../Zotlabs/Module/Thing.php:309 ../../Zotlabs/Module/Thing.php:357 -msgid "URL of thing (optional)" -msgstr "URL der Sache (optional)" - -#: ../../Zotlabs/Module/Thing.php:311 ../../Zotlabs/Module/Thing.php:358 -msgid "URL for photo of thing (optional)" -msgstr "URL eines Fotos der Sache (optional)" - -#: ../../Zotlabs/Module/Thing.php:349 -msgid "Add Thing to your Profile" -msgstr "Die Sache Deinem Profil hinzufügen" - -#: ../../Zotlabs/Module/Uexport.php:55 ../../Zotlabs/Module/Uexport.php:56 -msgid "Export Channel" -msgstr "Kanal exportieren" - -#: ../../Zotlabs/Module/Uexport.php:57 +#: ../../Zotlabs/Module/Wiki.php:95 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 "Exportiert die grundlegenden Kanal-Informationen in eine kleine Datei. Diese stellt eine Sicherung Deiner Verbindungen, Berechtigungen, Profile und Basisdaten bereit, die für den Import auf einem anderen Hub verwendet werden kann, aber nicht die Beiträge Deines Kanals enthält." +"\"# Wiki Sandbox\\n\\nContent you **edit** and **preview** here *will not be" +" saved*.\"" +msgstr "\"# Wiki Sandkasten\\n\\nInhalte, die Du hier **veränderst** und **als Vorschau anzeigst**, *werden nicht gespeichert*.\"" -#: ../../Zotlabs/Module/Uexport.php:58 -msgid "Export Content" -msgstr "Kanal und Inhalte exportieren" +#: ../../Zotlabs/Module/Wiki.php:164 +msgid "Revision Comparison" +msgstr "Revisionsvergleich" -#: ../../Zotlabs/Module/Uexport.php:59 -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 "Exportiert Deine Kanal-Informationen sowie alle zugehörigen Inhalte in eine JSON-Sicherungsdatei. Die sichert alle Verbindungen, Berechtigungen, Profildaten und Deine Beiträge aus mehreren Monaten. Diese Datei kann SEHR groß werden! Bitte habe ein wenig Geduld – es kann mehrere Minuten dauern, bis der Download startet." +#: ../../Zotlabs/Module/Wiki.php:165 +msgid "Revert" +msgstr "Rückgängig machen" -#: ../../Zotlabs/Module/Uexport.php:60 -msgid "Export your posts from a given year." -msgstr "Exportiert die Beiträge des angegebenen Jahres." +#: ../../Zotlabs/Module/Wiki.php:192 +msgid "Enter the name of your new wiki:" +msgstr "Gib einen Namen für Dein neues Wiki ein:" -#: ../../Zotlabs/Module/Uexport.php:62 -msgid "" -"You may also export your posts and conversations for a particular year or " -"month. Adjust the date in your browser location bar to select other dates. " -"If the export fails (possibly due to memory exhaustion on your server hub), " -"please try again selecting a more limited date range." -msgstr "Du kannst auch die Beiträge und Konversationen eines bestimmten Jahres oder Monats exportieren. Ändere das Datum in der Adresszeile Deines Browsers, um andere Zeiträume zu wählen. Falls der Export fehlschlägt (vermutlich, weil auf diesem Hub nicht genügend Speicher zur Verfügung steht), versuche es noch einmal mit einer kleineren Zeitspanne." +#: ../../Zotlabs/Module/Wiki.php:193 +msgid "Enter the name of the new page:" +msgstr "Geben Sie den Namen der neuen Seite ein:" -#: ../../Zotlabs/Module/Uexport.php:63 -#, php-format -msgid "" -"To select all posts for a given year, such as this year, visit %2$s" -msgstr "Um alle Beiträge eines bestimmten Jahres, zum Beispiel dieses Jahres, auszuwählen, klicke %2$s." +#: ../../Zotlabs/Module/Wiki.php:194 +msgid "Enter the new name:" +msgstr "Geben Sie den neuen Namen ein:" -#: ../../Zotlabs/Module/Uexport.php:64 -#, php-format -msgid "" -"To select all posts for a given month, such as January of this year, visit " -"%2$s" -msgstr "Um alle Beiträge eines bestimmten Monats auszuwählen, zum Beispiel vom Januar diesen Jahres, klicke %2$s." +#: ../../Zotlabs/Module/Wiki.php:200 ../../include/conversation.php:1150 +msgid "Embed image from photo albums" +msgstr "Bild aus Fotoalben einbetten" -#: ../../Zotlabs/Module/Uexport.php:65 -#, php-format -msgid "" -"These content files may be imported or restored by visiting %2$s on any site containing your channel. For best results" -" please import or restore these in date order (oldest first)." -msgstr "Diese Inhalts-Sicherungen können wiederhergestellt werden, indem Du %2$s auf jeglichem Hub besuchst, der diesen Kanal enthält. Das funktioniert am besten, wenn Du dabei die zeitliche Reihenfolge einhältst, also die Sicherungen für den ältesten Zeitraum zuerst importierst." +#: ../../Zotlabs/Module/Wiki.php:201 ../../include/conversation.php:1234 +msgid "Embed an image from your albums" +msgstr "Betten Sie ein Bild aus Ihren Alben ein" -#: ../../Zotlabs/Module/Viewconnections.php:62 +#: ../../Zotlabs/Module/Wiki.php:203 ../../include/conversation.php:1236 +#: ../../include/conversation.php:1273 +msgid "OK" +msgstr "Ok" + +#: ../../Zotlabs/Module/Wiki.php:204 ../../include/conversation.php:1186 +msgid "Choose images to embed" +msgstr "Wählen Sie Bilder zum Einbetten aus" + +#: ../../Zotlabs/Module/Wiki.php:205 ../../include/conversation.php:1187 +msgid "Choose an album" +msgstr "Wählen Sie ein Album aus" + +#: ../../Zotlabs/Module/Wiki.php:206 ../../include/conversation.php:1188 +msgid "Choose a different album..." +msgstr "Wählen Sie ein anderes Album aus..." + +#: ../../Zotlabs/Module/Wiki.php:207 ../../include/conversation.php:1189 +msgid "Error getting album list" +msgstr "Fehler beim Holen der Albenliste" + +#: ../../Zotlabs/Module/Wiki.php:208 ../../include/conversation.php:1190 +msgid "Error getting photo link" +msgstr "Fehler beim Holen des Fotolinks" + +#: ../../Zotlabs/Module/Wiki.php:209 ../../include/conversation.php:1191 +msgid "Error getting album" +msgstr "Fehler beim Holen des Albums" + +#: ../../Zotlabs/Module/Viewconnections.php:65 msgid "No connections." msgstr "Keine Verbindungen." -#: ../../Zotlabs/Module/Viewconnections.php:75 +#: ../../Zotlabs/Module/Viewconnections.php:78 #, php-format msgid "Visit %s's profile [%s]" msgstr "%ss Profil [%s] besuchen" -#: ../../Zotlabs/Module/Viewconnections.php:104 +#: ../../Zotlabs/Module/Viewconnections.php:107 msgid "View Connections" msgstr "Verbindungen anzeigen" @@ -6253,22 +6542,23 @@ msgstr "Verbindungen anzeigen" msgid "Source of Item" msgstr "Quelle des Elements" -#: ../../Zotlabs/Module/Webpages.php:184 ../../Zotlabs/Lib/Apps.php:217 -#: ../../include/nav.php:106 ../../include/conversation.php:1685 -msgid "Webpages" -msgstr "Webseiten" +#: ../../Zotlabs/Module/Api.php:61 ../../Zotlabs/Module/Api.php:85 +msgid "Authorize application connection" +msgstr "Zugriff für die Anwendung autorisieren" -#: ../../Zotlabs/Module/Webpages.php:195 ../../include/page_widgets.php:41 -msgid "Actions" -msgstr "Aktionen" +#: ../../Zotlabs/Module/Api.php:62 +msgid "Return to your app and insert this Securty Code:" +msgstr "Trage folgenden Sicherheitscode in der Anwendung ein:" -#: ../../Zotlabs/Module/Webpages.php:196 ../../include/page_widgets.php:42 -msgid "Page Link" -msgstr "Seiten-Link" +#: ../../Zotlabs/Module/Api.php:72 +msgid "Please login to continue." +msgstr "Zum Weitermachen, bitte einloggen." -#: ../../Zotlabs/Module/Webpages.php:197 -msgid "Page Title" -msgstr "Seitentitel" +#: ../../Zotlabs/Module/Api.php:87 +msgid "" +"Do you want to authorize this application to access your posts and contacts," +" and/or create new posts for you?" +msgstr "Möchtest Du dieser Anwendung erlauben, Deine Nachrichten und Kontakte abzurufen und/oder neue Nachrichten für Dich zu erstellen?" #: ../../Zotlabs/Module/Xchan.php:10 msgid "Xchan Lookup" @@ -6278,92 +6568,6 @@ msgstr "Xchan-Suche" msgid "Lookup xchan beginning with (or webbie): " msgstr "Nach xchans oder Webbies (Kanal-Adressen) suchen, die wie folgt beginnen:" -#: ../../Zotlabs/Lib/Apps.php:204 -msgid "Site Admin" -msgstr "Hub-Administration" - -#: ../../Zotlabs/Lib/Apps.php:205 -msgid "Bug Report" -msgstr "Fehler-Rückmeldung" - -#: ../../Zotlabs/Lib/Apps.php:206 -msgid "View Bookmarks" -msgstr "Lesezeichen ansehen" - -#: ../../Zotlabs/Lib/Apps.php:207 -msgid "My Chatrooms" -msgstr "Meine Chaträume" - -#: ../../Zotlabs/Lib/Apps.php:209 -msgid "Firefox Share" -msgstr "Teilen-Knopf für Firefox" - -#: ../../Zotlabs/Lib/Apps.php:210 -msgid "Remote Diagnostics" -msgstr "Ferndiagnose" - -#: ../../Zotlabs/Lib/Apps.php:211 ../../include/features.php:89 -msgid "Suggest Channels" -msgstr "Kanäle vorschlagen" - -#: ../../Zotlabs/Lib/Apps.php:212 ../../include/nav.php:110 -#: ../../boot.php:1703 -msgid "Login" -msgstr "Anmelden" - -#: ../../Zotlabs/Lib/Apps.php:214 ../../include/nav.php:179 -msgid "Grid" -msgstr "Grid" - -#: ../../Zotlabs/Lib/Apps.php:218 ../../include/nav.php:182 -msgid "Channel Home" -msgstr "Mein Kanal" - -#: ../../Zotlabs/Lib/Apps.php:221 ../../include/nav.php:201 -#: ../../include/conversation.php:1649 ../../include/conversation.php:1652 -msgid "Events" -msgstr "Termine" - -#: ../../Zotlabs/Lib/Apps.php:222 ../../include/nav.php:167 -msgid "Directory" -msgstr "Verzeichnis" - -#: ../../Zotlabs/Lib/Apps.php:224 ../../include/nav.php:193 -msgid "Mail" -msgstr "Mail" - -#: ../../Zotlabs/Lib/Apps.php:227 ../../include/nav.php:96 -msgid "Chat" -msgstr "Chat" - -#: ../../Zotlabs/Lib/Apps.php:229 -msgid "Probe" -msgstr "Testen" - -#: ../../Zotlabs/Lib/Apps.php:230 -msgid "Suggest" -msgstr "Empfehlen" - -#: ../../Zotlabs/Lib/Apps.php:231 -msgid "Random Channel" -msgstr "Zufälliger Kanal" - -#: ../../Zotlabs/Lib/Apps.php:232 -msgid "Invite" -msgstr "Einladen" - -#: ../../Zotlabs/Lib/Apps.php:233 ../../include/widgets.php:1386 -msgid "Features" -msgstr "Funktionen" - -#: ../../Zotlabs/Lib/Apps.php:235 -msgid "Post" -msgstr "Beitrag schreiben" - -#: ../../Zotlabs/Lib/Apps.php:335 -msgid "Purchase" -msgstr "Kaufen" - #: ../../Zotlabs/Lib/Chatroom.php:27 msgid "Missing room name" msgstr "Der Chatraum hat keinen Namen" @@ -6384,19 +6588,19 @@ msgstr "Chatraum konnte nicht gefunden werden." msgid "Room is full" msgstr "Der Chatraum ist voll" -#: ../../Zotlabs/Lib/Enotify.php:60 ../../include/network.php:1823 +#: ../../Zotlabs/Lib/Enotify.php:60 ../../include/network.php:1882 msgid "$Projectname Notification" msgstr "$Projectname-Benachrichtigung" -#: ../../Zotlabs/Lib/Enotify.php:61 ../../include/network.php:1824 +#: ../../Zotlabs/Lib/Enotify.php:61 ../../include/network.php:1883 msgid "$projectname" msgstr "$projectname" -#: ../../Zotlabs/Lib/Enotify.php:63 ../../include/network.php:1826 +#: ../../Zotlabs/Lib/Enotify.php:63 ../../include/network.php:1885 msgid "Thank You," msgstr "Danke." -#: ../../Zotlabs/Lib/Enotify.php:65 ../../include/network.php:1828 +#: ../../Zotlabs/Lib/Enotify.php:65 ../../include/network.php:1887 #, php-format msgid "%s Administrator" msgstr "der Administrator von %s" @@ -6589,11 +6793,97 @@ msgstr "Neuer Beitrag wurde erzeugt" msgid "commented on %s's post" msgstr "hat %s's Beitrag kommentiert" -#: ../../Zotlabs/Lib/ThreadItem.php:95 ../../include/conversation.php:664 +#: ../../Zotlabs/Lib/Apps.php:205 +msgid "Site Admin" +msgstr "Hub-Administration" + +#: ../../Zotlabs/Lib/Apps.php:206 +msgid "Bug Report" +msgstr "Fehler-Rückmeldung" + +#: ../../Zotlabs/Lib/Apps.php:207 +msgid "View Bookmarks" +msgstr "Lesezeichen ansehen" + +#: ../../Zotlabs/Lib/Apps.php:208 +msgid "My Chatrooms" +msgstr "Meine Chaträume" + +#: ../../Zotlabs/Lib/Apps.php:210 +msgid "Firefox Share" +msgstr "Teilen-Knopf für Firefox" + +#: ../../Zotlabs/Lib/Apps.php:211 +msgid "Remote Diagnostics" +msgstr "Ferndiagnose" + +#: ../../Zotlabs/Lib/Apps.php:212 ../../include/features.php:90 +msgid "Suggest Channels" +msgstr "Kanäle vorschlagen" + +#: ../../Zotlabs/Lib/Apps.php:213 ../../include/nav.php:112 +#: ../../boot.php:1704 +msgid "Login" +msgstr "Anmelden" + +#: ../../Zotlabs/Lib/Apps.php:215 ../../include/nav.php:181 +msgid "Grid" +msgstr "Grid" + +#: ../../Zotlabs/Lib/Apps.php:220 ../../include/nav.php:184 +msgid "Channel Home" +msgstr "Mein Kanal" + +#: ../../Zotlabs/Lib/Apps.php:223 ../../include/nav.php:203 +#: ../../include/conversation.php:1664 ../../include/conversation.php:1667 +msgid "Events" +msgstr "Termine" + +#: ../../Zotlabs/Lib/Apps.php:224 ../../include/nav.php:169 +msgid "Directory" +msgstr "Verzeichnis" + +#: ../../Zotlabs/Lib/Apps.php:226 ../../include/nav.php:195 +msgid "Mail" +msgstr "Mail" + +#: ../../Zotlabs/Lib/Apps.php:229 ../../include/nav.php:96 +msgid "Chat" +msgstr "Chat" + +#: ../../Zotlabs/Lib/Apps.php:231 +msgid "Probe" +msgstr "Testen" + +#: ../../Zotlabs/Lib/Apps.php:232 +msgid "Suggest" +msgstr "Empfehlen" + +#: ../../Zotlabs/Lib/Apps.php:233 +msgid "Random Channel" +msgstr "Zufälliger Kanal" + +#: ../../Zotlabs/Lib/Apps.php:234 +msgid "Invite" +msgstr "Einladen" + +#: ../../Zotlabs/Lib/Apps.php:235 ../../include/widgets.php:1480 +msgid "Features" +msgstr "Funktionen" + +#: ../../Zotlabs/Lib/Apps.php:237 +msgid "Post" +msgstr "Beitrag schreiben" + +#: ../../Zotlabs/Lib/Apps.php:339 +msgid "Purchase" +msgstr "Kaufen" + +#: ../../Zotlabs/Lib/ThreadItem.php:95 ../../include/conversation.php:667 msgid "Private Message" msgstr "Private Nachricht" -#: ../../Zotlabs/Lib/ThreadItem.php:132 ../../include/conversation.php:656 +#: ../../Zotlabs/Lib/ThreadItem.php:132 ../../include/conversation.php:659 msgid "Select" msgstr "Auswählen" @@ -6641,11 +6931,11 @@ msgstr "Markierungsstatus (Stern) umschalten" msgid "starred" msgstr "markiert" -#: ../../Zotlabs/Lib/ThreadItem.php:234 ../../include/conversation.php:671 +#: ../../Zotlabs/Lib/ThreadItem.php:234 ../../include/conversation.php:674 msgid "Message signature validated" msgstr "Signatur überprüft" -#: ../../Zotlabs/Lib/ThreadItem.php:235 ../../include/conversation.php:672 +#: ../../Zotlabs/Lib/ThreadItem.php:235 ../../include/conversation.php:675 msgid "Message signature incorrect" msgstr "Signatur nicht korrekt" @@ -6701,17 +6991,17 @@ msgstr "Wall-to-Wall" msgid "via Wall-To-Wall:" msgstr "via Wall-To-Wall:" -#: ../../Zotlabs/Lib/ThreadItem.php:341 ../../include/conversation.php:719 +#: ../../Zotlabs/Lib/ThreadItem.php:341 ../../include/conversation.php:722 #, php-format msgid "from %s" msgstr "via %s" -#: ../../Zotlabs/Lib/ThreadItem.php:344 ../../include/conversation.php:722 +#: ../../Zotlabs/Lib/ThreadItem.php:344 ../../include/conversation.php:725 #, php-format msgid "last edited: %s" msgstr "zuletzt bearbeitet: %s" -#: ../../Zotlabs/Lib/ThreadItem.php:345 ../../include/conversation.php:723 +#: ../../Zotlabs/Lib/ThreadItem.php:345 ../../include/conversation.php:726 #, php-format msgid "Expires: %s" msgstr "Verfällt: %s" @@ -6729,26 +7019,27 @@ msgid "Mark all seen" msgstr "Alle als gelesen markieren" #: ../../Zotlabs/Lib/ThreadItem.php:421 ../../include/js_strings.php:7 -msgid "[+] show all" -msgstr "[+] Alle anzeigen" +#, php-format +msgid "%s show all" +msgstr "%s mehr anzeigen" -#: ../../Zotlabs/Lib/ThreadItem.php:711 ../../include/conversation.php:1215 +#: ../../Zotlabs/Lib/ThreadItem.php:711 ../../include/conversation.php:1226 msgid "Bold" msgstr "Fett" -#: ../../Zotlabs/Lib/ThreadItem.php:712 ../../include/conversation.php:1216 +#: ../../Zotlabs/Lib/ThreadItem.php:712 ../../include/conversation.php:1227 msgid "Italic" msgstr "Kursiv" -#: ../../Zotlabs/Lib/ThreadItem.php:713 ../../include/conversation.php:1217 +#: ../../Zotlabs/Lib/ThreadItem.php:713 ../../include/conversation.php:1228 msgid "Underline" msgstr "Unterstrichen" -#: ../../Zotlabs/Lib/ThreadItem.php:714 ../../include/conversation.php:1218 +#: ../../Zotlabs/Lib/ThreadItem.php:714 ../../include/conversation.php:1229 msgid "Quote" msgstr "Zitat" -#: ../../Zotlabs/Lib/ThreadItem.php:715 ../../include/conversation.php:1219 +#: ../../Zotlabs/Lib/ThreadItem.php:715 ../../include/conversation.php:1230 msgid "Code" msgstr "Code" @@ -6764,11 +7055,74 @@ msgstr "Link einfügen" msgid "Video" msgstr "Video" +#: ../../Zotlabs/Lib/PermissionDescription.php:31 +#: ../../include/acl_selectors.php:230 +msgid "Visible to your default audience" +msgstr "Standard-Sichtbarkeit gemäß Kanaleinstellungen" + +#: ../../Zotlabs/Lib/PermissionDescription.php:106 +#: ../../include/acl_selectors.php:266 +msgid "Only me" +msgstr "Nur ich" + +#: ../../Zotlabs/Lib/PermissionDescription.php:107 +msgid "Public" +msgstr "Öffentlich" + +#: ../../Zotlabs/Lib/PermissionDescription.php:108 +msgid "Anybody in the $Projectname network" +msgstr "Jeder innerhalb des $Projectname Netzwerks" + +#: ../../Zotlabs/Lib/PermissionDescription.php:109 +#, php-format +msgid "Any account on %s" +msgstr "Jedes Nutzerkonto auf %s" + +#: ../../Zotlabs/Lib/PermissionDescription.php:110 +msgid "Any of my connections" +msgstr "Alle meine Verbindungen" + +#: ../../Zotlabs/Lib/PermissionDescription.php:111 +msgid "Only connections I specifically allow" +msgstr "Nur Verbindungen, denen ich es explizit erlaube" + +#: ../../Zotlabs/Lib/PermissionDescription.php:112 +msgid "Anybody authenticated (could include visitors from other networks)" +msgstr "Jeder, der angemeldet ist (kann Besucher anderer Netzwerke beinhalten)" + +#: ../../Zotlabs/Lib/PermissionDescription.php:113 +msgid "Any connections including those who haven't yet been approved" +msgstr "Alle Verbindungen einschließlich der noch nicht bestätigten" + +#: ../../Zotlabs/Lib/PermissionDescription.php:152 +msgid "" +"This is your default setting for the audience of your normal stream, and " +"posts." +msgstr "Dies ist Deine Voreinstellung für die Sichtbarkeit Deiner normalen Beiträge (Stream)." + +#: ../../Zotlabs/Lib/PermissionDescription.php:153 +msgid "" +"This is your default setting for who can view your default channel profile" +msgstr "Dies ist Deine Voreinstellung für die Sichtbarkeit Deines Standard-Kanalprofils." + +#: ../../Zotlabs/Lib/PermissionDescription.php:154 +msgid "This is your default setting for who can view your connections" +msgstr "Dies ist Deine Voreinstellung für die Sichtbarkeit Deiner Verbindungen." + +#: ../../Zotlabs/Lib/PermissionDescription.php:155 +msgid "" +"This is your default setting for who can view your file storage and photos" +msgstr "Dies ist Deine Voreinstellung für die Sichtbarkeit Deiner Dateien und Fotos." + +#: ../../Zotlabs/Lib/PermissionDescription.php:156 +msgid "This is your default setting for the audience of your webpages" +msgstr "Dies ist Deine Voreinstellung für die Sichtbarkeit Deiner Webseiten." + #: ../../include/Import/import_diaspora.php:16 msgid "No username found in import file." msgstr "Kein Benutzername in der Importdatei gefunden." -#: ../../include/Import/import_diaspora.php:41 ../../include/import.php:50 +#: ../../include/Import/import_diaspora.php:41 ../../include/import.php:51 msgid "Unable to create a unique channel address. Import failed." msgstr "Es war nicht möglich, eine eindeutige Kanal-Adresse zu erzeugen. Der Import ist fehlgeschlagen." @@ -6777,6 +7131,291 @@ msgstr "Es war nicht möglich, eine eindeutige Kanal-Adresse zu erzeugen. Der Im msgid "Cannot locate DNS info for database server '%s'" msgstr "Kann die DNS-Informationen für den Datenbank-Server '%s' nicht finden" +#: ../../include/photos.php:114 +#, php-format +msgid "Image exceeds website size limit of %lu bytes" +msgstr "Bild überschreitet das Webseitenlimit von %lu Bytes" + +#: ../../include/photos.php:121 +msgid "Image file is empty." +msgstr "Bilddatei ist leer." + +#: ../../include/photos.php:259 +msgid "Photo storage failed." +msgstr "Fotospeicherung fehlgeschlagen." + +#: ../../include/photos.php:299 +msgid "a new photo" +msgstr "ein neues Foto" + +#: ../../include/photos.php:303 +#, php-format +msgctxt "photo_upload" +msgid "%1$s posted %2$s to %3$s" +msgstr "%1$s hat %2$s auf %3$s veröffentlicht" + +#: ../../include/photos.php:506 ../../include/conversation.php:1650 +msgid "Photo Albums" +msgstr "Fotoalben" + +#: ../../include/photos.php:510 +msgid "Upload New Photos" +msgstr "Neue Fotos hochladen" + +#: ../../include/nav.php:82 ../../include/nav.php:115 ../../boot.php:1703 +msgid "Logout" +msgstr "Abmelden" + +#: ../../include/nav.php:82 ../../include/nav.php:115 +msgid "End this session" +msgstr "Beende diese Sitzung" + +#: ../../include/nav.php:85 ../../include/nav.php:146 +msgid "Home" +msgstr "Home" + +#: ../../include/nav.php:85 +msgid "Your posts and conversations" +msgstr "Deine Beiträge und Unterhaltungen" + +#: ../../include/nav.php:86 +msgid "Your profile page" +msgstr "Deine Profilseite" + +#: ../../include/nav.php:88 +msgid "Manage/Edit profiles" +msgstr "Profile verwalten" + +#: ../../include/nav.php:90 ../../include/channel.php:980 +msgid "Edit Profile" +msgstr "Profile bearbeiten" + +#: ../../include/nav.php:90 +msgid "Edit your profile" +msgstr "Profil bearbeiten" + +#: ../../include/nav.php:92 +msgid "Your photos" +msgstr "Deine Bilder" + +#: ../../include/nav.php:93 +msgid "Your files" +msgstr "Deine Dateien" + +#: ../../include/nav.php:96 +msgid "Your chatrooms" +msgstr "Deine Chaträume" + +#: ../../include/nav.php:102 ../../include/conversation.php:1690 +msgid "Bookmarks" +msgstr "Lesezeichen" + +#: ../../include/nav.php:102 +msgid "Your bookmarks" +msgstr "Deine Lesezeichen" + +#: ../../include/nav.php:106 +msgid "Your webpages" +msgstr "Deine Webseiten" + +#: ../../include/nav.php:108 +msgid "Your wiki" +msgstr "Dein Wiki" + +#: ../../include/nav.php:112 +msgid "Sign in" +msgstr "Anmelden" + +#: ../../include/nav.php:129 +#, php-format +msgid "%s - click to logout" +msgstr "%s - Klick zum Abmelden" + +#: ../../include/nav.php:132 +msgid "Remote authentication" +msgstr "Über Konto auf anderem Server einloggen" + +#: ../../include/nav.php:132 +msgid "Click to authenticate to your home hub" +msgstr "Klicke, um Dich über Deinen Heimat-Server zu authentifizieren" + +#: ../../include/nav.php:146 +msgid "Home Page" +msgstr "Homepage" + +#: ../../include/nav.php:149 +msgid "Create an account" +msgstr "Erzeuge ein Konto" + +#: ../../include/nav.php:161 +msgid "Help and documentation" +msgstr "Hilfe und Dokumentation" + +#: ../../include/nav.php:165 +msgid "Applications, utilities, links, games" +msgstr "Anwendungen (Apps), Zubehör, Links, Spiele" + +#: ../../include/nav.php:167 +msgid "Search site @name, #tag, ?docs, content" +msgstr "Hub durchsuchen: @Name. #Schlagwort, ?Dokumentation, Inhalt" + +#: ../../include/nav.php:169 +msgid "Channel Directory" +msgstr "Kanal-Verzeichnis" + +#: ../../include/nav.php:181 +msgid "Your grid" +msgstr "Dein Grid" + +#: ../../include/nav.php:182 +msgid "Mark all grid notifications seen" +msgstr "Alle Grid-Benachrichtigungen als angesehen markieren" + +#: ../../include/nav.php:184 +msgid "Channel home" +msgstr "Mein Kanal" + +#: ../../include/nav.php:185 +msgid "Mark all channel notifications seen" +msgstr "Markiere alle Kanal-Benachrichtigungen als angesehen" + +#: ../../include/nav.php:191 +msgid "Notices" +msgstr "Benachrichtigungen" + +#: ../../include/nav.php:191 +msgid "Notifications" +msgstr "Benachrichtigungen" + +#: ../../include/nav.php:192 +msgid "See all notifications" +msgstr "Alle Benachrichtigungen ansehen" + +#: ../../include/nav.php:195 +msgid "Private mail" +msgstr "Persönliche Mail" + +#: ../../include/nav.php:196 +msgid "See all private messages" +msgstr "Alle persönlichen Nachrichten ansehen" + +#: ../../include/nav.php:197 +msgid "Mark all private messages seen" +msgstr "Markiere alle persönlichen Nachrichten als gesehen" + +#: ../../include/nav.php:198 ../../include/widgets.php:667 +msgid "Inbox" +msgstr "Eingang" + +#: ../../include/nav.php:199 ../../include/widgets.php:672 +msgid "Outbox" +msgstr "Ausgang" + +#: ../../include/nav.php:200 ../../include/widgets.php:677 +msgid "New Message" +msgstr "Neue Nachricht" + +#: ../../include/nav.php:203 +msgid "Event Calendar" +msgstr "Terminkalender" + +#: ../../include/nav.php:204 +msgid "See all events" +msgstr "Alle Termine ansehen" + +#: ../../include/nav.php:205 +msgid "Mark all events seen" +msgstr "Markiere alle Termine als gesehen" + +#: ../../include/nav.php:208 +msgid "Manage Your Channels" +msgstr "Verwalte Deine Kanäle" + +#: ../../include/nav.php:210 +msgid "Account/Channel Settings" +msgstr "Konto-/Kanal-Einstellungen" + +#: ../../include/nav.php:218 ../../include/widgets.php:1510 +msgid "Admin" +msgstr "Administration" + +#: ../../include/nav.php:218 +msgid "Site Setup and Configuration" +msgstr "Seiten-Einrichtung und -Konfiguration" + +#: ../../include/nav.php:249 ../../include/conversation.php:854 +msgid "Loading..." +msgstr "Lädt ..." + +#: ../../include/nav.php:254 +msgid "@name, #tag, ?doc, content" +msgstr "@Name, #Schlagwort, ?Dokumentation, Inhalt" + +#: ../../include/nav.php:255 +msgid "Please wait..." +msgstr "Bitte warten..." + +#: ../../include/network.php:704 +msgid "view full size" +msgstr "In Vollbildansicht anschauen" + +#: ../../include/network.php:1930 ../../include/account.php:317 +#: ../../include/account.php:344 ../../include/account.php:404 +msgid "Administrator" +msgstr "Administrator" + +#: ../../include/network.php:1944 +msgid "No Subject" +msgstr "Kein Betreff" + +#: ../../include/network.php:2198 ../../include/network.php:2199 +msgid "Friendica" +msgstr "Friendica" + +#: ../../include/network.php:2200 +msgid "OStatus" +msgstr "OStatus" + +#: ../../include/network.php:2201 +msgid "GNU-Social" +msgstr "GNU-Social" + +#: ../../include/network.php:2202 +msgid "RSS/Atom" +msgstr "RSS/Atom" + +#: ../../include/network.php:2204 +msgid "Diaspora" +msgstr "Diaspora" + +#: ../../include/network.php:2205 +msgid "Facebook" +msgstr "Facebook" + +#: ../../include/network.php:2206 +msgid "Zot" +msgstr "Zot!" + +#: ../../include/network.php:2207 +msgid "LinkedIn" +msgstr "LinkedIn" + +#: ../../include/network.php:2208 +msgid "XMPP/IM" +msgstr "XMPP/IM" + +#: ../../include/network.php:2209 +msgid "MySpace" +msgstr "MySpace" + +#: ../../include/page_widgets.php:7 +msgid "New Page" +msgstr "Neue Seite" + +#: ../../include/page_widgets.php:46 +msgid "Title" +msgstr "Titel" + #: ../../include/taxonomy.php:188 ../../include/taxonomy.php:270 #: ../../include/widgets.php:46 ../../include/widgets.php:429 #: ../../include/contact_widgets.php:91 @@ -6815,952 +7454,159 @@ msgstr "gefällt" msgid "dislikes" msgstr "missfällt" -#: ../../include/event.php:22 ../../include/event.php:69 -#: ../../include/bb2diaspora.php:485 -msgid "l F d, Y \\@ g:i A" -msgstr "l, d. F Y, H:i" +#: ../../include/channel.php:33 +msgid "Unable to obtain identity information from database" +msgstr "Kann keine Identitäts-Informationen aus Datenbank beziehen" -#: ../../include/event.php:30 ../../include/event.php:73 -#: ../../include/bb2diaspora.php:491 -msgid "Starts:" -msgstr "Beginnt:" +#: ../../include/channel.php:67 +msgid "Empty name" +msgstr "Namensfeld leer" -#: ../../include/event.php:40 ../../include/event.php:77 -#: ../../include/bb2diaspora.php:499 -msgid "Finishes:" -msgstr "Endet:" +#: ../../include/channel.php:70 +msgid "Name too long" +msgstr "Name ist zu lang" -#: ../../include/event.php:812 -msgid "This event has been added to your calendar." -msgstr "Dieser Termin wurde zu Deinem Kalender hinzugefügt" +#: ../../include/channel.php:181 +msgid "No account identifier" +msgstr "Keine Account-Kennung" -#: ../../include/event.php:1012 -msgid "Not specified" -msgstr "Keine Angabe" +#: ../../include/channel.php:193 +msgid "Nickname is required." +msgstr "Spitzname ist erforderlich." -#: ../../include/event.php:1013 -msgid "Needs Action" -msgstr "Aktion erforderlich" +#: ../../include/channel.php:207 +msgid "Reserved nickname. Please choose another." +msgstr "Reservierter Kurzname. Bitte wähle einen anderen." -#: ../../include/event.php:1014 -msgid "Completed" -msgstr "Abgeschlossen" - -#: ../../include/event.php:1015 -msgid "In Process" -msgstr "In Bearbeitung" - -#: ../../include/event.php:1016 -msgid "Cancelled" -msgstr "gestrichen" - -#: ../../include/import.php:29 +#: ../../include/channel.php:212 msgid "" -"Cannot create a duplicate channel identifier on this system. Import failed." -msgstr "Kann keinen doppelten Kanal-Identifikator auf diesem System erzeugen (Spitzname oder Hash schon belegt). Import fehlgeschlagen." +"Nickname has unsupported characters or is already being used on this site." +msgstr "Der Spitzname enthält nicht-unterstütze Zeichen oder wird bereits auf dieser Seite genutzt." -#: ../../include/import.php:76 -msgid "Channel clone failed. Import failed." -msgstr "Klonen des Kanals fehlgeschlagen. Import fehlgeschlagen." +#: ../../include/channel.php:272 +msgid "Unable to retrieve created identity" +msgstr "Kann die erstellte Identität nicht empfangen" -#: ../../include/items.php:892 ../../include/items.php:937 -msgid "(Unknown)" -msgstr "(Unbekannt)" +#: ../../include/channel.php:341 +msgid "Default Profile" +msgstr "Standard-Profil" -#: ../../include/items.php:1136 -msgid "Visible to anybody on the internet." -msgstr "Für jeden im Internet sichtbar." +#: ../../include/channel.php:830 +msgid "Requested channel is not available." +msgstr "Angeforderte Kanal nicht verfügbar." -#: ../../include/items.php:1138 -msgid "Visible to you only." -msgstr "Nur für Dich sichtbar." +#: ../../include/channel.php:977 +msgid "Create New Profile" +msgstr "Neues Profil erstellen" -#: ../../include/items.php:1140 -msgid "Visible to anybody in this network." -msgstr "Für jedes $Projectname-Mitglied sichtbar." +#: ../../include/channel.php:997 +msgid "Visible to everybody" +msgstr "Für jeden sichtbar" -#: ../../include/items.php:1142 -msgid "Visible to anybody authenticated." -msgstr "Für jeden sichtbar, der angemeldet ist." +#: ../../include/channel.php:1070 ../../include/channel.php:1182 +msgid "Gender:" +msgstr "Geschlecht:" -#: ../../include/items.php:1144 +#: ../../include/channel.php:1071 ../../include/channel.php:1226 +msgid "Status:" +msgstr "Status:" + +#: ../../include/channel.php:1072 ../../include/channel.php:1237 +msgid "Homepage:" +msgstr "Homepage:" + +#: ../../include/channel.php:1073 +msgid "Online Now" +msgstr "gerade online" + +#: ../../include/channel.php:1187 +msgid "Like this channel" +msgstr "Dieser Kanal gefällt mir" + +#: ../../include/channel.php:1211 +msgid "j F, Y" +msgstr "j. F Y" + +#: ../../include/channel.php:1212 +msgid "j F" +msgstr "j. F" + +#: ../../include/channel.php:1219 +msgid "Birthday:" +msgstr "Geburtstag:" + +#: ../../include/channel.php:1232 #, php-format -msgid "Visible to anybody on %s." -msgstr "Für jeden auf %s sichtbar." +msgid "for %1$d %2$s" +msgstr "seit %1$d %2$s" -#: ../../include/items.php:1146 -msgid "Visible to all connections." -msgstr "Für alle Verbindungen sichtbar." +#: ../../include/channel.php:1235 +msgid "Sexual Preference:" +msgstr "Sexuelle Orientierung:" -#: ../../include/items.php:1148 -msgid "Visible to approved connections." -msgstr "Nur für akzeptierte Verbindungen sichtbar." +#: ../../include/channel.php:1241 +msgid "Tags:" +msgstr "Schlagworte:" -#: ../../include/items.php:1150 -msgid "Visible to specific connections." -msgstr "Sichtbar für bestimmte Verbindungen." +#: ../../include/channel.php:1243 +msgid "Political Views:" +msgstr "Politische Ansichten:" -#: ../../include/items.php:3909 -msgid "Privacy group is empty." -msgstr "Gruppe ist leer." +#: ../../include/channel.php:1245 +msgid "Religion:" +msgstr "Religion:" -#: ../../include/items.php:3916 -#, php-format -msgid "Privacy group: %s" -msgstr "Gruppe: %s" +#: ../../include/channel.php:1249 +msgid "Hobbies/Interests:" +msgstr "Hobbys/Interessen:" -#: ../../include/items.php:3928 -msgid "Connection not found." -msgstr "Die Verbindung wurde nicht gefunden." +#: ../../include/channel.php:1251 +msgid "Likes:" +msgstr "Gefällt:" -#: ../../include/items.php:4277 -msgid "profile photo" -msgstr "Profilfoto" +#: ../../include/channel.php:1253 +msgid "Dislikes:" +msgstr "Gefällt nicht:" -#: ../../include/message.php:20 -msgid "No recipient provided." -msgstr "Kein Empfänger angegeben" +#: ../../include/channel.php:1255 +msgid "Contact information and Social Networks:" +msgstr "Kontaktinformation und soziale Netzwerke:" -#: ../../include/message.php:25 -msgid "[no subject]" -msgstr "[no subject]" +#: ../../include/channel.php:1257 +msgid "My other channels:" +msgstr "Meine anderen Kanäle:" -#: ../../include/message.php:45 -msgid "Unable to determine sender." -msgstr "Kann Absender nicht bestimmen." +#: ../../include/channel.php:1259 +msgid "Musical interests:" +msgstr "Musikalische Interessen:" -#: ../../include/message.php:222 -msgid "Stored post could not be verified." -msgstr "Gespeicherter Beitrag konnten nicht überprüft werden." +#: ../../include/channel.php:1261 +msgid "Books, literature:" +msgstr "Bücher, Literatur:" -#: ../../include/text.php:428 -msgid "prev" -msgstr "vorherige" +#: ../../include/channel.php:1263 +msgid "Television:" +msgstr "Fernsehen:" -#: ../../include/text.php:430 -msgid "first" -msgstr "erste" +#: ../../include/channel.php:1265 +msgid "Film/dance/culture/entertainment:" +msgstr "Film/Tanz/Kultur/Unterhaltung:" -#: ../../include/text.php:459 -msgid "last" -msgstr "letzte" +#: ../../include/channel.php:1267 +msgid "Love/Romance:" +msgstr "Liebe/Romantik:" -#: ../../include/text.php:462 -msgid "next" -msgstr "nächste" +#: ../../include/channel.php:1269 +msgid "Work/employment:" +msgstr "Arbeit/Anstellung:" -#: ../../include/text.php:472 -msgid "older" -msgstr "älter" +#: ../../include/channel.php:1271 +msgid "School/education:" +msgstr "Schule/Ausbildung:" -#: ../../include/text.php:474 -msgid "newer" -msgstr "neuer" - -#: ../../include/text.php:863 -msgid "No connections" -msgstr "Keine Verbindungen" - -#: ../../include/text.php:888 -#, php-format -msgid "View all %s connections" -msgstr "Alle Verbindungen von %s anzeigen" - -#: ../../include/text.php:1033 ../../include/text.php:1038 -msgid "poke" -msgstr "anstupsen" - -#: ../../include/text.php:1033 ../../include/text.php:1038 -#: ../../include/conversation.php:243 -msgid "poked" -msgstr "stupste" - -#: ../../include/text.php:1039 -msgid "ping" -msgstr "anpingen" - -#: ../../include/text.php:1039 -msgid "pinged" -msgstr "pingte" - -#: ../../include/text.php:1040 -msgid "prod" -msgstr "knuffen" - -#: ../../include/text.php:1040 -msgid "prodded" -msgstr "knuffte" - -#: ../../include/text.php:1041 -msgid "slap" -msgstr "ohrfeigen" - -#: ../../include/text.php:1041 -msgid "slapped" -msgstr "ohrfeigte" - -#: ../../include/text.php:1042 -msgid "finger" -msgstr "befummeln" - -#: ../../include/text.php:1042 -msgid "fingered" -msgstr "befummelte" - -#: ../../include/text.php:1043 -msgid "rebuff" -msgstr "eine Abfuhr erteilen" - -#: ../../include/text.php:1043 -msgid "rebuffed" -msgstr "zurückgewiesen" - -#: ../../include/text.php:1055 -msgid "happy" -msgstr "glücklich" - -#: ../../include/text.php:1056 -msgid "sad" -msgstr "traurig" - -#: ../../include/text.php:1057 -msgid "mellow" -msgstr "sanft" - -#: ../../include/text.php:1058 -msgid "tired" -msgstr "müde" - -#: ../../include/text.php:1059 -msgid "perky" -msgstr "frech" - -#: ../../include/text.php:1060 -msgid "angry" -msgstr "sauer" - -#: ../../include/text.php:1061 -msgid "stupefied" -msgstr "verblüfft" - -#: ../../include/text.php:1062 -msgid "puzzled" -msgstr "verwirrt" - -#: ../../include/text.php:1063 -msgid "interested" -msgstr "interessiert" - -#: ../../include/text.php:1064 -msgid "bitter" -msgstr "verbittert" - -#: ../../include/text.php:1065 -msgid "cheerful" -msgstr "fröhlich" - -#: ../../include/text.php:1066 -msgid "alive" -msgstr "lebendig" - -#: ../../include/text.php:1067 -msgid "annoyed" -msgstr "verärgert" - -#: ../../include/text.php:1068 -msgid "anxious" -msgstr "unruhig" - -#: ../../include/text.php:1069 -msgid "cranky" -msgstr "schrullig" - -#: ../../include/text.php:1070 -msgid "disturbed" -msgstr "verstört" - -#: ../../include/text.php:1071 -msgid "frustrated" -msgstr "frustriert" - -#: ../../include/text.php:1072 -msgid "depressed" -msgstr "deprimiert" - -#: ../../include/text.php:1073 -msgid "motivated" -msgstr "motiviert" - -#: ../../include/text.php:1074 -msgid "relaxed" -msgstr "entspannt" - -#: ../../include/text.php:1075 -msgid "surprised" -msgstr "überrascht" - -#: ../../include/text.php:1257 ../../include/js_strings.php:70 -msgid "Monday" -msgstr "Montag" - -#: ../../include/text.php:1257 ../../include/js_strings.php:71 -msgid "Tuesday" -msgstr "Dienstag" - -#: ../../include/text.php:1257 ../../include/js_strings.php:72 -msgid "Wednesday" -msgstr "Mittwoch" - -#: ../../include/text.php:1257 ../../include/js_strings.php:73 -msgid "Thursday" -msgstr "Donnerstag" - -#: ../../include/text.php:1257 ../../include/js_strings.php:74 -msgid "Friday" -msgstr "Freitag" - -#: ../../include/text.php:1257 ../../include/js_strings.php:75 -msgid "Saturday" -msgstr "Samstag" - -#: ../../include/text.php:1257 ../../include/js_strings.php:69 -msgid "Sunday" -msgstr "Sonntag" - -#: ../../include/text.php:1261 ../../include/js_strings.php:45 -msgid "January" -msgstr "Januar" - -#: ../../include/text.php:1261 ../../include/js_strings.php:46 -msgid "February" -msgstr "Februar" - -#: ../../include/text.php:1261 ../../include/js_strings.php:47 -msgid "March" -msgstr "März" - -#: ../../include/text.php:1261 ../../include/js_strings.php:48 -msgid "April" -msgstr "April" - -#: ../../include/text.php:1261 -msgid "May" -msgstr "Mai" - -#: ../../include/text.php:1261 ../../include/js_strings.php:50 -msgid "June" -msgstr "Juni" - -#: ../../include/text.php:1261 ../../include/js_strings.php:51 -msgid "July" -msgstr "Juli" - -#: ../../include/text.php:1261 ../../include/js_strings.php:52 -msgid "August" -msgstr "August" - -#: ../../include/text.php:1261 ../../include/js_strings.php:53 -msgid "September" -msgstr "September" - -#: ../../include/text.php:1261 ../../include/js_strings.php:54 -msgid "October" -msgstr "Oktober" - -#: ../../include/text.php:1261 ../../include/js_strings.php:55 -msgid "November" -msgstr "November" - -#: ../../include/text.php:1261 ../../include/js_strings.php:56 -msgid "December" -msgstr "Dezember" - -#: ../../include/text.php:1338 ../../include/text.php:1342 -msgid "Unknown Attachment" -msgstr "Unbekannter Anhang" - -#: ../../include/text.php:1344 -msgid "unknown" -msgstr "unbekannt" - -#: ../../include/text.php:1380 -msgid "remove category" -msgstr "Kategorie entfernen" - -#: ../../include/text.php:1457 -msgid "remove from file" -msgstr "aus der Datei entfernen" - -#: ../../include/text.php:1753 ../../include/text.php:1824 -msgid "default" -msgstr "Standard" - -#: ../../include/text.php:1761 -msgid "Page layout" -msgstr "Seiten-Layout" - -#: ../../include/text.php:1761 -msgid "You can create your own with the layouts tool" -msgstr "Mit dem Gestaltungswerkzeug kannst Du Deine eigenen Layouts erstellen" - -#: ../../include/text.php:1803 -msgid "Page content type" -msgstr "Art des Seiteninhalts" - -#: ../../include/text.php:1836 -msgid "Select an alternate language" -msgstr "Wähle eine alternative Sprache" - -#: ../../include/text.php:1953 -msgid "activity" -msgstr "Aktivität" - -#: ../../include/text.php:2262 -msgid "Design Tools" -msgstr "Gestaltungswerkzeuge" - -#: ../../include/text.php:2268 -msgid "Pages" -msgstr "Seiten" - -#: ../../include/widgets.php:103 -msgid "System" -msgstr "System" - -#: ../../include/widgets.php:106 -msgid "New App" -msgstr "Neue App" - -#: ../../include/widgets.php:154 -msgid "Suggestions" -msgstr "Vorschläge" - -#: ../../include/widgets.php:155 -msgid "See more..." -msgstr "Mehr anzeigen …" - -#: ../../include/widgets.php:175 -#, php-format -msgid "You have %1$.0f of %2$.0f allowed connections." -msgstr "Du bist %1$.0f von maximal %2$.0f erlaubten Verbindungen eingegangen." - -#: ../../include/widgets.php:181 -msgid "Add New Connection" -msgstr "Neue Verbindung hinzufügen" - -#: ../../include/widgets.php:182 -msgid "Enter channel address" -msgstr "Adresse des Kanals eingeben" - -#: ../../include/widgets.php:183 -msgid "Examples: bob@example.com, https://example.com/barbara" -msgstr "Beispiele: bob@beispiel.com, http://beispiel.com/barbara" - -#: ../../include/widgets.php:199 -msgid "Notes" -msgstr "Notizen" - -#: ../../include/widgets.php:273 -msgid "Remove term" -msgstr "Eintrag löschen" - -#: ../../include/widgets.php:281 ../../include/features.php:84 -msgid "Saved Searches" -msgstr "Gespeicherte Suchanfragen" - -#: ../../include/widgets.php:282 ../../include/group.php:316 -msgid "add" -msgstr "hinzufügen" - -#: ../../include/widgets.php:310 ../../include/contact_widgets.php:53 -#: ../../include/features.php:98 -msgid "Saved Folders" -msgstr "Gespeicherte Ordner" - -#: ../../include/widgets.php:313 ../../include/widgets.php:432 -#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:94 -msgid "Everything" -msgstr "Alles" - -#: ../../include/widgets.php:354 -msgid "Archives" -msgstr "Archive" - -#: ../../include/widgets.php:516 -msgid "Refresh" -msgstr "Aktualisieren" - -#: ../../include/widgets.php:556 -msgid "Account settings" -msgstr "Konto-Einstellungen" - -#: ../../include/widgets.php:562 -msgid "Channel settings" -msgstr "Kanal-Einstellungen" - -#: ../../include/widgets.php:571 -msgid "Additional features" -msgstr "Zusätzliche Funktionen" - -#: ../../include/widgets.php:578 -msgid "Feature/Addon settings" -msgstr "Plugin-Einstellungen" - -#: ../../include/widgets.php:584 -msgid "Display settings" -msgstr "Anzeige-Einstellungen" - -#: ../../include/widgets.php:591 -msgid "Manage locations" -msgstr "Klon-Adressen verwalten" - -#: ../../include/widgets.php:600 -msgid "Export channel" -msgstr "Kanal exportieren" - -#: ../../include/widgets.php:607 -msgid "Connected apps" -msgstr "Verbundene Apps" - -#: ../../include/widgets.php:622 -msgid "Premium Channel Settings" -msgstr "Premium-Kanal-Einstellungen" - -#: ../../include/widgets.php:651 -msgid "Private Mail Menu" -msgstr "Private Nachrichten" - -#: ../../include/widgets.php:653 -msgid "Combined View" -msgstr "Kombinierte Anzeige" - -#: ../../include/widgets.php:658 ../../include/nav.php:196 -msgid "Inbox" -msgstr "Eingang" - -#: ../../include/widgets.php:663 ../../include/nav.php:197 -msgid "Outbox" -msgstr "Ausgang" - -#: ../../include/widgets.php:668 ../../include/nav.php:198 -msgid "New Message" -msgstr "Neue Nachricht" - -#: ../../include/widgets.php:685 ../../include/widgets.php:697 -msgid "Conversations" -msgstr "Konversationen" - -#: ../../include/widgets.php:689 -msgid "Received Messages" -msgstr "Erhaltene Nachrichten" - -#: ../../include/widgets.php:693 -msgid "Sent Messages" -msgstr "Gesendete Nachrichten" - -#: ../../include/widgets.php:707 -msgid "No messages." -msgstr "Keine Nachrichten." - -#: ../../include/widgets.php:725 -msgid "Delete conversation" -msgstr "Unterhaltung löschen" - -#: ../../include/widgets.php:751 -msgid "Events Menu" -msgstr "Kalendermenü" - -#: ../../include/widgets.php:752 -msgid "Day View" -msgstr "Tagesansicht" - -#: ../../include/widgets.php:753 -msgid "Week View" -msgstr "Wochenansicht" - -#: ../../include/widgets.php:754 -msgid "Month View" -msgstr "Monatsansicht" - -#: ../../include/widgets.php:766 -msgid "Events Tools" -msgstr "Kalenderwerkzeuge" - -#: ../../include/widgets.php:767 -msgid "Export Calendar" -msgstr "Kalender exportieren" - -#: ../../include/widgets.php:768 -msgid "Import Calendar" -msgstr "Kalender importieren" - -#: ../../include/widgets.php:842 ../../include/conversation.php:1662 -#: ../../include/conversation.php:1665 -msgid "Chatrooms" -msgstr "Chaträume" - -#: ../../include/widgets.php:846 -msgid "Overview" -msgstr "Übersicht" - -#: ../../include/widgets.php:853 -msgid "Chat Members" -msgstr "Chatmitglieder" - -#: ../../include/widgets.php:876 -msgid "Bookmarked Chatrooms" -msgstr "Gespeicherte Chatrooms" - -#: ../../include/widgets.php:899 -msgid "Suggested Chatrooms" -msgstr "Chatraum-Vorschläge" - -#: ../../include/widgets.php:1044 ../../include/widgets.php:1156 -msgid "photo/image" -msgstr "Foto/Bild" - -#: ../../include/widgets.php:1099 -msgid "Click to show more" -msgstr "Klick, um mehr anzuzeigen" - -#: ../../include/widgets.php:1250 -msgid "Rating Tools" -msgstr "Bewertungswerkzeuge" - -#: ../../include/widgets.php:1254 ../../include/widgets.php:1256 -msgid "Rate Me" -msgstr "Bewerte mich" - -#: ../../include/widgets.php:1259 -msgid "View Ratings" -msgstr "Bewertungen ansehen" - -#: ../../include/widgets.php:1316 -msgid "Forums" -msgstr "Foren" - -#: ../../include/widgets.php:1345 -msgid "Tasks" -msgstr "Aufgaben" - -#: ../../include/widgets.php:1354 -msgid "Documentation" -msgstr "Dokumentation" - -#: ../../include/widgets.php:1356 -msgid "Project/Site Information" -msgstr "Informationen über das Projekt und diesen Hub" - -#: ../../include/widgets.php:1357 -msgid "For Members" -msgstr "Für Mitglieder" - -#: ../../include/widgets.php:1358 -msgid "For Administrators" -msgstr "Für Administratoren" - -#: ../../include/widgets.php:1359 -msgid "For Developers" -msgstr "Für Entwickler" - -#: ../../include/widgets.php:1383 ../../include/widgets.php:1421 -msgid "Member registrations waiting for confirmation" -msgstr "Nutzer-Anmeldungen, die auf Bestätigung warten" - -#: ../../include/widgets.php:1389 -msgid "Inspect queue" -msgstr "Warteschlange kontrollieren" - -#: ../../include/widgets.php:1391 -msgid "DB updates" -msgstr "DB-Aktualisierungen" - -#: ../../include/widgets.php:1416 ../../include/nav.php:216 -msgid "Admin" -msgstr "Administration" - -#: ../../include/widgets.php:1417 -msgid "Plugin Features" -msgstr "Plug-In Funktionen" - -#: ../../include/follow.php:27 -msgid "Channel is blocked on this site." -msgstr "Der Kanal ist auf dieser Seite blockiert " - -#: ../../include/follow.php:32 -msgid "Channel location missing." -msgstr "Adresse des Kanals fehlt." - -#: ../../include/follow.php:81 -msgid "Response from remote channel was incomplete." -msgstr "Antwort des entfernten Kanals war unvollständig." - -#: ../../include/follow.php:98 -msgid "Channel was deleted and no longer exists." -msgstr "Kanal wurde gelöscht und existiert nicht mehr." - -#: ../../include/follow.php:154 ../../include/follow.php:190 -msgid "Protocol disabled." -msgstr "Protokoll deaktiviert." - -#: ../../include/follow.php:178 -msgid "Channel discovery failed." -msgstr "Kanalsuche fehlgeschlagen" - -#: ../../include/follow.php:216 -msgid "Cannot connect to yourself." -msgstr "Du kannst Dich nicht mit Dir selbst verbinden." - -#: ../../include/bookmarks.php:35 -#, php-format -msgid "%1$s's bookmarks" -msgstr "%1$ss Lesezeichen" - -#: ../../include/api.php:1336 -msgid "Public Timeline" -msgstr "Öffentliche Zeitleiste" - -#: ../../include/bbcode.php:123 ../../include/bbcode.php:844 -#: ../../include/bbcode.php:847 ../../include/bbcode.php:852 -#: ../../include/bbcode.php:855 ../../include/bbcode.php:858 -#: ../../include/bbcode.php:861 ../../include/bbcode.php:866 -#: ../../include/bbcode.php:869 ../../include/bbcode.php:874 -#: ../../include/bbcode.php:877 ../../include/bbcode.php:880 -#: ../../include/bbcode.php:883 -msgid "Image/photo" -msgstr "Bild/Foto" - -#: ../../include/bbcode.php:162 ../../include/bbcode.php:894 -msgid "Encrypted content" -msgstr "Verschlüsselter Inhalt" - -#: ../../include/bbcode.php:178 -#, php-format -msgid "Install %s element: " -msgstr "Element %s installieren: " - -#: ../../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 "Dieser Beitrag beinhaltet ein installierbares %s Element, aber Du hast nicht die nötigen Rechte, um es auf diesem Hub zu installieren." - -#: ../../include/bbcode.php:254 -#, php-format -msgid "%1$s wrote the following %2$s %3$s" -msgstr "%1$s schrieb den folgenden %2$s %3$s" - -#: ../../include/bbcode.php:331 ../../include/bbcode.php:339 -msgid "Click to open/close" -msgstr "Klicke zum Öffnen/Schließen" - -#: ../../include/bbcode.php:339 -msgid "spoiler" -msgstr "Spoiler" - -#: ../../include/bbcode.php:585 -msgid "Different viewers will see this text differently" -msgstr "Verschiedene Betrachter werden diesen Text unterschiedlich sehen" - -#: ../../include/bbcode.php:832 -msgid "$1 wrote:" -msgstr "$1 schrieb:" - -#: ../../include/dir_fns.php:141 -msgid "Directory Options" -msgstr "Verzeichnisoptionen" - -#: ../../include/dir_fns.php:143 -msgid "Safe Mode" -msgstr "Sicherer Modus" - -#: ../../include/dir_fns.php:144 -msgid "Public Forums Only" -msgstr "Nur öffentliche Foren" - -#: ../../include/dir_fns.php:145 -msgid "This Website Only" -msgstr "Nur dieser Hub" - -#: ../../include/security.php:383 -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 "Das Security-Token des Formulars war nicht korrekt. Das ist wahrscheinlich passiert, weil das Formular zu lange (>3 Stunden) offen war, bevor es abgeschickt wurde." - -#: ../../include/nav.php:82 ../../include/nav.php:113 ../../boot.php:1702 -msgid "Logout" -msgstr "Abmelden" - -#: ../../include/nav.php:82 ../../include/nav.php:113 -msgid "End this session" -msgstr "Beende diese Sitzung" - -#: ../../include/nav.php:85 ../../include/nav.php:144 -msgid "Home" -msgstr "Home" - -#: ../../include/nav.php:85 -msgid "Your posts and conversations" -msgstr "Deine Beiträge und Unterhaltungen" - -#: ../../include/nav.php:86 -msgid "Your profile page" -msgstr "Deine Profilseite" - -#: ../../include/nav.php:88 -msgid "Manage/Edit profiles" -msgstr "Profile verwalten" - -#: ../../include/nav.php:90 ../../include/channel.php:941 -msgid "Edit Profile" -msgstr "Profile bearbeiten" - -#: ../../include/nav.php:90 -msgid "Edit your profile" -msgstr "Profil bearbeiten" - -#: ../../include/nav.php:92 -msgid "Your photos" -msgstr "Deine Bilder" - -#: ../../include/nav.php:93 -msgid "Your files" -msgstr "Deine Dateien" - -#: ../../include/nav.php:96 -msgid "Your chatrooms" -msgstr "Deine Chaträume" - -#: ../../include/nav.php:102 ../../include/conversation.php:1675 -msgid "Bookmarks" -msgstr "Lesezeichen" - -#: ../../include/nav.php:102 -msgid "Your bookmarks" -msgstr "Deine Lesezeichen" - -#: ../../include/nav.php:106 -msgid "Your webpages" -msgstr "Deine Webseiten" - -#: ../../include/nav.php:110 -msgid "Sign in" -msgstr "Anmelden" - -#: ../../include/nav.php:127 -#, php-format -msgid "%s - click to logout" -msgstr "%s - Klick zum Abmelden" - -#: ../../include/nav.php:130 -msgid "Remote authentication" -msgstr "Über Konto auf anderem Server einloggen" - -#: ../../include/nav.php:130 -msgid "Click to authenticate to your home hub" -msgstr "Klicke, um Dich über Deinen Heimat-Server zu authentifizieren" - -#: ../../include/nav.php:144 -msgid "Home Page" -msgstr "Homepage" - -#: ../../include/nav.php:147 -msgid "Create an account" -msgstr "Erzeuge ein Konto" - -#: ../../include/nav.php:159 -msgid "Help and documentation" -msgstr "Hilfe und Dokumentation" - -#: ../../include/nav.php:163 -msgid "Applications, utilities, links, games" -msgstr "Anwendungen (Apps), Zubehör, Links, Spiele" - -#: ../../include/nav.php:165 -msgid "Search site @name, #tag, ?docs, content" -msgstr "Hub durchsuchen: @Name. #Schlagwort, ?Dokumentation, Inhalt" - -#: ../../include/nav.php:167 -msgid "Channel Directory" -msgstr "Kanal-Verzeichnis" - -#: ../../include/nav.php:179 -msgid "Your grid" -msgstr "Dein Grid" - -#: ../../include/nav.php:180 -msgid "Mark all grid notifications seen" -msgstr "Alle Grid-Benachrichtigungen als angesehen markieren" - -#: ../../include/nav.php:182 -msgid "Channel home" -msgstr "Mein Kanal" - -#: ../../include/nav.php:183 -msgid "Mark all channel notifications seen" -msgstr "Markiere alle Kanal-Benachrichtigungen als angesehen" - -#: ../../include/nav.php:189 -msgid "Notices" -msgstr "Benachrichtigungen" - -#: ../../include/nav.php:189 -msgid "Notifications" -msgstr "Benachrichtigungen" - -#: ../../include/nav.php:190 -msgid "See all notifications" -msgstr "Alle Benachrichtigungen ansehen" - -#: ../../include/nav.php:193 -msgid "Private mail" -msgstr "Persönliche Mail" - -#: ../../include/nav.php:194 -msgid "See all private messages" -msgstr "Alle persönlichen Nachrichten ansehen" - -#: ../../include/nav.php:195 -msgid "Mark all private messages seen" -msgstr "Markiere alle persönlichen Nachrichten als gesehen" - -#: ../../include/nav.php:201 -msgid "Event Calendar" -msgstr "Terminkalender" - -#: ../../include/nav.php:202 -msgid "See all events" -msgstr "Alle Termine ansehen" - -#: ../../include/nav.php:203 -msgid "Mark all events seen" -msgstr "Markiere alle Termine als gesehen" - -#: ../../include/nav.php:206 -msgid "Manage Your Channels" -msgstr "Verwalte Deine Kanäle" - -#: ../../include/nav.php:208 -msgid "Account/Channel Settings" -msgstr "Konto-/Kanal-Einstellungen" - -#: ../../include/nav.php:216 -msgid "Site Setup and Configuration" -msgstr "Seiten-Einrichtung und -Konfiguration" - -#: ../../include/nav.php:247 ../../include/conversation.php:851 -msgid "Loading..." -msgstr "Lädt ..." - -#: ../../include/nav.php:252 -msgid "@name, #tag, ?doc, content" -msgstr "@Name, #Schlagwort, ?Dokumentation, Inhalt" - -#: ../../include/nav.php:253 -msgid "Please wait..." -msgstr "Bitte warten..." +#: ../../include/channel.php:1292 +msgid "Like this thing" +msgstr "Gefällt mir" #: ../../include/connections.php:95 msgid "New window" @@ -7775,52 +7621,6 @@ msgstr "Öffne die markierte Adresse in einem neuen Browserfenster oder Tab" msgid "User '%s' deleted" msgstr "Benutzer '%s' gelöscht" -#: ../../include/contact_widgets.php:11 -#, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "%d Einladung verfügbar" -msgstr[1] "%d Einladungen verfügbar" - -#: ../../include/contact_widgets.php:19 -msgid "Find Channels" -msgstr "Finde Kanäle" - -#: ../../include/contact_widgets.php:20 -msgid "Enter name or interest" -msgstr "Name oder Interessen eingeben" - -#: ../../include/contact_widgets.php:21 -msgid "Connect/Follow" -msgstr "Verbinden/Folgen" - -#: ../../include/contact_widgets.php:22 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "Beispiele: Robert Morgenstein, Angeln" - -#: ../../include/contact_widgets.php:26 -msgid "Random Profile" -msgstr "Zufallsprofil" - -#: ../../include/contact_widgets.php:27 -msgid "Invite Friends" -msgstr "Lade Freunde ein" - -#: ../../include/contact_widgets.php:29 -msgid "Advanced example: name=fred and country=iceland" -msgstr "Fortgeschrittenes Beispiel: name=fred and country=iceland" - -#: ../../include/contact_widgets.php:122 -#, php-format -msgid "%d connection in common" -msgid_plural "%d connections in common" -msgstr[0] "%d gemeinsame Verbindung" -msgstr[1] "%d gemeinsame Verbindungen" - -#: ../../include/contact_widgets.php:127 -msgid "show more" -msgstr "mehr zeigen" - #: ../../include/conversation.php:204 #, php-format msgid "%1$s is now connected with %2$s" @@ -7831,258 +7631,269 @@ msgstr "%1$s ist jetzt mit %2$s verbunden" msgid "%1$s poked %2$s" msgstr "%1$s stupste %2$s an" -#: ../../include/conversation.php:691 +#: ../../include/conversation.php:243 ../../include/text.php:1013 +#: ../../include/text.php:1018 +msgid "poked" +msgstr "stupste" + +#: ../../include/conversation.php:694 #, php-format msgid "View %s's profile @ %s" msgstr "%ss Profil auf %s ansehen" -#: ../../include/conversation.php:710 +#: ../../include/conversation.php:713 msgid "Categories:" msgstr "Kategorien:" -#: ../../include/conversation.php:711 +#: ../../include/conversation.php:714 msgid "Filed under:" msgstr "Gespeichert unter:" -#: ../../include/conversation.php:738 +#: ../../include/conversation.php:741 msgid "View in context" msgstr "Im Zusammenhang anschauen" -#: ../../include/conversation.php:847 +#: ../../include/conversation.php:850 msgid "remove" msgstr "lösche" -#: ../../include/conversation.php:852 +#: ../../include/conversation.php:855 msgid "Delete Selected Items" msgstr "Lösche die ausgewählten Elemente" -#: ../../include/conversation.php:948 +#: ../../include/conversation.php:951 msgid "View Source" msgstr "Quelle anzeigen" -#: ../../include/conversation.php:949 +#: ../../include/conversation.php:952 msgid "Follow Thread" msgstr "Unterhaltung folgen" -#: ../../include/conversation.php:950 +#: ../../include/conversation.php:953 msgid "Unfollow Thread" msgstr "Unterhaltung nicht mehr folgen" -#: ../../include/conversation.php:955 +#: ../../include/conversation.php:958 msgid "Activity/Posts" msgstr "Aktivitäten/Beiträge" -#: ../../include/conversation.php:957 +#: ../../include/conversation.php:960 msgid "Edit Connection" msgstr "Verbindung bearbeiten" -#: ../../include/conversation.php:958 +#: ../../include/conversation.php:961 msgid "Message" msgstr "Nachricht" -#: ../../include/conversation.php:1075 +#: ../../include/conversation.php:1078 #, php-format msgid "%s likes this." msgstr "%s gefällt das." -#: ../../include/conversation.php:1075 +#: ../../include/conversation.php:1078 #, php-format msgid "%s doesn't like this." msgstr "%s gefällt das nicht." -#: ../../include/conversation.php:1079 +#: ../../include/conversation.php:1082 #, php-format msgid "%2$d people like this." msgid_plural "%2$d people like this." msgstr[0] "%2$d Person gefällt das." msgstr[1] "%2$d Leuten gefällt das." -#: ../../include/conversation.php:1081 +#: ../../include/conversation.php:1084 #, php-format msgid "%2$d people don't like this." msgid_plural "%2$d people don't like this." msgstr[0] "%2$d Person gefällt das nicht." msgstr[1] "%2$d Leuten gefällt das nicht." -#: ../../include/conversation.php:1087 +#: ../../include/conversation.php:1090 msgid "and" msgstr "und" -#: ../../include/conversation.php:1090 +#: ../../include/conversation.php:1093 #, php-format msgid ", and %d other people" msgid_plural ", and %d other people" msgstr[0] "" msgstr[1] ", und %d andere" -#: ../../include/conversation.php:1091 +#: ../../include/conversation.php:1094 #, php-format msgid "%s like this." msgstr "%s gefällt das." -#: ../../include/conversation.php:1091 +#: ../../include/conversation.php:1094 #, php-format msgid "%s don't like this." msgstr "%s gefällt das nicht." -#: ../../include/conversation.php:1130 +#: ../../include/conversation.php:1133 msgid "Set your location" msgstr "Standort" -#: ../../include/conversation.php:1131 +#: ../../include/conversation.php:1134 msgid "Clear browser location" msgstr "Browser-Standort löschen" -#: ../../include/conversation.php:1177 +#: ../../include/conversation.php:1182 msgid "Tag term:" msgstr "Schlagwort:" -#: ../../include/conversation.php:1178 +#: ../../include/conversation.php:1183 msgid "Where are you right now?" msgstr "Wo bist Du jetzt grade?" -#: ../../include/conversation.php:1210 +#: ../../include/conversation.php:1221 msgid "Page link name" msgstr "Link zur Seite" -#: ../../include/conversation.php:1213 +#: ../../include/conversation.php:1224 msgid "Post as" msgstr "Veröffentlichen als" -#: ../../include/conversation.php:1223 +#: ../../include/conversation.php:1238 msgid "Toggle voting" msgstr "Umfragewerkzeug aktivieren" -#: ../../include/conversation.php:1231 +#: ../../include/conversation.php:1246 msgid "Categories (optional, comma-separated list)" msgstr "Kategorien (optional, kommagetrennte Liste)" -#: ../../include/conversation.php:1254 +#: ../../include/conversation.php:1269 msgid "Set publish date" msgstr "Veröffentlichungsdatum festlegen" -#: ../../include/conversation.php:1258 -msgid "OK" -msgstr "Ok" - -#: ../../include/conversation.php:1503 +#: ../../include/conversation.php:1518 msgid "Discover" msgstr "Entdecken" -#: ../../include/conversation.php:1506 +#: ../../include/conversation.php:1521 msgid "Imported public streams" msgstr "Importierte öffentliche Beiträge" -#: ../../include/conversation.php:1511 +#: ../../include/conversation.php:1526 msgid "Commented Order" msgstr "Neueste Kommentare" -#: ../../include/conversation.php:1514 +#: ../../include/conversation.php:1529 msgid "Sort by Comment Date" msgstr "Nach Kommentardatum sortiert" -#: ../../include/conversation.php:1518 +#: ../../include/conversation.php:1533 msgid "Posted Order" msgstr "Neueste Beiträge" -#: ../../include/conversation.php:1521 +#: ../../include/conversation.php:1536 msgid "Sort by Post Date" msgstr "Nach Beitragsdatum sortiert" -#: ../../include/conversation.php:1529 +#: ../../include/conversation.php:1544 msgid "Posts that mention or involve you" msgstr "Beiträge mit Beteiligung Deinerseits" -#: ../../include/conversation.php:1538 +#: ../../include/conversation.php:1553 msgid "Activity Stream - by date" msgstr "Activity Stream – nach Datum sortiert" -#: ../../include/conversation.php:1544 +#: ../../include/conversation.php:1559 msgid "Starred" msgstr "Markiert" -#: ../../include/conversation.php:1547 +#: ../../include/conversation.php:1562 msgid "Favourite Posts" msgstr "Markierte Beiträge" -#: ../../include/conversation.php:1554 +#: ../../include/conversation.php:1569 msgid "Spam" msgstr "Spam" -#: ../../include/conversation.php:1557 +#: ../../include/conversation.php:1572 msgid "Posts flagged as SPAM" msgstr "Nachrichten, die als SPAM markiert wurden" -#: ../../include/conversation.php:1614 +#: ../../include/conversation.php:1629 msgid "Status Messages and Posts" msgstr "Statusnachrichten und Beiträge" -#: ../../include/conversation.php:1623 +#: ../../include/conversation.php:1638 msgid "About" msgstr "Über" -#: ../../include/conversation.php:1626 +#: ../../include/conversation.php:1641 msgid "Profile Details" msgstr "Profil-Details" -#: ../../include/conversation.php:1635 ../../include/photos.php:502 -msgid "Photo Albums" -msgstr "Fotoalben" - -#: ../../include/conversation.php:1642 +#: ../../include/conversation.php:1657 msgid "Files and Storage" msgstr "Dateien und Speicher" -#: ../../include/conversation.php:1678 +#: ../../include/conversation.php:1677 ../../include/conversation.php:1680 +#: ../../include/widgets.php:836 +msgid "Chatrooms" +msgstr "Chaträume" + +#: ../../include/conversation.php:1693 msgid "Saved Bookmarks" msgstr "Gespeicherte Lesezeichen" -#: ../../include/conversation.php:1688 +#: ../../include/conversation.php:1703 msgid "Manage Webpages" msgstr "Webseiten verwalten" -#: ../../include/conversation.php:1747 +#: ../../include/conversation.php:1768 msgctxt "noun" msgid "Attending" msgid_plural "Attending" msgstr[0] "Zusage" msgstr[1] "Zusagen" -#: ../../include/conversation.php:1750 +#: ../../include/conversation.php:1771 msgctxt "noun" msgid "Not Attending" msgid_plural "Not Attending" msgstr[0] "Absage" msgstr[1] "Absagen" -#: ../../include/conversation.php:1753 +#: ../../include/conversation.php:1774 msgctxt "noun" msgid "Undecided" msgid_plural "Undecided" msgstr[0] " Unentschlossen" msgstr[1] "Unentschlossene" -#: ../../include/conversation.php:1756 +#: ../../include/conversation.php:1777 msgctxt "noun" msgid "Agree" msgid_plural "Agrees" msgstr[0] "Zustimmung" msgstr[1] "Zustimmungen" -#: ../../include/conversation.php:1759 +#: ../../include/conversation.php:1780 msgctxt "noun" msgid "Disagree" msgid_plural "Disagrees" msgstr[0] "Ablehnung" msgstr[1] "Ablehnungen" -#: ../../include/conversation.php:1762 +#: ../../include/conversation.php:1783 msgctxt "noun" msgid "Abstain" msgid_plural "Abstains" msgstr[0] "Enthaltung" msgstr[1] "Enthaltungen" +#: ../../include/import.php:30 +msgid "" +"Cannot create a duplicate channel identifier on this system. Import failed." +msgstr "Kann keinen doppelten Kanal-Identifikator auf diesem System erzeugen (Spitzname oder Hash schon belegt). Import fehlgeschlagen." + +#: ../../include/import.php:97 +msgid "Channel clone failed. Import failed." +msgstr "Klonen des Kanals fehlgeschlagen. Import fehlgeschlagen." + #: ../../include/selectors.php:30 msgid "Frequently" msgstr "Häufig" @@ -8147,12 +7958,6 @@ msgstr "Geschlechtslos" msgid "Non-specific" msgstr "unklar" -#: ../../include/selectors.php:49 ../../include/selectors.php:66 -#: ../../include/selectors.php:104 ../../include/selectors.php:140 -#: ../../include/permissions.php:881 -msgid "Other" -msgstr "Andere" - #: ../../include/selectors.php:49 msgid "Undecided" msgstr "Unentschieden" @@ -8329,361 +8134,366 @@ msgstr "Interessiert mich nicht" msgid "Ask me" msgstr "Frag mich mal" -#: ../../include/PermissionDescription.php:31 -#: ../../include/acl_selectors.php:232 -msgid "Visible to your default audience" -msgstr "Standard-Sichtbarkeit gemäß Kanaleinstellungen" - -#: ../../include/PermissionDescription.php:115 -#: ../../include/acl_selectors.php:268 -msgid "Only me" -msgstr "Nur ich" - -#: ../../include/PermissionDescription.php:116 -msgid "Public" -msgstr "Öffentlich" - -#: ../../include/PermissionDescription.php:117 -msgid "Anybody in the $Projectname network" -msgstr "Jeder innerhalb des $Projectname Netzwerks" - -#: ../../include/PermissionDescription.php:118 +#: ../../include/bookmarks.php:35 #, php-format -msgid "Any account on %s" -msgstr "Jedes Nutzerkonto auf %s" +msgid "%1$s's bookmarks" +msgstr "%1$ss Lesezeichen" -#: ../../include/PermissionDescription.php:119 -msgid "Any of my connections" -msgstr "Alle meine Verbindungen" +#: ../../include/security.php:109 +msgid "guest:" +msgstr "Gast:" -#: ../../include/PermissionDescription.php:120 -msgid "Only connections I specifically allow" -msgstr "Nur Verbindungen, denen ich es explizit erlaube" - -#: ../../include/PermissionDescription.php:121 -msgid "Anybody authenticated (could include visitors from other networks)" -msgstr "Jeder, der angemeldet ist (kann Besucher anderer Netzwerke beinhalten)" - -#: ../../include/PermissionDescription.php:122 -msgid "Any connections including those who haven't yet been approved" -msgstr "Alle Verbindungen einschließlich der noch nicht bestätigten" - -#: ../../include/PermissionDescription.php:161 +#: ../../include/security.php:427 msgid "" -"This is your default setting for the audience of your normal stream, and " -"posts." -msgstr "Dies ist Deine Voreinstellung für die Sichtbarkeit Deiner normalen Beiträge (Stream)." +"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 "Das Security-Token des Formulars war nicht korrekt. Das ist wahrscheinlich passiert, weil das Formular zu lange (>3 Stunden) offen war, bevor es abgeschickt wurde." -#: ../../include/PermissionDescription.php:162 +#: ../../include/text.php:404 +msgid "prev" +msgstr "vorherige" + +#: ../../include/text.php:406 +msgid "first" +msgstr "erste" + +#: ../../include/text.php:435 +msgid "last" +msgstr "letzte" + +#: ../../include/text.php:438 +msgid "next" +msgstr "nächste" + +#: ../../include/text.php:448 +msgid "older" +msgstr "älter" + +#: ../../include/text.php:450 +msgid "newer" +msgstr "neuer" + +#: ../../include/text.php:843 +msgid "No connections" +msgstr "Keine Verbindungen" + +#: ../../include/text.php:868 +#, php-format +msgid "View all %s connections" +msgstr "Alle Verbindungen von %s anzeigen" + +#: ../../include/text.php:1013 ../../include/text.php:1018 +msgid "poke" +msgstr "anstupsen" + +#: ../../include/text.php:1019 +msgid "ping" +msgstr "anpingen" + +#: ../../include/text.php:1019 +msgid "pinged" +msgstr "pingte" + +#: ../../include/text.php:1020 +msgid "prod" +msgstr "knuffen" + +#: ../../include/text.php:1020 +msgid "prodded" +msgstr "knuffte" + +#: ../../include/text.php:1021 +msgid "slap" +msgstr "ohrfeigen" + +#: ../../include/text.php:1021 +msgid "slapped" +msgstr "ohrfeigte" + +#: ../../include/text.php:1022 +msgid "finger" +msgstr "befummeln" + +#: ../../include/text.php:1022 +msgid "fingered" +msgstr "befummelte" + +#: ../../include/text.php:1023 +msgid "rebuff" +msgstr "eine Abfuhr erteilen" + +#: ../../include/text.php:1023 +msgid "rebuffed" +msgstr "zurückgewiesen" + +#: ../../include/text.php:1035 +msgid "happy" +msgstr "glücklich" + +#: ../../include/text.php:1036 +msgid "sad" +msgstr "traurig" + +#: ../../include/text.php:1037 +msgid "mellow" +msgstr "sanft" + +#: ../../include/text.php:1038 +msgid "tired" +msgstr "müde" + +#: ../../include/text.php:1039 +msgid "perky" +msgstr "frech" + +#: ../../include/text.php:1040 +msgid "angry" +msgstr "sauer" + +#: ../../include/text.php:1041 +msgid "stupefied" +msgstr "verblüfft" + +#: ../../include/text.php:1042 +msgid "puzzled" +msgstr "verwirrt" + +#: ../../include/text.php:1043 +msgid "interested" +msgstr "interessiert" + +#: ../../include/text.php:1044 +msgid "bitter" +msgstr "verbittert" + +#: ../../include/text.php:1045 +msgid "cheerful" +msgstr "fröhlich" + +#: ../../include/text.php:1046 +msgid "alive" +msgstr "lebendig" + +#: ../../include/text.php:1047 +msgid "annoyed" +msgstr "verärgert" + +#: ../../include/text.php:1048 +msgid "anxious" +msgstr "unruhig" + +#: ../../include/text.php:1049 +msgid "cranky" +msgstr "schrullig" + +#: ../../include/text.php:1050 +msgid "disturbed" +msgstr "verstört" + +#: ../../include/text.php:1051 +msgid "frustrated" +msgstr "frustriert" + +#: ../../include/text.php:1052 +msgid "depressed" +msgstr "deprimiert" + +#: ../../include/text.php:1053 +msgid "motivated" +msgstr "motiviert" + +#: ../../include/text.php:1054 +msgid "relaxed" +msgstr "entspannt" + +#: ../../include/text.php:1055 +msgid "surprised" +msgstr "überrascht" + +#: ../../include/text.php:1237 ../../include/js_strings.php:70 +msgid "Monday" +msgstr "Montag" + +#: ../../include/text.php:1237 ../../include/js_strings.php:71 +msgid "Tuesday" +msgstr "Dienstag" + +#: ../../include/text.php:1237 ../../include/js_strings.php:72 +msgid "Wednesday" +msgstr "Mittwoch" + +#: ../../include/text.php:1237 ../../include/js_strings.php:73 +msgid "Thursday" +msgstr "Donnerstag" + +#: ../../include/text.php:1237 ../../include/js_strings.php:74 +msgid "Friday" +msgstr "Freitag" + +#: ../../include/text.php:1237 ../../include/js_strings.php:75 +msgid "Saturday" +msgstr "Samstag" + +#: ../../include/text.php:1237 ../../include/js_strings.php:69 +msgid "Sunday" +msgstr "Sonntag" + +#: ../../include/text.php:1241 ../../include/js_strings.php:45 +msgid "January" +msgstr "Januar" + +#: ../../include/text.php:1241 ../../include/js_strings.php:46 +msgid "February" +msgstr "Februar" + +#: ../../include/text.php:1241 ../../include/js_strings.php:47 +msgid "March" +msgstr "März" + +#: ../../include/text.php:1241 ../../include/js_strings.php:48 +msgid "April" +msgstr "April" + +#: ../../include/text.php:1241 +msgid "May" +msgstr "Mai" + +#: ../../include/text.php:1241 ../../include/js_strings.php:50 +msgid "June" +msgstr "Juni" + +#: ../../include/text.php:1241 ../../include/js_strings.php:51 +msgid "July" +msgstr "Juli" + +#: ../../include/text.php:1241 ../../include/js_strings.php:52 +msgid "August" +msgstr "August" + +#: ../../include/text.php:1241 ../../include/js_strings.php:53 +msgid "September" +msgstr "September" + +#: ../../include/text.php:1241 ../../include/js_strings.php:54 +msgid "October" +msgstr "Oktober" + +#: ../../include/text.php:1241 ../../include/js_strings.php:55 +msgid "November" +msgstr "November" + +#: ../../include/text.php:1241 ../../include/js_strings.php:56 +msgid "December" +msgstr "Dezember" + +#: ../../include/text.php:1318 ../../include/text.php:1322 +msgid "Unknown Attachment" +msgstr "Unbekannter Anhang" + +#: ../../include/text.php:1324 +msgid "unknown" +msgstr "unbekannt" + +#: ../../include/text.php:1360 +msgid "remove category" +msgstr "Kategorie entfernen" + +#: ../../include/text.php:1437 +msgid "remove from file" +msgstr "aus der Datei entfernen" + +#: ../../include/text.php:1734 ../../include/text.php:1805 +msgid "default" +msgstr "Standard" + +#: ../../include/text.php:1742 +msgid "Page layout" +msgstr "Seiten-Layout" + +#: ../../include/text.php:1742 +msgid "You can create your own with the layouts tool" +msgstr "Mit dem Gestaltungswerkzeug kannst Du Deine eigenen Layouts erstellen" + +#: ../../include/text.php:1784 +msgid "Page content type" +msgstr "Art des Seiteninhalts" + +#: ../../include/text.php:1817 +msgid "Select an alternate language" +msgstr "Wähle eine alternative Sprache" + +#: ../../include/text.php:1934 +msgid "activity" +msgstr "Aktivität" + +#: ../../include/text.php:2235 +msgid "Design Tools" +msgstr "Gestaltungswerkzeuge" + +#: ../../include/text.php:2241 +msgid "Pages" +msgstr "Seiten" + +#: ../../include/auth.php:147 +msgid "Logged out." +msgstr "Ausgeloggt." + +#: ../../include/auth.php:274 +msgid "Failed authentication" +msgstr "Authentifizierung fehlgeschlagen" + +#: ../../include/permissions.php:26 +msgid "Can view my normal stream and posts" +msgstr "Kann meine normalen Beiträge sehen" + +#: ../../include/permissions.php:30 +msgid "Can view my webpages" +msgstr "Kann meine Webseiten sehen" + +#: ../../include/permissions.php:34 +msgid "Can post on my channel page (\"wall\")" +msgstr "Kann auf meiner Kanal-Seite (\"wall\") Beiträge veröffentlichen" + +#: ../../include/permissions.php:37 +msgid "Can like/dislike stuff" +msgstr "Kann andere Elemente mögen/nicht mögen" + +#: ../../include/permissions.php:37 +msgid "Profiles and things other than posts/comments" +msgstr "Profile und alles außer Beiträge und Kommentare" + +#: ../../include/permissions.php:39 +msgid "Can forward to all my channel contacts via post @mentions" +msgstr "Kann an alle meine Kontakte via @-Erwähnung Nachrichten weiterleiten" + +#: ../../include/permissions.php:39 +msgid "Advanced - useful for creating group forum channels" +msgstr "Fortgeschritten - sinnvoll, um Gruppen-Kanäle/-Foren zu erstellen" + +#: ../../include/permissions.php:40 +msgid "Can chat with me (when available)" +msgstr "Kann mit mir chatten (wenn verfügbar)" + +#: ../../include/permissions.php:41 +msgid "Can write to my file storage and photos" +msgstr "Kann in meine Datei- und Bilderordner schreiben" + +#: ../../include/permissions.php:42 +msgid "Can edit my webpages" +msgstr "Kann meine Webseiten bearbeiten" + +#: ../../include/permissions.php:44 +msgid "Somewhat advanced - very useful in open communities" +msgstr "Etwas fortgeschritten – sehr nützlich in offenen Gemeinschaften" + +#: ../../include/permissions.php:46 +msgid "Can administer my channel resources" +msgstr "Kann meine Kanäle administrieren" + +#: ../../include/permissions.php:46 msgid "" -"This is your default setting for who can view your default channel profile" -msgstr "Dies ist Deine Voreinstellung für die Sichtbarkeit Deines Standard-Kanalprofils." - -#: ../../include/PermissionDescription.php:163 -msgid "This is your default setting for who can view your connections" -msgstr "Dies ist Deine Voreinstellung für die Sichtbarkeit Deiner Verbindungen." - -#: ../../include/PermissionDescription.php:164 -msgid "" -"This is your default setting for who can view your file storage and photos" -msgstr "Dies ist Deine Voreinstellung für die Sichtbarkeit Deiner Dateien und Fotos." - -#: ../../include/PermissionDescription.php:165 -msgid "This is your default setting for the audience of your webpages" -msgstr "Dies ist Deine Voreinstellung für die Sichtbarkeit Deiner Webseiten." - -#: ../../include/account.php:28 -msgid "Not a valid email address" -msgstr "Ungültige E-Mail-Adresse" - -#: ../../include/account.php:30 -msgid "Your email domain is not among those allowed on this site" -msgstr "Deine E-Mail-Adresse ist auf dieser Seite nicht erlaubt" - -#: ../../include/account.php:36 -msgid "Your email address is already registered at this site." -msgstr "Deine E-Mail-Adresse ist auf dieser Seite bereits registriert." - -#: ../../include/account.php:68 -msgid "An invitation is required." -msgstr "Eine Einladung wird benötigt." - -#: ../../include/account.php:72 -msgid "Invitation could not be verified." -msgstr "Die Einladung konnte nicht bestätigt werden." - -#: ../../include/account.php:122 -msgid "Please enter the required information." -msgstr "Bitte gib die benötigten Informationen ein." - -#: ../../include/account.php:189 -msgid "Failed to store account information." -msgstr "Speichern der Nutzerkontodaten fehlgeschlagen." - -#: ../../include/account.php:249 -#, php-format -msgid "Registration confirmation for %s" -msgstr "Registrierungsbestätigung für %s" - -#: ../../include/account.php:315 -#, php-format -msgid "Registration request at %s" -msgstr "Registrierungsanfrage auf %s" - -#: ../../include/account.php:317 ../../include/account.php:344 -#: ../../include/account.php:404 ../../include/network.php:1871 -msgid "Administrator" -msgstr "Administrator" - -#: ../../include/account.php:339 -msgid "your registration password" -msgstr "Dein Registrierungspasswort" - -#: ../../include/account.php:342 ../../include/account.php:402 -#, php-format -msgid "Registration details for %s" -msgstr "Registrierungsdetails für %s" - -#: ../../include/account.php:414 -msgid "Account approved." -msgstr "Nutzerkonto bestätigt." - -#: ../../include/account.php:454 -#, php-format -msgid "Registration revoked for %s" -msgstr "Registrierung für %s wurde widerrufen" - -#: ../../include/account.php:506 -msgid "Account verified. Please login." -msgstr "Nutzerkonto wurde bestätigt. Bitte melde Dich an!" - -#: ../../include/account.php:723 ../../include/account.php:725 -msgid "Click here to upgrade." -msgstr "Klicke hier, um das Upgrade durchzuführen." - -#: ../../include/account.php:731 -msgid "This action exceeds the limits set by your subscription plan." -msgstr "Diese Aktion überschreitet die Grenzen Ihres Abonnements." - -#: ../../include/account.php:736 -msgid "This action is not available under your subscription plan." -msgstr "Diese Aktion ist in Ihrem Abonnement nicht verfügbar." - -#: ../../include/attach.php:247 ../../include/attach.php:333 -msgid "Item was not found." -msgstr "Beitrag wurde nicht gefunden." - -#: ../../include/attach.php:497 -msgid "No source file." -msgstr "Keine Quelldatei." - -#: ../../include/attach.php:519 -msgid "Cannot locate file to replace" -msgstr "Kann Datei zum Ersetzen nicht finden" - -#: ../../include/attach.php:537 -msgid "Cannot locate file to revise/update" -msgstr "Kann Datei zum Prüfen/Aktualisieren nicht finden" - -#: ../../include/attach.php:672 -#, php-format -msgid "File exceeds size limit of %d" -msgstr "Datei überschreitet das Größen-Limit von %d" - -#: ../../include/attach.php:686 -#, php-format -msgid "You have reached your limit of %1$.0f Mbytes attachment storage." -msgstr "Die Größe Deiner Datei-Anhänge hat das Maximum von %1$.0f MByte erreicht." - -#: ../../include/attach.php:842 -msgid "File upload failed. Possible system limit or action terminated." -msgstr "Datei-Upload fehlgeschlagen. Mögliche Systembegrenzung oder abgebrochener Prozess." - -#: ../../include/attach.php:855 -msgid "Stored file could not be verified. Upload failed." -msgstr "Gespeichert Datei konnte nicht verifiziert werden. Upload abgebrochen." - -#: ../../include/attach.php:909 ../../include/attach.php:925 -msgid "Path not available." -msgstr "Pfad nicht verfügbar." - -#: ../../include/attach.php:971 ../../include/attach.php:1123 -msgid "Empty pathname" -msgstr "Leere Pfadangabe" - -#: ../../include/attach.php:997 -msgid "duplicate filename or path" -msgstr "doppelter Dateiname oder Pfad" - -#: ../../include/attach.php:1019 -msgid "Path not found." -msgstr "Pfad nicht gefunden." - -#: ../../include/attach.php:1077 -msgid "mkdir failed." -msgstr "mkdir fehlgeschlagen." - -#: ../../include/attach.php:1081 -msgid "database storage failed." -msgstr "Speichern in der Datenbank fehlgeschlagen." - -#: ../../include/attach.php:1129 -msgid "Empty path" -msgstr "Leere Pfadangabe" - -#: ../../include/channel.php:32 -msgid "Unable to obtain identity information from database" -msgstr "Kann keine Identitäts-Informationen aus Datenbank beziehen" - -#: ../../include/channel.php:66 -msgid "Empty name" -msgstr "Namensfeld leer" - -#: ../../include/channel.php:69 -msgid "Name too long" -msgstr "Name ist zu lang" - -#: ../../include/channel.php:180 -msgid "No account identifier" -msgstr "Keine Account-Kennung" - -#: ../../include/channel.php:192 -msgid "Nickname is required." -msgstr "Spitzname ist erforderlich." - -#: ../../include/channel.php:206 -msgid "Reserved nickname. Please choose another." -msgstr "Reservierter Kurzname. Bitte wähle einen anderen." - -#: ../../include/channel.php:211 -msgid "" -"Nickname has unsupported characters or is already being used on this site." -msgstr "Der Spitzname enthält nicht-unterstütze Zeichen oder wird bereits auf dieser Seite genutzt." - -#: ../../include/channel.php:287 -msgid "Unable to retrieve created identity" -msgstr "Kann die erstellte Identität nicht empfangen" - -#: ../../include/channel.php:345 -msgid "Default Profile" -msgstr "Standard-Profil" - -#: ../../include/channel.php:791 -msgid "Requested channel is not available." -msgstr "Angeforderte Kanal nicht verfügbar." - -#: ../../include/channel.php:938 -msgid "Create New Profile" -msgstr "Neues Profil erstellen" - -#: ../../include/channel.php:958 -msgid "Visible to everybody" -msgstr "Für jeden sichtbar" - -#: ../../include/channel.php:1031 ../../include/channel.php:1142 -msgid "Gender:" -msgstr "Geschlecht:" - -#: ../../include/channel.php:1032 ../../include/channel.php:1186 -msgid "Status:" -msgstr "Status:" - -#: ../../include/channel.php:1033 ../../include/channel.php:1197 -msgid "Homepage:" -msgstr "Homepage:" - -#: ../../include/channel.php:1034 -msgid "Online Now" -msgstr "gerade online" - -#: ../../include/channel.php:1147 -msgid "Like this channel" -msgstr "Dieser Kanal gefällt mir" - -#: ../../include/channel.php:1171 -msgid "j F, Y" -msgstr "j. F Y" - -#: ../../include/channel.php:1172 -msgid "j F" -msgstr "j. F" - -#: ../../include/channel.php:1179 -msgid "Birthday:" -msgstr "Geburtstag:" - -#: ../../include/channel.php:1192 -#, php-format -msgid "for %1$d %2$s" -msgstr "seit %1$d %2$s" - -#: ../../include/channel.php:1195 -msgid "Sexual Preference:" -msgstr "Sexuelle Orientierung:" - -#: ../../include/channel.php:1201 -msgid "Tags:" -msgstr "Schlagworte:" - -#: ../../include/channel.php:1203 -msgid "Political Views:" -msgstr "Politische Ansichten:" - -#: ../../include/channel.php:1205 -msgid "Religion:" -msgstr "Religion:" - -#: ../../include/channel.php:1209 -msgid "Hobbies/Interests:" -msgstr "Hobbys/Interessen:" - -#: ../../include/channel.php:1211 -msgid "Likes:" -msgstr "Gefällt:" - -#: ../../include/channel.php:1213 -msgid "Dislikes:" -msgstr "Gefällt nicht:" - -#: ../../include/channel.php:1215 -msgid "Contact information and Social Networks:" -msgstr "Kontaktinformation und soziale Netzwerke:" - -#: ../../include/channel.php:1217 -msgid "My other channels:" -msgstr "Meine anderen Kanäle:" - -#: ../../include/channel.php:1219 -msgid "Musical interests:" -msgstr "Musikalische Interessen:" - -#: ../../include/channel.php:1221 -msgid "Books, literature:" -msgstr "Bücher, Literatur:" - -#: ../../include/channel.php:1223 -msgid "Television:" -msgstr "Fernsehen:" - -#: ../../include/channel.php:1225 -msgid "Film/dance/culture/entertainment:" -msgstr "Film/Tanz/Kultur/Unterhaltung:" - -#: ../../include/channel.php:1227 -msgid "Love/Romance:" -msgstr "Liebe/Romantik:" - -#: ../../include/channel.php:1229 -msgid "Work/employment:" -msgstr "Arbeit/Anstellung:" - -#: ../../include/channel.php:1231 -msgid "School/education:" -msgstr "Schule/Ausbildung:" - -#: ../../include/channel.php:1251 -msgid "Like this thing" -msgstr "Gefällt mir" +"Extremely advanced. Leave this alone unless you know what you are doing" +msgstr "Sehr fortgeschritten. Bearbeite das nur, wenn Du genau weißt, was Du tust" #: ../../include/features.php:48 msgid "General Features" @@ -8730,378 +8540,257 @@ msgid "Provide managed web pages on your channel" msgstr "Ermöglicht das Erstellen von Webseiten in Deinem Kanal" #: ../../include/features.php:55 +msgid "Provide a wiki for your channel" +msgstr "Stelle ein Wiki in Deinem Kanal zur Verfügung" + +#: ../../include/features.php:56 msgid "Hide Rating" msgstr "Bewertung verbergen" -#: ../../include/features.php:55 +#: ../../include/features.php:56 msgid "" "Hide the rating buttons on your channel and profile pages. Note: People can " "still rate you somewhere else." msgstr "Verberge die Buttons zur Bewertung auf deiner Profil-Seite und deinem Kanal. Hinweis: Leute können dich weiterhin andernorts bewerten." -#: ../../include/features.php:56 +#: ../../include/features.php:57 msgid "Private Notes" msgstr "Private Notizen" -#: ../../include/features.php:56 +#: ../../include/features.php:57 msgid "Enables a tool to store notes and reminders (note: not encrypted)" msgstr "Aktiviert ein Werkzeug mit dem Notizen und Erinnerungen gespeichert werden können (Hinweis: nicht verschlüsselt)" -#: ../../include/features.php:57 +#: ../../include/features.php:58 msgid "Navigation Channel Select" msgstr "Kanal-Auswahl in der Navigationsleiste" -#: ../../include/features.php:57 +#: ../../include/features.php:58 msgid "Change channels directly from within the navigation dropdown menu" msgstr "Ermöglicht den direkten Wechsel zu anderen Kanälen über das Navigationsmenü" -#: ../../include/features.php:58 +#: ../../include/features.php:59 msgid "Photo Location" msgstr "Aufnahmeort" -#: ../../include/features.php:58 +#: ../../include/features.php:59 msgid "If location data is available on uploaded photos, link this to a map." msgstr "Verlinkt den Aufnahmeort von Fotos (falls verfügbar) auf einer Karte" -#: ../../include/features.php:59 +#: ../../include/features.php:60 msgid "Access Controlled Chatrooms" msgstr "Zugriffskontrollierte Chaträume" -#: ../../include/features.php:59 +#: ../../include/features.php:60 msgid "Provide chatrooms and chat services with access control." msgstr "Bieten Sie Chaträume und Chatdienste mit Zugriffskontrolle an." -#: ../../include/features.php:60 +#: ../../include/features.php:61 msgid "Smart Birthdays" msgstr "Smarte Geburtstage" -#: ../../include/features.php:60 +#: ../../include/features.php:61 msgid "" "Make birthday events timezone aware in case your friends are scattered " "across the planet." msgstr "Stellt für Geburtstage einen Zeitzonenbezug her, falls deine Freunde über den ganzen Planeten verstreut sind." -#: ../../include/features.php:61 +#: ../../include/features.php:62 msgid "Expert Mode" msgstr "Expertenmodus" -#: ../../include/features.php:61 +#: ../../include/features.php:62 msgid "Enable Expert Mode to provide advanced configuration options" msgstr "Aktiviert den Expertenmodus, der fortgeschrittene Konfigurationsoptionen zur Verfügung stellt" -#: ../../include/features.php:62 +#: ../../include/features.php:63 msgid "Premium Channel" msgstr "Premium-Kanal" -#: ../../include/features.php:62 +#: ../../include/features.php:63 msgid "" "Allows you to set restrictions and terms on those that connect with your " "channel" msgstr "Ermöglicht es, Einschränkungen und Bedingungen für Verbindungen dieses Kanals festzulegen" -#: ../../include/features.php:67 +#: ../../include/features.php:68 msgid "Post Composition Features" msgstr "Nachbearbeitungsfunktionen" -#: ../../include/features.php:70 +#: ../../include/features.php:71 msgid "Large Photos" msgstr "Große Fotos" -#: ../../include/features.php:70 +#: ../../include/features.php:71 msgid "" "Include large (1024px) photo thumbnails in posts. If not enabled, use small " "(640px) photo thumbnails" msgstr "Große Vorschaubilder (1024px) in Beiträgen anzeigen. Falls nicht aktiviert, werden kleine Vorschaubilder (640px) verwendet." -#: ../../include/features.php:71 +#: ../../include/features.php:72 msgid "Automatically import channel content from other channels or feeds" msgstr "Ermöglicht den automatischen Import von Inhalten für diesen Kanal von anderen Kanälen oder Feeds" -#: ../../include/features.php:72 +#: ../../include/features.php:73 msgid "Even More Encryption" msgstr "Noch mehr Verschlüsselung" -#: ../../include/features.php:72 +#: ../../include/features.php:73 msgid "" "Allow optional encryption of content end-to-end with a shared secret key" msgstr "Ermöglicht optional die zusätzliche Verschlüsselung von Inhalten (Ende-zu-Ende mit geteiltem Schlüssel)" -#: ../../include/features.php:73 +#: ../../include/features.php:74 msgid "Enable Voting Tools" msgstr "Umfragewerkzeuge aktivieren" -#: ../../include/features.php:73 +#: ../../include/features.php:74 msgid "Provide a class of post which others can vote on" msgstr "Aktiviert die Umfragewerkzeuge, um anderen die Möglichkeit zu geben, einem Beitrag zuzustimmen, ihn abzulehnen oder sich zu enthalten. (Muss im Beitrag selbst noch aktiviert werden.)" -#: ../../include/features.php:74 +#: ../../include/features.php:75 msgid "Delayed Posting" msgstr "Verzögertes Senden" -#: ../../include/features.php:74 +#: ../../include/features.php:75 msgid "Allow posts to be published at a later date" msgstr "Ermöglicht es, Beiträge zu einem späteren Zeitpunkt zu veröffentlichen" -#: ../../include/features.php:75 +#: ../../include/features.php:76 msgid "Suppress Duplicate Posts/Comments" msgstr "Doppelte Beiträge unterdrücken" -#: ../../include/features.php:75 +#: ../../include/features.php:76 msgid "" "Prevent posts with identical content to be published with less than two " "minutes in between submissions." msgstr "Verhindert, dass innerhalb von zwei Minuten Beiträge mit identischem Inhalt veröffentlicht werden." -#: ../../include/features.php:81 +#: ../../include/features.php:82 msgid "Network and Stream Filtering" msgstr "Netzwerk- und Stream-Filter" -#: ../../include/features.php:82 +#: ../../include/features.php:83 msgid "Search by Date" msgstr "Suche nach Datum" -#: ../../include/features.php:82 +#: ../../include/features.php:83 msgid "Ability to select posts by date ranges" msgstr "Möglichkeit, Beiträge nach Zeiträumen auszuwählen" -#: ../../include/features.php:83 ../../include/group.php:311 +#: ../../include/features.php:84 ../../include/group.php:311 msgid "Privacy Groups" msgstr "Gruppen" -#: ../../include/features.php:83 +#: ../../include/features.php:84 msgid "Enable management and selection of privacy groups" msgstr "Auswahl und Verwaltung von Gruppen für Kanäle aktivieren" -#: ../../include/features.php:84 +#: ../../include/features.php:85 ../../include/widgets.php:281 +msgid "Saved Searches" +msgstr "Gespeicherte Suchanfragen" + +#: ../../include/features.php:85 msgid "Save search terms for re-use" msgstr "Ermöglicht das Abspeichern von Suchbegriffen zur Wiederverwendung" -#: ../../include/features.php:85 +#: ../../include/features.php:86 msgid "Network Personal Tab" msgstr "Persönlicher Netzwerkreiter" -#: ../../include/features.php:85 +#: ../../include/features.php:86 msgid "Enable tab to display only Network posts that you've interacted on" msgstr "Aktiviert einen Reiter in der Grid-Ansicht, der nur Netzwerk-Beiträge anzeigt, mit denen Du interagiert hast" -#: ../../include/features.php:86 +#: ../../include/features.php:87 msgid "Network New Tab" msgstr "Netzwerkreiter Neu" -#: ../../include/features.php:86 +#: ../../include/features.php:87 msgid "Enable tab to display all new Network activity" msgstr "Aktiviert einen Reiter in der Grid-Ansicht, der alle neuen Netzwerkaktivitäten anzeigt" -#: ../../include/features.php:87 +#: ../../include/features.php:88 msgid "Affinity Tool" msgstr "Beziehungs-Tool" -#: ../../include/features.php:87 +#: ../../include/features.php:88 msgid "Filter stream activity by depth of relationships" msgstr "Aktiviert ein Werkzeug in der Grid-Ansicht, das den Stream nach Grad der Beziehung filtern kann" -#: ../../include/features.php:88 +#: ../../include/features.php:89 msgid "Connection Filtering" msgstr "Filter für Verbindungen" -#: ../../include/features.php:88 +#: ../../include/features.php:89 msgid "Filter incoming posts from connections based on keywords/content" msgstr "Ermöglicht die Filterung eingehender Beiträge anhand von Schlüsselwörtern (muss an der Verbindung konfiguriert werden)" -#: ../../include/features.php:89 +#: ../../include/features.php:90 msgid "Show channel suggestions" msgstr "Kanalvorschläge anzeigen" -#: ../../include/features.php:94 +#: ../../include/features.php:95 msgid "Post/Comment Tools" msgstr "Beitrag-/Kommentar-Tools" -#: ../../include/features.php:95 +#: ../../include/features.php:96 msgid "Community Tagging" msgstr "Gemeinschaftliches Verschlagworten" -#: ../../include/features.php:95 +#: ../../include/features.php:96 msgid "Ability to tag existing posts" msgstr "Ermöglicht das Verschlagworten existierender Beiträge" -#: ../../include/features.php:96 +#: ../../include/features.php:97 msgid "Post Categories" msgstr "Beitrags-Kategorien" -#: ../../include/features.php:96 +#: ../../include/features.php:97 msgid "Add categories to your posts" msgstr "Aktiviert Kategorien für Beiträge" -#: ../../include/features.php:97 +#: ../../include/features.php:98 msgid "Emoji Reactions" msgstr "Emoji Reaktionen" -#: ../../include/features.php:97 +#: ../../include/features.php:98 msgid "Add emoji reaction ability to posts" msgstr "Aktiviert Emoji-Reaktionen für Beiträge" -#: ../../include/features.php:98 +#: ../../include/features.php:99 ../../include/widgets.php:310 +#: ../../include/contact_widgets.php:53 +msgid "Saved Folders" +msgstr "Gespeicherte Ordner" + +#: ../../include/features.php:99 msgid "Ability to file posts under folders" msgstr "Möglichkeit, Beiträge in Verzeichnissen zu sammeln" -#: ../../include/features.php:99 +#: ../../include/features.php:100 msgid "Dislike Posts" msgstr "Gefällt-mir-nicht-Beiträge" -#: ../../include/features.php:99 +#: ../../include/features.php:100 msgid "Ability to dislike posts/comments" msgstr "Aktiviert die „Gefällt mir nicht“-Schaltfläche" -#: ../../include/features.php:100 +#: ../../include/features.php:101 msgid "Star Posts" msgstr "Beiträge mit Sternchen versehen" -#: ../../include/features.php:100 +#: ../../include/features.php:101 msgid "Ability to mark special posts with a star indicator" msgstr "Ermöglicht die lokale Markierung spezieller Beiträge mit einem Sternchen-Symbol" -#: ../../include/features.php:101 +#: ../../include/features.php:102 msgid "Tag Cloud" msgstr "Schlagwort-Wolke" -#: ../../include/features.php:101 +#: ../../include/features.php:102 msgid "Provide a personal tag cloud on your channel page" msgstr "Aktiviert die Anzeige einer Schlagwort-Wolke (Tag Cloud) auf Deiner Kanal-Seite" -#: ../../include/oembed.php:324 -msgid "Embedded content" -msgstr "Eingebetteter Inhalt" - -#: ../../include/oembed.php:333 -msgid "Embedding disabled" -msgstr "Einbetten ausgeschaltet" - -#: ../../include/acl_selectors.php:271 -msgid "Who can see this?" -msgstr "Wer kann das sehen?" - -#: ../../include/acl_selectors.php:272 -msgid "Custom selection" -msgstr "Benutzerdefinierte Auswahl" - -#: ../../include/acl_selectors.php:273 -msgid "" -"Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit" -" the scope of \"Show\"." -msgstr "Wähle \"Anzeigen\", um Betrachtung zuzulassen. \"Nicht anzeigen\" überstimmt und limitiert den Aktionsradius von \"Anzeigen\" für Ausnahmen." - -#: ../../include/acl_selectors.php:274 -msgid "Show" -msgstr "Anzeigen" - -#: ../../include/acl_selectors.php:275 -msgid "Don't show" -msgstr "Nicht anzeigen" - -#: ../../include/acl_selectors.php:281 -msgid "Other networks and post services" -msgstr "Andere Netzwerke und Platformen" - -#: ../../include/acl_selectors.php:311 -#, php-format -msgid "" -"Post permissions %s cannot be changed %s after a post is shared.
These" -" permissions set who is allowed to view the post." -msgstr "Beitragsberechtigungen %s können nicht geändert werden %s, nachdem der Beitrag gesendet wurde.
Diese Berechtigungen bestimmen, wer den Beitrag sehen kann." - -#: ../../include/auth.php:105 -msgid "Logged out." -msgstr "Ausgeloggt." - -#: ../../include/auth.php:212 -msgid "Failed authentication" -msgstr "Authentifizierung fehlgeschlagen" - -#: ../../include/datetime.php:135 -msgid "Birthday" -msgstr "Geburtstag" - -#: ../../include/datetime.php:137 -msgid "Age: " -msgstr "Alter:" - -#: ../../include/datetime.php:139 -msgid "YYYY-MM-DD or MM-DD" -msgstr "JJJJ-MM-TT oder MM-TT" - -#: ../../include/datetime.php:272 ../../boot.php:2470 -msgid "never" -msgstr "Nie" - -#: ../../include/datetime.php:278 -msgid "less than a second ago" -msgstr "Vor weniger als einer Sekunde" - -#: ../../include/datetime.php:296 -#, php-format -msgctxt "e.g. 22 hours ago, 1 minute ago" -msgid "%1$d %2$s ago" -msgstr "vor %1$d %2$s" - -#: ../../include/datetime.php:307 -msgctxt "relative_date" -msgid "year" -msgid_plural "years" -msgstr[0] "Jahr" -msgstr[1] "Jahre" - -#: ../../include/datetime.php:310 -msgctxt "relative_date" -msgid "month" -msgid_plural "months" -msgstr[0] "Monat" -msgstr[1] "Monate" - -#: ../../include/datetime.php:313 -msgctxt "relative_date" -msgid "week" -msgid_plural "weeks" -msgstr[0] "Woche" -msgstr[1] "Wochen" - -#: ../../include/datetime.php:316 -msgctxt "relative_date" -msgid "day" -msgid_plural "days" -msgstr[0] "Tag" -msgstr[1] "Tage" - -#: ../../include/datetime.php:319 -msgctxt "relative_date" -msgid "hour" -msgid_plural "hours" -msgstr[0] "Stunde" -msgstr[1] "Stunden" - -#: ../../include/datetime.php:322 -msgctxt "relative_date" -msgid "minute" -msgid_plural "minutes" -msgstr[0] "Minute" -msgstr[1] "Minuten" - -#: ../../include/datetime.php:325 -msgctxt "relative_date" -msgid "second" -msgid_plural "seconds" -msgstr[0] "Sekunde" -msgstr[1] "Sekunden" - -#: ../../include/datetime.php:562 -#, php-format -msgid "%1$s's birthday" -msgstr "%1$ss Geburtstag" - -#: ../../include/datetime.php:563 -#, php-format -msgid "Happy Birthday %1$s" -msgstr "Alles Gute zum Geburtstag, %1$s" - #: ../../include/group.php:26 msgid "" "A deleted group with this name was revived. Existing item permissions " @@ -9129,21 +8818,583 @@ msgstr "Gruppe hinzufügen" msgid "Channels not in any privacy group" msgstr "Kanäle, die in keiner Gruppe sind" +#: ../../include/group.php:316 ../../include/widgets.php:282 +msgid "add" +msgstr "hinzufügen" + +#: ../../include/event.php:22 ../../include/event.php:69 +#: ../../include/bb2diaspora.php:485 +msgid "l F d, Y \\@ g:i A" +msgstr "l, d. F Y, H:i" + +#: ../../include/event.php:30 ../../include/event.php:73 +#: ../../include/bb2diaspora.php:491 +msgid "Starts:" +msgstr "Beginnt:" + +#: ../../include/event.php:40 ../../include/event.php:77 +#: ../../include/bb2diaspora.php:499 +msgid "Finishes:" +msgstr "Endet:" + +#: ../../include/event.php:814 +msgid "This event has been added to your calendar." +msgstr "Dieser Termin wurde zu Deinem Kalender hinzugefügt" + +#: ../../include/event.php:1014 +msgid "Not specified" +msgstr "Keine Angabe" + +#: ../../include/event.php:1015 +msgid "Needs Action" +msgstr "Aktion erforderlich" + +#: ../../include/event.php:1016 +msgid "Completed" +msgstr "Abgeschlossen" + +#: ../../include/event.php:1017 +msgid "In Process" +msgstr "In Bearbeitung" + +#: ../../include/event.php:1018 +msgid "Cancelled" +msgstr "gestrichen" + +#: ../../include/account.php:28 +msgid "Not a valid email address" +msgstr "Ungültige E-Mail-Adresse" + +#: ../../include/account.php:30 +msgid "Your email domain is not among those allowed on this site" +msgstr "Deine E-Mail-Adresse ist auf dieser Seite nicht erlaubt" + +#: ../../include/account.php:36 +msgid "Your email address is already registered at this site." +msgstr "Deine E-Mail-Adresse ist auf dieser Seite bereits registriert." + +#: ../../include/account.php:68 +msgid "An invitation is required." +msgstr "Eine Einladung wird benötigt." + +#: ../../include/account.php:72 +msgid "Invitation could not be verified." +msgstr "Die Einladung konnte nicht bestätigt werden." + +#: ../../include/account.php:122 +msgid "Please enter the required information." +msgstr "Bitte gib die benötigten Informationen ein." + +#: ../../include/account.php:189 +msgid "Failed to store account information." +msgstr "Speichern der Nutzerkontodaten fehlgeschlagen." + +#: ../../include/account.php:249 +#, php-format +msgid "Registration confirmation for %s" +msgstr "Registrierungsbestätigung für %s" + +#: ../../include/account.php:315 +#, php-format +msgid "Registration request at %s" +msgstr "Registrierungsanfrage auf %s" + +#: ../../include/account.php:339 +msgid "your registration password" +msgstr "Dein Registrierungspasswort" + +#: ../../include/account.php:342 ../../include/account.php:402 +#, php-format +msgid "Registration details for %s" +msgstr "Registrierungsdetails für %s" + +#: ../../include/account.php:414 +msgid "Account approved." +msgstr "Nutzerkonto bestätigt." + +#: ../../include/account.php:454 +#, php-format +msgid "Registration revoked for %s" +msgstr "Registrierung für %s wurde widerrufen" + +#: ../../include/account.php:739 ../../include/account.php:741 +msgid "Click here to upgrade." +msgstr "Klicke hier, um das Upgrade durchzuführen." + +#: ../../include/account.php:747 +msgid "This action exceeds the limits set by your subscription plan." +msgstr "Diese Aktion überschreitet die Grenzen Ihres Abonnements." + +#: ../../include/account.php:752 +msgid "This action is not available under your subscription plan." +msgstr "Diese Aktion ist in Ihrem Abonnement nicht verfügbar." + +#: ../../include/follow.php:27 +msgid "Channel is blocked on this site." +msgstr "Der Kanal ist auf dieser Seite blockiert " + +#: ../../include/follow.php:32 +msgid "Channel location missing." +msgstr "Adresse des Kanals fehlt." + +#: ../../include/follow.php:80 +msgid "Response from remote channel was incomplete." +msgstr "Antwort des entfernten Kanals war unvollständig." + +#: ../../include/follow.php:97 +msgid "Channel was deleted and no longer exists." +msgstr "Kanal wurde gelöscht und existiert nicht mehr." + +#: ../../include/follow.php:147 ../../include/follow.php:183 +msgid "Protocol disabled." +msgstr "Protokoll deaktiviert." + +#: ../../include/follow.php:171 +msgid "Channel discovery failed." +msgstr "Kanalsuche fehlgeschlagen" + +#: ../../include/follow.php:210 +msgid "Cannot connect to yourself." +msgstr "Du kannst Dich nicht mit Dir selbst verbinden." + +#: ../../include/attach.php:247 ../../include/attach.php:333 +msgid "Item was not found." +msgstr "Beitrag wurde nicht gefunden." + +#: ../../include/attach.php:499 +msgid "No source file." +msgstr "Keine Quelldatei." + +#: ../../include/attach.php:521 +msgid "Cannot locate file to replace" +msgstr "Kann Datei zum Ersetzen nicht finden" + +#: ../../include/attach.php:539 +msgid "Cannot locate file to revise/update" +msgstr "Kann Datei zum Prüfen/Aktualisieren nicht finden" + +#: ../../include/attach.php:674 +#, php-format +msgid "File exceeds size limit of %d" +msgstr "Datei überschreitet das Größen-Limit von %d" + +#: ../../include/attach.php:688 +#, php-format +msgid "You have reached your limit of %1$.0f Mbytes attachment storage." +msgstr "Die Größe Deiner Datei-Anhänge hat das Maximum von %1$.0f MByte erreicht." + +#: ../../include/attach.php:846 +msgid "File upload failed. Possible system limit or action terminated." +msgstr "Datei-Upload fehlgeschlagen. Mögliche Systembegrenzung oder abgebrochener Prozess." + +#: ../../include/attach.php:859 +msgid "Stored file could not be verified. Upload failed." +msgstr "Gespeichert Datei konnte nicht verifiziert werden. Upload abgebrochen." + +#: ../../include/attach.php:915 ../../include/attach.php:931 +msgid "Path not available." +msgstr "Pfad nicht verfügbar." + +#: ../../include/attach.php:977 ../../include/attach.php:1129 +msgid "Empty pathname" +msgstr "Leere Pfadangabe" + +#: ../../include/attach.php:1003 +msgid "duplicate filename or path" +msgstr "doppelter Dateiname oder Pfad" + +#: ../../include/attach.php:1025 +msgid "Path not found." +msgstr "Pfad nicht gefunden." + +#: ../../include/attach.php:1083 +msgid "mkdir failed." +msgstr "mkdir fehlgeschlagen." + +#: ../../include/attach.php:1087 +msgid "database storage failed." +msgstr "Speichern in der Datenbank fehlgeschlagen." + +#: ../../include/attach.php:1135 +msgid "Empty path" +msgstr "Leere Pfadangabe" + +#: ../../include/bbcode.php:123 ../../include/bbcode.php:878 +#: ../../include/bbcode.php:881 ../../include/bbcode.php:886 +#: ../../include/bbcode.php:889 ../../include/bbcode.php:892 +#: ../../include/bbcode.php:895 ../../include/bbcode.php:900 +#: ../../include/bbcode.php:903 ../../include/bbcode.php:908 +#: ../../include/bbcode.php:911 ../../include/bbcode.php:914 +#: ../../include/bbcode.php:917 +msgid "Image/photo" +msgstr "Bild/Foto" + +#: ../../include/bbcode.php:162 ../../include/bbcode.php:928 +msgid "Encrypted content" +msgstr "Verschlüsselter Inhalt" + +#: ../../include/bbcode.php:178 +#, php-format +msgid "Install %s element: " +msgstr "Element %s installieren: " + +#: ../../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 "Dieser Beitrag beinhaltet ein installierbares %s Element, aber Du hast nicht die nötigen Rechte, um es auf diesem Hub zu installieren." + +#: ../../include/bbcode.php:261 +#, php-format +msgid "%1$s wrote the following %2$s %3$s" +msgstr "%1$s schrieb den folgenden %2$s %3$s" + +#: ../../include/bbcode.php:338 ../../include/bbcode.php:346 +msgid "Click to open/close" +msgstr "Klicke zum Öffnen/Schließen" + +#: ../../include/bbcode.php:346 +msgid "spoiler" +msgstr "Spoiler" + +#: ../../include/bbcode.php:619 +msgid "Different viewers will see this text differently" +msgstr "Verschiedene Betrachter werden diesen Text unterschiedlich sehen" + +#: ../../include/bbcode.php:866 +msgid "$1 wrote:" +msgstr "$1 schrieb:" + +#: ../../include/items.php:897 ../../include/items.php:942 +msgid "(Unknown)" +msgstr "(Unbekannt)" + +#: ../../include/items.php:1141 +msgid "Visible to anybody on the internet." +msgstr "Für jeden im Internet sichtbar." + +#: ../../include/items.php:1143 +msgid "Visible to you only." +msgstr "Nur für Dich sichtbar." + +#: ../../include/items.php:1145 +msgid "Visible to anybody in this network." +msgstr "Für jedes $Projectname-Mitglied sichtbar." + +#: ../../include/items.php:1147 +msgid "Visible to anybody authenticated." +msgstr "Für jeden sichtbar, der angemeldet ist." + +#: ../../include/items.php:1149 +#, php-format +msgid "Visible to anybody on %s." +msgstr "Für jeden auf %s sichtbar." + +#: ../../include/items.php:1151 +msgid "Visible to all connections." +msgstr "Für alle Verbindungen sichtbar." + +#: ../../include/items.php:1153 +msgid "Visible to approved connections." +msgstr "Nur für akzeptierte Verbindungen sichtbar." + +#: ../../include/items.php:1155 +msgid "Visible to specific connections." +msgstr "Sichtbar für bestimmte Verbindungen." + +#: ../../include/items.php:3918 +msgid "Privacy group is empty." +msgstr "Gruppe ist leer." + +#: ../../include/items.php:3925 +#, php-format +msgid "Privacy group: %s" +msgstr "Gruppe: %s" + +#: ../../include/items.php:3937 +msgid "Connection not found." +msgstr "Die Verbindung wurde nicht gefunden." + +#: ../../include/items.php:4290 +msgid "profile photo" +msgstr "Profilfoto" + +#: ../../include/oembed.php:336 +msgid "Embedded content" +msgstr "Eingebetteter Inhalt" + +#: ../../include/oembed.php:345 +msgid "Embedding disabled" +msgstr "Einbetten ausgeschaltet" + +#: ../../include/widgets.php:103 +msgid "System" +msgstr "System" + +#: ../../include/widgets.php:106 +msgid "New App" +msgstr "Neue App" + +#: ../../include/widgets.php:154 +msgid "Suggestions" +msgstr "Vorschläge" + +#: ../../include/widgets.php:155 +msgid "See more..." +msgstr "Mehr anzeigen …" + +#: ../../include/widgets.php:175 +#, php-format +msgid "You have %1$.0f of %2$.0f allowed connections." +msgstr "Du bist %1$.0f von maximal %2$.0f erlaubten Verbindungen eingegangen." + +#: ../../include/widgets.php:181 +msgid "Add New Connection" +msgstr "Neue Verbindung hinzufügen" + +#: ../../include/widgets.php:182 +msgid "Enter channel address" +msgstr "Adresse des Kanals eingeben" + +#: ../../include/widgets.php:183 +msgid "Examples: bob@example.com, https://example.com/barbara" +msgstr "Beispiele: bob@beispiel.com, http://beispiel.com/barbara" + +#: ../../include/widgets.php:199 +msgid "Notes" +msgstr "Notizen" + +#: ../../include/widgets.php:273 +msgid "Remove term" +msgstr "Eintrag löschen" + +#: ../../include/widgets.php:313 ../../include/widgets.php:432 +#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:94 +msgid "Everything" +msgstr "Alles" + +#: ../../include/widgets.php:354 +msgid "Archives" +msgstr "Archive" + +#: ../../include/widgets.php:516 +msgid "Refresh" +msgstr "Aktualisieren" + +#: ../../include/widgets.php:556 +msgid "Account settings" +msgstr "Konto-Einstellungen" + +#: ../../include/widgets.php:562 +msgid "Channel settings" +msgstr "Kanal-Einstellungen" + +#: ../../include/widgets.php:571 +msgid "Additional features" +msgstr "Zusätzliche Funktionen" + +#: ../../include/widgets.php:578 +msgid "Feature/Addon settings" +msgstr "Plugin-Einstellungen" + +#: ../../include/widgets.php:584 +msgid "Display settings" +msgstr "Anzeige-Einstellungen" + +#: ../../include/widgets.php:591 +msgid "Manage locations" +msgstr "Klon-Adressen verwalten" + +#: ../../include/widgets.php:600 +msgid "Export channel" +msgstr "Kanal exportieren" + +#: ../../include/widgets.php:607 +msgid "Connected apps" +msgstr "Verbundene Apps" + +#: ../../include/widgets.php:631 +msgid "Premium Channel Settings" +msgstr "Premium-Kanal-Einstellungen" + +#: ../../include/widgets.php:660 +msgid "Private Mail Menu" +msgstr "Private Nachrichten" + +#: ../../include/widgets.php:662 +msgid "Combined View" +msgstr "Kombinierte Anzeige" + +#: ../../include/widgets.php:694 ../../include/widgets.php:706 +msgid "Conversations" +msgstr "Konversationen" + +#: ../../include/widgets.php:698 +msgid "Received Messages" +msgstr "Erhaltene Nachrichten" + +#: ../../include/widgets.php:702 +msgid "Sent Messages" +msgstr "Gesendete Nachrichten" + +#: ../../include/widgets.php:716 +msgid "No messages." +msgstr "Keine Nachrichten." + +#: ../../include/widgets.php:734 +msgid "Delete conversation" +msgstr "Unterhaltung löschen" + +#: ../../include/widgets.php:760 +msgid "Events Tools" +msgstr "Kalenderwerkzeuge" + +#: ../../include/widgets.php:761 +msgid "Export Calendar" +msgstr "Kalender exportieren" + +#: ../../include/widgets.php:762 +msgid "Import Calendar" +msgstr "Kalender importieren" + +#: ../../include/widgets.php:840 +msgid "Overview" +msgstr "Übersicht" + +#: ../../include/widgets.php:847 +msgid "Chat Members" +msgstr "Chatmitglieder" + +#: ../../include/widgets.php:869 +msgid "Wiki List" +msgstr "Wikiliste" + +#: ../../include/widgets.php:907 +msgid "Wiki Pages" +msgstr "Wikiseiten" + +#: ../../include/widgets.php:942 +msgid "Bookmarked Chatrooms" +msgstr "Gespeicherte Chatrooms" + +#: ../../include/widgets.php:965 +msgid "Suggested Chatrooms" +msgstr "Chatraum-Vorschläge" + +#: ../../include/widgets.php:1111 ../../include/widgets.php:1223 +msgid "photo/image" +msgstr "Foto/Bild" + +#: ../../include/widgets.php:1166 +msgid "Click to show more" +msgstr "Klick, um mehr anzuzeigen" + +#: ../../include/widgets.php:1317 +msgid "Rating Tools" +msgstr "Bewertungswerkzeuge" + +#: ../../include/widgets.php:1321 ../../include/widgets.php:1323 +msgid "Rate Me" +msgstr "Bewerte mich" + +#: ../../include/widgets.php:1326 +msgid "View Ratings" +msgstr "Bewertungen ansehen" + +#: ../../include/widgets.php:1410 +msgid "Forums" +msgstr "Foren" + +#: ../../include/widgets.php:1439 +msgid "Tasks" +msgstr "Aufgaben" + +#: ../../include/widgets.php:1448 +msgid "Documentation" +msgstr "Dokumentation" + +#: ../../include/widgets.php:1450 +msgid "Project/Site Information" +msgstr "Informationen über das Projekt und diesen Hub" + +#: ../../include/widgets.php:1451 +msgid "For Members" +msgstr "Für Mitglieder" + +#: ../../include/widgets.php:1452 +msgid "For Administrators" +msgstr "Für Administratoren" + +#: ../../include/widgets.php:1453 +msgid "For Developers" +msgstr "Für Entwickler" + +#: ../../include/widgets.php:1477 ../../include/widgets.php:1515 +msgid "Member registrations waiting for confirmation" +msgstr "Nutzer-Anmeldungen, die auf Bestätigung warten" + +#: ../../include/widgets.php:1483 +msgid "Inspect queue" +msgstr "Warteschlange kontrollieren" + +#: ../../include/widgets.php:1485 +msgid "DB updates" +msgstr "DB-Aktualisierungen" + +#: ../../include/widgets.php:1511 +msgid "Plugin Features" +msgstr "Plug-In Funktionen" + +#: ../../include/activities.php:41 +msgid " and " +msgstr "und" + +#: ../../include/activities.php:49 +msgid "public profile" +msgstr "öffentliches Profil" + +#: ../../include/activities.php:58 +#, php-format +msgid "%1$s changed %2$s to “%3$s”" +msgstr "%1$s hat %2$s auf “%3$s” geändert" + +#: ../../include/activities.php:59 +#, php-format +msgid "Visit %1$s's %2$s" +msgstr "Besuche %1$s's %2$s" + +#: ../../include/activities.php:62 +#, php-format +msgid "%1$s has an updated %2$s, changing %3$s." +msgstr "%1$s hat ein aktualisiertes %2$s, %3$s wurde verändert." + +#: ../../include/bb2diaspora.php:398 +msgid "Attachments:" +msgstr "Anhänge:" + +#: ../../include/bb2diaspora.php:487 +msgid "$Projectname event notification:" +msgstr "$Projectname-Terminbenachrichtigung:" + #: ../../include/js_strings.php:5 msgid "Delete this item?" msgstr "Dieses Element löschen?" #: ../../include/js_strings.php:8 -msgid "[-] show less" -msgstr "[-] Weniger anzeigen" +#, php-format +msgid "%s show less" +msgstr "%s weniger anzeigen" #: ../../include/js_strings.php:9 -msgid "[+] expand" -msgstr "[+] aufklappen" +#, php-format +msgid "%s expand" +msgstr "%s aufklappen" #: ../../include/js_strings.php:10 -msgid "[-] collapse" -msgstr "[-] einklappen" +#, php-format +msgid "%s collapse" +msgstr "%s einklappen" #: ../../include/js_strings.php:11 msgid "Password too short" @@ -9373,278 +9624,223 @@ msgctxt "calendar" msgid "All day" msgstr "Ganztägig" -#: ../../include/network.php:657 -msgid "view full size" -msgstr "In Vollbildansicht anschauen" - -#: ../../include/network.php:1885 -msgid "No Subject" -msgstr "Kein Betreff" - -#: ../../include/network.php:2146 ../../include/network.php:2147 -msgid "Friendica" -msgstr "Friendica" - -#: ../../include/network.php:2148 -msgid "OStatus" -msgstr "OStatus" - -#: ../../include/network.php:2149 -msgid "GNU-Social" -msgstr "GNU-Social" - -#: ../../include/network.php:2150 -msgid "RSS/Atom" -msgstr "RSS/Atom" - -#: ../../include/network.php:2152 -msgid "Diaspora" -msgstr "Diaspora" - -#: ../../include/network.php:2153 -msgid "Facebook" -msgstr "Facebook" - -#: ../../include/network.php:2154 -msgid "Zot" -msgstr "Zot!" - -#: ../../include/network.php:2155 -msgid "LinkedIn" -msgstr "LinkedIn" - -#: ../../include/network.php:2156 -msgid "XMPP/IM" -msgstr "XMPP/IM" - -#: ../../include/network.php:2157 -msgid "MySpace" -msgstr "MySpace" - -#: ../../include/photos.php:110 +#: ../../include/contact_widgets.php:11 #, php-format -msgid "Image exceeds website size limit of %lu bytes" -msgstr "Bild überschreitet das Webseitenlimit von %lu Bytes" +msgid "%d invitation available" +msgid_plural "%d invitations available" +msgstr[0] "%d Einladung verfügbar" +msgstr[1] "%d Einladungen verfügbar" -#: ../../include/photos.php:117 -msgid "Image file is empty." -msgstr "Bilddatei ist leer." +#: ../../include/contact_widgets.php:19 +msgid "Find Channels" +msgstr "Finde Kanäle" -#: ../../include/photos.php:255 -msgid "Photo storage failed." -msgstr "Fotospeicherung fehlgeschlagen." +#: ../../include/contact_widgets.php:20 +msgid "Enter name or interest" +msgstr "Name oder Interessen eingeben" -#: ../../include/photos.php:295 -msgid "a new photo" -msgstr "ein neues Foto" +#: ../../include/contact_widgets.php:21 +msgid "Connect/Follow" +msgstr "Verbinden/Folgen" -#: ../../include/photos.php:299 +#: ../../include/contact_widgets.php:22 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "Beispiele: Robert Morgenstein, Angeln" + +#: ../../include/contact_widgets.php:26 +msgid "Random Profile" +msgstr "Zufallsprofil" + +#: ../../include/contact_widgets.php:27 +msgid "Invite Friends" +msgstr "Lade Freunde ein" + +#: ../../include/contact_widgets.php:29 +msgid "Advanced example: name=fred and country=iceland" +msgstr "Fortgeschrittenes Beispiel: name=fred and country=iceland" + +#: ../../include/contact_widgets.php:122 #, php-format -msgctxt "photo_upload" -msgid "%1$s posted %2$s to %3$s" -msgstr "%1$s hat %2$s auf %3$s veröffentlicht" +msgid "%d connection in common" +msgid_plural "%d connections in common" +msgstr[0] "%d gemeinsame Verbindung" +msgstr[1] "%d gemeinsame Verbindungen" -#: ../../include/photos.php:506 -msgid "Upload New Photos" -msgstr "Neue Fotos hochladen" +#: ../../include/contact_widgets.php:127 +msgid "show more" +msgstr "mehr zeigen" -#: ../../include/zot.php:699 +#: ../../include/dir_fns.php:141 +msgid "Directory Options" +msgstr "Verzeichnisoptionen" + +#: ../../include/dir_fns.php:143 +msgid "Safe Mode" +msgstr "Sicherer Modus" + +#: ../../include/dir_fns.php:144 +msgid "Public Forums Only" +msgstr "Nur öffentliche Foren" + +#: ../../include/dir_fns.php:145 +msgid "This Website Only" +msgstr "Nur dieser Hub" + +#: ../../include/message.php:20 +msgid "No recipient provided." +msgstr "Kein Empfänger angegeben" + +#: ../../include/message.php:25 +msgid "[no subject]" +msgstr "[no subject]" + +#: ../../include/message.php:45 +msgid "Unable to determine sender." +msgstr "Kann Absender nicht bestimmen." + +#: ../../include/message.php:222 +msgid "Stored post could not be verified." +msgstr "Gespeicherter Beitrag konnten nicht überprüft werden." + +#: ../../include/acl_selectors.php:269 +msgid "Who can see this?" +msgstr "Wer kann das sehen?" + +#: ../../include/acl_selectors.php:270 +msgid "Custom selection" +msgstr "Benutzerdefinierte Auswahl" + +#: ../../include/acl_selectors.php:271 +msgid "" +"Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit" +" the scope of \"Show\"." +msgstr "Wähle \"Anzeigen\", um Betrachtung zuzulassen. \"Nicht anzeigen\" überstimmt und limitiert den Aktionsradius von \"Anzeigen\" für Ausnahmen." + +#: ../../include/acl_selectors.php:272 +msgid "Show" +msgstr "Anzeigen" + +#: ../../include/acl_selectors.php:273 +msgid "Don't show" +msgstr "Nicht anzeigen" + +#: ../../include/acl_selectors.php:279 +msgid "Other networks and post services" +msgstr "Andere Netzwerke und Platformen" + +#: ../../include/acl_selectors.php:309 +#, php-format +msgid "" +"Post permissions %s cannot be changed %s after a post is shared.
These" +" permissions set who is allowed to view the post." +msgstr "Beitragsberechtigungen %s können nicht geändert werden %s, nachdem der Beitrag gesendet wurde.
Diese Berechtigungen bestimmen, wer den Beitrag sehen kann." + +#: ../../include/datetime.php:135 +msgid "Birthday" +msgstr "Geburtstag" + +#: ../../include/datetime.php:137 +msgid "Age: " +msgstr "Alter:" + +#: ../../include/datetime.php:139 +msgid "YYYY-MM-DD or MM-DD" +msgstr "JJJJ-MM-TT oder MM-TT" + +#: ../../include/datetime.php:272 ../../boot.php:2479 +msgid "never" +msgstr "Nie" + +#: ../../include/datetime.php:278 +msgid "less than a second ago" +msgstr "Vor weniger als einer Sekunde" + +#: ../../include/datetime.php:296 +#, php-format +msgctxt "e.g. 22 hours ago, 1 minute ago" +msgid "%1$d %2$s ago" +msgstr "vor %1$d %2$s" + +#: ../../include/datetime.php:307 +msgctxt "relative_date" +msgid "year" +msgid_plural "years" +msgstr[0] "Jahr" +msgstr[1] "Jahre" + +#: ../../include/datetime.php:310 +msgctxt "relative_date" +msgid "month" +msgid_plural "months" +msgstr[0] "Monat" +msgstr[1] "Monate" + +#: ../../include/datetime.php:313 +msgctxt "relative_date" +msgid "week" +msgid_plural "weeks" +msgstr[0] "Woche" +msgstr[1] "Wochen" + +#: ../../include/datetime.php:316 +msgctxt "relative_date" +msgid "day" +msgid_plural "days" +msgstr[0] "Tag" +msgstr[1] "Tage" + +#: ../../include/datetime.php:319 +msgctxt "relative_date" +msgid "hour" +msgid_plural "hours" +msgstr[0] "Stunde" +msgstr[1] "Stunden" + +#: ../../include/datetime.php:322 +msgctxt "relative_date" +msgid "minute" +msgid_plural "minutes" +msgstr[0] "Minute" +msgstr[1] "Minuten" + +#: ../../include/datetime.php:325 +msgctxt "relative_date" +msgid "second" +msgid_plural "seconds" +msgstr[0] "Sekunde" +msgstr[1] "Sekunden" + +#: ../../include/datetime.php:562 +#, php-format +msgid "%1$s's birthday" +msgstr "%1$ss Geburtstag" + +#: ../../include/datetime.php:563 +#, php-format +msgid "Happy Birthday %1$s" +msgstr "Alles Gute zum Geburtstag, %1$s" + +#: ../../include/api.php:1327 +msgid "Public Timeline" +msgstr "Öffentliche Zeitleiste" + +#: ../../include/zot.php:697 msgid "Invalid data packet" msgstr "Ungültiges Datenpaket" -#: ../../include/zot.php:715 +#: ../../include/zot.php:713 msgid "Unable to verify channel signature" msgstr "Konnte die Signatur des Kanals nicht verifizieren" -#: ../../include/zot.php:2363 +#: ../../include/zot.php:2326 #, php-format msgid "Unable to verify site signature for %s" msgstr "Kann die Signatur der Seite von %s nicht verifizieren" -#: ../../include/zot.php:3712 +#: ../../include/zot.php:3703 msgid "invalid target signature" msgstr "Ungültige Signatur des Ziels" -#: ../../include/page_widgets.php:6 -msgid "New Page" -msgstr "Neue Seite" - -#: ../../include/page_widgets.php:43 -msgid "Title" -msgstr "Titel" - -#: ../../include/permissions.php:26 -msgid "Can view my normal stream and posts" -msgstr "Kann meine normalen Beiträge sehen" - -#: ../../include/permissions.php:27 -msgid "Can view my default channel profile" -msgstr "Kann mein Standardprofil sehen" - -#: ../../include/permissions.php:28 -msgid "Can view my connections" -msgstr "Kann meine Verbindungen sehen" - -#: ../../include/permissions.php:29 -msgid "Can view my file storage and photos" -msgstr "Kann meine Datei- und Bilderordner sehen" - -#: ../../include/permissions.php:30 -msgid "Can view my webpages" -msgstr "Kann meine Webseiten sehen" - -#: ../../include/permissions.php:33 -msgid "Can send me their channel stream and posts" -msgstr "Kann mir die Beiträge aus seinem/ihrem Kanal schicken" - -#: ../../include/permissions.php:34 -msgid "Can post on my channel page (\"wall\")" -msgstr "Kann auf meiner Kanal-Seite (\"wall\") Beiträge veröffentlichen" - -#: ../../include/permissions.php:35 -msgid "Can comment on or like my posts" -msgstr "Darf meine Beiträge kommentieren und mögen/nicht mögen" - -#: ../../include/permissions.php:36 -msgid "Can send me private mail messages" -msgstr "Kann mir private Nachrichten schicken" - -#: ../../include/permissions.php:37 -msgid "Can like/dislike stuff" -msgstr "Kann andere Elemente mögen/nicht mögen" - -#: ../../include/permissions.php:37 -msgid "Profiles and things other than posts/comments" -msgstr "Profile und alles außer Beiträge und Kommentare" - -#: ../../include/permissions.php:39 -msgid "Can forward to all my channel contacts via post @mentions" -msgstr "Kann an alle meine Kontakte via @-Erwähnung Nachrichten weiterleiten" - -#: ../../include/permissions.php:39 -msgid "Advanced - useful for creating group forum channels" -msgstr "Fortgeschritten - sinnvoll, um Gruppen-Kanäle/-Foren zu erstellen" - -#: ../../include/permissions.php:40 -msgid "Can chat with me (when available)" -msgstr "Kann mit mir chatten (wenn verfügbar)" - -#: ../../include/permissions.php:41 -msgid "Can write to my file storage and photos" -msgstr "Kann in meine Datei- und Bilderordner schreiben" - -#: ../../include/permissions.php:42 -msgid "Can edit my webpages" -msgstr "Kann meine Webseiten bearbeiten" - -#: ../../include/permissions.php:44 -msgid "Can source my public posts in derived channels" -msgstr "Kann meine öffentlichen Beiträge als Quellen für Kanäle verwenden" - -#: ../../include/permissions.php:44 -msgid "Somewhat advanced - very useful in open communities" -msgstr "Etwas fortgeschritten – sehr nützlich in offenen Gemeinschaften" - -#: ../../include/permissions.php:46 -msgid "Can administer my channel resources" -msgstr "Kann meine Kanäle administrieren" - -#: ../../include/permissions.php:46 -msgid "" -"Extremely advanced. Leave this alone unless you know what you are doing" -msgstr "Sehr fortgeschritten. Bearbeite das nur, wenn Du genau weißt, was Du tust" - -#: ../../include/permissions.php:877 -msgid "Social Networking" -msgstr "Soziales Netzwerk" - -#: ../../include/permissions.php:877 -msgid "Social - Mostly Public" -msgstr "Soziales Netzwerk - Weitgehend öffentlich" - -#: ../../include/permissions.php:877 -msgid "Social - Restricted" -msgstr "Soziales Netzwerk - Beschränkt" - -#: ../../include/permissions.php:877 -msgid "Social - Private" -msgstr "Soziales Netzwerk - Privat" - -#: ../../include/permissions.php:878 -msgid "Community Forum" -msgstr "Forum" - -#: ../../include/permissions.php:878 -msgid "Forum - Mostly Public" -msgstr "Forum - Weitgehend öffentlich" - -#: ../../include/permissions.php:878 -msgid "Forum - Restricted" -msgstr "Forum - Beschränkt" - -#: ../../include/permissions.php:878 -msgid "Forum - Private" -msgstr "Forum - Privat" - -#: ../../include/permissions.php:879 -msgid "Feed Republish" -msgstr "Teilen von Feeds" - -#: ../../include/permissions.php:879 -msgid "Feed - Mostly Public" -msgstr "Feeds - Weitgehend öffentlich" - -#: ../../include/permissions.php:879 -msgid "Feed - Restricted" -msgstr "Feeds - Beschränkt" - -#: ../../include/permissions.php:880 -msgid "Special Purpose" -msgstr "Für besondere Zwecke" - -#: ../../include/permissions.php:880 -msgid "Special - Celebrity/Soapbox" -msgstr "Speziell - Mitteilungs-Kanal (keine Kommentare)" - -#: ../../include/permissions.php:880 -msgid "Special - Group Repository" -msgstr "Speziell - Gruppenarchiv" - -#: ../../include/permissions.php:881 -msgid "Custom/Expert Mode" -msgstr "Benutzerdefiniert/Expertenmodus" - -#: ../../include/activities.php:41 -msgid " and " -msgstr "und" - -#: ../../include/activities.php:49 -msgid "public profile" -msgstr "öffentliches Profil" - -#: ../../include/activities.php:58 -#, php-format -msgid "%1$s changed %2$s to “%3$s”" -msgstr "%1$s hat %2$s auf “%3$s” geändert" - -#: ../../include/activities.php:59 -#, php-format -msgid "Visit %1$s's %2$s" -msgstr "Besuche %1$s's %2$s" - -#: ../../include/activities.php:62 -#, php-format -msgid "%1$s has an updated %2$s, changing %3$s." -msgstr "%1$s hat ein aktualisiertes %2$s, %3$s wurde verändert." - -#: ../../include/bb2diaspora.php:398 -msgid "Attachments:" -msgstr "Anhänge:" - -#: ../../include/bb2diaspora.php:487 -msgid "$Projectname event notification:" -msgstr "$Projectname-Terminbenachrichtigung:" - #: ../../view/theme/redbasic/php/config.php:82 msgid "Focus (Hubzilla default)" msgstr "Focus (Voreinstellung für Hubzilla)" @@ -9781,62 +9977,66 @@ msgstr "Größe der Avatare von Themenstartern" msgid "Set size of followup author photos" msgstr "Größe der Avatare von Kommentatoren" -#: ../../boot.php:1162 +#: ../../boot.php:1163 #, php-format msgctxt "opensearch" msgid "Search %1$s (%2$s)" msgstr "Suche %1$s (%2$s)" -#: ../../boot.php:1162 +#: ../../boot.php:1163 msgctxt "opensearch" msgid "$Projectname" msgstr "$Projectname" -#: ../../boot.php:1480 +#: ../../boot.php:1481 #, php-format msgid "Update %s failed. See error logs." msgstr "Aktualisierung %s fehlgeschlagen. Details in den Fehlerprotokollen." -#: ../../boot.php:1483 +#: ../../boot.php:1484 #, php-format msgid "Update Error at %s" msgstr "Aktualisierungsfehler auf %s" -#: ../../boot.php:1684 +#: ../../boot.php:1685 msgid "" "Create an account to access services and applications within the Hubzilla" msgstr "Erstelle ein Konto, um Anwendungen und Dienste innerhalb von Hubzilla nutzen zu können." #: ../../boot.php:1706 +msgid "Login/Email" +msgstr "Anmelden/E-Mail" + +#: ../../boot.php:1707 msgid "Password" msgstr "Kennwort" -#: ../../boot.php:1707 +#: ../../boot.php:1708 msgid "Remember me" msgstr "Angaben speichern" -#: ../../boot.php:1710 +#: ../../boot.php:1711 msgid "Forgot your password?" msgstr "Passwort vergessen?" -#: ../../boot.php:2276 +#: ../../boot.php:2277 msgid "toggle mobile" msgstr "auf/von mobile Ansicht wechseln" -#: ../../boot.php:2425 +#: ../../boot.php:2432 msgid "Website SSL certificate is not valid. Please correct." msgstr "Das SSL-Zertifikat der Website ist nicht gültig. Bitte beheben." -#: ../../boot.php:2428 +#: ../../boot.php:2435 #, php-format msgid "[hubzilla] Website SSL error for %s" msgstr "[hubzilla] Website-SSL-Fehler für %s" -#: ../../boot.php:2469 +#: ../../boot.php:2478 msgid "Cron/Scheduled tasks not running." msgstr "Cron-Aufgaben laufen nicht." -#: ../../boot.php:2473 +#: ../../boot.php:2482 #, php-format msgid "[hubzilla] Cron tasks not running on %s" msgstr "[hubzilla] Cron-Aufgaben für %s laufen nicht" diff --git a/view/de/hstrings.php b/view/de/hstrings.php index eea433fac..6d6fd4ebe 100644 --- a/view/de/hstrings.php +++ b/view/de/hstrings.php @@ -4,7 +4,39 @@ if(! function_exists("string_plural_select_de")) { function string_plural_select_de($n){ return ($n != 1);; }} -; +App::$rtl = 0; +App::$strings["Social Networking"] = "Soziales Netzwerk"; +App::$strings["Social - Mostly Public"] = "Soziales Netzwerk - Weitgehend öffentlich"; +App::$strings["Social - Restricted"] = "Soziales Netzwerk - Beschränkt"; +App::$strings["Social - Private"] = "Soziales Netzwerk - Privat"; +App::$strings["Community Forum"] = "Forum"; +App::$strings["Forum - Mostly Public"] = "Forum - Weitgehend öffentlich"; +App::$strings["Forum - Restricted"] = "Forum - Beschränkt"; +App::$strings["Forum - Private"] = "Forum - Privat"; +App::$strings["Feed Republish"] = "Teilen von Feeds"; +App::$strings["Feed - Mostly Public"] = "Feeds - Weitgehend öffentlich"; +App::$strings["Feed - Restricted"] = "Feeds - Beschränkt"; +App::$strings["Special Purpose"] = "Für besondere Zwecke"; +App::$strings["Special - Celebrity/Soapbox"] = "Speziell - Mitteilungs-Kanal (keine Kommentare)"; +App::$strings["Special - Group Repository"] = "Speziell - Gruppenarchiv"; +App::$strings["Other"] = "Andere"; +App::$strings["Custom/Expert Mode"] = "Benutzerdefiniert/Expertenmodus"; +App::$strings["Can view my channel stream and posts"] = "Kann meinen Kanal-Stream und meine Beiträge sehen"; +App::$strings["Can send me their channel stream and posts"] = "Kann mir die Beiträge aus seinem/ihrem Kanal schicken"; +App::$strings["Can view my default channel profile"] = "Kann mein Standardprofil sehen"; +App::$strings["Can view my connections"] = "Kann meine Verbindungen sehen"; +App::$strings["Can view my file storage and photos"] = "Kann meine Datei- und Bilderordner sehen"; +App::$strings["Can upload/modify my file storage and photos"] = "Kann in meine Datei- und Bilderordner hochladen/ändern"; +App::$strings["Can view my channel webpages"] = "Kann die Webseiten meines Kanals sehen"; +App::$strings["Can create/edit my channel webpages"] = "Kann Webseiten in meinem Kanal erstellen/ändern"; +App::$strings["Can post on my channel (wall) page"] = "Kann auf meiner Kanal-Seite (\"wall\") Beiträge veröffentlichen"; +App::$strings["Can comment on or like my posts"] = "Darf meine Beiträge kommentieren und mögen/nicht mögen"; +App::$strings["Can send me private mail messages"] = "Kann mir private Nachrichten schicken"; +App::$strings["Can like/dislike profiles and profile things"] = "Kann Profile und Profilsachen mögen/nicht mögen"; +App::$strings["Can forward to all my channel connections via @+ mentions in posts"] = "Kann an alle meine Verbindungen via @-Erwähnungen Nachrichten weiterleiten"; +App::$strings["Can chat with me"] = "Kann mit mir chatten"; +App::$strings["Can source my public posts in derived channels"] = "Kann meine öffentlichen Beiträge als Quellen für Kanäle verwenden"; +App::$strings["Can administer my channel"] = "Kann meinen Kanal administrieren"; App::$strings["parent"] = "Übergeordnetes Verzeichnis"; App::$strings["Collection"] = "Sammlung"; App::$strings["Principal"] = "Prinzipal"; @@ -35,65 +67,10 @@ App::$strings["Not Found"] = "Nicht gefunden"; App::$strings["Page not found."] = "Seite nicht gefunden."; App::$strings["Remote authentication blocked. You are logged into this site locally. Please logout and retry."] = "Fern-Authentifizierung blockiert. Du bist lokal auf diesem Server angemeldet. Bitte melde Dich ab und versuche es erneut."; App::$strings["Welcome %s. Remote authentication successful."] = "Willkommen %s. Entfernte Authentifizierung erfolgreich."; -App::$strings["Requested profile is not available."] = "Erwünschte Profil ist nicht verfügbar."; +App::$strings["Requested profile is not available."] = "Das angefragte Profil ist nicht verfügbar."; App::$strings["Some blurb about what to do when you're new here"] = "Ein Hinweis, was man tun kann, wenn man neu hier ist"; -App::$strings["Block Name"] = "Block-Name"; -App::$strings["Blocks"] = "Blöcke"; -App::$strings["Block Title"] = "Titel des Blocks"; -App::$strings["Created"] = "Erstellt"; -App::$strings["Edited"] = "Geändert"; -App::$strings["Share"] = "Teilen"; -App::$strings["View"] = "Ansicht"; -App::$strings["Channel not found."] = "Kanal nicht gefunden."; -App::$strings["Permissions denied."] = "Berechtigung verweigert."; -App::$strings["l, F j"] = "l, j. F"; -App::$strings["Link to Source"] = "Link zur Quelle"; -App::$strings["Edit Event"] = "Termin bearbeiten"; -App::$strings["Create Event"] = "Termin anlegen"; -App::$strings["Previous"] = "Voriges"; -App::$strings["Next"] = "Nächste"; -App::$strings["Export"] = "Exportieren"; -App::$strings["Import"] = "Import"; -App::$strings["Submit"] = "Bestätigen"; -App::$strings["Today"] = "Heute"; -App::$strings["You must be logged in to see this page."] = "Du musst angemeldet sein, um diese Seite betrachten zu können."; -App::$strings["Posts and comments"] = "Beiträge und Kommentare"; -App::$strings["Only posts"] = "Nur Beiträge"; -App::$strings["Insufficient permissions. Request redirected to profile page."] = "Unzureichende Zugriffsrechte. Die Anfrage wurde zur Profil-Seite umgeleitet."; -App::$strings["Room not found"] = "Chatraum nicht gefunden"; -App::$strings["Leave Room"] = "Raum verlassen"; -App::$strings["Delete Room"] = "Raum löschen"; -App::$strings["I am away right now"] = "Ich bin gerade nicht da"; -App::$strings["I am online"] = "Ich bin online"; -App::$strings["Bookmark this room"] = "Lesezeichen für diesen Raum setzen"; -App::$strings["Please enter a link URL:"] = "Gib eine URL ein:"; -App::$strings["Encrypt text"] = "Text verschlüsseln"; -App::$strings["Insert web link"] = "Link einfügen"; -App::$strings["Feature disabled."] = "Funktion deaktiviert."; -App::$strings["New Chatroom"] = "Neuer Chatraum"; -App::$strings["Chatroom name"] = "Chatraumname"; -App::$strings["Expiration of chats (minutes)"] = "Verfall von Chats (Minuten)"; -App::$strings["Permissions"] = "Berechtigungen"; -App::$strings["%1\$s's Chatrooms"] = "%1\$ss Chaträume"; -App::$strings["No chatrooms available"] = "Keine Chaträume verfügbar"; -App::$strings["Create New"] = "Neu anlegen"; -App::$strings["Expiration"] = "Verfall"; -App::$strings["min"] = "min"; App::$strings["Away"] = "Abwesend"; App::$strings["Online"] = "Online"; -App::$strings["Invalid item."] = "Ungültiges Element."; -App::$strings["Bookmark added"] = "Lesezeichen hinzugefügt"; -App::$strings["My Bookmarks"] = "Meine Lesezeichen"; -App::$strings["My Connections Bookmarks"] = "Lesezeichen meiner Kontakte"; -App::$strings["Continue"] = "Fortfahren"; -App::$strings["Premium Channel Setup"] = "Premium-Kanal-Einrichtung"; -App::$strings["Enable premium channel connection restrictions"] = "Einschränkungen für einen Premium-Kanal aktivieren"; -App::$strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = "Bitte gib Deine Nutzungsbedingungen ein, z.B. Paypal-Quittung, Richtlinien etc."; -App::$strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = "Unter Umständen sind weitere Schritte oder die Bestätigung der folgenden Bedingungen vor dem Verbinden mit diesem Kanal nötig."; -App::$strings["Potential connections will then see the following text before proceeding:"] = "Potentielle Kontakte werden den folgenden Text sehen, bevor fortgefahren wird:"; -App::$strings["By continuing, I certify that I have complied with any instructions provided on this page."] = "Indem ich fortfahre, bestätige ich die Erfüllung aller Anweisungen auf dieser Seite."; -App::$strings["(No specific instructions have been provided by the channel owner.)"] = "(Der Kanal-Besitzer hat keine speziellen Anweisungen hinterlegt.)"; -App::$strings["Restricted or Premium Channel"] = "Eingeschränkter oder Premium-Kanal"; App::$strings["Could not access contact record."] = "Konnte nicht auf den Kontakteintrag zugreifen."; App::$strings["Could not locate selected profile."] = "Gewähltes Profil nicht gefunden."; App::$strings["Connection updated."] = "Verbindung aktualisiert."; @@ -158,6 +135,7 @@ App::$strings["Do not import posts with this text"] = "Beiträge mit diesem Text App::$strings["This information is public!"] = "Diese Information ist öffentlich!"; App::$strings["Connection Pending Approval"] = "Verbindung wartet auf Bestätigung"; App::$strings["inherited"] = "geerbt"; +App::$strings["Submit"] = "Bestätigen"; App::$strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Bitte wähle ein Profil, das wir %s zeigen sollen, wenn Deine Profilseite über eine verifizierte Verbindung aufgerufen wird."; App::$strings["Their Settings"] = "Deren Einstellungen"; App::$strings["My Settings"] = "Meine Einstellungen"; @@ -166,6 +144,30 @@ App::$strings["Some permissions may be inherited from your channel's privacy settings, which have higher priority than individual settings. You can change those settings here but they wont have any impact unless the inherited setting changes."] = "Einige Berechtigungen werden möglicherweise von den globalen Sicherheits- und Privatsphäre-Einstellungen dieses Kanals geerbt. Diese haben eine höhere Priorität als die Einstellungen an der Verbindung. Werden geerbte Einstellungen hier geändert, hat dies keine Auswirkungen."; App::$strings["Last update:"] = "Letzte Aktualisierung:"; App::$strings["Public access denied."] = "Öffentlichen Zugriff verweigert."; +App::$strings["Item not found."] = "Element nicht gefunden."; +App::$strings["First Name"] = "Vorname"; +App::$strings["Last Name"] = "Nachname"; +App::$strings["Nickname"] = "Spitzname"; +App::$strings["Full Name"] = "Voller Name"; +App::$strings["Email"] = "E-Mail"; +App::$strings["Profile Photo"] = "Profilfoto"; +App::$strings["Profile Photo 16px"] = "Profilfoto 16 px"; +App::$strings["Profile Photo 32px"] = "Profilfoto 32 px"; +App::$strings["Profile Photo 48px"] = "Profilfoto 48 px"; +App::$strings["Profile Photo 64px"] = "Profilfoto 64 px"; +App::$strings["Profile Photo 80px"] = "Profilfoto 80 px"; +App::$strings["Profile Photo 128px"] = "Profilfoto 128 px"; +App::$strings["Timezone"] = "Zeitzone"; +App::$strings["Homepage URL"] = "Homepage-URL"; +App::$strings["Language"] = "Sprache"; +App::$strings["Birth Year"] = "Geburtsjahr"; +App::$strings["Birth Month"] = "Geburtsmonat"; +App::$strings["Birth Day"] = "Geburtstag"; +App::$strings["Birthdate"] = "Geburtsdatum"; +App::$strings["Gender"] = "Geschlecht"; +App::$strings["Male"] = "Männlich"; +App::$strings["Female"] = "Weiblich"; +App::$strings["Channel added."] = "Kanal hinzugefügt."; App::$strings["%d rating"] = array( 0 => "%d Bewertung", 1 => "%d Bewertungen", @@ -196,13 +198,74 @@ App::$strings["Reverse Alphabetic"] = "Entgegengesetzt alphabetisch"; App::$strings["Newest to Oldest"] = "Neueste zuerst"; App::$strings["Oldest to Newest"] = "Älteste zuerst"; App::$strings["No entries (some entries may be hidden)."] = "Keine Einträge gefunden (einige könnten versteckt sein)."; -App::$strings["Item not found."] = "Element nicht gefunden."; +App::$strings["Continue"] = "Fortfahren"; +App::$strings["Premium Channel Setup"] = "Premium-Kanal-Einrichtung"; +App::$strings["Enable premium channel connection restrictions"] = "Einschränkungen für einen Premium-Kanal aktivieren"; +App::$strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = "Bitte gib Deine Nutzungsbedingungen ein, z.B. Paypal-Quittung, Richtlinien etc."; +App::$strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = "Unter Umständen sind weitere Schritte oder die Bestätigung der folgenden Bedingungen vor dem Verbinden mit diesem Kanal nötig."; +App::$strings["Potential connections will then see the following text before proceeding:"] = "Potentielle Kontakte werden den folgenden Text sehen, bevor fortgefahren wird:"; +App::$strings["By continuing, I certify that I have complied with any instructions provided on this page."] = "Indem ich fortfahre, bestätige ich die Erfüllung aller Anweisungen auf dieser Seite."; +App::$strings["(No specific instructions have been provided by the channel owner.)"] = "(Der Kanal-Besitzer hat keine speziellen Anweisungen hinterlegt.)"; +App::$strings["Restricted or Premium Channel"] = "Eingeschränkter oder Premium-Kanal"; +App::$strings["Calendar entries imported."] = "Kalendereinträge wurden importiert."; +App::$strings["No calendar entries found."] = "Keine Kalendereinträge gefunden."; +App::$strings["Event can not end before it has started."] = "Termin-Ende liegt vor dem Beginn."; +App::$strings["Unable to generate preview."] = "Vorschau konnte nicht erzeugt werden."; +App::$strings["Event title and start time are required."] = "Titel und Startzeit des Termins sind erforderlich."; +App::$strings["Event not found."] = "Termin nicht gefunden."; +App::$strings["event"] = "Termin"; +App::$strings["Edit event title"] = "Termintitel bearbeiten"; +App::$strings["Event title"] = "Termintitel"; +App::$strings["Required"] = "Benötigt"; +App::$strings["Categories (comma-separated list)"] = "Kategorien (Kommagetrennte Liste)"; +App::$strings["Edit Category"] = "Kategorie bearbeiten"; +App::$strings["Category"] = "Kategorie"; +App::$strings["Edit start date and time"] = "Startdatum und -zeit bearbeiten"; +App::$strings["Start date and time"] = "Startdatum und -zeit"; +App::$strings["Finish date and time are not known or not relevant"] = "Enddatum und -zeit sind unbekannt oder irrelevant"; +App::$strings["Edit finish date and time"] = "Enddatum und -zeit bearbeiten"; +App::$strings["Finish date and time"] = "Enddatum und -zeit"; +App::$strings["Adjust for viewer timezone"] = "An die Zeitzone des Betrachters anpassen"; +App::$strings["Important for events that happen in a particular place. Not practical for global holidays."] = "Wichtig für Veranstaltungen die an bestimmten Orten stattfinden. Nicht sinnvoll für globale Feiertage / Ferien."; +App::$strings["Edit Description"] = "Beschreibung bearbeiten"; +App::$strings["Description"] = "Beschreibung"; +App::$strings["Edit Location"] = "Ort bearbeiten"; +App::$strings["Location"] = "Ort"; +App::$strings["Share this event"] = "Den Termin teilen"; +App::$strings["Preview"] = "Vorschau"; +App::$strings["Permission settings"] = "Berechtigungs-Einstellungen"; +App::$strings["Advanced Options"] = "Weitere Optionen"; +App::$strings["l, F j"] = "l, j. F"; +App::$strings["Edit event"] = "Termin bearbeiten"; +App::$strings["Delete event"] = "Termin löschen"; +App::$strings["Link to Source"] = "Link zur Quelle"; +App::$strings["calendar"] = "Kalender"; +App::$strings["Edit Event"] = "Termin bearbeiten"; +App::$strings["Create Event"] = "Termin anlegen"; +App::$strings["Previous"] = "Voriges"; +App::$strings["Next"] = "Nächste"; +App::$strings["Export"] = "Exportieren"; +App::$strings["View"] = "Ansicht"; +App::$strings["Month"] = "Monat"; +App::$strings["Week"] = "Woche"; +App::$strings["Day"] = "Tag"; +App::$strings["Today"] = "Heute"; +App::$strings["Event removed"] = "Termin gelöscht"; +App::$strings["Failed to remove event"] = "Termin konnte nicht gelöscht werden"; +App::$strings["Bookmark added"] = "Lesezeichen hinzugefügt"; +App::$strings["My Bookmarks"] = "Meine Lesezeichen"; +App::$strings["My Connections Bookmarks"] = "Lesezeichen meiner Kontakte"; App::$strings["Item not found"] = "Element nicht gefunden"; -App::$strings["Title (optional)"] = "Titel (optional)"; -App::$strings["Edit Block"] = "Block bearbeiten"; -App::$strings["No channel."] = "Kein Kanal."; -App::$strings["Common connections"] = "Gemeinsame Verbindungen"; -App::$strings["No connections in common."] = "Keine gemeinsamen Verbindungen."; +App::$strings["Item is not editable"] = "Element kann nicht bearbeitet werden."; +App::$strings["Edit post"] = "Bearbeite Beitrag"; +App::$strings["Photos"] = "Fotos"; +App::$strings["Cancel"] = "Abbrechen"; +App::$strings["Invalid item."] = "Ungültiges Element."; +App::$strings["Channel not found."] = "Kanal nicht gefunden."; +App::$strings["Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."] = "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."; +App::$strings["Save to Folder:"] = "Speichern in Ordner:"; +App::$strings["- select -"] = "– auswählen –"; +App::$strings["Save"] = "Speichern"; App::$strings["Blocked"] = "Blockiert"; App::$strings["Ignored"] = "Ignoriert"; App::$strings["Hidden"] = "Versteckt"; @@ -254,51 +317,38 @@ App::$strings["select a photo from your photo albums"] = "ein Foto aus meinen Fo App::$strings["Crop Image"] = "Bild zuschneiden"; App::$strings["Please adjust the image cropping for optimum viewing."] = "Bitte schneide das Bild für eine optimale Anzeige passend zu."; App::$strings["Done Editing"] = "Bearbeitung fertigstellen"; -App::$strings["Item is not editable"] = "Element kann nicht bearbeitet werden."; -App::$strings["Edit post"] = "Bearbeite Beitrag"; -App::$strings["Calendar entries imported."] = "Kalendereinträge wurden importiert."; -App::$strings["No calendar entries found."] = "Keine Kalendereinträge gefunden."; -App::$strings["Event can not end before it has started."] = "Termin-Ende liegt vor dem Beginn."; -App::$strings["Unable to generate preview."] = "Vorschau konnte nicht erzeugt werden."; -App::$strings["Event title and start time are required."] = "Titel und Startzeit des Termins sind erforderlich."; -App::$strings["Event not found."] = "Termin nicht gefunden."; -App::$strings["event"] = "Termin"; -App::$strings["Edit event title"] = "Termintitel bearbeiten"; -App::$strings["Event title"] = "Termintitel"; -App::$strings["Required"] = "Benötigt"; -App::$strings["Categories (comma-separated list)"] = "Kategorien (Kommagetrennte Liste)"; -App::$strings["Edit Category"] = "Kategorie bearbeiten"; -App::$strings["Category"] = "Kategorie"; -App::$strings["Edit start date and time"] = "Startdatum und -zeit bearbeiten"; -App::$strings["Start date and time"] = "Startdatum und -zeit"; -App::$strings["Finish date and time are not known or not relevant"] = "Enddatum und -zeit sind unbekannt oder irrelevant"; -App::$strings["Edit finish date and time"] = "Enddatum und -zeit bearbeiten"; -App::$strings["Finish date and time"] = "Enddatum und -zeit"; -App::$strings["Adjust for viewer timezone"] = "An die Zeitzone des Betrachters anpassen"; -App::$strings["Important for events that happen in a particular place. Not practical for global holidays."] = "Wichtig für Veranstaltungen die an bestimmten Orten stattfinden. Nicht sinnvoll für globale Feiertage / Ferien."; -App::$strings["Edit Description"] = "Beschreibung bearbeiten"; -App::$strings["Description"] = "Beschreibung"; -App::$strings["Edit Location"] = "Ort bearbeiten"; -App::$strings["Location"] = "Ort"; -App::$strings["Share this event"] = "Den Termin teilen"; -App::$strings["Preview"] = "Vorschau"; -App::$strings["Permission settings"] = "Berechtigungs-Einstellungen"; -App::$strings["Advanced Options"] = "Weitere Optionen"; -App::$strings["Edit event"] = "Termin bearbeiten"; -App::$strings["Delete event"] = "Termin löschen"; -App::$strings["calendar"] = "Kalender"; -App::$strings["Event removed"] = "Termin gelöscht"; -App::$strings["Failed to remove event"] = "Termin konnte nicht gelöscht werden"; -App::$strings["Photos"] = "Fotos"; -App::$strings["Cancel"] = "Abbrechen"; +App::$strings["webpage"] = "Webseite"; +App::$strings["block"] = "Block"; +App::$strings["layout"] = "Layout"; +App::$strings["menu"] = "Menü"; +App::$strings["%s element installed"] = "Element für %s installiert"; +App::$strings["%s element installation failed"] = "Installation des Elements %s fehlgeschlagen"; +App::$strings["Permissions denied."] = "Berechtigung verweigert."; +App::$strings["Import"] = "Import"; App::$strings["This site is not a directory server"] = "Diese Webseite ist kein Verzeichnisserver"; App::$strings["This directory server requires an access token"] = "Dieser Verzeichnisserver benötigt einen Zugriffstoken"; -App::$strings["Save to Folder:"] = "Speichern in Ordner:"; -App::$strings["- select -"] = "– auswählen –"; -App::$strings["Save"] = "Speichern"; +App::$strings["You must be logged in to see this page."] = "Du musst angemeldet sein, um diese Seite betrachten zu können."; +App::$strings["Room not found"] = "Chatraum nicht gefunden"; +App::$strings["Leave Room"] = "Raum verlassen"; +App::$strings["Delete Room"] = "Raum löschen"; +App::$strings["I am away right now"] = "Ich bin gerade nicht da"; +App::$strings["I am online"] = "Ich bin online"; +App::$strings["Bookmark this room"] = "Lesezeichen für diesen Raum setzen"; +App::$strings["Please enter a link URL:"] = "Gib eine URL ein:"; +App::$strings["Encrypt text"] = "Text verschlüsseln"; +App::$strings["Insert web link"] = "Link einfügen"; +App::$strings["Feature disabled."] = "Funktion deaktiviert."; +App::$strings["New Chatroom"] = "Neuer Chatraum"; +App::$strings["Chatroom name"] = "Chatraumname"; +App::$strings["Expiration of chats (minutes)"] = "Verfall von Chats (Minuten)"; +App::$strings["Permissions"] = "Berechtigungen"; +App::$strings["%1\$s's Chatrooms"] = "%1\$ss Chaträume"; +App::$strings["No chatrooms available"] = "Keine Chaträume verfügbar"; +App::$strings["Create New"] = "Neu anlegen"; +App::$strings["Expiration"] = "Verfall"; +App::$strings["min"] = "min"; App::$strings["Invalid message"] = "Ungültige Beitrags-ID (mid)"; App::$strings["no results"] = "keine Ergebnisse"; -App::$strings["Delivery report for %1\$s"] = "Zustellungsbericht für %1\$s"; App::$strings["channel sync processed"] = "Kanal-Sync verarbeitet"; App::$strings["queued"] = "zur Warteschlange hinzugefügt"; App::$strings["posted"] = "zugestellt"; @@ -310,14 +360,14 @@ App::$strings["recipient not found"] = "Empfänger nicht gefunden."; App::$strings["mail recalled"] = "Mail widerrufen"; App::$strings["duplicate mail received"] = "Doppelte Mail erhalten"; App::$strings["mail delivered"] = "Mail zugestellt"; +App::$strings["Delivery report for %1\$s"] = "Zustellungsbericht für %1\$s"; +App::$strings["Options"] = "Optionen"; +App::$strings["Redeliver"] = "Erneut zustellen"; App::$strings["Layout Name"] = "Layout-Name"; App::$strings["Layout Description (Optional)"] = "Layout-Beschreibung (optional)"; App::$strings["Edit Layout"] = "Layout bearbeiten"; App::$strings["Page link"] = "Seiten-Link"; App::$strings["Edit Webpage"] = "Webseite bearbeiten"; -App::$strings["Channel added."] = "Kanal hinzugefügt."; -App::$strings["network"] = "Netzwerk"; -App::$strings["RSS"] = "RSS"; App::$strings["Privacy group created."] = "Gruppe wurde erstellt."; App::$strings["Could not create privacy group."] = "Gruppe konnte nicht erstellt werden."; App::$strings["Privacy group not found."] = "Gruppe nicht gefunden."; @@ -331,16 +381,33 @@ App::$strings["Privacy group editor"] = "Gruppeneditor"; App::$strings["Members"] = "Mitglieder"; App::$strings["All Connected Channels"] = "Alle verbundenen Kanäle"; App::$strings["Click on a channel to add or remove."] = "Wähle einen Kanal zum hinzufügen oder entfernen aus."; -App::$strings["Share content from Firefox to \$Projectname"] = "Inhalte von Firefox nach \$Projectname teilen"; -App::$strings["Activate the Firefox \$Projectname provider"] = "Aktiviert den \$Projectname-Provider für firefox"; -App::$strings["Authorize application connection"] = "Zugriff für die Anwendung autorisieren"; -App::$strings["Return to your app and insert this Securty Code:"] = "Trage folgenden Sicherheitscode in der Anwendung ein:"; -App::$strings["Please login to continue."] = "Zum Weitermachen, bitte einloggen."; -App::$strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Möchtest Du dieser Anwendung erlauben, Deine Nachrichten und Kontakte abzurufen und/oder neue Nachrichten für Dich zu erstellen?"; +App::$strings["App installed."] = "App installiert."; +App::$strings["Malformed app."] = "Fehlerhafte App."; +App::$strings["Embed code"] = "Code einbetten"; +App::$strings["Edit App"] = "App bearbeiten"; +App::$strings["Create App"] = "App erstellen"; +App::$strings["Name of app"] = "Name der App"; +App::$strings["Location (URL) of app"] = "Ort (URL) der App"; +App::$strings["Photo icon URL"] = "URL zum Icon"; +App::$strings["80 x 80 pixels - optional"] = "80 x 80 Pixel – optional"; +App::$strings["Categories (optional, comma separated list)"] = "Kategorien (optional, kommagetrennte Liste)"; +App::$strings["Version ID"] = "Versions-ID"; +App::$strings["Price of app"] = "Preis der App"; +App::$strings["Location (URL) to purchase app"] = "Ort (URL), um die App zu kaufen"; App::$strings["Documentation Search"] = "Suche in der Dokumentation"; App::$strings["Help:"] = "Hilfe:"; App::$strings["Help"] = "Hilfe"; App::$strings["\$Projectname Documentation"] = "\$Projectname-Dokumentation"; +App::$strings["Item not available."] = "Element nicht verfügbar."; +App::$strings["Layout updated."] = "Layout aktualisiert."; +App::$strings["Edit System Page Description"] = "Systemseitenbeschreibung bearbeiten"; +App::$strings["Layout not found."] = "Layout nicht gefunden."; +App::$strings["Module Name:"] = "Modulname:"; +App::$strings["Layout Help"] = "Layout-Hilfe"; +App::$strings["Share content from Firefox to \$Projectname"] = "Inhalte von Firefox nach \$Projectname teilen"; +App::$strings["Activate the Firefox \$Projectname provider"] = "Aktiviert den \$Projectname-Provider für firefox"; +App::$strings["network"] = "Netzwerk"; +App::$strings["RSS"] = "RSS"; App::$strings["Permission Denied."] = "Zugriff verweigert."; App::$strings["File not found."] = "Datei nicht gefunden."; App::$strings["Edit file permissions"] = "Dateiberechtigungen bearbeiten"; @@ -352,70 +419,13 @@ App::$strings["Copy/paste this URL to link file from a web page"] = "Diese URL v App::$strings["Share this file"] = "Diese Datei freigeben"; App::$strings["Show URL to this file"] = "URL zu dieser Datei anzeigen"; App::$strings["Notify your contacts about this file"] = "Meine Kontakte über diese Datei benachrichtigen"; -App::$strings["Apps"] = "Apps"; -App::$strings["Item not available."] = "Element nicht verfügbar."; -App::$strings["Your service plan only allows %d channels."] = "Dein Vertrag erlaubt nur %d Kanäle."; -App::$strings["Nothing to import."] = "Nichts zu importieren."; -App::$strings["Unable to download data from old server"] = "Daten können vom alten Server nicht heruntergeladen werden"; -App::$strings["Imported file is empty."] = "Die importierte Datei ist leer."; -App::$strings["Warning: Database versions differ by %1\$d updates."] = "Achtung: Datenbankversionen unterscheiden sich um %1\$d Aktualisierungen."; -App::$strings["Cloned channel not found. Import failed."] = "Geklonter Kanal nicht gefunden. Import fehlgeschlagen."; -App::$strings["No channel. Import failed."] = "Kein Kanal. Import fehlgeschlagen."; -App::$strings["Import completed."] = "Import abgeschlossen."; -App::$strings["You must be logged in to use this feature."] = "Du musst angemeldet sein um diese Funktion zu nutzen."; -App::$strings["Import Channel"] = "Kanal importieren"; -App::$strings["Use this form to import an existing channel from a different server/hub. You may retrieve the channel identity from the old server/hub via the network or provide an export file."] = "Verwende dieses Formular, um einen existierenden Kanal von einem anderen Hub zu importieren. Du kannst den Kanal direkt vom bisherigen Hub über das Netzwerk oder aus einer exportierten Sicherheitskopie importieren."; -App::$strings["File to Upload"] = "Hochzuladende Datei:"; -App::$strings["Or provide the old server/hub details"] = "Oder gib die Details Deines bisherigen \$Projectname-Hubs ein"; -App::$strings["Your old identity address (xyz@example.com)"] = "Bisherige Kanal-Adresse (xyz@example.com)"; -App::$strings["Your old login email address"] = "Deine alte Login-E-Mail-Adresse"; -App::$strings["Your old login password"] = "Dein altes Passwort"; -App::$strings["For either option, please choose whether to make this hub your new primary address, or whether your old location should continue this role. You will be able to post from either location, but only one can be marked as the primary location for files, photos, and media."] = "Egal, welche Option Du wählst – bitte lege fest, ob dieser Server die neue primäre Adresse dieses Kanals sein soll, oder ob der bisherige \$Projectname-Hub diese Rolle weiterhin wahrnimmt. Du kannst von beiden Servern aus posten, aber nur einer kann der primäre Ort Deiner Dateien, Fotos und Medien sein."; -App::$strings["Make this hub my primary location"] = "Dieser $Pojectname-Hub ist mein primärer Hub."; -App::$strings["Import existing posts if possible (experimental - limited by available memory"] = "Importiere bestehende Beiträge falls möglich (experimentell - begrenzt durch zur Verfügung stehenden Speicher"; -App::$strings["This process may take several minutes to complete. Please submit the form only once and leave this page open until finished."] = "Dieser Vorgang kann einige Minuten dauern. Bitte sende das Formular nur einmal ab und lasse diese Seite bis zur Fertigstellung offen."; -App::$strings["Unable to locate original post."] = "Originalbeitrag nicht gefunden."; -App::$strings["Empty post discarded."] = "Leeren Beitrag verworfen."; -App::$strings["Executable content type not permitted to this channel."] = "Ausführbarer Content-Typ ist für diesen Kanal nicht freigegeben."; -App::$strings["Duplicate post suppressed."] = "Doppelter Beitrag unterdrückt."; -App::$strings["System error. Post not saved."] = "Systemfehler. Beitrag nicht gespeichert."; -App::$strings["Unable to obtain post information from database."] = "Beitragsinformationen können nicht aus der Datenbank abgerufen werden."; -App::$strings["You have reached your limit of %1$.0f top level posts."] = "Du hast die maximale Anzahl von %1$.0f Beiträgen erreicht."; -App::$strings["You have reached your limit of %1$.0f webpages."] = "Du hast die maximale Anzahl von %1$.0f Webseiten erreicht."; App::$strings["Layouts"] = "Layouts"; App::$strings["Comanche page description language help"] = "Hilfe zur Comanche-Seitenbeschreibungssprache"; App::$strings["Layout Description"] = "Layout-Beschreibung"; +App::$strings["Created"] = "Erstellt"; +App::$strings["Edited"] = "Geändert"; +App::$strings["Share"] = "Teilen"; App::$strings["Download PDL file"] = "PDL-Datei herunterladen"; -App::$strings["\$Projectname"] = "\$Projectname"; -App::$strings["Welcome to %s"] = "Willkommen auf %s"; -App::$strings["First Name"] = "Vorname"; -App::$strings["Last Name"] = "Nachname"; -App::$strings["Nickname"] = "Spitzname"; -App::$strings["Full Name"] = "Voller Name"; -App::$strings["Email"] = "E-Mail"; -App::$strings["Profile Photo"] = "Profilfoto"; -App::$strings["Profile Photo 16px"] = "Profilfoto 16 px"; -App::$strings["Profile Photo 32px"] = "Profilfoto 32 px"; -App::$strings["Profile Photo 48px"] = "Profilfoto 48 px"; -App::$strings["Profile Photo 64px"] = "Profilfoto 64 px"; -App::$strings["Profile Photo 80px"] = "Profilfoto 80 px"; -App::$strings["Profile Photo 128px"] = "Profilfoto 128 px"; -App::$strings["Timezone"] = "Zeitzone"; -App::$strings["Homepage URL"] = "Homepage-URL"; -App::$strings["Language"] = "Sprache"; -App::$strings["Birth Year"] = "Geburtsjahr"; -App::$strings["Birth Month"] = "Geburtsmonat"; -App::$strings["Birth Day"] = "Geburtstag"; -App::$strings["Birthdate"] = "Geburtsdatum"; -App::$strings["Gender"] = "Geschlecht"; -App::$strings["Male"] = "Männlich"; -App::$strings["Female"] = "Weiblich"; -App::$strings["webpage"] = "Webseite"; -App::$strings["block"] = "Block"; -App::$strings["layout"] = "Layout"; -App::$strings["menu"] = "Menü"; -App::$strings["%s element installed"] = "Element für %s installiert"; -App::$strings["%s element installation failed"] = "Installation des Elements %s fehlgeschlagen"; App::$strings["Like/Dislike"] = "Mögen/Nicht mögen"; App::$strings["This action is restricted to members."] = "Diese Aktion kann nur von Mitgliedern ausgeführt werden."; App::$strings["Please login with your \$Projectname ID or register as a new \$Projectname member to continue."] = "Um fortzufahren melde Dich bitte mit Deiner \$Projectname-ID an oder registriere Dich als neues \$Projectname-Mitglied."; @@ -436,175 +446,103 @@ App::$strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$s nimmt an %2\$ss % App::$strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$s nimmt vielleicht an %2\$ss %3\$s teil"; App::$strings["Action completed."] = "Aktion durchgeführt."; App::$strings["Thank you."] = "Vielen Dank."; -App::$strings["Import completed"] = "Import abgeschlossen"; -App::$strings["Import Items"] = "Beiträge importieren"; -App::$strings["Use this form to import existing posts and content from an export file."] = "Mit diesem Formular kannst Du existierende Beiträge und Inhalte aus einer Sicherungsdatei importieren."; -App::$strings["Total invitation limit exceeded."] = "Einladungslimit überschritten."; -App::$strings["%s : Not a valid email address."] = "%s : Keine gültige Email Adresse."; -App::$strings["Please join us on \$Projectname"] = "Schließe Dich uns auf \$Projectname an!"; -App::$strings["Invitation limit exceeded. Please contact your site administrator."] = "Einladungslimit überschritten. Bitte kontaktiere den Administrator Deines \$Projectname-Servers."; -App::$strings["%s : Message delivery failed."] = "%s : Nachricht konnte nicht zugestellt werden."; -App::$strings["%d message sent."] = array( - 0 => "%d Nachricht gesendet.", - 1 => "%d Nachrichten gesendet.", -); -App::$strings["You have no more invitations available"] = "Du hast keine weiteren verfügbare Einladungen"; -App::$strings["Send invitations"] = "Einladungen senden"; -App::$strings["Enter email addresses, one per line:"] = "Email-Adressen eintragen, eine pro Zeile:"; -App::$strings["Your message:"] = "Deine Nachricht:"; -App::$strings["Please join my community on \$Projectname."] = "Schließe Dich uns auf \$Projectname an!"; -App::$strings["You will need to supply this invitation code:"] = "Bitte verwende bei der Registrierung den folgenden Einladungscode:"; -App::$strings["1. Register at any \$Projectname location (they are all inter-connected)"] = "1. Registriere Dich auf einem beliebigen \$Projectname-Hub (sie sind alle miteinander verbunden)"; -App::$strings["2. Enter my \$Projectname network address into the site searchbar."] = "2. Gib meine \$Projectname-Adresse im Suchfeld ein."; -App::$strings["or visit"] = "oder besuche"; -App::$strings["3. Click [Connect]"] = "3. Klicke auf [Verbinden]"; -App::$strings["Remote privacy information not available."] = "Privatsphäre-Einstellungen anderer Nutzer sind nicht verfügbar."; -App::$strings["Visible to:"] = "Sichtbar für:"; -App::$strings["Location not found."] = "Klon nicht gefunden."; -App::$strings["Location lookup failed."] = "Nachschlagen des Kanal-Ortes fehlgeschlagen"; -App::$strings["Please select another location to become primary before removing the primary location."] = "Bitte mache einen anderen Kanal-Ort zum primären Ort, bevor Du den primären Ort löschst."; -App::$strings["Syncing locations"] = "Synchronisiere Klone"; -App::$strings["No locations found."] = "Keine Klon-Adressen gefunden."; -App::$strings["Manage Channel Locations"] = "Klon-Adressen verwalten"; +App::$strings["Profile not found."] = "Profil nicht gefunden."; +App::$strings["Profile deleted."] = "Profil gelöscht."; +App::$strings["Profile-"] = "Profil-"; +App::$strings["New profile created."] = "Neues Profil erstellt."; +App::$strings["Profile unavailable to clone."] = "Profil kann nicht geklont werden."; +App::$strings["Profile unavailable to export."] = "Dieses Profil kann nicht exportiert werden."; +App::$strings["Profile Name is required."] = "Profil-Name erforderlich."; +App::$strings["Marital Status"] = "Familienstand"; +App::$strings["Romantic Partner"] = "Romantische Partner"; +App::$strings["Likes"] = "Gefällt"; +App::$strings["Dislikes"] = "Gefällt nicht"; +App::$strings["Work/Employment"] = "Arbeit/Anstellung"; +App::$strings["Religion"] = "Religion"; +App::$strings["Political Views"] = "Politische Ansichten"; +App::$strings["Sexual Preference"] = "Sexuelle Orientierung"; +App::$strings["Homepage"] = "Webseite"; +App::$strings["Interests"] = "Hobbys/Interessen"; App::$strings["Address"] = "Adresse"; -App::$strings["Primary"] = "Primär"; -App::$strings["Drop"] = "Löschen"; -App::$strings["Sync Now"] = "Jetzt synchronisieren"; -App::$strings["Please wait several minutes between consecutive operations."] = "Bitte warte mehrere Minuten zwischen dem Ausführen zweier Operationen!"; -App::$strings["When possible, drop a location by logging into that website/hub and removing your channel."] = "Wenn möglich, lösche einen Klon, indem Du Dich auf dem jeweiligen Hub einloggst und den Kanal dort löschst."; -App::$strings["Use this form to drop the location if the hub is no longer operating."] = "Benutze dieses Formular zum Löschen eines Klons, wenn es den Hub nicht mehr gibt."; -App::$strings["Hub not found."] = "Server nicht gefunden."; -App::$strings["Unable to lookup recipient."] = "Konnte den Empfänger nicht finden."; -App::$strings["Unable to communicate with requested channel."] = "Die Kommunikation mit dem ausgewählten Kanal ist fehlgeschlagen."; -App::$strings["Cannot verify requested channel."] = "Verifizierung des angeforderten Kanals fehlgeschlagen."; -App::$strings["Selected channel has private message restrictions. Send failed."] = "Der ausgewählte Kanal hat Einschränkungen bzgl. privater Nachrichten. Senden fehlgeschlagen."; -App::$strings["Messages"] = "Nachrichten"; -App::$strings["Message recalled."] = "Nachricht widerrufen."; -App::$strings["Conversation removed."] = "Unterhaltung gelöscht."; -App::$strings["Expires YYYY-MM-DD HH:MM"] = "Verfällt YYYY-MM-DD HH;MM"; -App::$strings["Requested channel is not in this network"] = "Angeforderter Kanal ist nicht in diesem Netzwerk."; -App::$strings["Send Private Message"] = "Private Nachricht senden"; -App::$strings["To:"] = "An:"; -App::$strings["Subject:"] = "Betreff:"; -App::$strings["Attach file"] = "Datei anhängen"; -App::$strings["Send"] = "Absenden"; -App::$strings["Set expiration date"] = "Verfallsdatum"; -App::$strings["Delete message"] = "Nachricht löschen"; -App::$strings["Delivery report"] = "Zustellungsbericht"; -App::$strings["Recall message"] = "Nachricht widerrufen"; -App::$strings["Message has been recalled."] = "Die Nachricht wurde widerrufen."; -App::$strings["Delete Conversation"] = "Unterhaltung löschen"; -App::$strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Keine sichere Kommunikation verfügbar. Eventuell kannst Du auf der Profilseite des Absenders antworten."; -App::$strings["Send Reply"] = "Antwort senden"; -App::$strings["Your message for %s (%s):"] = "Deine Nachricht für %s (%s):"; -App::$strings["You have created %1$.0f of %2$.0f allowed channels."] = "Du hast %1$.0f von maximal %2$.0f erlaubten Kanälen eingerichtet."; -App::$strings["Create a new channel"] = "Neuen Kanal anlegen"; -App::$strings["Channel Manager"] = "Kanal-Manager"; -App::$strings["Current Channel"] = "Aktueller Kanal"; -App::$strings["Switch to one of your channels by selecting it."] = "Wechsle zu einem Deiner Kanäle, indem Du auf ihn klickst."; -App::$strings["Default Channel"] = "Standard Kanal"; -App::$strings["Make Default"] = "Zum Standard machen"; -App::$strings["%d new messages"] = "%d neue Nachrichten"; -App::$strings["%d new introductions"] = "%d neue Vorstellungen"; -App::$strings["Delegated Channel"] = "Delegierte Kanäle"; -App::$strings["No valid account found."] = "Kein gültiges Konto gefunden."; -App::$strings["Password reset request issued. Check your email."] = "Zurücksetzen des Passworts eingeleitet. Schau in Deine E-Mails."; -App::$strings["Site Member (%s)"] = "Nutzer (%s)"; -App::$strings["Password reset requested at %s"] = "Passwort-Rücksetzung auf %s angefordert"; -App::$strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Die Anfrage konnte nicht verifiziert werden. (Vielleicht hast Du schon einmal auf den Link in der E-Mail geklickt?) Passwort-Rücksetzung fehlgeschlagen."; -App::$strings["Password Reset"] = "Zurücksetzen des Kennworts"; -App::$strings["Your password has been reset as requested."] = "Dein Passwort wurde wie angefordert neu erstellt."; -App::$strings["Your new password is"] = "Dein neues Passwort lautet"; -App::$strings["Save or copy your new password - and then"] = "Speichere oder kopiere Dein neues Passwort – und dann"; -App::$strings["click here to login"] = "Klicke hier, um dich anzumelden"; -App::$strings["Your password may be changed from the Settings page after successful login."] = "Dein Passwort kann unter Einstellungen nach einer erfolgreichen Anmeldung geändert werden."; -App::$strings["Your password has changed at %s"] = "Auf %s wurde Dein Passwort geändert"; -App::$strings["Forgot your Password?"] = "Kennwort vergessen?"; -App::$strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Gib Deine E-Mail-Adresse ein, um Dein Passwort zurücksetzen zu lassen. Du erhältst dann weitere Anweisungen per E-Mail."; -App::$strings["Email Address"] = "E-Mail Adresse"; -App::$strings["Reset"] = "Zurücksetzen"; -App::$strings["Unable to update menu."] = "Kann Menü nicht aktualisieren."; -App::$strings["Unable to create menu."] = "Kann Menü nicht erstellen."; -App::$strings["Menu Name"] = "Name des Menüs"; -App::$strings["Unique name (not visible on webpage) - required"] = "Eindeutiger Name (nicht sichtbar auf der Webseite) – erforderlich"; -App::$strings["Menu Title"] = "Menütitel"; -App::$strings["Visible on webpage - leave empty for no title"] = "Sichtbar auf der Webseite – für keinen Titel leer lassen"; -App::$strings["Allow Bookmarks"] = "Lesezeichen erlauben"; -App::$strings["Menu may be used to store saved bookmarks"] = "Im Menü können gespeicherte Lesezeichen abgelegt werden"; -App::$strings["Submit and proceed"] = "Absenden und fortfahren"; -App::$strings["Menus"] = "Menüs"; -App::$strings["Bookmarks allowed"] = "Lesezeichen erlaubt"; -App::$strings["Delete this menu"] = "Lösche dieses Menü"; -App::$strings["Edit menu contents"] = "Bearbeite Menü Inhalte"; -App::$strings["Edit this menu"] = "Dieses Menü bearbeiten"; -App::$strings["Menu could not be deleted."] = "Menü konnte nicht gelöscht werden."; -App::$strings["Menu not found."] = "Menü nicht gefunden"; -App::$strings["Edit Menu"] = "Menü bearbeiten"; -App::$strings["Add or remove entries to this menu"] = "Einträge zu diesem Menü hinzufügen oder entfernen"; -App::$strings["Menu name"] = "Menü Name"; -App::$strings["Must be unique, only seen by you"] = "Muss eindeutig sein, ist aber nur für Dich sichtbar"; -App::$strings["Menu title"] = "Menü Titel"; -App::$strings["Menu title as seen by others"] = "Menü Titel wie er von anderen gesehen wird"; -App::$strings["Allow bookmarks"] = "Erlaube Lesezeichen"; -App::$strings["Not found."] = "Nicht gefunden."; -App::$strings["__ctx:mood__ %1\$s is %2\$s"] = "%1\$s ist %2\$s"; -App::$strings["Mood"] = "Laune"; -App::$strings["Set your current mood and tell your friends"] = "Wähle Deine aktuelle Stimmung und teile sie mit Deinen Freunden"; -App::$strings["Profile Match"] = "Profil-Übereinstimmungen"; -App::$strings["No keywords to match. Please add keywords to your default profile."] = "Keine Schlüsselwörter für den Abgleich gefunden. Bitte füge Schlüsselwörter zu Deinem Standardprofil hinzu."; -App::$strings["is interested in:"] = "interessiert sich für:"; -App::$strings["No matches"] = "Keine Übereinstimmungen"; -App::$strings["No such group"] = "Gruppe nicht gefunden"; -App::$strings["No such channel"] = "Kanal nicht gefunden"; -App::$strings["forum"] = "Forum"; -App::$strings["Search Results For:"] = "Suchergebnisse für:"; -App::$strings["Privacy group is empty"] = "Gruppe ist leer"; -App::$strings["Privacy group: "] = "Gruppe:"; -App::$strings["Invalid connection."] = "Ungültige Verbindung."; -App::$strings["No more system notifications."] = "Keine System-Benachrichtigungen mehr."; -App::$strings["System Notifications"] = "System-Benachrichtigungen"; -App::$strings["Unable to create element."] = "Element konnte nicht erstellt werden."; -App::$strings["Unable to update menu element."] = "Kann Menü-Element nicht aktualisieren."; -App::$strings["Unable to add menu element."] = "Kann Menü-Bestandteil nicht hinzufügen."; -App::$strings["Menu Item Permissions"] = "Zugriffsrechte des Menü-Elements"; -App::$strings["(click to open/close)"] = "(zum öffnen/schließen anklicken)"; -App::$strings["Link Name"] = "Name des Links"; -App::$strings["Link or Submenu Target"] = "Ziel des Links oder Untermenüs"; -App::$strings["Enter URL of the link or select a menu name to create a submenu"] = "URL des Links eingeben oder Menünamen wählen, um ein Untermenü anzulegen."; -App::$strings["Use magic-auth if available"] = "Magic-Auth verwenden, falls verfügbar"; -App::$strings["Open link in new window"] = "Öffne Link in neuem Fenster"; -App::$strings["Order in list"] = "Reihenfolge in der Liste"; -App::$strings["Higher numbers will sink to bottom of listing"] = "Größere Nummern werden weiter unten in der Auflistung einsortiert"; -App::$strings["Submit and finish"] = "Absenden und fertigstellen"; -App::$strings["Submit and continue"] = "Absenden und fortfahren"; -App::$strings["Menu:"] = "Menü:"; -App::$strings["Link Target"] = "Ziel des Links"; -App::$strings["Edit menu"] = "Menü bearbeiten"; -App::$strings["Edit element"] = "Bestandteil bearbeiten"; -App::$strings["Drop element"] = "Bestandteil löschen"; -App::$strings["New element"] = "Neues Bestandteil"; -App::$strings["Edit this menu container"] = "Diesen Menü-Container bearbeiten"; -App::$strings["Add menu element"] = "Menüelement hinzufügen"; -App::$strings["Delete this menu item"] = "Lösche dieses Menü-Bestandteil"; -App::$strings["Edit this menu item"] = "Bearbeite dieses Menü-Bestandteil"; -App::$strings["Menu item not found."] = "Menü-Bestandteil nicht gefunden."; -App::$strings["Menu item deleted."] = "Menü-Bestandteil gelöscht."; -App::$strings["Menu item could not be deleted."] = "Menü-Bestandteil kann nicht gelöscht werden."; -App::$strings["Edit Menu Element"] = "Bearbeite Menü-Bestandteil"; -App::$strings["Link text"] = "Link Text"; -App::$strings["Name or caption"] = "Name oder Titel"; -App::$strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\""] = "Beispiele: „Horst Weidinger“, „Lisa und ihr Meerschweinchen“, „Fußball“, „Segelflieger-Forum“ "; -App::$strings["Choose a short nickname"] = "Wähle einen kurzen Spitznamen"; -App::$strings["Your nickname will be used to create an easy to remember channel address e.g. nickname%s"] = "Dein Spitzname wird verwendet, um eine leicht zu merkende Kanal-Adresse (ähnlich einer E-Mail-Adresse) zu erzeugen, die Du mit anderen austauschen kannst, z.B. nickname%s"; -App::$strings["Channel role and privacy"] = "Kanaltyp und Privatspäre-Einstellungen"; -App::$strings["Select a channel role with your privacy requirements."] = "Wähle einen passenden Kanaltyp mit den zugehörigen Voreinstellungen zur Privatsphäre."; -App::$strings["Read more about roles"] = "Mehr Informationen über Rollen"; -App::$strings["Create Channel"] = "Einen neuen Kanal anlegen"; -App::$strings["A channel is your identity on this network. It can represent a person, a blog, or a forum to name a few. Channels can make connections with other channels to share information with highly detailed permissions."] = "Ein Kanal ist Deine Identität in diesem Netzwerk. Er kann eine Person, ein Blog oder ein Forum repräsentieren, nur um ein paar Beispiele zu nennen. Kanäle können Verbindungen miteinander eingehen, um Informationen zu teilen, jeweils basierend auf sehr detaillierten Berechtigungseinstellungen."; -App::$strings["or import an existing channel from another location."] = "oder importiere einen bestehenden Kanal von einem anderen Server."; -App::$strings["Invalid request identifier."] = "Ungültiger Anfrage-Identifikator."; -App::$strings["Discard"] = "Verwerfen"; -App::$strings["Mark all system notifications seen"] = "Markiere alle System-Benachrichtigungen als gesehen"; +App::$strings["Profile updated."] = "Profil aktualisiert."; +App::$strings["Hide your connections list from viewers of this profile"] = "Deine Verbindungen vor Betrachtern dieses Profils verbergen"; +App::$strings["Edit Profile Details"] = "Bearbeite Profil-Details"; +App::$strings["View this profile"] = "Dieses Profil ansehen"; +App::$strings["Edit visibility"] = "Sichtbarkeit bearbeiten"; +App::$strings["Profile Tools"] = "Profilwerkzeuge"; +App::$strings["Change cover photo"] = "Titelbild ändern"; +App::$strings["Change profile photo"] = "Profilfoto ändern"; +App::$strings["Create a new profile using these settings"] = "Neues Profil anlegen und diese Einstellungen übernehmen"; +App::$strings["Clone this profile"] = "Dieses Profil klonen"; +App::$strings["Delete this profile"] = "Dieses Profil löschen"; +App::$strings["Add profile things"] = "Sachen zum Profil hinzufügen"; +App::$strings["Personal"] = "Persönlich"; +App::$strings["Relation"] = "Beziehung"; +App::$strings["Miscellaneous"] = "Verschiedenes"; +App::$strings["Import profile from file"] = "Profil aus einer Datei importieren"; +App::$strings["Export profile to file"] = "Profil in eine Datei exportieren"; +App::$strings["Your gender"] = "Dein Geschlecht"; +App::$strings["Marital status"] = "Familienstand"; +App::$strings["Sexual preference"] = "Sexuelle Orientierung"; +App::$strings["Profile name"] = "Profilname"; +App::$strings["This is your default profile."] = "Das ist Dein Standardprofil."; +App::$strings["Your full name"] = "Dein voller Name"; +App::$strings["Title/Description"] = "Titel/Beschreibung"; +App::$strings["Street address"] = "Straße und Hausnummer"; +App::$strings["Locality/City"] = "Wohnort"; +App::$strings["Region/State"] = "Region/Bundesstaat"; +App::$strings["Postal/Zip code"] = "Postleitzahl"; +App::$strings["Country"] = "Land"; +App::$strings["Who (if applicable)"] = "Wer (falls anwendbar)"; +App::$strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Beispiele: cathy123, Cathy Williams, cathy@example.com"; +App::$strings["Since (date)"] = "Seit (Datum)"; +App::$strings["Tell us about yourself"] = "Erzähle uns ein wenig von Dir"; +App::$strings["Hometown"] = "Heimatort"; +App::$strings["Political views"] = "Politische Ansichten"; +App::$strings["Religious views"] = "Religiöse Ansichten"; +App::$strings["Keywords used in directory listings"] = "Schlüsselwörter, die in Verzeichnis-Auflistungen verwendet werden"; +App::$strings["Example: fishing photography software"] = "Beispiel: Angeln Fotografie Software"; +App::$strings["Musical interests"] = "Musikalische Interessen"; +App::$strings["Books, literature"] = "Bücher, Literatur"; +App::$strings["Television"] = "Fernsehen"; +App::$strings["Film/Dance/Culture/Entertainment"] = "Film/Tanz/Kultur/Unterhaltung"; +App::$strings["Hobbies/Interests"] = "Hobbys/Interessen"; +App::$strings["Love/Romance"] = "Liebe/Romantik"; +App::$strings["School/Education"] = "Schule/Ausbildung"; +App::$strings["Contact information and social networks"] = "Kontaktinformation und soziale Netzwerke"; +App::$strings["My other channels"] = "Meine anderen Kanäle"; +App::$strings["Profile Image"] = "Profilfoto:"; +App::$strings["Edit Profiles"] = "Profile bearbeiten"; +App::$strings["Your service plan only allows %d channels."] = "Dein Vertrag erlaubt nur %d Kanäle."; +App::$strings["Nothing to import."] = "Nichts zu importieren."; +App::$strings["Unable to download data from old server"] = "Daten können vom alten Server nicht heruntergeladen werden"; +App::$strings["Imported file is empty."] = "Die importierte Datei ist leer."; +App::$strings["Warning: Database versions differ by %1\$d updates."] = "Achtung: Datenbankversionen unterscheiden sich um %1\$d Aktualisierungen."; +App::$strings["Cloned channel not found. Import failed."] = "Geklonter Kanal nicht gefunden. Import fehlgeschlagen."; +App::$strings["No channel. Import failed."] = "Kein Kanal. Import fehlgeschlagen."; +App::$strings["Import completed."] = "Import abgeschlossen."; +App::$strings["You must be logged in to use this feature."] = "Du musst angemeldet sein um diese Funktion zu nutzen."; +App::$strings["Import Channel"] = "Kanal importieren"; +App::$strings["Use this form to import an existing channel from a different server/hub. You may retrieve the channel identity from the old server/hub via the network or provide an export file."] = "Verwende dieses Formular, um einen existierenden Kanal von einem anderen Hub zu importieren. Du kannst den Kanal direkt vom bisherigen Hub über das Netzwerk oder aus einer exportierten Sicherheitskopie importieren."; +App::$strings["File to Upload"] = "Hochzuladende Datei:"; +App::$strings["Or provide the old server/hub details"] = "Oder gib die Details Deines bisherigen \$Projectname-Hubs ein"; +App::$strings["Your old identity address (xyz@example.com)"] = "Bisherige Kanal-Adresse (xyz@example.com)"; +App::$strings["Your old login email address"] = "Deine alte Login-E-Mail-Adresse"; +App::$strings["Your old login password"] = "Dein altes Passwort"; +App::$strings["For either option, please choose whether to make this hub your new primary address, or whether your old location should continue this role. You will be able to post from either location, but only one can be marked as the primary location for files, photos, and media."] = "Egal, welche Option Du wählst – bitte lege fest, ob dieser Server die neue primäre Adresse dieses Kanals sein soll, oder ob der bisherige \$Projectname-Hub diese Rolle weiterhin wahrnimmt. Du kannst von beiden Servern aus posten, aber nur einer kann der primäre Ort Deiner Dateien, Fotos und Medien sein."; +App::$strings["Make this hub my primary location"] = "Dieser $Pojectname-Hub ist mein primärer Hub."; +App::$strings["Import existing posts if possible (experimental - limited by available memory"] = "Importiere bestehende Beiträge falls möglich (experimentell - begrenzt durch zur Verfügung stehenden Speicher"; +App::$strings["This process may take several minutes to complete. Please submit the form only once and leave this page open until finished."] = "Dieser Vorgang kann einige Minuten dauern. Bitte sende das Formular nur einmal ab und lasse diese Seite bis zur Fertigstellung offen."; +App::$strings["\$Projectname"] = "\$Projectname"; +App::$strings["Welcome to %s"] = "Willkommen auf %s"; +App::$strings["Unable to locate original post."] = "Originalbeitrag nicht gefunden."; +App::$strings["Empty post discarded."] = "Leeren Beitrag verworfen."; +App::$strings["Executable content type not permitted to this channel."] = "Ausführbarer Content-Typ ist für diesen Kanal nicht freigegeben."; +App::$strings["Duplicate post suppressed."] = "Doppelter Beitrag unterdrückt."; +App::$strings["System error. Post not saved."] = "Systemfehler. Beitrag nicht gespeichert."; +App::$strings["Unable to obtain post information from database."] = "Beitragsinformationen können nicht aus der Datenbank abgerufen werden."; +App::$strings["You have reached your limit of %1$.0f top level posts."] = "Du hast die maximale Anzahl von %1$.0f Beiträgen erreicht."; +App::$strings["You have reached your limit of %1$.0f webpages."] = "Du hast die maximale Anzahl von %1$.0f Webseiten erreicht."; App::$strings["Page owner information could not be retrieved."] = "Informationen über den Besitzer der Seite konnten nicht gefunden werden."; App::$strings["Profile Photos"] = "Profilfotos"; App::$strings["Album not found."] = "Album nicht gefunden."; @@ -673,122 +611,164 @@ App::$strings["__ctx:noun__ Dislikes"] = "Gefällt nicht"; App::$strings["Close"] = "Schließen"; App::$strings["View Album"] = "Album ansehen"; App::$strings["Recent Photos"] = "Neueste Fotos"; -App::$strings["sent you a private message"] = "hat Dir eine private Nachricht geschickt"; -App::$strings["added your channel"] = "hat deinen Kanal hinzugefügt"; -App::$strings["g A l F d"] = "l, d. F, G:i \\U\\h\\r"; -App::$strings["[today]"] = "[Heute]"; -App::$strings["posted an event"] = "hat einen Termin veröffentlicht"; -App::$strings["Unable to find your hub."] = "Konnte Deinen Server nicht finden."; -App::$strings["Post successful."] = "Veröffentlichung erfolgreich."; -App::$strings["OpenID protocol error. No ID returned."] = "OpenID Protokollfehler. Keine ID zurückgegeben."; -App::$strings["Login failed."] = "Login fehlgeschlagen."; -App::$strings["Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."] = "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."; -App::$strings["This setting requires special processing and editing has been blocked."] = "Diese Einstellung erfordert eine besondere Verarbeitung und ist blockiert."; -App::$strings["Configuration Editor"] = "Konfigurationseditor"; -App::$strings["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."] = "Warnung: Einige Einstellungen können Deinen Kanal funktionsunfähig machen. Bitte verlasse diese Seite, es sei denn Du bist vertraut damit, wie dieses Feature korrekt verwendet wird."; -App::$strings["Layout updated."] = "Layout aktualisiert."; -App::$strings["Edit System Page Description"] = "Systemseitenbeschreibung bearbeiten"; -App::$strings["Layout not found."] = "Layout nicht gefunden."; -App::$strings["Module Name:"] = "Modulname:"; -App::$strings["Layout Help"] = "Layout-Hilfe"; -App::$strings["Poke"] = "Anstupsen"; -App::$strings["Poke somebody"] = "Jemanden anstupsen"; -App::$strings["Poke/Prod"] = "Anstupsen/Knuffen"; -App::$strings["Poke, prod or do other things to somebody"] = "Jemanden anstupsen, knuffen oder sonstiges"; -App::$strings["Recipient"] = "Empfänger"; -App::$strings["Choose what you wish to do to recipient"] = "Wähle, was Du mit dem/r Empfänger/in tun willst"; -App::$strings["Make this post private"] = "Diesen Beitrag privat machen"; -App::$strings["Fetching URL returns error: %1\$s"] = "Abrufen der URL gab einen Fehler zurück: %1\$s"; -App::$strings["Profile not found."] = "Profil nicht gefunden."; -App::$strings["Profile deleted."] = "Profil gelöscht."; -App::$strings["Profile-"] = "Profil-"; -App::$strings["New profile created."] = "Neues Profil erstellt."; -App::$strings["Profile unavailable to clone."] = "Profil kann nicht geklont werden."; -App::$strings["Profile unavailable to export."] = "Dieses Profil kann nicht exportiert werden."; -App::$strings["Profile Name is required."] = "Profil-Name erforderlich."; -App::$strings["Marital Status"] = "Familienstand"; -App::$strings["Romantic Partner"] = "Romantische Partner"; -App::$strings["Likes"] = "Gefällt"; -App::$strings["Dislikes"] = "Gefällt nicht"; -App::$strings["Work/Employment"] = "Arbeit/Anstellung"; -App::$strings["Religion"] = "Religion"; -App::$strings["Political Views"] = "Politische Ansichten"; -App::$strings["Sexual Preference"] = "Sexuelle Orientierung"; -App::$strings["Homepage"] = "Webseite"; -App::$strings["Interests"] = "Hobbys/Interessen"; -App::$strings["Profile updated."] = "Profil aktualisiert."; -App::$strings["Hide your connections list from viewers of this profile"] = "Deine Verbindungen vor Betrachtern dieses Profils verbergen"; -App::$strings["Edit Profile Details"] = "Bearbeite Profil-Details"; -App::$strings["View this profile"] = "Dieses Profil ansehen"; -App::$strings["Edit visibility"] = "Sichtbarkeit bearbeiten"; -App::$strings["Profile Tools"] = "Profilwerkzeuge"; -App::$strings["Change cover photo"] = "Titelbild ändern"; -App::$strings["Change profile photo"] = "Profilfoto ändern"; -App::$strings["Create a new profile using these settings"] = "Neues Profil anlegen und diese Einstellungen übernehmen"; -App::$strings["Clone this profile"] = "Dieses Profil klonen"; -App::$strings["Delete this profile"] = "Dieses Profil löschen"; -App::$strings["Add profile things"] = "Sachen zum Profil hinzufügen"; -App::$strings["Personal"] = "Persönlich"; -App::$strings["Relation"] = "Beziehung"; -App::$strings["Miscellaneous"] = "Verschiedenes"; -App::$strings["Import profile from file"] = "Profil aus einer Datei importieren"; -App::$strings["Export profile to file"] = "Profil in eine Datei exportieren"; -App::$strings["Your gender"] = "Dein Geschlecht"; -App::$strings["Marital status"] = "Familienstand"; -App::$strings["Sexual preference"] = "Sexuelle Orientierung"; -App::$strings["Profile name"] = "Profilname"; -App::$strings["This is your default profile."] = "Das ist Dein Standardprofil."; -App::$strings["Your full name"] = "Dein voller Name"; -App::$strings["Title/Description"] = "Titel/Beschreibung"; -App::$strings["Street address"] = "Straße und Hausnummer"; -App::$strings["Locality/City"] = "Wohnort"; -App::$strings["Region/State"] = "Region/Bundesstaat"; -App::$strings["Postal/Zip code"] = "Postleitzahl"; -App::$strings["Country"] = "Land"; -App::$strings["Who (if applicable)"] = "Wer (falls anwendbar)"; -App::$strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Beispiele: cathy123, Cathy Williams, cathy@example.com"; -App::$strings["Since (date)"] = "Seit (Datum)"; -App::$strings["Tell us about yourself"] = "Erzähle uns ein wenig von Dir"; -App::$strings["Hometown"] = "Heimatort"; -App::$strings["Political views"] = "Politische Ansichten"; -App::$strings["Religious views"] = "Religiöse Ansichten"; -App::$strings["Keywords used in directory listings"] = "Schlüsselwörter, die in Verzeichnis-Auflistungen verwendet werden"; -App::$strings["Example: fishing photography software"] = "Beispiel: Angeln Fotografie Software"; -App::$strings["Musical interests"] = "Musikalische Interessen"; -App::$strings["Books, literature"] = "Bücher, Literatur"; -App::$strings["Television"] = "Fernsehen"; -App::$strings["Film/Dance/Culture/Entertainment"] = "Film/Tanz/Kultur/Unterhaltung"; -App::$strings["Hobbies/Interests"] = "Hobbys/Interessen"; -App::$strings["Love/Romance"] = "Liebe/Romantik"; -App::$strings["School/Education"] = "Schule/Ausbildung"; -App::$strings["Contact information and social networks"] = "Kontaktinformation und soziale Netzwerke"; -App::$strings["My other channels"] = "Meine anderen Kanäle"; -App::$strings["Profile Image"] = "Profilfoto:"; -App::$strings["Edit Profiles"] = "Profile bearbeiten"; -App::$strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Leere den Browser Cache oder nutze Umschalten-Neu Laden, falls das neue Foto nicht sofort angezeigt wird."; -App::$strings["Upload Profile Photo"] = "Lade neues Profilfoto hoch"; -App::$strings["Invalid profile identifier."] = "Ungültiger Profil-Identifikator"; -App::$strings["Profile Visibility Editor"] = "Profil-Sichtbarkeits-Editor"; -App::$strings["Profile"] = "Profil"; -App::$strings["Click on a contact to add or remove."] = "Klicke auf einen Kontakt, um ihn hinzuzufügen oder zu entfernen."; -App::$strings["Visible To"] = "Sichtbar für"; -App::$strings["Public Hubs"] = "Öffentliche Hubs"; -App::$strings["The listed hubs allow public registration for the \$Projectname network. All hubs in the network are interlinked so membership on any of them conveys membership in the network as a whole. Some hubs may require subscription or provide tiered service plans. The hub itself may provide additional details."] = "Die hier aufgeführten Hubs sind öffentlich und erlauben die Registrierung im \$Projectname Netzwerk. Alle Hubs dieses Netzwerks sind miteinander verbunden, so dass die Mitgliedschaft auf einem Hub die Verbindung zu beliebigen Seiten und Kanälen auf anderen Hubs ermöglicht. Es könnte sein, dass einige dieser Hubs kostenpflichtig sind oder abgestufte, je nach Umfang kostenpflichtige Mitgliedschaften anbieten. Auf den Seiten der einzelnen Hubs könnten jeweils nähere Informationen dazu stehen."; -App::$strings["Hub URL"] = "Hub-URL"; -App::$strings["Access Type"] = "Zugriffstyp"; -App::$strings["Registration Policy"] = "Registrierungsrichtlinien"; -App::$strings["Stats"] = "Statistiken"; -App::$strings["Software"] = "Software"; -App::$strings["Ratings"] = "Bewertungen"; -App::$strings["Rate"] = "Bewerten"; -App::$strings["Website:"] = "Webseite:"; -App::$strings["Remote Channel [%s] (not yet known on this site)"] = "Kanal [%s] (auf diesem Server noch unbekannt)"; -App::$strings["Rating (this information is public)"] = "Bewertung (öffentlich sichtbar)"; -App::$strings["Optionally explain your rating (this information is public)"] = "Optional kannst du deine Bewertung erklären (öffentlich sichtbar)"; -App::$strings["No ratings"] = "Keine Bewertungen"; -App::$strings["Rating: "] = "Bewertung: "; -App::$strings["Website: "] = "Webseite: "; -App::$strings["Description: "] = "Beschreibung: "; +App::$strings["Remote privacy information not available."] = "Privatsphäre-Einstellungen anderer Nutzer sind nicht verfügbar."; +App::$strings["Visible to:"] = "Sichtbar für:"; +App::$strings["Import completed"] = "Import abgeschlossen"; +App::$strings["Import Items"] = "Beiträge importieren"; +App::$strings["Use this form to import existing posts and content from an export file."] = "Mit diesem Formular kannst Du existierende Beiträge und Inhalte aus einer Sicherungsdatei importieren."; +App::$strings["Total invitation limit exceeded."] = "Einladungslimit überschritten."; +App::$strings["%s : Not a valid email address."] = "%s : Keine gültige Email Adresse."; +App::$strings["Please join us on \$Projectname"] = "Schließe Dich uns auf \$Projectname an!"; +App::$strings["Invitation limit exceeded. Please contact your site administrator."] = "Einladungslimit überschritten. Bitte kontaktiere den Administrator Deines \$Projectname-Servers."; +App::$strings["%s : Message delivery failed."] = "%s : Nachricht konnte nicht zugestellt werden."; +App::$strings["%d message sent."] = array( + 0 => "%d Nachricht gesendet.", + 1 => "%d Nachrichten gesendet.", +); +App::$strings["You have no more invitations available"] = "Du hast keine weiteren verfügbare Einladungen"; +App::$strings["Send invitations"] = "Einladungen senden"; +App::$strings["Enter email addresses, one per line:"] = "Email-Adressen eintragen, eine pro Zeile:"; +App::$strings["Your message:"] = "Deine Nachricht:"; +App::$strings["Please join my community on \$Projectname."] = "Schließe Dich uns auf \$Projectname an!"; +App::$strings["You will need to supply this invitation code:"] = "Bitte verwende bei der Registrierung den folgenden Einladungscode:"; +App::$strings["1. Register at any \$Projectname location (they are all inter-connected)"] = "1. Registriere Dich auf einem beliebigen \$Projectname-Hub (sie sind alle miteinander verbunden)"; +App::$strings["2. Enter my \$Projectname network address into the site searchbar."] = "2. Gib meine \$Projectname-Adresse im Suchfeld ein."; +App::$strings["or visit"] = "oder besuche"; +App::$strings["3. Click [Connect]"] = "3. Klicke auf [Verbinden]"; +App::$strings["Location not found."] = "Klon nicht gefunden."; +App::$strings["Location lookup failed."] = "Nachschlagen des Kanal-Ortes fehlgeschlagen"; +App::$strings["Please select another location to become primary before removing the primary location."] = "Bitte mache einen anderen Kanal-Ort zum primären Ort, bevor Du den primären Ort löschst."; +App::$strings["Syncing locations"] = "Synchronisiere Klone"; +App::$strings["No locations found."] = "Keine Klon-Adressen gefunden."; +App::$strings["Manage Channel Locations"] = "Klon-Adressen verwalten"; +App::$strings["Primary"] = "Primär"; +App::$strings["Drop"] = "Löschen"; +App::$strings["Sync Now"] = "Jetzt synchronisieren"; +App::$strings["Please wait several minutes between consecutive operations."] = "Bitte warte mehrere Minuten zwischen dem Ausführen zweier Operationen!"; +App::$strings["When possible, drop a location by logging into that website/hub and removing your channel."] = "Wenn möglich, lösche einen Klon, indem Du Dich auf dem jeweiligen Hub einloggst und den Kanal dort löschst."; +App::$strings["Use this form to drop the location if the hub is no longer operating."] = "Benutze dieses Formular zum Löschen eines Klons, wenn es den Hub nicht mehr gibt."; +App::$strings["Hub not found."] = "Server nicht gefunden."; +App::$strings["Unable to lookup recipient."] = "Konnte den Empfänger nicht finden."; +App::$strings["Unable to communicate with requested channel."] = "Die Kommunikation mit dem ausgewählten Kanal ist fehlgeschlagen."; +App::$strings["Cannot verify requested channel."] = "Verifizierung des angeforderten Kanals fehlgeschlagen."; +App::$strings["Selected channel has private message restrictions. Send failed."] = "Der ausgewählte Kanal hat Einschränkungen bzgl. privater Nachrichten. Senden fehlgeschlagen."; +App::$strings["Messages"] = "Nachrichten"; +App::$strings["Message recalled."] = "Nachricht widerrufen."; +App::$strings["Conversation removed."] = "Unterhaltung gelöscht."; +App::$strings["Expires YYYY-MM-DD HH:MM"] = "Verfällt YYYY-MM-DD HH;MM"; +App::$strings["Requested channel is not in this network"] = "Angeforderter Kanal ist nicht in diesem Netzwerk."; +App::$strings["Send Private Message"] = "Private Nachricht senden"; +App::$strings["To:"] = "An:"; +App::$strings["Subject:"] = "Betreff:"; +App::$strings["Attach file"] = "Datei anhängen"; +App::$strings["Send"] = "Absenden"; +App::$strings["Set expiration date"] = "Verfallsdatum"; +App::$strings["Delete message"] = "Nachricht löschen"; +App::$strings["Delivery report"] = "Zustellungsbericht"; +App::$strings["Recall message"] = "Nachricht widerrufen"; +App::$strings["Message has been recalled."] = "Die Nachricht wurde widerrufen."; +App::$strings["Delete Conversation"] = "Unterhaltung löschen"; +App::$strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Keine sichere Kommunikation verfügbar. Eventuell kannst Du auf der Profilseite des Absenders antworten."; +App::$strings["Send Reply"] = "Antwort senden"; +App::$strings["Your message for %s (%s):"] = "Deine Nachricht für %s (%s):"; +App::$strings["You have created %1$.0f of %2$.0f allowed channels."] = "Du hast %1$.0f von maximal %2$.0f erlaubten Kanälen eingerichtet."; +App::$strings["Create a new channel"] = "Neuen Kanal anlegen"; +App::$strings["Channel Manager"] = "Kanal-Manager"; +App::$strings["Current Channel"] = "Aktueller Kanal"; +App::$strings["Switch to one of your channels by selecting it."] = "Wechsle zu einem Deiner Kanäle, indem Du auf ihn klickst."; +App::$strings["Default Channel"] = "Standard Kanal"; +App::$strings["Make Default"] = "Zum Standard machen"; +App::$strings["%d new messages"] = "%d neue Nachrichten"; +App::$strings["%d new introductions"] = "%d neue Vorstellungen"; +App::$strings["Delegated Channel"] = "Delegierte Kanäle"; +App::$strings["Unable to update menu."] = "Kann Menü nicht aktualisieren."; +App::$strings["Unable to create menu."] = "Kann Menü nicht erstellen."; +App::$strings["Menu Name"] = "Name des Menüs"; +App::$strings["Unique name (not visible on webpage) - required"] = "Eindeutiger Name (nicht sichtbar auf der Webseite) – erforderlich"; +App::$strings["Menu Title"] = "Menütitel"; +App::$strings["Visible on webpage - leave empty for no title"] = "Sichtbar auf der Webseite – für keinen Titel leer lassen"; +App::$strings["Allow Bookmarks"] = "Lesezeichen erlauben"; +App::$strings["Menu may be used to store saved bookmarks"] = "Im Menü können gespeicherte Lesezeichen abgelegt werden"; +App::$strings["Submit and proceed"] = "Absenden und fortfahren"; +App::$strings["Menus"] = "Menüs"; +App::$strings["Bookmarks allowed"] = "Lesezeichen erlaubt"; +App::$strings["Delete this menu"] = "Lösche dieses Menü"; +App::$strings["Edit menu contents"] = "Bearbeite Menü Inhalte"; +App::$strings["Edit this menu"] = "Dieses Menü bearbeiten"; +App::$strings["Menu could not be deleted."] = "Menü konnte nicht gelöscht werden."; +App::$strings["Menu not found."] = "Menü nicht gefunden"; +App::$strings["Edit Menu"] = "Menü bearbeiten"; +App::$strings["Add or remove entries to this menu"] = "Einträge zu diesem Menü hinzufügen oder entfernen"; +App::$strings["Menu name"] = "Menü Name"; +App::$strings["Must be unique, only seen by you"] = "Muss eindeutig sein, ist aber nur für Dich sichtbar"; +App::$strings["Menu title"] = "Menü Titel"; +App::$strings["Menu title as seen by others"] = "Menü Titel wie er von anderen gesehen wird"; +App::$strings["Allow bookmarks"] = "Erlaube Lesezeichen"; +App::$strings["Not found."] = "Nicht gefunden."; +App::$strings["No valid account found."] = "Kein gültiges Konto gefunden."; +App::$strings["Password reset request issued. Check your email."] = "Zurücksetzen des Passworts eingeleitet. Schau in Deine E-Mails."; +App::$strings["Site Member (%s)"] = "Nutzer (%s)"; +App::$strings["Password reset requested at %s"] = "Passwort-Rücksetzung auf %s angefordert"; +App::$strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Die Anfrage konnte nicht verifiziert werden. (Vielleicht hast Du schon einmal auf den Link in der E-Mail geklickt?) Passwort-Rücksetzung fehlgeschlagen."; +App::$strings["Password Reset"] = "Zurücksetzen des Kennworts"; +App::$strings["Your password has been reset as requested."] = "Dein Passwort wurde wie angefordert neu erstellt."; +App::$strings["Your new password is"] = "Dein neues Passwort lautet"; +App::$strings["Save or copy your new password - and then"] = "Speichere oder kopiere Dein neues Passwort – und dann"; +App::$strings["click here to login"] = "Klicke hier, um dich anzumelden"; +App::$strings["Your password may be changed from the Settings page after successful login."] = "Dein Passwort kann unter Einstellungen nach einer erfolgreichen Anmeldung geändert werden."; +App::$strings["Your password has changed at %s"] = "Auf %s wurde Dein Passwort geändert"; +App::$strings["Forgot your Password?"] = "Kennwort vergessen?"; +App::$strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Gib Deine E-Mail-Adresse ein, um Dein Passwort zurücksetzen zu lassen. Du erhältst dann weitere Anweisungen per E-Mail."; +App::$strings["Email Address"] = "E-Mail Adresse"; +App::$strings["Reset"] = "Zurücksetzen"; +App::$strings["__ctx:mood__ %1\$s is %2\$s"] = "%1\$s ist %2\$s"; +App::$strings["Mood"] = "Laune"; +App::$strings["Set your current mood and tell your friends"] = "Wähle Deine aktuelle Stimmung und teile sie mit Deinen Freunden"; +App::$strings["No such group"] = "Gruppe nicht gefunden"; +App::$strings["No such channel"] = "Kanal nicht gefunden"; +App::$strings["forum"] = "Forum"; +App::$strings["Search Results For:"] = "Suchergebnisse für:"; +App::$strings["Privacy group is empty"] = "Gruppe ist leer"; +App::$strings["Privacy group: "] = "Gruppe:"; +App::$strings["Invalid connection."] = "Ungültige Verbindung."; +App::$strings["No more system notifications."] = "Keine System-Benachrichtigungen mehr."; +App::$strings["System Notifications"] = "System-Benachrichtigungen"; +App::$strings["Profile Match"] = "Profil-Übereinstimmungen"; +App::$strings["No keywords to match. Please add keywords to your default profile."] = "Keine Schlüsselwörter für den Abgleich gefunden. Bitte füge Schlüsselwörter zu Deinem Standardprofil hinzu."; +App::$strings["is interested in:"] = "interessiert sich für:"; +App::$strings["No matches"] = "Keine Übereinstimmungen"; +App::$strings["Posts and comments"] = "Beiträge und Kommentare"; +App::$strings["Only posts"] = "Nur Beiträge"; +App::$strings["Insufficient permissions. Request redirected to profile page."] = "Unzureichende Zugriffsrechte. Die Anfrage wurde zur Profil-Seite umgeleitet."; +App::$strings["Unable to create element."] = "Element konnte nicht erstellt werden."; +App::$strings["Unable to update menu element."] = "Kann Menü-Element nicht aktualisieren."; +App::$strings["Unable to add menu element."] = "Kann Menü-Bestandteil nicht hinzufügen."; +App::$strings["Menu Item Permissions"] = "Zugriffsrechte des Menü-Elements"; +App::$strings["(click to open/close)"] = "(zum öffnen/schließen anklicken)"; +App::$strings["Link Name"] = "Name des Links"; +App::$strings["Link or Submenu Target"] = "Ziel des Links oder Untermenüs"; +App::$strings["Enter URL of the link or select a menu name to create a submenu"] = "URL des Links eingeben oder Menünamen wählen, um ein Untermenü anzulegen."; +App::$strings["Use magic-auth if available"] = "Magic-Auth verwenden, falls verfügbar"; +App::$strings["Open link in new window"] = "Öffne Link in neuem Fenster"; +App::$strings["Order in list"] = "Reihenfolge in der Liste"; +App::$strings["Higher numbers will sink to bottom of listing"] = "Größere Nummern werden weiter unten in der Auflistung einsortiert"; +App::$strings["Submit and finish"] = "Absenden und fertigstellen"; +App::$strings["Submit and continue"] = "Absenden und fortfahren"; +App::$strings["Menu:"] = "Menü:"; +App::$strings["Link Target"] = "Ziel des Links"; +App::$strings["Edit menu"] = "Menü bearbeiten"; +App::$strings["Edit element"] = "Bestandteil bearbeiten"; +App::$strings["Drop element"] = "Bestandteil löschen"; +App::$strings["New element"] = "Neues Bestandteil"; +App::$strings["Edit this menu container"] = "Diesen Menü-Container bearbeiten"; +App::$strings["Add menu element"] = "Menüelement hinzufügen"; +App::$strings["Delete this menu item"] = "Lösche dieses Menü-Bestandteil"; +App::$strings["Edit this menu item"] = "Bearbeite dieses Menü-Bestandteil"; +App::$strings["Menu item not found."] = "Menü-Bestandteil nicht gefunden."; +App::$strings["Menu item deleted."] = "Menü-Bestandteil gelöscht."; +App::$strings["Menu item could not be deleted."] = "Menü-Bestandteil kann nicht gelöscht werden."; +App::$strings["Edit Menu Element"] = "Bearbeite Menü-Bestandteil"; +App::$strings["Link text"] = "Link Text"; App::$strings["Theme settings updated."] = "Theme-Einstellungen aktualisiert."; App::$strings["# Accounts"] = "Anzahl der Konten"; App::$strings["# blocked accounts"] = "Anzahl der blockierten Konten"; @@ -1031,19 +1011,91 @@ App::$strings["(In addition to basic fields)"] = "(zusätzlich zu notwendige Fel App::$strings["All available fields"] = "Alle verfügbaren Felder"; App::$strings["Custom Fields"] = "Benutzerdefinierte Felder"; App::$strings["Create Custom Field"] = "Erstelle benutzerdefiniertes Feld"; -App::$strings["App installed."] = "App installiert."; -App::$strings["Malformed app."] = "Fehlerhafte App."; -App::$strings["Embed code"] = "Code einbetten"; -App::$strings["Edit App"] = "App bearbeiten"; -App::$strings["Create App"] = "App erstellen"; -App::$strings["Name of app"] = "Name der App"; -App::$strings["Location (URL) of app"] = "Ort (URL) der App"; -App::$strings["Photo icon URL"] = "URL zum Icon"; -App::$strings["80 x 80 pixels - optional"] = "80 x 80 Pixel – optional"; -App::$strings["Categories (optional, comma separated list)"] = "Kategorien (optional, kommagetrennte Liste)"; -App::$strings["Version ID"] = "Versions-ID"; -App::$strings["Price of app"] = "Preis der App"; -App::$strings["Location (URL) to purchase app"] = "Ort (URL), um die App zu kaufen"; +App::$strings["Name or caption"] = "Name oder Titel"; +App::$strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\""] = "Beispiele: „Horst Weidinger“, „Lisa und ihr Meerschweinchen“, „Fußball“, „Segelflieger-Forum“ "; +App::$strings["Choose a short nickname"] = "Wähle einen kurzen Spitznamen"; +App::$strings["Your nickname will be used to create an easy to remember channel address e.g. nickname%s"] = "Dein Spitzname wird verwendet, um eine leicht zu merkende Kanal-Adresse (ähnlich einer E-Mail-Adresse) zu erzeugen, die Du mit anderen austauschen kannst, z.B. nickname%s"; +App::$strings["Channel role and privacy"] = "Kanaltyp und Privatspäre-Einstellungen"; +App::$strings["Select a channel role with your privacy requirements."] = "Wähle einen passenden Kanaltyp mit den zugehörigen Voreinstellungen zur Privatsphäre."; +App::$strings["Read more about roles"] = "Mehr Informationen über Rollen"; +App::$strings["Create Channel"] = "Einen neuen Kanal anlegen"; +App::$strings["A channel is your identity on this network. It can represent a person, a blog, or a forum to name a few. Channels can make connections with other channels to share information with highly detailed permissions."] = "Ein Kanal ist Deine Identität in diesem Netzwerk. Er kann eine Person, ein Blog oder ein Forum repräsentieren, nur um ein paar Beispiele zu nennen. Kanäle können Verbindungen miteinander eingehen, um Informationen zu teilen, jeweils basierend auf sehr detaillierten Berechtigungseinstellungen."; +App::$strings["or import an existing channel from another location."] = "oder importiere einen bestehenden Kanal von einem anderen Server."; +App::$strings["sent you a private message"] = "hat Dir eine private Nachricht geschickt"; +App::$strings["added your channel"] = "hat deinen Kanal hinzugefügt"; +App::$strings["g A l F d"] = "l, d. F, G:i \\U\\h\\r"; +App::$strings["[today]"] = "[Heute]"; +App::$strings["posted an event"] = "hat einen Termin veröffentlicht"; +App::$strings["Invalid request identifier."] = "Ungültiger Anfrage-Identifikator."; +App::$strings["Discard"] = "Verwerfen"; +App::$strings["Mark all system notifications seen"] = "Markiere alle System-Benachrichtigungen als gesehen"; +App::$strings["Poke"] = "Anstupsen"; +App::$strings["Poke somebody"] = "Jemanden anstupsen"; +App::$strings["Poke/Prod"] = "Anstupsen/Knuffen"; +App::$strings["Poke, prod or do other things to somebody"] = "Jemanden anstupsen, knuffen oder sonstiges"; +App::$strings["Recipient"] = "Empfänger"; +App::$strings["Choose what you wish to do to recipient"] = "Wähle, was Du mit dem/r Empfänger/in tun willst"; +App::$strings["Make this post private"] = "Diesen Beitrag privat machen"; +App::$strings["Unable to find your hub."] = "Konnte Deinen Server nicht finden."; +App::$strings["Post successful."] = "Veröffentlichung erfolgreich."; +App::$strings["OpenID protocol error. No ID returned."] = "OpenID Protokollfehler. Keine ID zurückgegeben."; +App::$strings["Login failed."] = "Login fehlgeschlagen."; +App::$strings["Invalid profile identifier."] = "Ungültiger Profil-Identifikator"; +App::$strings["Profile Visibility Editor"] = "Profil-Sichtbarkeits-Editor"; +App::$strings["Profile"] = "Profil"; +App::$strings["Click on a contact to add or remove."] = "Klicke auf einen Kontakt, um ihn hinzuzufügen oder zu entfernen."; +App::$strings["Visible To"] = "Sichtbar für"; +App::$strings["This setting requires special processing and editing has been blocked."] = "Diese Einstellung erfordert eine besondere Verarbeitung und ist blockiert."; +App::$strings["Configuration Editor"] = "Konfigurationseditor"; +App::$strings["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."] = "Warnung: Einige Einstellungen können Deinen Kanal funktionsunfähig machen. Bitte verlasse diese Seite, es sei denn Du bist vertraut damit, wie dieses Feature korrekt verwendet wird."; +App::$strings["Fetching URL returns error: %1\$s"] = "Abrufen der URL gab einen Fehler zurück: %1\$s"; +App::$strings["Version %s"] = "Version %s"; +App::$strings["Installed plugins/addons/apps:"] = "Installierte Plugins/Addons/Apps"; +App::$strings["No installed plugins/addons/apps"] = "Keine installierten Plugins/Addons/Apps"; +App::$strings["This is a hub of \$Projectname - a global cooperative network of decentralized privacy enhanced websites."] = "Dieser Hub ist Teil von \$Projectname – ein globales, kooperatives Netzwerk aus dezentralen Websites, die Rücksicht auf Deine Privatsphäre nehmen."; +App::$strings["Tag: "] = "Schlagwort: "; +App::$strings["Last background fetch: "] = "Letzter Hintergrundabruf:"; +App::$strings["Current load average: "] = "Aktuelles Load Average:"; +App::$strings["Running at web location"] = "Erreichbar unter der Web-Adresse"; +App::$strings["Please visit hubzilla.org to learn more about \$Projectname."] = "Bitte besuchen Sie hubzilla.org, um mehr über \$Projectname zu erfahren."; +App::$strings["Bug reports and issues: please visit"] = "Probleme oder Fehler gefunden? Bitte besuche"; +App::$strings["\$projectname issues"] = "\$projectname-Bugtracker"; +App::$strings["Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com"] = "Vorschläge, Lob, usw.: E-Mail an 'redmatrix' at librelist - dot - com"; +App::$strings["Site Administrators"] = "Administratoren"; +App::$strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Wir haben ein Problem mit der OpenID festgestellt, mit der Du Dich anmelden wolltest. Bitte überprüfe sie noch einmal."; +App::$strings["The error message was:"] = "Die Fehlermeldung war:"; +App::$strings["Authentication failed."] = "Authentifizierung fehlgeschlagen."; +App::$strings["Remote Authentication"] = "Entfernte Authentifizierung"; +App::$strings["Enter your channel address (e.g. channel@example.com)"] = "Deine Kanal-Adresse (z. B. channel@example.com)"; +App::$strings["Authenticate"] = "Authentifizieren"; +App::$strings["Public Hubs"] = "Öffentliche Hubs"; +App::$strings["The listed hubs allow public registration for the \$Projectname network. All hubs in the network are interlinked so membership on any of them conveys membership in the network as a whole. Some hubs may require subscription or provide tiered service plans. The hub itself may provide additional details."] = "Die hier aufgeführten Hubs sind öffentlich und erlauben die Registrierung im \$Projectname Netzwerk. Alle Hubs dieses Netzwerks sind miteinander verbunden, so dass die Mitgliedschaft auf einem Hub die Verbindung zu beliebigen Seiten und Kanälen auf anderen Hubs ermöglicht. Es könnte sein, dass einige dieser Hubs kostenpflichtig sind oder abgestufte, je nach Umfang kostenpflichtige Mitgliedschaften anbieten. Auf den Seiten der einzelnen Hubs könnten jeweils nähere Informationen dazu stehen."; +App::$strings["Hub URL"] = "Hub-URL"; +App::$strings["Access Type"] = "Zugriffstyp"; +App::$strings["Registration Policy"] = "Registrierungsrichtlinien"; +App::$strings["Stats"] = "Statistiken"; +App::$strings["Software"] = "Software"; +App::$strings["Ratings"] = "Bewertungen"; +App::$strings["Rate"] = "Bewerten"; +App::$strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Leere den Browser Cache oder nutze Umschalten-Neu Laden, falls das neue Foto nicht sofort angezeigt wird."; +App::$strings["Upload Profile Photo"] = "Lade neues Profilfoto hoch"; +App::$strings["Block Name"] = "Block-Name"; +App::$strings["Blocks"] = "Blöcke"; +App::$strings["Block Title"] = "Titel des Blocks"; +App::$strings["Website:"] = "Webseite:"; +App::$strings["Remote Channel [%s] (not yet known on this site)"] = "Kanal [%s] (auf diesem Server noch unbekannt)"; +App::$strings["Rating (this information is public)"] = "Bewertung (öffentlich sichtbar)"; +App::$strings["Optionally explain your rating (this information is public)"] = "Optional kannst du deine Bewertung erklären (öffentlich sichtbar)"; +App::$strings["No ratings"] = "Keine Bewertungen"; +App::$strings["Rating: "] = "Bewertung: "; +App::$strings["Website: "] = "Webseite: "; +App::$strings["Description: "] = "Beschreibung: "; +App::$strings["Apps"] = "Apps"; +App::$strings["Title (optional)"] = "Titel (optional)"; +App::$strings["Edit Block"] = "Block bearbeiten"; +App::$strings["No channel."] = "Kein Kanal."; +App::$strings["Common connections"] = "Gemeinsame Verbindungen"; +App::$strings["No connections in common."] = "Keine gemeinsamen Verbindungen."; App::$strings["Select a bookmark folder"] = "Lesezeichenordner wählen"; App::$strings["Save Bookmark"] = "Lesezeichen speichern"; App::$strings["URL of bookmark"] = "URL des Lesezeichens"; @@ -1069,7 +1121,7 @@ App::$strings["no"] = "nein"; App::$strings["yes"] = "ja"; App::$strings["Membership on this site is by invitation only."] = "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich."; App::$strings["Register"] = "Registrieren"; -App::$strings["Proceed to create your first channel"] = "Fortfahren und Deinen ersten Kanal anlegen"; +App::$strings["This site may require email verification after submitting this form. If you are returned to a login page, please check your email for instructions."] = "Diese Seite verlangt möglicherweise eine Emailbestätigung nach dem Ansenden des Formulars. Wenn Du auf eine Login-Seite zurückgeleitet wirst, prüfe bitte auf neue Mail mit entsprechenden Hinweisen."; App::$strings["Please login."] = "Bitte melde dich an."; App::$strings["Account removals are not allowed within 48 hours of changing the account password."] = "Das Löschen von Konten innerhalb 48 Stunden nachdem deren Passwort geändert wurde ist nicht erlaubt."; App::$strings["Remove This Account"] = "Dieses Konto löschen"; @@ -1086,17 +1138,23 @@ App::$strings["This channel will be completely removed from the network. "] = "D App::$strings["Remove this channel and all its clones from the network"] = "Lösche diesen Kanal und all seine Klone aus dem Netzwerk"; App::$strings["By default only the instance of the channel located on this hub will be removed from the network"] = "Standardmäßig wird der Kanal nur auf diesem Server gelöscht, seine Klone verbleiben im Netzwerk"; App::$strings["Remove Channel"] = "Kanal löschen"; -App::$strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Wir haben ein Problem mit der OpenID festgestellt, mit der Du Dich anmelden wolltest. Bitte überprüfe sie noch einmal."; -App::$strings["The error message was:"] = "Die Fehlermeldung war:"; -App::$strings["Authentication failed."] = "Authentifizierung fehlgeschlagen."; -App::$strings["Remote Authentication"] = "Entfernte Authentifizierung"; -App::$strings["Enter your channel address (e.g. channel@example.com)"] = "Deine Kanal-Adresse (z. B. channel@example.com)"; -App::$strings["Authenticate"] = "Authentifizieren"; +App::$strings["Export Channel"] = "Kanal exportieren"; +App::$strings["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."] = "Exportiert die grundlegenden Kanal-Informationen in eine kleine Datei. Diese stellt eine Sicherung Deiner Verbindungen, Berechtigungen, Profile und Basisdaten bereit, die für den Import auf einem anderen Hub verwendet werden kann, aber nicht die Beiträge Deines Kanals enthält."; +App::$strings["Export Content"] = "Kanal und Inhalte exportieren"; +App::$strings["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."] = "Exportiert Deine Kanal-Informationen sowie alle zugehörigen Inhalte in eine JSON-Sicherungsdatei. Die sichert alle Verbindungen, Berechtigungen, Profildaten und Deine Beiträge aus mehreren Monaten. Diese Datei kann SEHR groß werden! Bitte habe ein wenig Geduld – es kann mehrere Minuten dauern, bis der Download startet."; +App::$strings["Export your posts from a given year."] = "Exportiert die Beiträge des angegebenen Jahres."; +App::$strings["You may also export your posts and conversations for a particular year or month. Adjust the date in your browser location bar to select other dates. If the export fails (possibly due to memory exhaustion on your server hub), please try again selecting a more limited date range."] = "Du kannst auch die Beiträge und Konversationen eines bestimmten Jahres oder Monats exportieren. Ändere das Datum in der Adresszeile Deines Browsers, um andere Zeiträume zu wählen. Falls der Export fehlschlägt (vermutlich, weil auf diesem Hub nicht genügend Speicher zur Verfügung steht), versuche es noch einmal mit einer kleineren Zeitspanne."; +App::$strings["To select all posts for a given year, such as this year, visit %2\$s"] = "Um alle Beiträge eines bestimmten Jahres, zum Beispiel dieses Jahres, auszuwählen, klicke %2\$s."; +App::$strings["To select all posts for a given month, such as January of this year, visit %2\$s"] = "Um alle Beiträge eines bestimmten Monats auszuwählen, zum Beispiel vom Januar diesen Jahres, klicke %2\$s."; +App::$strings["These content files may be imported or restored by visiting %2\$s on any site containing your channel. For best results please import or restore these in date order (oldest first)."] = "Diese Inhalts-Sicherungen können wiederhergestellt werden, indem Du %2\$s auf jeglichem Hub besuchst, der diesen Kanal enthält. Das funktioniert am besten, wenn Du dabei die zeitliche Reihenfolge einhältst, also die Sicherungen für den ältesten Zeitraum zuerst importierst."; App::$strings["Items tagged with: %s"] = "Beiträge mit Schlagwort: %s"; App::$strings["Search results for: %s"] = "Suchergebnisse für: %s"; App::$strings["No service class restrictions found."] = "Keine Dienstklassenbeschränkungen gefunden."; App::$strings["Name is required"] = "Name ist erforderlich"; App::$strings["Key and Secret are required"] = "Schlüssel und Geheimnis werden benötigt"; +App::$strings["This channel is limited to %d tokens"] = "Dieser Kanal ist auf %d Token begrenzt"; +App::$strings["Name and Password are required."] = "Name und Passwort sind erforderlich."; +App::$strings["Token saved."] = "Token gespeichert."; App::$strings["Not valid email."] = "Keine gültige E-Mail Adresse."; App::$strings["Protected email address. Cannot change to that email."] = "Geschützte E-Mail Adresse. Diese kann nicht verändert werden."; App::$strings["System failure storing new email. Please try again."] = "Systemfehler während des Speicherns der neuen Mail. Bitte versuche es noch einmal."; @@ -1129,6 +1187,12 @@ App::$strings["Confirm New Password"] = "Bestätige das neue Passwort"; App::$strings["Leave password fields blank unless changing"] = "Lasse die Passwort-Felder leer, außer Du möchtest das Passwort ändern"; App::$strings["Email Address:"] = "Email Adresse:"; App::$strings["Remove this account including all its channels"] = "Dieses Konto inklusive all seiner Kanäle löschen"; +App::$strings["Use this form to create temporary access identifiers to share things with non-members. These identities may be used in Access Control Lists and visitors may login using these credentials to access the private content."] = "Mit diesem Formular kannst Du temporäre Zugangs-IDs anlegen, um Inhalte mit Nicht-Mitgliedern zu teilen. Die IDs können in Berechtigungslisten (ACLs) verwendet werden, und Besucher können sich damit einloggen, um auf private Inhalte zuzugreifen."; +App::$strings["You may also provide dropbox style access links to friends and associates by adding the Login Password to any specific site URL as shown. Examples:"] = "Du kannst auch Dropbox-ähnliche Zugriffslinks an Andere weitergeben, indem du das Login-Passwort an eine entsprechende URL anhängst wie nachfolgend gezeigt. Beispiele:"; +App::$strings["Guest Access Tokens"] = "Gastzugangstoken"; +App::$strings["Login Name"] = "Anmeldename"; +App::$strings["Login Password"] = "Anmeldepasswort"; +App::$strings["Expires (yyyy-mm-dd)"] = "Läuft ab (jjjj-mm-tt)"; App::$strings["Additional Features"] = "Zusätzliche Funktionen"; App::$strings["Connector Settings"] = "Connector-Einstellungen"; App::$strings["No special theme for mobile devices"] = "Keine spezielle Theme für mobile Geräte"; @@ -1291,7 +1355,6 @@ App::$strings["GD graphics PHP module"] = "GD-Grafik-PHP-Modul"; App::$strings["OpenSSL PHP module"] = "OpenSSL-PHP-Modul"; App::$strings["mysqli or postgres PHP module"] = "mysqli oder postgres PHP-Modul"; App::$strings["mb_string PHP module"] = "mb_string-PHP-Modul"; -App::$strings["mcrypt PHP module"] = "mcrypt-PHP-Modul"; App::$strings["xml PHP module"] = "xml-PHP-Modul"; App::$strings["Apache mod_rewrite module"] = "Apache-mod_rewrite-Modul"; App::$strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Fehler: Das Apache-Modul mod-rewrite wird benötigt, ist aber nicht installiert."; @@ -1302,7 +1365,6 @@ App::$strings["Error: GD graphics PHP module with JPEG support required but not App::$strings["Error: openssl PHP module required but not installed."] = "Fehler: Das PHP-Modul openssl wird benötigt, ist aber nicht installiert."; App::$strings["Error: mysqli or postgres PHP module required but neither are installed."] = "Fehler: Das mysqli oder postgres PHP-Modul ist erforderlich, aber keines von beiden ist installiert."; App::$strings["Error: mb_string PHP module required but not installed."] = "Fehler: Das PHP-Modul mb_string wird benötigt, ist aber nicht installiert."; -App::$strings["Error: mcrypt PHP module required but not installed."] = "Fehler: Das PHP-Modul mcrypt wird benötigt, ist aber nicht installiert."; App::$strings["Error: xml PHP module required for DAV but not installed."] = "Fehler: Das xml-PHP-Modul wird für DAV benötigt, ist aber nicht installiert."; App::$strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "Der Installations-Assistent muss in der Lage sein, die Datei \".htconfig.php\" im Stammverzeichnis des Web-Servers anzulegen, ist er aber nicht."; App::$strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "Meist liegt das daran, dass der Nutzer, unter dem der Web-Server läuft, keine Schreibrechte in dem Verzeichnis hat – selbst wenn Du selbst das darfst."; @@ -1314,7 +1376,7 @@ App::$strings["In order to store these compiled templates, the web server needs App::$strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Bitte stelle sicher, dass der Nutzer, unter dem der Web-Server läuft (z.B. www-data), Schreibzugriff auf dieses Verzeichnis hat."; App::$strings["Note: as a security measure, you should give the web server write access to %s only--not the template files (.tpl) that it contains."] = "Hinweis: Aus Sicherheitsgründen sollte der Web-Server nur auf %s Schreibrechte haben, nicht auf die Template-Dateien (.tpl), die das Verzeichnis enthält."; App::$strings["%s is writable"] = "%s ist beschreibbar"; -App::$strings["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"] = "\$Projectname benutzt das Verzeichnis store, um hochgeladene Dateien zu speichern. Der Webserver benötigt Schreibrechte für dieses Verzeichnis direkt unterhalb des Red-Stammverzeichnisses"; +App::$strings["This software 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"] = "Diese Software benutzt das Verzeichnis store, um hochgeladene Dateien zu speichern. Der Web-Server benötigt Schreibrechte für dieses Verzeichnis direkt unterhalb des Hubzilla-Stammverzeichnisses"; App::$strings["store is writable"] = "store ist schreibbar"; App::$strings["SSL certificate cannot be validated. Fix certificate or disable https access to this site."] = "Das SSL-Zertifikat konnte nicht validiert werden. Korrigiere das Zertifikat oder deaktiviere den HTTPS-Zugriff auf diesen Server."; App::$strings["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!"] = "Wenn Du via HTTPS auf Deinen Server zugreifen möchtest, also Verbindungen über den Port 443 möglich sein sollen, ist ein SSL-Zertifikat einer Zertifizierungsstelle (CA) notwendig, das von den Browsern ohne Sicherheitsabfrage akzeptiert wird. Die Verwendung eines selbst signierten Zertifikates ist nicht möglich."; @@ -1322,6 +1384,7 @@ App::$strings["This restriction is incorporated because public posts from you ma App::$strings["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."] = "Wenn Dein Zertifikat nicht von jedem Browser akzeptiert wird, erhalten die Mitglieder anderer \$Projectname-Hubs (die mit korrekten Zertifikaten ausgestattet sind) Sicherheits-Warnmeldungen, obwohl sie gar nicht direkt auf Deinem Server unterwegs sind (zum Beispiel, wenn ein Bild aus einem Deiner Beiträge angezeigt wird)."; App::$strings["This can cause usability issues elsewhere (not just on your own site) so we must insist on this requirement."] = "Dies kann Probleme für andere Nutzer (nicht nur auf Deinem eigenen Server) verursachen, so dass wir auf dieser Forderung bestehen müssen."; App::$strings["Providers are available that issue free certificates which are browser-valid."] = "Es gibt einige Zertifizierungsstellen (CAs), bei denen solche Zertifikate kostenlos zu haben sind."; +App::$strings["If you are confident that the certificate is valid and signed by a trusted authority, check to see if you have failed to install an intermediate cert. These are not normally required by browsers, but are required for server-to-server communications."] = "Wenn Du sicher bist, dass das Zertifikat gültig und von einer vertrauenswürdigen Zertifizierungsstelle signiert ist, prüfe auf ggf. noch zu installierende Zwischenzertifikate (intermediate). Diese werden nicht unbedingt von Browsern benötigt, aber sehr wohl für die Kommunikation zwischen Servern."; App::$strings["SSL certificate validation"] = "SSL Zertifikatverifizierung"; App::$strings["Url rewrite in .htaccess is not working. Check your server configuration.Test: "] = "Das Umschreiben von URLs (rewrite) per .htaccess funktioniert nicht. Bitte prüfe die Server-Konfiguration. Test:"; App::$strings["Url rewrite is working"] = "Url rewrite funktioniert"; @@ -1333,19 +1396,20 @@ App::$strings["Files: shared with me"] = "Dateien, die mit mir geteilt wurden"; App::$strings["NEW"] = "NEU"; App::$strings["Remove all files"] = "Alle Dateien löschen"; App::$strings["Remove this file"] = "Diese Datei löschen"; -App::$strings["Version %s"] = "Version %s"; -App::$strings["Installed plugins/addons/apps:"] = "Installierte Plugins/Addons/Apps"; -App::$strings["No installed plugins/addons/apps"] = "Keine installierten Plugins/Addons/Apps"; -App::$strings["This is a hub of \$Projectname - a global cooperative network of decentralized privacy enhanced websites."] = "Dieser Hub ist Teil von \$Projectname – ein globales, kooperatives Netzwerk aus dezentralen Websites, die Rücksicht auf Deine Privatsphäre nehmen."; -App::$strings["Tag: "] = "Schlagwort: "; -App::$strings["Last background fetch: "] = "Letzter Hintergrundabruf:"; -App::$strings["Current load average: "] = "Aktuelles Load Average:"; -App::$strings["Running at web location"] = "Erreichbar unter der Web-Adresse"; -App::$strings["Please visit hubzilla.org to learn more about \$Projectname."] = "Bitte besuchen Sie hubzilla.org, um mehr über \$Projectname zu erfahren."; -App::$strings["Bug reports and issues: please visit"] = "Probleme oder Fehler gefunden? Bitte besuche"; -App::$strings["\$projectname issues"] = "\$projectname-Bugtracker"; -App::$strings["Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com"] = "Vorschläge, Lob, usw.: E-Mail an 'redmatrix' at librelist - dot - com"; -App::$strings["Site Administrators"] = "Administratoren"; +App::$strings["Thing updated"] = "Sache aktualisiert"; +App::$strings["Object store: failed"] = "Speichern des Objekts fehlgeschlagen"; +App::$strings["Thing added"] = "Sache hinzugefügt"; +App::$strings["OBJ: %1\$s %2\$s %3\$s"] = "OBJ: %1\$s %2\$s %3\$s"; +App::$strings["Show Thing"] = "Sache anzeigen"; +App::$strings["item not found."] = "Eintrag nicht gefunden"; +App::$strings["Edit Thing"] = "Sache bearbeiten"; +App::$strings["Select a profile"] = "Wähle ein Profil"; +App::$strings["Post an activity"] = "Aktivitätsnachricht senden"; +App::$strings["Only sends to viewers of the applicable profile"] = "Nur an Betrachter des ausgewählten Profils senden"; +App::$strings["Name of thing e.g. something"] = "Name der Sache, z. B. irgendwas"; +App::$strings["URL of thing (optional)"] = "URL der Sache (optional)"; +App::$strings["URL for photo of thing (optional)"] = "URL eines Fotos der Sache (optional)"; +App::$strings["Add Thing to your Profile"] = "Die Sache Deinem Profil hinzufügen"; App::$strings["Failed to create source. No channel selected."] = "Konnte die Quelle nicht anlegen. Kein Kanal ausgewählt."; App::$strings["Source created."] = "Quelle erstellt."; App::$strings["Source updated."] = "Quelle aktualisiert."; @@ -1373,60 +1437,38 @@ App::$strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s hat %2\$ss %3\$s App::$strings["Tag removed"] = "Schlagwort entfernt"; App::$strings["Remove Item Tag"] = "Schlagwort entfernen"; App::$strings["Select a tag to remove: "] = "Schlagwort zum Entfernen auswählen:"; -App::$strings["Thing updated"] = "Sache aktualisiert"; -App::$strings["Object store: failed"] = "Speichern des Objekts fehlgeschlagen"; -App::$strings["Thing added"] = "Sache hinzugefügt"; -App::$strings["OBJ: %1\$s %2\$s %3\$s"] = "OBJ: %1\$s %2\$s %3\$s"; -App::$strings["Show Thing"] = "Sache anzeigen"; -App::$strings["item not found."] = "Eintrag nicht gefunden"; -App::$strings["Edit Thing"] = "Sache bearbeiten"; -App::$strings["Select a profile"] = "Wähle ein Profil"; -App::$strings["Post an activity"] = "Aktivitätsnachricht senden"; -App::$strings["Only sends to viewers of the applicable profile"] = "Nur an Betrachter des ausgewählten Profils senden"; -App::$strings["Name of thing e.g. something"] = "Name der Sache, z. B. irgendwas"; -App::$strings["URL of thing (optional)"] = "URL der Sache (optional)"; -App::$strings["URL for photo of thing (optional)"] = "URL eines Fotos der Sache (optional)"; -App::$strings["Add Thing to your Profile"] = "Die Sache Deinem Profil hinzufügen"; -App::$strings["Export Channel"] = "Kanal exportieren"; -App::$strings["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."] = "Exportiert die grundlegenden Kanal-Informationen in eine kleine Datei. Diese stellt eine Sicherung Deiner Verbindungen, Berechtigungen, Profile und Basisdaten bereit, die für den Import auf einem anderen Hub verwendet werden kann, aber nicht die Beiträge Deines Kanals enthält."; -App::$strings["Export Content"] = "Kanal und Inhalte exportieren"; -App::$strings["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."] = "Exportiert Deine Kanal-Informationen sowie alle zugehörigen Inhalte in eine JSON-Sicherungsdatei. Die sichert alle Verbindungen, Berechtigungen, Profildaten und Deine Beiträge aus mehreren Monaten. Diese Datei kann SEHR groß werden! Bitte habe ein wenig Geduld – es kann mehrere Minuten dauern, bis der Download startet."; -App::$strings["Export your posts from a given year."] = "Exportiert die Beiträge des angegebenen Jahres."; -App::$strings["You may also export your posts and conversations for a particular year or month. Adjust the date in your browser location bar to select other dates. If the export fails (possibly due to memory exhaustion on your server hub), please try again selecting a more limited date range."] = "Du kannst auch die Beiträge und Konversationen eines bestimmten Jahres oder Monats exportieren. Ändere das Datum in der Adresszeile Deines Browsers, um andere Zeiträume zu wählen. Falls der Export fehlschlägt (vermutlich, weil auf diesem Hub nicht genügend Speicher zur Verfügung steht), versuche es noch einmal mit einer kleineren Zeitspanne."; -App::$strings["To select all posts for a given year, such as this year, visit %2\$s"] = "Um alle Beiträge eines bestimmten Jahres, zum Beispiel dieses Jahres, auszuwählen, klicke %2\$s."; -App::$strings["To select all posts for a given month, such as January of this year, visit %2\$s"] = "Um alle Beiträge eines bestimmten Monats auszuwählen, zum Beispiel vom Januar diesen Jahres, klicke %2\$s."; -App::$strings["These content files may be imported or restored by visiting %2\$s on any site containing your channel. For best results please import or restore these in date order (oldest first)."] = "Diese Inhalts-Sicherungen können wiederhergestellt werden, indem Du %2\$s auf jeglichem Hub besuchst, der diesen Kanal enthält. Das funktioniert am besten, wenn Du dabei die zeitliche Reihenfolge einhältst, also die Sicherungen für den ältesten Zeitraum zuerst importierst."; -App::$strings["No connections."] = "Keine Verbindungen."; -App::$strings["Visit %s's profile [%s]"] = "%ss Profil [%s] besuchen"; -App::$strings["View Connections"] = "Verbindungen anzeigen"; -App::$strings["Source of Item"] = "Quelle des Elements"; App::$strings["Webpages"] = "Webseiten"; App::$strings["Actions"] = "Aktionen"; App::$strings["Page Link"] = "Seiten-Link"; App::$strings["Page Title"] = "Seitentitel"; +App::$strings["Not found"] = "Nicht gefunden"; +App::$strings["Wiki"] = "Wiki"; +App::$strings["Sandbox"] = "Sandbox"; +App::$strings["\"# Wiki Sandbox\\n\\nContent you **edit** and **preview** here *will not be saved*.\""] = "\"# Wiki Sandkasten\\n\\nInhalte, die Du hier **veränderst** und **als Vorschau anzeigst**, *werden nicht gespeichert*.\""; +App::$strings["Revision Comparison"] = "Revisionsvergleich"; +App::$strings["Revert"] = "Rückgängig machen"; +App::$strings["Enter the name of your new wiki:"] = "Gib einen Namen für Dein neues Wiki ein:"; +App::$strings["Enter the name of the new page:"] = "Geben Sie den Namen der neuen Seite ein:"; +App::$strings["Enter the new name:"] = "Geben Sie den neuen Namen ein:"; +App::$strings["Embed image from photo albums"] = "Bild aus Fotoalben einbetten"; +App::$strings["Embed an image from your albums"] = "Betten Sie ein Bild aus Ihren Alben ein"; +App::$strings["OK"] = "Ok"; +App::$strings["Choose images to embed"] = "Wählen Sie Bilder zum Einbetten aus"; +App::$strings["Choose an album"] = "Wählen Sie ein Album aus"; +App::$strings["Choose a different album..."] = "Wählen Sie ein anderes Album aus..."; +App::$strings["Error getting album list"] = "Fehler beim Holen der Albenliste"; +App::$strings["Error getting photo link"] = "Fehler beim Holen des Fotolinks"; +App::$strings["Error getting album"] = "Fehler beim Holen des Albums"; +App::$strings["No connections."] = "Keine Verbindungen."; +App::$strings["Visit %s's profile [%s]"] = "%ss Profil [%s] besuchen"; +App::$strings["View Connections"] = "Verbindungen anzeigen"; +App::$strings["Source of Item"] = "Quelle des Elements"; +App::$strings["Authorize application connection"] = "Zugriff für die Anwendung autorisieren"; +App::$strings["Return to your app and insert this Securty Code:"] = "Trage folgenden Sicherheitscode in der Anwendung ein:"; +App::$strings["Please login to continue."] = "Zum Weitermachen, bitte einloggen."; +App::$strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Möchtest Du dieser Anwendung erlauben, Deine Nachrichten und Kontakte abzurufen und/oder neue Nachrichten für Dich zu erstellen?"; App::$strings["Xchan Lookup"] = "Xchan-Suche"; App::$strings["Lookup xchan beginning with (or webbie): "] = "Nach xchans oder Webbies (Kanal-Adressen) suchen, die wie folgt beginnen:"; -App::$strings["Site Admin"] = "Hub-Administration"; -App::$strings["Bug Report"] = "Fehler-Rückmeldung"; -App::$strings["View Bookmarks"] = "Lesezeichen ansehen"; -App::$strings["My Chatrooms"] = "Meine Chaträume"; -App::$strings["Firefox Share"] = "Teilen-Knopf für Firefox"; -App::$strings["Remote Diagnostics"] = "Ferndiagnose"; -App::$strings["Suggest Channels"] = "Kanäle vorschlagen"; -App::$strings["Login"] = "Anmelden"; -App::$strings["Grid"] = "Grid"; -App::$strings["Channel Home"] = "Mein Kanal"; -App::$strings["Events"] = "Termine"; -App::$strings["Directory"] = "Verzeichnis"; -App::$strings["Mail"] = "Mail"; -App::$strings["Chat"] = "Chat"; -App::$strings["Probe"] = "Testen"; -App::$strings["Suggest"] = "Empfehlen"; -App::$strings["Random Channel"] = "Zufälliger Kanal"; -App::$strings["Invite"] = "Einladen"; -App::$strings["Features"] = "Funktionen"; -App::$strings["Post"] = "Beitrag schreiben"; -App::$strings["Purchase"] = "Kaufen"; App::$strings["Missing room name"] = "Der Chatraum hat keinen Namen"; App::$strings["Duplicate room name"] = "Name des Chatraums bereits vergeben"; App::$strings["Invalid room specifier."] = "Ungültiger Raumbezeichner."; @@ -1474,6 +1516,27 @@ App::$strings["Please visit %s to approve or reject the suggestion."] = "Bitte b App::$strings["[Hubzilla:Notify]"] = "[Hubzilla:Benachrichtigung]"; App::$strings["created a new post"] = "Neuer Beitrag wurde erzeugt"; App::$strings["commented on %s's post"] = "hat %s's Beitrag kommentiert"; +App::$strings["Site Admin"] = "Hub-Administration"; +App::$strings["Bug Report"] = "Fehler-Rückmeldung"; +App::$strings["View Bookmarks"] = "Lesezeichen ansehen"; +App::$strings["My Chatrooms"] = "Meine Chaträume"; +App::$strings["Firefox Share"] = "Teilen-Knopf für Firefox"; +App::$strings["Remote Diagnostics"] = "Ferndiagnose"; +App::$strings["Suggest Channels"] = "Kanäle vorschlagen"; +App::$strings["Login"] = "Anmelden"; +App::$strings["Grid"] = "Grid"; +App::$strings["Channel Home"] = "Mein Kanal"; +App::$strings["Events"] = "Termine"; +App::$strings["Directory"] = "Verzeichnis"; +App::$strings["Mail"] = "Mail"; +App::$strings["Chat"] = "Chat"; +App::$strings["Probe"] = "Testen"; +App::$strings["Suggest"] = "Empfehlen"; +App::$strings["Random Channel"] = "Zufälliger Kanal"; +App::$strings["Invite"] = "Einladen"; +App::$strings["Features"] = "Funktionen"; +App::$strings["Post"] = "Beitrag schreiben"; +App::$strings["Purchase"] = "Kaufen"; App::$strings["Private Message"] = "Private Nachricht"; App::$strings["Select"] = "Auswählen"; App::$strings["Save to Folder"] = "In Ordner speichern"; @@ -1510,7 +1573,7 @@ App::$strings["Expires: %s"] = "Verfällt: %s"; App::$strings["Save Bookmarks"] = "Favoriten speichern"; App::$strings["Add to Calendar"] = "Zum Kalender hinzufügen"; App::$strings["Mark all seen"] = "Alle als gelesen markieren"; -App::$strings["[+] show all"] = "[+] Alle anzeigen"; +App::$strings["%s show all"] = "%s mehr anzeigen"; App::$strings["Bold"] = "Fett"; App::$strings["Italic"] = "Kursiv"; App::$strings["Underline"] = "Unterstrichen"; @@ -1519,9 +1582,93 @@ App::$strings["Code"] = "Code"; App::$strings["Image"] = "Bild"; App::$strings["Insert Link"] = "Link einfügen"; App::$strings["Video"] = "Video"; +App::$strings["Visible to your default audience"] = "Standard-Sichtbarkeit gemäß Kanaleinstellungen"; +App::$strings["Only me"] = "Nur ich"; +App::$strings["Public"] = "Öffentlich"; +App::$strings["Anybody in the \$Projectname network"] = "Jeder innerhalb des \$Projectname Netzwerks"; +App::$strings["Any account on %s"] = "Jedes Nutzerkonto auf %s"; +App::$strings["Any of my connections"] = "Alle meine Verbindungen"; +App::$strings["Only connections I specifically allow"] = "Nur Verbindungen, denen ich es explizit erlaube"; +App::$strings["Anybody authenticated (could include visitors from other networks)"] = "Jeder, der angemeldet ist (kann Besucher anderer Netzwerke beinhalten)"; +App::$strings["Any connections including those who haven't yet been approved"] = "Alle Verbindungen einschließlich der noch nicht bestätigten"; +App::$strings["This is your default setting for the audience of your normal stream, and posts."] = "Dies ist Deine Voreinstellung für die Sichtbarkeit Deiner normalen Beiträge (Stream)."; +App::$strings["This is your default setting for who can view your default channel profile"] = "Dies ist Deine Voreinstellung für die Sichtbarkeit Deines Standard-Kanalprofils."; +App::$strings["This is your default setting for who can view your connections"] = "Dies ist Deine Voreinstellung für die Sichtbarkeit Deiner Verbindungen."; +App::$strings["This is your default setting for who can view your file storage and photos"] = "Dies ist Deine Voreinstellung für die Sichtbarkeit Deiner Dateien und Fotos."; +App::$strings["This is your default setting for the audience of your webpages"] = "Dies ist Deine Voreinstellung für die Sichtbarkeit Deiner Webseiten."; App::$strings["No username found in import file."] = "Kein Benutzername in der Importdatei gefunden."; App::$strings["Unable to create a unique channel address. Import failed."] = "Es war nicht möglich, eine eindeutige Kanal-Adresse zu erzeugen. Der Import ist fehlgeschlagen."; App::$strings["Cannot locate DNS info for database server '%s'"] = "Kann die DNS-Informationen für den Datenbank-Server '%s' nicht finden"; +App::$strings["Image exceeds website size limit of %lu bytes"] = "Bild überschreitet das Webseitenlimit von %lu Bytes"; +App::$strings["Image file is empty."] = "Bilddatei ist leer."; +App::$strings["Photo storage failed."] = "Fotospeicherung fehlgeschlagen."; +App::$strings["a new photo"] = "ein neues Foto"; +App::$strings["__ctx:photo_upload__ %1\$s posted %2\$s to %3\$s"] = "%1\$s hat %2\$s auf %3\$s veröffentlicht"; +App::$strings["Photo Albums"] = "Fotoalben"; +App::$strings["Upload New Photos"] = "Neue Fotos hochladen"; +App::$strings["Logout"] = "Abmelden"; +App::$strings["End this session"] = "Beende diese Sitzung"; +App::$strings["Home"] = "Home"; +App::$strings["Your posts and conversations"] = "Deine Beiträge und Unterhaltungen"; +App::$strings["Your profile page"] = "Deine Profilseite"; +App::$strings["Manage/Edit profiles"] = "Profile verwalten"; +App::$strings["Edit Profile"] = "Profile bearbeiten"; +App::$strings["Edit your profile"] = "Profil bearbeiten"; +App::$strings["Your photos"] = "Deine Bilder"; +App::$strings["Your files"] = "Deine Dateien"; +App::$strings["Your chatrooms"] = "Deine Chaträume"; +App::$strings["Bookmarks"] = "Lesezeichen"; +App::$strings["Your bookmarks"] = "Deine Lesezeichen"; +App::$strings["Your webpages"] = "Deine Webseiten"; +App::$strings["Your wiki"] = "Dein Wiki"; +App::$strings["Sign in"] = "Anmelden"; +App::$strings["%s - click to logout"] = "%s - Klick zum Abmelden"; +App::$strings["Remote authentication"] = "Über Konto auf anderem Server einloggen"; +App::$strings["Click to authenticate to your home hub"] = "Klicke, um Dich über Deinen Heimat-Server zu authentifizieren"; +App::$strings["Home Page"] = "Homepage"; +App::$strings["Create an account"] = "Erzeuge ein Konto"; +App::$strings["Help and documentation"] = "Hilfe und Dokumentation"; +App::$strings["Applications, utilities, links, games"] = "Anwendungen (Apps), Zubehör, Links, Spiele"; +App::$strings["Search site @name, #tag, ?docs, content"] = "Hub durchsuchen: @Name. #Schlagwort, ?Dokumentation, Inhalt"; +App::$strings["Channel Directory"] = "Kanal-Verzeichnis"; +App::$strings["Your grid"] = "Dein Grid"; +App::$strings["Mark all grid notifications seen"] = "Alle Grid-Benachrichtigungen als angesehen markieren"; +App::$strings["Channel home"] = "Mein Kanal"; +App::$strings["Mark all channel notifications seen"] = "Markiere alle Kanal-Benachrichtigungen als angesehen"; +App::$strings["Notices"] = "Benachrichtigungen"; +App::$strings["Notifications"] = "Benachrichtigungen"; +App::$strings["See all notifications"] = "Alle Benachrichtigungen ansehen"; +App::$strings["Private mail"] = "Persönliche Mail"; +App::$strings["See all private messages"] = "Alle persönlichen Nachrichten ansehen"; +App::$strings["Mark all private messages seen"] = "Markiere alle persönlichen Nachrichten als gesehen"; +App::$strings["Inbox"] = "Eingang"; +App::$strings["Outbox"] = "Ausgang"; +App::$strings["New Message"] = "Neue Nachricht"; +App::$strings["Event Calendar"] = "Terminkalender"; +App::$strings["See all events"] = "Alle Termine ansehen"; +App::$strings["Mark all events seen"] = "Markiere alle Termine als gesehen"; +App::$strings["Manage Your Channels"] = "Verwalte Deine Kanäle"; +App::$strings["Account/Channel Settings"] = "Konto-/Kanal-Einstellungen"; +App::$strings["Admin"] = "Administration"; +App::$strings["Site Setup and Configuration"] = "Seiten-Einrichtung und -Konfiguration"; +App::$strings["Loading..."] = "Lädt ..."; +App::$strings["@name, #tag, ?doc, content"] = "@Name, #Schlagwort, ?Dokumentation, Inhalt"; +App::$strings["Please wait..."] = "Bitte warten..."; +App::$strings["view full size"] = "In Vollbildansicht anschauen"; +App::$strings["Administrator"] = "Administrator"; +App::$strings["No Subject"] = "Kein Betreff"; +App::$strings["Friendica"] = "Friendica"; +App::$strings["OStatus"] = "OStatus"; +App::$strings["GNU-Social"] = "GNU-Social"; +App::$strings["RSS/Atom"] = "RSS/Atom"; +App::$strings["Diaspora"] = "Diaspora"; +App::$strings["Facebook"] = "Facebook"; +App::$strings["Zot"] = "Zot!"; +App::$strings["LinkedIn"] = "LinkedIn"; +App::$strings["XMPP/IM"] = "XMPP/IM"; +App::$strings["MySpace"] = "MySpace"; +App::$strings["New Page"] = "Neue Seite"; +App::$strings["Title"] = "Titel"; App::$strings["Categories"] = "Kategorien"; App::$strings["Tags"] = "Schlagwörter"; App::$strings["Keywords"] = "Schlüsselwörter"; @@ -1531,34 +1678,196 @@ App::$strings["want"] = "will"; App::$strings["wants"] = "will"; App::$strings["likes"] = "gefällt"; App::$strings["dislikes"] = "missfällt"; -App::$strings["l F d, Y \\@ g:i A"] = "l, d. F Y, H:i"; -App::$strings["Starts:"] = "Beginnt:"; -App::$strings["Finishes:"] = "Endet:"; -App::$strings["This event has been added to your calendar."] = "Dieser Termin wurde zu Deinem Kalender hinzugefügt"; -App::$strings["Not specified"] = "Keine Angabe"; -App::$strings["Needs Action"] = "Aktion erforderlich"; -App::$strings["Completed"] = "Abgeschlossen"; -App::$strings["In Process"] = "In Bearbeitung"; -App::$strings["Cancelled"] = "gestrichen"; +App::$strings["Unable to obtain identity information from database"] = "Kann keine Identitäts-Informationen aus Datenbank beziehen"; +App::$strings["Empty name"] = "Namensfeld leer"; +App::$strings["Name too long"] = "Name ist zu lang"; +App::$strings["No account identifier"] = "Keine Account-Kennung"; +App::$strings["Nickname is required."] = "Spitzname ist erforderlich."; +App::$strings["Reserved nickname. Please choose another."] = "Reservierter Kurzname. Bitte wähle einen anderen."; +App::$strings["Nickname has unsupported characters or is already being used on this site."] = "Der Spitzname enthält nicht-unterstütze Zeichen oder wird bereits auf dieser Seite genutzt."; +App::$strings["Unable to retrieve created identity"] = "Kann die erstellte Identität nicht empfangen"; +App::$strings["Default Profile"] = "Standard-Profil"; +App::$strings["Requested channel is not available."] = "Angeforderte Kanal nicht verfügbar."; +App::$strings["Create New Profile"] = "Neues Profil erstellen"; +App::$strings["Visible to everybody"] = "Für jeden sichtbar"; +App::$strings["Gender:"] = "Geschlecht:"; +App::$strings["Status:"] = "Status:"; +App::$strings["Homepage:"] = "Homepage:"; +App::$strings["Online Now"] = "gerade online"; +App::$strings["Like this channel"] = "Dieser Kanal gefällt mir"; +App::$strings["j F, Y"] = "j. F Y"; +App::$strings["j F"] = "j. F"; +App::$strings["Birthday:"] = "Geburtstag:"; +App::$strings["for %1\$d %2\$s"] = "seit %1\$d %2\$s"; +App::$strings["Sexual Preference:"] = "Sexuelle Orientierung:"; +App::$strings["Tags:"] = "Schlagworte:"; +App::$strings["Political Views:"] = "Politische Ansichten:"; +App::$strings["Religion:"] = "Religion:"; +App::$strings["Hobbies/Interests:"] = "Hobbys/Interessen:"; +App::$strings["Likes:"] = "Gefällt:"; +App::$strings["Dislikes:"] = "Gefällt nicht:"; +App::$strings["Contact information and Social Networks:"] = "Kontaktinformation und soziale Netzwerke:"; +App::$strings["My other channels:"] = "Meine anderen Kanäle:"; +App::$strings["Musical interests:"] = "Musikalische Interessen:"; +App::$strings["Books, literature:"] = "Bücher, Literatur:"; +App::$strings["Television:"] = "Fernsehen:"; +App::$strings["Film/dance/culture/entertainment:"] = "Film/Tanz/Kultur/Unterhaltung:"; +App::$strings["Love/Romance:"] = "Liebe/Romantik:"; +App::$strings["Work/employment:"] = "Arbeit/Anstellung:"; +App::$strings["School/education:"] = "Schule/Ausbildung:"; +App::$strings["Like this thing"] = "Gefällt mir"; +App::$strings["New window"] = "Neues Fenster"; +App::$strings["Open the selected location in a different window or browser tab"] = "Öffne die markierte Adresse in einem neuen Browserfenster oder Tab"; +App::$strings["User '%s' deleted"] = "Benutzer '%s' gelöscht"; +App::$strings["%1\$s is now connected with %2\$s"] = "%1\$s ist jetzt mit %2\$s verbunden"; +App::$strings["%1\$s poked %2\$s"] = "%1\$s stupste %2\$s an"; +App::$strings["poked"] = "stupste"; +App::$strings["View %s's profile @ %s"] = "%ss Profil auf %s ansehen"; +App::$strings["Categories:"] = "Kategorien:"; +App::$strings["Filed under:"] = "Gespeichert unter:"; +App::$strings["View in context"] = "Im Zusammenhang anschauen"; +App::$strings["remove"] = "lösche"; +App::$strings["Delete Selected Items"] = "Lösche die ausgewählten Elemente"; +App::$strings["View Source"] = "Quelle anzeigen"; +App::$strings["Follow Thread"] = "Unterhaltung folgen"; +App::$strings["Unfollow Thread"] = "Unterhaltung nicht mehr folgen"; +App::$strings["Activity/Posts"] = "Aktivitäten/Beiträge"; +App::$strings["Edit Connection"] = "Verbindung bearbeiten"; +App::$strings["Message"] = "Nachricht"; +App::$strings["%s likes this."] = "%s gefällt das."; +App::$strings["%s doesn't like this."] = "%s gefällt das nicht."; +App::$strings["%2\$d people like this."] = array( + 0 => "%2\$d Person gefällt das.", + 1 => "%2\$d Leuten gefällt das.", +); +App::$strings["%2\$d people don't like this."] = array( + 0 => "%2\$d Person gefällt das nicht.", + 1 => "%2\$d Leuten gefällt das nicht.", +); +App::$strings["and"] = "und"; +App::$strings[", and %d other people"] = array( + 0 => "", + 1 => ", und %d andere", +); +App::$strings["%s like this."] = "%s gefällt das."; +App::$strings["%s don't like this."] = "%s gefällt das nicht."; +App::$strings["Set your location"] = "Standort"; +App::$strings["Clear browser location"] = "Browser-Standort löschen"; +App::$strings["Tag term:"] = "Schlagwort:"; +App::$strings["Where are you right now?"] = "Wo bist Du jetzt grade?"; +App::$strings["Page link name"] = "Link zur Seite"; +App::$strings["Post as"] = "Veröffentlichen als"; +App::$strings["Toggle voting"] = "Umfragewerkzeug aktivieren"; +App::$strings["Categories (optional, comma-separated list)"] = "Kategorien (optional, kommagetrennte Liste)"; +App::$strings["Set publish date"] = "Veröffentlichungsdatum festlegen"; +App::$strings["Discover"] = "Entdecken"; +App::$strings["Imported public streams"] = "Importierte öffentliche Beiträge"; +App::$strings["Commented Order"] = "Neueste Kommentare"; +App::$strings["Sort by Comment Date"] = "Nach Kommentardatum sortiert"; +App::$strings["Posted Order"] = "Neueste Beiträge"; +App::$strings["Sort by Post Date"] = "Nach Beitragsdatum sortiert"; +App::$strings["Posts that mention or involve you"] = "Beiträge mit Beteiligung Deinerseits"; +App::$strings["Activity Stream - by date"] = "Activity Stream – nach Datum sortiert"; +App::$strings["Starred"] = "Markiert"; +App::$strings["Favourite Posts"] = "Markierte Beiträge"; +App::$strings["Spam"] = "Spam"; +App::$strings["Posts flagged as SPAM"] = "Nachrichten, die als SPAM markiert wurden"; +App::$strings["Status Messages and Posts"] = "Statusnachrichten und Beiträge"; +App::$strings["About"] = "Über"; +App::$strings["Profile Details"] = "Profil-Details"; +App::$strings["Files and Storage"] = "Dateien und Speicher"; +App::$strings["Chatrooms"] = "Chaträume"; +App::$strings["Saved Bookmarks"] = "Gespeicherte Lesezeichen"; +App::$strings["Manage Webpages"] = "Webseiten verwalten"; +App::$strings["__ctx:noun__ Attending"] = array( + 0 => "Zusage", + 1 => "Zusagen", +); +App::$strings["__ctx:noun__ Not Attending"] = array( + 0 => "Absage", + 1 => "Absagen", +); +App::$strings["__ctx:noun__ Undecided"] = array( + 0 => " Unentschlossen", + 1 => "Unentschlossene", +); +App::$strings["__ctx:noun__ Agree"] = array( + 0 => "Zustimmung", + 1 => "Zustimmungen", +); +App::$strings["__ctx:noun__ Disagree"] = array( + 0 => "Ablehnung", + 1 => "Ablehnungen", +); +App::$strings["__ctx:noun__ Abstain"] = array( + 0 => "Enthaltung", + 1 => "Enthaltungen", +); App::$strings["Cannot create a duplicate channel identifier on this system. Import failed."] = "Kann keinen doppelten Kanal-Identifikator auf diesem System erzeugen (Spitzname oder Hash schon belegt). Import fehlgeschlagen."; App::$strings["Channel clone failed. Import failed."] = "Klonen des Kanals fehlgeschlagen. Import fehlgeschlagen."; -App::$strings["(Unknown)"] = "(Unbekannt)"; -App::$strings["Visible to anybody on the internet."] = "Für jeden im Internet sichtbar."; -App::$strings["Visible to you only."] = "Nur für Dich sichtbar."; -App::$strings["Visible to anybody in this network."] = "Für jedes \$Projectname-Mitglied sichtbar."; -App::$strings["Visible to anybody authenticated."] = "Für jeden sichtbar, der angemeldet ist."; -App::$strings["Visible to anybody on %s."] = "Für jeden auf %s sichtbar."; -App::$strings["Visible to all connections."] = "Für alle Verbindungen sichtbar."; -App::$strings["Visible to approved connections."] = "Nur für akzeptierte Verbindungen sichtbar."; -App::$strings["Visible to specific connections."] = "Sichtbar für bestimmte Verbindungen."; -App::$strings["Privacy group is empty."] = "Gruppe ist leer."; -App::$strings["Privacy group: %s"] = "Gruppe: %s"; -App::$strings["Connection not found."] = "Die Verbindung wurde nicht gefunden."; -App::$strings["profile photo"] = "Profilfoto"; -App::$strings["No recipient provided."] = "Kein Empfänger angegeben"; -App::$strings["[no subject]"] = "[no subject]"; -App::$strings["Unable to determine sender."] = "Kann Absender nicht bestimmen."; -App::$strings["Stored post could not be verified."] = "Gespeicherter Beitrag konnten nicht überprüft werden."; +App::$strings["Frequently"] = "Häufig"; +App::$strings["Hourly"] = "Stündlich"; +App::$strings["Twice daily"] = "Zwei Mal am Tag"; +App::$strings["Daily"] = "Täglich"; +App::$strings["Weekly"] = "Wöchentlich"; +App::$strings["Monthly"] = "Monatlich"; +App::$strings["Currently Male"] = "Momentan männlich"; +App::$strings["Currently Female"] = "Momentan weiblich"; +App::$strings["Mostly Male"] = "Größtenteils männlich"; +App::$strings["Mostly Female"] = "Größtenteils weiblich"; +App::$strings["Transgender"] = "Transsexuell"; +App::$strings["Intersex"] = "Zwischengeschlechtlich"; +App::$strings["Transsexual"] = "Transsexuell"; +App::$strings["Hermaphrodite"] = "Zwitter"; +App::$strings["Neuter"] = "Geschlechtslos"; +App::$strings["Non-specific"] = "unklar"; +App::$strings["Undecided"] = "Unentschieden"; +App::$strings["Males"] = "Männer"; +App::$strings["Females"] = "Frauen"; +App::$strings["Gay"] = "Schwul"; +App::$strings["Lesbian"] = "Lesbisch"; +App::$strings["No Preference"] = "Keine Bevorzugung"; +App::$strings["Bisexual"] = "Bisexuell"; +App::$strings["Autosexual"] = "Autosexuell"; +App::$strings["Abstinent"] = "Enthaltsam"; +App::$strings["Virgin"] = "Jungfräulich"; +App::$strings["Deviant"] = "Abweichend"; +App::$strings["Fetish"] = "Fetisch"; +App::$strings["Oodles"] = "Unmengen"; +App::$strings["Nonsexual"] = "Sexlos"; +App::$strings["Single"] = "Single"; +App::$strings["Lonely"] = "Einsam"; +App::$strings["Available"] = "Verfügbar"; +App::$strings["Unavailable"] = "Nicht verfügbar"; +App::$strings["Has crush"] = "Verguckt"; +App::$strings["Infatuated"] = "Verknallt"; +App::$strings["Dating"] = "Lerne gerade jemanden kennen"; +App::$strings["Unfaithful"] = "Treulos"; +App::$strings["Sex Addict"] = "Sexabhängig"; +App::$strings["Friends/Benefits"] = "Freunde/Begünstigte"; +App::$strings["Casual"] = "Lose"; +App::$strings["Engaged"] = "Verlobt"; +App::$strings["Married"] = "Verheiratet"; +App::$strings["Imaginarily married"] = "Gewissermaßen verheiratet"; +App::$strings["Partners"] = "Partner"; +App::$strings["Cohabiting"] = "Lebensgemeinschaft"; +App::$strings["Common law"] = "Informelle Ehe"; +App::$strings["Happy"] = "Glücklich"; +App::$strings["Not looking"] = "Nicht Ausschau haltend"; +App::$strings["Swinger"] = "Swinger"; +App::$strings["Betrayed"] = "Betrogen"; +App::$strings["Separated"] = "Getrennt"; +App::$strings["Unstable"] = "Labil"; +App::$strings["Divorced"] = "Geschieden"; +App::$strings["Imaginarily divorced"] = "Gewissermaßen geschieden"; +App::$strings["Widowed"] = "Verwitwet"; +App::$strings["Uncertain"] = "Ungewiss"; +App::$strings["It's complicated"] = "Es ist kompliziert"; +App::$strings["Don't care"] = "Interessiert mich nicht"; +App::$strings["Ask me"] = "Frag mich mal"; +App::$strings["%1\$s's bookmarks"] = "%1\$ss Lesezeichen"; +App::$strings["guest:"] = "Gast:"; +App::$strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "Das Security-Token des Formulars war nicht korrekt. Das ist wahrscheinlich passiert, weil das Formular zu lange (>3 Stunden) offen war, bevor es abgeschickt wurde."; App::$strings["prev"] = "vorherige"; App::$strings["first"] = "erste"; App::$strings["last"] = "letzte"; @@ -1568,7 +1877,6 @@ App::$strings["newer"] = "neuer"; App::$strings["No connections"] = "Keine Verbindungen"; App::$strings["View all %s connections"] = "Alle Verbindungen von %s anzeigen"; App::$strings["poke"] = "anstupsen"; -App::$strings["poked"] = "stupste"; App::$strings["ping"] = "anpingen"; App::$strings["pinged"] = "pingte"; App::$strings["prod"] = "knuffen"; @@ -1631,385 +1939,21 @@ App::$strings["Select an alternate language"] = "Wähle eine alternative Sprache App::$strings["activity"] = "Aktivität"; App::$strings["Design Tools"] = "Gestaltungswerkzeuge"; App::$strings["Pages"] = "Seiten"; -App::$strings["System"] = "System"; -App::$strings["New App"] = "Neue App"; -App::$strings["Suggestions"] = "Vorschläge"; -App::$strings["See more..."] = "Mehr anzeigen …"; -App::$strings["You have %1$.0f of %2$.0f allowed connections."] = "Du bist %1$.0f von maximal %2$.0f erlaubten Verbindungen eingegangen."; -App::$strings["Add New Connection"] = "Neue Verbindung hinzufügen"; -App::$strings["Enter channel address"] = "Adresse des Kanals eingeben"; -App::$strings["Examples: bob@example.com, https://example.com/barbara"] = "Beispiele: bob@beispiel.com, http://beispiel.com/barbara"; -App::$strings["Notes"] = "Notizen"; -App::$strings["Remove term"] = "Eintrag löschen"; -App::$strings["Saved Searches"] = "Gespeicherte Suchanfragen"; -App::$strings["add"] = "hinzufügen"; -App::$strings["Saved Folders"] = "Gespeicherte Ordner"; -App::$strings["Everything"] = "Alles"; -App::$strings["Archives"] = "Archive"; -App::$strings["Refresh"] = "Aktualisieren"; -App::$strings["Account settings"] = "Konto-Einstellungen"; -App::$strings["Channel settings"] = "Kanal-Einstellungen"; -App::$strings["Additional features"] = "Zusätzliche Funktionen"; -App::$strings["Feature/Addon settings"] = "Plugin-Einstellungen"; -App::$strings["Display settings"] = "Anzeige-Einstellungen"; -App::$strings["Manage locations"] = "Klon-Adressen verwalten"; -App::$strings["Export channel"] = "Kanal exportieren"; -App::$strings["Connected apps"] = "Verbundene Apps"; -App::$strings["Premium Channel Settings"] = "Premium-Kanal-Einstellungen"; -App::$strings["Private Mail Menu"] = "Private Nachrichten"; -App::$strings["Combined View"] = "Kombinierte Anzeige"; -App::$strings["Inbox"] = "Eingang"; -App::$strings["Outbox"] = "Ausgang"; -App::$strings["New Message"] = "Neue Nachricht"; -App::$strings["Conversations"] = "Konversationen"; -App::$strings["Received Messages"] = "Erhaltene Nachrichten"; -App::$strings["Sent Messages"] = "Gesendete Nachrichten"; -App::$strings["No messages."] = "Keine Nachrichten."; -App::$strings["Delete conversation"] = "Unterhaltung löschen"; -App::$strings["Events Menu"] = "Kalendermenü"; -App::$strings["Day View"] = "Tagesansicht"; -App::$strings["Week View"] = "Wochenansicht"; -App::$strings["Month View"] = "Monatsansicht"; -App::$strings["Events Tools"] = "Kalenderwerkzeuge"; -App::$strings["Export Calendar"] = "Kalender exportieren"; -App::$strings["Import Calendar"] = "Kalender importieren"; -App::$strings["Chatrooms"] = "Chaträume"; -App::$strings["Overview"] = "Übersicht"; -App::$strings["Chat Members"] = "Chatmitglieder"; -App::$strings["Bookmarked Chatrooms"] = "Gespeicherte Chatrooms"; -App::$strings["Suggested Chatrooms"] = "Chatraum-Vorschläge"; -App::$strings["photo/image"] = "Foto/Bild"; -App::$strings["Click to show more"] = "Klick, um mehr anzuzeigen"; -App::$strings["Rating Tools"] = "Bewertungswerkzeuge"; -App::$strings["Rate Me"] = "Bewerte mich"; -App::$strings["View Ratings"] = "Bewertungen ansehen"; -App::$strings["Forums"] = "Foren"; -App::$strings["Tasks"] = "Aufgaben"; -App::$strings["Documentation"] = "Dokumentation"; -App::$strings["Project/Site Information"] = "Informationen über das Projekt und diesen Hub"; -App::$strings["For Members"] = "Für Mitglieder"; -App::$strings["For Administrators"] = "Für Administratoren"; -App::$strings["For Developers"] = "Für Entwickler"; -App::$strings["Member registrations waiting for confirmation"] = "Nutzer-Anmeldungen, die auf Bestätigung warten"; -App::$strings["Inspect queue"] = "Warteschlange kontrollieren"; -App::$strings["DB updates"] = "DB-Aktualisierungen"; -App::$strings["Admin"] = "Administration"; -App::$strings["Plugin Features"] = "Plug-In Funktionen"; -App::$strings["Channel is blocked on this site."] = "Der Kanal ist auf dieser Seite blockiert "; -App::$strings["Channel location missing."] = "Adresse des Kanals fehlt."; -App::$strings["Response from remote channel was incomplete."] = "Antwort des entfernten Kanals war unvollständig."; -App::$strings["Channel was deleted and no longer exists."] = "Kanal wurde gelöscht und existiert nicht mehr."; -App::$strings["Protocol disabled."] = "Protokoll deaktiviert."; -App::$strings["Channel discovery failed."] = "Kanalsuche fehlgeschlagen"; -App::$strings["Cannot connect to yourself."] = "Du kannst Dich nicht mit Dir selbst verbinden."; -App::$strings["%1\$s's bookmarks"] = "%1\$ss Lesezeichen"; -App::$strings["Public Timeline"] = "Öffentliche Zeitleiste"; -App::$strings["Image/photo"] = "Bild/Foto"; -App::$strings["Encrypted content"] = "Verschlüsselter Inhalt"; -App::$strings["Install %s element: "] = "Element %s installieren: "; -App::$strings["This post contains an installable %s element, however you lack permissions to install it on this site."] = "Dieser Beitrag beinhaltet ein installierbares %s Element, aber Du hast nicht die nötigen Rechte, um es auf diesem Hub zu installieren."; -App::$strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s schrieb den folgenden %2\$s %3\$s"; -App::$strings["Click to open/close"] = "Klicke zum Öffnen/Schließen"; -App::$strings["spoiler"] = "Spoiler"; -App::$strings["Different viewers will see this text differently"] = "Verschiedene Betrachter werden diesen Text unterschiedlich sehen"; -App::$strings["$1 wrote:"] = "$1 schrieb:"; -App::$strings["Directory Options"] = "Verzeichnisoptionen"; -App::$strings["Safe Mode"] = "Sicherer Modus"; -App::$strings["Public Forums Only"] = "Nur öffentliche Foren"; -App::$strings["This Website Only"] = "Nur dieser Hub"; -App::$strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "Das Security-Token des Formulars war nicht korrekt. Das ist wahrscheinlich passiert, weil das Formular zu lange (>3 Stunden) offen war, bevor es abgeschickt wurde."; -App::$strings["Logout"] = "Abmelden"; -App::$strings["End this session"] = "Beende diese Sitzung"; -App::$strings["Home"] = "Home"; -App::$strings["Your posts and conversations"] = "Deine Beiträge und Unterhaltungen"; -App::$strings["Your profile page"] = "Deine Profilseite"; -App::$strings["Manage/Edit profiles"] = "Profile verwalten"; -App::$strings["Edit Profile"] = "Profile bearbeiten"; -App::$strings["Edit your profile"] = "Profil bearbeiten"; -App::$strings["Your photos"] = "Deine Bilder"; -App::$strings["Your files"] = "Deine Dateien"; -App::$strings["Your chatrooms"] = "Deine Chaträume"; -App::$strings["Bookmarks"] = "Lesezeichen"; -App::$strings["Your bookmarks"] = "Deine Lesezeichen"; -App::$strings["Your webpages"] = "Deine Webseiten"; -App::$strings["Sign in"] = "Anmelden"; -App::$strings["%s - click to logout"] = "%s - Klick zum Abmelden"; -App::$strings["Remote authentication"] = "Über Konto auf anderem Server einloggen"; -App::$strings["Click to authenticate to your home hub"] = "Klicke, um Dich über Deinen Heimat-Server zu authentifizieren"; -App::$strings["Home Page"] = "Homepage"; -App::$strings["Create an account"] = "Erzeuge ein Konto"; -App::$strings["Help and documentation"] = "Hilfe und Dokumentation"; -App::$strings["Applications, utilities, links, games"] = "Anwendungen (Apps), Zubehör, Links, Spiele"; -App::$strings["Search site @name, #tag, ?docs, content"] = "Hub durchsuchen: @Name. #Schlagwort, ?Dokumentation, Inhalt"; -App::$strings["Channel Directory"] = "Kanal-Verzeichnis"; -App::$strings["Your grid"] = "Dein Grid"; -App::$strings["Mark all grid notifications seen"] = "Alle Grid-Benachrichtigungen als angesehen markieren"; -App::$strings["Channel home"] = "Mein Kanal"; -App::$strings["Mark all channel notifications seen"] = "Markiere alle Kanal-Benachrichtigungen als angesehen"; -App::$strings["Notices"] = "Benachrichtigungen"; -App::$strings["Notifications"] = "Benachrichtigungen"; -App::$strings["See all notifications"] = "Alle Benachrichtigungen ansehen"; -App::$strings["Private mail"] = "Persönliche Mail"; -App::$strings["See all private messages"] = "Alle persönlichen Nachrichten ansehen"; -App::$strings["Mark all private messages seen"] = "Markiere alle persönlichen Nachrichten als gesehen"; -App::$strings["Event Calendar"] = "Terminkalender"; -App::$strings["See all events"] = "Alle Termine ansehen"; -App::$strings["Mark all events seen"] = "Markiere alle Termine als gesehen"; -App::$strings["Manage Your Channels"] = "Verwalte Deine Kanäle"; -App::$strings["Account/Channel Settings"] = "Konto-/Kanal-Einstellungen"; -App::$strings["Site Setup and Configuration"] = "Seiten-Einrichtung und -Konfiguration"; -App::$strings["Loading..."] = "Lädt ..."; -App::$strings["@name, #tag, ?doc, content"] = "@Name, #Schlagwort, ?Dokumentation, Inhalt"; -App::$strings["Please wait..."] = "Bitte warten..."; -App::$strings["New window"] = "Neues Fenster"; -App::$strings["Open the selected location in a different window or browser tab"] = "Öffne die markierte Adresse in einem neuen Browserfenster oder Tab"; -App::$strings["User '%s' deleted"] = "Benutzer '%s' gelöscht"; -App::$strings["%d invitation available"] = array( - 0 => "%d Einladung verfügbar", - 1 => "%d Einladungen verfügbar", -); -App::$strings["Find Channels"] = "Finde Kanäle"; -App::$strings["Enter name or interest"] = "Name oder Interessen eingeben"; -App::$strings["Connect/Follow"] = "Verbinden/Folgen"; -App::$strings["Examples: Robert Morgenstein, Fishing"] = "Beispiele: Robert Morgenstein, Angeln"; -App::$strings["Random Profile"] = "Zufallsprofil"; -App::$strings["Invite Friends"] = "Lade Freunde ein"; -App::$strings["Advanced example: name=fred and country=iceland"] = "Fortgeschrittenes Beispiel: name=fred and country=iceland"; -App::$strings["%d connection in common"] = array( - 0 => "%d gemeinsame Verbindung", - 1 => "%d gemeinsame Verbindungen", -); -App::$strings["show more"] = "mehr zeigen"; -App::$strings["%1\$s is now connected with %2\$s"] = "%1\$s ist jetzt mit %2\$s verbunden"; -App::$strings["%1\$s poked %2\$s"] = "%1\$s stupste %2\$s an"; -App::$strings["View %s's profile @ %s"] = "%ss Profil auf %s ansehen"; -App::$strings["Categories:"] = "Kategorien:"; -App::$strings["Filed under:"] = "Gespeichert unter:"; -App::$strings["View in context"] = "Im Zusammenhang anschauen"; -App::$strings["remove"] = "lösche"; -App::$strings["Delete Selected Items"] = "Lösche die ausgewählten Elemente"; -App::$strings["View Source"] = "Quelle anzeigen"; -App::$strings["Follow Thread"] = "Unterhaltung folgen"; -App::$strings["Unfollow Thread"] = "Unterhaltung nicht mehr folgen"; -App::$strings["Activity/Posts"] = "Aktivitäten/Beiträge"; -App::$strings["Edit Connection"] = "Verbindung bearbeiten"; -App::$strings["Message"] = "Nachricht"; -App::$strings["%s likes this."] = "%s gefällt das."; -App::$strings["%s doesn't like this."] = "%s gefällt das nicht."; -App::$strings["%2\$d people like this."] = array( - 0 => "%2\$d Person gefällt das.", - 1 => "%2\$d Leuten gefällt das.", -); -App::$strings["%2\$d people don't like this."] = array( - 0 => "%2\$d Person gefällt das nicht.", - 1 => "%2\$d Leuten gefällt das nicht.", -); -App::$strings["and"] = "und"; -App::$strings[", and %d other people"] = array( - 0 => "", - 1 => ", und %d andere", -); -App::$strings["%s like this."] = "%s gefällt das."; -App::$strings["%s don't like this."] = "%s gefällt das nicht."; -App::$strings["Set your location"] = "Standort"; -App::$strings["Clear browser location"] = "Browser-Standort löschen"; -App::$strings["Tag term:"] = "Schlagwort:"; -App::$strings["Where are you right now?"] = "Wo bist Du jetzt grade?"; -App::$strings["Page link name"] = "Link zur Seite"; -App::$strings["Post as"] = "Veröffentlichen als"; -App::$strings["Toggle voting"] = "Umfragewerkzeug aktivieren"; -App::$strings["Categories (optional, comma-separated list)"] = "Kategorien (optional, kommagetrennte Liste)"; -App::$strings["Set publish date"] = "Veröffentlichungsdatum festlegen"; -App::$strings["OK"] = "Ok"; -App::$strings["Discover"] = "Entdecken"; -App::$strings["Imported public streams"] = "Importierte öffentliche Beiträge"; -App::$strings["Commented Order"] = "Neueste Kommentare"; -App::$strings["Sort by Comment Date"] = "Nach Kommentardatum sortiert"; -App::$strings["Posted Order"] = "Neueste Beiträge"; -App::$strings["Sort by Post Date"] = "Nach Beitragsdatum sortiert"; -App::$strings["Posts that mention or involve you"] = "Beiträge mit Beteiligung Deinerseits"; -App::$strings["Activity Stream - by date"] = "Activity Stream – nach Datum sortiert"; -App::$strings["Starred"] = "Markiert"; -App::$strings["Favourite Posts"] = "Markierte Beiträge"; -App::$strings["Spam"] = "Spam"; -App::$strings["Posts flagged as SPAM"] = "Nachrichten, die als SPAM markiert wurden"; -App::$strings["Status Messages and Posts"] = "Statusnachrichten und Beiträge"; -App::$strings["About"] = "Über"; -App::$strings["Profile Details"] = "Profil-Details"; -App::$strings["Photo Albums"] = "Fotoalben"; -App::$strings["Files and Storage"] = "Dateien und Speicher"; -App::$strings["Saved Bookmarks"] = "Gespeicherte Lesezeichen"; -App::$strings["Manage Webpages"] = "Webseiten verwalten"; -App::$strings["__ctx:noun__ Attending"] = array( - 0 => "Zusage", - 1 => "Zusagen", -); -App::$strings["__ctx:noun__ Not Attending"] = array( - 0 => "Absage", - 1 => "Absagen", -); -App::$strings["__ctx:noun__ Undecided"] = array( - 0 => " Unentschlossen", - 1 => "Unentschlossene", -); -App::$strings["__ctx:noun__ Agree"] = array( - 0 => "Zustimmung", - 1 => "Zustimmungen", -); -App::$strings["__ctx:noun__ Disagree"] = array( - 0 => "Ablehnung", - 1 => "Ablehnungen", -); -App::$strings["__ctx:noun__ Abstain"] = array( - 0 => "Enthaltung", - 1 => "Enthaltungen", -); -App::$strings["Frequently"] = "Häufig"; -App::$strings["Hourly"] = "Stündlich"; -App::$strings["Twice daily"] = "Zwei Mal am Tag"; -App::$strings["Daily"] = "Täglich"; -App::$strings["Weekly"] = "Wöchentlich"; -App::$strings["Monthly"] = "Monatlich"; -App::$strings["Currently Male"] = "Momentan männlich"; -App::$strings["Currently Female"] = "Momentan weiblich"; -App::$strings["Mostly Male"] = "Größtenteils männlich"; -App::$strings["Mostly Female"] = "Größtenteils weiblich"; -App::$strings["Transgender"] = "Transsexuell"; -App::$strings["Intersex"] = "Zwischengeschlechtlich"; -App::$strings["Transsexual"] = "Transsexuell"; -App::$strings["Hermaphrodite"] = "Zwitter"; -App::$strings["Neuter"] = "Geschlechtslos"; -App::$strings["Non-specific"] = "unklar"; -App::$strings["Other"] = "Andere"; -App::$strings["Undecided"] = "Unentschieden"; -App::$strings["Males"] = "Männer"; -App::$strings["Females"] = "Frauen"; -App::$strings["Gay"] = "Schwul"; -App::$strings["Lesbian"] = "Lesbisch"; -App::$strings["No Preference"] = "Keine Bevorzugung"; -App::$strings["Bisexual"] = "Bisexuell"; -App::$strings["Autosexual"] = "Autosexuell"; -App::$strings["Abstinent"] = "Enthaltsam"; -App::$strings["Virgin"] = "Jungfräulich"; -App::$strings["Deviant"] = "Abweichend"; -App::$strings["Fetish"] = "Fetisch"; -App::$strings["Oodles"] = "Unmengen"; -App::$strings["Nonsexual"] = "Sexlos"; -App::$strings["Single"] = "Single"; -App::$strings["Lonely"] = "Einsam"; -App::$strings["Available"] = "Verfügbar"; -App::$strings["Unavailable"] = "Nicht verfügbar"; -App::$strings["Has crush"] = "Verguckt"; -App::$strings["Infatuated"] = "Verknallt"; -App::$strings["Dating"] = "Lerne gerade jemanden kennen"; -App::$strings["Unfaithful"] = "Treulos"; -App::$strings["Sex Addict"] = "Sexabhängig"; -App::$strings["Friends/Benefits"] = "Freunde/Begünstigte"; -App::$strings["Casual"] = "Lose"; -App::$strings["Engaged"] = "Verlobt"; -App::$strings["Married"] = "Verheiratet"; -App::$strings["Imaginarily married"] = "Gewissermaßen verheiratet"; -App::$strings["Partners"] = "Partner"; -App::$strings["Cohabiting"] = "Lebensgemeinschaft"; -App::$strings["Common law"] = "Informelle Ehe"; -App::$strings["Happy"] = "Glücklich"; -App::$strings["Not looking"] = "Nicht Ausschau haltend"; -App::$strings["Swinger"] = "Swinger"; -App::$strings["Betrayed"] = "Betrogen"; -App::$strings["Separated"] = "Getrennt"; -App::$strings["Unstable"] = "Labil"; -App::$strings["Divorced"] = "Geschieden"; -App::$strings["Imaginarily divorced"] = "Gewissermaßen geschieden"; -App::$strings["Widowed"] = "Verwitwet"; -App::$strings["Uncertain"] = "Ungewiss"; -App::$strings["It's complicated"] = "Es ist kompliziert"; -App::$strings["Don't care"] = "Interessiert mich nicht"; -App::$strings["Ask me"] = "Frag mich mal"; -App::$strings["Visible to your default audience"] = "Standard-Sichtbarkeit gemäß Kanaleinstellungen"; -App::$strings["Only me"] = "Nur ich"; -App::$strings["Public"] = "Öffentlich"; -App::$strings["Anybody in the \$Projectname network"] = "Jeder innerhalb des \$Projectname Netzwerks"; -App::$strings["Any account on %s"] = "Jedes Nutzerkonto auf %s"; -App::$strings["Any of my connections"] = "Alle meine Verbindungen"; -App::$strings["Only connections I specifically allow"] = "Nur Verbindungen, denen ich es explizit erlaube"; -App::$strings["Anybody authenticated (could include visitors from other networks)"] = "Jeder, der angemeldet ist (kann Besucher anderer Netzwerke beinhalten)"; -App::$strings["Any connections including those who haven't yet been approved"] = "Alle Verbindungen einschließlich der noch nicht bestätigten"; -App::$strings["This is your default setting for the audience of your normal stream, and posts."] = "Dies ist Deine Voreinstellung für die Sichtbarkeit Deiner normalen Beiträge (Stream)."; -App::$strings["This is your default setting for who can view your default channel profile"] = "Dies ist Deine Voreinstellung für die Sichtbarkeit Deines Standard-Kanalprofils."; -App::$strings["This is your default setting for who can view your connections"] = "Dies ist Deine Voreinstellung für die Sichtbarkeit Deiner Verbindungen."; -App::$strings["This is your default setting for who can view your file storage and photos"] = "Dies ist Deine Voreinstellung für die Sichtbarkeit Deiner Dateien und Fotos."; -App::$strings["This is your default setting for the audience of your webpages"] = "Dies ist Deine Voreinstellung für die Sichtbarkeit Deiner Webseiten."; -App::$strings["Not a valid email address"] = "Ungültige E-Mail-Adresse"; -App::$strings["Your email domain is not among those allowed on this site"] = "Deine E-Mail-Adresse ist auf dieser Seite nicht erlaubt"; -App::$strings["Your email address is already registered at this site."] = "Deine E-Mail-Adresse ist auf dieser Seite bereits registriert."; -App::$strings["An invitation is required."] = "Eine Einladung wird benötigt."; -App::$strings["Invitation could not be verified."] = "Die Einladung konnte nicht bestätigt werden."; -App::$strings["Please enter the required information."] = "Bitte gib die benötigten Informationen ein."; -App::$strings["Failed to store account information."] = "Speichern der Nutzerkontodaten fehlgeschlagen."; -App::$strings["Registration confirmation for %s"] = "Registrierungsbestätigung für %s"; -App::$strings["Registration request at %s"] = "Registrierungsanfrage auf %s"; -App::$strings["Administrator"] = "Administrator"; -App::$strings["your registration password"] = "Dein Registrierungspasswort"; -App::$strings["Registration details for %s"] = "Registrierungsdetails für %s"; -App::$strings["Account approved."] = "Nutzerkonto bestätigt."; -App::$strings["Registration revoked for %s"] = "Registrierung für %s wurde widerrufen"; -App::$strings["Account verified. Please login."] = "Nutzerkonto wurde bestätigt. Bitte melde Dich an!"; -App::$strings["Click here to upgrade."] = "Klicke hier, um das Upgrade durchzuführen."; -App::$strings["This action exceeds the limits set by your subscription plan."] = "Diese Aktion überschreitet die Grenzen Ihres Abonnements."; -App::$strings["This action is not available under your subscription plan."] = "Diese Aktion ist in Ihrem Abonnement nicht verfügbar."; -App::$strings["Item was not found."] = "Beitrag wurde nicht gefunden."; -App::$strings["No source file."] = "Keine Quelldatei."; -App::$strings["Cannot locate file to replace"] = "Kann Datei zum Ersetzen nicht finden"; -App::$strings["Cannot locate file to revise/update"] = "Kann Datei zum Prüfen/Aktualisieren nicht finden"; -App::$strings["File exceeds size limit of %d"] = "Datei überschreitet das Größen-Limit von %d"; -App::$strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Die Größe Deiner Datei-Anhänge hat das Maximum von %1$.0f MByte erreicht."; -App::$strings["File upload failed. Possible system limit or action terminated."] = "Datei-Upload fehlgeschlagen. Mögliche Systembegrenzung oder abgebrochener Prozess."; -App::$strings["Stored file could not be verified. Upload failed."] = "Gespeichert Datei konnte nicht verifiziert werden. Upload abgebrochen."; -App::$strings["Path not available."] = "Pfad nicht verfügbar."; -App::$strings["Empty pathname"] = "Leere Pfadangabe"; -App::$strings["duplicate filename or path"] = "doppelter Dateiname oder Pfad"; -App::$strings["Path not found."] = "Pfad nicht gefunden."; -App::$strings["mkdir failed."] = "mkdir fehlgeschlagen."; -App::$strings["database storage failed."] = "Speichern in der Datenbank fehlgeschlagen."; -App::$strings["Empty path"] = "Leere Pfadangabe"; -App::$strings["Unable to obtain identity information from database"] = "Kann keine Identitäts-Informationen aus Datenbank beziehen"; -App::$strings["Empty name"] = "Namensfeld leer"; -App::$strings["Name too long"] = "Name ist zu lang"; -App::$strings["No account identifier"] = "Keine Account-Kennung"; -App::$strings["Nickname is required."] = "Spitzname ist erforderlich."; -App::$strings["Reserved nickname. Please choose another."] = "Reservierter Kurzname. Bitte wähle einen anderen."; -App::$strings["Nickname has unsupported characters or is already being used on this site."] = "Der Spitzname enthält nicht-unterstütze Zeichen oder wird bereits auf dieser Seite genutzt."; -App::$strings["Unable to retrieve created identity"] = "Kann die erstellte Identität nicht empfangen"; -App::$strings["Default Profile"] = "Standard-Profil"; -App::$strings["Requested channel is not available."] = "Angeforderte Kanal nicht verfügbar."; -App::$strings["Create New Profile"] = "Neues Profil erstellen"; -App::$strings["Visible to everybody"] = "Für jeden sichtbar"; -App::$strings["Gender:"] = "Geschlecht:"; -App::$strings["Status:"] = "Status:"; -App::$strings["Homepage:"] = "Homepage:"; -App::$strings["Online Now"] = "gerade online"; -App::$strings["Like this channel"] = "Dieser Kanal gefällt mir"; -App::$strings["j F, Y"] = "j. F Y"; -App::$strings["j F"] = "j. F"; -App::$strings["Birthday:"] = "Geburtstag:"; -App::$strings["for %1\$d %2\$s"] = "seit %1\$d %2\$s"; -App::$strings["Sexual Preference:"] = "Sexuelle Orientierung:"; -App::$strings["Tags:"] = "Schlagworte:"; -App::$strings["Political Views:"] = "Politische Ansichten:"; -App::$strings["Religion:"] = "Religion:"; -App::$strings["Hobbies/Interests:"] = "Hobbys/Interessen:"; -App::$strings["Likes:"] = "Gefällt:"; -App::$strings["Dislikes:"] = "Gefällt nicht:"; -App::$strings["Contact information and Social Networks:"] = "Kontaktinformation und soziale Netzwerke:"; -App::$strings["My other channels:"] = "Meine anderen Kanäle:"; -App::$strings["Musical interests:"] = "Musikalische Interessen:"; -App::$strings["Books, literature:"] = "Bücher, Literatur:"; -App::$strings["Television:"] = "Fernsehen:"; -App::$strings["Film/dance/culture/entertainment:"] = "Film/Tanz/Kultur/Unterhaltung:"; -App::$strings["Love/Romance:"] = "Liebe/Romantik:"; -App::$strings["Work/employment:"] = "Arbeit/Anstellung:"; -App::$strings["School/education:"] = "Schule/Ausbildung:"; -App::$strings["Like this thing"] = "Gefällt mir"; +App::$strings["Logged out."] = "Ausgeloggt."; +App::$strings["Failed authentication"] = "Authentifizierung fehlgeschlagen"; +App::$strings["Can view my normal stream and posts"] = "Kann meine normalen Beiträge sehen"; +App::$strings["Can view my webpages"] = "Kann meine Webseiten sehen"; +App::$strings["Can post on my channel page (\"wall\")"] = "Kann auf meiner Kanal-Seite (\"wall\") Beiträge veröffentlichen"; +App::$strings["Can like/dislike stuff"] = "Kann andere Elemente mögen/nicht mögen"; +App::$strings["Profiles and things other than posts/comments"] = "Profile und alles außer Beiträge und Kommentare"; +App::$strings["Can forward to all my channel contacts via post @mentions"] = "Kann an alle meine Kontakte via @-Erwähnung Nachrichten weiterleiten"; +App::$strings["Advanced - useful for creating group forum channels"] = "Fortgeschritten - sinnvoll, um Gruppen-Kanäle/-Foren zu erstellen"; +App::$strings["Can chat with me (when available)"] = "Kann mit mir chatten (wenn verfügbar)"; +App::$strings["Can write to my file storage and photos"] = "Kann in meine Datei- und Bilderordner schreiben"; +App::$strings["Can edit my webpages"] = "Kann meine Webseiten bearbeiten"; +App::$strings["Somewhat advanced - very useful in open communities"] = "Etwas fortgeschritten – sehr nützlich in offenen Gemeinschaften"; +App::$strings["Can administer my channel resources"] = "Kann meine Kanäle administrieren"; +App::$strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "Sehr fortgeschritten. Bearbeite das nur, wenn Du genau weißt, was Du tust"; App::$strings["General Features"] = "Allgemeine Funktionen"; App::$strings["Content Expiration"] = "Verfall von Inhalten"; App::$strings["Remove posts/comments and/or private messages at a future time"] = "Ermöglicht das automatische Löschen von Beiträgen, Kommentaren und/oder privaten Nachrichten zu einem zukünftigen Datum."; @@ -2021,6 +1965,7 @@ App::$strings["Profile Import/Export"] = "Profil-Import/Export"; App::$strings["Save and load profile details across sites/channels"] = "Ermöglicht das Speichern von Profilen, um sie in einen anderen Kanal zu importieren"; App::$strings["Web Pages"] = "Webseiten"; App::$strings["Provide managed web pages on your channel"] = "Ermöglicht das Erstellen von Webseiten in Deinem Kanal"; +App::$strings["Provide a wiki for your channel"] = "Stelle ein Wiki in Deinem Kanal zur Verfügung"; App::$strings["Hide Rating"] = "Bewertung verbergen"; App::$strings["Hide the rating buttons on your channel and profile pages. Note: People can still rate you somewhere else."] = "Verberge die Buttons zur Bewertung auf deiner Profil-Seite und deinem Kanal. Hinweis: Leute können dich weiterhin andernorts bewerten."; App::$strings["Private Notes"] = "Private Notizen"; @@ -2054,6 +1999,7 @@ App::$strings["Search by Date"] = "Suche nach Datum"; App::$strings["Ability to select posts by date ranges"] = "Möglichkeit, Beiträge nach Zeiträumen auszuwählen"; App::$strings["Privacy Groups"] = "Gruppen"; App::$strings["Enable management and selection of privacy groups"] = "Auswahl und Verwaltung von Gruppen für Kanäle aktivieren"; +App::$strings["Saved Searches"] = "Gespeicherte Suchanfragen"; App::$strings["Save search terms for re-use"] = "Ermöglicht das Abspeichern von Suchbegriffen zur Wiederverwendung"; App::$strings["Network Personal Tab"] = "Persönlicher Netzwerkreiter"; App::$strings["Enable tab to display only Network posts that you've interacted on"] = "Aktiviert einen Reiter in der Grid-Ansicht, der nur Netzwerk-Beiträge anzeigt, mit denen Du interagiert hast"; @@ -2071,6 +2017,7 @@ App::$strings["Post Categories"] = "Beitrags-Kategorien"; App::$strings["Add categories to your posts"] = "Aktiviert Kategorien für Beiträge"; App::$strings["Emoji Reactions"] = "Emoji Reaktionen"; App::$strings["Add emoji reaction ability to posts"] = "Aktiviert Emoji-Reaktionen für Beiträge"; +App::$strings["Saved Folders"] = "Gespeicherte Ordner"; App::$strings["Ability to file posts under folders"] = "Möglichkeit, Beiträge in Verzeichnissen zu sammeln"; App::$strings["Dislike Posts"] = "Gefällt-mir-nicht-Beiträge"; App::$strings["Ability to dislike posts/comments"] = "Aktiviert die „Gefällt mir nicht“-Schaltfläche"; @@ -2078,63 +2025,149 @@ App::$strings["Star Posts"] = "Beiträge mit Sternchen versehen"; App::$strings["Ability to mark special posts with a star indicator"] = "Ermöglicht die lokale Markierung spezieller Beiträge mit einem Sternchen-Symbol"; App::$strings["Tag Cloud"] = "Schlagwort-Wolke"; App::$strings["Provide a personal tag cloud on your channel page"] = "Aktiviert die Anzeige einer Schlagwort-Wolke (Tag Cloud) auf Deiner Kanal-Seite"; -App::$strings["Embedded content"] = "Eingebetteter Inhalt"; -App::$strings["Embedding disabled"] = "Einbetten ausgeschaltet"; -App::$strings["Who can see this?"] = "Wer kann das sehen?"; -App::$strings["Custom selection"] = "Benutzerdefinierte Auswahl"; -App::$strings["Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit the scope of \"Show\"."] = "Wähle \"Anzeigen\", um Betrachtung zuzulassen. \"Nicht anzeigen\" überstimmt und limitiert den Aktionsradius von \"Anzeigen\" für Ausnahmen."; -App::$strings["Show"] = "Anzeigen"; -App::$strings["Don't show"] = "Nicht anzeigen"; -App::$strings["Other networks and post services"] = "Andere Netzwerke und Platformen"; -App::$strings["Post permissions %s cannot be changed %s after a post is shared.
These permissions set who is allowed to view the post."] = "Beitragsberechtigungen %s können nicht geändert werden %s, nachdem der Beitrag gesendet wurde.
Diese Berechtigungen bestimmen, wer den Beitrag sehen kann."; -App::$strings["Logged out."] = "Ausgeloggt."; -App::$strings["Failed authentication"] = "Authentifizierung fehlgeschlagen"; -App::$strings["Birthday"] = "Geburtstag"; -App::$strings["Age: "] = "Alter:"; -App::$strings["YYYY-MM-DD or MM-DD"] = "JJJJ-MM-TT oder MM-TT"; -App::$strings["never"] = "Nie"; -App::$strings["less than a second ago"] = "Vor weniger als einer Sekunde"; -App::$strings["__ctx:e.g. 22 hours ago, 1 minute ago__ %1\$d %2\$s ago"] = "vor %1\$d %2\$s"; -App::$strings["__ctx:relative_date__ year"] = array( - 0 => "Jahr", - 1 => "Jahre", -); -App::$strings["__ctx:relative_date__ month"] = array( - 0 => "Monat", - 1 => "Monate", -); -App::$strings["__ctx:relative_date__ week"] = array( - 0 => "Woche", - 1 => "Wochen", -); -App::$strings["__ctx:relative_date__ day"] = array( - 0 => "Tag", - 1 => "Tage", -); -App::$strings["__ctx:relative_date__ hour"] = array( - 0 => "Stunde", - 1 => "Stunden", -); -App::$strings["__ctx:relative_date__ minute"] = array( - 0 => "Minute", - 1 => "Minuten", -); -App::$strings["__ctx:relative_date__ second"] = array( - 0 => "Sekunde", - 1 => "Sekunden", -); -App::$strings["%1\$s's birthday"] = "%1\$ss Geburtstag"; -App::$strings["Happy Birthday %1\$s"] = "Alles Gute zum Geburtstag, %1\$s"; App::$strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Es hat früher schon einmal eine Gruppe mit diesem Namen existiert, die gelöscht wurde. Es könnten von damals noch Elemente (Beiträge, Dateien etc.) vorhanden sein, die allen jetzigen und zukünftigen Mitgliedern dieser Gruppe den Zugriff erlauben. Wenn das nicht Deine Absicht ist, erstelle bitte eine neue Gruppe mit einem anderen Namen."; App::$strings["Add new connections to this privacy group"] = "Neue Verbindung zu dieser Gruppe hinzufügen"; App::$strings["edit"] = "Bearbeiten"; App::$strings["Edit group"] = "Gruppe ändern"; App::$strings["Add privacy group"] = "Gruppe hinzufügen"; App::$strings["Channels not in any privacy group"] = "Kanäle, die in keiner Gruppe sind"; +App::$strings["add"] = "hinzufügen"; +App::$strings["l F d, Y \\@ g:i A"] = "l, d. F Y, H:i"; +App::$strings["Starts:"] = "Beginnt:"; +App::$strings["Finishes:"] = "Endet:"; +App::$strings["This event has been added to your calendar."] = "Dieser Termin wurde zu Deinem Kalender hinzugefügt"; +App::$strings["Not specified"] = "Keine Angabe"; +App::$strings["Needs Action"] = "Aktion erforderlich"; +App::$strings["Completed"] = "Abgeschlossen"; +App::$strings["In Process"] = "In Bearbeitung"; +App::$strings["Cancelled"] = "gestrichen"; +App::$strings["Not a valid email address"] = "Ungültige E-Mail-Adresse"; +App::$strings["Your email domain is not among those allowed on this site"] = "Deine E-Mail-Adresse ist auf dieser Seite nicht erlaubt"; +App::$strings["Your email address is already registered at this site."] = "Deine E-Mail-Adresse ist auf dieser Seite bereits registriert."; +App::$strings["An invitation is required."] = "Eine Einladung wird benötigt."; +App::$strings["Invitation could not be verified."] = "Die Einladung konnte nicht bestätigt werden."; +App::$strings["Please enter the required information."] = "Bitte gib die benötigten Informationen ein."; +App::$strings["Failed to store account information."] = "Speichern der Nutzerkontodaten fehlgeschlagen."; +App::$strings["Registration confirmation for %s"] = "Registrierungsbestätigung für %s"; +App::$strings["Registration request at %s"] = "Registrierungsanfrage auf %s"; +App::$strings["your registration password"] = "Dein Registrierungspasswort"; +App::$strings["Registration details for %s"] = "Registrierungsdetails für %s"; +App::$strings["Account approved."] = "Nutzerkonto bestätigt."; +App::$strings["Registration revoked for %s"] = "Registrierung für %s wurde widerrufen"; +App::$strings["Click here to upgrade."] = "Klicke hier, um das Upgrade durchzuführen."; +App::$strings["This action exceeds the limits set by your subscription plan."] = "Diese Aktion überschreitet die Grenzen Ihres Abonnements."; +App::$strings["This action is not available under your subscription plan."] = "Diese Aktion ist in Ihrem Abonnement nicht verfügbar."; +App::$strings["Channel is blocked on this site."] = "Der Kanal ist auf dieser Seite blockiert "; +App::$strings["Channel location missing."] = "Adresse des Kanals fehlt."; +App::$strings["Response from remote channel was incomplete."] = "Antwort des entfernten Kanals war unvollständig."; +App::$strings["Channel was deleted and no longer exists."] = "Kanal wurde gelöscht und existiert nicht mehr."; +App::$strings["Protocol disabled."] = "Protokoll deaktiviert."; +App::$strings["Channel discovery failed."] = "Kanalsuche fehlgeschlagen"; +App::$strings["Cannot connect to yourself."] = "Du kannst Dich nicht mit Dir selbst verbinden."; +App::$strings["Item was not found."] = "Beitrag wurde nicht gefunden."; +App::$strings["No source file."] = "Keine Quelldatei."; +App::$strings["Cannot locate file to replace"] = "Kann Datei zum Ersetzen nicht finden"; +App::$strings["Cannot locate file to revise/update"] = "Kann Datei zum Prüfen/Aktualisieren nicht finden"; +App::$strings["File exceeds size limit of %d"] = "Datei überschreitet das Größen-Limit von %d"; +App::$strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Die Größe Deiner Datei-Anhänge hat das Maximum von %1$.0f MByte erreicht."; +App::$strings["File upload failed. Possible system limit or action terminated."] = "Datei-Upload fehlgeschlagen. Mögliche Systembegrenzung oder abgebrochener Prozess."; +App::$strings["Stored file could not be verified. Upload failed."] = "Gespeichert Datei konnte nicht verifiziert werden. Upload abgebrochen."; +App::$strings["Path not available."] = "Pfad nicht verfügbar."; +App::$strings["Empty pathname"] = "Leere Pfadangabe"; +App::$strings["duplicate filename or path"] = "doppelter Dateiname oder Pfad"; +App::$strings["Path not found."] = "Pfad nicht gefunden."; +App::$strings["mkdir failed."] = "mkdir fehlgeschlagen."; +App::$strings["database storage failed."] = "Speichern in der Datenbank fehlgeschlagen."; +App::$strings["Empty path"] = "Leere Pfadangabe"; +App::$strings["Image/photo"] = "Bild/Foto"; +App::$strings["Encrypted content"] = "Verschlüsselter Inhalt"; +App::$strings["Install %s element: "] = "Element %s installieren: "; +App::$strings["This post contains an installable %s element, however you lack permissions to install it on this site."] = "Dieser Beitrag beinhaltet ein installierbares %s Element, aber Du hast nicht die nötigen Rechte, um es auf diesem Hub zu installieren."; +App::$strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s schrieb den folgenden %2\$s %3\$s"; +App::$strings["Click to open/close"] = "Klicke zum Öffnen/Schließen"; +App::$strings["spoiler"] = "Spoiler"; +App::$strings["Different viewers will see this text differently"] = "Verschiedene Betrachter werden diesen Text unterschiedlich sehen"; +App::$strings["$1 wrote:"] = "$1 schrieb:"; +App::$strings["(Unknown)"] = "(Unbekannt)"; +App::$strings["Visible to anybody on the internet."] = "Für jeden im Internet sichtbar."; +App::$strings["Visible to you only."] = "Nur für Dich sichtbar."; +App::$strings["Visible to anybody in this network."] = "Für jedes \$Projectname-Mitglied sichtbar."; +App::$strings["Visible to anybody authenticated."] = "Für jeden sichtbar, der angemeldet ist."; +App::$strings["Visible to anybody on %s."] = "Für jeden auf %s sichtbar."; +App::$strings["Visible to all connections."] = "Für alle Verbindungen sichtbar."; +App::$strings["Visible to approved connections."] = "Nur für akzeptierte Verbindungen sichtbar."; +App::$strings["Visible to specific connections."] = "Sichtbar für bestimmte Verbindungen."; +App::$strings["Privacy group is empty."] = "Gruppe ist leer."; +App::$strings["Privacy group: %s"] = "Gruppe: %s"; +App::$strings["Connection not found."] = "Die Verbindung wurde nicht gefunden."; +App::$strings["profile photo"] = "Profilfoto"; +App::$strings["Embedded content"] = "Eingebetteter Inhalt"; +App::$strings["Embedding disabled"] = "Einbetten ausgeschaltet"; +App::$strings["System"] = "System"; +App::$strings["New App"] = "Neue App"; +App::$strings["Suggestions"] = "Vorschläge"; +App::$strings["See more..."] = "Mehr anzeigen …"; +App::$strings["You have %1$.0f of %2$.0f allowed connections."] = "Du bist %1$.0f von maximal %2$.0f erlaubten Verbindungen eingegangen."; +App::$strings["Add New Connection"] = "Neue Verbindung hinzufügen"; +App::$strings["Enter channel address"] = "Adresse des Kanals eingeben"; +App::$strings["Examples: bob@example.com, https://example.com/barbara"] = "Beispiele: bob@beispiel.com, http://beispiel.com/barbara"; +App::$strings["Notes"] = "Notizen"; +App::$strings["Remove term"] = "Eintrag löschen"; +App::$strings["Everything"] = "Alles"; +App::$strings["Archives"] = "Archive"; +App::$strings["Refresh"] = "Aktualisieren"; +App::$strings["Account settings"] = "Konto-Einstellungen"; +App::$strings["Channel settings"] = "Kanal-Einstellungen"; +App::$strings["Additional features"] = "Zusätzliche Funktionen"; +App::$strings["Feature/Addon settings"] = "Plugin-Einstellungen"; +App::$strings["Display settings"] = "Anzeige-Einstellungen"; +App::$strings["Manage locations"] = "Klon-Adressen verwalten"; +App::$strings["Export channel"] = "Kanal exportieren"; +App::$strings["Connected apps"] = "Verbundene Apps"; +App::$strings["Premium Channel Settings"] = "Premium-Kanal-Einstellungen"; +App::$strings["Private Mail Menu"] = "Private Nachrichten"; +App::$strings["Combined View"] = "Kombinierte Anzeige"; +App::$strings["Conversations"] = "Konversationen"; +App::$strings["Received Messages"] = "Erhaltene Nachrichten"; +App::$strings["Sent Messages"] = "Gesendete Nachrichten"; +App::$strings["No messages."] = "Keine Nachrichten."; +App::$strings["Delete conversation"] = "Unterhaltung löschen"; +App::$strings["Events Tools"] = "Kalenderwerkzeuge"; +App::$strings["Export Calendar"] = "Kalender exportieren"; +App::$strings["Import Calendar"] = "Kalender importieren"; +App::$strings["Overview"] = "Übersicht"; +App::$strings["Chat Members"] = "Chatmitglieder"; +App::$strings["Wiki List"] = "Wikiliste"; +App::$strings["Wiki Pages"] = "Wikiseiten"; +App::$strings["Bookmarked Chatrooms"] = "Gespeicherte Chatrooms"; +App::$strings["Suggested Chatrooms"] = "Chatraum-Vorschläge"; +App::$strings["photo/image"] = "Foto/Bild"; +App::$strings["Click to show more"] = "Klick, um mehr anzuzeigen"; +App::$strings["Rating Tools"] = "Bewertungswerkzeuge"; +App::$strings["Rate Me"] = "Bewerte mich"; +App::$strings["View Ratings"] = "Bewertungen ansehen"; +App::$strings["Forums"] = "Foren"; +App::$strings["Tasks"] = "Aufgaben"; +App::$strings["Documentation"] = "Dokumentation"; +App::$strings["Project/Site Information"] = "Informationen über das Projekt und diesen Hub"; +App::$strings["For Members"] = "Für Mitglieder"; +App::$strings["For Administrators"] = "Für Administratoren"; +App::$strings["For Developers"] = "Für Entwickler"; +App::$strings["Member registrations waiting for confirmation"] = "Nutzer-Anmeldungen, die auf Bestätigung warten"; +App::$strings["Inspect queue"] = "Warteschlange kontrollieren"; +App::$strings["DB updates"] = "DB-Aktualisierungen"; +App::$strings["Plugin Features"] = "Plug-In Funktionen"; +App::$strings[" and "] = "und"; +App::$strings["public profile"] = "öffentliches Profil"; +App::$strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s hat %2\$s auf “%3\$s” geändert"; +App::$strings["Visit %1\$s's %2\$s"] = "Besuche %1\$s's %2\$s"; +App::$strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s hat ein aktualisiertes %2\$s, %3\$s wurde verändert."; +App::$strings["Attachments:"] = "Anhänge:"; +App::$strings["\$Projectname event notification:"] = "\$Projectname-Terminbenachrichtigung:"; App::$strings["Delete this item?"] = "Dieses Element löschen?"; -App::$strings["[-] show less"] = "[-] Weniger anzeigen"; -App::$strings["[+] expand"] = "[+] aufklappen"; -App::$strings["[-] collapse"] = "[-] einklappen"; +App::$strings["%s show less"] = "%s weniger anzeigen"; +App::$strings["%s expand"] = "%s aufklappen"; +App::$strings["%s collapse"] = "%s einklappen"; App::$strings["Password too short"] = "Kennwort zu kurz"; App::$strings["Passwords do not match"] = "Kennwörter stimmen nicht überein"; App::$strings["everybody"] = "alle"; @@ -2189,72 +2222,78 @@ App::$strings["__ctx:calendar__ month"] = "Monat"; App::$strings["__ctx:calendar__ week"] = "Woche"; App::$strings["__ctx:calendar__ day"] = "Tag"; App::$strings["__ctx:calendar__ All day"] = "Ganztägig"; -App::$strings["view full size"] = "In Vollbildansicht anschauen"; -App::$strings["No Subject"] = "Kein Betreff"; -App::$strings["Friendica"] = "Friendica"; -App::$strings["OStatus"] = "OStatus"; -App::$strings["GNU-Social"] = "GNU-Social"; -App::$strings["RSS/Atom"] = "RSS/Atom"; -App::$strings["Diaspora"] = "Diaspora"; -App::$strings["Facebook"] = "Facebook"; -App::$strings["Zot"] = "Zot!"; -App::$strings["LinkedIn"] = "LinkedIn"; -App::$strings["XMPP/IM"] = "XMPP/IM"; -App::$strings["MySpace"] = "MySpace"; -App::$strings["Image exceeds website size limit of %lu bytes"] = "Bild überschreitet das Webseitenlimit von %lu Bytes"; -App::$strings["Image file is empty."] = "Bilddatei ist leer."; -App::$strings["Photo storage failed."] = "Fotospeicherung fehlgeschlagen."; -App::$strings["a new photo"] = "ein neues Foto"; -App::$strings["__ctx:photo_upload__ %1\$s posted %2\$s to %3\$s"] = "%1\$s hat %2\$s auf %3\$s veröffentlicht"; -App::$strings["Upload New Photos"] = "Neue Fotos hochladen"; +App::$strings["%d invitation available"] = array( + 0 => "%d Einladung verfügbar", + 1 => "%d Einladungen verfügbar", +); +App::$strings["Find Channels"] = "Finde Kanäle"; +App::$strings["Enter name or interest"] = "Name oder Interessen eingeben"; +App::$strings["Connect/Follow"] = "Verbinden/Folgen"; +App::$strings["Examples: Robert Morgenstein, Fishing"] = "Beispiele: Robert Morgenstein, Angeln"; +App::$strings["Random Profile"] = "Zufallsprofil"; +App::$strings["Invite Friends"] = "Lade Freunde ein"; +App::$strings["Advanced example: name=fred and country=iceland"] = "Fortgeschrittenes Beispiel: name=fred and country=iceland"; +App::$strings["%d connection in common"] = array( + 0 => "%d gemeinsame Verbindung", + 1 => "%d gemeinsame Verbindungen", +); +App::$strings["show more"] = "mehr zeigen"; +App::$strings["Directory Options"] = "Verzeichnisoptionen"; +App::$strings["Safe Mode"] = "Sicherer Modus"; +App::$strings["Public Forums Only"] = "Nur öffentliche Foren"; +App::$strings["This Website Only"] = "Nur dieser Hub"; +App::$strings["No recipient provided."] = "Kein Empfänger angegeben"; +App::$strings["[no subject]"] = "[no subject]"; +App::$strings["Unable to determine sender."] = "Kann Absender nicht bestimmen."; +App::$strings["Stored post could not be verified."] = "Gespeicherter Beitrag konnten nicht überprüft werden."; +App::$strings["Who can see this?"] = "Wer kann das sehen?"; +App::$strings["Custom selection"] = "Benutzerdefinierte Auswahl"; +App::$strings["Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit the scope of \"Show\"."] = "Wähle \"Anzeigen\", um Betrachtung zuzulassen. \"Nicht anzeigen\" überstimmt und limitiert den Aktionsradius von \"Anzeigen\" für Ausnahmen."; +App::$strings["Show"] = "Anzeigen"; +App::$strings["Don't show"] = "Nicht anzeigen"; +App::$strings["Other networks and post services"] = "Andere Netzwerke und Platformen"; +App::$strings["Post permissions %s cannot be changed %s after a post is shared.
These permissions set who is allowed to view the post."] = "Beitragsberechtigungen %s können nicht geändert werden %s, nachdem der Beitrag gesendet wurde.
Diese Berechtigungen bestimmen, wer den Beitrag sehen kann."; +App::$strings["Birthday"] = "Geburtstag"; +App::$strings["Age: "] = "Alter:"; +App::$strings["YYYY-MM-DD or MM-DD"] = "JJJJ-MM-TT oder MM-TT"; +App::$strings["never"] = "Nie"; +App::$strings["less than a second ago"] = "Vor weniger als einer Sekunde"; +App::$strings["__ctx:e.g. 22 hours ago, 1 minute ago__ %1\$d %2\$s ago"] = "vor %1\$d %2\$s"; +App::$strings["__ctx:relative_date__ year"] = array( + 0 => "Jahr", + 1 => "Jahre", +); +App::$strings["__ctx:relative_date__ month"] = array( + 0 => "Monat", + 1 => "Monate", +); +App::$strings["__ctx:relative_date__ week"] = array( + 0 => "Woche", + 1 => "Wochen", +); +App::$strings["__ctx:relative_date__ day"] = array( + 0 => "Tag", + 1 => "Tage", +); +App::$strings["__ctx:relative_date__ hour"] = array( + 0 => "Stunde", + 1 => "Stunden", +); +App::$strings["__ctx:relative_date__ minute"] = array( + 0 => "Minute", + 1 => "Minuten", +); +App::$strings["__ctx:relative_date__ second"] = array( + 0 => "Sekunde", + 1 => "Sekunden", +); +App::$strings["%1\$s's birthday"] = "%1\$ss Geburtstag"; +App::$strings["Happy Birthday %1\$s"] = "Alles Gute zum Geburtstag, %1\$s"; +App::$strings["Public Timeline"] = "Öffentliche Zeitleiste"; App::$strings["Invalid data packet"] = "Ungültiges Datenpaket"; App::$strings["Unable to verify channel signature"] = "Konnte die Signatur des Kanals nicht verifizieren"; App::$strings["Unable to verify site signature for %s"] = "Kann die Signatur der Seite von %s nicht verifizieren"; App::$strings["invalid target signature"] = "Ungültige Signatur des Ziels"; -App::$strings["New Page"] = "Neue Seite"; -App::$strings["Title"] = "Titel"; -App::$strings["Can view my normal stream and posts"] = "Kann meine normalen Beiträge sehen"; -App::$strings["Can view my default channel profile"] = "Kann mein Standardprofil sehen"; -App::$strings["Can view my connections"] = "Kann meine Verbindungen sehen"; -App::$strings["Can view my file storage and photos"] = "Kann meine Datei- und Bilderordner sehen"; -App::$strings["Can view my webpages"] = "Kann meine Webseiten sehen"; -App::$strings["Can send me their channel stream and posts"] = "Kann mir die Beiträge aus seinem/ihrem Kanal schicken"; -App::$strings["Can post on my channel page (\"wall\")"] = "Kann auf meiner Kanal-Seite (\"wall\") Beiträge veröffentlichen"; -App::$strings["Can comment on or like my posts"] = "Darf meine Beiträge kommentieren und mögen/nicht mögen"; -App::$strings["Can send me private mail messages"] = "Kann mir private Nachrichten schicken"; -App::$strings["Can like/dislike stuff"] = "Kann andere Elemente mögen/nicht mögen"; -App::$strings["Profiles and things other than posts/comments"] = "Profile und alles außer Beiträge und Kommentare"; -App::$strings["Can forward to all my channel contacts via post @mentions"] = "Kann an alle meine Kontakte via @-Erwähnung Nachrichten weiterleiten"; -App::$strings["Advanced - useful for creating group forum channels"] = "Fortgeschritten - sinnvoll, um Gruppen-Kanäle/-Foren zu erstellen"; -App::$strings["Can chat with me (when available)"] = "Kann mit mir chatten (wenn verfügbar)"; -App::$strings["Can write to my file storage and photos"] = "Kann in meine Datei- und Bilderordner schreiben"; -App::$strings["Can edit my webpages"] = "Kann meine Webseiten bearbeiten"; -App::$strings["Can source my public posts in derived channels"] = "Kann meine öffentlichen Beiträge als Quellen für Kanäle verwenden"; -App::$strings["Somewhat advanced - very useful in open communities"] = "Etwas fortgeschritten – sehr nützlich in offenen Gemeinschaften"; -App::$strings["Can administer my channel resources"] = "Kann meine Kanäle administrieren"; -App::$strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "Sehr fortgeschritten. Bearbeite das nur, wenn Du genau weißt, was Du tust"; -App::$strings["Social Networking"] = "Soziales Netzwerk"; -App::$strings["Social - Mostly Public"] = "Soziales Netzwerk - Weitgehend öffentlich"; -App::$strings["Social - Restricted"] = "Soziales Netzwerk - Beschränkt"; -App::$strings["Social - Private"] = "Soziales Netzwerk - Privat"; -App::$strings["Community Forum"] = "Forum"; -App::$strings["Forum - Mostly Public"] = "Forum - Weitgehend öffentlich"; -App::$strings["Forum - Restricted"] = "Forum - Beschränkt"; -App::$strings["Forum - Private"] = "Forum - Privat"; -App::$strings["Feed Republish"] = "Teilen von Feeds"; -App::$strings["Feed - Mostly Public"] = "Feeds - Weitgehend öffentlich"; -App::$strings["Feed - Restricted"] = "Feeds - Beschränkt"; -App::$strings["Special Purpose"] = "Für besondere Zwecke"; -App::$strings["Special - Celebrity/Soapbox"] = "Speziell - Mitteilungs-Kanal (keine Kommentare)"; -App::$strings["Special - Group Repository"] = "Speziell - Gruppenarchiv"; -App::$strings["Custom/Expert Mode"] = "Benutzerdefiniert/Expertenmodus"; -App::$strings[" and "] = "und"; -App::$strings["public profile"] = "öffentliches Profil"; -App::$strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s hat %2\$s auf “%3\$s” geändert"; -App::$strings["Visit %1\$s's %2\$s"] = "Besuche %1\$s's %2\$s"; -App::$strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s hat ein aktualisiertes %2\$s, %3\$s wurde verändert."; -App::$strings["Attachments:"] = "Anhänge:"; -App::$strings["\$Projectname event notification:"] = "\$Projectname-Terminbenachrichtigung:"; App::$strings["Focus (Hubzilla default)"] = "Focus (Voreinstellung für Hubzilla)"; App::$strings["Theme settings"] = "Theme-Einstellungen"; App::$strings["Select scheme"] = "Schema wählen"; @@ -2294,6 +2333,7 @@ App::$strings["__ctx:opensearch__ \$Projectname"] = "\$Projectname"; App::$strings["Update %s failed. See error logs."] = "Aktualisierung %s fehlgeschlagen. Details in den Fehlerprotokollen."; App::$strings["Update Error at %s"] = "Aktualisierungsfehler auf %s"; App::$strings["Create an account to access services and applications within the Hubzilla"] = "Erstelle ein Konto, um Anwendungen und Dienste innerhalb von Hubzilla nutzen zu können."; +App::$strings["Login/Email"] = "Anmelden/E-Mail"; App::$strings["Password"] = "Kennwort"; App::$strings["Remember me"] = "Angaben speichern"; App::$strings["Forgot your password?"] = "Passwort vergessen?"; diff --git a/view/es-es/hmessages.po b/view/es-es/hmessages.po index d7a918c55..8cad587d6 100644 --- a/view/es-es/hmessages.po +++ b/view/es-es/hmessages.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: Redmatrix\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-06-10 00:02-0700\n" -"PO-Revision-Date: 2016-06-10 18:33+0000\n" -"Last-Translator: Manuel Jiménez Friaza \n" +"POT-Creation-Date: 2016-07-22 00:02-0700\n" +"PO-Revision-Date: 2016-07-25 08:54+0000\n" +"Last-Translator: fabrixxm \n" "Language-Team: Spanish (Spain) (http://www.transifex.com/Friendica/red-matrix/language/es_ES/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -23,11 +23,156 @@ msgstr "" "Language: es_ES\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ../../Zotlabs/Access/PermissionRoles.php:182 +#: ../../include/permissions.php:904 +msgid "Social Networking" +msgstr "Redes sociales" + +#: ../../Zotlabs/Access/PermissionRoles.php:183 +#: ../../include/permissions.php:904 +msgid "Social - Mostly Public" +msgstr "Social - Público en su mayor parte" + +#: ../../Zotlabs/Access/PermissionRoles.php:184 +#: ../../include/permissions.php:904 +msgid "Social - Restricted" +msgstr "Social - Restringido" + +#: ../../Zotlabs/Access/PermissionRoles.php:185 +#: ../../include/permissions.php:904 +msgid "Social - Private" +msgstr "Social - Privado" + +#: ../../Zotlabs/Access/PermissionRoles.php:188 +#: ../../include/permissions.php:905 +msgid "Community Forum" +msgstr "Foro de discusión" + +#: ../../Zotlabs/Access/PermissionRoles.php:189 +#: ../../include/permissions.php:905 +msgid "Forum - Mostly Public" +msgstr "Foro - Público en su mayor parte" + +#: ../../Zotlabs/Access/PermissionRoles.php:190 +#: ../../include/permissions.php:905 +msgid "Forum - Restricted" +msgstr "Foro - Restringido" + +#: ../../Zotlabs/Access/PermissionRoles.php:191 +#: ../../include/permissions.php:905 +msgid "Forum - Private" +msgstr "Foro - Privado" + +#: ../../Zotlabs/Access/PermissionRoles.php:194 +#: ../../include/permissions.php:906 +msgid "Feed Republish" +msgstr "Republicar un \"feed\"" + +#: ../../Zotlabs/Access/PermissionRoles.php:195 +#: ../../include/permissions.php:906 +msgid "Feed - Mostly Public" +msgstr "Feed - Público en su mayor parte" + +#: ../../Zotlabs/Access/PermissionRoles.php:196 +#: ../../include/permissions.php:906 +msgid "Feed - Restricted" +msgstr "Feed - Restringido" + +#: ../../Zotlabs/Access/PermissionRoles.php:199 +#: ../../include/permissions.php:907 +msgid "Special Purpose" +msgstr "Propósito especial" + +#: ../../Zotlabs/Access/PermissionRoles.php:200 +#: ../../include/permissions.php:907 +msgid "Special - Celebrity/Soapbox" +msgstr "Especial - Celebridad / Tribuna improvisada" + +#: ../../Zotlabs/Access/PermissionRoles.php:201 +#: ../../include/permissions.php:907 +msgid "Special - Group Repository" +msgstr "Especial - Repositorio de grupo" + +#: ../../Zotlabs/Access/PermissionRoles.php:204 ../../include/selectors.php:49 +#: ../../include/selectors.php:66 ../../include/selectors.php:104 +#: ../../include/selectors.php:140 ../../include/permissions.php:908 +msgid "Other" +msgstr "Otro" + +#: ../../Zotlabs/Access/PermissionRoles.php:205 +#: ../../include/permissions.php:908 +msgid "Custom/Expert Mode" +msgstr "Modo personalizado/experto" + +#: ../../Zotlabs/Access/Permissions.php:30 +msgid "Can view my channel stream and posts" +msgstr "" + +#: ../../Zotlabs/Access/Permissions.php:31 ../../include/permissions.php:33 +msgid "Can send me their channel stream and posts" +msgstr "Se me pueden enviar entradas y contenido de un canal" + +#: ../../Zotlabs/Access/Permissions.php:32 ../../include/permissions.php:27 +msgid "Can view my default channel profile" +msgstr "Puede verse mi perfil de canal predeterminado." + +#: ../../Zotlabs/Access/Permissions.php:33 ../../include/permissions.php:28 +msgid "Can view my connections" +msgstr "Pueden verse mis conexiones" + +#: ../../Zotlabs/Access/Permissions.php:34 ../../include/permissions.php:29 +msgid "Can view my file storage and photos" +msgstr "Pueden verse mi repositorio de ficheros y mis fotos" + +#: ../../Zotlabs/Access/Permissions.php:35 +msgid "Can upload/modify my file storage and photos" +msgstr "" + +#: ../../Zotlabs/Access/Permissions.php:36 +msgid "Can view my channel webpages" +msgstr "" + +#: ../../Zotlabs/Access/Permissions.php:37 +msgid "Can create/edit my channel webpages" +msgstr "" + +#: ../../Zotlabs/Access/Permissions.php:38 +msgid "Can post on my channel (wall) page" +msgstr "" + +#: ../../Zotlabs/Access/Permissions.php:39 ../../include/permissions.php:35 +msgid "Can comment on or like my posts" +msgstr "Pueden publicarse comentarios en mis publicaciones o marcar mis entradas con 'me gusta'." + +#: ../../Zotlabs/Access/Permissions.php:40 ../../include/permissions.php:36 +msgid "Can send me private mail messages" +msgstr "Se me pueden enviar mensajes privados" + +#: ../../Zotlabs/Access/Permissions.php:41 +msgid "Can like/dislike profiles and profile things" +msgstr "" + +#: ../../Zotlabs/Access/Permissions.php:42 +msgid "Can forward to all my channel connections via @+ mentions in posts" +msgstr "" + +#: ../../Zotlabs/Access/Permissions.php:43 +msgid "Can chat with me" +msgstr "" + +#: ../../Zotlabs/Access/Permissions.php:44 ../../include/permissions.php:44 +msgid "Can source my public posts in derived channels" +msgstr "Pueden utilizarse mis publicaciones públicas como origen de contenidos en canales derivados" + +#: ../../Zotlabs/Access/Permissions.php:45 +msgid "Can administer my channel" +msgstr "" + #: ../../Zotlabs/Storage/Browser.php:107 ../../Zotlabs/Storage/Browser.php:239 msgid "parent" msgstr "padre" -#: ../../Zotlabs/Storage/Browser.php:131 ../../include/text.php:2620 +#: ../../Zotlabs/Storage/Browser.php:131 ../../include/text.php:2605 msgid "Collection" msgstr "Colección" @@ -51,16 +196,17 @@ msgstr "Programar bandeja de entrada" msgid "Schedule Outbox" msgstr "Programar bandeja de salida" -#: ../../Zotlabs/Storage/Browser.php:164 ../../Zotlabs/Module/Photos.php:798 -#: ../../Zotlabs/Module/Photos.php:1243 ../../Zotlabs/Lib/Apps.php:486 -#: ../../Zotlabs/Lib/Apps.php:561 ../../include/widgets.php:1505 -#: ../../include/conversation.php:1032 +#: ../../Zotlabs/Storage/Browser.php:164 ../../Zotlabs/Module/Photos.php:796 +#: ../../Zotlabs/Module/Photos.php:1241 +#: ../../Zotlabs/Module/Embedphotos.php:147 ../../Zotlabs/Lib/Apps.php:490 +#: ../../Zotlabs/Lib/Apps.php:565 ../../include/conversation.php:1035 +#: ../../include/widgets.php:1599 msgid "Unknown" msgstr "Desconocido" #: ../../Zotlabs/Storage/Browser.php:226 ../../Zotlabs/Module/Fbrowser.php:85 -#: ../../Zotlabs/Lib/Apps.php:216 ../../include/nav.php:93 -#: ../../include/conversation.php:1639 +#: ../../Zotlabs/Lib/Apps.php:217 ../../include/nav.php:93 +#: ../../include/conversation.php:1654 msgid "Files" msgstr "Ficheros" @@ -73,22 +219,23 @@ msgid "Shared" msgstr "Compartido" #: ../../Zotlabs/Storage/Browser.php:230 ../../Zotlabs/Storage/Browser.php:306 -#: ../../Zotlabs/Module/Blocks.php:156 ../../Zotlabs/Module/Layouts.php:182 -#: ../../Zotlabs/Module/Menu.php:118 ../../Zotlabs/Module/New_channel.php:142 -#: ../../Zotlabs/Module/Webpages.php:186 +#: ../../Zotlabs/Module/Layouts.php:184 ../../Zotlabs/Module/Menu.php:118 +#: ../../Zotlabs/Module/New_channel.php:142 +#: ../../Zotlabs/Module/Blocks.php:159 ../../Zotlabs/Module/Webpages.php:193 msgid "Create" msgstr "Crear" #: ../../Zotlabs/Storage/Browser.php:231 ../../Zotlabs/Storage/Browser.php:308 #: ../../Zotlabs/Module/Cover_photo.php:357 -#: ../../Zotlabs/Module/Photos.php:825 ../../Zotlabs/Module/Photos.php:1364 -#: ../../Zotlabs/Module/Profile_photo.php:368 ../../include/widgets.php:1518 +#: ../../Zotlabs/Module/Photos.php:823 ../../Zotlabs/Module/Photos.php:1362 +#: ../../Zotlabs/Module/Profile_photo.php:390 +#: ../../Zotlabs/Module/Embedphotos.php:159 ../../include/widgets.php:1612 msgid "Upload" msgstr "Subir" #: ../../Zotlabs/Storage/Browser.php:235 ../../Zotlabs/Module/Chat.php:247 -#: ../../Zotlabs/Module/Admin.php:1223 ../../Zotlabs/Module/Settings.php:592 -#: ../../Zotlabs/Module/Settings.php:618 +#: ../../Zotlabs/Module/Admin.php:1223 ../../Zotlabs/Module/Settings.php:646 +#: ../../Zotlabs/Module/Settings.php:672 #: ../../Zotlabs/Module/Sharedwithme.php:99 msgid "Name" msgstr "Nombre" @@ -98,7 +245,7 @@ msgid "Type" msgstr "Tipo" #: ../../Zotlabs/Storage/Browser.php:237 -#: ../../Zotlabs/Module/Sharedwithme.php:101 ../../include/text.php:1344 +#: ../../Zotlabs/Module/Sharedwithme.php:101 ../../include/text.php:1324 msgid "Size" msgstr "Tamaño" @@ -107,34 +254,32 @@ msgstr "Tamaño" msgid "Last Modified" msgstr "Última modificación" -#: ../../Zotlabs/Storage/Browser.php:240 ../../Zotlabs/Module/Blocks.php:157 -#: ../../Zotlabs/Module/Editblock.php:109 +#: ../../Zotlabs/Storage/Browser.php:240 ../../Zotlabs/Module/Editpost.php:84 #: ../../Zotlabs/Module/Connections.php:290 #: ../../Zotlabs/Module/Connections.php:310 -#: ../../Zotlabs/Module/Editpost.php:84 -#: ../../Zotlabs/Module/Editlayout.php:113 -#: ../../Zotlabs/Module/Editwebpage.php:146 -#: ../../Zotlabs/Module/Layouts.php:190 ../../Zotlabs/Module/Menu.php:112 -#: ../../Zotlabs/Module/Admin.php:2113 ../../Zotlabs/Module/Settings.php:652 -#: ../../Zotlabs/Module/Thing.php:260 ../../Zotlabs/Module/Webpages.php:187 -#: ../../Zotlabs/Lib/Apps.php:337 ../../Zotlabs/Lib/ThreadItem.php:106 -#: ../../include/channel.php:937 ../../include/channel.php:941 -#: ../../include/menu.php:108 ../../include/page_widgets.php:8 -#: ../../include/page_widgets.php:36 +#: ../../Zotlabs/Module/Editlayout.php:114 +#: ../../Zotlabs/Module/Editwebpage.php:145 +#: ../../Zotlabs/Module/Layouts.php:192 ../../Zotlabs/Module/Menu.php:112 +#: ../../Zotlabs/Module/Admin.php:2113 ../../Zotlabs/Module/Blocks.php:160 +#: ../../Zotlabs/Module/Editblock.php:109 +#: ../../Zotlabs/Module/Settings.php:706 ../../Zotlabs/Module/Thing.php:260 +#: ../../Zotlabs/Module/Webpages.php:194 ../../Zotlabs/Lib/Apps.php:341 +#: ../../Zotlabs/Lib/ThreadItem.php:106 ../../include/page_widgets.php:9 +#: ../../include/page_widgets.php:39 ../../include/channel.php:976 +#: ../../include/channel.php:980 ../../include/menu.php:108 msgid "Edit" msgstr "Editar" -#: ../../Zotlabs/Storage/Browser.php:241 ../../Zotlabs/Module/Blocks.php:159 -#: ../../Zotlabs/Module/Connedit.php:572 -#: ../../Zotlabs/Module/Editblock.php:134 +#: ../../Zotlabs/Storage/Browser.php:241 ../../Zotlabs/Module/Connedit.php:602 #: ../../Zotlabs/Module/Connections.php:263 -#: ../../Zotlabs/Module/Editlayout.php:136 -#: ../../Zotlabs/Module/Editwebpage.php:170 ../../Zotlabs/Module/Group.php:177 -#: ../../Zotlabs/Module/Photos.php:1173 ../../Zotlabs/Module/Admin.php:1039 +#: ../../Zotlabs/Module/Editlayout.php:137 +#: ../../Zotlabs/Module/Editwebpage.php:169 ../../Zotlabs/Module/Group.php:177 +#: ../../Zotlabs/Module/Photos.php:1171 ../../Zotlabs/Module/Admin.php:1039 #: ../../Zotlabs/Module/Admin.php:1213 ../../Zotlabs/Module/Admin.php:2114 -#: ../../Zotlabs/Module/Settings.php:653 ../../Zotlabs/Module/Thing.php:261 -#: ../../Zotlabs/Module/Webpages.php:189 ../../Zotlabs/Lib/Apps.php:338 -#: ../../Zotlabs/Lib/ThreadItem.php:126 ../../include/conversation.php:657 +#: ../../Zotlabs/Module/Blocks.php:162 ../../Zotlabs/Module/Editblock.php:134 +#: ../../Zotlabs/Module/Settings.php:707 ../../Zotlabs/Module/Thing.php:261 +#: ../../Zotlabs/Module/Webpages.php:196 ../../Zotlabs/Lib/Apps.php:342 +#: ../../Zotlabs/Lib/ThreadItem.php:126 ../../include/conversation.php:660 msgid "Delete" msgstr "Eliminar" @@ -160,74 +305,73 @@ msgstr "Crear nueva carpeta" msgid "Upload file" msgstr "Subir fichero" -#: ../../Zotlabs/Web/WebServer.php:120 ../../Zotlabs/Module/Dreport.php:10 -#: ../../Zotlabs/Module/Dreport.php:49 ../../Zotlabs/Module/Group.php:72 -#: ../../Zotlabs/Module/Like.php:284 ../../Zotlabs/Module/Import_items.php:112 +#: ../../Zotlabs/Web/WebServer.php:127 ../../Zotlabs/Module/Dreport.php:10 +#: ../../Zotlabs/Module/Dreport.php:66 ../../Zotlabs/Module/Group.php:72 +#: ../../Zotlabs/Module/Like.php:283 ../../Zotlabs/Module/Import_items.php:114 #: ../../Zotlabs/Module/Profperm.php:28 ../../Zotlabs/Module/Subthread.php:62 -#: ../../include/items.php:385 +#: ../../include/items.php:384 msgid "Permission denied" msgstr "Permiso denegado" -#: ../../Zotlabs/Web/WebServer.php:121 ../../Zotlabs/Web/Router.php:65 -#: ../../Zotlabs/Module/Achievements.php:34 ../../Zotlabs/Module/Blocks.php:73 -#: ../../Zotlabs/Module/Blocks.php:80 ../../Zotlabs/Module/Channel.php:105 -#: ../../Zotlabs/Module/Channel.php:226 ../../Zotlabs/Module/Channel.php:267 -#: ../../Zotlabs/Module/Chat.php:100 ../../Zotlabs/Module/Chat.php:105 -#: ../../Zotlabs/Module/Authtest.php:16 ../../Zotlabs/Module/Block.php:26 -#: ../../Zotlabs/Module/Block.php:76 ../../Zotlabs/Module/Bookmarks.php:61 -#: ../../Zotlabs/Module/Connedit.php:366 ../../Zotlabs/Module/Editblock.php:67 -#: ../../Zotlabs/Module/Common.php:39 ../../Zotlabs/Module/Connections.php:33 +#: ../../Zotlabs/Web/WebServer.php:128 ../../Zotlabs/Web/Router.php:65 +#: ../../Zotlabs/Module/Achievements.php:34 +#: ../../Zotlabs/Module/Connedit.php:390 ../../Zotlabs/Module/Id.php:76 +#: ../../Zotlabs/Module/Authtest.php:16 ../../Zotlabs/Module/Events.php:264 +#: ../../Zotlabs/Module/Bookmarks.php:61 ../../Zotlabs/Module/Editpost.php:17 +#: ../../Zotlabs/Module/Page.php:35 ../../Zotlabs/Module/Page.php:91 +#: ../../Zotlabs/Module/Connections.php:33 #: ../../Zotlabs/Module/Cover_photo.php:277 -#: ../../Zotlabs/Module/Cover_photo.php:290 -#: ../../Zotlabs/Module/Editpost.php:17 ../../Zotlabs/Module/Events.php:265 -#: ../../Zotlabs/Module/Editlayout.php:67 +#: ../../Zotlabs/Module/Cover_photo.php:290 ../../Zotlabs/Module/Chat.php:100 +#: ../../Zotlabs/Module/Chat.php:105 ../../Zotlabs/Module/Editlayout.php:67 #: ../../Zotlabs/Module/Editlayout.php:90 -#: ../../Zotlabs/Module/Editwebpage.php:69 -#: ../../Zotlabs/Module/Editwebpage.php:90 -#: ../../Zotlabs/Module/Editwebpage.php:105 -#: ../../Zotlabs/Module/Editwebpage.php:127 ../../Zotlabs/Module/Group.php:13 -#: ../../Zotlabs/Module/Api.php:13 ../../Zotlabs/Module/Api.php:18 -#: ../../Zotlabs/Module/Filestorage.php:24 -#: ../../Zotlabs/Module/Filestorage.php:79 -#: ../../Zotlabs/Module/Filestorage.php:94 -#: ../../Zotlabs/Module/Filestorage.php:121 ../../Zotlabs/Module/Item.php:210 -#: ../../Zotlabs/Module/Item.php:218 ../../Zotlabs/Module/Item.php:1070 +#: ../../Zotlabs/Module/Editwebpage.php:68 +#: ../../Zotlabs/Module/Editwebpage.php:89 +#: ../../Zotlabs/Module/Editwebpage.php:104 +#: ../../Zotlabs/Module/Editwebpage.php:126 ../../Zotlabs/Module/Group.php:13 +#: ../../Zotlabs/Module/Appman.php:75 ../../Zotlabs/Module/Pdledit.php:26 +#: ../../Zotlabs/Module/Filestorage.php:23 +#: ../../Zotlabs/Module/Filestorage.php:78 +#: ../../Zotlabs/Module/Filestorage.php:93 +#: ../../Zotlabs/Module/Filestorage.php:120 #: ../../Zotlabs/Module/Layouts.php:71 ../../Zotlabs/Module/Layouts.php:78 -#: ../../Zotlabs/Module/Layouts.php:89 ../../Zotlabs/Module/Id.php:76 -#: ../../Zotlabs/Module/Like.php:181 ../../Zotlabs/Module/Invite.php:17 -#: ../../Zotlabs/Module/Invite.php:91 ../../Zotlabs/Module/Locs.php:87 -#: ../../Zotlabs/Module/Mail.php:129 ../../Zotlabs/Module/Manage.php:10 -#: ../../Zotlabs/Module/Menu.php:78 ../../Zotlabs/Module/Message.php:18 -#: ../../Zotlabs/Module/Mood.php:116 ../../Zotlabs/Module/Network.php:17 +#: ../../Zotlabs/Module/Layouts.php:89 ../../Zotlabs/Module/Like.php:181 +#: ../../Zotlabs/Module/Profiles.php:203 ../../Zotlabs/Module/Profiles.php:601 +#: ../../Zotlabs/Module/Item.php:213 ../../Zotlabs/Module/Item.php:221 +#: ../../Zotlabs/Module/Item.php:1071 ../../Zotlabs/Module/Photos.php:73 +#: ../../Zotlabs/Module/Invite.php:17 ../../Zotlabs/Module/Invite.php:91 +#: ../../Zotlabs/Module/Locs.php:87 ../../Zotlabs/Module/Mail.php:121 +#: ../../Zotlabs/Module/Manage.php:10 ../../Zotlabs/Module/Menu.php:78 +#: ../../Zotlabs/Module/Message.php:18 ../../Zotlabs/Module/Mood.php:116 +#: ../../Zotlabs/Module/Network.php:15 ../../Zotlabs/Module/Channel.php:104 +#: ../../Zotlabs/Module/Channel.php:225 ../../Zotlabs/Module/Channel.php:266 #: ../../Zotlabs/Module/Mitem.php:115 ../../Zotlabs/Module/New_channel.php:77 #: ../../Zotlabs/Module/New_channel.php:104 -#: ../../Zotlabs/Module/Notifications.php:70 -#: ../../Zotlabs/Module/Photos.php:75 ../../Zotlabs/Module/Page.php:35 -#: ../../Zotlabs/Module/Page.php:90 ../../Zotlabs/Module/Pdledit.php:26 -#: ../../Zotlabs/Module/Poke.php:137 ../../Zotlabs/Module/Profile.php:68 -#: ../../Zotlabs/Module/Profile.php:76 ../../Zotlabs/Module/Profiles.php:203 -#: ../../Zotlabs/Module/Profiles.php:601 -#: ../../Zotlabs/Module/Profile_photo.php:256 -#: ../../Zotlabs/Module/Profile_photo.php:269 -#: ../../Zotlabs/Module/Rate.php:113 ../../Zotlabs/Module/Appman.php:75 -#: ../../Zotlabs/Module/Register.php:77 ../../Zotlabs/Module/Regmod.php:21 +#: ../../Zotlabs/Module/Notifications.php:70 ../../Zotlabs/Module/Poke.php:137 +#: ../../Zotlabs/Module/Profile.php:68 ../../Zotlabs/Module/Profile.php:76 +#: ../../Zotlabs/Module/Block.php:26 ../../Zotlabs/Module/Block.php:76 +#: ../../Zotlabs/Module/Profile_photo.php:265 +#: ../../Zotlabs/Module/Profile_photo.php:278 +#: ../../Zotlabs/Module/Blocks.php:73 ../../Zotlabs/Module/Blocks.php:80 +#: ../../Zotlabs/Module/Rate.php:113 ../../Zotlabs/Module/Editblock.php:67 +#: ../../Zotlabs/Module/Common.php:39 ../../Zotlabs/Module/Register.php:77 +#: ../../Zotlabs/Module/Regmod.php:21 #: ../../Zotlabs/Module/Service_limits.php:11 -#: ../../Zotlabs/Module/Settings.php:572 ../../Zotlabs/Module/Setup.php:215 -#: ../../Zotlabs/Module/Sharedwithme.php:11 +#: ../../Zotlabs/Module/Settings.php:626 ../../Zotlabs/Module/Setup.php:215 +#: ../../Zotlabs/Module/Sharedwithme.php:11 ../../Zotlabs/Module/Thing.php:274 +#: ../../Zotlabs/Module/Thing.php:294 ../../Zotlabs/Module/Thing.php:331 #: ../../Zotlabs/Module/Sources.php:74 ../../Zotlabs/Module/Suggest.php:30 -#: ../../Zotlabs/Module/Thing.php:274 ../../Zotlabs/Module/Thing.php:294 -#: ../../Zotlabs/Module/Thing.php:331 -#: ../../Zotlabs/Module/Viewconnections.php:25 -#: ../../Zotlabs/Module/Viewconnections.php:30 -#: ../../Zotlabs/Module/Viewsrc.php:18 ../../Zotlabs/Module/Webpages.php:74 -#: ../../Zotlabs/Lib/Chatroom.php:137 ../../include/items.php:3438 -#: ../../include/attach.php:141 ../../include/attach.php:189 -#: ../../include/attach.php:252 ../../include/attach.php:266 -#: ../../include/attach.php:273 ../../include/attach.php:338 -#: ../../include/attach.php:352 ../../include/attach.php:359 -#: ../../include/attach.php:437 ../../include/attach.php:895 -#: ../../include/attach.php:966 ../../include/attach.php:1118 -#: ../../include/photos.php:27 +#: ../../Zotlabs/Module/Webpages.php:73 +#: ../../Zotlabs/Module/Viewconnections.php:28 +#: ../../Zotlabs/Module/Viewconnections.php:33 +#: ../../Zotlabs/Module/Viewsrc.php:18 ../../Zotlabs/Module/Api.php:13 +#: ../../Zotlabs/Module/Api.php:18 ../../Zotlabs/Lib/Chatroom.php:137 +#: ../../include/photos.php:27 ../../include/attach.php:141 +#: ../../include/attach.php:189 ../../include/attach.php:252 +#: ../../include/attach.php:266 ../../include/attach.php:273 +#: ../../include/attach.php:338 ../../include/attach.php:352 +#: ../../include/attach.php:359 ../../include/attach.php:439 +#: ../../include/attach.php:901 ../../include/attach.php:972 +#: ../../include/attach.php:1124 ../../include/items.php:3448 msgid "Permission denied." msgstr "Acceso denegado." @@ -235,9 +379,9 @@ msgstr "Acceso denegado." msgid "Not Found" msgstr "No encontrado" -#: ../../Zotlabs/Web/Router.php:149 ../../Zotlabs/Module/Block.php:79 -#: ../../Zotlabs/Module/Display.php:117 ../../Zotlabs/Module/Help.php:97 -#: ../../Zotlabs/Module/Page.php:93 +#: ../../Zotlabs/Web/Router.php:149 ../../Zotlabs/Module/Display.php:118 +#: ../../Zotlabs/Module/Page.php:94 ../../Zotlabs/Module/Help.php:97 +#: ../../Zotlabs/Module/Block.php:79 msgid "Page not found." msgstr "Página no encontrada." @@ -253,13 +397,13 @@ msgstr "La autenticación desde su servidor está bloqueada. Ha iniciado sesión msgid "Welcome %s. Remote authentication successful." msgstr "Bienvenido %s. La identificación desde su servidor se ha llevado a cabo correctamente." -#: ../../Zotlabs/Module/Achievements.php:15 ../../Zotlabs/Module/Blocks.php:33 -#: ../../Zotlabs/Module/Connect.php:17 ../../Zotlabs/Module/Editblock.php:31 -#: ../../Zotlabs/Module/Editlayout.php:31 -#: ../../Zotlabs/Module/Editwebpage.php:33 -#: ../../Zotlabs/Module/Filestorage.php:60 ../../Zotlabs/Module/Hcard.php:12 -#: ../../Zotlabs/Module/Layouts.php:31 ../../Zotlabs/Module/Profile.php:20 -#: ../../Zotlabs/Module/Webpages.php:34 ../../include/channel.php:837 +#: ../../Zotlabs/Module/Achievements.php:15 +#: ../../Zotlabs/Module/Connect.php:17 ../../Zotlabs/Module/Editlayout.php:31 +#: ../../Zotlabs/Module/Editwebpage.php:32 ../../Zotlabs/Module/Hcard.php:12 +#: ../../Zotlabs/Module/Filestorage.php:59 ../../Zotlabs/Module/Layouts.php:31 +#: ../../Zotlabs/Module/Profile.php:20 ../../Zotlabs/Module/Blocks.php:33 +#: ../../Zotlabs/Module/Editblock.php:31 ../../Zotlabs/Module/Webpages.php:33 +#: ../../include/channel.php:876 msgid "Requested profile is not available." msgstr "El perfil solicitado no está disponible." @@ -267,229 +411,6 @@ msgstr "El perfil solicitado no está disponible." msgid "Some blurb about what to do when you're new here" msgstr "Algunas propuestas para el nuevo usuario sobre qué se puede hacer aquí" -#: ../../Zotlabs/Module/Blocks.php:97 ../../Zotlabs/Module/Blocks.php:152 -#: ../../Zotlabs/Module/Editblock.php:108 -msgid "Block Name" -msgstr "Nombre del bloque" - -#: ../../Zotlabs/Module/Blocks.php:151 ../../include/text.php:2265 -msgid "Blocks" -msgstr "Bloques" - -#: ../../Zotlabs/Module/Blocks.php:153 -msgid "Block Title" -msgstr "Título del bloque" - -#: ../../Zotlabs/Module/Blocks.php:154 ../../Zotlabs/Module/Layouts.php:188 -#: ../../Zotlabs/Module/Menu.php:114 ../../Zotlabs/Module/Webpages.php:198 -#: ../../include/page_widgets.php:44 -msgid "Created" -msgstr "Creado" - -#: ../../Zotlabs/Module/Blocks.php:155 ../../Zotlabs/Module/Layouts.php:189 -#: ../../Zotlabs/Module/Menu.php:115 ../../Zotlabs/Module/Webpages.php:199 -#: ../../include/page_widgets.php:45 -msgid "Edited" -msgstr "Editado" - -#: ../../Zotlabs/Module/Blocks.php:158 ../../Zotlabs/Module/Layouts.php:191 -#: ../../Zotlabs/Module/Photos.php:1072 ../../Zotlabs/Module/Webpages.php:188 -#: ../../include/conversation.php:1208 -msgid "Share" -msgstr "Compartir" - -#: ../../Zotlabs/Module/Blocks.php:163 ../../Zotlabs/Module/Layouts.php:195 -#: ../../Zotlabs/Module/Pubsites.php:47 ../../Zotlabs/Module/Webpages.php:193 -#: ../../include/page_widgets.php:39 -msgid "View" -msgstr "Ver" - -#: ../../Zotlabs/Module/Cal.php:62 ../../Zotlabs/Module/Block.php:43 -#: ../../Zotlabs/Module/Page.php:56 ../../Zotlabs/Module/Wall_upload.php:33 -msgid "Channel not found." -msgstr "Canal no encontrado." - -#: ../../Zotlabs/Module/Cal.php:69 -msgid "Permissions denied." -msgstr "Permisos denegados." - -#: ../../Zotlabs/Module/Cal.php:259 ../../Zotlabs/Module/Events.php:588 -msgid "l, F j" -msgstr "l j F" - -#: ../../Zotlabs/Module/Cal.php:308 ../../Zotlabs/Module/Events.php:637 -#: ../../include/text.php:1732 -msgid "Link to Source" -msgstr "Enlazar con la entrada en su ubicación original" - -#: ../../Zotlabs/Module/Cal.php:331 ../../Zotlabs/Module/Events.php:665 -msgid "Edit Event" -msgstr "Editar el evento" - -#: ../../Zotlabs/Module/Cal.php:331 ../../Zotlabs/Module/Events.php:665 -msgid "Create Event" -msgstr "Crear un evento" - -#: ../../Zotlabs/Module/Cal.php:332 ../../Zotlabs/Module/Cal.php:339 -#: ../../Zotlabs/Module/Events.php:666 ../../Zotlabs/Module/Events.php:673 -#: ../../Zotlabs/Module/Photos.php:949 -msgid "Previous" -msgstr "Anterior" - -#: ../../Zotlabs/Module/Cal.php:333 ../../Zotlabs/Module/Cal.php:340 -#: ../../Zotlabs/Module/Events.php:667 ../../Zotlabs/Module/Events.php:674 -#: ../../Zotlabs/Module/Photos.php:958 ../../Zotlabs/Module/Setup.php:267 -msgid "Next" -msgstr "Siguiente" - -#: ../../Zotlabs/Module/Cal.php:334 ../../Zotlabs/Module/Events.php:668 -#: ../../include/widgets.php:755 -msgid "Export" -msgstr "Exportar" - -#: ../../Zotlabs/Module/Cal.php:337 ../../Zotlabs/Module/Events.php:671 -#: ../../include/widgets.php:756 -msgid "Import" -msgstr "Importar" - -#: ../../Zotlabs/Module/Cal.php:338 ../../Zotlabs/Module/Chat.php:196 -#: ../../Zotlabs/Module/Chat.php:238 ../../Zotlabs/Module/Connect.php:98 -#: ../../Zotlabs/Module/Connedit.php:731 ../../Zotlabs/Module/Events.php:475 -#: ../../Zotlabs/Module/Events.php:672 ../../Zotlabs/Module/Group.php:85 -#: ../../Zotlabs/Module/Filestorage.php:162 -#: ../../Zotlabs/Module/Import.php:550 -#: ../../Zotlabs/Module/Import_items.php:120 -#: ../../Zotlabs/Module/Invite.php:146 ../../Zotlabs/Module/Locs.php:121 -#: ../../Zotlabs/Module/Mail.php:378 ../../Zotlabs/Module/Mood.php:139 -#: ../../Zotlabs/Module/Mitem.php:235 ../../Zotlabs/Module/Photos.php:677 -#: ../../Zotlabs/Module/Photos.php:1052 ../../Zotlabs/Module/Photos.php:1092 -#: ../../Zotlabs/Module/Photos.php:1210 ../../Zotlabs/Module/Pconfig.php:107 -#: ../../Zotlabs/Module/Pdledit.php:66 ../../Zotlabs/Module/Poke.php:186 -#: ../../Zotlabs/Module/Profiles.php:687 ../../Zotlabs/Module/Rate.php:170 -#: ../../Zotlabs/Module/Admin.php:492 ../../Zotlabs/Module/Admin.php:688 -#: ../../Zotlabs/Module/Admin.php:771 ../../Zotlabs/Module/Admin.php:1032 -#: ../../Zotlabs/Module/Admin.php:1211 ../../Zotlabs/Module/Admin.php:1421 -#: ../../Zotlabs/Module/Admin.php:1648 ../../Zotlabs/Module/Admin.php:1733 -#: ../../Zotlabs/Module/Admin.php:2116 ../../Zotlabs/Module/Appman.php:126 -#: ../../Zotlabs/Module/Settings.php:590 ../../Zotlabs/Module/Settings.php:703 -#: ../../Zotlabs/Module/Settings.php:731 ../../Zotlabs/Module/Settings.php:754 -#: ../../Zotlabs/Module/Settings.php:842 -#: ../../Zotlabs/Module/Settings.php:1034 ../../Zotlabs/Module/Setup.php:312 -#: ../../Zotlabs/Module/Setup.php:353 ../../Zotlabs/Module/Sources.php:114 -#: ../../Zotlabs/Module/Sources.php:149 ../../Zotlabs/Module/Thing.php:316 -#: ../../Zotlabs/Module/Thing.php:362 ../../Zotlabs/Module/Xchan.php:15 -#: ../../Zotlabs/Lib/ThreadItem.php:710 ../../include/widgets.php:757 -#: ../../include/widgets.php:769 ../../include/js_strings.php:22 -#: ../../view/theme/redbasic/php/config.php:99 -msgid "Submit" -msgstr "Enviar" - -#: ../../Zotlabs/Module/Cal.php:341 ../../Zotlabs/Module/Events.php:675 -msgid "Today" -msgstr "Hoy" - -#: ../../Zotlabs/Module/Channel.php:29 ../../Zotlabs/Module/Chat.php:25 -msgid "You must be logged in to see this page." -msgstr "Debe haber iniciado sesión para poder ver esta página." - -#: ../../Zotlabs/Module/Channel.php:41 -msgid "Posts and comments" -msgstr "Publicaciones y comentarios" - -#: ../../Zotlabs/Module/Channel.php:42 -msgid "Only posts" -msgstr "Solo publicaciones" - -#: ../../Zotlabs/Module/Channel.php:102 -msgid "Insufficient permissions. Request redirected to profile page." -msgstr "Permisos insuficientes. Petición redirigida a la página del perfil." - -#: ../../Zotlabs/Module/Chat.php:181 -msgid "Room not found" -msgstr "Sala no encontrada" - -#: ../../Zotlabs/Module/Chat.php:197 -msgid "Leave Room" -msgstr "Abandonar la sala" - -#: ../../Zotlabs/Module/Chat.php:198 -msgid "Delete Room" -msgstr "Eliminar esta sala" - -#: ../../Zotlabs/Module/Chat.php:199 -msgid "I am away right now" -msgstr "Estoy ausente momentáneamente" - -#: ../../Zotlabs/Module/Chat.php:200 -msgid "I am online" -msgstr "Estoy conectado/a" - -#: ../../Zotlabs/Module/Chat.php:202 -msgid "Bookmark this room" -msgstr "Añadir esta sala a Marcadores" - -#: ../../Zotlabs/Module/Chat.php:205 ../../Zotlabs/Module/Mail.php:205 -#: ../../Zotlabs/Module/Mail.php:314 ../../include/conversation.php:1176 -msgid "Please enter a link URL:" -msgstr "Por favor, introduzca la dirección del enlace:" - -#: ../../Zotlabs/Module/Chat.php:206 ../../Zotlabs/Module/Mail.php:258 -#: ../../Zotlabs/Module/Mail.php:383 ../../Zotlabs/Lib/ThreadItem.php:722 -#: ../../include/conversation.php:1256 -msgid "Encrypt text" -msgstr "Cifrar texto" - -#: ../../Zotlabs/Module/Chat.php:207 ../../Zotlabs/Module/Editblock.php:111 -#: ../../Zotlabs/Module/Editwebpage.php:147 ../../Zotlabs/Module/Mail.php:252 -#: ../../Zotlabs/Module/Mail.php:377 ../../include/conversation.php:1143 -msgid "Insert web link" -msgstr "Insertar enlace web" - -#: ../../Zotlabs/Module/Chat.php:218 -msgid "Feature disabled." -msgstr "Funcionalidad deshabilitada." - -#: ../../Zotlabs/Module/Chat.php:232 -msgid "New Chatroom" -msgstr "Nueva sala de chat" - -#: ../../Zotlabs/Module/Chat.php:233 -msgid "Chatroom name" -msgstr "Nombre de la sala de chat" - -#: ../../Zotlabs/Module/Chat.php:234 -msgid "Expiration of chats (minutes)" -msgstr "Caducidad de los mensajes en los chats (en minutos)" - -#: ../../Zotlabs/Module/Chat.php:235 ../../Zotlabs/Module/Filestorage.php:153 -#: ../../Zotlabs/Module/Photos.php:671 ../../Zotlabs/Module/Photos.php:1045 -#: ../../Zotlabs/Module/Thing.php:313 ../../Zotlabs/Module/Thing.php:359 -#: ../../include/acl_selectors.php:283 -msgid "Permissions" -msgstr "Permisos" - -#: ../../Zotlabs/Module/Chat.php:246 -#, php-format -msgid "%1$s's Chatrooms" -msgstr "Salas de chat de %1$s" - -#: ../../Zotlabs/Module/Chat.php:251 -msgid "No chatrooms available" -msgstr "No hay salas de chat disponibles" - -#: ../../Zotlabs/Module/Chat.php:252 ../../Zotlabs/Module/Manage.php:143 -#: ../../Zotlabs/Module/Profiles.php:778 -msgid "Create New" -msgstr "Crear" - -#: ../../Zotlabs/Module/Chat.php:255 -msgid "Expiration" -msgstr "Caducidad" - -#: ../../Zotlabs/Module/Chat.php:256 -msgid "min" -msgstr "min" - #: ../../Zotlabs/Module/Chatsvc.php:117 msgid "Away" msgstr "Ausente" @@ -498,65 +419,6 @@ msgstr "Ausente" msgid "Online" msgstr "Conectado/a" -#: ../../Zotlabs/Module/Block.php:31 ../../Zotlabs/Module/Page.php:40 -msgid "Invalid item." -msgstr "Elemento no válido." - -#: ../../Zotlabs/Module/Bookmarks.php:53 -msgid "Bookmark added" -msgstr "Marcador añadido" - -#: ../../Zotlabs/Module/Bookmarks.php:75 -msgid "My Bookmarks" -msgstr "Mis marcadores" - -#: ../../Zotlabs/Module/Bookmarks.php:86 -msgid "My Connections Bookmarks" -msgstr "Marcadores de mis conexiones" - -#: ../../Zotlabs/Module/Connect.php:61 ../../Zotlabs/Module/Connect.php:109 -msgid "Continue" -msgstr "Continuar" - -#: ../../Zotlabs/Module/Connect.php:90 -msgid "Premium Channel Setup" -msgstr "Configuración del canal premium" - -#: ../../Zotlabs/Module/Connect.php:92 -msgid "Enable premium channel connection restrictions" -msgstr "Habilitar restricciones de conexión del canal premium" - -#: ../../Zotlabs/Module/Connect.php:93 -msgid "" -"Please enter your restrictions or conditions, such as paypal receipt, usage " -"guidelines, etc." -msgstr "Por favor introduzca sus restricciones o condiciones, como recibo de paypal, normas de uso, etc." - -#: ../../Zotlabs/Module/Connect.php:95 ../../Zotlabs/Module/Connect.php:115 -msgid "" -"This channel may require additional steps or acknowledgement of the " -"following conditions prior to connecting:" -msgstr "Este canal puede requerir antes de conectar unos pasos adicionales o el conocimiento de las siguientes condiciones:" - -#: ../../Zotlabs/Module/Connect.php:96 -msgid "" -"Potential connections will then see the following text before proceeding:" -msgstr "Las posibles conexiones verán, por tanto, el siguiente texto antes de proceder:" - -#: ../../Zotlabs/Module/Connect.php:97 ../../Zotlabs/Module/Connect.php:118 -msgid "" -"By continuing, I certify that I have complied with any instructions provided" -" on this page." -msgstr "Al continuar, certifico que he cumplido con todas las instrucciones proporcionadas en esta página." - -#: ../../Zotlabs/Module/Connect.php:106 -msgid "(No specific instructions have been provided by the channel owner.)" -msgstr "(No ha sido proporcionada ninguna instrucción específica por el propietario del canal.)" - -#: ../../Zotlabs/Module/Connect.php:114 -msgid "Restricted or Premium Channel" -msgstr "Canal premium o restringido" - #: ../../Zotlabs/Module/Connedit.php:80 msgid "Could not access contact record." msgstr "No se ha podido acceder al registro de contacto." @@ -565,317 +427,350 @@ msgstr "No se ha podido acceder al registro de contacto." msgid "Could not locate selected profile." msgstr "No se ha podido localizar el perfil seleccionado." -#: ../../Zotlabs/Module/Connedit.php:227 +#: ../../Zotlabs/Module/Connedit.php:248 msgid "Connection updated." msgstr "Conexión actualizada." -#: ../../Zotlabs/Module/Connedit.php:229 +#: ../../Zotlabs/Module/Connedit.php:250 msgid "Failed to update connection record." msgstr "Error al actualizar el registro de la conexión." -#: ../../Zotlabs/Module/Connedit.php:276 +#: ../../Zotlabs/Module/Connedit.php:300 msgid "is now connected to" msgstr "ahora está conectado/a" -#: ../../Zotlabs/Module/Connedit.php:379 ../../Zotlabs/Module/Connedit.php:654 -#: ../../Zotlabs/Module/Events.php:459 ../../Zotlabs/Module/Events.php:460 -#: ../../Zotlabs/Module/Events.php:469 ../../Zotlabs/Module/Api.php:89 -#: ../../Zotlabs/Module/Filestorage.php:157 -#: ../../Zotlabs/Module/Filestorage.php:165 ../../Zotlabs/Module/Menu.php:100 -#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Mitem.php:158 -#: ../../Zotlabs/Module/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:232 -#: ../../Zotlabs/Module/Mitem.php:233 ../../Zotlabs/Module/Photos.php:666 -#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Admin.php:459 -#: ../../Zotlabs/Module/Removeme.php:61 ../../Zotlabs/Module/Settings.php:581 +#: ../../Zotlabs/Module/Connedit.php:403 ../../Zotlabs/Module/Connedit.php:685 +#: ../../Zotlabs/Module/Events.php:458 ../../Zotlabs/Module/Events.php:459 +#: ../../Zotlabs/Module/Events.php:468 +#: ../../Zotlabs/Module/Filestorage.php:156 +#: ../../Zotlabs/Module/Filestorage.php:164 +#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Photos.php:664 +#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 +#: ../../Zotlabs/Module/Mitem.php:158 ../../Zotlabs/Module/Mitem.php:159 +#: ../../Zotlabs/Module/Mitem.php:232 ../../Zotlabs/Module/Mitem.php:233 +#: ../../Zotlabs/Module/Admin.php:459 ../../Zotlabs/Module/Removeme.php:63 +#: ../../Zotlabs/Module/Settings.php:635 ../../Zotlabs/Module/Api.php:89 #: ../../include/dir_fns.php:143 ../../include/dir_fns.php:144 #: ../../include/dir_fns.php:145 ../../view/theme/redbasic/php/config.php:105 -#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1707 +#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1708 msgid "No" msgstr "No" -#: ../../Zotlabs/Module/Connedit.php:379 ../../Zotlabs/Module/Events.php:459 -#: ../../Zotlabs/Module/Events.php:460 ../../Zotlabs/Module/Events.php:469 -#: ../../Zotlabs/Module/Api.php:88 ../../Zotlabs/Module/Filestorage.php:157 -#: ../../Zotlabs/Module/Filestorage.php:165 ../../Zotlabs/Module/Menu.php:100 -#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Mitem.php:158 -#: ../../Zotlabs/Module/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:232 -#: ../../Zotlabs/Module/Mitem.php:233 ../../Zotlabs/Module/Photos.php:666 -#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Admin.php:461 -#: ../../Zotlabs/Module/Removeme.php:61 ../../Zotlabs/Module/Settings.php:581 +#: ../../Zotlabs/Module/Connedit.php:403 ../../Zotlabs/Module/Events.php:458 +#: ../../Zotlabs/Module/Events.php:459 ../../Zotlabs/Module/Events.php:468 +#: ../../Zotlabs/Module/Filestorage.php:156 +#: ../../Zotlabs/Module/Filestorage.php:164 +#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Photos.php:664 +#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 +#: ../../Zotlabs/Module/Mitem.php:158 ../../Zotlabs/Module/Mitem.php:159 +#: ../../Zotlabs/Module/Mitem.php:232 ../../Zotlabs/Module/Mitem.php:233 +#: ../../Zotlabs/Module/Admin.php:461 ../../Zotlabs/Module/Removeme.php:63 +#: ../../Zotlabs/Module/Settings.php:635 ../../Zotlabs/Module/Api.php:88 #: ../../include/dir_fns.php:143 ../../include/dir_fns.php:144 #: ../../include/dir_fns.php:145 ../../view/theme/redbasic/php/config.php:105 -#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1707 +#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1708 msgid "Yes" msgstr "Sí" -#: ../../Zotlabs/Module/Connedit.php:411 +#: ../../Zotlabs/Module/Connedit.php:435 msgid "Could not access address book record." msgstr "No se pudo acceder al registro en su libreta de direcciones." -#: ../../Zotlabs/Module/Connedit.php:425 +#: ../../Zotlabs/Module/Connedit.php:455 msgid "Refresh failed - channel is currently unavailable." msgstr "Recarga fallida - no se puede encontrar el canal en este momento." -#: ../../Zotlabs/Module/Connedit.php:440 ../../Zotlabs/Module/Connedit.php:449 -#: ../../Zotlabs/Module/Connedit.php:458 ../../Zotlabs/Module/Connedit.php:467 -#: ../../Zotlabs/Module/Connedit.php:480 +#: ../../Zotlabs/Module/Connedit.php:470 ../../Zotlabs/Module/Connedit.php:479 +#: ../../Zotlabs/Module/Connedit.php:488 ../../Zotlabs/Module/Connedit.php:497 +#: ../../Zotlabs/Module/Connedit.php:510 msgid "Unable to set address book parameters." msgstr "No ha sido posible establecer los parámetros de la libreta de direcciones." -#: ../../Zotlabs/Module/Connedit.php:503 +#: ../../Zotlabs/Module/Connedit.php:533 msgid "Connection has been removed." msgstr "La conexión ha sido eliminada." -#: ../../Zotlabs/Module/Connedit.php:519 ../../Zotlabs/Lib/Apps.php:219 -#: ../../include/nav.php:86 ../../include/conversation.php:954 +#: ../../Zotlabs/Module/Connedit.php:549 ../../Zotlabs/Lib/Apps.php:221 +#: ../../include/nav.php:86 ../../include/conversation.php:957 msgid "View Profile" msgstr "Ver el perfil" -#: ../../Zotlabs/Module/Connedit.php:522 +#: ../../Zotlabs/Module/Connedit.php:552 #, php-format msgid "View %s's profile" msgstr "Ver el perfil de %s" -#: ../../Zotlabs/Module/Connedit.php:526 +#: ../../Zotlabs/Module/Connedit.php:556 msgid "Refresh Permissions" msgstr "Recargar los permisos" -#: ../../Zotlabs/Module/Connedit.php:529 +#: ../../Zotlabs/Module/Connedit.php:559 msgid "Fetch updated permissions" msgstr "Obtener los permisos actualizados" -#: ../../Zotlabs/Module/Connedit.php:533 +#: ../../Zotlabs/Module/Connedit.php:563 msgid "Recent Activity" msgstr "Actividad reciente" -#: ../../Zotlabs/Module/Connedit.php:536 +#: ../../Zotlabs/Module/Connedit.php:566 msgid "View recent posts and comments" msgstr "Ver publicaciones y comentarios recientes" -#: ../../Zotlabs/Module/Connedit.php:540 ../../Zotlabs/Module/Admin.php:1041 +#: ../../Zotlabs/Module/Connedit.php:570 ../../Zotlabs/Module/Admin.php:1041 msgid "Unblock" msgstr "Desbloquear" -#: ../../Zotlabs/Module/Connedit.php:540 ../../Zotlabs/Module/Admin.php:1040 +#: ../../Zotlabs/Module/Connedit.php:570 ../../Zotlabs/Module/Admin.php:1040 msgid "Block" msgstr "Bloquear" -#: ../../Zotlabs/Module/Connedit.php:543 +#: ../../Zotlabs/Module/Connedit.php:573 msgid "Block (or Unblock) all communications with this connection" msgstr "Bloquear (o desbloquear) todas las comunicaciones con esta conexión" -#: ../../Zotlabs/Module/Connedit.php:544 +#: ../../Zotlabs/Module/Connedit.php:574 msgid "This connection is blocked!" msgstr "¡Esta conexión está bloqueada!" -#: ../../Zotlabs/Module/Connedit.php:548 +#: ../../Zotlabs/Module/Connedit.php:578 msgid "Unignore" msgstr "Dejar de ignorar" -#: ../../Zotlabs/Module/Connedit.php:548 +#: ../../Zotlabs/Module/Connedit.php:578 #: ../../Zotlabs/Module/Connections.php:277 #: ../../Zotlabs/Module/Notifications.php:55 msgid "Ignore" msgstr "Ignorar" -#: ../../Zotlabs/Module/Connedit.php:551 +#: ../../Zotlabs/Module/Connedit.php:581 msgid "Ignore (or Unignore) all inbound communications from this connection" msgstr "Ignorar (o dejar de ignorar) todas las comunicaciones entrantes de esta conexión" -#: ../../Zotlabs/Module/Connedit.php:552 +#: ../../Zotlabs/Module/Connedit.php:582 msgid "This connection is ignored!" msgstr "¡Esta conexión es ignorada!" -#: ../../Zotlabs/Module/Connedit.php:556 +#: ../../Zotlabs/Module/Connedit.php:586 msgid "Unarchive" msgstr "Desarchivar" -#: ../../Zotlabs/Module/Connedit.php:556 +#: ../../Zotlabs/Module/Connedit.php:586 msgid "Archive" msgstr "Archivar" -#: ../../Zotlabs/Module/Connedit.php:559 +#: ../../Zotlabs/Module/Connedit.php:589 msgid "" "Archive (or Unarchive) this connection - mark channel dead but keep content" msgstr "Archiva (o desarchiva) esta conexión - marca el canal como muerto aunque mantiene sus contenidos" -#: ../../Zotlabs/Module/Connedit.php:560 +#: ../../Zotlabs/Module/Connedit.php:590 msgid "This connection is archived!" msgstr "¡Esta conexión esta archivada!" -#: ../../Zotlabs/Module/Connedit.php:564 +#: ../../Zotlabs/Module/Connedit.php:594 msgid "Unhide" msgstr "Mostrar" -#: ../../Zotlabs/Module/Connedit.php:564 +#: ../../Zotlabs/Module/Connedit.php:594 msgid "Hide" msgstr "Ocultar" -#: ../../Zotlabs/Module/Connedit.php:567 +#: ../../Zotlabs/Module/Connedit.php:597 msgid "Hide or Unhide this connection from your other connections" msgstr "Ocultar o mostrar esta conexión a sus otras conexiones" -#: ../../Zotlabs/Module/Connedit.php:568 +#: ../../Zotlabs/Module/Connedit.php:598 msgid "This connection is hidden!" msgstr "¡Esta conexión está oculta!" -#: ../../Zotlabs/Module/Connedit.php:575 +#: ../../Zotlabs/Module/Connedit.php:605 msgid "Delete this connection" msgstr "Eliminar esta conexión" -#: ../../Zotlabs/Module/Connedit.php:590 ../../include/widgets.php:493 +#: ../../Zotlabs/Module/Connedit.php:620 ../../include/widgets.php:493 msgid "Me" msgstr "Yo" -#: ../../Zotlabs/Module/Connedit.php:591 ../../include/widgets.php:494 +#: ../../Zotlabs/Module/Connedit.php:621 ../../include/widgets.php:494 msgid "Family" msgstr "Familia" -#: ../../Zotlabs/Module/Connedit.php:592 ../../Zotlabs/Module/Settings.php:342 -#: ../../Zotlabs/Module/Settings.php:346 ../../Zotlabs/Module/Settings.php:347 -#: ../../Zotlabs/Module/Settings.php:350 ../../Zotlabs/Module/Settings.php:361 -#: ../../include/widgets.php:495 ../../include/selectors.php:123 -#: ../../include/channel.php:389 ../../include/channel.php:390 -#: ../../include/channel.php:397 +#: ../../Zotlabs/Module/Connedit.php:622 ../../Zotlabs/Module/Settings.php:391 +#: ../../Zotlabs/Module/Settings.php:395 ../../Zotlabs/Module/Settings.php:396 +#: ../../Zotlabs/Module/Settings.php:399 ../../Zotlabs/Module/Settings.php:410 +#: ../../include/channel.php:402 ../../include/channel.php:403 +#: ../../include/channel.php:410 ../../include/selectors.php:123 +#: ../../include/widgets.php:495 msgid "Friends" msgstr "Amigos/as" -#: ../../Zotlabs/Module/Connedit.php:593 ../../include/widgets.php:496 +#: ../../Zotlabs/Module/Connedit.php:623 ../../include/widgets.php:496 msgid "Acquaintances" msgstr "Conocidos/as" -#: ../../Zotlabs/Module/Connedit.php:594 +#: ../../Zotlabs/Module/Connedit.php:624 #: ../../Zotlabs/Module/Connections.php:92 #: ../../Zotlabs/Module/Connections.php:107 ../../include/widgets.php:497 msgid "All" msgstr "Todos/as" -#: ../../Zotlabs/Module/Connedit.php:654 +#: ../../Zotlabs/Module/Connedit.php:685 msgid "Approve this connection" msgstr "Aprobar esta conexión" -#: ../../Zotlabs/Module/Connedit.php:654 +#: ../../Zotlabs/Module/Connedit.php:685 msgid "Accept connection to allow communication" msgstr "Aceptar la conexión para permitir la comunicación" -#: ../../Zotlabs/Module/Connedit.php:659 +#: ../../Zotlabs/Module/Connedit.php:690 msgid "Set Affinity" msgstr "Ajustar la afinidad" -#: ../../Zotlabs/Module/Connedit.php:662 +#: ../../Zotlabs/Module/Connedit.php:693 msgid "Set Profile" msgstr "Ajustar el perfil" -#: ../../Zotlabs/Module/Connedit.php:665 +#: ../../Zotlabs/Module/Connedit.php:696 msgid "Set Affinity & Profile" msgstr "Ajustar la afinidad y el perfil" -#: ../../Zotlabs/Module/Connedit.php:698 +#: ../../Zotlabs/Module/Connedit.php:745 msgid "none" msgstr "-" -#: ../../Zotlabs/Module/Connedit.php:702 ../../include/widgets.php:614 +#: ../../Zotlabs/Module/Connedit.php:749 ../../include/widgets.php:623 msgid "Connection Default Permissions" msgstr "Permisos predeterminados de conexión" -#: ../../Zotlabs/Module/Connedit.php:702 ../../include/items.php:3926 +#: ../../Zotlabs/Module/Connedit.php:749 ../../include/items.php:3935 #, php-format msgid "Connection: %s" msgstr "Conexión: %s" -#: ../../Zotlabs/Module/Connedit.php:703 +#: ../../Zotlabs/Module/Connedit.php:750 msgid "Apply these permissions automatically" msgstr "Aplicar estos permisos automaticamente" -#: ../../Zotlabs/Module/Connedit.php:703 +#: ../../Zotlabs/Module/Connedit.php:750 msgid "Connection requests will be approved without your interaction" msgstr "Las solicitudes de conexión serán aprobadas sin su intervención" -#: ../../Zotlabs/Module/Connedit.php:705 +#: ../../Zotlabs/Module/Connedit.php:752 msgid "This connection's primary address is" msgstr "La dirección primaria de esta conexión es" -#: ../../Zotlabs/Module/Connedit.php:706 +#: ../../Zotlabs/Module/Connedit.php:753 msgid "Available locations:" msgstr "Ubicaciones disponibles:" -#: ../../Zotlabs/Module/Connedit.php:710 +#: ../../Zotlabs/Module/Connedit.php:757 msgid "" "The permissions indicated on this page will be applied to all new " "connections." msgstr "Los permisos indicados en esta página serán aplicados en todas las nuevas conexiones." -#: ../../Zotlabs/Module/Connedit.php:711 +#: ../../Zotlabs/Module/Connedit.php:758 msgid "Connection Tools" msgstr "Gestión de las conexiones" -#: ../../Zotlabs/Module/Connedit.php:713 +#: ../../Zotlabs/Module/Connedit.php:760 msgid "Slide to adjust your degree of friendship" msgstr "Deslizar para ajustar el grado de amistad" -#: ../../Zotlabs/Module/Connedit.php:714 ../../Zotlabs/Module/Rate.php:159 +#: ../../Zotlabs/Module/Connedit.php:761 ../../Zotlabs/Module/Rate.php:159 #: ../../include/js_strings.php:20 msgid "Rating" msgstr "Valoración" -#: ../../Zotlabs/Module/Connedit.php:715 +#: ../../Zotlabs/Module/Connedit.php:762 msgid "Slide to adjust your rating" msgstr "Deslizar para ajustar su valoración" -#: ../../Zotlabs/Module/Connedit.php:716 ../../Zotlabs/Module/Connedit.php:721 +#: ../../Zotlabs/Module/Connedit.php:763 ../../Zotlabs/Module/Connedit.php:768 msgid "Optionally explain your rating" msgstr "Opcionalmente, puede explicar su valoración" -#: ../../Zotlabs/Module/Connedit.php:718 +#: ../../Zotlabs/Module/Connedit.php:765 msgid "Custom Filter" msgstr "Filtro personalizado" -#: ../../Zotlabs/Module/Connedit.php:719 +#: ../../Zotlabs/Module/Connedit.php:766 msgid "Only import posts with this text" msgstr "Importar solo entradas que contengan este texto" -#: ../../Zotlabs/Module/Connedit.php:719 ../../Zotlabs/Module/Connedit.php:720 +#: ../../Zotlabs/Module/Connedit.php:766 ../../Zotlabs/Module/Connedit.php:767 msgid "" "words one per line or #tags or /patterns/ or lang=xx, leave blank to import " "all posts" msgstr "Una sola opción por línea: palabras, #etiquetas, /patrones/ o lang=xx. Dejar en blanco para importarlo todo" -#: ../../Zotlabs/Module/Connedit.php:720 +#: ../../Zotlabs/Module/Connedit.php:767 msgid "Do not import posts with this text" msgstr "No importar entradas que contengan este texto" -#: ../../Zotlabs/Module/Connedit.php:722 +#: ../../Zotlabs/Module/Connedit.php:769 msgid "This information is public!" msgstr "¡Esta información es pública!" -#: ../../Zotlabs/Module/Connedit.php:727 +#: ../../Zotlabs/Module/Connedit.php:774 msgid "Connection Pending Approval" msgstr "Conexión pendiente de aprobación" -#: ../../Zotlabs/Module/Connedit.php:730 +#: ../../Zotlabs/Module/Connedit.php:777 msgid "inherited" msgstr "heredado" -#: ../../Zotlabs/Module/Connedit.php:732 +#: ../../Zotlabs/Module/Connedit.php:778 ../../Zotlabs/Module/Connect.php:98 +#: ../../Zotlabs/Module/Events.php:474 ../../Zotlabs/Module/Cal.php:338 +#: ../../Zotlabs/Module/Chat.php:196 ../../Zotlabs/Module/Chat.php:238 +#: ../../Zotlabs/Module/Group.php:85 ../../Zotlabs/Module/Appman.php:126 +#: ../../Zotlabs/Module/Pdledit.php:66 +#: ../../Zotlabs/Module/Filestorage.php:161 +#: ../../Zotlabs/Module/Profiles.php:687 ../../Zotlabs/Module/Import.php:560 +#: ../../Zotlabs/Module/Photos.php:675 ../../Zotlabs/Module/Photos.php:1050 +#: ../../Zotlabs/Module/Photos.php:1090 ../../Zotlabs/Module/Photos.php:1208 +#: ../../Zotlabs/Module/Import_items.php:122 +#: ../../Zotlabs/Module/Invite.php:146 ../../Zotlabs/Module/Locs.php:121 +#: ../../Zotlabs/Module/Mail.php:370 ../../Zotlabs/Module/Mood.php:139 +#: ../../Zotlabs/Module/Mitem.php:235 ../../Zotlabs/Module/Admin.php:492 +#: ../../Zotlabs/Module/Admin.php:688 ../../Zotlabs/Module/Admin.php:771 +#: ../../Zotlabs/Module/Admin.php:1032 ../../Zotlabs/Module/Admin.php:1211 +#: ../../Zotlabs/Module/Admin.php:1421 ../../Zotlabs/Module/Admin.php:1648 +#: ../../Zotlabs/Module/Admin.php:1733 ../../Zotlabs/Module/Admin.php:2116 +#: ../../Zotlabs/Module/Poke.php:186 ../../Zotlabs/Module/Pconfig.php:107 +#: ../../Zotlabs/Module/Rate.php:170 ../../Zotlabs/Module/Settings.php:644 +#: ../../Zotlabs/Module/Settings.php:757 ../../Zotlabs/Module/Settings.php:806 +#: ../../Zotlabs/Module/Settings.php:832 ../../Zotlabs/Module/Settings.php:855 +#: ../../Zotlabs/Module/Settings.php:943 +#: ../../Zotlabs/Module/Settings.php:1129 ../../Zotlabs/Module/Setup.php:312 +#: ../../Zotlabs/Module/Setup.php:353 ../../Zotlabs/Module/Thing.php:316 +#: ../../Zotlabs/Module/Thing.php:362 ../../Zotlabs/Module/Sources.php:114 +#: ../../Zotlabs/Module/Sources.php:149 ../../Zotlabs/Module/Xchan.php:15 +#: ../../Zotlabs/Lib/ThreadItem.php:710 ../../include/widgets.php:763 +#: ../../include/js_strings.php:22 ../../view/theme/redbasic/php/config.php:99 +msgid "Submit" +msgstr "Enviar" + +#: ../../Zotlabs/Module/Connedit.php:779 #, php-format msgid "" "Please choose the profile you would like to display to %s when viewing your " "profile securely." msgstr "Por favor, escoja el perfil que quiere mostrar a %s cuando esté viendo su perfil de forma segura." -#: ../../Zotlabs/Module/Connedit.php:734 +#: ../../Zotlabs/Module/Connedit.php:781 msgid "Their Settings" msgstr "Sus ajustes" -#: ../../Zotlabs/Module/Connedit.php:735 +#: ../../Zotlabs/Module/Connedit.php:782 msgid "My Settings" msgstr "Mis ajustes" -#: ../../Zotlabs/Module/Connedit.php:737 +#: ../../Zotlabs/Module/Connedit.php:784 msgid "Individual Permissions" msgstr "Permisos individuales" -#: ../../Zotlabs/Module/Connedit.php:738 +#: ../../Zotlabs/Module/Connedit.php:785 msgid "" "Some permissions may be inherited from your channel's privacy settings, which have higher " @@ -883,7 +778,7 @@ msgid "" " settings here." msgstr "Algunos permisos pueden ser heredados de los ajustes de privacidad de sus canales, los cuales tienen una prioridad más alta que los ajustes individuales. No puede cambiar estos ajustes aquí." -#: ../../Zotlabs/Module/Connedit.php:739 +#: ../../Zotlabs/Module/Connedit.php:786 msgid "" "Some permissions may be inherited from your channel's privacy settings, which have higher " @@ -891,17 +786,121 @@ msgid "" "they wont have any impact unless the inherited setting changes." msgstr "Algunos permisos pueden ser heredados de los ajustes de privacidad de sus canales, los cuales tienen una prioridad más alta que los ajustes individuales. Puede cambiar estos ajustes aquí, pero no tendrán ningún consecuencia hasta que cambie los ajustes heredados." -#: ../../Zotlabs/Module/Connedit.php:740 +#: ../../Zotlabs/Module/Connedit.php:787 msgid "Last update:" msgstr "Última actualización:" -#: ../../Zotlabs/Module/Directory.php:63 ../../Zotlabs/Module/Display.php:17 -#: ../../Zotlabs/Module/Photos.php:522 ../../Zotlabs/Module/Ratings.php:86 +#: ../../Zotlabs/Module/Display.php:17 ../../Zotlabs/Module/Directory.php:63 +#: ../../Zotlabs/Module/Photos.php:520 ../../Zotlabs/Module/Ratings.php:86 #: ../../Zotlabs/Module/Search.php:17 -#: ../../Zotlabs/Module/Viewconnections.php:20 +#: ../../Zotlabs/Module/Viewconnections.php:23 msgid "Public access denied." msgstr "Acceso público denegado." +#: ../../Zotlabs/Module/Display.php:40 ../../Zotlabs/Module/Filestorage.php:32 +#: ../../Zotlabs/Module/Admin.php:164 ../../Zotlabs/Module/Admin.php:1255 +#: ../../Zotlabs/Module/Admin.php:1561 ../../Zotlabs/Module/Thing.php:89 +#: ../../Zotlabs/Module/Viewsrc.php:24 ../../include/items.php:3369 +msgid "Item not found." +msgstr "Elemento no encontrado." + +#: ../../Zotlabs/Module/Id.php:13 +msgid "First Name" +msgstr "Nombre" + +#: ../../Zotlabs/Module/Id.php:14 +msgid "Last Name" +msgstr "Apellido" + +#: ../../Zotlabs/Module/Id.php:15 +msgid "Nickname" +msgstr "Sobrenombre o Alias" + +#: ../../Zotlabs/Module/Id.php:16 +msgid "Full Name" +msgstr "Nombre completo" + +#: ../../Zotlabs/Module/Id.php:17 ../../Zotlabs/Module/Id.php:18 +#: ../../Zotlabs/Module/Admin.php:1035 ../../Zotlabs/Module/Admin.php:1047 +#: ../../include/network.php:2203 +msgid "Email" +msgstr "Correo electrónico" + +#: ../../Zotlabs/Module/Id.php:19 ../../Zotlabs/Module/Id.php:20 +#: ../../Zotlabs/Module/Id.php:21 ../../Zotlabs/Lib/Apps.php:238 +msgid "Profile Photo" +msgstr "Foto del perfil" + +#: ../../Zotlabs/Module/Id.php:22 +msgid "Profile Photo 16px" +msgstr "Foto del perfil 16px" + +#: ../../Zotlabs/Module/Id.php:23 +msgid "Profile Photo 32px" +msgstr "Foto del perfil 32px" + +#: ../../Zotlabs/Module/Id.php:24 +msgid "Profile Photo 48px" +msgstr "Foto del perfil 48px" + +#: ../../Zotlabs/Module/Id.php:25 +msgid "Profile Photo 64px" +msgstr "Foto del perfil 64px" + +#: ../../Zotlabs/Module/Id.php:26 +msgid "Profile Photo 80px" +msgstr "Foto del perfil 80px" + +#: ../../Zotlabs/Module/Id.php:27 +msgid "Profile Photo 128px" +msgstr "Foto del perfil 128px" + +#: ../../Zotlabs/Module/Id.php:28 +msgid "Timezone" +msgstr "Huso horario" + +#: ../../Zotlabs/Module/Id.php:29 ../../Zotlabs/Module/Profiles.php:731 +msgid "Homepage URL" +msgstr "Dirección de la página personal" + +#: ../../Zotlabs/Module/Id.php:30 ../../Zotlabs/Lib/Apps.php:236 +msgid "Language" +msgstr "Idioma" + +#: ../../Zotlabs/Module/Id.php:31 +msgid "Birth Year" +msgstr "Año de nacimiento" + +#: ../../Zotlabs/Module/Id.php:32 +msgid "Birth Month" +msgstr "Mes de nacimiento" + +#: ../../Zotlabs/Module/Id.php:33 +msgid "Birth Day" +msgstr "Día de nacimiento" + +#: ../../Zotlabs/Module/Id.php:34 +msgid "Birthdate" +msgstr "Fecha de nacimiento" + +#: ../../Zotlabs/Module/Id.php:35 ../../Zotlabs/Module/Profiles.php:454 +msgid "Gender" +msgstr "Género" + +#: ../../Zotlabs/Module/Id.php:108 ../../include/selectors.php:49 +#: ../../include/selectors.php:66 +msgid "Male" +msgstr "Hombre" + +#: ../../Zotlabs/Module/Id.php:110 ../../include/selectors.php:49 +#: ../../include/selectors.php:66 +msgid "Female" +msgstr "Mujer" + +#: ../../Zotlabs/Module/Follow.php:34 +msgid "Channel added." +msgstr "Canal añadido." + #: ../../Zotlabs/Module/Directory.php:243 #, php-format msgid "%d rating" @@ -921,12 +920,12 @@ msgstr "Estado:" msgid "Homepage: " msgstr "Página personal:" -#: ../../Zotlabs/Module/Directory.php:306 ../../include/channel.php:1183 +#: ../../Zotlabs/Module/Directory.php:306 ../../include/channel.php:1223 msgid "Age:" msgstr "Edad:" -#: ../../Zotlabs/Module/Directory.php:311 ../../include/event.php:52 -#: ../../include/event.php:84 ../../include/channel.php:1027 +#: ../../Zotlabs/Module/Directory.php:311 ../../include/channel.php:1066 +#: ../../include/event.php:52 ../../include/event.php:84 #: ../../include/bb2diaspora.php:507 msgid "Location:" msgstr "Ubicación:" @@ -935,18 +934,18 @@ msgstr "Ubicación:" msgid "Description:" msgstr "Descripción:" -#: ../../Zotlabs/Module/Directory.php:322 ../../include/channel.php:1199 +#: ../../Zotlabs/Module/Directory.php:322 ../../include/channel.php:1239 msgid "Hometown:" msgstr "Lugar de nacimiento:" -#: ../../Zotlabs/Module/Directory.php:324 ../../include/channel.php:1207 +#: ../../Zotlabs/Module/Directory.php:324 ../../include/channel.php:1247 msgid "About:" msgstr "Sobre mí:" #: ../../Zotlabs/Module/Directory.php:325 ../../Zotlabs/Module/Match.php:68 -#: ../../Zotlabs/Module/Suggest.php:56 ../../include/widgets.php:147 -#: ../../include/widgets.php:184 ../../include/connections.php:78 -#: ../../include/conversation.php:956 ../../include/channel.php:1012 +#: ../../Zotlabs/Module/Suggest.php:56 ../../include/channel.php:1051 +#: ../../include/connections.php:78 ../../include/conversation.php:959 +#: ../../include/widgets.php:147 ../../include/widgets.php:184 msgid "Connect" msgstr "Conectar" @@ -1022,38 +1021,322 @@ msgstr "De más antiguo a más nuevo" msgid "No entries (some entries may be hidden)." msgstr "Sin entradas (algunas entradas pueden estar ocultas)." -#: ../../Zotlabs/Module/Display.php:40 ../../Zotlabs/Module/Filestorage.php:33 -#: ../../Zotlabs/Module/Admin.php:164 ../../Zotlabs/Module/Admin.php:1255 -#: ../../Zotlabs/Module/Admin.php:1561 ../../Zotlabs/Module/Thing.php:89 -#: ../../Zotlabs/Module/Viewsrc.php:24 ../../include/items.php:3359 -msgid "Item not found." -msgstr "Elemento no encontrado." +#: ../../Zotlabs/Module/Connect.php:61 ../../Zotlabs/Module/Connect.php:109 +msgid "Continue" +msgstr "Continuar" + +#: ../../Zotlabs/Module/Connect.php:90 +msgid "Premium Channel Setup" +msgstr "Configuración del canal premium" + +#: ../../Zotlabs/Module/Connect.php:92 +msgid "Enable premium channel connection restrictions" +msgstr "Habilitar restricciones de conexión del canal premium" + +#: ../../Zotlabs/Module/Connect.php:93 +msgid "" +"Please enter your restrictions or conditions, such as paypal receipt, usage " +"guidelines, etc." +msgstr "Por favor introduzca sus restricciones o condiciones, como recibo de paypal, normas de uso, etc." + +#: ../../Zotlabs/Module/Connect.php:95 ../../Zotlabs/Module/Connect.php:115 +msgid "" +"This channel may require additional steps or acknowledgement of the " +"following conditions prior to connecting:" +msgstr "Este canal puede requerir antes de conectar unos pasos adicionales o el conocimiento de las siguientes condiciones:" + +#: ../../Zotlabs/Module/Connect.php:96 +msgid "" +"Potential connections will then see the following text before proceeding:" +msgstr "Las posibles conexiones verán, por tanto, el siguiente texto antes de proceder:" + +#: ../../Zotlabs/Module/Connect.php:97 ../../Zotlabs/Module/Connect.php:118 +msgid "" +"By continuing, I certify that I have complied with any instructions provided" +" on this page." +msgstr "Al continuar, certifico que he cumplido con todas las instrucciones proporcionadas en esta página." + +#: ../../Zotlabs/Module/Connect.php:106 +msgid "(No specific instructions have been provided by the channel owner.)" +msgstr "(No ha sido proporcionada ninguna instrucción específica por el propietario del canal.)" + +#: ../../Zotlabs/Module/Connect.php:114 +msgid "Restricted or Premium Channel" +msgstr "Canal premium o restringido" + +#: ../../Zotlabs/Module/Events.php:25 +msgid "Calendar entries imported." +msgstr "Entradas de calendario importadas." + +#: ../../Zotlabs/Module/Events.php:27 +msgid "No calendar entries found." +msgstr "No se han encontrado entradas de calendario." + +#: ../../Zotlabs/Module/Events.php:104 +msgid "Event can not end before it has started." +msgstr "Un evento no puede terminar antes de que haya comenzado." + +#: ../../Zotlabs/Module/Events.php:106 ../../Zotlabs/Module/Events.php:115 +#: ../../Zotlabs/Module/Events.php:135 +msgid "Unable to generate preview." +msgstr "No se puede crear la vista previa." + +#: ../../Zotlabs/Module/Events.php:113 +msgid "Event title and start time are required." +msgstr "Se requieren el título del evento y su hora de inicio." + +#: ../../Zotlabs/Module/Events.php:133 ../../Zotlabs/Module/Events.php:258 +msgid "Event not found." +msgstr "Evento no encontrado." + +#: ../../Zotlabs/Module/Events.php:253 ../../Zotlabs/Module/Like.php:372 +#: ../../Zotlabs/Module/Tagger.php:51 ../../include/conversation.php:123 +#: ../../include/text.php:1924 ../../include/event.php:951 +msgid "event" +msgstr "evento" + +#: ../../Zotlabs/Module/Events.php:448 +msgid "Edit event title" +msgstr "Editar el título del evento" + +#: ../../Zotlabs/Module/Events.php:448 +msgid "Event title" +msgstr "Título del evento" + +#: ../../Zotlabs/Module/Events.php:448 ../../Zotlabs/Module/Events.php:453 +#: ../../Zotlabs/Module/Appman.php:115 ../../Zotlabs/Module/Appman.php:116 +#: ../../Zotlabs/Module/Profiles.php:709 ../../Zotlabs/Module/Profiles.php:713 +#: ../../include/datetime.php:245 +msgid "Required" +msgstr "Obligatorio" + +#: ../../Zotlabs/Module/Events.php:450 +msgid "Categories (comma-separated list)" +msgstr "Categorías (lista separada por comas)" + +#: ../../Zotlabs/Module/Events.php:451 +msgid "Edit Category" +msgstr "Editar la categoría" + +#: ../../Zotlabs/Module/Events.php:451 +msgid "Category" +msgstr "Categoría" + +#: ../../Zotlabs/Module/Events.php:454 +msgid "Edit start date and time" +msgstr "Modificar la fecha y hora de comienzo" + +#: ../../Zotlabs/Module/Events.php:454 +msgid "Start date and time" +msgstr "Fecha y hora de comienzo" + +#: ../../Zotlabs/Module/Events.php:455 ../../Zotlabs/Module/Events.php:458 +msgid "Finish date and time are not known or not relevant" +msgstr "La fecha y hora de terminación no se conocen o no son relevantes" + +#: ../../Zotlabs/Module/Events.php:457 +msgid "Edit finish date and time" +msgstr "Modificar la fecha y hora de terminación" + +#: ../../Zotlabs/Module/Events.php:457 +msgid "Finish date and time" +msgstr "Fecha y hora de terminación" + +#: ../../Zotlabs/Module/Events.php:459 ../../Zotlabs/Module/Events.php:460 +msgid "Adjust for viewer timezone" +msgstr "Ajustar para obtener el visor de los husos horarios" + +#: ../../Zotlabs/Module/Events.php:459 +msgid "" +"Important for events that happen in a particular place. Not practical for " +"global holidays." +msgstr "Importante para los eventos que suceden en un lugar determinado. No es práctico para los globales." + +#: ../../Zotlabs/Module/Events.php:461 +msgid "Edit Description" +msgstr "Editar la descripción" + +#: ../../Zotlabs/Module/Events.php:461 ../../Zotlabs/Module/Appman.php:117 +#: ../../Zotlabs/Module/Rbmark.php:101 +msgid "Description" +msgstr "Descripción" + +#: ../../Zotlabs/Module/Events.php:463 +msgid "Edit Location" +msgstr "Modificar la dirección" + +#: ../../Zotlabs/Module/Events.php:463 ../../Zotlabs/Module/Profiles.php:477 +#: ../../Zotlabs/Module/Profiles.php:698 ../../Zotlabs/Module/Locs.php:117 +#: ../../Zotlabs/Module/Pubsites.php:41 ../../include/js_strings.php:25 +msgid "Location" +msgstr "Ubicación" + +#: ../../Zotlabs/Module/Events.php:466 ../../Zotlabs/Module/Events.php:468 +msgid "Share this event" +msgstr "Compartir este evento" + +#: ../../Zotlabs/Module/Events.php:469 ../../Zotlabs/Module/Photos.php:1091 +#: ../../Zotlabs/Module/Webpages.php:201 ../../Zotlabs/Lib/ThreadItem.php:719 +#: ../../include/page_widgets.php:43 ../../include/conversation.php:1198 +msgid "Preview" +msgstr "Previsualizar" + +#: ../../Zotlabs/Module/Events.php:470 ../../include/conversation.php:1247 +msgid "Permission settings" +msgstr "Configuración de permisos" + +#: ../../Zotlabs/Module/Events.php:475 +msgid "Advanced Options" +msgstr "Opciones avanzadas" + +#: ../../Zotlabs/Module/Events.php:587 ../../Zotlabs/Module/Cal.php:259 +msgid "l, F j" +msgstr "l j F" + +#: ../../Zotlabs/Module/Events.php:609 +msgid "Edit event" +msgstr "Editar evento" + +#: ../../Zotlabs/Module/Events.php:611 +msgid "Delete event" +msgstr "Borrar evento" + +#: ../../Zotlabs/Module/Events.php:636 ../../Zotlabs/Module/Cal.php:308 +#: ../../include/text.php:1712 +msgid "Link to Source" +msgstr "Enlazar con la entrada en su ubicación original" + +#: ../../Zotlabs/Module/Events.php:645 +msgid "calendar" +msgstr "calendario" + +#: ../../Zotlabs/Module/Events.php:664 ../../Zotlabs/Module/Cal.php:331 +msgid "Edit Event" +msgstr "Editar el evento" + +#: ../../Zotlabs/Module/Events.php:664 ../../Zotlabs/Module/Cal.php:331 +msgid "Create Event" +msgstr "Crear un evento" + +#: ../../Zotlabs/Module/Events.php:665 ../../Zotlabs/Module/Events.php:674 +#: ../../Zotlabs/Module/Cal.php:332 ../../Zotlabs/Module/Cal.php:339 +#: ../../Zotlabs/Module/Photos.php:947 +msgid "Previous" +msgstr "Anterior" + +#: ../../Zotlabs/Module/Events.php:666 ../../Zotlabs/Module/Events.php:675 +#: ../../Zotlabs/Module/Cal.php:333 ../../Zotlabs/Module/Cal.php:340 +#: ../../Zotlabs/Module/Photos.php:956 ../../Zotlabs/Module/Setup.php:267 +msgid "Next" +msgstr "Siguiente" + +#: ../../Zotlabs/Module/Events.php:667 ../../Zotlabs/Module/Cal.php:334 +msgid "Export" +msgstr "Exportar" + +#: ../../Zotlabs/Module/Events.php:670 ../../Zotlabs/Module/Layouts.php:197 +#: ../../Zotlabs/Module/Pubsites.php:47 ../../Zotlabs/Module/Blocks.php:166 +#: ../../Zotlabs/Module/Webpages.php:200 ../../include/page_widgets.php:42 +msgid "View" +msgstr "Ver" + +#: ../../Zotlabs/Module/Events.php:671 +msgid "Month" +msgstr "" + +#: ../../Zotlabs/Module/Events.php:672 +msgid "Week" +msgstr "" + +#: ../../Zotlabs/Module/Events.php:673 +msgid "Day" +msgstr "" + +#: ../../Zotlabs/Module/Events.php:676 ../../Zotlabs/Module/Cal.php:341 +msgid "Today" +msgstr "Hoy" + +#: ../../Zotlabs/Module/Events.php:707 +msgid "Event removed" +msgstr "Evento borrado" + +#: ../../Zotlabs/Module/Events.php:710 +msgid "Failed to remove event" +msgstr "Error al eliminar el evento" + +#: ../../Zotlabs/Module/Bookmarks.php:53 +msgid "Bookmark added" +msgstr "Marcador añadido" + +#: ../../Zotlabs/Module/Bookmarks.php:75 +msgid "My Bookmarks" +msgstr "Mis marcadores" + +#: ../../Zotlabs/Module/Bookmarks.php:86 +msgid "My Connections Bookmarks" +msgstr "Marcadores de mis conexiones" -#: ../../Zotlabs/Module/Editblock.php:79 ../../Zotlabs/Module/Editblock.php:95 #: ../../Zotlabs/Module/Editpost.php:24 ../../Zotlabs/Module/Editlayout.php:79 -#: ../../Zotlabs/Module/Editwebpage.php:81 +#: ../../Zotlabs/Module/Editwebpage.php:80 +#: ../../Zotlabs/Module/Editblock.php:79 ../../Zotlabs/Module/Editblock.php:95 msgid "Item not found" msgstr "Elemento no encontrado" -#: ../../Zotlabs/Module/Editblock.php:124 ../../include/conversation.php:1228 -msgid "Title (optional)" -msgstr "Título (opcional)" +#: ../../Zotlabs/Module/Editpost.php:35 +msgid "Item is not editable" +msgstr "El elemento no es editable" -#: ../../Zotlabs/Module/Editblock.php:133 -msgid "Edit Block" -msgstr "Modificar este bloque" +#: ../../Zotlabs/Module/Editpost.php:106 ../../Zotlabs/Module/Rpost.php:134 +msgid "Edit post" +msgstr "Editar la entrada" -#: ../../Zotlabs/Module/Common.php:14 -msgid "No channel." -msgstr "Ningún canal." +#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:222 +#: ../../include/nav.php:92 ../../include/conversation.php:1647 +msgid "Photos" +msgstr "Fotos" -#: ../../Zotlabs/Module/Common.php:43 -msgid "Common connections" -msgstr "Conexiones comunes" +#: ../../Zotlabs/Module/Fbrowser.php:66 ../../Zotlabs/Module/Fbrowser.php:88 +#: ../../Zotlabs/Module/Admin.php:1406 ../../Zotlabs/Module/Settings.php:645 +#: ../../Zotlabs/Module/Settings.php:671 ../../Zotlabs/Module/Tagrm.php:15 +#: ../../Zotlabs/Module/Tagrm.php:138 ../../Zotlabs/Module/Wiki.php:166 +#: ../../Zotlabs/Module/Wiki.php:202 ../../include/conversation.php:1235 +#: ../../include/conversation.php:1274 +msgid "Cancel" +msgstr "Cancelar" -#: ../../Zotlabs/Module/Common.php:48 -msgid "No connections in common." -msgstr "Ninguna conexión en común." +#: ../../Zotlabs/Module/Page.php:40 ../../Zotlabs/Module/Block.php:31 +msgid "Invalid item." +msgstr "Elemento no válido." + +#: ../../Zotlabs/Module/Page.php:56 ../../Zotlabs/Module/Cal.php:62 +#: ../../Zotlabs/Module/Block.php:43 ../../Zotlabs/Module/Wall_upload.php:33 +msgid "Channel not found." +msgstr "Canal no encontrado." + +#: ../../Zotlabs/Module/Page.php:131 +msgid "" +"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod " +"tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam," +" quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo " +"consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse " +"cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat " +"non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." +msgstr "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." + +#: ../../Zotlabs/Module/Filer.php:52 +msgid "Save to Folder:" +msgstr "Guardar en carpeta:" + +#: ../../Zotlabs/Module/Filer.php:52 +msgid "- select -" +msgstr "- seleccionar -" + +#: ../../Zotlabs/Module/Filer.php:53 ../../Zotlabs/Module/Admin.php:2033 +#: ../../Zotlabs/Module/Admin.php:2053 ../../Zotlabs/Module/Rbmark.php:32 +#: ../../Zotlabs/Module/Rbmark.php:104 ../../include/text.php:926 +#: ../../include/text.php:938 ../../include/widgets.php:201 +msgid "Save" +msgstr "Guardar" #: ../../Zotlabs/Module/Connections.php:56 #: ../../Zotlabs/Module/Connections.php:161 @@ -1081,7 +1364,7 @@ msgstr "Archivadas" #: ../../Zotlabs/Module/Connections.php:76 #: ../../Zotlabs/Module/Connections.php:86 ../../Zotlabs/Module/Menu.php:116 -#: ../../include/conversation.php:1535 +#: ../../include/conversation.php:1550 msgid "New" msgstr "Nuevas" @@ -1168,15 +1451,15 @@ msgstr "Ignorar esta conexión" msgid "Recent activity" msgstr "Actividad reciente" -#: ../../Zotlabs/Module/Connections.php:302 ../../Zotlabs/Lib/Apps.php:208 -#: ../../include/text.php:875 ../../include/nav.php:186 +#: ../../Zotlabs/Module/Connections.php:302 ../../Zotlabs/Lib/Apps.php:209 +#: ../../include/nav.php:188 ../../include/text.php:855 msgid "Connections" msgstr "Conexiones" #: ../../Zotlabs/Module/Connections.php:306 ../../Zotlabs/Module/Search.php:44 -#: ../../Zotlabs/Lib/Apps.php:228 ../../include/text.php:945 -#: ../../include/text.php:957 ../../include/nav.php:165 -#: ../../include/acl_selectors.php:276 +#: ../../Zotlabs/Lib/Apps.php:230 ../../include/nav.php:167 +#: ../../include/text.php:925 ../../include/text.php:937 +#: ../../include/acl_selectors.php:274 msgid "Search" msgstr "Buscar" @@ -1189,7 +1472,7 @@ msgid "Connections search" msgstr "Buscar conexiones" #: ../../Zotlabs/Module/Cover_photo.php:58 -#: ../../Zotlabs/Module/Profile_photo.php:79 +#: ../../Zotlabs/Module/Profile_photo.php:61 msgid "Image uploaded but image cropping failed." msgstr "Imagen actualizada, pero el recorte de la imagen ha fallado. " @@ -1199,66 +1482,66 @@ msgid "Cover Photos" msgstr "Imágenes de portada del perfil" #: ../../Zotlabs/Module/Cover_photo.php:154 -#: ../../Zotlabs/Module/Profile_photo.php:133 +#: ../../Zotlabs/Module/Profile_photo.php:135 msgid "Image resize failed." msgstr "El ajuste del tamaño de la imagen ha fallado." #: ../../Zotlabs/Module/Cover_photo.php:168 -#: ../../Zotlabs/Module/Profile_photo.php:192 ../../include/photos.php:144 +#: ../../Zotlabs/Module/Profile_photo.php:196 ../../include/photos.php:148 msgid "Unable to process image" msgstr "No ha sido posible procesar la imagen" #: ../../Zotlabs/Module/Cover_photo.php:192 -#: ../../Zotlabs/Module/Profile_photo.php:217 +#: ../../Zotlabs/Module/Profile_photo.php:223 msgid "Image upload failed." msgstr "La carga de la imagen ha fallado." #: ../../Zotlabs/Module/Cover_photo.php:210 -#: ../../Zotlabs/Module/Profile_photo.php:236 +#: ../../Zotlabs/Module/Profile_photo.php:242 msgid "Unable to process image." msgstr "No ha sido posible procesar la imagen." -#: ../../Zotlabs/Module/Cover_photo.php:233 ../../include/items.php:4270 +#: ../../Zotlabs/Module/Cover_photo.php:233 ../../include/items.php:4283 msgid "female" msgstr "mujer" -#: ../../Zotlabs/Module/Cover_photo.php:234 ../../include/items.php:4271 +#: ../../Zotlabs/Module/Cover_photo.php:234 ../../include/items.php:4284 #, php-format msgid "%1$s updated her %2$s" msgstr "%1$s ha actualizado su %2$s" -#: ../../Zotlabs/Module/Cover_photo.php:235 ../../include/items.php:4272 +#: ../../Zotlabs/Module/Cover_photo.php:235 ../../include/items.php:4285 msgid "male" msgstr "hombre" -#: ../../Zotlabs/Module/Cover_photo.php:236 ../../include/items.php:4273 +#: ../../Zotlabs/Module/Cover_photo.php:236 ../../include/items.php:4286 #, php-format msgid "%1$s updated his %2$s" msgstr "%1$s ha actualizado su %2$s" -#: ../../Zotlabs/Module/Cover_photo.php:238 ../../include/items.php:4275 +#: ../../Zotlabs/Module/Cover_photo.php:238 ../../include/items.php:4288 #, php-format msgid "%1$s updated their %2$s" msgstr "%1$s ha actualizado su %2$s" -#: ../../Zotlabs/Module/Cover_photo.php:240 ../../include/channel.php:1661 +#: ../../Zotlabs/Module/Cover_photo.php:240 ../../include/channel.php:1726 msgid "cover photo" msgstr "Imagen de portada del perfil" #: ../../Zotlabs/Module/Cover_photo.php:303 #: ../../Zotlabs/Module/Cover_photo.php:318 -#: ../../Zotlabs/Module/Profile_photo.php:283 -#: ../../Zotlabs/Module/Profile_photo.php:324 +#: ../../Zotlabs/Module/Profile_photo.php:300 +#: ../../Zotlabs/Module/Profile_photo.php:341 msgid "Photo not available." msgstr "Foto no disponible." #: ../../Zotlabs/Module/Cover_photo.php:354 -#: ../../Zotlabs/Module/Profile_photo.php:365 +#: ../../Zotlabs/Module/Profile_photo.php:387 msgid "Upload File:" msgstr "Subir fichero:" #: ../../Zotlabs/Module/Cover_photo.php:355 -#: ../../Zotlabs/Module/Profile_photo.php:366 +#: ../../Zotlabs/Module/Profile_photo.php:388 msgid "Select a profile:" msgstr "Seleccionar un perfil:" @@ -1267,200 +1550,69 @@ msgid "Upload Cover Photo" msgstr "Subir imagen de portada del perfil" #: ../../Zotlabs/Module/Cover_photo.php:361 -#: ../../Zotlabs/Module/Profile_photo.php:374 -#: ../../Zotlabs/Module/Settings.php:985 +#: ../../Zotlabs/Module/Profile_photo.php:396 +#: ../../Zotlabs/Module/Settings.php:1080 msgid "or" msgstr "o" #: ../../Zotlabs/Module/Cover_photo.php:361 -#: ../../Zotlabs/Module/Profile_photo.php:374 +#: ../../Zotlabs/Module/Profile_photo.php:396 msgid "skip this step" msgstr "Omitir este paso" #: ../../Zotlabs/Module/Cover_photo.php:361 -#: ../../Zotlabs/Module/Profile_photo.php:374 +#: ../../Zotlabs/Module/Profile_photo.php:396 msgid "select a photo from your photo albums" msgstr "Seleccione una foto de sus álbumes de fotos" #: ../../Zotlabs/Module/Cover_photo.php:377 -#: ../../Zotlabs/Module/Profile_photo.php:390 +#: ../../Zotlabs/Module/Profile_photo.php:415 msgid "Crop Image" msgstr "Recortar imagen" #: ../../Zotlabs/Module/Cover_photo.php:378 -#: ../../Zotlabs/Module/Profile_photo.php:391 +#: ../../Zotlabs/Module/Profile_photo.php:416 msgid "Please adjust the image cropping for optimum viewing." msgstr "Por favor ajuste el recorte de la imagen para una visión óptima." #: ../../Zotlabs/Module/Cover_photo.php:380 -#: ../../Zotlabs/Module/Profile_photo.php:393 +#: ../../Zotlabs/Module/Profile_photo.php:418 msgid "Done Editing" msgstr "Edición completada" -#: ../../Zotlabs/Module/Editpost.php:35 -msgid "Item is not editable" -msgstr "El elemento no es editable" +#: ../../Zotlabs/Module/Impel.php:41 ../../include/bbcode.php:192 +msgid "webpage" +msgstr "página web" -#: ../../Zotlabs/Module/Editpost.php:106 ../../Zotlabs/Module/Rpost.php:135 -msgid "Edit post" -msgstr "Editar la entrada" +#: ../../Zotlabs/Module/Impel.php:46 ../../include/bbcode.php:198 +msgid "block" +msgstr "bloque" -#: ../../Zotlabs/Module/Events.php:26 -msgid "Calendar entries imported." -msgstr "Entradas de calendario importadas." +#: ../../Zotlabs/Module/Impel.php:51 ../../include/bbcode.php:195 +msgid "layout" +msgstr "plantilla" -#: ../../Zotlabs/Module/Events.php:28 -msgid "No calendar entries found." -msgstr "No se han encontrado entradas de calendario." +#: ../../Zotlabs/Module/Impel.php:58 ../../include/bbcode.php:201 +msgid "menu" +msgstr "menú" -#: ../../Zotlabs/Module/Events.php:105 -msgid "Event can not end before it has started." -msgstr "Un evento no puede terminar antes de que haya comenzado." +#: ../../Zotlabs/Module/Impel.php:187 +#, php-format +msgid "%s element installed" +msgstr "%s elemento instalado" -#: ../../Zotlabs/Module/Events.php:107 ../../Zotlabs/Module/Events.php:116 -#: ../../Zotlabs/Module/Events.php:136 -msgid "Unable to generate preview." -msgstr "No se puede crear la vista previa." +#: ../../Zotlabs/Module/Impel.php:190 +#, php-format +msgid "%s element installation failed" +msgstr "Elemento con instalación fallida: %s" -#: ../../Zotlabs/Module/Events.php:114 -msgid "Event title and start time are required." -msgstr "Se requieren el título del evento y su hora de inicio." +#: ../../Zotlabs/Module/Cal.php:69 +msgid "Permissions denied." +msgstr "Permisos denegados." -#: ../../Zotlabs/Module/Events.php:134 ../../Zotlabs/Module/Events.php:259 -msgid "Event not found." -msgstr "Evento no encontrado." - -#: ../../Zotlabs/Module/Events.php:254 ../../Zotlabs/Module/Like.php:373 -#: ../../Zotlabs/Module/Tagger.php:51 ../../include/event.php:949 -#: ../../include/text.php:1943 ../../include/conversation.php:123 -msgid "event" -msgstr "evento" - -#: ../../Zotlabs/Module/Events.php:449 -msgid "Edit event title" -msgstr "Editar el título del evento" - -#: ../../Zotlabs/Module/Events.php:449 -msgid "Event title" -msgstr "Título del evento" - -#: ../../Zotlabs/Module/Events.php:449 ../../Zotlabs/Module/Events.php:454 -#: ../../Zotlabs/Module/Profiles.php:709 ../../Zotlabs/Module/Profiles.php:713 -#: ../../Zotlabs/Module/Appman.php:115 ../../Zotlabs/Module/Appman.php:116 -#: ../../include/datetime.php:245 -msgid "Required" -msgstr "Obligatorio" - -#: ../../Zotlabs/Module/Events.php:451 -msgid "Categories (comma-separated list)" -msgstr "Categorías (lista separada por comas)" - -#: ../../Zotlabs/Module/Events.php:452 -msgid "Edit Category" -msgstr "Editar la categoría" - -#: ../../Zotlabs/Module/Events.php:452 -msgid "Category" -msgstr "Categoría" - -#: ../../Zotlabs/Module/Events.php:455 -msgid "Edit start date and time" -msgstr "Modificar la fecha y hora de comienzo" - -#: ../../Zotlabs/Module/Events.php:455 -msgid "Start date and time" -msgstr "Fecha y hora de comienzo" - -#: ../../Zotlabs/Module/Events.php:456 ../../Zotlabs/Module/Events.php:459 -msgid "Finish date and time are not known or not relevant" -msgstr "La fecha y hora de terminación no se conocen o no son relevantes" - -#: ../../Zotlabs/Module/Events.php:458 -msgid "Edit finish date and time" -msgstr "Modificar la fecha y hora de terminación" - -#: ../../Zotlabs/Module/Events.php:458 -msgid "Finish date and time" -msgstr "Fecha y hora de terminación" - -#: ../../Zotlabs/Module/Events.php:460 ../../Zotlabs/Module/Events.php:461 -msgid "Adjust for viewer timezone" -msgstr "Ajustar para obtener el visor de los husos horarios" - -#: ../../Zotlabs/Module/Events.php:460 -msgid "" -"Important for events that happen in a particular place. Not practical for " -"global holidays." -msgstr "Importante para los eventos que suceden en un lugar determinado. No es práctico para los globales." - -#: ../../Zotlabs/Module/Events.php:462 -msgid "Edit Description" -msgstr "Editar la descripción" - -#: ../../Zotlabs/Module/Events.php:462 ../../Zotlabs/Module/Appman.php:117 -#: ../../Zotlabs/Module/Rbmark.php:101 -msgid "Description" -msgstr "Descripción" - -#: ../../Zotlabs/Module/Events.php:464 -msgid "Edit Location" -msgstr "Modificar la dirección" - -#: ../../Zotlabs/Module/Events.php:464 ../../Zotlabs/Module/Locs.php:117 -#: ../../Zotlabs/Module/Profiles.php:477 ../../Zotlabs/Module/Profiles.php:698 -#: ../../Zotlabs/Module/Pubsites.php:41 ../../include/js_strings.php:25 -msgid "Location" -msgstr "Ubicación" - -#: ../../Zotlabs/Module/Events.php:467 ../../Zotlabs/Module/Events.php:469 -msgid "Share this event" -msgstr "Compartir este evento" - -#: ../../Zotlabs/Module/Events.php:470 ../../Zotlabs/Module/Photos.php:1093 -#: ../../Zotlabs/Module/Webpages.php:194 ../../Zotlabs/Lib/ThreadItem.php:719 -#: ../../include/conversation.php:1187 ../../include/page_widgets.php:40 -msgid "Preview" -msgstr "Previsualizar" - -#: ../../Zotlabs/Module/Events.php:471 ../../include/conversation.php:1232 -msgid "Permission settings" -msgstr "Configuración de permisos" - -#: ../../Zotlabs/Module/Events.php:476 -msgid "Advanced Options" -msgstr "Opciones avanzadas" - -#: ../../Zotlabs/Module/Events.php:610 -msgid "Edit event" -msgstr "Editar evento" - -#: ../../Zotlabs/Module/Events.php:612 -msgid "Delete event" -msgstr "Borrar evento" - -#: ../../Zotlabs/Module/Events.php:646 -msgid "calendar" -msgstr "calendario" - -#: ../../Zotlabs/Module/Events.php:706 -msgid "Event removed" -msgstr "Evento borrado" - -#: ../../Zotlabs/Module/Events.php:709 -msgid "Failed to remove event" -msgstr "Error al eliminar el evento" - -#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:220 -#: ../../include/nav.php:92 ../../include/conversation.php:1632 -msgid "Photos" -msgstr "Fotos" - -#: ../../Zotlabs/Module/Fbrowser.php:66 ../../Zotlabs/Module/Fbrowser.php:88 -#: ../../Zotlabs/Module/Admin.php:1406 ../../Zotlabs/Module/Settings.php:591 -#: ../../Zotlabs/Module/Settings.php:617 ../../Zotlabs/Module/Tagrm.php:15 -#: ../../Zotlabs/Module/Tagrm.php:138 ../../include/conversation.php:1259 -msgid "Cancel" -msgstr "Cancelar" +#: ../../Zotlabs/Module/Cal.php:337 +msgid "Import" +msgstr "Importar" #: ../../Zotlabs/Module/Dirsearch.php:25 ../../Zotlabs/Module/Regdir.php:49 msgid "This site is not a directory server" @@ -1470,112 +1622,184 @@ msgstr "Este sitio no es un servidor de directorio" msgid "This directory server requires an access token" msgstr "El servidor de este directorio necesita un \"token\" de acceso" -#: ../../Zotlabs/Module/Filer.php:52 -msgid "Save to Folder:" -msgstr "Guardar en carpeta:" +#: ../../Zotlabs/Module/Chat.php:25 ../../Zotlabs/Module/Channel.php:28 +#: ../../Zotlabs/Module/Wiki.php:20 +msgid "You must be logged in to see this page." +msgstr "Debe haber iniciado sesión para poder ver esta página." -#: ../../Zotlabs/Module/Filer.php:52 -msgid "- select -" -msgstr "- seleccionar -" +#: ../../Zotlabs/Module/Chat.php:181 +msgid "Room not found" +msgstr "Sala no encontrada" -#: ../../Zotlabs/Module/Filer.php:53 ../../Zotlabs/Module/Admin.php:2033 -#: ../../Zotlabs/Module/Admin.php:2053 ../../Zotlabs/Module/Rbmark.php:32 -#: ../../Zotlabs/Module/Rbmark.php:104 ../../include/text.php:946 -#: ../../include/text.php:958 ../../include/widgets.php:201 -msgid "Save" -msgstr "Guardar" +#: ../../Zotlabs/Module/Chat.php:197 +msgid "Leave Room" +msgstr "Abandonar la sala" -#: ../../Zotlabs/Module/Dreport.php:27 +#: ../../Zotlabs/Module/Chat.php:198 +msgid "Delete Room" +msgstr "Eliminar esta sala" + +#: ../../Zotlabs/Module/Chat.php:199 +msgid "I am away right now" +msgstr "Estoy ausente momentáneamente" + +#: ../../Zotlabs/Module/Chat.php:200 +msgid "I am online" +msgstr "Estoy conectado/a" + +#: ../../Zotlabs/Module/Chat.php:202 +msgid "Bookmark this room" +msgstr "Añadir esta sala a Marcadores" + +#: ../../Zotlabs/Module/Chat.php:205 ../../Zotlabs/Module/Mail.php:197 +#: ../../Zotlabs/Module/Mail.php:306 ../../include/conversation.php:1181 +msgid "Please enter a link URL:" +msgstr "Por favor, introduzca la dirección del enlace:" + +#: ../../Zotlabs/Module/Chat.php:206 ../../Zotlabs/Module/Mail.php:250 +#: ../../Zotlabs/Module/Mail.php:375 ../../Zotlabs/Lib/ThreadItem.php:722 +#: ../../include/conversation.php:1271 +msgid "Encrypt text" +msgstr "Cifrar texto" + +#: ../../Zotlabs/Module/Chat.php:207 ../../Zotlabs/Module/Editwebpage.php:146 +#: ../../Zotlabs/Module/Mail.php:244 ../../Zotlabs/Module/Mail.php:369 +#: ../../Zotlabs/Module/Editblock.php:111 ../../include/conversation.php:1146 +msgid "Insert web link" +msgstr "Insertar enlace web" + +#: ../../Zotlabs/Module/Chat.php:218 +msgid "Feature disabled." +msgstr "Funcionalidad deshabilitada." + +#: ../../Zotlabs/Module/Chat.php:232 +msgid "New Chatroom" +msgstr "Nueva sala de chat" + +#: ../../Zotlabs/Module/Chat.php:233 +msgid "Chatroom name" +msgstr "Nombre de la sala de chat" + +#: ../../Zotlabs/Module/Chat.php:234 +msgid "Expiration of chats (minutes)" +msgstr "Caducidad de los mensajes en los chats (en minutos)" + +#: ../../Zotlabs/Module/Chat.php:235 ../../Zotlabs/Module/Filestorage.php:152 +#: ../../Zotlabs/Module/Photos.php:669 ../../Zotlabs/Module/Photos.php:1043 +#: ../../Zotlabs/Module/Thing.php:313 ../../Zotlabs/Module/Thing.php:359 +#: ../../include/acl_selectors.php:281 +msgid "Permissions" +msgstr "Permisos" + +#: ../../Zotlabs/Module/Chat.php:246 +#, php-format +msgid "%1$s's Chatrooms" +msgstr "Salas de chat de %1$s" + +#: ../../Zotlabs/Module/Chat.php:251 +msgid "No chatrooms available" +msgstr "No hay salas de chat disponibles" + +#: ../../Zotlabs/Module/Chat.php:252 ../../Zotlabs/Module/Profiles.php:778 +#: ../../Zotlabs/Module/Manage.php:143 +msgid "Create New" +msgstr "Crear" + +#: ../../Zotlabs/Module/Chat.php:255 +msgid "Expiration" +msgstr "Caducidad" + +#: ../../Zotlabs/Module/Chat.php:256 +msgid "min" +msgstr "min" + +#: ../../Zotlabs/Module/Dreport.php:44 msgid "Invalid message" msgstr "Mensaje no válido" -#: ../../Zotlabs/Module/Dreport.php:59 +#: ../../Zotlabs/Module/Dreport.php:76 msgid "no results" msgstr "sin resultados" -#: ../../Zotlabs/Module/Dreport.php:64 +#: ../../Zotlabs/Module/Dreport.php:91 +msgid "channel sync processed" +msgstr "se ha realizado la sincronización del canal" + +#: ../../Zotlabs/Module/Dreport.php:95 +msgid "queued" +msgstr "encolado" + +#: ../../Zotlabs/Module/Dreport.php:99 +msgid "posted" +msgstr "enviado" + +#: ../../Zotlabs/Module/Dreport.php:103 +msgid "accepted for delivery" +msgstr "aceptado para el envío" + +#: ../../Zotlabs/Module/Dreport.php:107 +msgid "updated" +msgstr "actualizado" + +#: ../../Zotlabs/Module/Dreport.php:110 +msgid "update ignored" +msgstr "actualización ignorada" + +#: ../../Zotlabs/Module/Dreport.php:113 +msgid "permission denied" +msgstr "permiso denegado" + +#: ../../Zotlabs/Module/Dreport.php:117 +msgid "recipient not found" +msgstr "destinatario no encontrado" + +#: ../../Zotlabs/Module/Dreport.php:120 +msgid "mail recalled" +msgstr "mensaje de correo revocado" + +#: ../../Zotlabs/Module/Dreport.php:123 +msgid "duplicate mail received" +msgstr "se ha recibido mensaje duplicado" + +#: ../../Zotlabs/Module/Dreport.php:126 +msgid "mail delivered" +msgstr "correo enviado" + +#: ../../Zotlabs/Module/Dreport.php:146 #, php-format msgid "Delivery report for %1$s" msgstr "Informe de entrega para %1$s" -#: ../../Zotlabs/Module/Dreport.php:78 -msgid "channel sync processed" -msgstr "se ha realizado la sincronización del canal" +#: ../../Zotlabs/Module/Dreport.php:149 +msgid "Options" +msgstr "" -#: ../../Zotlabs/Module/Dreport.php:82 -msgid "queued" -msgstr "encolado" +#: ../../Zotlabs/Module/Dreport.php:150 +msgid "Redeliver" +msgstr "" -#: ../../Zotlabs/Module/Dreport.php:86 -msgid "posted" -msgstr "enviado" - -#: ../../Zotlabs/Module/Dreport.php:90 -msgid "accepted for delivery" -msgstr "aceptado para el envío" - -#: ../../Zotlabs/Module/Dreport.php:94 -msgid "updated" -msgstr "actualizado" - -#: ../../Zotlabs/Module/Dreport.php:97 -msgid "update ignored" -msgstr "actualización ignorada" - -#: ../../Zotlabs/Module/Dreport.php:100 -msgid "permission denied" -msgstr "permiso denegado" - -#: ../../Zotlabs/Module/Dreport.php:104 -msgid "recipient not found" -msgstr "destinatario no encontrado" - -#: ../../Zotlabs/Module/Dreport.php:107 -msgid "mail recalled" -msgstr "mensaje de correo revocado" - -#: ../../Zotlabs/Module/Dreport.php:110 -msgid "duplicate mail received" -msgstr "se ha recibido mensaje duplicado" - -#: ../../Zotlabs/Module/Dreport.php:113 -msgid "mail delivered" -msgstr "correo enviado" - -#: ../../Zotlabs/Module/Editlayout.php:126 -#: ../../Zotlabs/Module/Layouts.php:127 ../../Zotlabs/Module/Layouts.php:186 +#: ../../Zotlabs/Module/Editlayout.php:127 +#: ../../Zotlabs/Module/Layouts.php:128 ../../Zotlabs/Module/Layouts.php:188 msgid "Layout Name" msgstr "Nombre de la plantilla" -#: ../../Zotlabs/Module/Editlayout.php:127 -#: ../../Zotlabs/Module/Layouts.php:130 +#: ../../Zotlabs/Module/Editlayout.php:128 +#: ../../Zotlabs/Module/Layouts.php:131 msgid "Layout Description (Optional)" msgstr "Descripción de la plantilla (opcional)" -#: ../../Zotlabs/Module/Editlayout.php:135 +#: ../../Zotlabs/Module/Editlayout.php:136 msgid "Edit Layout" msgstr "Modificar la plantilla" -#: ../../Zotlabs/Module/Editwebpage.php:143 +#: ../../Zotlabs/Module/Editwebpage.php:142 msgid "Page link" msgstr "Enlace de la página" -#: ../../Zotlabs/Module/Editwebpage.php:169 +#: ../../Zotlabs/Module/Editwebpage.php:168 msgid "Edit Webpage" msgstr "Editar la página web" -#: ../../Zotlabs/Module/Follow.php:34 -msgid "Channel added." -msgstr "Canal añadido." - -#: ../../Zotlabs/Module/Acl.php:227 -msgid "network" -msgstr "red" - -#: ../../Zotlabs/Module/Acl.php:237 -msgid "RSS" -msgstr "RSS" - #: ../../Zotlabs/Module/Group.php:24 msgid "Privacy group created." msgstr "El grupo de canales ha sido creado." @@ -1585,7 +1809,7 @@ msgid "Could not create privacy group." msgstr "No se puede crear el grupo de canales" #: ../../Zotlabs/Module/Group.php:42 ../../Zotlabs/Module/Group.php:141 -#: ../../include/items.php:3893 +#: ../../include/items.php:3902 msgid "Privacy group not found." msgstr "Grupo de canales no encontrado." @@ -1629,31 +1853,57 @@ msgstr "Todos los canales conectados" msgid "Click on a channel to add or remove." msgstr "Haga clic en un canal para agregarlo o quitarlo." -#: ../../Zotlabs/Module/Ffsapi.php:12 -msgid "Share content from Firefox to $Projectname" -msgstr "Compartir contenido desde Firefox a $Projectname" +#: ../../Zotlabs/Module/Appman.php:37 ../../Zotlabs/Module/Appman.php:53 +msgid "App installed." +msgstr "Aplicación instalada." -#: ../../Zotlabs/Module/Ffsapi.php:15 -msgid "Activate the Firefox $Projectname provider" -msgstr "Servicio de compartición de Firefox: activar el proveedor $Projectname " +#: ../../Zotlabs/Module/Appman.php:46 +msgid "Malformed app." +msgstr "Aplicación con errores" -#: ../../Zotlabs/Module/Api.php:61 ../../Zotlabs/Module/Api.php:85 -msgid "Authorize application connection" -msgstr "Autorizar una conexión de aplicación" +#: ../../Zotlabs/Module/Appman.php:104 +msgid "Embed code" +msgstr "Código incorporado" -#: ../../Zotlabs/Module/Api.php:62 -msgid "Return to your app and insert this Securty Code:" -msgstr "Volver a su aplicación e introducir este código de seguridad:" +#: ../../Zotlabs/Module/Appman.php:110 ../../include/widgets.php:107 +msgid "Edit App" +msgstr "Modificar la aplicación" -#: ../../Zotlabs/Module/Api.php:72 -msgid "Please login to continue." -msgstr "Por favor inicie sesión para continuar." +#: ../../Zotlabs/Module/Appman.php:110 +msgid "Create App" +msgstr "Crear una aplicación" -#: ../../Zotlabs/Module/Api.php:87 -msgid "" -"Do you want to authorize this application to access your posts and contacts," -" and/or create new posts for you?" -msgstr "¿Desea autorizar a esta aplicación a acceder a sus publicaciones y contactos, y/o crear nuevas publicaciones por usted?" +#: ../../Zotlabs/Module/Appman.php:115 +msgid "Name of app" +msgstr "Nombre de la aplicación" + +#: ../../Zotlabs/Module/Appman.php:116 +msgid "Location (URL) of app" +msgstr "Dirección (URL) de la aplicación" + +#: ../../Zotlabs/Module/Appman.php:118 +msgid "Photo icon URL" +msgstr "Dirección del icono" + +#: ../../Zotlabs/Module/Appman.php:118 +msgid "80 x 80 pixels - optional" +msgstr "80 x 80 pixels - opcional" + +#: ../../Zotlabs/Module/Appman.php:119 +msgid "Categories (optional, comma separated list)" +msgstr "Categorías (opcional, lista separada por comas)" + +#: ../../Zotlabs/Module/Appman.php:120 +msgid "Version ID" +msgstr "Versión" + +#: ../../Zotlabs/Module/Appman.php:121 +msgid "Price of app" +msgstr "Precio de la aplicación" + +#: ../../Zotlabs/Module/Appman.php:122 +msgid "Location (URL) to purchase app" +msgstr "Dirección (URL) donde adquirir la aplicación" #: ../../Zotlabs/Module/Help.php:26 msgid "Documentation Search" @@ -1665,8 +1915,8 @@ msgid "Help:" msgstr "Ayuda:" #: ../../Zotlabs/Module/Help.php:85 ../../Zotlabs/Module/Help.php:90 -#: ../../Zotlabs/Module/Layouts.php:183 ../../Zotlabs/Lib/Apps.php:223 -#: ../../include/nav.php:159 +#: ../../Zotlabs/Module/Layouts.php:185 ../../Zotlabs/Lib/Apps.php:225 +#: ../../include/nav.php:161 msgid "Help" msgstr "Ayuda" @@ -1674,335 +1924,124 @@ msgstr "Ayuda" msgid "$Projectname Documentation" msgstr "Documentación de $Projectname" -#: ../../Zotlabs/Module/Filestorage.php:88 -msgid "Permission Denied." -msgstr "Permiso denegado" - -#: ../../Zotlabs/Module/Filestorage.php:104 -msgid "File not found." -msgstr "Fichero no encontrado." - -#: ../../Zotlabs/Module/Filestorage.php:147 -msgid "Edit file permissions" -msgstr "Modificar los permisos del fichero" - -#: ../../Zotlabs/Module/Filestorage.php:156 -msgid "Set/edit permissions" -msgstr "Establecer/editar los permisos" - -#: ../../Zotlabs/Module/Filestorage.php:157 -msgid "Include all files and sub folders" -msgstr "Incluir todos los ficheros y subcarpetas" - -#: ../../Zotlabs/Module/Filestorage.php:158 -msgid "Return to file list" -msgstr "Volver a la lista de ficheros" - -#: ../../Zotlabs/Module/Filestorage.php:160 -msgid "Copy/paste this code to attach file to a post" -msgstr "Copiar/pegar este código para adjuntar el fichero al envío" - -#: ../../Zotlabs/Module/Filestorage.php:161 -msgid "Copy/paste this URL to link file from a web page" -msgstr "Copiar/pegar esta dirección para enlazar el fichero desde una página web" - -#: ../../Zotlabs/Module/Filestorage.php:163 -msgid "Share this file" -msgstr "Compartir este fichero" - -#: ../../Zotlabs/Module/Filestorage.php:164 -msgid "Show URL to this file" -msgstr "Mostrar la dirección de este fichero" - -#: ../../Zotlabs/Module/Filestorage.php:165 -msgid "Notify your contacts about this file" -msgstr "Avisar a sus contactos sobre este fichero" - -#: ../../Zotlabs/Module/Apps.php:47 ../../include/widgets.php:102 -#: ../../include/nav.php:163 -msgid "Apps" -msgstr "Aplicaciones (apps)" - #: ../../Zotlabs/Module/Attach.php:13 msgid "Item not available." msgstr "Elemento no disponible" -#: ../../Zotlabs/Module/Import.php:32 -#, php-format -msgid "Your service plan only allows %d channels." -msgstr "Su paquete de servicios solo permite %d canales." +#: ../../Zotlabs/Module/Pdledit.php:18 +msgid "Layout updated." +msgstr "Plantilla actualizada." -#: ../../Zotlabs/Module/Import.php:70 ../../Zotlabs/Module/Import_items.php:42 -msgid "Nothing to import." -msgstr "No hay nada para importar." +#: ../../Zotlabs/Module/Pdledit.php:34 ../../Zotlabs/Module/Pdledit.php:61 +msgid "Edit System Page Description" +msgstr "Editor del Sistema de Descripción de Páginas" -#: ../../Zotlabs/Module/Import.php:94 ../../Zotlabs/Module/Import_items.php:66 -msgid "Unable to download data from old server" -msgstr "No se han podido descargar datos de su antiguo servidor" +#: ../../Zotlabs/Module/Pdledit.php:56 +msgid "Layout not found." +msgstr "Plantilla no encontrada" -#: ../../Zotlabs/Module/Import.php:100 -#: ../../Zotlabs/Module/Import_items.php:72 -msgid "Imported file is empty." -msgstr "El fichero importado está vacío." +#: ../../Zotlabs/Module/Pdledit.php:62 +msgid "Module Name:" +msgstr "Nombre del módulo:" -#: ../../Zotlabs/Module/Import.php:122 -#: ../../Zotlabs/Module/Import_items.php:86 -#, php-format -msgid "Warning: Database versions differ by %1$d updates." -msgstr "Atención: Las versiones de la base de datos difieren en %1$d actualizaciones." +#: ../../Zotlabs/Module/Pdledit.php:63 +msgid "Layout Help" +msgstr "Ayuda para el diseño de plantillas de página" -#: ../../Zotlabs/Module/Import.php:150 ../../include/import.php:86 -msgid "Cloned channel not found. Import failed." -msgstr "No se ha podido importar el canal porque el canal clonado no se ha encontrado." +#: ../../Zotlabs/Module/Ffsapi.php:12 +msgid "Share content from Firefox to $Projectname" +msgstr "Compartir contenido desde Firefox a $Projectname" -#: ../../Zotlabs/Module/Import.php:160 -msgid "No channel. Import failed." -msgstr "No hay canal. La importación ha fallado" +#: ../../Zotlabs/Module/Ffsapi.php:15 +msgid "Activate the Firefox $Projectname provider" +msgstr "Servicio de compartición de Firefox: activar el proveedor $Projectname " -#: ../../Zotlabs/Module/Import.php:510 -#: ../../include/Import/import_diaspora.php:142 -msgid "Import completed." -msgstr "Importación completada." +#: ../../Zotlabs/Module/Acl.php:312 +msgid "network" +msgstr "red" -#: ../../Zotlabs/Module/Import.php:532 -msgid "You must be logged in to use this feature." -msgstr "Debe estar registrado para poder usar esta funcionalidad." +#: ../../Zotlabs/Module/Acl.php:322 +msgid "RSS" +msgstr "RSS" -#: ../../Zotlabs/Module/Import.php:537 -msgid "Import Channel" -msgstr "Importar canal" +#: ../../Zotlabs/Module/Filestorage.php:87 +msgid "Permission Denied." +msgstr "Permiso denegado" -#: ../../Zotlabs/Module/Import.php:538 -msgid "" -"Use this form to import an existing channel from a different server/hub. You" -" may retrieve the channel identity from the old server/hub via the network " -"or provide an export file." -msgstr "Emplee este formulario para importar un canal desde un servidor/hub diferente. Puede recuperar el canal desde el antiguo servidor/hub a través de la red o proporcionando un fichero de exportación." +#: ../../Zotlabs/Module/Filestorage.php:103 +msgid "File not found." +msgstr "Fichero no encontrado." -#: ../../Zotlabs/Module/Import.php:539 -#: ../../Zotlabs/Module/Import_items.php:119 -msgid "File to Upload" -msgstr "Fichero para subir" +#: ../../Zotlabs/Module/Filestorage.php:146 +msgid "Edit file permissions" +msgstr "Modificar los permisos del fichero" -#: ../../Zotlabs/Module/Import.php:540 -msgid "Or provide the old server/hub details" -msgstr "O proporcione los detalles de su antiguo servidor/hub" +#: ../../Zotlabs/Module/Filestorage.php:155 +msgid "Set/edit permissions" +msgstr "Establecer/editar los permisos" -#: ../../Zotlabs/Module/Import.php:541 -msgid "Your old identity address (xyz@example.com)" -msgstr "Su identidad en el antiguo servidor (canal@ejemplo.com)" +#: ../../Zotlabs/Module/Filestorage.php:156 +msgid "Include all files and sub folders" +msgstr "Incluir todos los ficheros y subcarpetas" -#: ../../Zotlabs/Module/Import.php:542 -msgid "Your old login email address" -msgstr "Su antigua dirección de correo electrónico" +#: ../../Zotlabs/Module/Filestorage.php:157 +msgid "Return to file list" +msgstr "Volver a la lista de ficheros" -#: ../../Zotlabs/Module/Import.php:543 -msgid "Your old login password" -msgstr "Su antigua contraseña" +#: ../../Zotlabs/Module/Filestorage.php:159 +msgid "Copy/paste this code to attach file to a post" +msgstr "Copiar/pegar este código para adjuntar el fichero al envío" -#: ../../Zotlabs/Module/Import.php:544 -msgid "" -"For either option, please choose whether to make this hub your new primary " -"address, or whether your old location should continue this role. You will be" -" able to post from either location, but only one can be marked as the " -"primary location for files, photos, and media." -msgstr "Para cualquiera de las opciones, elija si hacer de este servidor su nueva dirección primaria, o si su antigua dirección debe continuar con este papel. Usted podrá publicar desde cualquier ubicación, pero sólo una puede estar marcada como la ubicación principal para los ficheros, fotos y otras imágenes o vídeos." +#: ../../Zotlabs/Module/Filestorage.php:160 +msgid "Copy/paste this URL to link file from a web page" +msgstr "Copiar/pegar esta dirección para enlazar el fichero desde una página web" -#: ../../Zotlabs/Module/Import.php:545 -msgid "Make this hub my primary location" -msgstr "Convertir este servidor en mi ubicación primaria" +#: ../../Zotlabs/Module/Filestorage.php:162 +msgid "Share this file" +msgstr "Compartir este fichero" -#: ../../Zotlabs/Module/Import.php:546 -msgid "" -"Import existing posts if possible (experimental - limited by available " -"memory" -msgstr "Importar el contenido publicado si es posible (experimental - limitado por la memoria disponible" +#: ../../Zotlabs/Module/Filestorage.php:163 +msgid "Show URL to this file" +msgstr "Mostrar la dirección de este fichero" -#: ../../Zotlabs/Module/Import.php:547 -msgid "" -"This process may take several minutes to complete. Please submit the form " -"only once and leave this page open until finished." -msgstr "Este proceso puede tardar varios minutos en completarse. Por favor envíe el formulario una sola vez y mantenga esta página abierta hasta que termine." +#: ../../Zotlabs/Module/Filestorage.php:164 +msgid "Notify your contacts about this file" +msgstr "Avisar a sus contactos sobre este fichero" -#: ../../Zotlabs/Module/Item.php:178 -msgid "Unable to locate original post." -msgstr "No ha sido posible encontrar la entrada original." - -#: ../../Zotlabs/Module/Item.php:427 -msgid "Empty post discarded." -msgstr "La entrada vacía ha sido desechada." - -#: ../../Zotlabs/Module/Item.php:467 -msgid "Executable content type not permitted to this channel." -msgstr "Contenido de tipo ejecutable no permitido en este canal." - -#: ../../Zotlabs/Module/Item.php:847 -msgid "Duplicate post suppressed." -msgstr "Se ha suprimido la entrada duplicada." - -#: ../../Zotlabs/Module/Item.php:977 -msgid "System error. Post not saved." -msgstr "Error del sistema. La entrada no se ha podido salvar." - -#: ../../Zotlabs/Module/Item.php:1241 -msgid "Unable to obtain post information from database." -msgstr "No ha sido posible obtener información de la entrada en la base de datos." - -#: ../../Zotlabs/Module/Item.php:1248 -#, php-format -msgid "You have reached your limit of %1$.0f top level posts." -msgstr "Ha alcanzado su límite de %1$.0f entradas en la página principal." - -#: ../../Zotlabs/Module/Item.php:1255 -#, php-format -msgid "You have reached your limit of %1$.0f webpages." -msgstr "Ha alcanzado su límite de %1$.0f páginas web." - -#: ../../Zotlabs/Module/Layouts.php:181 ../../include/text.php:2267 +#: ../../Zotlabs/Module/Layouts.php:183 ../../include/text.php:2240 msgid "Layouts" msgstr "Plantillas" -#: ../../Zotlabs/Module/Layouts.php:183 +#: ../../Zotlabs/Module/Layouts.php:185 msgid "Comanche page description language help" msgstr "Página de ayuda del lenguaje de descripción de páginas (PDL) Comanche" -#: ../../Zotlabs/Module/Layouts.php:187 +#: ../../Zotlabs/Module/Layouts.php:189 msgid "Layout Description" msgstr "Descripción de la plantilla" -#: ../../Zotlabs/Module/Layouts.php:192 +#: ../../Zotlabs/Module/Layouts.php:190 ../../Zotlabs/Module/Menu.php:114 +#: ../../Zotlabs/Module/Blocks.php:157 ../../Zotlabs/Module/Webpages.php:205 +#: ../../include/page_widgets.php:47 +msgid "Created" +msgstr "Creado" + +#: ../../Zotlabs/Module/Layouts.php:191 ../../Zotlabs/Module/Menu.php:115 +#: ../../Zotlabs/Module/Blocks.php:158 ../../Zotlabs/Module/Webpages.php:206 +#: ../../include/page_widgets.php:48 +msgid "Edited" +msgstr "Editado" + +#: ../../Zotlabs/Module/Layouts.php:193 ../../Zotlabs/Module/Photos.php:1070 +#: ../../Zotlabs/Module/Blocks.php:161 ../../Zotlabs/Module/Webpages.php:195 +#: ../../include/conversation.php:1219 +msgid "Share" +msgstr "Compartir" + +#: ../../Zotlabs/Module/Layouts.php:194 msgid "Download PDL file" msgstr "Descargar el fichero PDL" -#: ../../Zotlabs/Module/Home.php:61 ../../Zotlabs/Module/Home.php:69 -#: ../../Zotlabs/Module/Siteinfo.php:65 -msgid "$Projectname" -msgstr "$Projectname" - -#: ../../Zotlabs/Module/Home.php:79 -#, php-format -msgid "Welcome to %s" -msgstr "Bienvenido a %s" - -#: ../../Zotlabs/Module/Id.php:13 -msgid "First Name" -msgstr "Nombre" - -#: ../../Zotlabs/Module/Id.php:14 -msgid "Last Name" -msgstr "Apellido" - -#: ../../Zotlabs/Module/Id.php:15 -msgid "Nickname" -msgstr "Sobrenombre o Alias" - -#: ../../Zotlabs/Module/Id.php:16 -msgid "Full Name" -msgstr "Nombre completo" - -#: ../../Zotlabs/Module/Id.php:17 ../../Zotlabs/Module/Id.php:18 -#: ../../Zotlabs/Module/Admin.php:1035 ../../Zotlabs/Module/Admin.php:1047 -#: ../../include/network.php:2151 ../../boot.php:1705 -msgid "Email" -msgstr "Correo electrónico" - -#: ../../Zotlabs/Module/Id.php:19 ../../Zotlabs/Module/Id.php:20 -#: ../../Zotlabs/Module/Id.php:21 ../../Zotlabs/Lib/Apps.php:236 -msgid "Profile Photo" -msgstr "Foto del perfil" - -#: ../../Zotlabs/Module/Id.php:22 -msgid "Profile Photo 16px" -msgstr "Foto del perfil 16px" - -#: ../../Zotlabs/Module/Id.php:23 -msgid "Profile Photo 32px" -msgstr "Foto del perfil 32px" - -#: ../../Zotlabs/Module/Id.php:24 -msgid "Profile Photo 48px" -msgstr "Foto del perfil 48px" - -#: ../../Zotlabs/Module/Id.php:25 -msgid "Profile Photo 64px" -msgstr "Foto del perfil 64px" - -#: ../../Zotlabs/Module/Id.php:26 -msgid "Profile Photo 80px" -msgstr "Foto del perfil 80px" - -#: ../../Zotlabs/Module/Id.php:27 -msgid "Profile Photo 128px" -msgstr "Foto del perfil 128px" - -#: ../../Zotlabs/Module/Id.php:28 -msgid "Timezone" -msgstr "Huso horario" - -#: ../../Zotlabs/Module/Id.php:29 ../../Zotlabs/Module/Profiles.php:731 -msgid "Homepage URL" -msgstr "Dirección de la página personal" - -#: ../../Zotlabs/Module/Id.php:30 ../../Zotlabs/Lib/Apps.php:234 -msgid "Language" -msgstr "Idioma" - -#: ../../Zotlabs/Module/Id.php:31 -msgid "Birth Year" -msgstr "Año de nacimiento" - -#: ../../Zotlabs/Module/Id.php:32 -msgid "Birth Month" -msgstr "Mes de nacimiento" - -#: ../../Zotlabs/Module/Id.php:33 -msgid "Birth Day" -msgstr "Día de nacimiento" - -#: ../../Zotlabs/Module/Id.php:34 -msgid "Birthdate" -msgstr "Fecha de nacimiento" - -#: ../../Zotlabs/Module/Id.php:35 ../../Zotlabs/Module/Profiles.php:454 -msgid "Gender" -msgstr "Género" - -#: ../../Zotlabs/Module/Id.php:108 ../../include/selectors.php:49 -#: ../../include/selectors.php:66 -msgid "Male" -msgstr "Hombre" - -#: ../../Zotlabs/Module/Id.php:110 ../../include/selectors.php:49 -#: ../../include/selectors.php:66 -msgid "Female" -msgstr "Mujer" - -#: ../../Zotlabs/Module/Impel.php:41 ../../include/bbcode.php:192 -msgid "webpage" -msgstr "página web" - -#: ../../Zotlabs/Module/Impel.php:46 ../../include/bbcode.php:198 -msgid "block" -msgstr "bloque" - -#: ../../Zotlabs/Module/Impel.php:51 ../../include/bbcode.php:195 -msgid "layout" -msgstr "plantilla" - -#: ../../Zotlabs/Module/Impel.php:58 ../../include/bbcode.php:201 -msgid "menu" -msgstr "menú" - -#: ../../Zotlabs/Module/Impel.php:196 -#, php-format -msgid "%s element installed" -msgstr "%s elemento instalado" - -#: ../../Zotlabs/Module/Impel.php:199 -#, php-format -msgid "%s element installation failed" -msgstr "Elemento con instalación fallida: %s" - #: ../../Zotlabs/Module/Like.php:19 msgid "Like/Dislike" msgstr "Me gusta/No me gusta" @@ -2038,1180 +2077,65 @@ msgstr "Canal no disponible." msgid "Previous action reversed." msgstr "Acción anterior revocada." -#: ../../Zotlabs/Module/Like.php:371 ../../Zotlabs/Module/Subthread.php:87 -#: ../../Zotlabs/Module/Tagger.php:47 ../../include/text.php:1940 -#: ../../include/conversation.php:120 +#: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87 +#: ../../Zotlabs/Module/Tagger.php:47 ../../include/conversation.php:120 +#: ../../include/text.php:1921 msgid "photo" msgstr "foto" -#: ../../Zotlabs/Module/Like.php:371 ../../Zotlabs/Module/Subthread.php:87 -#: ../../include/text.php:1946 ../../include/conversation.php:148 +#: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87 +#: ../../include/conversation.php:148 ../../include/text.php:1927 msgid "status" msgstr "el mensaje de estado" -#: ../../Zotlabs/Module/Like.php:420 ../../include/conversation.php:164 +#: ../../Zotlabs/Module/Like.php:419 ../../include/conversation.php:164 #, php-format msgid "%1$s likes %2$s's %3$s" msgstr "A %1$s le gusta %3$s de %2$s" -#: ../../Zotlabs/Module/Like.php:422 ../../include/conversation.php:167 +#: ../../Zotlabs/Module/Like.php:421 ../../include/conversation.php:167 #, php-format msgid "%1$s doesn't like %2$s's %3$s" msgstr "A %1$s no le gusta %3$s de %2$s" -#: ../../Zotlabs/Module/Like.php:424 +#: ../../Zotlabs/Module/Like.php:423 #, php-format msgid "%1$s agrees with %2$s's %3$s" msgstr "%3$s de %2$s: %1$s está de acuerdo" -#: ../../Zotlabs/Module/Like.php:426 +#: ../../Zotlabs/Module/Like.php:425 #, php-format msgid "%1$s doesn't agree with %2$s's %3$s" msgstr "%3$s de %2$s: %1$s no está de acuerdo" -#: ../../Zotlabs/Module/Like.php:428 +#: ../../Zotlabs/Module/Like.php:427 #, php-format msgid "%1$s abstains from a decision on %2$s's %3$s" msgstr "%3$s de %2$s: %1$s se abstiene" -#: ../../Zotlabs/Module/Like.php:430 +#: ../../Zotlabs/Module/Like.php:429 #, php-format msgid "%1$s is attending %2$s's %3$s" msgstr "%3$s de %2$s: %1$s participa" -#: ../../Zotlabs/Module/Like.php:432 +#: ../../Zotlabs/Module/Like.php:431 #, php-format msgid "%1$s is not attending %2$s's %3$s" msgstr "%3$s de %2$s: %1$s no participa" -#: ../../Zotlabs/Module/Like.php:434 +#: ../../Zotlabs/Module/Like.php:433 #, php-format msgid "%1$s may attend %2$s's %3$s" msgstr "%3$s de %2$s: %1$s quizá participe" -#: ../../Zotlabs/Module/Like.php:537 +#: ../../Zotlabs/Module/Like.php:536 msgid "Action completed." msgstr "Acción completada." -#: ../../Zotlabs/Module/Like.php:538 +#: ../../Zotlabs/Module/Like.php:537 msgid "Thank you." msgstr "Gracias." -#: ../../Zotlabs/Module/Import_items.php:102 -msgid "Import completed" -msgstr "Importación completada" - -#: ../../Zotlabs/Module/Import_items.php:117 -msgid "Import Items" -msgstr "Importar elementos" - -#: ../../Zotlabs/Module/Import_items.php:118 -msgid "" -"Use this form to import existing posts and content from an export file." -msgstr "Utilice este formulario para importar entradas existentes y contenido desde un archivo de exportación." - -#: ../../Zotlabs/Module/Invite.php:29 -msgid "Total invitation limit exceeded." -msgstr "Se ha superado el límite máximo de invitaciones." - -#: ../../Zotlabs/Module/Invite.php:53 -#, php-format -msgid "%s : Not a valid email address." -msgstr "%s : No es una dirección de correo electrónico válida. " - -#: ../../Zotlabs/Module/Invite.php:63 -msgid "Please join us on $Projectname" -msgstr "Únase a nosotros en $Projectname" - -#: ../../Zotlabs/Module/Invite.php:74 -msgid "Invitation limit exceeded. Please contact your site administrator." -msgstr "Excedido el límite de invitaciones. Por favor, contacte con el Administrador de su sitio." - -#: ../../Zotlabs/Module/Invite.php:79 -#, php-format -msgid "%s : Message delivery failed." -msgstr "%s : Falló el envío del mensaje." - -#: ../../Zotlabs/Module/Invite.php:83 -#, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "%d mensajes enviados." -msgstr[1] "%d mensajes enviados." - -#: ../../Zotlabs/Module/Invite.php:102 -msgid "You have no more invitations available" -msgstr "No tiene más invitaciones disponibles" - -#: ../../Zotlabs/Module/Invite.php:133 -msgid "Send invitations" -msgstr "Enviar invitaciones" - -#: ../../Zotlabs/Module/Invite.php:134 -msgid "Enter email addresses, one per line:" -msgstr "Introduzca las direcciones de correo electrónico, una por línea:" - -#: ../../Zotlabs/Module/Invite.php:135 ../../Zotlabs/Module/Mail.php:249 -msgid "Your message:" -msgstr "Su mensaje:" - -#: ../../Zotlabs/Module/Invite.php:136 -msgid "Please join my community on $Projectname." -msgstr "Por favor, únase a mi comunidad en $Projectname." - -#: ../../Zotlabs/Module/Invite.php:138 -msgid "You will need to supply this invitation code:" -msgstr "Tendrá que suministrar este código de invitación:" - -#: ../../Zotlabs/Module/Invite.php:139 -msgid "" -"1. Register at any $Projectname location (they are all inter-connected)" -msgstr "1. Regístrese en cualquier sitio de $Projectname (están todos interconectados)" - -#: ../../Zotlabs/Module/Invite.php:141 -msgid "2. Enter my $Projectname network address into the site searchbar." -msgstr "2. Introduzca mi dirección $Projectname en la caja de búsqueda del sitio." - -#: ../../Zotlabs/Module/Invite.php:142 -msgid "or visit" -msgstr "o visitar" - -#: ../../Zotlabs/Module/Invite.php:144 -msgid "3. Click [Connect]" -msgstr "3. Pulse [conectar]" - -#: ../../Zotlabs/Module/Lockview.php:61 -msgid "Remote privacy information not available." -msgstr "La información privada remota no está disponible." - -#: ../../Zotlabs/Module/Lockview.php:82 -msgid "Visible to:" -msgstr "Visible para:" - -#: ../../Zotlabs/Module/Locs.php:25 ../../Zotlabs/Module/Locs.php:54 -msgid "Location not found." -msgstr "Dirección no encontrada." - -#: ../../Zotlabs/Module/Locs.php:62 -msgid "Location lookup failed." -msgstr "Ha fallado la búsqueda de la dirección." - -#: ../../Zotlabs/Module/Locs.php:66 -msgid "" -"Please select another location to become primary before removing the primary" -" location." -msgstr "Por favor, seleccione una copia de su canal (un clon) para convertirlo en primario antes de eliminar su canal principal." - -#: ../../Zotlabs/Module/Locs.php:95 -msgid "Syncing locations" -msgstr "Sincronización de ubicaciones" - -#: ../../Zotlabs/Module/Locs.php:105 -msgid "No locations found." -msgstr "No encontrada ninguna dirección." - -#: ../../Zotlabs/Module/Locs.php:116 -msgid "Manage Channel Locations" -msgstr "Gestionar las direcciones del canal" - -#: ../../Zotlabs/Module/Locs.php:118 ../../Zotlabs/Module/Profiles.php:470 -#: ../../Zotlabs/Module/Admin.php:1224 -msgid "Address" -msgstr "Dirección" - -#: ../../Zotlabs/Module/Locs.php:119 -msgid "Primary" -msgstr "Primario" - -#: ../../Zotlabs/Module/Locs.php:120 ../../Zotlabs/Module/Menu.php:113 -msgid "Drop" -msgstr "Eliminar" - -#: ../../Zotlabs/Module/Locs.php:122 -msgid "Sync Now" -msgstr "Sincronizar ahora" - -#: ../../Zotlabs/Module/Locs.php:123 -msgid "Please wait several minutes between consecutive operations." -msgstr "Por favor, espere algunos minutos entre operaciones consecutivas." - -#: ../../Zotlabs/Module/Locs.php:124 -msgid "" -"When possible, drop a location by logging into that website/hub and removing" -" your channel." -msgstr "Cuando sea posible, elimine una ubicación iniciando sesión en el sitio web o \"hub\" y borrando su canal." - -#: ../../Zotlabs/Module/Locs.php:125 -msgid "Use this form to drop the location if the hub is no longer operating." -msgstr "Utilice este formulario para eliminar la dirección si el \"hub\" no está funcionando desde hace tiempo." - -#: ../../Zotlabs/Module/Magic.php:71 -msgid "Hub not found." -msgstr "Servidor no encontrado" - -#: ../../Zotlabs/Module/Mail.php:38 -msgid "Unable to lookup recipient." -msgstr "Imposible asociar a un destinatario." - -#: ../../Zotlabs/Module/Mail.php:45 -msgid "Unable to communicate with requested channel." -msgstr "Imposible comunicar con el canal solicitado." - -#: ../../Zotlabs/Module/Mail.php:52 -msgid "Cannot verify requested channel." -msgstr "No se puede verificar el canal solicitado." - -#: ../../Zotlabs/Module/Mail.php:78 -msgid "Selected channel has private message restrictions. Send failed." -msgstr "El canal seleccionado tiene restricciones sobre los mensajes privados. El envío falló." - -#: ../../Zotlabs/Module/Mail.php:143 -msgid "Messages" -msgstr "Mensajes" - -#: ../../Zotlabs/Module/Mail.php:178 -msgid "Message recalled." -msgstr "Mensaje revocado." - -#: ../../Zotlabs/Module/Mail.php:191 -msgid "Conversation removed." -msgstr "Conversación eliminada." - -#: ../../Zotlabs/Module/Mail.php:206 ../../Zotlabs/Module/Mail.php:315 -msgid "Expires YYYY-MM-DD HH:MM" -msgstr "Caduca YYYY-MM-DD HH:MM" - -#: ../../Zotlabs/Module/Mail.php:234 -msgid "Requested channel is not in this network" -msgstr "El canal solicitado no existe en esta red" - -#: ../../Zotlabs/Module/Mail.php:242 -msgid "Send Private Message" -msgstr "Enviar un mensaje privado" - -#: ../../Zotlabs/Module/Mail.php:243 ../../Zotlabs/Module/Mail.php:368 -msgid "To:" -msgstr "Para:" - -#: ../../Zotlabs/Module/Mail.php:246 ../../Zotlabs/Module/Mail.php:370 -msgid "Subject:" -msgstr "Asunto:" - -#: ../../Zotlabs/Module/Mail.php:251 ../../Zotlabs/Module/Mail.php:376 -#: ../../include/conversation.php:1220 -msgid "Attach file" -msgstr "Adjuntar fichero" - -#: ../../Zotlabs/Module/Mail.php:253 -msgid "Send" -msgstr "Enviar" - -#: ../../Zotlabs/Module/Mail.php:256 ../../Zotlabs/Module/Mail.php:381 -#: ../../include/conversation.php:1251 -msgid "Set expiration date" -msgstr "Configurar fecha de caducidad" - -#: ../../Zotlabs/Module/Mail.php:340 -msgid "Delete message" -msgstr "Borrar mensaje" - -#: ../../Zotlabs/Module/Mail.php:341 -msgid "Delivery report" -msgstr "Informe de transmisión" - -#: ../../Zotlabs/Module/Mail.php:342 -msgid "Recall message" -msgstr "Revocar el mensaje" - -#: ../../Zotlabs/Module/Mail.php:344 -msgid "Message has been recalled." -msgstr "El mensaje ha sido revocado." - -#: ../../Zotlabs/Module/Mail.php:361 -msgid "Delete Conversation" -msgstr "Eliminar conversación" - -#: ../../Zotlabs/Module/Mail.php:363 -msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." -msgstr "Comunicación segura no disponible. Pero puede responder desde la página del perfil del remitente." - -#: ../../Zotlabs/Module/Mail.php:367 -msgid "Send Reply" -msgstr "Responder" - -#: ../../Zotlabs/Module/Mail.php:372 -#, php-format -msgid "Your message for %s (%s):" -msgstr "Su mensaje para %s (%s):" - -#: ../../Zotlabs/Module/Manage.php:136 -#: ../../Zotlabs/Module/New_channel.php:121 -#, php-format -msgid "You have created %1$.0f of %2$.0f allowed channels." -msgstr "Ha creado %1$.0f de %2$.0f canales permitidos." - -#: ../../Zotlabs/Module/Manage.php:143 -msgid "Create a new channel" -msgstr "Crear un nuevo canal" - -#: ../../Zotlabs/Module/Manage.php:164 ../../Zotlabs/Lib/Apps.php:213 -#: ../../include/nav.php:206 -msgid "Channel Manager" -msgstr "Administración de canales" - -#: ../../Zotlabs/Module/Manage.php:165 -msgid "Current Channel" -msgstr "Canal actual" - -#: ../../Zotlabs/Module/Manage.php:167 -msgid "Switch to one of your channels by selecting it." -msgstr "Cambiar a uno de sus canales seleccionándolo." - -#: ../../Zotlabs/Module/Manage.php:168 -msgid "Default Channel" -msgstr "Canal principal" - -#: ../../Zotlabs/Module/Manage.php:169 -msgid "Make Default" -msgstr "Convertir en predeterminado" - -#: ../../Zotlabs/Module/Manage.php:172 -#, php-format -msgid "%d new messages" -msgstr "%d mensajes nuevos" - -#: ../../Zotlabs/Module/Manage.php:173 -#, php-format -msgid "%d new introductions" -msgstr "%d nuevas isolicitudes de conexión" - -#: ../../Zotlabs/Module/Manage.php:175 -msgid "Delegated Channel" -msgstr "Canal delegado" - -#: ../../Zotlabs/Module/Lostpass.php:19 -msgid "No valid account found." -msgstr "No se ha encontrado una cuenta válida." - -#: ../../Zotlabs/Module/Lostpass.php:33 -msgid "Password reset request issued. Check your email." -msgstr "Se ha recibido una solicitud de restablecimiento de contraseña. Consulte su correo electrónico." - -#: ../../Zotlabs/Module/Lostpass.php:39 ../../Zotlabs/Module/Lostpass.php:107 -#, php-format -msgid "Site Member (%s)" -msgstr "Usuario del sitio (%s)" - -#: ../../Zotlabs/Module/Lostpass.php:44 -#, php-format -msgid "Password reset requested at %s" -msgstr "Se ha solicitado restablecer la contraseña en %s" - -#: ../../Zotlabs/Module/Lostpass.php:67 -msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." -msgstr "La solicitud no ha podido ser verificada. (Puede que la haya enviado con anterioridad) El restablecimiento de la contraseña ha fallado." - -#: ../../Zotlabs/Module/Lostpass.php:90 ../../boot.php:1711 -msgid "Password Reset" -msgstr "Restablecer la contraseña" - -#: ../../Zotlabs/Module/Lostpass.php:91 -msgid "Your password has been reset as requested." -msgstr "Su contraseña ha sido restablecida según lo solicitó." - -#: ../../Zotlabs/Module/Lostpass.php:92 -msgid "Your new password is" -msgstr "Su nueva contraseña es" - -#: ../../Zotlabs/Module/Lostpass.php:93 -msgid "Save or copy your new password - and then" -msgstr "Guarde o copie su nueva contraseña - y después" - -#: ../../Zotlabs/Module/Lostpass.php:94 -msgid "click here to login" -msgstr "pulse aquí para conectarse" - -#: ../../Zotlabs/Module/Lostpass.php:95 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." -msgstr "Puede cambiar la contraseña en la página Ajustes una vez iniciada la sesión." - -#: ../../Zotlabs/Module/Lostpass.php:112 -#, php-format -msgid "Your password has changed at %s" -msgstr "Su contraseña en %s ha sido cambiada" - -#: ../../Zotlabs/Module/Lostpass.php:127 -msgid "Forgot your Password?" -msgstr "¿Ha olvidado su contraseña?" - -#: ../../Zotlabs/Module/Lostpass.php:128 -msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." -msgstr "Introduzca y envíe su dirección de correo electrónico para el restablecimiento de su contraseña. Luego revise su correo para obtener más instrucciones." - -#: ../../Zotlabs/Module/Lostpass.php:129 -msgid "Email Address" -msgstr "Dirección de correo electrónico" - -#: ../../Zotlabs/Module/Lostpass.php:130 -msgid "Reset" -msgstr "Reiniciar" - -#: ../../Zotlabs/Module/Menu.php:49 -msgid "Unable to update menu." -msgstr "No se puede actualizar el menú." - -#: ../../Zotlabs/Module/Menu.php:60 -msgid "Unable to create menu." -msgstr "No se puede crear el menú." - -#: ../../Zotlabs/Module/Menu.php:98 ../../Zotlabs/Module/Menu.php:110 -msgid "Menu Name" -msgstr "Nombre del menú" - -#: ../../Zotlabs/Module/Menu.php:98 -msgid "Unique name (not visible on webpage) - required" -msgstr "Nombre único (no será visible en la página web) - requerido" - -#: ../../Zotlabs/Module/Menu.php:99 ../../Zotlabs/Module/Menu.php:111 -msgid "Menu Title" -msgstr "Título del menú" - -#: ../../Zotlabs/Module/Menu.php:99 -msgid "Visible on webpage - leave empty for no title" -msgstr "Visible en la página web - no ponga nada si no desea un título" - -#: ../../Zotlabs/Module/Menu.php:100 -msgid "Allow Bookmarks" -msgstr "Permitir marcadores" - -#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 -msgid "Menu may be used to store saved bookmarks" -msgstr "El menú se puede usar para guardar marcadores" - -#: ../../Zotlabs/Module/Menu.php:101 ../../Zotlabs/Module/Menu.php:159 -msgid "Submit and proceed" -msgstr "Enviar y proceder" - -#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2266 -msgid "Menus" -msgstr "Menús" - -#: ../../Zotlabs/Module/Menu.php:117 -msgid "Bookmarks allowed" -msgstr "Marcadores permitidos" - -#: ../../Zotlabs/Module/Menu.php:119 -msgid "Delete this menu" -msgstr "Borrar este menú" - -#: ../../Zotlabs/Module/Menu.php:120 ../../Zotlabs/Module/Menu.php:154 -msgid "Edit menu contents" -msgstr "Editar los contenidos del menú" - -#: ../../Zotlabs/Module/Menu.php:121 -msgid "Edit this menu" -msgstr "Modificar este menú" - -#: ../../Zotlabs/Module/Menu.php:136 -msgid "Menu could not be deleted." -msgstr "El menú no puede ser eliminado." - -#: ../../Zotlabs/Module/Menu.php:144 ../../Zotlabs/Module/Mitem.php:28 -msgid "Menu not found." -msgstr "Menú no encontrado" - -#: ../../Zotlabs/Module/Menu.php:149 -msgid "Edit Menu" -msgstr "Modificar el menú" - -#: ../../Zotlabs/Module/Menu.php:153 -msgid "Add or remove entries to this menu" -msgstr "Añadir o quitar entradas en este menú" - -#: ../../Zotlabs/Module/Menu.php:155 -msgid "Menu name" -msgstr "Nombre del menú" - -#: ../../Zotlabs/Module/Menu.php:155 -msgid "Must be unique, only seen by you" -msgstr "Debe ser único, solo será visible para usted" - -#: ../../Zotlabs/Module/Menu.php:156 -msgid "Menu title" -msgstr "Título del menú" - -#: ../../Zotlabs/Module/Menu.php:156 -msgid "Menu title as seen by others" -msgstr "El título del menú tal como será visto por los demás" - -#: ../../Zotlabs/Module/Menu.php:157 -msgid "Allow bookmarks" -msgstr "Permitir marcadores" - -#: ../../Zotlabs/Module/Menu.php:166 ../../Zotlabs/Module/Mitem.php:120 -#: ../../Zotlabs/Module/Xchan.php:41 -msgid "Not found." -msgstr "No encontrado." - -#: ../../Zotlabs/Module/Mood.php:67 ../../include/conversation.php:260 -#, php-format -msgctxt "mood" -msgid "%1$s is %2$s" -msgstr "%1$s está %2$s" - -#: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Lib/Apps.php:225 -msgid "Mood" -msgstr "Estado de ánimo" - -#: ../../Zotlabs/Module/Mood.php:136 -msgid "Set your current mood and tell your friends" -msgstr "Describir su estado de ánimo para comunicárselo a sus amigos" - -#: ../../Zotlabs/Module/Match.php:26 -msgid "Profile Match" -msgstr "Perfil compatible" - -#: ../../Zotlabs/Module/Match.php:35 -msgid "No keywords to match. Please add keywords to your default profile." -msgstr "No hay palabras clave en el perfil principal para poder encontrar perfiles compatibles. Por favor, añada palabras clave a su perfil principal." - -#: ../../Zotlabs/Module/Match.php:67 -msgid "is interested in:" -msgstr "está interesado en:" - -#: ../../Zotlabs/Module/Match.php:74 -msgid "No matches" -msgstr "No se han encontrado perfiles compatibles" - -#: ../../Zotlabs/Module/Network.php:96 -msgid "No such group" -msgstr "No se encuentra el grupo" - -#: ../../Zotlabs/Module/Network.php:136 -msgid "No such channel" -msgstr "No se encuentra el canal" - -#: ../../Zotlabs/Module/Network.php:141 -msgid "forum" -msgstr "foro" - -#: ../../Zotlabs/Module/Network.php:153 -msgid "Search Results For:" -msgstr "Buscar resultados para:" - -#: ../../Zotlabs/Module/Network.php:217 -msgid "Privacy group is empty" -msgstr "El grupo de canales está vacío" - -#: ../../Zotlabs/Module/Network.php:226 -msgid "Privacy group: " -msgstr "Grupo de canales: " - -#: ../../Zotlabs/Module/Network.php:252 -msgid "Invalid connection." -msgstr "Conexión no válida." - -#: ../../Zotlabs/Module/Notify.php:57 -#: ../../Zotlabs/Module/Notifications.php:98 -msgid "No more system notifications." -msgstr "No hay más notificaciones del sistema" - -#: ../../Zotlabs/Module/Notify.php:61 -#: ../../Zotlabs/Module/Notifications.php:102 -msgid "System Notifications" -msgstr "Notificaciones del sistema" - -#: ../../Zotlabs/Module/Mitem.php:52 -msgid "Unable to create element." -msgstr "Imposible crear el elemento." - -#: ../../Zotlabs/Module/Mitem.php:76 -msgid "Unable to update menu element." -msgstr "No es posible actualizar el elemento del menú." - -#: ../../Zotlabs/Module/Mitem.php:92 -msgid "Unable to add menu element." -msgstr "No es posible añadir el elemento al menú" - -#: ../../Zotlabs/Module/Mitem.php:153 ../../Zotlabs/Module/Mitem.php:226 -msgid "Menu Item Permissions" -msgstr "Permisos del elemento del menú" - -#: ../../Zotlabs/Module/Mitem.php:154 ../../Zotlabs/Module/Mitem.php:227 -#: ../../Zotlabs/Module/Settings.php:1068 -msgid "(click to open/close)" -msgstr "(pulsar para abrir o cerrar)" - -#: ../../Zotlabs/Module/Mitem.php:156 ../../Zotlabs/Module/Mitem.php:172 -msgid "Link Name" -msgstr "Nombre del enlace" - -#: ../../Zotlabs/Module/Mitem.php:157 ../../Zotlabs/Module/Mitem.php:231 -msgid "Link or Submenu Target" -msgstr "Destino del enlace o submenú" - -#: ../../Zotlabs/Module/Mitem.php:157 -msgid "Enter URL of the link or select a menu name to create a submenu" -msgstr "Introducir la dirección del enlace o seleccionar el nombre de un submenú" - -#: ../../Zotlabs/Module/Mitem.php:158 ../../Zotlabs/Module/Mitem.php:232 -msgid "Use magic-auth if available" -msgstr "Usar la autenticación mágica si está disponible" - -#: ../../Zotlabs/Module/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:233 -msgid "Open link in new window" -msgstr "Abrir el enlace en una nueva ventana" - -#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:234 -msgid "Order in list" -msgstr "Orden en la lista" - -#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:234 -msgid "Higher numbers will sink to bottom of listing" -msgstr "Los números más altos irán al final de la lista" - -#: ../../Zotlabs/Module/Mitem.php:161 -msgid "Submit and finish" -msgstr "Enviar y terminar" - -#: ../../Zotlabs/Module/Mitem.php:162 -msgid "Submit and continue" -msgstr "Enviar y continuar" - -#: ../../Zotlabs/Module/Mitem.php:170 -msgid "Menu:" -msgstr "Menú:" - -#: ../../Zotlabs/Module/Mitem.php:173 -msgid "Link Target" -msgstr "Destino del enlace" - -#: ../../Zotlabs/Module/Mitem.php:176 -msgid "Edit menu" -msgstr "Editar menú" - -#: ../../Zotlabs/Module/Mitem.php:179 -msgid "Edit element" -msgstr "Editar el elemento" - -#: ../../Zotlabs/Module/Mitem.php:180 -msgid "Drop element" -msgstr "Eliminar el elemento" - -#: ../../Zotlabs/Module/Mitem.php:181 -msgid "New element" -msgstr "Nuevo elemento" - -#: ../../Zotlabs/Module/Mitem.php:182 -msgid "Edit this menu container" -msgstr "Modificar el contenedor del menú" - -#: ../../Zotlabs/Module/Mitem.php:183 -msgid "Add menu element" -msgstr "Añadir un elemento al menú" - -#: ../../Zotlabs/Module/Mitem.php:184 -msgid "Delete this menu item" -msgstr "Eliminar este elemento del menú" - -#: ../../Zotlabs/Module/Mitem.php:185 -msgid "Edit this menu item" -msgstr "Modificar este elemento del menú" - -#: ../../Zotlabs/Module/Mitem.php:202 -msgid "Menu item not found." -msgstr "Este elemento del menú no se ha encontrado" - -#: ../../Zotlabs/Module/Mitem.php:215 -msgid "Menu item deleted." -msgstr "Este elemento del menú ha sido borrado" - -#: ../../Zotlabs/Module/Mitem.php:217 -msgid "Menu item could not be deleted." -msgstr "Este elemento del menú no puede ser borrado." - -#: ../../Zotlabs/Module/Mitem.php:224 -msgid "Edit Menu Element" -msgstr "Editar elemento del menú" - -#: ../../Zotlabs/Module/Mitem.php:230 -msgid "Link text" -msgstr "Texto del enlace" - -#: ../../Zotlabs/Module/New_channel.php:128 -#: ../../Zotlabs/Module/Register.php:231 -msgid "Name or caption" -msgstr "Nombre o descripción" - -#: ../../Zotlabs/Module/New_channel.php:128 -#: ../../Zotlabs/Module/Register.php:231 -msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\"" -msgstr "Ejemplos: \"Juan García\", \"Luisa y sus caballos\", \"Fútbol\", \"Grupo de aviación\"" - -#: ../../Zotlabs/Module/New_channel.php:130 -#: ../../Zotlabs/Module/Register.php:233 -msgid "Choose a short nickname" -msgstr "Elija un alias corto" - -#: ../../Zotlabs/Module/New_channel.php:130 -#: ../../Zotlabs/Module/Register.php:233 -#, php-format -msgid "" -"Your nickname will be used to create an easy to remember channel address " -"e.g. nickname%s" -msgstr "Su alias se usará para crear una dirección de canal fácil de recordar, p. ej.: alias%s" - -#: ../../Zotlabs/Module/New_channel.php:132 -#: ../../Zotlabs/Module/Register.php:235 -msgid "Channel role and privacy" -msgstr "Clase de canal y privacidad" - -#: ../../Zotlabs/Module/New_channel.php:132 -#: ../../Zotlabs/Module/Register.php:235 -msgid "Select a channel role with your privacy requirements." -msgstr "Seleccione un tipo de canal con sus requisitos de privacidad" - -#: ../../Zotlabs/Module/New_channel.php:132 -#: ../../Zotlabs/Module/Register.php:235 -msgid "Read more about roles" -msgstr "Leer más sobre los roles" - -#: ../../Zotlabs/Module/New_channel.php:135 -msgid "Create Channel" -msgstr "Crear un canal" - -#: ../../Zotlabs/Module/New_channel.php:136 -msgid "" -"A channel is your identity on this network. It can represent a person, a " -"blog, or a forum to name a few. Channels can make connections with other " -"channels to share information with highly detailed permissions." -msgstr "Un canal es su identidad en esta red. Puede representar a una persona, un blog o un foro, por nombrar unos pocos ejemplos. Los canales se pueden conectar con otros canales para compartir información con una gama de permisos extremadamente detallada." - -#: ../../Zotlabs/Module/New_channel.php:137 -msgid "" -"or import an existing channel from another location." -msgstr "O importar un canal existente desde otro lugar." - -#: ../../Zotlabs/Module/Notifications.php:30 -msgid "Invalid request identifier." -msgstr "Petición inválida del identificador." - -#: ../../Zotlabs/Module/Notifications.php:39 -msgid "Discard" -msgstr "Descartar" - -#: ../../Zotlabs/Module/Notifications.php:103 ../../include/nav.php:191 -msgid "Mark all system notifications seen" -msgstr "Marcar todas las notificaciones de sistema como leídas" - -#: ../../Zotlabs/Module/Photos.php:84 -msgid "Page owner information could not be retrieved." -msgstr "La información del propietario de la página no pudo ser recuperada." - -#: ../../Zotlabs/Module/Photos.php:99 ../../Zotlabs/Module/Photos.php:743 -#: ../../Zotlabs/Module/Profile_photo.php:114 -#: ../../Zotlabs/Module/Profile_photo.php:206 -#: ../../Zotlabs/Module/Profile_photo.php:294 -#: ../../include/photo/photo_driver.php:718 -msgid "Profile Photos" -msgstr "Fotos del perfil" - -#: ../../Zotlabs/Module/Photos.php:105 ../../Zotlabs/Module/Photos.php:149 -msgid "Album not found." -msgstr "Álbum no encontrado." - -#: ../../Zotlabs/Module/Photos.php:132 -msgid "Delete Album" -msgstr "Borrar álbum" - -#: ../../Zotlabs/Module/Photos.php:153 -msgid "" -"Multiple storage folders exist with this album name, but within different " -"directories. Please remove the desired folder or folders using the Files " -"manager" -msgstr "Hay varias carpetas con este nombre de álbum, pero dentro de diferentes directorios. Por favor, elimine la carpeta o carpetas que desee utilizando el administrador de ficheros" - -#: ../../Zotlabs/Module/Photos.php:210 ../../Zotlabs/Module/Photos.php:1053 -msgid "Delete Photo" -msgstr "Borrar foto" - -#: ../../Zotlabs/Module/Photos.php:533 -msgid "No photos selected" -msgstr "No hay fotos seleccionadas" - -#: ../../Zotlabs/Module/Photos.php:582 -msgid "Access to this item is restricted." -msgstr "El acceso a este elemento está restringido." - -#: ../../Zotlabs/Module/Photos.php:621 -#, php-format -msgid "%1$.2f MB of %2$.2f MB photo storage used." -msgstr "%1$.2f MB de %2$.2f MB de almacenamiento de fotos utilizado." - -#: ../../Zotlabs/Module/Photos.php:624 -#, php-format -msgid "%1$.2f MB photo storage used." -msgstr "%1$.2f MB de almacenamiento de fotos utilizado." - -#: ../../Zotlabs/Module/Photos.php:660 -msgid "Upload Photos" -msgstr "Subir fotos" - -#: ../../Zotlabs/Module/Photos.php:664 -msgid "Enter an album name" -msgstr "Introducir un nombre de álbum" - -#: ../../Zotlabs/Module/Photos.php:665 -msgid "or select an existing album (doubleclick)" -msgstr "o seleccionar uno existente (doble click)" - -#: ../../Zotlabs/Module/Photos.php:666 -msgid "Create a status post for this upload" -msgstr "Crear un mensaje de estado para esta subida" - -#: ../../Zotlabs/Module/Photos.php:667 -msgid "Caption (optional):" -msgstr "Título (opcional):" - -#: ../../Zotlabs/Module/Photos.php:668 -msgid "Description (optional):" -msgstr "Descripción (opcional):" - -#: ../../Zotlabs/Module/Photos.php:695 -msgid "Album name could not be decoded" -msgstr "El nombre del álbum no ha podido ser descifrado" - -#: ../../Zotlabs/Module/Photos.php:743 -msgid "Contact Photos" -msgstr "Fotos de contacto" - -#: ../../Zotlabs/Module/Photos.php:766 -msgid "Show Newest First" -msgstr "Mostrar lo más reciente primero" - -#: ../../Zotlabs/Module/Photos.php:768 -msgid "Show Oldest First" -msgstr "Mostrar lo más antiguo primero" - -#: ../../Zotlabs/Module/Photos.php:792 ../../Zotlabs/Module/Photos.php:1331 -#: ../../include/widgets.php:1499 -msgid "View Photo" -msgstr "Ver foto" - -#: ../../Zotlabs/Module/Photos.php:823 ../../include/widgets.php:1516 -msgid "Edit Album" -msgstr "Editar álbum" - -#: ../../Zotlabs/Module/Photos.php:870 -msgid "Permission denied. Access to this item may be restricted." -msgstr "Permiso denegado. El acceso a este elemento puede estar restringido." - -#: ../../Zotlabs/Module/Photos.php:872 -msgid "Photo not available" -msgstr "Foto no disponible" - -#: ../../Zotlabs/Module/Photos.php:930 -msgid "Use as profile photo" -msgstr "Usar como foto del perfil" - -#: ../../Zotlabs/Module/Photos.php:931 -msgid "Use as cover photo" -msgstr "Usar como imagen de portada del perfil" - -#: ../../Zotlabs/Module/Photos.php:938 -msgid "Private Photo" -msgstr "Foto privada" - -#: ../../Zotlabs/Module/Photos.php:953 -msgid "View Full Size" -msgstr "Ver tamaño completo" - -#: ../../Zotlabs/Module/Photos.php:998 ../../Zotlabs/Module/Admin.php:1437 -#: ../../Zotlabs/Module/Tagrm.php:137 -msgid "Remove" -msgstr "Eliminar" - -#: ../../Zotlabs/Module/Photos.php:1032 -msgid "Edit photo" -msgstr "Editar foto" - -#: ../../Zotlabs/Module/Photos.php:1034 -msgid "Rotate CW (right)" -msgstr "Girar CW (a la derecha)" - -#: ../../Zotlabs/Module/Photos.php:1035 -msgid "Rotate CCW (left)" -msgstr "Girar CCW (a la izquierda)" - -#: ../../Zotlabs/Module/Photos.php:1038 -msgid "Enter a new album name" -msgstr "Introducir un nuevo nombre de álbum" - -#: ../../Zotlabs/Module/Photos.php:1039 -msgid "or select an existing one (doubleclick)" -msgstr "o seleccionar uno (doble click) existente" - -#: ../../Zotlabs/Module/Photos.php:1042 -msgid "Caption" -msgstr "Título" - -#: ../../Zotlabs/Module/Photos.php:1044 -msgid "Add a Tag" -msgstr "Añadir una etiqueta" - -#: ../../Zotlabs/Module/Photos.php:1048 -msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" -msgstr "Ejemplos: @eva, @Carmen_Osuna, @jaime@ejemplo.com" - -#: ../../Zotlabs/Module/Photos.php:1051 -msgid "Flag as adult in album view" -msgstr "Marcar como \"solo para adultos\" en el álbum" - -#: ../../Zotlabs/Module/Photos.php:1070 ../../Zotlabs/Lib/ThreadItem.php:261 -msgid "I like this (toggle)" -msgstr "Me gusta (cambiar)" - -#: ../../Zotlabs/Module/Photos.php:1071 ../../Zotlabs/Lib/ThreadItem.php:262 -msgid "I don't like this (toggle)" -msgstr "No me gusta esto (cambiar)" - -#: ../../Zotlabs/Module/Photos.php:1073 ../../Zotlabs/Lib/ThreadItem.php:397 -#: ../../include/conversation.php:740 -msgid "Please wait" -msgstr "Espere por favor" - -#: ../../Zotlabs/Module/Photos.php:1089 ../../Zotlabs/Module/Photos.php:1207 -#: ../../Zotlabs/Lib/ThreadItem.php:707 -msgid "This is you" -msgstr "Este es usted" - -#: ../../Zotlabs/Module/Photos.php:1091 ../../Zotlabs/Module/Photos.php:1209 -#: ../../Zotlabs/Lib/ThreadItem.php:709 ../../include/js_strings.php:6 -msgid "Comment" -msgstr "Comentar" - -#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:574 -msgctxt "title" -msgid "Likes" -msgstr "Me gusta" - -#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:574 -msgctxt "title" -msgid "Dislikes" -msgstr "No me gusta" - -#: ../../Zotlabs/Module/Photos.php:1108 ../../include/conversation.php:575 -msgctxt "title" -msgid "Agree" -msgstr "De acuerdo" - -#: ../../Zotlabs/Module/Photos.php:1108 ../../include/conversation.php:575 -msgctxt "title" -msgid "Disagree" -msgstr "En desacuerdo" - -#: ../../Zotlabs/Module/Photos.php:1108 ../../include/conversation.php:575 -msgctxt "title" -msgid "Abstain" -msgstr "Abstención" - -#: ../../Zotlabs/Module/Photos.php:1109 ../../include/conversation.php:576 -msgctxt "title" -msgid "Attending" -msgstr "Participaré" - -#: ../../Zotlabs/Module/Photos.php:1109 ../../include/conversation.php:576 -msgctxt "title" -msgid "Not attending" -msgstr "No participaré" - -#: ../../Zotlabs/Module/Photos.php:1109 ../../include/conversation.php:576 -msgctxt "title" -msgid "Might attend" -msgstr "Quizá participe" - -#: ../../Zotlabs/Module/Photos.php:1126 ../../Zotlabs/Module/Photos.php:1138 -#: ../../Zotlabs/Lib/ThreadItem.php:181 ../../Zotlabs/Lib/ThreadItem.php:193 -#: ../../include/conversation.php:1717 -msgid "View all" -msgstr "Ver todo" - -#: ../../Zotlabs/Module/Photos.php:1130 ../../Zotlabs/Lib/ThreadItem.php:185 -#: ../../include/taxonomy.php:403 ../../include/conversation.php:1741 -#: ../../include/channel.php:1158 -msgctxt "noun" -msgid "Like" -msgid_plural "Likes" -msgstr[0] "Me gusta" -msgstr[1] "Me gusta" - -#: ../../Zotlabs/Module/Photos.php:1135 ../../Zotlabs/Lib/ThreadItem.php:190 -#: ../../include/conversation.php:1744 -msgctxt "noun" -msgid "Dislike" -msgid_plural "Dislikes" -msgstr[0] "No me gusta" -msgstr[1] "No me gusta" - -#: ../../Zotlabs/Module/Photos.php:1235 -msgid "Photo Tools" -msgstr "Gestión de las fotos" - -#: ../../Zotlabs/Module/Photos.php:1244 -msgid "In This Photo:" -msgstr "En esta foto:" - -#: ../../Zotlabs/Module/Photos.php:1249 -msgid "Map" -msgstr "Mapa" - -#: ../../Zotlabs/Module/Photos.php:1257 ../../Zotlabs/Lib/ThreadItem.php:386 -msgctxt "noun" -msgid "Likes" -msgstr "Me gusta" - -#: ../../Zotlabs/Module/Photos.php:1258 ../../Zotlabs/Lib/ThreadItem.php:387 -msgctxt "noun" -msgid "Dislikes" -msgstr "No me gusta" - -#: ../../Zotlabs/Module/Photos.php:1263 ../../Zotlabs/Lib/ThreadItem.php:392 -#: ../../include/acl_selectors.php:285 -msgid "Close" -msgstr "Cerrar" - -#: ../../Zotlabs/Module/Photos.php:1337 -msgid "View Album" -msgstr "Ver álbum" - -#: ../../Zotlabs/Module/Photos.php:1348 ../../Zotlabs/Module/Photos.php:1361 -#: ../../Zotlabs/Module/Photos.php:1362 -msgid "Recent Photos" -msgstr "Fotos recientes" - -#: ../../Zotlabs/Module/Ping.php:265 -msgid "sent you a private message" -msgstr "le ha enviado un mensaje privado" - -#: ../../Zotlabs/Module/Ping.php:313 -msgid "added your channel" -msgstr "añadió este canal a sus conexiones" - -#: ../../Zotlabs/Module/Ping.php:323 -msgid "g A l F d" -msgstr "g A l d F" - -#: ../../Zotlabs/Module/Ping.php:346 -msgid "[today]" -msgstr "[hoy]" - -#: ../../Zotlabs/Module/Ping.php:355 -msgid "posted an event" -msgstr "publicó un evento" - -#: ../../Zotlabs/Module/Oexchange.php:27 -msgid "Unable to find your hub." -msgstr "No se puede encontrar su servidor." - -#: ../../Zotlabs/Module/Oexchange.php:41 -msgid "Post successful." -msgstr "Enviado con éxito." - -#: ../../Zotlabs/Module/Openid.php:30 -msgid "OpenID protocol error. No ID returned." -msgstr "Error del protocolo OpenID. Ningún ID recibido como respuesta." - -#: ../../Zotlabs/Module/Openid.php:193 ../../include/auth.php:226 -msgid "Login failed." -msgstr "El acceso ha fallado." - -#: ../../Zotlabs/Module/Page.php:133 -msgid "" -"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod " -"tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam," -" quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo " -"consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse " -"cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat " -"non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." -msgstr "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." - -#: ../../Zotlabs/Module/Pconfig.php:26 ../../Zotlabs/Module/Pconfig.php:59 -msgid "This setting requires special processing and editing has been blocked." -msgstr "Este ajuste necesita de un proceso especial y la edición ha sido bloqueada." - -#: ../../Zotlabs/Module/Pconfig.php:48 -msgid "Configuration Editor" -msgstr "Editor de configuración" - -#: ../../Zotlabs/Module/Pconfig.php:49 -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 "Atención: El cambio de algunos ajustes puede volver inutilizable su canal. Por favor, abandone la página excepto que esté seguro y sepa cómo usar correctamente esta característica." - -#: ../../Zotlabs/Module/Pdledit.php:18 -msgid "Layout updated." -msgstr "Plantilla actualizada." - -#: ../../Zotlabs/Module/Pdledit.php:34 ../../Zotlabs/Module/Pdledit.php:61 -msgid "Edit System Page Description" -msgstr "Editor del Sistema de Descripción de Páginas" - -#: ../../Zotlabs/Module/Pdledit.php:56 -msgid "Layout not found." -msgstr "Plantilla no encontrada" - -#: ../../Zotlabs/Module/Pdledit.php:62 -msgid "Module Name:" -msgstr "Nombre del módulo:" - -#: ../../Zotlabs/Module/Pdledit.php:63 -msgid "Layout Help" -msgstr "Ayuda para el diseño de plantillas de página" - -#: ../../Zotlabs/Module/Poke.php:168 ../../Zotlabs/Lib/Apps.php:226 -#: ../../include/conversation.php:960 -msgid "Poke" -msgstr "Toques y otras cosas" - -#: ../../Zotlabs/Module/Poke.php:169 -msgid "Poke somebody" -msgstr "Dar un toque a alguien" - -#: ../../Zotlabs/Module/Poke.php:172 -msgid "Poke/Prod" -msgstr "Toque/Incitación" - -#: ../../Zotlabs/Module/Poke.php:173 -msgid "Poke, prod or do other things to somebody" -msgstr "Dar un toque, incitar o hacer otras cosas a alguien" - -#: ../../Zotlabs/Module/Poke.php:180 -msgid "Recipient" -msgstr "Destinatario" - -#: ../../Zotlabs/Module/Poke.php:181 -msgid "Choose what you wish to do to recipient" -msgstr "Elegir qué desea enviar al destinatario" - -#: ../../Zotlabs/Module/Poke.php:184 ../../Zotlabs/Module/Poke.php:185 -msgid "Make this post private" -msgstr "Convertir en privado este envío" - -#: ../../Zotlabs/Module/Probe.php:30 ../../Zotlabs/Module/Probe.php:34 -#, php-format -msgid "Fetching URL returns error: %1$s" -msgstr "Al intentar obtener la dirección, retorna el error: %1$s" - #: ../../Zotlabs/Module/Profiles.php:24 ../../Zotlabs/Module/Profiles.php:189 #: ../../Zotlabs/Module/Profiles.php:246 ../../Zotlabs/Module/Profiles.php:625 msgid "Profile not found." @@ -3281,6 +2205,11 @@ msgstr "Página personal" msgid "Interests" msgstr "Intereses" +#: ../../Zotlabs/Module/Profiles.php:470 ../../Zotlabs/Module/Locs.php:118 +#: ../../Zotlabs/Module/Admin.php:1224 +msgid "Address" +msgstr "Dirección" + #: ../../Zotlabs/Module/Profiles.php:560 msgid "Profile updated." msgstr "Perfil actualizado." @@ -3298,7 +2227,7 @@ msgid "View this profile" msgstr "Ver este perfil" #: ../../Zotlabs/Module/Profiles.php:689 ../../Zotlabs/Module/Profiles.php:771 -#: ../../include/channel.php:959 +#: ../../include/channel.php:998 msgid "Edit visibility" msgstr "Editar visibilidad" @@ -3310,7 +2239,7 @@ msgstr "Gestión del perfil" msgid "Change cover photo" msgstr "Cambiar la imagen de portada del perfil" -#: ../../Zotlabs/Module/Profiles.php:692 ../../include/channel.php:930 +#: ../../Zotlabs/Module/Profiles.php:692 ../../include/channel.php:969 msgid "Change profile photo" msgstr "Cambiar la foto del perfil" @@ -3330,8 +2259,8 @@ msgstr "Eliminar este perfil" msgid "Add profile things" msgstr "Añadir cosas al perfil" -#: ../../Zotlabs/Module/Profiles.php:697 ../../include/widgets.php:105 -#: ../../include/conversation.php:1526 +#: ../../Zotlabs/Module/Profiles.php:697 ../../include/conversation.php:1541 +#: ../../include/widgets.php:105 msgid "Personal" msgstr "Personales" @@ -3471,119 +2400,1097 @@ msgstr "Información de contacto y redes sociales" msgid "My other channels" msgstr "Mis otros canales" -#: ../../Zotlabs/Module/Profiles.php:767 ../../include/channel.php:955 +#: ../../Zotlabs/Module/Profiles.php:767 ../../include/channel.php:994 msgid "Profile Image" msgstr "Imagen del perfil" #: ../../Zotlabs/Module/Profiles.php:777 ../../include/nav.php:88 -#: ../../include/channel.php:937 +#: ../../include/channel.php:976 msgid "Edit Profiles" msgstr "Editar perfiles" -#: ../../Zotlabs/Module/Profile_photo.php:179 -msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." -msgstr "Recargue la página o limpie el caché del navegador si la nueva foto no se muestra inmediatamente." - -#: ../../Zotlabs/Module/Profile_photo.php:367 -msgid "Upload Profile Photo" -msgstr "Subir foto de perfil" - -#: ../../Zotlabs/Module/Profperm.php:34 ../../Zotlabs/Module/Profperm.php:63 -msgid "Invalid profile identifier." -msgstr "Identificador del perfil no válido" - -#: ../../Zotlabs/Module/Profperm.php:115 -msgid "Profile Visibility Editor" -msgstr "Editor de visibilidad del perfil" - -#: ../../Zotlabs/Module/Profperm.php:117 ../../include/channel.php:1249 -msgid "Profile" -msgstr "Perfil" - -#: ../../Zotlabs/Module/Profperm.php:119 -msgid "Click on a contact to add or remove." -msgstr "Pulsar en un contacto para añadirlo o eliminarlo." - -#: ../../Zotlabs/Module/Profperm.php:128 -msgid "Visible To" -msgstr "Visible para" - -#: ../../Zotlabs/Module/Pubsites.php:22 ../../include/widgets.php:1270 -msgid "Public Hubs" -msgstr "Servidores públicos" - -#: ../../Zotlabs/Module/Pubsites.php:25 -msgid "" -"The listed hubs allow public registration for the $Projectname network. All " -"hubs in the network are interlinked so membership on any of them conveys " -"membership in the network as a whole. Some hubs may require subscription or " -"provide tiered service plans. The hub itself may provide " -"additional details." -msgstr "Los sitios listados permiten el registro público en la red $Projectname. Todos los sitios de la red están vinculados entre sí, por lo que sus miembros, en ninguno de ellos, indican la pertenencia a la red en su conjunto. Algunos sitios pueden requerir suscripción o proporcionar planes de servicio por niveles. Los mismos hubs pueden proporcionar detalles adicionales." - -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Hub URL" -msgstr "Dirección del hub" - -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Access Type" -msgstr "Tipo de acceso" - -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Registration Policy" -msgstr "Normas de registro" - -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Stats" -msgstr "Estadísticas" - -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Software" -msgstr "Software" - -#: ../../Zotlabs/Module/Pubsites.php:31 ../../Zotlabs/Module/Ratings.php:103 -#: ../../include/conversation.php:959 -msgid "Ratings" -msgstr "Valoraciones" - -#: ../../Zotlabs/Module/Pubsites.php:38 -msgid "Rate" -msgstr "Valorar" - -#: ../../Zotlabs/Module/Rate.php:160 -msgid "Website:" -msgstr "Sitio web:" - -#: ../../Zotlabs/Module/Rate.php:163 +#: ../../Zotlabs/Module/Import.php:33 #, php-format -msgid "Remote Channel [%s] (not yet known on this site)" -msgstr "Canal remoto [%s] (aún no es conocido en este sitio)" +msgid "Your service plan only allows %d channels." +msgstr "Su paquete de servicios solo permite %d canales." -#: ../../Zotlabs/Module/Rate.php:164 -msgid "Rating (this information is public)" -msgstr "Valoración (esta información es pública)" +#: ../../Zotlabs/Module/Import.php:71 ../../Zotlabs/Module/Import_items.php:42 +msgid "Nothing to import." +msgstr "No hay nada para importar." -#: ../../Zotlabs/Module/Rate.php:165 -msgid "Optionally explain your rating (this information is public)" -msgstr "Opcionalmente puede explicar su valoración (esta información es pública)" +#: ../../Zotlabs/Module/Import.php:95 ../../Zotlabs/Module/Import_items.php:66 +msgid "Unable to download data from old server" +msgstr "No se han podido descargar datos de su antiguo servidor" -#: ../../Zotlabs/Module/Ratings.php:73 -msgid "No ratings" -msgstr "Ninguna valoración" +#: ../../Zotlabs/Module/Import.php:101 +#: ../../Zotlabs/Module/Import_items.php:72 +msgid "Imported file is empty." +msgstr "El fichero importado está vacío." -#: ../../Zotlabs/Module/Ratings.php:104 -msgid "Rating: " -msgstr "Valoración:" +#: ../../Zotlabs/Module/Import.php:123 +#: ../../Zotlabs/Module/Import_items.php:88 +#, php-format +msgid "Warning: Database versions differ by %1$d updates." +msgstr "Atención: Las versiones de la base de datos difieren en %1$d actualizaciones." -#: ../../Zotlabs/Module/Ratings.php:105 -msgid "Website: " -msgstr "Sitio web:" +#: ../../Zotlabs/Module/Import.php:153 ../../include/import.php:107 +msgid "Cloned channel not found. Import failed." +msgstr "No se ha podido importar el canal porque el canal clonado no se ha encontrado." -#: ../../Zotlabs/Module/Ratings.php:107 -msgid "Description: " -msgstr "Descripción:" +#: ../../Zotlabs/Module/Import.php:163 +msgid "No channel. Import failed." +msgstr "No hay canal. La importación ha fallado" + +#: ../../Zotlabs/Module/Import.php:520 +#: ../../include/Import/import_diaspora.php:142 +msgid "Import completed." +msgstr "Importación completada." + +#: ../../Zotlabs/Module/Import.php:542 +msgid "You must be logged in to use this feature." +msgstr "Debe estar registrado para poder usar esta funcionalidad." + +#: ../../Zotlabs/Module/Import.php:547 +msgid "Import Channel" +msgstr "Importar canal" + +#: ../../Zotlabs/Module/Import.php:548 +msgid "" +"Use this form to import an existing channel from a different server/hub. You" +" may retrieve the channel identity from the old server/hub via the network " +"or provide an export file." +msgstr "Emplee este formulario para importar un canal desde un servidor/hub diferente. Puede recuperar el canal desde el antiguo servidor/hub a través de la red o proporcionando un fichero de exportación." + +#: ../../Zotlabs/Module/Import.php:549 +#: ../../Zotlabs/Module/Import_items.php:121 +msgid "File to Upload" +msgstr "Fichero para subir" + +#: ../../Zotlabs/Module/Import.php:550 +msgid "Or provide the old server/hub details" +msgstr "O proporcione los detalles de su antiguo servidor/hub" + +#: ../../Zotlabs/Module/Import.php:551 +msgid "Your old identity address (xyz@example.com)" +msgstr "Su identidad en el antiguo servidor (canal@ejemplo.com)" + +#: ../../Zotlabs/Module/Import.php:552 +msgid "Your old login email address" +msgstr "Su antigua dirección de correo electrónico" + +#: ../../Zotlabs/Module/Import.php:553 +msgid "Your old login password" +msgstr "Su antigua contraseña" + +#: ../../Zotlabs/Module/Import.php:554 +msgid "" +"For either option, please choose whether to make this hub your new primary " +"address, or whether your old location should continue this role. You will be" +" able to post from either location, but only one can be marked as the " +"primary location for files, photos, and media." +msgstr "Para cualquiera de las opciones, elija si hacer de este servidor su nueva dirección primaria, o si su antigua dirección debe continuar con este papel. Usted podrá publicar desde cualquier ubicación, pero sólo una puede estar marcada como la ubicación principal para los ficheros, fotos y otras imágenes o vídeos." + +#: ../../Zotlabs/Module/Import.php:555 +msgid "Make this hub my primary location" +msgstr "Convertir este servidor en mi ubicación primaria" + +#: ../../Zotlabs/Module/Import.php:556 +msgid "" +"Import existing posts if possible (experimental - limited by available " +"memory" +msgstr "Importar el contenido publicado si es posible (experimental - limitado por la memoria disponible" + +#: ../../Zotlabs/Module/Import.php:557 +msgid "" +"This process may take several minutes to complete. Please submit the form " +"only once and leave this page open until finished." +msgstr "Este proceso puede tardar varios minutos en completarse. Por favor envíe el formulario una sola vez y mantenga esta página abierta hasta que termine." + +#: ../../Zotlabs/Module/Home.php:74 ../../Zotlabs/Module/Home.php:82 +#: ../../Zotlabs/Module/Siteinfo.php:48 +msgid "$Projectname" +msgstr "$Projectname" + +#: ../../Zotlabs/Module/Home.php:92 +#, php-format +msgid "Welcome to %s" +msgstr "Bienvenido a %s" + +#: ../../Zotlabs/Module/Item.php:179 +msgid "Unable to locate original post." +msgstr "No ha sido posible encontrar la entrada original." + +#: ../../Zotlabs/Module/Item.php:432 +msgid "Empty post discarded." +msgstr "La entrada vacía ha sido desechada." + +#: ../../Zotlabs/Module/Item.php:472 +msgid "Executable content type not permitted to this channel." +msgstr "Contenido de tipo ejecutable no permitido en este canal." + +#: ../../Zotlabs/Module/Item.php:856 +msgid "Duplicate post suppressed." +msgstr "Se ha suprimido la entrada duplicada." + +#: ../../Zotlabs/Module/Item.php:989 +msgid "System error. Post not saved." +msgstr "Error del sistema. La entrada no se ha podido salvar." + +#: ../../Zotlabs/Module/Item.php:1242 +msgid "Unable to obtain post information from database." +msgstr "No ha sido posible obtener información de la entrada en la base de datos." + +#: ../../Zotlabs/Module/Item.php:1249 +#, php-format +msgid "You have reached your limit of %1$.0f top level posts." +msgstr "Ha alcanzado su límite de %1$.0f entradas en la página principal." + +#: ../../Zotlabs/Module/Item.php:1256 +#, php-format +msgid "You have reached your limit of %1$.0f webpages." +msgstr "Ha alcanzado su límite de %1$.0f páginas web." + +#: ../../Zotlabs/Module/Photos.php:82 +msgid "Page owner information could not be retrieved." +msgstr "La información del propietario de la página no pudo ser recuperada." + +#: ../../Zotlabs/Module/Photos.php:97 ../../Zotlabs/Module/Photos.php:741 +#: ../../Zotlabs/Module/Profile_photo.php:115 +#: ../../Zotlabs/Module/Profile_photo.php:212 +#: ../../Zotlabs/Module/Profile_photo.php:311 +#: ../../include/photo/photo_driver.php:718 +msgid "Profile Photos" +msgstr "Fotos del perfil" + +#: ../../Zotlabs/Module/Photos.php:103 ../../Zotlabs/Module/Photos.php:147 +msgid "Album not found." +msgstr "Álbum no encontrado." + +#: ../../Zotlabs/Module/Photos.php:130 +msgid "Delete Album" +msgstr "Borrar álbum" + +#: ../../Zotlabs/Module/Photos.php:151 +msgid "" +"Multiple storage folders exist with this album name, but within different " +"directories. Please remove the desired folder or folders using the Files " +"manager" +msgstr "Hay varias carpetas con este nombre de álbum, pero dentro de diferentes directorios. Por favor, elimine la carpeta o carpetas que desee utilizando el administrador de ficheros" + +#: ../../Zotlabs/Module/Photos.php:208 ../../Zotlabs/Module/Photos.php:1051 +msgid "Delete Photo" +msgstr "Borrar foto" + +#: ../../Zotlabs/Module/Photos.php:531 +msgid "No photos selected" +msgstr "No hay fotos seleccionadas" + +#: ../../Zotlabs/Module/Photos.php:580 +msgid "Access to this item is restricted." +msgstr "El acceso a este elemento está restringido." + +#: ../../Zotlabs/Module/Photos.php:619 +#, php-format +msgid "%1$.2f MB of %2$.2f MB photo storage used." +msgstr "%1$.2f MB de %2$.2f MB de almacenamiento de fotos utilizado." + +#: ../../Zotlabs/Module/Photos.php:622 +#, php-format +msgid "%1$.2f MB photo storage used." +msgstr "%1$.2f MB de almacenamiento de fotos utilizado." + +#: ../../Zotlabs/Module/Photos.php:658 +msgid "Upload Photos" +msgstr "Subir fotos" + +#: ../../Zotlabs/Module/Photos.php:662 +msgid "Enter an album name" +msgstr "Introducir un nombre de álbum" + +#: ../../Zotlabs/Module/Photos.php:663 +msgid "or select an existing album (doubleclick)" +msgstr "o seleccionar uno existente (doble click)" + +#: ../../Zotlabs/Module/Photos.php:664 +msgid "Create a status post for this upload" +msgstr "Crear un mensaje de estado para esta subida" + +#: ../../Zotlabs/Module/Photos.php:665 +msgid "Caption (optional):" +msgstr "Título (opcional):" + +#: ../../Zotlabs/Module/Photos.php:666 +msgid "Description (optional):" +msgstr "Descripción (opcional):" + +#: ../../Zotlabs/Module/Photos.php:693 +msgid "Album name could not be decoded" +msgstr "El nombre del álbum no ha podido ser descifrado" + +#: ../../Zotlabs/Module/Photos.php:741 +msgid "Contact Photos" +msgstr "Fotos de contacto" + +#: ../../Zotlabs/Module/Photos.php:764 +msgid "Show Newest First" +msgstr "Mostrar lo más reciente primero" + +#: ../../Zotlabs/Module/Photos.php:766 +msgid "Show Oldest First" +msgstr "Mostrar lo más antiguo primero" + +#: ../../Zotlabs/Module/Photos.php:790 ../../Zotlabs/Module/Photos.php:1329 +#: ../../Zotlabs/Module/Embedphotos.php:141 ../../include/widgets.php:1593 +msgid "View Photo" +msgstr "Ver foto" + +#: ../../Zotlabs/Module/Photos.php:821 +#: ../../Zotlabs/Module/Embedphotos.php:157 ../../include/widgets.php:1610 +msgid "Edit Album" +msgstr "Editar álbum" + +#: ../../Zotlabs/Module/Photos.php:868 +msgid "Permission denied. Access to this item may be restricted." +msgstr "Permiso denegado. El acceso a este elemento puede estar restringido." + +#: ../../Zotlabs/Module/Photos.php:870 +msgid "Photo not available" +msgstr "Foto no disponible" + +#: ../../Zotlabs/Module/Photos.php:928 +msgid "Use as profile photo" +msgstr "Usar como foto del perfil" + +#: ../../Zotlabs/Module/Photos.php:929 +msgid "Use as cover photo" +msgstr "Usar como imagen de portada del perfil" + +#: ../../Zotlabs/Module/Photos.php:936 +msgid "Private Photo" +msgstr "Foto privada" + +#: ../../Zotlabs/Module/Photos.php:951 +msgid "View Full Size" +msgstr "Ver tamaño completo" + +#: ../../Zotlabs/Module/Photos.php:996 ../../Zotlabs/Module/Admin.php:1437 +#: ../../Zotlabs/Module/Tagrm.php:137 +msgid "Remove" +msgstr "Eliminar" + +#: ../../Zotlabs/Module/Photos.php:1030 +msgid "Edit photo" +msgstr "Editar foto" + +#: ../../Zotlabs/Module/Photos.php:1032 +msgid "Rotate CW (right)" +msgstr "Girar CW (a la derecha)" + +#: ../../Zotlabs/Module/Photos.php:1033 +msgid "Rotate CCW (left)" +msgstr "Girar CCW (a la izquierda)" + +#: ../../Zotlabs/Module/Photos.php:1036 +msgid "Enter a new album name" +msgstr "Introducir un nuevo nombre de álbum" + +#: ../../Zotlabs/Module/Photos.php:1037 +msgid "or select an existing one (doubleclick)" +msgstr "o seleccionar uno (doble click) existente" + +#: ../../Zotlabs/Module/Photos.php:1040 +msgid "Caption" +msgstr "Título" + +#: ../../Zotlabs/Module/Photos.php:1042 +msgid "Add a Tag" +msgstr "Añadir una etiqueta" + +#: ../../Zotlabs/Module/Photos.php:1046 +msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" +msgstr "Ejemplos: @eva, @Carmen_Osuna, @jaime@ejemplo.com" + +#: ../../Zotlabs/Module/Photos.php:1049 +msgid "Flag as adult in album view" +msgstr "Marcar como \"solo para adultos\" en el álbum" + +#: ../../Zotlabs/Module/Photos.php:1068 ../../Zotlabs/Lib/ThreadItem.php:261 +msgid "I like this (toggle)" +msgstr "Me gusta (cambiar)" + +#: ../../Zotlabs/Module/Photos.php:1069 ../../Zotlabs/Lib/ThreadItem.php:262 +msgid "I don't like this (toggle)" +msgstr "No me gusta esto (cambiar)" + +#: ../../Zotlabs/Module/Photos.php:1071 ../../Zotlabs/Lib/ThreadItem.php:397 +#: ../../include/conversation.php:743 +msgid "Please wait" +msgstr "Espere por favor" + +#: ../../Zotlabs/Module/Photos.php:1087 ../../Zotlabs/Module/Photos.php:1205 +#: ../../Zotlabs/Lib/ThreadItem.php:707 +msgid "This is you" +msgstr "Este es usted" + +#: ../../Zotlabs/Module/Photos.php:1089 ../../Zotlabs/Module/Photos.php:1207 +#: ../../Zotlabs/Lib/ThreadItem.php:709 ../../include/js_strings.php:6 +msgid "Comment" +msgstr "Comentar" + +#: ../../Zotlabs/Module/Photos.php:1105 ../../include/conversation.php:577 +msgctxt "title" +msgid "Likes" +msgstr "Me gusta" + +#: ../../Zotlabs/Module/Photos.php:1105 ../../include/conversation.php:577 +msgctxt "title" +msgid "Dislikes" +msgstr "No me gusta" + +#: ../../Zotlabs/Module/Photos.php:1106 ../../include/conversation.php:578 +msgctxt "title" +msgid "Agree" +msgstr "De acuerdo" + +#: ../../Zotlabs/Module/Photos.php:1106 ../../include/conversation.php:578 +msgctxt "title" +msgid "Disagree" +msgstr "En desacuerdo" + +#: ../../Zotlabs/Module/Photos.php:1106 ../../include/conversation.php:578 +msgctxt "title" +msgid "Abstain" +msgstr "Abstención" + +#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:579 +msgctxt "title" +msgid "Attending" +msgstr "Participaré" + +#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:579 +msgctxt "title" +msgid "Not attending" +msgstr "No participaré" + +#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:579 +msgctxt "title" +msgid "Might attend" +msgstr "Quizá participe" + +#: ../../Zotlabs/Module/Photos.php:1124 ../../Zotlabs/Module/Photos.php:1136 +#: ../../Zotlabs/Lib/ThreadItem.php:181 ../../Zotlabs/Lib/ThreadItem.php:193 +#: ../../include/conversation.php:1738 +msgid "View all" +msgstr "Ver todo" + +#: ../../Zotlabs/Module/Photos.php:1128 ../../Zotlabs/Lib/ThreadItem.php:185 +#: ../../include/taxonomy.php:403 ../../include/channel.php:1198 +#: ../../include/conversation.php:1762 +msgctxt "noun" +msgid "Like" +msgid_plural "Likes" +msgstr[0] "Me gusta" +msgstr[1] "Me gusta" + +#: ../../Zotlabs/Module/Photos.php:1133 ../../Zotlabs/Lib/ThreadItem.php:190 +#: ../../include/conversation.php:1765 +msgctxt "noun" +msgid "Dislike" +msgid_plural "Dislikes" +msgstr[0] "No me gusta" +msgstr[1] "No me gusta" + +#: ../../Zotlabs/Module/Photos.php:1233 +msgid "Photo Tools" +msgstr "Gestión de las fotos" + +#: ../../Zotlabs/Module/Photos.php:1242 +msgid "In This Photo:" +msgstr "En esta foto:" + +#: ../../Zotlabs/Module/Photos.php:1247 +msgid "Map" +msgstr "Mapa" + +#: ../../Zotlabs/Module/Photos.php:1255 ../../Zotlabs/Lib/ThreadItem.php:386 +msgctxt "noun" +msgid "Likes" +msgstr "Me gusta" + +#: ../../Zotlabs/Module/Photos.php:1256 ../../Zotlabs/Lib/ThreadItem.php:387 +msgctxt "noun" +msgid "Dislikes" +msgstr "No me gusta" + +#: ../../Zotlabs/Module/Photos.php:1261 ../../Zotlabs/Lib/ThreadItem.php:392 +#: ../../include/acl_selectors.php:283 +msgid "Close" +msgstr "Cerrar" + +#: ../../Zotlabs/Module/Photos.php:1335 +msgid "View Album" +msgstr "Ver álbum" + +#: ../../Zotlabs/Module/Photos.php:1346 ../../Zotlabs/Module/Photos.php:1359 +#: ../../Zotlabs/Module/Photos.php:1360 +msgid "Recent Photos" +msgstr "Fotos recientes" + +#: ../../Zotlabs/Module/Lockview.php:75 +msgid "Remote privacy information not available." +msgstr "La información privada remota no está disponible." + +#: ../../Zotlabs/Module/Lockview.php:96 +msgid "Visible to:" +msgstr "Visible para:" + +#: ../../Zotlabs/Module/Import_items.php:104 +msgid "Import completed" +msgstr "Importación completada" + +#: ../../Zotlabs/Module/Import_items.php:119 +msgid "Import Items" +msgstr "Importar elementos" + +#: ../../Zotlabs/Module/Import_items.php:120 +msgid "" +"Use this form to import existing posts and content from an export file." +msgstr "Utilice este formulario para importar entradas existentes y contenido desde un archivo de exportación." + +#: ../../Zotlabs/Module/Invite.php:29 +msgid "Total invitation limit exceeded." +msgstr "Se ha superado el límite máximo de invitaciones." + +#: ../../Zotlabs/Module/Invite.php:53 +#, php-format +msgid "%s : Not a valid email address." +msgstr "%s : No es una dirección de correo electrónico válida. " + +#: ../../Zotlabs/Module/Invite.php:63 +msgid "Please join us on $Projectname" +msgstr "Únase a nosotros en $Projectname" + +#: ../../Zotlabs/Module/Invite.php:74 +msgid "Invitation limit exceeded. Please contact your site administrator." +msgstr "Excedido el límite de invitaciones. Por favor, contacte con el Administrador de su sitio." + +#: ../../Zotlabs/Module/Invite.php:79 +#, php-format +msgid "%s : Message delivery failed." +msgstr "%s : Falló el envío del mensaje." + +#: ../../Zotlabs/Module/Invite.php:83 +#, php-format +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "%d mensajes enviados." +msgstr[1] "%d mensajes enviados." + +#: ../../Zotlabs/Module/Invite.php:102 +msgid "You have no more invitations available" +msgstr "No tiene más invitaciones disponibles" + +#: ../../Zotlabs/Module/Invite.php:133 +msgid "Send invitations" +msgstr "Enviar invitaciones" + +#: ../../Zotlabs/Module/Invite.php:134 +msgid "Enter email addresses, one per line:" +msgstr "Introduzca las direcciones de correo electrónico, una por línea:" + +#: ../../Zotlabs/Module/Invite.php:135 ../../Zotlabs/Module/Mail.php:241 +msgid "Your message:" +msgstr "Su mensaje:" + +#: ../../Zotlabs/Module/Invite.php:136 +msgid "Please join my community on $Projectname." +msgstr "Por favor, únase a mi comunidad en $Projectname." + +#: ../../Zotlabs/Module/Invite.php:138 +msgid "You will need to supply this invitation code:" +msgstr "Tendrá que suministrar este código de invitación:" + +#: ../../Zotlabs/Module/Invite.php:139 +msgid "" +"1. Register at any $Projectname location (they are all inter-connected)" +msgstr "1. Regístrese en cualquier sitio de $Projectname (están todos interconectados)" + +#: ../../Zotlabs/Module/Invite.php:141 +msgid "2. Enter my $Projectname network address into the site searchbar." +msgstr "2. Introduzca mi dirección $Projectname en la caja de búsqueda del sitio." + +#: ../../Zotlabs/Module/Invite.php:142 +msgid "or visit" +msgstr "o visitar" + +#: ../../Zotlabs/Module/Invite.php:144 +msgid "3. Click [Connect]" +msgstr "3. Pulse [conectar]" + +#: ../../Zotlabs/Module/Locs.php:25 ../../Zotlabs/Module/Locs.php:54 +msgid "Location not found." +msgstr "Dirección no encontrada." + +#: ../../Zotlabs/Module/Locs.php:62 +msgid "Location lookup failed." +msgstr "Ha fallado la búsqueda de la dirección." + +#: ../../Zotlabs/Module/Locs.php:66 +msgid "" +"Please select another location to become primary before removing the primary" +" location." +msgstr "Por favor, seleccione una copia de su canal (un clon) para convertirlo en primario antes de eliminar su canal principal." + +#: ../../Zotlabs/Module/Locs.php:95 +msgid "Syncing locations" +msgstr "Sincronización de ubicaciones" + +#: ../../Zotlabs/Module/Locs.php:105 +msgid "No locations found." +msgstr "No encontrada ninguna dirección." + +#: ../../Zotlabs/Module/Locs.php:116 +msgid "Manage Channel Locations" +msgstr "Gestionar las direcciones del canal" + +#: ../../Zotlabs/Module/Locs.php:119 +msgid "Primary" +msgstr "Primario" + +#: ../../Zotlabs/Module/Locs.php:120 ../../Zotlabs/Module/Menu.php:113 +msgid "Drop" +msgstr "Eliminar" + +#: ../../Zotlabs/Module/Locs.php:122 +msgid "Sync Now" +msgstr "Sincronizar ahora" + +#: ../../Zotlabs/Module/Locs.php:123 +msgid "Please wait several minutes between consecutive operations." +msgstr "Por favor, espere algunos minutos entre operaciones consecutivas." + +#: ../../Zotlabs/Module/Locs.php:124 +msgid "" +"When possible, drop a location by logging into that website/hub and removing" +" your channel." +msgstr "Cuando sea posible, elimine una ubicación iniciando sesión en el sitio web o \"hub\" y borrando su canal." + +#: ../../Zotlabs/Module/Locs.php:125 +msgid "Use this form to drop the location if the hub is no longer operating." +msgstr "Utilice este formulario para eliminar la dirección si el \"hub\" no está funcionando desde hace tiempo." + +#: ../../Zotlabs/Module/Magic.php:71 +msgid "Hub not found." +msgstr "Servidor no encontrado" + +#: ../../Zotlabs/Module/Mail.php:38 +msgid "Unable to lookup recipient." +msgstr "Imposible asociar a un destinatario." + +#: ../../Zotlabs/Module/Mail.php:45 +msgid "Unable to communicate with requested channel." +msgstr "Imposible comunicar con el canal solicitado." + +#: ../../Zotlabs/Module/Mail.php:52 +msgid "Cannot verify requested channel." +msgstr "No se puede verificar el canal solicitado." + +#: ../../Zotlabs/Module/Mail.php:70 +msgid "Selected channel has private message restrictions. Send failed." +msgstr "El canal seleccionado tiene restricciones sobre los mensajes privados. El envío falló." + +#: ../../Zotlabs/Module/Mail.php:135 +msgid "Messages" +msgstr "Mensajes" + +#: ../../Zotlabs/Module/Mail.php:170 +msgid "Message recalled." +msgstr "Mensaje revocado." + +#: ../../Zotlabs/Module/Mail.php:183 +msgid "Conversation removed." +msgstr "Conversación eliminada." + +#: ../../Zotlabs/Module/Mail.php:198 ../../Zotlabs/Module/Mail.php:307 +msgid "Expires YYYY-MM-DD HH:MM" +msgstr "Caduca YYYY-MM-DD HH:MM" + +#: ../../Zotlabs/Module/Mail.php:226 +msgid "Requested channel is not in this network" +msgstr "El canal solicitado no existe en esta red" + +#: ../../Zotlabs/Module/Mail.php:234 +msgid "Send Private Message" +msgstr "Enviar un mensaje privado" + +#: ../../Zotlabs/Module/Mail.php:235 ../../Zotlabs/Module/Mail.php:360 +msgid "To:" +msgstr "Para:" + +#: ../../Zotlabs/Module/Mail.php:238 ../../Zotlabs/Module/Mail.php:362 +msgid "Subject:" +msgstr "Asunto:" + +#: ../../Zotlabs/Module/Mail.php:243 ../../Zotlabs/Module/Mail.php:368 +#: ../../include/conversation.php:1231 +msgid "Attach file" +msgstr "Adjuntar fichero" + +#: ../../Zotlabs/Module/Mail.php:245 +msgid "Send" +msgstr "Enviar" + +#: ../../Zotlabs/Module/Mail.php:248 ../../Zotlabs/Module/Mail.php:373 +#: ../../include/conversation.php:1266 +msgid "Set expiration date" +msgstr "Configurar fecha de caducidad" + +#: ../../Zotlabs/Module/Mail.php:332 +msgid "Delete message" +msgstr "Borrar mensaje" + +#: ../../Zotlabs/Module/Mail.php:333 +msgid "Delivery report" +msgstr "Informe de transmisión" + +#: ../../Zotlabs/Module/Mail.php:334 +msgid "Recall message" +msgstr "Revocar el mensaje" + +#: ../../Zotlabs/Module/Mail.php:336 +msgid "Message has been recalled." +msgstr "El mensaje ha sido revocado." + +#: ../../Zotlabs/Module/Mail.php:353 +msgid "Delete Conversation" +msgstr "Eliminar conversación" + +#: ../../Zotlabs/Module/Mail.php:355 +msgid "" +"No secure communications available. You may be able to " +"respond from the sender's profile page." +msgstr "Comunicación segura no disponible. Pero puede responder desde la página del perfil del remitente." + +#: ../../Zotlabs/Module/Mail.php:359 +msgid "Send Reply" +msgstr "Responder" + +#: ../../Zotlabs/Module/Mail.php:364 +#, php-format +msgid "Your message for %s (%s):" +msgstr "Su mensaje para %s (%s):" + +#: ../../Zotlabs/Module/Manage.php:136 +#: ../../Zotlabs/Module/New_channel.php:121 +#, php-format +msgid "You have created %1$.0f of %2$.0f allowed channels." +msgstr "Ha creado %1$.0f de %2$.0f canales permitidos." + +#: ../../Zotlabs/Module/Manage.php:143 +msgid "Create a new channel" +msgstr "Crear un nuevo canal" + +#: ../../Zotlabs/Module/Manage.php:164 ../../Zotlabs/Lib/Apps.php:214 +#: ../../include/nav.php:208 +msgid "Channel Manager" +msgstr "Administración de canales" + +#: ../../Zotlabs/Module/Manage.php:165 +msgid "Current Channel" +msgstr "Canal actual" + +#: ../../Zotlabs/Module/Manage.php:167 +msgid "Switch to one of your channels by selecting it." +msgstr "Cambiar a uno de sus canales seleccionándolo." + +#: ../../Zotlabs/Module/Manage.php:168 +msgid "Default Channel" +msgstr "Canal principal" + +#: ../../Zotlabs/Module/Manage.php:169 +msgid "Make Default" +msgstr "Convertir en predeterminado" + +#: ../../Zotlabs/Module/Manage.php:172 +#, php-format +msgid "%d new messages" +msgstr "%d mensajes nuevos" + +#: ../../Zotlabs/Module/Manage.php:173 +#, php-format +msgid "%d new introductions" +msgstr "%d nuevas isolicitudes de conexión" + +#: ../../Zotlabs/Module/Manage.php:175 +msgid "Delegated Channel" +msgstr "Canal delegado" + +#: ../../Zotlabs/Module/Menu.php:49 +msgid "Unable to update menu." +msgstr "No se puede actualizar el menú." + +#: ../../Zotlabs/Module/Menu.php:60 +msgid "Unable to create menu." +msgstr "No se puede crear el menú." + +#: ../../Zotlabs/Module/Menu.php:98 ../../Zotlabs/Module/Menu.php:110 +msgid "Menu Name" +msgstr "Nombre del menú" + +#: ../../Zotlabs/Module/Menu.php:98 +msgid "Unique name (not visible on webpage) - required" +msgstr "Nombre único (no será visible en la página web) - requerido" + +#: ../../Zotlabs/Module/Menu.php:99 ../../Zotlabs/Module/Menu.php:111 +msgid "Menu Title" +msgstr "Título del menú" + +#: ../../Zotlabs/Module/Menu.php:99 +msgid "Visible on webpage - leave empty for no title" +msgstr "Visible en la página web - no ponga nada si no desea un título" + +#: ../../Zotlabs/Module/Menu.php:100 +msgid "Allow Bookmarks" +msgstr "Permitir marcadores" + +#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 +msgid "Menu may be used to store saved bookmarks" +msgstr "El menú se puede usar para guardar marcadores" + +#: ../../Zotlabs/Module/Menu.php:101 ../../Zotlabs/Module/Menu.php:159 +msgid "Submit and proceed" +msgstr "Enviar y proceder" + +#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2239 +msgid "Menus" +msgstr "Menús" + +#: ../../Zotlabs/Module/Menu.php:117 +msgid "Bookmarks allowed" +msgstr "Marcadores permitidos" + +#: ../../Zotlabs/Module/Menu.php:119 +msgid "Delete this menu" +msgstr "Borrar este menú" + +#: ../../Zotlabs/Module/Menu.php:120 ../../Zotlabs/Module/Menu.php:154 +msgid "Edit menu contents" +msgstr "Editar los contenidos del menú" + +#: ../../Zotlabs/Module/Menu.php:121 +msgid "Edit this menu" +msgstr "Modificar este menú" + +#: ../../Zotlabs/Module/Menu.php:136 +msgid "Menu could not be deleted." +msgstr "El menú no puede ser eliminado." + +#: ../../Zotlabs/Module/Menu.php:144 ../../Zotlabs/Module/Mitem.php:28 +msgid "Menu not found." +msgstr "Menú no encontrado" + +#: ../../Zotlabs/Module/Menu.php:149 +msgid "Edit Menu" +msgstr "Modificar el menú" + +#: ../../Zotlabs/Module/Menu.php:153 +msgid "Add or remove entries to this menu" +msgstr "Añadir o quitar entradas en este menú" + +#: ../../Zotlabs/Module/Menu.php:155 +msgid "Menu name" +msgstr "Nombre del menú" + +#: ../../Zotlabs/Module/Menu.php:155 +msgid "Must be unique, only seen by you" +msgstr "Debe ser único, solo será visible para usted" + +#: ../../Zotlabs/Module/Menu.php:156 +msgid "Menu title" +msgstr "Título del menú" + +#: ../../Zotlabs/Module/Menu.php:156 +msgid "Menu title as seen by others" +msgstr "El título del menú tal como será visto por los demás" + +#: ../../Zotlabs/Module/Menu.php:157 +msgid "Allow bookmarks" +msgstr "Permitir marcadores" + +#: ../../Zotlabs/Module/Menu.php:166 ../../Zotlabs/Module/Mitem.php:120 +#: ../../Zotlabs/Module/Xchan.php:41 +msgid "Not found." +msgstr "No encontrado." + +#: ../../Zotlabs/Module/Lostpass.php:19 +msgid "No valid account found." +msgstr "No se ha encontrado una cuenta válida." + +#: ../../Zotlabs/Module/Lostpass.php:33 +msgid "Password reset request issued. Check your email." +msgstr "Se ha recibido una solicitud de restablecimiento de contraseña. Consulte su correo electrónico." + +#: ../../Zotlabs/Module/Lostpass.php:39 ../../Zotlabs/Module/Lostpass.php:107 +#, php-format +msgid "Site Member (%s)" +msgstr "Usuario del sitio (%s)" + +#: ../../Zotlabs/Module/Lostpass.php:44 +#, php-format +msgid "Password reset requested at %s" +msgstr "Se ha solicitado restablecer la contraseña en %s" + +#: ../../Zotlabs/Module/Lostpass.php:67 +msgid "" +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." +msgstr "La solicitud no ha podido ser verificada. (Puede que la haya enviado con anterioridad) El restablecimiento de la contraseña ha fallado." + +#: ../../Zotlabs/Module/Lostpass.php:90 ../../boot.php:1712 +msgid "Password Reset" +msgstr "Restablecer la contraseña" + +#: ../../Zotlabs/Module/Lostpass.php:91 +msgid "Your password has been reset as requested." +msgstr "Su contraseña ha sido restablecida según lo solicitó." + +#: ../../Zotlabs/Module/Lostpass.php:92 +msgid "Your new password is" +msgstr "Su nueva contraseña es" + +#: ../../Zotlabs/Module/Lostpass.php:93 +msgid "Save or copy your new password - and then" +msgstr "Guarde o copie su nueva contraseña - y después" + +#: ../../Zotlabs/Module/Lostpass.php:94 +msgid "click here to login" +msgstr "pulse aquí para conectarse" + +#: ../../Zotlabs/Module/Lostpass.php:95 +msgid "" +"Your password may be changed from the Settings page after " +"successful login." +msgstr "Puede cambiar la contraseña en la página Ajustes una vez iniciada la sesión." + +#: ../../Zotlabs/Module/Lostpass.php:112 +#, php-format +msgid "Your password has changed at %s" +msgstr "Su contraseña en %s ha sido cambiada" + +#: ../../Zotlabs/Module/Lostpass.php:127 +msgid "Forgot your Password?" +msgstr "¿Ha olvidado su contraseña?" + +#: ../../Zotlabs/Module/Lostpass.php:128 +msgid "" +"Enter your email address and submit to have your password reset. Then check " +"your email for further instructions." +msgstr "Introduzca y envíe su dirección de correo electrónico para el restablecimiento de su contraseña. Luego revise su correo para obtener más instrucciones." + +#: ../../Zotlabs/Module/Lostpass.php:129 +msgid "Email Address" +msgstr "Dirección de correo electrónico" + +#: ../../Zotlabs/Module/Lostpass.php:130 +msgid "Reset" +msgstr "Reiniciar" + +#: ../../Zotlabs/Module/Mood.php:67 ../../include/conversation.php:260 +#, php-format +msgctxt "mood" +msgid "%1$s is %2$s" +msgstr "%1$s está %2$s" + +#: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Lib/Apps.php:227 +msgid "Mood" +msgstr "Estado de ánimo" + +#: ../../Zotlabs/Module/Mood.php:136 +msgid "Set your current mood and tell your friends" +msgstr "Describir su estado de ánimo para comunicárselo a sus amigos" + +#: ../../Zotlabs/Module/Network.php:94 +msgid "No such group" +msgstr "No se encuentra el grupo" + +#: ../../Zotlabs/Module/Network.php:134 +msgid "No such channel" +msgstr "No se encuentra el canal" + +#: ../../Zotlabs/Module/Network.php:139 +msgid "forum" +msgstr "foro" + +#: ../../Zotlabs/Module/Network.php:151 +msgid "Search Results For:" +msgstr "Buscar resultados para:" + +#: ../../Zotlabs/Module/Network.php:215 +msgid "Privacy group is empty" +msgstr "El grupo de canales está vacío" + +#: ../../Zotlabs/Module/Network.php:224 +msgid "Privacy group: " +msgstr "Grupo de canales: " + +#: ../../Zotlabs/Module/Network.php:250 +msgid "Invalid connection." +msgstr "Conexión no válida." + +#: ../../Zotlabs/Module/Notify.php:57 +#: ../../Zotlabs/Module/Notifications.php:98 +msgid "No more system notifications." +msgstr "No hay más notificaciones del sistema" + +#: ../../Zotlabs/Module/Notify.php:61 +#: ../../Zotlabs/Module/Notifications.php:102 +msgid "System Notifications" +msgstr "Notificaciones del sistema" + +#: ../../Zotlabs/Module/Match.php:26 +msgid "Profile Match" +msgstr "Perfil compatible" + +#: ../../Zotlabs/Module/Match.php:35 +msgid "No keywords to match. Please add keywords to your default profile." +msgstr "No hay palabras clave en el perfil principal para poder encontrar perfiles compatibles. Por favor, añada palabras clave a su perfil principal." + +#: ../../Zotlabs/Module/Match.php:67 +msgid "is interested in:" +msgstr "está interesado en:" + +#: ../../Zotlabs/Module/Match.php:74 +msgid "No matches" +msgstr "No se han encontrado perfiles compatibles" + +#: ../../Zotlabs/Module/Channel.php:40 +msgid "Posts and comments" +msgstr "Publicaciones y comentarios" + +#: ../../Zotlabs/Module/Channel.php:41 +msgid "Only posts" +msgstr "Solo publicaciones" + +#: ../../Zotlabs/Module/Channel.php:101 +msgid "Insufficient permissions. Request redirected to profile page." +msgstr "Permisos insuficientes. Petición redirigida a la página del perfil." + +#: ../../Zotlabs/Module/Mitem.php:52 +msgid "Unable to create element." +msgstr "Imposible crear el elemento." + +#: ../../Zotlabs/Module/Mitem.php:76 +msgid "Unable to update menu element." +msgstr "No es posible actualizar el elemento del menú." + +#: ../../Zotlabs/Module/Mitem.php:92 +msgid "Unable to add menu element." +msgstr "No es posible añadir el elemento al menú" + +#: ../../Zotlabs/Module/Mitem.php:153 ../../Zotlabs/Module/Mitem.php:226 +msgid "Menu Item Permissions" +msgstr "Permisos del elemento del menú" + +#: ../../Zotlabs/Module/Mitem.php:154 ../../Zotlabs/Module/Mitem.php:227 +#: ../../Zotlabs/Module/Settings.php:1163 +msgid "(click to open/close)" +msgstr "(pulsar para abrir o cerrar)" + +#: ../../Zotlabs/Module/Mitem.php:156 ../../Zotlabs/Module/Mitem.php:172 +msgid "Link Name" +msgstr "Nombre del enlace" + +#: ../../Zotlabs/Module/Mitem.php:157 ../../Zotlabs/Module/Mitem.php:231 +msgid "Link or Submenu Target" +msgstr "Destino del enlace o submenú" + +#: ../../Zotlabs/Module/Mitem.php:157 +msgid "Enter URL of the link or select a menu name to create a submenu" +msgstr "Introducir la dirección del enlace o seleccionar el nombre de un submenú" + +#: ../../Zotlabs/Module/Mitem.php:158 ../../Zotlabs/Module/Mitem.php:232 +msgid "Use magic-auth if available" +msgstr "Usar la autenticación mágica si está disponible" + +#: ../../Zotlabs/Module/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:233 +msgid "Open link in new window" +msgstr "Abrir el enlace en una nueva ventana" + +#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:234 +msgid "Order in list" +msgstr "Orden en la lista" + +#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:234 +msgid "Higher numbers will sink to bottom of listing" +msgstr "Los números más altos irán al final de la lista" + +#: ../../Zotlabs/Module/Mitem.php:161 +msgid "Submit and finish" +msgstr "Enviar y terminar" + +#: ../../Zotlabs/Module/Mitem.php:162 +msgid "Submit and continue" +msgstr "Enviar y continuar" + +#: ../../Zotlabs/Module/Mitem.php:170 +msgid "Menu:" +msgstr "Menú:" + +#: ../../Zotlabs/Module/Mitem.php:173 +msgid "Link Target" +msgstr "Destino del enlace" + +#: ../../Zotlabs/Module/Mitem.php:176 +msgid "Edit menu" +msgstr "Editar menú" + +#: ../../Zotlabs/Module/Mitem.php:179 +msgid "Edit element" +msgstr "Editar el elemento" + +#: ../../Zotlabs/Module/Mitem.php:180 +msgid "Drop element" +msgstr "Eliminar el elemento" + +#: ../../Zotlabs/Module/Mitem.php:181 +msgid "New element" +msgstr "Nuevo elemento" + +#: ../../Zotlabs/Module/Mitem.php:182 +msgid "Edit this menu container" +msgstr "Modificar el contenedor del menú" + +#: ../../Zotlabs/Module/Mitem.php:183 +msgid "Add menu element" +msgstr "Añadir un elemento al menú" + +#: ../../Zotlabs/Module/Mitem.php:184 +msgid "Delete this menu item" +msgstr "Eliminar este elemento del menú" + +#: ../../Zotlabs/Module/Mitem.php:185 +msgid "Edit this menu item" +msgstr "Modificar este elemento del menú" + +#: ../../Zotlabs/Module/Mitem.php:202 +msgid "Menu item not found." +msgstr "Este elemento del menú no se ha encontrado" + +#: ../../Zotlabs/Module/Mitem.php:215 +msgid "Menu item deleted." +msgstr "Este elemento del menú ha sido borrado" + +#: ../../Zotlabs/Module/Mitem.php:217 +msgid "Menu item could not be deleted." +msgstr "Este elemento del menú no puede ser borrado." + +#: ../../Zotlabs/Module/Mitem.php:224 +msgid "Edit Menu Element" +msgstr "Editar elemento del menú" + +#: ../../Zotlabs/Module/Mitem.php:230 +msgid "Link text" +msgstr "Texto del enlace" #: ../../Zotlabs/Module/Admin.php:77 msgid "Theme settings updated." @@ -3670,11 +3577,11 @@ msgstr "Versión del repositorio (dev)" msgid "Site settings updated." msgstr "Ajustes del sitio actualizados." -#: ../../Zotlabs/Module/Admin.php:400 ../../include/text.php:2841 +#: ../../Zotlabs/Module/Admin.php:400 ../../include/text.php:2829 msgid "Default" msgstr "Predeterminado" -#: ../../Zotlabs/Module/Admin.php:410 ../../Zotlabs/Module/Settings.php:798 +#: ../../Zotlabs/Module/Admin.php:410 ../../Zotlabs/Module/Settings.php:899 msgid "mobile" msgstr "móvil" @@ -3706,7 +3613,7 @@ msgstr "Mi sitio es un servicio gratuito" msgid "My site offers free accounts with optional paid upgrades" msgstr "Mi sitio ofrece cuentas gratuitas con opciones extra de pago" -#: ../../Zotlabs/Module/Admin.php:491 ../../include/widgets.php:1382 +#: ../../Zotlabs/Module/Admin.php:491 ../../include/widgets.php:1476 msgid "Site" msgstr "Sitio" @@ -3994,12 +3901,12 @@ msgid "0 for no expiration of imported content" msgstr "0 para que no caduque el contenido importado" #: ../../Zotlabs/Module/Admin.php:677 ../../Zotlabs/Module/Admin.php:678 -#: ../../Zotlabs/Module/Settings.php:722 +#: ../../Zotlabs/Module/Settings.php:823 msgid "Off" msgstr "Desactivado" #: ../../Zotlabs/Module/Admin.php:677 ../../Zotlabs/Module/Admin.php:678 -#: ../../Zotlabs/Module/Settings.php:722 +#: ../../Zotlabs/Module/Settings.php:823 msgid "On" msgstr "Activado" @@ -4056,7 +3963,7 @@ msgid "" "embedded content from that site is explicitly blocked." msgstr "El resto del contenido incrustado se filtrará, excepto si el contenido incorporado desde ese sitio está bloqueado de forma explícita." -#: ../../Zotlabs/Module/Admin.php:756 ../../include/widgets.php:1385 +#: ../../Zotlabs/Module/Admin.php:756 ../../include/widgets.php:1479 msgid "Security" msgstr "Seguridad" @@ -4224,7 +4131,7 @@ msgid "Account '%s' unblocked" msgstr "La cuenta '%s' ha sido desbloqueada" #: ../../Zotlabs/Module/Admin.php:1031 ../../Zotlabs/Module/Admin.php:1044 -#: ../../include/widgets.php:1383 +#: ../../include/widgets.php:1477 msgid "Accounts" msgstr "Cuentas" @@ -4330,7 +4237,7 @@ msgstr "Código permitido al canal '%s'" msgid "Channel '%s' code disallowed" msgstr "Código no permitido al canal '%s'" -#: ../../Zotlabs/Module/Admin.php:1210 ../../include/widgets.php:1384 +#: ../../Zotlabs/Module/Admin.php:1210 ../../include/widgets.php:1478 msgid "Channels" msgstr "Canales" @@ -4350,7 +4257,7 @@ msgstr "Permitir código" msgid "Disallow Code" msgstr "No permitir código" -#: ../../Zotlabs/Module/Admin.php:1218 ../../include/conversation.php:1611 +#: ../../Zotlabs/Module/Admin.php:1218 ../../include/conversation.php:1626 msgid "Channel" msgstr "Canal" @@ -4389,7 +4296,7 @@ msgid "Enable" msgstr "Activar" #: ../../Zotlabs/Module/Admin.php:1330 ../../Zotlabs/Module/Admin.php:1420 -#: ../../include/widgets.php:1387 +#: ../../include/widgets.php:1481 msgid "Plugins" msgstr "Extensiones (plugins)" @@ -4398,8 +4305,8 @@ msgid "Toggle" msgstr "Cambiar" #: ../../Zotlabs/Module/Admin.php:1332 ../../Zotlabs/Module/Admin.php:1615 -#: ../../Zotlabs/Lib/Apps.php:215 ../../include/widgets.php:638 -#: ../../include/nav.php:208 +#: ../../Zotlabs/Lib/Apps.php:216 ../../include/nav.php:210 +#: ../../include/widgets.php:647 msgid "Settings" msgstr "Ajustes" @@ -4455,7 +4362,7 @@ msgstr "Descargar el repositorio" msgid "Install new repo" msgstr "Instalar un nuevo repositorio" -#: ../../Zotlabs/Module/Admin.php:1405 ../../Zotlabs/Lib/Apps.php:330 +#: ../../Zotlabs/Module/Admin.php:1405 ../../Zotlabs/Lib/Apps.php:334 msgid "Install" msgstr "Instalar" @@ -4471,8 +4378,8 @@ msgstr "Repositorios de los plugins instalados" msgid "Install a New Plugin Repository" msgstr "Instalar un nuevo repositorio de plugins" -#: ../../Zotlabs/Module/Admin.php:1435 ../../Zotlabs/Module/Settings.php:77 -#: ../../Zotlabs/Module/Settings.php:616 ../../Zotlabs/Lib/Apps.php:330 +#: ../../Zotlabs/Module/Admin.php:1435 ../../Zotlabs/Module/Settings.php:72 +#: ../../Zotlabs/Module/Settings.php:670 ../../Zotlabs/Lib/Apps.php:334 msgid "Update" msgstr "Actualizar" @@ -4489,7 +4396,7 @@ msgid "Screenshot" msgstr "Instantánea de pantalla" #: ../../Zotlabs/Module/Admin.php:1613 ../../Zotlabs/Module/Admin.php:1647 -#: ../../include/widgets.php:1388 +#: ../../include/widgets.php:1482 msgid "Themes" msgstr "Temas" @@ -4505,8 +4412,8 @@ msgstr "[No soportado]" msgid "Log settings updated." msgstr "Actualizado el informe de configuraciones." -#: ../../Zotlabs/Module/Admin.php:1732 ../../include/widgets.php:1409 -#: ../../include/widgets.php:1419 +#: ../../Zotlabs/Module/Admin.php:1732 ../../include/widgets.php:1503 +#: ../../include/widgets.php:1513 msgid "Logs" msgstr "Informes" @@ -4572,7 +4479,7 @@ msgstr "Definición del campo no encontrada" msgid "Edit Profile Field" msgstr "Modificar el campo del perfil" -#: ../../Zotlabs/Module/Admin.php:2106 ../../include/widgets.php:1390 +#: ../../Zotlabs/Module/Admin.php:2106 ../../include/widgets.php:1484 msgid "Profile Fields" msgstr "Campos del perfil" @@ -4600,57 +4507,384 @@ msgstr "Campos personalizados" msgid "Create Custom Field" msgstr "Crear un campo personalizado" -#: ../../Zotlabs/Module/Appman.php:37 ../../Zotlabs/Module/Appman.php:53 -msgid "App installed." -msgstr "Aplicación instalada." +#: ../../Zotlabs/Module/New_channel.php:128 +#: ../../Zotlabs/Module/Register.php:231 +msgid "Name or caption" +msgstr "Nombre o descripción" -#: ../../Zotlabs/Module/Appman.php:46 -msgid "Malformed app." -msgstr "Aplicación con errores" +#: ../../Zotlabs/Module/New_channel.php:128 +#: ../../Zotlabs/Module/Register.php:231 +msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\"" +msgstr "Ejemplos: \"Juan García\", \"Luisa y sus caballos\", \"Fútbol\", \"Grupo de aviación\"" -#: ../../Zotlabs/Module/Appman.php:104 -msgid "Embed code" -msgstr "Código incorporado" +#: ../../Zotlabs/Module/New_channel.php:130 +#: ../../Zotlabs/Module/Register.php:233 +msgid "Choose a short nickname" +msgstr "Elija un alias corto" -#: ../../Zotlabs/Module/Appman.php:110 ../../include/widgets.php:107 -msgid "Edit App" -msgstr "Modificar la aplicación" +#: ../../Zotlabs/Module/New_channel.php:130 +#: ../../Zotlabs/Module/Register.php:233 +#, php-format +msgid "" +"Your nickname will be used to create an easy to remember channel address " +"e.g. nickname%s" +msgstr "Su alias se usará para crear una dirección de canal fácil de recordar, p. ej.: alias%s" -#: ../../Zotlabs/Module/Appman.php:110 -msgid "Create App" -msgstr "Crear una aplicación" +#: ../../Zotlabs/Module/New_channel.php:132 +#: ../../Zotlabs/Module/Register.php:235 +msgid "Channel role and privacy" +msgstr "Clase de canal y privacidad" -#: ../../Zotlabs/Module/Appman.php:115 -msgid "Name of app" -msgstr "Nombre de la aplicación" +#: ../../Zotlabs/Module/New_channel.php:132 +#: ../../Zotlabs/Module/Register.php:235 +msgid "Select a channel role with your privacy requirements." +msgstr "Seleccione un tipo de canal con sus requisitos de privacidad" -#: ../../Zotlabs/Module/Appman.php:116 -msgid "Location (URL) of app" -msgstr "Dirección (URL) de la aplicación" +#: ../../Zotlabs/Module/New_channel.php:132 +#: ../../Zotlabs/Module/Register.php:235 +msgid "Read more about roles" +msgstr "Leer más sobre los roles" -#: ../../Zotlabs/Module/Appman.php:118 -msgid "Photo icon URL" -msgstr "Dirección del icono" +#: ../../Zotlabs/Module/New_channel.php:135 +msgid "Create Channel" +msgstr "Crear un canal" -#: ../../Zotlabs/Module/Appman.php:118 -msgid "80 x 80 pixels - optional" -msgstr "80 x 80 pixels - opcional" +#: ../../Zotlabs/Module/New_channel.php:136 +msgid "" +"A channel is your identity on this network. It can represent a person, a " +"blog, or a forum to name a few. Channels can make connections with other " +"channels to share information with highly detailed permissions." +msgstr "Un canal es su identidad en esta red. Puede representar a una persona, un blog o un foro, por nombrar unos pocos ejemplos. Los canales se pueden conectar con otros canales para compartir información con una gama de permisos extremadamente detallada." -#: ../../Zotlabs/Module/Appman.php:119 -msgid "Categories (optional, comma separated list)" -msgstr "Categorías (opcional, lista separada por comas)" +#: ../../Zotlabs/Module/New_channel.php:137 +msgid "" +"or import an existing channel from another location." +msgstr "O importar un canal existente desde otro lugar." -#: ../../Zotlabs/Module/Appman.php:120 -msgid "Version ID" -msgstr "Versión" +#: ../../Zotlabs/Module/Ping.php:265 +msgid "sent you a private message" +msgstr "le ha enviado un mensaje privado" -#: ../../Zotlabs/Module/Appman.php:121 -msgid "Price of app" -msgstr "Precio de la aplicación" +#: ../../Zotlabs/Module/Ping.php:313 +msgid "added your channel" +msgstr "añadió este canal a sus conexiones" -#: ../../Zotlabs/Module/Appman.php:122 -msgid "Location (URL) to purchase app" -msgstr "Dirección (URL) donde adquirir la aplicación" +#: ../../Zotlabs/Module/Ping.php:323 +msgid "g A l F d" +msgstr "g A l d F" + +#: ../../Zotlabs/Module/Ping.php:346 +msgid "[today]" +msgstr "[hoy]" + +#: ../../Zotlabs/Module/Ping.php:355 +msgid "posted an event" +msgstr "publicó un evento" + +#: ../../Zotlabs/Module/Notifications.php:30 +msgid "Invalid request identifier." +msgstr "Petición inválida del identificador." + +#: ../../Zotlabs/Module/Notifications.php:39 +msgid "Discard" +msgstr "Descartar" + +#: ../../Zotlabs/Module/Notifications.php:103 ../../include/nav.php:193 +msgid "Mark all system notifications seen" +msgstr "Marcar todas las notificaciones de sistema como leídas" + +#: ../../Zotlabs/Module/Poke.php:168 ../../Zotlabs/Lib/Apps.php:228 +#: ../../include/conversation.php:963 +msgid "Poke" +msgstr "Toques y otras cosas" + +#: ../../Zotlabs/Module/Poke.php:169 +msgid "Poke somebody" +msgstr "Dar un toque a alguien" + +#: ../../Zotlabs/Module/Poke.php:172 +msgid "Poke/Prod" +msgstr "Toque/Incitación" + +#: ../../Zotlabs/Module/Poke.php:173 +msgid "Poke, prod or do other things to somebody" +msgstr "Dar un toque, incitar o hacer otras cosas a alguien" + +#: ../../Zotlabs/Module/Poke.php:180 +msgid "Recipient" +msgstr "Destinatario" + +#: ../../Zotlabs/Module/Poke.php:181 +msgid "Choose what you wish to do to recipient" +msgstr "Elegir qué desea enviar al destinatario" + +#: ../../Zotlabs/Module/Poke.php:184 ../../Zotlabs/Module/Poke.php:185 +msgid "Make this post private" +msgstr "Convertir en privado este envío" + +#: ../../Zotlabs/Module/Oexchange.php:27 +msgid "Unable to find your hub." +msgstr "No se puede encontrar su servidor." + +#: ../../Zotlabs/Module/Oexchange.php:41 +msgid "Post successful." +msgstr "Enviado con éxito." + +#: ../../Zotlabs/Module/Openid.php:30 +msgid "OpenID protocol error. No ID returned." +msgstr "Error del protocolo OpenID. Ningún ID recibido como respuesta." + +#: ../../Zotlabs/Module/Openid.php:193 ../../include/auth.php:285 +msgid "Login failed." +msgstr "El acceso ha fallado." + +#: ../../Zotlabs/Module/Profperm.php:34 ../../Zotlabs/Module/Profperm.php:63 +msgid "Invalid profile identifier." +msgstr "Identificador del perfil no válido" + +#: ../../Zotlabs/Module/Profperm.php:115 +msgid "Profile Visibility Editor" +msgstr "Editor de visibilidad del perfil" + +#: ../../Zotlabs/Module/Profperm.php:117 ../../include/channel.php:1290 +msgid "Profile" +msgstr "Perfil" + +#: ../../Zotlabs/Module/Profperm.php:119 +msgid "Click on a contact to add or remove." +msgstr "Pulsar en un contacto para añadirlo o eliminarlo." + +#: ../../Zotlabs/Module/Profperm.php:128 +msgid "Visible To" +msgstr "Visible para" + +#: ../../Zotlabs/Module/Pconfig.php:26 ../../Zotlabs/Module/Pconfig.php:59 +msgid "This setting requires special processing and editing has been blocked." +msgstr "Este ajuste necesita de un proceso especial y la edición ha sido bloqueada." + +#: ../../Zotlabs/Module/Pconfig.php:48 +msgid "Configuration Editor" +msgstr "Editor de configuración" + +#: ../../Zotlabs/Module/Pconfig.php:49 +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 "Atención: El cambio de algunos ajustes puede volver inutilizable su canal. Por favor, abandone la página excepto que esté seguro y sepa cómo usar correctamente esta característica." + +#: ../../Zotlabs/Module/Probe.php:28 ../../Zotlabs/Module/Probe.php:32 +#, php-format +msgid "Fetching URL returns error: %1$s" +msgstr "Al intentar obtener la dirección, retorna el error: %1$s" + +#: ../../Zotlabs/Module/Siteinfo.php:19 +#, php-format +msgid "Version %s" +msgstr "Versión %s" + +#: ../../Zotlabs/Module/Siteinfo.php:34 +msgid "Installed plugins/addons/apps:" +msgstr "Extensiones (plugins), complementos o aplicaciones (apps) instaladas:" + +#: ../../Zotlabs/Module/Siteinfo.php:36 +msgid "No installed plugins/addons/apps" +msgstr "No hay instalada ninguna extensión (plugin), complemento o aplicación (app)" + +#: ../../Zotlabs/Module/Siteinfo.php:49 +msgid "" +"This is a hub of $Projectname - a global cooperative network of " +"decentralized privacy enhanced websites." +msgstr "Este es un sitio integrado en $Projectname - una red cooperativa mundial de sitios web descentralizados de privacidad mejorada." + +#: ../../Zotlabs/Module/Siteinfo.php:51 +msgid "Tag: " +msgstr "Etiqueta:" + +#: ../../Zotlabs/Module/Siteinfo.php:53 +msgid "Last background fetch: " +msgstr "Última actualización en segundo plano:" + +#: ../../Zotlabs/Module/Siteinfo.php:55 +msgid "Current load average: " +msgstr "Carga media actual:" + +#: ../../Zotlabs/Module/Siteinfo.php:58 +msgid "Running at web location" +msgstr "Corriendo en el sitio web" + +#: ../../Zotlabs/Module/Siteinfo.php:59 +msgid "" +"Please visit hubzilla.org to learn more " +"about $Projectname." +msgstr "Por favor, visite hubzilla.org para más información sobre $Projectname." + +#: ../../Zotlabs/Module/Siteinfo.php:60 +msgid "Bug reports and issues: please visit" +msgstr "Informes de errores e incidencias: por favor visite" + +#: ../../Zotlabs/Module/Siteinfo.php:62 +msgid "$projectname issues" +msgstr "Problemas en $projectname" + +#: ../../Zotlabs/Module/Siteinfo.php:63 +msgid "" +"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot " +"com" +msgstr "Sugerencias, elogios, etc - por favor, un correo electrónico a \"redmatrix\" en librelist - punto com" + +#: ../../Zotlabs/Module/Siteinfo.php:65 +msgid "Site Administrators" +msgstr "Administradores del sitio" + +#: ../../Zotlabs/Module/Rmagic.php:44 +msgid "" +"We encountered a problem while logging in with the OpenID you provided. " +"Please check the correct spelling of the ID." +msgstr "Encontramos un problema durante el inicio de sesión con la OpenID que proporcionó. Por favor, compruebe que la ID está correctamente escrita." + +#: ../../Zotlabs/Module/Rmagic.php:44 +msgid "The error message was:" +msgstr "El mensaje de error fue:" + +#: ../../Zotlabs/Module/Rmagic.php:48 +msgid "Authentication failed." +msgstr "Falló la autenticación." + +#: ../../Zotlabs/Module/Rmagic.php:88 +msgid "Remote Authentication" +msgstr "Acceso desde su servidor" + +#: ../../Zotlabs/Module/Rmagic.php:89 +msgid "Enter your channel address (e.g. channel@example.com)" +msgstr "Introduzca la dirección del canal (p.ej. canal@ejemplo.com)" + +#: ../../Zotlabs/Module/Rmagic.php:90 +msgid "Authenticate" +msgstr "Acceder" + +#: ../../Zotlabs/Module/Pubsites.php:22 ../../include/widgets.php:1337 +msgid "Public Hubs" +msgstr "Servidores públicos" + +#: ../../Zotlabs/Module/Pubsites.php:25 +msgid "" +"The listed hubs allow public registration for the $Projectname network. All " +"hubs in the network are interlinked so membership on any of them conveys " +"membership in the network as a whole. Some hubs may require subscription or " +"provide tiered service plans. The hub itself may provide " +"additional details." +msgstr "Los sitios listados permiten el registro público en la red $Projectname. Todos los sitios de la red están vinculados entre sí, por lo que sus miembros, en ninguno de ellos, indican la pertenencia a la red en su conjunto. Algunos sitios pueden requerir suscripción o proporcionar planes de servicio por niveles. Los mismos hubs pueden proporcionar detalles adicionales." + +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Hub URL" +msgstr "Dirección del hub" + +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Access Type" +msgstr "Tipo de acceso" + +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Registration Policy" +msgstr "Normas de registro" + +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Stats" +msgstr "Estadísticas" + +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Software" +msgstr "Software" + +#: ../../Zotlabs/Module/Pubsites.php:31 ../../Zotlabs/Module/Ratings.php:103 +#: ../../include/conversation.php:962 +msgid "Ratings" +msgstr "Valoraciones" + +#: ../../Zotlabs/Module/Pubsites.php:38 +msgid "Rate" +msgstr "Valorar" + +#: ../../Zotlabs/Module/Profile_photo.php:186 +msgid "" +"Shift-reload the page or clear browser cache if the new photo does not " +"display immediately." +msgstr "Recargue la página o limpie el caché del navegador si la nueva foto no se muestra inmediatamente." + +#: ../../Zotlabs/Module/Profile_photo.php:389 +msgid "Upload Profile Photo" +msgstr "Subir foto de perfil" + +#: ../../Zotlabs/Module/Blocks.php:97 ../../Zotlabs/Module/Blocks.php:155 +#: ../../Zotlabs/Module/Editblock.php:108 +msgid "Block Name" +msgstr "Nombre del bloque" + +#: ../../Zotlabs/Module/Blocks.php:154 ../../include/text.php:2238 +msgid "Blocks" +msgstr "Bloques" + +#: ../../Zotlabs/Module/Blocks.php:156 +msgid "Block Title" +msgstr "Título del bloque" + +#: ../../Zotlabs/Module/Rate.php:160 +msgid "Website:" +msgstr "Sitio web:" + +#: ../../Zotlabs/Module/Rate.php:163 +#, php-format +msgid "Remote Channel [%s] (not yet known on this site)" +msgstr "Canal remoto [%s] (aún no es conocido en este sitio)" + +#: ../../Zotlabs/Module/Rate.php:164 +msgid "Rating (this information is public)" +msgstr "Valoración (esta información es pública)" + +#: ../../Zotlabs/Module/Rate.php:165 +msgid "Optionally explain your rating (this information is public)" +msgstr "Opcionalmente puede explicar su valoración (esta información es pública)" + +#: ../../Zotlabs/Module/Ratings.php:73 +msgid "No ratings" +msgstr "Ninguna valoración" + +#: ../../Zotlabs/Module/Ratings.php:104 +msgid "Rating: " +msgstr "Valoración:" + +#: ../../Zotlabs/Module/Ratings.php:105 +msgid "Website: " +msgstr "Sitio web:" + +#: ../../Zotlabs/Module/Ratings.php:107 +msgid "Description: " +msgstr "Descripción:" + +#: ../../Zotlabs/Module/Apps.php:47 ../../include/nav.php:165 +#: ../../include/widgets.php:102 +msgid "Apps" +msgstr "Aplicaciones (apps)" + +#: ../../Zotlabs/Module/Editblock.php:124 ../../include/conversation.php:1243 +msgid "Title (optional)" +msgstr "Título (opcional)" + +#: ../../Zotlabs/Module/Editblock.php:133 +msgid "Edit Block" +msgstr "Modificar este bloque" + +#: ../../Zotlabs/Module/Common.php:14 +msgid "No channel." +msgstr "Ningún canal." + +#: ../../Zotlabs/Module/Common.php:43 +msgid "Common connections" +msgstr "Conexiones comunes" + +#: ../../Zotlabs/Module/Common.php:48 +msgid "No connections in common." +msgstr "Ninguna conexión en común." #: ../../Zotlabs/Module/Rbmark.php:94 msgid "Select a bookmark folder" @@ -4755,120 +4989,154 @@ msgstr "sí" msgid "Membership on this site is by invitation only." msgstr "Para registrarse en este sitio es necesaria una invitación." -#: ../../Zotlabs/Module/Register.php:262 ../../include/nav.php:147 -#: ../../boot.php:1685 +#: ../../Zotlabs/Module/Register.php:262 ../../include/nav.php:149 +#: ../../boot.php:1686 msgid "Register" msgstr "Registrarse" -#: ../../Zotlabs/Module/Register.php:262 -msgid "Proceed to create your first channel" -msgstr "Crear su primer canal" +#: ../../Zotlabs/Module/Register.php:263 +msgid "" +"This site may require email verification after submitting this form. If you " +"are returned to a login page, please check your email for instructions." +msgstr "" #: ../../Zotlabs/Module/Regmod.php:15 msgid "Please login." msgstr "Por favor, inicie sesión." -#: ../../Zotlabs/Module/Removeaccount.php:34 +#: ../../Zotlabs/Module/Removeaccount.php:35 msgid "" "Account removals are not allowed within 48 hours of changing the account " "password." msgstr "La eliminación de cuentas no está permitida hasta después de que hayan transcurrido 48 horas desde el último cambio de contraseña." -#: ../../Zotlabs/Module/Removeaccount.php:56 +#: ../../Zotlabs/Module/Removeaccount.php:57 msgid "Remove This Account" msgstr "Eliminar esta cuenta" -#: ../../Zotlabs/Module/Removeaccount.php:57 -#: ../../Zotlabs/Module/Removeme.php:59 +#: ../../Zotlabs/Module/Removeaccount.php:58 +#: ../../Zotlabs/Module/Removeme.php:61 msgid "WARNING: " msgstr "ATENCIÓN:" -#: ../../Zotlabs/Module/Removeaccount.php:57 +#: ../../Zotlabs/Module/Removeaccount.php:58 msgid "" "This account and all its channels will be completely removed from the " "network. " msgstr "Esta cuenta y todos sus canales van a ser eliminados de la red." -#: ../../Zotlabs/Module/Removeaccount.php:57 -#: ../../Zotlabs/Module/Removeme.php:59 +#: ../../Zotlabs/Module/Removeaccount.php:58 +#: ../../Zotlabs/Module/Removeme.php:61 msgid "This action is permanent and can not be undone!" msgstr "¡Esta acción tiene carácter definitivo y no se puede deshacer!" -#: ../../Zotlabs/Module/Removeaccount.php:58 -#: ../../Zotlabs/Module/Removeme.php:60 +#: ../../Zotlabs/Module/Removeaccount.php:59 +#: ../../Zotlabs/Module/Removeme.php:62 msgid "Please enter your password for verification:" msgstr "Por favor, introduzca su contraseña para su verificación:" -#: ../../Zotlabs/Module/Removeaccount.php:59 +#: ../../Zotlabs/Module/Removeaccount.php:60 msgid "" "Remove this account, all its channels and all its channel clones from the " "network" msgstr "Remover esta cuenta, todos sus canales y clones de la red" -#: ../../Zotlabs/Module/Removeaccount.php:59 +#: ../../Zotlabs/Module/Removeaccount.php:60 msgid "" "By default only the instances of the channels located on this hub will be " "removed from the network" msgstr "Por defecto, solo las instancias de los canales ubicados en este servidor serán eliminados de la red" -#: ../../Zotlabs/Module/Removeaccount.php:60 -#: ../../Zotlabs/Module/Settings.php:705 +#: ../../Zotlabs/Module/Removeaccount.php:61 +#: ../../Zotlabs/Module/Settings.php:759 msgid "Remove Account" msgstr "Eliminar cuenta" -#: ../../Zotlabs/Module/Removeme.php:33 +#: ../../Zotlabs/Module/Removeme.php:35 msgid "" "Channel removals are not allowed within 48 hours of changing the account " "password." msgstr "La eliminación de canales no está permitida hasta pasadas 48 horas desde el último cambio de contraseña." -#: ../../Zotlabs/Module/Removeme.php:58 +#: ../../Zotlabs/Module/Removeme.php:60 msgid "Remove This Channel" msgstr "Eliminar este canal" -#: ../../Zotlabs/Module/Removeme.php:59 +#: ../../Zotlabs/Module/Removeme.php:61 msgid "This channel will be completely removed from the network. " msgstr "Este canal va a ser completamente eliminado de la red." -#: ../../Zotlabs/Module/Removeme.php:61 +#: ../../Zotlabs/Module/Removeme.php:63 msgid "Remove this channel and all its clones from the network" msgstr "Eliminar este canal y todos sus clones de la red" -#: ../../Zotlabs/Module/Removeme.php:61 +#: ../../Zotlabs/Module/Removeme.php:63 msgid "" "By default only the instance of the channel located on this hub will be " "removed from the network" msgstr "Por defecto, solo la instancia del canal alojado en este servidor será eliminado de la red" -#: ../../Zotlabs/Module/Removeme.php:62 ../../Zotlabs/Module/Settings.php:1124 +#: ../../Zotlabs/Module/Removeme.php:64 ../../Zotlabs/Module/Settings.php:1219 msgid "Remove Channel" msgstr "Eliminar el canal" -#: ../../Zotlabs/Module/Rmagic.php:44 +#: ../../Zotlabs/Module/Uexport.php:55 ../../Zotlabs/Module/Uexport.php:56 +msgid "Export Channel" +msgstr "Exportar el canal" + +#: ../../Zotlabs/Module/Uexport.php:57 msgid "" -"We encountered a problem while logging in with the OpenID you provided. " -"Please check the correct spelling of the ID." -msgstr "Encontramos un problema durante el inicio de sesión con la OpenID que proporcionó. Por favor, compruebe que la ID está correctamente escrita." +"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 "Exportar la información básica del canal a un fichero. Este equivale a una copia de seguridad de sus conexiones, el perfil y datos fundamentales, que puede usarse para importar sus datos a un nuevo servidor, pero no incluye su contenido." -#: ../../Zotlabs/Module/Rmagic.php:44 -msgid "The error message was:" -msgstr "El mensaje de error fue:" +#: ../../Zotlabs/Module/Uexport.php:58 +msgid "Export Content" +msgstr "Exportar contenidos" -#: ../../Zotlabs/Module/Rmagic.php:48 -msgid "Authentication failed." -msgstr "Falló la autenticación." +#: ../../Zotlabs/Module/Uexport.php:59 +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 "Exportar la información sobre su canal y el contenido reciente a un fichero de respaldo JSON, que puede ser restaurado o importado a otro servidor. Este fichero incluye todas sus conexiones, permisos, datos del perfil y publicaciones de varios meses. Puede llegar a ser MUY grande. Por favor, sea paciente, la descarga puede tardar varios minutos en comenzar." -#: ../../Zotlabs/Module/Rmagic.php:88 -msgid "Remote Authentication" -msgstr "Acceso desde su servidor" +#: ../../Zotlabs/Module/Uexport.php:60 +msgid "Export your posts from a given year." +msgstr "Exporta sus publicaciones de un año dado." -#: ../../Zotlabs/Module/Rmagic.php:89 -msgid "Enter your channel address (e.g. channel@example.com)" -msgstr "Introduzca la dirección del canal (p.ej. canal@ejemplo.com)" +#: ../../Zotlabs/Module/Uexport.php:62 +msgid "" +"You may also export your posts and conversations for a particular year or " +"month. Adjust the date in your browser location bar to select other dates. " +"If the export fails (possibly due to memory exhaustion on your server hub), " +"please try again selecting a more limited date range." +msgstr "También puede exportar sus mensajes y conversaciones durante un año o mes en particular. Ajuste la fecha en la barra de direcciones del navegador para seleccionar otras fechas. Si la exportación falla (posiblemente debido al agotamiento de la memoria del servidor hub), por favor, intente de nuevo la selección de un rango de fechas más pequeño." -#: ../../Zotlabs/Module/Rmagic.php:90 -msgid "Authenticate" -msgstr "Acceder" +#: ../../Zotlabs/Module/Uexport.php:63 +#, php-format +msgid "" +"To select all posts for a given year, such as this year, visit %2$s" +msgstr "Para seleccionar todos los mensajes de un año determinado, como este año, visite %2$s" + +#: ../../Zotlabs/Module/Uexport.php:64 +#, php-format +msgid "" +"To select all posts for a given month, such as January of this year, visit " +"%2$s" +msgstr "Para seleccionar todos los mensajes de un mes determinado, como el de enero de este año, visite %2$s" + +#: ../../Zotlabs/Module/Uexport.php:65 +#, php-format +msgid "" +"These content files may be imported or restored by visiting %2$s on any site containing your channel. For best results" +" please import or restore these in date order (oldest first)." +msgstr "Estos ficheros pueden ser importados o restaurados visitando %2$s o cualquier sitio que contenga su canal. Para obtener los mejores resultados, por favor, importar o restaurar estos ficheros en orden de fecha (la más antigua primero)." #: ../../Zotlabs/Module/Search.php:216 #, php-format @@ -4884,609 +5152,652 @@ msgstr "Resultados de la búsqueda para: %s" msgid "No service class restrictions found." msgstr "No se han encontrado restricciones sobre esta clase de servicio." -#: ../../Zotlabs/Module/Settings.php:69 +#: ../../Zotlabs/Module/Settings.php:64 msgid "Name is required" msgstr "El nombre es obligatorio" -#: ../../Zotlabs/Module/Settings.php:73 +#: ../../Zotlabs/Module/Settings.php:68 msgid "Key and Secret are required" msgstr "\"Key\" y \"Secret\" son obligatorios" -#: ../../Zotlabs/Module/Settings.php:225 +#: ../../Zotlabs/Module/Settings.php:138 +#, php-format +msgid "This channel is limited to %d tokens" +msgstr "" + +#: ../../Zotlabs/Module/Settings.php:144 +msgid "Name and Password are required." +msgstr "" + +#: ../../Zotlabs/Module/Settings.php:168 +msgid "Token saved." +msgstr "" + +#: ../../Zotlabs/Module/Settings.php:274 msgid "Not valid email." msgstr "Correo electrónico no válido." -#: ../../Zotlabs/Module/Settings.php:228 +#: ../../Zotlabs/Module/Settings.php:277 msgid "Protected email address. Cannot change to that email." msgstr "Dirección de correo electrónico protegida. No se puede cambiar a ella." -#: ../../Zotlabs/Module/Settings.php:237 +#: ../../Zotlabs/Module/Settings.php:286 msgid "System failure storing new email. Please try again." msgstr "Fallo de sistema al guardar el nuevo correo electrónico. Por favor, inténtelo de nuevo." -#: ../../Zotlabs/Module/Settings.php:254 +#: ../../Zotlabs/Module/Settings.php:303 msgid "Password verification failed." msgstr "La comprobación de la contraseña ha fallado." -#: ../../Zotlabs/Module/Settings.php:261 +#: ../../Zotlabs/Module/Settings.php:310 msgid "Passwords do not match. Password unchanged." msgstr "Las contraseñas no coinciden. La contraseña no se ha cambiado." -#: ../../Zotlabs/Module/Settings.php:265 +#: ../../Zotlabs/Module/Settings.php:314 msgid "Empty passwords are not allowed. Password unchanged." msgstr "No se permiten contraseñas vacías. La contraseña no se ha cambiado." -#: ../../Zotlabs/Module/Settings.php:279 +#: ../../Zotlabs/Module/Settings.php:328 msgid "Password changed." msgstr "Contraseña cambiada." -#: ../../Zotlabs/Module/Settings.php:281 +#: ../../Zotlabs/Module/Settings.php:330 msgid "Password update failed. Please try again." msgstr "La actualización de la contraseña ha fallado. Por favor, inténtalo de nuevo." -#: ../../Zotlabs/Module/Settings.php:525 +#: ../../Zotlabs/Module/Settings.php:579 msgid "Settings updated." msgstr "Ajustes actualizados." -#: ../../Zotlabs/Module/Settings.php:589 ../../Zotlabs/Module/Settings.php:615 -#: ../../Zotlabs/Module/Settings.php:651 +#: ../../Zotlabs/Module/Settings.php:643 ../../Zotlabs/Module/Settings.php:669 +#: ../../Zotlabs/Module/Settings.php:705 msgid "Add application" msgstr "Añadir aplicación" -#: ../../Zotlabs/Module/Settings.php:592 +#: ../../Zotlabs/Module/Settings.php:646 msgid "Name of application" msgstr "Nombre de la aplicación" -#: ../../Zotlabs/Module/Settings.php:593 ../../Zotlabs/Module/Settings.php:619 +#: ../../Zotlabs/Module/Settings.php:647 ../../Zotlabs/Module/Settings.php:673 msgid "Consumer Key" msgstr "Consumer Key" -#: ../../Zotlabs/Module/Settings.php:593 ../../Zotlabs/Module/Settings.php:594 +#: ../../Zotlabs/Module/Settings.php:647 ../../Zotlabs/Module/Settings.php:648 msgid "Automatically generated - change if desired. Max length 20" msgstr "Generado automáticamente - si lo desea, cámbielo. Longitud máxima: 20" -#: ../../Zotlabs/Module/Settings.php:594 ../../Zotlabs/Module/Settings.php:620 +#: ../../Zotlabs/Module/Settings.php:648 ../../Zotlabs/Module/Settings.php:674 msgid "Consumer Secret" msgstr "Consumer Secret" -#: ../../Zotlabs/Module/Settings.php:595 ../../Zotlabs/Module/Settings.php:621 +#: ../../Zotlabs/Module/Settings.php:649 ../../Zotlabs/Module/Settings.php:675 msgid "Redirect" msgstr "Redirigir" -#: ../../Zotlabs/Module/Settings.php:595 +#: ../../Zotlabs/Module/Settings.php:649 msgid "" "Redirect URI - leave blank unless your application specifically requires " "this" msgstr "URI de redirección - dejar en blanco a menos que su aplicación específicamente lo requiera" -#: ../../Zotlabs/Module/Settings.php:596 ../../Zotlabs/Module/Settings.php:622 +#: ../../Zotlabs/Module/Settings.php:650 ../../Zotlabs/Module/Settings.php:676 msgid "Icon url" msgstr "Dirección del icono" -#: ../../Zotlabs/Module/Settings.php:596 ../../Zotlabs/Module/Sources.php:112 +#: ../../Zotlabs/Module/Settings.php:650 ../../Zotlabs/Module/Sources.php:112 #: ../../Zotlabs/Module/Sources.php:147 msgid "Optional" msgstr "Opcional" -#: ../../Zotlabs/Module/Settings.php:607 +#: ../../Zotlabs/Module/Settings.php:661 msgid "Application not found." msgstr "Aplicación no encontrada." -#: ../../Zotlabs/Module/Settings.php:650 +#: ../../Zotlabs/Module/Settings.php:704 msgid "Connected Apps" msgstr "Aplicaciones (apps) conectadas" -#: ../../Zotlabs/Module/Settings.php:654 +#: ../../Zotlabs/Module/Settings.php:708 msgid "Client key starts with" msgstr "La \"client key\" empieza por" -#: ../../Zotlabs/Module/Settings.php:655 +#: ../../Zotlabs/Module/Settings.php:709 msgid "No name" msgstr "Sin nombre" -#: ../../Zotlabs/Module/Settings.php:656 +#: ../../Zotlabs/Module/Settings.php:710 msgid "Remove authorization" msgstr "Eliminar autorización" -#: ../../Zotlabs/Module/Settings.php:669 +#: ../../Zotlabs/Module/Settings.php:723 msgid "No feature settings configured" msgstr "No se ha establecido la configuración de los complementos" -#: ../../Zotlabs/Module/Settings.php:676 +#: ../../Zotlabs/Module/Settings.php:730 msgid "Feature/Addon Settings" msgstr "Ajustes de los complementos" -#: ../../Zotlabs/Module/Settings.php:699 +#: ../../Zotlabs/Module/Settings.php:753 msgid "Account Settings" msgstr "Configuración de la cuenta" -#: ../../Zotlabs/Module/Settings.php:700 +#: ../../Zotlabs/Module/Settings.php:754 msgid "Current Password" msgstr "Contraseña actual" -#: ../../Zotlabs/Module/Settings.php:701 +#: ../../Zotlabs/Module/Settings.php:755 msgid "Enter New Password" msgstr "Escribir una nueva contraseña" -#: ../../Zotlabs/Module/Settings.php:702 +#: ../../Zotlabs/Module/Settings.php:756 msgid "Confirm New Password" msgstr "Confirmar la nueva contraseña" -#: ../../Zotlabs/Module/Settings.php:702 +#: ../../Zotlabs/Module/Settings.php:756 msgid "Leave password fields blank unless changing" msgstr "Dejar en blanco la contraseña a menos que desee cambiarla." -#: ../../Zotlabs/Module/Settings.php:704 -#: ../../Zotlabs/Module/Settings.php:1041 +#: ../../Zotlabs/Module/Settings.php:758 +#: ../../Zotlabs/Module/Settings.php:1136 msgid "Email Address:" msgstr "Dirección de correo electrónico:" -#: ../../Zotlabs/Module/Settings.php:706 +#: ../../Zotlabs/Module/Settings.php:760 msgid "Remove this account including all its channels" msgstr "Eliminar esta cuenta incluyendo todos sus canales" -#: ../../Zotlabs/Module/Settings.php:729 +#: ../../Zotlabs/Module/Settings.php:789 +msgid "" +"Use this form to create temporary access identifiers to share things with " +"non-members. These identities may be used in Access Control Lists and " +"visitors may login using these credentials to access the private content." +msgstr "" + +#: ../../Zotlabs/Module/Settings.php:791 +msgid "" +"You may also provide dropbox style access links to friends and " +"associates by adding the Login Password to any specific site URL as shown. " +"Examples:" +msgstr "" + +#: ../../Zotlabs/Module/Settings.php:796 ../../include/widgets.php:614 +msgid "Guest Access Tokens" +msgstr "" + +#: ../../Zotlabs/Module/Settings.php:803 +msgid "Login Name" +msgstr "" + +#: ../../Zotlabs/Module/Settings.php:804 +msgid "Login Password" +msgstr "" + +#: ../../Zotlabs/Module/Settings.php:805 +msgid "Expires (yyyy-mm-dd)" +msgstr "" + +#: ../../Zotlabs/Module/Settings.php:830 msgid "Additional Features" msgstr "Funcionalidades" -#: ../../Zotlabs/Module/Settings.php:753 +#: ../../Zotlabs/Module/Settings.php:854 msgid "Connector Settings" msgstr "Configuración del conector" -#: ../../Zotlabs/Module/Settings.php:792 +#: ../../Zotlabs/Module/Settings.php:893 msgid "No special theme for mobile devices" msgstr "Sin tema especial para dispositivos móviles" -#: ../../Zotlabs/Module/Settings.php:795 +#: ../../Zotlabs/Module/Settings.php:896 #, php-format msgid "%s - (Experimental)" msgstr "%s - (Experimental)" -#: ../../Zotlabs/Module/Settings.php:837 +#: ../../Zotlabs/Module/Settings.php:938 msgid "Display Settings" msgstr "Ajustes de visualización" -#: ../../Zotlabs/Module/Settings.php:838 +#: ../../Zotlabs/Module/Settings.php:939 msgid "Theme Settings" msgstr "Ajustes del tema" -#: ../../Zotlabs/Module/Settings.php:839 +#: ../../Zotlabs/Module/Settings.php:940 msgid "Custom Theme Settings" msgstr "Ajustes personalizados del tema" -#: ../../Zotlabs/Module/Settings.php:840 +#: ../../Zotlabs/Module/Settings.php:941 msgid "Content Settings" msgstr "Ajustes del contenido" -#: ../../Zotlabs/Module/Settings.php:846 +#: ../../Zotlabs/Module/Settings.php:947 msgid "Display Theme:" msgstr "Tema gráfico del perfil:" -#: ../../Zotlabs/Module/Settings.php:847 +#: ../../Zotlabs/Module/Settings.php:948 msgid "Mobile Theme:" msgstr "Tema para el móvil:" -#: ../../Zotlabs/Module/Settings.php:848 +#: ../../Zotlabs/Module/Settings.php:949 msgid "Preload images before rendering the page" msgstr "Carga previa de las imágenes antes de generar la página" -#: ../../Zotlabs/Module/Settings.php:848 +#: ../../Zotlabs/Module/Settings.php:949 msgid "" "The subjective page load time will be longer but the page will be ready when" " displayed" msgstr "El tiempo subjetivo de carga de la página será más largo, pero la página estará lista cuando se muestre." -#: ../../Zotlabs/Module/Settings.php:849 +#: ../../Zotlabs/Module/Settings.php:950 msgid "Enable user zoom on mobile devices" msgstr "Habilitar zoom de usuario en dispositivos móviles" -#: ../../Zotlabs/Module/Settings.php:850 +#: ../../Zotlabs/Module/Settings.php:951 msgid "Update browser every xx seconds" msgstr "Actualizar navegador cada xx segundos" -#: ../../Zotlabs/Module/Settings.php:850 +#: ../../Zotlabs/Module/Settings.php:951 msgid "Minimum of 10 seconds, no maximum" msgstr "Mínimo de 10 segundos, sin máximo" -#: ../../Zotlabs/Module/Settings.php:851 +#: ../../Zotlabs/Module/Settings.php:952 msgid "Maximum number of conversations to load at any time:" msgstr "Máximo número de conversaciones a cargar en cualquier momento:" -#: ../../Zotlabs/Module/Settings.php:851 +#: ../../Zotlabs/Module/Settings.php:952 msgid "Maximum of 100 items" msgstr "Máximo de 100 elementos" -#: ../../Zotlabs/Module/Settings.php:852 +#: ../../Zotlabs/Module/Settings.php:953 msgid "Show emoticons (smilies) as images" msgstr "Mostrar emoticonos (smilies) como imágenes" -#: ../../Zotlabs/Module/Settings.php:853 +#: ../../Zotlabs/Module/Settings.php:954 msgid "Link post titles to source" msgstr "Enlazar título de la publicación a la fuente original" -#: ../../Zotlabs/Module/Settings.php:854 +#: ../../Zotlabs/Module/Settings.php:955 msgid "System Page Layout Editor - (advanced)" msgstr "Editor de plantilla de página del sistema - (avanzado)" -#: ../../Zotlabs/Module/Settings.php:857 +#: ../../Zotlabs/Module/Settings.php:958 msgid "Use blog/list mode on channel page" msgstr "Usar modo blog/lista en la página de inicio del canal" -#: ../../Zotlabs/Module/Settings.php:857 ../../Zotlabs/Module/Settings.php:858 +#: ../../Zotlabs/Module/Settings.php:958 ../../Zotlabs/Module/Settings.php:959 msgid "(comments displayed separately)" msgstr "(comentarios mostrados de forma separada)" -#: ../../Zotlabs/Module/Settings.php:858 +#: ../../Zotlabs/Module/Settings.php:959 msgid "Use blog/list mode on grid page" msgstr "Mostrar mi red en modo blog" -#: ../../Zotlabs/Module/Settings.php:859 +#: ../../Zotlabs/Module/Settings.php:960 msgid "Channel page max height of content (in pixels)" msgstr "Altura máxima del contenido de la página del canal (en píxeles)" -#: ../../Zotlabs/Module/Settings.php:859 ../../Zotlabs/Module/Settings.php:860 +#: ../../Zotlabs/Module/Settings.php:960 ../../Zotlabs/Module/Settings.php:961 msgid "click to expand content exceeding this height" msgstr "Pulsar para expandir el contenido que exceda de esta altura" -#: ../../Zotlabs/Module/Settings.php:860 +#: ../../Zotlabs/Module/Settings.php:961 msgid "Grid page max height of content (in pixels)" msgstr "Altura máxima del contenido de mi red (en píxeles)" -#: ../../Zotlabs/Module/Settings.php:894 +#: ../../Zotlabs/Module/Settings.php:990 msgid "Nobody except yourself" msgstr "Nadie excepto usted" -#: ../../Zotlabs/Module/Settings.php:895 +#: ../../Zotlabs/Module/Settings.php:991 msgid "Only those you specifically allow" msgstr "Solo aquellos a los que usted permita explícitamente" -#: ../../Zotlabs/Module/Settings.php:896 +#: ../../Zotlabs/Module/Settings.php:992 msgid "Approved connections" msgstr "Conexiones aprobadas" -#: ../../Zotlabs/Module/Settings.php:897 +#: ../../Zotlabs/Module/Settings.php:993 msgid "Any connections" msgstr "Cualquier conexión" -#: ../../Zotlabs/Module/Settings.php:898 +#: ../../Zotlabs/Module/Settings.php:994 msgid "Anybody on this website" msgstr "Cualquiera en este sitio web" -#: ../../Zotlabs/Module/Settings.php:899 +#: ../../Zotlabs/Module/Settings.php:995 msgid "Anybody in this network" msgstr "Cualquiera en esta red" -#: ../../Zotlabs/Module/Settings.php:900 +#: ../../Zotlabs/Module/Settings.php:996 msgid "Anybody authenticated" msgstr "Cualquiera que esté autenticado" -#: ../../Zotlabs/Module/Settings.php:901 +#: ../../Zotlabs/Module/Settings.php:997 msgid "Anybody on the internet" msgstr "Cualquiera en internet" -#: ../../Zotlabs/Module/Settings.php:976 +#: ../../Zotlabs/Module/Settings.php:1071 msgid "Publish your default profile in the network directory" msgstr "Publicar su perfil principal en el directorio de la red" -#: ../../Zotlabs/Module/Settings.php:981 +#: ../../Zotlabs/Module/Settings.php:1076 msgid "Allow us to suggest you as a potential friend to new members?" msgstr "¿Nos permite sugerirle como amigo potencial a los nuevos miembros?" -#: ../../Zotlabs/Module/Settings.php:990 +#: ../../Zotlabs/Module/Settings.php:1085 msgid "Your channel address is" msgstr "Su dirección de canal es" -#: ../../Zotlabs/Module/Settings.php:1032 +#: ../../Zotlabs/Module/Settings.php:1127 msgid "Channel Settings" msgstr "Ajustes del canal" -#: ../../Zotlabs/Module/Settings.php:1039 +#: ../../Zotlabs/Module/Settings.php:1134 msgid "Basic Settings" msgstr "Configuración básica" -#: ../../Zotlabs/Module/Settings.php:1040 ../../include/channel.php:1140 +#: ../../Zotlabs/Module/Settings.php:1135 ../../include/channel.php:1180 msgid "Full Name:" msgstr "Nombre completo:" -#: ../../Zotlabs/Module/Settings.php:1042 +#: ../../Zotlabs/Module/Settings.php:1137 msgid "Your Timezone:" msgstr "Su huso horario:" -#: ../../Zotlabs/Module/Settings.php:1043 +#: ../../Zotlabs/Module/Settings.php:1138 msgid "Default Post Location:" msgstr "Localización geográfica predeterminada para sus publicaciones:" -#: ../../Zotlabs/Module/Settings.php:1043 +#: ../../Zotlabs/Module/Settings.php:1138 msgid "Geographical location to display on your posts" msgstr "Localización geográfica que debe mostrarse en sus publicaciones" -#: ../../Zotlabs/Module/Settings.php:1044 +#: ../../Zotlabs/Module/Settings.php:1139 msgid "Use Browser Location:" msgstr "Usar la localización geográfica del navegador:" -#: ../../Zotlabs/Module/Settings.php:1046 +#: ../../Zotlabs/Module/Settings.php:1141 msgid "Adult Content" msgstr "Contenido solo para adultos" -#: ../../Zotlabs/Module/Settings.php:1046 +#: ../../Zotlabs/Module/Settings.php:1141 msgid "" "This channel frequently or regularly publishes adult content. (Please tag " "any adult material and/or nudity with #NSFW)" msgstr "Este canal publica contenido solo para adultos con frecuencia o regularmente. (Por favor etiquete cualquier material para adultos con la etiqueta #NSFW)" -#: ../../Zotlabs/Module/Settings.php:1048 +#: ../../Zotlabs/Module/Settings.php:1143 msgid "Security and Privacy Settings" msgstr "Configuración de seguridad y privacidad" -#: ../../Zotlabs/Module/Settings.php:1051 +#: ../../Zotlabs/Module/Settings.php:1146 msgid "Your permissions are already configured. Click to view/adjust" msgstr "Sus permisos ya están configurados. Pulse para ver/ajustar" -#: ../../Zotlabs/Module/Settings.php:1053 +#: ../../Zotlabs/Module/Settings.php:1148 msgid "Hide my online presence" msgstr "Ocultar mi presencia en línea" -#: ../../Zotlabs/Module/Settings.php:1053 +#: ../../Zotlabs/Module/Settings.php:1148 msgid "Prevents displaying in your profile that you are online" msgstr "Evitar mostrar en su perfil que está en línea" -#: ../../Zotlabs/Module/Settings.php:1055 +#: ../../Zotlabs/Module/Settings.php:1150 msgid "Simple Privacy Settings:" msgstr "Configuración de privacidad sencilla:" -#: ../../Zotlabs/Module/Settings.php:1056 +#: ../../Zotlabs/Module/Settings.php:1151 msgid "" "Very Public - extremely permissive (should be used with caution)" msgstr "Muy Público - extremadamente permisivo (debería ser usado con precaución)" -#: ../../Zotlabs/Module/Settings.php:1057 +#: ../../Zotlabs/Module/Settings.php:1152 msgid "" "Typical - default public, privacy when desired (similar to social " "network permissions but with improved privacy)" msgstr "Típico - por defecto público, privado cuando se desee (similar a los permisos de una red social pero con privacidad mejorada)" -#: ../../Zotlabs/Module/Settings.php:1058 +#: ../../Zotlabs/Module/Settings.php:1153 msgid "Private - default private, never open or public" msgstr "Privado - por defecto, privado, nunca abierto o público" -#: ../../Zotlabs/Module/Settings.php:1059 +#: ../../Zotlabs/Module/Settings.php:1154 msgid "Blocked - default blocked to/from everybody" msgstr "Bloqueado - por defecto, bloqueado/a para cualquiera" -#: ../../Zotlabs/Module/Settings.php:1061 +#: ../../Zotlabs/Module/Settings.php:1156 msgid "Allow others to tag your posts" msgstr "Permitir a otros etiquetar sus publicaciones" -#: ../../Zotlabs/Module/Settings.php:1061 +#: ../../Zotlabs/Module/Settings.php:1156 msgid "" "Often used by the community to retro-actively flag inappropriate content" msgstr "A menudo usado por la comunidad para marcar contenido inapropiado de forma retroactiva." -#: ../../Zotlabs/Module/Settings.php:1063 +#: ../../Zotlabs/Module/Settings.php:1158 msgid "Advanced Privacy Settings" msgstr "Configuración de privacidad avanzada" -#: ../../Zotlabs/Module/Settings.php:1065 +#: ../../Zotlabs/Module/Settings.php:1160 msgid "Expire other channel content after this many days" msgstr "Caducar contenido de otros canales después de este número de días" -#: ../../Zotlabs/Module/Settings.php:1065 +#: ../../Zotlabs/Module/Settings.php:1160 msgid "0 or blank to use the website limit." msgstr "0 o en blanco para usar el límite del sitio web." -#: ../../Zotlabs/Module/Settings.php:1065 +#: ../../Zotlabs/Module/Settings.php:1160 #, php-format msgid "This website expires after %d days." msgstr "Este sitio web caduca después de %d días." -#: ../../Zotlabs/Module/Settings.php:1065 +#: ../../Zotlabs/Module/Settings.php:1160 msgid "This website does not expire imported content." msgstr "Este sitio web no caduca el contenido importado." -#: ../../Zotlabs/Module/Settings.php:1065 +#: ../../Zotlabs/Module/Settings.php:1160 msgid "The website limit takes precedence if lower than your limit." msgstr "El límite del sitio web tiene prioridad si es inferior a su propio límite." -#: ../../Zotlabs/Module/Settings.php:1066 +#: ../../Zotlabs/Module/Settings.php:1161 msgid "Maximum Friend Requests/Day:" msgstr "Máximo de solicitudes de amistad por día:" -#: ../../Zotlabs/Module/Settings.php:1066 +#: ../../Zotlabs/Module/Settings.php:1161 msgid "May reduce spam activity" msgstr "Podría reducir la actividad de spam" -#: ../../Zotlabs/Module/Settings.php:1067 +#: ../../Zotlabs/Module/Settings.php:1162 msgid "Default Post and Publish Permissions" msgstr "Permisos predeterminados de entradas y publicaciones" -#: ../../Zotlabs/Module/Settings.php:1069 +#: ../../Zotlabs/Module/Settings.php:1164 msgid "Use my default audience setting for the type of object published" msgstr "Usar los ajustes de mi audiencia predeterminada para el tipo de publicación" -#: ../../Zotlabs/Module/Settings.php:1072 +#: ../../Zotlabs/Module/Settings.php:1167 msgid "Channel permissions category:" msgstr "Categoría de permisos del canal:" -#: ../../Zotlabs/Module/Settings.php:1078 +#: ../../Zotlabs/Module/Settings.php:1173 msgid "Maximum private messages per day from unknown people:" msgstr "Máximo de mensajes privados por día de gente desconocida:" -#: ../../Zotlabs/Module/Settings.php:1078 +#: ../../Zotlabs/Module/Settings.php:1173 msgid "Useful to reduce spamming" msgstr "Útil para reducir el envío de correo no deseado" -#: ../../Zotlabs/Module/Settings.php:1081 +#: ../../Zotlabs/Module/Settings.php:1176 msgid "Notification Settings" msgstr "Configuración de las notificaciones" -#: ../../Zotlabs/Module/Settings.php:1082 +#: ../../Zotlabs/Module/Settings.php:1177 msgid "By default post a status message when:" msgstr "Por defecto, enviar un mensaje de estado cuando:" -#: ../../Zotlabs/Module/Settings.php:1083 +#: ../../Zotlabs/Module/Settings.php:1178 msgid "accepting a friend request" msgstr "Acepte una solicitud de amistad" -#: ../../Zotlabs/Module/Settings.php:1084 +#: ../../Zotlabs/Module/Settings.php:1179 msgid "joining a forum/community" msgstr "al unirse a un foro o comunidad" -#: ../../Zotlabs/Module/Settings.php:1085 +#: ../../Zotlabs/Module/Settings.php:1180 msgid "making an interesting profile change" msgstr "Realice un cambio interesante en su perfil" -#: ../../Zotlabs/Module/Settings.php:1086 +#: ../../Zotlabs/Module/Settings.php:1181 msgid "Send a notification email when:" msgstr "Enviar una notificación por correo electrónico cuando:" -#: ../../Zotlabs/Module/Settings.php:1087 +#: ../../Zotlabs/Module/Settings.php:1182 msgid "You receive a connection request" msgstr "Reciba una solicitud de conexión" -#: ../../Zotlabs/Module/Settings.php:1088 +#: ../../Zotlabs/Module/Settings.php:1183 msgid "Your connections are confirmed" msgstr "Sus conexiones hayan sido confirmadas" -#: ../../Zotlabs/Module/Settings.php:1089 +#: ../../Zotlabs/Module/Settings.php:1184 msgid "Someone writes on your profile wall" msgstr "Alguien escriba en la página de su perfil (\"muro\")" -#: ../../Zotlabs/Module/Settings.php:1090 +#: ../../Zotlabs/Module/Settings.php:1185 msgid "Someone writes a followup comment" msgstr "Alguien escriba un comentario sobre sus publicaciones" -#: ../../Zotlabs/Module/Settings.php:1091 +#: ../../Zotlabs/Module/Settings.php:1186 msgid "You receive a private message" msgstr "Reciba un mensaje privado" -#: ../../Zotlabs/Module/Settings.php:1092 +#: ../../Zotlabs/Module/Settings.php:1187 msgid "You receive a friend suggestion" msgstr "Reciba una sugerencia de amistad" -#: ../../Zotlabs/Module/Settings.php:1093 +#: ../../Zotlabs/Module/Settings.php:1188 msgid "You are tagged in a post" msgstr "Usted sea etiquetado en una publicación" -#: ../../Zotlabs/Module/Settings.php:1094 +#: ../../Zotlabs/Module/Settings.php:1189 msgid "You are poked/prodded/etc. in a post" msgstr "Reciba un toque o incitación en una publicación" -#: ../../Zotlabs/Module/Settings.php:1097 +#: ../../Zotlabs/Module/Settings.php:1192 msgid "Show visual notifications including:" msgstr "Mostrar notificaciones visuales que incluyan:" -#: ../../Zotlabs/Module/Settings.php:1099 +#: ../../Zotlabs/Module/Settings.php:1194 msgid "Unseen grid activity" msgstr "Nueva actividad en la red" -#: ../../Zotlabs/Module/Settings.php:1100 +#: ../../Zotlabs/Module/Settings.php:1195 msgid "Unseen channel activity" msgstr "Actividad no vista en el canal" -#: ../../Zotlabs/Module/Settings.php:1101 +#: ../../Zotlabs/Module/Settings.php:1196 msgid "Unseen private messages" msgstr "Mensajes privados no leídos" -#: ../../Zotlabs/Module/Settings.php:1101 -#: ../../Zotlabs/Module/Settings.php:1106 -#: ../../Zotlabs/Module/Settings.php:1107 -#: ../../Zotlabs/Module/Settings.php:1108 +#: ../../Zotlabs/Module/Settings.php:1196 +#: ../../Zotlabs/Module/Settings.php:1201 +#: ../../Zotlabs/Module/Settings.php:1202 +#: ../../Zotlabs/Module/Settings.php:1203 msgid "Recommended" msgstr "Recomendado" -#: ../../Zotlabs/Module/Settings.php:1102 +#: ../../Zotlabs/Module/Settings.php:1197 msgid "Upcoming events" msgstr "Próximos eventos" -#: ../../Zotlabs/Module/Settings.php:1103 +#: ../../Zotlabs/Module/Settings.php:1198 msgid "Events today" msgstr "Eventos de hoy" -#: ../../Zotlabs/Module/Settings.php:1104 +#: ../../Zotlabs/Module/Settings.php:1199 msgid "Upcoming birthdays" msgstr "Próximos cumpleaños" -#: ../../Zotlabs/Module/Settings.php:1104 +#: ../../Zotlabs/Module/Settings.php:1199 msgid "Not available in all themes" msgstr "No disponible en todos los temas" -#: ../../Zotlabs/Module/Settings.php:1105 +#: ../../Zotlabs/Module/Settings.php:1200 msgid "System (personal) notifications" msgstr "Notificaciones del sistema (personales)" -#: ../../Zotlabs/Module/Settings.php:1106 +#: ../../Zotlabs/Module/Settings.php:1201 msgid "System info messages" msgstr "Mensajes de información del sistema" -#: ../../Zotlabs/Module/Settings.php:1107 +#: ../../Zotlabs/Module/Settings.php:1202 msgid "System critical alerts" msgstr "Alertas críticas del sistema" -#: ../../Zotlabs/Module/Settings.php:1108 +#: ../../Zotlabs/Module/Settings.php:1203 msgid "New connections" msgstr "Nuevas conexiones" -#: ../../Zotlabs/Module/Settings.php:1109 +#: ../../Zotlabs/Module/Settings.php:1204 msgid "System Registrations" msgstr "Registros del sistema" -#: ../../Zotlabs/Module/Settings.php:1110 +#: ../../Zotlabs/Module/Settings.php:1205 msgid "" "Also show new wall posts, private messages and connections under Notices" msgstr "Mostrar también en Avisos las nuevas publicaciones, los mensajes privados y las conexiones" -#: ../../Zotlabs/Module/Settings.php:1112 +#: ../../Zotlabs/Module/Settings.php:1207 msgid "Notify me of events this many days in advance" msgstr "Avisarme de los eventos con algunos días de antelación" -#: ../../Zotlabs/Module/Settings.php:1112 +#: ../../Zotlabs/Module/Settings.php:1207 msgid "Must be greater than 0" msgstr "Debe ser mayor que 0" -#: ../../Zotlabs/Module/Settings.php:1114 +#: ../../Zotlabs/Module/Settings.php:1209 msgid "Advanced Account/Page Type Settings" msgstr "Ajustes avanzados de la cuenta y de los tipos de página" -#: ../../Zotlabs/Module/Settings.php:1115 +#: ../../Zotlabs/Module/Settings.php:1210 msgid "Change the behaviour of this account for special situations" msgstr "Cambiar el comportamiento de esta cuenta en situaciones especiales" -#: ../../Zotlabs/Module/Settings.php:1118 +#: ../../Zotlabs/Module/Settings.php:1213 msgid "" "Please enable expert mode (in Settings > " "Additional features) to adjust!" msgstr "¡Activar el modo de experto (en Ajustes > Funcionalidades) para realizar cambios!." -#: ../../Zotlabs/Module/Settings.php:1119 +#: ../../Zotlabs/Module/Settings.php:1214 msgid "Miscellaneous Settings" msgstr "Ajustes diversos" -#: ../../Zotlabs/Module/Settings.php:1120 +#: ../../Zotlabs/Module/Settings.php:1215 msgid "Default photo upload folder" msgstr "Carpeta por defecto de las fotos subidas" -#: ../../Zotlabs/Module/Settings.php:1120 -#: ../../Zotlabs/Module/Settings.php:1121 +#: ../../Zotlabs/Module/Settings.php:1215 +#: ../../Zotlabs/Module/Settings.php:1216 msgid "%Y - current year, %m - current month" msgstr "%Y - año en curso, %m - mes actual" -#: ../../Zotlabs/Module/Settings.php:1121 +#: ../../Zotlabs/Module/Settings.php:1216 msgid "Default file upload folder" msgstr "Carpeta por defecto de los archivos subidos" -#: ../../Zotlabs/Module/Settings.php:1123 +#: ../../Zotlabs/Module/Settings.php:1218 msgid "Personal menu to display in your channel pages" msgstr "Menú personal que debe mostrarse en las páginas de su canal" -#: ../../Zotlabs/Module/Settings.php:1125 +#: ../../Zotlabs/Module/Settings.php:1220 msgid "Remove this channel." msgstr "Eliminar este canal." -#: ../../Zotlabs/Module/Settings.php:1126 +#: ../../Zotlabs/Module/Settings.php:1221 msgid "Firefox Share $Projectname provider" msgstr "Servicio de compartición de Firefox: proveedor $Projectname" -#: ../../Zotlabs/Module/Settings.php:1127 +#: ../../Zotlabs/Module/Settings.php:1222 msgid "Start calendar week on monday" msgstr "Comenzar el calendario semanal por el lunes" @@ -5519,7 +5830,7 @@ msgid "" msgstr "Podría tener que importar manualmente el fichero \"install/schema_xxx.sql\" usando un cliente de base de datos." #: ../../Zotlabs/Module/Setup.php:204 ../../Zotlabs/Module/Setup.php:266 -#: ../../Zotlabs/Module/Setup.php:721 +#: ../../Zotlabs/Module/Setup.php:722 msgid "Please see the file \"install/INSTALL.txt\"." msgstr "Por favor, lea el fichero \"install/INSTALL.txt\"." @@ -5719,199 +6030,200 @@ msgid "mb_string PHP module" msgstr "módulo PHP mb_string" #: ../../Zotlabs/Module/Setup.php:496 -msgid "mcrypt PHP module" -msgstr "módulo PHP mcrypt " - -#: ../../Zotlabs/Module/Setup.php:497 msgid "xml PHP module" msgstr "módulo PHP xml" -#: ../../Zotlabs/Module/Setup.php:501 ../../Zotlabs/Module/Setup.php:503 +#: ../../Zotlabs/Module/Setup.php:500 ../../Zotlabs/Module/Setup.php:502 msgid "Apache mod_rewrite module" msgstr "módulo Apache mod_rewrite " -#: ../../Zotlabs/Module/Setup.php:501 +#: ../../Zotlabs/Module/Setup.php:500 msgid "" "Error: Apache webserver mod-rewrite module is required but not installed." msgstr "Error: se necesita el módulo del servidor web Apache mod-rewrite pero no está instalado." -#: ../../Zotlabs/Module/Setup.php:507 ../../Zotlabs/Module/Setup.php:510 +#: ../../Zotlabs/Module/Setup.php:506 ../../Zotlabs/Module/Setup.php:509 msgid "proc_open" msgstr "proc_open" -#: ../../Zotlabs/Module/Setup.php:507 +#: ../../Zotlabs/Module/Setup.php:506 msgid "" "Error: proc_open is required but is either not installed or has been " "disabled in php.ini" msgstr "Error: se necesita proc_open pero o no está instalado o ha sido desactivado en el fichero php.ini" -#: ../../Zotlabs/Module/Setup.php:515 +#: ../../Zotlabs/Module/Setup.php:514 msgid "Error: libCURL PHP module required but not installed." msgstr "Error: se necesita el módulo PHP libCURL pero no está instalado." -#: ../../Zotlabs/Module/Setup.php:519 +#: ../../Zotlabs/Module/Setup.php:518 msgid "" "Error: GD graphics PHP module with JPEG support required but not installed." msgstr "Error: el módulo PHP GD graphics es necesario, pero no está instalado." -#: ../../Zotlabs/Module/Setup.php:523 +#: ../../Zotlabs/Module/Setup.php:522 msgid "Error: openssl PHP module required but not installed." msgstr "Error: el módulo PHP openssl es necesario, pero no está instalado." -#: ../../Zotlabs/Module/Setup.php:527 +#: ../../Zotlabs/Module/Setup.php:526 msgid "" "Error: mysqli or postgres PHP module required but neither are installed." msgstr "Error: el módulo PHP mysqli o postgres es necesario pero ninguno de los dos está instalado." -#: ../../Zotlabs/Module/Setup.php:531 +#: ../../Zotlabs/Module/Setup.php:530 msgid "Error: mb_string PHP module required but not installed." msgstr "Error: el módulo PHP mb_string es necesario, pero no está instalado." -#: ../../Zotlabs/Module/Setup.php:535 -msgid "Error: mcrypt PHP module required but not installed." -msgstr "Error: el módulo PHP mcrypt es necesario, pero no está instalado." - -#: ../../Zotlabs/Module/Setup.php:539 +#: ../../Zotlabs/Module/Setup.php:534 msgid "Error: xml PHP module required for DAV but not installed." msgstr "Error: el módulo PHP xml es necesario para DAV, pero no está instalado." -#: ../../Zotlabs/Module/Setup.php:557 +#: ../../Zotlabs/Module/Setup.php:552 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 "El instalador web no ha podido crear un fichero llamado “.htconfig.php” en la carpeta base de su servidor." -#: ../../Zotlabs/Module/Setup.php:558 +#: ../../Zotlabs/Module/Setup.php:553 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 "Esto está generalmente ligado a un problema de permisos, a causa del cual el servidor web tiene prohibido modificar ficheros en su carpeta - incluso si usted mismo tiene esos permisos." -#: ../../Zotlabs/Module/Setup.php:559 +#: ../../Zotlabs/Module/Setup.php:554 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 "Al término de este procedimiento, podemos crear un fichero de texto para guardar con el nombre .htconfig.php en el directorio raíz de su instalación de Hubzilla." -#: ../../Zotlabs/Module/Setup.php:560 +#: ../../Zotlabs/Module/Setup.php:555 msgid "" "You can alternatively skip this procedure and perform a manual installation." " Please see the file \"install/INSTALL.txt\" for instructions." msgstr "Como alternativa, puede dejar este procedimiento e intentar realizar una instalación manual. Lea, por favor, el fichero\"install/INSTALL.txt\" para las instrucciones." -#: ../../Zotlabs/Module/Setup.php:563 +#: ../../Zotlabs/Module/Setup.php:558 msgid ".htconfig.php is writable" msgstr ".htconfig.php tiene permisos de escritura" -#: ../../Zotlabs/Module/Setup.php:577 +#: ../../Zotlabs/Module/Setup.php:572 msgid "" "Red uses the Smarty3 template engine to render its web views. Smarty3 " "compiles templates to PHP to speed up rendering." msgstr "Hubzilla hace uso del motor de plantillas Smarty3 para diseñar sus plantillas gráficas. Smarty3 es más rápido porque compila las plantillas de páginas directamente en PHP." -#: ../../Zotlabs/Module/Setup.php:578 +#: ../../Zotlabs/Module/Setup.php:573 #, php-format msgid "" "In order to store these compiled templates, the web server needs to have " "write access to the directory %s under the top level web folder." msgstr "Para poder guardar las plantillas compiladas, el servidor web necesita permisos para acceder al directorio %s en la carpeta web principal." -#: ../../Zotlabs/Module/Setup.php:579 ../../Zotlabs/Module/Setup.php:600 +#: ../../Zotlabs/Module/Setup.php:574 ../../Zotlabs/Module/Setup.php:595 msgid "" "Please ensure that the user that your web server runs as (e.g. www-data) has" " write access to this folder." msgstr "Por favor, asegúrese de que el servidor web está siendo ejecutado por un usuario que tenga permisos de escritura sobre esta carpeta (por ejemplo, www-data)." -#: ../../Zotlabs/Module/Setup.php:580 +#: ../../Zotlabs/Module/Setup.php:575 #, 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 "Nota: como medida de seguridad, debe dar al servidor web permisos de escritura solo sobre %s - no sobre el fichero de plantilla (.tpl) que contiene." -#: ../../Zotlabs/Module/Setup.php:583 +#: ../../Zotlabs/Module/Setup.php:578 #, php-format msgid "%s is writable" msgstr "%s tiene permisos de escritura" -#: ../../Zotlabs/Module/Setup.php:599 +#: ../../Zotlabs/Module/Setup.php:594 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" -msgstr "Hubzilla guarda los ficheros descargados en la carpeta \"store\". El servidor web necesita tener permisos de escritura sobre esa carpeta, en el directorio de instalación." +"This software 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 "" -#: ../../Zotlabs/Module/Setup.php:603 +#: ../../Zotlabs/Module/Setup.php:598 msgid "store is writable" msgstr "\"store\" tiene permisos de escritura" -#: ../../Zotlabs/Module/Setup.php:636 +#: ../../Zotlabs/Module/Setup.php:631 msgid "" "SSL certificate cannot be validated. Fix certificate or disable https access" " to this site." msgstr "El certificado SSL no ha podido ser validado. Corrija este problema o desactive el acceso https a este sitio." -#: ../../Zotlabs/Module/Setup.php:637 +#: ../../Zotlabs/Module/Setup.php:632 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 "Si su servidor soporta conexiones cifradas SSL o si permite conexiones al puerto TCP 443 (el puerto usado por el protocolo https), debe utilizar un certificado válido. No debe usar un certificado firmado por usted mismo." -#: ../../Zotlabs/Module/Setup.php:638 +#: ../../Zotlabs/Module/Setup.php:633 msgid "" "This restriction is incorporated because public posts from you may for " "example contain references to images on your own hub." msgstr "Se ha incorporado esta restricción para evitar que sus publicaciones públicas hagan referencia a imágenes en su propio servidor." -#: ../../Zotlabs/Module/Setup.php:639 +#: ../../Zotlabs/Module/Setup.php:634 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." msgstr "Si su certificado no ha sido reconocido, los miembros de otros sitios (con certificados válidos) recibirán mensajes de aviso en sus propios sitios web." -#: ../../Zotlabs/Module/Setup.php:640 +#: ../../Zotlabs/Module/Setup.php:635 msgid "" "This can cause usability issues elsewhere (not just on your own site) so we " "must insist on this requirement." msgstr "Por razones de compatibilidad (sobre el conjunto de la red, no solo sobre su propio sitio), debemos insistir en estos requisitos." -#: ../../Zotlabs/Module/Setup.php:641 +#: ../../Zotlabs/Module/Setup.php:636 msgid "" "Providers are available that issue free certificates which are browser-" "valid." msgstr "Existen varias Autoridades de Certificación que le pueden proporcionar certificados válidos." -#: ../../Zotlabs/Module/Setup.php:643 +#: ../../Zotlabs/Module/Setup.php:638 +msgid "" +"If you are confident that the certificate is valid and signed by a trusted " +"authority, check to see if you have failed to install an intermediate cert. " +"These are not normally required by browsers, but are required for server-to-" +"server communications." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:641 msgid "SSL certificate validation" msgstr "validación del certificado SSL" -#: ../../Zotlabs/Module/Setup.php:649 +#: ../../Zotlabs/Module/Setup.php:647 msgid "" "Url rewrite in .htaccess is not working. Check your server " "configuration.Test: " msgstr "No se pueden reescribir las direcciones web en .htaccess. Compruebe la configuración de su servidor:" -#: ../../Zotlabs/Module/Setup.php:652 +#: ../../Zotlabs/Module/Setup.php:650 msgid "Url rewrite is working" msgstr "La reescritura de las direcciones funciona correctamente" -#: ../../Zotlabs/Module/Setup.php:661 +#: ../../Zotlabs/Module/Setup.php:659 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 "El fichero de configuración de la base de datos .htconfig.php no se ha podido modificar. Por favor, copie el texto generado en un fichero con ese nombre en el directorio raíz de su servidor." -#: ../../Zotlabs/Module/Setup.php:685 +#: ../../Zotlabs/Module/Setup.php:683 msgid "Errors encountered creating database tables." msgstr "Se han encontrado errores al crear las tablas de la base de datos." -#: ../../Zotlabs/Module/Setup.php:719 +#: ../../Zotlabs/Module/Setup.php:720 msgid "

What next

" msgstr "

Siguiente paso

" -#: ../../Zotlabs/Module/Setup.php:720 +#: ../../Zotlabs/Module/Setup.php:721 msgid "" "IMPORTANT: You will need to [manually] setup a scheduled task for the " "poller." @@ -5933,64 +6245,62 @@ msgstr "Eliminar todos los ficheros" msgid "Remove this file" msgstr "Eliminar este fichero" -#: ../../Zotlabs/Module/Siteinfo.php:19 +#: ../../Zotlabs/Module/Thing.php:114 +msgid "Thing updated" +msgstr "Elemento actualizado." + +#: ../../Zotlabs/Module/Thing.php:166 +msgid "Object store: failed" +msgstr "Guardar objeto: ha fallado" + +#: ../../Zotlabs/Module/Thing.php:170 +msgid "Thing added" +msgstr "Elemento añadido" + +#: ../../Zotlabs/Module/Thing.php:196 #, php-format -msgid "Version %s" -msgstr "Versión %s" +msgid "OBJ: %1$s %2$s %3$s" +msgstr "OBJ: %1$s %2$s %3$s" -#: ../../Zotlabs/Module/Siteinfo.php:40 -msgid "Installed plugins/addons/apps:" -msgstr "Extensiones (plugins), complementos o aplicaciones (apps) instaladas:" +#: ../../Zotlabs/Module/Thing.php:259 +msgid "Show Thing" +msgstr "Mostrar elemento" -#: ../../Zotlabs/Module/Siteinfo.php:53 -msgid "No installed plugins/addons/apps" -msgstr "No hay instalada ninguna extensión (plugin), complemento o aplicación (app)" +#: ../../Zotlabs/Module/Thing.php:266 +msgid "item not found." +msgstr "elemento no encontrado." -#: ../../Zotlabs/Module/Siteinfo.php:66 -msgid "" -"This is a hub of $Projectname - a global cooperative network of " -"decentralized privacy enhanced websites." -msgstr "Este es un sitio integrado en $Projectname - una red cooperativa mundial de sitios web descentralizados de privacidad mejorada." +#: ../../Zotlabs/Module/Thing.php:299 +msgid "Edit Thing" +msgstr "Editar elemento" -#: ../../Zotlabs/Module/Siteinfo.php:68 -msgid "Tag: " -msgstr "Etiqueta:" +#: ../../Zotlabs/Module/Thing.php:301 ../../Zotlabs/Module/Thing.php:351 +msgid "Select a profile" +msgstr "Seleccionar un perfil" -#: ../../Zotlabs/Module/Siteinfo.php:70 -msgid "Last background fetch: " -msgstr "Última actualización en segundo plano:" +#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:354 +msgid "Post an activity" +msgstr "Publicar una actividad" -#: ../../Zotlabs/Module/Siteinfo.php:72 -msgid "Current load average: " -msgstr "Carga media actual:" +#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:354 +msgid "Only sends to viewers of the applicable profile" +msgstr "Sólo enviar a espectadores del perfil pertinente." -#: ../../Zotlabs/Module/Siteinfo.php:75 -msgid "Running at web location" -msgstr "Corriendo en el sitio web" +#: ../../Zotlabs/Module/Thing.php:307 ../../Zotlabs/Module/Thing.php:356 +msgid "Name of thing e.g. something" +msgstr "Nombre del elemento, p. ej.:. \"algo\"" -#: ../../Zotlabs/Module/Siteinfo.php:76 -msgid "" -"Please visit hubzilla.org to learn more " -"about $Projectname." -msgstr "Por favor, visite hubzilla.org para más información sobre $Projectname." +#: ../../Zotlabs/Module/Thing.php:309 ../../Zotlabs/Module/Thing.php:357 +msgid "URL of thing (optional)" +msgstr "Dirección del elemento (opcional)" -#: ../../Zotlabs/Module/Siteinfo.php:77 -msgid "Bug reports and issues: please visit" -msgstr "Informes de errores e incidencias: por favor visite" +#: ../../Zotlabs/Module/Thing.php:311 ../../Zotlabs/Module/Thing.php:358 +msgid "URL for photo of thing (optional)" +msgstr "Dirección para la foto o elemento (opcional)" -#: ../../Zotlabs/Module/Siteinfo.php:79 -msgid "$projectname issues" -msgstr "Problemas en $projectname" - -#: ../../Zotlabs/Module/Siteinfo.php:80 -msgid "" -"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot " -"com" -msgstr "Sugerencias, elogios, etc - por favor, un correo electrónico a \"redmatrix\" en librelist - punto com" - -#: ../../Zotlabs/Module/Siteinfo.php:82 -msgid "Site Administrators" -msgstr "Administradores del sitio" +#: ../../Zotlabs/Module/Thing.php:349 +msgid "Add Thing to your Profile" +msgstr "Añadir alguna cosa a su perfil" #: ../../Zotlabs/Module/Sources.php:37 msgid "Failed to create source. No channel selected." @@ -6008,8 +6318,8 @@ msgstr "Fuente actualizada." msgid "*" msgstr "*" -#: ../../Zotlabs/Module/Sources.php:96 ../../include/widgets.php:630 -#: ../../include/features.php:71 +#: ../../Zotlabs/Module/Sources.php:96 ../../include/features.php:72 +#: ../../include/widgets.php:639 msgid "Channel Sources" msgstr "Orígenes de los contenidos del canal" @@ -6085,12 +6395,12 @@ msgstr "No hay sugerencias disponibles. Si es un sitio nuevo, espere 24 horas y msgid "Ignore/Hide" msgstr "Ignorar/Ocultar" -#: ../../Zotlabs/Module/Tagger.php:55 ../../include/bbcode.php:256 +#: ../../Zotlabs/Module/Tagger.php:55 ../../include/bbcode.php:263 msgid "post" msgstr "la entrada" -#: ../../Zotlabs/Module/Tagger.php:57 ../../include/text.php:1948 -#: ../../include/conversation.php:150 +#: ../../Zotlabs/Module/Tagger.php:57 ../../include/conversation.php:150 +#: ../../include/text.php:1929 msgid "comment" msgstr "el comentario" @@ -6111,131 +6421,110 @@ msgstr "Eliminar etiqueta del elemento." msgid "Select a tag to remove: " msgstr "Seleccionar una etiqueta para eliminar:" -#: ../../Zotlabs/Module/Thing.php:114 -msgid "Thing updated" -msgstr "Elemento actualizado." +#: ../../Zotlabs/Module/Webpages.php:191 ../../Zotlabs/Lib/Apps.php:218 +#: ../../include/nav.php:106 ../../include/conversation.php:1700 +msgid "Webpages" +msgstr "Páginas web" -#: ../../Zotlabs/Module/Thing.php:166 -msgid "Object store: failed" -msgstr "Guardar objeto: ha fallado" +#: ../../Zotlabs/Module/Webpages.php:202 ../../include/page_widgets.php:44 +msgid "Actions" +msgstr "Acciones" -#: ../../Zotlabs/Module/Thing.php:170 -msgid "Thing added" -msgstr "Elemento añadido" +#: ../../Zotlabs/Module/Webpages.php:203 ../../include/page_widgets.php:45 +msgid "Page Link" +msgstr "Vínculo de la página" -#: ../../Zotlabs/Module/Thing.php:196 -#, php-format -msgid "OBJ: %1$s %2$s %3$s" -msgstr "OBJ: %1$s %2$s %3$s" +#: ../../Zotlabs/Module/Webpages.php:204 +msgid "Page Title" +msgstr "Título de página" -#: ../../Zotlabs/Module/Thing.php:259 -msgid "Show Thing" -msgstr "Mostrar elemento" +#: ../../Zotlabs/Module/Wiki.php:34 +msgid "Not found" +msgstr "" -#: ../../Zotlabs/Module/Thing.php:266 -msgid "item not found." -msgstr "elemento no encontrado." +#: ../../Zotlabs/Module/Wiki.php:92 ../../Zotlabs/Lib/Apps.php:219 +#: ../../include/nav.php:108 ../../include/conversation.php:1710 +#: ../../include/conversation.php:1713 ../../include/features.php:55 +msgid "Wiki" +msgstr "Wiki" -#: ../../Zotlabs/Module/Thing.php:299 -msgid "Edit Thing" -msgstr "Editar elemento" +#: ../../Zotlabs/Module/Wiki.php:93 +msgid "Sandbox" +msgstr "Entorno de edición" -#: ../../Zotlabs/Module/Thing.php:301 ../../Zotlabs/Module/Thing.php:351 -msgid "Select a profile" -msgstr "Seleccionar un perfil" - -#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:354 -msgid "Post an activity" -msgstr "Publicar una actividad" - -#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:354 -msgid "Only sends to viewers of the applicable profile" -msgstr "Sólo enviar a espectadores del perfil pertinente." - -#: ../../Zotlabs/Module/Thing.php:307 ../../Zotlabs/Module/Thing.php:356 -msgid "Name of thing e.g. something" -msgstr "Nombre del elemento, p. ej.:. \"algo\"" - -#: ../../Zotlabs/Module/Thing.php:309 ../../Zotlabs/Module/Thing.php:357 -msgid "URL of thing (optional)" -msgstr "Dirección del elemento (opcional)" - -#: ../../Zotlabs/Module/Thing.php:311 ../../Zotlabs/Module/Thing.php:358 -msgid "URL for photo of thing (optional)" -msgstr "Dirección para la foto o elemento (opcional)" - -#: ../../Zotlabs/Module/Thing.php:349 -msgid "Add Thing to your Profile" -msgstr "Añadir alguna cosa a su perfil" - -#: ../../Zotlabs/Module/Uexport.php:55 ../../Zotlabs/Module/Uexport.php:56 -msgid "Export Channel" -msgstr "Exportar el canal" - -#: ../../Zotlabs/Module/Uexport.php:57 +#: ../../Zotlabs/Module/Wiki.php:95 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 "Exportar la información básica del canal a un fichero. Este equivale a una copia de seguridad de sus conexiones, el perfil y datos fundamentales, que puede usarse para importar sus datos a un nuevo servidor, pero no incluye su contenido." +"\"# Wiki Sandbox\\n\\nContent you **edit** and **preview** here *will not be" +" saved*.\"" +msgstr "" -#: ../../Zotlabs/Module/Uexport.php:58 -msgid "Export Content" -msgstr "Exportar contenidos" +#: ../../Zotlabs/Module/Wiki.php:164 +msgid "Revision Comparison" +msgstr "Comparación de revisiones" -#: ../../Zotlabs/Module/Uexport.php:59 -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 "Exportar la información sobre su canal y el contenido reciente a un fichero de respaldo JSON, que puede ser restaurado o importado a otro servidor. Este fichero incluye todas sus conexiones, permisos, datos del perfil y publicaciones de varios meses. Puede llegar a ser MUY grande. Por favor, sea paciente, la descarga puede tardar varios minutos en comenzar." +#: ../../Zotlabs/Module/Wiki.php:165 +msgid "Revert" +msgstr "Revertir" -#: ../../Zotlabs/Module/Uexport.php:60 -msgid "Export your posts from a given year." -msgstr "Exporta sus publicaciones de un año dado." +#: ../../Zotlabs/Module/Wiki.php:192 +msgid "Enter the name of your new wiki:" +msgstr "Nombre de su nuevo wiki:" -#: ../../Zotlabs/Module/Uexport.php:62 -msgid "" -"You may also export your posts and conversations for a particular year or " -"month. Adjust the date in your browser location bar to select other dates. " -"If the export fails (possibly due to memory exhaustion on your server hub), " -"please try again selecting a more limited date range." -msgstr "También puede exportar sus mensajes y conversaciones durante un año o mes en particular. Ajuste la fecha en la barra de direcciones del navegador para seleccionar otras fechas. Si la exportación falla (posiblemente debido al agotamiento de la memoria del servidor hub), por favor, intente de nuevo la selección de un rango de fechas más pequeño." +#: ../../Zotlabs/Module/Wiki.php:193 +msgid "Enter the name of the new page:" +msgstr "Nombre de la nueva página:" -#: ../../Zotlabs/Module/Uexport.php:63 -#, php-format -msgid "" -"To select all posts for a given year, such as this year, visit %2$s" -msgstr "Para seleccionar todos los mensajes de un año determinado, como este año, visite %2$s" +#: ../../Zotlabs/Module/Wiki.php:194 +msgid "Enter the new name:" +msgstr "Nuevo nombre:" -#: ../../Zotlabs/Module/Uexport.php:64 -#, php-format -msgid "" -"To select all posts for a given month, such as January of this year, visit " -"%2$s" -msgstr "Para seleccionar todos los mensajes de un mes determinado, como el de enero de este año, visite %2$s" +#: ../../Zotlabs/Module/Wiki.php:200 ../../include/conversation.php:1150 +msgid "Embed image from photo albums" +msgstr "Incluir una imagen de los álbumes de fotos" -#: ../../Zotlabs/Module/Uexport.php:65 -#, php-format -msgid "" -"These content files may be imported or restored by visiting %2$s on any site containing your channel. For best results" -" please import or restore these in date order (oldest first)." -msgstr "Estos ficheros pueden ser importados o restaurados visitando %2$s o cualquier sitio que contenga su canal. Para obtener los mejores resultados, por favor, importar o restaurar estos ficheros en orden de fecha (la más antigua primero)." +#: ../../Zotlabs/Module/Wiki.php:201 ../../include/conversation.php:1234 +msgid "Embed an image from your albums" +msgstr "Incluir una imagen de sus álbumes" -#: ../../Zotlabs/Module/Viewconnections.php:62 +#: ../../Zotlabs/Module/Wiki.php:203 ../../include/conversation.php:1236 +#: ../../include/conversation.php:1273 +msgid "OK" +msgstr "OK" + +#: ../../Zotlabs/Module/Wiki.php:204 ../../include/conversation.php:1186 +msgid "Choose images to embed" +msgstr "Elegir imágenes para incluir" + +#: ../../Zotlabs/Module/Wiki.php:205 ../../include/conversation.php:1187 +msgid "Choose an album" +msgstr "Elegir un álbum" + +#: ../../Zotlabs/Module/Wiki.php:206 ../../include/conversation.php:1188 +msgid "Choose a different album..." +msgstr "Elegir un álbum diferente..." + +#: ../../Zotlabs/Module/Wiki.php:207 ../../include/conversation.php:1189 +msgid "Error getting album list" +msgstr "Error al obtener la lista de álbumes" + +#: ../../Zotlabs/Module/Wiki.php:208 ../../include/conversation.php:1190 +msgid "Error getting photo link" +msgstr "Error al obtener el enlace de la foto" + +#: ../../Zotlabs/Module/Wiki.php:209 ../../include/conversation.php:1191 +msgid "Error getting album" +msgstr "Error al obtener el álbum" + +#: ../../Zotlabs/Module/Viewconnections.php:65 msgid "No connections." msgstr "Sin conexiones." -#: ../../Zotlabs/Module/Viewconnections.php:75 +#: ../../Zotlabs/Module/Viewconnections.php:78 #, php-format msgid "Visit %s's profile [%s]" msgstr "Visitar el perfil de %s [%s]" -#: ../../Zotlabs/Module/Viewconnections.php:104 +#: ../../Zotlabs/Module/Viewconnections.php:107 msgid "View Connections" msgstr "Ver conexiones" @@ -6243,22 +6532,23 @@ msgstr "Ver conexiones" msgid "Source of Item" msgstr "Origen del elemento" -#: ../../Zotlabs/Module/Webpages.php:184 ../../Zotlabs/Lib/Apps.php:217 -#: ../../include/nav.php:106 ../../include/conversation.php:1685 -msgid "Webpages" -msgstr "Páginas web" +#: ../../Zotlabs/Module/Api.php:61 ../../Zotlabs/Module/Api.php:85 +msgid "Authorize application connection" +msgstr "Autorizar una conexión de aplicación" -#: ../../Zotlabs/Module/Webpages.php:195 ../../include/page_widgets.php:41 -msgid "Actions" -msgstr "Acciones" +#: ../../Zotlabs/Module/Api.php:62 +msgid "Return to your app and insert this Securty Code:" +msgstr "Volver a su aplicación e introducir este código de seguridad:" -#: ../../Zotlabs/Module/Webpages.php:196 ../../include/page_widgets.php:42 -msgid "Page Link" -msgstr "Vínculo de la página" +#: ../../Zotlabs/Module/Api.php:72 +msgid "Please login to continue." +msgstr "Por favor inicie sesión para continuar." -#: ../../Zotlabs/Module/Webpages.php:197 -msgid "Page Title" -msgstr "Título de página" +#: ../../Zotlabs/Module/Api.php:87 +msgid "" +"Do you want to authorize this application to access your posts and contacts," +" and/or create new posts for you?" +msgstr "¿Desea autorizar a esta aplicación a acceder a sus publicaciones y contactos, y/o crear nuevas publicaciones por usted?" #: ../../Zotlabs/Module/Xchan.php:10 msgid "Xchan Lookup" @@ -6268,92 +6558,6 @@ msgstr "Búsqueda de canales" msgid "Lookup xchan beginning with (or webbie): " msgstr "Buscar un canal (o un \"webbie\") que comience por:" -#: ../../Zotlabs/Lib/Apps.php:204 -msgid "Site Admin" -msgstr "Administrador del sitio" - -#: ../../Zotlabs/Lib/Apps.php:205 -msgid "Bug Report" -msgstr "Informe de errores" - -#: ../../Zotlabs/Lib/Apps.php:206 -msgid "View Bookmarks" -msgstr "Ver los marcadores" - -#: ../../Zotlabs/Lib/Apps.php:207 -msgid "My Chatrooms" -msgstr "Mis salas de chat" - -#: ../../Zotlabs/Lib/Apps.php:209 -msgid "Firefox Share" -msgstr "Servicio de compartición de Firefox" - -#: ../../Zotlabs/Lib/Apps.php:210 -msgid "Remote Diagnostics" -msgstr "Diagnóstico remoto" - -#: ../../Zotlabs/Lib/Apps.php:211 ../../include/features.php:89 -msgid "Suggest Channels" -msgstr "Sugerir canales" - -#: ../../Zotlabs/Lib/Apps.php:212 ../../include/nav.php:110 -#: ../../boot.php:1703 -msgid "Login" -msgstr "Iniciar sesión" - -#: ../../Zotlabs/Lib/Apps.php:214 ../../include/nav.php:179 -msgid "Grid" -msgstr "Red" - -#: ../../Zotlabs/Lib/Apps.php:218 ../../include/nav.php:182 -msgid "Channel Home" -msgstr "Mi canal" - -#: ../../Zotlabs/Lib/Apps.php:221 ../../include/nav.php:201 -#: ../../include/conversation.php:1649 ../../include/conversation.php:1652 -msgid "Events" -msgstr "Eventos" - -#: ../../Zotlabs/Lib/Apps.php:222 ../../include/nav.php:167 -msgid "Directory" -msgstr "Directorio" - -#: ../../Zotlabs/Lib/Apps.php:224 ../../include/nav.php:193 -msgid "Mail" -msgstr "Correo" - -#: ../../Zotlabs/Lib/Apps.php:227 ../../include/nav.php:96 -msgid "Chat" -msgstr "Chat" - -#: ../../Zotlabs/Lib/Apps.php:229 -msgid "Probe" -msgstr "Probar" - -#: ../../Zotlabs/Lib/Apps.php:230 -msgid "Suggest" -msgstr "Sugerir" - -#: ../../Zotlabs/Lib/Apps.php:231 -msgid "Random Channel" -msgstr "Canal aleatorio" - -#: ../../Zotlabs/Lib/Apps.php:232 -msgid "Invite" -msgstr "Invitar" - -#: ../../Zotlabs/Lib/Apps.php:233 ../../include/widgets.php:1386 -msgid "Features" -msgstr "Funcionalidades" - -#: ../../Zotlabs/Lib/Apps.php:235 -msgid "Post" -msgstr "Publicación" - -#: ../../Zotlabs/Lib/Apps.php:335 -msgid "Purchase" -msgstr "Comprar" - #: ../../Zotlabs/Lib/Chatroom.php:27 msgid "Missing room name" msgstr "Sala de chat sin nombre" @@ -6374,19 +6578,19 @@ msgstr "Sala no encontrada." msgid "Room is full" msgstr "La sala está llena." -#: ../../Zotlabs/Lib/Enotify.php:60 ../../include/network.php:1823 +#: ../../Zotlabs/Lib/Enotify.php:60 ../../include/network.php:1882 msgid "$Projectname Notification" msgstr "Notificación de $Projectname" -#: ../../Zotlabs/Lib/Enotify.php:61 ../../include/network.php:1824 +#: ../../Zotlabs/Lib/Enotify.php:61 ../../include/network.php:1883 msgid "$projectname" msgstr "$projectname" -#: ../../Zotlabs/Lib/Enotify.php:63 ../../include/network.php:1826 +#: ../../Zotlabs/Lib/Enotify.php:63 ../../include/network.php:1885 msgid "Thank You," msgstr "Gracias," -#: ../../Zotlabs/Lib/Enotify.php:65 ../../include/network.php:1828 +#: ../../Zotlabs/Lib/Enotify.php:65 ../../include/network.php:1887 #, php-format msgid "%s Administrator" msgstr "%s Administrador" @@ -6579,11 +6783,97 @@ msgstr "ha creado una nueva entrada" msgid "commented on %s's post" msgstr "ha comentado la entrada de %s" -#: ../../Zotlabs/Lib/ThreadItem.php:95 ../../include/conversation.php:664 +#: ../../Zotlabs/Lib/Apps.php:205 +msgid "Site Admin" +msgstr "Administrador del sitio" + +#: ../../Zotlabs/Lib/Apps.php:206 +msgid "Bug Report" +msgstr "Informe de errores" + +#: ../../Zotlabs/Lib/Apps.php:207 +msgid "View Bookmarks" +msgstr "Ver los marcadores" + +#: ../../Zotlabs/Lib/Apps.php:208 +msgid "My Chatrooms" +msgstr "Mis salas de chat" + +#: ../../Zotlabs/Lib/Apps.php:210 +msgid "Firefox Share" +msgstr "Servicio de compartición de Firefox" + +#: ../../Zotlabs/Lib/Apps.php:211 +msgid "Remote Diagnostics" +msgstr "Diagnóstico remoto" + +#: ../../Zotlabs/Lib/Apps.php:212 ../../include/features.php:90 +msgid "Suggest Channels" +msgstr "Sugerir canales" + +#: ../../Zotlabs/Lib/Apps.php:213 ../../include/nav.php:112 +#: ../../boot.php:1704 +msgid "Login" +msgstr "Iniciar sesión" + +#: ../../Zotlabs/Lib/Apps.php:215 ../../include/nav.php:181 +msgid "Grid" +msgstr "Red" + +#: ../../Zotlabs/Lib/Apps.php:220 ../../include/nav.php:184 +msgid "Channel Home" +msgstr "Mi canal" + +#: ../../Zotlabs/Lib/Apps.php:223 ../../include/nav.php:203 +#: ../../include/conversation.php:1664 ../../include/conversation.php:1667 +msgid "Events" +msgstr "Eventos" + +#: ../../Zotlabs/Lib/Apps.php:224 ../../include/nav.php:169 +msgid "Directory" +msgstr "Directorio" + +#: ../../Zotlabs/Lib/Apps.php:226 ../../include/nav.php:195 +msgid "Mail" +msgstr "Correo" + +#: ../../Zotlabs/Lib/Apps.php:229 ../../include/nav.php:96 +msgid "Chat" +msgstr "Chat" + +#: ../../Zotlabs/Lib/Apps.php:231 +msgid "Probe" +msgstr "Probar" + +#: ../../Zotlabs/Lib/Apps.php:232 +msgid "Suggest" +msgstr "Sugerir" + +#: ../../Zotlabs/Lib/Apps.php:233 +msgid "Random Channel" +msgstr "Canal aleatorio" + +#: ../../Zotlabs/Lib/Apps.php:234 +msgid "Invite" +msgstr "Invitar" + +#: ../../Zotlabs/Lib/Apps.php:235 ../../include/widgets.php:1480 +msgid "Features" +msgstr "Funcionalidades" + +#: ../../Zotlabs/Lib/Apps.php:237 +msgid "Post" +msgstr "Publicación" + +#: ../../Zotlabs/Lib/Apps.php:339 +msgid "Purchase" +msgstr "Comprar" + +#: ../../Zotlabs/Lib/ThreadItem.php:95 ../../include/conversation.php:667 msgid "Private Message" msgstr "Mensaje Privado" -#: ../../Zotlabs/Lib/ThreadItem.php:132 ../../include/conversation.php:656 +#: ../../Zotlabs/Lib/ThreadItem.php:132 ../../include/conversation.php:659 msgid "Select" msgstr "Seleccionar" @@ -6631,11 +6921,11 @@ msgstr "Activar o desactivar el estado de entrada preferida" msgid "starred" msgstr "preferidas" -#: ../../Zotlabs/Lib/ThreadItem.php:234 ../../include/conversation.php:671 +#: ../../Zotlabs/Lib/ThreadItem.php:234 ../../include/conversation.php:674 msgid "Message signature validated" msgstr "Firma de mensaje validada" -#: ../../Zotlabs/Lib/ThreadItem.php:235 ../../include/conversation.php:672 +#: ../../Zotlabs/Lib/ThreadItem.php:235 ../../include/conversation.php:675 msgid "Message signature incorrect" msgstr "Firma de mensaje incorrecta" @@ -6691,17 +6981,17 @@ msgstr "De página del perfil a página del perfil (de \"muro\" a \"muro\")" msgid "via Wall-To-Wall:" msgstr "Mediante el procedimiento página del perfil a página del perfil (de \"muro\" a \"muro\")" -#: ../../Zotlabs/Lib/ThreadItem.php:341 ../../include/conversation.php:719 +#: ../../Zotlabs/Lib/ThreadItem.php:341 ../../include/conversation.php:722 #, php-format msgid "from %s" msgstr "desde %s" -#: ../../Zotlabs/Lib/ThreadItem.php:344 ../../include/conversation.php:722 +#: ../../Zotlabs/Lib/ThreadItem.php:344 ../../include/conversation.php:725 #, php-format msgid "last edited: %s" msgstr "último cambio: %s" -#: ../../Zotlabs/Lib/ThreadItem.php:345 ../../include/conversation.php:723 +#: ../../Zotlabs/Lib/ThreadItem.php:345 ../../include/conversation.php:726 #, php-format msgid "Expires: %s" msgstr "Caduca: %s" @@ -6719,26 +7009,27 @@ msgid "Mark all seen" msgstr "Marcar todo como visto" #: ../../Zotlabs/Lib/ThreadItem.php:421 ../../include/js_strings.php:7 -msgid "[+] show all" -msgstr "[+] mostrar todo:" +#, php-format +msgid "%s show all" +msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:711 ../../include/conversation.php:1215 +#: ../../Zotlabs/Lib/ThreadItem.php:711 ../../include/conversation.php:1226 msgid "Bold" msgstr "Negrita" -#: ../../Zotlabs/Lib/ThreadItem.php:712 ../../include/conversation.php:1216 +#: ../../Zotlabs/Lib/ThreadItem.php:712 ../../include/conversation.php:1227 msgid "Italic" msgstr "Itálico " -#: ../../Zotlabs/Lib/ThreadItem.php:713 ../../include/conversation.php:1217 +#: ../../Zotlabs/Lib/ThreadItem.php:713 ../../include/conversation.php:1228 msgid "Underline" msgstr "Subrayar" -#: ../../Zotlabs/Lib/ThreadItem.php:714 ../../include/conversation.php:1218 +#: ../../Zotlabs/Lib/ThreadItem.php:714 ../../include/conversation.php:1229 msgid "Quote" msgstr "Citar" -#: ../../Zotlabs/Lib/ThreadItem.php:715 ../../include/conversation.php:1219 +#: ../../Zotlabs/Lib/ThreadItem.php:715 ../../include/conversation.php:1230 msgid "Code" msgstr "Código" @@ -6754,11 +7045,74 @@ msgstr "Insertar enlace" msgid "Video" msgstr "Vídeo" +#: ../../Zotlabs/Lib/PermissionDescription.php:31 +#: ../../include/acl_selectors.php:230 +msgid "Visible to your default audience" +msgstr "Visible para su público predeterminado." + +#: ../../Zotlabs/Lib/PermissionDescription.php:106 +#: ../../include/acl_selectors.php:266 +msgid "Only me" +msgstr "Sólo yo" + +#: ../../Zotlabs/Lib/PermissionDescription.php:107 +msgid "Public" +msgstr "Público" + +#: ../../Zotlabs/Lib/PermissionDescription.php:108 +msgid "Anybody in the $Projectname network" +msgstr "Cualquiera en la red $Projectname" + +#: ../../Zotlabs/Lib/PermissionDescription.php:109 +#, php-format +msgid "Any account on %s" +msgstr "Cualquier cuenta en %s" + +#: ../../Zotlabs/Lib/PermissionDescription.php:110 +msgid "Any of my connections" +msgstr "Cualquiera de mis conexiones" + +#: ../../Zotlabs/Lib/PermissionDescription.php:111 +msgid "Only connections I specifically allow" +msgstr "Sólo las conexiones que yo permita de forma explícita" + +#: ../../Zotlabs/Lib/PermissionDescription.php:112 +msgid "Anybody authenticated (could include visitors from other networks)" +msgstr "Cualquiera que esté autenticado (podría incluir a los visitantes de otras redes)" + +#: ../../Zotlabs/Lib/PermissionDescription.php:113 +msgid "Any connections including those who haven't yet been approved" +msgstr "Cualquier conexión incluyendo aquellas que aún no han sido aprobadas" + +#: ../../Zotlabs/Lib/PermissionDescription.php:152 +msgid "" +"This is your default setting for the audience of your normal stream, and " +"posts." +msgstr "Esta es la configuración predeterminada para su flujo (stream) habitual de publicaciones." + +#: ../../Zotlabs/Lib/PermissionDescription.php:153 +msgid "" +"This is your default setting for who can view your default channel profile" +msgstr "Esta es su configuración por defecto para establecer quién puede ver su perfil del canal predeterminado" + +#: ../../Zotlabs/Lib/PermissionDescription.php:154 +msgid "This is your default setting for who can view your connections" +msgstr "Este es su ajuste predeterminado para establecer quién puede ver sus conexiones" + +#: ../../Zotlabs/Lib/PermissionDescription.php:155 +msgid "" +"This is your default setting for who can view your file storage and photos" +msgstr "Este es su ajuste predeterminado para establecer quién puede ver su repositorio de ficheros y sus fotos" + +#: ../../Zotlabs/Lib/PermissionDescription.php:156 +msgid "This is your default setting for the audience of your webpages" +msgstr "Este es el ajuste predeterminado para establecer la audiencia de sus páginas web" + #: ../../include/Import/import_diaspora.php:16 msgid "No username found in import file." msgstr "No se ha encontrado el nombre de usuario en el fichero importado." -#: ../../include/Import/import_diaspora.php:41 ../../include/import.php:50 +#: ../../include/Import/import_diaspora.php:41 ../../include/import.php:51 msgid "Unable to create a unique channel address. Import failed." msgstr "No se ha podido crear una dirección de canal única. Ha fallado la importación." @@ -6767,6 +7121,291 @@ msgstr "No se ha podido crear una dirección de canal única. Ha fallado la impo msgid "Cannot locate DNS info for database server '%s'" msgstr "No se ha podido localizar información de DNS para el servidor de base de datos “%s”" +#: ../../include/photos.php:114 +#, php-format +msgid "Image exceeds website size limit of %lu bytes" +msgstr "La imagen excede el límite de %lu bytes del sitio" + +#: ../../include/photos.php:121 +msgid "Image file is empty." +msgstr "El fichero de imagen está vacío. " + +#: ../../include/photos.php:259 +msgid "Photo storage failed." +msgstr "La foto no ha podido ser guardada." + +#: ../../include/photos.php:299 +msgid "a new photo" +msgstr "una nueva foto" + +#: ../../include/photos.php:303 +#, php-format +msgctxt "photo_upload" +msgid "%1$s posted %2$s to %3$s" +msgstr "%1$s ha publicado %2$s en %3$s" + +#: ../../include/photos.php:506 ../../include/conversation.php:1650 +msgid "Photo Albums" +msgstr "Álbumes de fotos" + +#: ../../include/photos.php:510 +msgid "Upload New Photos" +msgstr "Subir nuevas fotos" + +#: ../../include/nav.php:82 ../../include/nav.php:115 ../../boot.php:1703 +msgid "Logout" +msgstr "Finalizar sesión" + +#: ../../include/nav.php:82 ../../include/nav.php:115 +msgid "End this session" +msgstr "Finalizar esta sesión" + +#: ../../include/nav.php:85 ../../include/nav.php:146 +msgid "Home" +msgstr "Inicio" + +#: ../../include/nav.php:85 +msgid "Your posts and conversations" +msgstr "Sus publicaciones y conversaciones" + +#: ../../include/nav.php:86 +msgid "Your profile page" +msgstr "Su página del perfil" + +#: ../../include/nav.php:88 +msgid "Manage/Edit profiles" +msgstr "Administrar/editar perfiles" + +#: ../../include/nav.php:90 ../../include/channel.php:980 +msgid "Edit Profile" +msgstr "Editar el perfil" + +#: ../../include/nav.php:90 +msgid "Edit your profile" +msgstr "Editar su perfil" + +#: ../../include/nav.php:92 +msgid "Your photos" +msgstr "Sus fotos" + +#: ../../include/nav.php:93 +msgid "Your files" +msgstr "Sus ficheros" + +#: ../../include/nav.php:96 +msgid "Your chatrooms" +msgstr "Sus salas de chat" + +#: ../../include/nav.php:102 ../../include/conversation.php:1690 +msgid "Bookmarks" +msgstr "Marcadores" + +#: ../../include/nav.php:102 +msgid "Your bookmarks" +msgstr "Sus marcadores" + +#: ../../include/nav.php:106 +msgid "Your webpages" +msgstr "Sus páginas web" + +#: ../../include/nav.php:108 +msgid "Your wiki" +msgstr "" + +#: ../../include/nav.php:112 +msgid "Sign in" +msgstr "Acceder" + +#: ../../include/nav.php:129 +#, php-format +msgid "%s - click to logout" +msgstr "%s - pulsar para finalizar sesión" + +#: ../../include/nav.php:132 +msgid "Remote authentication" +msgstr "Acceder desde su servidor" + +#: ../../include/nav.php:132 +msgid "Click to authenticate to your home hub" +msgstr "Pulsar para identificarse en su servidor de inicio" + +#: ../../include/nav.php:146 +msgid "Home Page" +msgstr "Página de inicio" + +#: ../../include/nav.php:149 +msgid "Create an account" +msgstr "Crear una cuenta" + +#: ../../include/nav.php:161 +msgid "Help and documentation" +msgstr "Ayuda y documentación" + +#: ../../include/nav.php:165 +msgid "Applications, utilities, links, games" +msgstr "Aplicaciones, utilidades, enlaces, juegos" + +#: ../../include/nav.php:167 +msgid "Search site @name, #tag, ?docs, content" +msgstr "Buscar en el sitio por @nombre, #etiqueta, ?ayuda o contenido" + +#: ../../include/nav.php:169 +msgid "Channel Directory" +msgstr "Directorio de canales" + +#: ../../include/nav.php:181 +msgid "Your grid" +msgstr "Mi red" + +#: ../../include/nav.php:182 +msgid "Mark all grid notifications seen" +msgstr "Marcar todas las notificaciones de la red como vistas" + +#: ../../include/nav.php:184 +msgid "Channel home" +msgstr "Mi canal" + +#: ../../include/nav.php:185 +msgid "Mark all channel notifications seen" +msgstr "Marcar todas las notificaciones del canal como leídas" + +#: ../../include/nav.php:191 +msgid "Notices" +msgstr "Avisos" + +#: ../../include/nav.php:191 +msgid "Notifications" +msgstr "Notificaciones" + +#: ../../include/nav.php:192 +msgid "See all notifications" +msgstr "Ver todas las notificaciones" + +#: ../../include/nav.php:195 +msgid "Private mail" +msgstr "Correo privado" + +#: ../../include/nav.php:196 +msgid "See all private messages" +msgstr "Ver todas los mensajes privados" + +#: ../../include/nav.php:197 +msgid "Mark all private messages seen" +msgstr "Marcar todos los mensajes privados como leídos" + +#: ../../include/nav.php:198 ../../include/widgets.php:667 +msgid "Inbox" +msgstr "Bandeja de entrada" + +#: ../../include/nav.php:199 ../../include/widgets.php:672 +msgid "Outbox" +msgstr "Bandeja de salida" + +#: ../../include/nav.php:200 ../../include/widgets.php:677 +msgid "New Message" +msgstr "Nuevo mensaje" + +#: ../../include/nav.php:203 +msgid "Event Calendar" +msgstr "Calendario de eventos" + +#: ../../include/nav.php:204 +msgid "See all events" +msgstr "Ver todos los eventos" + +#: ../../include/nav.php:205 +msgid "Mark all events seen" +msgstr "Marcar todos los eventos como leidos" + +#: ../../include/nav.php:208 +msgid "Manage Your Channels" +msgstr "Gestionar sus canales" + +#: ../../include/nav.php:210 +msgid "Account/Channel Settings" +msgstr "Ajustes de cuenta/canales" + +#: ../../include/nav.php:218 ../../include/widgets.php:1510 +msgid "Admin" +msgstr "Administrador" + +#: ../../include/nav.php:218 +msgid "Site Setup and Configuration" +msgstr "Ajustes y configuración del sitio" + +#: ../../include/nav.php:249 ../../include/conversation.php:854 +msgid "Loading..." +msgstr "Cargando..." + +#: ../../include/nav.php:254 +msgid "@name, #tag, ?doc, content" +msgstr "@nombre, #etiqueta, ?ayuda, contenido" + +#: ../../include/nav.php:255 +msgid "Please wait..." +msgstr "Espere por favor…" + +#: ../../include/network.php:704 +msgid "view full size" +msgstr "Ver en el tamaño original" + +#: ../../include/network.php:1930 ../../include/account.php:317 +#: ../../include/account.php:344 ../../include/account.php:404 +msgid "Administrator" +msgstr "Administrador" + +#: ../../include/network.php:1944 +msgid "No Subject" +msgstr "Sin asunto" + +#: ../../include/network.php:2198 ../../include/network.php:2199 +msgid "Friendica" +msgstr "Friendica" + +#: ../../include/network.php:2200 +msgid "OStatus" +msgstr "OStatus" + +#: ../../include/network.php:2201 +msgid "GNU-Social" +msgstr "GNU Social" + +#: ../../include/network.php:2202 +msgid "RSS/Atom" +msgstr "RSS/Atom" + +#: ../../include/network.php:2204 +msgid "Diaspora" +msgstr "Diaspora" + +#: ../../include/network.php:2205 +msgid "Facebook" +msgstr "Facebook" + +#: ../../include/network.php:2206 +msgid "Zot" +msgstr "Zot" + +#: ../../include/network.php:2207 +msgid "LinkedIn" +msgstr "LinkedIn" + +#: ../../include/network.php:2208 +msgid "XMPP/IM" +msgstr "XMPP/IM" + +#: ../../include/network.php:2209 +msgid "MySpace" +msgstr "MySpace" + +#: ../../include/page_widgets.php:7 +msgid "New Page" +msgstr "Nueva página" + +#: ../../include/page_widgets.php:46 +msgid "Title" +msgstr "Título" + #: ../../include/taxonomy.php:188 ../../include/taxonomy.php:270 #: ../../include/widgets.php:46 ../../include/widgets.php:429 #: ../../include/contact_widgets.php:91 @@ -6805,952 +7444,159 @@ msgstr "gusta de" msgid "dislikes" msgstr "no gusta de" -#: ../../include/event.php:22 ../../include/event.php:69 -#: ../../include/bb2diaspora.php:485 -msgid "l F d, Y \\@ g:i A" -msgstr "l d de F, Y \\@ G:i" +#: ../../include/channel.php:33 +msgid "Unable to obtain identity information from database" +msgstr "No ha sido posible obtener información sobre la identidad desde la base de datos" -#: ../../include/event.php:30 ../../include/event.php:73 -#: ../../include/bb2diaspora.php:491 -msgid "Starts:" -msgstr "Comienza:" +#: ../../include/channel.php:67 +msgid "Empty name" +msgstr "Nombre vacío" -#: ../../include/event.php:40 ../../include/event.php:77 -#: ../../include/bb2diaspora.php:499 -msgid "Finishes:" -msgstr "Finaliza:" +#: ../../include/channel.php:70 +msgid "Name too long" +msgstr "Nombre demasiado largo" -#: ../../include/event.php:812 -msgid "This event has been added to your calendar." -msgstr "Este evento ha sido añadido a su calendario." +#: ../../include/channel.php:181 +msgid "No account identifier" +msgstr "Ningún identificador de la cuenta" -#: ../../include/event.php:1012 -msgid "Not specified" -msgstr "Sin especificar" +#: ../../include/channel.php:193 +msgid "Nickname is required." +msgstr "Se requiere un sobrenombre (alias)." -#: ../../include/event.php:1013 -msgid "Needs Action" -msgstr "Necesita de una intervención" +#: ../../include/channel.php:207 +msgid "Reserved nickname. Please choose another." +msgstr "Sobrenombre en uso. Por favor, elija otro." -#: ../../include/event.php:1014 -msgid "Completed" -msgstr "Completado/a" - -#: ../../include/event.php:1015 -msgid "In Process" -msgstr "En proceso" - -#: ../../include/event.php:1016 -msgid "Cancelled" -msgstr "Cancelado/a" - -#: ../../include/import.php:29 +#: ../../include/channel.php:212 msgid "" -"Cannot create a duplicate channel identifier on this system. Import failed." -msgstr "No se ha podido crear un canal con un identificador que ya existe en este sistema. La importación ha fallado." +"Nickname has unsupported characters or is already being used on this site." +msgstr "El alias contiene caracteres no admitidos o está ya en uso por otros miembros de este sitio." -#: ../../include/import.php:76 -msgid "Channel clone failed. Import failed." -msgstr "La clonación del canal no ha salido bien. La importación ha fallado." +#: ../../include/channel.php:272 +msgid "Unable to retrieve created identity" +msgstr "No ha sido posible recuperar la identidad creada" -#: ../../include/items.php:892 ../../include/items.php:937 -msgid "(Unknown)" -msgstr "(Desconocido)" +#: ../../include/channel.php:341 +msgid "Default Profile" +msgstr "Perfil principal" -#: ../../include/items.php:1136 -msgid "Visible to anybody on the internet." -msgstr "Visible para cualquiera en internet." +#: ../../include/channel.php:830 +msgid "Requested channel is not available." +msgstr "El canal solicitado no está disponible." -#: ../../include/items.php:1138 -msgid "Visible to you only." -msgstr "Visible sólo para usted." +#: ../../include/channel.php:977 +msgid "Create New Profile" +msgstr "Crear un nuevo perfil" -#: ../../include/items.php:1140 -msgid "Visible to anybody in this network." -msgstr "Visible para cualquiera en esta red." +#: ../../include/channel.php:997 +msgid "Visible to everybody" +msgstr "Visible para todos" -#: ../../include/items.php:1142 -msgid "Visible to anybody authenticated." -msgstr "Visible para cualquiera que esté autenticado." +#: ../../include/channel.php:1070 ../../include/channel.php:1182 +msgid "Gender:" +msgstr "Género:" -#: ../../include/items.php:1144 +#: ../../include/channel.php:1071 ../../include/channel.php:1226 +msgid "Status:" +msgstr "Estado:" + +#: ../../include/channel.php:1072 ../../include/channel.php:1237 +msgid "Homepage:" +msgstr "Página personal:" + +#: ../../include/channel.php:1073 +msgid "Online Now" +msgstr "Ahora en línea" + +#: ../../include/channel.php:1187 +msgid "Like this channel" +msgstr "Me gusta este canal" + +#: ../../include/channel.php:1211 +msgid "j F, Y" +msgstr "j F Y" + +#: ../../include/channel.php:1212 +msgid "j F" +msgstr "j F" + +#: ../../include/channel.php:1219 +msgid "Birthday:" +msgstr "Cumpleaños:" + +#: ../../include/channel.php:1232 #, php-format -msgid "Visible to anybody on %s." -msgstr "Visible para cualquiera en %s." +msgid "for %1$d %2$s" +msgstr "por %1$d %2$s" -#: ../../include/items.php:1146 -msgid "Visible to all connections." -msgstr "Visible para todas las conexiones." +#: ../../include/channel.php:1235 +msgid "Sexual Preference:" +msgstr "Orientación sexual:" -#: ../../include/items.php:1148 -msgid "Visible to approved connections." -msgstr "Visible para las conexiones permitidas." +#: ../../include/channel.php:1241 +msgid "Tags:" +msgstr "Etiquetas:" -#: ../../include/items.php:1150 -msgid "Visible to specific connections." -msgstr "Visible para conexiones específicas." +#: ../../include/channel.php:1243 +msgid "Political Views:" +msgstr "Posición política:" -#: ../../include/items.php:3909 -msgid "Privacy group is empty." -msgstr "El grupo de canales está vacío." +#: ../../include/channel.php:1245 +msgid "Religion:" +msgstr "Religión:" -#: ../../include/items.php:3916 -#, php-format -msgid "Privacy group: %s" -msgstr "Grupo de canales: %s" +#: ../../include/channel.php:1249 +msgid "Hobbies/Interests:" +msgstr "Aficciones o intereses:" -#: ../../include/items.php:3928 -msgid "Connection not found." -msgstr "Conexión no encontrada" +#: ../../include/channel.php:1251 +msgid "Likes:" +msgstr "Me gusta:" -#: ../../include/items.php:4277 -msgid "profile photo" -msgstr "foto del perfil" +#: ../../include/channel.php:1253 +msgid "Dislikes:" +msgstr "No me gusta:" -#: ../../include/message.php:20 -msgid "No recipient provided." -msgstr "No se ha especificado ningún destinatario." +#: ../../include/channel.php:1255 +msgid "Contact information and Social Networks:" +msgstr "Información de contacto y redes sociales:" -#: ../../include/message.php:25 -msgid "[no subject]" -msgstr "[sin asunto]" +#: ../../include/channel.php:1257 +msgid "My other channels:" +msgstr "Mis otros canales:" -#: ../../include/message.php:45 -msgid "Unable to determine sender." -msgstr "No ha sido posible determinar el remitente. " +#: ../../include/channel.php:1259 +msgid "Musical interests:" +msgstr "Preferencias musicales:" -#: ../../include/message.php:222 -msgid "Stored post could not be verified." -msgstr "No se han podido verificar las publicaciones guardadas." +#: ../../include/channel.php:1261 +msgid "Books, literature:" +msgstr "Libros, literatura:" -#: ../../include/text.php:428 -msgid "prev" -msgstr "anterior" +#: ../../include/channel.php:1263 +msgid "Television:" +msgstr "Televisión:" -#: ../../include/text.php:430 -msgid "first" -msgstr "primera" +#: ../../include/channel.php:1265 +msgid "Film/dance/culture/entertainment:" +msgstr "Cine, danza, cultura, entretenimiento:" -#: ../../include/text.php:459 -msgid "last" -msgstr "última" +#: ../../include/channel.php:1267 +msgid "Love/Romance:" +msgstr "Vida sentimental o amorosa:" -#: ../../include/text.php:462 -msgid "next" -msgstr "próxima" +#: ../../include/channel.php:1269 +msgid "Work/employment:" +msgstr "Trabajo:" -#: ../../include/text.php:472 -msgid "older" -msgstr "más antiguas" +#: ../../include/channel.php:1271 +msgid "School/education:" +msgstr "Estudios:" -#: ../../include/text.php:474 -msgid "newer" -msgstr "más recientes" - -#: ../../include/text.php:863 -msgid "No connections" -msgstr "Sin conexiones" - -#: ../../include/text.php:888 -#, php-format -msgid "View all %s connections" -msgstr "Ver todas las %s conexiones" - -#: ../../include/text.php:1033 ../../include/text.php:1038 -msgid "poke" -msgstr "un toque" - -#: ../../include/text.php:1033 ../../include/text.php:1038 -#: ../../include/conversation.php:243 -msgid "poked" -msgstr "ha dado un toque a" - -#: ../../include/text.php:1039 -msgid "ping" -msgstr "un \"ping\"" - -#: ../../include/text.php:1039 -msgid "pinged" -msgstr "ha enviado un \"ping\" a" - -#: ../../include/text.php:1040 -msgid "prod" -msgstr "una incitación " - -#: ../../include/text.php:1040 -msgid "prodded" -msgstr "ha incitado a " - -#: ../../include/text.php:1041 -msgid "slap" -msgstr "una bofetada " - -#: ../../include/text.php:1041 -msgid "slapped" -msgstr "ha abofeteado a " - -#: ../../include/text.php:1042 -msgid "finger" -msgstr "un \"finger\" " - -#: ../../include/text.php:1042 -msgid "fingered" -msgstr "envió un \"finger\" a" - -#: ../../include/text.php:1043 -msgid "rebuff" -msgstr "un reproche" - -#: ../../include/text.php:1043 -msgid "rebuffed" -msgstr "ha hecho un reproche a " - -#: ../../include/text.php:1055 -msgid "happy" -msgstr "feliz " - -#: ../../include/text.php:1056 -msgid "sad" -msgstr "triste " - -#: ../../include/text.php:1057 -msgid "mellow" -msgstr "tranquilo/a" - -#: ../../include/text.php:1058 -msgid "tired" -msgstr "cansado/a " - -#: ../../include/text.php:1059 -msgid "perky" -msgstr "vivaz" - -#: ../../include/text.php:1060 -msgid "angry" -msgstr "enfadado/a" - -#: ../../include/text.php:1061 -msgid "stupefied" -msgstr "asombrado/a" - -#: ../../include/text.php:1062 -msgid "puzzled" -msgstr "perplejo/a" - -#: ../../include/text.php:1063 -msgid "interested" -msgstr "interesado/a" - -#: ../../include/text.php:1064 -msgid "bitter" -msgstr "amargado/a" - -#: ../../include/text.php:1065 -msgid "cheerful" -msgstr "alegre" - -#: ../../include/text.php:1066 -msgid "alive" -msgstr "animado/a" - -#: ../../include/text.php:1067 -msgid "annoyed" -msgstr "molesto/a" - -#: ../../include/text.php:1068 -msgid "anxious" -msgstr "ansioso/a" - -#: ../../include/text.php:1069 -msgid "cranky" -msgstr "de mal humor" - -#: ../../include/text.php:1070 -msgid "disturbed" -msgstr "perturbado/a" - -#: ../../include/text.php:1071 -msgid "frustrated" -msgstr "frustrado/a" - -#: ../../include/text.php:1072 -msgid "depressed" -msgstr "deprimido/a" - -#: ../../include/text.php:1073 -msgid "motivated" -msgstr "motivado/a" - -#: ../../include/text.php:1074 -msgid "relaxed" -msgstr "relajado/a" - -#: ../../include/text.php:1075 -msgid "surprised" -msgstr "sorprendido/a" - -#: ../../include/text.php:1257 ../../include/js_strings.php:70 -msgid "Monday" -msgstr "lunes" - -#: ../../include/text.php:1257 ../../include/js_strings.php:71 -msgid "Tuesday" -msgstr "martes" - -#: ../../include/text.php:1257 ../../include/js_strings.php:72 -msgid "Wednesday" -msgstr "miércoles" - -#: ../../include/text.php:1257 ../../include/js_strings.php:73 -msgid "Thursday" -msgstr "jueves" - -#: ../../include/text.php:1257 ../../include/js_strings.php:74 -msgid "Friday" -msgstr "viernes" - -#: ../../include/text.php:1257 ../../include/js_strings.php:75 -msgid "Saturday" -msgstr "sábado" - -#: ../../include/text.php:1257 ../../include/js_strings.php:69 -msgid "Sunday" -msgstr "domingo" - -#: ../../include/text.php:1261 ../../include/js_strings.php:45 -msgid "January" -msgstr "enero" - -#: ../../include/text.php:1261 ../../include/js_strings.php:46 -msgid "February" -msgstr "febrero" - -#: ../../include/text.php:1261 ../../include/js_strings.php:47 -msgid "March" -msgstr "marzo" - -#: ../../include/text.php:1261 ../../include/js_strings.php:48 -msgid "April" -msgstr "abril" - -#: ../../include/text.php:1261 -msgid "May" -msgstr "mayo" - -#: ../../include/text.php:1261 ../../include/js_strings.php:50 -msgid "June" -msgstr "junio" - -#: ../../include/text.php:1261 ../../include/js_strings.php:51 -msgid "July" -msgstr "julio" - -#: ../../include/text.php:1261 ../../include/js_strings.php:52 -msgid "August" -msgstr "agosto" - -#: ../../include/text.php:1261 ../../include/js_strings.php:53 -msgid "September" -msgstr "septiembre" - -#: ../../include/text.php:1261 ../../include/js_strings.php:54 -msgid "October" -msgstr "octubre" - -#: ../../include/text.php:1261 ../../include/js_strings.php:55 -msgid "November" -msgstr "noviembre" - -#: ../../include/text.php:1261 ../../include/js_strings.php:56 -msgid "December" -msgstr "diciembre" - -#: ../../include/text.php:1338 ../../include/text.php:1342 -msgid "Unknown Attachment" -msgstr "Adjunto no reconocido" - -#: ../../include/text.php:1344 -msgid "unknown" -msgstr "desconocido" - -#: ../../include/text.php:1380 -msgid "remove category" -msgstr "eliminar categoría" - -#: ../../include/text.php:1457 -msgid "remove from file" -msgstr "eliminar del fichero" - -#: ../../include/text.php:1753 ../../include/text.php:1824 -msgid "default" -msgstr "por defecto" - -#: ../../include/text.php:1761 -msgid "Page layout" -msgstr "Plantilla de la página" - -#: ../../include/text.php:1761 -msgid "You can create your own with the layouts tool" -msgstr "Puede crear su propia disposición gráfica con la herramienta de plantillas" - -#: ../../include/text.php:1803 -msgid "Page content type" -msgstr "Tipo de contenido de la página" - -#: ../../include/text.php:1836 -msgid "Select an alternate language" -msgstr "Seleccionar un idioma alternativo" - -#: ../../include/text.php:1953 -msgid "activity" -msgstr "la actividad" - -#: ../../include/text.php:2262 -msgid "Design Tools" -msgstr "Herramientas de diseño web" - -#: ../../include/text.php:2268 -msgid "Pages" -msgstr "Páginas" - -#: ../../include/widgets.php:103 -msgid "System" -msgstr "Sistema" - -#: ../../include/widgets.php:106 -msgid "New App" -msgstr "Nueva aplicación (app)" - -#: ../../include/widgets.php:154 -msgid "Suggestions" -msgstr "Sugerencias" - -#: ../../include/widgets.php:155 -msgid "See more..." -msgstr "Ver más..." - -#: ../../include/widgets.php:175 -#, php-format -msgid "You have %1$.0f of %2$.0f allowed connections." -msgstr "Tiene %1$.0f de %2$.0f conexiones permitidas." - -#: ../../include/widgets.php:181 -msgid "Add New Connection" -msgstr "Añadir nueva conexión" - -#: ../../include/widgets.php:182 -msgid "Enter channel address" -msgstr "Dirección del canal" - -#: ../../include/widgets.php:183 -msgid "Examples: bob@example.com, https://example.com/barbara" -msgstr "Ejemplos: manuel@ejemplo.com, https://ejemplo.com/carmen" - -#: ../../include/widgets.php:199 -msgid "Notes" -msgstr "Notas" - -#: ../../include/widgets.php:273 -msgid "Remove term" -msgstr "Eliminar término" - -#: ../../include/widgets.php:281 ../../include/features.php:84 -msgid "Saved Searches" -msgstr "Búsquedas guardadas" - -#: ../../include/widgets.php:282 ../../include/group.php:316 -msgid "add" -msgstr "añadir" - -#: ../../include/widgets.php:310 ../../include/contact_widgets.php:53 -#: ../../include/features.php:98 -msgid "Saved Folders" -msgstr "Carpetas guardadas" - -#: ../../include/widgets.php:313 ../../include/widgets.php:432 -#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:94 -msgid "Everything" -msgstr "Todo" - -#: ../../include/widgets.php:354 -msgid "Archives" -msgstr "Hemeroteca" - -#: ../../include/widgets.php:516 -msgid "Refresh" -msgstr "Recargar" - -#: ../../include/widgets.php:556 -msgid "Account settings" -msgstr "Configuración de la cuenta" - -#: ../../include/widgets.php:562 -msgid "Channel settings" -msgstr "Configuración del canal" - -#: ../../include/widgets.php:571 -msgid "Additional features" -msgstr "Funcionalidades" - -#: ../../include/widgets.php:578 -msgid "Feature/Addon settings" -msgstr "Complementos" - -#: ../../include/widgets.php:584 -msgid "Display settings" -msgstr "Ajustes de visualización" - -#: ../../include/widgets.php:591 -msgid "Manage locations" -msgstr "Gestión de ubicaciones (clones) del canal" - -#: ../../include/widgets.php:600 -msgid "Export channel" -msgstr "Exportar canal" - -#: ../../include/widgets.php:607 -msgid "Connected apps" -msgstr "Aplicaciones (apps) conectadas" - -#: ../../include/widgets.php:622 -msgid "Premium Channel Settings" -msgstr "Configuración del canal premium" - -#: ../../include/widgets.php:651 -msgid "Private Mail Menu" -msgstr "Menú de correo privado" - -#: ../../include/widgets.php:653 -msgid "Combined View" -msgstr "Vista combinada" - -#: ../../include/widgets.php:658 ../../include/nav.php:196 -msgid "Inbox" -msgstr "Bandeja de entrada" - -#: ../../include/widgets.php:663 ../../include/nav.php:197 -msgid "Outbox" -msgstr "Bandeja de salida" - -#: ../../include/widgets.php:668 ../../include/nav.php:198 -msgid "New Message" -msgstr "Nuevo mensaje" - -#: ../../include/widgets.php:685 ../../include/widgets.php:697 -msgid "Conversations" -msgstr "Conversaciones" - -#: ../../include/widgets.php:689 -msgid "Received Messages" -msgstr "Mensajes recibidos" - -#: ../../include/widgets.php:693 -msgid "Sent Messages" -msgstr "Enviar mensajes" - -#: ../../include/widgets.php:707 -msgid "No messages." -msgstr "Sin mensajes." - -#: ../../include/widgets.php:725 -msgid "Delete conversation" -msgstr "Eliminar conversación" - -#: ../../include/widgets.php:751 -msgid "Events Menu" -msgstr "Menú de eventos" - -#: ../../include/widgets.php:752 -msgid "Day View" -msgstr "Eventos del día" - -#: ../../include/widgets.php:753 -msgid "Week View" -msgstr "Eventos de la semana" - -#: ../../include/widgets.php:754 -msgid "Month View" -msgstr "Eventos del mes" - -#: ../../include/widgets.php:766 -msgid "Events Tools" -msgstr "Gestión de eventos" - -#: ../../include/widgets.php:767 -msgid "Export Calendar" -msgstr "Exportar el calendario" - -#: ../../include/widgets.php:768 -msgid "Import Calendar" -msgstr "Importar un calendario" - -#: ../../include/widgets.php:842 ../../include/conversation.php:1662 -#: ../../include/conversation.php:1665 -msgid "Chatrooms" -msgstr "Salas de chat" - -#: ../../include/widgets.php:846 -msgid "Overview" -msgstr "Resumen" - -#: ../../include/widgets.php:853 -msgid "Chat Members" -msgstr "Miembros del chat" - -#: ../../include/widgets.php:876 -msgid "Bookmarked Chatrooms" -msgstr "Salas de chat preferidas" - -#: ../../include/widgets.php:899 -msgid "Suggested Chatrooms" -msgstr "Salas de chat sugeridas" - -#: ../../include/widgets.php:1044 ../../include/widgets.php:1156 -msgid "photo/image" -msgstr "foto/imagen" - -#: ../../include/widgets.php:1099 -msgid "Click to show more" -msgstr "Hacer clic para ver más" - -#: ../../include/widgets.php:1250 -msgid "Rating Tools" -msgstr "Valoraciones" - -#: ../../include/widgets.php:1254 ../../include/widgets.php:1256 -msgid "Rate Me" -msgstr "Valorar este canal" - -#: ../../include/widgets.php:1259 -msgid "View Ratings" -msgstr "Mostrar las valoraciones" - -#: ../../include/widgets.php:1316 -msgid "Forums" -msgstr "Foros" - -#: ../../include/widgets.php:1345 -msgid "Tasks" -msgstr "Tareas" - -#: ../../include/widgets.php:1354 -msgid "Documentation" -msgstr "Documentación" - -#: ../../include/widgets.php:1356 -msgid "Project/Site Information" -msgstr "Información sobre el proyecto o sitio" - -#: ../../include/widgets.php:1357 -msgid "For Members" -msgstr "Para los miembros" - -#: ../../include/widgets.php:1358 -msgid "For Administrators" -msgstr "Para los administradores" - -#: ../../include/widgets.php:1359 -msgid "For Developers" -msgstr "Para los desarrolladores" - -#: ../../include/widgets.php:1383 ../../include/widgets.php:1421 -msgid "Member registrations waiting for confirmation" -msgstr "Inscripciones de nuevos miembros pendientes de aprobación" - -#: ../../include/widgets.php:1389 -msgid "Inspect queue" -msgstr "Examinar la cola" - -#: ../../include/widgets.php:1391 -msgid "DB updates" -msgstr "Actualizaciones de la base de datos" - -#: ../../include/widgets.php:1416 ../../include/nav.php:216 -msgid "Admin" -msgstr "Administrador" - -#: ../../include/widgets.php:1417 -msgid "Plugin Features" -msgstr "Extensiones" - -#: ../../include/follow.php:27 -msgid "Channel is blocked on this site." -msgstr "El canal está bloqueado en este sitio." - -#: ../../include/follow.php:32 -msgid "Channel location missing." -msgstr "Falta la dirección del canal." - -#: ../../include/follow.php:81 -msgid "Response from remote channel was incomplete." -msgstr "Respuesta incompleta del canal." - -#: ../../include/follow.php:98 -msgid "Channel was deleted and no longer exists." -msgstr "El canal ha sido eliminado y ya no existe." - -#: ../../include/follow.php:154 ../../include/follow.php:190 -msgid "Protocol disabled." -msgstr "Protocolo deshabilitado." - -#: ../../include/follow.php:178 -msgid "Channel discovery failed." -msgstr "El intento de acceder al canal ha fallado." - -#: ../../include/follow.php:216 -msgid "Cannot connect to yourself." -msgstr "No puede conectarse consigo mismo." - -#: ../../include/bookmarks.php:35 -#, php-format -msgid "%1$s's bookmarks" -msgstr "Marcadores de %1$s" - -#: ../../include/api.php:1336 -msgid "Public Timeline" -msgstr "Cronología pública" - -#: ../../include/bbcode.php:123 ../../include/bbcode.php:844 -#: ../../include/bbcode.php:847 ../../include/bbcode.php:852 -#: ../../include/bbcode.php:855 ../../include/bbcode.php:858 -#: ../../include/bbcode.php:861 ../../include/bbcode.php:866 -#: ../../include/bbcode.php:869 ../../include/bbcode.php:874 -#: ../../include/bbcode.php:877 ../../include/bbcode.php:880 -#: ../../include/bbcode.php:883 -msgid "Image/photo" -msgstr "Imagen/foto" - -#: ../../include/bbcode.php:162 ../../include/bbcode.php:894 -msgid "Encrypted content" -msgstr "Contenido cifrado" - -#: ../../include/bbcode.php:178 -#, php-format -msgid "Install %s element: " -msgstr "Instalar el elemento %s:" - -#: ../../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 "Esta entrada contiene el elemento instalable %s, sin embargo le faltan permisos para instalarlo en este sitio." - -#: ../../include/bbcode.php:254 -#, php-format -msgid "%1$s wrote the following %2$s %3$s" -msgstr "%1$s escribió %2$s siguiente %3$s" - -#: ../../include/bbcode.php:331 ../../include/bbcode.php:339 -msgid "Click to open/close" -msgstr "Pulsar para abrir/cerrar" - -#: ../../include/bbcode.php:339 -msgid "spoiler" -msgstr "spoiler" - -#: ../../include/bbcode.php:585 -msgid "Different viewers will see this text differently" -msgstr "Visitantes diferentes verán este texto de forma distinta" - -#: ../../include/bbcode.php:832 -msgid "$1 wrote:" -msgstr "$1 escribió:" - -#: ../../include/dir_fns.php:141 -msgid "Directory Options" -msgstr "Opciones del directorio" - -#: ../../include/dir_fns.php:143 -msgid "Safe Mode" -msgstr "Modo seguro" - -#: ../../include/dir_fns.php:144 -msgid "Public Forums Only" -msgstr "Solo foros públicos" - -#: ../../include/dir_fns.php:145 -msgid "This Website Only" -msgstr "Solo este sitio web" - -#: ../../include/security.php:383 -msgid "" -"The form security token was not correct. This probably happened because the " -"form has been opened for too long (>3 hours) before submitting it." -msgstr "El \"token\" de seguridad del formulario no es correcto. Esto ha ocurrido probablemente porque el formulario ha estado abierto demasiado tiempo (>3 horas) antes de ser enviado" - -#: ../../include/nav.php:82 ../../include/nav.php:113 ../../boot.php:1702 -msgid "Logout" -msgstr "Finalizar sesión" - -#: ../../include/nav.php:82 ../../include/nav.php:113 -msgid "End this session" -msgstr "Finalizar esta sesión" - -#: ../../include/nav.php:85 ../../include/nav.php:144 -msgid "Home" -msgstr "Inicio" - -#: ../../include/nav.php:85 -msgid "Your posts and conversations" -msgstr "Sus publicaciones y conversaciones" - -#: ../../include/nav.php:86 -msgid "Your profile page" -msgstr "Su página del perfil" - -#: ../../include/nav.php:88 -msgid "Manage/Edit profiles" -msgstr "Administrar/editar perfiles" - -#: ../../include/nav.php:90 ../../include/channel.php:941 -msgid "Edit Profile" -msgstr "Editar el perfil" - -#: ../../include/nav.php:90 -msgid "Edit your profile" -msgstr "Editar su perfil" - -#: ../../include/nav.php:92 -msgid "Your photos" -msgstr "Sus fotos" - -#: ../../include/nav.php:93 -msgid "Your files" -msgstr "Sus ficheros" - -#: ../../include/nav.php:96 -msgid "Your chatrooms" -msgstr "Sus salas de chat" - -#: ../../include/nav.php:102 ../../include/conversation.php:1675 -msgid "Bookmarks" -msgstr "Marcadores" - -#: ../../include/nav.php:102 -msgid "Your bookmarks" -msgstr "Sus marcadores" - -#: ../../include/nav.php:106 -msgid "Your webpages" -msgstr "Sus páginas web" - -#: ../../include/nav.php:110 -msgid "Sign in" -msgstr "Acceder" - -#: ../../include/nav.php:127 -#, php-format -msgid "%s - click to logout" -msgstr "%s - pulsar para finalizar sesión" - -#: ../../include/nav.php:130 -msgid "Remote authentication" -msgstr "Acceder desde su servidor" - -#: ../../include/nav.php:130 -msgid "Click to authenticate to your home hub" -msgstr "Pulsar para identificarse en su servidor de inicio" - -#: ../../include/nav.php:144 -msgid "Home Page" -msgstr "Página de inicio" - -#: ../../include/nav.php:147 -msgid "Create an account" -msgstr "Crear una cuenta" - -#: ../../include/nav.php:159 -msgid "Help and documentation" -msgstr "Ayuda y documentación" - -#: ../../include/nav.php:163 -msgid "Applications, utilities, links, games" -msgstr "Aplicaciones, utilidades, enlaces, juegos" - -#: ../../include/nav.php:165 -msgid "Search site @name, #tag, ?docs, content" -msgstr "Buscar en el sitio por @nombre, #etiqueta, ?ayuda o contenido" - -#: ../../include/nav.php:167 -msgid "Channel Directory" -msgstr "Directorio de canales" - -#: ../../include/nav.php:179 -msgid "Your grid" -msgstr "Mi red" - -#: ../../include/nav.php:180 -msgid "Mark all grid notifications seen" -msgstr "Marcar todas las notificaciones de la red como vistas" - -#: ../../include/nav.php:182 -msgid "Channel home" -msgstr "Mi canal" - -#: ../../include/nav.php:183 -msgid "Mark all channel notifications seen" -msgstr "Marcar todas las notificaciones del canal como leídas" - -#: ../../include/nav.php:189 -msgid "Notices" -msgstr "Avisos" - -#: ../../include/nav.php:189 -msgid "Notifications" -msgstr "Notificaciones" - -#: ../../include/nav.php:190 -msgid "See all notifications" -msgstr "Ver todas las notificaciones" - -#: ../../include/nav.php:193 -msgid "Private mail" -msgstr "Correo privado" - -#: ../../include/nav.php:194 -msgid "See all private messages" -msgstr "Ver todas los mensajes privados" - -#: ../../include/nav.php:195 -msgid "Mark all private messages seen" -msgstr "Marcar todos los mensajes privados como leídos" - -#: ../../include/nav.php:201 -msgid "Event Calendar" -msgstr "Calendario de eventos" - -#: ../../include/nav.php:202 -msgid "See all events" -msgstr "Ver todos los eventos" - -#: ../../include/nav.php:203 -msgid "Mark all events seen" -msgstr "Marcar todos los eventos como leidos" - -#: ../../include/nav.php:206 -msgid "Manage Your Channels" -msgstr "Gestionar sus canales" - -#: ../../include/nav.php:208 -msgid "Account/Channel Settings" -msgstr "Ajustes de cuenta/canales" - -#: ../../include/nav.php:216 -msgid "Site Setup and Configuration" -msgstr "Ajustes y configuración del sitio" - -#: ../../include/nav.php:247 ../../include/conversation.php:851 -msgid "Loading..." -msgstr "Cargando..." - -#: ../../include/nav.php:252 -msgid "@name, #tag, ?doc, content" -msgstr "@nombre, #etiqueta, ?ayuda, contenido" - -#: ../../include/nav.php:253 -msgid "Please wait..." -msgstr "Espere por favor…" +#: ../../include/channel.php:1292 +msgid "Like this thing" +msgstr "Me gusta esto" #: ../../include/connections.php:95 msgid "New window" @@ -7765,52 +7611,6 @@ msgstr "Abrir la dirección seleccionada en una ventana o pestaña aparte" msgid "User '%s' deleted" msgstr "El usuario '%s' ha sido eliminado" -#: ../../include/contact_widgets.php:11 -#, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "%d invitación pendiente" -msgstr[1] "%d invitaciones disponibles" - -#: ../../include/contact_widgets.php:19 -msgid "Find Channels" -msgstr "Encontrar canales" - -#: ../../include/contact_widgets.php:20 -msgid "Enter name or interest" -msgstr "Introducir nombre o interés" - -#: ../../include/contact_widgets.php:21 -msgid "Connect/Follow" -msgstr "Conectar/Seguir" - -#: ../../include/contact_widgets.php:22 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "Ejemplos: José Fernández, Pesca" - -#: ../../include/contact_widgets.php:26 -msgid "Random Profile" -msgstr "Perfil aleatorio" - -#: ../../include/contact_widgets.php:27 -msgid "Invite Friends" -msgstr "Invitar a amigos" - -#: ../../include/contact_widgets.php:29 -msgid "Advanced example: name=fred and country=iceland" -msgstr "Ejemplo avanzado: nombre=juan y país=españa" - -#: ../../include/contact_widgets.php:122 -#, php-format -msgid "%d connection in common" -msgid_plural "%d connections in common" -msgstr[0] "%d conexión en común" -msgstr[1] "%d conexiones en común" - -#: ../../include/contact_widgets.php:127 -msgid "show more" -msgstr "mostrar más" - #: ../../include/conversation.php:204 #, php-format msgid "%1$s is now connected with %2$s" @@ -7821,258 +7621,269 @@ msgstr "%1$s ahora está conectado/a con %2$s" msgid "%1$s poked %2$s" msgstr "%1$s ha dado un toque a %2$s" -#: ../../include/conversation.php:691 +#: ../../include/conversation.php:243 ../../include/text.php:1013 +#: ../../include/text.php:1018 +msgid "poked" +msgstr "ha dado un toque a" + +#: ../../include/conversation.php:694 #, php-format msgid "View %s's profile @ %s" msgstr "Ver el perfil @ %s de %s" -#: ../../include/conversation.php:710 +#: ../../include/conversation.php:713 msgid "Categories:" msgstr "Categorías:" -#: ../../include/conversation.php:711 +#: ../../include/conversation.php:714 msgid "Filed under:" msgstr "Archivado bajo:" -#: ../../include/conversation.php:738 +#: ../../include/conversation.php:741 msgid "View in context" msgstr "Mostrar en su contexto" -#: ../../include/conversation.php:847 +#: ../../include/conversation.php:850 msgid "remove" msgstr "eliminar" -#: ../../include/conversation.php:852 +#: ../../include/conversation.php:855 msgid "Delete Selected Items" msgstr "Eliminar elementos seleccionados" -#: ../../include/conversation.php:948 +#: ../../include/conversation.php:951 msgid "View Source" msgstr "Ver el código fuente de la entrada" -#: ../../include/conversation.php:949 +#: ../../include/conversation.php:952 msgid "Follow Thread" msgstr "Seguir este hilo" -#: ../../include/conversation.php:950 +#: ../../include/conversation.php:953 msgid "Unfollow Thread" msgstr "Dejar de seguir este hilo" -#: ../../include/conversation.php:955 +#: ../../include/conversation.php:958 msgid "Activity/Posts" msgstr "Actividad y publicaciones" -#: ../../include/conversation.php:957 +#: ../../include/conversation.php:960 msgid "Edit Connection" msgstr "Editar conexión" -#: ../../include/conversation.php:958 +#: ../../include/conversation.php:961 msgid "Message" msgstr "Mensaje" -#: ../../include/conversation.php:1075 +#: ../../include/conversation.php:1078 #, php-format msgid "%s likes this." msgstr "A %s le gusta esto." -#: ../../include/conversation.php:1075 +#: ../../include/conversation.php:1078 #, php-format msgid "%s doesn't like this." msgstr "A %s no le gusta esto." -#: ../../include/conversation.php:1079 +#: ../../include/conversation.php:1082 #, php-format msgid "%2$d people like this." msgid_plural "%2$d people like this." msgstr[0] "a %2$d personas le gusta esto." msgstr[1] "A %2$d personas les gusta esto." -#: ../../include/conversation.php:1081 +#: ../../include/conversation.php:1084 #, php-format msgid "%2$d people don't like this." msgid_plural "%2$d people don't like this." msgstr[0] "a %2$d personas no les gusta esto." msgstr[1] "A %2$d personas no les gusta esto." -#: ../../include/conversation.php:1087 +#: ../../include/conversation.php:1090 msgid "and" msgstr "y" -#: ../../include/conversation.php:1090 +#: ../../include/conversation.php:1093 #, php-format msgid ", and %d other people" msgid_plural ", and %d other people" msgstr[0] ", y %d persona más" msgstr[1] ", y %d personas más" -#: ../../include/conversation.php:1091 +#: ../../include/conversation.php:1094 #, php-format msgid "%s like this." msgstr "A %s le gusta esto." -#: ../../include/conversation.php:1091 +#: ../../include/conversation.php:1094 #, php-format msgid "%s don't like this." msgstr "A %s no le gusta esto." -#: ../../include/conversation.php:1130 +#: ../../include/conversation.php:1133 msgid "Set your location" msgstr "Establecer su ubicación" -#: ../../include/conversation.php:1131 +#: ../../include/conversation.php:1134 msgid "Clear browser location" msgstr "Eliminar los datos de localización geográfica del navegador" -#: ../../include/conversation.php:1177 +#: ../../include/conversation.php:1182 msgid "Tag term:" msgstr "Término de la etiqueta:" -#: ../../include/conversation.php:1178 +#: ../../include/conversation.php:1183 msgid "Where are you right now?" msgstr "¿Donde está ahora?" -#: ../../include/conversation.php:1210 +#: ../../include/conversation.php:1221 msgid "Page link name" msgstr "Nombre del enlace de la página" -#: ../../include/conversation.php:1213 +#: ../../include/conversation.php:1224 msgid "Post as" msgstr "Publicar como" -#: ../../include/conversation.php:1223 +#: ../../include/conversation.php:1238 msgid "Toggle voting" msgstr "Cambiar votación" -#: ../../include/conversation.php:1231 +#: ../../include/conversation.php:1246 msgid "Categories (optional, comma-separated list)" msgstr "Categorías (opcional, lista separada por comas)" -#: ../../include/conversation.php:1254 +#: ../../include/conversation.php:1269 msgid "Set publish date" msgstr "Establecer la fecha de publicación" -#: ../../include/conversation.php:1258 -msgid "OK" -msgstr "OK" - -#: ../../include/conversation.php:1503 +#: ../../include/conversation.php:1518 msgid "Discover" msgstr "Descubrir" -#: ../../include/conversation.php:1506 +#: ../../include/conversation.php:1521 msgid "Imported public streams" msgstr "Contenidos públicos importados" -#: ../../include/conversation.php:1511 +#: ../../include/conversation.php:1526 msgid "Commented Order" msgstr "Comentarios recientes" -#: ../../include/conversation.php:1514 +#: ../../include/conversation.php:1529 msgid "Sort by Comment Date" msgstr "Ordenar por fecha de comentario" -#: ../../include/conversation.php:1518 +#: ../../include/conversation.php:1533 msgid "Posted Order" msgstr "Publicaciones recientes" -#: ../../include/conversation.php:1521 +#: ../../include/conversation.php:1536 msgid "Sort by Post Date" msgstr "Ordenar por fecha de publicación" -#: ../../include/conversation.php:1529 +#: ../../include/conversation.php:1544 msgid "Posts that mention or involve you" msgstr "Publicaciones que le mencionan o involucran" -#: ../../include/conversation.php:1538 +#: ../../include/conversation.php:1553 msgid "Activity Stream - by date" msgstr "Contenido - por fecha" -#: ../../include/conversation.php:1544 +#: ../../include/conversation.php:1559 msgid "Starred" msgstr "Preferidas" -#: ../../include/conversation.php:1547 +#: ../../include/conversation.php:1562 msgid "Favourite Posts" msgstr "Publicaciones favoritas" -#: ../../include/conversation.php:1554 +#: ../../include/conversation.php:1569 msgid "Spam" msgstr "Correo basura" -#: ../../include/conversation.php:1557 +#: ../../include/conversation.php:1572 msgid "Posts flagged as SPAM" msgstr "Publicaciones marcadas como basura" -#: ../../include/conversation.php:1614 +#: ../../include/conversation.php:1629 msgid "Status Messages and Posts" msgstr "Mensajes de estado y publicaciones" -#: ../../include/conversation.php:1623 +#: ../../include/conversation.php:1638 msgid "About" msgstr "Mi perfil" -#: ../../include/conversation.php:1626 +#: ../../include/conversation.php:1641 msgid "Profile Details" msgstr "Detalles del perfil" -#: ../../include/conversation.php:1635 ../../include/photos.php:502 -msgid "Photo Albums" -msgstr "Álbumes de fotos" - -#: ../../include/conversation.php:1642 +#: ../../include/conversation.php:1657 msgid "Files and Storage" msgstr "Ficheros y repositorio" -#: ../../include/conversation.php:1678 +#: ../../include/conversation.php:1677 ../../include/conversation.php:1680 +#: ../../include/widgets.php:836 +msgid "Chatrooms" +msgstr "Salas de chat" + +#: ../../include/conversation.php:1693 msgid "Saved Bookmarks" msgstr "Marcadores guardados" -#: ../../include/conversation.php:1688 +#: ../../include/conversation.php:1703 msgid "Manage Webpages" msgstr "Administrar páginas web" -#: ../../include/conversation.php:1747 +#: ../../include/conversation.php:1768 msgctxt "noun" msgid "Attending" msgid_plural "Attending" msgstr[0] "Participaré" msgstr[1] "Participaré" -#: ../../include/conversation.php:1750 +#: ../../include/conversation.php:1771 msgctxt "noun" msgid "Not Attending" msgid_plural "Not Attending" msgstr[0] "No participaré" msgstr[1] "No participaré" -#: ../../include/conversation.php:1753 +#: ../../include/conversation.php:1774 msgctxt "noun" msgid "Undecided" msgid_plural "Undecided" msgstr[0] "Indeciso/a" msgstr[1] "Indecisos/as" -#: ../../include/conversation.php:1756 +#: ../../include/conversation.php:1777 msgctxt "noun" msgid "Agree" msgid_plural "Agrees" msgstr[0] "De acuerdo" msgstr[1] "De acuerdo" -#: ../../include/conversation.php:1759 +#: ../../include/conversation.php:1780 msgctxt "noun" msgid "Disagree" msgid_plural "Disagrees" msgstr[0] "En desacuerdo" msgstr[1] "En desacuerdo" -#: ../../include/conversation.php:1762 +#: ../../include/conversation.php:1783 msgctxt "noun" msgid "Abstain" msgid_plural "Abstains" msgstr[0] "se abstiene" msgstr[1] "Se abstienen" +#: ../../include/import.php:30 +msgid "" +"Cannot create a duplicate channel identifier on this system. Import failed." +msgstr "No se ha podido crear un canal con un identificador que ya existe en este sistema. La importación ha fallado." + +#: ../../include/import.php:97 +msgid "Channel clone failed. Import failed." +msgstr "La clonación del canal no ha salido bien. La importación ha fallado." + #: ../../include/selectors.php:30 msgid "Frequently" msgstr "Frecuentemente" @@ -8137,12 +7948,6 @@ msgstr "Neutral" msgid "Non-specific" msgstr "No especificado" -#: ../../include/selectors.php:49 ../../include/selectors.php:66 -#: ../../include/selectors.php:104 ../../include/selectors.php:140 -#: ../../include/permissions.php:881 -msgid "Other" -msgstr "Otro" - #: ../../include/selectors.php:49 msgid "Undecided" msgstr "Indeciso/a" @@ -8319,361 +8124,366 @@ msgstr "No me importa" msgid "Ask me" msgstr "Pregúnteme" -#: ../../include/PermissionDescription.php:31 -#: ../../include/acl_selectors.php:232 -msgid "Visible to your default audience" -msgstr "Visible para su público predeterminado." - -#: ../../include/PermissionDescription.php:115 -#: ../../include/acl_selectors.php:268 -msgid "Only me" -msgstr "Sólo yo" - -#: ../../include/PermissionDescription.php:116 -msgid "Public" -msgstr "Público" - -#: ../../include/PermissionDescription.php:117 -msgid "Anybody in the $Projectname network" -msgstr "Cualquiera en la red $Projectname" - -#: ../../include/PermissionDescription.php:118 +#: ../../include/bookmarks.php:35 #, php-format -msgid "Any account on %s" -msgstr "Cualquier cuenta en %s" +msgid "%1$s's bookmarks" +msgstr "Marcadores de %1$s" -#: ../../include/PermissionDescription.php:119 -msgid "Any of my connections" -msgstr "Cualquiera de mis conexiones" +#: ../../include/security.php:109 +msgid "guest:" +msgstr "" -#: ../../include/PermissionDescription.php:120 -msgid "Only connections I specifically allow" -msgstr "Sólo las conexiones que yo permita de forma explícita" - -#: ../../include/PermissionDescription.php:121 -msgid "Anybody authenticated (could include visitors from other networks)" -msgstr "Cualquiera que esté autenticado (podría incluir a los visitantes de otras redes)" - -#: ../../include/PermissionDescription.php:122 -msgid "Any connections including those who haven't yet been approved" -msgstr "Cualquier conexión incluyendo aquellas que aún no han sido aprobadas" - -#: ../../include/PermissionDescription.php:161 +#: ../../include/security.php:427 msgid "" -"This is your default setting for the audience of your normal stream, and " -"posts." -msgstr "Esta es la configuración predeterminada para su flujo (stream) habitual de publicaciones." +"The form security token was not correct. This probably happened because the " +"form has been opened for too long (>3 hours) before submitting it." +msgstr "El \"token\" de seguridad del formulario no es correcto. Esto ha ocurrido probablemente porque el formulario ha estado abierto demasiado tiempo (>3 horas) antes de ser enviado" -#: ../../include/PermissionDescription.php:162 +#: ../../include/text.php:404 +msgid "prev" +msgstr "anterior" + +#: ../../include/text.php:406 +msgid "first" +msgstr "primera" + +#: ../../include/text.php:435 +msgid "last" +msgstr "última" + +#: ../../include/text.php:438 +msgid "next" +msgstr "próxima" + +#: ../../include/text.php:448 +msgid "older" +msgstr "más antiguas" + +#: ../../include/text.php:450 +msgid "newer" +msgstr "más recientes" + +#: ../../include/text.php:843 +msgid "No connections" +msgstr "Sin conexiones" + +#: ../../include/text.php:868 +#, php-format +msgid "View all %s connections" +msgstr "Ver todas las %s conexiones" + +#: ../../include/text.php:1013 ../../include/text.php:1018 +msgid "poke" +msgstr "un toque" + +#: ../../include/text.php:1019 +msgid "ping" +msgstr "un \"ping\"" + +#: ../../include/text.php:1019 +msgid "pinged" +msgstr "ha enviado un \"ping\" a" + +#: ../../include/text.php:1020 +msgid "prod" +msgstr "una incitación " + +#: ../../include/text.php:1020 +msgid "prodded" +msgstr "ha incitado a " + +#: ../../include/text.php:1021 +msgid "slap" +msgstr "una bofetada " + +#: ../../include/text.php:1021 +msgid "slapped" +msgstr "ha abofeteado a " + +#: ../../include/text.php:1022 +msgid "finger" +msgstr "un \"finger\" " + +#: ../../include/text.php:1022 +msgid "fingered" +msgstr "envió un \"finger\" a" + +#: ../../include/text.php:1023 +msgid "rebuff" +msgstr "un reproche" + +#: ../../include/text.php:1023 +msgid "rebuffed" +msgstr "ha hecho un reproche a " + +#: ../../include/text.php:1035 +msgid "happy" +msgstr "feliz " + +#: ../../include/text.php:1036 +msgid "sad" +msgstr "triste " + +#: ../../include/text.php:1037 +msgid "mellow" +msgstr "tranquilo/a" + +#: ../../include/text.php:1038 +msgid "tired" +msgstr "cansado/a " + +#: ../../include/text.php:1039 +msgid "perky" +msgstr "vivaz" + +#: ../../include/text.php:1040 +msgid "angry" +msgstr "enfadado/a" + +#: ../../include/text.php:1041 +msgid "stupefied" +msgstr "asombrado/a" + +#: ../../include/text.php:1042 +msgid "puzzled" +msgstr "perplejo/a" + +#: ../../include/text.php:1043 +msgid "interested" +msgstr "interesado/a" + +#: ../../include/text.php:1044 +msgid "bitter" +msgstr "amargado/a" + +#: ../../include/text.php:1045 +msgid "cheerful" +msgstr "alegre" + +#: ../../include/text.php:1046 +msgid "alive" +msgstr "animado/a" + +#: ../../include/text.php:1047 +msgid "annoyed" +msgstr "molesto/a" + +#: ../../include/text.php:1048 +msgid "anxious" +msgstr "ansioso/a" + +#: ../../include/text.php:1049 +msgid "cranky" +msgstr "de mal humor" + +#: ../../include/text.php:1050 +msgid "disturbed" +msgstr "perturbado/a" + +#: ../../include/text.php:1051 +msgid "frustrated" +msgstr "frustrado/a" + +#: ../../include/text.php:1052 +msgid "depressed" +msgstr "deprimido/a" + +#: ../../include/text.php:1053 +msgid "motivated" +msgstr "motivado/a" + +#: ../../include/text.php:1054 +msgid "relaxed" +msgstr "relajado/a" + +#: ../../include/text.php:1055 +msgid "surprised" +msgstr "sorprendido/a" + +#: ../../include/text.php:1237 ../../include/js_strings.php:70 +msgid "Monday" +msgstr "lunes" + +#: ../../include/text.php:1237 ../../include/js_strings.php:71 +msgid "Tuesday" +msgstr "martes" + +#: ../../include/text.php:1237 ../../include/js_strings.php:72 +msgid "Wednesday" +msgstr "miércoles" + +#: ../../include/text.php:1237 ../../include/js_strings.php:73 +msgid "Thursday" +msgstr "jueves" + +#: ../../include/text.php:1237 ../../include/js_strings.php:74 +msgid "Friday" +msgstr "viernes" + +#: ../../include/text.php:1237 ../../include/js_strings.php:75 +msgid "Saturday" +msgstr "sábado" + +#: ../../include/text.php:1237 ../../include/js_strings.php:69 +msgid "Sunday" +msgstr "domingo" + +#: ../../include/text.php:1241 ../../include/js_strings.php:45 +msgid "January" +msgstr "enero" + +#: ../../include/text.php:1241 ../../include/js_strings.php:46 +msgid "February" +msgstr "febrero" + +#: ../../include/text.php:1241 ../../include/js_strings.php:47 +msgid "March" +msgstr "marzo" + +#: ../../include/text.php:1241 ../../include/js_strings.php:48 +msgid "April" +msgstr "abril" + +#: ../../include/text.php:1241 +msgid "May" +msgstr "mayo" + +#: ../../include/text.php:1241 ../../include/js_strings.php:50 +msgid "June" +msgstr "junio" + +#: ../../include/text.php:1241 ../../include/js_strings.php:51 +msgid "July" +msgstr "julio" + +#: ../../include/text.php:1241 ../../include/js_strings.php:52 +msgid "August" +msgstr "agosto" + +#: ../../include/text.php:1241 ../../include/js_strings.php:53 +msgid "September" +msgstr "septiembre" + +#: ../../include/text.php:1241 ../../include/js_strings.php:54 +msgid "October" +msgstr "octubre" + +#: ../../include/text.php:1241 ../../include/js_strings.php:55 +msgid "November" +msgstr "noviembre" + +#: ../../include/text.php:1241 ../../include/js_strings.php:56 +msgid "December" +msgstr "diciembre" + +#: ../../include/text.php:1318 ../../include/text.php:1322 +msgid "Unknown Attachment" +msgstr "Adjunto no reconocido" + +#: ../../include/text.php:1324 +msgid "unknown" +msgstr "desconocido" + +#: ../../include/text.php:1360 +msgid "remove category" +msgstr "eliminar categoría" + +#: ../../include/text.php:1437 +msgid "remove from file" +msgstr "eliminar del fichero" + +#: ../../include/text.php:1734 ../../include/text.php:1805 +msgid "default" +msgstr "por defecto" + +#: ../../include/text.php:1742 +msgid "Page layout" +msgstr "Plantilla de la página" + +#: ../../include/text.php:1742 +msgid "You can create your own with the layouts tool" +msgstr "Puede crear su propia disposición gráfica con la herramienta de plantillas" + +#: ../../include/text.php:1784 +msgid "Page content type" +msgstr "Tipo de contenido de la página" + +#: ../../include/text.php:1817 +msgid "Select an alternate language" +msgstr "Seleccionar un idioma alternativo" + +#: ../../include/text.php:1934 +msgid "activity" +msgstr "la actividad" + +#: ../../include/text.php:2235 +msgid "Design Tools" +msgstr "Herramientas de diseño web" + +#: ../../include/text.php:2241 +msgid "Pages" +msgstr "Páginas" + +#: ../../include/auth.php:147 +msgid "Logged out." +msgstr "Desconectado/a." + +#: ../../include/auth.php:274 +msgid "Failed authentication" +msgstr "Autenticación fallida." + +#: ../../include/permissions.php:26 +msgid "Can view my normal stream and posts" +msgstr "Pueden verse mi actividad y publicaciones normales" + +#: ../../include/permissions.php:30 +msgid "Can view my webpages" +msgstr "Pueden verse mis páginas web" + +#: ../../include/permissions.php:34 +msgid "Can post on my channel page (\"wall\")" +msgstr "Pueden crearse entradas en mi página de inicio del canal (“muro”)" + +#: ../../include/permissions.php:37 +msgid "Can like/dislike stuff" +msgstr "Puede marcarse contenido como me gusta/no me gusta" + +#: ../../include/permissions.php:37 +msgid "Profiles and things other than posts/comments" +msgstr "Perfiles y otras cosas aparte de publicaciones/comentarios" + +#: ../../include/permissions.php:39 +msgid "Can forward to all my channel contacts via post @mentions" +msgstr "Puede enviarse una entrada a todos mis contactos del canal mediante una @mención" + +#: ../../include/permissions.php:39 +msgid "Advanced - useful for creating group forum channels" +msgstr "Avanzado - útil para crear canales de foros de discusión o grupos" + +#: ../../include/permissions.php:40 +msgid "Can chat with me (when available)" +msgstr "Se puede charlar conmigo (cuando esté disponible)" + +#: ../../include/permissions.php:41 +msgid "Can write to my file storage and photos" +msgstr "Puede escribirse en mi repositorio de ficheros y fotos" + +#: ../../include/permissions.php:42 +msgid "Can edit my webpages" +msgstr "Pueden editarse mis páginas web" + +#: ../../include/permissions.php:44 +msgid "Somewhat advanced - very useful in open communities" +msgstr "Algo avanzado - muy útil en comunidades abiertas" + +#: ../../include/permissions.php:46 +msgid "Can administer my channel resources" +msgstr "Pueden administrarse mis recursos del canal" + +#: ../../include/permissions.php:46 msgid "" -"This is your default setting for who can view your default channel profile" -msgstr "Esta es su configuración por defecto para establecer quién puede ver su perfil del canal predeterminado" - -#: ../../include/PermissionDescription.php:163 -msgid "This is your default setting for who can view your connections" -msgstr "Este es su ajuste predeterminado para establecer quién puede ver sus conexiones" - -#: ../../include/PermissionDescription.php:164 -msgid "" -"This is your default setting for who can view your file storage and photos" -msgstr "Este es su ajuste predeterminado para establecer quién puede ver su repositorio de ficheros y sus fotos" - -#: ../../include/PermissionDescription.php:165 -msgid "This is your default setting for the audience of your webpages" -msgstr "Este es el ajuste predeterminado para establecer la audiencia de sus páginas web" - -#: ../../include/account.php:28 -msgid "Not a valid email address" -msgstr "Dirección de correo no válida" - -#: ../../include/account.php:30 -msgid "Your email domain is not among those allowed on this site" -msgstr "Su dirección de correo no pertenece a ninguno de los dominios permitidos en este sitio." - -#: ../../include/account.php:36 -msgid "Your email address is already registered at this site." -msgstr "Su dirección de correo está ya registrada en este sitio." - -#: ../../include/account.php:68 -msgid "An invitation is required." -msgstr "Es obligatorio que le inviten." - -#: ../../include/account.php:72 -msgid "Invitation could not be verified." -msgstr "No se ha podido verificar su invitación." - -#: ../../include/account.php:122 -msgid "Please enter the required information." -msgstr "Por favor introduzca la información requerida." - -#: ../../include/account.php:189 -msgid "Failed to store account information." -msgstr "La información de la cuenta no se ha podido guardar." - -#: ../../include/account.php:249 -#, php-format -msgid "Registration confirmation for %s" -msgstr "Confirmación de registro para %s" - -#: ../../include/account.php:315 -#, php-format -msgid "Registration request at %s" -msgstr "Solicitud de registro en %s" - -#: ../../include/account.php:317 ../../include/account.php:344 -#: ../../include/account.php:404 ../../include/network.php:1871 -msgid "Administrator" -msgstr "Administrador" - -#: ../../include/account.php:339 -msgid "your registration password" -msgstr "su contraseña de registro" - -#: ../../include/account.php:342 ../../include/account.php:402 -#, php-format -msgid "Registration details for %s" -msgstr "Detalles del registro de %s" - -#: ../../include/account.php:414 -msgid "Account approved." -msgstr "Cuenta aprobada." - -#: ../../include/account.php:454 -#, php-format -msgid "Registration revoked for %s" -msgstr "Registro revocado para %s" - -#: ../../include/account.php:506 -msgid "Account verified. Please login." -msgstr "Cuenta verificada. Por favor, inicie sesión." - -#: ../../include/account.php:723 ../../include/account.php:725 -msgid "Click here to upgrade." -msgstr "Pulse aquí para actualizar" - -#: ../../include/account.php:731 -msgid "This action exceeds the limits set by your subscription plan." -msgstr "Esta acción supera los límites establecidos por su plan de suscripción " - -#: ../../include/account.php:736 -msgid "This action is not available under your subscription plan." -msgstr "Esta acción no está disponible en su plan de suscripción." - -#: ../../include/attach.php:247 ../../include/attach.php:333 -msgid "Item was not found." -msgstr "Elemento no encontrado." - -#: ../../include/attach.php:497 -msgid "No source file." -msgstr "Ningún fichero de origen" - -#: ../../include/attach.php:519 -msgid "Cannot locate file to replace" -msgstr "No se puede localizar el fichero que va a ser sustituido." - -#: ../../include/attach.php:537 -msgid "Cannot locate file to revise/update" -msgstr "No se puede localizar el fichero para revisar/actualizar" - -#: ../../include/attach.php:672 -#, php-format -msgid "File exceeds size limit of %d" -msgstr "El fichero supera el limite de tamaño de %d" - -#: ../../include/attach.php:686 -#, php-format -msgid "You have reached your limit of %1$.0f Mbytes attachment storage." -msgstr "Ha alcanzado su límite de %1$.0f Mbytes de almacenamiento de adjuntos." - -#: ../../include/attach.php:842 -msgid "File upload failed. Possible system limit or action terminated." -msgstr "Error de carga, posiblemente por limite del sistema o porque la acción ha finalizado." - -#: ../../include/attach.php:855 -msgid "Stored file could not be verified. Upload failed." -msgstr "El fichero almacenado no ha podido ser verificado. El envío ha fallado." - -#: ../../include/attach.php:909 ../../include/attach.php:925 -msgid "Path not available." -msgstr "Ruta no disponible." - -#: ../../include/attach.php:971 ../../include/attach.php:1123 -msgid "Empty pathname" -msgstr "Ruta vacía" - -#: ../../include/attach.php:997 -msgid "duplicate filename or path" -msgstr "Nombre duplicado de ruta o fichero" - -#: ../../include/attach.php:1019 -msgid "Path not found." -msgstr "Ruta no encontrada" - -#: ../../include/attach.php:1077 -msgid "mkdir failed." -msgstr "mkdir ha fallado." - -#: ../../include/attach.php:1081 -msgid "database storage failed." -msgstr "el almacenamiento en la base de datos ha fallado." - -#: ../../include/attach.php:1129 -msgid "Empty path" -msgstr "Ruta vacía" - -#: ../../include/channel.php:32 -msgid "Unable to obtain identity information from database" -msgstr "No ha sido posible obtener información sobre la identidad desde la base de datos" - -#: ../../include/channel.php:66 -msgid "Empty name" -msgstr "Nombre vacío" - -#: ../../include/channel.php:69 -msgid "Name too long" -msgstr "Nombre demasiado largo" - -#: ../../include/channel.php:180 -msgid "No account identifier" -msgstr "Ningún identificador de la cuenta" - -#: ../../include/channel.php:192 -msgid "Nickname is required." -msgstr "Se requiere un sobrenombre (alias)." - -#: ../../include/channel.php:206 -msgid "Reserved nickname. Please choose another." -msgstr "Sobrenombre en uso. Por favor, elija otro." - -#: ../../include/channel.php:211 -msgid "" -"Nickname has unsupported characters or is already being used on this site." -msgstr "El alias contiene caracteres no admitidos o está ya en uso por otros miembros de este sitio." - -#: ../../include/channel.php:287 -msgid "Unable to retrieve created identity" -msgstr "No ha sido posible recuperar la identidad creada" - -#: ../../include/channel.php:345 -msgid "Default Profile" -msgstr "Perfil principal" - -#: ../../include/channel.php:791 -msgid "Requested channel is not available." -msgstr "El canal solicitado no está disponible." - -#: ../../include/channel.php:938 -msgid "Create New Profile" -msgstr "Crear un nuevo perfil" - -#: ../../include/channel.php:958 -msgid "Visible to everybody" -msgstr "Visible para todos" - -#: ../../include/channel.php:1031 ../../include/channel.php:1142 -msgid "Gender:" -msgstr "Género:" - -#: ../../include/channel.php:1032 ../../include/channel.php:1186 -msgid "Status:" -msgstr "Estado:" - -#: ../../include/channel.php:1033 ../../include/channel.php:1197 -msgid "Homepage:" -msgstr "Página personal:" - -#: ../../include/channel.php:1034 -msgid "Online Now" -msgstr "Ahora en línea" - -#: ../../include/channel.php:1147 -msgid "Like this channel" -msgstr "Me gusta este canal" - -#: ../../include/channel.php:1171 -msgid "j F, Y" -msgstr "j F Y" - -#: ../../include/channel.php:1172 -msgid "j F" -msgstr "j F" - -#: ../../include/channel.php:1179 -msgid "Birthday:" -msgstr "Cumpleaños:" - -#: ../../include/channel.php:1192 -#, php-format -msgid "for %1$d %2$s" -msgstr "por %1$d %2$s" - -#: ../../include/channel.php:1195 -msgid "Sexual Preference:" -msgstr "Orientación sexual:" - -#: ../../include/channel.php:1201 -msgid "Tags:" -msgstr "Etiquetas:" - -#: ../../include/channel.php:1203 -msgid "Political Views:" -msgstr "Posición política:" - -#: ../../include/channel.php:1205 -msgid "Religion:" -msgstr "Religión:" - -#: ../../include/channel.php:1209 -msgid "Hobbies/Interests:" -msgstr "Aficciones o intereses:" - -#: ../../include/channel.php:1211 -msgid "Likes:" -msgstr "Me gusta:" - -#: ../../include/channel.php:1213 -msgid "Dislikes:" -msgstr "No me gusta:" - -#: ../../include/channel.php:1215 -msgid "Contact information and Social Networks:" -msgstr "Información de contacto y redes sociales:" - -#: ../../include/channel.php:1217 -msgid "My other channels:" -msgstr "Mis otros canales:" - -#: ../../include/channel.php:1219 -msgid "Musical interests:" -msgstr "Preferencias musicales:" - -#: ../../include/channel.php:1221 -msgid "Books, literature:" -msgstr "Libros, literatura:" - -#: ../../include/channel.php:1223 -msgid "Television:" -msgstr "Televisión:" - -#: ../../include/channel.php:1225 -msgid "Film/dance/culture/entertainment:" -msgstr "Cine, danza, cultura, entretenimiento:" - -#: ../../include/channel.php:1227 -msgid "Love/Romance:" -msgstr "Vida sentimental o amorosa:" - -#: ../../include/channel.php:1229 -msgid "Work/employment:" -msgstr "Trabajo:" - -#: ../../include/channel.php:1231 -msgid "School/education:" -msgstr "Estudios:" - -#: ../../include/channel.php:1251 -msgid "Like this thing" -msgstr "Me gusta esto" +"Extremely advanced. Leave this alone unless you know what you are doing" +msgstr "Muy avanzado. Déjelo a no ser que sepa bien lo que está haciendo." #: ../../include/features.php:48 msgid "General Features" @@ -8720,378 +8530,257 @@ msgid "Provide managed web pages on your channel" msgstr "Proveer páginas web gestionadas en su canal" #: ../../include/features.php:55 +msgid "Provide a wiki for your channel" +msgstr "" + +#: ../../include/features.php:56 msgid "Hide Rating" msgstr "Ocultar las valoraciones" -#: ../../include/features.php:55 +#: ../../include/features.php:56 msgid "" "Hide the rating buttons on your channel and profile pages. Note: People can " "still rate you somewhere else." msgstr "Ocultar los botones de valoración en su canal y página de perfil. Tenga en cuenta, sin embargo, que la gente podrá expresar su valoración en otros lugares." -#: ../../include/features.php:56 +#: ../../include/features.php:57 msgid "Private Notes" msgstr "Notas privadas" -#: ../../include/features.php:56 +#: ../../include/features.php:57 msgid "Enables a tool to store notes and reminders (note: not encrypted)" msgstr "Habilita una herramienta para guardar notas y recordatorios (advertencia: las notas no estarán cifradas)" -#: ../../include/features.php:57 +#: ../../include/features.php:58 msgid "Navigation Channel Select" msgstr "Navegación por el selector de canales" -#: ../../include/features.php:57 +#: ../../include/features.php:58 msgid "Change channels directly from within the navigation dropdown menu" msgstr "Cambiar de canales directamente desde el menú de navegación desplegable" -#: ../../include/features.php:58 +#: ../../include/features.php:59 msgid "Photo Location" msgstr "Ubicación de las fotos" -#: ../../include/features.php:58 +#: ../../include/features.php:59 msgid "If location data is available on uploaded photos, link this to a map." msgstr "Si los datos de ubicación están disponibles en las fotos subidas, enlazar estas a un mapa." -#: ../../include/features.php:59 +#: ../../include/features.php:60 msgid "Access Controlled Chatrooms" msgstr "Salas de chat moderadas" -#: ../../include/features.php:59 +#: ../../include/features.php:60 msgid "Provide chatrooms and chat services with access control." msgstr "Proporcionar salas y servicios de chat moderados." -#: ../../include/features.php:60 +#: ../../include/features.php:61 msgid "Smart Birthdays" msgstr "Cumpleaños inteligentes" -#: ../../include/features.php:60 +#: ../../include/features.php:61 msgid "" "Make birthday events timezone aware in case your friends are scattered " "across the planet." msgstr "Enlazar los eventos de cumpleaños con el huso horario en el caso de que sus amigos estén dispersos por el mundo." -#: ../../include/features.php:61 +#: ../../include/features.php:62 msgid "Expert Mode" msgstr "Modo de experto" -#: ../../include/features.php:61 +#: ../../include/features.php:62 msgid "Enable Expert Mode to provide advanced configuration options" msgstr "Habilitar el modo de experto para acceder a opciones avanzadas de configuración" -#: ../../include/features.php:62 +#: ../../include/features.php:63 msgid "Premium Channel" msgstr "Canal premium" -#: ../../include/features.php:62 +#: ../../include/features.php:63 msgid "" "Allows you to set restrictions and terms on those that connect with your " "channel" msgstr "Le permite configurar restricciones y normas de uso a aquellos que conectan con su canal" -#: ../../include/features.php:67 +#: ../../include/features.php:68 msgid "Post Composition Features" msgstr "Opciones para la redacción de entradas" -#: ../../include/features.php:70 +#: ../../include/features.php:71 msgid "Large Photos" msgstr "Fotos de gran tamaño" -#: ../../include/features.php:70 +#: ../../include/features.php:71 msgid "" "Include large (1024px) photo thumbnails in posts. If not enabled, use small " "(640px) photo thumbnails" msgstr "Incluir miniaturas de fotos grandes (1024px) en publicaciones. Si no está habilitado, usar miniaturas pequeñas (640px)" -#: ../../include/features.php:71 +#: ../../include/features.php:72 msgid "Automatically import channel content from other channels or feeds" msgstr "Importar automáticamente contenido de otros canales o \"feeds\"" -#: ../../include/features.php:72 +#: ../../include/features.php:73 msgid "Even More Encryption" msgstr "Más cifrado todavía" -#: ../../include/features.php:72 +#: ../../include/features.php:73 msgid "" "Allow optional encryption of content end-to-end with a shared secret key" msgstr "Permitir cifrado adicional de contenido \"punto-a-punto\" con una clave secreta compartida." -#: ../../include/features.php:73 +#: ../../include/features.php:74 msgid "Enable Voting Tools" msgstr "Permitir entradas con votación" -#: ../../include/features.php:73 +#: ../../include/features.php:74 msgid "Provide a class of post which others can vote on" msgstr "Proveer una clase de publicación en la que otros puedan votar" -#: ../../include/features.php:74 +#: ../../include/features.php:75 msgid "Delayed Posting" msgstr "Publicación aplazada" -#: ../../include/features.php:74 +#: ../../include/features.php:75 msgid "Allow posts to be published at a later date" msgstr "Permitir mensajes que se publicarán en una fecha posterior" -#: ../../include/features.php:75 +#: ../../include/features.php:76 msgid "Suppress Duplicate Posts/Comments" msgstr "Prevenir entradas o comentarios duplicados" -#: ../../include/features.php:75 +#: ../../include/features.php:76 msgid "" "Prevent posts with identical content to be published with less than two " "minutes in between submissions." msgstr "Prevenir que entradas con contenido idéntico se publiquen con menos de dos minutos de intervalo." -#: ../../include/features.php:81 +#: ../../include/features.php:82 msgid "Network and Stream Filtering" msgstr "Filtrado del contenido" -#: ../../include/features.php:82 +#: ../../include/features.php:83 msgid "Search by Date" msgstr "Buscar por fecha" -#: ../../include/features.php:82 +#: ../../include/features.php:83 msgid "Ability to select posts by date ranges" msgstr "Capacidad de seleccionar entradas por rango de fechas" -#: ../../include/features.php:83 ../../include/group.php:311 +#: ../../include/features.php:84 ../../include/group.php:311 msgid "Privacy Groups" msgstr "Grupos de canales" -#: ../../include/features.php:83 +#: ../../include/features.php:84 msgid "Enable management and selection of privacy groups" msgstr "Activar la gestión y selección de grupos de canales" -#: ../../include/features.php:84 +#: ../../include/features.php:85 ../../include/widgets.php:281 +msgid "Saved Searches" +msgstr "Búsquedas guardadas" + +#: ../../include/features.php:85 msgid "Save search terms for re-use" msgstr "Guardar términos de búsqueda para su reutilización" -#: ../../include/features.php:85 +#: ../../include/features.php:86 msgid "Network Personal Tab" msgstr "Actividad personal" -#: ../../include/features.php:85 +#: ../../include/features.php:86 msgid "Enable tab to display only Network posts that you've interacted on" msgstr "Habilitar una pestaña en la cual se muestren solo las entradas en las que ha participado." -#: ../../include/features.php:86 +#: ../../include/features.php:87 msgid "Network New Tab" msgstr "Contenido nuevo" -#: ../../include/features.php:86 +#: ../../include/features.php:87 msgid "Enable tab to display all new Network activity" msgstr "Habilitar una pestaña en la que se muestre solo el contenido nuevo" -#: ../../include/features.php:87 +#: ../../include/features.php:88 msgid "Affinity Tool" msgstr "Herramienta de afinidad" -#: ../../include/features.php:87 +#: ../../include/features.php:88 msgid "Filter stream activity by depth of relationships" msgstr "Filtrar el contenido según la profundidad de las relaciones" -#: ../../include/features.php:88 +#: ../../include/features.php:89 msgid "Connection Filtering" msgstr "Filtrado de conexiones" -#: ../../include/features.php:88 +#: ../../include/features.php:89 msgid "Filter incoming posts from connections based on keywords/content" msgstr "Filtrar publicaciones entrantes de conexiones por palabras clave o contenido" -#: ../../include/features.php:89 +#: ../../include/features.php:90 msgid "Show channel suggestions" msgstr "Mostrar sugerencias de canales" -#: ../../include/features.php:94 +#: ../../include/features.php:95 msgid "Post/Comment Tools" msgstr "Gestión de entradas y comentarios" -#: ../../include/features.php:95 +#: ../../include/features.php:96 msgid "Community Tagging" msgstr "Etiquetas de la comunidad" -#: ../../include/features.php:95 +#: ../../include/features.php:96 msgid "Ability to tag existing posts" msgstr "Capacidad de etiquetar entradas existentes" -#: ../../include/features.php:96 +#: ../../include/features.php:97 msgid "Post Categories" msgstr "Categorías de entradas" -#: ../../include/features.php:96 +#: ../../include/features.php:97 msgid "Add categories to your posts" msgstr "Añadir categorías a sus publicaciones" -#: ../../include/features.php:97 +#: ../../include/features.php:98 msgid "Emoji Reactions" msgstr "Emoticonos \"emoji\"" -#: ../../include/features.php:97 +#: ../../include/features.php:98 msgid "Add emoji reaction ability to posts" msgstr "Activar la capacidad de añadir un emoticono \"emoji\" a las entradas" -#: ../../include/features.php:98 +#: ../../include/features.php:99 ../../include/widgets.php:310 +#: ../../include/contact_widgets.php:53 +msgid "Saved Folders" +msgstr "Carpetas guardadas" + +#: ../../include/features.php:99 msgid "Ability to file posts under folders" msgstr "Capacidad de archivar entradas en carpetas" -#: ../../include/features.php:99 +#: ../../include/features.php:100 msgid "Dislike Posts" msgstr "Desagrado de publicaciones" -#: ../../include/features.php:99 +#: ../../include/features.php:100 msgid "Ability to dislike posts/comments" msgstr "Capacidad de mostrar desacuerdo con el contenido de entradas y comentarios" -#: ../../include/features.php:100 +#: ../../include/features.php:101 msgid "Star Posts" msgstr "Entradas destacadas" -#: ../../include/features.php:100 +#: ../../include/features.php:101 msgid "Ability to mark special posts with a star indicator" msgstr "Capacidad de marcar entradas destacadas con un indicador de estrella" -#: ../../include/features.php:101 +#: ../../include/features.php:102 msgid "Tag Cloud" msgstr "Nube de etiquetas" -#: ../../include/features.php:101 +#: ../../include/features.php:102 msgid "Provide a personal tag cloud on your channel page" msgstr "Proveer nube de etiquetas personal en su página de canal" -#: ../../include/oembed.php:324 -msgid "Embedded content" -msgstr "Contenido incorporado" - -#: ../../include/oembed.php:333 -msgid "Embedding disabled" -msgstr "Incrustación deshabilitada" - -#: ../../include/acl_selectors.php:271 -msgid "Who can see this?" -msgstr "¿Quién puede ver esto?" - -#: ../../include/acl_selectors.php:272 -msgid "Custom selection" -msgstr "Selección personalizada" - -#: ../../include/acl_selectors.php:273 -msgid "" -"Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit" -" the scope of \"Show\"." -msgstr "Seleccione \"Mostrar\" para permitir la visualización. La opción \"No mostrar\" le permite anular y limitar el alcance de \"Mostrar\"." - -#: ../../include/acl_selectors.php:274 -msgid "Show" -msgstr "Mostrar" - -#: ../../include/acl_selectors.php:275 -msgid "Don't show" -msgstr "No mostrar" - -#: ../../include/acl_selectors.php:281 -msgid "Other networks and post services" -msgstr "Otras redes y servicios de publicación" - -#: ../../include/acl_selectors.php:311 -#, php-format -msgid "" -"Post permissions %s cannot be changed %s after a post is shared.
These" -" permissions set who is allowed to view the post." -msgstr "Los permisos de la entrada %s no se pueden cambiar %s una vez que se ha compartido.
Estos permisos establecen quién está autorizado para ver el mensaje." - -#: ../../include/auth.php:105 -msgid "Logged out." -msgstr "Desconectado/a." - -#: ../../include/auth.php:212 -msgid "Failed authentication" -msgstr "Autenticación fallida." - -#: ../../include/datetime.php:135 -msgid "Birthday" -msgstr "Cumpleaños" - -#: ../../include/datetime.php:137 -msgid "Age: " -msgstr "Edad:" - -#: ../../include/datetime.php:139 -msgid "YYYY-MM-DD or MM-DD" -msgstr "AAAA-MM-DD o MM-DD" - -#: ../../include/datetime.php:272 ../../boot.php:2470 -msgid "never" -msgstr "nunca" - -#: ../../include/datetime.php:278 -msgid "less than a second ago" -msgstr "hace un instante" - -#: ../../include/datetime.php:296 -#, php-format -msgctxt "e.g. 22 hours ago, 1 minute ago" -msgid "%1$d %2$s ago" -msgstr "hace %1$d %2$s" - -#: ../../include/datetime.php:307 -msgctxt "relative_date" -msgid "year" -msgid_plural "years" -msgstr[0] "año" -msgstr[1] "años" - -#: ../../include/datetime.php:310 -msgctxt "relative_date" -msgid "month" -msgid_plural "months" -msgstr[0] "mes" -msgstr[1] "meses" - -#: ../../include/datetime.php:313 -msgctxt "relative_date" -msgid "week" -msgid_plural "weeks" -msgstr[0] "semana" -msgstr[1] "semanas" - -#: ../../include/datetime.php:316 -msgctxt "relative_date" -msgid "day" -msgid_plural "days" -msgstr[0] "día" -msgstr[1] "días" - -#: ../../include/datetime.php:319 -msgctxt "relative_date" -msgid "hour" -msgid_plural "hours" -msgstr[0] "hora" -msgstr[1] "horas" - -#: ../../include/datetime.php:322 -msgctxt "relative_date" -msgid "minute" -msgid_plural "minutes" -msgstr[0] "minuto" -msgstr[1] "minutos" - -#: ../../include/datetime.php:325 -msgctxt "relative_date" -msgid "second" -msgid_plural "seconds" -msgstr[0] "segundo" -msgstr[1] "segundos" - -#: ../../include/datetime.php:562 -#, php-format -msgid "%1$s's birthday" -msgstr "Cumpleaños de %1$s" - -#: ../../include/datetime.php:563 -#, php-format -msgid "Happy Birthday %1$s" -msgstr "Feliz cumpleaños %1$s" - #: ../../include/group.php:26 msgid "" "A deleted group with this name was revived. Existing item permissions " @@ -9119,21 +8808,583 @@ msgstr "Añadir un grupo de canales" msgid "Channels not in any privacy group" msgstr "Sin canales en ningún grupo" +#: ../../include/group.php:316 ../../include/widgets.php:282 +msgid "add" +msgstr "añadir" + +#: ../../include/event.php:22 ../../include/event.php:69 +#: ../../include/bb2diaspora.php:485 +msgid "l F d, Y \\@ g:i A" +msgstr "l d de F, Y \\@ G:i" + +#: ../../include/event.php:30 ../../include/event.php:73 +#: ../../include/bb2diaspora.php:491 +msgid "Starts:" +msgstr "Comienza:" + +#: ../../include/event.php:40 ../../include/event.php:77 +#: ../../include/bb2diaspora.php:499 +msgid "Finishes:" +msgstr "Finaliza:" + +#: ../../include/event.php:814 +msgid "This event has been added to your calendar." +msgstr "Este evento ha sido añadido a su calendario." + +#: ../../include/event.php:1014 +msgid "Not specified" +msgstr "Sin especificar" + +#: ../../include/event.php:1015 +msgid "Needs Action" +msgstr "Necesita de una intervención" + +#: ../../include/event.php:1016 +msgid "Completed" +msgstr "Completado/a" + +#: ../../include/event.php:1017 +msgid "In Process" +msgstr "En proceso" + +#: ../../include/event.php:1018 +msgid "Cancelled" +msgstr "Cancelado/a" + +#: ../../include/account.php:28 +msgid "Not a valid email address" +msgstr "Dirección de correo no válida" + +#: ../../include/account.php:30 +msgid "Your email domain is not among those allowed on this site" +msgstr "Su dirección de correo no pertenece a ninguno de los dominios permitidos en este sitio." + +#: ../../include/account.php:36 +msgid "Your email address is already registered at this site." +msgstr "Su dirección de correo está ya registrada en este sitio." + +#: ../../include/account.php:68 +msgid "An invitation is required." +msgstr "Es obligatorio que le inviten." + +#: ../../include/account.php:72 +msgid "Invitation could not be verified." +msgstr "No se ha podido verificar su invitación." + +#: ../../include/account.php:122 +msgid "Please enter the required information." +msgstr "Por favor introduzca la información requerida." + +#: ../../include/account.php:189 +msgid "Failed to store account information." +msgstr "La información de la cuenta no se ha podido guardar." + +#: ../../include/account.php:249 +#, php-format +msgid "Registration confirmation for %s" +msgstr "Confirmación de registro para %s" + +#: ../../include/account.php:315 +#, php-format +msgid "Registration request at %s" +msgstr "Solicitud de registro en %s" + +#: ../../include/account.php:339 +msgid "your registration password" +msgstr "su contraseña de registro" + +#: ../../include/account.php:342 ../../include/account.php:402 +#, php-format +msgid "Registration details for %s" +msgstr "Detalles del registro de %s" + +#: ../../include/account.php:414 +msgid "Account approved." +msgstr "Cuenta aprobada." + +#: ../../include/account.php:454 +#, php-format +msgid "Registration revoked for %s" +msgstr "Registro revocado para %s" + +#: ../../include/account.php:739 ../../include/account.php:741 +msgid "Click here to upgrade." +msgstr "Pulse aquí para actualizar" + +#: ../../include/account.php:747 +msgid "This action exceeds the limits set by your subscription plan." +msgstr "Esta acción supera los límites establecidos por su plan de suscripción " + +#: ../../include/account.php:752 +msgid "This action is not available under your subscription plan." +msgstr "Esta acción no está disponible en su plan de suscripción." + +#: ../../include/follow.php:27 +msgid "Channel is blocked on this site." +msgstr "El canal está bloqueado en este sitio." + +#: ../../include/follow.php:32 +msgid "Channel location missing." +msgstr "Falta la dirección del canal." + +#: ../../include/follow.php:80 +msgid "Response from remote channel was incomplete." +msgstr "Respuesta incompleta del canal." + +#: ../../include/follow.php:97 +msgid "Channel was deleted and no longer exists." +msgstr "El canal ha sido eliminado y ya no existe." + +#: ../../include/follow.php:147 ../../include/follow.php:183 +msgid "Protocol disabled." +msgstr "Protocolo deshabilitado." + +#: ../../include/follow.php:171 +msgid "Channel discovery failed." +msgstr "El intento de acceder al canal ha fallado." + +#: ../../include/follow.php:210 +msgid "Cannot connect to yourself." +msgstr "No puede conectarse consigo mismo." + +#: ../../include/attach.php:247 ../../include/attach.php:333 +msgid "Item was not found." +msgstr "Elemento no encontrado." + +#: ../../include/attach.php:499 +msgid "No source file." +msgstr "Ningún fichero de origen" + +#: ../../include/attach.php:521 +msgid "Cannot locate file to replace" +msgstr "No se puede localizar el fichero que va a ser sustituido." + +#: ../../include/attach.php:539 +msgid "Cannot locate file to revise/update" +msgstr "No se puede localizar el fichero para revisar/actualizar" + +#: ../../include/attach.php:674 +#, php-format +msgid "File exceeds size limit of %d" +msgstr "El fichero supera el limite de tamaño de %d" + +#: ../../include/attach.php:688 +#, php-format +msgid "You have reached your limit of %1$.0f Mbytes attachment storage." +msgstr "Ha alcanzado su límite de %1$.0f Mbytes de almacenamiento de adjuntos." + +#: ../../include/attach.php:846 +msgid "File upload failed. Possible system limit or action terminated." +msgstr "Error de carga, posiblemente por limite del sistema o porque la acción ha finalizado." + +#: ../../include/attach.php:859 +msgid "Stored file could not be verified. Upload failed." +msgstr "El fichero almacenado no ha podido ser verificado. El envío ha fallado." + +#: ../../include/attach.php:915 ../../include/attach.php:931 +msgid "Path not available." +msgstr "Ruta no disponible." + +#: ../../include/attach.php:977 ../../include/attach.php:1129 +msgid "Empty pathname" +msgstr "Ruta vacía" + +#: ../../include/attach.php:1003 +msgid "duplicate filename or path" +msgstr "Nombre duplicado de ruta o fichero" + +#: ../../include/attach.php:1025 +msgid "Path not found." +msgstr "Ruta no encontrada" + +#: ../../include/attach.php:1083 +msgid "mkdir failed." +msgstr "mkdir ha fallado." + +#: ../../include/attach.php:1087 +msgid "database storage failed." +msgstr "el almacenamiento en la base de datos ha fallado." + +#: ../../include/attach.php:1135 +msgid "Empty path" +msgstr "Ruta vacía" + +#: ../../include/bbcode.php:123 ../../include/bbcode.php:878 +#: ../../include/bbcode.php:881 ../../include/bbcode.php:886 +#: ../../include/bbcode.php:889 ../../include/bbcode.php:892 +#: ../../include/bbcode.php:895 ../../include/bbcode.php:900 +#: ../../include/bbcode.php:903 ../../include/bbcode.php:908 +#: ../../include/bbcode.php:911 ../../include/bbcode.php:914 +#: ../../include/bbcode.php:917 +msgid "Image/photo" +msgstr "Imagen/foto" + +#: ../../include/bbcode.php:162 ../../include/bbcode.php:928 +msgid "Encrypted content" +msgstr "Contenido cifrado" + +#: ../../include/bbcode.php:178 +#, php-format +msgid "Install %s element: " +msgstr "Instalar el elemento %s:" + +#: ../../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 "Esta entrada contiene el elemento instalable %s, sin embargo le faltan permisos para instalarlo en este sitio." + +#: ../../include/bbcode.php:261 +#, php-format +msgid "%1$s wrote the following %2$s %3$s" +msgstr "%1$s escribió %2$s siguiente %3$s" + +#: ../../include/bbcode.php:338 ../../include/bbcode.php:346 +msgid "Click to open/close" +msgstr "Pulsar para abrir/cerrar" + +#: ../../include/bbcode.php:346 +msgid "spoiler" +msgstr "spoiler" + +#: ../../include/bbcode.php:619 +msgid "Different viewers will see this text differently" +msgstr "Visitantes diferentes verán este texto de forma distinta" + +#: ../../include/bbcode.php:866 +msgid "$1 wrote:" +msgstr "$1 escribió:" + +#: ../../include/items.php:897 ../../include/items.php:942 +msgid "(Unknown)" +msgstr "(Desconocido)" + +#: ../../include/items.php:1141 +msgid "Visible to anybody on the internet." +msgstr "Visible para cualquiera en internet." + +#: ../../include/items.php:1143 +msgid "Visible to you only." +msgstr "Visible sólo para usted." + +#: ../../include/items.php:1145 +msgid "Visible to anybody in this network." +msgstr "Visible para cualquiera en esta red." + +#: ../../include/items.php:1147 +msgid "Visible to anybody authenticated." +msgstr "Visible para cualquiera que esté autenticado." + +#: ../../include/items.php:1149 +#, php-format +msgid "Visible to anybody on %s." +msgstr "Visible para cualquiera en %s." + +#: ../../include/items.php:1151 +msgid "Visible to all connections." +msgstr "Visible para todas las conexiones." + +#: ../../include/items.php:1153 +msgid "Visible to approved connections." +msgstr "Visible para las conexiones permitidas." + +#: ../../include/items.php:1155 +msgid "Visible to specific connections." +msgstr "Visible para conexiones específicas." + +#: ../../include/items.php:3918 +msgid "Privacy group is empty." +msgstr "El grupo de canales está vacío." + +#: ../../include/items.php:3925 +#, php-format +msgid "Privacy group: %s" +msgstr "Grupo de canales: %s" + +#: ../../include/items.php:3937 +msgid "Connection not found." +msgstr "Conexión no encontrada" + +#: ../../include/items.php:4290 +msgid "profile photo" +msgstr "foto del perfil" + +#: ../../include/oembed.php:336 +msgid "Embedded content" +msgstr "Contenido incorporado" + +#: ../../include/oembed.php:345 +msgid "Embedding disabled" +msgstr "Incrustación deshabilitada" + +#: ../../include/widgets.php:103 +msgid "System" +msgstr "Sistema" + +#: ../../include/widgets.php:106 +msgid "New App" +msgstr "Nueva aplicación (app)" + +#: ../../include/widgets.php:154 +msgid "Suggestions" +msgstr "Sugerencias" + +#: ../../include/widgets.php:155 +msgid "See more..." +msgstr "Ver más..." + +#: ../../include/widgets.php:175 +#, php-format +msgid "You have %1$.0f of %2$.0f allowed connections." +msgstr "Tiene %1$.0f de %2$.0f conexiones permitidas." + +#: ../../include/widgets.php:181 +msgid "Add New Connection" +msgstr "Añadir nueva conexión" + +#: ../../include/widgets.php:182 +msgid "Enter channel address" +msgstr "Dirección del canal" + +#: ../../include/widgets.php:183 +msgid "Examples: bob@example.com, https://example.com/barbara" +msgstr "Ejemplos: manuel@ejemplo.com, https://ejemplo.com/carmen" + +#: ../../include/widgets.php:199 +msgid "Notes" +msgstr "Notas" + +#: ../../include/widgets.php:273 +msgid "Remove term" +msgstr "Eliminar término" + +#: ../../include/widgets.php:313 ../../include/widgets.php:432 +#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:94 +msgid "Everything" +msgstr "Todo" + +#: ../../include/widgets.php:354 +msgid "Archives" +msgstr "Hemeroteca" + +#: ../../include/widgets.php:516 +msgid "Refresh" +msgstr "Recargar" + +#: ../../include/widgets.php:556 +msgid "Account settings" +msgstr "Configuración de la cuenta" + +#: ../../include/widgets.php:562 +msgid "Channel settings" +msgstr "Configuración del canal" + +#: ../../include/widgets.php:571 +msgid "Additional features" +msgstr "Funcionalidades" + +#: ../../include/widgets.php:578 +msgid "Feature/Addon settings" +msgstr "Complementos" + +#: ../../include/widgets.php:584 +msgid "Display settings" +msgstr "Ajustes de visualización" + +#: ../../include/widgets.php:591 +msgid "Manage locations" +msgstr "Gestión de ubicaciones (clones) del canal" + +#: ../../include/widgets.php:600 +msgid "Export channel" +msgstr "Exportar canal" + +#: ../../include/widgets.php:607 +msgid "Connected apps" +msgstr "Aplicaciones (apps) conectadas" + +#: ../../include/widgets.php:631 +msgid "Premium Channel Settings" +msgstr "Configuración del canal premium" + +#: ../../include/widgets.php:660 +msgid "Private Mail Menu" +msgstr "Menú de correo privado" + +#: ../../include/widgets.php:662 +msgid "Combined View" +msgstr "Vista combinada" + +#: ../../include/widgets.php:694 ../../include/widgets.php:706 +msgid "Conversations" +msgstr "Conversaciones" + +#: ../../include/widgets.php:698 +msgid "Received Messages" +msgstr "Mensajes recibidos" + +#: ../../include/widgets.php:702 +msgid "Sent Messages" +msgstr "Enviar mensajes" + +#: ../../include/widgets.php:716 +msgid "No messages." +msgstr "Sin mensajes." + +#: ../../include/widgets.php:734 +msgid "Delete conversation" +msgstr "Eliminar conversación" + +#: ../../include/widgets.php:760 +msgid "Events Tools" +msgstr "Gestión de eventos" + +#: ../../include/widgets.php:761 +msgid "Export Calendar" +msgstr "Exportar el calendario" + +#: ../../include/widgets.php:762 +msgid "Import Calendar" +msgstr "Importar un calendario" + +#: ../../include/widgets.php:840 +msgid "Overview" +msgstr "Resumen" + +#: ../../include/widgets.php:847 +msgid "Chat Members" +msgstr "Miembros del chat" + +#: ../../include/widgets.php:869 +msgid "Wiki List" +msgstr "Lista de wikis" + +#: ../../include/widgets.php:907 +msgid "Wiki Pages" +msgstr "Páginas del wiki" + +#: ../../include/widgets.php:942 +msgid "Bookmarked Chatrooms" +msgstr "Salas de chat preferidas" + +#: ../../include/widgets.php:965 +msgid "Suggested Chatrooms" +msgstr "Salas de chat sugeridas" + +#: ../../include/widgets.php:1111 ../../include/widgets.php:1223 +msgid "photo/image" +msgstr "foto/imagen" + +#: ../../include/widgets.php:1166 +msgid "Click to show more" +msgstr "Hacer clic para ver más" + +#: ../../include/widgets.php:1317 +msgid "Rating Tools" +msgstr "Valoraciones" + +#: ../../include/widgets.php:1321 ../../include/widgets.php:1323 +msgid "Rate Me" +msgstr "Valorar este canal" + +#: ../../include/widgets.php:1326 +msgid "View Ratings" +msgstr "Mostrar las valoraciones" + +#: ../../include/widgets.php:1410 +msgid "Forums" +msgstr "Foros" + +#: ../../include/widgets.php:1439 +msgid "Tasks" +msgstr "Tareas" + +#: ../../include/widgets.php:1448 +msgid "Documentation" +msgstr "Documentación" + +#: ../../include/widgets.php:1450 +msgid "Project/Site Information" +msgstr "Información sobre el proyecto o sitio" + +#: ../../include/widgets.php:1451 +msgid "For Members" +msgstr "Para los miembros" + +#: ../../include/widgets.php:1452 +msgid "For Administrators" +msgstr "Para los administradores" + +#: ../../include/widgets.php:1453 +msgid "For Developers" +msgstr "Para los desarrolladores" + +#: ../../include/widgets.php:1477 ../../include/widgets.php:1515 +msgid "Member registrations waiting for confirmation" +msgstr "Inscripciones de nuevos miembros pendientes de aprobación" + +#: ../../include/widgets.php:1483 +msgid "Inspect queue" +msgstr "Examinar la cola" + +#: ../../include/widgets.php:1485 +msgid "DB updates" +msgstr "Actualizaciones de la base de datos" + +#: ../../include/widgets.php:1511 +msgid "Plugin Features" +msgstr "Extensiones" + +#: ../../include/activities.php:41 +msgid " and " +msgstr " y " + +#: ../../include/activities.php:49 +msgid "public profile" +msgstr "el perfil público" + +#: ../../include/activities.php:58 +#, php-format +msgid "%1$s changed %2$s to “%3$s”" +msgstr "%1$s ha cambiado %2$s a “%3$s”" + +#: ../../include/activities.php:59 +#, php-format +msgid "Visit %1$s's %2$s" +msgstr "Visitar %2$s de %1$s" + +#: ../../include/activities.php:62 +#, php-format +msgid "%1$s has an updated %2$s, changing %3$s." +msgstr "%1$s ha actualizado %2$s, cambiando %3$s." + +#: ../../include/bb2diaspora.php:398 +msgid "Attachments:" +msgstr "Ficheros adjuntos:" + +#: ../../include/bb2diaspora.php:487 +msgid "$Projectname event notification:" +msgstr "Notificación de eventos de $Projectname:" + #: ../../include/js_strings.php:5 msgid "Delete this item?" msgstr "¿Borrar este elemento?" #: ../../include/js_strings.php:8 -msgid "[-] show less" -msgstr "[-] mostrar menos" +#, php-format +msgid "%s show less" +msgstr "" #: ../../include/js_strings.php:9 -msgid "[+] expand" -msgstr "[+] expandir" +#, php-format +msgid "%s expand" +msgstr "" #: ../../include/js_strings.php:10 -msgid "[-] collapse" -msgstr "[-] contraer" +#, php-format +msgid "%s collapse" +msgstr "" #: ../../include/js_strings.php:11 msgid "Password too short" @@ -9363,278 +9614,223 @@ msgctxt "calendar" msgid "All day" msgstr "Todos los días" -#: ../../include/network.php:657 -msgid "view full size" -msgstr "Ver en el tamaño original" - -#: ../../include/network.php:1885 -msgid "No Subject" -msgstr "Sin asunto" - -#: ../../include/network.php:2146 ../../include/network.php:2147 -msgid "Friendica" -msgstr "Friendica" - -#: ../../include/network.php:2148 -msgid "OStatus" -msgstr "OStatus" - -#: ../../include/network.php:2149 -msgid "GNU-Social" -msgstr "GNU Social" - -#: ../../include/network.php:2150 -msgid "RSS/Atom" -msgstr "RSS/Atom" - -#: ../../include/network.php:2152 -msgid "Diaspora" -msgstr "Diaspora" - -#: ../../include/network.php:2153 -msgid "Facebook" -msgstr "Facebook" - -#: ../../include/network.php:2154 -msgid "Zot" -msgstr "Zot" - -#: ../../include/network.php:2155 -msgid "LinkedIn" -msgstr "LinkedIn" - -#: ../../include/network.php:2156 -msgid "XMPP/IM" -msgstr "XMPP/IM" - -#: ../../include/network.php:2157 -msgid "MySpace" -msgstr "MySpace" - -#: ../../include/photos.php:110 +#: ../../include/contact_widgets.php:11 #, php-format -msgid "Image exceeds website size limit of %lu bytes" -msgstr "La imagen excede el límite de %lu bytes del sitio" +msgid "%d invitation available" +msgid_plural "%d invitations available" +msgstr[0] "%d invitación pendiente" +msgstr[1] "%d invitaciones disponibles" -#: ../../include/photos.php:117 -msgid "Image file is empty." -msgstr "El fichero de imagen está vacío. " +#: ../../include/contact_widgets.php:19 +msgid "Find Channels" +msgstr "Encontrar canales" -#: ../../include/photos.php:255 -msgid "Photo storage failed." -msgstr "La foto no ha podido ser guardada." +#: ../../include/contact_widgets.php:20 +msgid "Enter name or interest" +msgstr "Introducir nombre o interés" -#: ../../include/photos.php:295 -msgid "a new photo" -msgstr "una nueva foto" +#: ../../include/contact_widgets.php:21 +msgid "Connect/Follow" +msgstr "Conectar/Seguir" -#: ../../include/photos.php:299 +#: ../../include/contact_widgets.php:22 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "Ejemplos: José Fernández, Pesca" + +#: ../../include/contact_widgets.php:26 +msgid "Random Profile" +msgstr "Perfil aleatorio" + +#: ../../include/contact_widgets.php:27 +msgid "Invite Friends" +msgstr "Invitar a amigos" + +#: ../../include/contact_widgets.php:29 +msgid "Advanced example: name=fred and country=iceland" +msgstr "Ejemplo avanzado: nombre=juan y país=españa" + +#: ../../include/contact_widgets.php:122 #, php-format -msgctxt "photo_upload" -msgid "%1$s posted %2$s to %3$s" -msgstr "%1$s ha publicado %2$s en %3$s" +msgid "%d connection in common" +msgid_plural "%d connections in common" +msgstr[0] "%d conexión en común" +msgstr[1] "%d conexiones en común" -#: ../../include/photos.php:506 -msgid "Upload New Photos" -msgstr "Subir nuevas fotos" +#: ../../include/contact_widgets.php:127 +msgid "show more" +msgstr "mostrar más" -#: ../../include/zot.php:699 +#: ../../include/dir_fns.php:141 +msgid "Directory Options" +msgstr "Opciones del directorio" + +#: ../../include/dir_fns.php:143 +msgid "Safe Mode" +msgstr "Modo seguro" + +#: ../../include/dir_fns.php:144 +msgid "Public Forums Only" +msgstr "Solo foros públicos" + +#: ../../include/dir_fns.php:145 +msgid "This Website Only" +msgstr "Solo este sitio web" + +#: ../../include/message.php:20 +msgid "No recipient provided." +msgstr "No se ha especificado ningún destinatario." + +#: ../../include/message.php:25 +msgid "[no subject]" +msgstr "[sin asunto]" + +#: ../../include/message.php:45 +msgid "Unable to determine sender." +msgstr "No ha sido posible determinar el remitente. " + +#: ../../include/message.php:222 +msgid "Stored post could not be verified." +msgstr "No se han podido verificar las publicaciones guardadas." + +#: ../../include/acl_selectors.php:269 +msgid "Who can see this?" +msgstr "¿Quién puede ver esto?" + +#: ../../include/acl_selectors.php:270 +msgid "Custom selection" +msgstr "Selección personalizada" + +#: ../../include/acl_selectors.php:271 +msgid "" +"Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit" +" the scope of \"Show\"." +msgstr "Seleccione \"Mostrar\" para permitir la visualización. La opción \"No mostrar\" le permite anular y limitar el alcance de \"Mostrar\"." + +#: ../../include/acl_selectors.php:272 +msgid "Show" +msgstr "Mostrar" + +#: ../../include/acl_selectors.php:273 +msgid "Don't show" +msgstr "No mostrar" + +#: ../../include/acl_selectors.php:279 +msgid "Other networks and post services" +msgstr "Otras redes y servicios de publicación" + +#: ../../include/acl_selectors.php:309 +#, php-format +msgid "" +"Post permissions %s cannot be changed %s after a post is shared.
These" +" permissions set who is allowed to view the post." +msgstr "Los permisos de la entrada %s no se pueden cambiar %s una vez que se ha compartido.
Estos permisos establecen quién está autorizado para ver el mensaje." + +#: ../../include/datetime.php:135 +msgid "Birthday" +msgstr "Cumpleaños" + +#: ../../include/datetime.php:137 +msgid "Age: " +msgstr "Edad:" + +#: ../../include/datetime.php:139 +msgid "YYYY-MM-DD or MM-DD" +msgstr "AAAA-MM-DD o MM-DD" + +#: ../../include/datetime.php:272 ../../boot.php:2479 +msgid "never" +msgstr "nunca" + +#: ../../include/datetime.php:278 +msgid "less than a second ago" +msgstr "hace un instante" + +#: ../../include/datetime.php:296 +#, php-format +msgctxt "e.g. 22 hours ago, 1 minute ago" +msgid "%1$d %2$s ago" +msgstr "hace %1$d %2$s" + +#: ../../include/datetime.php:307 +msgctxt "relative_date" +msgid "year" +msgid_plural "years" +msgstr[0] "año" +msgstr[1] "años" + +#: ../../include/datetime.php:310 +msgctxt "relative_date" +msgid "month" +msgid_plural "months" +msgstr[0] "mes" +msgstr[1] "meses" + +#: ../../include/datetime.php:313 +msgctxt "relative_date" +msgid "week" +msgid_plural "weeks" +msgstr[0] "semana" +msgstr[1] "semanas" + +#: ../../include/datetime.php:316 +msgctxt "relative_date" +msgid "day" +msgid_plural "days" +msgstr[0] "día" +msgstr[1] "días" + +#: ../../include/datetime.php:319 +msgctxt "relative_date" +msgid "hour" +msgid_plural "hours" +msgstr[0] "hora" +msgstr[1] "horas" + +#: ../../include/datetime.php:322 +msgctxt "relative_date" +msgid "minute" +msgid_plural "minutes" +msgstr[0] "minuto" +msgstr[1] "minutos" + +#: ../../include/datetime.php:325 +msgctxt "relative_date" +msgid "second" +msgid_plural "seconds" +msgstr[0] "segundo" +msgstr[1] "segundos" + +#: ../../include/datetime.php:562 +#, php-format +msgid "%1$s's birthday" +msgstr "Cumpleaños de %1$s" + +#: ../../include/datetime.php:563 +#, php-format +msgid "Happy Birthday %1$s" +msgstr "Feliz cumpleaños %1$s" + +#: ../../include/api.php:1327 +msgid "Public Timeline" +msgstr "Cronología pública" + +#: ../../include/zot.php:697 msgid "Invalid data packet" msgstr "Paquete de datos no válido" -#: ../../include/zot.php:715 +#: ../../include/zot.php:713 msgid "Unable to verify channel signature" msgstr "No ha sido posible de verificar la firma del canal" -#: ../../include/zot.php:2363 +#: ../../include/zot.php:2326 #, php-format msgid "Unable to verify site signature for %s" msgstr "No ha sido posible de verificar la firma del sitio para %s" -#: ../../include/zot.php:3712 +#: ../../include/zot.php:3703 msgid "invalid target signature" msgstr "La firma recibida no es válida" -#: ../../include/page_widgets.php:6 -msgid "New Page" -msgstr "Nueva página" - -#: ../../include/page_widgets.php:43 -msgid "Title" -msgstr "Título" - -#: ../../include/permissions.php:26 -msgid "Can view my normal stream and posts" -msgstr "Pueden verse mi actividad y publicaciones normales" - -#: ../../include/permissions.php:27 -msgid "Can view my default channel profile" -msgstr "Puede verse mi perfil de canal predeterminado." - -#: ../../include/permissions.php:28 -msgid "Can view my connections" -msgstr "Pueden verse mis conexiones" - -#: ../../include/permissions.php:29 -msgid "Can view my file storage and photos" -msgstr "Pueden verse mi repositorio de ficheros y mis fotos" - -#: ../../include/permissions.php:30 -msgid "Can view my webpages" -msgstr "Pueden verse mis páginas web" - -#: ../../include/permissions.php:33 -msgid "Can send me their channel stream and posts" -msgstr "Me pueden enviar sus entradas y contenidos del canal" - -#: ../../include/permissions.php:34 -msgid "Can post on my channel page (\"wall\")" -msgstr "Pueden crearse entradas en mi página de inicio del canal (“muro”)" - -#: ../../include/permissions.php:35 -msgid "Can comment on or like my posts" -msgstr "Pueden publicarse comentarios en mis publicaciones o marcar mis entradas con 'me gusta'." - -#: ../../include/permissions.php:36 -msgid "Can send me private mail messages" -msgstr "Se me pueden enviar mensajes privados" - -#: ../../include/permissions.php:37 -msgid "Can like/dislike stuff" -msgstr "Puede marcarse contenido como me gusta/no me gusta" - -#: ../../include/permissions.php:37 -msgid "Profiles and things other than posts/comments" -msgstr "Perfiles y otras cosas aparte de publicaciones/comentarios" - -#: ../../include/permissions.php:39 -msgid "Can forward to all my channel contacts via post @mentions" -msgstr "Puede enviarse una entrada a todos mis contactos del canal mediante una @mención" - -#: ../../include/permissions.php:39 -msgid "Advanced - useful for creating group forum channels" -msgstr "Avanzado - útil para crear canales de foros de discusión o grupos" - -#: ../../include/permissions.php:40 -msgid "Can chat with me (when available)" -msgstr "Se puede charlar conmigo (cuando esté disponible)" - -#: ../../include/permissions.php:41 -msgid "Can write to my file storage and photos" -msgstr "Puede escribirse en mi repositorio de ficheros y fotos" - -#: ../../include/permissions.php:42 -msgid "Can edit my webpages" -msgstr "Pueden editarse mis páginas web" - -#: ../../include/permissions.php:44 -msgid "Can source my public posts in derived channels" -msgstr "Pueden utilizarse mis publicaciones públicas como origen de contenidos en canales derivados" - -#: ../../include/permissions.php:44 -msgid "Somewhat advanced - very useful in open communities" -msgstr "Algo avanzado - muy útil en comunidades abiertas" - -#: ../../include/permissions.php:46 -msgid "Can administer my channel resources" -msgstr "Pueden administrarse mis recursos del canal" - -#: ../../include/permissions.php:46 -msgid "" -"Extremely advanced. Leave this alone unless you know what you are doing" -msgstr "Muy avanzado. Déjelo a no ser que sepa bien lo que está haciendo." - -#: ../../include/permissions.php:877 -msgid "Social Networking" -msgstr "Redes sociales" - -#: ../../include/permissions.php:877 -msgid "Social - Mostly Public" -msgstr "Social - Público en su mayor parte" - -#: ../../include/permissions.php:877 -msgid "Social - Restricted" -msgstr "Social - Restringido" - -#: ../../include/permissions.php:877 -msgid "Social - Private" -msgstr "Social - Privado" - -#: ../../include/permissions.php:878 -msgid "Community Forum" -msgstr "Foro de discusión" - -#: ../../include/permissions.php:878 -msgid "Forum - Mostly Public" -msgstr "Foro - Público en su mayor parte" - -#: ../../include/permissions.php:878 -msgid "Forum - Restricted" -msgstr "Foro - Restringido" - -#: ../../include/permissions.php:878 -msgid "Forum - Private" -msgstr "Foro - Privado" - -#: ../../include/permissions.php:879 -msgid "Feed Republish" -msgstr "Republicar un \"feed\"" - -#: ../../include/permissions.php:879 -msgid "Feed - Mostly Public" -msgstr "Feed - Público en su mayor parte" - -#: ../../include/permissions.php:879 -msgid "Feed - Restricted" -msgstr "Feed - Restringido" - -#: ../../include/permissions.php:880 -msgid "Special Purpose" -msgstr "Propósito especial" - -#: ../../include/permissions.php:880 -msgid "Special - Celebrity/Soapbox" -msgstr "Especial - Celebridad / Tribuna improvisada" - -#: ../../include/permissions.php:880 -msgid "Special - Group Repository" -msgstr "Especial - Repositorio de grupo" - -#: ../../include/permissions.php:881 -msgid "Custom/Expert Mode" -msgstr "Modo personalizado/experto" - -#: ../../include/activities.php:41 -msgid " and " -msgstr " y " - -#: ../../include/activities.php:49 -msgid "public profile" -msgstr "el perfil público" - -#: ../../include/activities.php:58 -#, php-format -msgid "%1$s changed %2$s to “%3$s”" -msgstr "%1$s ha cambiado %2$s a “%3$s”" - -#: ../../include/activities.php:59 -#, php-format -msgid "Visit %1$s's %2$s" -msgstr "Visitar %2$s de %1$s" - -#: ../../include/activities.php:62 -#, php-format -msgid "%1$s has an updated %2$s, changing %3$s." -msgstr "%1$s ha actualizado %2$s, cambiando %3$s." - -#: ../../include/bb2diaspora.php:398 -msgid "Attachments:" -msgstr "Ficheros adjuntos:" - -#: ../../include/bb2diaspora.php:487 -msgid "$Projectname event notification:" -msgstr "Notificación de eventos de $Projectname:" - #: ../../view/theme/redbasic/php/config.php:82 msgid "Focus (Hubzilla default)" msgstr "Focus (predefinido)" @@ -9771,62 +9967,66 @@ msgstr "Ajustar el tamaño de la foto del autor de la conversación" msgid "Set size of followup author photos" msgstr "Ajustar el tamaño de foto de los seguidores del autor" -#: ../../boot.php:1162 +#: ../../boot.php:1163 #, php-format msgctxt "opensearch" msgid "Search %1$s (%2$s)" msgstr "Buscar %1$s (%2$s)" -#: ../../boot.php:1162 +#: ../../boot.php:1163 msgctxt "opensearch" msgid "$Projectname" msgstr "$Projectname" -#: ../../boot.php:1480 +#: ../../boot.php:1481 #, php-format msgid "Update %s failed. See error logs." msgstr "La actualización %s ha fallado. Mire el informe de errores." -#: ../../boot.php:1483 +#: ../../boot.php:1484 #, php-format msgid "Update Error at %s" msgstr "Error de actualización en %s" -#: ../../boot.php:1684 +#: ../../boot.php:1685 msgid "" "Create an account to access services and applications within the Hubzilla" msgstr "Crear una cuenta para acceder a los servicios y aplicaciones dentro de Hubzilla" #: ../../boot.php:1706 +msgid "Login/Email" +msgstr "" + +#: ../../boot.php:1707 msgid "Password" msgstr "Contraseña" -#: ../../boot.php:1707 +#: ../../boot.php:1708 msgid "Remember me" msgstr "Recordarme" -#: ../../boot.php:1710 +#: ../../boot.php:1711 msgid "Forgot your password?" msgstr "¿Olvidó su contraseña?" -#: ../../boot.php:2276 +#: ../../boot.php:2277 msgid "toggle mobile" msgstr "cambiar a modo móvil" -#: ../../boot.php:2425 +#: ../../boot.php:2432 msgid "Website SSL certificate is not valid. Please correct." msgstr "El certificado SSL del sitio web no es válido. Por favor, solucione el problema." -#: ../../boot.php:2428 +#: ../../boot.php:2435 #, php-format msgid "[hubzilla] Website SSL error for %s" msgstr "[hubzilla] Error SSL del sitio web en %s" -#: ../../boot.php:2469 +#: ../../boot.php:2478 msgid "Cron/Scheduled tasks not running." msgstr "Las tareas del Planificador/Cron no están funcionando." -#: ../../boot.php:2473 +#: ../../boot.php:2482 #, php-format msgid "[hubzilla] Cron tasks not running on %s" msgstr "[hubzilla] Las tareas de Cron no están funcionando en %s" diff --git a/view/es-es/hstrings.php b/view/es-es/hstrings.php index 22c81e350..0a6812ec4 100644 --- a/view/es-es/hstrings.php +++ b/view/es-es/hstrings.php @@ -4,7 +4,39 @@ if(! function_exists("string_plural_select_es_es")) { function string_plural_select_es_es($n){ return ($n != 1);; }} -; +App::$rtl = 0; +App::$strings["Social Networking"] = "Redes sociales"; +App::$strings["Social - Mostly Public"] = "Social - Público en su mayor parte"; +App::$strings["Social - Restricted"] = "Social - Restringido"; +App::$strings["Social - Private"] = "Social - Privado"; +App::$strings["Community Forum"] = "Foro de discusión"; +App::$strings["Forum - Mostly Public"] = "Foro - Público en su mayor parte"; +App::$strings["Forum - Restricted"] = "Foro - Restringido"; +App::$strings["Forum - Private"] = "Foro - Privado"; +App::$strings["Feed Republish"] = "Republicar un \"feed\""; +App::$strings["Feed - Mostly Public"] = "Feed - Público en su mayor parte"; +App::$strings["Feed - Restricted"] = "Feed - Restringido"; +App::$strings["Special Purpose"] = "Propósito especial"; +App::$strings["Special - Celebrity/Soapbox"] = "Especial - Celebridad / Tribuna improvisada"; +App::$strings["Special - Group Repository"] = "Especial - Repositorio de grupo"; +App::$strings["Other"] = "Otro"; +App::$strings["Custom/Expert Mode"] = "Modo personalizado/experto"; +App::$strings["Can view my channel stream and posts"] = ""; +App::$strings["Can send me their channel stream and posts"] = "Se me pueden enviar entradas y contenido de un canal"; +App::$strings["Can view my default channel profile"] = "Puede verse mi perfil de canal predeterminado."; +App::$strings["Can view my connections"] = "Pueden verse mis conexiones"; +App::$strings["Can view my file storage and photos"] = "Pueden verse mi repositorio de ficheros y mis fotos"; +App::$strings["Can upload/modify my file storage and photos"] = ""; +App::$strings["Can view my channel webpages"] = ""; +App::$strings["Can create/edit my channel webpages"] = ""; +App::$strings["Can post on my channel (wall) page"] = ""; +App::$strings["Can comment on or like my posts"] = "Pueden publicarse comentarios en mis publicaciones o marcar mis entradas con 'me gusta'."; +App::$strings["Can send me private mail messages"] = "Se me pueden enviar mensajes privados"; +App::$strings["Can like/dislike profiles and profile things"] = ""; +App::$strings["Can forward to all my channel connections via @+ mentions in posts"] = ""; +App::$strings["Can chat with me"] = ""; +App::$strings["Can source my public posts in derived channels"] = "Pueden utilizarse mis publicaciones públicas como origen de contenidos en canales derivados"; +App::$strings["Can administer my channel"] = ""; App::$strings["parent"] = "padre"; App::$strings["Collection"] = "Colección"; App::$strings["Principal"] = "Principal"; @@ -37,63 +69,8 @@ App::$strings["Remote authentication blocked. You are logged into this site loca App::$strings["Welcome %s. Remote authentication successful."] = "Bienvenido %s. La identificación desde su servidor se ha llevado a cabo correctamente."; App::$strings["Requested profile is not available."] = "El perfil solicitado no está disponible."; App::$strings["Some blurb about what to do when you're new here"] = "Algunas propuestas para el nuevo usuario sobre qué se puede hacer aquí"; -App::$strings["Block Name"] = "Nombre del bloque"; -App::$strings["Blocks"] = "Bloques"; -App::$strings["Block Title"] = "Título del bloque"; -App::$strings["Created"] = "Creado"; -App::$strings["Edited"] = "Editado"; -App::$strings["Share"] = "Compartir"; -App::$strings["View"] = "Ver"; -App::$strings["Channel not found."] = "Canal no encontrado."; -App::$strings["Permissions denied."] = "Permisos denegados."; -App::$strings["l, F j"] = "l j F"; -App::$strings["Link to Source"] = "Enlazar con la entrada en su ubicación original"; -App::$strings["Edit Event"] = "Editar el evento"; -App::$strings["Create Event"] = "Crear un evento"; -App::$strings["Previous"] = "Anterior"; -App::$strings["Next"] = "Siguiente"; -App::$strings["Export"] = "Exportar"; -App::$strings["Import"] = "Importar"; -App::$strings["Submit"] = "Enviar"; -App::$strings["Today"] = "Hoy"; -App::$strings["You must be logged in to see this page."] = "Debe haber iniciado sesión para poder ver esta página."; -App::$strings["Posts and comments"] = "Publicaciones y comentarios"; -App::$strings["Only posts"] = "Solo publicaciones"; -App::$strings["Insufficient permissions. Request redirected to profile page."] = "Permisos insuficientes. Petición redirigida a la página del perfil."; -App::$strings["Room not found"] = "Sala no encontrada"; -App::$strings["Leave Room"] = "Abandonar la sala"; -App::$strings["Delete Room"] = "Eliminar esta sala"; -App::$strings["I am away right now"] = "Estoy ausente momentáneamente"; -App::$strings["I am online"] = "Estoy conectado/a"; -App::$strings["Bookmark this room"] = "Añadir esta sala a Marcadores"; -App::$strings["Please enter a link URL:"] = "Por favor, introduzca la dirección del enlace:"; -App::$strings["Encrypt text"] = "Cifrar texto"; -App::$strings["Insert web link"] = "Insertar enlace web"; -App::$strings["Feature disabled."] = "Funcionalidad deshabilitada."; -App::$strings["New Chatroom"] = "Nueva sala de chat"; -App::$strings["Chatroom name"] = "Nombre de la sala de chat"; -App::$strings["Expiration of chats (minutes)"] = "Caducidad de los mensajes en los chats (en minutos)"; -App::$strings["Permissions"] = "Permisos"; -App::$strings["%1\$s's Chatrooms"] = "Salas de chat de %1\$s"; -App::$strings["No chatrooms available"] = "No hay salas de chat disponibles"; -App::$strings["Create New"] = "Crear"; -App::$strings["Expiration"] = "Caducidad"; -App::$strings["min"] = "min"; App::$strings["Away"] = "Ausente"; App::$strings["Online"] = "Conectado/a"; -App::$strings["Invalid item."] = "Elemento no válido."; -App::$strings["Bookmark added"] = "Marcador añadido"; -App::$strings["My Bookmarks"] = "Mis marcadores"; -App::$strings["My Connections Bookmarks"] = "Marcadores de mis conexiones"; -App::$strings["Continue"] = "Continuar"; -App::$strings["Premium Channel Setup"] = "Configuración del canal premium"; -App::$strings["Enable premium channel connection restrictions"] = "Habilitar restricciones de conexión del canal premium"; -App::$strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = "Por favor introduzca sus restricciones o condiciones, como recibo de paypal, normas de uso, etc."; -App::$strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = "Este canal puede requerir antes de conectar unos pasos adicionales o el conocimiento de las siguientes condiciones:"; -App::$strings["Potential connections will then see the following text before proceeding:"] = "Las posibles conexiones verán, por tanto, el siguiente texto antes de proceder:"; -App::$strings["By continuing, I certify that I have complied with any instructions provided on this page."] = "Al continuar, certifico que he cumplido con todas las instrucciones proporcionadas en esta página."; -App::$strings["(No specific instructions have been provided by the channel owner.)"] = "(No ha sido proporcionada ninguna instrucción específica por el propietario del canal.)"; -App::$strings["Restricted or Premium Channel"] = "Canal premium o restringido"; App::$strings["Could not access contact record."] = "No se ha podido acceder al registro de contacto."; App::$strings["Could not locate selected profile."] = "No se ha podido localizar el perfil seleccionado."; App::$strings["Connection updated."] = "Conexión actualizada."; @@ -158,6 +135,7 @@ App::$strings["Do not import posts with this text"] = "No importar entradas que App::$strings["This information is public!"] = "¡Esta información es pública!"; App::$strings["Connection Pending Approval"] = "Conexión pendiente de aprobación"; App::$strings["inherited"] = "heredado"; +App::$strings["Submit"] = "Enviar"; App::$strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Por favor, escoja el perfil que quiere mostrar a %s cuando esté viendo su perfil de forma segura."; App::$strings["Their Settings"] = "Sus ajustes"; App::$strings["My Settings"] = "Mis ajustes"; @@ -166,6 +144,30 @@ App::$strings["Some permissions may be inherited from your channel's privacy settings, which have higher priority than individual settings. You can change those settings here but they wont have any impact unless the inherited setting changes."] = "Algunos permisos pueden ser heredados de los ajustes de privacidad de sus canales, los cuales tienen una prioridad más alta que los ajustes individuales. Puede cambiar estos ajustes aquí, pero no tendrán ningún consecuencia hasta que cambie los ajustes heredados."; App::$strings["Last update:"] = "Última actualización:"; App::$strings["Public access denied."] = "Acceso público denegado."; +App::$strings["Item not found."] = "Elemento no encontrado."; +App::$strings["First Name"] = "Nombre"; +App::$strings["Last Name"] = "Apellido"; +App::$strings["Nickname"] = "Sobrenombre o Alias"; +App::$strings["Full Name"] = "Nombre completo"; +App::$strings["Email"] = "Correo electrónico"; +App::$strings["Profile Photo"] = "Foto del perfil"; +App::$strings["Profile Photo 16px"] = "Foto del perfil 16px"; +App::$strings["Profile Photo 32px"] = "Foto del perfil 32px"; +App::$strings["Profile Photo 48px"] = "Foto del perfil 48px"; +App::$strings["Profile Photo 64px"] = "Foto del perfil 64px"; +App::$strings["Profile Photo 80px"] = "Foto del perfil 80px"; +App::$strings["Profile Photo 128px"] = "Foto del perfil 128px"; +App::$strings["Timezone"] = "Huso horario"; +App::$strings["Homepage URL"] = "Dirección de la página personal"; +App::$strings["Language"] = "Idioma"; +App::$strings["Birth Year"] = "Año de nacimiento"; +App::$strings["Birth Month"] = "Mes de nacimiento"; +App::$strings["Birth Day"] = "Día de nacimiento"; +App::$strings["Birthdate"] = "Fecha de nacimiento"; +App::$strings["Gender"] = "Género"; +App::$strings["Male"] = "Hombre"; +App::$strings["Female"] = "Mujer"; +App::$strings["Channel added."] = "Canal añadido."; App::$strings["%d rating"] = array( 0 => "%d valoración", 1 => "%d valoraciones", @@ -196,13 +198,74 @@ App::$strings["Reverse Alphabetic"] = "Alfabético inverso"; App::$strings["Newest to Oldest"] = "De más nuevo a más antiguo"; App::$strings["Oldest to Newest"] = "De más antiguo a más nuevo"; App::$strings["No entries (some entries may be hidden)."] = "Sin entradas (algunas entradas pueden estar ocultas)."; -App::$strings["Item not found."] = "Elemento no encontrado."; +App::$strings["Continue"] = "Continuar"; +App::$strings["Premium Channel Setup"] = "Configuración del canal premium"; +App::$strings["Enable premium channel connection restrictions"] = "Habilitar restricciones de conexión del canal premium"; +App::$strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = "Por favor introduzca sus restricciones o condiciones, como recibo de paypal, normas de uso, etc."; +App::$strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = "Este canal puede requerir antes de conectar unos pasos adicionales o el conocimiento de las siguientes condiciones:"; +App::$strings["Potential connections will then see the following text before proceeding:"] = "Las posibles conexiones verán, por tanto, el siguiente texto antes de proceder:"; +App::$strings["By continuing, I certify that I have complied with any instructions provided on this page."] = "Al continuar, certifico que he cumplido con todas las instrucciones proporcionadas en esta página."; +App::$strings["(No specific instructions have been provided by the channel owner.)"] = "(No ha sido proporcionada ninguna instrucción específica por el propietario del canal.)"; +App::$strings["Restricted or Premium Channel"] = "Canal premium o restringido"; +App::$strings["Calendar entries imported."] = "Entradas de calendario importadas."; +App::$strings["No calendar entries found."] = "No se han encontrado entradas de calendario."; +App::$strings["Event can not end before it has started."] = "Un evento no puede terminar antes de que haya comenzado."; +App::$strings["Unable to generate preview."] = "No se puede crear la vista previa."; +App::$strings["Event title and start time are required."] = "Se requieren el título del evento y su hora de inicio."; +App::$strings["Event not found."] = "Evento no encontrado."; +App::$strings["event"] = "evento"; +App::$strings["Edit event title"] = "Editar el título del evento"; +App::$strings["Event title"] = "Título del evento"; +App::$strings["Required"] = "Obligatorio"; +App::$strings["Categories (comma-separated list)"] = "Categorías (lista separada por comas)"; +App::$strings["Edit Category"] = "Editar la categoría"; +App::$strings["Category"] = "Categoría"; +App::$strings["Edit start date and time"] = "Modificar la fecha y hora de comienzo"; +App::$strings["Start date and time"] = "Fecha y hora de comienzo"; +App::$strings["Finish date and time are not known or not relevant"] = "La fecha y hora de terminación no se conocen o no son relevantes"; +App::$strings["Edit finish date and time"] = "Modificar la fecha y hora de terminación"; +App::$strings["Finish date and time"] = "Fecha y hora de terminación"; +App::$strings["Adjust for viewer timezone"] = "Ajustar para obtener el visor de los husos horarios"; +App::$strings["Important for events that happen in a particular place. Not practical for global holidays."] = "Importante para los eventos que suceden en un lugar determinado. No es práctico para los globales."; +App::$strings["Edit Description"] = "Editar la descripción"; +App::$strings["Description"] = "Descripción"; +App::$strings["Edit Location"] = "Modificar la dirección"; +App::$strings["Location"] = "Ubicación"; +App::$strings["Share this event"] = "Compartir este evento"; +App::$strings["Preview"] = "Previsualizar"; +App::$strings["Permission settings"] = "Configuración de permisos"; +App::$strings["Advanced Options"] = "Opciones avanzadas"; +App::$strings["l, F j"] = "l j F"; +App::$strings["Edit event"] = "Editar evento"; +App::$strings["Delete event"] = "Borrar evento"; +App::$strings["Link to Source"] = "Enlazar con la entrada en su ubicación original"; +App::$strings["calendar"] = "calendario"; +App::$strings["Edit Event"] = "Editar el evento"; +App::$strings["Create Event"] = "Crear un evento"; +App::$strings["Previous"] = "Anterior"; +App::$strings["Next"] = "Siguiente"; +App::$strings["Export"] = "Exportar"; +App::$strings["View"] = "Ver"; +App::$strings["Month"] = ""; +App::$strings["Week"] = ""; +App::$strings["Day"] = ""; +App::$strings["Today"] = "Hoy"; +App::$strings["Event removed"] = "Evento borrado"; +App::$strings["Failed to remove event"] = "Error al eliminar el evento"; +App::$strings["Bookmark added"] = "Marcador añadido"; +App::$strings["My Bookmarks"] = "Mis marcadores"; +App::$strings["My Connections Bookmarks"] = "Marcadores de mis conexiones"; App::$strings["Item not found"] = "Elemento no encontrado"; -App::$strings["Title (optional)"] = "Título (opcional)"; -App::$strings["Edit Block"] = "Modificar este bloque"; -App::$strings["No channel."] = "Ningún canal."; -App::$strings["Common connections"] = "Conexiones comunes"; -App::$strings["No connections in common."] = "Ninguna conexión en común."; +App::$strings["Item is not editable"] = "El elemento no es editable"; +App::$strings["Edit post"] = "Editar la entrada"; +App::$strings["Photos"] = "Fotos"; +App::$strings["Cancel"] = "Cancelar"; +App::$strings["Invalid item."] = "Elemento no válido."; +App::$strings["Channel not found."] = "Canal no encontrado."; +App::$strings["Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."] = "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."; +App::$strings["Save to Folder:"] = "Guardar en carpeta:"; +App::$strings["- select -"] = "- seleccionar -"; +App::$strings["Save"] = "Guardar"; App::$strings["Blocked"] = "Bloqueadas"; App::$strings["Ignored"] = "Ignoradas"; App::$strings["Hidden"] = "Ocultas"; @@ -254,51 +317,38 @@ App::$strings["select a photo from your photo albums"] = "Seleccione una foto de App::$strings["Crop Image"] = "Recortar imagen"; App::$strings["Please adjust the image cropping for optimum viewing."] = "Por favor ajuste el recorte de la imagen para una visión óptima."; App::$strings["Done Editing"] = "Edición completada"; -App::$strings["Item is not editable"] = "El elemento no es editable"; -App::$strings["Edit post"] = "Editar la entrada"; -App::$strings["Calendar entries imported."] = "Entradas de calendario importadas."; -App::$strings["No calendar entries found."] = "No se han encontrado entradas de calendario."; -App::$strings["Event can not end before it has started."] = "Un evento no puede terminar antes de que haya comenzado."; -App::$strings["Unable to generate preview."] = "No se puede crear la vista previa."; -App::$strings["Event title and start time are required."] = "Se requieren el título del evento y su hora de inicio."; -App::$strings["Event not found."] = "Evento no encontrado."; -App::$strings["event"] = "evento"; -App::$strings["Edit event title"] = "Editar el título del evento"; -App::$strings["Event title"] = "Título del evento"; -App::$strings["Required"] = "Obligatorio"; -App::$strings["Categories (comma-separated list)"] = "Categorías (lista separada por comas)"; -App::$strings["Edit Category"] = "Editar la categoría"; -App::$strings["Category"] = "Categoría"; -App::$strings["Edit start date and time"] = "Modificar la fecha y hora de comienzo"; -App::$strings["Start date and time"] = "Fecha y hora de comienzo"; -App::$strings["Finish date and time are not known or not relevant"] = "La fecha y hora de terminación no se conocen o no son relevantes"; -App::$strings["Edit finish date and time"] = "Modificar la fecha y hora de terminación"; -App::$strings["Finish date and time"] = "Fecha y hora de terminación"; -App::$strings["Adjust for viewer timezone"] = "Ajustar para obtener el visor de los husos horarios"; -App::$strings["Important for events that happen in a particular place. Not practical for global holidays."] = "Importante para los eventos que suceden en un lugar determinado. No es práctico para los globales."; -App::$strings["Edit Description"] = "Editar la descripción"; -App::$strings["Description"] = "Descripción"; -App::$strings["Edit Location"] = "Modificar la dirección"; -App::$strings["Location"] = "Ubicación"; -App::$strings["Share this event"] = "Compartir este evento"; -App::$strings["Preview"] = "Previsualizar"; -App::$strings["Permission settings"] = "Configuración de permisos"; -App::$strings["Advanced Options"] = "Opciones avanzadas"; -App::$strings["Edit event"] = "Editar evento"; -App::$strings["Delete event"] = "Borrar evento"; -App::$strings["calendar"] = "calendario"; -App::$strings["Event removed"] = "Evento borrado"; -App::$strings["Failed to remove event"] = "Error al eliminar el evento"; -App::$strings["Photos"] = "Fotos"; -App::$strings["Cancel"] = "Cancelar"; +App::$strings["webpage"] = "página web"; +App::$strings["block"] = "bloque"; +App::$strings["layout"] = "plantilla"; +App::$strings["menu"] = "menú"; +App::$strings["%s element installed"] = "%s elemento instalado"; +App::$strings["%s element installation failed"] = "Elemento con instalación fallida: %s"; +App::$strings["Permissions denied."] = "Permisos denegados."; +App::$strings["Import"] = "Importar"; App::$strings["This site is not a directory server"] = "Este sitio no es un servidor de directorio"; App::$strings["This directory server requires an access token"] = "El servidor de este directorio necesita un \"token\" de acceso"; -App::$strings["Save to Folder:"] = "Guardar en carpeta:"; -App::$strings["- select -"] = "- seleccionar -"; -App::$strings["Save"] = "Guardar"; +App::$strings["You must be logged in to see this page."] = "Debe haber iniciado sesión para poder ver esta página."; +App::$strings["Room not found"] = "Sala no encontrada"; +App::$strings["Leave Room"] = "Abandonar la sala"; +App::$strings["Delete Room"] = "Eliminar esta sala"; +App::$strings["I am away right now"] = "Estoy ausente momentáneamente"; +App::$strings["I am online"] = "Estoy conectado/a"; +App::$strings["Bookmark this room"] = "Añadir esta sala a Marcadores"; +App::$strings["Please enter a link URL:"] = "Por favor, introduzca la dirección del enlace:"; +App::$strings["Encrypt text"] = "Cifrar texto"; +App::$strings["Insert web link"] = "Insertar enlace web"; +App::$strings["Feature disabled."] = "Funcionalidad deshabilitada."; +App::$strings["New Chatroom"] = "Nueva sala de chat"; +App::$strings["Chatroom name"] = "Nombre de la sala de chat"; +App::$strings["Expiration of chats (minutes)"] = "Caducidad de los mensajes en los chats (en minutos)"; +App::$strings["Permissions"] = "Permisos"; +App::$strings["%1\$s's Chatrooms"] = "Salas de chat de %1\$s"; +App::$strings["No chatrooms available"] = "No hay salas de chat disponibles"; +App::$strings["Create New"] = "Crear"; +App::$strings["Expiration"] = "Caducidad"; +App::$strings["min"] = "min"; App::$strings["Invalid message"] = "Mensaje no válido"; App::$strings["no results"] = "sin resultados"; -App::$strings["Delivery report for %1\$s"] = "Informe de entrega para %1\$s"; App::$strings["channel sync processed"] = "se ha realizado la sincronización del canal"; App::$strings["queued"] = "encolado"; App::$strings["posted"] = "enviado"; @@ -310,14 +360,14 @@ App::$strings["recipient not found"] = "destinatario no encontrado"; App::$strings["mail recalled"] = "mensaje de correo revocado"; App::$strings["duplicate mail received"] = "se ha recibido mensaje duplicado"; App::$strings["mail delivered"] = "correo enviado"; +App::$strings["Delivery report for %1\$s"] = "Informe de entrega para %1\$s"; +App::$strings["Options"] = ""; +App::$strings["Redeliver"] = ""; App::$strings["Layout Name"] = "Nombre de la plantilla"; App::$strings["Layout Description (Optional)"] = "Descripción de la plantilla (opcional)"; App::$strings["Edit Layout"] = "Modificar la plantilla"; App::$strings["Page link"] = "Enlace de la página"; App::$strings["Edit Webpage"] = "Editar la página web"; -App::$strings["Channel added."] = "Canal añadido."; -App::$strings["network"] = "red"; -App::$strings["RSS"] = "RSS"; App::$strings["Privacy group created."] = "El grupo de canales ha sido creado."; App::$strings["Could not create privacy group."] = "No se puede crear el grupo de canales"; App::$strings["Privacy group not found."] = "Grupo de canales no encontrado."; @@ -331,16 +381,33 @@ App::$strings["Privacy group editor"] = "Editor de grupos de canales"; App::$strings["Members"] = "Miembros"; App::$strings["All Connected Channels"] = "Todos los canales conectados"; App::$strings["Click on a channel to add or remove."] = "Haga clic en un canal para agregarlo o quitarlo."; -App::$strings["Share content from Firefox to \$Projectname"] = "Compartir contenido desde Firefox a \$Projectname"; -App::$strings["Activate the Firefox \$Projectname provider"] = "Servicio de compartición de Firefox: activar el proveedor \$Projectname "; -App::$strings["Authorize application connection"] = "Autorizar una conexión de aplicación"; -App::$strings["Return to your app and insert this Securty Code:"] = "Volver a su aplicación e introducir este código de seguridad:"; -App::$strings["Please login to continue."] = "Por favor inicie sesión para continuar."; -App::$strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "¿Desea autorizar a esta aplicación a acceder a sus publicaciones y contactos, y/o crear nuevas publicaciones por usted?"; +App::$strings["App installed."] = "Aplicación instalada."; +App::$strings["Malformed app."] = "Aplicación con errores"; +App::$strings["Embed code"] = "Código incorporado"; +App::$strings["Edit App"] = "Modificar la aplicación"; +App::$strings["Create App"] = "Crear una aplicación"; +App::$strings["Name of app"] = "Nombre de la aplicación"; +App::$strings["Location (URL) of app"] = "Dirección (URL) de la aplicación"; +App::$strings["Photo icon URL"] = "Dirección del icono"; +App::$strings["80 x 80 pixels - optional"] = "80 x 80 pixels - opcional"; +App::$strings["Categories (optional, comma separated list)"] = "Categorías (opcional, lista separada por comas)"; +App::$strings["Version ID"] = "Versión"; +App::$strings["Price of app"] = "Precio de la aplicación"; +App::$strings["Location (URL) to purchase app"] = "Dirección (URL) donde adquirir la aplicación"; App::$strings["Documentation Search"] = "Búsqueda de Documentación"; App::$strings["Help:"] = "Ayuda:"; App::$strings["Help"] = "Ayuda"; App::$strings["\$Projectname Documentation"] = "Documentación de \$Projectname"; +App::$strings["Item not available."] = "Elemento no disponible"; +App::$strings["Layout updated."] = "Plantilla actualizada."; +App::$strings["Edit System Page Description"] = "Editor del Sistema de Descripción de Páginas"; +App::$strings["Layout not found."] = "Plantilla no encontrada"; +App::$strings["Module Name:"] = "Nombre del módulo:"; +App::$strings["Layout Help"] = "Ayuda para el diseño de plantillas de página"; +App::$strings["Share content from Firefox to \$Projectname"] = "Compartir contenido desde Firefox a \$Projectname"; +App::$strings["Activate the Firefox \$Projectname provider"] = "Servicio de compartición de Firefox: activar el proveedor \$Projectname "; +App::$strings["network"] = "red"; +App::$strings["RSS"] = "RSS"; App::$strings["Permission Denied."] = "Permiso denegado"; App::$strings["File not found."] = "Fichero no encontrado."; App::$strings["Edit file permissions"] = "Modificar los permisos del fichero"; @@ -352,70 +419,13 @@ App::$strings["Copy/paste this URL to link file from a web page"] = "Copiar/pega App::$strings["Share this file"] = "Compartir este fichero"; App::$strings["Show URL to this file"] = "Mostrar la dirección de este fichero"; App::$strings["Notify your contacts about this file"] = "Avisar a sus contactos sobre este fichero"; -App::$strings["Apps"] = "Aplicaciones (apps)"; -App::$strings["Item not available."] = "Elemento no disponible"; -App::$strings["Your service plan only allows %d channels."] = "Su paquete de servicios solo permite %d canales."; -App::$strings["Nothing to import."] = "No hay nada para importar."; -App::$strings["Unable to download data from old server"] = "No se han podido descargar datos de su antiguo servidor"; -App::$strings["Imported file is empty."] = "El fichero importado está vacío."; -App::$strings["Warning: Database versions differ by %1\$d updates."] = "Atención: Las versiones de la base de datos difieren en %1\$d actualizaciones."; -App::$strings["Cloned channel not found. Import failed."] = "No se ha podido importar el canal porque el canal clonado no se ha encontrado."; -App::$strings["No channel. Import failed."] = "No hay canal. La importación ha fallado"; -App::$strings["Import completed."] = "Importación completada."; -App::$strings["You must be logged in to use this feature."] = "Debe estar registrado para poder usar esta funcionalidad."; -App::$strings["Import Channel"] = "Importar canal"; -App::$strings["Use this form to import an existing channel from a different server/hub. You may retrieve the channel identity from the old server/hub via the network or provide an export file."] = "Emplee este formulario para importar un canal desde un servidor/hub diferente. Puede recuperar el canal desde el antiguo servidor/hub a través de la red o proporcionando un fichero de exportación."; -App::$strings["File to Upload"] = "Fichero para subir"; -App::$strings["Or provide the old server/hub details"] = "O proporcione los detalles de su antiguo servidor/hub"; -App::$strings["Your old identity address (xyz@example.com)"] = "Su identidad en el antiguo servidor (canal@ejemplo.com)"; -App::$strings["Your old login email address"] = "Su antigua dirección de correo electrónico"; -App::$strings["Your old login password"] = "Su antigua contraseña"; -App::$strings["For either option, please choose whether to make this hub your new primary address, or whether your old location should continue this role. You will be able to post from either location, but only one can be marked as the primary location for files, photos, and media."] = "Para cualquiera de las opciones, elija si hacer de este servidor su nueva dirección primaria, o si su antigua dirección debe continuar con este papel. Usted podrá publicar desde cualquier ubicación, pero sólo una puede estar marcada como la ubicación principal para los ficheros, fotos y otras imágenes o vídeos."; -App::$strings["Make this hub my primary location"] = "Convertir este servidor en mi ubicación primaria"; -App::$strings["Import existing posts if possible (experimental - limited by available memory"] = "Importar el contenido publicado si es posible (experimental - limitado por la memoria disponible"; -App::$strings["This process may take several minutes to complete. Please submit the form only once and leave this page open until finished."] = "Este proceso puede tardar varios minutos en completarse. Por favor envíe el formulario una sola vez y mantenga esta página abierta hasta que termine."; -App::$strings["Unable to locate original post."] = "No ha sido posible encontrar la entrada original."; -App::$strings["Empty post discarded."] = "La entrada vacía ha sido desechada."; -App::$strings["Executable content type not permitted to this channel."] = "Contenido de tipo ejecutable no permitido en este canal."; -App::$strings["Duplicate post suppressed."] = "Se ha suprimido la entrada duplicada."; -App::$strings["System error. Post not saved."] = "Error del sistema. La entrada no se ha podido salvar."; -App::$strings["Unable to obtain post information from database."] = "No ha sido posible obtener información de la entrada en la base de datos."; -App::$strings["You have reached your limit of %1$.0f top level posts."] = "Ha alcanzado su límite de %1$.0f entradas en la página principal."; -App::$strings["You have reached your limit of %1$.0f webpages."] = "Ha alcanzado su límite de %1$.0f páginas web."; App::$strings["Layouts"] = "Plantillas"; App::$strings["Comanche page description language help"] = "Página de ayuda del lenguaje de descripción de páginas (PDL) Comanche"; App::$strings["Layout Description"] = "Descripción de la plantilla"; +App::$strings["Created"] = "Creado"; +App::$strings["Edited"] = "Editado"; +App::$strings["Share"] = "Compartir"; App::$strings["Download PDL file"] = "Descargar el fichero PDL"; -App::$strings["\$Projectname"] = "\$Projectname"; -App::$strings["Welcome to %s"] = "Bienvenido a %s"; -App::$strings["First Name"] = "Nombre"; -App::$strings["Last Name"] = "Apellido"; -App::$strings["Nickname"] = "Sobrenombre o Alias"; -App::$strings["Full Name"] = "Nombre completo"; -App::$strings["Email"] = "Correo electrónico"; -App::$strings["Profile Photo"] = "Foto del perfil"; -App::$strings["Profile Photo 16px"] = "Foto del perfil 16px"; -App::$strings["Profile Photo 32px"] = "Foto del perfil 32px"; -App::$strings["Profile Photo 48px"] = "Foto del perfil 48px"; -App::$strings["Profile Photo 64px"] = "Foto del perfil 64px"; -App::$strings["Profile Photo 80px"] = "Foto del perfil 80px"; -App::$strings["Profile Photo 128px"] = "Foto del perfil 128px"; -App::$strings["Timezone"] = "Huso horario"; -App::$strings["Homepage URL"] = "Dirección de la página personal"; -App::$strings["Language"] = "Idioma"; -App::$strings["Birth Year"] = "Año de nacimiento"; -App::$strings["Birth Month"] = "Mes de nacimiento"; -App::$strings["Birth Day"] = "Día de nacimiento"; -App::$strings["Birthdate"] = "Fecha de nacimiento"; -App::$strings["Gender"] = "Género"; -App::$strings["Male"] = "Hombre"; -App::$strings["Female"] = "Mujer"; -App::$strings["webpage"] = "página web"; -App::$strings["block"] = "bloque"; -App::$strings["layout"] = "plantilla"; -App::$strings["menu"] = "menú"; -App::$strings["%s element installed"] = "%s elemento instalado"; -App::$strings["%s element installation failed"] = "Elemento con instalación fallida: %s"; App::$strings["Like/Dislike"] = "Me gusta/No me gusta"; App::$strings["This action is restricted to members."] = "Esta acción está restringida solo para miembros."; App::$strings["Please login with your \$Projectname ID or register as a new \$Projectname member to continue."] = "Por favor, identifíquese con su \$Projectname ID o rregístrese como un nuevo \$Projectname member para continuar."; @@ -436,175 +446,103 @@ App::$strings["%1\$s is not attending %2\$s's %3\$s"] = "%3\$s de %2\$s: %1\$s n App::$strings["%1\$s may attend %2\$s's %3\$s"] = "%3\$s de %2\$s: %1\$s quizá participe"; App::$strings["Action completed."] = "Acción completada."; App::$strings["Thank you."] = "Gracias."; -App::$strings["Import completed"] = "Importación completada"; -App::$strings["Import Items"] = "Importar elementos"; -App::$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."; -App::$strings["Total invitation limit exceeded."] = "Se ha superado el límite máximo de invitaciones."; -App::$strings["%s : Not a valid email address."] = "%s : No es una dirección de correo electrónico válida. "; -App::$strings["Please join us on \$Projectname"] = "Únase a nosotros en \$Projectname"; -App::$strings["Invitation limit exceeded. Please contact your site administrator."] = "Excedido el límite de invitaciones. Por favor, contacte con el Administrador de su sitio."; -App::$strings["%s : Message delivery failed."] = "%s : Falló el envío del mensaje."; -App::$strings["%d message sent."] = array( - 0 => "%d mensajes enviados.", - 1 => "%d mensajes enviados.", -); -App::$strings["You have no more invitations available"] = "No tiene más invitaciones disponibles"; -App::$strings["Send invitations"] = "Enviar invitaciones"; -App::$strings["Enter email addresses, one per line:"] = "Introduzca las direcciones de correo electrónico, una por línea:"; -App::$strings["Your message:"] = "Su mensaje:"; -App::$strings["Please join my community on \$Projectname."] = "Por favor, únase a mi comunidad en \$Projectname."; -App::$strings["You will need to supply this invitation code:"] = "Tendrá que suministrar este código de invitación:"; -App::$strings["1. Register at any \$Projectname location (they are all inter-connected)"] = "1. Regístrese en cualquier sitio de \$Projectname (están todos interconectados)"; -App::$strings["2. Enter my \$Projectname network address into the site searchbar."] = "2. Introduzca mi dirección \$Projectname en la caja de búsqueda del sitio."; -App::$strings["or visit"] = "o visitar"; -App::$strings["3. Click [Connect]"] = "3. Pulse [conectar]"; -App::$strings["Remote privacy information not available."] = "La información privada remota no está disponible."; -App::$strings["Visible to:"] = "Visible para:"; -App::$strings["Location not found."] = "Dirección no encontrada."; -App::$strings["Location lookup failed."] = "Ha fallado la búsqueda de la dirección."; -App::$strings["Please select another location to become primary before removing the primary location."] = "Por favor, seleccione una copia de su canal (un clon) para convertirlo en primario antes de eliminar su canal principal."; -App::$strings["Syncing locations"] = "Sincronización de ubicaciones"; -App::$strings["No locations found."] = "No encontrada ninguna dirección."; -App::$strings["Manage Channel Locations"] = "Gestionar las direcciones del canal"; +App::$strings["Profile not found."] = "Perfil no encontrado."; +App::$strings["Profile deleted."] = "Perfil eliminado."; +App::$strings["Profile-"] = "Perfil-"; +App::$strings["New profile created."] = "El nuevo perfil ha sido creado."; +App::$strings["Profile unavailable to clone."] = "Perfil no disponible para clonar."; +App::$strings["Profile unavailable to export."] = "Perfil no disponible para exportar."; +App::$strings["Profile Name is required."] = "Se necesita el nombre del perfil."; +App::$strings["Marital Status"] = "Estado civil"; +App::$strings["Romantic Partner"] = "Pareja sentimental"; +App::$strings["Likes"] = "Me gusta"; +App::$strings["Dislikes"] = "No me gusta"; +App::$strings["Work/Employment"] = "Trabajo:"; +App::$strings["Religion"] = "Religión"; +App::$strings["Political Views"] = "Ideas políticas"; +App::$strings["Sexual Preference"] = "Preferencia sexual"; +App::$strings["Homepage"] = "Página personal"; +App::$strings["Interests"] = "Intereses"; App::$strings["Address"] = "Dirección"; -App::$strings["Primary"] = "Primario"; -App::$strings["Drop"] = "Eliminar"; -App::$strings["Sync Now"] = "Sincronizar ahora"; -App::$strings["Please wait several minutes between consecutive operations."] = "Por favor, espere algunos minutos entre operaciones consecutivas."; -App::$strings["When possible, drop a location by logging into that website/hub and removing your channel."] = "Cuando sea posible, elimine una ubicación iniciando sesión en el sitio web o \"hub\" y borrando su canal."; -App::$strings["Use this form to drop the location if the hub is no longer operating."] = "Utilice este formulario para eliminar la dirección si el \"hub\" no está funcionando desde hace tiempo."; -App::$strings["Hub not found."] = "Servidor no encontrado"; -App::$strings["Unable to lookup recipient."] = "Imposible asociar a un destinatario."; -App::$strings["Unable to communicate with requested channel."] = "Imposible comunicar con el canal solicitado."; -App::$strings["Cannot verify requested channel."] = "No se puede verificar el canal solicitado."; -App::$strings["Selected channel has private message restrictions. Send failed."] = "El canal seleccionado tiene restricciones sobre los mensajes privados. El envío falló."; -App::$strings["Messages"] = "Mensajes"; -App::$strings["Message recalled."] = "Mensaje revocado."; -App::$strings["Conversation removed."] = "Conversación eliminada."; -App::$strings["Expires YYYY-MM-DD HH:MM"] = "Caduca YYYY-MM-DD HH:MM"; -App::$strings["Requested channel is not in this network"] = "El canal solicitado no existe en esta red"; -App::$strings["Send Private Message"] = "Enviar un mensaje privado"; -App::$strings["To:"] = "Para:"; -App::$strings["Subject:"] = "Asunto:"; -App::$strings["Attach file"] = "Adjuntar fichero"; -App::$strings["Send"] = "Enviar"; -App::$strings["Set expiration date"] = "Configurar fecha de caducidad"; -App::$strings["Delete message"] = "Borrar mensaje"; -App::$strings["Delivery report"] = "Informe de transmisión"; -App::$strings["Recall message"] = "Revocar el mensaje"; -App::$strings["Message has been recalled."] = "El mensaje ha sido revocado."; -App::$strings["Delete Conversation"] = "Eliminar conversación"; -App::$strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Comunicación segura no disponible. Pero puede responder desde la página del perfil del remitente."; -App::$strings["Send Reply"] = "Responder"; -App::$strings["Your message for %s (%s):"] = "Su mensaje para %s (%s):"; -App::$strings["You have created %1$.0f of %2$.0f allowed channels."] = "Ha creado %1$.0f de %2$.0f canales permitidos."; -App::$strings["Create a new channel"] = "Crear un nuevo canal"; -App::$strings["Channel Manager"] = "Administración de canales"; -App::$strings["Current Channel"] = "Canal actual"; -App::$strings["Switch to one of your channels by selecting it."] = "Cambiar a uno de sus canales seleccionándolo."; -App::$strings["Default Channel"] = "Canal principal"; -App::$strings["Make Default"] = "Convertir en predeterminado"; -App::$strings["%d new messages"] = "%d mensajes nuevos"; -App::$strings["%d new introductions"] = "%d nuevas isolicitudes de conexión"; -App::$strings["Delegated Channel"] = "Canal delegado"; -App::$strings["No valid account found."] = "No se ha encontrado una cuenta válida."; -App::$strings["Password reset request issued. Check your email."] = "Se ha recibido una solicitud de restablecimiento de contraseña. Consulte su correo electrónico."; -App::$strings["Site Member (%s)"] = "Usuario del sitio (%s)"; -App::$strings["Password reset requested at %s"] = "Se ha solicitado restablecer la contraseña en %s"; -App::$strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "La solicitud no ha podido ser verificada. (Puede que la haya enviado con anterioridad) El restablecimiento de la contraseña ha fallado."; -App::$strings["Password Reset"] = "Restablecer la contraseña"; -App::$strings["Your password has been reset as requested."] = "Su contraseña ha sido restablecida según lo solicitó."; -App::$strings["Your new password is"] = "Su nueva contraseña es"; -App::$strings["Save or copy your new password - and then"] = "Guarde o copie su nueva contraseña - y después"; -App::$strings["click here to login"] = "pulse aquí para conectarse"; -App::$strings["Your password may be changed from the Settings page after successful login."] = "Puede cambiar la contraseña en la página Ajustes una vez iniciada la sesión."; -App::$strings["Your password has changed at %s"] = "Su contraseña en %s ha sido cambiada"; -App::$strings["Forgot your Password?"] = "¿Ha olvidado su contraseña?"; -App::$strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Introduzca y envíe su dirección de correo electrónico para el restablecimiento de su contraseña. Luego revise su correo para obtener más instrucciones."; -App::$strings["Email Address"] = "Dirección de correo electrónico"; -App::$strings["Reset"] = "Reiniciar"; -App::$strings["Unable to update menu."] = "No se puede actualizar el menú."; -App::$strings["Unable to create menu."] = "No se puede crear el menú."; -App::$strings["Menu Name"] = "Nombre del menú"; -App::$strings["Unique name (not visible on webpage) - required"] = "Nombre único (no será visible en la página web) - requerido"; -App::$strings["Menu Title"] = "Título del menú"; -App::$strings["Visible on webpage - leave empty for no title"] = "Visible en la página web - no ponga nada si no desea un título"; -App::$strings["Allow Bookmarks"] = "Permitir marcadores"; -App::$strings["Menu may be used to store saved bookmarks"] = "El menú se puede usar para guardar marcadores"; -App::$strings["Submit and proceed"] = "Enviar y proceder"; -App::$strings["Menus"] = "Menús"; -App::$strings["Bookmarks allowed"] = "Marcadores permitidos"; -App::$strings["Delete this menu"] = "Borrar este menú"; -App::$strings["Edit menu contents"] = "Editar los contenidos del menú"; -App::$strings["Edit this menu"] = "Modificar este menú"; -App::$strings["Menu could not be deleted."] = "El menú no puede ser eliminado."; -App::$strings["Menu not found."] = "Menú no encontrado"; -App::$strings["Edit Menu"] = "Modificar el menú"; -App::$strings["Add or remove entries to this menu"] = "Añadir o quitar entradas en este menú"; -App::$strings["Menu name"] = "Nombre del menú"; -App::$strings["Must be unique, only seen by you"] = "Debe ser único, solo será visible para usted"; -App::$strings["Menu title"] = "Título del menú"; -App::$strings["Menu title as seen by others"] = "El título del menú tal como será visto por los demás"; -App::$strings["Allow bookmarks"] = "Permitir marcadores"; -App::$strings["Not found."] = "No encontrado."; -App::$strings["__ctx:mood__ %1\$s is %2\$s"] = "%1\$s está %2\$s"; -App::$strings["Mood"] = "Estado de ánimo"; -App::$strings["Set your current mood and tell your friends"] = "Describir su estado de ánimo para comunicárselo a sus amigos"; -App::$strings["Profile Match"] = "Perfil compatible"; -App::$strings["No keywords to match. Please add keywords to your default profile."] = "No hay palabras clave en el perfil principal para poder encontrar perfiles compatibles. Por favor, añada palabras clave a su perfil principal."; -App::$strings["is interested in:"] = "está interesado en:"; -App::$strings["No matches"] = "No se han encontrado perfiles compatibles"; -App::$strings["No such group"] = "No se encuentra el grupo"; -App::$strings["No such channel"] = "No se encuentra el canal"; -App::$strings["forum"] = "foro"; -App::$strings["Search Results For:"] = "Buscar resultados para:"; -App::$strings["Privacy group is empty"] = "El grupo de canales está vacío"; -App::$strings["Privacy group: "] = "Grupo de canales: "; -App::$strings["Invalid connection."] = "Conexión no válida."; -App::$strings["No more system notifications."] = "No hay más notificaciones del sistema"; -App::$strings["System Notifications"] = "Notificaciones del sistema"; -App::$strings["Unable to create element."] = "Imposible crear el elemento."; -App::$strings["Unable to update menu element."] = "No es posible actualizar el elemento del menú."; -App::$strings["Unable to add menu element."] = "No es posible añadir el elemento al menú"; -App::$strings["Menu Item Permissions"] = "Permisos del elemento del menú"; -App::$strings["(click to open/close)"] = "(pulsar para abrir o cerrar)"; -App::$strings["Link Name"] = "Nombre del enlace"; -App::$strings["Link or Submenu Target"] = "Destino del enlace o submenú"; -App::$strings["Enter URL of the link or select a menu name to create a submenu"] = "Introducir la dirección del enlace o seleccionar el nombre de un submenú"; -App::$strings["Use magic-auth if available"] = "Usar la autenticación mágica si está disponible"; -App::$strings["Open link in new window"] = "Abrir el enlace en una nueva ventana"; -App::$strings["Order in list"] = "Orden en la lista"; -App::$strings["Higher numbers will sink to bottom of listing"] = "Los números más altos irán al final de la lista"; -App::$strings["Submit and finish"] = "Enviar y terminar"; -App::$strings["Submit and continue"] = "Enviar y continuar"; -App::$strings["Menu:"] = "Menú:"; -App::$strings["Link Target"] = "Destino del enlace"; -App::$strings["Edit menu"] = "Editar menú"; -App::$strings["Edit element"] = "Editar el elemento"; -App::$strings["Drop element"] = "Eliminar el elemento"; -App::$strings["New element"] = "Nuevo elemento"; -App::$strings["Edit this menu container"] = "Modificar el contenedor del menú"; -App::$strings["Add menu element"] = "Añadir un elemento al menú"; -App::$strings["Delete this menu item"] = "Eliminar este elemento del menú"; -App::$strings["Edit this menu item"] = "Modificar este elemento del menú"; -App::$strings["Menu item not found."] = "Este elemento del menú no se ha encontrado"; -App::$strings["Menu item deleted."] = "Este elemento del menú ha sido borrado"; -App::$strings["Menu item could not be deleted."] = "Este elemento del menú no puede ser borrado."; -App::$strings["Edit Menu Element"] = "Editar elemento del menú"; -App::$strings["Link text"] = "Texto del enlace"; -App::$strings["Name or caption"] = "Nombre o descripción"; -App::$strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\""] = "Ejemplos: \"Juan García\", \"Luisa y sus caballos\", \"Fútbol\", \"Grupo de aviación\""; -App::$strings["Choose a short nickname"] = "Elija un alias corto"; -App::$strings["Your nickname will be used to create an easy to remember channel address e.g. nickname%s"] = "Su alias se usará para crear una dirección de canal fácil de recordar, p. ej.: alias%s"; -App::$strings["Channel role and privacy"] = "Clase de canal y privacidad"; -App::$strings["Select a channel role with your privacy requirements."] = "Seleccione un tipo de canal con sus requisitos de privacidad"; -App::$strings["Read more about roles"] = "Leer más sobre los roles"; -App::$strings["Create Channel"] = "Crear un canal"; -App::$strings["A channel is your identity on this network. It can represent a person, a blog, or a forum to name a few. Channels can make connections with other channels to share information with highly detailed permissions."] = "Un canal es su identidad en esta red. Puede representar a una persona, un blog o un foro, por nombrar unos pocos ejemplos. Los canales se pueden conectar con otros canales para compartir información con una gama de permisos extremadamente detallada."; -App::$strings["or import an existing channel from another location."] = "O importar un canal existente desde otro lugar."; -App::$strings["Invalid request identifier."] = "Petición inválida del identificador."; -App::$strings["Discard"] = "Descartar"; -App::$strings["Mark all system notifications seen"] = "Marcar todas las notificaciones de sistema como leídas"; +App::$strings["Profile updated."] = "Perfil actualizado."; +App::$strings["Hide your connections list from viewers of this profile"] = "Ocultar la lista de conexiones a los visitantes del perfil"; +App::$strings["Edit Profile Details"] = "Modificar los detalles de este perfil"; +App::$strings["View this profile"] = "Ver este perfil"; +App::$strings["Edit visibility"] = "Editar visibilidad"; +App::$strings["Profile Tools"] = "Gestión del perfil"; +App::$strings["Change cover photo"] = "Cambiar la imagen de portada del perfil"; +App::$strings["Change profile photo"] = "Cambiar la foto del perfil"; +App::$strings["Create a new profile using these settings"] = "Crear un nuevo perfil usando estos ajustes"; +App::$strings["Clone this profile"] = "Clonar este perfil"; +App::$strings["Delete this profile"] = "Eliminar este perfil"; +App::$strings["Add profile things"] = "Añadir cosas al perfil"; +App::$strings["Personal"] = "Personales"; +App::$strings["Relation"] = "Relación"; +App::$strings["Miscellaneous"] = "Varios"; +App::$strings["Import profile from file"] = "Importar perfil desde un fichero"; +App::$strings["Export profile to file"] = "Exportar perfil a un fichero"; +App::$strings["Your gender"] = "Género"; +App::$strings["Marital status"] = "Estado civil"; +App::$strings["Sexual preference"] = "Preferencia sexual"; +App::$strings["Profile name"] = "Nombre del perfil"; +App::$strings["This is your default profile."] = "Este es su perfil principal."; +App::$strings["Your full name"] = "Nombre completo"; +App::$strings["Title/Description"] = "Título o descripción"; +App::$strings["Street address"] = "Dirección"; +App::$strings["Locality/City"] = "Ciudad"; +App::$strings["Region/State"] = "Región o Estado"; +App::$strings["Postal/Zip code"] = "Código postal"; +App::$strings["Country"] = "País"; +App::$strings["Who (if applicable)"] = "Quién (si es pertinente)"; +App::$strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Por ejemplo: ana123, María González, sara@ejemplo.com"; +App::$strings["Since (date)"] = "Desde (fecha)"; +App::$strings["Tell us about yourself"] = "Háblenos de usted"; +App::$strings["Hometown"] = "Lugar de nacimiento"; +App::$strings["Political views"] = "Ideas políticas"; +App::$strings["Religious views"] = "Creencias religiosas"; +App::$strings["Keywords used in directory listings"] = "Palabras clave utilizadas en los listados de directorios"; +App::$strings["Example: fishing photography software"] = "Por ejemplo: software de fotografía submarina"; +App::$strings["Musical interests"] = "Preferencias musicales"; +App::$strings["Books, literature"] = "Libros, literatura"; +App::$strings["Television"] = "Televisión"; +App::$strings["Film/Dance/Culture/Entertainment"] = "Cine, danza, cultura, entretenimiento"; +App::$strings["Hobbies/Interests"] = "Aficiones o intereses"; +App::$strings["Love/Romance"] = "Vida sentimental o amorosa"; +App::$strings["School/Education"] = "Estudios"; +App::$strings["Contact information and social networks"] = "Información de contacto y redes sociales"; +App::$strings["My other channels"] = "Mis otros canales"; +App::$strings["Profile Image"] = "Imagen del perfil"; +App::$strings["Edit Profiles"] = "Editar perfiles"; +App::$strings["Your service plan only allows %d channels."] = "Su paquete de servicios solo permite %d canales."; +App::$strings["Nothing to import."] = "No hay nada para importar."; +App::$strings["Unable to download data from old server"] = "No se han podido descargar datos de su antiguo servidor"; +App::$strings["Imported file is empty."] = "El fichero importado está vacío."; +App::$strings["Warning: Database versions differ by %1\$d updates."] = "Atención: Las versiones de la base de datos difieren en %1\$d actualizaciones."; +App::$strings["Cloned channel not found. Import failed."] = "No se ha podido importar el canal porque el canal clonado no se ha encontrado."; +App::$strings["No channel. Import failed."] = "No hay canal. La importación ha fallado"; +App::$strings["Import completed."] = "Importación completada."; +App::$strings["You must be logged in to use this feature."] = "Debe estar registrado para poder usar esta funcionalidad."; +App::$strings["Import Channel"] = "Importar canal"; +App::$strings["Use this form to import an existing channel from a different server/hub. You may retrieve the channel identity from the old server/hub via the network or provide an export file."] = "Emplee este formulario para importar un canal desde un servidor/hub diferente. Puede recuperar el canal desde el antiguo servidor/hub a través de la red o proporcionando un fichero de exportación."; +App::$strings["File to Upload"] = "Fichero para subir"; +App::$strings["Or provide the old server/hub details"] = "O proporcione los detalles de su antiguo servidor/hub"; +App::$strings["Your old identity address (xyz@example.com)"] = "Su identidad en el antiguo servidor (canal@ejemplo.com)"; +App::$strings["Your old login email address"] = "Su antigua dirección de correo electrónico"; +App::$strings["Your old login password"] = "Su antigua contraseña"; +App::$strings["For either option, please choose whether to make this hub your new primary address, or whether your old location should continue this role. You will be able to post from either location, but only one can be marked as the primary location for files, photos, and media."] = "Para cualquiera de las opciones, elija si hacer de este servidor su nueva dirección primaria, o si su antigua dirección debe continuar con este papel. Usted podrá publicar desde cualquier ubicación, pero sólo una puede estar marcada como la ubicación principal para los ficheros, fotos y otras imágenes o vídeos."; +App::$strings["Make this hub my primary location"] = "Convertir este servidor en mi ubicación primaria"; +App::$strings["Import existing posts if possible (experimental - limited by available memory"] = "Importar el contenido publicado si es posible (experimental - limitado por la memoria disponible"; +App::$strings["This process may take several minutes to complete. Please submit the form only once and leave this page open until finished."] = "Este proceso puede tardar varios minutos en completarse. Por favor envíe el formulario una sola vez y mantenga esta página abierta hasta que termine."; +App::$strings["\$Projectname"] = "\$Projectname"; +App::$strings["Welcome to %s"] = "Bienvenido a %s"; +App::$strings["Unable to locate original post."] = "No ha sido posible encontrar la entrada original."; +App::$strings["Empty post discarded."] = "La entrada vacía ha sido desechada."; +App::$strings["Executable content type not permitted to this channel."] = "Contenido de tipo ejecutable no permitido en este canal."; +App::$strings["Duplicate post suppressed."] = "Se ha suprimido la entrada duplicada."; +App::$strings["System error. Post not saved."] = "Error del sistema. La entrada no se ha podido salvar."; +App::$strings["Unable to obtain post information from database."] = "No ha sido posible obtener información de la entrada en la base de datos."; +App::$strings["You have reached your limit of %1$.0f top level posts."] = "Ha alcanzado su límite de %1$.0f entradas en la página principal."; +App::$strings["You have reached your limit of %1$.0f webpages."] = "Ha alcanzado su límite de %1$.0f páginas web."; App::$strings["Page owner information could not be retrieved."] = "La información del propietario de la página no pudo ser recuperada."; App::$strings["Profile Photos"] = "Fotos del perfil"; App::$strings["Album not found."] = "Álbum no encontrado."; @@ -673,122 +611,164 @@ App::$strings["__ctx:noun__ Dislikes"] = "No me gusta"; App::$strings["Close"] = "Cerrar"; App::$strings["View Album"] = "Ver álbum"; App::$strings["Recent Photos"] = "Fotos recientes"; -App::$strings["sent you a private message"] = "le ha enviado un mensaje privado"; -App::$strings["added your channel"] = "añadió este canal a sus conexiones"; -App::$strings["g A l F d"] = "g A l d F"; -App::$strings["[today]"] = "[hoy]"; -App::$strings["posted an event"] = "publicó un evento"; -App::$strings["Unable to find your hub."] = "No se puede encontrar su servidor."; -App::$strings["Post successful."] = "Enviado con éxito."; -App::$strings["OpenID protocol error. No ID returned."] = "Error del protocolo OpenID. Ningún ID recibido como respuesta."; -App::$strings["Login failed."] = "El acceso ha fallado."; -App::$strings["Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."] = "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."; -App::$strings["This setting requires special processing and editing has been blocked."] = "Este ajuste necesita de un proceso especial y la edición ha sido bloqueada."; -App::$strings["Configuration Editor"] = "Editor de configuración"; -App::$strings["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."] = "Atención: El cambio de algunos ajustes puede volver inutilizable su canal. Por favor, abandone la página excepto que esté seguro y sepa cómo usar correctamente esta característica."; -App::$strings["Layout updated."] = "Plantilla actualizada."; -App::$strings["Edit System Page Description"] = "Editor del Sistema de Descripción de Páginas"; -App::$strings["Layout not found."] = "Plantilla no encontrada"; -App::$strings["Module Name:"] = "Nombre del módulo:"; -App::$strings["Layout Help"] = "Ayuda para el diseño de plantillas de página"; -App::$strings["Poke"] = "Toques y otras cosas"; -App::$strings["Poke somebody"] = "Dar un toque a alguien"; -App::$strings["Poke/Prod"] = "Toque/Incitación"; -App::$strings["Poke, prod or do other things to somebody"] = "Dar un toque, incitar o hacer otras cosas a alguien"; -App::$strings["Recipient"] = "Destinatario"; -App::$strings["Choose what you wish to do to recipient"] = "Elegir qué desea enviar al destinatario"; -App::$strings["Make this post private"] = "Convertir en privado este envío"; -App::$strings["Fetching URL returns error: %1\$s"] = "Al intentar obtener la dirección, retorna el error: %1\$s"; -App::$strings["Profile not found."] = "Perfil no encontrado."; -App::$strings["Profile deleted."] = "Perfil eliminado."; -App::$strings["Profile-"] = "Perfil-"; -App::$strings["New profile created."] = "El nuevo perfil ha sido creado."; -App::$strings["Profile unavailable to clone."] = "Perfil no disponible para clonar."; -App::$strings["Profile unavailable to export."] = "Perfil no disponible para exportar."; -App::$strings["Profile Name is required."] = "Se necesita el nombre del perfil."; -App::$strings["Marital Status"] = "Estado civil"; -App::$strings["Romantic Partner"] = "Pareja sentimental"; -App::$strings["Likes"] = "Me gusta"; -App::$strings["Dislikes"] = "No me gusta"; -App::$strings["Work/Employment"] = "Trabajo:"; -App::$strings["Religion"] = "Religión"; -App::$strings["Political Views"] = "Ideas políticas"; -App::$strings["Sexual Preference"] = "Preferencia sexual"; -App::$strings["Homepage"] = "Página personal"; -App::$strings["Interests"] = "Intereses"; -App::$strings["Profile updated."] = "Perfil actualizado."; -App::$strings["Hide your connections list from viewers of this profile"] = "Ocultar la lista de conexiones a los visitantes del perfil"; -App::$strings["Edit Profile Details"] = "Modificar los detalles de este perfil"; -App::$strings["View this profile"] = "Ver este perfil"; -App::$strings["Edit visibility"] = "Editar visibilidad"; -App::$strings["Profile Tools"] = "Gestión del perfil"; -App::$strings["Change cover photo"] = "Cambiar la imagen de portada del perfil"; -App::$strings["Change profile photo"] = "Cambiar la foto del perfil"; -App::$strings["Create a new profile using these settings"] = "Crear un nuevo perfil usando estos ajustes"; -App::$strings["Clone this profile"] = "Clonar este perfil"; -App::$strings["Delete this profile"] = "Eliminar este perfil"; -App::$strings["Add profile things"] = "Añadir cosas al perfil"; -App::$strings["Personal"] = "Personales"; -App::$strings["Relation"] = "Relación"; -App::$strings["Miscellaneous"] = "Varios"; -App::$strings["Import profile from file"] = "Importar perfil desde un fichero"; -App::$strings["Export profile to file"] = "Exportar perfil a un fichero"; -App::$strings["Your gender"] = "Género"; -App::$strings["Marital status"] = "Estado civil"; -App::$strings["Sexual preference"] = "Preferencia sexual"; -App::$strings["Profile name"] = "Nombre del perfil"; -App::$strings["This is your default profile."] = "Este es su perfil principal."; -App::$strings["Your full name"] = "Nombre completo"; -App::$strings["Title/Description"] = "Título o descripción"; -App::$strings["Street address"] = "Dirección"; -App::$strings["Locality/City"] = "Ciudad"; -App::$strings["Region/State"] = "Región o Estado"; -App::$strings["Postal/Zip code"] = "Código postal"; -App::$strings["Country"] = "País"; -App::$strings["Who (if applicable)"] = "Quién (si es pertinente)"; -App::$strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Por ejemplo: ana123, María González, sara@ejemplo.com"; -App::$strings["Since (date)"] = "Desde (fecha)"; -App::$strings["Tell us about yourself"] = "Háblenos de usted"; -App::$strings["Hometown"] = "Lugar de nacimiento"; -App::$strings["Political views"] = "Ideas políticas"; -App::$strings["Religious views"] = "Creencias religiosas"; -App::$strings["Keywords used in directory listings"] = "Palabras clave utilizadas en los listados de directorios"; -App::$strings["Example: fishing photography software"] = "Por ejemplo: software de fotografía submarina"; -App::$strings["Musical interests"] = "Preferencias musicales"; -App::$strings["Books, literature"] = "Libros, literatura"; -App::$strings["Television"] = "Televisión"; -App::$strings["Film/Dance/Culture/Entertainment"] = "Cine, danza, cultura, entretenimiento"; -App::$strings["Hobbies/Interests"] = "Aficiones o intereses"; -App::$strings["Love/Romance"] = "Vida sentimental o amorosa"; -App::$strings["School/Education"] = "Estudios"; -App::$strings["Contact information and social networks"] = "Información de contacto y redes sociales"; -App::$strings["My other channels"] = "Mis otros canales"; -App::$strings["Profile Image"] = "Imagen del perfil"; -App::$strings["Edit Profiles"] = "Editar perfiles"; -App::$strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Recargue la página o limpie el caché del navegador si la nueva foto no se muestra inmediatamente."; -App::$strings["Upload Profile Photo"] = "Subir foto de perfil"; -App::$strings["Invalid profile identifier."] = "Identificador del perfil no válido"; -App::$strings["Profile Visibility Editor"] = "Editor de visibilidad del perfil"; -App::$strings["Profile"] = "Perfil"; -App::$strings["Click on a contact to add or remove."] = "Pulsar en un contacto para añadirlo o eliminarlo."; -App::$strings["Visible To"] = "Visible para"; -App::$strings["Public Hubs"] = "Servidores públicos"; -App::$strings["The listed hubs allow public registration for the \$Projectname network. All hubs in the network are interlinked so membership on any of them conveys membership in the network as a whole. Some hubs may require subscription or provide tiered service plans. The hub itself may provide additional details."] = "Los sitios listados permiten el registro público en la red \$Projectname. Todos los sitios de la red están vinculados entre sí, por lo que sus miembros, en ninguno de ellos, indican la pertenencia a la red en su conjunto. Algunos sitios pueden requerir suscripción o proporcionar planes de servicio por niveles. Los mismos hubs pueden proporcionar detalles adicionales."; -App::$strings["Hub URL"] = "Dirección del hub"; -App::$strings["Access Type"] = "Tipo de acceso"; -App::$strings["Registration Policy"] = "Normas de registro"; -App::$strings["Stats"] = "Estadísticas"; -App::$strings["Software"] = "Software"; -App::$strings["Ratings"] = "Valoraciones"; -App::$strings["Rate"] = "Valorar"; -App::$strings["Website:"] = "Sitio web:"; -App::$strings["Remote Channel [%s] (not yet known on this site)"] = "Canal remoto [%s] (aún no es conocido en este sitio)"; -App::$strings["Rating (this information is public)"] = "Valoración (esta información es pública)"; -App::$strings["Optionally explain your rating (this information is public)"] = "Opcionalmente puede explicar su valoración (esta información es pública)"; -App::$strings["No ratings"] = "Ninguna valoración"; -App::$strings["Rating: "] = "Valoración:"; -App::$strings["Website: "] = "Sitio web:"; -App::$strings["Description: "] = "Descripción:"; +App::$strings["Remote privacy information not available."] = "La información privada remota no está disponible."; +App::$strings["Visible to:"] = "Visible para:"; +App::$strings["Import completed"] = "Importación completada"; +App::$strings["Import Items"] = "Importar elementos"; +App::$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."; +App::$strings["Total invitation limit exceeded."] = "Se ha superado el límite máximo de invitaciones."; +App::$strings["%s : Not a valid email address."] = "%s : No es una dirección de correo electrónico válida. "; +App::$strings["Please join us on \$Projectname"] = "Únase a nosotros en \$Projectname"; +App::$strings["Invitation limit exceeded. Please contact your site administrator."] = "Excedido el límite de invitaciones. Por favor, contacte con el Administrador de su sitio."; +App::$strings["%s : Message delivery failed."] = "%s : Falló el envío del mensaje."; +App::$strings["%d message sent."] = array( + 0 => "%d mensajes enviados.", + 1 => "%d mensajes enviados.", +); +App::$strings["You have no more invitations available"] = "No tiene más invitaciones disponibles"; +App::$strings["Send invitations"] = "Enviar invitaciones"; +App::$strings["Enter email addresses, one per line:"] = "Introduzca las direcciones de correo electrónico, una por línea:"; +App::$strings["Your message:"] = "Su mensaje:"; +App::$strings["Please join my community on \$Projectname."] = "Por favor, únase a mi comunidad en \$Projectname."; +App::$strings["You will need to supply this invitation code:"] = "Tendrá que suministrar este código de invitación:"; +App::$strings["1. Register at any \$Projectname location (they are all inter-connected)"] = "1. Regístrese en cualquier sitio de \$Projectname (están todos interconectados)"; +App::$strings["2. Enter my \$Projectname network address into the site searchbar."] = "2. Introduzca mi dirección \$Projectname en la caja de búsqueda del sitio."; +App::$strings["or visit"] = "o visitar"; +App::$strings["3. Click [Connect]"] = "3. Pulse [conectar]"; +App::$strings["Location not found."] = "Dirección no encontrada."; +App::$strings["Location lookup failed."] = "Ha fallado la búsqueda de la dirección."; +App::$strings["Please select another location to become primary before removing the primary location."] = "Por favor, seleccione una copia de su canal (un clon) para convertirlo en primario antes de eliminar su canal principal."; +App::$strings["Syncing locations"] = "Sincronización de ubicaciones"; +App::$strings["No locations found."] = "No encontrada ninguna dirección."; +App::$strings["Manage Channel Locations"] = "Gestionar las direcciones del canal"; +App::$strings["Primary"] = "Primario"; +App::$strings["Drop"] = "Eliminar"; +App::$strings["Sync Now"] = "Sincronizar ahora"; +App::$strings["Please wait several minutes between consecutive operations."] = "Por favor, espere algunos minutos entre operaciones consecutivas."; +App::$strings["When possible, drop a location by logging into that website/hub and removing your channel."] = "Cuando sea posible, elimine una ubicación iniciando sesión en el sitio web o \"hub\" y borrando su canal."; +App::$strings["Use this form to drop the location if the hub is no longer operating."] = "Utilice este formulario para eliminar la dirección si el \"hub\" no está funcionando desde hace tiempo."; +App::$strings["Hub not found."] = "Servidor no encontrado"; +App::$strings["Unable to lookup recipient."] = "Imposible asociar a un destinatario."; +App::$strings["Unable to communicate with requested channel."] = "Imposible comunicar con el canal solicitado."; +App::$strings["Cannot verify requested channel."] = "No se puede verificar el canal solicitado."; +App::$strings["Selected channel has private message restrictions. Send failed."] = "El canal seleccionado tiene restricciones sobre los mensajes privados. El envío falló."; +App::$strings["Messages"] = "Mensajes"; +App::$strings["Message recalled."] = "Mensaje revocado."; +App::$strings["Conversation removed."] = "Conversación eliminada."; +App::$strings["Expires YYYY-MM-DD HH:MM"] = "Caduca YYYY-MM-DD HH:MM"; +App::$strings["Requested channel is not in this network"] = "El canal solicitado no existe en esta red"; +App::$strings["Send Private Message"] = "Enviar un mensaje privado"; +App::$strings["To:"] = "Para:"; +App::$strings["Subject:"] = "Asunto:"; +App::$strings["Attach file"] = "Adjuntar fichero"; +App::$strings["Send"] = "Enviar"; +App::$strings["Set expiration date"] = "Configurar fecha de caducidad"; +App::$strings["Delete message"] = "Borrar mensaje"; +App::$strings["Delivery report"] = "Informe de transmisión"; +App::$strings["Recall message"] = "Revocar el mensaje"; +App::$strings["Message has been recalled."] = "El mensaje ha sido revocado."; +App::$strings["Delete Conversation"] = "Eliminar conversación"; +App::$strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Comunicación segura no disponible. Pero puede responder desde la página del perfil del remitente."; +App::$strings["Send Reply"] = "Responder"; +App::$strings["Your message for %s (%s):"] = "Su mensaje para %s (%s):"; +App::$strings["You have created %1$.0f of %2$.0f allowed channels."] = "Ha creado %1$.0f de %2$.0f canales permitidos."; +App::$strings["Create a new channel"] = "Crear un nuevo canal"; +App::$strings["Channel Manager"] = "Administración de canales"; +App::$strings["Current Channel"] = "Canal actual"; +App::$strings["Switch to one of your channels by selecting it."] = "Cambiar a uno de sus canales seleccionándolo."; +App::$strings["Default Channel"] = "Canal principal"; +App::$strings["Make Default"] = "Convertir en predeterminado"; +App::$strings["%d new messages"] = "%d mensajes nuevos"; +App::$strings["%d new introductions"] = "%d nuevas isolicitudes de conexión"; +App::$strings["Delegated Channel"] = "Canal delegado"; +App::$strings["Unable to update menu."] = "No se puede actualizar el menú."; +App::$strings["Unable to create menu."] = "No se puede crear el menú."; +App::$strings["Menu Name"] = "Nombre del menú"; +App::$strings["Unique name (not visible on webpage) - required"] = "Nombre único (no será visible en la página web) - requerido"; +App::$strings["Menu Title"] = "Título del menú"; +App::$strings["Visible on webpage - leave empty for no title"] = "Visible en la página web - no ponga nada si no desea un título"; +App::$strings["Allow Bookmarks"] = "Permitir marcadores"; +App::$strings["Menu may be used to store saved bookmarks"] = "El menú se puede usar para guardar marcadores"; +App::$strings["Submit and proceed"] = "Enviar y proceder"; +App::$strings["Menus"] = "Menús"; +App::$strings["Bookmarks allowed"] = "Marcadores permitidos"; +App::$strings["Delete this menu"] = "Borrar este menú"; +App::$strings["Edit menu contents"] = "Editar los contenidos del menú"; +App::$strings["Edit this menu"] = "Modificar este menú"; +App::$strings["Menu could not be deleted."] = "El menú no puede ser eliminado."; +App::$strings["Menu not found."] = "Menú no encontrado"; +App::$strings["Edit Menu"] = "Modificar el menú"; +App::$strings["Add or remove entries to this menu"] = "Añadir o quitar entradas en este menú"; +App::$strings["Menu name"] = "Nombre del menú"; +App::$strings["Must be unique, only seen by you"] = "Debe ser único, solo será visible para usted"; +App::$strings["Menu title"] = "Título del menú"; +App::$strings["Menu title as seen by others"] = "El título del menú tal como será visto por los demás"; +App::$strings["Allow bookmarks"] = "Permitir marcadores"; +App::$strings["Not found."] = "No encontrado."; +App::$strings["No valid account found."] = "No se ha encontrado una cuenta válida."; +App::$strings["Password reset request issued. Check your email."] = "Se ha recibido una solicitud de restablecimiento de contraseña. Consulte su correo electrónico."; +App::$strings["Site Member (%s)"] = "Usuario del sitio (%s)"; +App::$strings["Password reset requested at %s"] = "Se ha solicitado restablecer la contraseña en %s"; +App::$strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "La solicitud no ha podido ser verificada. (Puede que la haya enviado con anterioridad) El restablecimiento de la contraseña ha fallado."; +App::$strings["Password Reset"] = "Restablecer la contraseña"; +App::$strings["Your password has been reset as requested."] = "Su contraseña ha sido restablecida según lo solicitó."; +App::$strings["Your new password is"] = "Su nueva contraseña es"; +App::$strings["Save or copy your new password - and then"] = "Guarde o copie su nueva contraseña - y después"; +App::$strings["click here to login"] = "pulse aquí para conectarse"; +App::$strings["Your password may be changed from the Settings page after successful login."] = "Puede cambiar la contraseña en la página Ajustes una vez iniciada la sesión."; +App::$strings["Your password has changed at %s"] = "Su contraseña en %s ha sido cambiada"; +App::$strings["Forgot your Password?"] = "¿Ha olvidado su contraseña?"; +App::$strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Introduzca y envíe su dirección de correo electrónico para el restablecimiento de su contraseña. Luego revise su correo para obtener más instrucciones."; +App::$strings["Email Address"] = "Dirección de correo electrónico"; +App::$strings["Reset"] = "Reiniciar"; +App::$strings["__ctx:mood__ %1\$s is %2\$s"] = "%1\$s está %2\$s"; +App::$strings["Mood"] = "Estado de ánimo"; +App::$strings["Set your current mood and tell your friends"] = "Describir su estado de ánimo para comunicárselo a sus amigos"; +App::$strings["No such group"] = "No se encuentra el grupo"; +App::$strings["No such channel"] = "No se encuentra el canal"; +App::$strings["forum"] = "foro"; +App::$strings["Search Results For:"] = "Buscar resultados para:"; +App::$strings["Privacy group is empty"] = "El grupo de canales está vacío"; +App::$strings["Privacy group: "] = "Grupo de canales: "; +App::$strings["Invalid connection."] = "Conexión no válida."; +App::$strings["No more system notifications."] = "No hay más notificaciones del sistema"; +App::$strings["System Notifications"] = "Notificaciones del sistema"; +App::$strings["Profile Match"] = "Perfil compatible"; +App::$strings["No keywords to match. Please add keywords to your default profile."] = "No hay palabras clave en el perfil principal para poder encontrar perfiles compatibles. Por favor, añada palabras clave a su perfil principal."; +App::$strings["is interested in:"] = "está interesado en:"; +App::$strings["No matches"] = "No se han encontrado perfiles compatibles"; +App::$strings["Posts and comments"] = "Publicaciones y comentarios"; +App::$strings["Only posts"] = "Solo publicaciones"; +App::$strings["Insufficient permissions. Request redirected to profile page."] = "Permisos insuficientes. Petición redirigida a la página del perfil."; +App::$strings["Unable to create element."] = "Imposible crear el elemento."; +App::$strings["Unable to update menu element."] = "No es posible actualizar el elemento del menú."; +App::$strings["Unable to add menu element."] = "No es posible añadir el elemento al menú"; +App::$strings["Menu Item Permissions"] = "Permisos del elemento del menú"; +App::$strings["(click to open/close)"] = "(pulsar para abrir o cerrar)"; +App::$strings["Link Name"] = "Nombre del enlace"; +App::$strings["Link or Submenu Target"] = "Destino del enlace o submenú"; +App::$strings["Enter URL of the link or select a menu name to create a submenu"] = "Introducir la dirección del enlace o seleccionar el nombre de un submenú"; +App::$strings["Use magic-auth if available"] = "Usar la autenticación mágica si está disponible"; +App::$strings["Open link in new window"] = "Abrir el enlace en una nueva ventana"; +App::$strings["Order in list"] = "Orden en la lista"; +App::$strings["Higher numbers will sink to bottom of listing"] = "Los números más altos irán al final de la lista"; +App::$strings["Submit and finish"] = "Enviar y terminar"; +App::$strings["Submit and continue"] = "Enviar y continuar"; +App::$strings["Menu:"] = "Menú:"; +App::$strings["Link Target"] = "Destino del enlace"; +App::$strings["Edit menu"] = "Editar menú"; +App::$strings["Edit element"] = "Editar el elemento"; +App::$strings["Drop element"] = "Eliminar el elemento"; +App::$strings["New element"] = "Nuevo elemento"; +App::$strings["Edit this menu container"] = "Modificar el contenedor del menú"; +App::$strings["Add menu element"] = "Añadir un elemento al menú"; +App::$strings["Delete this menu item"] = "Eliminar este elemento del menú"; +App::$strings["Edit this menu item"] = "Modificar este elemento del menú"; +App::$strings["Menu item not found."] = "Este elemento del menú no se ha encontrado"; +App::$strings["Menu item deleted."] = "Este elemento del menú ha sido borrado"; +App::$strings["Menu item could not be deleted."] = "Este elemento del menú no puede ser borrado."; +App::$strings["Edit Menu Element"] = "Editar elemento del menú"; +App::$strings["Link text"] = "Texto del enlace"; App::$strings["Theme settings updated."] = "Ajustes del tema actualizados."; App::$strings["# Accounts"] = "# Cuentas"; App::$strings["# blocked accounts"] = "# cuentas bloqueadas"; @@ -1031,19 +1011,91 @@ App::$strings["(In addition to basic fields)"] = "(Además de los campos básico App::$strings["All available fields"] = "Todos los campos disponibles"; App::$strings["Custom Fields"] = "Campos personalizados"; App::$strings["Create Custom Field"] = "Crear un campo personalizado"; -App::$strings["App installed."] = "Aplicación instalada."; -App::$strings["Malformed app."] = "Aplicación con errores"; -App::$strings["Embed code"] = "Código incorporado"; -App::$strings["Edit App"] = "Modificar la aplicación"; -App::$strings["Create App"] = "Crear una aplicación"; -App::$strings["Name of app"] = "Nombre de la aplicación"; -App::$strings["Location (URL) of app"] = "Dirección (URL) de la aplicación"; -App::$strings["Photo icon URL"] = "Dirección del icono"; -App::$strings["80 x 80 pixels - optional"] = "80 x 80 pixels - opcional"; -App::$strings["Categories (optional, comma separated list)"] = "Categorías (opcional, lista separada por comas)"; -App::$strings["Version ID"] = "Versión"; -App::$strings["Price of app"] = "Precio de la aplicación"; -App::$strings["Location (URL) to purchase app"] = "Dirección (URL) donde adquirir la aplicación"; +App::$strings["Name or caption"] = "Nombre o descripción"; +App::$strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\""] = "Ejemplos: \"Juan García\", \"Luisa y sus caballos\", \"Fútbol\", \"Grupo de aviación\""; +App::$strings["Choose a short nickname"] = "Elija un alias corto"; +App::$strings["Your nickname will be used to create an easy to remember channel address e.g. nickname%s"] = "Su alias se usará para crear una dirección de canal fácil de recordar, p. ej.: alias%s"; +App::$strings["Channel role and privacy"] = "Clase de canal y privacidad"; +App::$strings["Select a channel role with your privacy requirements."] = "Seleccione un tipo de canal con sus requisitos de privacidad"; +App::$strings["Read more about roles"] = "Leer más sobre los roles"; +App::$strings["Create Channel"] = "Crear un canal"; +App::$strings["A channel is your identity on this network. It can represent a person, a blog, or a forum to name a few. Channels can make connections with other channels to share information with highly detailed permissions."] = "Un canal es su identidad en esta red. Puede representar a una persona, un blog o un foro, por nombrar unos pocos ejemplos. Los canales se pueden conectar con otros canales para compartir información con una gama de permisos extremadamente detallada."; +App::$strings["or import an existing channel from another location."] = "O importar un canal existente desde otro lugar."; +App::$strings["sent you a private message"] = "le ha enviado un mensaje privado"; +App::$strings["added your channel"] = "añadió este canal a sus conexiones"; +App::$strings["g A l F d"] = "g A l d F"; +App::$strings["[today]"] = "[hoy]"; +App::$strings["posted an event"] = "publicó un evento"; +App::$strings["Invalid request identifier."] = "Petición inválida del identificador."; +App::$strings["Discard"] = "Descartar"; +App::$strings["Mark all system notifications seen"] = "Marcar todas las notificaciones de sistema como leídas"; +App::$strings["Poke"] = "Toques y otras cosas"; +App::$strings["Poke somebody"] = "Dar un toque a alguien"; +App::$strings["Poke/Prod"] = "Toque/Incitación"; +App::$strings["Poke, prod or do other things to somebody"] = "Dar un toque, incitar o hacer otras cosas a alguien"; +App::$strings["Recipient"] = "Destinatario"; +App::$strings["Choose what you wish to do to recipient"] = "Elegir qué desea enviar al destinatario"; +App::$strings["Make this post private"] = "Convertir en privado este envío"; +App::$strings["Unable to find your hub."] = "No se puede encontrar su servidor."; +App::$strings["Post successful."] = "Enviado con éxito."; +App::$strings["OpenID protocol error. No ID returned."] = "Error del protocolo OpenID. Ningún ID recibido como respuesta."; +App::$strings["Login failed."] = "El acceso ha fallado."; +App::$strings["Invalid profile identifier."] = "Identificador del perfil no válido"; +App::$strings["Profile Visibility Editor"] = "Editor de visibilidad del perfil"; +App::$strings["Profile"] = "Perfil"; +App::$strings["Click on a contact to add or remove."] = "Pulsar en un contacto para añadirlo o eliminarlo."; +App::$strings["Visible To"] = "Visible para"; +App::$strings["This setting requires special processing and editing has been blocked."] = "Este ajuste necesita de un proceso especial y la edición ha sido bloqueada."; +App::$strings["Configuration Editor"] = "Editor de configuración"; +App::$strings["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."] = "Atención: El cambio de algunos ajustes puede volver inutilizable su canal. Por favor, abandone la página excepto que esté seguro y sepa cómo usar correctamente esta característica."; +App::$strings["Fetching URL returns error: %1\$s"] = "Al intentar obtener la dirección, retorna el error: %1\$s"; +App::$strings["Version %s"] = "Versión %s"; +App::$strings["Installed plugins/addons/apps:"] = "Extensiones (plugins), complementos o aplicaciones (apps) instaladas:"; +App::$strings["No installed plugins/addons/apps"] = "No hay instalada ninguna extensión (plugin), complemento o aplicación (app)"; +App::$strings["This is a hub of \$Projectname - a global cooperative network of decentralized privacy enhanced websites."] = "Este es un sitio integrado en \$Projectname - una red cooperativa mundial de sitios web descentralizados de privacidad mejorada."; +App::$strings["Tag: "] = "Etiqueta:"; +App::$strings["Last background fetch: "] = "Última actualización en segundo plano:"; +App::$strings["Current load average: "] = "Carga media actual:"; +App::$strings["Running at web location"] = "Corriendo en el sitio web"; +App::$strings["Please visit hubzilla.org to learn more about \$Projectname."] = "Por favor, visite hubzilla.org para más información sobre \$Projectname."; +App::$strings["Bug reports and issues: please visit"] = "Informes de errores e incidencias: por favor visite"; +App::$strings["\$projectname issues"] = "Problemas en \$projectname"; +App::$strings["Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com"] = "Sugerencias, elogios, etc - por favor, un correo electrónico a \"redmatrix\" en librelist - punto com"; +App::$strings["Site Administrators"] = "Administradores del sitio"; +App::$strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Encontramos un problema durante el inicio de sesión con la OpenID que proporcionó. Por favor, compruebe que la ID está correctamente escrita."; +App::$strings["The error message was:"] = "El mensaje de error fue:"; +App::$strings["Authentication failed."] = "Falló la autenticación."; +App::$strings["Remote Authentication"] = "Acceso desde su servidor"; +App::$strings["Enter your channel address (e.g. channel@example.com)"] = "Introduzca la dirección del canal (p.ej. canal@ejemplo.com)"; +App::$strings["Authenticate"] = "Acceder"; +App::$strings["Public Hubs"] = "Servidores públicos"; +App::$strings["The listed hubs allow public registration for the \$Projectname network. All hubs in the network are interlinked so membership on any of them conveys membership in the network as a whole. Some hubs may require subscription or provide tiered service plans. The hub itself may provide additional details."] = "Los sitios listados permiten el registro público en la red \$Projectname. Todos los sitios de la red están vinculados entre sí, por lo que sus miembros, en ninguno de ellos, indican la pertenencia a la red en su conjunto. Algunos sitios pueden requerir suscripción o proporcionar planes de servicio por niveles. Los mismos hubs pueden proporcionar detalles adicionales."; +App::$strings["Hub URL"] = "Dirección del hub"; +App::$strings["Access Type"] = "Tipo de acceso"; +App::$strings["Registration Policy"] = "Normas de registro"; +App::$strings["Stats"] = "Estadísticas"; +App::$strings["Software"] = "Software"; +App::$strings["Ratings"] = "Valoraciones"; +App::$strings["Rate"] = "Valorar"; +App::$strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Recargue la página o limpie el caché del navegador si la nueva foto no se muestra inmediatamente."; +App::$strings["Upload Profile Photo"] = "Subir foto de perfil"; +App::$strings["Block Name"] = "Nombre del bloque"; +App::$strings["Blocks"] = "Bloques"; +App::$strings["Block Title"] = "Título del bloque"; +App::$strings["Website:"] = "Sitio web:"; +App::$strings["Remote Channel [%s] (not yet known on this site)"] = "Canal remoto [%s] (aún no es conocido en este sitio)"; +App::$strings["Rating (this information is public)"] = "Valoración (esta información es pública)"; +App::$strings["Optionally explain your rating (this information is public)"] = "Opcionalmente puede explicar su valoración (esta información es pública)"; +App::$strings["No ratings"] = "Ninguna valoración"; +App::$strings["Rating: "] = "Valoración:"; +App::$strings["Website: "] = "Sitio web:"; +App::$strings["Description: "] = "Descripción:"; +App::$strings["Apps"] = "Aplicaciones (apps)"; +App::$strings["Title (optional)"] = "Título (opcional)"; +App::$strings["Edit Block"] = "Modificar este bloque"; +App::$strings["No channel."] = "Ningún canal."; +App::$strings["Common connections"] = "Conexiones comunes"; +App::$strings["No connections in common."] = "Ninguna conexión en común."; App::$strings["Select a bookmark folder"] = "Seleccionar una carpeta de marcadores"; App::$strings["Save Bookmark"] = "Guardar marcador"; App::$strings["URL of bookmark"] = "Dirección del marcador"; @@ -1069,7 +1121,7 @@ App::$strings["no"] = "no"; App::$strings["yes"] = "sí"; App::$strings["Membership on this site is by invitation only."] = "Para registrarse en este sitio es necesaria una invitación."; App::$strings["Register"] = "Registrarse"; -App::$strings["Proceed to create your first channel"] = "Crear su primer canal"; +App::$strings["This site may require email verification after submitting this form. If you are returned to a login page, please check your email for instructions."] = ""; App::$strings["Please login."] = "Por favor, inicie sesión."; App::$strings["Account removals are not allowed within 48 hours of changing the account password."] = "La eliminación de cuentas no está permitida hasta después de que hayan transcurrido 48 horas desde el último cambio de contraseña."; App::$strings["Remove This Account"] = "Eliminar esta cuenta"; @@ -1086,17 +1138,23 @@ App::$strings["This channel will be completely removed from the network. "] = "E App::$strings["Remove this channel and all its clones from the network"] = "Eliminar este canal y todos sus clones de la red"; App::$strings["By default only the instance of the channel located on this hub will be removed from the network"] = "Por defecto, solo la instancia del canal alojado en este servidor será eliminado de la red"; App::$strings["Remove Channel"] = "Eliminar el canal"; -App::$strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Encontramos un problema durante el inicio de sesión con la OpenID que proporcionó. Por favor, compruebe que la ID está correctamente escrita."; -App::$strings["The error message was:"] = "El mensaje de error fue:"; -App::$strings["Authentication failed."] = "Falló la autenticación."; -App::$strings["Remote Authentication"] = "Acceso desde su servidor"; -App::$strings["Enter your channel address (e.g. channel@example.com)"] = "Introduzca la dirección del canal (p.ej. canal@ejemplo.com)"; -App::$strings["Authenticate"] = "Acceder"; +App::$strings["Export Channel"] = "Exportar el canal"; +App::$strings["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."] = "Exportar la información básica del canal a un fichero. Este equivale a una copia de seguridad de sus conexiones, el perfil y datos fundamentales, que puede usarse para importar sus datos a un nuevo servidor, pero no incluye su contenido."; +App::$strings["Export Content"] = "Exportar contenidos"; +App::$strings["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."] = "Exportar la información sobre su canal y el contenido reciente a un fichero de respaldo JSON, que puede ser restaurado o importado a otro servidor. Este fichero incluye todas sus conexiones, permisos, datos del perfil y publicaciones de varios meses. Puede llegar a ser MUY grande. Por favor, sea paciente, la descarga puede tardar varios minutos en comenzar."; +App::$strings["Export your posts from a given year."] = "Exporta sus publicaciones de un año dado."; +App::$strings["You may also export your posts and conversations for a particular year or month. Adjust the date in your browser location bar to select other dates. If the export fails (possibly due to memory exhaustion on your server hub), please try again selecting a more limited date range."] = "También puede exportar sus mensajes y conversaciones durante un año o mes en particular. Ajuste la fecha en la barra de direcciones del navegador para seleccionar otras fechas. Si la exportación falla (posiblemente debido al agotamiento de la memoria del servidor hub), por favor, intente de nuevo la selección de un rango de fechas más pequeño."; +App::$strings["To select all posts for a given year, such as this year, visit %2\$s"] = "Para seleccionar todos los mensajes de un año determinado, como este año, visite %2\$s"; +App::$strings["To select all posts for a given month, such as January of this year, visit %2\$s"] = "Para seleccionar todos los mensajes de un mes determinado, como el de enero de este año, visite %2\$s"; +App::$strings["These content files may be imported or restored by visiting %2\$s on any site containing your channel. For best results please import or restore these in date order (oldest first)."] = "Estos ficheros pueden ser importados o restaurados visitando %2\$s o cualquier sitio que contenga su canal. Para obtener los mejores resultados, por favor, importar o restaurar estos ficheros en orden de fecha (la más antigua primero)."; App::$strings["Items tagged with: %s"] = "elementos etiquetados con: %s"; App::$strings["Search results for: %s"] = "Resultados de la búsqueda para: %s"; App::$strings["No service class restrictions found."] = "No se han encontrado restricciones sobre esta clase de servicio."; App::$strings["Name is required"] = "El nombre es obligatorio"; App::$strings["Key and Secret are required"] = "\"Key\" y \"Secret\" son obligatorios"; +App::$strings["This channel is limited to %d tokens"] = ""; +App::$strings["Name and Password are required."] = ""; +App::$strings["Token saved."] = ""; App::$strings["Not valid email."] = "Correo electrónico no válido."; App::$strings["Protected email address. Cannot change to that email."] = "Dirección de correo electrónico protegida. No se puede cambiar a ella."; App::$strings["System failure storing new email. Please try again."] = "Fallo de sistema al guardar el nuevo correo electrónico. Por favor, inténtelo de nuevo."; @@ -1129,6 +1187,12 @@ App::$strings["Confirm New Password"] = "Confirmar la nueva contraseña"; App::$strings["Leave password fields blank unless changing"] = "Dejar en blanco la contraseña a menos que desee cambiarla."; App::$strings["Email Address:"] = "Dirección de correo electrónico:"; App::$strings["Remove this account including all its channels"] = "Eliminar esta cuenta incluyendo todos sus canales"; +App::$strings["Use this form to create temporary access identifiers to share things with non-members. These identities may be used in Access Control Lists and visitors may login using these credentials to access the private content."] = ""; +App::$strings["You may also provide dropbox style access links to friends and associates by adding the Login Password to any specific site URL as shown. Examples:"] = ""; +App::$strings["Guest Access Tokens"] = ""; +App::$strings["Login Name"] = ""; +App::$strings["Login Password"] = ""; +App::$strings["Expires (yyyy-mm-dd)"] = ""; App::$strings["Additional Features"] = "Funcionalidades"; App::$strings["Connector Settings"] = "Configuración del conector"; App::$strings["No special theme for mobile devices"] = "Sin tema especial para dispositivos móviles"; @@ -1291,7 +1355,6 @@ App::$strings["GD graphics PHP module"] = "módulo PHP GD graphics"; App::$strings["OpenSSL PHP module"] = "módulo PHP OpenSSL"; App::$strings["mysqli or postgres PHP module"] = "módulo PHP mysqli o postgres"; App::$strings["mb_string PHP module"] = "módulo PHP mb_string"; -App::$strings["mcrypt PHP module"] = "módulo PHP mcrypt "; App::$strings["xml PHP module"] = "módulo PHP xml"; App::$strings["Apache mod_rewrite module"] = "módulo Apache mod_rewrite "; App::$strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Error: se necesita el módulo del servidor web Apache mod-rewrite pero no está instalado."; @@ -1302,7 +1365,6 @@ App::$strings["Error: GD graphics PHP module with JPEG support required but not App::$strings["Error: openssl PHP module required but not installed."] = "Error: el módulo PHP openssl es necesario, pero no está instalado."; App::$strings["Error: mysqli or postgres PHP module required but neither are installed."] = "Error: el módulo PHP mysqli o postgres es necesario pero ninguno de los dos está instalado."; App::$strings["Error: mb_string PHP module required but not installed."] = "Error: el módulo PHP mb_string es necesario, pero no está instalado."; -App::$strings["Error: mcrypt PHP module required but not installed."] = "Error: el módulo PHP mcrypt es necesario, pero no está instalado."; App::$strings["Error: xml PHP module required for DAV but not installed."] = "Error: el módulo PHP xml es necesario para DAV, pero no está instalado."; App::$strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "El instalador web no ha podido crear un fichero llamado “.htconfig.php” en la carpeta base de su servidor."; App::$strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "Esto está generalmente ligado a un problema de permisos, a causa del cual el servidor web tiene prohibido modificar ficheros en su carpeta - incluso si usted mismo tiene esos permisos."; @@ -1314,7 +1376,7 @@ App::$strings["In order to store these compiled templates, the web server needs App::$strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Por favor, asegúrese de que el servidor web está siendo ejecutado por un usuario que tenga permisos de escritura sobre esta carpeta (por ejemplo, www-data)."; App::$strings["Note: as a security measure, you should give the web server write access to %s only--not the template files (.tpl) that it contains."] = "Nota: como medida de seguridad, debe dar al servidor web permisos de escritura solo sobre %s - no sobre el fichero de plantilla (.tpl) que contiene."; App::$strings["%s is writable"] = "%s tiene permisos de escritura"; -App::$strings["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"] = "Hubzilla guarda los ficheros descargados en la carpeta \"store\". El servidor web necesita tener permisos de escritura sobre esa carpeta, en el directorio de instalación."; +App::$strings["This software 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"] = ""; App::$strings["store is writable"] = "\"store\" tiene permisos de escritura"; App::$strings["SSL certificate cannot be validated. Fix certificate or disable https access to this site."] = "El certificado SSL no ha podido ser validado. Corrija este problema o desactive el acceso https a este sitio."; App::$strings["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!"] = "Si su servidor soporta conexiones cifradas SSL o si permite conexiones al puerto TCP 443 (el puerto usado por el protocolo https), debe utilizar un certificado válido. No debe usar un certificado firmado por usted mismo."; @@ -1322,6 +1384,7 @@ App::$strings["This restriction is incorporated because public posts from you ma App::$strings["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."] = "Si su certificado no ha sido reconocido, los miembros de otros sitios (con certificados válidos) recibirán mensajes de aviso en sus propios sitios web."; App::$strings["This can cause usability issues elsewhere (not just on your own site) so we must insist on this requirement."] = "Por razones de compatibilidad (sobre el conjunto de la red, no solo sobre su propio sitio), debemos insistir en estos requisitos."; App::$strings["Providers are available that issue free certificates which are browser-valid."] = "Existen varias Autoridades de Certificación que le pueden proporcionar certificados válidos."; +App::$strings["If you are confident that the certificate is valid and signed by a trusted authority, check to see if you have failed to install an intermediate cert. These are not normally required by browsers, but are required for server-to-server communications."] = ""; App::$strings["SSL certificate validation"] = "validación del certificado SSL"; App::$strings["Url rewrite in .htaccess is not working. Check your server configuration.Test: "] = "No se pueden reescribir las direcciones web en .htaccess. Compruebe la configuración de su servidor:"; App::$strings["Url rewrite is working"] = "La reescritura de las direcciones funciona correctamente"; @@ -1333,19 +1396,20 @@ App::$strings["Files: shared with me"] = "Ficheros: compartidos conmigo"; App::$strings["NEW"] = "NUEVO"; App::$strings["Remove all files"] = "Eliminar todos los ficheros"; App::$strings["Remove this file"] = "Eliminar este fichero"; -App::$strings["Version %s"] = "Versión %s"; -App::$strings["Installed plugins/addons/apps:"] = "Extensiones (plugins), complementos o aplicaciones (apps) instaladas:"; -App::$strings["No installed plugins/addons/apps"] = "No hay instalada ninguna extensión (plugin), complemento o aplicación (app)"; -App::$strings["This is a hub of \$Projectname - a global cooperative network of decentralized privacy enhanced websites."] = "Este es un sitio integrado en \$Projectname - una red cooperativa mundial de sitios web descentralizados de privacidad mejorada."; -App::$strings["Tag: "] = "Etiqueta:"; -App::$strings["Last background fetch: "] = "Última actualización en segundo plano:"; -App::$strings["Current load average: "] = "Carga media actual:"; -App::$strings["Running at web location"] = "Corriendo en el sitio web"; -App::$strings["Please visit hubzilla.org to learn more about \$Projectname."] = "Por favor, visite hubzilla.org para más información sobre \$Projectname."; -App::$strings["Bug reports and issues: please visit"] = "Informes de errores e incidencias: por favor visite"; -App::$strings["\$projectname issues"] = "Problemas en \$projectname"; -App::$strings["Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com"] = "Sugerencias, elogios, etc - por favor, un correo electrónico a \"redmatrix\" en librelist - punto com"; -App::$strings["Site Administrators"] = "Administradores del sitio"; +App::$strings["Thing updated"] = "Elemento actualizado."; +App::$strings["Object store: failed"] = "Guardar objeto: ha fallado"; +App::$strings["Thing added"] = "Elemento añadido"; +App::$strings["OBJ: %1\$s %2\$s %3\$s"] = "OBJ: %1\$s %2\$s %3\$s"; +App::$strings["Show Thing"] = "Mostrar elemento"; +App::$strings["item not found."] = "elemento no encontrado."; +App::$strings["Edit Thing"] = "Editar elemento"; +App::$strings["Select a profile"] = "Seleccionar un perfil"; +App::$strings["Post an activity"] = "Publicar una actividad"; +App::$strings["Only sends to viewers of the applicable profile"] = "Sólo enviar a espectadores del perfil pertinente."; +App::$strings["Name of thing e.g. something"] = "Nombre del elemento, p. ej.:. \"algo\""; +App::$strings["URL of thing (optional)"] = "Dirección del elemento (opcional)"; +App::$strings["URL for photo of thing (optional)"] = "Dirección para la foto o elemento (opcional)"; +App::$strings["Add Thing to your Profile"] = "Añadir alguna cosa a su perfil"; App::$strings["Failed to create source. No channel selected."] = "Imposible crear el origen de los contenidos. Ningún canal ha sido seleccionado."; App::$strings["Source created."] = "Fuente creada."; App::$strings["Source updated."] = "Fuente actualizada."; @@ -1373,60 +1437,38 @@ App::$strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s ha etiquetado %3 App::$strings["Tag removed"] = "Etiqueta eliminada."; App::$strings["Remove Item Tag"] = "Eliminar etiqueta del elemento."; App::$strings["Select a tag to remove: "] = "Seleccionar una etiqueta para eliminar:"; -App::$strings["Thing updated"] = "Elemento actualizado."; -App::$strings["Object store: failed"] = "Guardar objeto: ha fallado"; -App::$strings["Thing added"] = "Elemento añadido"; -App::$strings["OBJ: %1\$s %2\$s %3\$s"] = "OBJ: %1\$s %2\$s %3\$s"; -App::$strings["Show Thing"] = "Mostrar elemento"; -App::$strings["item not found."] = "elemento no encontrado."; -App::$strings["Edit Thing"] = "Editar elemento"; -App::$strings["Select a profile"] = "Seleccionar un perfil"; -App::$strings["Post an activity"] = "Publicar una actividad"; -App::$strings["Only sends to viewers of the applicable profile"] = "Sólo enviar a espectadores del perfil pertinente."; -App::$strings["Name of thing e.g. something"] = "Nombre del elemento, p. ej.:. \"algo\""; -App::$strings["URL of thing (optional)"] = "Dirección del elemento (opcional)"; -App::$strings["URL for photo of thing (optional)"] = "Dirección para la foto o elemento (opcional)"; -App::$strings["Add Thing to your Profile"] = "Añadir alguna cosa a su perfil"; -App::$strings["Export Channel"] = "Exportar el canal"; -App::$strings["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."] = "Exportar la información básica del canal a un fichero. Este equivale a una copia de seguridad de sus conexiones, el perfil y datos fundamentales, que puede usarse para importar sus datos a un nuevo servidor, pero no incluye su contenido."; -App::$strings["Export Content"] = "Exportar contenidos"; -App::$strings["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."] = "Exportar la información sobre su canal y el contenido reciente a un fichero de respaldo JSON, que puede ser restaurado o importado a otro servidor. Este fichero incluye todas sus conexiones, permisos, datos del perfil y publicaciones de varios meses. Puede llegar a ser MUY grande. Por favor, sea paciente, la descarga puede tardar varios minutos en comenzar."; -App::$strings["Export your posts from a given year."] = "Exporta sus publicaciones de un año dado."; -App::$strings["You may also export your posts and conversations for a particular year or month. Adjust the date in your browser location bar to select other dates. If the export fails (possibly due to memory exhaustion on your server hub), please try again selecting a more limited date range."] = "También puede exportar sus mensajes y conversaciones durante un año o mes en particular. Ajuste la fecha en la barra de direcciones del navegador para seleccionar otras fechas. Si la exportación falla (posiblemente debido al agotamiento de la memoria del servidor hub), por favor, intente de nuevo la selección de un rango de fechas más pequeño."; -App::$strings["To select all posts for a given year, such as this year, visit %2\$s"] = "Para seleccionar todos los mensajes de un año determinado, como este año, visite %2\$s"; -App::$strings["To select all posts for a given month, such as January of this year, visit %2\$s"] = "Para seleccionar todos los mensajes de un mes determinado, como el de enero de este año, visite %2\$s"; -App::$strings["These content files may be imported or restored by visiting %2\$s on any site containing your channel. For best results please import or restore these in date order (oldest first)."] = "Estos ficheros pueden ser importados o restaurados visitando %2\$s o cualquier sitio que contenga su canal. Para obtener los mejores resultados, por favor, importar o restaurar estos ficheros en orden de fecha (la más antigua primero)."; -App::$strings["No connections."] = "Sin conexiones."; -App::$strings["Visit %s's profile [%s]"] = "Visitar el perfil de %s [%s]"; -App::$strings["View Connections"] = "Ver conexiones"; -App::$strings["Source of Item"] = "Origen del elemento"; App::$strings["Webpages"] = "Páginas web"; App::$strings["Actions"] = "Acciones"; App::$strings["Page Link"] = "Vínculo de la página"; App::$strings["Page Title"] = "Título de página"; +App::$strings["Not found"] = ""; +App::$strings["Wiki"] = "Wiki"; +App::$strings["Sandbox"] = "Entorno de edición"; +App::$strings["\"# Wiki Sandbox\\n\\nContent you **edit** and **preview** here *will not be saved*.\""] = ""; +App::$strings["Revision Comparison"] = "Comparación de revisiones"; +App::$strings["Revert"] = "Revertir"; +App::$strings["Enter the name of your new wiki:"] = "Nombre de su nuevo wiki:"; +App::$strings["Enter the name of the new page:"] = "Nombre de la nueva página:"; +App::$strings["Enter the new name:"] = "Nuevo nombre:"; +App::$strings["Embed image from photo albums"] = "Incluir una imagen de los álbumes de fotos"; +App::$strings["Embed an image from your albums"] = "Incluir una imagen de sus álbumes"; +App::$strings["OK"] = "OK"; +App::$strings["Choose images to embed"] = "Elegir imágenes para incluir"; +App::$strings["Choose an album"] = "Elegir un álbum"; +App::$strings["Choose a different album..."] = "Elegir un álbum diferente..."; +App::$strings["Error getting album list"] = "Error al obtener la lista de álbumes"; +App::$strings["Error getting photo link"] = "Error al obtener el enlace de la foto"; +App::$strings["Error getting album"] = "Error al obtener el álbum"; +App::$strings["No connections."] = "Sin conexiones."; +App::$strings["Visit %s's profile [%s]"] = "Visitar el perfil de %s [%s]"; +App::$strings["View Connections"] = "Ver conexiones"; +App::$strings["Source of Item"] = "Origen del elemento"; +App::$strings["Authorize application connection"] = "Autorizar una conexión de aplicación"; +App::$strings["Return to your app and insert this Securty Code:"] = "Volver a su aplicación e introducir este código de seguridad:"; +App::$strings["Please login to continue."] = "Por favor inicie sesión para continuar."; +App::$strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "¿Desea autorizar a esta aplicación a acceder a sus publicaciones y contactos, y/o crear nuevas publicaciones por usted?"; App::$strings["Xchan Lookup"] = "Búsqueda de canales"; App::$strings["Lookup xchan beginning with (or webbie): "] = "Buscar un canal (o un \"webbie\") que comience por:"; -App::$strings["Site Admin"] = "Administrador del sitio"; -App::$strings["Bug Report"] = "Informe de errores"; -App::$strings["View Bookmarks"] = "Ver los marcadores"; -App::$strings["My Chatrooms"] = "Mis salas de chat"; -App::$strings["Firefox Share"] = "Servicio de compartición de Firefox"; -App::$strings["Remote Diagnostics"] = "Diagnóstico remoto"; -App::$strings["Suggest Channels"] = "Sugerir canales"; -App::$strings["Login"] = "Iniciar sesión"; -App::$strings["Grid"] = "Red"; -App::$strings["Channel Home"] = "Mi canal"; -App::$strings["Events"] = "Eventos"; -App::$strings["Directory"] = "Directorio"; -App::$strings["Mail"] = "Correo"; -App::$strings["Chat"] = "Chat"; -App::$strings["Probe"] = "Probar"; -App::$strings["Suggest"] = "Sugerir"; -App::$strings["Random Channel"] = "Canal aleatorio"; -App::$strings["Invite"] = "Invitar"; -App::$strings["Features"] = "Funcionalidades"; -App::$strings["Post"] = "Publicación"; -App::$strings["Purchase"] = "Comprar"; App::$strings["Missing room name"] = "Sala de chat sin nombre"; App::$strings["Duplicate room name"] = "Nombre de sala duplicado."; App::$strings["Invalid room specifier."] = "Especificador de sala no válido."; @@ -1474,6 +1516,27 @@ App::$strings["Please visit %s to approve or reject the suggestion."] = "Por fav App::$strings["[Hubzilla:Notify]"] = "[Hubzilla:Aviso]"; App::$strings["created a new post"] = "ha creado una nueva entrada"; App::$strings["commented on %s's post"] = "ha comentado la entrada de %s"; +App::$strings["Site Admin"] = "Administrador del sitio"; +App::$strings["Bug Report"] = "Informe de errores"; +App::$strings["View Bookmarks"] = "Ver los marcadores"; +App::$strings["My Chatrooms"] = "Mis salas de chat"; +App::$strings["Firefox Share"] = "Servicio de compartición de Firefox"; +App::$strings["Remote Diagnostics"] = "Diagnóstico remoto"; +App::$strings["Suggest Channels"] = "Sugerir canales"; +App::$strings["Login"] = "Iniciar sesión"; +App::$strings["Grid"] = "Red"; +App::$strings["Channel Home"] = "Mi canal"; +App::$strings["Events"] = "Eventos"; +App::$strings["Directory"] = "Directorio"; +App::$strings["Mail"] = "Correo"; +App::$strings["Chat"] = "Chat"; +App::$strings["Probe"] = "Probar"; +App::$strings["Suggest"] = "Sugerir"; +App::$strings["Random Channel"] = "Canal aleatorio"; +App::$strings["Invite"] = "Invitar"; +App::$strings["Features"] = "Funcionalidades"; +App::$strings["Post"] = "Publicación"; +App::$strings["Purchase"] = "Comprar"; App::$strings["Private Message"] = "Mensaje Privado"; App::$strings["Select"] = "Seleccionar"; App::$strings["Save to Folder"] = "Guardar en carpeta"; @@ -1510,7 +1573,7 @@ App::$strings["Expires: %s"] = "Caduca: %s"; App::$strings["Save Bookmarks"] = "Guardar en Marcadores"; App::$strings["Add to Calendar"] = "Añadir al calendario"; App::$strings["Mark all seen"] = "Marcar todo como visto"; -App::$strings["[+] show all"] = "[+] mostrar todo:"; +App::$strings["%s show all"] = ""; App::$strings["Bold"] = "Negrita"; App::$strings["Italic"] = "Itálico "; App::$strings["Underline"] = "Subrayar"; @@ -1519,9 +1582,93 @@ App::$strings["Code"] = "Código"; App::$strings["Image"] = "Imagen"; App::$strings["Insert Link"] = "Insertar enlace"; App::$strings["Video"] = "Vídeo"; +App::$strings["Visible to your default audience"] = "Visible para su público predeterminado."; +App::$strings["Only me"] = "Sólo yo"; +App::$strings["Public"] = "Público"; +App::$strings["Anybody in the \$Projectname network"] = "Cualquiera en la red \$Projectname"; +App::$strings["Any account on %s"] = "Cualquier cuenta en %s"; +App::$strings["Any of my connections"] = "Cualquiera de mis conexiones"; +App::$strings["Only connections I specifically allow"] = "Sólo las conexiones que yo permita de forma explícita"; +App::$strings["Anybody authenticated (could include visitors from other networks)"] = "Cualquiera que esté autenticado (podría incluir a los visitantes de otras redes)"; +App::$strings["Any connections including those who haven't yet been approved"] = "Cualquier conexión incluyendo aquellas que aún no han sido aprobadas"; +App::$strings["This is your default setting for the audience of your normal stream, and posts."] = "Esta es la configuración predeterminada para su flujo (stream) habitual de publicaciones."; +App::$strings["This is your default setting for who can view your default channel profile"] = "Esta es su configuración por defecto para establecer quién puede ver su perfil del canal predeterminado"; +App::$strings["This is your default setting for who can view your connections"] = "Este es su ajuste predeterminado para establecer quién puede ver sus conexiones"; +App::$strings["This is your default setting for who can view your file storage and photos"] = "Este es su ajuste predeterminado para establecer quién puede ver su repositorio de ficheros y sus fotos"; +App::$strings["This is your default setting for the audience of your webpages"] = "Este es el ajuste predeterminado para establecer la audiencia de sus páginas web"; App::$strings["No username found in import file."] = "No se ha encontrado el nombre de usuario en el fichero importado."; App::$strings["Unable to create a unique channel address. Import failed."] = "No se ha podido crear una dirección de canal única. Ha fallado la importación."; App::$strings["Cannot locate DNS info for database server '%s'"] = "No se ha podido localizar información de DNS para el servidor de base de datos “%s”"; +App::$strings["Image exceeds website size limit of %lu bytes"] = "La imagen excede el límite de %lu bytes del sitio"; +App::$strings["Image file is empty."] = "El fichero de imagen está vacío. "; +App::$strings["Photo storage failed."] = "La foto no ha podido ser guardada."; +App::$strings["a new photo"] = "una nueva foto"; +App::$strings["__ctx:photo_upload__ %1\$s posted %2\$s to %3\$s"] = "%1\$s ha publicado %2\$s en %3\$s"; +App::$strings["Photo Albums"] = "Álbumes de fotos"; +App::$strings["Upload New Photos"] = "Subir nuevas fotos"; +App::$strings["Logout"] = "Finalizar sesión"; +App::$strings["End this session"] = "Finalizar esta sesión"; +App::$strings["Home"] = "Inicio"; +App::$strings["Your posts and conversations"] = "Sus publicaciones y conversaciones"; +App::$strings["Your profile page"] = "Su página del perfil"; +App::$strings["Manage/Edit profiles"] = "Administrar/editar perfiles"; +App::$strings["Edit Profile"] = "Editar el perfil"; +App::$strings["Edit your profile"] = "Editar su perfil"; +App::$strings["Your photos"] = "Sus fotos"; +App::$strings["Your files"] = "Sus ficheros"; +App::$strings["Your chatrooms"] = "Sus salas de chat"; +App::$strings["Bookmarks"] = "Marcadores"; +App::$strings["Your bookmarks"] = "Sus marcadores"; +App::$strings["Your webpages"] = "Sus páginas web"; +App::$strings["Your wiki"] = ""; +App::$strings["Sign in"] = "Acceder"; +App::$strings["%s - click to logout"] = "%s - pulsar para finalizar sesión"; +App::$strings["Remote authentication"] = "Acceder desde su servidor"; +App::$strings["Click to authenticate to your home hub"] = "Pulsar para identificarse en su servidor de inicio"; +App::$strings["Home Page"] = "Página de inicio"; +App::$strings["Create an account"] = "Crear una cuenta"; +App::$strings["Help and documentation"] = "Ayuda y documentación"; +App::$strings["Applications, utilities, links, games"] = "Aplicaciones, utilidades, enlaces, juegos"; +App::$strings["Search site @name, #tag, ?docs, content"] = "Buscar en el sitio por @nombre, #etiqueta, ?ayuda o contenido"; +App::$strings["Channel Directory"] = "Directorio de canales"; +App::$strings["Your grid"] = "Mi red"; +App::$strings["Mark all grid notifications seen"] = "Marcar todas las notificaciones de la red como vistas"; +App::$strings["Channel home"] = "Mi canal"; +App::$strings["Mark all channel notifications seen"] = "Marcar todas las notificaciones del canal como leídas"; +App::$strings["Notices"] = "Avisos"; +App::$strings["Notifications"] = "Notificaciones"; +App::$strings["See all notifications"] = "Ver todas las notificaciones"; +App::$strings["Private mail"] = "Correo privado"; +App::$strings["See all private messages"] = "Ver todas los mensajes privados"; +App::$strings["Mark all private messages seen"] = "Marcar todos los mensajes privados como leídos"; +App::$strings["Inbox"] = "Bandeja de entrada"; +App::$strings["Outbox"] = "Bandeja de salida"; +App::$strings["New Message"] = "Nuevo mensaje"; +App::$strings["Event Calendar"] = "Calendario de eventos"; +App::$strings["See all events"] = "Ver todos los eventos"; +App::$strings["Mark all events seen"] = "Marcar todos los eventos como leidos"; +App::$strings["Manage Your Channels"] = "Gestionar sus canales"; +App::$strings["Account/Channel Settings"] = "Ajustes de cuenta/canales"; +App::$strings["Admin"] = "Administrador"; +App::$strings["Site Setup and Configuration"] = "Ajustes y configuración del sitio"; +App::$strings["Loading..."] = "Cargando..."; +App::$strings["@name, #tag, ?doc, content"] = "@nombre, #etiqueta, ?ayuda, contenido"; +App::$strings["Please wait..."] = "Espere por favor…"; +App::$strings["view full size"] = "Ver en el tamaño original"; +App::$strings["Administrator"] = "Administrador"; +App::$strings["No Subject"] = "Sin asunto"; +App::$strings["Friendica"] = "Friendica"; +App::$strings["OStatus"] = "OStatus"; +App::$strings["GNU-Social"] = "GNU Social"; +App::$strings["RSS/Atom"] = "RSS/Atom"; +App::$strings["Diaspora"] = "Diaspora"; +App::$strings["Facebook"] = "Facebook"; +App::$strings["Zot"] = "Zot"; +App::$strings["LinkedIn"] = "LinkedIn"; +App::$strings["XMPP/IM"] = "XMPP/IM"; +App::$strings["MySpace"] = "MySpace"; +App::$strings["New Page"] = "Nueva página"; +App::$strings["Title"] = "Título"; App::$strings["Categories"] = "Categorías"; App::$strings["Tags"] = "Etiquetas"; App::$strings["Keywords"] = "Palabras clave"; @@ -1531,34 +1678,196 @@ App::$strings["want"] = "quiero"; App::$strings["wants"] = "quiere"; App::$strings["likes"] = "gusta de"; App::$strings["dislikes"] = "no gusta de"; -App::$strings["l F d, Y \\@ g:i A"] = "l d de F, Y \\@ G:i"; -App::$strings["Starts:"] = "Comienza:"; -App::$strings["Finishes:"] = "Finaliza:"; -App::$strings["This event has been added to your calendar."] = "Este evento ha sido añadido a su calendario."; -App::$strings["Not specified"] = "Sin especificar"; -App::$strings["Needs Action"] = "Necesita de una intervención"; -App::$strings["Completed"] = "Completado/a"; -App::$strings["In Process"] = "En proceso"; -App::$strings["Cancelled"] = "Cancelado/a"; +App::$strings["Unable to obtain identity information from database"] = "No ha sido posible obtener información sobre la identidad desde la base de datos"; +App::$strings["Empty name"] = "Nombre vacío"; +App::$strings["Name too long"] = "Nombre demasiado largo"; +App::$strings["No account identifier"] = "Ningún identificador de la cuenta"; +App::$strings["Nickname is required."] = "Se requiere un sobrenombre (alias)."; +App::$strings["Reserved nickname. Please choose another."] = "Sobrenombre en uso. Por favor, elija otro."; +App::$strings["Nickname has unsupported characters or is already being used on this site."] = "El alias contiene caracteres no admitidos o está ya en uso por otros miembros de este sitio."; +App::$strings["Unable to retrieve created identity"] = "No ha sido posible recuperar la identidad creada"; +App::$strings["Default Profile"] = "Perfil principal"; +App::$strings["Requested channel is not available."] = "El canal solicitado no está disponible."; +App::$strings["Create New Profile"] = "Crear un nuevo perfil"; +App::$strings["Visible to everybody"] = "Visible para todos"; +App::$strings["Gender:"] = "Género:"; +App::$strings["Status:"] = "Estado:"; +App::$strings["Homepage:"] = "Página personal:"; +App::$strings["Online Now"] = "Ahora en línea"; +App::$strings["Like this channel"] = "Me gusta este canal"; +App::$strings["j F, Y"] = "j F Y"; +App::$strings["j F"] = "j F"; +App::$strings["Birthday:"] = "Cumpleaños:"; +App::$strings["for %1\$d %2\$s"] = "por %1\$d %2\$s"; +App::$strings["Sexual Preference:"] = "Orientación sexual:"; +App::$strings["Tags:"] = "Etiquetas:"; +App::$strings["Political Views:"] = "Posición política:"; +App::$strings["Religion:"] = "Religión:"; +App::$strings["Hobbies/Interests:"] = "Aficciones o intereses:"; +App::$strings["Likes:"] = "Me gusta:"; +App::$strings["Dislikes:"] = "No me gusta:"; +App::$strings["Contact information and Social Networks:"] = "Información de contacto y redes sociales:"; +App::$strings["My other channels:"] = "Mis otros canales:"; +App::$strings["Musical interests:"] = "Preferencias musicales:"; +App::$strings["Books, literature:"] = "Libros, literatura:"; +App::$strings["Television:"] = "Televisión:"; +App::$strings["Film/dance/culture/entertainment:"] = "Cine, danza, cultura, entretenimiento:"; +App::$strings["Love/Romance:"] = "Vida sentimental o amorosa:"; +App::$strings["Work/employment:"] = "Trabajo:"; +App::$strings["School/education:"] = "Estudios:"; +App::$strings["Like this thing"] = "Me gusta esto"; +App::$strings["New window"] = "Nueva ventana"; +App::$strings["Open the selected location in a different window or browser tab"] = "Abrir la dirección seleccionada en una ventana o pestaña aparte"; +App::$strings["User '%s' deleted"] = "El usuario '%s' ha sido eliminado"; +App::$strings["%1\$s is now connected with %2\$s"] = "%1\$s ahora está conectado/a con %2\$s"; +App::$strings["%1\$s poked %2\$s"] = "%1\$s ha dado un toque a %2\$s"; +App::$strings["poked"] = "ha dado un toque a"; +App::$strings["View %s's profile @ %s"] = "Ver el perfil @ %s de %s"; +App::$strings["Categories:"] = "Categorías:"; +App::$strings["Filed under:"] = "Archivado bajo:"; +App::$strings["View in context"] = "Mostrar en su contexto"; +App::$strings["remove"] = "eliminar"; +App::$strings["Delete Selected Items"] = "Eliminar elementos seleccionados"; +App::$strings["View Source"] = "Ver el código fuente de la entrada"; +App::$strings["Follow Thread"] = "Seguir este hilo"; +App::$strings["Unfollow Thread"] = "Dejar de seguir este hilo"; +App::$strings["Activity/Posts"] = "Actividad y publicaciones"; +App::$strings["Edit Connection"] = "Editar conexión"; +App::$strings["Message"] = "Mensaje"; +App::$strings["%s likes this."] = "A %s le gusta esto."; +App::$strings["%s doesn't like this."] = "A %s no le gusta esto."; +App::$strings["%2\$d people like this."] = array( + 0 => "a %2\$d personas le gusta esto.", + 1 => "A %2\$d personas les gusta esto.", +); +App::$strings["%2\$d people don't like this."] = array( + 0 => "a %2\$d personas no les gusta esto.", + 1 => "A %2\$d personas no les gusta esto.", +); +App::$strings["and"] = "y"; +App::$strings[", and %d other people"] = array( + 0 => ", y %d persona más", + 1 => ", y %d personas más", +); +App::$strings["%s like this."] = "A %s le gusta esto."; +App::$strings["%s don't like this."] = "A %s no le gusta esto."; +App::$strings["Set your location"] = "Establecer su ubicación"; +App::$strings["Clear browser location"] = "Eliminar los datos de localización geográfica del navegador"; +App::$strings["Tag term:"] = "Término de la etiqueta:"; +App::$strings["Where are you right now?"] = "¿Donde está ahora?"; +App::$strings["Page link name"] = "Nombre del enlace de la página"; +App::$strings["Post as"] = "Publicar como"; +App::$strings["Toggle voting"] = "Cambiar votación"; +App::$strings["Categories (optional, comma-separated list)"] = "Categorías (opcional, lista separada por comas)"; +App::$strings["Set publish date"] = "Establecer la fecha de publicación"; +App::$strings["Discover"] = "Descubrir"; +App::$strings["Imported public streams"] = "Contenidos públicos importados"; +App::$strings["Commented Order"] = "Comentarios recientes"; +App::$strings["Sort by Comment Date"] = "Ordenar por fecha de comentario"; +App::$strings["Posted Order"] = "Publicaciones recientes"; +App::$strings["Sort by Post Date"] = "Ordenar por fecha de publicación"; +App::$strings["Posts that mention or involve you"] = "Publicaciones que le mencionan o involucran"; +App::$strings["Activity Stream - by date"] = "Contenido - por fecha"; +App::$strings["Starred"] = "Preferidas"; +App::$strings["Favourite Posts"] = "Publicaciones favoritas"; +App::$strings["Spam"] = "Correo basura"; +App::$strings["Posts flagged as SPAM"] = "Publicaciones marcadas como basura"; +App::$strings["Status Messages and Posts"] = "Mensajes de estado y publicaciones"; +App::$strings["About"] = "Mi perfil"; +App::$strings["Profile Details"] = "Detalles del perfil"; +App::$strings["Files and Storage"] = "Ficheros y repositorio"; +App::$strings["Chatrooms"] = "Salas de chat"; +App::$strings["Saved Bookmarks"] = "Marcadores guardados"; +App::$strings["Manage Webpages"] = "Administrar páginas web"; +App::$strings["__ctx:noun__ Attending"] = array( + 0 => "Participaré", + 1 => "Participaré", +); +App::$strings["__ctx:noun__ Not Attending"] = array( + 0 => "No participaré", + 1 => "No participaré", +); +App::$strings["__ctx:noun__ Undecided"] = array( + 0 => "Indeciso/a", + 1 => "Indecisos/as", +); +App::$strings["__ctx:noun__ Agree"] = array( + 0 => "De acuerdo", + 1 => "De acuerdo", +); +App::$strings["__ctx:noun__ Disagree"] = array( + 0 => "En desacuerdo", + 1 => "En desacuerdo", +); +App::$strings["__ctx:noun__ Abstain"] = array( + 0 => "se abstiene", + 1 => "Se abstienen", +); App::$strings["Cannot create a duplicate channel identifier on this system. Import failed."] = "No se ha podido crear un canal con un identificador que ya existe en este sistema. La importación ha fallado."; App::$strings["Channel clone failed. Import failed."] = "La clonación del canal no ha salido bien. La importación ha fallado."; -App::$strings["(Unknown)"] = "(Desconocido)"; -App::$strings["Visible to anybody on the internet."] = "Visible para cualquiera en internet."; -App::$strings["Visible to you only."] = "Visible sólo para usted."; -App::$strings["Visible to anybody in this network."] = "Visible para cualquiera en esta red."; -App::$strings["Visible to anybody authenticated."] = "Visible para cualquiera que esté autenticado."; -App::$strings["Visible to anybody on %s."] = "Visible para cualquiera en %s."; -App::$strings["Visible to all connections."] = "Visible para todas las conexiones."; -App::$strings["Visible to approved connections."] = "Visible para las conexiones permitidas."; -App::$strings["Visible to specific connections."] = "Visible para conexiones específicas."; -App::$strings["Privacy group is empty."] = "El grupo de canales está vacío."; -App::$strings["Privacy group: %s"] = "Grupo de canales: %s"; -App::$strings["Connection not found."] = "Conexión no encontrada"; -App::$strings["profile photo"] = "foto del perfil"; -App::$strings["No recipient provided."] = "No se ha especificado ningún destinatario."; -App::$strings["[no subject]"] = "[sin asunto]"; -App::$strings["Unable to determine sender."] = "No ha sido posible determinar el remitente. "; -App::$strings["Stored post could not be verified."] = "No se han podido verificar las publicaciones guardadas."; +App::$strings["Frequently"] = "Frecuentemente"; +App::$strings["Hourly"] = "Cada hora"; +App::$strings["Twice daily"] = "Dos veces al día"; +App::$strings["Daily"] = "Diariamente"; +App::$strings["Weekly"] = "Semanalmente"; +App::$strings["Monthly"] = "Mensualmente"; +App::$strings["Currently Male"] = "Actualmente hombre"; +App::$strings["Currently Female"] = "Actualmente mujer"; +App::$strings["Mostly Male"] = "Generalmente hombre"; +App::$strings["Mostly Female"] = "Generalmente mujer"; +App::$strings["Transgender"] = "Transgénero"; +App::$strings["Intersex"] = "Intersexual"; +App::$strings["Transsexual"] = "Transexual"; +App::$strings["Hermaphrodite"] = "Hermafrodita"; +App::$strings["Neuter"] = "Neutral"; +App::$strings["Non-specific"] = "No especificado"; +App::$strings["Undecided"] = "Indeciso/a"; +App::$strings["Males"] = "Hombres"; +App::$strings["Females"] = "Mujeres"; +App::$strings["Gay"] = "Homosexual"; +App::$strings["Lesbian"] = "Lesbiana"; +App::$strings["No Preference"] = "Sin preferencias"; +App::$strings["Bisexual"] = "Bisexual"; +App::$strings["Autosexual"] = "Autosexual"; +App::$strings["Abstinent"] = "Casto/a"; +App::$strings["Virgin"] = "Virgen"; +App::$strings["Deviant"] = "Fuera de lo común"; +App::$strings["Fetish"] = "Fetichista"; +App::$strings["Oodles"] = "Orgías"; +App::$strings["Nonsexual"] = "Asexual"; +App::$strings["Single"] = "Soltero/a"; +App::$strings["Lonely"] = "Solo/a"; +App::$strings["Available"] = "Disponible"; +App::$strings["Unavailable"] = "No disponible"; +App::$strings["Has crush"] = "Enamorado/a"; +App::$strings["Infatuated"] = "Apasionado/a"; +App::$strings["Dating"] = "Saliendo con alguien"; +App::$strings["Unfaithful"] = "Infiel"; +App::$strings["Sex Addict"] = "Con adicción al sexo"; +App::$strings["Friends/Benefits"] = "Amigos con algo extra"; +App::$strings["Casual"] = "Casual"; +App::$strings["Engaged"] = "Prometido/a"; +App::$strings["Married"] = "Casado/a"; +App::$strings["Imaginarily married"] = "Casado/a en sueños"; +App::$strings["Partners"] = "Pareja"; +App::$strings["Cohabiting"] = "Cohabitando"; +App::$strings["Common law"] = "Matrimonio tradicional"; +App::$strings["Happy"] = "Felíz"; +App::$strings["Not looking"] = "No estoy buscando"; +App::$strings["Swinger"] = "Libertino"; +App::$strings["Betrayed"] = "Engañado/a"; +App::$strings["Separated"] = "Separado/a"; +App::$strings["Unstable"] = "Inestable"; +App::$strings["Divorced"] = "Divorciado/a"; +App::$strings["Imaginarily divorced"] = "Divorciado/a en sueños"; +App::$strings["Widowed"] = "Viudo/a"; +App::$strings["Uncertain"] = "Indeterminado"; +App::$strings["It's complicated"] = "Es complicado"; +App::$strings["Don't care"] = "No me importa"; +App::$strings["Ask me"] = "Pregúnteme"; +App::$strings["%1\$s's bookmarks"] = "Marcadores de %1\$s"; +App::$strings["guest:"] = ""; +App::$strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "El \"token\" de seguridad del formulario no es correcto. Esto ha ocurrido probablemente porque el formulario ha estado abierto demasiado tiempo (>3 horas) antes de ser enviado"; App::$strings["prev"] = "anterior"; App::$strings["first"] = "primera"; App::$strings["last"] = "última"; @@ -1568,7 +1877,6 @@ App::$strings["newer"] = "más recientes"; App::$strings["No connections"] = "Sin conexiones"; App::$strings["View all %s connections"] = "Ver todas las %s conexiones"; App::$strings["poke"] = "un toque"; -App::$strings["poked"] = "ha dado un toque a"; App::$strings["ping"] = "un \"ping\""; App::$strings["pinged"] = "ha enviado un \"ping\" a"; App::$strings["prod"] = "una incitación "; @@ -1631,385 +1939,21 @@ App::$strings["Select an alternate language"] = "Seleccionar un idioma alternati App::$strings["activity"] = "la actividad"; App::$strings["Design Tools"] = "Herramientas de diseño web"; App::$strings["Pages"] = "Páginas"; -App::$strings["System"] = "Sistema"; -App::$strings["New App"] = "Nueva aplicación (app)"; -App::$strings["Suggestions"] = "Sugerencias"; -App::$strings["See more..."] = "Ver más..."; -App::$strings["You have %1$.0f of %2$.0f allowed connections."] = "Tiene %1$.0f de %2$.0f conexiones permitidas."; -App::$strings["Add New Connection"] = "Añadir nueva conexión"; -App::$strings["Enter channel address"] = "Dirección del canal"; -App::$strings["Examples: bob@example.com, https://example.com/barbara"] = "Ejemplos: manuel@ejemplo.com, https://ejemplo.com/carmen"; -App::$strings["Notes"] = "Notas"; -App::$strings["Remove term"] = "Eliminar término"; -App::$strings["Saved Searches"] = "Búsquedas guardadas"; -App::$strings["add"] = "añadir"; -App::$strings["Saved Folders"] = "Carpetas guardadas"; -App::$strings["Everything"] = "Todo"; -App::$strings["Archives"] = "Hemeroteca"; -App::$strings["Refresh"] = "Recargar"; -App::$strings["Account settings"] = "Configuración de la cuenta"; -App::$strings["Channel settings"] = "Configuración del canal"; -App::$strings["Additional features"] = "Funcionalidades"; -App::$strings["Feature/Addon settings"] = "Complementos"; -App::$strings["Display settings"] = "Ajustes de visualización"; -App::$strings["Manage locations"] = "Gestión de ubicaciones (clones) del canal"; -App::$strings["Export channel"] = "Exportar canal"; -App::$strings["Connected apps"] = "Aplicaciones (apps) conectadas"; -App::$strings["Premium Channel Settings"] = "Configuración del canal premium"; -App::$strings["Private Mail Menu"] = "Menú de correo privado"; -App::$strings["Combined View"] = "Vista combinada"; -App::$strings["Inbox"] = "Bandeja de entrada"; -App::$strings["Outbox"] = "Bandeja de salida"; -App::$strings["New Message"] = "Nuevo mensaje"; -App::$strings["Conversations"] = "Conversaciones"; -App::$strings["Received Messages"] = "Mensajes recibidos"; -App::$strings["Sent Messages"] = "Enviar mensajes"; -App::$strings["No messages."] = "Sin mensajes."; -App::$strings["Delete conversation"] = "Eliminar conversación"; -App::$strings["Events Menu"] = "Menú de eventos"; -App::$strings["Day View"] = "Eventos del día"; -App::$strings["Week View"] = "Eventos de la semana"; -App::$strings["Month View"] = "Eventos del mes"; -App::$strings["Events Tools"] = "Gestión de eventos"; -App::$strings["Export Calendar"] = "Exportar el calendario"; -App::$strings["Import Calendar"] = "Importar un calendario"; -App::$strings["Chatrooms"] = "Salas de chat"; -App::$strings["Overview"] = "Resumen"; -App::$strings["Chat Members"] = "Miembros del chat"; -App::$strings["Bookmarked Chatrooms"] = "Salas de chat preferidas"; -App::$strings["Suggested Chatrooms"] = "Salas de chat sugeridas"; -App::$strings["photo/image"] = "foto/imagen"; -App::$strings["Click to show more"] = "Hacer clic para ver más"; -App::$strings["Rating Tools"] = "Valoraciones"; -App::$strings["Rate Me"] = "Valorar este canal"; -App::$strings["View Ratings"] = "Mostrar las valoraciones"; -App::$strings["Forums"] = "Foros"; -App::$strings["Tasks"] = "Tareas"; -App::$strings["Documentation"] = "Documentación"; -App::$strings["Project/Site Information"] = "Información sobre el proyecto o sitio"; -App::$strings["For Members"] = "Para los miembros"; -App::$strings["For Administrators"] = "Para los administradores"; -App::$strings["For Developers"] = "Para los desarrolladores"; -App::$strings["Member registrations waiting for confirmation"] = "Inscripciones de nuevos miembros pendientes de aprobación"; -App::$strings["Inspect queue"] = "Examinar la cola"; -App::$strings["DB updates"] = "Actualizaciones de la base de datos"; -App::$strings["Admin"] = "Administrador"; -App::$strings["Plugin Features"] = "Extensiones"; -App::$strings["Channel is blocked on this site."] = "El canal está bloqueado en este sitio."; -App::$strings["Channel location missing."] = "Falta la dirección del canal."; -App::$strings["Response from remote channel was incomplete."] = "Respuesta incompleta del canal."; -App::$strings["Channel was deleted and no longer exists."] = "El canal ha sido eliminado y ya no existe."; -App::$strings["Protocol disabled."] = "Protocolo deshabilitado."; -App::$strings["Channel discovery failed."] = "El intento de acceder al canal ha fallado."; -App::$strings["Cannot connect to yourself."] = "No puede conectarse consigo mismo."; -App::$strings["%1\$s's bookmarks"] = "Marcadores de %1\$s"; -App::$strings["Public Timeline"] = "Cronología pública"; -App::$strings["Image/photo"] = "Imagen/foto"; -App::$strings["Encrypted content"] = "Contenido cifrado"; -App::$strings["Install %s element: "] = "Instalar el elemento %s:"; -App::$strings["This post contains an installable %s element, however you lack permissions to install it on this site."] = "Esta entrada contiene el elemento instalable %s, sin embargo le faltan permisos para instalarlo en este sitio."; -App::$strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s escribió %2\$s siguiente %3\$s"; -App::$strings["Click to open/close"] = "Pulsar para abrir/cerrar"; -App::$strings["spoiler"] = "spoiler"; -App::$strings["Different viewers will see this text differently"] = "Visitantes diferentes verán este texto de forma distinta"; -App::$strings["$1 wrote:"] = "$1 escribió:"; -App::$strings["Directory Options"] = "Opciones del directorio"; -App::$strings["Safe Mode"] = "Modo seguro"; -App::$strings["Public Forums Only"] = "Solo foros públicos"; -App::$strings["This Website Only"] = "Solo este sitio web"; -App::$strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "El \"token\" de seguridad del formulario no es correcto. Esto ha ocurrido probablemente porque el formulario ha estado abierto demasiado tiempo (>3 horas) antes de ser enviado"; -App::$strings["Logout"] = "Finalizar sesión"; -App::$strings["End this session"] = "Finalizar esta sesión"; -App::$strings["Home"] = "Inicio"; -App::$strings["Your posts and conversations"] = "Sus publicaciones y conversaciones"; -App::$strings["Your profile page"] = "Su página del perfil"; -App::$strings["Manage/Edit profiles"] = "Administrar/editar perfiles"; -App::$strings["Edit Profile"] = "Editar el perfil"; -App::$strings["Edit your profile"] = "Editar su perfil"; -App::$strings["Your photos"] = "Sus fotos"; -App::$strings["Your files"] = "Sus ficheros"; -App::$strings["Your chatrooms"] = "Sus salas de chat"; -App::$strings["Bookmarks"] = "Marcadores"; -App::$strings["Your bookmarks"] = "Sus marcadores"; -App::$strings["Your webpages"] = "Sus páginas web"; -App::$strings["Sign in"] = "Acceder"; -App::$strings["%s - click to logout"] = "%s - pulsar para finalizar sesión"; -App::$strings["Remote authentication"] = "Acceder desde su servidor"; -App::$strings["Click to authenticate to your home hub"] = "Pulsar para identificarse en su servidor de inicio"; -App::$strings["Home Page"] = "Página de inicio"; -App::$strings["Create an account"] = "Crear una cuenta"; -App::$strings["Help and documentation"] = "Ayuda y documentación"; -App::$strings["Applications, utilities, links, games"] = "Aplicaciones, utilidades, enlaces, juegos"; -App::$strings["Search site @name, #tag, ?docs, content"] = "Buscar en el sitio por @nombre, #etiqueta, ?ayuda o contenido"; -App::$strings["Channel Directory"] = "Directorio de canales"; -App::$strings["Your grid"] = "Mi red"; -App::$strings["Mark all grid notifications seen"] = "Marcar todas las notificaciones de la red como vistas"; -App::$strings["Channel home"] = "Mi canal"; -App::$strings["Mark all channel notifications seen"] = "Marcar todas las notificaciones del canal como leídas"; -App::$strings["Notices"] = "Avisos"; -App::$strings["Notifications"] = "Notificaciones"; -App::$strings["See all notifications"] = "Ver todas las notificaciones"; -App::$strings["Private mail"] = "Correo privado"; -App::$strings["See all private messages"] = "Ver todas los mensajes privados"; -App::$strings["Mark all private messages seen"] = "Marcar todos los mensajes privados como leídos"; -App::$strings["Event Calendar"] = "Calendario de eventos"; -App::$strings["See all events"] = "Ver todos los eventos"; -App::$strings["Mark all events seen"] = "Marcar todos los eventos como leidos"; -App::$strings["Manage Your Channels"] = "Gestionar sus canales"; -App::$strings["Account/Channel Settings"] = "Ajustes de cuenta/canales"; -App::$strings["Site Setup and Configuration"] = "Ajustes y configuración del sitio"; -App::$strings["Loading..."] = "Cargando..."; -App::$strings["@name, #tag, ?doc, content"] = "@nombre, #etiqueta, ?ayuda, contenido"; -App::$strings["Please wait..."] = "Espere por favor…"; -App::$strings["New window"] = "Nueva ventana"; -App::$strings["Open the selected location in a different window or browser tab"] = "Abrir la dirección seleccionada en una ventana o pestaña aparte"; -App::$strings["User '%s' deleted"] = "El usuario '%s' ha sido eliminado"; -App::$strings["%d invitation available"] = array( - 0 => "%d invitación pendiente", - 1 => "%d invitaciones disponibles", -); -App::$strings["Find Channels"] = "Encontrar canales"; -App::$strings["Enter name or interest"] = "Introducir nombre o interés"; -App::$strings["Connect/Follow"] = "Conectar/Seguir"; -App::$strings["Examples: Robert Morgenstein, Fishing"] = "Ejemplos: José Fernández, Pesca"; -App::$strings["Random Profile"] = "Perfil aleatorio"; -App::$strings["Invite Friends"] = "Invitar a amigos"; -App::$strings["Advanced example: name=fred and country=iceland"] = "Ejemplo avanzado: nombre=juan y país=españa"; -App::$strings["%d connection in common"] = array( - 0 => "%d conexión en común", - 1 => "%d conexiones en común", -); -App::$strings["show more"] = "mostrar más"; -App::$strings["%1\$s is now connected with %2\$s"] = "%1\$s ahora está conectado/a con %2\$s"; -App::$strings["%1\$s poked %2\$s"] = "%1\$s ha dado un toque a %2\$s"; -App::$strings["View %s's profile @ %s"] = "Ver el perfil @ %s de %s"; -App::$strings["Categories:"] = "Categorías:"; -App::$strings["Filed under:"] = "Archivado bajo:"; -App::$strings["View in context"] = "Mostrar en su contexto"; -App::$strings["remove"] = "eliminar"; -App::$strings["Delete Selected Items"] = "Eliminar elementos seleccionados"; -App::$strings["View Source"] = "Ver el código fuente de la entrada"; -App::$strings["Follow Thread"] = "Seguir este hilo"; -App::$strings["Unfollow Thread"] = "Dejar de seguir este hilo"; -App::$strings["Activity/Posts"] = "Actividad y publicaciones"; -App::$strings["Edit Connection"] = "Editar conexión"; -App::$strings["Message"] = "Mensaje"; -App::$strings["%s likes this."] = "A %s le gusta esto."; -App::$strings["%s doesn't like this."] = "A %s no le gusta esto."; -App::$strings["%2\$d people like this."] = array( - 0 => "a %2\$d personas le gusta esto.", - 1 => "A %2\$d personas les gusta esto.", -); -App::$strings["%2\$d people don't like this."] = array( - 0 => "a %2\$d personas no les gusta esto.", - 1 => "A %2\$d personas no les gusta esto.", -); -App::$strings["and"] = "y"; -App::$strings[", and %d other people"] = array( - 0 => ", y %d persona más", - 1 => ", y %d personas más", -); -App::$strings["%s like this."] = "A %s le gusta esto."; -App::$strings["%s don't like this."] = "A %s no le gusta esto."; -App::$strings["Set your location"] = "Establecer su ubicación"; -App::$strings["Clear browser location"] = "Eliminar los datos de localización geográfica del navegador"; -App::$strings["Tag term:"] = "Término de la etiqueta:"; -App::$strings["Where are you right now?"] = "¿Donde está ahora?"; -App::$strings["Page link name"] = "Nombre del enlace de la página"; -App::$strings["Post as"] = "Publicar como"; -App::$strings["Toggle voting"] = "Cambiar votación"; -App::$strings["Categories (optional, comma-separated list)"] = "Categorías (opcional, lista separada por comas)"; -App::$strings["Set publish date"] = "Establecer la fecha de publicación"; -App::$strings["OK"] = "OK"; -App::$strings["Discover"] = "Descubrir"; -App::$strings["Imported public streams"] = "Contenidos públicos importados"; -App::$strings["Commented Order"] = "Comentarios recientes"; -App::$strings["Sort by Comment Date"] = "Ordenar por fecha de comentario"; -App::$strings["Posted Order"] = "Publicaciones recientes"; -App::$strings["Sort by Post Date"] = "Ordenar por fecha de publicación"; -App::$strings["Posts that mention or involve you"] = "Publicaciones que le mencionan o involucran"; -App::$strings["Activity Stream - by date"] = "Contenido - por fecha"; -App::$strings["Starred"] = "Preferidas"; -App::$strings["Favourite Posts"] = "Publicaciones favoritas"; -App::$strings["Spam"] = "Correo basura"; -App::$strings["Posts flagged as SPAM"] = "Publicaciones marcadas como basura"; -App::$strings["Status Messages and Posts"] = "Mensajes de estado y publicaciones"; -App::$strings["About"] = "Mi perfil"; -App::$strings["Profile Details"] = "Detalles del perfil"; -App::$strings["Photo Albums"] = "Álbumes de fotos"; -App::$strings["Files and Storage"] = "Ficheros y repositorio"; -App::$strings["Saved Bookmarks"] = "Marcadores guardados"; -App::$strings["Manage Webpages"] = "Administrar páginas web"; -App::$strings["__ctx:noun__ Attending"] = array( - 0 => "Participaré", - 1 => "Participaré", -); -App::$strings["__ctx:noun__ Not Attending"] = array( - 0 => "No participaré", - 1 => "No participaré", -); -App::$strings["__ctx:noun__ Undecided"] = array( - 0 => "Indeciso/a", - 1 => "Indecisos/as", -); -App::$strings["__ctx:noun__ Agree"] = array( - 0 => "De acuerdo", - 1 => "De acuerdo", -); -App::$strings["__ctx:noun__ Disagree"] = array( - 0 => "En desacuerdo", - 1 => "En desacuerdo", -); -App::$strings["__ctx:noun__ Abstain"] = array( - 0 => "se abstiene", - 1 => "Se abstienen", -); -App::$strings["Frequently"] = "Frecuentemente"; -App::$strings["Hourly"] = "Cada hora"; -App::$strings["Twice daily"] = "Dos veces al día"; -App::$strings["Daily"] = "Diariamente"; -App::$strings["Weekly"] = "Semanalmente"; -App::$strings["Monthly"] = "Mensualmente"; -App::$strings["Currently Male"] = "Actualmente hombre"; -App::$strings["Currently Female"] = "Actualmente mujer"; -App::$strings["Mostly Male"] = "Generalmente hombre"; -App::$strings["Mostly Female"] = "Generalmente mujer"; -App::$strings["Transgender"] = "Transgénero"; -App::$strings["Intersex"] = "Intersexual"; -App::$strings["Transsexual"] = "Transexual"; -App::$strings["Hermaphrodite"] = "Hermafrodita"; -App::$strings["Neuter"] = "Neutral"; -App::$strings["Non-specific"] = "No especificado"; -App::$strings["Other"] = "Otro"; -App::$strings["Undecided"] = "Indeciso/a"; -App::$strings["Males"] = "Hombres"; -App::$strings["Females"] = "Mujeres"; -App::$strings["Gay"] = "Homosexual"; -App::$strings["Lesbian"] = "Lesbiana"; -App::$strings["No Preference"] = "Sin preferencias"; -App::$strings["Bisexual"] = "Bisexual"; -App::$strings["Autosexual"] = "Autosexual"; -App::$strings["Abstinent"] = "Casto/a"; -App::$strings["Virgin"] = "Virgen"; -App::$strings["Deviant"] = "Fuera de lo común"; -App::$strings["Fetish"] = "Fetichista"; -App::$strings["Oodles"] = "Orgías"; -App::$strings["Nonsexual"] = "Asexual"; -App::$strings["Single"] = "Soltero/a"; -App::$strings["Lonely"] = "Solo/a"; -App::$strings["Available"] = "Disponible"; -App::$strings["Unavailable"] = "No disponible"; -App::$strings["Has crush"] = "Enamorado/a"; -App::$strings["Infatuated"] = "Apasionado/a"; -App::$strings["Dating"] = "Saliendo con alguien"; -App::$strings["Unfaithful"] = "Infiel"; -App::$strings["Sex Addict"] = "Con adicción al sexo"; -App::$strings["Friends/Benefits"] = "Amigos con algo extra"; -App::$strings["Casual"] = "Casual"; -App::$strings["Engaged"] = "Prometido/a"; -App::$strings["Married"] = "Casado/a"; -App::$strings["Imaginarily married"] = "Casado/a en sueños"; -App::$strings["Partners"] = "Pareja"; -App::$strings["Cohabiting"] = "Cohabitando"; -App::$strings["Common law"] = "Matrimonio tradicional"; -App::$strings["Happy"] = "Felíz"; -App::$strings["Not looking"] = "No estoy buscando"; -App::$strings["Swinger"] = "Libertino"; -App::$strings["Betrayed"] = "Engañado/a"; -App::$strings["Separated"] = "Separado/a"; -App::$strings["Unstable"] = "Inestable"; -App::$strings["Divorced"] = "Divorciado/a"; -App::$strings["Imaginarily divorced"] = "Divorciado/a en sueños"; -App::$strings["Widowed"] = "Viudo/a"; -App::$strings["Uncertain"] = "Indeterminado"; -App::$strings["It's complicated"] = "Es complicado"; -App::$strings["Don't care"] = "No me importa"; -App::$strings["Ask me"] = "Pregúnteme"; -App::$strings["Visible to your default audience"] = "Visible para su público predeterminado."; -App::$strings["Only me"] = "Sólo yo"; -App::$strings["Public"] = "Público"; -App::$strings["Anybody in the \$Projectname network"] = "Cualquiera en la red \$Projectname"; -App::$strings["Any account on %s"] = "Cualquier cuenta en %s"; -App::$strings["Any of my connections"] = "Cualquiera de mis conexiones"; -App::$strings["Only connections I specifically allow"] = "Sólo las conexiones que yo permita de forma explícita"; -App::$strings["Anybody authenticated (could include visitors from other networks)"] = "Cualquiera que esté autenticado (podría incluir a los visitantes de otras redes)"; -App::$strings["Any connections including those who haven't yet been approved"] = "Cualquier conexión incluyendo aquellas que aún no han sido aprobadas"; -App::$strings["This is your default setting for the audience of your normal stream, and posts."] = "Esta es la configuración predeterminada para su flujo (stream) habitual de publicaciones."; -App::$strings["This is your default setting for who can view your default channel profile"] = "Esta es su configuración por defecto para establecer quién puede ver su perfil del canal predeterminado"; -App::$strings["This is your default setting for who can view your connections"] = "Este es su ajuste predeterminado para establecer quién puede ver sus conexiones"; -App::$strings["This is your default setting for who can view your file storage and photos"] = "Este es su ajuste predeterminado para establecer quién puede ver su repositorio de ficheros y sus fotos"; -App::$strings["This is your default setting for the audience of your webpages"] = "Este es el ajuste predeterminado para establecer la audiencia de sus páginas web"; -App::$strings["Not a valid email address"] = "Dirección de correo no válida"; -App::$strings["Your email domain is not among those allowed on this site"] = "Su dirección de correo no pertenece a ninguno de los dominios permitidos en este sitio."; -App::$strings["Your email address is already registered at this site."] = "Su dirección de correo está ya registrada en este sitio."; -App::$strings["An invitation is required."] = "Es obligatorio que le inviten."; -App::$strings["Invitation could not be verified."] = "No se ha podido verificar su invitación."; -App::$strings["Please enter the required information."] = "Por favor introduzca la información requerida."; -App::$strings["Failed to store account information."] = "La información de la cuenta no se ha podido guardar."; -App::$strings["Registration confirmation for %s"] = "Confirmación de registro para %s"; -App::$strings["Registration request at %s"] = "Solicitud de registro en %s"; -App::$strings["Administrator"] = "Administrador"; -App::$strings["your registration password"] = "su contraseña de registro"; -App::$strings["Registration details for %s"] = "Detalles del registro de %s"; -App::$strings["Account approved."] = "Cuenta aprobada."; -App::$strings["Registration revoked for %s"] = "Registro revocado para %s"; -App::$strings["Account verified. Please login."] = "Cuenta verificada. Por favor, inicie sesión."; -App::$strings["Click here to upgrade."] = "Pulse aquí para actualizar"; -App::$strings["This action exceeds the limits set by your subscription plan."] = "Esta acción supera los límites establecidos por su plan de suscripción "; -App::$strings["This action is not available under your subscription plan."] = "Esta acción no está disponible en su plan de suscripción."; -App::$strings["Item was not found."] = "Elemento no encontrado."; -App::$strings["No source file."] = "Ningún fichero de origen"; -App::$strings["Cannot locate file to replace"] = "No se puede localizar el fichero que va a ser sustituido."; -App::$strings["Cannot locate file to revise/update"] = "No se puede localizar el fichero para revisar/actualizar"; -App::$strings["File exceeds size limit of %d"] = "El fichero supera el limite de tamaño de %d"; -App::$strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Ha alcanzado su límite de %1$.0f Mbytes de almacenamiento de adjuntos."; -App::$strings["File upload failed. Possible system limit or action terminated."] = "Error de carga, posiblemente por limite del sistema o porque la acción ha finalizado."; -App::$strings["Stored file could not be verified. Upload failed."] = "El fichero almacenado no ha podido ser verificado. El envío ha fallado."; -App::$strings["Path not available."] = "Ruta no disponible."; -App::$strings["Empty pathname"] = "Ruta vacía"; -App::$strings["duplicate filename or path"] = "Nombre duplicado de ruta o fichero"; -App::$strings["Path not found."] = "Ruta no encontrada"; -App::$strings["mkdir failed."] = "mkdir ha fallado."; -App::$strings["database storage failed."] = "el almacenamiento en la base de datos ha fallado."; -App::$strings["Empty path"] = "Ruta vacía"; -App::$strings["Unable to obtain identity information from database"] = "No ha sido posible obtener información sobre la identidad desde la base de datos"; -App::$strings["Empty name"] = "Nombre vacío"; -App::$strings["Name too long"] = "Nombre demasiado largo"; -App::$strings["No account identifier"] = "Ningún identificador de la cuenta"; -App::$strings["Nickname is required."] = "Se requiere un sobrenombre (alias)."; -App::$strings["Reserved nickname. Please choose another."] = "Sobrenombre en uso. Por favor, elija otro."; -App::$strings["Nickname has unsupported characters or is already being used on this site."] = "El alias contiene caracteres no admitidos o está ya en uso por otros miembros de este sitio."; -App::$strings["Unable to retrieve created identity"] = "No ha sido posible recuperar la identidad creada"; -App::$strings["Default Profile"] = "Perfil principal"; -App::$strings["Requested channel is not available."] = "El canal solicitado no está disponible."; -App::$strings["Create New Profile"] = "Crear un nuevo perfil"; -App::$strings["Visible to everybody"] = "Visible para todos"; -App::$strings["Gender:"] = "Género:"; -App::$strings["Status:"] = "Estado:"; -App::$strings["Homepage:"] = "Página personal:"; -App::$strings["Online Now"] = "Ahora en línea"; -App::$strings["Like this channel"] = "Me gusta este canal"; -App::$strings["j F, Y"] = "j F Y"; -App::$strings["j F"] = "j F"; -App::$strings["Birthday:"] = "Cumpleaños:"; -App::$strings["for %1\$d %2\$s"] = "por %1\$d %2\$s"; -App::$strings["Sexual Preference:"] = "Orientación sexual:"; -App::$strings["Tags:"] = "Etiquetas:"; -App::$strings["Political Views:"] = "Posición política:"; -App::$strings["Religion:"] = "Religión:"; -App::$strings["Hobbies/Interests:"] = "Aficciones o intereses:"; -App::$strings["Likes:"] = "Me gusta:"; -App::$strings["Dislikes:"] = "No me gusta:"; -App::$strings["Contact information and Social Networks:"] = "Información de contacto y redes sociales:"; -App::$strings["My other channels:"] = "Mis otros canales:"; -App::$strings["Musical interests:"] = "Preferencias musicales:"; -App::$strings["Books, literature:"] = "Libros, literatura:"; -App::$strings["Television:"] = "Televisión:"; -App::$strings["Film/dance/culture/entertainment:"] = "Cine, danza, cultura, entretenimiento:"; -App::$strings["Love/Romance:"] = "Vida sentimental o amorosa:"; -App::$strings["Work/employment:"] = "Trabajo:"; -App::$strings["School/education:"] = "Estudios:"; -App::$strings["Like this thing"] = "Me gusta esto"; +App::$strings["Logged out."] = "Desconectado/a."; +App::$strings["Failed authentication"] = "Autenticación fallida."; +App::$strings["Can view my normal stream and posts"] = "Pueden verse mi actividad y publicaciones normales"; +App::$strings["Can view my webpages"] = "Pueden verse mis páginas web"; +App::$strings["Can post on my channel page (\"wall\")"] = "Pueden crearse entradas en mi página de inicio del canal (“muro”)"; +App::$strings["Can like/dislike stuff"] = "Puede marcarse contenido como me gusta/no me gusta"; +App::$strings["Profiles and things other than posts/comments"] = "Perfiles y otras cosas aparte de publicaciones/comentarios"; +App::$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"; +App::$strings["Advanced - useful for creating group forum channels"] = "Avanzado - útil para crear canales de foros de discusión o grupos"; +App::$strings["Can chat with me (when available)"] = "Se puede charlar conmigo (cuando esté disponible)"; +App::$strings["Can write to my file storage and photos"] = "Puede escribirse en mi repositorio de ficheros y fotos"; +App::$strings["Can edit my webpages"] = "Pueden editarse mis páginas web"; +App::$strings["Somewhat advanced - very useful in open communities"] = "Algo avanzado - muy útil en comunidades abiertas"; +App::$strings["Can administer my channel resources"] = "Pueden administrarse mis recursos del canal"; +App::$strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "Muy avanzado. Déjelo a no ser que sepa bien lo que está haciendo."; App::$strings["General Features"] = "Funcionalidades básicas"; App::$strings["Content Expiration"] = "Caducidad del contenido"; App::$strings["Remove posts/comments and/or private messages at a future time"] = "Eliminar publicaciones/comentarios y/o mensajes privados más adelante"; @@ -2021,6 +1965,7 @@ App::$strings["Profile Import/Export"] = "Importar/Exportar perfil"; App::$strings["Save and load profile details across sites/channels"] = "Guardar y cargar detalles del perfil a través de sitios/canales"; App::$strings["Web Pages"] = "Páginas web"; App::$strings["Provide managed web pages on your channel"] = "Proveer páginas web gestionadas en su canal"; +App::$strings["Provide a wiki for your channel"] = ""; App::$strings["Hide Rating"] = "Ocultar las valoraciones"; App::$strings["Hide the rating buttons on your channel and profile pages. Note: People can still rate you somewhere else."] = "Ocultar los botones de valoración en su canal y página de perfil. Tenga en cuenta, sin embargo, que la gente podrá expresar su valoración en otros lugares."; App::$strings["Private Notes"] = "Notas privadas"; @@ -2054,6 +1999,7 @@ App::$strings["Search by Date"] = "Buscar por fecha"; App::$strings["Ability to select posts by date ranges"] = "Capacidad de seleccionar entradas por rango de fechas"; App::$strings["Privacy Groups"] = "Grupos de canales"; App::$strings["Enable management and selection of privacy groups"] = "Activar la gestión y selección de grupos de canales"; +App::$strings["Saved Searches"] = "Búsquedas guardadas"; App::$strings["Save search terms for re-use"] = "Guardar términos de búsqueda para su reutilización"; App::$strings["Network Personal Tab"] = "Actividad personal"; App::$strings["Enable tab to display only Network posts that you've interacted on"] = "Habilitar una pestaña en la cual se muestren solo las entradas en las que ha participado."; @@ -2071,6 +2017,7 @@ App::$strings["Post Categories"] = "Categorías de entradas"; App::$strings["Add categories to your posts"] = "Añadir categorías a sus publicaciones"; App::$strings["Emoji Reactions"] = "Emoticonos \"emoji\""; App::$strings["Add emoji reaction ability to posts"] = "Activar la capacidad de añadir un emoticono \"emoji\" a las entradas"; +App::$strings["Saved Folders"] = "Carpetas guardadas"; App::$strings["Ability to file posts under folders"] = "Capacidad de archivar entradas en carpetas"; App::$strings["Dislike Posts"] = "Desagrado de publicaciones"; App::$strings["Ability to dislike posts/comments"] = "Capacidad de mostrar desacuerdo con el contenido de entradas y comentarios"; @@ -2078,63 +2025,149 @@ App::$strings["Star Posts"] = "Entradas destacadas"; App::$strings["Ability to mark special posts with a star indicator"] = "Capacidad de marcar entradas destacadas con un indicador de estrella"; App::$strings["Tag Cloud"] = "Nube de etiquetas"; App::$strings["Provide a personal tag cloud on your channel page"] = "Proveer nube de etiquetas personal en su página de canal"; -App::$strings["Embedded content"] = "Contenido incorporado"; -App::$strings["Embedding disabled"] = "Incrustación deshabilitada"; -App::$strings["Who can see this?"] = "¿Quién puede ver esto?"; -App::$strings["Custom selection"] = "Selección personalizada"; -App::$strings["Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit the scope of \"Show\"."] = "Seleccione \"Mostrar\" para permitir la visualización. La opción \"No mostrar\" le permite anular y limitar el alcance de \"Mostrar\"."; -App::$strings["Show"] = "Mostrar"; -App::$strings["Don't show"] = "No mostrar"; -App::$strings["Other networks and post services"] = "Otras redes y servicios de publicación"; -App::$strings["Post permissions %s cannot be changed %s after a post is shared.
These permissions set who is allowed to view the post."] = "Los permisos de la entrada %s no se pueden cambiar %s una vez que se ha compartido.
Estos permisos establecen quién está autorizado para ver el mensaje."; -App::$strings["Logged out."] = "Desconectado/a."; -App::$strings["Failed authentication"] = "Autenticación fallida."; -App::$strings["Birthday"] = "Cumpleaños"; -App::$strings["Age: "] = "Edad:"; -App::$strings["YYYY-MM-DD or MM-DD"] = "AAAA-MM-DD o MM-DD"; -App::$strings["never"] = "nunca"; -App::$strings["less than a second ago"] = "hace un instante"; -App::$strings["__ctx:e.g. 22 hours ago, 1 minute ago__ %1\$d %2\$s ago"] = "hace %1\$d %2\$s"; -App::$strings["__ctx:relative_date__ year"] = array( - 0 => "año", - 1 => "años", -); -App::$strings["__ctx:relative_date__ month"] = array( - 0 => "mes", - 1 => "meses", -); -App::$strings["__ctx:relative_date__ week"] = array( - 0 => "semana", - 1 => "semanas", -); -App::$strings["__ctx:relative_date__ day"] = array( - 0 => "día", - 1 => "días", -); -App::$strings["__ctx:relative_date__ hour"] = array( - 0 => "hora", - 1 => "horas", -); -App::$strings["__ctx:relative_date__ minute"] = array( - 0 => "minuto", - 1 => "minutos", -); -App::$strings["__ctx:relative_date__ second"] = array( - 0 => "segundo", - 1 => "segundos", -); -App::$strings["%1\$s's birthday"] = "Cumpleaños de %1\$s"; -App::$strings["Happy Birthday %1\$s"] = "Feliz cumpleaños %1\$s"; App::$strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Un grupo suprimido con este nombre ha sido restablecido. Es posible que los permisos existentes sean aplicados a este grupo y sus futuros miembros. Si no quiere esto, por favor cree otro grupo con un nombre diferente."; App::$strings["Add new connections to this privacy group"] = "Añadir conexiones nuevas a este grupo de canales"; App::$strings["edit"] = "editar"; App::$strings["Edit group"] = "Editar grupo"; App::$strings["Add privacy group"] = "Añadir un grupo de canales"; App::$strings["Channels not in any privacy group"] = "Sin canales en ningún grupo"; +App::$strings["add"] = "añadir"; +App::$strings["l F d, Y \\@ g:i A"] = "l d de F, Y \\@ G:i"; +App::$strings["Starts:"] = "Comienza:"; +App::$strings["Finishes:"] = "Finaliza:"; +App::$strings["This event has been added to your calendar."] = "Este evento ha sido añadido a su calendario."; +App::$strings["Not specified"] = "Sin especificar"; +App::$strings["Needs Action"] = "Necesita de una intervención"; +App::$strings["Completed"] = "Completado/a"; +App::$strings["In Process"] = "En proceso"; +App::$strings["Cancelled"] = "Cancelado/a"; +App::$strings["Not a valid email address"] = "Dirección de correo no válida"; +App::$strings["Your email domain is not among those allowed on this site"] = "Su dirección de correo no pertenece a ninguno de los dominios permitidos en este sitio."; +App::$strings["Your email address is already registered at this site."] = "Su dirección de correo está ya registrada en este sitio."; +App::$strings["An invitation is required."] = "Es obligatorio que le inviten."; +App::$strings["Invitation could not be verified."] = "No se ha podido verificar su invitación."; +App::$strings["Please enter the required information."] = "Por favor introduzca la información requerida."; +App::$strings["Failed to store account information."] = "La información de la cuenta no se ha podido guardar."; +App::$strings["Registration confirmation for %s"] = "Confirmación de registro para %s"; +App::$strings["Registration request at %s"] = "Solicitud de registro en %s"; +App::$strings["your registration password"] = "su contraseña de registro"; +App::$strings["Registration details for %s"] = "Detalles del registro de %s"; +App::$strings["Account approved."] = "Cuenta aprobada."; +App::$strings["Registration revoked for %s"] = "Registro revocado para %s"; +App::$strings["Click here to upgrade."] = "Pulse aquí para actualizar"; +App::$strings["This action exceeds the limits set by your subscription plan."] = "Esta acción supera los límites establecidos por su plan de suscripción "; +App::$strings["This action is not available under your subscription plan."] = "Esta acción no está disponible en su plan de suscripción."; +App::$strings["Channel is blocked on this site."] = "El canal está bloqueado en este sitio."; +App::$strings["Channel location missing."] = "Falta la dirección del canal."; +App::$strings["Response from remote channel was incomplete."] = "Respuesta incompleta del canal."; +App::$strings["Channel was deleted and no longer exists."] = "El canal ha sido eliminado y ya no existe."; +App::$strings["Protocol disabled."] = "Protocolo deshabilitado."; +App::$strings["Channel discovery failed."] = "El intento de acceder al canal ha fallado."; +App::$strings["Cannot connect to yourself."] = "No puede conectarse consigo mismo."; +App::$strings["Item was not found."] = "Elemento no encontrado."; +App::$strings["No source file."] = "Ningún fichero de origen"; +App::$strings["Cannot locate file to replace"] = "No se puede localizar el fichero que va a ser sustituido."; +App::$strings["Cannot locate file to revise/update"] = "No se puede localizar el fichero para revisar/actualizar"; +App::$strings["File exceeds size limit of %d"] = "El fichero supera el limite de tamaño de %d"; +App::$strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Ha alcanzado su límite de %1$.0f Mbytes de almacenamiento de adjuntos."; +App::$strings["File upload failed. Possible system limit or action terminated."] = "Error de carga, posiblemente por limite del sistema o porque la acción ha finalizado."; +App::$strings["Stored file could not be verified. Upload failed."] = "El fichero almacenado no ha podido ser verificado. El envío ha fallado."; +App::$strings["Path not available."] = "Ruta no disponible."; +App::$strings["Empty pathname"] = "Ruta vacía"; +App::$strings["duplicate filename or path"] = "Nombre duplicado de ruta o fichero"; +App::$strings["Path not found."] = "Ruta no encontrada"; +App::$strings["mkdir failed."] = "mkdir ha fallado."; +App::$strings["database storage failed."] = "el almacenamiento en la base de datos ha fallado."; +App::$strings["Empty path"] = "Ruta vacía"; +App::$strings["Image/photo"] = "Imagen/foto"; +App::$strings["Encrypted content"] = "Contenido cifrado"; +App::$strings["Install %s element: "] = "Instalar el elemento %s:"; +App::$strings["This post contains an installable %s element, however you lack permissions to install it on this site."] = "Esta entrada contiene el elemento instalable %s, sin embargo le faltan permisos para instalarlo en este sitio."; +App::$strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s escribió %2\$s siguiente %3\$s"; +App::$strings["Click to open/close"] = "Pulsar para abrir/cerrar"; +App::$strings["spoiler"] = "spoiler"; +App::$strings["Different viewers will see this text differently"] = "Visitantes diferentes verán este texto de forma distinta"; +App::$strings["$1 wrote:"] = "$1 escribió:"; +App::$strings["(Unknown)"] = "(Desconocido)"; +App::$strings["Visible to anybody on the internet."] = "Visible para cualquiera en internet."; +App::$strings["Visible to you only."] = "Visible sólo para usted."; +App::$strings["Visible to anybody in this network."] = "Visible para cualquiera en esta red."; +App::$strings["Visible to anybody authenticated."] = "Visible para cualquiera que esté autenticado."; +App::$strings["Visible to anybody on %s."] = "Visible para cualquiera en %s."; +App::$strings["Visible to all connections."] = "Visible para todas las conexiones."; +App::$strings["Visible to approved connections."] = "Visible para las conexiones permitidas."; +App::$strings["Visible to specific connections."] = "Visible para conexiones específicas."; +App::$strings["Privacy group is empty."] = "El grupo de canales está vacío."; +App::$strings["Privacy group: %s"] = "Grupo de canales: %s"; +App::$strings["Connection not found."] = "Conexión no encontrada"; +App::$strings["profile photo"] = "foto del perfil"; +App::$strings["Embedded content"] = "Contenido incorporado"; +App::$strings["Embedding disabled"] = "Incrustación deshabilitada"; +App::$strings["System"] = "Sistema"; +App::$strings["New App"] = "Nueva aplicación (app)"; +App::$strings["Suggestions"] = "Sugerencias"; +App::$strings["See more..."] = "Ver más..."; +App::$strings["You have %1$.0f of %2$.0f allowed connections."] = "Tiene %1$.0f de %2$.0f conexiones permitidas."; +App::$strings["Add New Connection"] = "Añadir nueva conexión"; +App::$strings["Enter channel address"] = "Dirección del canal"; +App::$strings["Examples: bob@example.com, https://example.com/barbara"] = "Ejemplos: manuel@ejemplo.com, https://ejemplo.com/carmen"; +App::$strings["Notes"] = "Notas"; +App::$strings["Remove term"] = "Eliminar término"; +App::$strings["Everything"] = "Todo"; +App::$strings["Archives"] = "Hemeroteca"; +App::$strings["Refresh"] = "Recargar"; +App::$strings["Account settings"] = "Configuración de la cuenta"; +App::$strings["Channel settings"] = "Configuración del canal"; +App::$strings["Additional features"] = "Funcionalidades"; +App::$strings["Feature/Addon settings"] = "Complementos"; +App::$strings["Display settings"] = "Ajustes de visualización"; +App::$strings["Manage locations"] = "Gestión de ubicaciones (clones) del canal"; +App::$strings["Export channel"] = "Exportar canal"; +App::$strings["Connected apps"] = "Aplicaciones (apps) conectadas"; +App::$strings["Premium Channel Settings"] = "Configuración del canal premium"; +App::$strings["Private Mail Menu"] = "Menú de correo privado"; +App::$strings["Combined View"] = "Vista combinada"; +App::$strings["Conversations"] = "Conversaciones"; +App::$strings["Received Messages"] = "Mensajes recibidos"; +App::$strings["Sent Messages"] = "Enviar mensajes"; +App::$strings["No messages."] = "Sin mensajes."; +App::$strings["Delete conversation"] = "Eliminar conversación"; +App::$strings["Events Tools"] = "Gestión de eventos"; +App::$strings["Export Calendar"] = "Exportar el calendario"; +App::$strings["Import Calendar"] = "Importar un calendario"; +App::$strings["Overview"] = "Resumen"; +App::$strings["Chat Members"] = "Miembros del chat"; +App::$strings["Wiki List"] = "Lista de wikis"; +App::$strings["Wiki Pages"] = "Páginas del wiki"; +App::$strings["Bookmarked Chatrooms"] = "Salas de chat preferidas"; +App::$strings["Suggested Chatrooms"] = "Salas de chat sugeridas"; +App::$strings["photo/image"] = "foto/imagen"; +App::$strings["Click to show more"] = "Hacer clic para ver más"; +App::$strings["Rating Tools"] = "Valoraciones"; +App::$strings["Rate Me"] = "Valorar este canal"; +App::$strings["View Ratings"] = "Mostrar las valoraciones"; +App::$strings["Forums"] = "Foros"; +App::$strings["Tasks"] = "Tareas"; +App::$strings["Documentation"] = "Documentación"; +App::$strings["Project/Site Information"] = "Información sobre el proyecto o sitio"; +App::$strings["For Members"] = "Para los miembros"; +App::$strings["For Administrators"] = "Para los administradores"; +App::$strings["For Developers"] = "Para los desarrolladores"; +App::$strings["Member registrations waiting for confirmation"] = "Inscripciones de nuevos miembros pendientes de aprobación"; +App::$strings["Inspect queue"] = "Examinar la cola"; +App::$strings["DB updates"] = "Actualizaciones de la base de datos"; +App::$strings["Plugin Features"] = "Extensiones"; +App::$strings[" and "] = " y "; +App::$strings["public profile"] = "el perfil público"; +App::$strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s ha cambiado %2\$s a “%3\$s”"; +App::$strings["Visit %1\$s's %2\$s"] = "Visitar %2\$s de %1\$s"; +App::$strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s ha actualizado %2\$s, cambiando %3\$s."; +App::$strings["Attachments:"] = "Ficheros adjuntos:"; +App::$strings["\$Projectname event notification:"] = "Notificación de eventos de \$Projectname:"; App::$strings["Delete this item?"] = "¿Borrar este elemento?"; -App::$strings["[-] show less"] = "[-] mostrar menos"; -App::$strings["[+] expand"] = "[+] expandir"; -App::$strings["[-] collapse"] = "[-] contraer"; +App::$strings["%s show less"] = ""; +App::$strings["%s expand"] = ""; +App::$strings["%s collapse"] = ""; App::$strings["Password too short"] = "Contraseña demasiado corta"; App::$strings["Passwords do not match"] = "Las contraseñas no coinciden"; App::$strings["everybody"] = "cualquiera"; @@ -2189,72 +2222,78 @@ App::$strings["__ctx:calendar__ month"] = "mes"; App::$strings["__ctx:calendar__ week"] = "semana"; App::$strings["__ctx:calendar__ day"] = "día"; App::$strings["__ctx:calendar__ All day"] = "Todos los días"; -App::$strings["view full size"] = "Ver en el tamaño original"; -App::$strings["No Subject"] = "Sin asunto"; -App::$strings["Friendica"] = "Friendica"; -App::$strings["OStatus"] = "OStatus"; -App::$strings["GNU-Social"] = "GNU Social"; -App::$strings["RSS/Atom"] = "RSS/Atom"; -App::$strings["Diaspora"] = "Diaspora"; -App::$strings["Facebook"] = "Facebook"; -App::$strings["Zot"] = "Zot"; -App::$strings["LinkedIn"] = "LinkedIn"; -App::$strings["XMPP/IM"] = "XMPP/IM"; -App::$strings["MySpace"] = "MySpace"; -App::$strings["Image exceeds website size limit of %lu bytes"] = "La imagen excede el límite de %lu bytes del sitio"; -App::$strings["Image file is empty."] = "El fichero de imagen está vacío. "; -App::$strings["Photo storage failed."] = "La foto no ha podido ser guardada."; -App::$strings["a new photo"] = "una nueva foto"; -App::$strings["__ctx:photo_upload__ %1\$s posted %2\$s to %3\$s"] = "%1\$s ha publicado %2\$s en %3\$s"; -App::$strings["Upload New Photos"] = "Subir nuevas fotos"; +App::$strings["%d invitation available"] = array( + 0 => "%d invitación pendiente", + 1 => "%d invitaciones disponibles", +); +App::$strings["Find Channels"] = "Encontrar canales"; +App::$strings["Enter name or interest"] = "Introducir nombre o interés"; +App::$strings["Connect/Follow"] = "Conectar/Seguir"; +App::$strings["Examples: Robert Morgenstein, Fishing"] = "Ejemplos: José Fernández, Pesca"; +App::$strings["Random Profile"] = "Perfil aleatorio"; +App::$strings["Invite Friends"] = "Invitar a amigos"; +App::$strings["Advanced example: name=fred and country=iceland"] = "Ejemplo avanzado: nombre=juan y país=españa"; +App::$strings["%d connection in common"] = array( + 0 => "%d conexión en común", + 1 => "%d conexiones en común", +); +App::$strings["show more"] = "mostrar más"; +App::$strings["Directory Options"] = "Opciones del directorio"; +App::$strings["Safe Mode"] = "Modo seguro"; +App::$strings["Public Forums Only"] = "Solo foros públicos"; +App::$strings["This Website Only"] = "Solo este sitio web"; +App::$strings["No recipient provided."] = "No se ha especificado ningún destinatario."; +App::$strings["[no subject]"] = "[sin asunto]"; +App::$strings["Unable to determine sender."] = "No ha sido posible determinar el remitente. "; +App::$strings["Stored post could not be verified."] = "No se han podido verificar las publicaciones guardadas."; +App::$strings["Who can see this?"] = "¿Quién puede ver esto?"; +App::$strings["Custom selection"] = "Selección personalizada"; +App::$strings["Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit the scope of \"Show\"."] = "Seleccione \"Mostrar\" para permitir la visualización. La opción \"No mostrar\" le permite anular y limitar el alcance de \"Mostrar\"."; +App::$strings["Show"] = "Mostrar"; +App::$strings["Don't show"] = "No mostrar"; +App::$strings["Other networks and post services"] = "Otras redes y servicios de publicación"; +App::$strings["Post permissions %s cannot be changed %s after a post is shared.
These permissions set who is allowed to view the post."] = "Los permisos de la entrada %s no se pueden cambiar %s una vez que se ha compartido.
Estos permisos establecen quién está autorizado para ver el mensaje."; +App::$strings["Birthday"] = "Cumpleaños"; +App::$strings["Age: "] = "Edad:"; +App::$strings["YYYY-MM-DD or MM-DD"] = "AAAA-MM-DD o MM-DD"; +App::$strings["never"] = "nunca"; +App::$strings["less than a second ago"] = "hace un instante"; +App::$strings["__ctx:e.g. 22 hours ago, 1 minute ago__ %1\$d %2\$s ago"] = "hace %1\$d %2\$s"; +App::$strings["__ctx:relative_date__ year"] = array( + 0 => "año", + 1 => "años", +); +App::$strings["__ctx:relative_date__ month"] = array( + 0 => "mes", + 1 => "meses", +); +App::$strings["__ctx:relative_date__ week"] = array( + 0 => "semana", + 1 => "semanas", +); +App::$strings["__ctx:relative_date__ day"] = array( + 0 => "día", + 1 => "días", +); +App::$strings["__ctx:relative_date__ hour"] = array( + 0 => "hora", + 1 => "horas", +); +App::$strings["__ctx:relative_date__ minute"] = array( + 0 => "minuto", + 1 => "minutos", +); +App::$strings["__ctx:relative_date__ second"] = array( + 0 => "segundo", + 1 => "segundos", +); +App::$strings["%1\$s's birthday"] = "Cumpleaños de %1\$s"; +App::$strings["Happy Birthday %1\$s"] = "Feliz cumpleaños %1\$s"; +App::$strings["Public Timeline"] = "Cronología pública"; App::$strings["Invalid data packet"] = "Paquete de datos no válido"; App::$strings["Unable to verify channel signature"] = "No ha sido posible de verificar la firma del canal"; App::$strings["Unable to verify site signature for %s"] = "No ha sido posible de verificar la firma del sitio para %s"; App::$strings["invalid target signature"] = "La firma recibida no es válida"; -App::$strings["New Page"] = "Nueva página"; -App::$strings["Title"] = "Título"; -App::$strings["Can view my normal stream and posts"] = "Pueden verse mi actividad y publicaciones normales"; -App::$strings["Can view my default channel profile"] = "Puede verse mi perfil de canal predeterminado."; -App::$strings["Can view my connections"] = "Pueden verse mis conexiones"; -App::$strings["Can view my file storage and photos"] = "Pueden verse mi repositorio de ficheros y mis fotos"; -App::$strings["Can view my webpages"] = "Pueden verse mis páginas web"; -App::$strings["Can send me their channel stream and posts"] = "Me pueden enviar sus entradas y contenidos del canal"; -App::$strings["Can post on my channel page (\"wall\")"] = "Pueden crearse entradas en mi página de inicio del canal (“muro”)"; -App::$strings["Can comment on or like my posts"] = "Pueden publicarse comentarios en mis publicaciones o marcar mis entradas con 'me gusta'."; -App::$strings["Can send me private mail messages"] = "Se me pueden enviar mensajes privados"; -App::$strings["Can like/dislike stuff"] = "Puede marcarse contenido como me gusta/no me gusta"; -App::$strings["Profiles and things other than posts/comments"] = "Perfiles y otras cosas aparte de publicaciones/comentarios"; -App::$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"; -App::$strings["Advanced - useful for creating group forum channels"] = "Avanzado - útil para crear canales de foros de discusión o grupos"; -App::$strings["Can chat with me (when available)"] = "Se puede charlar conmigo (cuando esté disponible)"; -App::$strings["Can write to my file storage and photos"] = "Puede escribirse en mi repositorio de ficheros y fotos"; -App::$strings["Can edit my webpages"] = "Pueden editarse mis páginas web"; -App::$strings["Can source my public posts in derived channels"] = "Pueden utilizarse mis publicaciones públicas como origen de contenidos en canales derivados"; -App::$strings["Somewhat advanced - very useful in open communities"] = "Algo avanzado - muy útil en comunidades abiertas"; -App::$strings["Can administer my channel resources"] = "Pueden administrarse mis recursos del canal"; -App::$strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "Muy avanzado. Déjelo a no ser que sepa bien lo que está haciendo."; -App::$strings["Social Networking"] = "Redes sociales"; -App::$strings["Social - Mostly Public"] = "Social - Público en su mayor parte"; -App::$strings["Social - Restricted"] = "Social - Restringido"; -App::$strings["Social - Private"] = "Social - Privado"; -App::$strings["Community Forum"] = "Foro de discusión"; -App::$strings["Forum - Mostly Public"] = "Foro - Público en su mayor parte"; -App::$strings["Forum - Restricted"] = "Foro - Restringido"; -App::$strings["Forum - Private"] = "Foro - Privado"; -App::$strings["Feed Republish"] = "Republicar un \"feed\""; -App::$strings["Feed - Mostly Public"] = "Feed - Público en su mayor parte"; -App::$strings["Feed - Restricted"] = "Feed - Restringido"; -App::$strings["Special Purpose"] = "Propósito especial"; -App::$strings["Special - Celebrity/Soapbox"] = "Especial - Celebridad / Tribuna improvisada"; -App::$strings["Special - Group Repository"] = "Especial - Repositorio de grupo"; -App::$strings["Custom/Expert Mode"] = "Modo personalizado/experto"; -App::$strings[" and "] = " y "; -App::$strings["public profile"] = "el perfil público"; -App::$strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s ha cambiado %2\$s a “%3\$s”"; -App::$strings["Visit %1\$s's %2\$s"] = "Visitar %2\$s de %1\$s"; -App::$strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s ha actualizado %2\$s, cambiando %3\$s."; -App::$strings["Attachments:"] = "Ficheros adjuntos:"; -App::$strings["\$Projectname event notification:"] = "Notificación de eventos de \$Projectname:"; App::$strings["Focus (Hubzilla default)"] = "Focus (predefinido)"; App::$strings["Theme settings"] = "Ajustes del tema"; App::$strings["Select scheme"] = "Elegir un esquema"; @@ -2294,6 +2333,7 @@ App::$strings["__ctx:opensearch__ \$Projectname"] = "\$Projectname"; App::$strings["Update %s failed. See error logs."] = "La actualización %s ha fallado. Mire el informe de errores."; App::$strings["Update Error at %s"] = "Error de actualización en %s"; App::$strings["Create an account to access services and applications within the Hubzilla"] = "Crear una cuenta para acceder a los servicios y aplicaciones dentro de Hubzilla"; +App::$strings["Login/Email"] = ""; App::$strings["Password"] = "Contraseña"; App::$strings["Remember me"] = "Recordarme"; App::$strings["Forgot your password?"] = "¿Olvidó su contraseña?"; diff --git a/view/fr/hmessages.po b/view/fr/hmessages.po index 73d711700..0fb50f0ca 100644 --- a/view/fr/hmessages.po +++ b/view/fr/hmessages.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: Redmatrix\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-06-10 00:02-0700\n" -"PO-Revision-Date: 2016-06-10 09:14+0000\n" +"POT-Creation-Date: 2016-07-22 00:02-0700\n" +"PO-Revision-Date: 2016-07-25 08:54+0000\n" "Last-Translator: fabrixxm \n" "Language-Team: French (http://www.transifex.com/Friendica/red-matrix/language/fr/)\n" "MIME-Version: 1.0\n" @@ -19,11 +19,156 @@ msgstr "" "Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +#: ../../Zotlabs/Access/PermissionRoles.php:182 +#: ../../include/permissions.php:904 +msgid "Social Networking" +msgstr "Réseau social" + +#: ../../Zotlabs/Access/PermissionRoles.php:183 +#: ../../include/permissions.php:904 +msgid "Social - Mostly Public" +msgstr "Social - surtout public" + +#: ../../Zotlabs/Access/PermissionRoles.php:184 +#: ../../include/permissions.php:904 +msgid "Social - Restricted" +msgstr "Social - restreint" + +#: ../../Zotlabs/Access/PermissionRoles.php:185 +#: ../../include/permissions.php:904 +msgid "Social - Private" +msgstr "Social - privé" + +#: ../../Zotlabs/Access/PermissionRoles.php:188 +#: ../../include/permissions.php:905 +msgid "Community Forum" +msgstr "Forum communautaire" + +#: ../../Zotlabs/Access/PermissionRoles.php:189 +#: ../../include/permissions.php:905 +msgid "Forum - Mostly Public" +msgstr "Forum - surtout public" + +#: ../../Zotlabs/Access/PermissionRoles.php:190 +#: ../../include/permissions.php:905 +msgid "Forum - Restricted" +msgstr "Forum - restreint" + +#: ../../Zotlabs/Access/PermissionRoles.php:191 +#: ../../include/permissions.php:905 +msgid "Forum - Private" +msgstr "Forum - privé" + +#: ../../Zotlabs/Access/PermissionRoles.php:194 +#: ../../include/permissions.php:906 +msgid "Feed Republish" +msgstr "Republication de flux" + +#: ../../Zotlabs/Access/PermissionRoles.php:195 +#: ../../include/permissions.php:906 +msgid "Feed - Mostly Public" +msgstr "Flux - surtout public" + +#: ../../Zotlabs/Access/PermissionRoles.php:196 +#: ../../include/permissions.php:906 +msgid "Feed - Restricted" +msgstr "Flux - restreint" + +#: ../../Zotlabs/Access/PermissionRoles.php:199 +#: ../../include/permissions.php:907 +msgid "Special Purpose" +msgstr "Utilisation spécifique" + +#: ../../Zotlabs/Access/PermissionRoles.php:200 +#: ../../include/permissions.php:907 +msgid "Special - Celebrity/Soapbox" +msgstr "Spécial - célébrité/promotion" + +#: ../../Zotlabs/Access/PermissionRoles.php:201 +#: ../../include/permissions.php:907 +msgid "Special - Group Repository" +msgstr "Spécial - dépôt partagé" + +#: ../../Zotlabs/Access/PermissionRoles.php:204 ../../include/selectors.php:49 +#: ../../include/selectors.php:66 ../../include/selectors.php:104 +#: ../../include/selectors.php:140 ../../include/permissions.php:908 +msgid "Other" +msgstr "Autre" + +#: ../../Zotlabs/Access/PermissionRoles.php:205 +#: ../../include/permissions.php:908 +msgid "Custom/Expert Mode" +msgstr "Mode expert/spécifique" + +#: ../../Zotlabs/Access/Permissions.php:30 +msgid "Can view my channel stream and posts" +msgstr "" + +#: ../../Zotlabs/Access/Permissions.php:31 ../../include/permissions.php:33 +msgid "Can send me their channel stream and posts" +msgstr "Peuvent m'envoyer leur flux et les publications de leur canal" + +#: ../../Zotlabs/Access/Permissions.php:32 ../../include/permissions.php:27 +msgid "Can view my default channel profile" +msgstr "Peut voir le profil du canal par défaut." + +#: ../../Zotlabs/Access/Permissions.php:33 ../../include/permissions.php:28 +msgid "Can view my connections" +msgstr "Peut voir mes contacts" + +#: ../../Zotlabs/Access/Permissions.php:34 ../../include/permissions.php:29 +msgid "Can view my file storage and photos" +msgstr "Peut voir mes fichiers et photos" + +#: ../../Zotlabs/Access/Permissions.php:35 +msgid "Can upload/modify my file storage and photos" +msgstr "" + +#: ../../Zotlabs/Access/Permissions.php:36 +msgid "Can view my channel webpages" +msgstr "" + +#: ../../Zotlabs/Access/Permissions.php:37 +msgid "Can create/edit my channel webpages" +msgstr "" + +#: ../../Zotlabs/Access/Permissions.php:38 +msgid "Can post on my channel (wall) page" +msgstr "" + +#: ../../Zotlabs/Access/Permissions.php:39 ../../include/permissions.php:35 +msgid "Can comment on or like my posts" +msgstr "Peuvent commenter et/ou aimer mes publications" + +#: ../../Zotlabs/Access/Permissions.php:40 ../../include/permissions.php:36 +msgid "Can send me private mail messages" +msgstr "Peuvent m'envoyer des messages privés" + +#: ../../Zotlabs/Access/Permissions.php:41 +msgid "Can like/dislike profiles and profile things" +msgstr "" + +#: ../../Zotlabs/Access/Permissions.php:42 +msgid "Can forward to all my channel connections via @+ mentions in posts" +msgstr "" + +#: ../../Zotlabs/Access/Permissions.php:43 +msgid "Can chat with me" +msgstr "" + +#: ../../Zotlabs/Access/Permissions.php:44 ../../include/permissions.php:44 +msgid "Can source my public posts in derived channels" +msgstr "Peut rediriger mes publications publiques vers des canaux dérivés" + +#: ../../Zotlabs/Access/Permissions.php:45 +msgid "Can administer my channel" +msgstr "" + #: ../../Zotlabs/Storage/Browser.php:107 ../../Zotlabs/Storage/Browser.php:239 msgid "parent" msgstr "retour" -#: ../../Zotlabs/Storage/Browser.php:131 ../../include/text.php:2620 +#: ../../Zotlabs/Storage/Browser.php:131 ../../include/text.php:2605 msgid "Collection" msgstr "Groupe de contacts" @@ -47,16 +192,17 @@ msgstr "Calendrier - Messages entrants" msgid "Schedule Outbox" msgstr "Calendrier - Messages sortants" -#: ../../Zotlabs/Storage/Browser.php:164 ../../Zotlabs/Module/Photos.php:798 -#: ../../Zotlabs/Module/Photos.php:1243 ../../Zotlabs/Lib/Apps.php:486 -#: ../../Zotlabs/Lib/Apps.php:561 ../../include/widgets.php:1505 -#: ../../include/conversation.php:1032 +#: ../../Zotlabs/Storage/Browser.php:164 ../../Zotlabs/Module/Photos.php:796 +#: ../../Zotlabs/Module/Photos.php:1241 +#: ../../Zotlabs/Module/Embedphotos.php:147 ../../Zotlabs/Lib/Apps.php:490 +#: ../../Zotlabs/Lib/Apps.php:565 ../../include/conversation.php:1035 +#: ../../include/widgets.php:1599 msgid "Unknown" msgstr "Inconnu" #: ../../Zotlabs/Storage/Browser.php:226 ../../Zotlabs/Module/Fbrowser.php:85 -#: ../../Zotlabs/Lib/Apps.php:216 ../../include/nav.php:93 -#: ../../include/conversation.php:1639 +#: ../../Zotlabs/Lib/Apps.php:217 ../../include/nav.php:93 +#: ../../include/conversation.php:1654 msgid "Files" msgstr "Fichiers" @@ -69,22 +215,23 @@ msgid "Shared" msgstr "Partagé" #: ../../Zotlabs/Storage/Browser.php:230 ../../Zotlabs/Storage/Browser.php:306 -#: ../../Zotlabs/Module/Blocks.php:156 ../../Zotlabs/Module/Layouts.php:182 -#: ../../Zotlabs/Module/Menu.php:118 ../../Zotlabs/Module/New_channel.php:142 -#: ../../Zotlabs/Module/Webpages.php:186 +#: ../../Zotlabs/Module/Layouts.php:184 ../../Zotlabs/Module/Menu.php:118 +#: ../../Zotlabs/Module/New_channel.php:142 +#: ../../Zotlabs/Module/Blocks.php:159 ../../Zotlabs/Module/Webpages.php:193 msgid "Create" msgstr "Créer" #: ../../Zotlabs/Storage/Browser.php:231 ../../Zotlabs/Storage/Browser.php:308 #: ../../Zotlabs/Module/Cover_photo.php:357 -#: ../../Zotlabs/Module/Photos.php:825 ../../Zotlabs/Module/Photos.php:1364 -#: ../../Zotlabs/Module/Profile_photo.php:368 ../../include/widgets.php:1518 +#: ../../Zotlabs/Module/Photos.php:823 ../../Zotlabs/Module/Photos.php:1362 +#: ../../Zotlabs/Module/Profile_photo.php:390 +#: ../../Zotlabs/Module/Embedphotos.php:159 ../../include/widgets.php:1612 msgid "Upload" msgstr "Envoyer" #: ../../Zotlabs/Storage/Browser.php:235 ../../Zotlabs/Module/Chat.php:247 -#: ../../Zotlabs/Module/Admin.php:1223 ../../Zotlabs/Module/Settings.php:592 -#: ../../Zotlabs/Module/Settings.php:618 +#: ../../Zotlabs/Module/Admin.php:1223 ../../Zotlabs/Module/Settings.php:646 +#: ../../Zotlabs/Module/Settings.php:672 #: ../../Zotlabs/Module/Sharedwithme.php:99 msgid "Name" msgstr "Nom" @@ -94,7 +241,7 @@ msgid "Type" msgstr "Type" #: ../../Zotlabs/Storage/Browser.php:237 -#: ../../Zotlabs/Module/Sharedwithme.php:101 ../../include/text.php:1344 +#: ../../Zotlabs/Module/Sharedwithme.php:101 ../../include/text.php:1324 msgid "Size" msgstr "Taille" @@ -103,34 +250,32 @@ msgstr "Taille" msgid "Last Modified" msgstr "Modifié le" -#: ../../Zotlabs/Storage/Browser.php:240 ../../Zotlabs/Module/Blocks.php:157 -#: ../../Zotlabs/Module/Editblock.php:109 +#: ../../Zotlabs/Storage/Browser.php:240 ../../Zotlabs/Module/Editpost.php:84 #: ../../Zotlabs/Module/Connections.php:290 #: ../../Zotlabs/Module/Connections.php:310 -#: ../../Zotlabs/Module/Editpost.php:84 -#: ../../Zotlabs/Module/Editlayout.php:113 -#: ../../Zotlabs/Module/Editwebpage.php:146 -#: ../../Zotlabs/Module/Layouts.php:190 ../../Zotlabs/Module/Menu.php:112 -#: ../../Zotlabs/Module/Admin.php:2113 ../../Zotlabs/Module/Settings.php:652 -#: ../../Zotlabs/Module/Thing.php:260 ../../Zotlabs/Module/Webpages.php:187 -#: ../../Zotlabs/Lib/Apps.php:337 ../../Zotlabs/Lib/ThreadItem.php:106 -#: ../../include/channel.php:937 ../../include/channel.php:941 -#: ../../include/menu.php:108 ../../include/page_widgets.php:8 -#: ../../include/page_widgets.php:36 +#: ../../Zotlabs/Module/Editlayout.php:114 +#: ../../Zotlabs/Module/Editwebpage.php:145 +#: ../../Zotlabs/Module/Layouts.php:192 ../../Zotlabs/Module/Menu.php:112 +#: ../../Zotlabs/Module/Admin.php:2113 ../../Zotlabs/Module/Blocks.php:160 +#: ../../Zotlabs/Module/Editblock.php:109 +#: ../../Zotlabs/Module/Settings.php:706 ../../Zotlabs/Module/Thing.php:260 +#: ../../Zotlabs/Module/Webpages.php:194 ../../Zotlabs/Lib/Apps.php:341 +#: ../../Zotlabs/Lib/ThreadItem.php:106 ../../include/page_widgets.php:9 +#: ../../include/page_widgets.php:39 ../../include/channel.php:976 +#: ../../include/channel.php:980 ../../include/menu.php:108 msgid "Edit" msgstr "Modifier" -#: ../../Zotlabs/Storage/Browser.php:241 ../../Zotlabs/Module/Blocks.php:159 -#: ../../Zotlabs/Module/Connedit.php:572 -#: ../../Zotlabs/Module/Editblock.php:134 +#: ../../Zotlabs/Storage/Browser.php:241 ../../Zotlabs/Module/Connedit.php:602 #: ../../Zotlabs/Module/Connections.php:263 -#: ../../Zotlabs/Module/Editlayout.php:136 -#: ../../Zotlabs/Module/Editwebpage.php:170 ../../Zotlabs/Module/Group.php:177 -#: ../../Zotlabs/Module/Photos.php:1173 ../../Zotlabs/Module/Admin.php:1039 +#: ../../Zotlabs/Module/Editlayout.php:137 +#: ../../Zotlabs/Module/Editwebpage.php:169 ../../Zotlabs/Module/Group.php:177 +#: ../../Zotlabs/Module/Photos.php:1171 ../../Zotlabs/Module/Admin.php:1039 #: ../../Zotlabs/Module/Admin.php:1213 ../../Zotlabs/Module/Admin.php:2114 -#: ../../Zotlabs/Module/Settings.php:653 ../../Zotlabs/Module/Thing.php:261 -#: ../../Zotlabs/Module/Webpages.php:189 ../../Zotlabs/Lib/Apps.php:338 -#: ../../Zotlabs/Lib/ThreadItem.php:126 ../../include/conversation.php:657 +#: ../../Zotlabs/Module/Blocks.php:162 ../../Zotlabs/Module/Editblock.php:134 +#: ../../Zotlabs/Module/Settings.php:707 ../../Zotlabs/Module/Thing.php:261 +#: ../../Zotlabs/Module/Webpages.php:196 ../../Zotlabs/Lib/Apps.php:342 +#: ../../Zotlabs/Lib/ThreadItem.php:126 ../../include/conversation.php:660 msgid "Delete" msgstr "Supprimer" @@ -156,74 +301,73 @@ msgstr "Nouveau dossier" msgid "Upload file" msgstr "Téléverser un fichier" -#: ../../Zotlabs/Web/WebServer.php:120 ../../Zotlabs/Module/Dreport.php:10 -#: ../../Zotlabs/Module/Dreport.php:49 ../../Zotlabs/Module/Group.php:72 -#: ../../Zotlabs/Module/Like.php:284 ../../Zotlabs/Module/Import_items.php:112 +#: ../../Zotlabs/Web/WebServer.php:127 ../../Zotlabs/Module/Dreport.php:10 +#: ../../Zotlabs/Module/Dreport.php:66 ../../Zotlabs/Module/Group.php:72 +#: ../../Zotlabs/Module/Like.php:283 ../../Zotlabs/Module/Import_items.php:114 #: ../../Zotlabs/Module/Profperm.php:28 ../../Zotlabs/Module/Subthread.php:62 -#: ../../include/items.php:385 +#: ../../include/items.php:384 msgid "Permission denied" msgstr "Accès refusé" -#: ../../Zotlabs/Web/WebServer.php:121 ../../Zotlabs/Web/Router.php:65 -#: ../../Zotlabs/Module/Achievements.php:34 ../../Zotlabs/Module/Blocks.php:73 -#: ../../Zotlabs/Module/Blocks.php:80 ../../Zotlabs/Module/Channel.php:105 -#: ../../Zotlabs/Module/Channel.php:226 ../../Zotlabs/Module/Channel.php:267 -#: ../../Zotlabs/Module/Chat.php:100 ../../Zotlabs/Module/Chat.php:105 -#: ../../Zotlabs/Module/Authtest.php:16 ../../Zotlabs/Module/Block.php:26 -#: ../../Zotlabs/Module/Block.php:76 ../../Zotlabs/Module/Bookmarks.php:61 -#: ../../Zotlabs/Module/Connedit.php:366 ../../Zotlabs/Module/Editblock.php:67 -#: ../../Zotlabs/Module/Common.php:39 ../../Zotlabs/Module/Connections.php:33 +#: ../../Zotlabs/Web/WebServer.php:128 ../../Zotlabs/Web/Router.php:65 +#: ../../Zotlabs/Module/Achievements.php:34 +#: ../../Zotlabs/Module/Connedit.php:390 ../../Zotlabs/Module/Id.php:76 +#: ../../Zotlabs/Module/Authtest.php:16 ../../Zotlabs/Module/Events.php:264 +#: ../../Zotlabs/Module/Bookmarks.php:61 ../../Zotlabs/Module/Editpost.php:17 +#: ../../Zotlabs/Module/Page.php:35 ../../Zotlabs/Module/Page.php:91 +#: ../../Zotlabs/Module/Connections.php:33 #: ../../Zotlabs/Module/Cover_photo.php:277 -#: ../../Zotlabs/Module/Cover_photo.php:290 -#: ../../Zotlabs/Module/Editpost.php:17 ../../Zotlabs/Module/Events.php:265 -#: ../../Zotlabs/Module/Editlayout.php:67 +#: ../../Zotlabs/Module/Cover_photo.php:290 ../../Zotlabs/Module/Chat.php:100 +#: ../../Zotlabs/Module/Chat.php:105 ../../Zotlabs/Module/Editlayout.php:67 #: ../../Zotlabs/Module/Editlayout.php:90 -#: ../../Zotlabs/Module/Editwebpage.php:69 -#: ../../Zotlabs/Module/Editwebpage.php:90 -#: ../../Zotlabs/Module/Editwebpage.php:105 -#: ../../Zotlabs/Module/Editwebpage.php:127 ../../Zotlabs/Module/Group.php:13 -#: ../../Zotlabs/Module/Api.php:13 ../../Zotlabs/Module/Api.php:18 -#: ../../Zotlabs/Module/Filestorage.php:24 -#: ../../Zotlabs/Module/Filestorage.php:79 -#: ../../Zotlabs/Module/Filestorage.php:94 -#: ../../Zotlabs/Module/Filestorage.php:121 ../../Zotlabs/Module/Item.php:210 -#: ../../Zotlabs/Module/Item.php:218 ../../Zotlabs/Module/Item.php:1070 +#: ../../Zotlabs/Module/Editwebpage.php:68 +#: ../../Zotlabs/Module/Editwebpage.php:89 +#: ../../Zotlabs/Module/Editwebpage.php:104 +#: ../../Zotlabs/Module/Editwebpage.php:126 ../../Zotlabs/Module/Group.php:13 +#: ../../Zotlabs/Module/Appman.php:75 ../../Zotlabs/Module/Pdledit.php:26 +#: ../../Zotlabs/Module/Filestorage.php:23 +#: ../../Zotlabs/Module/Filestorage.php:78 +#: ../../Zotlabs/Module/Filestorage.php:93 +#: ../../Zotlabs/Module/Filestorage.php:120 #: ../../Zotlabs/Module/Layouts.php:71 ../../Zotlabs/Module/Layouts.php:78 -#: ../../Zotlabs/Module/Layouts.php:89 ../../Zotlabs/Module/Id.php:76 -#: ../../Zotlabs/Module/Like.php:181 ../../Zotlabs/Module/Invite.php:17 -#: ../../Zotlabs/Module/Invite.php:91 ../../Zotlabs/Module/Locs.php:87 -#: ../../Zotlabs/Module/Mail.php:129 ../../Zotlabs/Module/Manage.php:10 -#: ../../Zotlabs/Module/Menu.php:78 ../../Zotlabs/Module/Message.php:18 -#: ../../Zotlabs/Module/Mood.php:116 ../../Zotlabs/Module/Network.php:17 +#: ../../Zotlabs/Module/Layouts.php:89 ../../Zotlabs/Module/Like.php:181 +#: ../../Zotlabs/Module/Profiles.php:203 ../../Zotlabs/Module/Profiles.php:601 +#: ../../Zotlabs/Module/Item.php:213 ../../Zotlabs/Module/Item.php:221 +#: ../../Zotlabs/Module/Item.php:1071 ../../Zotlabs/Module/Photos.php:73 +#: ../../Zotlabs/Module/Invite.php:17 ../../Zotlabs/Module/Invite.php:91 +#: ../../Zotlabs/Module/Locs.php:87 ../../Zotlabs/Module/Mail.php:121 +#: ../../Zotlabs/Module/Manage.php:10 ../../Zotlabs/Module/Menu.php:78 +#: ../../Zotlabs/Module/Message.php:18 ../../Zotlabs/Module/Mood.php:116 +#: ../../Zotlabs/Module/Network.php:15 ../../Zotlabs/Module/Channel.php:104 +#: ../../Zotlabs/Module/Channel.php:225 ../../Zotlabs/Module/Channel.php:266 #: ../../Zotlabs/Module/Mitem.php:115 ../../Zotlabs/Module/New_channel.php:77 #: ../../Zotlabs/Module/New_channel.php:104 -#: ../../Zotlabs/Module/Notifications.php:70 -#: ../../Zotlabs/Module/Photos.php:75 ../../Zotlabs/Module/Page.php:35 -#: ../../Zotlabs/Module/Page.php:90 ../../Zotlabs/Module/Pdledit.php:26 -#: ../../Zotlabs/Module/Poke.php:137 ../../Zotlabs/Module/Profile.php:68 -#: ../../Zotlabs/Module/Profile.php:76 ../../Zotlabs/Module/Profiles.php:203 -#: ../../Zotlabs/Module/Profiles.php:601 -#: ../../Zotlabs/Module/Profile_photo.php:256 -#: ../../Zotlabs/Module/Profile_photo.php:269 -#: ../../Zotlabs/Module/Rate.php:113 ../../Zotlabs/Module/Appman.php:75 -#: ../../Zotlabs/Module/Register.php:77 ../../Zotlabs/Module/Regmod.php:21 +#: ../../Zotlabs/Module/Notifications.php:70 ../../Zotlabs/Module/Poke.php:137 +#: ../../Zotlabs/Module/Profile.php:68 ../../Zotlabs/Module/Profile.php:76 +#: ../../Zotlabs/Module/Block.php:26 ../../Zotlabs/Module/Block.php:76 +#: ../../Zotlabs/Module/Profile_photo.php:265 +#: ../../Zotlabs/Module/Profile_photo.php:278 +#: ../../Zotlabs/Module/Blocks.php:73 ../../Zotlabs/Module/Blocks.php:80 +#: ../../Zotlabs/Module/Rate.php:113 ../../Zotlabs/Module/Editblock.php:67 +#: ../../Zotlabs/Module/Common.php:39 ../../Zotlabs/Module/Register.php:77 +#: ../../Zotlabs/Module/Regmod.php:21 #: ../../Zotlabs/Module/Service_limits.php:11 -#: ../../Zotlabs/Module/Settings.php:572 ../../Zotlabs/Module/Setup.php:215 -#: ../../Zotlabs/Module/Sharedwithme.php:11 +#: ../../Zotlabs/Module/Settings.php:626 ../../Zotlabs/Module/Setup.php:215 +#: ../../Zotlabs/Module/Sharedwithme.php:11 ../../Zotlabs/Module/Thing.php:274 +#: ../../Zotlabs/Module/Thing.php:294 ../../Zotlabs/Module/Thing.php:331 #: ../../Zotlabs/Module/Sources.php:74 ../../Zotlabs/Module/Suggest.php:30 -#: ../../Zotlabs/Module/Thing.php:274 ../../Zotlabs/Module/Thing.php:294 -#: ../../Zotlabs/Module/Thing.php:331 -#: ../../Zotlabs/Module/Viewconnections.php:25 -#: ../../Zotlabs/Module/Viewconnections.php:30 -#: ../../Zotlabs/Module/Viewsrc.php:18 ../../Zotlabs/Module/Webpages.php:74 -#: ../../Zotlabs/Lib/Chatroom.php:137 ../../include/items.php:3438 -#: ../../include/attach.php:141 ../../include/attach.php:189 -#: ../../include/attach.php:252 ../../include/attach.php:266 -#: ../../include/attach.php:273 ../../include/attach.php:338 -#: ../../include/attach.php:352 ../../include/attach.php:359 -#: ../../include/attach.php:437 ../../include/attach.php:895 -#: ../../include/attach.php:966 ../../include/attach.php:1118 -#: ../../include/photos.php:27 +#: ../../Zotlabs/Module/Webpages.php:73 +#: ../../Zotlabs/Module/Viewconnections.php:28 +#: ../../Zotlabs/Module/Viewconnections.php:33 +#: ../../Zotlabs/Module/Viewsrc.php:18 ../../Zotlabs/Module/Api.php:13 +#: ../../Zotlabs/Module/Api.php:18 ../../Zotlabs/Lib/Chatroom.php:137 +#: ../../include/photos.php:27 ../../include/attach.php:141 +#: ../../include/attach.php:189 ../../include/attach.php:252 +#: ../../include/attach.php:266 ../../include/attach.php:273 +#: ../../include/attach.php:338 ../../include/attach.php:352 +#: ../../include/attach.php:359 ../../include/attach.php:439 +#: ../../include/attach.php:901 ../../include/attach.php:972 +#: ../../include/attach.php:1124 ../../include/items.php:3448 msgid "Permission denied." msgstr "Permission refusée." @@ -231,9 +375,9 @@ msgstr "Permission refusée." msgid "Not Found" msgstr "Introuvable" -#: ../../Zotlabs/Web/Router.php:149 ../../Zotlabs/Module/Block.php:79 -#: ../../Zotlabs/Module/Display.php:117 ../../Zotlabs/Module/Help.php:97 -#: ../../Zotlabs/Module/Page.php:93 +#: ../../Zotlabs/Web/Router.php:149 ../../Zotlabs/Module/Display.php:118 +#: ../../Zotlabs/Module/Page.php:94 ../../Zotlabs/Module/Help.php:97 +#: ../../Zotlabs/Module/Block.php:79 msgid "Page not found." msgstr "Page introuvable." @@ -249,13 +393,13 @@ msgstr "Authentification distante bloquée. Vous êtes connecté(e) sur ce site msgid "Welcome %s. Remote authentication successful." msgstr "Bienvenue %s. L'authentification distante a fonctionné." -#: ../../Zotlabs/Module/Achievements.php:15 ../../Zotlabs/Module/Blocks.php:33 -#: ../../Zotlabs/Module/Connect.php:17 ../../Zotlabs/Module/Editblock.php:31 -#: ../../Zotlabs/Module/Editlayout.php:31 -#: ../../Zotlabs/Module/Editwebpage.php:33 -#: ../../Zotlabs/Module/Filestorage.php:60 ../../Zotlabs/Module/Hcard.php:12 -#: ../../Zotlabs/Module/Layouts.php:31 ../../Zotlabs/Module/Profile.php:20 -#: ../../Zotlabs/Module/Webpages.php:34 ../../include/channel.php:837 +#: ../../Zotlabs/Module/Achievements.php:15 +#: ../../Zotlabs/Module/Connect.php:17 ../../Zotlabs/Module/Editlayout.php:31 +#: ../../Zotlabs/Module/Editwebpage.php:32 ../../Zotlabs/Module/Hcard.php:12 +#: ../../Zotlabs/Module/Filestorage.php:59 ../../Zotlabs/Module/Layouts.php:31 +#: ../../Zotlabs/Module/Profile.php:20 ../../Zotlabs/Module/Blocks.php:33 +#: ../../Zotlabs/Module/Editblock.php:31 ../../Zotlabs/Module/Webpages.php:33 +#: ../../include/channel.php:876 msgid "Requested profile is not available." msgstr "Profil demandé non disponible." @@ -263,229 +407,6 @@ msgstr "Profil demandé non disponible." msgid "Some blurb about what to do when you're new here" msgstr "Quelques mots sur quoi faire quand on est nouveau ici" -#: ../../Zotlabs/Module/Blocks.php:97 ../../Zotlabs/Module/Blocks.php:152 -#: ../../Zotlabs/Module/Editblock.php:108 -msgid "Block Name" -msgstr "Nom du Bloc" - -#: ../../Zotlabs/Module/Blocks.php:151 ../../include/text.php:2265 -msgid "Blocks" -msgstr "Blocs" - -#: ../../Zotlabs/Module/Blocks.php:153 -msgid "Block Title" -msgstr "Titre du bloc" - -#: ../../Zotlabs/Module/Blocks.php:154 ../../Zotlabs/Module/Layouts.php:188 -#: ../../Zotlabs/Module/Menu.php:114 ../../Zotlabs/Module/Webpages.php:198 -#: ../../include/page_widgets.php:44 -msgid "Created" -msgstr "Créé(e)" - -#: ../../Zotlabs/Module/Blocks.php:155 ../../Zotlabs/Module/Layouts.php:189 -#: ../../Zotlabs/Module/Menu.php:115 ../../Zotlabs/Module/Webpages.php:199 -#: ../../include/page_widgets.php:45 -msgid "Edited" -msgstr "Modifié(e)" - -#: ../../Zotlabs/Module/Blocks.php:158 ../../Zotlabs/Module/Layouts.php:191 -#: ../../Zotlabs/Module/Photos.php:1072 ../../Zotlabs/Module/Webpages.php:188 -#: ../../include/conversation.php:1208 -msgid "Share" -msgstr "Partager" - -#: ../../Zotlabs/Module/Blocks.php:163 ../../Zotlabs/Module/Layouts.php:195 -#: ../../Zotlabs/Module/Pubsites.php:47 ../../Zotlabs/Module/Webpages.php:193 -#: ../../include/page_widgets.php:39 -msgid "View" -msgstr "Voir" - -#: ../../Zotlabs/Module/Cal.php:62 ../../Zotlabs/Module/Block.php:43 -#: ../../Zotlabs/Module/Page.php:56 ../../Zotlabs/Module/Wall_upload.php:33 -msgid "Channel not found." -msgstr "Canal introuvable." - -#: ../../Zotlabs/Module/Cal.php:69 -msgid "Permissions denied." -msgstr "Permissions refusées." - -#: ../../Zotlabs/Module/Cal.php:259 ../../Zotlabs/Module/Events.php:588 -msgid "l, F j" -msgstr "l, F j" - -#: ../../Zotlabs/Module/Cal.php:308 ../../Zotlabs/Module/Events.php:637 -#: ../../include/text.php:1732 -msgid "Link to Source" -msgstr "Lien vers la Source" - -#: ../../Zotlabs/Module/Cal.php:331 ../../Zotlabs/Module/Events.php:665 -msgid "Edit Event" -msgstr "Modifier l'événement" - -#: ../../Zotlabs/Module/Cal.php:331 ../../Zotlabs/Module/Events.php:665 -msgid "Create Event" -msgstr "Créer un événement" - -#: ../../Zotlabs/Module/Cal.php:332 ../../Zotlabs/Module/Cal.php:339 -#: ../../Zotlabs/Module/Events.php:666 ../../Zotlabs/Module/Events.php:673 -#: ../../Zotlabs/Module/Photos.php:949 -msgid "Previous" -msgstr "Précédent" - -#: ../../Zotlabs/Module/Cal.php:333 ../../Zotlabs/Module/Cal.php:340 -#: ../../Zotlabs/Module/Events.php:667 ../../Zotlabs/Module/Events.php:674 -#: ../../Zotlabs/Module/Photos.php:958 ../../Zotlabs/Module/Setup.php:267 -msgid "Next" -msgstr "Suivant" - -#: ../../Zotlabs/Module/Cal.php:334 ../../Zotlabs/Module/Events.php:668 -#: ../../include/widgets.php:755 -msgid "Export" -msgstr "Export" - -#: ../../Zotlabs/Module/Cal.php:337 ../../Zotlabs/Module/Events.php:671 -#: ../../include/widgets.php:756 -msgid "Import" -msgstr "Import" - -#: ../../Zotlabs/Module/Cal.php:338 ../../Zotlabs/Module/Chat.php:196 -#: ../../Zotlabs/Module/Chat.php:238 ../../Zotlabs/Module/Connect.php:98 -#: ../../Zotlabs/Module/Connedit.php:731 ../../Zotlabs/Module/Events.php:475 -#: ../../Zotlabs/Module/Events.php:672 ../../Zotlabs/Module/Group.php:85 -#: ../../Zotlabs/Module/Filestorage.php:162 -#: ../../Zotlabs/Module/Import.php:550 -#: ../../Zotlabs/Module/Import_items.php:120 -#: ../../Zotlabs/Module/Invite.php:146 ../../Zotlabs/Module/Locs.php:121 -#: ../../Zotlabs/Module/Mail.php:378 ../../Zotlabs/Module/Mood.php:139 -#: ../../Zotlabs/Module/Mitem.php:235 ../../Zotlabs/Module/Photos.php:677 -#: ../../Zotlabs/Module/Photos.php:1052 ../../Zotlabs/Module/Photos.php:1092 -#: ../../Zotlabs/Module/Photos.php:1210 ../../Zotlabs/Module/Pconfig.php:107 -#: ../../Zotlabs/Module/Pdledit.php:66 ../../Zotlabs/Module/Poke.php:186 -#: ../../Zotlabs/Module/Profiles.php:687 ../../Zotlabs/Module/Rate.php:170 -#: ../../Zotlabs/Module/Admin.php:492 ../../Zotlabs/Module/Admin.php:688 -#: ../../Zotlabs/Module/Admin.php:771 ../../Zotlabs/Module/Admin.php:1032 -#: ../../Zotlabs/Module/Admin.php:1211 ../../Zotlabs/Module/Admin.php:1421 -#: ../../Zotlabs/Module/Admin.php:1648 ../../Zotlabs/Module/Admin.php:1733 -#: ../../Zotlabs/Module/Admin.php:2116 ../../Zotlabs/Module/Appman.php:126 -#: ../../Zotlabs/Module/Settings.php:590 ../../Zotlabs/Module/Settings.php:703 -#: ../../Zotlabs/Module/Settings.php:731 ../../Zotlabs/Module/Settings.php:754 -#: ../../Zotlabs/Module/Settings.php:842 -#: ../../Zotlabs/Module/Settings.php:1034 ../../Zotlabs/Module/Setup.php:312 -#: ../../Zotlabs/Module/Setup.php:353 ../../Zotlabs/Module/Sources.php:114 -#: ../../Zotlabs/Module/Sources.php:149 ../../Zotlabs/Module/Thing.php:316 -#: ../../Zotlabs/Module/Thing.php:362 ../../Zotlabs/Module/Xchan.php:15 -#: ../../Zotlabs/Lib/ThreadItem.php:710 ../../include/widgets.php:757 -#: ../../include/widgets.php:769 ../../include/js_strings.php:22 -#: ../../view/theme/redbasic/php/config.php:99 -msgid "Submit" -msgstr "Envoyer" - -#: ../../Zotlabs/Module/Cal.php:341 ../../Zotlabs/Module/Events.php:675 -msgid "Today" -msgstr "Aujourd'hui" - -#: ../../Zotlabs/Module/Channel.php:29 ../../Zotlabs/Module/Chat.php:25 -msgid "You must be logged in to see this page." -msgstr "Vous devez vous connecter pour voir cette page." - -#: ../../Zotlabs/Module/Channel.php:41 -msgid "Posts and comments" -msgstr "" - -#: ../../Zotlabs/Module/Channel.php:42 -msgid "Only posts" -msgstr "" - -#: ../../Zotlabs/Module/Channel.php:102 -msgid "Insufficient permissions. Request redirected to profile page." -msgstr "Permissions insuffisantes. Demande redirigée vers la page du profil." - -#: ../../Zotlabs/Module/Chat.php:181 -msgid "Room not found" -msgstr "Salon introuvable" - -#: ../../Zotlabs/Module/Chat.php:197 -msgid "Leave Room" -msgstr "Quitter le salon" - -#: ../../Zotlabs/Module/Chat.php:198 -msgid "Delete Room" -msgstr "" - -#: ../../Zotlabs/Module/Chat.php:199 -msgid "I am away right now" -msgstr "Je suis absent en ce moment" - -#: ../../Zotlabs/Module/Chat.php:200 -msgid "I am online" -msgstr "Je suis en ligne" - -#: ../../Zotlabs/Module/Chat.php:202 -msgid "Bookmark this room" -msgstr "Marquer ce salon comme favori" - -#: ../../Zotlabs/Module/Chat.php:205 ../../Zotlabs/Module/Mail.php:205 -#: ../../Zotlabs/Module/Mail.php:314 ../../include/conversation.php:1176 -msgid "Please enter a link URL:" -msgstr "Merci d'entrer l'URL d'un lien :" - -#: ../../Zotlabs/Module/Chat.php:206 ../../Zotlabs/Module/Mail.php:258 -#: ../../Zotlabs/Module/Mail.php:383 ../../Zotlabs/Lib/ThreadItem.php:722 -#: ../../include/conversation.php:1256 -msgid "Encrypt text" -msgstr "Chiffrer le texte" - -#: ../../Zotlabs/Module/Chat.php:207 ../../Zotlabs/Module/Editblock.php:111 -#: ../../Zotlabs/Module/Editwebpage.php:147 ../../Zotlabs/Module/Mail.php:252 -#: ../../Zotlabs/Module/Mail.php:377 ../../include/conversation.php:1143 -msgid "Insert web link" -msgstr "Insérer lien web" - -#: ../../Zotlabs/Module/Chat.php:218 -msgid "Feature disabled." -msgstr "" - -#: ../../Zotlabs/Module/Chat.php:232 -msgid "New Chatroom" -msgstr "Nouveau salon de discussion" - -#: ../../Zotlabs/Module/Chat.php:233 -msgid "Chatroom name" -msgstr "" - -#: ../../Zotlabs/Module/Chat.php:234 -msgid "Expiration of chats (minutes)" -msgstr "Expiration des discussions (en minutes)" - -#: ../../Zotlabs/Module/Chat.php:235 ../../Zotlabs/Module/Filestorage.php:153 -#: ../../Zotlabs/Module/Photos.php:671 ../../Zotlabs/Module/Photos.php:1045 -#: ../../Zotlabs/Module/Thing.php:313 ../../Zotlabs/Module/Thing.php:359 -#: ../../include/acl_selectors.php:283 -msgid "Permissions" -msgstr "Autorisations" - -#: ../../Zotlabs/Module/Chat.php:246 -#, php-format -msgid "%1$s's Chatrooms" -msgstr "Salons de %1$s" - -#: ../../Zotlabs/Module/Chat.php:251 -msgid "No chatrooms available" -msgstr "" - -#: ../../Zotlabs/Module/Chat.php:252 ../../Zotlabs/Module/Manage.php:143 -#: ../../Zotlabs/Module/Profiles.php:778 -msgid "Create New" -msgstr "" - -#: ../../Zotlabs/Module/Chat.php:255 -msgid "Expiration" -msgstr "" - -#: ../../Zotlabs/Module/Chat.php:256 -msgid "min" -msgstr "" - #: ../../Zotlabs/Module/Chatsvc.php:117 msgid "Away" msgstr "Absent" @@ -494,65 +415,6 @@ msgstr "Absent" msgid "Online" msgstr "En ligne" -#: ../../Zotlabs/Module/Block.php:31 ../../Zotlabs/Module/Page.php:40 -msgid "Invalid item." -msgstr "Élément invalide." - -#: ../../Zotlabs/Module/Bookmarks.php:53 -msgid "Bookmark added" -msgstr "Favori ajouté" - -#: ../../Zotlabs/Module/Bookmarks.php:75 -msgid "My Bookmarks" -msgstr "Mes Favoris" - -#: ../../Zotlabs/Module/Bookmarks.php:86 -msgid "My Connections Bookmarks" -msgstr "Favoris de mes contacts" - -#: ../../Zotlabs/Module/Connect.php:61 ../../Zotlabs/Module/Connect.php:109 -msgid "Continue" -msgstr "Continuer" - -#: ../../Zotlabs/Module/Connect.php:90 -msgid "Premium Channel Setup" -msgstr "Configuration du canal VIP" - -#: ../../Zotlabs/Module/Connect.php:92 -msgid "Enable premium channel connection restrictions" -msgstr "Activer les restrictions liées au canal VIP" - -#: ../../Zotlabs/Module/Connect.php:93 -msgid "" -"Please enter your restrictions or conditions, such as paypal receipt, usage " -"guidelines, etc." -msgstr "Merci de saisir les restrictions et/ou conditions - reçu Paypal, transaction Bitcoin, ligne de conduite, ..." - -#: ../../Zotlabs/Module/Connect.php:95 ../../Zotlabs/Module/Connect.php:115 -msgid "" -"This channel may require additional steps or acknowledgement of the " -"following conditions prior to connecting:" -msgstr "Avant d'autoriser la mise en relation, ce canal attire votre attention sur les conditions suivantes :" - -#: ../../Zotlabs/Module/Connect.php:96 -msgid "" -"Potential connections will then see the following text before proceeding:" -msgstr "Les contacts potentiels verront ce qui suit avant de pouvoir continuer :" - -#: ../../Zotlabs/Module/Connect.php:97 ../../Zotlabs/Module/Connect.php:118 -msgid "" -"By continuing, I certify that I have complied with any instructions provided" -" on this page." -msgstr "En continuant, je certifie que je me suis conformé à toutes les instructions indiquées sur cette page." - -#: ../../Zotlabs/Module/Connect.php:106 -msgid "(No specific instructions have been provided by the channel owner.)" -msgstr "(Aucune instruction spécifique n'a été fournie par le propriétaire du canal.)" - -#: ../../Zotlabs/Module/Connect.php:114 -msgid "Restricted or Premium Channel" -msgstr "Canal VIP ou restreint" - #: ../../Zotlabs/Module/Connedit.php:80 msgid "Could not access contact record." msgstr "Impossible d'accéder aux détails du contact." @@ -561,317 +423,350 @@ msgstr "Impossible d'accéder aux détails du contact." msgid "Could not locate selected profile." msgstr "Impossible de localiser le profil sélectionné." -#: ../../Zotlabs/Module/Connedit.php:227 +#: ../../Zotlabs/Module/Connedit.php:248 msgid "Connection updated." msgstr "Contact mis à jour." -#: ../../Zotlabs/Module/Connedit.php:229 +#: ../../Zotlabs/Module/Connedit.php:250 msgid "Failed to update connection record." msgstr "Impossible de mettre à jour les détails du contact." -#: ../../Zotlabs/Module/Connedit.php:276 +#: ../../Zotlabs/Module/Connedit.php:300 msgid "is now connected to" msgstr "est maintenant connecté avec" -#: ../../Zotlabs/Module/Connedit.php:379 ../../Zotlabs/Module/Connedit.php:654 -#: ../../Zotlabs/Module/Events.php:459 ../../Zotlabs/Module/Events.php:460 -#: ../../Zotlabs/Module/Events.php:469 ../../Zotlabs/Module/Api.php:89 -#: ../../Zotlabs/Module/Filestorage.php:157 -#: ../../Zotlabs/Module/Filestorage.php:165 ../../Zotlabs/Module/Menu.php:100 -#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Mitem.php:158 -#: ../../Zotlabs/Module/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:232 -#: ../../Zotlabs/Module/Mitem.php:233 ../../Zotlabs/Module/Photos.php:666 -#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Admin.php:459 -#: ../../Zotlabs/Module/Removeme.php:61 ../../Zotlabs/Module/Settings.php:581 +#: ../../Zotlabs/Module/Connedit.php:403 ../../Zotlabs/Module/Connedit.php:685 +#: ../../Zotlabs/Module/Events.php:458 ../../Zotlabs/Module/Events.php:459 +#: ../../Zotlabs/Module/Events.php:468 +#: ../../Zotlabs/Module/Filestorage.php:156 +#: ../../Zotlabs/Module/Filestorage.php:164 +#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Photos.php:664 +#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 +#: ../../Zotlabs/Module/Mitem.php:158 ../../Zotlabs/Module/Mitem.php:159 +#: ../../Zotlabs/Module/Mitem.php:232 ../../Zotlabs/Module/Mitem.php:233 +#: ../../Zotlabs/Module/Admin.php:459 ../../Zotlabs/Module/Removeme.php:63 +#: ../../Zotlabs/Module/Settings.php:635 ../../Zotlabs/Module/Api.php:89 #: ../../include/dir_fns.php:143 ../../include/dir_fns.php:144 #: ../../include/dir_fns.php:145 ../../view/theme/redbasic/php/config.php:105 -#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1707 +#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1708 msgid "No" msgstr "Non" -#: ../../Zotlabs/Module/Connedit.php:379 ../../Zotlabs/Module/Events.php:459 -#: ../../Zotlabs/Module/Events.php:460 ../../Zotlabs/Module/Events.php:469 -#: ../../Zotlabs/Module/Api.php:88 ../../Zotlabs/Module/Filestorage.php:157 -#: ../../Zotlabs/Module/Filestorage.php:165 ../../Zotlabs/Module/Menu.php:100 -#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Mitem.php:158 -#: ../../Zotlabs/Module/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:232 -#: ../../Zotlabs/Module/Mitem.php:233 ../../Zotlabs/Module/Photos.php:666 -#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Admin.php:461 -#: ../../Zotlabs/Module/Removeme.php:61 ../../Zotlabs/Module/Settings.php:581 +#: ../../Zotlabs/Module/Connedit.php:403 ../../Zotlabs/Module/Events.php:458 +#: ../../Zotlabs/Module/Events.php:459 ../../Zotlabs/Module/Events.php:468 +#: ../../Zotlabs/Module/Filestorage.php:156 +#: ../../Zotlabs/Module/Filestorage.php:164 +#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Photos.php:664 +#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 +#: ../../Zotlabs/Module/Mitem.php:158 ../../Zotlabs/Module/Mitem.php:159 +#: ../../Zotlabs/Module/Mitem.php:232 ../../Zotlabs/Module/Mitem.php:233 +#: ../../Zotlabs/Module/Admin.php:461 ../../Zotlabs/Module/Removeme.php:63 +#: ../../Zotlabs/Module/Settings.php:635 ../../Zotlabs/Module/Api.php:88 #: ../../include/dir_fns.php:143 ../../include/dir_fns.php:144 #: ../../include/dir_fns.php:145 ../../view/theme/redbasic/php/config.php:105 -#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1707 +#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1708 msgid "Yes" msgstr "Oui" -#: ../../Zotlabs/Module/Connedit.php:411 +#: ../../Zotlabs/Module/Connedit.php:435 msgid "Could not access address book record." msgstr "Impossible d'accéder aux détails du carnet d'adresses." -#: ../../Zotlabs/Module/Connedit.php:425 +#: ../../Zotlabs/Module/Connedit.php:455 msgid "Refresh failed - channel is currently unavailable." msgstr "Actualisation impossible - le canal est indisponible." -#: ../../Zotlabs/Module/Connedit.php:440 ../../Zotlabs/Module/Connedit.php:449 -#: ../../Zotlabs/Module/Connedit.php:458 ../../Zotlabs/Module/Connedit.php:467 -#: ../../Zotlabs/Module/Connedit.php:480 +#: ../../Zotlabs/Module/Connedit.php:470 ../../Zotlabs/Module/Connedit.php:479 +#: ../../Zotlabs/Module/Connedit.php:488 ../../Zotlabs/Module/Connedit.php:497 +#: ../../Zotlabs/Module/Connedit.php:510 msgid "Unable to set address book parameters." msgstr "Impossible de régler les paramètres du carnet d'adresses." -#: ../../Zotlabs/Module/Connedit.php:503 +#: ../../Zotlabs/Module/Connedit.php:533 msgid "Connection has been removed." msgstr "Le contact a été supprimé." -#: ../../Zotlabs/Module/Connedit.php:519 ../../Zotlabs/Lib/Apps.php:219 -#: ../../include/nav.php:86 ../../include/conversation.php:954 +#: ../../Zotlabs/Module/Connedit.php:549 ../../Zotlabs/Lib/Apps.php:221 +#: ../../include/nav.php:86 ../../include/conversation.php:957 msgid "View Profile" msgstr "Voir le profil" -#: ../../Zotlabs/Module/Connedit.php:522 +#: ../../Zotlabs/Module/Connedit.php:552 #, php-format msgid "View %s's profile" msgstr "Voir le profil de %s" -#: ../../Zotlabs/Module/Connedit.php:526 +#: ../../Zotlabs/Module/Connedit.php:556 msgid "Refresh Permissions" msgstr "Actualiser les autorisations" -#: ../../Zotlabs/Module/Connedit.php:529 +#: ../../Zotlabs/Module/Connedit.php:559 msgid "Fetch updated permissions" msgstr "Récupérer les autorisations les plus récentes" -#: ../../Zotlabs/Module/Connedit.php:533 +#: ../../Zotlabs/Module/Connedit.php:563 msgid "Recent Activity" msgstr "Activité récente" -#: ../../Zotlabs/Module/Connedit.php:536 +#: ../../Zotlabs/Module/Connedit.php:566 msgid "View recent posts and comments" msgstr "Voir les publications et commentaires récents" -#: ../../Zotlabs/Module/Connedit.php:540 ../../Zotlabs/Module/Admin.php:1041 +#: ../../Zotlabs/Module/Connedit.php:570 ../../Zotlabs/Module/Admin.php:1041 msgid "Unblock" msgstr "Débloquer" -#: ../../Zotlabs/Module/Connedit.php:540 ../../Zotlabs/Module/Admin.php:1040 +#: ../../Zotlabs/Module/Connedit.php:570 ../../Zotlabs/Module/Admin.php:1040 msgid "Block" msgstr "Bloquer" -#: ../../Zotlabs/Module/Connedit.php:543 +#: ../../Zotlabs/Module/Connedit.php:573 msgid "Block (or Unblock) all communications with this connection" msgstr "Bloquer ou débloquer toute communication avec ce contact" -#: ../../Zotlabs/Module/Connedit.php:544 +#: ../../Zotlabs/Module/Connedit.php:574 msgid "This connection is blocked!" msgstr "Ce contact est bloqué !" -#: ../../Zotlabs/Module/Connedit.php:548 +#: ../../Zotlabs/Module/Connedit.php:578 msgid "Unignore" msgstr "Ne plus ignorer" -#: ../../Zotlabs/Module/Connedit.php:548 +#: ../../Zotlabs/Module/Connedit.php:578 #: ../../Zotlabs/Module/Connections.php:277 #: ../../Zotlabs/Module/Notifications.php:55 msgid "Ignore" msgstr "Ignorer" -#: ../../Zotlabs/Module/Connedit.php:551 +#: ../../Zotlabs/Module/Connedit.php:581 msgid "Ignore (or Unignore) all inbound communications from this connection" msgstr "Ignorer ou ne plus ignorer toute communication venant de ce contact" -#: ../../Zotlabs/Module/Connedit.php:552 +#: ../../Zotlabs/Module/Connedit.php:582 msgid "This connection is ignored!" msgstr "Ce contact est ignoré !" -#: ../../Zotlabs/Module/Connedit.php:556 +#: ../../Zotlabs/Module/Connedit.php:586 msgid "Unarchive" msgstr "Désarchiver" -#: ../../Zotlabs/Module/Connedit.php:556 +#: ../../Zotlabs/Module/Connedit.php:586 msgid "Archive" msgstr "Archiver" -#: ../../Zotlabs/Module/Connedit.php:559 +#: ../../Zotlabs/Module/Connedit.php:589 msgid "" "Archive (or Unarchive) this connection - mark channel dead but keep content" msgstr "Archiver ou désarchiver ce contact - le marquer comme inactif mais conserver le contenu" -#: ../../Zotlabs/Module/Connedit.php:560 +#: ../../Zotlabs/Module/Connedit.php:590 msgid "This connection is archived!" msgstr "Ce contact est archivé !" -#: ../../Zotlabs/Module/Connedit.php:564 +#: ../../Zotlabs/Module/Connedit.php:594 msgid "Unhide" msgstr "Ne plus cacher" -#: ../../Zotlabs/Module/Connedit.php:564 +#: ../../Zotlabs/Module/Connedit.php:594 msgid "Hide" msgstr "Cacher" -#: ../../Zotlabs/Module/Connedit.php:567 +#: ../../Zotlabs/Module/Connedit.php:597 msgid "Hide or Unhide this connection from your other connections" msgstr "Cacher ou ne plus cacher ce contact vis-à-vis de vos autres contacts" -#: ../../Zotlabs/Module/Connedit.php:568 +#: ../../Zotlabs/Module/Connedit.php:598 msgid "This connection is hidden!" msgstr "Ce contact est caché !" -#: ../../Zotlabs/Module/Connedit.php:575 +#: ../../Zotlabs/Module/Connedit.php:605 msgid "Delete this connection" msgstr "Supprimer ce contact" -#: ../../Zotlabs/Module/Connedit.php:590 ../../include/widgets.php:493 +#: ../../Zotlabs/Module/Connedit.php:620 ../../include/widgets.php:493 msgid "Me" msgstr "Moi" -#: ../../Zotlabs/Module/Connedit.php:591 ../../include/widgets.php:494 +#: ../../Zotlabs/Module/Connedit.php:621 ../../include/widgets.php:494 msgid "Family" msgstr "Famille" -#: ../../Zotlabs/Module/Connedit.php:592 ../../Zotlabs/Module/Settings.php:342 -#: ../../Zotlabs/Module/Settings.php:346 ../../Zotlabs/Module/Settings.php:347 -#: ../../Zotlabs/Module/Settings.php:350 ../../Zotlabs/Module/Settings.php:361 -#: ../../include/widgets.php:495 ../../include/selectors.php:123 -#: ../../include/channel.php:389 ../../include/channel.php:390 -#: ../../include/channel.php:397 +#: ../../Zotlabs/Module/Connedit.php:622 ../../Zotlabs/Module/Settings.php:391 +#: ../../Zotlabs/Module/Settings.php:395 ../../Zotlabs/Module/Settings.php:396 +#: ../../Zotlabs/Module/Settings.php:399 ../../Zotlabs/Module/Settings.php:410 +#: ../../include/channel.php:402 ../../include/channel.php:403 +#: ../../include/channel.php:410 ../../include/selectors.php:123 +#: ../../include/widgets.php:495 msgid "Friends" msgstr "Amis" -#: ../../Zotlabs/Module/Connedit.php:593 ../../include/widgets.php:496 +#: ../../Zotlabs/Module/Connedit.php:623 ../../include/widgets.php:496 msgid "Acquaintances" msgstr "Connaissances" -#: ../../Zotlabs/Module/Connedit.php:594 +#: ../../Zotlabs/Module/Connedit.php:624 #: ../../Zotlabs/Module/Connections.php:92 #: ../../Zotlabs/Module/Connections.php:107 ../../include/widgets.php:497 msgid "All" msgstr "Tous" -#: ../../Zotlabs/Module/Connedit.php:654 +#: ../../Zotlabs/Module/Connedit.php:685 msgid "Approve this connection" msgstr "Autoriser ce contact" -#: ../../Zotlabs/Module/Connedit.php:654 +#: ../../Zotlabs/Module/Connedit.php:685 msgid "Accept connection to allow communication" msgstr "Accepter le contact pour permettre la communication" -#: ../../Zotlabs/Module/Connedit.php:659 +#: ../../Zotlabs/Module/Connedit.php:690 msgid "Set Affinity" msgstr "Définir le degré d'affinité" -#: ../../Zotlabs/Module/Connedit.php:662 +#: ../../Zotlabs/Module/Connedit.php:693 msgid "Set Profile" msgstr "Définir le profil" -#: ../../Zotlabs/Module/Connedit.php:665 +#: ../../Zotlabs/Module/Connedit.php:696 msgid "Set Affinity & Profile" msgstr "Définir le degré d'affinité et le profil" -#: ../../Zotlabs/Module/Connedit.php:698 +#: ../../Zotlabs/Module/Connedit.php:745 msgid "none" msgstr "Aucun" -#: ../../Zotlabs/Module/Connedit.php:702 ../../include/widgets.php:614 +#: ../../Zotlabs/Module/Connedit.php:749 ../../include/widgets.php:623 msgid "Connection Default Permissions" msgstr "Autorisations par défaut des contacts" -#: ../../Zotlabs/Module/Connedit.php:702 ../../include/items.php:3926 +#: ../../Zotlabs/Module/Connedit.php:749 ../../include/items.php:3935 #, php-format msgid "Connection: %s" msgstr "Contact : %s" -#: ../../Zotlabs/Module/Connedit.php:703 +#: ../../Zotlabs/Module/Connedit.php:750 msgid "Apply these permissions automatically" msgstr "Appliquer ces permissions automatiquement" -#: ../../Zotlabs/Module/Connedit.php:703 +#: ../../Zotlabs/Module/Connedit.php:750 msgid "Connection requests will be approved without your interaction" msgstr "Les demandes de contact seront approuvées automatiquement" -#: ../../Zotlabs/Module/Connedit.php:705 +#: ../../Zotlabs/Module/Connedit.php:752 msgid "This connection's primary address is" msgstr "L'adresse principale de ce contact est" -#: ../../Zotlabs/Module/Connedit.php:706 +#: ../../Zotlabs/Module/Connedit.php:753 msgid "Available locations:" msgstr "Emplacements disponibles :" -#: ../../Zotlabs/Module/Connedit.php:710 +#: ../../Zotlabs/Module/Connedit.php:757 msgid "" "The permissions indicated on this page will be applied to all new " "connections." msgstr "Les permissions indiquées sur cette page seront appliquées à tous vos nouveaux contacts." -#: ../../Zotlabs/Module/Connedit.php:711 +#: ../../Zotlabs/Module/Connedit.php:758 msgid "Connection Tools" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:713 +#: ../../Zotlabs/Module/Connedit.php:760 msgid "Slide to adjust your degree of friendship" msgstr "Faites glisser pour ajuster votre proximité avec le contact" -#: ../../Zotlabs/Module/Connedit.php:714 ../../Zotlabs/Module/Rate.php:159 +#: ../../Zotlabs/Module/Connedit.php:761 ../../Zotlabs/Module/Rate.php:159 #: ../../include/js_strings.php:20 msgid "Rating" msgstr "Evaluation" -#: ../../Zotlabs/Module/Connedit.php:715 +#: ../../Zotlabs/Module/Connedit.php:762 msgid "Slide to adjust your rating" msgstr "Faîtes glisser pour ajuster votre note" -#: ../../Zotlabs/Module/Connedit.php:716 ../../Zotlabs/Module/Connedit.php:721 +#: ../../Zotlabs/Module/Connedit.php:763 ../../Zotlabs/Module/Connedit.php:768 msgid "Optionally explain your rating" msgstr "Explication facultative de votre évaluation" -#: ../../Zotlabs/Module/Connedit.php:718 +#: ../../Zotlabs/Module/Connedit.php:765 msgid "Custom Filter" msgstr "Filtre personnalisé" -#: ../../Zotlabs/Module/Connedit.php:719 +#: ../../Zotlabs/Module/Connedit.php:766 msgid "Only import posts with this text" msgstr "N'importer que les publications comprenant ce texte" -#: ../../Zotlabs/Module/Connedit.php:719 ../../Zotlabs/Module/Connedit.php:720 +#: ../../Zotlabs/Module/Connedit.php:766 ../../Zotlabs/Module/Connedit.php:767 msgid "" "words one per line or #tags or /patterns/ or lang=xx, leave blank to import " "all posts" msgstr "un mot par ligne ou #étiquettes ou /motif/ ou lang=xx, laisser vide pour importer toutes les publications" -#: ../../Zotlabs/Module/Connedit.php:720 +#: ../../Zotlabs/Module/Connedit.php:767 msgid "Do not import posts with this text" msgstr "Ne pas importer les publications comprenant ce texte" -#: ../../Zotlabs/Module/Connedit.php:722 +#: ../../Zotlabs/Module/Connedit.php:769 msgid "This information is public!" msgstr "Cette information est publique !" -#: ../../Zotlabs/Module/Connedit.php:727 +#: ../../Zotlabs/Module/Connedit.php:774 msgid "Connection Pending Approval" msgstr "Contact en attente d'approbation" -#: ../../Zotlabs/Module/Connedit.php:730 +#: ../../Zotlabs/Module/Connedit.php:777 msgid "inherited" msgstr "héritée" -#: ../../Zotlabs/Module/Connedit.php:732 +#: ../../Zotlabs/Module/Connedit.php:778 ../../Zotlabs/Module/Connect.php:98 +#: ../../Zotlabs/Module/Events.php:474 ../../Zotlabs/Module/Cal.php:338 +#: ../../Zotlabs/Module/Chat.php:196 ../../Zotlabs/Module/Chat.php:238 +#: ../../Zotlabs/Module/Group.php:85 ../../Zotlabs/Module/Appman.php:126 +#: ../../Zotlabs/Module/Pdledit.php:66 +#: ../../Zotlabs/Module/Filestorage.php:161 +#: ../../Zotlabs/Module/Profiles.php:687 ../../Zotlabs/Module/Import.php:560 +#: ../../Zotlabs/Module/Photos.php:675 ../../Zotlabs/Module/Photos.php:1050 +#: ../../Zotlabs/Module/Photos.php:1090 ../../Zotlabs/Module/Photos.php:1208 +#: ../../Zotlabs/Module/Import_items.php:122 +#: ../../Zotlabs/Module/Invite.php:146 ../../Zotlabs/Module/Locs.php:121 +#: ../../Zotlabs/Module/Mail.php:370 ../../Zotlabs/Module/Mood.php:139 +#: ../../Zotlabs/Module/Mitem.php:235 ../../Zotlabs/Module/Admin.php:492 +#: ../../Zotlabs/Module/Admin.php:688 ../../Zotlabs/Module/Admin.php:771 +#: ../../Zotlabs/Module/Admin.php:1032 ../../Zotlabs/Module/Admin.php:1211 +#: ../../Zotlabs/Module/Admin.php:1421 ../../Zotlabs/Module/Admin.php:1648 +#: ../../Zotlabs/Module/Admin.php:1733 ../../Zotlabs/Module/Admin.php:2116 +#: ../../Zotlabs/Module/Poke.php:186 ../../Zotlabs/Module/Pconfig.php:107 +#: ../../Zotlabs/Module/Rate.php:170 ../../Zotlabs/Module/Settings.php:644 +#: ../../Zotlabs/Module/Settings.php:757 ../../Zotlabs/Module/Settings.php:806 +#: ../../Zotlabs/Module/Settings.php:832 ../../Zotlabs/Module/Settings.php:855 +#: ../../Zotlabs/Module/Settings.php:943 +#: ../../Zotlabs/Module/Settings.php:1129 ../../Zotlabs/Module/Setup.php:312 +#: ../../Zotlabs/Module/Setup.php:353 ../../Zotlabs/Module/Thing.php:316 +#: ../../Zotlabs/Module/Thing.php:362 ../../Zotlabs/Module/Sources.php:114 +#: ../../Zotlabs/Module/Sources.php:149 ../../Zotlabs/Module/Xchan.php:15 +#: ../../Zotlabs/Lib/ThreadItem.php:710 ../../include/widgets.php:763 +#: ../../include/js_strings.php:22 ../../view/theme/redbasic/php/config.php:99 +msgid "Submit" +msgstr "Envoyer" + +#: ../../Zotlabs/Module/Connedit.php:779 #, php-format msgid "" "Please choose the profile you would like to display to %s when viewing your " "profile securely." msgstr "Merci de choisir le profil que vous souhaitez montrer quand %s visite votre profil de manière authentifiée." -#: ../../Zotlabs/Module/Connedit.php:734 +#: ../../Zotlabs/Module/Connedit.php:781 msgid "Their Settings" msgstr "Leurs paramètres" -#: ../../Zotlabs/Module/Connedit.php:735 +#: ../../Zotlabs/Module/Connedit.php:782 msgid "My Settings" msgstr "Mes paramètres" -#: ../../Zotlabs/Module/Connedit.php:737 +#: ../../Zotlabs/Module/Connedit.php:784 msgid "Individual Permissions" msgstr "Permissions individuelles" -#: ../../Zotlabs/Module/Connedit.php:738 +#: ../../Zotlabs/Module/Connedit.php:785 msgid "" "Some permissions may be inherited from your channel's privacy settings, which have higher " @@ -879,7 +774,7 @@ msgid "" " settings here." msgstr "Certaines permissions peuvent être héritées de vos paramètres de confidentialité de canal, lesquels sont prioritaires sur les réglages individuels. Vous pouvez modifier ces permissions ici mais cela n'aura aucun effet à moins de changer les paramètres hérités." -#: ../../Zotlabs/Module/Connedit.php:739 +#: ../../Zotlabs/Module/Connedit.php:786 msgid "" "Some permissions may be inherited from your channel's privacy settings, which have higher " @@ -887,17 +782,121 @@ msgid "" "they wont have any impact unless the inherited setting changes." msgstr "Certaines permissions peuvent être héritées de vos paramètres de confidentialité de canal, lesquels sont prioritaires sur les réglages individuels. Vous pouvez modifier ces permissions ici mais cela n'aura aucun effet à moins de changer les paramètres hérités." -#: ../../Zotlabs/Module/Connedit.php:740 +#: ../../Zotlabs/Module/Connedit.php:787 msgid "Last update:" msgstr "Dernière mise à jour :" -#: ../../Zotlabs/Module/Directory.php:63 ../../Zotlabs/Module/Display.php:17 -#: ../../Zotlabs/Module/Photos.php:522 ../../Zotlabs/Module/Ratings.php:86 +#: ../../Zotlabs/Module/Display.php:17 ../../Zotlabs/Module/Directory.php:63 +#: ../../Zotlabs/Module/Photos.php:520 ../../Zotlabs/Module/Ratings.php:86 #: ../../Zotlabs/Module/Search.php:17 -#: ../../Zotlabs/Module/Viewconnections.php:20 +#: ../../Zotlabs/Module/Viewconnections.php:23 msgid "Public access denied." msgstr "Accès public refusé." +#: ../../Zotlabs/Module/Display.php:40 ../../Zotlabs/Module/Filestorage.php:32 +#: ../../Zotlabs/Module/Admin.php:164 ../../Zotlabs/Module/Admin.php:1255 +#: ../../Zotlabs/Module/Admin.php:1561 ../../Zotlabs/Module/Thing.php:89 +#: ../../Zotlabs/Module/Viewsrc.php:24 ../../include/items.php:3369 +msgid "Item not found." +msgstr "Élément introuvable" + +#: ../../Zotlabs/Module/Id.php:13 +msgid "First Name" +msgstr "Prénom" + +#: ../../Zotlabs/Module/Id.php:14 +msgid "Last Name" +msgstr "Nom de famille" + +#: ../../Zotlabs/Module/Id.php:15 +msgid "Nickname" +msgstr "Surnom" + +#: ../../Zotlabs/Module/Id.php:16 +msgid "Full Name" +msgstr "Nom complet" + +#: ../../Zotlabs/Module/Id.php:17 ../../Zotlabs/Module/Id.php:18 +#: ../../Zotlabs/Module/Admin.php:1035 ../../Zotlabs/Module/Admin.php:1047 +#: ../../include/network.php:2203 +msgid "Email" +msgstr "Courriel" + +#: ../../Zotlabs/Module/Id.php:19 ../../Zotlabs/Module/Id.php:20 +#: ../../Zotlabs/Module/Id.php:21 ../../Zotlabs/Lib/Apps.php:238 +msgid "Profile Photo" +msgstr "Photo du Profil" + +#: ../../Zotlabs/Module/Id.php:22 +msgid "Profile Photo 16px" +msgstr "Photo de profil 16px" + +#: ../../Zotlabs/Module/Id.php:23 +msgid "Profile Photo 32px" +msgstr "Photo de profil 32px" + +#: ../../Zotlabs/Module/Id.php:24 +msgid "Profile Photo 48px" +msgstr "Photo de profil 48px" + +#: ../../Zotlabs/Module/Id.php:25 +msgid "Profile Photo 64px" +msgstr "Photo de profil 64px" + +#: ../../Zotlabs/Module/Id.php:26 +msgid "Profile Photo 80px" +msgstr "Photo de profil 80px" + +#: ../../Zotlabs/Module/Id.php:27 +msgid "Profile Photo 128px" +msgstr "Photo de profil 128px" + +#: ../../Zotlabs/Module/Id.php:28 +msgid "Timezone" +msgstr "Fuseau horaire" + +#: ../../Zotlabs/Module/Id.php:29 ../../Zotlabs/Module/Profiles.php:731 +msgid "Homepage URL" +msgstr "URL de mon site Internet :" + +#: ../../Zotlabs/Module/Id.php:30 ../../Zotlabs/Lib/Apps.php:236 +msgid "Language" +msgstr "Langue" + +#: ../../Zotlabs/Module/Id.php:31 +msgid "Birth Year" +msgstr "Année de naissance" + +#: ../../Zotlabs/Module/Id.php:32 +msgid "Birth Month" +msgstr "Mois de naissance" + +#: ../../Zotlabs/Module/Id.php:33 +msgid "Birth Day" +msgstr "Jour de naissance" + +#: ../../Zotlabs/Module/Id.php:34 +msgid "Birthdate" +msgstr "Date de naissance" + +#: ../../Zotlabs/Module/Id.php:35 ../../Zotlabs/Module/Profiles.php:454 +msgid "Gender" +msgstr "Sexe" + +#: ../../Zotlabs/Module/Id.php:108 ../../include/selectors.php:49 +#: ../../include/selectors.php:66 +msgid "Male" +msgstr "Homme" + +#: ../../Zotlabs/Module/Id.php:110 ../../include/selectors.php:49 +#: ../../include/selectors.php:66 +msgid "Female" +msgstr "Femme" + +#: ../../Zotlabs/Module/Follow.php:34 +msgid "Channel added." +msgstr "Canal ajouté." + #: ../../Zotlabs/Module/Directory.php:243 #, php-format msgid "%d rating" @@ -917,12 +916,12 @@ msgstr "État :" msgid "Homepage: " msgstr "Site web :" -#: ../../Zotlabs/Module/Directory.php:306 ../../include/channel.php:1183 +#: ../../Zotlabs/Module/Directory.php:306 ../../include/channel.php:1223 msgid "Age:" msgstr "Age :" -#: ../../Zotlabs/Module/Directory.php:311 ../../include/event.php:52 -#: ../../include/event.php:84 ../../include/channel.php:1027 +#: ../../Zotlabs/Module/Directory.php:311 ../../include/channel.php:1066 +#: ../../include/event.php:52 ../../include/event.php:84 #: ../../include/bb2diaspora.php:507 msgid "Location:" msgstr "Emplacement :" @@ -931,18 +930,18 @@ msgstr "Emplacement :" msgid "Description:" msgstr "Description :" -#: ../../Zotlabs/Module/Directory.php:322 ../../include/channel.php:1199 +#: ../../Zotlabs/Module/Directory.php:322 ../../include/channel.php:1239 msgid "Hometown:" msgstr "Ville natale :" -#: ../../Zotlabs/Module/Directory.php:324 ../../include/channel.php:1207 +#: ../../Zotlabs/Module/Directory.php:324 ../../include/channel.php:1247 msgid "About:" msgstr "À propos :" #: ../../Zotlabs/Module/Directory.php:325 ../../Zotlabs/Module/Match.php:68 -#: ../../Zotlabs/Module/Suggest.php:56 ../../include/widgets.php:147 -#: ../../include/widgets.php:184 ../../include/connections.php:78 -#: ../../include/conversation.php:956 ../../include/channel.php:1012 +#: ../../Zotlabs/Module/Suggest.php:56 ../../include/channel.php:1051 +#: ../../include/connections.php:78 ../../include/conversation.php:959 +#: ../../include/widgets.php:147 ../../include/widgets.php:184 msgid "Connect" msgstr "Ajouter/Suivre" @@ -1018,38 +1017,322 @@ msgstr "Du moins récent du plus récent" msgid "No entries (some entries may be hidden)." msgstr "Pas d'entrées (certaines peuvent être cachées)." -#: ../../Zotlabs/Module/Display.php:40 ../../Zotlabs/Module/Filestorage.php:33 -#: ../../Zotlabs/Module/Admin.php:164 ../../Zotlabs/Module/Admin.php:1255 -#: ../../Zotlabs/Module/Admin.php:1561 ../../Zotlabs/Module/Thing.php:89 -#: ../../Zotlabs/Module/Viewsrc.php:24 ../../include/items.php:3359 -msgid "Item not found." -msgstr "Élément introuvable" +#: ../../Zotlabs/Module/Connect.php:61 ../../Zotlabs/Module/Connect.php:109 +msgid "Continue" +msgstr "Continuer" + +#: ../../Zotlabs/Module/Connect.php:90 +msgid "Premium Channel Setup" +msgstr "Configuration du canal VIP" + +#: ../../Zotlabs/Module/Connect.php:92 +msgid "Enable premium channel connection restrictions" +msgstr "Activer les restrictions liées au canal VIP" + +#: ../../Zotlabs/Module/Connect.php:93 +msgid "" +"Please enter your restrictions or conditions, such as paypal receipt, usage " +"guidelines, etc." +msgstr "Merci de saisir les restrictions et/ou conditions - reçu Paypal, transaction Bitcoin, ligne de conduite, ..." + +#: ../../Zotlabs/Module/Connect.php:95 ../../Zotlabs/Module/Connect.php:115 +msgid "" +"This channel may require additional steps or acknowledgement of the " +"following conditions prior to connecting:" +msgstr "Avant d'autoriser la mise en relation, ce canal attire votre attention sur les conditions suivantes :" + +#: ../../Zotlabs/Module/Connect.php:96 +msgid "" +"Potential connections will then see the following text before proceeding:" +msgstr "Les contacts potentiels verront ce qui suit avant de pouvoir continuer :" + +#: ../../Zotlabs/Module/Connect.php:97 ../../Zotlabs/Module/Connect.php:118 +msgid "" +"By continuing, I certify that I have complied with any instructions provided" +" on this page." +msgstr "En continuant, je certifie que je me suis conformé à toutes les instructions indiquées sur cette page." + +#: ../../Zotlabs/Module/Connect.php:106 +msgid "(No specific instructions have been provided by the channel owner.)" +msgstr "(Aucune instruction spécifique n'a été fournie par le propriétaire du canal.)" + +#: ../../Zotlabs/Module/Connect.php:114 +msgid "Restricted or Premium Channel" +msgstr "Canal VIP ou restreint" + +#: ../../Zotlabs/Module/Events.php:25 +msgid "Calendar entries imported." +msgstr "Entrées du calendrier importées." + +#: ../../Zotlabs/Module/Events.php:27 +msgid "No calendar entries found." +msgstr "Aucune entrée du calendrier trouvée." + +#: ../../Zotlabs/Module/Events.php:104 +msgid "Event can not end before it has started." +msgstr "La fin de l'événement ne peut être antérieure à son début." + +#: ../../Zotlabs/Module/Events.php:106 ../../Zotlabs/Module/Events.php:115 +#: ../../Zotlabs/Module/Events.php:135 +msgid "Unable to generate preview." +msgstr "Impossible de générer l'aperçu." + +#: ../../Zotlabs/Module/Events.php:113 +msgid "Event title and start time are required." +msgstr "Un titre et une date de début sont requises pour l'événement." + +#: ../../Zotlabs/Module/Events.php:133 ../../Zotlabs/Module/Events.php:258 +msgid "Event not found." +msgstr "Événement introuvable." + +#: ../../Zotlabs/Module/Events.php:253 ../../Zotlabs/Module/Like.php:372 +#: ../../Zotlabs/Module/Tagger.php:51 ../../include/conversation.php:123 +#: ../../include/text.php:1924 ../../include/event.php:951 +msgid "event" +msgstr "événement" + +#: ../../Zotlabs/Module/Events.php:448 +msgid "Edit event title" +msgstr "Modifier le titre de l'événement" + +#: ../../Zotlabs/Module/Events.php:448 +msgid "Event title" +msgstr "Titre de l'événement" + +#: ../../Zotlabs/Module/Events.php:448 ../../Zotlabs/Module/Events.php:453 +#: ../../Zotlabs/Module/Appman.php:115 ../../Zotlabs/Module/Appman.php:116 +#: ../../Zotlabs/Module/Profiles.php:709 ../../Zotlabs/Module/Profiles.php:713 +#: ../../include/datetime.php:245 +msgid "Required" +msgstr "Requis" + +#: ../../Zotlabs/Module/Events.php:450 +msgid "Categories (comma-separated list)" +msgstr "Catégories (séparées par des virgules)" + +#: ../../Zotlabs/Module/Events.php:451 +msgid "Edit Category" +msgstr "Modifier la catégorie" + +#: ../../Zotlabs/Module/Events.php:451 +msgid "Category" +msgstr "Catégorie" + +#: ../../Zotlabs/Module/Events.php:454 +msgid "Edit start date and time" +msgstr "Modifier la date et l'heure de début" + +#: ../../Zotlabs/Module/Events.php:454 +msgid "Start date and time" +msgstr "Date et heure de début" + +#: ../../Zotlabs/Module/Events.php:455 ../../Zotlabs/Module/Events.php:458 +msgid "Finish date and time are not known or not relevant" +msgstr "Date et heure de fin inconnues ou sans objet" + +#: ../../Zotlabs/Module/Events.php:457 +msgid "Edit finish date and time" +msgstr "Modifier la date et l'heure de fin" + +#: ../../Zotlabs/Module/Events.php:457 +msgid "Finish date and time" +msgstr "Date et heure de fin" + +#: ../../Zotlabs/Module/Events.php:459 ../../Zotlabs/Module/Events.php:460 +msgid "Adjust for viewer timezone" +msgstr "Ajuster au fuseau horaire du visiteur" + +#: ../../Zotlabs/Module/Events.php:459 +msgid "" +"Important for events that happen in a particular place. Not practical for " +"global holidays." +msgstr "Important pour les événements se tenant en un lieu particulier. Pas pratique pour les vacances communes à de nombreux pays dans le monde." + +#: ../../Zotlabs/Module/Events.php:461 +msgid "Edit Description" +msgstr "Modifier la description" + +#: ../../Zotlabs/Module/Events.php:461 ../../Zotlabs/Module/Appman.php:117 +#: ../../Zotlabs/Module/Rbmark.php:101 +msgid "Description" +msgstr "Description" + +#: ../../Zotlabs/Module/Events.php:463 +msgid "Edit Location" +msgstr "Modifier l'emplacement" + +#: ../../Zotlabs/Module/Events.php:463 ../../Zotlabs/Module/Profiles.php:477 +#: ../../Zotlabs/Module/Profiles.php:698 ../../Zotlabs/Module/Locs.php:117 +#: ../../Zotlabs/Module/Pubsites.php:41 ../../include/js_strings.php:25 +msgid "Location" +msgstr "Emplacement" + +#: ../../Zotlabs/Module/Events.php:466 ../../Zotlabs/Module/Events.php:468 +msgid "Share this event" +msgstr "Partager cet événement" + +#: ../../Zotlabs/Module/Events.php:469 ../../Zotlabs/Module/Photos.php:1091 +#: ../../Zotlabs/Module/Webpages.php:201 ../../Zotlabs/Lib/ThreadItem.php:719 +#: ../../include/page_widgets.php:43 ../../include/conversation.php:1198 +msgid "Preview" +msgstr "Aperçu" + +#: ../../Zotlabs/Module/Events.php:470 ../../include/conversation.php:1247 +msgid "Permission settings" +msgstr "Gérer les autorisations" + +#: ../../Zotlabs/Module/Events.php:475 +msgid "Advanced Options" +msgstr "Options avancées" + +#: ../../Zotlabs/Module/Events.php:587 ../../Zotlabs/Module/Cal.php:259 +msgid "l, F j" +msgstr "l, F j" + +#: ../../Zotlabs/Module/Events.php:609 +msgid "Edit event" +msgstr "Modifier l'événement" + +#: ../../Zotlabs/Module/Events.php:611 +msgid "Delete event" +msgstr "Supprimer l'événement" + +#: ../../Zotlabs/Module/Events.php:636 ../../Zotlabs/Module/Cal.php:308 +#: ../../include/text.php:1712 +msgid "Link to Source" +msgstr "Lien vers la Source" + +#: ../../Zotlabs/Module/Events.php:645 +msgid "calendar" +msgstr "calendrier" + +#: ../../Zotlabs/Module/Events.php:664 ../../Zotlabs/Module/Cal.php:331 +msgid "Edit Event" +msgstr "Modifier l'événement" + +#: ../../Zotlabs/Module/Events.php:664 ../../Zotlabs/Module/Cal.php:331 +msgid "Create Event" +msgstr "Créer un événement" + +#: ../../Zotlabs/Module/Events.php:665 ../../Zotlabs/Module/Events.php:674 +#: ../../Zotlabs/Module/Cal.php:332 ../../Zotlabs/Module/Cal.php:339 +#: ../../Zotlabs/Module/Photos.php:947 +msgid "Previous" +msgstr "Précédent" + +#: ../../Zotlabs/Module/Events.php:666 ../../Zotlabs/Module/Events.php:675 +#: ../../Zotlabs/Module/Cal.php:333 ../../Zotlabs/Module/Cal.php:340 +#: ../../Zotlabs/Module/Photos.php:956 ../../Zotlabs/Module/Setup.php:267 +msgid "Next" +msgstr "Suivant" + +#: ../../Zotlabs/Module/Events.php:667 ../../Zotlabs/Module/Cal.php:334 +msgid "Export" +msgstr "Export" + +#: ../../Zotlabs/Module/Events.php:670 ../../Zotlabs/Module/Layouts.php:197 +#: ../../Zotlabs/Module/Pubsites.php:47 ../../Zotlabs/Module/Blocks.php:166 +#: ../../Zotlabs/Module/Webpages.php:200 ../../include/page_widgets.php:42 +msgid "View" +msgstr "Voir" + +#: ../../Zotlabs/Module/Events.php:671 +msgid "Month" +msgstr "" + +#: ../../Zotlabs/Module/Events.php:672 +msgid "Week" +msgstr "" + +#: ../../Zotlabs/Module/Events.php:673 +msgid "Day" +msgstr "" + +#: ../../Zotlabs/Module/Events.php:676 ../../Zotlabs/Module/Cal.php:341 +msgid "Today" +msgstr "Aujourd'hui" + +#: ../../Zotlabs/Module/Events.php:707 +msgid "Event removed" +msgstr "Événement supprimé" + +#: ../../Zotlabs/Module/Events.php:710 +msgid "Failed to remove event" +msgstr "Impossible de supprimer l'événement" + +#: ../../Zotlabs/Module/Bookmarks.php:53 +msgid "Bookmark added" +msgstr "Favori ajouté" + +#: ../../Zotlabs/Module/Bookmarks.php:75 +msgid "My Bookmarks" +msgstr "Mes Favoris" + +#: ../../Zotlabs/Module/Bookmarks.php:86 +msgid "My Connections Bookmarks" +msgstr "Favoris de mes contacts" -#: ../../Zotlabs/Module/Editblock.php:79 ../../Zotlabs/Module/Editblock.php:95 #: ../../Zotlabs/Module/Editpost.php:24 ../../Zotlabs/Module/Editlayout.php:79 -#: ../../Zotlabs/Module/Editwebpage.php:81 +#: ../../Zotlabs/Module/Editwebpage.php:80 +#: ../../Zotlabs/Module/Editblock.php:79 ../../Zotlabs/Module/Editblock.php:95 msgid "Item not found" msgstr "Élément introuvable" -#: ../../Zotlabs/Module/Editblock.php:124 ../../include/conversation.php:1228 -msgid "Title (optional)" -msgstr "Titre (facultatif)" +#: ../../Zotlabs/Module/Editpost.php:35 +msgid "Item is not editable" +msgstr "Elément non modifiable" -#: ../../Zotlabs/Module/Editblock.php:133 -msgid "Edit Block" -msgstr "Modifier le bloc" +#: ../../Zotlabs/Module/Editpost.php:106 ../../Zotlabs/Module/Rpost.php:134 +msgid "Edit post" +msgstr "Modifier la publication" -#: ../../Zotlabs/Module/Common.php:14 -msgid "No channel." -msgstr "Pas de canal." +#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:222 +#: ../../include/nav.php:92 ../../include/conversation.php:1647 +msgid "Photos" +msgstr "Photos" -#: ../../Zotlabs/Module/Common.php:43 -msgid "Common connections" -msgstr "Contacts en commun" +#: ../../Zotlabs/Module/Fbrowser.php:66 ../../Zotlabs/Module/Fbrowser.php:88 +#: ../../Zotlabs/Module/Admin.php:1406 ../../Zotlabs/Module/Settings.php:645 +#: ../../Zotlabs/Module/Settings.php:671 ../../Zotlabs/Module/Tagrm.php:15 +#: ../../Zotlabs/Module/Tagrm.php:138 ../../Zotlabs/Module/Wiki.php:166 +#: ../../Zotlabs/Module/Wiki.php:202 ../../include/conversation.php:1235 +#: ../../include/conversation.php:1274 +msgid "Cancel" +msgstr "Annuler" -#: ../../Zotlabs/Module/Common.php:48 -msgid "No connections in common." -msgstr "Pas de contacts en commun." +#: ../../Zotlabs/Module/Page.php:40 ../../Zotlabs/Module/Block.php:31 +msgid "Invalid item." +msgstr "Élément invalide." + +#: ../../Zotlabs/Module/Page.php:56 ../../Zotlabs/Module/Cal.php:62 +#: ../../Zotlabs/Module/Block.php:43 ../../Zotlabs/Module/Wall_upload.php:33 +msgid "Channel not found." +msgstr "Canal introuvable." + +#: ../../Zotlabs/Module/Page.php:131 +msgid "" +"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod " +"tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam," +" quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo " +"consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse " +"cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat " +"non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." +msgstr "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." + +#: ../../Zotlabs/Module/Filer.php:52 +msgid "Save to Folder:" +msgstr "Classer dans le dossier :" + +#: ../../Zotlabs/Module/Filer.php:52 +msgid "- select -" +msgstr "- choisir -" + +#: ../../Zotlabs/Module/Filer.php:53 ../../Zotlabs/Module/Admin.php:2033 +#: ../../Zotlabs/Module/Admin.php:2053 ../../Zotlabs/Module/Rbmark.php:32 +#: ../../Zotlabs/Module/Rbmark.php:104 ../../include/text.php:926 +#: ../../include/text.php:938 ../../include/widgets.php:201 +msgid "Save" +msgstr "Enregistrer" #: ../../Zotlabs/Module/Connections.php:56 #: ../../Zotlabs/Module/Connections.php:161 @@ -1077,7 +1360,7 @@ msgstr "Archivé" #: ../../Zotlabs/Module/Connections.php:76 #: ../../Zotlabs/Module/Connections.php:86 ../../Zotlabs/Module/Menu.php:116 -#: ../../include/conversation.php:1535 +#: ../../include/conversation.php:1550 msgid "New" msgstr "Nouveautés" @@ -1164,15 +1447,15 @@ msgstr "Ignorer le contact" msgid "Recent activity" msgstr "Activité récente" -#: ../../Zotlabs/Module/Connections.php:302 ../../Zotlabs/Lib/Apps.php:208 -#: ../../include/text.php:875 ../../include/nav.php:186 +#: ../../Zotlabs/Module/Connections.php:302 ../../Zotlabs/Lib/Apps.php:209 +#: ../../include/nav.php:188 ../../include/text.php:855 msgid "Connections" msgstr "Contacts" #: ../../Zotlabs/Module/Connections.php:306 ../../Zotlabs/Module/Search.php:44 -#: ../../Zotlabs/Lib/Apps.php:228 ../../include/text.php:945 -#: ../../include/text.php:957 ../../include/nav.php:165 -#: ../../include/acl_selectors.php:276 +#: ../../Zotlabs/Lib/Apps.php:230 ../../include/nav.php:167 +#: ../../include/text.php:925 ../../include/text.php:937 +#: ../../include/acl_selectors.php:274 msgid "Search" msgstr "Recherche" @@ -1185,7 +1468,7 @@ msgid "Connections search" msgstr "Chercher des contacts" #: ../../Zotlabs/Module/Cover_photo.php:58 -#: ../../Zotlabs/Module/Profile_photo.php:79 +#: ../../Zotlabs/Module/Profile_photo.php:61 msgid "Image uploaded but image cropping failed." msgstr "L'image a été téléversée, mais le recadrage a échoué." @@ -1195,66 +1478,66 @@ msgid "Cover Photos" msgstr "Photos de couverture" #: ../../Zotlabs/Module/Cover_photo.php:154 -#: ../../Zotlabs/Module/Profile_photo.php:133 +#: ../../Zotlabs/Module/Profile_photo.php:135 msgid "Image resize failed." msgstr "Le redimensionnement de l'image a échoué." #: ../../Zotlabs/Module/Cover_photo.php:168 -#: ../../Zotlabs/Module/Profile_photo.php:192 ../../include/photos.php:144 +#: ../../Zotlabs/Module/Profile_photo.php:196 ../../include/photos.php:148 msgid "Unable to process image" msgstr "Impossible de traiter l'image" #: ../../Zotlabs/Module/Cover_photo.php:192 -#: ../../Zotlabs/Module/Profile_photo.php:217 +#: ../../Zotlabs/Module/Profile_photo.php:223 msgid "Image upload failed." msgstr "Le téléversement de l'image a échoué." #: ../../Zotlabs/Module/Cover_photo.php:210 -#: ../../Zotlabs/Module/Profile_photo.php:236 +#: ../../Zotlabs/Module/Profile_photo.php:242 msgid "Unable to process image." msgstr "Impossible de traîter l'image." -#: ../../Zotlabs/Module/Cover_photo.php:233 ../../include/items.php:4270 +#: ../../Zotlabs/Module/Cover_photo.php:233 ../../include/items.php:4283 msgid "female" msgstr "femme" -#: ../../Zotlabs/Module/Cover_photo.php:234 ../../include/items.php:4271 +#: ../../Zotlabs/Module/Cover_photo.php:234 ../../include/items.php:4284 #, php-format msgid "%1$s updated her %2$s" msgstr "%1$s a mis à jour son %2$s" -#: ../../Zotlabs/Module/Cover_photo.php:235 ../../include/items.php:4272 +#: ../../Zotlabs/Module/Cover_photo.php:235 ../../include/items.php:4285 msgid "male" msgstr "homme" -#: ../../Zotlabs/Module/Cover_photo.php:236 ../../include/items.php:4273 +#: ../../Zotlabs/Module/Cover_photo.php:236 ../../include/items.php:4286 #, php-format msgid "%1$s updated his %2$s" msgstr "%1$s a mis à jour son %2$s" -#: ../../Zotlabs/Module/Cover_photo.php:238 ../../include/items.php:4275 +#: ../../Zotlabs/Module/Cover_photo.php:238 ../../include/items.php:4288 #, php-format msgid "%1$s updated their %2$s" msgstr "%1$s a mis a jour sa %2$s" -#: ../../Zotlabs/Module/Cover_photo.php:240 ../../include/channel.php:1661 +#: ../../Zotlabs/Module/Cover_photo.php:240 ../../include/channel.php:1726 msgid "cover photo" msgstr "Photo principale" #: ../../Zotlabs/Module/Cover_photo.php:303 #: ../../Zotlabs/Module/Cover_photo.php:318 -#: ../../Zotlabs/Module/Profile_photo.php:283 -#: ../../Zotlabs/Module/Profile_photo.php:324 +#: ../../Zotlabs/Module/Profile_photo.php:300 +#: ../../Zotlabs/Module/Profile_photo.php:341 msgid "Photo not available." msgstr "Photo inaccessible." #: ../../Zotlabs/Module/Cover_photo.php:354 -#: ../../Zotlabs/Module/Profile_photo.php:365 +#: ../../Zotlabs/Module/Profile_photo.php:387 msgid "Upload File:" msgstr "Téléverser fichier :" #: ../../Zotlabs/Module/Cover_photo.php:355 -#: ../../Zotlabs/Module/Profile_photo.php:366 +#: ../../Zotlabs/Module/Profile_photo.php:388 msgid "Select a profile:" msgstr "Choisir un profil :" @@ -1263,200 +1546,69 @@ msgid "Upload Cover Photo" msgstr "Téléverser une photo de couverture" #: ../../Zotlabs/Module/Cover_photo.php:361 -#: ../../Zotlabs/Module/Profile_photo.php:374 -#: ../../Zotlabs/Module/Settings.php:985 +#: ../../Zotlabs/Module/Profile_photo.php:396 +#: ../../Zotlabs/Module/Settings.php:1080 msgid "or" msgstr "ou" #: ../../Zotlabs/Module/Cover_photo.php:361 -#: ../../Zotlabs/Module/Profile_photo.php:374 +#: ../../Zotlabs/Module/Profile_photo.php:396 msgid "skip this step" msgstr "passer cette étape" #: ../../Zotlabs/Module/Cover_photo.php:361 -#: ../../Zotlabs/Module/Profile_photo.php:374 +#: ../../Zotlabs/Module/Profile_photo.php:396 msgid "select a photo from your photo albums" msgstr "choisir une photo dans vos albums" #: ../../Zotlabs/Module/Cover_photo.php:377 -#: ../../Zotlabs/Module/Profile_photo.php:390 +#: ../../Zotlabs/Module/Profile_photo.php:415 msgid "Crop Image" msgstr "Recadrer l'image" #: ../../Zotlabs/Module/Cover_photo.php:378 -#: ../../Zotlabs/Module/Profile_photo.php:391 +#: ../../Zotlabs/Module/Profile_photo.php:416 msgid "Please adjust the image cropping for optimum viewing." msgstr "Merci d'ajuster le cadre pour une visualisation optimale." #: ../../Zotlabs/Module/Cover_photo.php:380 -#: ../../Zotlabs/Module/Profile_photo.php:393 +#: ../../Zotlabs/Module/Profile_photo.php:418 msgid "Done Editing" msgstr "J'ai terminé" -#: ../../Zotlabs/Module/Editpost.php:35 -msgid "Item is not editable" -msgstr "Elément non modifiable" +#: ../../Zotlabs/Module/Impel.php:41 ../../include/bbcode.php:192 +msgid "webpage" +msgstr "pages web" -#: ../../Zotlabs/Module/Editpost.php:106 ../../Zotlabs/Module/Rpost.php:135 -msgid "Edit post" -msgstr "Modifier la publication" +#: ../../Zotlabs/Module/Impel.php:46 ../../include/bbcode.php:198 +msgid "block" +msgstr "bloquer" -#: ../../Zotlabs/Module/Events.php:26 -msgid "Calendar entries imported." -msgstr "Entrées du calendrier importées." +#: ../../Zotlabs/Module/Impel.php:51 ../../include/bbcode.php:195 +msgid "layout" +msgstr "mise en page" -#: ../../Zotlabs/Module/Events.php:28 -msgid "No calendar entries found." -msgstr "Aucune entrée du calendrier trouvée." +#: ../../Zotlabs/Module/Impel.php:58 ../../include/bbcode.php:201 +msgid "menu" +msgstr "menu" -#: ../../Zotlabs/Module/Events.php:105 -msgid "Event can not end before it has started." -msgstr "La fin de l'événement ne peut être antérieure à son début." +#: ../../Zotlabs/Module/Impel.php:187 +#, php-format +msgid "%s element installed" +msgstr "Elément %s installé" -#: ../../Zotlabs/Module/Events.php:107 ../../Zotlabs/Module/Events.php:116 -#: ../../Zotlabs/Module/Events.php:136 -msgid "Unable to generate preview." -msgstr "Impossible de générer l'aperçu." +#: ../../Zotlabs/Module/Impel.php:190 +#, php-format +msgid "%s element installation failed" +msgstr "L'installation de l'élément %s a échoué" -#: ../../Zotlabs/Module/Events.php:114 -msgid "Event title and start time are required." -msgstr "Un titre et une date de début sont requises pour l'événement." +#: ../../Zotlabs/Module/Cal.php:69 +msgid "Permissions denied." +msgstr "Permissions refusées." -#: ../../Zotlabs/Module/Events.php:134 ../../Zotlabs/Module/Events.php:259 -msgid "Event not found." -msgstr "Événement introuvable." - -#: ../../Zotlabs/Module/Events.php:254 ../../Zotlabs/Module/Like.php:373 -#: ../../Zotlabs/Module/Tagger.php:51 ../../include/event.php:949 -#: ../../include/text.php:1943 ../../include/conversation.php:123 -msgid "event" -msgstr "événement" - -#: ../../Zotlabs/Module/Events.php:449 -msgid "Edit event title" -msgstr "Modifier le titre de l'événement" - -#: ../../Zotlabs/Module/Events.php:449 -msgid "Event title" -msgstr "Titre de l'événement" - -#: ../../Zotlabs/Module/Events.php:449 ../../Zotlabs/Module/Events.php:454 -#: ../../Zotlabs/Module/Profiles.php:709 ../../Zotlabs/Module/Profiles.php:713 -#: ../../Zotlabs/Module/Appman.php:115 ../../Zotlabs/Module/Appman.php:116 -#: ../../include/datetime.php:245 -msgid "Required" -msgstr "Requis" - -#: ../../Zotlabs/Module/Events.php:451 -msgid "Categories (comma-separated list)" -msgstr "Catégories (séparées par des virgules)" - -#: ../../Zotlabs/Module/Events.php:452 -msgid "Edit Category" -msgstr "Modifier la catégorie" - -#: ../../Zotlabs/Module/Events.php:452 -msgid "Category" -msgstr "Catégorie" - -#: ../../Zotlabs/Module/Events.php:455 -msgid "Edit start date and time" -msgstr "Modifier la date et l'heure de début" - -#: ../../Zotlabs/Module/Events.php:455 -msgid "Start date and time" -msgstr "Date et heure de début" - -#: ../../Zotlabs/Module/Events.php:456 ../../Zotlabs/Module/Events.php:459 -msgid "Finish date and time are not known or not relevant" -msgstr "Date et heure de fin inconnues ou sans objet" - -#: ../../Zotlabs/Module/Events.php:458 -msgid "Edit finish date and time" -msgstr "Modifier la date et l'heure de fin" - -#: ../../Zotlabs/Module/Events.php:458 -msgid "Finish date and time" -msgstr "Date et heure de fin" - -#: ../../Zotlabs/Module/Events.php:460 ../../Zotlabs/Module/Events.php:461 -msgid "Adjust for viewer timezone" -msgstr "Ajuster au fuseau horaire du visiteur" - -#: ../../Zotlabs/Module/Events.php:460 -msgid "" -"Important for events that happen in a particular place. Not practical for " -"global holidays." -msgstr "Important pour les événements se tenant en un lieu particulier. Pas pratique pour les vacances communes à de nombreux pays dans le monde." - -#: ../../Zotlabs/Module/Events.php:462 -msgid "Edit Description" -msgstr "Modifier la description" - -#: ../../Zotlabs/Module/Events.php:462 ../../Zotlabs/Module/Appman.php:117 -#: ../../Zotlabs/Module/Rbmark.php:101 -msgid "Description" -msgstr "Description" - -#: ../../Zotlabs/Module/Events.php:464 -msgid "Edit Location" -msgstr "Modifier l'emplacement" - -#: ../../Zotlabs/Module/Events.php:464 ../../Zotlabs/Module/Locs.php:117 -#: ../../Zotlabs/Module/Profiles.php:477 ../../Zotlabs/Module/Profiles.php:698 -#: ../../Zotlabs/Module/Pubsites.php:41 ../../include/js_strings.php:25 -msgid "Location" -msgstr "Emplacement" - -#: ../../Zotlabs/Module/Events.php:467 ../../Zotlabs/Module/Events.php:469 -msgid "Share this event" -msgstr "Partager cet événement" - -#: ../../Zotlabs/Module/Events.php:470 ../../Zotlabs/Module/Photos.php:1093 -#: ../../Zotlabs/Module/Webpages.php:194 ../../Zotlabs/Lib/ThreadItem.php:719 -#: ../../include/conversation.php:1187 ../../include/page_widgets.php:40 -msgid "Preview" -msgstr "Aperçu" - -#: ../../Zotlabs/Module/Events.php:471 ../../include/conversation.php:1232 -msgid "Permission settings" -msgstr "Gérer les autorisations" - -#: ../../Zotlabs/Module/Events.php:476 -msgid "Advanced Options" -msgstr "Options avancées" - -#: ../../Zotlabs/Module/Events.php:610 -msgid "Edit event" -msgstr "Modifier l'événement" - -#: ../../Zotlabs/Module/Events.php:612 -msgid "Delete event" -msgstr "Supprimer l'événement" - -#: ../../Zotlabs/Module/Events.php:646 -msgid "calendar" -msgstr "calendrier" - -#: ../../Zotlabs/Module/Events.php:706 -msgid "Event removed" -msgstr "Événement supprimé" - -#: ../../Zotlabs/Module/Events.php:709 -msgid "Failed to remove event" -msgstr "Impossible de supprimer l'événement" - -#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:220 -#: ../../include/nav.php:92 ../../include/conversation.php:1632 -msgid "Photos" -msgstr "Photos" - -#: ../../Zotlabs/Module/Fbrowser.php:66 ../../Zotlabs/Module/Fbrowser.php:88 -#: ../../Zotlabs/Module/Admin.php:1406 ../../Zotlabs/Module/Settings.php:591 -#: ../../Zotlabs/Module/Settings.php:617 ../../Zotlabs/Module/Tagrm.php:15 -#: ../../Zotlabs/Module/Tagrm.php:138 ../../include/conversation.php:1259 -msgid "Cancel" -msgstr "Annuler" +#: ../../Zotlabs/Module/Cal.php:337 +msgid "Import" +msgstr "Import" #: ../../Zotlabs/Module/Dirsearch.php:25 ../../Zotlabs/Module/Regdir.php:49 msgid "This site is not a directory server" @@ -1466,112 +1618,184 @@ msgstr "Ce site n'est pas un serveur d'annuaire" msgid "This directory server requires an access token" msgstr "Ce serveur d'annuaire requiert un jeton d'accès" -#: ../../Zotlabs/Module/Filer.php:52 -msgid "Save to Folder:" -msgstr "Classer dans le dossier :" +#: ../../Zotlabs/Module/Chat.php:25 ../../Zotlabs/Module/Channel.php:28 +#: ../../Zotlabs/Module/Wiki.php:20 +msgid "You must be logged in to see this page." +msgstr "Vous devez vous connecter pour voir cette page." -#: ../../Zotlabs/Module/Filer.php:52 -msgid "- select -" -msgstr "- choisir -" +#: ../../Zotlabs/Module/Chat.php:181 +msgid "Room not found" +msgstr "Salon introuvable" -#: ../../Zotlabs/Module/Filer.php:53 ../../Zotlabs/Module/Admin.php:2033 -#: ../../Zotlabs/Module/Admin.php:2053 ../../Zotlabs/Module/Rbmark.php:32 -#: ../../Zotlabs/Module/Rbmark.php:104 ../../include/text.php:946 -#: ../../include/text.php:958 ../../include/widgets.php:201 -msgid "Save" -msgstr "Enregistrer" +#: ../../Zotlabs/Module/Chat.php:197 +msgid "Leave Room" +msgstr "Quitter le salon" -#: ../../Zotlabs/Module/Dreport.php:27 +#: ../../Zotlabs/Module/Chat.php:198 +msgid "Delete Room" +msgstr "" + +#: ../../Zotlabs/Module/Chat.php:199 +msgid "I am away right now" +msgstr "Je suis absent en ce moment" + +#: ../../Zotlabs/Module/Chat.php:200 +msgid "I am online" +msgstr "Je suis en ligne" + +#: ../../Zotlabs/Module/Chat.php:202 +msgid "Bookmark this room" +msgstr "Marquer ce salon comme favori" + +#: ../../Zotlabs/Module/Chat.php:205 ../../Zotlabs/Module/Mail.php:197 +#: ../../Zotlabs/Module/Mail.php:306 ../../include/conversation.php:1181 +msgid "Please enter a link URL:" +msgstr "Merci d'entrer l'URL d'un lien :" + +#: ../../Zotlabs/Module/Chat.php:206 ../../Zotlabs/Module/Mail.php:250 +#: ../../Zotlabs/Module/Mail.php:375 ../../Zotlabs/Lib/ThreadItem.php:722 +#: ../../include/conversation.php:1271 +msgid "Encrypt text" +msgstr "Chiffrer le texte" + +#: ../../Zotlabs/Module/Chat.php:207 ../../Zotlabs/Module/Editwebpage.php:146 +#: ../../Zotlabs/Module/Mail.php:244 ../../Zotlabs/Module/Mail.php:369 +#: ../../Zotlabs/Module/Editblock.php:111 ../../include/conversation.php:1146 +msgid "Insert web link" +msgstr "Insérer lien web" + +#: ../../Zotlabs/Module/Chat.php:218 +msgid "Feature disabled." +msgstr "" + +#: ../../Zotlabs/Module/Chat.php:232 +msgid "New Chatroom" +msgstr "Nouveau salon de discussion" + +#: ../../Zotlabs/Module/Chat.php:233 +msgid "Chatroom name" +msgstr "" + +#: ../../Zotlabs/Module/Chat.php:234 +msgid "Expiration of chats (minutes)" +msgstr "Expiration des discussions (en minutes)" + +#: ../../Zotlabs/Module/Chat.php:235 ../../Zotlabs/Module/Filestorage.php:152 +#: ../../Zotlabs/Module/Photos.php:669 ../../Zotlabs/Module/Photos.php:1043 +#: ../../Zotlabs/Module/Thing.php:313 ../../Zotlabs/Module/Thing.php:359 +#: ../../include/acl_selectors.php:281 +msgid "Permissions" +msgstr "Autorisations" + +#: ../../Zotlabs/Module/Chat.php:246 +#, php-format +msgid "%1$s's Chatrooms" +msgstr "Salons de %1$s" + +#: ../../Zotlabs/Module/Chat.php:251 +msgid "No chatrooms available" +msgstr "" + +#: ../../Zotlabs/Module/Chat.php:252 ../../Zotlabs/Module/Profiles.php:778 +#: ../../Zotlabs/Module/Manage.php:143 +msgid "Create New" +msgstr "" + +#: ../../Zotlabs/Module/Chat.php:255 +msgid "Expiration" +msgstr "" + +#: ../../Zotlabs/Module/Chat.php:256 +msgid "min" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:44 msgid "Invalid message" msgstr "Message non valide" -#: ../../Zotlabs/Module/Dreport.php:59 +#: ../../Zotlabs/Module/Dreport.php:76 msgid "no results" msgstr "aucun résultat" -#: ../../Zotlabs/Module/Dreport.php:64 +#: ../../Zotlabs/Module/Dreport.php:91 +msgid "channel sync processed" +msgstr "Synchro de canal effectuée" + +#: ../../Zotlabs/Module/Dreport.php:95 +msgid "queued" +msgstr "mis dans la file d'attente" + +#: ../../Zotlabs/Module/Dreport.php:99 +msgid "posted" +msgstr "publié" + +#: ../../Zotlabs/Module/Dreport.php:103 +msgid "accepted for delivery" +msgstr "accepté pour la distribution" + +#: ../../Zotlabs/Module/Dreport.php:107 +msgid "updated" +msgstr "mis à jour" + +#: ../../Zotlabs/Module/Dreport.php:110 +msgid "update ignored" +msgstr "mise à jour ignorée" + +#: ../../Zotlabs/Module/Dreport.php:113 +msgid "permission denied" +msgstr "permission refusée" + +#: ../../Zotlabs/Module/Dreport.php:117 +msgid "recipient not found" +msgstr "destinataire introuvable" + +#: ../../Zotlabs/Module/Dreport.php:120 +msgid "mail recalled" +msgstr "courriel rappelé" + +#: ../../Zotlabs/Module/Dreport.php:123 +msgid "duplicate mail received" +msgstr "courriel reçu en double" + +#: ../../Zotlabs/Module/Dreport.php:126 +msgid "mail delivered" +msgstr "courriel distribué" + +#: ../../Zotlabs/Module/Dreport.php:146 #, php-format msgid "Delivery report for %1$s" msgstr "Rapport de distribution pour %1$s" -#: ../../Zotlabs/Module/Dreport.php:78 -msgid "channel sync processed" -msgstr "Synchro de canal effectuée" +#: ../../Zotlabs/Module/Dreport.php:149 +msgid "Options" +msgstr "" -#: ../../Zotlabs/Module/Dreport.php:82 -msgid "queued" -msgstr "mis dans la file d'attente" +#: ../../Zotlabs/Module/Dreport.php:150 +msgid "Redeliver" +msgstr "" -#: ../../Zotlabs/Module/Dreport.php:86 -msgid "posted" -msgstr "publié" - -#: ../../Zotlabs/Module/Dreport.php:90 -msgid "accepted for delivery" -msgstr "accepté pour la distribution" - -#: ../../Zotlabs/Module/Dreport.php:94 -msgid "updated" -msgstr "mis à jour" - -#: ../../Zotlabs/Module/Dreport.php:97 -msgid "update ignored" -msgstr "mise à jour ignorée" - -#: ../../Zotlabs/Module/Dreport.php:100 -msgid "permission denied" -msgstr "permission refusée" - -#: ../../Zotlabs/Module/Dreport.php:104 -msgid "recipient not found" -msgstr "destinataire introuvable" - -#: ../../Zotlabs/Module/Dreport.php:107 -msgid "mail recalled" -msgstr "courriel rappelé" - -#: ../../Zotlabs/Module/Dreport.php:110 -msgid "duplicate mail received" -msgstr "courriel reçu en double" - -#: ../../Zotlabs/Module/Dreport.php:113 -msgid "mail delivered" -msgstr "courriel distribué" - -#: ../../Zotlabs/Module/Editlayout.php:126 -#: ../../Zotlabs/Module/Layouts.php:127 ../../Zotlabs/Module/Layouts.php:186 +#: ../../Zotlabs/Module/Editlayout.php:127 +#: ../../Zotlabs/Module/Layouts.php:128 ../../Zotlabs/Module/Layouts.php:188 msgid "Layout Name" msgstr "Nom de la mise en page" -#: ../../Zotlabs/Module/Editlayout.php:127 -#: ../../Zotlabs/Module/Layouts.php:130 +#: ../../Zotlabs/Module/Editlayout.php:128 +#: ../../Zotlabs/Module/Layouts.php:131 msgid "Layout Description (Optional)" msgstr "Description de la mise en page (facultatif)" -#: ../../Zotlabs/Module/Editlayout.php:135 +#: ../../Zotlabs/Module/Editlayout.php:136 msgid "Edit Layout" msgstr "Modifier la mise en page" -#: ../../Zotlabs/Module/Editwebpage.php:143 +#: ../../Zotlabs/Module/Editwebpage.php:142 msgid "Page link" msgstr "" -#: ../../Zotlabs/Module/Editwebpage.php:169 +#: ../../Zotlabs/Module/Editwebpage.php:168 msgid "Edit Webpage" msgstr "Modifier la page web" -#: ../../Zotlabs/Module/Follow.php:34 -msgid "Channel added." -msgstr "Canal ajouté." - -#: ../../Zotlabs/Module/Acl.php:227 -msgid "network" -msgstr "réseau" - -#: ../../Zotlabs/Module/Acl.php:237 -msgid "RSS" -msgstr "RSS" - #: ../../Zotlabs/Module/Group.php:24 msgid "Privacy group created." msgstr "Groupe d'accès créé." @@ -1581,7 +1805,7 @@ msgid "Could not create privacy group." msgstr "Impossible de créer le groupe d'accès." #: ../../Zotlabs/Module/Group.php:42 ../../Zotlabs/Module/Group.php:141 -#: ../../include/items.php:3893 +#: ../../include/items.php:3902 msgid "Privacy group not found." msgstr "Groupe d'accès introuvable." @@ -1625,31 +1849,57 @@ msgstr "Tous les canaux connectés" msgid "Click on a channel to add or remove." msgstr "Cliquer sur un canal pour l'ajouter ou le supprimer" -#: ../../Zotlabs/Module/Ffsapi.php:12 -msgid "Share content from Firefox to $Projectname" -msgstr "Partager du contenu depuis Firefox avec $Projectname" +#: ../../Zotlabs/Module/Appman.php:37 ../../Zotlabs/Module/Appman.php:53 +msgid "App installed." +msgstr "Application installée." -#: ../../Zotlabs/Module/Ffsapi.php:15 -msgid "Activate the Firefox $Projectname provider" -msgstr "Activer le connecteur $Projectname pour Firefox" +#: ../../Zotlabs/Module/Appman.php:46 +msgid "Malformed app." +msgstr "Erreur de l'application - Malformée." -#: ../../Zotlabs/Module/Api.php:61 ../../Zotlabs/Module/Api.php:85 -msgid "Authorize application connection" -msgstr "Autoriser l'application à se connecter" +#: ../../Zotlabs/Module/Appman.php:104 +msgid "Embed code" +msgstr "Imbriquer le code" -#: ../../Zotlabs/Module/Api.php:62 -msgid "Return to your app and insert this Securty Code:" -msgstr "Merci de retourner vers votre application, et d'y insérer ce Code de Sécurité :" +#: ../../Zotlabs/Module/Appman.php:110 ../../include/widgets.php:107 +msgid "Edit App" +msgstr "Modifier l'application" -#: ../../Zotlabs/Module/Api.php:72 -msgid "Please login to continue." -msgstr "Merci de vous identifier pour continuer." +#: ../../Zotlabs/Module/Appman.php:110 +msgid "Create App" +msgstr "Créer une application" -#: ../../Zotlabs/Module/Api.php:87 -msgid "" -"Do you want to authorize this application to access your posts and contacts," -" and/or create new posts for you?" -msgstr "Voulez-vous autoriser cette application à accéder à vos publications et contacts, et/ou à publier en votre nom?" +#: ../../Zotlabs/Module/Appman.php:115 +msgid "Name of app" +msgstr "Nom de l'application" + +#: ../../Zotlabs/Module/Appman.php:116 +msgid "Location (URL) of app" +msgstr "Emplacement (URL) de l'application" + +#: ../../Zotlabs/Module/Appman.php:118 +msgid "Photo icon URL" +msgstr "URL de l'icône à utiliser pour cette photo" + +#: ../../Zotlabs/Module/Appman.php:118 +msgid "80 x 80 pixels - optional" +msgstr "80 x 80 pixels - facultatif" + +#: ../../Zotlabs/Module/Appman.php:119 +msgid "Categories (optional, comma separated list)" +msgstr "" + +#: ../../Zotlabs/Module/Appman.php:120 +msgid "Version ID" +msgstr "Identifiant de version" + +#: ../../Zotlabs/Module/Appman.php:121 +msgid "Price of app" +msgstr "Prix de l'application" + +#: ../../Zotlabs/Module/Appman.php:122 +msgid "Location (URL) to purchase app" +msgstr "Emplacement (URL) pour l'achat de l'application" #: ../../Zotlabs/Module/Help.php:26 msgid "Documentation Search" @@ -1661,8 +1911,8 @@ msgid "Help:" msgstr "Aide :" #: ../../Zotlabs/Module/Help.php:85 ../../Zotlabs/Module/Help.php:90 -#: ../../Zotlabs/Module/Layouts.php:183 ../../Zotlabs/Lib/Apps.php:223 -#: ../../include/nav.php:159 +#: ../../Zotlabs/Module/Layouts.php:185 ../../Zotlabs/Lib/Apps.php:225 +#: ../../include/nav.php:161 msgid "Help" msgstr "Aide" @@ -1670,335 +1920,124 @@ msgstr "Aide" msgid "$Projectname Documentation" msgstr "Documentation $Projectname" -#: ../../Zotlabs/Module/Filestorage.php:88 -msgid "Permission Denied." -msgstr "Permission refusée." - -#: ../../Zotlabs/Module/Filestorage.php:104 -msgid "File not found." -msgstr "Fichier introuvable." - -#: ../../Zotlabs/Module/Filestorage.php:147 -msgid "Edit file permissions" -msgstr "Modifier les autorisations d'accès au fichier" - -#: ../../Zotlabs/Module/Filestorage.php:156 -msgid "Set/edit permissions" -msgstr "Définir/modifier les autorisations" - -#: ../../Zotlabs/Module/Filestorage.php:157 -msgid "Include all files and sub folders" -msgstr "Inclure tous fichiers et sous-répertoires" - -#: ../../Zotlabs/Module/Filestorage.php:158 -msgid "Return to file list" -msgstr "Retourner à la liste des fichiers" - -#: ../../Zotlabs/Module/Filestorage.php:160 -msgid "Copy/paste this code to attach file to a post" -msgstr "Copiez/collez ce code pour joindre le fichier à une publication" - -#: ../../Zotlabs/Module/Filestorage.php:161 -msgid "Copy/paste this URL to link file from a web page" -msgstr "Copiez/collez cette URL pour pointer vers ce fichier depuis une page web" - -#: ../../Zotlabs/Module/Filestorage.php:163 -msgid "Share this file" -msgstr "Partager ce fichier" - -#: ../../Zotlabs/Module/Filestorage.php:164 -msgid "Show URL to this file" -msgstr "Montrer l'URL de ce fichier" - -#: ../../Zotlabs/Module/Filestorage.php:165 -msgid "Notify your contacts about this file" -msgstr "Notifier vos contacts à propos de ce fichier" - -#: ../../Zotlabs/Module/Apps.php:47 ../../include/widgets.php:102 -#: ../../include/nav.php:163 -msgid "Apps" -msgstr "Applications" - #: ../../Zotlabs/Module/Attach.php:13 msgid "Item not available." msgstr "Élément indisponible." -#: ../../Zotlabs/Module/Import.php:32 -#, php-format -msgid "Your service plan only allows %d channels." -msgstr "Votre forfait n'autorise que %d canaux." +#: ../../Zotlabs/Module/Pdledit.php:18 +msgid "Layout updated." +msgstr "Mise en page mise à jour." -#: ../../Zotlabs/Module/Import.php:70 ../../Zotlabs/Module/Import_items.php:42 -msgid "Nothing to import." -msgstr "Rien à importer." +#: ../../Zotlabs/Module/Pdledit.php:34 ../../Zotlabs/Module/Pdledit.php:61 +msgid "Edit System Page Description" +msgstr "Modifier la description de la page du système" -#: ../../Zotlabs/Module/Import.php:94 ../../Zotlabs/Module/Import_items.php:66 -msgid "Unable to download data from old server" -msgstr "Impossible de récupérer les données de l'ancien serveur" +#: ../../Zotlabs/Module/Pdledit.php:56 +msgid "Layout not found." +msgstr "Mise en page introuvable." -#: ../../Zotlabs/Module/Import.php:100 -#: ../../Zotlabs/Module/Import_items.php:72 -msgid "Imported file is empty." -msgstr "Le fichier importé est vide." +#: ../../Zotlabs/Module/Pdledit.php:62 +msgid "Module Name:" +msgstr "Nom du module :" -#: ../../Zotlabs/Module/Import.php:122 -#: ../../Zotlabs/Module/Import_items.php:86 -#, php-format -msgid "Warning: Database versions differ by %1$d updates." -msgstr "Attention : les versions de bases de données diffèrent de %1$d mises à jour." +#: ../../Zotlabs/Module/Pdledit.php:63 +msgid "Layout Help" +msgstr "Aide à la mise en page" -#: ../../Zotlabs/Module/Import.php:150 ../../include/import.php:86 -msgid "Cloned channel not found. Import failed." -msgstr "Canal cloné non trouvé. Echec de l'import." +#: ../../Zotlabs/Module/Ffsapi.php:12 +msgid "Share content from Firefox to $Projectname" +msgstr "Partager du contenu depuis Firefox avec $Projectname" -#: ../../Zotlabs/Module/Import.php:160 -msgid "No channel. Import failed." -msgstr "Pas de canal. Echec de l'import." +#: ../../Zotlabs/Module/Ffsapi.php:15 +msgid "Activate the Firefox $Projectname provider" +msgstr "Activer le connecteur $Projectname pour Firefox" -#: ../../Zotlabs/Module/Import.php:510 -#: ../../include/Import/import_diaspora.php:142 -msgid "Import completed." -msgstr "L'import est terminé." +#: ../../Zotlabs/Module/Acl.php:312 +msgid "network" +msgstr "réseau" -#: ../../Zotlabs/Module/Import.php:532 -msgid "You must be logged in to use this feature." -msgstr "Vous devez vous connecter pour utiliser cette fonctionnalité." +#: ../../Zotlabs/Module/Acl.php:322 +msgid "RSS" +msgstr "RSS" -#: ../../Zotlabs/Module/Import.php:537 -msgid "Import Channel" -msgstr "Importation de canal" +#: ../../Zotlabs/Module/Filestorage.php:87 +msgid "Permission Denied." +msgstr "Permission refusée." -#: ../../Zotlabs/Module/Import.php:538 -msgid "" -"Use this form to import an existing channel from a different server/hub. You" -" may retrieve the channel identity from the old server/hub via the network " -"or provide an export file." -msgstr "Utilisez ce formulaire pour importer un canal existant sur un autre serveur. Vous pouvez récupérer l'identité du canal sur l'ancien serveur directement par le réseau, ou bien fournir un fichier d'export/import." +#: ../../Zotlabs/Module/Filestorage.php:103 +msgid "File not found." +msgstr "Fichier introuvable." -#: ../../Zotlabs/Module/Import.php:539 -#: ../../Zotlabs/Module/Import_items.php:119 -msgid "File to Upload" -msgstr "Fichier à envoyer" +#: ../../Zotlabs/Module/Filestorage.php:146 +msgid "Edit file permissions" +msgstr "Modifier les autorisations d'accès au fichier" -#: ../../Zotlabs/Module/Import.php:540 -msgid "Or provide the old server/hub details" -msgstr "Ou fournissez les détails de l'ancien serveur/hub" +#: ../../Zotlabs/Module/Filestorage.php:155 +msgid "Set/edit permissions" +msgstr "Définir/modifier les autorisations" -#: ../../Zotlabs/Module/Import.php:541 -msgid "Your old identity address (xyz@example.com)" -msgstr "Votre ancienne identité (zyx@exemple.com)" +#: ../../Zotlabs/Module/Filestorage.php:156 +msgid "Include all files and sub folders" +msgstr "Inclure tous fichiers et sous-répertoires" -#: ../../Zotlabs/Module/Import.php:542 -msgid "Your old login email address" -msgstr "Votre ancienne adresse de courriel" +#: ../../Zotlabs/Module/Filestorage.php:157 +msgid "Return to file list" +msgstr "Retourner à la liste des fichiers" -#: ../../Zotlabs/Module/Import.php:543 -msgid "Your old login password" -msgstr "Votre ancien mot de passe" +#: ../../Zotlabs/Module/Filestorage.php:159 +msgid "Copy/paste this code to attach file to a post" +msgstr "Copiez/collez ce code pour joindre le fichier à une publication" -#: ../../Zotlabs/Module/Import.php:544 -msgid "" -"For either option, please choose whether to make this hub your new primary " -"address, or whether your old location should continue this role. You will be" -" able to post from either location, but only one can be marked as the " -"primary location for files, photos, and media." -msgstr "Quelle que soit l'option choisie, merci de décider si ce hub sera votre nouvelle adresse primaire, ou si votre ancien hub continuera à jouer ce rôle. Vous pourrez publier depuis l'emplacement de votre choix, mais une seule peut être déclarée comme stockage primaire de vos fichiers/photos/media." +#: ../../Zotlabs/Module/Filestorage.php:160 +msgid "Copy/paste this URL to link file from a web page" +msgstr "Copiez/collez cette URL pour pointer vers ce fichier depuis une page web" -#: ../../Zotlabs/Module/Import.php:545 -msgid "Make this hub my primary location" -msgstr "Faire de ce hub mon emplacement primaire" +#: ../../Zotlabs/Module/Filestorage.php:162 +msgid "Share this file" +msgstr "Partager ce fichier" -#: ../../Zotlabs/Module/Import.php:546 -msgid "" -"Import existing posts if possible (experimental - limited by available " -"memory" -msgstr "Importer les publications existantes si possible (expérimental - limité par la mémoire disponible)" +#: ../../Zotlabs/Module/Filestorage.php:163 +msgid "Show URL to this file" +msgstr "Montrer l'URL de ce fichier" -#: ../../Zotlabs/Module/Import.php:547 -msgid "" -"This process may take several minutes to complete. Please submit the form " -"only once and leave this page open until finished." -msgstr "Ce processus peut prendre plusieurs minutes. Merci de ne valider le formulaire qu'une seule fois et de laisser cette page ouverte jusqu'à la fin." +#: ../../Zotlabs/Module/Filestorage.php:164 +msgid "Notify your contacts about this file" +msgstr "Notifier vos contacts à propos de ce fichier" -#: ../../Zotlabs/Module/Item.php:178 -msgid "Unable to locate original post." -msgstr "Impossible de localiser la publication initiale." - -#: ../../Zotlabs/Module/Item.php:427 -msgid "Empty post discarded." -msgstr "Publication vide annulée." - -#: ../../Zotlabs/Module/Item.php:467 -msgid "Executable content type not permitted to this channel." -msgstr "Les contenus de type 'exécutable' ne sont pas autorisés sur ce canal." - -#: ../../Zotlabs/Module/Item.php:847 -msgid "Duplicate post suppressed." -msgstr "Publication en doublon supprimée." - -#: ../../Zotlabs/Module/Item.php:977 -msgid "System error. Post not saved." -msgstr "Erreur système. Publication non sauvegardée." - -#: ../../Zotlabs/Module/Item.php:1241 -msgid "Unable to obtain post information from database." -msgstr "Impossible d'obtenir les informations de publication depuis la base de données." - -#: ../../Zotlabs/Module/Item.php:1248 -#, php-format -msgid "You have reached your limit of %1$.0f top level posts." -msgstr "Vous avez atteint votre limite de %1$.0f contributions \"racines\"." - -#: ../../Zotlabs/Module/Item.php:1255 -#, php-format -msgid "You have reached your limit of %1$.0f webpages." -msgstr "Vous avez atteint votre limite de %1$.0f pages web." - -#: ../../Zotlabs/Module/Layouts.php:181 ../../include/text.php:2267 +#: ../../Zotlabs/Module/Layouts.php:183 ../../include/text.php:2240 msgid "Layouts" msgstr "Mises-en-page" -#: ../../Zotlabs/Module/Layouts.php:183 +#: ../../Zotlabs/Module/Layouts.php:185 msgid "Comanche page description language help" msgstr "Aide sur le langage de description de page Comanche" -#: ../../Zotlabs/Module/Layouts.php:187 +#: ../../Zotlabs/Module/Layouts.php:189 msgid "Layout Description" msgstr "Description de la mise en page" -#: ../../Zotlabs/Module/Layouts.php:192 +#: ../../Zotlabs/Module/Layouts.php:190 ../../Zotlabs/Module/Menu.php:114 +#: ../../Zotlabs/Module/Blocks.php:157 ../../Zotlabs/Module/Webpages.php:205 +#: ../../include/page_widgets.php:47 +msgid "Created" +msgstr "Créé(e)" + +#: ../../Zotlabs/Module/Layouts.php:191 ../../Zotlabs/Module/Menu.php:115 +#: ../../Zotlabs/Module/Blocks.php:158 ../../Zotlabs/Module/Webpages.php:206 +#: ../../include/page_widgets.php:48 +msgid "Edited" +msgstr "Modifié(e)" + +#: ../../Zotlabs/Module/Layouts.php:193 ../../Zotlabs/Module/Photos.php:1070 +#: ../../Zotlabs/Module/Blocks.php:161 ../../Zotlabs/Module/Webpages.php:195 +#: ../../include/conversation.php:1219 +msgid "Share" +msgstr "Partager" + +#: ../../Zotlabs/Module/Layouts.php:194 msgid "Download PDL file" msgstr "Télécharger le fichier PDL" -#: ../../Zotlabs/Module/Home.php:61 ../../Zotlabs/Module/Home.php:69 -#: ../../Zotlabs/Module/Siteinfo.php:65 -msgid "$Projectname" -msgstr "$Projectname" - -#: ../../Zotlabs/Module/Home.php:79 -#, php-format -msgid "Welcome to %s" -msgstr "Bienvenue sur %s" - -#: ../../Zotlabs/Module/Id.php:13 -msgid "First Name" -msgstr "Prénom" - -#: ../../Zotlabs/Module/Id.php:14 -msgid "Last Name" -msgstr "Nom de famille" - -#: ../../Zotlabs/Module/Id.php:15 -msgid "Nickname" -msgstr "Surnom" - -#: ../../Zotlabs/Module/Id.php:16 -msgid "Full Name" -msgstr "Nom complet" - -#: ../../Zotlabs/Module/Id.php:17 ../../Zotlabs/Module/Id.php:18 -#: ../../Zotlabs/Module/Admin.php:1035 ../../Zotlabs/Module/Admin.php:1047 -#: ../../include/network.php:2151 ../../boot.php:1705 -msgid "Email" -msgstr "Courriel" - -#: ../../Zotlabs/Module/Id.php:19 ../../Zotlabs/Module/Id.php:20 -#: ../../Zotlabs/Module/Id.php:21 ../../Zotlabs/Lib/Apps.php:236 -msgid "Profile Photo" -msgstr "Photo du Profil" - -#: ../../Zotlabs/Module/Id.php:22 -msgid "Profile Photo 16px" -msgstr "Photo de profil 16px" - -#: ../../Zotlabs/Module/Id.php:23 -msgid "Profile Photo 32px" -msgstr "Photo de profil 32px" - -#: ../../Zotlabs/Module/Id.php:24 -msgid "Profile Photo 48px" -msgstr "Photo de profil 48px" - -#: ../../Zotlabs/Module/Id.php:25 -msgid "Profile Photo 64px" -msgstr "Photo de profil 64px" - -#: ../../Zotlabs/Module/Id.php:26 -msgid "Profile Photo 80px" -msgstr "Photo de profil 80px" - -#: ../../Zotlabs/Module/Id.php:27 -msgid "Profile Photo 128px" -msgstr "Photo de profil 128px" - -#: ../../Zotlabs/Module/Id.php:28 -msgid "Timezone" -msgstr "Fuseau horaire" - -#: ../../Zotlabs/Module/Id.php:29 ../../Zotlabs/Module/Profiles.php:731 -msgid "Homepage URL" -msgstr "URL de mon site Internet :" - -#: ../../Zotlabs/Module/Id.php:30 ../../Zotlabs/Lib/Apps.php:234 -msgid "Language" -msgstr "Langue" - -#: ../../Zotlabs/Module/Id.php:31 -msgid "Birth Year" -msgstr "Année de naissance" - -#: ../../Zotlabs/Module/Id.php:32 -msgid "Birth Month" -msgstr "Mois de naissance" - -#: ../../Zotlabs/Module/Id.php:33 -msgid "Birth Day" -msgstr "Jour de naissance" - -#: ../../Zotlabs/Module/Id.php:34 -msgid "Birthdate" -msgstr "Date de naissance" - -#: ../../Zotlabs/Module/Id.php:35 ../../Zotlabs/Module/Profiles.php:454 -msgid "Gender" -msgstr "Sexe" - -#: ../../Zotlabs/Module/Id.php:108 ../../include/selectors.php:49 -#: ../../include/selectors.php:66 -msgid "Male" -msgstr "Homme" - -#: ../../Zotlabs/Module/Id.php:110 ../../include/selectors.php:49 -#: ../../include/selectors.php:66 -msgid "Female" -msgstr "Femme" - -#: ../../Zotlabs/Module/Impel.php:41 ../../include/bbcode.php:192 -msgid "webpage" -msgstr "pages web" - -#: ../../Zotlabs/Module/Impel.php:46 ../../include/bbcode.php:198 -msgid "block" -msgstr "bloquer" - -#: ../../Zotlabs/Module/Impel.php:51 ../../include/bbcode.php:195 -msgid "layout" -msgstr "mise en page" - -#: ../../Zotlabs/Module/Impel.php:58 ../../include/bbcode.php:201 -msgid "menu" -msgstr "menu" - -#: ../../Zotlabs/Module/Impel.php:196 -#, php-format -msgid "%s element installed" -msgstr "Elément %s installé" - -#: ../../Zotlabs/Module/Impel.php:199 -#, php-format -msgid "%s element installation failed" -msgstr "L'installation de l'élément %s a échoué" - #: ../../Zotlabs/Module/Like.php:19 msgid "Like/Dislike" msgstr "Aime/n'aime pas" @@ -2034,1180 +2073,65 @@ msgstr "Canal indisponible." msgid "Previous action reversed." msgstr "Action précédente annulée." -#: ../../Zotlabs/Module/Like.php:371 ../../Zotlabs/Module/Subthread.php:87 -#: ../../Zotlabs/Module/Tagger.php:47 ../../include/text.php:1940 -#: ../../include/conversation.php:120 +#: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87 +#: ../../Zotlabs/Module/Tagger.php:47 ../../include/conversation.php:120 +#: ../../include/text.php:1921 msgid "photo" msgstr "photo" -#: ../../Zotlabs/Module/Like.php:371 ../../Zotlabs/Module/Subthread.php:87 -#: ../../include/text.php:1946 ../../include/conversation.php:148 +#: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87 +#: ../../include/conversation.php:148 ../../include/text.php:1927 msgid "status" msgstr "état" -#: ../../Zotlabs/Module/Like.php:420 ../../include/conversation.php:164 +#: ../../Zotlabs/Module/Like.php:419 ../../include/conversation.php:164 #, php-format msgid "%1$s likes %2$s's %3$s" msgstr "%1$s aime %3$s de %2$s" -#: ../../Zotlabs/Module/Like.php:422 ../../include/conversation.php:167 +#: ../../Zotlabs/Module/Like.php:421 ../../include/conversation.php:167 #, php-format msgid "%1$s doesn't like %2$s's %3$s" msgstr "%1$s n'aime pas %3$s de %2$s" -#: ../../Zotlabs/Module/Like.php:424 +#: ../../Zotlabs/Module/Like.php:423 #, php-format msgid "%1$s agrees with %2$s's %3$s" msgstr "%1$s approuve %3$s de %2$s" -#: ../../Zotlabs/Module/Like.php:426 +#: ../../Zotlabs/Module/Like.php:425 #, php-format msgid "%1$s doesn't agree with %2$s's %3$s" msgstr "%1$s n'est pas d'accord avec %3$s de %2$s" -#: ../../Zotlabs/Module/Like.php:428 +#: ../../Zotlabs/Module/Like.php:427 #, php-format msgid "%1$s abstains from a decision on %2$s's %3$s" msgstr "%1$s s'abstient de toute décision sur le %3$s de %2$s" -#: ../../Zotlabs/Module/Like.php:430 +#: ../../Zotlabs/Module/Like.php:429 #, php-format msgid "%1$s is attending %2$s's %3$s" msgstr "%1$s participe à %3$s de %2$s" -#: ../../Zotlabs/Module/Like.php:432 +#: ../../Zotlabs/Module/Like.php:431 #, php-format msgid "%1$s is not attending %2$s's %3$s" msgstr "%1$s ne participe pas à %3$s de %2$s" -#: ../../Zotlabs/Module/Like.php:434 +#: ../../Zotlabs/Module/Like.php:433 #, php-format msgid "%1$s may attend %2$s's %3$s" msgstr "%1$s participe peut-être à %3$s de %2$s" -#: ../../Zotlabs/Module/Like.php:537 +#: ../../Zotlabs/Module/Like.php:536 msgid "Action completed." msgstr "Action terminée." -#: ../../Zotlabs/Module/Like.php:538 +#: ../../Zotlabs/Module/Like.php:537 msgid "Thank you." msgstr "Merci." -#: ../../Zotlabs/Module/Import_items.php:102 -msgid "Import completed" -msgstr "L'import est terminé." - -#: ../../Zotlabs/Module/Import_items.php:117 -msgid "Import Items" -msgstr "Importer" - -#: ../../Zotlabs/Module/Import_items.php:118 -msgid "" -"Use this form to import existing posts and content from an export file." -msgstr "Utiliser ce formulaire pour importer des publications et du contenu existant d'un fichier d'export." - -#: ../../Zotlabs/Module/Invite.php:29 -msgid "Total invitation limit exceeded." -msgstr "Limite du nombre total d'invitation dépassée." - -#: ../../Zotlabs/Module/Invite.php:53 -#, php-format -msgid "%s : Not a valid email address." -msgstr "%s : adresse courriel invalide." - -#: ../../Zotlabs/Module/Invite.php:63 -msgid "Please join us on $Projectname" -msgstr "Rejoignez-nous sur $Projectname" - -#: ../../Zotlabs/Module/Invite.php:74 -msgid "Invitation limit exceeded. Please contact your site administrator." -msgstr "Limite d'invitations dépassée. Merci de contacter l'administration de votre site." - -#: ../../Zotlabs/Module/Invite.php:79 -#, php-format -msgid "%s : Message delivery failed." -msgstr "%s : Échec de distribution du message." - -#: ../../Zotlabs/Module/Invite.php:83 -#, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "%d message envoyé." -msgstr[1] "%d messages envoyés." - -#: ../../Zotlabs/Module/Invite.php:102 -msgid "You have no more invitations available" -msgstr "Vous ne disposez plus d'aucune invitation" - -#: ../../Zotlabs/Module/Invite.php:133 -msgid "Send invitations" -msgstr "Envoyer des invitations" - -#: ../../Zotlabs/Module/Invite.php:134 -msgid "Enter email addresses, one per line:" -msgstr "Entrez les adresses de courriel, une par ligne :" - -#: ../../Zotlabs/Module/Invite.php:135 ../../Zotlabs/Module/Mail.php:249 -msgid "Your message:" -msgstr "Votre message :" - -#: ../../Zotlabs/Module/Invite.php:136 -msgid "Please join my community on $Projectname." -msgstr "Rejoignez ma communauté sur $Projectname." - -#: ../../Zotlabs/Module/Invite.php:138 -msgid "You will need to supply this invitation code:" -msgstr "Vous devrez fournir le code suivant :" - -#: ../../Zotlabs/Module/Invite.php:139 -msgid "" -"1. Register at any $Projectname location (they are all inter-connected)" -msgstr "1. Enregistrez-vous sur n'importe quel serveur $Projectname (ils sont tous inter-connectés)" - -#: ../../Zotlabs/Module/Invite.php:141 -msgid "2. Enter my $Projectname network address into the site searchbar." -msgstr "2. Saisissez l'adresse de mon canal $Projectname dans la barre de recherche du site." - -#: ../../Zotlabs/Module/Invite.php:142 -msgid "or visit" -msgstr "ou rendez-vous sur" - -#: ../../Zotlabs/Module/Invite.php:144 -msgid "3. Click [Connect]" -msgstr "3. Cliquez sur [Ajouter]" - -#: ../../Zotlabs/Module/Lockview.php:61 -msgid "Remote privacy information not available." -msgstr "Les informations distantes de confidentialité ne sont pas disponibles." - -#: ../../Zotlabs/Module/Lockview.php:82 -msgid "Visible to:" -msgstr "Visible par :" - -#: ../../Zotlabs/Module/Locs.php:25 ../../Zotlabs/Module/Locs.php:54 -msgid "Location not found." -msgstr "Emplacement introuvable." - -#: ../../Zotlabs/Module/Locs.php:62 -msgid "Location lookup failed." -msgstr "Echec de la recherche de l'emplacement." - -#: ../../Zotlabs/Module/Locs.php:66 -msgid "" -"Please select another location to become primary before removing the primary" -" location." -msgstr "Merci de sélectionner un autre emplacement comme nouvel emplacement primaire avant de supprimer l'emplacement primaire actuel." - -#: ../../Zotlabs/Module/Locs.php:95 -msgid "Syncing locations" -msgstr "Synchronisation des emplacements" - -#: ../../Zotlabs/Module/Locs.php:105 -msgid "No locations found." -msgstr "Emplacement(s) introuvable." - -#: ../../Zotlabs/Module/Locs.php:116 -msgid "Manage Channel Locations" -msgstr "Gérer les emplacements des canaux" - -#: ../../Zotlabs/Module/Locs.php:118 ../../Zotlabs/Module/Profiles.php:470 -#: ../../Zotlabs/Module/Admin.php:1224 -msgid "Address" -msgstr "Adresse" - -#: ../../Zotlabs/Module/Locs.php:119 -msgid "Primary" -msgstr "" - -#: ../../Zotlabs/Module/Locs.php:120 ../../Zotlabs/Module/Menu.php:113 -msgid "Drop" -msgstr "Supprimer" - -#: ../../Zotlabs/Module/Locs.php:122 -msgid "Sync Now" -msgstr "" - -#: ../../Zotlabs/Module/Locs.php:123 -msgid "Please wait several minutes between consecutive operations." -msgstr "Merci d'attendre plusieurs minutes entre opérations successives." - -#: ../../Zotlabs/Module/Locs.php:124 -msgid "" -"When possible, drop a location by logging into that website/hub and removing" -" your channel." -msgstr "Quand c'est possible, abandonnez un emplacement en vous connectant sur le site/hub et en supprimant votre canal." - -#: ../../Zotlabs/Module/Locs.php:125 -msgid "Use this form to drop the location if the hub is no longer operating." -msgstr "Utilisez ce formulaire pour abandonner l'emplacement si le hub n'est plus actif." - -#: ../../Zotlabs/Module/Magic.php:71 -msgid "Hub not found." -msgstr "Hub introuvable." - -#: ../../Zotlabs/Module/Mail.php:38 -msgid "Unable to lookup recipient." -msgstr "Impossible de localiser le destinataire." - -#: ../../Zotlabs/Module/Mail.php:45 -msgid "Unable to communicate with requested channel." -msgstr "Impossible de communiquer avec le canal demandé." - -#: ../../Zotlabs/Module/Mail.php:52 -msgid "Cannot verify requested channel." -msgstr "Impossible de vérifier le canal demandé." - -#: ../../Zotlabs/Module/Mail.php:78 -msgid "Selected channel has private message restrictions. Send failed." -msgstr "Le canal choisi a des restrictions quant aux messages privés. L'envoi a échoué." - -#: ../../Zotlabs/Module/Mail.php:143 -msgid "Messages" -msgstr "Messages" - -#: ../../Zotlabs/Module/Mail.php:178 -msgid "Message recalled." -msgstr "Message rappelé." - -#: ../../Zotlabs/Module/Mail.php:191 -msgid "Conversation removed." -msgstr "Conversation supprimée." - -#: ../../Zotlabs/Module/Mail.php:206 ../../Zotlabs/Module/Mail.php:315 -msgid "Expires YYYY-MM-DD HH:MM" -msgstr "Expire le YYYY-MM-DD à HH:MM" - -#: ../../Zotlabs/Module/Mail.php:234 -msgid "Requested channel is not in this network" -msgstr "Le canal demandé n'est pas sur ce réseau" - -#: ../../Zotlabs/Module/Mail.php:242 -msgid "Send Private Message" -msgstr "Envoyer un message privé" - -#: ../../Zotlabs/Module/Mail.php:243 ../../Zotlabs/Module/Mail.php:368 -msgid "To:" -msgstr "À :" - -#: ../../Zotlabs/Module/Mail.php:246 ../../Zotlabs/Module/Mail.php:370 -msgid "Subject:" -msgstr "Objet :" - -#: ../../Zotlabs/Module/Mail.php:251 ../../Zotlabs/Module/Mail.php:376 -#: ../../include/conversation.php:1220 -msgid "Attach file" -msgstr "Joindre un fichier" - -#: ../../Zotlabs/Module/Mail.php:253 -msgid "Send" -msgstr "Envoyer" - -#: ../../Zotlabs/Module/Mail.php:256 ../../Zotlabs/Module/Mail.php:381 -#: ../../include/conversation.php:1251 -msgid "Set expiration date" -msgstr "Définir la date d'expiration" - -#: ../../Zotlabs/Module/Mail.php:340 -msgid "Delete message" -msgstr "Supprimer le message" - -#: ../../Zotlabs/Module/Mail.php:341 -msgid "Delivery report" -msgstr "Rapport de distribution" - -#: ../../Zotlabs/Module/Mail.php:342 -msgid "Recall message" -msgstr "Rappeler le message" - -#: ../../Zotlabs/Module/Mail.php:344 -msgid "Message has been recalled." -msgstr "Le message a été rappelé." - -#: ../../Zotlabs/Module/Mail.php:361 -msgid "Delete Conversation" -msgstr "Supprimer la conversation" - -#: ../../Zotlabs/Module/Mail.php:363 -msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." -msgstr "Aucune communication sécurisée n'est possible. Vous pourrez peut-être répondre depuis la page de profil de l'émetteur." - -#: ../../Zotlabs/Module/Mail.php:367 -msgid "Send Reply" -msgstr "Envoyer la réponse" - -#: ../../Zotlabs/Module/Mail.php:372 -#, php-format -msgid "Your message for %s (%s):" -msgstr "Votre message pour %s (%s) :" - -#: ../../Zotlabs/Module/Manage.php:136 -#: ../../Zotlabs/Module/New_channel.php:121 -#, php-format -msgid "You have created %1$.0f of %2$.0f allowed channels." -msgstr "Vous avez créé %1$.0f des %2$.0f canaux autorisés." - -#: ../../Zotlabs/Module/Manage.php:143 -msgid "Create a new channel" -msgstr "Créer un nouveau canal" - -#: ../../Zotlabs/Module/Manage.php:164 ../../Zotlabs/Lib/Apps.php:213 -#: ../../include/nav.php:206 -msgid "Channel Manager" -msgstr "Gérer les canaux" - -#: ../../Zotlabs/Module/Manage.php:165 -msgid "Current Channel" -msgstr "Canal actif" - -#: ../../Zotlabs/Module/Manage.php:167 -msgid "Switch to one of your channels by selecting it." -msgstr "Pour changer de canal, sélectionnez-en un" - -#: ../../Zotlabs/Module/Manage.php:168 -msgid "Default Channel" -msgstr "Canal par défaut" - -#: ../../Zotlabs/Module/Manage.php:169 -msgid "Make Default" -msgstr "Définir comme défaut" - -#: ../../Zotlabs/Module/Manage.php:172 -#, php-format -msgid "%d new messages" -msgstr "%d nouveaux messages" - -#: ../../Zotlabs/Module/Manage.php:173 -#, php-format -msgid "%d new introductions" -msgstr "%d nouvelles présentations" - -#: ../../Zotlabs/Module/Manage.php:175 -msgid "Delegated Channel" -msgstr "" - -#: ../../Zotlabs/Module/Lostpass.php:19 -msgid "No valid account found." -msgstr "Aucun compte valide trouvé." - -#: ../../Zotlabs/Module/Lostpass.php:33 -msgid "Password reset request issued. Check your email." -msgstr "Demande de réinitialisation du mot de passe envoyée. Vérifiez vos courriels." - -#: ../../Zotlabs/Module/Lostpass.php:39 ../../Zotlabs/Module/Lostpass.php:107 -#, php-format -msgid "Site Member (%s)" -msgstr "Membre du site (%s)" - -#: ../../Zotlabs/Module/Lostpass.php:44 -#, php-format -msgid "Password reset requested at %s" -msgstr "Demande de réinitialisation du mot de passe sur %s" - -#: ../../Zotlabs/Module/Lostpass.php:67 -msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." -msgstr "La demande n'a pas pu être vérifiée. (Peut-être l'avez vous déjà utilisée.) La réinitialisation a échoué." - -#: ../../Zotlabs/Module/Lostpass.php:90 ../../boot.php:1711 -msgid "Password Reset" -msgstr "Réinitialiser le mot de passe" - -#: ../../Zotlabs/Module/Lostpass.php:91 -msgid "Your password has been reset as requested." -msgstr "Votre mot de passe a bien été réinitialisé." - -#: ../../Zotlabs/Module/Lostpass.php:92 -msgid "Your new password is" -msgstr "Votre nouveau mot de passe est" - -#: ../../Zotlabs/Module/Lostpass.php:93 -msgid "Save or copy your new password - and then" -msgstr "Enregistrez ou copiez votre nouveau mot de passe, puis" - -#: ../../Zotlabs/Module/Lostpass.php:94 -msgid "click here to login" -msgstr "cliquez ici pour vous connecter" - -#: ../../Zotlabs/Module/Lostpass.php:95 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." -msgstr "Votre mot de passe peut être changé depuis la page des Paramètres une fois connecté." - -#: ../../Zotlabs/Module/Lostpass.php:112 -#, php-format -msgid "Your password has changed at %s" -msgstr "Votre mot de passe de %s a été changé" - -#: ../../Zotlabs/Module/Lostpass.php:127 -msgid "Forgot your Password?" -msgstr "Mot de passe oublié ?" - -#: ../../Zotlabs/Module/Lostpass.php:128 -msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." -msgstr "Saisissez votre adresse de courriel, et validez, pour réinitialiser votre mot de passe. Vérifiez ensuite votre boîte aux lettres pour la suite des instructions." - -#: ../../Zotlabs/Module/Lostpass.php:129 -msgid "Email Address" -msgstr "Adresse de courriel" - -#: ../../Zotlabs/Module/Lostpass.php:130 -msgid "Reset" -msgstr "Réinitialiser" - -#: ../../Zotlabs/Module/Menu.php:49 -msgid "Unable to update menu." -msgstr "Impossible de mettre le menu à jour." - -#: ../../Zotlabs/Module/Menu.php:60 -msgid "Unable to create menu." -msgstr "Impossible de créer le menu." - -#: ../../Zotlabs/Module/Menu.php:98 ../../Zotlabs/Module/Menu.php:110 -msgid "Menu Name" -msgstr "Nom du menu" - -#: ../../Zotlabs/Module/Menu.php:98 -msgid "Unique name (not visible on webpage) - required" -msgstr "Nom unique (non visible sur la page web) - requis" - -#: ../../Zotlabs/Module/Menu.php:99 ../../Zotlabs/Module/Menu.php:111 -msgid "Menu Title" -msgstr "Titre du menu" - -#: ../../Zotlabs/Module/Menu.php:99 -msgid "Visible on webpage - leave empty for no title" -msgstr "Visible pour la page web - laisser vide pour qu'il n'y ait pas de titre" - -#: ../../Zotlabs/Module/Menu.php:100 -msgid "Allow Bookmarks" -msgstr "Autoriser l'usage de favoris" - -#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 -msgid "Menu may be used to store saved bookmarks" -msgstr "Le menu pourra être utilisé pour stocker des favoris" - -#: ../../Zotlabs/Module/Menu.php:101 ../../Zotlabs/Module/Menu.php:159 -msgid "Submit and proceed" -msgstr "Valider et continuer" - -#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2266 -msgid "Menus" -msgstr "Menus" - -#: ../../Zotlabs/Module/Menu.php:117 -msgid "Bookmarks allowed" -msgstr "Favoris autorisés" - -#: ../../Zotlabs/Module/Menu.php:119 -msgid "Delete this menu" -msgstr "Supprimer ce menu" - -#: ../../Zotlabs/Module/Menu.php:120 ../../Zotlabs/Module/Menu.php:154 -msgid "Edit menu contents" -msgstr "Modifier le contenu du menu" - -#: ../../Zotlabs/Module/Menu.php:121 -msgid "Edit this menu" -msgstr "Modifier ce menu" - -#: ../../Zotlabs/Module/Menu.php:136 -msgid "Menu could not be deleted." -msgstr "Impossible de supprimer le menu." - -#: ../../Zotlabs/Module/Menu.php:144 ../../Zotlabs/Module/Mitem.php:28 -msgid "Menu not found." -msgstr "Menu introuvable." - -#: ../../Zotlabs/Module/Menu.php:149 -msgid "Edit Menu" -msgstr "Modifier le menu" - -#: ../../Zotlabs/Module/Menu.php:153 -msgid "Add or remove entries to this menu" -msgstr "Ajouter/supprimer des entrées à ce menu" - -#: ../../Zotlabs/Module/Menu.php:155 -msgid "Menu name" -msgstr "Nom du menu" - -#: ../../Zotlabs/Module/Menu.php:155 -msgid "Must be unique, only seen by you" -msgstr "Doit être unique, ne sera vu que par vous" - -#: ../../Zotlabs/Module/Menu.php:156 -msgid "Menu title" -msgstr "Titre du menu" - -#: ../../Zotlabs/Module/Menu.php:156 -msgid "Menu title as seen by others" -msgstr "Titre du menu tel que vu par les visiteurs" - -#: ../../Zotlabs/Module/Menu.php:157 -msgid "Allow bookmarks" -msgstr "Autoriser l'usage de favoris" - -#: ../../Zotlabs/Module/Menu.php:166 ../../Zotlabs/Module/Mitem.php:120 -#: ../../Zotlabs/Module/Xchan.php:41 -msgid "Not found." -msgstr "Introuvable." - -#: ../../Zotlabs/Module/Mood.php:67 ../../include/conversation.php:260 -#, php-format -msgctxt "mood" -msgid "%1$s is %2$s" -msgstr "%1$s est %2$s" - -#: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Lib/Apps.php:225 -msgid "Mood" -msgstr "Humeur" - -#: ../../Zotlabs/Module/Mood.php:136 -msgid "Set your current mood and tell your friends" -msgstr "Indiquez votre humeur du moment à vos amis" - -#: ../../Zotlabs/Module/Match.php:26 -msgid "Profile Match" -msgstr "Profils similaires" - -#: ../../Zotlabs/Module/Match.php:35 -msgid "No keywords to match. Please add keywords to your default profile." -msgstr "Aucun mot-clef à comparer. Merci d'ajouter des mots-clefs à votre profil par défaut." - -#: ../../Zotlabs/Module/Match.php:67 -msgid "is interested in:" -msgstr "s'intéresse à :" - -#: ../../Zotlabs/Module/Match.php:74 -msgid "No matches" -msgstr "Pas de correspondance" - -#: ../../Zotlabs/Module/Network.php:96 -msgid "No such group" -msgstr "Groupe introuvable" - -#: ../../Zotlabs/Module/Network.php:136 -msgid "No such channel" -msgstr "Canal introuvable" - -#: ../../Zotlabs/Module/Network.php:141 -msgid "forum" -msgstr "forum" - -#: ../../Zotlabs/Module/Network.php:153 -msgid "Search Results For:" -msgstr "Résultats de recherche pour :" - -#: ../../Zotlabs/Module/Network.php:217 -msgid "Privacy group is empty" -msgstr "Groupe d'accès vide" - -#: ../../Zotlabs/Module/Network.php:226 -msgid "Privacy group: " -msgstr "Groupe d'accès :" - -#: ../../Zotlabs/Module/Network.php:252 -msgid "Invalid connection." -msgstr "Contact non valide." - -#: ../../Zotlabs/Module/Notify.php:57 -#: ../../Zotlabs/Module/Notifications.php:98 -msgid "No more system notifications." -msgstr "Pas d'autre notification du système." - -#: ../../Zotlabs/Module/Notify.php:61 -#: ../../Zotlabs/Module/Notifications.php:102 -msgid "System Notifications" -msgstr "Notifications du système" - -#: ../../Zotlabs/Module/Mitem.php:52 -msgid "Unable to create element." -msgstr "Impossible de créer l'entrée." - -#: ../../Zotlabs/Module/Mitem.php:76 -msgid "Unable to update menu element." -msgstr "Impossible de mettre à jour l'entrée de menu." - -#: ../../Zotlabs/Module/Mitem.php:92 -msgid "Unable to add menu element." -msgstr "Impossible d'ajouter l'entrée de menu." - -#: ../../Zotlabs/Module/Mitem.php:153 ../../Zotlabs/Module/Mitem.php:226 -msgid "Menu Item Permissions" -msgstr "Permissions de l'entrée de menu" - -#: ../../Zotlabs/Module/Mitem.php:154 ../../Zotlabs/Module/Mitem.php:227 -#: ../../Zotlabs/Module/Settings.php:1068 -msgid "(click to open/close)" -msgstr "(cliquer pour ouvrir/fermer)" - -#: ../../Zotlabs/Module/Mitem.php:156 ../../Zotlabs/Module/Mitem.php:172 -msgid "Link Name" -msgstr "Nom du lien" - -#: ../../Zotlabs/Module/Mitem.php:157 ../../Zotlabs/Module/Mitem.php:231 -msgid "Link or Submenu Target" -msgstr "Lien ou sous-menu cible" - -#: ../../Zotlabs/Module/Mitem.php:157 -msgid "Enter URL of the link or select a menu name to create a submenu" -msgstr "Entrez l'URL du lien ou sélectionnez un nom de menu pour créer un sous-menu" - -#: ../../Zotlabs/Module/Mitem.php:158 ../../Zotlabs/Module/Mitem.php:232 -msgid "Use magic-auth if available" -msgstr "Utiliser l'authentification distante, quand disponible" - -#: ../../Zotlabs/Module/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:233 -msgid "Open link in new window" -msgstr "Ouvrir le lien dans une nouvelle fenêtre" - -#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:234 -msgid "Order in list" -msgstr "Ordre dans la liste" - -#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:234 -msgid "Higher numbers will sink to bottom of listing" -msgstr "Les nombres les plus élevés seront au bas de la liste" - -#: ../../Zotlabs/Module/Mitem.php:161 -msgid "Submit and finish" -msgstr "Vadiler et terminer" - -#: ../../Zotlabs/Module/Mitem.php:162 -msgid "Submit and continue" -msgstr "Valider et continuer" - -#: ../../Zotlabs/Module/Mitem.php:170 -msgid "Menu:" -msgstr "Menu :" - -#: ../../Zotlabs/Module/Mitem.php:173 -msgid "Link Target" -msgstr "Cible du lien" - -#: ../../Zotlabs/Module/Mitem.php:176 -msgid "Edit menu" -msgstr "Modifier le menu" - -#: ../../Zotlabs/Module/Mitem.php:179 -msgid "Edit element" -msgstr "Modifier l'entrée" - -#: ../../Zotlabs/Module/Mitem.php:180 -msgid "Drop element" -msgstr "Supprimer l'entrée" - -#: ../../Zotlabs/Module/Mitem.php:181 -msgid "New element" -msgstr "Nouvelle entrée" - -#: ../../Zotlabs/Module/Mitem.php:182 -msgid "Edit this menu container" -msgstr "Éditer ce bloc de menu" - -#: ../../Zotlabs/Module/Mitem.php:183 -msgid "Add menu element" -msgstr "Ajouter une entrée au menu" - -#: ../../Zotlabs/Module/Mitem.php:184 -msgid "Delete this menu item" -msgstr "Supprimer cette entrée du menu" - -#: ../../Zotlabs/Module/Mitem.php:185 -msgid "Edit this menu item" -msgstr "Modifier cette entrée du menu" - -#: ../../Zotlabs/Module/Mitem.php:202 -msgid "Menu item not found." -msgstr "Entrée de menu introuvable." - -#: ../../Zotlabs/Module/Mitem.php:215 -msgid "Menu item deleted." -msgstr "Entrée de menu supprimée." - -#: ../../Zotlabs/Module/Mitem.php:217 -msgid "Menu item could not be deleted." -msgstr "Impossible de supprimer l'entrée de menu." - -#: ../../Zotlabs/Module/Mitem.php:224 -msgid "Edit Menu Element" -msgstr "Modifier l'entrée de menu" - -#: ../../Zotlabs/Module/Mitem.php:230 -msgid "Link text" -msgstr "Texte du lien" - -#: ../../Zotlabs/Module/New_channel.php:128 -#: ../../Zotlabs/Module/Register.php:231 -msgid "Name or caption" -msgstr "Nom ou libellé" - -#: ../../Zotlabs/Module/New_channel.php:128 -#: ../../Zotlabs/Module/Register.php:231 -msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\"" -msgstr "Exemples : \"Jérôme Dutilleul\", \"Louise et ses chevaux\", \"Football\", \"Club d'aéromodélisme\"" - -#: ../../Zotlabs/Module/New_channel.php:130 -#: ../../Zotlabs/Module/Register.php:233 -msgid "Choose a short nickname" -msgstr "Choisissez un alias" - -#: ../../Zotlabs/Module/New_channel.php:130 -#: ../../Zotlabs/Module/Register.php:233 -#, php-format -msgid "" -"Your nickname will be used to create an easy to remember channel address " -"e.g. nickname%s" -msgstr "Votre pseudo sera utilisé pour créer une adresse de canal facile à mémoriser, par ex. pseudo%s" - -#: ../../Zotlabs/Module/New_channel.php:132 -#: ../../Zotlabs/Module/Register.php:235 -msgid "Channel role and privacy" -msgstr "Rôle et confidentialité du canal" - -#: ../../Zotlabs/Module/New_channel.php:132 -#: ../../Zotlabs/Module/Register.php:235 -msgid "Select a channel role with your privacy requirements." -msgstr "Sélectionner un rôle de canal adapté à vos besoins de confidentialité." - -#: ../../Zotlabs/Module/New_channel.php:132 -#: ../../Zotlabs/Module/Register.php:235 -msgid "Read more about roles" -msgstr "En savoir plus sur les rôles" - -#: ../../Zotlabs/Module/New_channel.php:135 -msgid "Create Channel" -msgstr "Créer le canal" - -#: ../../Zotlabs/Module/New_channel.php:136 -msgid "" -"A channel is your identity on this network. It can represent a person, a " -"blog, or a forum to name a few. Channels can make connections with other " -"channels to share information with highly detailed permissions." -msgstr "Un canal est votre identité sur ce réseau. Il peut représenter une personne, un blog, ou un forum par exemple. Les canaux peuvent entrer en contact les uns avec les autres pour partager des informations avec des permissions d'accès très fines." - -#: ../../Zotlabs/Module/New_channel.php:137 -msgid "" -"or import an existing channel from another location." -msgstr "ou importer un canal existant d'un autre serveur." - -#: ../../Zotlabs/Module/Notifications.php:30 -msgid "Invalid request identifier." -msgstr "Identifiant de requête invalide." - -#: ../../Zotlabs/Module/Notifications.php:39 -msgid "Discard" -msgstr "Annuler" - -#: ../../Zotlabs/Module/Notifications.php:103 ../../include/nav.php:191 -msgid "Mark all system notifications seen" -msgstr "Marquer toutes les notifications système comme vues" - -#: ../../Zotlabs/Module/Photos.php:84 -msgid "Page owner information could not be retrieved." -msgstr "Impossible d'obtenir des informations sur le propriétaire de la page." - -#: ../../Zotlabs/Module/Photos.php:99 ../../Zotlabs/Module/Photos.php:743 -#: ../../Zotlabs/Module/Profile_photo.php:114 -#: ../../Zotlabs/Module/Profile_photo.php:206 -#: ../../Zotlabs/Module/Profile_photo.php:294 -#: ../../include/photo/photo_driver.php:718 -msgid "Profile Photos" -msgstr "Photos du profil" - -#: ../../Zotlabs/Module/Photos.php:105 ../../Zotlabs/Module/Photos.php:149 -msgid "Album not found." -msgstr "Album introuvable." - -#: ../../Zotlabs/Module/Photos.php:132 -msgid "Delete Album" -msgstr "Supprimer l'album" - -#: ../../Zotlabs/Module/Photos.php:153 -msgid "" -"Multiple storage folders exist with this album name, but within different " -"directories. Please remove the desired folder or folders using the Files " -"manager" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:210 ../../Zotlabs/Module/Photos.php:1053 -msgid "Delete Photo" -msgstr "Supprimer la photo" - -#: ../../Zotlabs/Module/Photos.php:533 -msgid "No photos selected" -msgstr "Aucune photo selectionnée" - -#: ../../Zotlabs/Module/Photos.php:582 -msgid "Access to this item is restricted." -msgstr "L'accès à l'élément est restreint." - -#: ../../Zotlabs/Module/Photos.php:621 -#, php-format -msgid "%1$.2f MB of %2$.2f MB photo storage used." -msgstr "Vous avez utilisé %1$.2f mégaoctets sur les %2$.2f autorisés pour le stockage des photos." - -#: ../../Zotlabs/Module/Photos.php:624 -#, php-format -msgid "%1$.2f MB photo storage used." -msgstr "%1$.2f méga-octets utilisés pour le stockage des photos." - -#: ../../Zotlabs/Module/Photos.php:660 -msgid "Upload Photos" -msgstr "Téléverser des photos" - -#: ../../Zotlabs/Module/Photos.php:664 -msgid "Enter an album name" -msgstr "Entrer un nom d'album" - -#: ../../Zotlabs/Module/Photos.php:665 -msgid "or select an existing album (doubleclick)" -msgstr "ou sélectionner un album existant (double-clic)" - -#: ../../Zotlabs/Module/Photos.php:666 -msgid "Create a status post for this upload" -msgstr "Créer une publication de statut pour cet envoi" - -#: ../../Zotlabs/Module/Photos.php:667 -msgid "Caption (optional):" -msgstr "Légende (facultative)" - -#: ../../Zotlabs/Module/Photos.php:668 -msgid "Description (optional):" -msgstr "Description (facultative)" - -#: ../../Zotlabs/Module/Photos.php:695 -msgid "Album name could not be decoded" -msgstr "Le nom de l'Album n'a pu être décodé" - -#: ../../Zotlabs/Module/Photos.php:743 -msgid "Contact Photos" -msgstr "Photos de contact" - -#: ../../Zotlabs/Module/Photos.php:766 -msgid "Show Newest First" -msgstr "Les plus récent(e)s en premier" - -#: ../../Zotlabs/Module/Photos.php:768 -msgid "Show Oldest First" -msgstr "Les moins récent(e)s en premier" - -#: ../../Zotlabs/Module/Photos.php:792 ../../Zotlabs/Module/Photos.php:1331 -#: ../../include/widgets.php:1499 -msgid "View Photo" -msgstr "Voir la photo" - -#: ../../Zotlabs/Module/Photos.php:823 ../../include/widgets.php:1516 -msgid "Edit Album" -msgstr "Modifier l'album" - -#: ../../Zotlabs/Module/Photos.php:870 -msgid "Permission denied. Access to this item may be restricted." -msgstr "Permission refusée. L'accès à cet élément peut avoir été restreint." - -#: ../../Zotlabs/Module/Photos.php:872 -msgid "Photo not available" -msgstr "Photo non disponible" - -#: ../../Zotlabs/Module/Photos.php:930 -msgid "Use as profile photo" -msgstr "Utiliser comme photo du profil" - -#: ../../Zotlabs/Module/Photos.php:931 -msgid "Use as cover photo" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:938 -msgid "Private Photo" -msgstr "Photo privée" - -#: ../../Zotlabs/Module/Photos.php:953 -msgid "View Full Size" -msgstr "Voir en taille réelle" - -#: ../../Zotlabs/Module/Photos.php:998 ../../Zotlabs/Module/Admin.php:1437 -#: ../../Zotlabs/Module/Tagrm.php:137 -msgid "Remove" -msgstr "Retirer" - -#: ../../Zotlabs/Module/Photos.php:1032 -msgid "Edit photo" -msgstr "Modifier la photo" - -#: ../../Zotlabs/Module/Photos.php:1034 -msgid "Rotate CW (right)" -msgstr "Rotation horaire (droite)" - -#: ../../Zotlabs/Module/Photos.php:1035 -msgid "Rotate CCW (left)" -msgstr "Rotation anti-horaire (gauche)" - -#: ../../Zotlabs/Module/Photos.php:1038 -msgid "Enter a new album name" -msgstr "Entrer un nouveau nom d'album" - -#: ../../Zotlabs/Module/Photos.php:1039 -msgid "or select an existing one (doubleclick)" -msgstr "ou en sélectionner un existant (double-clic)" - -#: ../../Zotlabs/Module/Photos.php:1042 -msgid "Caption" -msgstr "Titre/légende" - -#: ../../Zotlabs/Module/Photos.php:1044 -msgid "Add a Tag" -msgstr "Ajouter une étiquette" - -#: ../../Zotlabs/Module/Photos.php:1048 -msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" -msgstr "Exemple : @marc, @Barbara_Jensen, @charles@exemple.com, #Ile_de_France, #marathon" - -#: ../../Zotlabs/Module/Photos.php:1051 -msgid "Flag as adult in album view" -msgstr "Marquer comme \"adulte\" dans l'affichage de l'album" - -#: ../../Zotlabs/Module/Photos.php:1070 ../../Zotlabs/Lib/ThreadItem.php:261 -msgid "I like this (toggle)" -msgstr "J'aime (oui/non)" - -#: ../../Zotlabs/Module/Photos.php:1071 ../../Zotlabs/Lib/ThreadItem.php:262 -msgid "I don't like this (toggle)" -msgstr "Je n'aime pas (oui/non)" - -#: ../../Zotlabs/Module/Photos.php:1073 ../../Zotlabs/Lib/ThreadItem.php:397 -#: ../../include/conversation.php:740 -msgid "Please wait" -msgstr "Merci de patienter" - -#: ../../Zotlabs/Module/Photos.php:1089 ../../Zotlabs/Module/Photos.php:1207 -#: ../../Zotlabs/Lib/ThreadItem.php:707 -msgid "This is you" -msgstr "C'est vous" - -#: ../../Zotlabs/Module/Photos.php:1091 ../../Zotlabs/Module/Photos.php:1209 -#: ../../Zotlabs/Lib/ThreadItem.php:709 ../../include/js_strings.php:6 -msgid "Comment" -msgstr "Commenter" - -#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:574 -msgctxt "title" -msgid "Likes" -msgstr "Aime" - -#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:574 -msgctxt "title" -msgid "Dislikes" -msgstr "N'aime pas" - -#: ../../Zotlabs/Module/Photos.php:1108 ../../include/conversation.php:575 -msgctxt "title" -msgid "Agree" -msgstr "D'accord" - -#: ../../Zotlabs/Module/Photos.php:1108 ../../include/conversation.php:575 -msgctxt "title" -msgid "Disagree" -msgstr "Pas d'accord" - -#: ../../Zotlabs/Module/Photos.php:1108 ../../include/conversation.php:575 -msgctxt "title" -msgid "Abstain" -msgstr "Abstention" - -#: ../../Zotlabs/Module/Photos.php:1109 ../../include/conversation.php:576 -msgctxt "title" -msgid "Attending" -msgstr "Participations" - -#: ../../Zotlabs/Module/Photos.php:1109 ../../include/conversation.php:576 -msgctxt "title" -msgid "Not attending" -msgstr "Non-participations" - -#: ../../Zotlabs/Module/Photos.php:1109 ../../include/conversation.php:576 -msgctxt "title" -msgid "Might attend" -msgstr "Participation possible" - -#: ../../Zotlabs/Module/Photos.php:1126 ../../Zotlabs/Module/Photos.php:1138 -#: ../../Zotlabs/Lib/ThreadItem.php:181 ../../Zotlabs/Lib/ThreadItem.php:193 -#: ../../include/conversation.php:1717 -msgid "View all" -msgstr "Voir tout" - -#: ../../Zotlabs/Module/Photos.php:1130 ../../Zotlabs/Lib/ThreadItem.php:185 -#: ../../include/taxonomy.php:403 ../../include/conversation.php:1741 -#: ../../include/channel.php:1158 -msgctxt "noun" -msgid "Like" -msgid_plural "Likes" -msgstr[0] "Aime" -msgstr[1] "Aime" - -#: ../../Zotlabs/Module/Photos.php:1135 ../../Zotlabs/Lib/ThreadItem.php:190 -#: ../../include/conversation.php:1744 -msgctxt "noun" -msgid "Dislike" -msgid_plural "Dislikes" -msgstr[0] "N'aime pas" -msgstr[1] "N'aime pas" - -#: ../../Zotlabs/Module/Photos.php:1235 -msgid "Photo Tools" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1244 -msgid "In This Photo:" -msgstr "Dans cette photo :" - -#: ../../Zotlabs/Module/Photos.php:1249 -msgid "Map" -msgstr "Carte" - -#: ../../Zotlabs/Module/Photos.php:1257 ../../Zotlabs/Lib/ThreadItem.php:386 -msgctxt "noun" -msgid "Likes" -msgstr "Aime" - -#: ../../Zotlabs/Module/Photos.php:1258 ../../Zotlabs/Lib/ThreadItem.php:387 -msgctxt "noun" -msgid "Dislikes" -msgstr "N'aime pas" - -#: ../../Zotlabs/Module/Photos.php:1263 ../../Zotlabs/Lib/ThreadItem.php:392 -#: ../../include/acl_selectors.php:285 -msgid "Close" -msgstr "Fermer" - -#: ../../Zotlabs/Module/Photos.php:1337 -msgid "View Album" -msgstr "Voir l'album" - -#: ../../Zotlabs/Module/Photos.php:1348 ../../Zotlabs/Module/Photos.php:1361 -#: ../../Zotlabs/Module/Photos.php:1362 -msgid "Recent Photos" -msgstr "Photos récentes" - -#: ../../Zotlabs/Module/Ping.php:265 -msgid "sent you a private message" -msgstr "vous a envoyé un message privé" - -#: ../../Zotlabs/Module/Ping.php:313 -msgid "added your channel" -msgstr "a ajouté votre canal" - -#: ../../Zotlabs/Module/Ping.php:323 -msgid "g A l F d" -msgstr "g A l F d" - -#: ../../Zotlabs/Module/Ping.php:346 -msgid "[today]" -msgstr "[aujourd'hui]" - -#: ../../Zotlabs/Module/Ping.php:355 -msgid "posted an event" -msgstr "a publié un événement" - -#: ../../Zotlabs/Module/Oexchange.php:27 -msgid "Unable to find your hub." -msgstr "Impossible de trouver votre hub." - -#: ../../Zotlabs/Module/Oexchange.php:41 -msgid "Post successful." -msgstr "Publication réussie." - -#: ../../Zotlabs/Module/Openid.php:30 -msgid "OpenID protocol error. No ID returned." -msgstr "Erreur du protocole OpenID. Pas d'ID retourné." - -#: ../../Zotlabs/Module/Openid.php:193 ../../include/auth.php:226 -msgid "Login failed." -msgstr "Échec de la connexion." - -#: ../../Zotlabs/Module/Page.php:133 -msgid "" -"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod " -"tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam," -" quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo " -"consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse " -"cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat " -"non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." -msgstr "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." - -#: ../../Zotlabs/Module/Pconfig.php:26 ../../Zotlabs/Module/Pconfig.php:59 -msgid "This setting requires special processing and editing has been blocked." -msgstr "Ce paramètre nécessité un traitement spécial, les modifications ont été bloquées." - -#: ../../Zotlabs/Module/Pconfig.php:48 -msgid "Configuration Editor" -msgstr "Editeur de configuration" - -#: ../../Zotlabs/Module/Pconfig.php:49 -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 "Attention :modifier certains paramètres peut rendre votre canal inutilisable. Merci d'ignorer cette page à moins d'être suffisamment à l'aise de savoir comment utiliser correctement cette fonctionnalité." - -#: ../../Zotlabs/Module/Pdledit.php:18 -msgid "Layout updated." -msgstr "Mise en page mise à jour." - -#: ../../Zotlabs/Module/Pdledit.php:34 ../../Zotlabs/Module/Pdledit.php:61 -msgid "Edit System Page Description" -msgstr "Modifier la description de la page du système" - -#: ../../Zotlabs/Module/Pdledit.php:56 -msgid "Layout not found." -msgstr "Mise en page introuvable." - -#: ../../Zotlabs/Module/Pdledit.php:62 -msgid "Module Name:" -msgstr "Nom du module :" - -#: ../../Zotlabs/Module/Pdledit.php:63 -msgid "Layout Help" -msgstr "Aide à la mise en page" - -#: ../../Zotlabs/Module/Poke.php:168 ../../Zotlabs/Lib/Apps.php:226 -#: ../../include/conversation.php:960 -msgid "Poke" -msgstr "Tapoter" - -#: ../../Zotlabs/Module/Poke.php:169 -msgid "Poke somebody" -msgstr "Taquiner quelqu'un" - -#: ../../Zotlabs/Module/Poke.php:172 -msgid "Poke/Prod" -msgstr "Tapoter/Encourager" - -#: ../../Zotlabs/Module/Poke.php:173 -msgid "Poke, prod or do other things to somebody" -msgstr "Taquiner, pousser ou faire autre chose à quelqu'un" - -#: ../../Zotlabs/Module/Poke.php:180 -msgid "Recipient" -msgstr "Destinataire" - -#: ../../Zotlabs/Module/Poke.php:181 -msgid "Choose what you wish to do to recipient" -msgstr "Choisir ce que vous voulez faire au destinataire" - -#: ../../Zotlabs/Module/Poke.php:184 ../../Zotlabs/Module/Poke.php:185 -msgid "Make this post private" -msgstr "Rendre cette publication privée" - -#: ../../Zotlabs/Module/Probe.php:30 ../../Zotlabs/Module/Probe.php:34 -#, php-format -msgid "Fetching URL returns error: %1$s" -msgstr "Récupération d'URL échouée : %1$s" - #: ../../Zotlabs/Module/Profiles.php:24 ../../Zotlabs/Module/Profiles.php:189 #: ../../Zotlabs/Module/Profiles.php:246 ../../Zotlabs/Module/Profiles.php:625 msgid "Profile not found." @@ -3277,6 +2201,11 @@ msgstr "Site Internet" msgid "Interests" msgstr "Centres d'intérêt" +#: ../../Zotlabs/Module/Profiles.php:470 ../../Zotlabs/Module/Locs.php:118 +#: ../../Zotlabs/Module/Admin.php:1224 +msgid "Address" +msgstr "Adresse" + #: ../../Zotlabs/Module/Profiles.php:560 msgid "Profile updated." msgstr "Profil mis à jour." @@ -3294,7 +2223,7 @@ msgid "View this profile" msgstr "Voir ce profil" #: ../../Zotlabs/Module/Profiles.php:689 ../../Zotlabs/Module/Profiles.php:771 -#: ../../include/channel.php:959 +#: ../../include/channel.php:998 msgid "Edit visibility" msgstr "Changer la visibilité" @@ -3306,7 +2235,7 @@ msgstr "" msgid "Change cover photo" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:692 ../../include/channel.php:930 +#: ../../Zotlabs/Module/Profiles.php:692 ../../include/channel.php:969 msgid "Change profile photo" msgstr "Changer la photo du profil" @@ -3326,8 +2255,8 @@ msgstr "Supprimer ce profil" msgid "Add profile things" msgstr "Ajouter des éléments de profil" -#: ../../Zotlabs/Module/Profiles.php:697 ../../include/widgets.php:105 -#: ../../include/conversation.php:1526 +#: ../../Zotlabs/Module/Profiles.php:697 ../../include/conversation.php:1541 +#: ../../include/widgets.php:105 msgid "Personal" msgstr "Me concernant" @@ -3467,119 +2396,1097 @@ msgstr "" msgid "My other channels" msgstr "Mes autres canaux" -#: ../../Zotlabs/Module/Profiles.php:767 ../../include/channel.php:955 +#: ../../Zotlabs/Module/Profiles.php:767 ../../include/channel.php:994 msgid "Profile Image" msgstr "Image du profil" #: ../../Zotlabs/Module/Profiles.php:777 ../../include/nav.php:88 -#: ../../include/channel.php:937 +#: ../../include/channel.php:976 msgid "Edit Profiles" msgstr "Modifier les profils" -#: ../../Zotlabs/Module/Profile_photo.php:179 -msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." -msgstr "Shift-rechargez votre page, ou videz le cache du navigateur si la photo ne s'affiche pas immédiatement." - -#: ../../Zotlabs/Module/Profile_photo.php:367 -msgid "Upload Profile Photo" -msgstr "Téléverser une photo de profil" - -#: ../../Zotlabs/Module/Profperm.php:34 ../../Zotlabs/Module/Profperm.php:63 -msgid "Invalid profile identifier." -msgstr "Identifiant de profil invalide." - -#: ../../Zotlabs/Module/Profperm.php:115 -msgid "Profile Visibility Editor" -msgstr "Éditeur de visibilité de profil" - -#: ../../Zotlabs/Module/Profperm.php:117 ../../include/channel.php:1249 -msgid "Profile" -msgstr "Profil" - -#: ../../Zotlabs/Module/Profperm.php:119 -msgid "Click on a contact to add or remove." -msgstr "Cliquer sur un contact pour l'ajouter ou le retirer." - -#: ../../Zotlabs/Module/Profperm.php:128 -msgid "Visible To" -msgstr "Visible par" - -#: ../../Zotlabs/Module/Pubsites.php:22 ../../include/widgets.php:1270 -msgid "Public Hubs" -msgstr "Instances publiques" - -#: ../../Zotlabs/Module/Pubsites.php:25 -msgid "" -"The listed hubs allow public registration for the $Projectname network. All " -"hubs in the network are interlinked so membership on any of them conveys " -"membership in the network as a whole. Some hubs may require subscription or " -"provide tiered service plans. The hub itself may provide " -"additional details." -msgstr "Les sites listés permettent l'enregistrement public de comptes pour le réseau $Projectname. Tous les sites du réseau sont reliés entre eux, être membre d'un site revient à être membre de tous. Certains sites peuvent demander une souscription ou proposer différents niveaux de service. Chaque site peut fournir des détails supplémentaires." - -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Hub URL" -msgstr "URL du site" - -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Access Type" -msgstr "Type d'accès" - -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Registration Policy" -msgstr "Politique d'inscription" - -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Stats" -msgstr "" - -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Software" -msgstr "" - -#: ../../Zotlabs/Module/Pubsites.php:31 ../../Zotlabs/Module/Ratings.php:103 -#: ../../include/conversation.php:959 -msgid "Ratings" -msgstr "Evaluations" - -#: ../../Zotlabs/Module/Pubsites.php:38 -msgid "Rate" -msgstr "Evaluer" - -#: ../../Zotlabs/Module/Rate.php:160 -msgid "Website:" -msgstr "Site web :" - -#: ../../Zotlabs/Module/Rate.php:163 +#: ../../Zotlabs/Module/Import.php:33 #, php-format -msgid "Remote Channel [%s] (not yet known on this site)" -msgstr "Canal distant [%s] (encore inconnu sur ce site)" +msgid "Your service plan only allows %d channels." +msgstr "Votre forfait n'autorise que %d canaux." -#: ../../Zotlabs/Module/Rate.php:164 -msgid "Rating (this information is public)" -msgstr "Evaluation (cette information est publique)" +#: ../../Zotlabs/Module/Import.php:71 ../../Zotlabs/Module/Import_items.php:42 +msgid "Nothing to import." +msgstr "Rien à importer." -#: ../../Zotlabs/Module/Rate.php:165 -msgid "Optionally explain your rating (this information is public)" -msgstr "Explication facultative de votre évaluation (cette information est publique)" +#: ../../Zotlabs/Module/Import.php:95 ../../Zotlabs/Module/Import_items.php:66 +msgid "Unable to download data from old server" +msgstr "Impossible de récupérer les données de l'ancien serveur" -#: ../../Zotlabs/Module/Ratings.php:73 -msgid "No ratings" -msgstr "Pas de note" +#: ../../Zotlabs/Module/Import.php:101 +#: ../../Zotlabs/Module/Import_items.php:72 +msgid "Imported file is empty." +msgstr "Le fichier importé est vide." -#: ../../Zotlabs/Module/Ratings.php:104 -msgid "Rating: " -msgstr "Evaluation :" +#: ../../Zotlabs/Module/Import.php:123 +#: ../../Zotlabs/Module/Import_items.php:88 +#, php-format +msgid "Warning: Database versions differ by %1$d updates." +msgstr "Attention : les versions de bases de données diffèrent de %1$d mises à jour." -#: ../../Zotlabs/Module/Ratings.php:105 -msgid "Website: " -msgstr "Site web :" +#: ../../Zotlabs/Module/Import.php:153 ../../include/import.php:107 +msgid "Cloned channel not found. Import failed." +msgstr "Canal cloné non trouvé. Echec de l'import." -#: ../../Zotlabs/Module/Ratings.php:107 -msgid "Description: " -msgstr "Description :" +#: ../../Zotlabs/Module/Import.php:163 +msgid "No channel. Import failed." +msgstr "Pas de canal. Echec de l'import." + +#: ../../Zotlabs/Module/Import.php:520 +#: ../../include/Import/import_diaspora.php:142 +msgid "Import completed." +msgstr "L'import est terminé." + +#: ../../Zotlabs/Module/Import.php:542 +msgid "You must be logged in to use this feature." +msgstr "Vous devez vous connecter pour utiliser cette fonctionnalité." + +#: ../../Zotlabs/Module/Import.php:547 +msgid "Import Channel" +msgstr "Importation de canal" + +#: ../../Zotlabs/Module/Import.php:548 +msgid "" +"Use this form to import an existing channel from a different server/hub. You" +" may retrieve the channel identity from the old server/hub via the network " +"or provide an export file." +msgstr "Utilisez ce formulaire pour importer un canal existant sur un autre serveur. Vous pouvez récupérer l'identité du canal sur l'ancien serveur directement par le réseau, ou bien fournir un fichier d'export/import." + +#: ../../Zotlabs/Module/Import.php:549 +#: ../../Zotlabs/Module/Import_items.php:121 +msgid "File to Upload" +msgstr "Fichier à envoyer" + +#: ../../Zotlabs/Module/Import.php:550 +msgid "Or provide the old server/hub details" +msgstr "Ou fournissez les détails de l'ancien serveur/hub" + +#: ../../Zotlabs/Module/Import.php:551 +msgid "Your old identity address (xyz@example.com)" +msgstr "Votre ancienne identité (zyx@exemple.com)" + +#: ../../Zotlabs/Module/Import.php:552 +msgid "Your old login email address" +msgstr "Votre ancienne adresse de courriel" + +#: ../../Zotlabs/Module/Import.php:553 +msgid "Your old login password" +msgstr "Votre ancien mot de passe" + +#: ../../Zotlabs/Module/Import.php:554 +msgid "" +"For either option, please choose whether to make this hub your new primary " +"address, or whether your old location should continue this role. You will be" +" able to post from either location, but only one can be marked as the " +"primary location for files, photos, and media." +msgstr "Quelle que soit l'option choisie, merci de décider si ce hub sera votre nouvelle adresse primaire, ou si votre ancien hub continuera à jouer ce rôle. Vous pourrez publier depuis l'emplacement de votre choix, mais une seule peut être déclarée comme stockage primaire de vos fichiers/photos/media." + +#: ../../Zotlabs/Module/Import.php:555 +msgid "Make this hub my primary location" +msgstr "Faire de ce hub mon emplacement primaire" + +#: ../../Zotlabs/Module/Import.php:556 +msgid "" +"Import existing posts if possible (experimental - limited by available " +"memory" +msgstr "Importer les publications existantes si possible (expérimental - limité par la mémoire disponible)" + +#: ../../Zotlabs/Module/Import.php:557 +msgid "" +"This process may take several minutes to complete. Please submit the form " +"only once and leave this page open until finished." +msgstr "Ce processus peut prendre plusieurs minutes. Merci de ne valider le formulaire qu'une seule fois et de laisser cette page ouverte jusqu'à la fin." + +#: ../../Zotlabs/Module/Home.php:74 ../../Zotlabs/Module/Home.php:82 +#: ../../Zotlabs/Module/Siteinfo.php:48 +msgid "$Projectname" +msgstr "$Projectname" + +#: ../../Zotlabs/Module/Home.php:92 +#, php-format +msgid "Welcome to %s" +msgstr "Bienvenue sur %s" + +#: ../../Zotlabs/Module/Item.php:179 +msgid "Unable to locate original post." +msgstr "Impossible de localiser la publication initiale." + +#: ../../Zotlabs/Module/Item.php:432 +msgid "Empty post discarded." +msgstr "Publication vide annulée." + +#: ../../Zotlabs/Module/Item.php:472 +msgid "Executable content type not permitted to this channel." +msgstr "Les contenus de type 'exécutable' ne sont pas autorisés sur ce canal." + +#: ../../Zotlabs/Module/Item.php:856 +msgid "Duplicate post suppressed." +msgstr "Publication en doublon supprimée." + +#: ../../Zotlabs/Module/Item.php:989 +msgid "System error. Post not saved." +msgstr "Erreur système. Publication non sauvegardée." + +#: ../../Zotlabs/Module/Item.php:1242 +msgid "Unable to obtain post information from database." +msgstr "Impossible d'obtenir les informations de publication depuis la base de données." + +#: ../../Zotlabs/Module/Item.php:1249 +#, php-format +msgid "You have reached your limit of %1$.0f top level posts." +msgstr "Vous avez atteint votre limite de %1$.0f contributions \"racines\"." + +#: ../../Zotlabs/Module/Item.php:1256 +#, php-format +msgid "You have reached your limit of %1$.0f webpages." +msgstr "Vous avez atteint votre limite de %1$.0f pages web." + +#: ../../Zotlabs/Module/Photos.php:82 +msgid "Page owner information could not be retrieved." +msgstr "Impossible d'obtenir des informations sur le propriétaire de la page." + +#: ../../Zotlabs/Module/Photos.php:97 ../../Zotlabs/Module/Photos.php:741 +#: ../../Zotlabs/Module/Profile_photo.php:115 +#: ../../Zotlabs/Module/Profile_photo.php:212 +#: ../../Zotlabs/Module/Profile_photo.php:311 +#: ../../include/photo/photo_driver.php:718 +msgid "Profile Photos" +msgstr "Photos du profil" + +#: ../../Zotlabs/Module/Photos.php:103 ../../Zotlabs/Module/Photos.php:147 +msgid "Album not found." +msgstr "Album introuvable." + +#: ../../Zotlabs/Module/Photos.php:130 +msgid "Delete Album" +msgstr "Supprimer l'album" + +#: ../../Zotlabs/Module/Photos.php:151 +msgid "" +"Multiple storage folders exist with this album name, but within different " +"directories. Please remove the desired folder or folders using the Files " +"manager" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:208 ../../Zotlabs/Module/Photos.php:1051 +msgid "Delete Photo" +msgstr "Supprimer la photo" + +#: ../../Zotlabs/Module/Photos.php:531 +msgid "No photos selected" +msgstr "Aucune photo selectionnée" + +#: ../../Zotlabs/Module/Photos.php:580 +msgid "Access to this item is restricted." +msgstr "L'accès à l'élément est restreint." + +#: ../../Zotlabs/Module/Photos.php:619 +#, php-format +msgid "%1$.2f MB of %2$.2f MB photo storage used." +msgstr "Vous avez utilisé %1$.2f mégaoctets sur les %2$.2f autorisés pour le stockage des photos." + +#: ../../Zotlabs/Module/Photos.php:622 +#, php-format +msgid "%1$.2f MB photo storage used." +msgstr "%1$.2f méga-octets utilisés pour le stockage des photos." + +#: ../../Zotlabs/Module/Photos.php:658 +msgid "Upload Photos" +msgstr "Téléverser des photos" + +#: ../../Zotlabs/Module/Photos.php:662 +msgid "Enter an album name" +msgstr "Entrer un nom d'album" + +#: ../../Zotlabs/Module/Photos.php:663 +msgid "or select an existing album (doubleclick)" +msgstr "ou sélectionner un album existant (double-clic)" + +#: ../../Zotlabs/Module/Photos.php:664 +msgid "Create a status post for this upload" +msgstr "Créer une publication de statut pour cet envoi" + +#: ../../Zotlabs/Module/Photos.php:665 +msgid "Caption (optional):" +msgstr "Légende (facultative)" + +#: ../../Zotlabs/Module/Photos.php:666 +msgid "Description (optional):" +msgstr "Description (facultative)" + +#: ../../Zotlabs/Module/Photos.php:693 +msgid "Album name could not be decoded" +msgstr "Le nom de l'Album n'a pu être décodé" + +#: ../../Zotlabs/Module/Photos.php:741 +msgid "Contact Photos" +msgstr "Photos de contact" + +#: ../../Zotlabs/Module/Photos.php:764 +msgid "Show Newest First" +msgstr "Les plus récent(e)s en premier" + +#: ../../Zotlabs/Module/Photos.php:766 +msgid "Show Oldest First" +msgstr "Les moins récent(e)s en premier" + +#: ../../Zotlabs/Module/Photos.php:790 ../../Zotlabs/Module/Photos.php:1329 +#: ../../Zotlabs/Module/Embedphotos.php:141 ../../include/widgets.php:1593 +msgid "View Photo" +msgstr "Voir la photo" + +#: ../../Zotlabs/Module/Photos.php:821 +#: ../../Zotlabs/Module/Embedphotos.php:157 ../../include/widgets.php:1610 +msgid "Edit Album" +msgstr "Modifier l'album" + +#: ../../Zotlabs/Module/Photos.php:868 +msgid "Permission denied. Access to this item may be restricted." +msgstr "Permission refusée. L'accès à cet élément peut avoir été restreint." + +#: ../../Zotlabs/Module/Photos.php:870 +msgid "Photo not available" +msgstr "Photo non disponible" + +#: ../../Zotlabs/Module/Photos.php:928 +msgid "Use as profile photo" +msgstr "Utiliser comme photo du profil" + +#: ../../Zotlabs/Module/Photos.php:929 +msgid "Use as cover photo" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:936 +msgid "Private Photo" +msgstr "Photo privée" + +#: ../../Zotlabs/Module/Photos.php:951 +msgid "View Full Size" +msgstr "Voir en taille réelle" + +#: ../../Zotlabs/Module/Photos.php:996 ../../Zotlabs/Module/Admin.php:1437 +#: ../../Zotlabs/Module/Tagrm.php:137 +msgid "Remove" +msgstr "Retirer" + +#: ../../Zotlabs/Module/Photos.php:1030 +msgid "Edit photo" +msgstr "Modifier la photo" + +#: ../../Zotlabs/Module/Photos.php:1032 +msgid "Rotate CW (right)" +msgstr "Rotation horaire (droite)" + +#: ../../Zotlabs/Module/Photos.php:1033 +msgid "Rotate CCW (left)" +msgstr "Rotation anti-horaire (gauche)" + +#: ../../Zotlabs/Module/Photos.php:1036 +msgid "Enter a new album name" +msgstr "Entrer un nouveau nom d'album" + +#: ../../Zotlabs/Module/Photos.php:1037 +msgid "or select an existing one (doubleclick)" +msgstr "ou en sélectionner un existant (double-clic)" + +#: ../../Zotlabs/Module/Photos.php:1040 +msgid "Caption" +msgstr "Titre/légende" + +#: ../../Zotlabs/Module/Photos.php:1042 +msgid "Add a Tag" +msgstr "Ajouter une étiquette" + +#: ../../Zotlabs/Module/Photos.php:1046 +msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" +msgstr "Exemple : @marc, @Barbara_Jensen, @charles@exemple.com, #Ile_de_France, #marathon" + +#: ../../Zotlabs/Module/Photos.php:1049 +msgid "Flag as adult in album view" +msgstr "Marquer comme \"adulte\" dans l'affichage de l'album" + +#: ../../Zotlabs/Module/Photos.php:1068 ../../Zotlabs/Lib/ThreadItem.php:261 +msgid "I like this (toggle)" +msgstr "J'aime (oui/non)" + +#: ../../Zotlabs/Module/Photos.php:1069 ../../Zotlabs/Lib/ThreadItem.php:262 +msgid "I don't like this (toggle)" +msgstr "Je n'aime pas (oui/non)" + +#: ../../Zotlabs/Module/Photos.php:1071 ../../Zotlabs/Lib/ThreadItem.php:397 +#: ../../include/conversation.php:743 +msgid "Please wait" +msgstr "Merci de patienter" + +#: ../../Zotlabs/Module/Photos.php:1087 ../../Zotlabs/Module/Photos.php:1205 +#: ../../Zotlabs/Lib/ThreadItem.php:707 +msgid "This is you" +msgstr "C'est vous" + +#: ../../Zotlabs/Module/Photos.php:1089 ../../Zotlabs/Module/Photos.php:1207 +#: ../../Zotlabs/Lib/ThreadItem.php:709 ../../include/js_strings.php:6 +msgid "Comment" +msgstr "Commenter" + +#: ../../Zotlabs/Module/Photos.php:1105 ../../include/conversation.php:577 +msgctxt "title" +msgid "Likes" +msgstr "Aime" + +#: ../../Zotlabs/Module/Photos.php:1105 ../../include/conversation.php:577 +msgctxt "title" +msgid "Dislikes" +msgstr "N'aime pas" + +#: ../../Zotlabs/Module/Photos.php:1106 ../../include/conversation.php:578 +msgctxt "title" +msgid "Agree" +msgstr "D'accord" + +#: ../../Zotlabs/Module/Photos.php:1106 ../../include/conversation.php:578 +msgctxt "title" +msgid "Disagree" +msgstr "Pas d'accord" + +#: ../../Zotlabs/Module/Photos.php:1106 ../../include/conversation.php:578 +msgctxt "title" +msgid "Abstain" +msgstr "Abstention" + +#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:579 +msgctxt "title" +msgid "Attending" +msgstr "Participations" + +#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:579 +msgctxt "title" +msgid "Not attending" +msgstr "Non-participations" + +#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:579 +msgctxt "title" +msgid "Might attend" +msgstr "Participation possible" + +#: ../../Zotlabs/Module/Photos.php:1124 ../../Zotlabs/Module/Photos.php:1136 +#: ../../Zotlabs/Lib/ThreadItem.php:181 ../../Zotlabs/Lib/ThreadItem.php:193 +#: ../../include/conversation.php:1738 +msgid "View all" +msgstr "Voir tout" + +#: ../../Zotlabs/Module/Photos.php:1128 ../../Zotlabs/Lib/ThreadItem.php:185 +#: ../../include/taxonomy.php:403 ../../include/channel.php:1198 +#: ../../include/conversation.php:1762 +msgctxt "noun" +msgid "Like" +msgid_plural "Likes" +msgstr[0] "Aime" +msgstr[1] "Aime" + +#: ../../Zotlabs/Module/Photos.php:1133 ../../Zotlabs/Lib/ThreadItem.php:190 +#: ../../include/conversation.php:1765 +msgctxt "noun" +msgid "Dislike" +msgid_plural "Dislikes" +msgstr[0] "N'aime pas" +msgstr[1] "N'aime pas" + +#: ../../Zotlabs/Module/Photos.php:1233 +msgid "Photo Tools" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1242 +msgid "In This Photo:" +msgstr "Dans cette photo :" + +#: ../../Zotlabs/Module/Photos.php:1247 +msgid "Map" +msgstr "Carte" + +#: ../../Zotlabs/Module/Photos.php:1255 ../../Zotlabs/Lib/ThreadItem.php:386 +msgctxt "noun" +msgid "Likes" +msgstr "Aime" + +#: ../../Zotlabs/Module/Photos.php:1256 ../../Zotlabs/Lib/ThreadItem.php:387 +msgctxt "noun" +msgid "Dislikes" +msgstr "N'aime pas" + +#: ../../Zotlabs/Module/Photos.php:1261 ../../Zotlabs/Lib/ThreadItem.php:392 +#: ../../include/acl_selectors.php:283 +msgid "Close" +msgstr "Fermer" + +#: ../../Zotlabs/Module/Photos.php:1335 +msgid "View Album" +msgstr "Voir l'album" + +#: ../../Zotlabs/Module/Photos.php:1346 ../../Zotlabs/Module/Photos.php:1359 +#: ../../Zotlabs/Module/Photos.php:1360 +msgid "Recent Photos" +msgstr "Photos récentes" + +#: ../../Zotlabs/Module/Lockview.php:75 +msgid "Remote privacy information not available." +msgstr "Les informations distantes de confidentialité ne sont pas disponibles." + +#: ../../Zotlabs/Module/Lockview.php:96 +msgid "Visible to:" +msgstr "Visible par :" + +#: ../../Zotlabs/Module/Import_items.php:104 +msgid "Import completed" +msgstr "L'import est terminé." + +#: ../../Zotlabs/Module/Import_items.php:119 +msgid "Import Items" +msgstr "Importer" + +#: ../../Zotlabs/Module/Import_items.php:120 +msgid "" +"Use this form to import existing posts and content from an export file." +msgstr "Utiliser ce formulaire pour importer des publications et du contenu existant d'un fichier d'export." + +#: ../../Zotlabs/Module/Invite.php:29 +msgid "Total invitation limit exceeded." +msgstr "Limite du nombre total d'invitation dépassée." + +#: ../../Zotlabs/Module/Invite.php:53 +#, php-format +msgid "%s : Not a valid email address." +msgstr "%s : adresse courriel invalide." + +#: ../../Zotlabs/Module/Invite.php:63 +msgid "Please join us on $Projectname" +msgstr "Rejoignez-nous sur $Projectname" + +#: ../../Zotlabs/Module/Invite.php:74 +msgid "Invitation limit exceeded. Please contact your site administrator." +msgstr "Limite d'invitations dépassée. Merci de contacter l'administration de votre site." + +#: ../../Zotlabs/Module/Invite.php:79 +#, php-format +msgid "%s : Message delivery failed." +msgstr "%s : Échec de distribution du message." + +#: ../../Zotlabs/Module/Invite.php:83 +#, php-format +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "%d message envoyé." +msgstr[1] "%d messages envoyés." + +#: ../../Zotlabs/Module/Invite.php:102 +msgid "You have no more invitations available" +msgstr "Vous ne disposez plus d'aucune invitation" + +#: ../../Zotlabs/Module/Invite.php:133 +msgid "Send invitations" +msgstr "Envoyer des invitations" + +#: ../../Zotlabs/Module/Invite.php:134 +msgid "Enter email addresses, one per line:" +msgstr "Entrez les adresses de courriel, une par ligne :" + +#: ../../Zotlabs/Module/Invite.php:135 ../../Zotlabs/Module/Mail.php:241 +msgid "Your message:" +msgstr "Votre message :" + +#: ../../Zotlabs/Module/Invite.php:136 +msgid "Please join my community on $Projectname." +msgstr "Rejoignez ma communauté sur $Projectname." + +#: ../../Zotlabs/Module/Invite.php:138 +msgid "You will need to supply this invitation code:" +msgstr "Vous devrez fournir le code suivant :" + +#: ../../Zotlabs/Module/Invite.php:139 +msgid "" +"1. Register at any $Projectname location (they are all inter-connected)" +msgstr "1. Enregistrez-vous sur n'importe quel serveur $Projectname (ils sont tous inter-connectés)" + +#: ../../Zotlabs/Module/Invite.php:141 +msgid "2. Enter my $Projectname network address into the site searchbar." +msgstr "2. Saisissez l'adresse de mon canal $Projectname dans la barre de recherche du site." + +#: ../../Zotlabs/Module/Invite.php:142 +msgid "or visit" +msgstr "ou rendez-vous sur" + +#: ../../Zotlabs/Module/Invite.php:144 +msgid "3. Click [Connect]" +msgstr "3. Cliquez sur [Ajouter]" + +#: ../../Zotlabs/Module/Locs.php:25 ../../Zotlabs/Module/Locs.php:54 +msgid "Location not found." +msgstr "Emplacement introuvable." + +#: ../../Zotlabs/Module/Locs.php:62 +msgid "Location lookup failed." +msgstr "Echec de la recherche de l'emplacement." + +#: ../../Zotlabs/Module/Locs.php:66 +msgid "" +"Please select another location to become primary before removing the primary" +" location." +msgstr "Merci de sélectionner un autre emplacement comme nouvel emplacement primaire avant de supprimer l'emplacement primaire actuel." + +#: ../../Zotlabs/Module/Locs.php:95 +msgid "Syncing locations" +msgstr "Synchronisation des emplacements" + +#: ../../Zotlabs/Module/Locs.php:105 +msgid "No locations found." +msgstr "Emplacement(s) introuvable." + +#: ../../Zotlabs/Module/Locs.php:116 +msgid "Manage Channel Locations" +msgstr "Gérer les emplacements des canaux" + +#: ../../Zotlabs/Module/Locs.php:119 +msgid "Primary" +msgstr "" + +#: ../../Zotlabs/Module/Locs.php:120 ../../Zotlabs/Module/Menu.php:113 +msgid "Drop" +msgstr "Supprimer" + +#: ../../Zotlabs/Module/Locs.php:122 +msgid "Sync Now" +msgstr "" + +#: ../../Zotlabs/Module/Locs.php:123 +msgid "Please wait several minutes between consecutive operations." +msgstr "Merci d'attendre plusieurs minutes entre opérations successives." + +#: ../../Zotlabs/Module/Locs.php:124 +msgid "" +"When possible, drop a location by logging into that website/hub and removing" +" your channel." +msgstr "Quand c'est possible, abandonnez un emplacement en vous connectant sur le site/hub et en supprimant votre canal." + +#: ../../Zotlabs/Module/Locs.php:125 +msgid "Use this form to drop the location if the hub is no longer operating." +msgstr "Utilisez ce formulaire pour abandonner l'emplacement si le hub n'est plus actif." + +#: ../../Zotlabs/Module/Magic.php:71 +msgid "Hub not found." +msgstr "Hub introuvable." + +#: ../../Zotlabs/Module/Mail.php:38 +msgid "Unable to lookup recipient." +msgstr "Impossible de localiser le destinataire." + +#: ../../Zotlabs/Module/Mail.php:45 +msgid "Unable to communicate with requested channel." +msgstr "Impossible de communiquer avec le canal demandé." + +#: ../../Zotlabs/Module/Mail.php:52 +msgid "Cannot verify requested channel." +msgstr "Impossible de vérifier le canal demandé." + +#: ../../Zotlabs/Module/Mail.php:70 +msgid "Selected channel has private message restrictions. Send failed." +msgstr "Le canal choisi a des restrictions quant aux messages privés. L'envoi a échoué." + +#: ../../Zotlabs/Module/Mail.php:135 +msgid "Messages" +msgstr "Messages" + +#: ../../Zotlabs/Module/Mail.php:170 +msgid "Message recalled." +msgstr "Message rappelé." + +#: ../../Zotlabs/Module/Mail.php:183 +msgid "Conversation removed." +msgstr "Conversation supprimée." + +#: ../../Zotlabs/Module/Mail.php:198 ../../Zotlabs/Module/Mail.php:307 +msgid "Expires YYYY-MM-DD HH:MM" +msgstr "Expire le YYYY-MM-DD à HH:MM" + +#: ../../Zotlabs/Module/Mail.php:226 +msgid "Requested channel is not in this network" +msgstr "Le canal demandé n'est pas sur ce réseau" + +#: ../../Zotlabs/Module/Mail.php:234 +msgid "Send Private Message" +msgstr "Envoyer un message privé" + +#: ../../Zotlabs/Module/Mail.php:235 ../../Zotlabs/Module/Mail.php:360 +msgid "To:" +msgstr "À :" + +#: ../../Zotlabs/Module/Mail.php:238 ../../Zotlabs/Module/Mail.php:362 +msgid "Subject:" +msgstr "Objet :" + +#: ../../Zotlabs/Module/Mail.php:243 ../../Zotlabs/Module/Mail.php:368 +#: ../../include/conversation.php:1231 +msgid "Attach file" +msgstr "Joindre un fichier" + +#: ../../Zotlabs/Module/Mail.php:245 +msgid "Send" +msgstr "Envoyer" + +#: ../../Zotlabs/Module/Mail.php:248 ../../Zotlabs/Module/Mail.php:373 +#: ../../include/conversation.php:1266 +msgid "Set expiration date" +msgstr "Définir la date d'expiration" + +#: ../../Zotlabs/Module/Mail.php:332 +msgid "Delete message" +msgstr "Supprimer le message" + +#: ../../Zotlabs/Module/Mail.php:333 +msgid "Delivery report" +msgstr "Rapport de distribution" + +#: ../../Zotlabs/Module/Mail.php:334 +msgid "Recall message" +msgstr "Rappeler le message" + +#: ../../Zotlabs/Module/Mail.php:336 +msgid "Message has been recalled." +msgstr "Le message a été rappelé." + +#: ../../Zotlabs/Module/Mail.php:353 +msgid "Delete Conversation" +msgstr "Supprimer la conversation" + +#: ../../Zotlabs/Module/Mail.php:355 +msgid "" +"No secure communications available. You may be able to " +"respond from the sender's profile page." +msgstr "Aucune communication sécurisée n'est possible. Vous pourrez peut-être répondre depuis la page de profil de l'émetteur." + +#: ../../Zotlabs/Module/Mail.php:359 +msgid "Send Reply" +msgstr "Envoyer la réponse" + +#: ../../Zotlabs/Module/Mail.php:364 +#, php-format +msgid "Your message for %s (%s):" +msgstr "Votre message pour %s (%s) :" + +#: ../../Zotlabs/Module/Manage.php:136 +#: ../../Zotlabs/Module/New_channel.php:121 +#, php-format +msgid "You have created %1$.0f of %2$.0f allowed channels." +msgstr "Vous avez créé %1$.0f des %2$.0f canaux autorisés." + +#: ../../Zotlabs/Module/Manage.php:143 +msgid "Create a new channel" +msgstr "Créer un nouveau canal" + +#: ../../Zotlabs/Module/Manage.php:164 ../../Zotlabs/Lib/Apps.php:214 +#: ../../include/nav.php:208 +msgid "Channel Manager" +msgstr "Gérer les canaux" + +#: ../../Zotlabs/Module/Manage.php:165 +msgid "Current Channel" +msgstr "Canal actif" + +#: ../../Zotlabs/Module/Manage.php:167 +msgid "Switch to one of your channels by selecting it." +msgstr "Pour changer de canal, sélectionnez-en un" + +#: ../../Zotlabs/Module/Manage.php:168 +msgid "Default Channel" +msgstr "Canal par défaut" + +#: ../../Zotlabs/Module/Manage.php:169 +msgid "Make Default" +msgstr "Définir comme défaut" + +#: ../../Zotlabs/Module/Manage.php:172 +#, php-format +msgid "%d new messages" +msgstr "%d nouveaux messages" + +#: ../../Zotlabs/Module/Manage.php:173 +#, php-format +msgid "%d new introductions" +msgstr "%d nouvelles présentations" + +#: ../../Zotlabs/Module/Manage.php:175 +msgid "Delegated Channel" +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:49 +msgid "Unable to update menu." +msgstr "Impossible de mettre le menu à jour." + +#: ../../Zotlabs/Module/Menu.php:60 +msgid "Unable to create menu." +msgstr "Impossible de créer le menu." + +#: ../../Zotlabs/Module/Menu.php:98 ../../Zotlabs/Module/Menu.php:110 +msgid "Menu Name" +msgstr "Nom du menu" + +#: ../../Zotlabs/Module/Menu.php:98 +msgid "Unique name (not visible on webpage) - required" +msgstr "Nom unique (non visible sur la page web) - requis" + +#: ../../Zotlabs/Module/Menu.php:99 ../../Zotlabs/Module/Menu.php:111 +msgid "Menu Title" +msgstr "Titre du menu" + +#: ../../Zotlabs/Module/Menu.php:99 +msgid "Visible on webpage - leave empty for no title" +msgstr "Visible pour la page web - laisser vide pour qu'il n'y ait pas de titre" + +#: ../../Zotlabs/Module/Menu.php:100 +msgid "Allow Bookmarks" +msgstr "Autoriser l'usage de favoris" + +#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 +msgid "Menu may be used to store saved bookmarks" +msgstr "Le menu pourra être utilisé pour stocker des favoris" + +#: ../../Zotlabs/Module/Menu.php:101 ../../Zotlabs/Module/Menu.php:159 +msgid "Submit and proceed" +msgstr "Valider et continuer" + +#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2239 +msgid "Menus" +msgstr "Menus" + +#: ../../Zotlabs/Module/Menu.php:117 +msgid "Bookmarks allowed" +msgstr "Favoris autorisés" + +#: ../../Zotlabs/Module/Menu.php:119 +msgid "Delete this menu" +msgstr "Supprimer ce menu" + +#: ../../Zotlabs/Module/Menu.php:120 ../../Zotlabs/Module/Menu.php:154 +msgid "Edit menu contents" +msgstr "Modifier le contenu du menu" + +#: ../../Zotlabs/Module/Menu.php:121 +msgid "Edit this menu" +msgstr "Modifier ce menu" + +#: ../../Zotlabs/Module/Menu.php:136 +msgid "Menu could not be deleted." +msgstr "Impossible de supprimer le menu." + +#: ../../Zotlabs/Module/Menu.php:144 ../../Zotlabs/Module/Mitem.php:28 +msgid "Menu not found." +msgstr "Menu introuvable." + +#: ../../Zotlabs/Module/Menu.php:149 +msgid "Edit Menu" +msgstr "Modifier le menu" + +#: ../../Zotlabs/Module/Menu.php:153 +msgid "Add or remove entries to this menu" +msgstr "Ajouter/supprimer des entrées à ce menu" + +#: ../../Zotlabs/Module/Menu.php:155 +msgid "Menu name" +msgstr "Nom du menu" + +#: ../../Zotlabs/Module/Menu.php:155 +msgid "Must be unique, only seen by you" +msgstr "Doit être unique, ne sera vu que par vous" + +#: ../../Zotlabs/Module/Menu.php:156 +msgid "Menu title" +msgstr "Titre du menu" + +#: ../../Zotlabs/Module/Menu.php:156 +msgid "Menu title as seen by others" +msgstr "Titre du menu tel que vu par les visiteurs" + +#: ../../Zotlabs/Module/Menu.php:157 +msgid "Allow bookmarks" +msgstr "Autoriser l'usage de favoris" + +#: ../../Zotlabs/Module/Menu.php:166 ../../Zotlabs/Module/Mitem.php:120 +#: ../../Zotlabs/Module/Xchan.php:41 +msgid "Not found." +msgstr "Introuvable." + +#: ../../Zotlabs/Module/Lostpass.php:19 +msgid "No valid account found." +msgstr "Aucun compte valide trouvé." + +#: ../../Zotlabs/Module/Lostpass.php:33 +msgid "Password reset request issued. Check your email." +msgstr "Demande de réinitialisation du mot de passe envoyée. Vérifiez vos courriels." + +#: ../../Zotlabs/Module/Lostpass.php:39 ../../Zotlabs/Module/Lostpass.php:107 +#, php-format +msgid "Site Member (%s)" +msgstr "Membre du site (%s)" + +#: ../../Zotlabs/Module/Lostpass.php:44 +#, php-format +msgid "Password reset requested at %s" +msgstr "Demande de réinitialisation du mot de passe sur %s" + +#: ../../Zotlabs/Module/Lostpass.php:67 +msgid "" +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." +msgstr "La demande n'a pas pu être vérifiée. (Peut-être l'avez vous déjà utilisée.) La réinitialisation a échoué." + +#: ../../Zotlabs/Module/Lostpass.php:90 ../../boot.php:1712 +msgid "Password Reset" +msgstr "Réinitialiser le mot de passe" + +#: ../../Zotlabs/Module/Lostpass.php:91 +msgid "Your password has been reset as requested." +msgstr "Votre mot de passe a bien été réinitialisé." + +#: ../../Zotlabs/Module/Lostpass.php:92 +msgid "Your new password is" +msgstr "Votre nouveau mot de passe est" + +#: ../../Zotlabs/Module/Lostpass.php:93 +msgid "Save or copy your new password - and then" +msgstr "Enregistrez ou copiez votre nouveau mot de passe, puis" + +#: ../../Zotlabs/Module/Lostpass.php:94 +msgid "click here to login" +msgstr "cliquez ici pour vous connecter" + +#: ../../Zotlabs/Module/Lostpass.php:95 +msgid "" +"Your password may be changed from the Settings page after " +"successful login." +msgstr "Votre mot de passe peut être changé depuis la page des Paramètres une fois connecté." + +#: ../../Zotlabs/Module/Lostpass.php:112 +#, php-format +msgid "Your password has changed at %s" +msgstr "Votre mot de passe de %s a été changé" + +#: ../../Zotlabs/Module/Lostpass.php:127 +msgid "Forgot your Password?" +msgstr "Mot de passe oublié ?" + +#: ../../Zotlabs/Module/Lostpass.php:128 +msgid "" +"Enter your email address and submit to have your password reset. Then check " +"your email for further instructions." +msgstr "Saisissez votre adresse de courriel, et validez, pour réinitialiser votre mot de passe. Vérifiez ensuite votre boîte aux lettres pour la suite des instructions." + +#: ../../Zotlabs/Module/Lostpass.php:129 +msgid "Email Address" +msgstr "Adresse de courriel" + +#: ../../Zotlabs/Module/Lostpass.php:130 +msgid "Reset" +msgstr "Réinitialiser" + +#: ../../Zotlabs/Module/Mood.php:67 ../../include/conversation.php:260 +#, php-format +msgctxt "mood" +msgid "%1$s is %2$s" +msgstr "%1$s est %2$s" + +#: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Lib/Apps.php:227 +msgid "Mood" +msgstr "Humeur" + +#: ../../Zotlabs/Module/Mood.php:136 +msgid "Set your current mood and tell your friends" +msgstr "Indiquez votre humeur du moment à vos amis" + +#: ../../Zotlabs/Module/Network.php:94 +msgid "No such group" +msgstr "Groupe introuvable" + +#: ../../Zotlabs/Module/Network.php:134 +msgid "No such channel" +msgstr "Canal introuvable" + +#: ../../Zotlabs/Module/Network.php:139 +msgid "forum" +msgstr "forum" + +#: ../../Zotlabs/Module/Network.php:151 +msgid "Search Results For:" +msgstr "Résultats de recherche pour :" + +#: ../../Zotlabs/Module/Network.php:215 +msgid "Privacy group is empty" +msgstr "Groupe d'accès vide" + +#: ../../Zotlabs/Module/Network.php:224 +msgid "Privacy group: " +msgstr "Groupe d'accès :" + +#: ../../Zotlabs/Module/Network.php:250 +msgid "Invalid connection." +msgstr "Contact non valide." + +#: ../../Zotlabs/Module/Notify.php:57 +#: ../../Zotlabs/Module/Notifications.php:98 +msgid "No more system notifications." +msgstr "Pas d'autre notification du système." + +#: ../../Zotlabs/Module/Notify.php:61 +#: ../../Zotlabs/Module/Notifications.php:102 +msgid "System Notifications" +msgstr "Notifications du système" + +#: ../../Zotlabs/Module/Match.php:26 +msgid "Profile Match" +msgstr "Profils similaires" + +#: ../../Zotlabs/Module/Match.php:35 +msgid "No keywords to match. Please add keywords to your default profile." +msgstr "Aucun mot-clef à comparer. Merci d'ajouter des mots-clefs à votre profil par défaut." + +#: ../../Zotlabs/Module/Match.php:67 +msgid "is interested in:" +msgstr "s'intéresse à :" + +#: ../../Zotlabs/Module/Match.php:74 +msgid "No matches" +msgstr "Pas de correspondance" + +#: ../../Zotlabs/Module/Channel.php:40 +msgid "Posts and comments" +msgstr "" + +#: ../../Zotlabs/Module/Channel.php:41 +msgid "Only posts" +msgstr "" + +#: ../../Zotlabs/Module/Channel.php:101 +msgid "Insufficient permissions. Request redirected to profile page." +msgstr "Permissions insuffisantes. Demande redirigée vers la page du profil." + +#: ../../Zotlabs/Module/Mitem.php:52 +msgid "Unable to create element." +msgstr "Impossible de créer l'entrée." + +#: ../../Zotlabs/Module/Mitem.php:76 +msgid "Unable to update menu element." +msgstr "Impossible de mettre à jour l'entrée de menu." + +#: ../../Zotlabs/Module/Mitem.php:92 +msgid "Unable to add menu element." +msgstr "Impossible d'ajouter l'entrée de menu." + +#: ../../Zotlabs/Module/Mitem.php:153 ../../Zotlabs/Module/Mitem.php:226 +msgid "Menu Item Permissions" +msgstr "Permissions de l'entrée de menu" + +#: ../../Zotlabs/Module/Mitem.php:154 ../../Zotlabs/Module/Mitem.php:227 +#: ../../Zotlabs/Module/Settings.php:1163 +msgid "(click to open/close)" +msgstr "(cliquer pour ouvrir/fermer)" + +#: ../../Zotlabs/Module/Mitem.php:156 ../../Zotlabs/Module/Mitem.php:172 +msgid "Link Name" +msgstr "Nom du lien" + +#: ../../Zotlabs/Module/Mitem.php:157 ../../Zotlabs/Module/Mitem.php:231 +msgid "Link or Submenu Target" +msgstr "Lien ou sous-menu cible" + +#: ../../Zotlabs/Module/Mitem.php:157 +msgid "Enter URL of the link or select a menu name to create a submenu" +msgstr "Entrez l'URL du lien ou sélectionnez un nom de menu pour créer un sous-menu" + +#: ../../Zotlabs/Module/Mitem.php:158 ../../Zotlabs/Module/Mitem.php:232 +msgid "Use magic-auth if available" +msgstr "Utiliser l'authentification distante, quand disponible" + +#: ../../Zotlabs/Module/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:233 +msgid "Open link in new window" +msgstr "Ouvrir le lien dans une nouvelle fenêtre" + +#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:234 +msgid "Order in list" +msgstr "Ordre dans la liste" + +#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:234 +msgid "Higher numbers will sink to bottom of listing" +msgstr "Les nombres les plus élevés seront au bas de la liste" + +#: ../../Zotlabs/Module/Mitem.php:161 +msgid "Submit and finish" +msgstr "Vadiler et terminer" + +#: ../../Zotlabs/Module/Mitem.php:162 +msgid "Submit and continue" +msgstr "Valider et continuer" + +#: ../../Zotlabs/Module/Mitem.php:170 +msgid "Menu:" +msgstr "Menu :" + +#: ../../Zotlabs/Module/Mitem.php:173 +msgid "Link Target" +msgstr "Cible du lien" + +#: ../../Zotlabs/Module/Mitem.php:176 +msgid "Edit menu" +msgstr "Modifier le menu" + +#: ../../Zotlabs/Module/Mitem.php:179 +msgid "Edit element" +msgstr "Modifier l'entrée" + +#: ../../Zotlabs/Module/Mitem.php:180 +msgid "Drop element" +msgstr "Supprimer l'entrée" + +#: ../../Zotlabs/Module/Mitem.php:181 +msgid "New element" +msgstr "Nouvelle entrée" + +#: ../../Zotlabs/Module/Mitem.php:182 +msgid "Edit this menu container" +msgstr "Éditer ce bloc de menu" + +#: ../../Zotlabs/Module/Mitem.php:183 +msgid "Add menu element" +msgstr "Ajouter une entrée au menu" + +#: ../../Zotlabs/Module/Mitem.php:184 +msgid "Delete this menu item" +msgstr "Supprimer cette entrée du menu" + +#: ../../Zotlabs/Module/Mitem.php:185 +msgid "Edit this menu item" +msgstr "Modifier cette entrée du menu" + +#: ../../Zotlabs/Module/Mitem.php:202 +msgid "Menu item not found." +msgstr "Entrée de menu introuvable." + +#: ../../Zotlabs/Module/Mitem.php:215 +msgid "Menu item deleted." +msgstr "Entrée de menu supprimée." + +#: ../../Zotlabs/Module/Mitem.php:217 +msgid "Menu item could not be deleted." +msgstr "Impossible de supprimer l'entrée de menu." + +#: ../../Zotlabs/Module/Mitem.php:224 +msgid "Edit Menu Element" +msgstr "Modifier l'entrée de menu" + +#: ../../Zotlabs/Module/Mitem.php:230 +msgid "Link text" +msgstr "Texte du lien" #: ../../Zotlabs/Module/Admin.php:77 msgid "Theme settings updated." @@ -3666,11 +3573,11 @@ msgstr "" msgid "Site settings updated." msgstr "Paramètres du site sauvegardés." -#: ../../Zotlabs/Module/Admin.php:400 ../../include/text.php:2841 +#: ../../Zotlabs/Module/Admin.php:400 ../../include/text.php:2829 msgid "Default" msgstr "Défaut" -#: ../../Zotlabs/Module/Admin.php:410 ../../Zotlabs/Module/Settings.php:798 +#: ../../Zotlabs/Module/Admin.php:410 ../../Zotlabs/Module/Settings.php:899 msgid "mobile" msgstr "mobile" @@ -3702,7 +3609,7 @@ msgstr "Mon site est gratuit uniquement" msgid "My site offers free accounts with optional paid upgrades" msgstr "Mon site offre des comptes gratuits avec des améliorations payantes facultatives" -#: ../../Zotlabs/Module/Admin.php:491 ../../include/widgets.php:1382 +#: ../../Zotlabs/Module/Admin.php:491 ../../include/widgets.php:1476 msgid "Site" msgstr "Site" @@ -3990,12 +3897,12 @@ msgid "0 for no expiration of imported content" msgstr "0 pour ne pas expirer le contenu importé" #: ../../Zotlabs/Module/Admin.php:677 ../../Zotlabs/Module/Admin.php:678 -#: ../../Zotlabs/Module/Settings.php:722 +#: ../../Zotlabs/Module/Settings.php:823 msgid "Off" msgstr "Inactif" #: ../../Zotlabs/Module/Admin.php:677 ../../Zotlabs/Module/Admin.php:678 -#: ../../Zotlabs/Module/Settings.php:722 +#: ../../Zotlabs/Module/Settings.php:823 msgid "On" msgstr "Actif" @@ -4052,7 +3959,7 @@ msgid "" "embedded content from that site is explicitly blocked." msgstr "" -#: ../../Zotlabs/Module/Admin.php:756 ../../include/widgets.php:1385 +#: ../../Zotlabs/Module/Admin.php:756 ../../include/widgets.php:1479 msgid "Security" msgstr "Sécurité" @@ -4220,7 +4127,7 @@ msgid "Account '%s' unblocked" msgstr "Compte '%s' débloqué" #: ../../Zotlabs/Module/Admin.php:1031 ../../Zotlabs/Module/Admin.php:1044 -#: ../../include/widgets.php:1383 +#: ../../include/widgets.php:1477 msgid "Accounts" msgstr "Comptes" @@ -4326,7 +4233,7 @@ msgstr "Code autorisé pour le canal '%s'" msgid "Channel '%s' code disallowed" msgstr "Code interdit pour le canal '%s'" -#: ../../Zotlabs/Module/Admin.php:1210 ../../include/widgets.php:1384 +#: ../../Zotlabs/Module/Admin.php:1210 ../../include/widgets.php:1478 msgid "Channels" msgstr "Canaux" @@ -4346,7 +4253,7 @@ msgstr "Autoriser le code" msgid "Disallow Code" msgstr "Interdire le code" -#: ../../Zotlabs/Module/Admin.php:1218 ../../include/conversation.php:1611 +#: ../../Zotlabs/Module/Admin.php:1218 ../../include/conversation.php:1626 msgid "Channel" msgstr "Canal" @@ -4385,7 +4292,7 @@ msgid "Enable" msgstr "Activer" #: ../../Zotlabs/Module/Admin.php:1330 ../../Zotlabs/Module/Admin.php:1420 -#: ../../include/widgets.php:1387 +#: ../../include/widgets.php:1481 msgid "Plugins" msgstr "Greffons" @@ -4394,8 +4301,8 @@ msgid "Toggle" msgstr "(Dés)activer" #: ../../Zotlabs/Module/Admin.php:1332 ../../Zotlabs/Module/Admin.php:1615 -#: ../../Zotlabs/Lib/Apps.php:215 ../../include/widgets.php:638 -#: ../../include/nav.php:208 +#: ../../Zotlabs/Lib/Apps.php:216 ../../include/nav.php:210 +#: ../../include/widgets.php:647 msgid "Settings" msgstr "Paramètres" @@ -4451,7 +4358,7 @@ msgstr "" msgid "Install new repo" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1405 ../../Zotlabs/Lib/Apps.php:330 +#: ../../Zotlabs/Module/Admin.php:1405 ../../Zotlabs/Lib/Apps.php:334 msgid "Install" msgstr "Installer" @@ -4467,8 +4374,8 @@ msgstr "" msgid "Install a New Plugin Repository" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1435 ../../Zotlabs/Module/Settings.php:77 -#: ../../Zotlabs/Module/Settings.php:616 ../../Zotlabs/Lib/Apps.php:330 +#: ../../Zotlabs/Module/Admin.php:1435 ../../Zotlabs/Module/Settings.php:72 +#: ../../Zotlabs/Module/Settings.php:670 ../../Zotlabs/Lib/Apps.php:334 msgid "Update" msgstr "Mise à jour" @@ -4485,7 +4392,7 @@ msgid "Screenshot" msgstr "Capture d'écran" #: ../../Zotlabs/Module/Admin.php:1613 ../../Zotlabs/Module/Admin.php:1647 -#: ../../include/widgets.php:1388 +#: ../../include/widgets.php:1482 msgid "Themes" msgstr "Thèmes" @@ -4501,8 +4408,8 @@ msgstr "[Non maintenu]" msgid "Log settings updated." msgstr "Paramètres du journal mis à jour." -#: ../../Zotlabs/Module/Admin.php:1732 ../../include/widgets.php:1409 -#: ../../include/widgets.php:1419 +#: ../../Zotlabs/Module/Admin.php:1732 ../../include/widgets.php:1503 +#: ../../include/widgets.php:1513 msgid "Logs" msgstr "Journaux" @@ -4568,7 +4475,7 @@ msgstr "Définition du champ introuvable" msgid "Edit Profile Field" msgstr "Modifier le champ de profil" -#: ../../Zotlabs/Module/Admin.php:2106 ../../include/widgets.php:1390 +#: ../../Zotlabs/Module/Admin.php:2106 ../../include/widgets.php:1484 msgid "Profile Fields" msgstr "Champs de profil" @@ -4596,57 +4503,384 @@ msgstr "Champs personnalisés" msgid "Create Custom Field" msgstr "Créer un champ personnalisé" -#: ../../Zotlabs/Module/Appman.php:37 ../../Zotlabs/Module/Appman.php:53 -msgid "App installed." -msgstr "Application installée." +#: ../../Zotlabs/Module/New_channel.php:128 +#: ../../Zotlabs/Module/Register.php:231 +msgid "Name or caption" +msgstr "Nom ou libellé" -#: ../../Zotlabs/Module/Appman.php:46 -msgid "Malformed app." -msgstr "Erreur de l'application - Malformée." +#: ../../Zotlabs/Module/New_channel.php:128 +#: ../../Zotlabs/Module/Register.php:231 +msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\"" +msgstr "Exemples : \"Jérôme Dutilleul\", \"Louise et ses chevaux\", \"Football\", \"Club d'aéromodélisme\"" -#: ../../Zotlabs/Module/Appman.php:104 -msgid "Embed code" -msgstr "Imbriquer le code" +#: ../../Zotlabs/Module/New_channel.php:130 +#: ../../Zotlabs/Module/Register.php:233 +msgid "Choose a short nickname" +msgstr "Choisissez un alias" -#: ../../Zotlabs/Module/Appman.php:110 ../../include/widgets.php:107 -msgid "Edit App" -msgstr "Modifier l'application" +#: ../../Zotlabs/Module/New_channel.php:130 +#: ../../Zotlabs/Module/Register.php:233 +#, php-format +msgid "" +"Your nickname will be used to create an easy to remember channel address " +"e.g. nickname%s" +msgstr "Votre pseudo sera utilisé pour créer une adresse de canal facile à mémoriser, par ex. pseudo%s" -#: ../../Zotlabs/Module/Appman.php:110 -msgid "Create App" -msgstr "Créer une application" +#: ../../Zotlabs/Module/New_channel.php:132 +#: ../../Zotlabs/Module/Register.php:235 +msgid "Channel role and privacy" +msgstr "Rôle et confidentialité du canal" -#: ../../Zotlabs/Module/Appman.php:115 -msgid "Name of app" -msgstr "Nom de l'application" +#: ../../Zotlabs/Module/New_channel.php:132 +#: ../../Zotlabs/Module/Register.php:235 +msgid "Select a channel role with your privacy requirements." +msgstr "Sélectionner un rôle de canal adapté à vos besoins de confidentialité." -#: ../../Zotlabs/Module/Appman.php:116 -msgid "Location (URL) of app" -msgstr "Emplacement (URL) de l'application" +#: ../../Zotlabs/Module/New_channel.php:132 +#: ../../Zotlabs/Module/Register.php:235 +msgid "Read more about roles" +msgstr "En savoir plus sur les rôles" -#: ../../Zotlabs/Module/Appman.php:118 -msgid "Photo icon URL" -msgstr "URL de l'icône à utiliser pour cette photo" +#: ../../Zotlabs/Module/New_channel.php:135 +msgid "Create Channel" +msgstr "Créer le canal" -#: ../../Zotlabs/Module/Appman.php:118 -msgid "80 x 80 pixels - optional" -msgstr "80 x 80 pixels - facultatif" +#: ../../Zotlabs/Module/New_channel.php:136 +msgid "" +"A channel is your identity on this network. It can represent a person, a " +"blog, or a forum to name a few. Channels can make connections with other " +"channels to share information with highly detailed permissions." +msgstr "Un canal est votre identité sur ce réseau. Il peut représenter une personne, un blog, ou un forum par exemple. Les canaux peuvent entrer en contact les uns avec les autres pour partager des informations avec des permissions d'accès très fines." -#: ../../Zotlabs/Module/Appman.php:119 -msgid "Categories (optional, comma separated list)" +#: ../../Zotlabs/Module/New_channel.php:137 +msgid "" +"or import an existing channel from another location." +msgstr "ou importer un canal existant d'un autre serveur." + +#: ../../Zotlabs/Module/Ping.php:265 +msgid "sent you a private message" +msgstr "vous a envoyé un message privé" + +#: ../../Zotlabs/Module/Ping.php:313 +msgid "added your channel" +msgstr "a ajouté votre canal" + +#: ../../Zotlabs/Module/Ping.php:323 +msgid "g A l F d" +msgstr "g A l F d" + +#: ../../Zotlabs/Module/Ping.php:346 +msgid "[today]" +msgstr "[aujourd'hui]" + +#: ../../Zotlabs/Module/Ping.php:355 +msgid "posted an event" +msgstr "a publié un événement" + +#: ../../Zotlabs/Module/Notifications.php:30 +msgid "Invalid request identifier." +msgstr "Identifiant de requête invalide." + +#: ../../Zotlabs/Module/Notifications.php:39 +msgid "Discard" +msgstr "Annuler" + +#: ../../Zotlabs/Module/Notifications.php:103 ../../include/nav.php:193 +msgid "Mark all system notifications seen" +msgstr "Marquer toutes les notifications système comme vues" + +#: ../../Zotlabs/Module/Poke.php:168 ../../Zotlabs/Lib/Apps.php:228 +#: ../../include/conversation.php:963 +msgid "Poke" +msgstr "Tapoter" + +#: ../../Zotlabs/Module/Poke.php:169 +msgid "Poke somebody" +msgstr "Taquiner quelqu'un" + +#: ../../Zotlabs/Module/Poke.php:172 +msgid "Poke/Prod" +msgstr "Tapoter/Encourager" + +#: ../../Zotlabs/Module/Poke.php:173 +msgid "Poke, prod or do other things to somebody" +msgstr "Taquiner, pousser ou faire autre chose à quelqu'un" + +#: ../../Zotlabs/Module/Poke.php:180 +msgid "Recipient" +msgstr "Destinataire" + +#: ../../Zotlabs/Module/Poke.php:181 +msgid "Choose what you wish to do to recipient" +msgstr "Choisir ce que vous voulez faire au destinataire" + +#: ../../Zotlabs/Module/Poke.php:184 ../../Zotlabs/Module/Poke.php:185 +msgid "Make this post private" +msgstr "Rendre cette publication privée" + +#: ../../Zotlabs/Module/Oexchange.php:27 +msgid "Unable to find your hub." +msgstr "Impossible de trouver votre hub." + +#: ../../Zotlabs/Module/Oexchange.php:41 +msgid "Post successful." +msgstr "Publication réussie." + +#: ../../Zotlabs/Module/Openid.php:30 +msgid "OpenID protocol error. No ID returned." +msgstr "Erreur du protocole OpenID. Pas d'ID retourné." + +#: ../../Zotlabs/Module/Openid.php:193 ../../include/auth.php:285 +msgid "Login failed." +msgstr "Échec de la connexion." + +#: ../../Zotlabs/Module/Profperm.php:34 ../../Zotlabs/Module/Profperm.php:63 +msgid "Invalid profile identifier." +msgstr "Identifiant de profil invalide." + +#: ../../Zotlabs/Module/Profperm.php:115 +msgid "Profile Visibility Editor" +msgstr "Éditeur de visibilité de profil" + +#: ../../Zotlabs/Module/Profperm.php:117 ../../include/channel.php:1290 +msgid "Profile" +msgstr "Profil" + +#: ../../Zotlabs/Module/Profperm.php:119 +msgid "Click on a contact to add or remove." +msgstr "Cliquer sur un contact pour l'ajouter ou le retirer." + +#: ../../Zotlabs/Module/Profperm.php:128 +msgid "Visible To" +msgstr "Visible par" + +#: ../../Zotlabs/Module/Pconfig.php:26 ../../Zotlabs/Module/Pconfig.php:59 +msgid "This setting requires special processing and editing has been blocked." +msgstr "Ce paramètre nécessité un traitement spécial, les modifications ont été bloquées." + +#: ../../Zotlabs/Module/Pconfig.php:48 +msgid "Configuration Editor" +msgstr "Editeur de configuration" + +#: ../../Zotlabs/Module/Pconfig.php:49 +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 "Attention :modifier certains paramètres peut rendre votre canal inutilisable. Merci d'ignorer cette page à moins d'être suffisamment à l'aise de savoir comment utiliser correctement cette fonctionnalité." + +#: ../../Zotlabs/Module/Probe.php:28 ../../Zotlabs/Module/Probe.php:32 +#, php-format +msgid "Fetching URL returns error: %1$s" +msgstr "Récupération d'URL échouée : %1$s" + +#: ../../Zotlabs/Module/Siteinfo.php:19 +#, php-format +msgid "Version %s" +msgstr "Version %s" + +#: ../../Zotlabs/Module/Siteinfo.php:34 +msgid "Installed plugins/addons/apps:" +msgstr "Greffons/extensions/applications installés :" + +#: ../../Zotlabs/Module/Siteinfo.php:36 +msgid "No installed plugins/addons/apps" +msgstr "Aucun greffon/extension/application installé" + +#: ../../Zotlabs/Module/Siteinfo.php:49 +msgid "" +"This is a hub of $Projectname - a global cooperative network of " +"decentralized privacy enhanced websites." +msgstr "Ceci est un serveur $Projectname - un réseau collaboratif mondial de serveurs décentralisés à la confidentialité améliorée." + +#: ../../Zotlabs/Module/Siteinfo.php:51 +msgid "Tag: " +msgstr "Étiquette :" + +#: ../../Zotlabs/Module/Siteinfo.php:53 +msgid "Last background fetch: " +msgstr "Dernière récupération en tâche de fond :" + +#: ../../Zotlabs/Module/Siteinfo.php:55 +msgid "Current load average: " +msgstr "Charge moyenne actuelle :" + +#: ../../Zotlabs/Module/Siteinfo.php:58 +msgid "Running at web location" +msgstr "Tourne à l'adresse internet" + +#: ../../Zotlabs/Module/Siteinfo.php:59 +msgid "" +"Please visit hubzilla.org to learn more " +"about $Projectname." +msgstr "Merci de visiter hubzilla.org pour en apprendre davantage sur $Projectname." + +#: ../../Zotlabs/Module/Siteinfo.php:60 +msgid "Bug reports and issues: please visit" +msgstr "Pour remonter bogues et problèmes, merci de visiter" + +#: ../../Zotlabs/Module/Siteinfo.php:62 +msgid "$projectname issues" +msgstr "Problèmes $projectname" + +#: ../../Zotlabs/Module/Siteinfo.php:63 +msgid "" +"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot " +"com" +msgstr "Suggestions, demandes, etc. - merci de vous adresser à \"redmatrix\" à librelist - point com" + +#: ../../Zotlabs/Module/Siteinfo.php:65 +msgid "Site Administrators" +msgstr "Administrateurs du site" + +#: ../../Zotlabs/Module/Rmagic.php:44 +msgid "" +"We encountered a problem while logging in with the OpenID you provided. " +"Please check the correct spelling of the ID." +msgstr "Nous avons rencontré un problème avec l'OpenID que vous nous avez fourni. Merci de vérifier que l'ID est correctement saisi." + +#: ../../Zotlabs/Module/Rmagic.php:44 +msgid "The error message was:" +msgstr "Le message d'erreur était :" + +#: ../../Zotlabs/Module/Rmagic.php:48 +msgid "Authentication failed." +msgstr "Échec de l'authentification." + +#: ../../Zotlabs/Module/Rmagic.php:88 +msgid "Remote Authentication" +msgstr "Authentification distante" + +#: ../../Zotlabs/Module/Rmagic.php:89 +msgid "Enter your channel address (e.g. channel@example.com)" +msgstr "Entrez l'adresse de votre canal (par ex. moncanal@monsite.com)" + +#: ../../Zotlabs/Module/Rmagic.php:90 +msgid "Authenticate" +msgstr "Authentifier" + +#: ../../Zotlabs/Module/Pubsites.php:22 ../../include/widgets.php:1337 +msgid "Public Hubs" +msgstr "Instances publiques" + +#: ../../Zotlabs/Module/Pubsites.php:25 +msgid "" +"The listed hubs allow public registration for the $Projectname network. All " +"hubs in the network are interlinked so membership on any of them conveys " +"membership in the network as a whole. Some hubs may require subscription or " +"provide tiered service plans. The hub itself may provide " +"additional details." +msgstr "Les sites listés permettent l'enregistrement public de comptes pour le réseau $Projectname. Tous les sites du réseau sont reliés entre eux, être membre d'un site revient à être membre de tous. Certains sites peuvent demander une souscription ou proposer différents niveaux de service. Chaque site peut fournir des détails supplémentaires." + +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Hub URL" +msgstr "URL du site" + +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Access Type" +msgstr "Type d'accès" + +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Registration Policy" +msgstr "Politique d'inscription" + +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Stats" msgstr "" -#: ../../Zotlabs/Module/Appman.php:120 -msgid "Version ID" -msgstr "Identifiant de version" +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Software" +msgstr "" -#: ../../Zotlabs/Module/Appman.php:121 -msgid "Price of app" -msgstr "Prix de l'application" +#: ../../Zotlabs/Module/Pubsites.php:31 ../../Zotlabs/Module/Ratings.php:103 +#: ../../include/conversation.php:962 +msgid "Ratings" +msgstr "Evaluations" -#: ../../Zotlabs/Module/Appman.php:122 -msgid "Location (URL) to purchase app" -msgstr "Emplacement (URL) pour l'achat de l'application" +#: ../../Zotlabs/Module/Pubsites.php:38 +msgid "Rate" +msgstr "Evaluer" + +#: ../../Zotlabs/Module/Profile_photo.php:186 +msgid "" +"Shift-reload the page or clear browser cache if the new photo does not " +"display immediately." +msgstr "Shift-rechargez votre page, ou videz le cache du navigateur si la photo ne s'affiche pas immédiatement." + +#: ../../Zotlabs/Module/Profile_photo.php:389 +msgid "Upload Profile Photo" +msgstr "Téléverser une photo de profil" + +#: ../../Zotlabs/Module/Blocks.php:97 ../../Zotlabs/Module/Blocks.php:155 +#: ../../Zotlabs/Module/Editblock.php:108 +msgid "Block Name" +msgstr "Nom du Bloc" + +#: ../../Zotlabs/Module/Blocks.php:154 ../../include/text.php:2238 +msgid "Blocks" +msgstr "Blocs" + +#: ../../Zotlabs/Module/Blocks.php:156 +msgid "Block Title" +msgstr "Titre du bloc" + +#: ../../Zotlabs/Module/Rate.php:160 +msgid "Website:" +msgstr "Site web :" + +#: ../../Zotlabs/Module/Rate.php:163 +#, php-format +msgid "Remote Channel [%s] (not yet known on this site)" +msgstr "Canal distant [%s] (encore inconnu sur ce site)" + +#: ../../Zotlabs/Module/Rate.php:164 +msgid "Rating (this information is public)" +msgstr "Evaluation (cette information est publique)" + +#: ../../Zotlabs/Module/Rate.php:165 +msgid "Optionally explain your rating (this information is public)" +msgstr "Explication facultative de votre évaluation (cette information est publique)" + +#: ../../Zotlabs/Module/Ratings.php:73 +msgid "No ratings" +msgstr "Pas de note" + +#: ../../Zotlabs/Module/Ratings.php:104 +msgid "Rating: " +msgstr "Evaluation :" + +#: ../../Zotlabs/Module/Ratings.php:105 +msgid "Website: " +msgstr "Site web :" + +#: ../../Zotlabs/Module/Ratings.php:107 +msgid "Description: " +msgstr "Description :" + +#: ../../Zotlabs/Module/Apps.php:47 ../../include/nav.php:165 +#: ../../include/widgets.php:102 +msgid "Apps" +msgstr "Applications" + +#: ../../Zotlabs/Module/Editblock.php:124 ../../include/conversation.php:1243 +msgid "Title (optional)" +msgstr "Titre (facultatif)" + +#: ../../Zotlabs/Module/Editblock.php:133 +msgid "Edit Block" +msgstr "Modifier le bloc" + +#: ../../Zotlabs/Module/Common.php:14 +msgid "No channel." +msgstr "Pas de canal." + +#: ../../Zotlabs/Module/Common.php:43 +msgid "Common connections" +msgstr "Contacts en commun" + +#: ../../Zotlabs/Module/Common.php:48 +msgid "No connections in common." +msgstr "Pas de contacts en commun." #: ../../Zotlabs/Module/Rbmark.php:94 msgid "Select a bookmark folder" @@ -4751,120 +4985,154 @@ msgstr "oui" msgid "Membership on this site is by invitation only." msgstr "L'inscription à ce site se fait uniquement sur invitation." -#: ../../Zotlabs/Module/Register.php:262 ../../include/nav.php:147 -#: ../../boot.php:1685 +#: ../../Zotlabs/Module/Register.php:262 ../../include/nav.php:149 +#: ../../boot.php:1686 msgid "Register" msgstr "S'inscrire" -#: ../../Zotlabs/Module/Register.php:262 -msgid "Proceed to create your first channel" -msgstr "Continuer pour créer votre premier canal" +#: ../../Zotlabs/Module/Register.php:263 +msgid "" +"This site may require email verification after submitting this form. If you " +"are returned to a login page, please check your email for instructions." +msgstr "" #: ../../Zotlabs/Module/Regmod.php:15 msgid "Please login." msgstr "Merci de vous connecter." -#: ../../Zotlabs/Module/Removeaccount.php:34 +#: ../../Zotlabs/Module/Removeaccount.php:35 msgid "" "Account removals are not allowed within 48 hours of changing the account " "password." msgstr "Il est impossible de supprimer un compte dans les 48 heures après avoir changé le mot de passe du compte." -#: ../../Zotlabs/Module/Removeaccount.php:56 +#: ../../Zotlabs/Module/Removeaccount.php:57 msgid "Remove This Account" msgstr "Supprimer ce compte" -#: ../../Zotlabs/Module/Removeaccount.php:57 -#: ../../Zotlabs/Module/Removeme.php:59 +#: ../../Zotlabs/Module/Removeaccount.php:58 +#: ../../Zotlabs/Module/Removeme.php:61 msgid "WARNING: " msgstr "AVERTISSEMENT :" -#: ../../Zotlabs/Module/Removeaccount.php:57 +#: ../../Zotlabs/Module/Removeaccount.php:58 msgid "" "This account and all its channels will be completely removed from the " "network. " msgstr "Ce compte et tous ses canaux seront entièrement supprimés du réseau." -#: ../../Zotlabs/Module/Removeaccount.php:57 -#: ../../Zotlabs/Module/Removeme.php:59 +#: ../../Zotlabs/Module/Removeaccount.php:58 +#: ../../Zotlabs/Module/Removeme.php:61 msgid "This action is permanent and can not be undone!" msgstr "Cette action est permanente et irréversible !" -#: ../../Zotlabs/Module/Removeaccount.php:58 -#: ../../Zotlabs/Module/Removeme.php:60 +#: ../../Zotlabs/Module/Removeaccount.php:59 +#: ../../Zotlabs/Module/Removeme.php:62 msgid "Please enter your password for verification:" msgstr "Merci de saisir votre mot de passe pour vérification :" -#: ../../Zotlabs/Module/Removeaccount.php:59 +#: ../../Zotlabs/Module/Removeaccount.php:60 msgid "" "Remove this account, all its channels and all its channel clones from the " "network" msgstr "Supprimer du réseau ce compte, tous ses canaux et tous les clones de ses canaux." -#: ../../Zotlabs/Module/Removeaccount.php:59 +#: ../../Zotlabs/Module/Removeaccount.php:60 msgid "" "By default only the instances of the channels located on this hub will be " "removed from the network" msgstr "Par défaut, seules les instances des canaux situés sur ce hub seront supprimées du réseau" -#: ../../Zotlabs/Module/Removeaccount.php:60 -#: ../../Zotlabs/Module/Settings.php:705 +#: ../../Zotlabs/Module/Removeaccount.php:61 +#: ../../Zotlabs/Module/Settings.php:759 msgid "Remove Account" msgstr "Supprimer le compte" -#: ../../Zotlabs/Module/Removeme.php:33 +#: ../../Zotlabs/Module/Removeme.php:35 msgid "" "Channel removals are not allowed within 48 hours of changing the account " "password." msgstr "Il est impossible de supprimer un canal moins de 48 heures après avoir changé le mot de passe d'un compte." -#: ../../Zotlabs/Module/Removeme.php:58 +#: ../../Zotlabs/Module/Removeme.php:60 msgid "Remove This Channel" msgstr "Supprimer ce canal" -#: ../../Zotlabs/Module/Removeme.php:59 +#: ../../Zotlabs/Module/Removeme.php:61 msgid "This channel will be completely removed from the network. " msgstr "Ce canal sera complètement supprimé du réseau." -#: ../../Zotlabs/Module/Removeme.php:61 +#: ../../Zotlabs/Module/Removeme.php:63 msgid "Remove this channel and all its clones from the network" msgstr "Supprimer ce canal ainsi que tous ses clones sur le réseau" -#: ../../Zotlabs/Module/Removeme.php:61 +#: ../../Zotlabs/Module/Removeme.php:63 msgid "" "By default only the instance of the channel located on this hub will be " "removed from the network" msgstr "Par défaut, seule l'instance du canal présente sur ce hub sera supprimée du réseau" -#: ../../Zotlabs/Module/Removeme.php:62 ../../Zotlabs/Module/Settings.php:1124 +#: ../../Zotlabs/Module/Removeme.php:64 ../../Zotlabs/Module/Settings.php:1219 msgid "Remove Channel" msgstr "Supprimer le canal" -#: ../../Zotlabs/Module/Rmagic.php:44 +#: ../../Zotlabs/Module/Uexport.php:55 ../../Zotlabs/Module/Uexport.php:56 +msgid "Export Channel" +msgstr "Exporter le canal" + +#: ../../Zotlabs/Module/Uexport.php:57 msgid "" -"We encountered a problem while logging in with the OpenID you provided. " -"Please check the correct spelling of the ID." -msgstr "Nous avons rencontré un problème avec l'OpenID que vous nous avez fourni. Merci de vérifier que l'ID est correctement saisi." +"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 "Exportez les principales informations de votre canal dans un fichier. Celui-ci pourra servir de sauvegarde de vos contacts, permissions, profils et données de base. Il pourra être importé sur un nouveau hub/serveur, mais n'embarquera pas vos contenus." -#: ../../Zotlabs/Module/Rmagic.php:44 -msgid "The error message was:" -msgstr "Le message d'erreur était :" +#: ../../Zotlabs/Module/Uexport.php:58 +msgid "Export Content" +msgstr "Exporter le contenu" -#: ../../Zotlabs/Module/Rmagic.php:48 -msgid "Authentication failed." -msgstr "Échec de l'authentification." +#: ../../Zotlabs/Module/Uexport.php:59 +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 "Exportez les informations du canal et les contenus récents dans un fichier JSON. Celui-ci contiendra toutes vos relations, permissions, profils, et plusieurs mois de publications. Ce fichier peut être TRÈS gros. Armez-vous de patience - plusieurs minutes peuvent s'écouler avant que le téléchargement ne commence." -#: ../../Zotlabs/Module/Rmagic.php:88 -msgid "Remote Authentication" -msgstr "Authentification distante" +#: ../../Zotlabs/Module/Uexport.php:60 +msgid "Export your posts from a given year." +msgstr "Exporter vos publications d'une année en particulier" -#: ../../Zotlabs/Module/Rmagic.php:89 -msgid "Enter your channel address (e.g. channel@example.com)" -msgstr "Entrez l'adresse de votre canal (par ex. moncanal@monsite.com)" +#: ../../Zotlabs/Module/Uexport.php:62 +msgid "" +"You may also export your posts and conversations for a particular year or " +"month. Adjust the date in your browser location bar to select other dates. " +"If the export fails (possibly due to memory exhaustion on your server hub), " +"please try again selecting a more limited date range." +msgstr "Vous pouvez également exporter vos publications et conversations pour une année ou un mois particulier. Ajustez la date dans la barre de votre navigateur pour sélectionner d'autres dates. Si l'export échoue (possible en cas de pénurie de mémoire sur le serveur de votre hub), essayez à nouveau en sélectionnant un intervalle de dates plus petit." -#: ../../Zotlabs/Module/Rmagic.php:90 -msgid "Authenticate" -msgstr "Authentifier" +#: ../../Zotlabs/Module/Uexport.php:63 +#, php-format +msgid "" +"To select all posts for a given year, such as this year, visit %2$s" +msgstr "Pour sélectionner toutes les publications pour une année donnée, telle que cette année, visitez %2$s" + +#: ../../Zotlabs/Module/Uexport.php:64 +#, php-format +msgid "" +"To select all posts for a given month, such as January of this year, visit " +"%2$s" +msgstr "Pour sélectionner toutes les publications pour un mois donné, par exemple janvier, visitez %2$s" + +#: ../../Zotlabs/Module/Uexport.php:65 +#, php-format +msgid "" +"These content files may be imported or restored by visiting %2$s on any site containing your channel. For best results" +" please import or restore these in date order (oldest first)." +msgstr "Ces fichiers de contenu peuvent être importés ou restaurés en visitant %2$s sur n'importe quel site hébergeant votre canal. Pour de meilleurs résultats merci de les importer par ordre chronologique (les plus anciens d'abord)." #: ../../Zotlabs/Module/Search.php:216 #, php-format @@ -4880,609 +5148,652 @@ msgstr "Résultats de recherche pour : %s" msgid "No service class restrictions found." msgstr "Aucune restriction de classe de service trouvée." -#: ../../Zotlabs/Module/Settings.php:69 +#: ../../Zotlabs/Module/Settings.php:64 msgid "Name is required" msgstr "Le nom est requis" -#: ../../Zotlabs/Module/Settings.php:73 +#: ../../Zotlabs/Module/Settings.php:68 msgid "Key and Secret are required" msgstr "Clef et secret sont requis" -#: ../../Zotlabs/Module/Settings.php:225 +#: ../../Zotlabs/Module/Settings.php:138 +#, php-format +msgid "This channel is limited to %d tokens" +msgstr "" + +#: ../../Zotlabs/Module/Settings.php:144 +msgid "Name and Password are required." +msgstr "" + +#: ../../Zotlabs/Module/Settings.php:168 +msgid "Token saved." +msgstr "" + +#: ../../Zotlabs/Module/Settings.php:274 msgid "Not valid email." msgstr "Adresse de courriel non valide." -#: ../../Zotlabs/Module/Settings.php:228 +#: ../../Zotlabs/Module/Settings.php:277 msgid "Protected email address. Cannot change to that email." msgstr "Adresse de courriel protégée. Impossible de l'utiliser." -#: ../../Zotlabs/Module/Settings.php:237 +#: ../../Zotlabs/Module/Settings.php:286 msgid "System failure storing new email. Please try again." msgstr "Défaillance système lors du stockage de la nouvelle adresse de courriel. Merci d'essayer à nouveau." -#: ../../Zotlabs/Module/Settings.php:254 +#: ../../Zotlabs/Module/Settings.php:303 msgid "Password verification failed." msgstr "La vérification du mot de passe a échoué." -#: ../../Zotlabs/Module/Settings.php:261 +#: ../../Zotlabs/Module/Settings.php:310 msgid "Passwords do not match. Password unchanged." msgstr "Les deux saisies du mot de passe ne correspondent pas. Il n'a donc pas été changé." -#: ../../Zotlabs/Module/Settings.php:265 +#: ../../Zotlabs/Module/Settings.php:314 msgid "Empty passwords are not allowed. Password unchanged." msgstr "Le mot de passe ne peut pas être vide. Il n'a donc pas été changé." -#: ../../Zotlabs/Module/Settings.php:279 +#: ../../Zotlabs/Module/Settings.php:328 msgid "Password changed." msgstr "Le mot de passe a été changé." -#: ../../Zotlabs/Module/Settings.php:281 +#: ../../Zotlabs/Module/Settings.php:330 msgid "Password update failed. Please try again." msgstr "La mise à jour du mot de passe a échoué. Merci d'essayer à nouveau." -#: ../../Zotlabs/Module/Settings.php:525 +#: ../../Zotlabs/Module/Settings.php:579 msgid "Settings updated." msgstr "Paramètres mis à jour." -#: ../../Zotlabs/Module/Settings.php:589 ../../Zotlabs/Module/Settings.php:615 -#: ../../Zotlabs/Module/Settings.php:651 +#: ../../Zotlabs/Module/Settings.php:643 ../../Zotlabs/Module/Settings.php:669 +#: ../../Zotlabs/Module/Settings.php:705 msgid "Add application" msgstr "Ajouter une application" -#: ../../Zotlabs/Module/Settings.php:592 +#: ../../Zotlabs/Module/Settings.php:646 msgid "Name of application" msgstr "Nom de l'application" -#: ../../Zotlabs/Module/Settings.php:593 ../../Zotlabs/Module/Settings.php:619 +#: ../../Zotlabs/Module/Settings.php:647 ../../Zotlabs/Module/Settings.php:673 msgid "Consumer Key" msgstr "Clef client" -#: ../../Zotlabs/Module/Settings.php:593 ../../Zotlabs/Module/Settings.php:594 +#: ../../Zotlabs/Module/Settings.php:647 ../../Zotlabs/Module/Settings.php:648 msgid "Automatically generated - change if desired. Max length 20" msgstr "Généré automatiquement - à changer si besoin. Longueur maximale 20 caractères." -#: ../../Zotlabs/Module/Settings.php:594 ../../Zotlabs/Module/Settings.php:620 +#: ../../Zotlabs/Module/Settings.php:648 ../../Zotlabs/Module/Settings.php:674 msgid "Consumer Secret" msgstr "Secret client" -#: ../../Zotlabs/Module/Settings.php:595 ../../Zotlabs/Module/Settings.php:621 +#: ../../Zotlabs/Module/Settings.php:649 ../../Zotlabs/Module/Settings.php:675 msgid "Redirect" msgstr "Redirection" -#: ../../Zotlabs/Module/Settings.php:595 +#: ../../Zotlabs/Module/Settings.php:649 msgid "" "Redirect URI - leave blank unless your application specifically requires " "this" msgstr "URI de redirection - laissez vide, sauf si votre application le requiert spécifiquement" -#: ../../Zotlabs/Module/Settings.php:596 ../../Zotlabs/Module/Settings.php:622 +#: ../../Zotlabs/Module/Settings.php:650 ../../Zotlabs/Module/Settings.php:676 msgid "Icon url" msgstr "URL de l'icône" -#: ../../Zotlabs/Module/Settings.php:596 ../../Zotlabs/Module/Sources.php:112 +#: ../../Zotlabs/Module/Settings.php:650 ../../Zotlabs/Module/Sources.php:112 #: ../../Zotlabs/Module/Sources.php:147 msgid "Optional" msgstr "Facultatif" -#: ../../Zotlabs/Module/Settings.php:607 +#: ../../Zotlabs/Module/Settings.php:661 msgid "Application not found." msgstr "Application introuvable." -#: ../../Zotlabs/Module/Settings.php:650 +#: ../../Zotlabs/Module/Settings.php:704 msgid "Connected Apps" msgstr "Applications connectées" -#: ../../Zotlabs/Module/Settings.php:654 +#: ../../Zotlabs/Module/Settings.php:708 msgid "Client key starts with" msgstr "La clef partagée commence par" -#: ../../Zotlabs/Module/Settings.php:655 +#: ../../Zotlabs/Module/Settings.php:709 msgid "No name" msgstr "Sans nom" -#: ../../Zotlabs/Module/Settings.php:656 +#: ../../Zotlabs/Module/Settings.php:710 msgid "Remove authorization" msgstr "Révoquer l'autorisation" -#: ../../Zotlabs/Module/Settings.php:669 +#: ../../Zotlabs/Module/Settings.php:723 msgid "No feature settings configured" msgstr "Aucun paramètre de fonctionnalité configuré" -#: ../../Zotlabs/Module/Settings.php:676 +#: ../../Zotlabs/Module/Settings.php:730 msgid "Feature/Addon Settings" msgstr "Paramètres des extensions/greffons" -#: ../../Zotlabs/Module/Settings.php:699 +#: ../../Zotlabs/Module/Settings.php:753 msgid "Account Settings" msgstr "Paramètres du compte" -#: ../../Zotlabs/Module/Settings.php:700 +#: ../../Zotlabs/Module/Settings.php:754 msgid "Current Password" msgstr "Mot de passe actuel" -#: ../../Zotlabs/Module/Settings.php:701 +#: ../../Zotlabs/Module/Settings.php:755 msgid "Enter New Password" msgstr "Entrez votre nouveau mot de passe" -#: ../../Zotlabs/Module/Settings.php:702 +#: ../../Zotlabs/Module/Settings.php:756 msgid "Confirm New Password" msgstr "Confirmez le nouveau mot de passe" -#: ../../Zotlabs/Module/Settings.php:702 +#: ../../Zotlabs/Module/Settings.php:756 msgid "Leave password fields blank unless changing" msgstr "Laissez les mots de passe vides si vous ne voulez pas les modifier" -#: ../../Zotlabs/Module/Settings.php:704 -#: ../../Zotlabs/Module/Settings.php:1041 +#: ../../Zotlabs/Module/Settings.php:758 +#: ../../Zotlabs/Module/Settings.php:1136 msgid "Email Address:" msgstr "Adresse de courriel :" -#: ../../Zotlabs/Module/Settings.php:706 +#: ../../Zotlabs/Module/Settings.php:760 msgid "Remove this account including all its channels" msgstr "Supprimer ce compte et tous ses canaux" -#: ../../Zotlabs/Module/Settings.php:729 +#: ../../Zotlabs/Module/Settings.php:789 +msgid "" +"Use this form to create temporary access identifiers to share things with " +"non-members. These identities may be used in Access Control Lists and " +"visitors may login using these credentials to access the private content." +msgstr "" + +#: ../../Zotlabs/Module/Settings.php:791 +msgid "" +"You may also provide dropbox style access links to friends and " +"associates by adding the Login Password to any specific site URL as shown. " +"Examples:" +msgstr "" + +#: ../../Zotlabs/Module/Settings.php:796 ../../include/widgets.php:614 +msgid "Guest Access Tokens" +msgstr "" + +#: ../../Zotlabs/Module/Settings.php:803 +msgid "Login Name" +msgstr "" + +#: ../../Zotlabs/Module/Settings.php:804 +msgid "Login Password" +msgstr "" + +#: ../../Zotlabs/Module/Settings.php:805 +msgid "Expires (yyyy-mm-dd)" +msgstr "" + +#: ../../Zotlabs/Module/Settings.php:830 msgid "Additional Features" msgstr "Fonctionnalités additionnelles" -#: ../../Zotlabs/Module/Settings.php:753 +#: ../../Zotlabs/Module/Settings.php:854 msgid "Connector Settings" msgstr "Paramètres du connecteur" -#: ../../Zotlabs/Module/Settings.php:792 +#: ../../Zotlabs/Module/Settings.php:893 msgid "No special theme for mobile devices" msgstr "Pas de thème spécifique aux mobiles" -#: ../../Zotlabs/Module/Settings.php:795 +#: ../../Zotlabs/Module/Settings.php:896 #, php-format msgid "%s - (Experimental)" msgstr "%s - (Expérimental)" -#: ../../Zotlabs/Module/Settings.php:837 +#: ../../Zotlabs/Module/Settings.php:938 msgid "Display Settings" msgstr "Afficher les paramètres" -#: ../../Zotlabs/Module/Settings.php:838 +#: ../../Zotlabs/Module/Settings.php:939 msgid "Theme Settings" msgstr "Paramètres du thème" -#: ../../Zotlabs/Module/Settings.php:839 +#: ../../Zotlabs/Module/Settings.php:940 msgid "Custom Theme Settings" msgstr "Paramètres personnels du thème" -#: ../../Zotlabs/Module/Settings.php:840 +#: ../../Zotlabs/Module/Settings.php:941 msgid "Content Settings" msgstr "Paramètres liés au contenu" -#: ../../Zotlabs/Module/Settings.php:846 +#: ../../Zotlabs/Module/Settings.php:947 msgid "Display Theme:" msgstr "Afficher le thème :" -#: ../../Zotlabs/Module/Settings.php:847 +#: ../../Zotlabs/Module/Settings.php:948 msgid "Mobile Theme:" msgstr "Thème mobile :" -#: ../../Zotlabs/Module/Settings.php:848 +#: ../../Zotlabs/Module/Settings.php:949 msgid "Preload images before rendering the page" msgstr "Pré-charger les images avant d'afficher la page" -#: ../../Zotlabs/Module/Settings.php:848 +#: ../../Zotlabs/Module/Settings.php:949 msgid "" "The subjective page load time will be longer but the page will be ready when" " displayed" msgstr "Le temps de charge perçu de la page sera plus long mais la page sera complète quand elle s'affichera" -#: ../../Zotlabs/Module/Settings.php:849 +#: ../../Zotlabs/Module/Settings.php:950 msgid "Enable user zoom on mobile devices" msgstr "Permettre à l'utilisateur d'un mobile d'agrandir le contenu" -#: ../../Zotlabs/Module/Settings.php:850 +#: ../../Zotlabs/Module/Settings.php:951 msgid "Update browser every xx seconds" msgstr "Mettre à jour le navigateur toutes les xx secondes" -#: ../../Zotlabs/Module/Settings.php:850 +#: ../../Zotlabs/Module/Settings.php:951 msgid "Minimum of 10 seconds, no maximum" msgstr "Minimum 10 secondes, pas de maximum" -#: ../../Zotlabs/Module/Settings.php:851 +#: ../../Zotlabs/Module/Settings.php:952 msgid "Maximum number of conversations to load at any time:" msgstr "Nombre maximal de conversations pouvant être chargées en même temps :" -#: ../../Zotlabs/Module/Settings.php:851 +#: ../../Zotlabs/Module/Settings.php:952 msgid "Maximum of 100 items" msgstr "100 éléments au maximum" -#: ../../Zotlabs/Module/Settings.php:852 +#: ../../Zotlabs/Module/Settings.php:953 msgid "Show emoticons (smilies) as images" msgstr "Remplacer les émoticônes (smileys) par des images" -#: ../../Zotlabs/Module/Settings.php:853 +#: ../../Zotlabs/Module/Settings.php:954 msgid "Link post titles to source" msgstr "Lier les titres des publications à leur source" -#: ../../Zotlabs/Module/Settings.php:854 +#: ../../Zotlabs/Module/Settings.php:955 msgid "System Page Layout Editor - (advanced)" msgstr "Editeur de mise en page des pages systèmes - (avancé)" -#: ../../Zotlabs/Module/Settings.php:857 +#: ../../Zotlabs/Module/Settings.php:958 msgid "Use blog/list mode on channel page" msgstr "Utiliser le mode blog/liste sur la page du canal" -#: ../../Zotlabs/Module/Settings.php:857 ../../Zotlabs/Module/Settings.php:858 +#: ../../Zotlabs/Module/Settings.php:958 ../../Zotlabs/Module/Settings.php:959 msgid "(comments displayed separately)" msgstr "(commentaires affichés séparément)" -#: ../../Zotlabs/Module/Settings.php:858 +#: ../../Zotlabs/Module/Settings.php:959 msgid "Use blog/list mode on grid page" msgstr "Utiliser le mode blog/liste sur la page du réseau" -#: ../../Zotlabs/Module/Settings.php:859 +#: ../../Zotlabs/Module/Settings.php:960 msgid "Channel page max height of content (in pixels)" msgstr "Hauteur maximale du contenu pour la page du canal (en pixels)" -#: ../../Zotlabs/Module/Settings.php:859 ../../Zotlabs/Module/Settings.php:860 +#: ../../Zotlabs/Module/Settings.php:960 ../../Zotlabs/Module/Settings.php:961 msgid "click to expand content exceeding this height" msgstr "cliquer pour dérouler le contenu dépassant cette limite" -#: ../../Zotlabs/Module/Settings.php:860 +#: ../../Zotlabs/Module/Settings.php:961 msgid "Grid page max height of content (in pixels)" msgstr "Hauteur maximale du contenu sur la page du réseau (en pixels)" -#: ../../Zotlabs/Module/Settings.php:894 +#: ../../Zotlabs/Module/Settings.php:990 msgid "Nobody except yourself" msgstr "Personne sauf vous" -#: ../../Zotlabs/Module/Settings.php:895 +#: ../../Zotlabs/Module/Settings.php:991 msgid "Only those you specifically allow" msgstr "Seulement ceux que vous autorisez spécifiquement" -#: ../../Zotlabs/Module/Settings.php:896 +#: ../../Zotlabs/Module/Settings.php:992 msgid "Approved connections" msgstr "Contacts approuvés" -#: ../../Zotlabs/Module/Settings.php:897 +#: ../../Zotlabs/Module/Settings.php:993 msgid "Any connections" msgstr "Tous les contacts" -#: ../../Zotlabs/Module/Settings.php:898 +#: ../../Zotlabs/Module/Settings.php:994 msgid "Anybody on this website" msgstr "Tous les utilisateurs du hub" -#: ../../Zotlabs/Module/Settings.php:899 +#: ../../Zotlabs/Module/Settings.php:995 msgid "Anybody in this network" msgstr "Tous les utilisateurs sur ce réseau" -#: ../../Zotlabs/Module/Settings.php:900 +#: ../../Zotlabs/Module/Settings.php:996 msgid "Anybody authenticated" msgstr "Tous les utilisateurs authentifiés" -#: ../../Zotlabs/Module/Settings.php:901 +#: ../../Zotlabs/Module/Settings.php:997 msgid "Anybody on the internet" msgstr "Tous les utilisateurs d'Internet" -#: ../../Zotlabs/Module/Settings.php:976 +#: ../../Zotlabs/Module/Settings.php:1071 msgid "Publish your default profile in the network directory" msgstr "Publier votre profil par défaut dans l'annuaire du réseau" -#: ../../Zotlabs/Module/Settings.php:981 +#: ../../Zotlabs/Module/Settings.php:1076 msgid "Allow us to suggest you as a potential friend to new members?" msgstr "Nous autoriser à vous suggérer comme ami(e) potentiel(le) aux nouveaux membres?" -#: ../../Zotlabs/Module/Settings.php:990 +#: ../../Zotlabs/Module/Settings.php:1085 msgid "Your channel address is" msgstr "L'adresse de votre canal est" -#: ../../Zotlabs/Module/Settings.php:1032 +#: ../../Zotlabs/Module/Settings.php:1127 msgid "Channel Settings" msgstr "Paramètres du canal" -#: ../../Zotlabs/Module/Settings.php:1039 +#: ../../Zotlabs/Module/Settings.php:1134 msgid "Basic Settings" msgstr "Paramètres standard" -#: ../../Zotlabs/Module/Settings.php:1040 ../../include/channel.php:1140 +#: ../../Zotlabs/Module/Settings.php:1135 ../../include/channel.php:1180 msgid "Full Name:" msgstr "Nom complet :" -#: ../../Zotlabs/Module/Settings.php:1042 +#: ../../Zotlabs/Module/Settings.php:1137 msgid "Your Timezone:" msgstr "Votre fureau horaire :" -#: ../../Zotlabs/Module/Settings.php:1043 +#: ../../Zotlabs/Module/Settings.php:1138 msgid "Default Post Location:" msgstr "Emplacement de publication par défaut :" -#: ../../Zotlabs/Module/Settings.php:1043 +#: ../../Zotlabs/Module/Settings.php:1138 msgid "Geographical location to display on your posts" msgstr "Emplacement géographique à afficher sur vos publications" -#: ../../Zotlabs/Module/Settings.php:1044 +#: ../../Zotlabs/Module/Settings.php:1139 msgid "Use Browser Location:" msgstr "Utiliser la géolocalisation du navigateur :" -#: ../../Zotlabs/Module/Settings.php:1046 +#: ../../Zotlabs/Module/Settings.php:1141 msgid "Adult Content" msgstr "Contenu \"adulte\"" -#: ../../Zotlabs/Module/Settings.php:1046 +#: ../../Zotlabs/Module/Settings.php:1141 msgid "" "This channel frequently or regularly publishes adult content. (Please tag " "any adult material and/or nudity with #NSFW)" msgstr "Ce canal publie plus ou moins fréquemment du contenu pour adultes. (Merci d'indiquer tout contenu pour adulte ou potentiellement choquant avec l'étiquette #NSFW - Not Safe For Work)" -#: ../../Zotlabs/Module/Settings.php:1048 +#: ../../Zotlabs/Module/Settings.php:1143 msgid "Security and Privacy Settings" msgstr "Paramètres de sécurité et de confidentialité" -#: ../../Zotlabs/Module/Settings.php:1051 +#: ../../Zotlabs/Module/Settings.php:1146 msgid "Your permissions are already configured. Click to view/adjust" msgstr "Vous permissions sont déjà paramétrées. Cliquer pour voir/ajuster" -#: ../../Zotlabs/Module/Settings.php:1053 +#: ../../Zotlabs/Module/Settings.php:1148 msgid "Hide my online presence" msgstr "Cacher ma présence en ligne" -#: ../../Zotlabs/Module/Settings.php:1053 +#: ../../Zotlabs/Module/Settings.php:1148 msgid "Prevents displaying in your profile that you are online" msgstr "Cacher votre statut (en ligne/hors ligne) sur votre profil" -#: ../../Zotlabs/Module/Settings.php:1055 +#: ../../Zotlabs/Module/Settings.php:1150 msgid "Simple Privacy Settings:" msgstr "Paramètres de confidentialité simplifiés :" -#: ../../Zotlabs/Module/Settings.php:1056 +#: ../../Zotlabs/Module/Settings.php:1151 msgid "" "Very Public - extremely permissive (should be used with caution)" msgstr "Très public - extrèmement permissif (à n'utiliser qu'en connaissance de cause)" -#: ../../Zotlabs/Module/Settings.php:1057 +#: ../../Zotlabs/Module/Settings.php:1152 msgid "" "Typical - default public, privacy when desired (similar to social " "network permissions but with improved privacy)" msgstr "Classique - public par défaut, privé en cas de besoin (comparable aux permissions type réseau social, avec une confidentialité améliorée)" -#: ../../Zotlabs/Module/Settings.php:1058 +#: ../../Zotlabs/Module/Settings.php:1153 msgid "Private - default private, never open or public" msgstr "Privé - privé par défaut, jamais ouvert ni public" -#: ../../Zotlabs/Module/Settings.php:1059 +#: ../../Zotlabs/Module/Settings.php:1154 msgid "Blocked - default blocked to/from everybody" msgstr "Bloqué - par défaut, bloqué de/vers tout le monde" -#: ../../Zotlabs/Module/Settings.php:1061 +#: ../../Zotlabs/Module/Settings.php:1156 msgid "Allow others to tag your posts" msgstr "Autoriser les autres à \"étiqueter\" vos publications" -#: ../../Zotlabs/Module/Settings.php:1061 +#: ../../Zotlabs/Module/Settings.php:1156 msgid "" "Often used by the community to retro-actively flag inappropriate content" msgstr "Souvent utilisé par la communauté pour identifier un contenu inapproprié a posteriori " -#: ../../Zotlabs/Module/Settings.php:1063 +#: ../../Zotlabs/Module/Settings.php:1158 msgid "Advanced Privacy Settings" msgstr "Paramètres de confidentialité avancés" -#: ../../Zotlabs/Module/Settings.php:1065 +#: ../../Zotlabs/Module/Settings.php:1160 msgid "Expire other channel content after this many days" msgstr "Faire expirer le contenu des autres canaux après n jours" -#: ../../Zotlabs/Module/Settings.php:1065 +#: ../../Zotlabs/Module/Settings.php:1160 msgid "0 or blank to use the website limit." msgstr "" -#: ../../Zotlabs/Module/Settings.php:1065 +#: ../../Zotlabs/Module/Settings.php:1160 #, php-format msgid "This website expires after %d days." msgstr "" -#: ../../Zotlabs/Module/Settings.php:1065 +#: ../../Zotlabs/Module/Settings.php:1160 msgid "This website does not expire imported content." msgstr "" -#: ../../Zotlabs/Module/Settings.php:1065 +#: ../../Zotlabs/Module/Settings.php:1160 msgid "The website limit takes precedence if lower than your limit." msgstr "" -#: ../../Zotlabs/Module/Settings.php:1066 +#: ../../Zotlabs/Module/Settings.php:1161 msgid "Maximum Friend Requests/Day:" msgstr "Nombre maximum de demandes de contact par jour :" -#: ../../Zotlabs/Module/Settings.php:1066 +#: ../../Zotlabs/Module/Settings.php:1161 msgid "May reduce spam activity" msgstr "Contribue à réduire l'impact des indésirables" -#: ../../Zotlabs/Module/Settings.php:1067 +#: ../../Zotlabs/Module/Settings.php:1162 msgid "Default Post and Publish Permissions" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1069 +#: ../../Zotlabs/Module/Settings.php:1164 msgid "Use my default audience setting for the type of object published" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1072 +#: ../../Zotlabs/Module/Settings.php:1167 msgid "Channel permissions category:" msgstr "Catégorie de permissions du canal :" -#: ../../Zotlabs/Module/Settings.php:1078 +#: ../../Zotlabs/Module/Settings.php:1173 msgid "Maximum private messages per day from unknown people:" msgstr "Nombre maximum de messages privés émanant d'inconnus, par jour :" -#: ../../Zotlabs/Module/Settings.php:1078 +#: ../../Zotlabs/Module/Settings.php:1173 msgid "Useful to reduce spamming" msgstr "Utile pour réduire les indésirables" -#: ../../Zotlabs/Module/Settings.php:1081 +#: ../../Zotlabs/Module/Settings.php:1176 msgid "Notification Settings" msgstr "Paramètres de notification" -#: ../../Zotlabs/Module/Settings.php:1082 +#: ../../Zotlabs/Module/Settings.php:1177 msgid "By default post a status message when:" msgstr "Par défaut, publier un statut quand :" -#: ../../Zotlabs/Module/Settings.php:1083 +#: ../../Zotlabs/Module/Settings.php:1178 msgid "accepting a friend request" msgstr "vous acceptez une demande de contact" -#: ../../Zotlabs/Module/Settings.php:1084 +#: ../../Zotlabs/Module/Settings.php:1179 msgid "joining a forum/community" msgstr "vous rejoignez un forum ou une communauté" -#: ../../Zotlabs/Module/Settings.php:1085 +#: ../../Zotlabs/Module/Settings.php:1180 msgid "making an interesting profile change" msgstr "vous faîtes une modification intéressante de votre profil" -#: ../../Zotlabs/Module/Settings.php:1086 +#: ../../Zotlabs/Module/Settings.php:1181 msgid "Send a notification email when:" msgstr "Envoyer un courriel de notification quand :" -#: ../../Zotlabs/Module/Settings.php:1087 +#: ../../Zotlabs/Module/Settings.php:1182 msgid "You receive a connection request" msgstr "Vous recevez une demande de contact" -#: ../../Zotlabs/Module/Settings.php:1088 +#: ../../Zotlabs/Module/Settings.php:1183 msgid "Your connections are confirmed" msgstr "Vos contacts sont confirmés" -#: ../../Zotlabs/Module/Settings.php:1089 +#: ../../Zotlabs/Module/Settings.php:1184 msgid "Someone writes on your profile wall" msgstr "Quelqu'un a écrit sur votre mur" -#: ../../Zotlabs/Module/Settings.php:1090 +#: ../../Zotlabs/Module/Settings.php:1185 msgid "Someone writes a followup comment" msgstr "Quelqu'un a commenté vos publications" -#: ../../Zotlabs/Module/Settings.php:1091 +#: ../../Zotlabs/Module/Settings.php:1186 msgid "You receive a private message" msgstr "Vous recevez un message privé" -#: ../../Zotlabs/Module/Settings.php:1092 +#: ../../Zotlabs/Module/Settings.php:1187 msgid "You receive a friend suggestion" msgstr "Vous recevez une suggestion d'amitié/contact" -#: ../../Zotlabs/Module/Settings.php:1093 +#: ../../Zotlabs/Module/Settings.php:1188 msgid "You are tagged in a post" msgstr "Vous êtes étiqueté dans une publication" -#: ../../Zotlabs/Module/Settings.php:1094 +#: ../../Zotlabs/Module/Settings.php:1189 msgid "You are poked/prodded/etc. in a post" msgstr "Vous êtes tapoté/encouragé/etc. dans une publication" -#: ../../Zotlabs/Module/Settings.php:1097 +#: ../../Zotlabs/Module/Settings.php:1192 msgid "Show visual notifications including:" msgstr "Afficher des notifications visuelles y compris :" -#: ../../Zotlabs/Module/Settings.php:1099 +#: ../../Zotlabs/Module/Settings.php:1194 msgid "Unseen grid activity" msgstr "Activité du réseau pas encore consultée" -#: ../../Zotlabs/Module/Settings.php:1100 +#: ../../Zotlabs/Module/Settings.php:1195 msgid "Unseen channel activity" msgstr "Activité non vue sur le canal" -#: ../../Zotlabs/Module/Settings.php:1101 +#: ../../Zotlabs/Module/Settings.php:1196 msgid "Unseen private messages" msgstr "Messages privés non lus" -#: ../../Zotlabs/Module/Settings.php:1101 -#: ../../Zotlabs/Module/Settings.php:1106 -#: ../../Zotlabs/Module/Settings.php:1107 -#: ../../Zotlabs/Module/Settings.php:1108 +#: ../../Zotlabs/Module/Settings.php:1196 +#: ../../Zotlabs/Module/Settings.php:1201 +#: ../../Zotlabs/Module/Settings.php:1202 +#: ../../Zotlabs/Module/Settings.php:1203 msgid "Recommended" msgstr "Recommandé" -#: ../../Zotlabs/Module/Settings.php:1102 +#: ../../Zotlabs/Module/Settings.php:1197 msgid "Upcoming events" msgstr "Événements à venir" -#: ../../Zotlabs/Module/Settings.php:1103 +#: ../../Zotlabs/Module/Settings.php:1198 msgid "Events today" msgstr "Événements aujourd'hui" -#: ../../Zotlabs/Module/Settings.php:1104 +#: ../../Zotlabs/Module/Settings.php:1199 msgid "Upcoming birthdays" msgstr "Anniversaires à venir" -#: ../../Zotlabs/Module/Settings.php:1104 +#: ../../Zotlabs/Module/Settings.php:1199 msgid "Not available in all themes" msgstr "Pas disponible dans tous les thèmes" -#: ../../Zotlabs/Module/Settings.php:1105 +#: ../../Zotlabs/Module/Settings.php:1200 msgid "System (personal) notifications" msgstr "Notifications système (personnelles)" -#: ../../Zotlabs/Module/Settings.php:1106 +#: ../../Zotlabs/Module/Settings.php:1201 msgid "System info messages" msgstr "Messages d'info système" -#: ../../Zotlabs/Module/Settings.php:1107 +#: ../../Zotlabs/Module/Settings.php:1202 msgid "System critical alerts" msgstr "Alertes critiques système" -#: ../../Zotlabs/Module/Settings.php:1108 +#: ../../Zotlabs/Module/Settings.php:1203 msgid "New connections" msgstr "Nouveaux contacts" -#: ../../Zotlabs/Module/Settings.php:1109 +#: ../../Zotlabs/Module/Settings.php:1204 msgid "System Registrations" msgstr "Inscriptions système" -#: ../../Zotlabs/Module/Settings.php:1110 +#: ../../Zotlabs/Module/Settings.php:1205 msgid "" "Also show new wall posts, private messages and connections under Notices" msgstr "Afficher également les nouvelles publications sur le mur, les messages privés et les contacts dans Notifications" -#: ../../Zotlabs/Module/Settings.php:1112 +#: ../../Zotlabs/Module/Settings.php:1207 msgid "Notify me of events this many days in advance" msgstr "Me prévenir d’événements à venir tant de jours en avance" -#: ../../Zotlabs/Module/Settings.php:1112 +#: ../../Zotlabs/Module/Settings.php:1207 msgid "Must be greater than 0" msgstr "Doit être supérieur à 0" -#: ../../Zotlabs/Module/Settings.php:1114 +#: ../../Zotlabs/Module/Settings.php:1209 msgid "Advanced Account/Page Type Settings" msgstr "Paramètres avancés de compte/type de page" -#: ../../Zotlabs/Module/Settings.php:1115 +#: ../../Zotlabs/Module/Settings.php:1210 msgid "Change the behaviour of this account for special situations" msgstr "Modifie le comportement de ce compte pour des situations particulières" -#: ../../Zotlabs/Module/Settings.php:1118 +#: ../../Zotlabs/Module/Settings.php:1213 msgid "" "Please enable expert mode (in Settings > " "Additional features) to adjust!" msgstr "Mode expert requis (Paramètres > Fonctions supplémentaires) pour ajuster !" -#: ../../Zotlabs/Module/Settings.php:1119 +#: ../../Zotlabs/Module/Settings.php:1214 msgid "Miscellaneous Settings" msgstr "Paramètres divers" -#: ../../Zotlabs/Module/Settings.php:1120 +#: ../../Zotlabs/Module/Settings.php:1215 msgid "Default photo upload folder" msgstr "Répertoire par défaut pour les photos téléversées" -#: ../../Zotlabs/Module/Settings.php:1120 -#: ../../Zotlabs/Module/Settings.php:1121 +#: ../../Zotlabs/Module/Settings.php:1215 +#: ../../Zotlabs/Module/Settings.php:1216 msgid "%Y - current year, %m - current month" msgstr "%Y - année en cours, %m - mois en cours" -#: ../../Zotlabs/Module/Settings.php:1121 +#: ../../Zotlabs/Module/Settings.php:1216 msgid "Default file upload folder" msgstr "Répertoire par défaut pour les fichiers téléversés" -#: ../../Zotlabs/Module/Settings.php:1123 +#: ../../Zotlabs/Module/Settings.php:1218 msgid "Personal menu to display in your channel pages" msgstr "Menu personnel à afficher sur les pages de votre canal" -#: ../../Zotlabs/Module/Settings.php:1125 +#: ../../Zotlabs/Module/Settings.php:1220 msgid "Remove this channel." msgstr "Supprimer ce canal" -#: ../../Zotlabs/Module/Settings.php:1126 +#: ../../Zotlabs/Module/Settings.php:1221 msgid "Firefox Share $Projectname provider" msgstr "Connecteur $Projectname pour Firefox Share" -#: ../../Zotlabs/Module/Settings.php:1127 +#: ../../Zotlabs/Module/Settings.php:1222 msgid "Start calendar week on monday" msgstr "Commencer la semaine du calendrier le lundi" @@ -5515,7 +5826,7 @@ msgid "" msgstr "Vous pourriez avoir besoin d'importer le fichier \"install/schema_xxx.sql\" manuellement via un client de base de données (ex: phpmyadmin)." #: ../../Zotlabs/Module/Setup.php:204 ../../Zotlabs/Module/Setup.php:266 -#: ../../Zotlabs/Module/Setup.php:721 +#: ../../Zotlabs/Module/Setup.php:722 msgid "Please see the file \"install/INSTALL.txt\"." msgstr "Merci de consulter le fichier \"install/INSTALL.txt\"." @@ -5715,199 +6026,200 @@ msgid "mb_string PHP module" msgstr "module PHP mb_string" #: ../../Zotlabs/Module/Setup.php:496 -msgid "mcrypt PHP module" -msgstr "module PHP mcrypt" - -#: ../../Zotlabs/Module/Setup.php:497 msgid "xml PHP module" msgstr "module PHP xml" -#: ../../Zotlabs/Module/Setup.php:501 ../../Zotlabs/Module/Setup.php:503 +#: ../../Zotlabs/Module/Setup.php:500 ../../Zotlabs/Module/Setup.php:502 msgid "Apache mod_rewrite module" msgstr "module Apache mod_rewrite" -#: ../../Zotlabs/Module/Setup.php:501 +#: ../../Zotlabs/Module/Setup.php:500 msgid "" "Error: Apache webserver mod-rewrite module is required but not installed." msgstr "Erreur : le module mod-rewrite du serveur web Apache est requis, mais pas installé." -#: ../../Zotlabs/Module/Setup.php:507 ../../Zotlabs/Module/Setup.php:510 +#: ../../Zotlabs/Module/Setup.php:506 ../../Zotlabs/Module/Setup.php:509 msgid "proc_open" msgstr "proc_open" -#: ../../Zotlabs/Module/Setup.php:507 +#: ../../Zotlabs/Module/Setup.php:506 msgid "" "Error: proc_open is required but is either not installed or has been " "disabled in php.ini" msgstr "Erreur : proc_open est requis, mais soit n'est pas installé, soit est désactivé dans le php.ini" -#: ../../Zotlabs/Module/Setup.php:515 +#: ../../Zotlabs/Module/Setup.php:514 msgid "Error: libCURL PHP module required but not installed." msgstr "Erreur : le module libCURL de PHP est requis, mais pas installé." -#: ../../Zotlabs/Module/Setup.php:519 +#: ../../Zotlabs/Module/Setup.php:518 msgid "" "Error: GD graphics PHP module with JPEG support required but not installed." msgstr "Erreur : le module GD de PHP avec support JPEG est requis, mais pas installé." -#: ../../Zotlabs/Module/Setup.php:523 +#: ../../Zotlabs/Module/Setup.php:522 msgid "Error: openssl PHP module required but not installed." msgstr "Erreur : le module openssl de PHP est requis, mais pas installé." -#: ../../Zotlabs/Module/Setup.php:527 +#: ../../Zotlabs/Module/Setup.php:526 msgid "" "Error: mysqli or postgres PHP module required but neither are installed." msgstr "Erreur : un module PHP mysqli ou postgres est requis, mais aucun des deux n'est installé." -#: ../../Zotlabs/Module/Setup.php:531 +#: ../../Zotlabs/Module/Setup.php:530 msgid "Error: mb_string PHP module required but not installed." msgstr "Erreur : le module mb_string de PHP est requis, mais pas installé." -#: ../../Zotlabs/Module/Setup.php:535 -msgid "Error: mcrypt PHP module required but not installed." -msgstr "Erreur : le module mcrypt de PHP est requis, mais pas installé." - -#: ../../Zotlabs/Module/Setup.php:539 +#: ../../Zotlabs/Module/Setup.php:534 msgid "Error: xml PHP module required for DAV but not installed." msgstr "Erreur : le module xml de PHP est requis pour le DAV, mais pas installé." -#: ../../Zotlabs/Module/Setup.php:557 +#: ../../Zotlabs/Module/Setup.php:552 msgid "" "The web installer needs to be able to create a file called \".htconfig.php\"" " in the top folder of your web server and it is unable to do so." msgstr "L'installeur web a besoin de créer un fichier \".htconfig.php\" à la racine de votre serveur web, mais en est incapable." -#: ../../Zotlabs/Module/Setup.php:558 +#: ../../Zotlabs/Module/Setup.php:553 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 "C'est généralement lié à un problème de droits, à cause duquel le serveur web est interdit d'écriture dans le répertoire concerné - alors que votre propre utilisateur a le droit." -#: ../../Zotlabs/Module/Setup.php:559 +#: ../../Zotlabs/Module/Setup.php:554 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 "Au terme de cette procédure, nous vous transmettrons un texte à sauvegarder dans un fichier nommé .htconfig.php, à la racine de votre installation de $Projectname." -#: ../../Zotlabs/Module/Setup.php:560 +#: ../../Zotlabs/Module/Setup.php:555 msgid "" "You can alternatively skip this procedure and perform a manual installation." " Please see the file \"install/INSTALL.txt\" for instructions." msgstr "Autrement, vous pouvez contourner toute cette procédure et réaliser l'installation manuellement. Merci de consulter le fichier \"install/INSTALL.txt\" pour les instructions détaillées." -#: ../../Zotlabs/Module/Setup.php:563 +#: ../../Zotlabs/Module/Setup.php:558 msgid ".htconfig.php is writable" msgstr "Le fichier .htconfig.php est accessible en écriture" -#: ../../Zotlabs/Module/Setup.php:577 +#: ../../Zotlabs/Module/Setup.php:572 msgid "" "Red uses the Smarty3 template engine to render its web views. Smarty3 " "compiles templates to PHP to speed up rendering." msgstr "$Projectname utilise le moteur de gabarits Smarty3 pour mettre son contenu en forme. Smarty3 compile ses modèles vers du PHP natif pour accélérer le rendu." -#: ../../Zotlabs/Module/Setup.php:578 +#: ../../Zotlabs/Module/Setup.php:573 #, php-format msgid "" "In order to store these compiled templates, the web server needs to have " "write access to the directory %s under the top level web folder." msgstr "" -#: ../../Zotlabs/Module/Setup.php:579 ../../Zotlabs/Module/Setup.php:600 +#: ../../Zotlabs/Module/Setup.php:574 ../../Zotlabs/Module/Setup.php:595 msgid "" "Please ensure that the user that your web server runs as (e.g. www-data) has" " write access to this folder." msgstr "Merci de vous assurer que l'utilisateur sous lequel le serveur web tourne (le plus souvent, www-data) a bien l'autorisation d'écrire dans ce répertoire." -#: ../../Zotlabs/Module/Setup.php:580 +#: ../../Zotlabs/Module/Setup.php:575 #, 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 "Note: Comme mesure de sécurité, assurez vous de donner les droits d'écriture au serveur web sur %s uniquement, pas sur les fichiers individuels (.tpl) qu'il contient." -#: ../../Zotlabs/Module/Setup.php:583 +#: ../../Zotlabs/Module/Setup.php:578 #, php-format msgid "%s is writable" msgstr "Permission d'écriture sur %s activée" -#: ../../Zotlabs/Module/Setup.php:599 +#: ../../Zotlabs/Module/Setup.php:594 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" -msgstr "$Projectname utilise le répertoire 'store' - situé à la racine de votre installation de $Projectname - pour sauvegarder les fichiers envoyés. Le serveur web aura donc besoin de pouvoir y écrire." +"This software 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 "" -#: ../../Zotlabs/Module/Setup.php:603 +#: ../../Zotlabs/Module/Setup.php:598 msgid "store is writable" msgstr "'store' est accessible en écriture" -#: ../../Zotlabs/Module/Setup.php:636 +#: ../../Zotlabs/Module/Setup.php:631 msgid "" "SSL certificate cannot be validated. Fix certificate or disable https access" " to this site." msgstr "Le certificat SSL/TLS n'a pas pu être validé. Merci de le corriger, ou de désactiver l'accès https à ce site (non recommandé)." -#: ../../Zotlabs/Module/Setup.php:637 +#: ../../Zotlabs/Module/Setup.php:632 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 "Si votre serveur accepte les connexions https ou s'il permet les connexions sur le port TCP 443 (le port utilisé par le protocole https), vous DEVEZ utiliser un certificat valide. Vous ne DEVEZ PAS utiliser un certificat que vous avez vous-mêmes signé !" -#: ../../Zotlabs/Module/Setup.php:638 +#: ../../Zotlabs/Module/Setup.php:633 msgid "" "This restriction is incorporated because public posts from you may for " "example contain references to images on your own hub." msgstr "Nous avons ajouté cette contrainte pour éviter que vos publications publiques ne fassent référence par exemple à des images sur votre propre hub." -#: ../../Zotlabs/Module/Setup.php:639 +#: ../../Zotlabs/Module/Setup.php:634 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." msgstr "Si votre certificat n'est pas reconnu, les membres des autres sites (qui eux peuvent avoir des certificats valides) recevront des messages d'avertissement sur leur propre site se plaignant de problèmes de sécurité." -#: ../../Zotlabs/Module/Setup.php:640 +#: ../../Zotlabs/Module/Setup.php:635 msgid "" "This can cause usability issues elsewhere (not just on your own site) so we " "must insist on this requirement." msgstr "Ceci peut causer des problèmes d'ergonomie ailleurs (pas seulement sur votre site), nous devons donc insister sur ce prérequis." -#: ../../Zotlabs/Module/Setup.php:641 +#: ../../Zotlabs/Module/Setup.php:636 msgid "" "Providers are available that issue free certificates which are browser-" "valid." msgstr "Il existe des autorités de certification qui vous fourniront gratuitement un certificat valide." -#: ../../Zotlabs/Module/Setup.php:643 +#: ../../Zotlabs/Module/Setup.php:638 +msgid "" +"If you are confident that the certificate is valid and signed by a trusted " +"authority, check to see if you have failed to install an intermediate cert. " +"These are not normally required by browsers, but are required for server-to-" +"server communications." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:641 msgid "SSL certificate validation" msgstr "Validation du certificat SSL/TLS" -#: ../../Zotlabs/Module/Setup.php:649 +#: ../../Zotlabs/Module/Setup.php:647 msgid "" "Url rewrite in .htaccess is not working. Check your server " "configuration.Test: " msgstr "La réécriture d'URL définie dans le .htaccess ne fonctionne pas. Vérifiez votre configuration serveur. Test :" -#: ../../Zotlabs/Module/Setup.php:652 +#: ../../Zotlabs/Module/Setup.php:650 msgid "Url rewrite is working" msgstr "La réécriture d'URL fonctionne" -#: ../../Zotlabs/Module/Setup.php:661 +#: ../../Zotlabs/Module/Setup.php:659 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 "Le fichier de configuration de la base de données - \".htconfig.php\" - ne peut être écrit. Merci de copier le texte généré dans un fichier à ce nom, à la racine de votre serveur web." -#: ../../Zotlabs/Module/Setup.php:685 +#: ../../Zotlabs/Module/Setup.php:683 msgid "Errors encountered creating database tables." msgstr "Erreurs rencontrées pendant la création de tables de BDD." -#: ../../Zotlabs/Module/Setup.php:719 +#: ../../Zotlabs/Module/Setup.php:720 msgid "

What next

" msgstr "

Et maintenant

" -#: ../../Zotlabs/Module/Setup.php:720 +#: ../../Zotlabs/Module/Setup.php:721 msgid "" "IMPORTANT: You will need to [manually] setup a scheduled task for the " "poller." @@ -5929,64 +6241,62 @@ msgstr "Supprimer tous les fichiers" msgid "Remove this file" msgstr "Supprimer ce fichier" -#: ../../Zotlabs/Module/Siteinfo.php:19 +#: ../../Zotlabs/Module/Thing.php:114 +msgid "Thing updated" +msgstr "Elément mis à jour" + +#: ../../Zotlabs/Module/Thing.php:166 +msgid "Object store: failed" +msgstr "Stockage de l'objet : échec" + +#: ../../Zotlabs/Module/Thing.php:170 +msgid "Thing added" +msgstr "Elément ajouté" + +#: ../../Zotlabs/Module/Thing.php:196 #, php-format -msgid "Version %s" -msgstr "Version %s" +msgid "OBJ: %1$s %2$s %3$s" +msgstr "OBJ: %1$s %2$s %3$s" -#: ../../Zotlabs/Module/Siteinfo.php:40 -msgid "Installed plugins/addons/apps:" -msgstr "Greffons/extensions/applications installés :" +#: ../../Zotlabs/Module/Thing.php:259 +msgid "Show Thing" +msgstr "Montrer élément" -#: ../../Zotlabs/Module/Siteinfo.php:53 -msgid "No installed plugins/addons/apps" -msgstr "Aucun greffon/extension/application installé" +#: ../../Zotlabs/Module/Thing.php:266 +msgid "item not found." +msgstr "élément introuvable." -#: ../../Zotlabs/Module/Siteinfo.php:66 -msgid "" -"This is a hub of $Projectname - a global cooperative network of " -"decentralized privacy enhanced websites." -msgstr "Ceci est un serveur $Projectname - un réseau collaboratif mondial de serveurs décentralisés à la confidentialité améliorée." +#: ../../Zotlabs/Module/Thing.php:299 +msgid "Edit Thing" +msgstr "Modifier élément" -#: ../../Zotlabs/Module/Siteinfo.php:68 -msgid "Tag: " -msgstr "Étiquette :" +#: ../../Zotlabs/Module/Thing.php:301 ../../Zotlabs/Module/Thing.php:351 +msgid "Select a profile" +msgstr "Choisissez un profil" -#: ../../Zotlabs/Module/Siteinfo.php:70 -msgid "Last background fetch: " -msgstr "Dernière récupération en tâche de fond :" +#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:354 +msgid "Post an activity" +msgstr "Publier une activité" -#: ../../Zotlabs/Module/Siteinfo.php:72 -msgid "Current load average: " -msgstr "Charge moyenne actuelle :" +#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:354 +msgid "Only sends to viewers of the applicable profile" +msgstr "Envoie exclusivement aux visiteurs du profil concerné" -#: ../../Zotlabs/Module/Siteinfo.php:75 -msgid "Running at web location" -msgstr "Tourne à l'adresse internet" +#: ../../Zotlabs/Module/Thing.php:307 ../../Zotlabs/Module/Thing.php:356 +msgid "Name of thing e.g. something" +msgstr "Nom de l'élément, p.ex. quelque-chose" -#: ../../Zotlabs/Module/Siteinfo.php:76 -msgid "" -"Please visit hubzilla.org to learn more " -"about $Projectname." -msgstr "Merci de visiter hubzilla.org pour en apprendre davantage sur $Projectname." +#: ../../Zotlabs/Module/Thing.php:309 ../../Zotlabs/Module/Thing.php:357 +msgid "URL of thing (optional)" +msgstr "URL de l'élément (facultatif)" -#: ../../Zotlabs/Module/Siteinfo.php:77 -msgid "Bug reports and issues: please visit" -msgstr "Pour remonter bogues et problèmes, merci de visiter" +#: ../../Zotlabs/Module/Thing.php:311 ../../Zotlabs/Module/Thing.php:358 +msgid "URL for photo of thing (optional)" +msgstr "URL d'une photo de l'élément (facultatif)" -#: ../../Zotlabs/Module/Siteinfo.php:79 -msgid "$projectname issues" -msgstr "Problèmes $projectname" - -#: ../../Zotlabs/Module/Siteinfo.php:80 -msgid "" -"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot " -"com" -msgstr "Suggestions, demandes, etc. - merci de vous adresser à \"redmatrix\" à librelist - point com" - -#: ../../Zotlabs/Module/Siteinfo.php:82 -msgid "Site Administrators" -msgstr "Administrateurs du site" +#: ../../Zotlabs/Module/Thing.php:349 +msgid "Add Thing to your Profile" +msgstr "Ajouter l'élément à votre profil" #: ../../Zotlabs/Module/Sources.php:37 msgid "Failed to create source. No channel selected." @@ -6004,8 +6314,8 @@ msgstr "Source mise à jour." msgid "*" msgstr "*" -#: ../../Zotlabs/Module/Sources.php:96 ../../include/widgets.php:630 -#: ../../include/features.php:71 +#: ../../Zotlabs/Module/Sources.php:96 ../../include/features.php:72 +#: ../../include/widgets.php:639 msgid "Channel Sources" msgstr "Sources du canal" @@ -6081,12 +6391,12 @@ msgstr "Aucune suggestion disponible. Si le site est récent, merci de re-tenter msgid "Ignore/Hide" msgstr "Ignorer/Cacher" -#: ../../Zotlabs/Module/Tagger.php:55 ../../include/bbcode.php:256 +#: ../../Zotlabs/Module/Tagger.php:55 ../../include/bbcode.php:263 msgid "post" msgstr "publication" -#: ../../Zotlabs/Module/Tagger.php:57 ../../include/text.php:1948 -#: ../../include/conversation.php:150 +#: ../../Zotlabs/Module/Tagger.php:57 ../../include/conversation.php:150 +#: ../../include/text.php:1929 msgid "comment" msgstr "commentaire" @@ -6107,131 +6417,110 @@ msgstr "Retirer une étiquette à l'élément" msgid "Select a tag to remove: " msgstr "Étiquette à retirer :" -#: ../../Zotlabs/Module/Thing.php:114 -msgid "Thing updated" -msgstr "Elément mis à jour" +#: ../../Zotlabs/Module/Webpages.php:191 ../../Zotlabs/Lib/Apps.php:218 +#: ../../include/nav.php:106 ../../include/conversation.php:1700 +msgid "Webpages" +msgstr "Pages web" -#: ../../Zotlabs/Module/Thing.php:166 -msgid "Object store: failed" -msgstr "Stockage de l'objet : échec" +#: ../../Zotlabs/Module/Webpages.php:202 ../../include/page_widgets.php:44 +msgid "Actions" +msgstr "Actions" -#: ../../Zotlabs/Module/Thing.php:170 -msgid "Thing added" -msgstr "Elément ajouté" +#: ../../Zotlabs/Module/Webpages.php:203 ../../include/page_widgets.php:45 +msgid "Page Link" +msgstr "Lien vers la page" -#: ../../Zotlabs/Module/Thing.php:196 -#, php-format -msgid "OBJ: %1$s %2$s %3$s" -msgstr "OBJ: %1$s %2$s %3$s" +#: ../../Zotlabs/Module/Webpages.php:204 +msgid "Page Title" +msgstr "Titre de la page" -#: ../../Zotlabs/Module/Thing.php:259 -msgid "Show Thing" -msgstr "Montrer élément" +#: ../../Zotlabs/Module/Wiki.php:34 +msgid "Not found" +msgstr "" -#: ../../Zotlabs/Module/Thing.php:266 -msgid "item not found." -msgstr "élément introuvable." +#: ../../Zotlabs/Module/Wiki.php:92 ../../Zotlabs/Lib/Apps.php:219 +#: ../../include/nav.php:108 ../../include/conversation.php:1710 +#: ../../include/conversation.php:1713 ../../include/features.php:55 +msgid "Wiki" +msgstr "" -#: ../../Zotlabs/Module/Thing.php:299 -msgid "Edit Thing" -msgstr "Modifier élément" +#: ../../Zotlabs/Module/Wiki.php:93 +msgid "Sandbox" +msgstr "" -#: ../../Zotlabs/Module/Thing.php:301 ../../Zotlabs/Module/Thing.php:351 -msgid "Select a profile" -msgstr "Choisissez un profil" - -#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:354 -msgid "Post an activity" -msgstr "Publier une activité" - -#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:354 -msgid "Only sends to viewers of the applicable profile" -msgstr "Envoie exclusivement aux visiteurs du profil concerné" - -#: ../../Zotlabs/Module/Thing.php:307 ../../Zotlabs/Module/Thing.php:356 -msgid "Name of thing e.g. something" -msgstr "Nom de l'élément, p.ex. quelque-chose" - -#: ../../Zotlabs/Module/Thing.php:309 ../../Zotlabs/Module/Thing.php:357 -msgid "URL of thing (optional)" -msgstr "URL de l'élément (facultatif)" - -#: ../../Zotlabs/Module/Thing.php:311 ../../Zotlabs/Module/Thing.php:358 -msgid "URL for photo of thing (optional)" -msgstr "URL d'une photo de l'élément (facultatif)" - -#: ../../Zotlabs/Module/Thing.php:349 -msgid "Add Thing to your Profile" -msgstr "Ajouter l'élément à votre profil" - -#: ../../Zotlabs/Module/Uexport.php:55 ../../Zotlabs/Module/Uexport.php:56 -msgid "Export Channel" -msgstr "Exporter le canal" - -#: ../../Zotlabs/Module/Uexport.php:57 +#: ../../Zotlabs/Module/Wiki.php:95 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 "Exportez les principales informations de votre canal dans un fichier. Celui-ci pourra servir de sauvegarde de vos contacts, permissions, profils et données de base. Il pourra être importé sur un nouveau hub/serveur, mais n'embarquera pas vos contenus." +"\"# Wiki Sandbox\\n\\nContent you **edit** and **preview** here *will not be" +" saved*.\"" +msgstr "" -#: ../../Zotlabs/Module/Uexport.php:58 -msgid "Export Content" -msgstr "Exporter le contenu" +#: ../../Zotlabs/Module/Wiki.php:164 +msgid "Revision Comparison" +msgstr "" -#: ../../Zotlabs/Module/Uexport.php:59 -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 "Exportez les informations du canal et les contenus récents dans un fichier JSON. Celui-ci contiendra toutes vos relations, permissions, profils, et plusieurs mois de publications. Ce fichier peut être TRÈS gros. Armez-vous de patience - plusieurs minutes peuvent s'écouler avant que le téléchargement ne commence." +#: ../../Zotlabs/Module/Wiki.php:165 +msgid "Revert" +msgstr "" -#: ../../Zotlabs/Module/Uexport.php:60 -msgid "Export your posts from a given year." -msgstr "Exporter vos publications d'une année en particulier" +#: ../../Zotlabs/Module/Wiki.php:192 +msgid "Enter the name of your new wiki:" +msgstr "" -#: ../../Zotlabs/Module/Uexport.php:62 -msgid "" -"You may also export your posts and conversations for a particular year or " -"month. Adjust the date in your browser location bar to select other dates. " -"If the export fails (possibly due to memory exhaustion on your server hub), " -"please try again selecting a more limited date range." -msgstr "Vous pouvez également exporter vos publications et conversations pour une année ou un mois particulier. Ajustez la date dans la barre de votre navigateur pour sélectionner d'autres dates. Si l'export échoue (possible en cas de pénurie de mémoire sur le serveur de votre hub), essayez à nouveau en sélectionnant un intervalle de dates plus petit." +#: ../../Zotlabs/Module/Wiki.php:193 +msgid "Enter the name of the new page:" +msgstr "" -#: ../../Zotlabs/Module/Uexport.php:63 -#, php-format -msgid "" -"To select all posts for a given year, such as this year, visit %2$s" -msgstr "Pour sélectionner toutes les publications pour une année donnée, telle que cette année, visitez %2$s" +#: ../../Zotlabs/Module/Wiki.php:194 +msgid "Enter the new name:" +msgstr "" -#: ../../Zotlabs/Module/Uexport.php:64 -#, php-format -msgid "" -"To select all posts for a given month, such as January of this year, visit " -"%2$s" -msgstr "Pour sélectionner toutes les publications pour un mois donné, par exemple janvier, visitez %2$s" +#: ../../Zotlabs/Module/Wiki.php:200 ../../include/conversation.php:1150 +msgid "Embed image from photo albums" +msgstr "" -#: ../../Zotlabs/Module/Uexport.php:65 -#, php-format -msgid "" -"These content files may be imported or restored by visiting %2$s on any site containing your channel. For best results" -" please import or restore these in date order (oldest first)." -msgstr "Ces fichiers de contenu peuvent être importés ou restaurés en visitant %2$s sur n'importe quel site hébergeant votre canal. Pour de meilleurs résultats merci de les importer par ordre chronologique (les plus anciens d'abord)." +#: ../../Zotlabs/Module/Wiki.php:201 ../../include/conversation.php:1234 +msgid "Embed an image from your albums" +msgstr "" -#: ../../Zotlabs/Module/Viewconnections.php:62 +#: ../../Zotlabs/Module/Wiki.php:203 ../../include/conversation.php:1236 +#: ../../include/conversation.php:1273 +msgid "OK" +msgstr "OK" + +#: ../../Zotlabs/Module/Wiki.php:204 ../../include/conversation.php:1186 +msgid "Choose images to embed" +msgstr "" + +#: ../../Zotlabs/Module/Wiki.php:205 ../../include/conversation.php:1187 +msgid "Choose an album" +msgstr "" + +#: ../../Zotlabs/Module/Wiki.php:206 ../../include/conversation.php:1188 +msgid "Choose a different album..." +msgstr "" + +#: ../../Zotlabs/Module/Wiki.php:207 ../../include/conversation.php:1189 +msgid "Error getting album list" +msgstr "" + +#: ../../Zotlabs/Module/Wiki.php:208 ../../include/conversation.php:1190 +msgid "Error getting photo link" +msgstr "" + +#: ../../Zotlabs/Module/Wiki.php:209 ../../include/conversation.php:1191 +msgid "Error getting album" +msgstr "" + +#: ../../Zotlabs/Module/Viewconnections.php:65 msgid "No connections." msgstr "Aucun contact." -#: ../../Zotlabs/Module/Viewconnections.php:75 +#: ../../Zotlabs/Module/Viewconnections.php:78 #, php-format msgid "Visit %s's profile [%s]" msgstr "Visiter le profil de %s [%s]" -#: ../../Zotlabs/Module/Viewconnections.php:104 +#: ../../Zotlabs/Module/Viewconnections.php:107 msgid "View Connections" msgstr "Voir les contacts" @@ -6239,22 +6528,23 @@ msgstr "Voir les contacts" msgid "Source of Item" msgstr "Source de l'élément" -#: ../../Zotlabs/Module/Webpages.php:184 ../../Zotlabs/Lib/Apps.php:217 -#: ../../include/nav.php:106 ../../include/conversation.php:1685 -msgid "Webpages" -msgstr "Pages web" +#: ../../Zotlabs/Module/Api.php:61 ../../Zotlabs/Module/Api.php:85 +msgid "Authorize application connection" +msgstr "Autoriser l'application à se connecter" -#: ../../Zotlabs/Module/Webpages.php:195 ../../include/page_widgets.php:41 -msgid "Actions" -msgstr "Actions" +#: ../../Zotlabs/Module/Api.php:62 +msgid "Return to your app and insert this Securty Code:" +msgstr "Merci de retourner vers votre application, et d'y insérer ce Code de Sécurité :" -#: ../../Zotlabs/Module/Webpages.php:196 ../../include/page_widgets.php:42 -msgid "Page Link" -msgstr "Lien vers la page" +#: ../../Zotlabs/Module/Api.php:72 +msgid "Please login to continue." +msgstr "Merci de vous identifier pour continuer." -#: ../../Zotlabs/Module/Webpages.php:197 -msgid "Page Title" -msgstr "Titre de la page" +#: ../../Zotlabs/Module/Api.php:87 +msgid "" +"Do you want to authorize this application to access your posts and contacts," +" and/or create new posts for you?" +msgstr "Voulez-vous autoriser cette application à accéder à vos publications et contacts, et/ou à publier en votre nom?" #: ../../Zotlabs/Module/Xchan.php:10 msgid "Xchan Lookup" @@ -6264,92 +6554,6 @@ msgstr "Recherche xchan" msgid "Lookup xchan beginning with (or webbie): " msgstr "Recherche xchan commençant par (ou adresse \"webbie\") :" -#: ../../Zotlabs/Lib/Apps.php:204 -msgid "Site Admin" -msgstr "Administrateur" - -#: ../../Zotlabs/Lib/Apps.php:205 -msgid "Bug Report" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:206 -msgid "View Bookmarks" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:207 -msgid "My Chatrooms" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:209 -msgid "Firefox Share" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:210 -msgid "Remote Diagnostics" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:211 ../../include/features.php:89 -msgid "Suggest Channels" -msgstr "Suggérer des canaux" - -#: ../../Zotlabs/Lib/Apps.php:212 ../../include/nav.php:110 -#: ../../boot.php:1703 -msgid "Login" -msgstr "Connexion" - -#: ../../Zotlabs/Lib/Apps.php:214 ../../include/nav.php:179 -msgid "Grid" -msgstr "Réseau" - -#: ../../Zotlabs/Lib/Apps.php:218 ../../include/nav.php:182 -msgid "Channel Home" -msgstr "Mon canal" - -#: ../../Zotlabs/Lib/Apps.php:221 ../../include/nav.php:201 -#: ../../include/conversation.php:1649 ../../include/conversation.php:1652 -msgid "Events" -msgstr "Événements" - -#: ../../Zotlabs/Lib/Apps.php:222 ../../include/nav.php:167 -msgid "Directory" -msgstr "Annuaire" - -#: ../../Zotlabs/Lib/Apps.php:224 ../../include/nav.php:193 -msgid "Mail" -msgstr "Messages" - -#: ../../Zotlabs/Lib/Apps.php:227 ../../include/nav.php:96 -msgid "Chat" -msgstr "Clavardage" - -#: ../../Zotlabs/Lib/Apps.php:229 -msgid "Probe" -msgstr "Sonder" - -#: ../../Zotlabs/Lib/Apps.php:230 -msgid "Suggest" -msgstr "Suggérer" - -#: ../../Zotlabs/Lib/Apps.php:231 -msgid "Random Channel" -msgstr "Un canal au hasard" - -#: ../../Zotlabs/Lib/Apps.php:232 -msgid "Invite" -msgstr "Invitation" - -#: ../../Zotlabs/Lib/Apps.php:233 ../../include/widgets.php:1386 -msgid "Features" -msgstr "Fonctionalités" - -#: ../../Zotlabs/Lib/Apps.php:235 -msgid "Post" -msgstr "Envoyer" - -#: ../../Zotlabs/Lib/Apps.php:335 -msgid "Purchase" -msgstr "Acheter" - #: ../../Zotlabs/Lib/Chatroom.php:27 msgid "Missing room name" msgstr "Il manque le nom du salon" @@ -6370,19 +6574,19 @@ msgstr "Salon introuvable." msgid "Room is full" msgstr "Le salon est plein" -#: ../../Zotlabs/Lib/Enotify.php:60 ../../include/network.php:1823 +#: ../../Zotlabs/Lib/Enotify.php:60 ../../include/network.php:1882 msgid "$Projectname Notification" msgstr "Notification $Projectname" -#: ../../Zotlabs/Lib/Enotify.php:61 ../../include/network.php:1824 +#: ../../Zotlabs/Lib/Enotify.php:61 ../../include/network.php:1883 msgid "$projectname" msgstr "$projectname" -#: ../../Zotlabs/Lib/Enotify.php:63 ../../include/network.php:1826 +#: ../../Zotlabs/Lib/Enotify.php:63 ../../include/network.php:1885 msgid "Thank You," msgstr "Merci," -#: ../../Zotlabs/Lib/Enotify.php:65 ../../include/network.php:1828 +#: ../../Zotlabs/Lib/Enotify.php:65 ../../include/network.php:1887 #, php-format msgid "%s Administrator" msgstr "l'administrateur de %s" @@ -6575,11 +6779,97 @@ msgstr "a publié un nouveau message" msgid "commented on %s's post" msgstr "a commenté la publication de %s" -#: ../../Zotlabs/Lib/ThreadItem.php:95 ../../include/conversation.php:664 +#: ../../Zotlabs/Lib/Apps.php:205 +msgid "Site Admin" +msgstr "Administrateur" + +#: ../../Zotlabs/Lib/Apps.php:206 +msgid "Bug Report" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:207 +msgid "View Bookmarks" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:208 +msgid "My Chatrooms" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:210 +msgid "Firefox Share" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:211 +msgid "Remote Diagnostics" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:212 ../../include/features.php:90 +msgid "Suggest Channels" +msgstr "Suggérer des canaux" + +#: ../../Zotlabs/Lib/Apps.php:213 ../../include/nav.php:112 +#: ../../boot.php:1704 +msgid "Login" +msgstr "Connexion" + +#: ../../Zotlabs/Lib/Apps.php:215 ../../include/nav.php:181 +msgid "Grid" +msgstr "Réseau" + +#: ../../Zotlabs/Lib/Apps.php:220 ../../include/nav.php:184 +msgid "Channel Home" +msgstr "Mon canal" + +#: ../../Zotlabs/Lib/Apps.php:223 ../../include/nav.php:203 +#: ../../include/conversation.php:1664 ../../include/conversation.php:1667 +msgid "Events" +msgstr "Événements" + +#: ../../Zotlabs/Lib/Apps.php:224 ../../include/nav.php:169 +msgid "Directory" +msgstr "Annuaire" + +#: ../../Zotlabs/Lib/Apps.php:226 ../../include/nav.php:195 +msgid "Mail" +msgstr "Messages" + +#: ../../Zotlabs/Lib/Apps.php:229 ../../include/nav.php:96 +msgid "Chat" +msgstr "Clavardage" + +#: ../../Zotlabs/Lib/Apps.php:231 +msgid "Probe" +msgstr "Sonder" + +#: ../../Zotlabs/Lib/Apps.php:232 +msgid "Suggest" +msgstr "Suggérer" + +#: ../../Zotlabs/Lib/Apps.php:233 +msgid "Random Channel" +msgstr "Un canal au hasard" + +#: ../../Zotlabs/Lib/Apps.php:234 +msgid "Invite" +msgstr "Invitation" + +#: ../../Zotlabs/Lib/Apps.php:235 ../../include/widgets.php:1480 +msgid "Features" +msgstr "Fonctionalités" + +#: ../../Zotlabs/Lib/Apps.php:237 +msgid "Post" +msgstr "Envoyer" + +#: ../../Zotlabs/Lib/Apps.php:339 +msgid "Purchase" +msgstr "Acheter" + +#: ../../Zotlabs/Lib/ThreadItem.php:95 ../../include/conversation.php:667 msgid "Private Message" msgstr "Message Privé" -#: ../../Zotlabs/Lib/ThreadItem.php:132 ../../include/conversation.php:656 +#: ../../Zotlabs/Lib/ThreadItem.php:132 ../../include/conversation.php:659 msgid "Select" msgstr "Sélectionner" @@ -6627,11 +6917,11 @@ msgstr "(Dés)activer l'étoile" msgid "starred" msgstr "mis en avant" -#: ../../Zotlabs/Lib/ThreadItem.php:234 ../../include/conversation.php:671 +#: ../../Zotlabs/Lib/ThreadItem.php:234 ../../include/conversation.php:674 msgid "Message signature validated" msgstr "Signature du message validée" -#: ../../Zotlabs/Lib/ThreadItem.php:235 ../../include/conversation.php:672 +#: ../../Zotlabs/Lib/ThreadItem.php:235 ../../include/conversation.php:675 msgid "Message signature incorrect" msgstr "Signature du message incorrecte" @@ -6687,17 +6977,17 @@ msgstr "Mur-à-mur" msgid "via Wall-To-Wall:" msgstr "par Mur-à-mur :" -#: ../../Zotlabs/Lib/ThreadItem.php:341 ../../include/conversation.php:719 +#: ../../Zotlabs/Lib/ThreadItem.php:341 ../../include/conversation.php:722 #, php-format msgid "from %s" msgstr "de %s" -#: ../../Zotlabs/Lib/ThreadItem.php:344 ../../include/conversation.php:722 +#: ../../Zotlabs/Lib/ThreadItem.php:344 ../../include/conversation.php:725 #, php-format msgid "last edited: %s" msgstr "dernière modification : %s" -#: ../../Zotlabs/Lib/ThreadItem.php:345 ../../include/conversation.php:723 +#: ../../Zotlabs/Lib/ThreadItem.php:345 ../../include/conversation.php:726 #, php-format msgid "Expires: %s" msgstr "Expire : %s" @@ -6715,26 +7005,27 @@ msgid "Mark all seen" msgstr "Tout marquer comme vu" #: ../../Zotlabs/Lib/ThreadItem.php:421 ../../include/js_strings.php:7 -msgid "[+] show all" -msgstr "[+] voir tous" +#, php-format +msgid "%s show all" +msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:711 ../../include/conversation.php:1215 +#: ../../Zotlabs/Lib/ThreadItem.php:711 ../../include/conversation.php:1226 msgid "Bold" msgstr "Gras" -#: ../../Zotlabs/Lib/ThreadItem.php:712 ../../include/conversation.php:1216 +#: ../../Zotlabs/Lib/ThreadItem.php:712 ../../include/conversation.php:1227 msgid "Italic" msgstr "Italique" -#: ../../Zotlabs/Lib/ThreadItem.php:713 ../../include/conversation.php:1217 +#: ../../Zotlabs/Lib/ThreadItem.php:713 ../../include/conversation.php:1228 msgid "Underline" msgstr "Souligné" -#: ../../Zotlabs/Lib/ThreadItem.php:714 ../../include/conversation.php:1218 +#: ../../Zotlabs/Lib/ThreadItem.php:714 ../../include/conversation.php:1229 msgid "Quote" msgstr "Citation" -#: ../../Zotlabs/Lib/ThreadItem.php:715 ../../include/conversation.php:1219 +#: ../../Zotlabs/Lib/ThreadItem.php:715 ../../include/conversation.php:1230 msgid "Code" msgstr "Code" @@ -6750,11 +7041,74 @@ msgstr "Insérer un lien" msgid "Video" msgstr "Vidéo" +#: ../../Zotlabs/Lib/PermissionDescription.php:31 +#: ../../include/acl_selectors.php:230 +msgid "Visible to your default audience" +msgstr "Visible pour vos contacts seulement" + +#: ../../Zotlabs/Lib/PermissionDescription.php:106 +#: ../../include/acl_selectors.php:266 +msgid "Only me" +msgstr "" + +#: ../../Zotlabs/Lib/PermissionDescription.php:107 +msgid "Public" +msgstr "Public" + +#: ../../Zotlabs/Lib/PermissionDescription.php:108 +msgid "Anybody in the $Projectname network" +msgstr "" + +#: ../../Zotlabs/Lib/PermissionDescription.php:109 +#, php-format +msgid "Any account on %s" +msgstr "" + +#: ../../Zotlabs/Lib/PermissionDescription.php:110 +msgid "Any of my connections" +msgstr "" + +#: ../../Zotlabs/Lib/PermissionDescription.php:111 +msgid "Only connections I specifically allow" +msgstr "" + +#: ../../Zotlabs/Lib/PermissionDescription.php:112 +msgid "Anybody authenticated (could include visitors from other networks)" +msgstr "" + +#: ../../Zotlabs/Lib/PermissionDescription.php:113 +msgid "Any connections including those who haven't yet been approved" +msgstr "" + +#: ../../Zotlabs/Lib/PermissionDescription.php:152 +msgid "" +"This is your default setting for the audience of your normal stream, and " +"posts." +msgstr "" + +#: ../../Zotlabs/Lib/PermissionDescription.php:153 +msgid "" +"This is your default setting for who can view your default channel profile" +msgstr "" + +#: ../../Zotlabs/Lib/PermissionDescription.php:154 +msgid "This is your default setting for who can view your connections" +msgstr "" + +#: ../../Zotlabs/Lib/PermissionDescription.php:155 +msgid "" +"This is your default setting for who can view your file storage and photos" +msgstr "" + +#: ../../Zotlabs/Lib/PermissionDescription.php:156 +msgid "This is your default setting for the audience of your webpages" +msgstr "" + #: ../../include/Import/import_diaspora.php:16 msgid "No username found in import file." msgstr "Aucun nom d'utilisateur dans le fichier d'import." -#: ../../include/Import/import_diaspora.php:41 ../../include/import.php:50 +#: ../../include/Import/import_diaspora.php:41 ../../include/import.php:51 msgid "Unable to create a unique channel address. Import failed." msgstr "Impossible de créer une adresse de canal unique. Echec de l'import." @@ -6763,6 +7117,291 @@ msgstr "Impossible de créer une adresse de canal unique. Echec de l'import." msgid "Cannot locate DNS info for database server '%s'" msgstr "Impossible de trouver les infos DNS du serveur de BDD '%s'" +#: ../../include/photos.php:114 +#, php-format +msgid "Image exceeds website size limit of %lu bytes" +msgstr "L'image dépasse la taille limite de %lu octets" + +#: ../../include/photos.php:121 +msgid "Image file is empty." +msgstr "L'image est vide." + +#: ../../include/photos.php:259 +msgid "Photo storage failed." +msgstr "Le stockage de l'image a échoué." + +#: ../../include/photos.php:299 +msgid "a new photo" +msgstr "une nouvelle photo" + +#: ../../include/photos.php:303 +#, php-format +msgctxt "photo_upload" +msgid "%1$s posted %2$s to %3$s" +msgstr "%1$s a publié %2$s pour %3$s" + +#: ../../include/photos.php:506 ../../include/conversation.php:1650 +msgid "Photo Albums" +msgstr "Albums photo" + +#: ../../include/photos.php:510 +msgid "Upload New Photos" +msgstr "Ajouter des photos" + +#: ../../include/nav.php:82 ../../include/nav.php:115 ../../boot.php:1703 +msgid "Logout" +msgstr "Déconnexion" + +#: ../../include/nav.php:82 ../../include/nav.php:115 +msgid "End this session" +msgstr "Mettre fin à la session" + +#: ../../include/nav.php:85 ../../include/nav.php:146 +msgid "Home" +msgstr "Mon canal" + +#: ../../include/nav.php:85 +msgid "Your posts and conversations" +msgstr "Vos publications et conversations" + +#: ../../include/nav.php:86 +msgid "Your profile page" +msgstr "Votre profil" + +#: ../../include/nav.php:88 +msgid "Manage/Edit profiles" +msgstr "Gérer/modifier les profils" + +#: ../../include/nav.php:90 ../../include/channel.php:980 +msgid "Edit Profile" +msgstr "Éditeur de profil" + +#: ../../include/nav.php:90 +msgid "Edit your profile" +msgstr "Modifier votre profil" + +#: ../../include/nav.php:92 +msgid "Your photos" +msgstr "Vos photos" + +#: ../../include/nav.php:93 +msgid "Your files" +msgstr "Vos fichiers" + +#: ../../include/nav.php:96 +msgid "Your chatrooms" +msgstr "Vos salons" + +#: ../../include/nav.php:102 ../../include/conversation.php:1690 +msgid "Bookmarks" +msgstr "Favoris" + +#: ../../include/nav.php:102 +msgid "Your bookmarks" +msgstr "Vos favoris" + +#: ../../include/nav.php:106 +msgid "Your webpages" +msgstr "Vos pages web" + +#: ../../include/nav.php:108 +msgid "Your wiki" +msgstr "" + +#: ../../include/nav.php:112 +msgid "Sign in" +msgstr "Connexion" + +#: ../../include/nav.php:129 +#, php-format +msgid "%s - click to logout" +msgstr "%s - cliquer ici pour déconnecter" + +#: ../../include/nav.php:132 +msgid "Remote authentication" +msgstr "Authentification distante" + +#: ../../include/nav.php:132 +msgid "Click to authenticate to your home hub" +msgstr "S'authentifier auprès de votre hub principal" + +#: ../../include/nav.php:146 +msgid "Home Page" +msgstr "Page d'accueil" + +#: ../../include/nav.php:149 +msgid "Create an account" +msgstr "Créer un compte" + +#: ../../include/nav.php:161 +msgid "Help and documentation" +msgstr "Aide et documentation" + +#: ../../include/nav.php:165 +msgid "Applications, utilities, links, games" +msgstr "Applications, utilitaires, liens, jeux" + +#: ../../include/nav.php:167 +msgid "Search site @name, #tag, ?docs, content" +msgstr "Recherche @nom, #tag, contenu" + +#: ../../include/nav.php:169 +msgid "Channel Directory" +msgstr "Annuaire des canaux" + +#: ../../include/nav.php:181 +msgid "Your grid" +msgstr "Votre réseau" + +#: ../../include/nav.php:182 +msgid "Mark all grid notifications seen" +msgstr "Marquer toutes les notifications du réseau comme vues" + +#: ../../include/nav.php:184 +msgid "Channel home" +msgstr "Mon canal" + +#: ../../include/nav.php:185 +msgid "Mark all channel notifications seen" +msgstr "Marquer toutes les notifications du canal comme vues" + +#: ../../include/nav.php:191 +msgid "Notices" +msgstr "Notifications" + +#: ../../include/nav.php:191 +msgid "Notifications" +msgstr "Notifications" + +#: ../../include/nav.php:192 +msgid "See all notifications" +msgstr "Voir toutes les notifications" + +#: ../../include/nav.php:195 +msgid "Private mail" +msgstr "Messages privés" + +#: ../../include/nav.php:196 +msgid "See all private messages" +msgstr "Voir tous les messages privés" + +#: ../../include/nav.php:197 +msgid "Mark all private messages seen" +msgstr "Marquer tous les messages privés comme vus" + +#: ../../include/nav.php:198 ../../include/widgets.php:667 +msgid "Inbox" +msgstr "Boîte de réception" + +#: ../../include/nav.php:199 ../../include/widgets.php:672 +msgid "Outbox" +msgstr "Boîte d'envoi" + +#: ../../include/nav.php:200 ../../include/widgets.php:677 +msgid "New Message" +msgstr "Nouveau message" + +#: ../../include/nav.php:203 +msgid "Event Calendar" +msgstr "Calendrier des événements" + +#: ../../include/nav.php:204 +msgid "See all events" +msgstr "Voir tous les événements" + +#: ../../include/nav.php:205 +msgid "Mark all events seen" +msgstr "Marquer tous les événements comme vus" + +#: ../../include/nav.php:208 +msgid "Manage Your Channels" +msgstr "Gérer vos canaux" + +#: ../../include/nav.php:210 +msgid "Account/Channel Settings" +msgstr "Paramètres du Compte/Canal" + +#: ../../include/nav.php:218 ../../include/widgets.php:1510 +msgid "Admin" +msgstr "Administrateur" + +#: ../../include/nav.php:218 +msgid "Site Setup and Configuration" +msgstr "Configuration du site" + +#: ../../include/nav.php:249 ../../include/conversation.php:854 +msgid "Loading..." +msgstr "Chargement..." + +#: ../../include/nav.php:254 +msgid "@name, #tag, ?doc, content" +msgstr "@nom, #étiquette, ?doc, contenu" + +#: ../../include/nav.php:255 +msgid "Please wait..." +msgstr "Merci de patienter..." + +#: ../../include/network.php:704 +msgid "view full size" +msgstr "voir en taille réelle" + +#: ../../include/network.php:1930 ../../include/account.php:317 +#: ../../include/account.php:344 ../../include/account.php:404 +msgid "Administrator" +msgstr "Administrateur" + +#: ../../include/network.php:1944 +msgid "No Subject" +msgstr "Pas d'objet" + +#: ../../include/network.php:2198 ../../include/network.php:2199 +msgid "Friendica" +msgstr "Friendica" + +#: ../../include/network.php:2200 +msgid "OStatus" +msgstr "OStatus" + +#: ../../include/network.php:2201 +msgid "GNU-Social" +msgstr "" + +#: ../../include/network.php:2202 +msgid "RSS/Atom" +msgstr "RSS/Atom" + +#: ../../include/network.php:2204 +msgid "Diaspora" +msgstr "Diaspora" + +#: ../../include/network.php:2205 +msgid "Facebook" +msgstr "Facebook" + +#: ../../include/network.php:2206 +msgid "Zot" +msgstr "Zot" + +#: ../../include/network.php:2207 +msgid "LinkedIn" +msgstr "Linkedin" + +#: ../../include/network.php:2208 +msgid "XMPP/IM" +msgstr "XMPP/IM" + +#: ../../include/network.php:2209 +msgid "MySpace" +msgstr "MySpace" + +#: ../../include/page_widgets.php:7 +msgid "New Page" +msgstr "Nouvelle page" + +#: ../../include/page_widgets.php:46 +msgid "Title" +msgstr "Titre" + #: ../../include/taxonomy.php:188 ../../include/taxonomy.php:270 #: ../../include/widgets.php:46 ../../include/widgets.php:429 #: ../../include/contact_widgets.php:91 @@ -6801,952 +7440,159 @@ msgstr "aime" msgid "dislikes" msgstr "n'aime pas" -#: ../../include/event.php:22 ../../include/event.php:69 -#: ../../include/bb2diaspora.php:485 -msgid "l F d, Y \\@ g:i A" -msgstr "l d F Y \\à G\\hi" +#: ../../include/channel.php:33 +msgid "Unable to obtain identity information from database" +msgstr "Impossible d'obtenir les données d'identité depuis la base de données" -#: ../../include/event.php:30 ../../include/event.php:73 -#: ../../include/bb2diaspora.php:491 -msgid "Starts:" -msgstr "Début :" +#: ../../include/channel.php:67 +msgid "Empty name" +msgstr "Nom vide" -#: ../../include/event.php:40 ../../include/event.php:77 -#: ../../include/bb2diaspora.php:499 -msgid "Finishes:" -msgstr "Fin :" +#: ../../include/channel.php:70 +msgid "Name too long" +msgstr "Nom trop long" -#: ../../include/event.php:812 -msgid "This event has been added to your calendar." -msgstr "Cet évènement a été ajouté dans votre calendrier." +#: ../../include/channel.php:181 +msgid "No account identifier" +msgstr "Pas d'identifiant de compte" -#: ../../include/event.php:1012 -msgid "Not specified" -msgstr "Non spécifié" +#: ../../include/channel.php:193 +msgid "Nickname is required." +msgstr "Un surnom est requis." -#: ../../include/event.php:1013 -msgid "Needs Action" -msgstr "Besoin d'une action" +#: ../../include/channel.php:207 +msgid "Reserved nickname. Please choose another." +msgstr "Surnom réservé. Merci d'en choisir un autre." -#: ../../include/event.php:1014 -msgid "Completed" -msgstr "Terminé" - -#: ../../include/event.php:1015 -msgid "In Process" -msgstr "En cours" - -#: ../../include/event.php:1016 -msgid "Cancelled" -msgstr "Annulé" - -#: ../../include/import.php:29 +#: ../../include/channel.php:212 msgid "" -"Cannot create a duplicate channel identifier on this system. Import failed." -msgstr "L'import a échoué. Un canal existe déjà avec ce nom" +"Nickname has unsupported characters or is already being used on this site." +msgstr "Le surnom contient des caractères interdits ou est déjà pris sur ce site." -#: ../../include/import.php:76 -msgid "Channel clone failed. Import failed." -msgstr "Echec du clonage du canal. Echec de l'impot." +#: ../../include/channel.php:272 +msgid "Unable to retrieve created identity" +msgstr "Impossible de récupérer l'identité créée" -#: ../../include/items.php:892 ../../include/items.php:937 -msgid "(Unknown)" -msgstr "(Inconnu)" +#: ../../include/channel.php:341 +msgid "Default Profile" +msgstr "Profil par défaut" -#: ../../include/items.php:1136 -msgid "Visible to anybody on the internet." -msgstr "Visible pour tout le monde sur internet." +#: ../../include/channel.php:830 +msgid "Requested channel is not available." +msgstr "Canal demandé non disponible." -#: ../../include/items.php:1138 -msgid "Visible to you only." -msgstr "Visible pour vous seulement." +#: ../../include/channel.php:977 +msgid "Create New Profile" +msgstr "Créer un nouveau profil" -#: ../../include/items.php:1140 -msgid "Visible to anybody in this network." -msgstr "Visible pour tout le monde sur ce réseau." +#: ../../include/channel.php:997 +msgid "Visible to everybody" +msgstr "Visible de tous" -#: ../../include/items.php:1142 -msgid "Visible to anybody authenticated." -msgstr "Visible aux utilisateurs authentifiés." +#: ../../include/channel.php:1070 ../../include/channel.php:1182 +msgid "Gender:" +msgstr "Sexe :" -#: ../../include/items.php:1144 +#: ../../include/channel.php:1071 ../../include/channel.php:1226 +msgid "Status:" +msgstr "État :" + +#: ../../include/channel.php:1072 ../../include/channel.php:1237 +msgid "Homepage:" +msgstr "Site Internet :" + +#: ../../include/channel.php:1073 +msgid "Online Now" +msgstr "Connecté" + +#: ../../include/channel.php:1187 +msgid "Like this channel" +msgstr "J'aime ce canal" + +#: ../../include/channel.php:1211 +msgid "j F, Y" +msgstr "j F, Y" + +#: ../../include/channel.php:1212 +msgid "j F" +msgstr "j F" + +#: ../../include/channel.php:1219 +msgid "Birthday:" +msgstr "Date de naissance :" + +#: ../../include/channel.php:1232 #, php-format -msgid "Visible to anybody on %s." -msgstr "Visible pour tous sur %s." +msgid "for %1$d %2$s" +msgstr "depuis %1$d %2$s" -#: ../../include/items.php:1146 -msgid "Visible to all connections." -msgstr "Visible pour tous les contacts." +#: ../../include/channel.php:1235 +msgid "Sexual Preference:" +msgstr "Orientation sexuelle :" -#: ../../include/items.php:1148 -msgid "Visible to approved connections." -msgstr "Visible aux contacts approuvés." +#: ../../include/channel.php:1241 +msgid "Tags:" +msgstr "Étiquettes :" -#: ../../include/items.php:1150 -msgid "Visible to specific connections." -msgstr "Visible pour certains contacts." +#: ../../include/channel.php:1243 +msgid "Political Views:" +msgstr "Opinions politiques :" -#: ../../include/items.php:3909 -msgid "Privacy group is empty." -msgstr "Groupe d'accès vide." +#: ../../include/channel.php:1245 +msgid "Religion:" +msgstr "Religion :" -#: ../../include/items.php:3916 -#, php-format -msgid "Privacy group: %s" -msgstr "Groupe d'accès : %s" +#: ../../include/channel.php:1249 +msgid "Hobbies/Interests:" +msgstr "Occupations/Centres d'intérêt :" -#: ../../include/items.php:3928 -msgid "Connection not found." -msgstr "Contact non trouvé." +#: ../../include/channel.php:1251 +msgid "Likes:" +msgstr "Aime :" -#: ../../include/items.php:4277 -msgid "profile photo" -msgstr "photo de profil" +#: ../../include/channel.php:1253 +msgid "Dislikes:" +msgstr "N'aime pas :" -#: ../../include/message.php:20 -msgid "No recipient provided." -msgstr "Pas de destinataire." +#: ../../include/channel.php:1255 +msgid "Contact information and Social Networks:" +msgstr "Coordonnées et réseaux sociaux :" -#: ../../include/message.php:25 -msgid "[no subject]" -msgstr "[sans objet]" +#: ../../include/channel.php:1257 +msgid "My other channels:" +msgstr "Mes autres canaux :" -#: ../../include/message.php:45 -msgid "Unable to determine sender." -msgstr "Impossible de déterminer l'émetteur." +#: ../../include/channel.php:1259 +msgid "Musical interests:" +msgstr "Goûts musicaux :" -#: ../../include/message.php:222 -msgid "Stored post could not be verified." -msgstr "Le message stocké n'a pas pu être vérifié." +#: ../../include/channel.php:1261 +msgid "Books, literature:" +msgstr "Lectures, goûts littéraires :" -#: ../../include/text.php:428 -msgid "prev" -msgstr "préc." +#: ../../include/channel.php:1263 +msgid "Television:" +msgstr "Télévision :" -#: ../../include/text.php:430 -msgid "first" -msgstr "premier" +#: ../../include/channel.php:1265 +msgid "Film/dance/culture/entertainment:" +msgstr "Cinéma/danse/culture/divertissement&nsbp;:" -#: ../../include/text.php:459 -msgid "last" -msgstr "dernier" +#: ../../include/channel.php:1267 +msgid "Love/Romance:" +msgstr "Vie sentimentale/amoureuse :" -#: ../../include/text.php:462 -msgid "next" -msgstr "Suivant" +#: ../../include/channel.php:1269 +msgid "Work/employment:" +msgstr "Travail/Occupation " -#: ../../include/text.php:472 -msgid "older" -msgstr "plus ancien" +#: ../../include/channel.php:1271 +msgid "School/education:" +msgstr "Études " -#: ../../include/text.php:474 -msgid "newer" -msgstr "plus récent" - -#: ../../include/text.php:863 -msgid "No connections" -msgstr "Pas de relations." - -#: ../../include/text.php:888 -#, php-format -msgid "View all %s connections" -msgstr "Voir les %s contacts" - -#: ../../include/text.php:1033 ../../include/text.php:1038 -msgid "poke" -msgstr "tapoter" - -#: ../../include/text.php:1033 ../../include/text.php:1038 -#: ../../include/conversation.php:243 -msgid "poked" -msgstr "a tapoté" - -#: ../../include/text.php:1039 -msgid "ping" -msgstr "ping" - -#: ../../include/text.php:1039 -msgid "pinged" -msgstr "pingé" - -#: ../../include/text.php:1040 -msgid "prod" -msgstr "encourager" - -#: ../../include/text.php:1040 -msgid "prodded" -msgstr "encouragé" - -#: ../../include/text.php:1041 -msgid "slap" -msgstr "giffler" - -#: ../../include/text.php:1041 -msgid "slapped" -msgstr "gifflé(e)" - -#: ../../include/text.php:1042 -msgid "finger" -msgstr "pointer" - -#: ../../include/text.php:1042 -msgid "fingered" -msgstr "pointé" - -#: ../../include/text.php:1043 -msgid "rebuff" -msgstr "rejetter" - -#: ../../include/text.php:1043 -msgid "rebuffed" -msgstr "rejeté" - -#: ../../include/text.php:1055 -msgid "happy" -msgstr "heureux" - -#: ../../include/text.php:1056 -msgid "sad" -msgstr "triste" - -#: ../../include/text.php:1057 -msgid "mellow" -msgstr "mélancolique" - -#: ../../include/text.php:1058 -msgid "tired" -msgstr "fatigué" - -#: ../../include/text.php:1059 -msgid "perky" -msgstr "impertinent" - -#: ../../include/text.php:1060 -msgid "angry" -msgstr "en colère" - -#: ../../include/text.php:1061 -msgid "stupefied" -msgstr "stupéfait" - -#: ../../include/text.php:1062 -msgid "puzzled" -msgstr "perplexe" - -#: ../../include/text.php:1063 -msgid "interested" -msgstr "intéressé" - -#: ../../include/text.php:1064 -msgid "bitter" -msgstr "amer" - -#: ../../include/text.php:1065 -msgid "cheerful" -msgstr "plein d'entrain" - -#: ../../include/text.php:1066 -msgid "alive" -msgstr "vivant" - -#: ../../include/text.php:1067 -msgid "annoyed" -msgstr "agaçé" - -#: ../../include/text.php:1068 -msgid "anxious" -msgstr "anxieux" - -#: ../../include/text.php:1069 -msgid "cranky" -msgstr "énervé" - -#: ../../include/text.php:1070 -msgid "disturbed" -msgstr "perturbé" - -#: ../../include/text.php:1071 -msgid "frustrated" -msgstr "frustré" - -#: ../../include/text.php:1072 -msgid "depressed" -msgstr "déprimé" - -#: ../../include/text.php:1073 -msgid "motivated" -msgstr "motivé" - -#: ../../include/text.php:1074 -msgid "relaxed" -msgstr "détendu" - -#: ../../include/text.php:1075 -msgid "surprised" -msgstr "surpris" - -#: ../../include/text.php:1257 ../../include/js_strings.php:70 -msgid "Monday" -msgstr "Lundi" - -#: ../../include/text.php:1257 ../../include/js_strings.php:71 -msgid "Tuesday" -msgstr "Mardi" - -#: ../../include/text.php:1257 ../../include/js_strings.php:72 -msgid "Wednesday" -msgstr "Mercredi" - -#: ../../include/text.php:1257 ../../include/js_strings.php:73 -msgid "Thursday" -msgstr "Jeudi" - -#: ../../include/text.php:1257 ../../include/js_strings.php:74 -msgid "Friday" -msgstr "Vendredi" - -#: ../../include/text.php:1257 ../../include/js_strings.php:75 -msgid "Saturday" -msgstr "Samedi" - -#: ../../include/text.php:1257 ../../include/js_strings.php:69 -msgid "Sunday" -msgstr "Dimanche" - -#: ../../include/text.php:1261 ../../include/js_strings.php:45 -msgid "January" -msgstr "Janvier" - -#: ../../include/text.php:1261 ../../include/js_strings.php:46 -msgid "February" -msgstr "Février" - -#: ../../include/text.php:1261 ../../include/js_strings.php:47 -msgid "March" -msgstr "Mars" - -#: ../../include/text.php:1261 ../../include/js_strings.php:48 -msgid "April" -msgstr "Avril" - -#: ../../include/text.php:1261 -msgid "May" -msgstr "Mai" - -#: ../../include/text.php:1261 ../../include/js_strings.php:50 -msgid "June" -msgstr "Juin" - -#: ../../include/text.php:1261 ../../include/js_strings.php:51 -msgid "July" -msgstr "Juillet" - -#: ../../include/text.php:1261 ../../include/js_strings.php:52 -msgid "August" -msgstr "Août" - -#: ../../include/text.php:1261 ../../include/js_strings.php:53 -msgid "September" -msgstr "Septembre" - -#: ../../include/text.php:1261 ../../include/js_strings.php:54 -msgid "October" -msgstr "Octobre" - -#: ../../include/text.php:1261 ../../include/js_strings.php:55 -msgid "November" -msgstr "Novembre" - -#: ../../include/text.php:1261 ../../include/js_strings.php:56 -msgid "December" -msgstr "Décembre" - -#: ../../include/text.php:1338 ../../include/text.php:1342 -msgid "Unknown Attachment" -msgstr "Pièce jointe inconnue" - -#: ../../include/text.php:1344 -msgid "unknown" -msgstr "Inconnu" - -#: ../../include/text.php:1380 -msgid "remove category" -msgstr "supprimer la catégorie" - -#: ../../include/text.php:1457 -msgid "remove from file" -msgstr "retirer du fichier" - -#: ../../include/text.php:1753 ../../include/text.php:1824 -msgid "default" -msgstr "défaut" - -#: ../../include/text.php:1761 -msgid "Page layout" -msgstr "Mise en page" - -#: ../../include/text.php:1761 -msgid "You can create your own with the layouts tool" -msgstr "Créez les vôtres avec les outils de mise en page" - -#: ../../include/text.php:1803 -msgid "Page content type" -msgstr "Type de contenu de la page" - -#: ../../include/text.php:1836 -msgid "Select an alternate language" -msgstr "Choisir une langue alternative" - -#: ../../include/text.php:1953 -msgid "activity" -msgstr "activité" - -#: ../../include/text.php:2262 -msgid "Design Tools" -msgstr "Outils de conception" - -#: ../../include/text.php:2268 -msgid "Pages" -msgstr "Pages" - -#: ../../include/widgets.php:103 -msgid "System" -msgstr "Système" - -#: ../../include/widgets.php:106 -msgid "New App" -msgstr "" - -#: ../../include/widgets.php:154 -msgid "Suggestions" -msgstr "Suggestions" - -#: ../../include/widgets.php:155 -msgid "See more..." -msgstr "Voir plus..." - -#: ../../include/widgets.php:175 -#, php-format -msgid "You have %1$.0f of %2$.0f allowed connections." -msgstr "Vous avez %1$.0f sur %2$.0f contacts autorisés." - -#: ../../include/widgets.php:181 -msgid "Add New Connection" -msgstr "Ajouter un nouveau contact" - -#: ../../include/widgets.php:182 -msgid "Enter channel address" -msgstr "Saisissez l'adresse du canal" - -#: ../../include/widgets.php:183 -msgid "Examples: bob@example.com, https://example.com/barbara" -msgstr "Exemples : pierre@exemple.com, https://exemple.com/sophie" - -#: ../../include/widgets.php:199 -msgid "Notes" -msgstr "Notes" - -#: ../../include/widgets.php:273 -msgid "Remove term" -msgstr "Retirer le terme" - -#: ../../include/widgets.php:281 ../../include/features.php:84 -msgid "Saved Searches" -msgstr "Recherches sauvegardées" - -#: ../../include/widgets.php:282 ../../include/group.php:316 -msgid "add" -msgstr "ajouter" - -#: ../../include/widgets.php:310 ../../include/contact_widgets.php:53 -#: ../../include/features.php:98 -msgid "Saved Folders" -msgstr "Dossiers sauvegardés" - -#: ../../include/widgets.php:313 ../../include/widgets.php:432 -#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:94 -msgid "Everything" -msgstr "Tout" - -#: ../../include/widgets.php:354 -msgid "Archives" -msgstr "Archives" - -#: ../../include/widgets.php:516 -msgid "Refresh" -msgstr "Actualiser" - -#: ../../include/widgets.php:556 -msgid "Account settings" -msgstr "Paramètres du compte" - -#: ../../include/widgets.php:562 -msgid "Channel settings" -msgstr "Paramètres du canal" - -#: ../../include/widgets.php:571 -msgid "Additional features" -msgstr "Fonctionnalités supplémentaires" - -#: ../../include/widgets.php:578 -msgid "Feature/Addon settings" -msgstr "Paramètres des extensions/greffons" - -#: ../../include/widgets.php:584 -msgid "Display settings" -msgstr "Paramètres d'affichage" - -#: ../../include/widgets.php:591 -msgid "Manage locations" -msgstr "" - -#: ../../include/widgets.php:600 -msgid "Export channel" -msgstr "Exporter le canal" - -#: ../../include/widgets.php:607 -msgid "Connected apps" -msgstr "Applications connectées" - -#: ../../include/widgets.php:622 -msgid "Premium Channel Settings" -msgstr "Paramètres de canal VIP" - -#: ../../include/widgets.php:651 -msgid "Private Mail Menu" -msgstr "Menu des messages privés" - -#: ../../include/widgets.php:653 -msgid "Combined View" -msgstr "Vue combinée" - -#: ../../include/widgets.php:658 ../../include/nav.php:196 -msgid "Inbox" -msgstr "Boîte de réception" - -#: ../../include/widgets.php:663 ../../include/nav.php:197 -msgid "Outbox" -msgstr "Boîte d'envoi" - -#: ../../include/widgets.php:668 ../../include/nav.php:198 -msgid "New Message" -msgstr "Nouveau message" - -#: ../../include/widgets.php:685 ../../include/widgets.php:697 -msgid "Conversations" -msgstr "Conversations" - -#: ../../include/widgets.php:689 -msgid "Received Messages" -msgstr "Messages reçus" - -#: ../../include/widgets.php:693 -msgid "Sent Messages" -msgstr "Messages envoyés" - -#: ../../include/widgets.php:707 -msgid "No messages." -msgstr "Pas de message." - -#: ../../include/widgets.php:725 -msgid "Delete conversation" -msgstr "Supprimer la conversation" - -#: ../../include/widgets.php:751 -msgid "Events Menu" -msgstr "Menu Evènements" - -#: ../../include/widgets.php:752 -msgid "Day View" -msgstr "Vue Jour" - -#: ../../include/widgets.php:753 -msgid "Week View" -msgstr "Vue Semaine" - -#: ../../include/widgets.php:754 -msgid "Month View" -msgstr "Vue Mois" - -#: ../../include/widgets.php:766 -msgid "Events Tools" -msgstr "Outils Evènements" - -#: ../../include/widgets.php:767 -msgid "Export Calendar" -msgstr "Exporter le calendrier" - -#: ../../include/widgets.php:768 -msgid "Import Calendar" -msgstr "Importer un calendrier" - -#: ../../include/widgets.php:842 ../../include/conversation.php:1662 -#: ../../include/conversation.php:1665 -msgid "Chatrooms" -msgstr "Salons de clavardage" - -#: ../../include/widgets.php:846 -msgid "Overview" -msgstr "" - -#: ../../include/widgets.php:853 -msgid "Chat Members" -msgstr "" - -#: ../../include/widgets.php:876 -msgid "Bookmarked Chatrooms" -msgstr "Salons favoris" - -#: ../../include/widgets.php:899 -msgid "Suggested Chatrooms" -msgstr "Salons suggérés" - -#: ../../include/widgets.php:1044 ../../include/widgets.php:1156 -msgid "photo/image" -msgstr "photo/image" - -#: ../../include/widgets.php:1099 -msgid "Click to show more" -msgstr "Cliquer pour voir plus" - -#: ../../include/widgets.php:1250 -msgid "Rating Tools" -msgstr "Outils d'évaluation" - -#: ../../include/widgets.php:1254 ../../include/widgets.php:1256 -msgid "Rate Me" -msgstr "M'évaluer" - -#: ../../include/widgets.php:1259 -msgid "View Ratings" -msgstr "Voir mes évaluations" - -#: ../../include/widgets.php:1316 -msgid "Forums" -msgstr "Membres du forum" - -#: ../../include/widgets.php:1345 -msgid "Tasks" -msgstr "Tâches" - -#: ../../include/widgets.php:1354 -msgid "Documentation" -msgstr "Documentation" - -#: ../../include/widgets.php:1356 -msgid "Project/Site Information" -msgstr "Information sur le site/projet" - -#: ../../include/widgets.php:1357 -msgid "For Members" -msgstr "Pour les membres" - -#: ../../include/widgets.php:1358 -msgid "For Administrators" -msgstr "Pour les administrateurs" - -#: ../../include/widgets.php:1359 -msgid "For Developers" -msgstr "Pour les développeurs" - -#: ../../include/widgets.php:1383 ../../include/widgets.php:1421 -msgid "Member registrations waiting for confirmation" -msgstr "" - -#: ../../include/widgets.php:1389 -msgid "Inspect queue" -msgstr "Analyser la file d'attente" - -#: ../../include/widgets.php:1391 -msgid "DB updates" -msgstr "Mises à jour BDD" - -#: ../../include/widgets.php:1416 ../../include/nav.php:216 -msgid "Admin" -msgstr "Administrateur" - -#: ../../include/widgets.php:1417 -msgid "Plugin Features" -msgstr "Fonctionnalités des greffons" - -#: ../../include/follow.php:27 -msgid "Channel is blocked on this site." -msgstr "Ce canal est bloqué sur ce site." - -#: ../../include/follow.php:32 -msgid "Channel location missing." -msgstr "Emplacement du canal introuvable." - -#: ../../include/follow.php:81 -msgid "Response from remote channel was incomplete." -msgstr "La réponse du canal distant était incomplète." - -#: ../../include/follow.php:98 -msgid "Channel was deleted and no longer exists." -msgstr "Le canal a été supprimé et n'existe plus." - -#: ../../include/follow.php:154 ../../include/follow.php:190 -msgid "Protocol disabled." -msgstr "Protocole désactivé." - -#: ../../include/follow.php:178 -msgid "Channel discovery failed." -msgstr "La tentative d'accéder au canal a échoué." - -#: ../../include/follow.php:216 -msgid "Cannot connect to yourself." -msgstr "Ne peut pas se connecter à vous." - -#: ../../include/bookmarks.php:35 -#, php-format -msgid "%1$s's bookmarks" -msgstr "Favoris de %1$s" - -#: ../../include/api.php:1336 -msgid "Public Timeline" -msgstr "Fil public" - -#: ../../include/bbcode.php:123 ../../include/bbcode.php:844 -#: ../../include/bbcode.php:847 ../../include/bbcode.php:852 -#: ../../include/bbcode.php:855 ../../include/bbcode.php:858 -#: ../../include/bbcode.php:861 ../../include/bbcode.php:866 -#: ../../include/bbcode.php:869 ../../include/bbcode.php:874 -#: ../../include/bbcode.php:877 ../../include/bbcode.php:880 -#: ../../include/bbcode.php:883 -msgid "Image/photo" -msgstr "Image/photo" - -#: ../../include/bbcode.php:162 ../../include/bbcode.php:894 -msgid "Encrypted content" -msgstr "Contenu chiffré" - -#: ../../include/bbcode.php:178 -#, php-format -msgid "Install %s element: " -msgstr "Installer %s élément" - -#: ../../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 "Ce message contient un élément installable %s, mais vous n'avez pas l'autorisation de l'installer sur ce site." - -#: ../../include/bbcode.php:254 -#, php-format -msgid "%1$s wrote the following %2$s %3$s" -msgstr "%1$s a écrit %2$s qui suit %3$s" - -#: ../../include/bbcode.php:331 ../../include/bbcode.php:339 -msgid "Click to open/close" -msgstr "Cliquer pour ouvrir/fermer" - -#: ../../include/bbcode.php:339 -msgid "spoiler" -msgstr "" - -#: ../../include/bbcode.php:585 -msgid "Different viewers will see this text differently" -msgstr "Ce texte aura un rendu différent en fonction des utilisateurs" - -#: ../../include/bbcode.php:832 -msgid "$1 wrote:" -msgstr "$1 a écrit :" - -#: ../../include/dir_fns.php:141 -msgid "Directory Options" -msgstr "Options d'annuaire" - -#: ../../include/dir_fns.php:143 -msgid "Safe Mode" -msgstr "Mode sûr" - -#: ../../include/dir_fns.php:144 -msgid "Public Forums Only" -msgstr "Les forums publics uniquement" - -#: ../../include/dir_fns.php:145 -msgid "This Website Only" -msgstr "Ce site uniquement" - -#: ../../include/security.php:383 -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 "Le formulaire n'est plus sécurisé, probablement parce qu'il est ouvert depuis trop longtemps (plus de 3 heures)." - -#: ../../include/nav.php:82 ../../include/nav.php:113 ../../boot.php:1702 -msgid "Logout" -msgstr "Déconnexion" - -#: ../../include/nav.php:82 ../../include/nav.php:113 -msgid "End this session" -msgstr "Mettre fin à la session" - -#: ../../include/nav.php:85 ../../include/nav.php:144 -msgid "Home" -msgstr "Mon canal" - -#: ../../include/nav.php:85 -msgid "Your posts and conversations" -msgstr "Vos publications et conversations" - -#: ../../include/nav.php:86 -msgid "Your profile page" -msgstr "Votre profil" - -#: ../../include/nav.php:88 -msgid "Manage/Edit profiles" -msgstr "Gérer/modifier les profils" - -#: ../../include/nav.php:90 ../../include/channel.php:941 -msgid "Edit Profile" -msgstr "Éditeur de profil" - -#: ../../include/nav.php:90 -msgid "Edit your profile" -msgstr "Modifier votre profil" - -#: ../../include/nav.php:92 -msgid "Your photos" -msgstr "Vos photos" - -#: ../../include/nav.php:93 -msgid "Your files" -msgstr "Vos fichiers" - -#: ../../include/nav.php:96 -msgid "Your chatrooms" -msgstr "Vos salons" - -#: ../../include/nav.php:102 ../../include/conversation.php:1675 -msgid "Bookmarks" -msgstr "Favoris" - -#: ../../include/nav.php:102 -msgid "Your bookmarks" -msgstr "Vos favoris" - -#: ../../include/nav.php:106 -msgid "Your webpages" -msgstr "Vos pages web" - -#: ../../include/nav.php:110 -msgid "Sign in" -msgstr "Connexion" - -#: ../../include/nav.php:127 -#, php-format -msgid "%s - click to logout" -msgstr "%s - cliquer ici pour déconnecter" - -#: ../../include/nav.php:130 -msgid "Remote authentication" -msgstr "Authentification distante" - -#: ../../include/nav.php:130 -msgid "Click to authenticate to your home hub" -msgstr "S'authentifier auprès de votre hub principal" - -#: ../../include/nav.php:144 -msgid "Home Page" -msgstr "Page d'accueil" - -#: ../../include/nav.php:147 -msgid "Create an account" -msgstr "Créer un compte" - -#: ../../include/nav.php:159 -msgid "Help and documentation" -msgstr "Aide et documentation" - -#: ../../include/nav.php:163 -msgid "Applications, utilities, links, games" -msgstr "Applications, utilitaires, liens, jeux" - -#: ../../include/nav.php:165 -msgid "Search site @name, #tag, ?docs, content" -msgstr "Recherche @nom, #tag, contenu" - -#: ../../include/nav.php:167 -msgid "Channel Directory" -msgstr "Annuaire des canaux" - -#: ../../include/nav.php:179 -msgid "Your grid" -msgstr "Votre réseau" - -#: ../../include/nav.php:180 -msgid "Mark all grid notifications seen" -msgstr "Marquer toutes les notifications du réseau comme vues" - -#: ../../include/nav.php:182 -msgid "Channel home" -msgstr "Mon canal" - -#: ../../include/nav.php:183 -msgid "Mark all channel notifications seen" -msgstr "Marquer toutes les notifications du canal comme vues" - -#: ../../include/nav.php:189 -msgid "Notices" -msgstr "Notifications" - -#: ../../include/nav.php:189 -msgid "Notifications" -msgstr "Notifications" - -#: ../../include/nav.php:190 -msgid "See all notifications" -msgstr "Voir toutes les notifications" - -#: ../../include/nav.php:193 -msgid "Private mail" -msgstr "Messages privés" - -#: ../../include/nav.php:194 -msgid "See all private messages" -msgstr "Voir tous les messages privés" - -#: ../../include/nav.php:195 -msgid "Mark all private messages seen" -msgstr "Marquer tous les messages privés comme vus" - -#: ../../include/nav.php:201 -msgid "Event Calendar" -msgstr "Calendrier des événements" - -#: ../../include/nav.php:202 -msgid "See all events" -msgstr "Voir tous les événements" - -#: ../../include/nav.php:203 -msgid "Mark all events seen" -msgstr "Marquer tous les événements comme vus" - -#: ../../include/nav.php:206 -msgid "Manage Your Channels" -msgstr "Gérer vos canaux" - -#: ../../include/nav.php:208 -msgid "Account/Channel Settings" -msgstr "Paramètres du Compte/Canal" - -#: ../../include/nav.php:216 -msgid "Site Setup and Configuration" -msgstr "Configuration du site" - -#: ../../include/nav.php:247 ../../include/conversation.php:851 -msgid "Loading..." -msgstr "Chargement..." - -#: ../../include/nav.php:252 -msgid "@name, #tag, ?doc, content" -msgstr "@nom, #étiquette, ?doc, contenu" - -#: ../../include/nav.php:253 -msgid "Please wait..." -msgstr "Merci de patienter..." +#: ../../include/channel.php:1292 +msgid "Like this thing" +msgstr "J'aime ceci" #: ../../include/connections.php:95 msgid "New window" @@ -7761,52 +7607,6 @@ msgstr "Ouvrir l'emplacement dans une fenêtre ou un onglet différent" msgid "User '%s' deleted" msgstr "Utilisateur '%s' supprimé" -#: ../../include/contact_widgets.php:11 -#, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "%d invitation disponible" -msgstr[1] "%d invitations disponibles" - -#: ../../include/contact_widgets.php:19 -msgid "Find Channels" -msgstr "Trouver des canaux" - -#: ../../include/contact_widgets.php:20 -msgid "Enter name or interest" -msgstr "Saisir nom ou centre d'intérêt" - -#: ../../include/contact_widgets.php:21 -msgid "Connect/Follow" -msgstr "Ajouter/Suivre" - -#: ../../include/contact_widgets.php:22 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "Exemples: Guillaume Martin, Course à pieds" - -#: ../../include/contact_widgets.php:26 -msgid "Random Profile" -msgstr "Un profil au hasard" - -#: ../../include/contact_widgets.php:27 -msgid "Invite Friends" -msgstr "Inviter des amis" - -#: ../../include/contact_widgets.php:29 -msgid "Advanced example: name=fred and country=iceland" -msgstr "Exemple avancé : name=fred and country=iceland" - -#: ../../include/contact_widgets.php:122 -#, php-format -msgid "%d connection in common" -msgid_plural "%d connections in common" -msgstr[0] "%d contact en commun" -msgstr[1] "%d contacts en commun" - -#: ../../include/contact_widgets.php:127 -msgid "show more" -msgstr "montrer plus" - #: ../../include/conversation.php:204 #, php-format msgid "%1$s is now connected with %2$s" @@ -7817,258 +7617,269 @@ msgstr "%1$s ajoute %2$s à ses contacts" msgid "%1$s poked %2$s" msgstr "%1$s a tapoté %2$s" -#: ../../include/conversation.php:691 +#: ../../include/conversation.php:243 ../../include/text.php:1013 +#: ../../include/text.php:1018 +msgid "poked" +msgstr "a tapoté" + +#: ../../include/conversation.php:694 #, php-format msgid "View %s's profile @ %s" msgstr "Voir le profil de %s @ %s" -#: ../../include/conversation.php:710 +#: ../../include/conversation.php:713 msgid "Categories:" msgstr "Catégories :" -#: ../../include/conversation.php:711 +#: ../../include/conversation.php:714 msgid "Filed under:" msgstr "Classé sous :" -#: ../../include/conversation.php:738 +#: ../../include/conversation.php:741 msgid "View in context" msgstr "Voir en contexte" -#: ../../include/conversation.php:847 +#: ../../include/conversation.php:850 msgid "remove" msgstr "supprimer" -#: ../../include/conversation.php:852 +#: ../../include/conversation.php:855 msgid "Delete Selected Items" msgstr "Supprimer les éléments selectionnés" -#: ../../include/conversation.php:948 +#: ../../include/conversation.php:951 msgid "View Source" msgstr "Voir source" -#: ../../include/conversation.php:949 +#: ../../include/conversation.php:952 msgid "Follow Thread" msgstr "Suivre la discussion" -#: ../../include/conversation.php:950 +#: ../../include/conversation.php:953 msgid "Unfollow Thread" msgstr "Ne plus suivre la discussion" -#: ../../include/conversation.php:955 +#: ../../include/conversation.php:958 msgid "Activity/Posts" msgstr "Activité/Publications" -#: ../../include/conversation.php:957 +#: ../../include/conversation.php:960 msgid "Edit Connection" msgstr "Modifier le contact" -#: ../../include/conversation.php:958 +#: ../../include/conversation.php:961 msgid "Message" msgstr "Message" -#: ../../include/conversation.php:1075 +#: ../../include/conversation.php:1078 #, php-format msgid "%s likes this." msgstr "%s aime ça." -#: ../../include/conversation.php:1075 +#: ../../include/conversation.php:1078 #, php-format msgid "%s doesn't like this." msgstr "%s n'aime pas ça." -#: ../../include/conversation.php:1079 +#: ../../include/conversation.php:1082 #, php-format msgid "%2$d people like this." msgid_plural "%2$d people like this." msgstr[0] "%2$d personne aime ceci." msgstr[1] "%2$d personnes aiment ceci." -#: ../../include/conversation.php:1081 +#: ../../include/conversation.php:1084 #, php-format msgid "%2$d people don't like this." msgid_plural "%2$d people don't like this." msgstr[0] "%2$d personne n'aime pas ça." msgstr[1] "%2$d personnes n'aiment pas ça." -#: ../../include/conversation.php:1087 +#: ../../include/conversation.php:1090 msgid "and" msgstr "et" -#: ../../include/conversation.php:1090 +#: ../../include/conversation.php:1093 #, php-format msgid ", and %d other people" msgid_plural ", and %d other people" msgstr[0] ", et %d autre personne" msgstr[1] ", et %d autres personnes" -#: ../../include/conversation.php:1091 +#: ../../include/conversation.php:1094 #, php-format msgid "%s like this." msgstr "%s aime ça." -#: ../../include/conversation.php:1091 +#: ../../include/conversation.php:1094 #, php-format msgid "%s don't like this." msgstr "%s n'aime pas ça." -#: ../../include/conversation.php:1130 +#: ../../include/conversation.php:1133 msgid "Set your location" msgstr "Spécifier votre emplacement géographique" -#: ../../include/conversation.php:1131 +#: ../../include/conversation.php:1134 msgid "Clear browser location" msgstr "Supprimer l'emplacement géographique du navigateur" -#: ../../include/conversation.php:1177 +#: ../../include/conversation.php:1182 msgid "Tag term:" msgstr "Étiquette :" -#: ../../include/conversation.php:1178 +#: ../../include/conversation.php:1183 msgid "Where are you right now?" msgstr "Où êtes-vous en ce moment ?" -#: ../../include/conversation.php:1210 +#: ../../include/conversation.php:1221 msgid "Page link name" msgstr "Nom du lien vers la page" -#: ../../include/conversation.php:1213 +#: ../../include/conversation.php:1224 msgid "Post as" msgstr "Publier en tant que" -#: ../../include/conversation.php:1223 +#: ../../include/conversation.php:1238 msgid "Toggle voting" msgstr "(Dés)activer le vote" -#: ../../include/conversation.php:1231 +#: ../../include/conversation.php:1246 msgid "Categories (optional, comma-separated list)" msgstr "Catégories (facultatives, séparées par des virgules)" -#: ../../include/conversation.php:1254 +#: ../../include/conversation.php:1269 msgid "Set publish date" msgstr "Définir la date de publication" -#: ../../include/conversation.php:1258 -msgid "OK" -msgstr "OK" - -#: ../../include/conversation.php:1503 +#: ../../include/conversation.php:1518 msgid "Discover" msgstr "À découvrir" -#: ../../include/conversation.php:1506 +#: ../../include/conversation.php:1521 msgid "Imported public streams" msgstr "Flux publics importés" -#: ../../include/conversation.php:1511 +#: ../../include/conversation.php:1526 msgid "Commented Order" msgstr "Par date de commentaire" -#: ../../include/conversation.php:1514 +#: ../../include/conversation.php:1529 msgid "Sort by Comment Date" msgstr "Trier par date de dernier commentaire" -#: ../../include/conversation.php:1518 +#: ../../include/conversation.php:1533 msgid "Posted Order" msgstr "Par date de publication" -#: ../../include/conversation.php:1521 +#: ../../include/conversation.php:1536 msgid "Sort by Post Date" msgstr "Trier par date de publication" -#: ../../include/conversation.php:1529 +#: ../../include/conversation.php:1544 msgid "Posts that mention or involve you" msgstr "Publications qui vous mentionnent ou vous concernent d'une manière ou d'une autre" -#: ../../include/conversation.php:1538 +#: ../../include/conversation.php:1553 msgid "Activity Stream - by date" msgstr "Flux d'activité - par date" -#: ../../include/conversation.php:1544 +#: ../../include/conversation.php:1559 msgid "Starred" msgstr "Mis en avant (étoiles)" -#: ../../include/conversation.php:1547 +#: ../../include/conversation.php:1562 msgid "Favourite Posts" msgstr "Publications préférées" -#: ../../include/conversation.php:1554 +#: ../../include/conversation.php:1569 msgid "Spam" msgstr "Indésirable" -#: ../../include/conversation.php:1557 +#: ../../include/conversation.php:1572 msgid "Posts flagged as SPAM" msgstr "Publications marquées comme indésirables" -#: ../../include/conversation.php:1614 +#: ../../include/conversation.php:1629 msgid "Status Messages and Posts" msgstr "Messages d'état et contributions" -#: ../../include/conversation.php:1623 +#: ../../include/conversation.php:1638 msgid "About" msgstr "À propos" -#: ../../include/conversation.php:1626 +#: ../../include/conversation.php:1641 msgid "Profile Details" msgstr "Détails du profil" -#: ../../include/conversation.php:1635 ../../include/photos.php:502 -msgid "Photo Albums" -msgstr "Albums photo" - -#: ../../include/conversation.php:1642 +#: ../../include/conversation.php:1657 msgid "Files and Storage" msgstr "Fichiers et Stockage" -#: ../../include/conversation.php:1678 +#: ../../include/conversation.php:1677 ../../include/conversation.php:1680 +#: ../../include/widgets.php:836 +msgid "Chatrooms" +msgstr "Salons de clavardage" + +#: ../../include/conversation.php:1693 msgid "Saved Bookmarks" msgstr "Favoris sauvegardés" -#: ../../include/conversation.php:1688 +#: ../../include/conversation.php:1703 msgid "Manage Webpages" msgstr "Gérer les pages web" -#: ../../include/conversation.php:1747 +#: ../../include/conversation.php:1768 msgctxt "noun" msgid "Attending" msgid_plural "Attending" msgstr[0] "Participe" msgstr[1] "Participent" -#: ../../include/conversation.php:1750 +#: ../../include/conversation.php:1771 msgctxt "noun" msgid "Not Attending" msgid_plural "Not Attending" msgstr[0] "Ne participe pas" msgstr[1] "Ne participent pas" -#: ../../include/conversation.php:1753 +#: ../../include/conversation.php:1774 msgctxt "noun" msgid "Undecided" msgid_plural "Undecided" msgstr[0] "Indécis(e)" msgstr[1] "Indécis(es)" -#: ../../include/conversation.php:1756 +#: ../../include/conversation.php:1777 msgctxt "noun" msgid "Agree" msgid_plural "Agrees" msgstr[0] "D'accord" msgstr[1] "D'accord" -#: ../../include/conversation.php:1759 +#: ../../include/conversation.php:1780 msgctxt "noun" msgid "Disagree" msgid_plural "Disagrees" msgstr[0] "Pas d'accord" msgstr[1] "Pas d'accord" -#: ../../include/conversation.php:1762 +#: ../../include/conversation.php:1783 msgctxt "noun" msgid "Abstain" msgid_plural "Abstains" msgstr[0] "S'abstient" msgstr[1] "S'abstiennent" +#: ../../include/import.php:30 +msgid "" +"Cannot create a duplicate channel identifier on this system. Import failed." +msgstr "L'import a échoué. Un canal existe déjà avec ce nom" + +#: ../../include/import.php:97 +msgid "Channel clone failed. Import failed." +msgstr "Echec du clonage du canal. Echec de l'impot." + #: ../../include/selectors.php:30 msgid "Frequently" msgstr "Fréquemment" @@ -8133,12 +7944,6 @@ msgstr "Neutre" msgid "Non-specific" msgstr "Non spécifique" -#: ../../include/selectors.php:49 ../../include/selectors.php:66 -#: ../../include/selectors.php:104 ../../include/selectors.php:140 -#: ../../include/permissions.php:881 -msgid "Other" -msgstr "Autre" - #: ../../include/selectors.php:49 msgid "Undecided" msgstr "Indécis" @@ -8315,361 +8120,366 @@ msgstr "S'en fiche" msgid "Ask me" msgstr "Me demander" -#: ../../include/PermissionDescription.php:31 -#: ../../include/acl_selectors.php:232 -msgid "Visible to your default audience" -msgstr "Visible pour vos contacts seulement" - -#: ../../include/PermissionDescription.php:115 -#: ../../include/acl_selectors.php:268 -msgid "Only me" -msgstr "" - -#: ../../include/PermissionDescription.php:116 -msgid "Public" -msgstr "Public" - -#: ../../include/PermissionDescription.php:117 -msgid "Anybody in the $Projectname network" -msgstr "" - -#: ../../include/PermissionDescription.php:118 +#: ../../include/bookmarks.php:35 #, php-format -msgid "Any account on %s" +msgid "%1$s's bookmarks" +msgstr "Favoris de %1$s" + +#: ../../include/security.php:109 +msgid "guest:" msgstr "" -#: ../../include/PermissionDescription.php:119 -msgid "Any of my connections" -msgstr "" - -#: ../../include/PermissionDescription.php:120 -msgid "Only connections I specifically allow" -msgstr "" - -#: ../../include/PermissionDescription.php:121 -msgid "Anybody authenticated (could include visitors from other networks)" -msgstr "" - -#: ../../include/PermissionDescription.php:122 -msgid "Any connections including those who haven't yet been approved" -msgstr "" - -#: ../../include/PermissionDescription.php:161 +#: ../../include/security.php:427 msgid "" -"This is your default setting for the audience of your normal stream, and " -"posts." -msgstr "" +"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 "Le formulaire n'est plus sécurisé, probablement parce qu'il est ouvert depuis trop longtemps (plus de 3 heures)." -#: ../../include/PermissionDescription.php:162 +#: ../../include/text.php:404 +msgid "prev" +msgstr "préc." + +#: ../../include/text.php:406 +msgid "first" +msgstr "premier" + +#: ../../include/text.php:435 +msgid "last" +msgstr "dernier" + +#: ../../include/text.php:438 +msgid "next" +msgstr "Suivant" + +#: ../../include/text.php:448 +msgid "older" +msgstr "plus ancien" + +#: ../../include/text.php:450 +msgid "newer" +msgstr "plus récent" + +#: ../../include/text.php:843 +msgid "No connections" +msgstr "Pas de relations." + +#: ../../include/text.php:868 +#, php-format +msgid "View all %s connections" +msgstr "Voir les %s contacts" + +#: ../../include/text.php:1013 ../../include/text.php:1018 +msgid "poke" +msgstr "tapoter" + +#: ../../include/text.php:1019 +msgid "ping" +msgstr "ping" + +#: ../../include/text.php:1019 +msgid "pinged" +msgstr "pingé" + +#: ../../include/text.php:1020 +msgid "prod" +msgstr "encourager" + +#: ../../include/text.php:1020 +msgid "prodded" +msgstr "encouragé" + +#: ../../include/text.php:1021 +msgid "slap" +msgstr "giffler" + +#: ../../include/text.php:1021 +msgid "slapped" +msgstr "gifflé(e)" + +#: ../../include/text.php:1022 +msgid "finger" +msgstr "pointer" + +#: ../../include/text.php:1022 +msgid "fingered" +msgstr "pointé" + +#: ../../include/text.php:1023 +msgid "rebuff" +msgstr "rejetter" + +#: ../../include/text.php:1023 +msgid "rebuffed" +msgstr "rejeté" + +#: ../../include/text.php:1035 +msgid "happy" +msgstr "heureux" + +#: ../../include/text.php:1036 +msgid "sad" +msgstr "triste" + +#: ../../include/text.php:1037 +msgid "mellow" +msgstr "mélancolique" + +#: ../../include/text.php:1038 +msgid "tired" +msgstr "fatigué" + +#: ../../include/text.php:1039 +msgid "perky" +msgstr "impertinent" + +#: ../../include/text.php:1040 +msgid "angry" +msgstr "en colère" + +#: ../../include/text.php:1041 +msgid "stupefied" +msgstr "stupéfait" + +#: ../../include/text.php:1042 +msgid "puzzled" +msgstr "perplexe" + +#: ../../include/text.php:1043 +msgid "interested" +msgstr "intéressé" + +#: ../../include/text.php:1044 +msgid "bitter" +msgstr "amer" + +#: ../../include/text.php:1045 +msgid "cheerful" +msgstr "plein d'entrain" + +#: ../../include/text.php:1046 +msgid "alive" +msgstr "vivant" + +#: ../../include/text.php:1047 +msgid "annoyed" +msgstr "agaçé" + +#: ../../include/text.php:1048 +msgid "anxious" +msgstr "anxieux" + +#: ../../include/text.php:1049 +msgid "cranky" +msgstr "énervé" + +#: ../../include/text.php:1050 +msgid "disturbed" +msgstr "perturbé" + +#: ../../include/text.php:1051 +msgid "frustrated" +msgstr "frustré" + +#: ../../include/text.php:1052 +msgid "depressed" +msgstr "déprimé" + +#: ../../include/text.php:1053 +msgid "motivated" +msgstr "motivé" + +#: ../../include/text.php:1054 +msgid "relaxed" +msgstr "détendu" + +#: ../../include/text.php:1055 +msgid "surprised" +msgstr "surpris" + +#: ../../include/text.php:1237 ../../include/js_strings.php:70 +msgid "Monday" +msgstr "Lundi" + +#: ../../include/text.php:1237 ../../include/js_strings.php:71 +msgid "Tuesday" +msgstr "Mardi" + +#: ../../include/text.php:1237 ../../include/js_strings.php:72 +msgid "Wednesday" +msgstr "Mercredi" + +#: ../../include/text.php:1237 ../../include/js_strings.php:73 +msgid "Thursday" +msgstr "Jeudi" + +#: ../../include/text.php:1237 ../../include/js_strings.php:74 +msgid "Friday" +msgstr "Vendredi" + +#: ../../include/text.php:1237 ../../include/js_strings.php:75 +msgid "Saturday" +msgstr "Samedi" + +#: ../../include/text.php:1237 ../../include/js_strings.php:69 +msgid "Sunday" +msgstr "Dimanche" + +#: ../../include/text.php:1241 ../../include/js_strings.php:45 +msgid "January" +msgstr "Janvier" + +#: ../../include/text.php:1241 ../../include/js_strings.php:46 +msgid "February" +msgstr "Février" + +#: ../../include/text.php:1241 ../../include/js_strings.php:47 +msgid "March" +msgstr "Mars" + +#: ../../include/text.php:1241 ../../include/js_strings.php:48 +msgid "April" +msgstr "Avril" + +#: ../../include/text.php:1241 +msgid "May" +msgstr "Mai" + +#: ../../include/text.php:1241 ../../include/js_strings.php:50 +msgid "June" +msgstr "Juin" + +#: ../../include/text.php:1241 ../../include/js_strings.php:51 +msgid "July" +msgstr "Juillet" + +#: ../../include/text.php:1241 ../../include/js_strings.php:52 +msgid "August" +msgstr "Août" + +#: ../../include/text.php:1241 ../../include/js_strings.php:53 +msgid "September" +msgstr "Septembre" + +#: ../../include/text.php:1241 ../../include/js_strings.php:54 +msgid "October" +msgstr "Octobre" + +#: ../../include/text.php:1241 ../../include/js_strings.php:55 +msgid "November" +msgstr "Novembre" + +#: ../../include/text.php:1241 ../../include/js_strings.php:56 +msgid "December" +msgstr "Décembre" + +#: ../../include/text.php:1318 ../../include/text.php:1322 +msgid "Unknown Attachment" +msgstr "Pièce jointe inconnue" + +#: ../../include/text.php:1324 +msgid "unknown" +msgstr "Inconnu" + +#: ../../include/text.php:1360 +msgid "remove category" +msgstr "supprimer la catégorie" + +#: ../../include/text.php:1437 +msgid "remove from file" +msgstr "retirer du fichier" + +#: ../../include/text.php:1734 ../../include/text.php:1805 +msgid "default" +msgstr "défaut" + +#: ../../include/text.php:1742 +msgid "Page layout" +msgstr "Mise en page" + +#: ../../include/text.php:1742 +msgid "You can create your own with the layouts tool" +msgstr "Créez les vôtres avec les outils de mise en page" + +#: ../../include/text.php:1784 +msgid "Page content type" +msgstr "Type de contenu de la page" + +#: ../../include/text.php:1817 +msgid "Select an alternate language" +msgstr "Choisir une langue alternative" + +#: ../../include/text.php:1934 +msgid "activity" +msgstr "activité" + +#: ../../include/text.php:2235 +msgid "Design Tools" +msgstr "Outils de conception" + +#: ../../include/text.php:2241 +msgid "Pages" +msgstr "Pages" + +#: ../../include/auth.php:147 +msgid "Logged out." +msgstr "Deconnecté." + +#: ../../include/auth.php:274 +msgid "Failed authentication" +msgstr "Échec de l'authentification" + +#: ../../include/permissions.php:26 +msgid "Can view my normal stream and posts" +msgstr "Peut voir les publications ordinaires sur mon canal." + +#: ../../include/permissions.php:30 +msgid "Can view my webpages" +msgstr "Peut voir mes pages web" + +#: ../../include/permissions.php:34 +msgid "Can post on my channel page (\"wall\")" +msgstr "Peuvent poster sur la page de mon canal (\"mur\")" + +#: ../../include/permissions.php:37 +msgid "Can like/dislike stuff" +msgstr "Peuvent aimer/ne pas aimer" + +#: ../../include/permissions.php:37 +msgid "Profiles and things other than posts/comments" +msgstr "Profils et autres excluant les publications/commentaires." + +#: ../../include/permissions.php:39 +msgid "Can forward to all my channel contacts via post @mentions" +msgstr "Peut faire suivre à tous les contacts de mon canal via \"@mention\"" + +#: ../../include/permissions.php:39 +msgid "Advanced - useful for creating group forum channels" +msgstr "Avancé - utile pour les canaux de type \"forum/groupe\"" + +#: ../../include/permissions.php:40 +msgid "Can chat with me (when available)" +msgstr "Peut discuter avec moi (quand disponibie)" + +#: ../../include/permissions.php:41 +msgid "Can write to my file storage and photos" +msgstr "Peut charger des fichiers et des photos dans mon canal" + +#: ../../include/permissions.php:42 +msgid "Can edit my webpages" +msgstr "Peut modifier mes pages web" + +#: ../../include/permissions.php:44 +msgid "Somewhat advanced - very useful in open communities" +msgstr "Plutôt avancé - très utile dans les communautés ouvertes" + +#: ../../include/permissions.php:46 +msgid "Can administer my channel resources" +msgstr "Peut administrer les ressources de mon canal" + +#: ../../include/permissions.php:46 msgid "" -"This is your default setting for who can view your default channel profile" -msgstr "" - -#: ../../include/PermissionDescription.php:163 -msgid "This is your default setting for who can view your connections" -msgstr "" - -#: ../../include/PermissionDescription.php:164 -msgid "" -"This is your default setting for who can view your file storage and photos" -msgstr "" - -#: ../../include/PermissionDescription.php:165 -msgid "This is your default setting for the audience of your webpages" -msgstr "" - -#: ../../include/account.php:28 -msgid "Not a valid email address" -msgstr "Ce n'est pas une adresse de courriel valide" - -#: ../../include/account.php:30 -msgid "Your email domain is not among those allowed on this site" -msgstr "Votre domaine de courriel ne fait pas partie de ceux autorisés par ce site" - -#: ../../include/account.php:36 -msgid "Your email address is already registered at this site." -msgstr "Votre adresse de courriel est déjà inscrite sur ce site." - -#: ../../include/account.php:68 -msgid "An invitation is required." -msgstr "Une invitation est requise." - -#: ../../include/account.php:72 -msgid "Invitation could not be verified." -msgstr "Votre invitation n'a pas pu être vérifiée." - -#: ../../include/account.php:122 -msgid "Please enter the required information." -msgstr "Merci d'entrer les informations requises." - -#: ../../include/account.php:189 -msgid "Failed to store account information." -msgstr "Impossible de stocker les informations liées au compte." - -#: ../../include/account.php:249 -#, php-format -msgid "Registration confirmation for %s" -msgstr "Confirmation de l'inscription pour %s" - -#: ../../include/account.php:315 -#, php-format -msgid "Registration request at %s" -msgstr "Demande d'inscription sur %s" - -#: ../../include/account.php:317 ../../include/account.php:344 -#: ../../include/account.php:404 ../../include/network.php:1871 -msgid "Administrator" -msgstr "Administrateur" - -#: ../../include/account.php:339 -msgid "your registration password" -msgstr "votre mot de passe d'inscription" - -#: ../../include/account.php:342 ../../include/account.php:402 -#, php-format -msgid "Registration details for %s" -msgstr "Détails de l'inscription pour %s" - -#: ../../include/account.php:414 -msgid "Account approved." -msgstr "Compte approuvé." - -#: ../../include/account.php:454 -#, php-format -msgid "Registration revoked for %s" -msgstr "Inscription révoquée pour %s" - -#: ../../include/account.php:506 -msgid "Account verified. Please login." -msgstr "Compte vérifié. Veuillez vous connecter." - -#: ../../include/account.php:723 ../../include/account.php:725 -msgid "Click here to upgrade." -msgstr "Cliquez ici pour mettre à jour." - -#: ../../include/account.php:731 -msgid "This action exceeds the limits set by your subscription plan." -msgstr "Cette action outrepasserait les limites prévues par votre forfait." - -#: ../../include/account.php:736 -msgid "This action is not available under your subscription plan." -msgstr "Cette action n'est pas disponible avec votre forfait." - -#: ../../include/attach.php:247 ../../include/attach.php:333 -msgid "Item was not found." -msgstr "Élément introuvable." - -#: ../../include/attach.php:497 -msgid "No source file." -msgstr "Pas de fichier source." - -#: ../../include/attach.php:519 -msgid "Cannot locate file to replace" -msgstr "Impossible de trouver le fichier à remplacer." - -#: ../../include/attach.php:537 -msgid "Cannot locate file to revise/update" -msgstr "Impossible de trouver le fichier à corriger/mettre à jour" - -#: ../../include/attach.php:672 -#, php-format -msgid "File exceeds size limit of %d" -msgstr "Le fichier dépasse la taille limite de %d" - -#: ../../include/attach.php:686 -#, php-format -msgid "You have reached your limit of %1$.0f Mbytes attachment storage." -msgstr "Vous avez atteint votre limite de %1$.0f méga-octets autorisés pour le stockage des pièces-jointes." - -#: ../../include/attach.php:842 -msgid "File upload failed. Possible system limit or action terminated." -msgstr "Envoi du fichier impossible. Limite système ou action avortée." - -#: ../../include/attach.php:855 -msgid "Stored file could not be verified. Upload failed." -msgstr "Le fichier stocké n'a pu être vérifié. Echec de l'envoi." - -#: ../../include/attach.php:909 ../../include/attach.php:925 -msgid "Path not available." -msgstr "Chemin non disponible." - -#: ../../include/attach.php:971 ../../include/attach.php:1123 -msgid "Empty pathname" -msgstr "Chemin vide" - -#: ../../include/attach.php:997 -msgid "duplicate filename or path" -msgstr "doublon de chemin ou de fichier" - -#: ../../include/attach.php:1019 -msgid "Path not found." -msgstr "Chemin introuvable." - -#: ../../include/attach.php:1077 -msgid "mkdir failed." -msgstr "mkdir a échoué." - -#: ../../include/attach.php:1081 -msgid "database storage failed." -msgstr "l'écriture dans la base de données a échoué." - -#: ../../include/attach.php:1129 -msgid "Empty path" -msgstr "Chemin vide" - -#: ../../include/channel.php:32 -msgid "Unable to obtain identity information from database" -msgstr "Impossible d'obtenir les données d'identité depuis la base de données" - -#: ../../include/channel.php:66 -msgid "Empty name" -msgstr "Nom vide" - -#: ../../include/channel.php:69 -msgid "Name too long" -msgstr "Nom trop long" - -#: ../../include/channel.php:180 -msgid "No account identifier" -msgstr "Pas d'identifiant de compte" - -#: ../../include/channel.php:192 -msgid "Nickname is required." -msgstr "Un surnom est requis." - -#: ../../include/channel.php:206 -msgid "Reserved nickname. Please choose another." -msgstr "Surnom réservé. Merci d'en choisir un autre." - -#: ../../include/channel.php:211 -msgid "" -"Nickname has unsupported characters or is already being used on this site." -msgstr "Le surnom contient des caractères interdits ou est déjà pris sur ce site." - -#: ../../include/channel.php:287 -msgid "Unable to retrieve created identity" -msgstr "Impossible de récupérer l'identité créée" - -#: ../../include/channel.php:345 -msgid "Default Profile" -msgstr "Profil par défaut" - -#: ../../include/channel.php:791 -msgid "Requested channel is not available." -msgstr "Canal demandé non disponible." - -#: ../../include/channel.php:938 -msgid "Create New Profile" -msgstr "Créer un nouveau profil" - -#: ../../include/channel.php:958 -msgid "Visible to everybody" -msgstr "Visible de tous" - -#: ../../include/channel.php:1031 ../../include/channel.php:1142 -msgid "Gender:" -msgstr "Sexe :" - -#: ../../include/channel.php:1032 ../../include/channel.php:1186 -msgid "Status:" -msgstr "État :" - -#: ../../include/channel.php:1033 ../../include/channel.php:1197 -msgid "Homepage:" -msgstr "Site Internet :" - -#: ../../include/channel.php:1034 -msgid "Online Now" -msgstr "Connecté" - -#: ../../include/channel.php:1147 -msgid "Like this channel" -msgstr "J'aime ce canal" - -#: ../../include/channel.php:1171 -msgid "j F, Y" -msgstr "j F, Y" - -#: ../../include/channel.php:1172 -msgid "j F" -msgstr "j F" - -#: ../../include/channel.php:1179 -msgid "Birthday:" -msgstr "Date de naissance :" - -#: ../../include/channel.php:1192 -#, php-format -msgid "for %1$d %2$s" -msgstr "depuis %1$d %2$s" - -#: ../../include/channel.php:1195 -msgid "Sexual Preference:" -msgstr "Orientation sexuelle :" - -#: ../../include/channel.php:1201 -msgid "Tags:" -msgstr "Étiquettes :" - -#: ../../include/channel.php:1203 -msgid "Political Views:" -msgstr "Opinions politiques :" - -#: ../../include/channel.php:1205 -msgid "Religion:" -msgstr "Religion :" - -#: ../../include/channel.php:1209 -msgid "Hobbies/Interests:" -msgstr "Occupations/Centres d'intérêt :" - -#: ../../include/channel.php:1211 -msgid "Likes:" -msgstr "Aime :" - -#: ../../include/channel.php:1213 -msgid "Dislikes:" -msgstr "N'aime pas :" - -#: ../../include/channel.php:1215 -msgid "Contact information and Social Networks:" -msgstr "Coordonnées et réseaux sociaux :" - -#: ../../include/channel.php:1217 -msgid "My other channels:" -msgstr "Mes autres canaux :" - -#: ../../include/channel.php:1219 -msgid "Musical interests:" -msgstr "Goûts musicaux :" - -#: ../../include/channel.php:1221 -msgid "Books, literature:" -msgstr "Lectures, goûts littéraires :" - -#: ../../include/channel.php:1223 -msgid "Television:" -msgstr "Télévision :" - -#: ../../include/channel.php:1225 -msgid "Film/dance/culture/entertainment:" -msgstr "Cinéma/danse/culture/divertissement&nsbp;:" - -#: ../../include/channel.php:1227 -msgid "Love/Romance:" -msgstr "Vie sentimentale/amoureuse :" - -#: ../../include/channel.php:1229 -msgid "Work/employment:" -msgstr "Travail/Occupation " - -#: ../../include/channel.php:1231 -msgid "School/education:" -msgstr "Études " - -#: ../../include/channel.php:1251 -msgid "Like this thing" -msgstr "J'aime ceci" +"Extremely advanced. Leave this alone unless you know what you are doing" +msgstr "Très avancé. Ne pas toucher, sauf si vous savez ce que vous faîtes" #: ../../include/features.php:48 msgid "General Features" @@ -8716,378 +8526,257 @@ msgid "Provide managed web pages on your channel" msgstr "Fournir des pages web, sous votre contrôle, sur votre canal" #: ../../include/features.php:55 +msgid "Provide a wiki for your channel" +msgstr "" + +#: ../../include/features.php:56 msgid "Hide Rating" msgstr "Masquer l'évaluation" -#: ../../include/features.php:55 +#: ../../include/features.php:56 msgid "" "Hide the rating buttons on your channel and profile pages. Note: People can " "still rate you somewhere else." msgstr "Masquer les boutons d'évaluation sur les pages de votre canal et de votre profil. NB : vous pourrez toujours être évalué(e) ailleurs." -#: ../../include/features.php:56 +#: ../../include/features.php:57 msgid "Private Notes" msgstr "Notes privées" -#: ../../include/features.php:56 +#: ../../include/features.php:57 msgid "Enables a tool to store notes and reminders (note: not encrypted)" msgstr "Active un outil pour stocker des notes et des rappels (note :non chiffré)" -#: ../../include/features.php:57 +#: ../../include/features.php:58 msgid "Navigation Channel Select" msgstr "Sélection du canal par la navigation" -#: ../../include/features.php:57 +#: ../../include/features.php:58 msgid "Change channels directly from within the navigation dropdown menu" msgstr "Changez de canal directement depuis le menu de navigation déroulant" -#: ../../include/features.php:58 +#: ../../include/features.php:59 msgid "Photo Location" msgstr "Site de prise de vue" -#: ../../include/features.php:58 +#: ../../include/features.php:59 msgid "If location data is available on uploaded photos, link this to a map." msgstr "Si des informations géographiques sont présentes dans les images téléversées, les lier à une carte." -#: ../../include/features.php:59 +#: ../../include/features.php:60 msgid "Access Controlled Chatrooms" msgstr "" -#: ../../include/features.php:59 +#: ../../include/features.php:60 msgid "Provide chatrooms and chat services with access control." msgstr "" -#: ../../include/features.php:60 +#: ../../include/features.php:61 msgid "Smart Birthdays" msgstr "Anniversaires intelligents" -#: ../../include/features.php:60 +#: ../../include/features.php:61 msgid "" "Make birthday events timezone aware in case your friends are scattered " "across the planet." msgstr "Adapter les anniversaires aux fuseaux horaires, utile pour vos amis sur d'autres continents." -#: ../../include/features.php:61 +#: ../../include/features.php:62 msgid "Expert Mode" msgstr "Mode expert" -#: ../../include/features.php:61 +#: ../../include/features.php:62 msgid "Enable Expert Mode to provide advanced configuration options" msgstr "Activer le mode expert pour accéder aux options avancées" -#: ../../include/features.php:62 +#: ../../include/features.php:63 msgid "Premium Channel" msgstr "Canal VIP" -#: ../../include/features.php:62 +#: ../../include/features.php:63 msgid "" "Allows you to set restrictions and terms on those that connect with your " "channel" msgstr "Vous permet d'appliquer des règles et restrictions aux contacts de votre canal" -#: ../../include/features.php:67 +#: ../../include/features.php:68 msgid "Post Composition Features" msgstr "Fonctionnalités de composition" -#: ../../include/features.php:70 +#: ../../include/features.php:71 msgid "Large Photos" msgstr "Grandes photos" -#: ../../include/features.php:70 +#: ../../include/features.php:71 msgid "" "Include large (1024px) photo thumbnails in posts. If not enabled, use small " "(640px) photo thumbnails" msgstr "Inclure de grands aperçus (1024px) dans les messages. Si désactivé, inclure de petits aperçus (640px)." -#: ../../include/features.php:71 +#: ../../include/features.php:72 msgid "Automatically import channel content from other channels or feeds" msgstr "Importe automatiquement le contenus d'autres canaux ou flux dans le canal actif" -#: ../../include/features.php:72 +#: ../../include/features.php:73 msgid "Even More Encryption" msgstr "Encore plus de chiffrement" -#: ../../include/features.php:72 +#: ../../include/features.php:73 msgid "" "Allow optional encryption of content end-to-end with a shared secret key" msgstr "Permettre le chiffrement optionnel du contenu de bout en bout au moyen d'un secret partagé" -#: ../../include/features.php:73 +#: ../../include/features.php:74 msgid "Enable Voting Tools" msgstr "Activer les outils de vote" -#: ../../include/features.php:73 +#: ../../include/features.php:74 msgid "Provide a class of post which others can vote on" msgstr "Fournit un type de publication sur lequel les utilisateurs peuvent voter" -#: ../../include/features.php:74 +#: ../../include/features.php:75 msgid "Delayed Posting" msgstr "Publication plus tard" -#: ../../include/features.php:74 +#: ../../include/features.php:75 msgid "Allow posts to be published at a later date" msgstr "Permettre de publier des messages à une date programmée" -#: ../../include/features.php:75 +#: ../../include/features.php:76 msgid "Suppress Duplicate Posts/Comments" msgstr "Supprimer les publications/commentaires en doublon" -#: ../../include/features.php:75 +#: ../../include/features.php:76 msgid "" "Prevent posts with identical content to be published with less than two " "minutes in between submissions." msgstr "Empêcher des messages aux contenus identiques d'être publiés à moins de deux minutes d'intervalle" -#: ../../include/features.php:81 +#: ../../include/features.php:82 msgid "Network and Stream Filtering" msgstr "Filtrage du réseau et des flux" -#: ../../include/features.php:82 +#: ../../include/features.php:83 msgid "Search by Date" msgstr "Chercher par date" -#: ../../include/features.php:82 +#: ../../include/features.php:83 msgid "Ability to select posts by date ranges" msgstr "Pouvoir choisir des publications par date" -#: ../../include/features.php:83 ../../include/group.php:311 +#: ../../include/features.php:84 ../../include/group.php:311 msgid "Privacy Groups" msgstr "Groupes d'accès" -#: ../../include/features.php:83 +#: ../../include/features.php:84 msgid "Enable management and selection of privacy groups" msgstr "Active la gestion et la sélection des groupes d'accès" -#: ../../include/features.php:84 +#: ../../include/features.php:85 ../../include/widgets.php:281 +msgid "Saved Searches" +msgstr "Recherches sauvegardées" + +#: ../../include/features.php:85 msgid "Save search terms for re-use" msgstr "Sauvegarder des termes de recherche pour utilisation ultérieure" -#: ../../include/features.php:85 +#: ../../include/features.php:86 msgid "Network Personal Tab" msgstr "Onglet \"Me concernant\"" -#: ../../include/features.php:85 +#: ../../include/features.php:86 msgid "Enable tab to display only Network posts that you've interacted on" msgstr "Activer un onglet affichant seulement les publications du réseau sur lesquelles vous êtes intervenu" -#: ../../include/features.php:86 +#: ../../include/features.php:87 msgid "Network New Tab" msgstr "Onglet \"nouveautés réseau\"" -#: ../../include/features.php:86 +#: ../../include/features.php:87 msgid "Enable tab to display all new Network activity" msgstr "Activer un onglet présentant toute l'activité récente sur le réseau" -#: ../../include/features.php:87 +#: ../../include/features.php:88 msgid "Affinity Tool" msgstr "Gérer l'affinité" -#: ../../include/features.php:87 +#: ../../include/features.php:88 msgid "Filter stream activity by depth of relationships" msgstr "Filtrer le flux d'activité en fonction de la profondeur des relations" -#: ../../include/features.php:88 +#: ../../include/features.php:89 msgid "Connection Filtering" msgstr "Filtrage des contacts" -#: ../../include/features.php:88 +#: ../../include/features.php:89 msgid "Filter incoming posts from connections based on keywords/content" msgstr "Filtrer les publications entrantes de mes contacts sur la base de mots-clefs" -#: ../../include/features.php:89 +#: ../../include/features.php:90 msgid "Show channel suggestions" msgstr "Montrer les suggestions de canaux" -#: ../../include/features.php:94 +#: ../../include/features.php:95 msgid "Post/Comment Tools" msgstr "Gérer les publications/commentaires" -#: ../../include/features.php:95 +#: ../../include/features.php:96 msgid "Community Tagging" msgstr "Etiquetage communautaire" -#: ../../include/features.php:95 +#: ../../include/features.php:96 msgid "Ability to tag existing posts" msgstr "Permettre de marquer les publications existantes" -#: ../../include/features.php:96 +#: ../../include/features.php:97 msgid "Post Categories" msgstr "Catégoriser les publications" -#: ../../include/features.php:96 +#: ../../include/features.php:97 msgid "Add categories to your posts" msgstr "Ajouter des catégories à vos publications" -#: ../../include/features.php:97 +#: ../../include/features.php:98 msgid "Emoji Reactions" msgstr "" -#: ../../include/features.php:97 +#: ../../include/features.php:98 msgid "Add emoji reaction ability to posts" msgstr "" -#: ../../include/features.php:98 +#: ../../include/features.php:99 ../../include/widgets.php:310 +#: ../../include/contact_widgets.php:53 +msgid "Saved Folders" +msgstr "Dossiers sauvegardés" + +#: ../../include/features.php:99 msgid "Ability to file posts under folders" msgstr "Permettre de classer les publications dans des dossiers" -#: ../../include/features.php:99 +#: ../../include/features.php:100 msgid "Dislike Posts" msgstr "\"Ne pas aimer\" les publications" -#: ../../include/features.php:99 +#: ../../include/features.php:100 msgid "Ability to dislike posts/comments" msgstr "Possibilité de \"ne pas aimer\" les publications/commentaires" -#: ../../include/features.php:100 +#: ../../include/features.php:101 msgid "Star Posts" msgstr "Pouvoir mettre en avant les publications" -#: ../../include/features.php:100 +#: ../../include/features.php:101 msgid "Ability to mark special posts with a star indicator" msgstr "Pouvoir marquer certaines publications d'une étoile" -#: ../../include/features.php:101 +#: ../../include/features.php:102 msgid "Tag Cloud" msgstr "Nuage de tags" -#: ../../include/features.php:101 +#: ../../include/features.php:102 msgid "Provide a personal tag cloud on your channel page" msgstr "Afficher un nuage de vos tags sur votre canal" -#: ../../include/oembed.php:324 -msgid "Embedded content" -msgstr "Contenu imbriqué" - -#: ../../include/oembed.php:333 -msgid "Embedding disabled" -msgstr "Imbrication désactivée" - -#: ../../include/acl_selectors.php:271 -msgid "Who can see this?" -msgstr "" - -#: ../../include/acl_selectors.php:272 -msgid "Custom selection" -msgstr "" - -#: ../../include/acl_selectors.php:273 -msgid "" -"Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit" -" the scope of \"Show\"." -msgstr "" - -#: ../../include/acl_selectors.php:274 -msgid "Show" -msgstr "Montrer" - -#: ../../include/acl_selectors.php:275 -msgid "Don't show" -msgstr "Cacher" - -#: ../../include/acl_selectors.php:281 -msgid "Other networks and post services" -msgstr "Autres réseaux et services de messagerie" - -#: ../../include/acl_selectors.php:311 -#, php-format -msgid "" -"Post permissions %s cannot be changed %s after a post is shared.
These" -" permissions set who is allowed to view the post." -msgstr "" - -#: ../../include/auth.php:105 -msgid "Logged out." -msgstr "Deconnecté." - -#: ../../include/auth.php:212 -msgid "Failed authentication" -msgstr "Échec de l'authentification" - -#: ../../include/datetime.php:135 -msgid "Birthday" -msgstr "Anniversaire" - -#: ../../include/datetime.php:137 -msgid "Age: " -msgstr "Age :" - -#: ../../include/datetime.php:139 -msgid "YYYY-MM-DD or MM-DD" -msgstr "AAAA-MM-JJ ou MM-JJ" - -#: ../../include/datetime.php:272 ../../boot.php:2470 -msgid "never" -msgstr "jamais" - -#: ../../include/datetime.php:278 -msgid "less than a second ago" -msgstr "à l'instant" - -#: ../../include/datetime.php:296 -#, php-format -msgctxt "e.g. 22 hours ago, 1 minute ago" -msgid "%1$d %2$s ago" -msgstr "il y a %1$d %2$s" - -#: ../../include/datetime.php:307 -msgctxt "relative_date" -msgid "year" -msgid_plural "years" -msgstr[0] "an" -msgstr[1] "ans" - -#: ../../include/datetime.php:310 -msgctxt "relative_date" -msgid "month" -msgid_plural "months" -msgstr[0] "mois" -msgstr[1] "mois" - -#: ../../include/datetime.php:313 -msgctxt "relative_date" -msgid "week" -msgid_plural "weeks" -msgstr[0] "semaine" -msgstr[1] "semaines" - -#: ../../include/datetime.php:316 -msgctxt "relative_date" -msgid "day" -msgid_plural "days" -msgstr[0] "jour" -msgstr[1] "jours" - -#: ../../include/datetime.php:319 -msgctxt "relative_date" -msgid "hour" -msgid_plural "hours" -msgstr[0] "heure" -msgstr[1] "heures" - -#: ../../include/datetime.php:322 -msgctxt "relative_date" -msgid "minute" -msgid_plural "minutes" -msgstr[0] "minute" -msgstr[1] "minutes" - -#: ../../include/datetime.php:325 -msgctxt "relative_date" -msgid "second" -msgid_plural "seconds" -msgstr[0] "seconde" -msgstr[1] "secondes" - -#: ../../include/datetime.php:562 -#, php-format -msgid "%1$s's birthday" -msgstr "Anniversaire de %1$s" - -#: ../../include/datetime.php:563 -#, php-format -msgid "Happy Birthday %1$s" -msgstr "Joyeux Anniversaire %1$s" - #: ../../include/group.php:26 msgid "" "A deleted group with this name was revived. Existing item permissions " @@ -9115,21 +8804,583 @@ msgstr "Ajouter un groupe d'accès" msgid "Channels not in any privacy group" msgstr "Canaux n'étant dans aucun groupe d'accès" +#: ../../include/group.php:316 ../../include/widgets.php:282 +msgid "add" +msgstr "ajouter" + +#: ../../include/event.php:22 ../../include/event.php:69 +#: ../../include/bb2diaspora.php:485 +msgid "l F d, Y \\@ g:i A" +msgstr "l d F Y \\à G\\hi" + +#: ../../include/event.php:30 ../../include/event.php:73 +#: ../../include/bb2diaspora.php:491 +msgid "Starts:" +msgstr "Début :" + +#: ../../include/event.php:40 ../../include/event.php:77 +#: ../../include/bb2diaspora.php:499 +msgid "Finishes:" +msgstr "Fin :" + +#: ../../include/event.php:814 +msgid "This event has been added to your calendar." +msgstr "Cet évènement a été ajouté dans votre calendrier." + +#: ../../include/event.php:1014 +msgid "Not specified" +msgstr "Non spécifié" + +#: ../../include/event.php:1015 +msgid "Needs Action" +msgstr "Besoin d'une action" + +#: ../../include/event.php:1016 +msgid "Completed" +msgstr "Terminé" + +#: ../../include/event.php:1017 +msgid "In Process" +msgstr "En cours" + +#: ../../include/event.php:1018 +msgid "Cancelled" +msgstr "Annulé" + +#: ../../include/account.php:28 +msgid "Not a valid email address" +msgstr "Ce n'est pas une adresse de courriel valide" + +#: ../../include/account.php:30 +msgid "Your email domain is not among those allowed on this site" +msgstr "Votre domaine de courriel ne fait pas partie de ceux autorisés par ce site" + +#: ../../include/account.php:36 +msgid "Your email address is already registered at this site." +msgstr "Votre adresse de courriel est déjà inscrite sur ce site." + +#: ../../include/account.php:68 +msgid "An invitation is required." +msgstr "Une invitation est requise." + +#: ../../include/account.php:72 +msgid "Invitation could not be verified." +msgstr "Votre invitation n'a pas pu être vérifiée." + +#: ../../include/account.php:122 +msgid "Please enter the required information." +msgstr "Merci d'entrer les informations requises." + +#: ../../include/account.php:189 +msgid "Failed to store account information." +msgstr "Impossible de stocker les informations liées au compte." + +#: ../../include/account.php:249 +#, php-format +msgid "Registration confirmation for %s" +msgstr "Confirmation de l'inscription pour %s" + +#: ../../include/account.php:315 +#, php-format +msgid "Registration request at %s" +msgstr "Demande d'inscription sur %s" + +#: ../../include/account.php:339 +msgid "your registration password" +msgstr "votre mot de passe d'inscription" + +#: ../../include/account.php:342 ../../include/account.php:402 +#, php-format +msgid "Registration details for %s" +msgstr "Détails de l'inscription pour %s" + +#: ../../include/account.php:414 +msgid "Account approved." +msgstr "Compte approuvé." + +#: ../../include/account.php:454 +#, php-format +msgid "Registration revoked for %s" +msgstr "Inscription révoquée pour %s" + +#: ../../include/account.php:739 ../../include/account.php:741 +msgid "Click here to upgrade." +msgstr "Cliquez ici pour mettre à jour." + +#: ../../include/account.php:747 +msgid "This action exceeds the limits set by your subscription plan." +msgstr "Cette action outrepasserait les limites prévues par votre forfait." + +#: ../../include/account.php:752 +msgid "This action is not available under your subscription plan." +msgstr "Cette action n'est pas disponible avec votre forfait." + +#: ../../include/follow.php:27 +msgid "Channel is blocked on this site." +msgstr "Ce canal est bloqué sur ce site." + +#: ../../include/follow.php:32 +msgid "Channel location missing." +msgstr "Emplacement du canal introuvable." + +#: ../../include/follow.php:80 +msgid "Response from remote channel was incomplete." +msgstr "La réponse du canal distant était incomplète." + +#: ../../include/follow.php:97 +msgid "Channel was deleted and no longer exists." +msgstr "Le canal a été supprimé et n'existe plus." + +#: ../../include/follow.php:147 ../../include/follow.php:183 +msgid "Protocol disabled." +msgstr "Protocole désactivé." + +#: ../../include/follow.php:171 +msgid "Channel discovery failed." +msgstr "La tentative d'accéder au canal a échoué." + +#: ../../include/follow.php:210 +msgid "Cannot connect to yourself." +msgstr "Ne peut pas se connecter à vous." + +#: ../../include/attach.php:247 ../../include/attach.php:333 +msgid "Item was not found." +msgstr "Élément introuvable." + +#: ../../include/attach.php:499 +msgid "No source file." +msgstr "Pas de fichier source." + +#: ../../include/attach.php:521 +msgid "Cannot locate file to replace" +msgstr "Impossible de trouver le fichier à remplacer." + +#: ../../include/attach.php:539 +msgid "Cannot locate file to revise/update" +msgstr "Impossible de trouver le fichier à corriger/mettre à jour" + +#: ../../include/attach.php:674 +#, php-format +msgid "File exceeds size limit of %d" +msgstr "Le fichier dépasse la taille limite de %d" + +#: ../../include/attach.php:688 +#, php-format +msgid "You have reached your limit of %1$.0f Mbytes attachment storage." +msgstr "Vous avez atteint votre limite de %1$.0f méga-octets autorisés pour le stockage des pièces-jointes." + +#: ../../include/attach.php:846 +msgid "File upload failed. Possible system limit or action terminated." +msgstr "Envoi du fichier impossible. Limite système ou action avortée." + +#: ../../include/attach.php:859 +msgid "Stored file could not be verified. Upload failed." +msgstr "Le fichier stocké n'a pu être vérifié. Echec de l'envoi." + +#: ../../include/attach.php:915 ../../include/attach.php:931 +msgid "Path not available." +msgstr "Chemin non disponible." + +#: ../../include/attach.php:977 ../../include/attach.php:1129 +msgid "Empty pathname" +msgstr "Chemin vide" + +#: ../../include/attach.php:1003 +msgid "duplicate filename or path" +msgstr "doublon de chemin ou de fichier" + +#: ../../include/attach.php:1025 +msgid "Path not found." +msgstr "Chemin introuvable." + +#: ../../include/attach.php:1083 +msgid "mkdir failed." +msgstr "mkdir a échoué." + +#: ../../include/attach.php:1087 +msgid "database storage failed." +msgstr "l'écriture dans la base de données a échoué." + +#: ../../include/attach.php:1135 +msgid "Empty path" +msgstr "Chemin vide" + +#: ../../include/bbcode.php:123 ../../include/bbcode.php:878 +#: ../../include/bbcode.php:881 ../../include/bbcode.php:886 +#: ../../include/bbcode.php:889 ../../include/bbcode.php:892 +#: ../../include/bbcode.php:895 ../../include/bbcode.php:900 +#: ../../include/bbcode.php:903 ../../include/bbcode.php:908 +#: ../../include/bbcode.php:911 ../../include/bbcode.php:914 +#: ../../include/bbcode.php:917 +msgid "Image/photo" +msgstr "Image/photo" + +#: ../../include/bbcode.php:162 ../../include/bbcode.php:928 +msgid "Encrypted content" +msgstr "Contenu chiffré" + +#: ../../include/bbcode.php:178 +#, php-format +msgid "Install %s element: " +msgstr "Installer %s élément" + +#: ../../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 "Ce message contient un élément installable %s, mais vous n'avez pas l'autorisation de l'installer sur ce site." + +#: ../../include/bbcode.php:261 +#, php-format +msgid "%1$s wrote the following %2$s %3$s" +msgstr "%1$s a écrit %2$s qui suit %3$s" + +#: ../../include/bbcode.php:338 ../../include/bbcode.php:346 +msgid "Click to open/close" +msgstr "Cliquer pour ouvrir/fermer" + +#: ../../include/bbcode.php:346 +msgid "spoiler" +msgstr "" + +#: ../../include/bbcode.php:619 +msgid "Different viewers will see this text differently" +msgstr "Ce texte aura un rendu différent en fonction des utilisateurs" + +#: ../../include/bbcode.php:866 +msgid "$1 wrote:" +msgstr "$1 a écrit :" + +#: ../../include/items.php:897 ../../include/items.php:942 +msgid "(Unknown)" +msgstr "(Inconnu)" + +#: ../../include/items.php:1141 +msgid "Visible to anybody on the internet." +msgstr "Visible pour tout le monde sur internet." + +#: ../../include/items.php:1143 +msgid "Visible to you only." +msgstr "Visible pour vous seulement." + +#: ../../include/items.php:1145 +msgid "Visible to anybody in this network." +msgstr "Visible pour tout le monde sur ce réseau." + +#: ../../include/items.php:1147 +msgid "Visible to anybody authenticated." +msgstr "Visible aux utilisateurs authentifiés." + +#: ../../include/items.php:1149 +#, php-format +msgid "Visible to anybody on %s." +msgstr "Visible pour tous sur %s." + +#: ../../include/items.php:1151 +msgid "Visible to all connections." +msgstr "Visible pour tous les contacts." + +#: ../../include/items.php:1153 +msgid "Visible to approved connections." +msgstr "Visible aux contacts approuvés." + +#: ../../include/items.php:1155 +msgid "Visible to specific connections." +msgstr "Visible pour certains contacts." + +#: ../../include/items.php:3918 +msgid "Privacy group is empty." +msgstr "Groupe d'accès vide." + +#: ../../include/items.php:3925 +#, php-format +msgid "Privacy group: %s" +msgstr "Groupe d'accès : %s" + +#: ../../include/items.php:3937 +msgid "Connection not found." +msgstr "Contact non trouvé." + +#: ../../include/items.php:4290 +msgid "profile photo" +msgstr "photo de profil" + +#: ../../include/oembed.php:336 +msgid "Embedded content" +msgstr "Contenu imbriqué" + +#: ../../include/oembed.php:345 +msgid "Embedding disabled" +msgstr "Imbrication désactivée" + +#: ../../include/widgets.php:103 +msgid "System" +msgstr "Système" + +#: ../../include/widgets.php:106 +msgid "New App" +msgstr "" + +#: ../../include/widgets.php:154 +msgid "Suggestions" +msgstr "Suggestions" + +#: ../../include/widgets.php:155 +msgid "See more..." +msgstr "Voir plus..." + +#: ../../include/widgets.php:175 +#, php-format +msgid "You have %1$.0f of %2$.0f allowed connections." +msgstr "Vous avez %1$.0f sur %2$.0f contacts autorisés." + +#: ../../include/widgets.php:181 +msgid "Add New Connection" +msgstr "Ajouter un nouveau contact" + +#: ../../include/widgets.php:182 +msgid "Enter channel address" +msgstr "Saisissez l'adresse du canal" + +#: ../../include/widgets.php:183 +msgid "Examples: bob@example.com, https://example.com/barbara" +msgstr "Exemples : pierre@exemple.com, https://exemple.com/sophie" + +#: ../../include/widgets.php:199 +msgid "Notes" +msgstr "Notes" + +#: ../../include/widgets.php:273 +msgid "Remove term" +msgstr "Retirer le terme" + +#: ../../include/widgets.php:313 ../../include/widgets.php:432 +#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:94 +msgid "Everything" +msgstr "Tout" + +#: ../../include/widgets.php:354 +msgid "Archives" +msgstr "Archives" + +#: ../../include/widgets.php:516 +msgid "Refresh" +msgstr "Actualiser" + +#: ../../include/widgets.php:556 +msgid "Account settings" +msgstr "Paramètres du compte" + +#: ../../include/widgets.php:562 +msgid "Channel settings" +msgstr "Paramètres du canal" + +#: ../../include/widgets.php:571 +msgid "Additional features" +msgstr "Fonctionnalités supplémentaires" + +#: ../../include/widgets.php:578 +msgid "Feature/Addon settings" +msgstr "Paramètres des extensions/greffons" + +#: ../../include/widgets.php:584 +msgid "Display settings" +msgstr "Paramètres d'affichage" + +#: ../../include/widgets.php:591 +msgid "Manage locations" +msgstr "" + +#: ../../include/widgets.php:600 +msgid "Export channel" +msgstr "Exporter le canal" + +#: ../../include/widgets.php:607 +msgid "Connected apps" +msgstr "Applications connectées" + +#: ../../include/widgets.php:631 +msgid "Premium Channel Settings" +msgstr "Paramètres de canal VIP" + +#: ../../include/widgets.php:660 +msgid "Private Mail Menu" +msgstr "Menu des messages privés" + +#: ../../include/widgets.php:662 +msgid "Combined View" +msgstr "Vue combinée" + +#: ../../include/widgets.php:694 ../../include/widgets.php:706 +msgid "Conversations" +msgstr "Conversations" + +#: ../../include/widgets.php:698 +msgid "Received Messages" +msgstr "Messages reçus" + +#: ../../include/widgets.php:702 +msgid "Sent Messages" +msgstr "Messages envoyés" + +#: ../../include/widgets.php:716 +msgid "No messages." +msgstr "Pas de message." + +#: ../../include/widgets.php:734 +msgid "Delete conversation" +msgstr "Supprimer la conversation" + +#: ../../include/widgets.php:760 +msgid "Events Tools" +msgstr "Outils Evènements" + +#: ../../include/widgets.php:761 +msgid "Export Calendar" +msgstr "Exporter le calendrier" + +#: ../../include/widgets.php:762 +msgid "Import Calendar" +msgstr "Importer un calendrier" + +#: ../../include/widgets.php:840 +msgid "Overview" +msgstr "" + +#: ../../include/widgets.php:847 +msgid "Chat Members" +msgstr "" + +#: ../../include/widgets.php:869 +msgid "Wiki List" +msgstr "" + +#: ../../include/widgets.php:907 +msgid "Wiki Pages" +msgstr "" + +#: ../../include/widgets.php:942 +msgid "Bookmarked Chatrooms" +msgstr "Salons favoris" + +#: ../../include/widgets.php:965 +msgid "Suggested Chatrooms" +msgstr "Salons suggérés" + +#: ../../include/widgets.php:1111 ../../include/widgets.php:1223 +msgid "photo/image" +msgstr "photo/image" + +#: ../../include/widgets.php:1166 +msgid "Click to show more" +msgstr "Cliquer pour voir plus" + +#: ../../include/widgets.php:1317 +msgid "Rating Tools" +msgstr "Outils d'évaluation" + +#: ../../include/widgets.php:1321 ../../include/widgets.php:1323 +msgid "Rate Me" +msgstr "M'évaluer" + +#: ../../include/widgets.php:1326 +msgid "View Ratings" +msgstr "Voir mes évaluations" + +#: ../../include/widgets.php:1410 +msgid "Forums" +msgstr "Membres du forum" + +#: ../../include/widgets.php:1439 +msgid "Tasks" +msgstr "Tâches" + +#: ../../include/widgets.php:1448 +msgid "Documentation" +msgstr "Documentation" + +#: ../../include/widgets.php:1450 +msgid "Project/Site Information" +msgstr "Information sur le site/projet" + +#: ../../include/widgets.php:1451 +msgid "For Members" +msgstr "Pour les membres" + +#: ../../include/widgets.php:1452 +msgid "For Administrators" +msgstr "Pour les administrateurs" + +#: ../../include/widgets.php:1453 +msgid "For Developers" +msgstr "Pour les développeurs" + +#: ../../include/widgets.php:1477 ../../include/widgets.php:1515 +msgid "Member registrations waiting for confirmation" +msgstr "" + +#: ../../include/widgets.php:1483 +msgid "Inspect queue" +msgstr "Analyser la file d'attente" + +#: ../../include/widgets.php:1485 +msgid "DB updates" +msgstr "Mises à jour BDD" + +#: ../../include/widgets.php:1511 +msgid "Plugin Features" +msgstr "Fonctionnalités des greffons" + +#: ../../include/activities.php:41 +msgid " and " +msgstr "et" + +#: ../../include/activities.php:49 +msgid "public profile" +msgstr "profil public" + +#: ../../include/activities.php:58 +#, php-format +msgid "%1$s changed %2$s to “%3$s”" +msgstr "%1$s a changé %2$s en “%3$s”" + +#: ../../include/activities.php:59 +#, php-format +msgid "Visit %1$s's %2$s" +msgstr "Visiter %2$s de %1$s" + +#: ../../include/activities.php:62 +#, php-format +msgid "%1$s has an updated %2$s, changing %3$s." +msgstr "%1$s a mis à jour %2$s, modifiant %3$s." + +#: ../../include/bb2diaspora.php:398 +msgid "Attachments:" +msgstr "Pièces jointes :" + +#: ../../include/bb2diaspora.php:487 +msgid "$Projectname event notification:" +msgstr "Notification d'événement de $Projectname :" + #: ../../include/js_strings.php:5 msgid "Delete this item?" msgstr "Supprimer cet élément?" #: ../../include/js_strings.php:8 -msgid "[-] show less" -msgstr "[-] montrer moins" +#, php-format +msgid "%s show less" +msgstr "" #: ../../include/js_strings.php:9 -msgid "[+] expand" -msgstr "[+] déplier" +#, php-format +msgid "%s expand" +msgstr "" #: ../../include/js_strings.php:10 -msgid "[-] collapse" -msgstr "[-] replier" +#, php-format +msgid "%s collapse" +msgstr "" #: ../../include/js_strings.php:11 msgid "Password too short" @@ -9359,278 +9610,223 @@ msgctxt "calendar" msgid "All day" msgstr "Toute la journée" -#: ../../include/network.php:657 -msgid "view full size" -msgstr "voir en taille réelle" +#: ../../include/contact_widgets.php:11 +#, php-format +msgid "%d invitation available" +msgid_plural "%d invitations available" +msgstr[0] "%d invitation disponible" +msgstr[1] "%d invitations disponibles" -#: ../../include/network.php:1885 -msgid "No Subject" -msgstr "Pas d'objet" +#: ../../include/contact_widgets.php:19 +msgid "Find Channels" +msgstr "Trouver des canaux" -#: ../../include/network.php:2146 ../../include/network.php:2147 -msgid "Friendica" -msgstr "Friendica" +#: ../../include/contact_widgets.php:20 +msgid "Enter name or interest" +msgstr "Saisir nom ou centre d'intérêt" -#: ../../include/network.php:2148 -msgid "OStatus" -msgstr "OStatus" +#: ../../include/contact_widgets.php:21 +msgid "Connect/Follow" +msgstr "Ajouter/Suivre" -#: ../../include/network.php:2149 -msgid "GNU-Social" +#: ../../include/contact_widgets.php:22 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "Exemples: Guillaume Martin, Course à pieds" + +#: ../../include/contact_widgets.php:26 +msgid "Random Profile" +msgstr "Un profil au hasard" + +#: ../../include/contact_widgets.php:27 +msgid "Invite Friends" +msgstr "Inviter des amis" + +#: ../../include/contact_widgets.php:29 +msgid "Advanced example: name=fred and country=iceland" +msgstr "Exemple avancé : name=fred and country=iceland" + +#: ../../include/contact_widgets.php:122 +#, php-format +msgid "%d connection in common" +msgid_plural "%d connections in common" +msgstr[0] "%d contact en commun" +msgstr[1] "%d contacts en commun" + +#: ../../include/contact_widgets.php:127 +msgid "show more" +msgstr "montrer plus" + +#: ../../include/dir_fns.php:141 +msgid "Directory Options" +msgstr "Options d'annuaire" + +#: ../../include/dir_fns.php:143 +msgid "Safe Mode" +msgstr "Mode sûr" + +#: ../../include/dir_fns.php:144 +msgid "Public Forums Only" +msgstr "Les forums publics uniquement" + +#: ../../include/dir_fns.php:145 +msgid "This Website Only" +msgstr "Ce site uniquement" + +#: ../../include/message.php:20 +msgid "No recipient provided." +msgstr "Pas de destinataire." + +#: ../../include/message.php:25 +msgid "[no subject]" +msgstr "[sans objet]" + +#: ../../include/message.php:45 +msgid "Unable to determine sender." +msgstr "Impossible de déterminer l'émetteur." + +#: ../../include/message.php:222 +msgid "Stored post could not be verified." +msgstr "Le message stocké n'a pas pu être vérifié." + +#: ../../include/acl_selectors.php:269 +msgid "Who can see this?" msgstr "" -#: ../../include/network.php:2150 -msgid "RSS/Atom" -msgstr "RSS/Atom" +#: ../../include/acl_selectors.php:270 +msgid "Custom selection" +msgstr "" -#: ../../include/network.php:2152 -msgid "Diaspora" -msgstr "Diaspora" +#: ../../include/acl_selectors.php:271 +msgid "" +"Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit" +" the scope of \"Show\"." +msgstr "" -#: ../../include/network.php:2153 -msgid "Facebook" -msgstr "Facebook" +#: ../../include/acl_selectors.php:272 +msgid "Show" +msgstr "Montrer" -#: ../../include/network.php:2154 -msgid "Zot" -msgstr "Zot" +#: ../../include/acl_selectors.php:273 +msgid "Don't show" +msgstr "Cacher" -#: ../../include/network.php:2155 -msgid "LinkedIn" -msgstr "Linkedin" +#: ../../include/acl_selectors.php:279 +msgid "Other networks and post services" +msgstr "Autres réseaux et services de messagerie" -#: ../../include/network.php:2156 -msgid "XMPP/IM" -msgstr "XMPP/IM" - -#: ../../include/network.php:2157 -msgid "MySpace" -msgstr "MySpace" - -#: ../../include/photos.php:110 +#: ../../include/acl_selectors.php:309 #, php-format -msgid "Image exceeds website size limit of %lu bytes" -msgstr "L'image dépasse la taille limite de %lu octets" +msgid "" +"Post permissions %s cannot be changed %s after a post is shared.
These" +" permissions set who is allowed to view the post." +msgstr "" -#: ../../include/photos.php:117 -msgid "Image file is empty." -msgstr "L'image est vide." +#: ../../include/datetime.php:135 +msgid "Birthday" +msgstr "Anniversaire" -#: ../../include/photos.php:255 -msgid "Photo storage failed." -msgstr "Le stockage de l'image a échoué." +#: ../../include/datetime.php:137 +msgid "Age: " +msgstr "Age :" -#: ../../include/photos.php:295 -msgid "a new photo" -msgstr "une nouvelle photo" +#: ../../include/datetime.php:139 +msgid "YYYY-MM-DD or MM-DD" +msgstr "AAAA-MM-JJ ou MM-JJ" -#: ../../include/photos.php:299 +#: ../../include/datetime.php:272 ../../boot.php:2479 +msgid "never" +msgstr "jamais" + +#: ../../include/datetime.php:278 +msgid "less than a second ago" +msgstr "à l'instant" + +#: ../../include/datetime.php:296 #, php-format -msgctxt "photo_upload" -msgid "%1$s posted %2$s to %3$s" -msgstr "%1$s a publié %2$s pour %3$s" +msgctxt "e.g. 22 hours ago, 1 minute ago" +msgid "%1$d %2$s ago" +msgstr "il y a %1$d %2$s" -#: ../../include/photos.php:506 -msgid "Upload New Photos" -msgstr "Ajouter des photos" +#: ../../include/datetime.php:307 +msgctxt "relative_date" +msgid "year" +msgid_plural "years" +msgstr[0] "an" +msgstr[1] "ans" -#: ../../include/zot.php:699 +#: ../../include/datetime.php:310 +msgctxt "relative_date" +msgid "month" +msgid_plural "months" +msgstr[0] "mois" +msgstr[1] "mois" + +#: ../../include/datetime.php:313 +msgctxt "relative_date" +msgid "week" +msgid_plural "weeks" +msgstr[0] "semaine" +msgstr[1] "semaines" + +#: ../../include/datetime.php:316 +msgctxt "relative_date" +msgid "day" +msgid_plural "days" +msgstr[0] "jour" +msgstr[1] "jours" + +#: ../../include/datetime.php:319 +msgctxt "relative_date" +msgid "hour" +msgid_plural "hours" +msgstr[0] "heure" +msgstr[1] "heures" + +#: ../../include/datetime.php:322 +msgctxt "relative_date" +msgid "minute" +msgid_plural "minutes" +msgstr[0] "minute" +msgstr[1] "minutes" + +#: ../../include/datetime.php:325 +msgctxt "relative_date" +msgid "second" +msgid_plural "seconds" +msgstr[0] "seconde" +msgstr[1] "secondes" + +#: ../../include/datetime.php:562 +#, php-format +msgid "%1$s's birthday" +msgstr "Anniversaire de %1$s" + +#: ../../include/datetime.php:563 +#, php-format +msgid "Happy Birthday %1$s" +msgstr "Joyeux Anniversaire %1$s" + +#: ../../include/api.php:1327 +msgid "Public Timeline" +msgstr "Fil public" + +#: ../../include/zot.php:697 msgid "Invalid data packet" msgstr "Paquet de données invalide" -#: ../../include/zot.php:715 +#: ../../include/zot.php:713 msgid "Unable to verify channel signature" msgstr "Impossible de vérifier la signature du canal" -#: ../../include/zot.php:2363 +#: ../../include/zot.php:2326 #, php-format msgid "Unable to verify site signature for %s" msgstr "Impossible de vérifier la signature de site pour %s" -#: ../../include/zot.php:3712 +#: ../../include/zot.php:3703 msgid "invalid target signature" msgstr "signature de la cible invalide" -#: ../../include/page_widgets.php:6 -msgid "New Page" -msgstr "Nouvelle page" - -#: ../../include/page_widgets.php:43 -msgid "Title" -msgstr "Titre" - -#: ../../include/permissions.php:26 -msgid "Can view my normal stream and posts" -msgstr "Peut voir les publications ordinaires sur mon canal." - -#: ../../include/permissions.php:27 -msgid "Can view my default channel profile" -msgstr "Peut voir le profil du canal par défaut." - -#: ../../include/permissions.php:28 -msgid "Can view my connections" -msgstr "Peut voir mes contacts" - -#: ../../include/permissions.php:29 -msgid "Can view my file storage and photos" -msgstr "Peut voir mes fichiers et photos" - -#: ../../include/permissions.php:30 -msgid "Can view my webpages" -msgstr "Peut voir mes pages web" - -#: ../../include/permissions.php:33 -msgid "Can send me their channel stream and posts" -msgstr "Peuvent m'envoyer leur flux et les publications de leur canal" - -#: ../../include/permissions.php:34 -msgid "Can post on my channel page (\"wall\")" -msgstr "Peuvent poster sur la page de mon canal (\"mur\")" - -#: ../../include/permissions.php:35 -msgid "Can comment on or like my posts" -msgstr "Peuvent commenter et/ou aimer mes publications" - -#: ../../include/permissions.php:36 -msgid "Can send me private mail messages" -msgstr "Peuvent m'envoyer des messages privés" - -#: ../../include/permissions.php:37 -msgid "Can like/dislike stuff" -msgstr "Peuvent aimer/ne pas aimer" - -#: ../../include/permissions.php:37 -msgid "Profiles and things other than posts/comments" -msgstr "Profils et autres excluant les publications/commentaires." - -#: ../../include/permissions.php:39 -msgid "Can forward to all my channel contacts via post @mentions" -msgstr "Peut faire suivre à tous les contacts de mon canal via \"@mention\"" - -#: ../../include/permissions.php:39 -msgid "Advanced - useful for creating group forum channels" -msgstr "Avancé - utile pour les canaux de type \"forum/groupe\"" - -#: ../../include/permissions.php:40 -msgid "Can chat with me (when available)" -msgstr "Peut discuter avec moi (quand disponibie)" - -#: ../../include/permissions.php:41 -msgid "Can write to my file storage and photos" -msgstr "Peut charger des fichiers et des photos dans mon canal" - -#: ../../include/permissions.php:42 -msgid "Can edit my webpages" -msgstr "Peut modifier mes pages web" - -#: ../../include/permissions.php:44 -msgid "Can source my public posts in derived channels" -msgstr "Peut rediriger mes publications publiques vers des canaux dérivés" - -#: ../../include/permissions.php:44 -msgid "Somewhat advanced - very useful in open communities" -msgstr "Plutôt avancé - très utile dans les communautés ouvertes" - -#: ../../include/permissions.php:46 -msgid "Can administer my channel resources" -msgstr "Peut administrer les ressources de mon canal" - -#: ../../include/permissions.php:46 -msgid "" -"Extremely advanced. Leave this alone unless you know what you are doing" -msgstr "Très avancé. Ne pas toucher, sauf si vous savez ce que vous faîtes" - -#: ../../include/permissions.php:877 -msgid "Social Networking" -msgstr "Réseau social" - -#: ../../include/permissions.php:877 -msgid "Social - Mostly Public" -msgstr "Social - surtout public" - -#: ../../include/permissions.php:877 -msgid "Social - Restricted" -msgstr "Social - restreint" - -#: ../../include/permissions.php:877 -msgid "Social - Private" -msgstr "Social - privé" - -#: ../../include/permissions.php:878 -msgid "Community Forum" -msgstr "Forum communautaire" - -#: ../../include/permissions.php:878 -msgid "Forum - Mostly Public" -msgstr "Forum - surtout public" - -#: ../../include/permissions.php:878 -msgid "Forum - Restricted" -msgstr "Forum - restreint" - -#: ../../include/permissions.php:878 -msgid "Forum - Private" -msgstr "Forum - privé" - -#: ../../include/permissions.php:879 -msgid "Feed Republish" -msgstr "Republication de flux" - -#: ../../include/permissions.php:879 -msgid "Feed - Mostly Public" -msgstr "Flux - surtout public" - -#: ../../include/permissions.php:879 -msgid "Feed - Restricted" -msgstr "Flux - restreint" - -#: ../../include/permissions.php:880 -msgid "Special Purpose" -msgstr "Utilisation spécifique" - -#: ../../include/permissions.php:880 -msgid "Special - Celebrity/Soapbox" -msgstr "Spécial - célébrité/promotion" - -#: ../../include/permissions.php:880 -msgid "Special - Group Repository" -msgstr "Spécial - dépôt partagé" - -#: ../../include/permissions.php:881 -msgid "Custom/Expert Mode" -msgstr "Mode expert/spécifique" - -#: ../../include/activities.php:41 -msgid " and " -msgstr "et" - -#: ../../include/activities.php:49 -msgid "public profile" -msgstr "profil public" - -#: ../../include/activities.php:58 -#, php-format -msgid "%1$s changed %2$s to “%3$s”" -msgstr "%1$s a changé %2$s en “%3$s”" - -#: ../../include/activities.php:59 -#, php-format -msgid "Visit %1$s's %2$s" -msgstr "Visiter %2$s de %1$s" - -#: ../../include/activities.php:62 -#, php-format -msgid "%1$s has an updated %2$s, changing %3$s." -msgstr "%1$s a mis à jour %2$s, modifiant %3$s." - -#: ../../include/bb2diaspora.php:398 -msgid "Attachments:" -msgstr "Pièces jointes :" - -#: ../../include/bb2diaspora.php:487 -msgid "$Projectname event notification:" -msgstr "Notification d'événement de $Projectname :" - #: ../../view/theme/redbasic/php/config.php:82 msgid "Focus (Hubzilla default)" msgstr "Focus (par défaut pour Hubzilla)" @@ -9767,62 +9963,66 @@ msgstr "Définir la taille de la photo de l'auteur d'une conversation" msgid "Set size of followup author photos" msgstr "Définir la taille de la photo de l'auteur d'une réponse" -#: ../../boot.php:1162 +#: ../../boot.php:1163 #, php-format msgctxt "opensearch" msgid "Search %1$s (%2$s)" msgstr "" -#: ../../boot.php:1162 +#: ../../boot.php:1163 msgctxt "opensearch" msgid "$Projectname" msgstr "" -#: ../../boot.php:1480 +#: ../../boot.php:1481 #, php-format msgid "Update %s failed. See error logs." msgstr "La mise-à-jour %s a échoué. Merci de consulter les journaux d'erreur." -#: ../../boot.php:1483 +#: ../../boot.php:1484 #, php-format msgid "Update Error at %s" msgstr "Erreur de mise à jour sur %s" -#: ../../boot.php:1684 +#: ../../boot.php:1685 msgid "" "Create an account to access services and applications within the Hubzilla" msgstr "Créez un compte pour pouvoir accéder aux services et applications de Hubzilla" #: ../../boot.php:1706 +msgid "Login/Email" +msgstr "" + +#: ../../boot.php:1707 msgid "Password" msgstr "Mot de passe" -#: ../../boot.php:1707 +#: ../../boot.php:1708 msgid "Remember me" msgstr "Se souvenir de moi" -#: ../../boot.php:1710 +#: ../../boot.php:1711 msgid "Forgot your password?" msgstr "Mot de passe oublié ?" -#: ../../boot.php:2276 +#: ../../boot.php:2277 msgid "toggle mobile" msgstr "(dés)activer mobile" -#: ../../boot.php:2425 +#: ../../boot.php:2432 msgid "Website SSL certificate is not valid. Please correct." msgstr "Le certificat SSL n'est pas valide. Corrigez le." -#: ../../boot.php:2428 +#: ../../boot.php:2435 #, php-format msgid "[hubzilla] Website SSL error for %s" msgstr "[hubzilla] Erreur SSL pour %s" -#: ../../boot.php:2469 +#: ../../boot.php:2478 msgid "Cron/Scheduled tasks not running." msgstr "Les taches planifiées ne tournent pas." -#: ../../boot.php:2473 +#: ../../boot.php:2482 #, php-format msgid "[hubzilla] Cron tasks not running on %s" msgstr "[hubzilla] Les tâches planifiées ne tournent pas sur %s" diff --git a/view/fr/hstrings.php b/view/fr/hstrings.php index a1ff9f868..3da3329cd 100644 --- a/view/fr/hstrings.php +++ b/view/fr/hstrings.php @@ -4,7 +4,39 @@ if(! function_exists("string_plural_select_fr")) { function string_plural_select_fr($n){ return ($n > 1);; }} -; +App::$rtl = 0; +App::$strings["Social Networking"] = "Réseau social"; +App::$strings["Social - Mostly Public"] = "Social - surtout public"; +App::$strings["Social - Restricted"] = "Social - restreint"; +App::$strings["Social - Private"] = "Social - privé"; +App::$strings["Community Forum"] = "Forum communautaire"; +App::$strings["Forum - Mostly Public"] = "Forum - surtout public"; +App::$strings["Forum - Restricted"] = "Forum - restreint"; +App::$strings["Forum - Private"] = "Forum - privé"; +App::$strings["Feed Republish"] = "Republication de flux"; +App::$strings["Feed - Mostly Public"] = "Flux - surtout public"; +App::$strings["Feed - Restricted"] = "Flux - restreint"; +App::$strings["Special Purpose"] = "Utilisation spécifique"; +App::$strings["Special - Celebrity/Soapbox"] = "Spécial - célébrité/promotion"; +App::$strings["Special - Group Repository"] = "Spécial - dépôt partagé"; +App::$strings["Other"] = "Autre"; +App::$strings["Custom/Expert Mode"] = "Mode expert/spécifique"; +App::$strings["Can view my channel stream and posts"] = ""; +App::$strings["Can send me their channel stream and posts"] = "Peuvent m'envoyer leur flux et les publications de leur canal"; +App::$strings["Can view my default channel profile"] = "Peut voir le profil du canal par défaut."; +App::$strings["Can view my connections"] = "Peut voir mes contacts"; +App::$strings["Can view my file storage and photos"] = "Peut voir mes fichiers et photos"; +App::$strings["Can upload/modify my file storage and photos"] = ""; +App::$strings["Can view my channel webpages"] = ""; +App::$strings["Can create/edit my channel webpages"] = ""; +App::$strings["Can post on my channel (wall) page"] = ""; +App::$strings["Can comment on or like my posts"] = "Peuvent commenter et/ou aimer mes publications"; +App::$strings["Can send me private mail messages"] = "Peuvent m'envoyer des messages privés"; +App::$strings["Can like/dislike profiles and profile things"] = ""; +App::$strings["Can forward to all my channel connections via @+ mentions in posts"] = ""; +App::$strings["Can chat with me"] = ""; +App::$strings["Can source my public posts in derived channels"] = "Peut rediriger mes publications publiques vers des canaux dérivés"; +App::$strings["Can administer my channel"] = ""; App::$strings["parent"] = "retour"; App::$strings["Collection"] = "Groupe de contacts"; App::$strings["Principal"] = "Principal"; @@ -37,63 +69,8 @@ App::$strings["Remote authentication blocked. You are logged into this site loca App::$strings["Welcome %s. Remote authentication successful."] = "Bienvenue %s. L'authentification distante a fonctionné."; App::$strings["Requested profile is not available."] = "Profil demandé non disponible."; App::$strings["Some blurb about what to do when you're new here"] = "Quelques mots sur quoi faire quand on est nouveau ici"; -App::$strings["Block Name"] = "Nom du Bloc"; -App::$strings["Blocks"] = "Blocs"; -App::$strings["Block Title"] = "Titre du bloc"; -App::$strings["Created"] = "Créé(e)"; -App::$strings["Edited"] = "Modifié(e)"; -App::$strings["Share"] = "Partager"; -App::$strings["View"] = "Voir"; -App::$strings["Channel not found."] = "Canal introuvable."; -App::$strings["Permissions denied."] = "Permissions refusées."; -App::$strings["l, F j"] = "l, F j"; -App::$strings["Link to Source"] = "Lien vers la Source"; -App::$strings["Edit Event"] = "Modifier l'événement"; -App::$strings["Create Event"] = "Créer un événement"; -App::$strings["Previous"] = "Précédent"; -App::$strings["Next"] = "Suivant"; -App::$strings["Export"] = "Export"; -App::$strings["Import"] = "Import"; -App::$strings["Submit"] = "Envoyer"; -App::$strings["Today"] = "Aujourd'hui"; -App::$strings["You must be logged in to see this page."] = "Vous devez vous connecter pour voir cette page."; -App::$strings["Posts and comments"] = ""; -App::$strings["Only posts"] = ""; -App::$strings["Insufficient permissions. Request redirected to profile page."] = "Permissions insuffisantes. Demande redirigée vers la page du profil."; -App::$strings["Room not found"] = "Salon introuvable"; -App::$strings["Leave Room"] = "Quitter le salon"; -App::$strings["Delete Room"] = ""; -App::$strings["I am away right now"] = "Je suis absent en ce moment"; -App::$strings["I am online"] = "Je suis en ligne"; -App::$strings["Bookmark this room"] = "Marquer ce salon comme favori"; -App::$strings["Please enter a link URL:"] = "Merci d'entrer l'URL d'un lien :"; -App::$strings["Encrypt text"] = "Chiffrer le texte"; -App::$strings["Insert web link"] = "Insérer lien web"; -App::$strings["Feature disabled."] = ""; -App::$strings["New Chatroom"] = "Nouveau salon de discussion"; -App::$strings["Chatroom name"] = ""; -App::$strings["Expiration of chats (minutes)"] = "Expiration des discussions (en minutes)"; -App::$strings["Permissions"] = "Autorisations"; -App::$strings["%1\$s's Chatrooms"] = "Salons de %1\$s"; -App::$strings["No chatrooms available"] = ""; -App::$strings["Create New"] = ""; -App::$strings["Expiration"] = ""; -App::$strings["min"] = ""; App::$strings["Away"] = "Absent"; App::$strings["Online"] = "En ligne"; -App::$strings["Invalid item."] = "Élément invalide."; -App::$strings["Bookmark added"] = "Favori ajouté"; -App::$strings["My Bookmarks"] = "Mes Favoris"; -App::$strings["My Connections Bookmarks"] = "Favoris de mes contacts"; -App::$strings["Continue"] = "Continuer"; -App::$strings["Premium Channel Setup"] = "Configuration du canal VIP"; -App::$strings["Enable premium channel connection restrictions"] = "Activer les restrictions liées au canal VIP"; -App::$strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = "Merci de saisir les restrictions et/ou conditions - reçu Paypal, transaction Bitcoin, ligne de conduite, ..."; -App::$strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = "Avant d'autoriser la mise en relation, ce canal attire votre attention sur les conditions suivantes :"; -App::$strings["Potential connections will then see the following text before proceeding:"] = "Les contacts potentiels verront ce qui suit avant de pouvoir continuer :"; -App::$strings["By continuing, I certify that I have complied with any instructions provided on this page."] = "En continuant, je certifie que je me suis conformé à toutes les instructions indiquées sur cette page."; -App::$strings["(No specific instructions have been provided by the channel owner.)"] = "(Aucune instruction spécifique n'a été fournie par le propriétaire du canal.)"; -App::$strings["Restricted or Premium Channel"] = "Canal VIP ou restreint"; App::$strings["Could not access contact record."] = "Impossible d'accéder aux détails du contact."; App::$strings["Could not locate selected profile."] = "Impossible de localiser le profil sélectionné."; App::$strings["Connection updated."] = "Contact mis à jour."; @@ -158,6 +135,7 @@ App::$strings["Do not import posts with this text"] = "Ne pas importer les publi App::$strings["This information is public!"] = "Cette information est publique !"; App::$strings["Connection Pending Approval"] = "Contact en attente d'approbation"; App::$strings["inherited"] = "héritée"; +App::$strings["Submit"] = "Envoyer"; App::$strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Merci de choisir le profil que vous souhaitez montrer quand %s visite votre profil de manière authentifiée."; App::$strings["Their Settings"] = "Leurs paramètres"; App::$strings["My Settings"] = "Mes paramètres"; @@ -166,6 +144,30 @@ App::$strings["Some permissions may be inherited from your channel's privacy settings, which have higher priority than individual settings. You can change those settings here but they wont have any impact unless the inherited setting changes."] = "Certaines permissions peuvent être héritées de vos paramètres de confidentialité de canal, lesquels sont prioritaires sur les réglages individuels. Vous pouvez modifier ces permissions ici mais cela n'aura aucun effet à moins de changer les paramètres hérités."; App::$strings["Last update:"] = "Dernière mise à jour :"; App::$strings["Public access denied."] = "Accès public refusé."; +App::$strings["Item not found."] = "Élément introuvable"; +App::$strings["First Name"] = "Prénom"; +App::$strings["Last Name"] = "Nom de famille"; +App::$strings["Nickname"] = "Surnom"; +App::$strings["Full Name"] = "Nom complet"; +App::$strings["Email"] = "Courriel"; +App::$strings["Profile Photo"] = "Photo du Profil"; +App::$strings["Profile Photo 16px"] = "Photo de profil 16px"; +App::$strings["Profile Photo 32px"] = "Photo de profil 32px"; +App::$strings["Profile Photo 48px"] = "Photo de profil 48px"; +App::$strings["Profile Photo 64px"] = "Photo de profil 64px"; +App::$strings["Profile Photo 80px"] = "Photo de profil 80px"; +App::$strings["Profile Photo 128px"] = "Photo de profil 128px"; +App::$strings["Timezone"] = "Fuseau horaire"; +App::$strings["Homepage URL"] = "URL de mon site Internet :"; +App::$strings["Language"] = "Langue"; +App::$strings["Birth Year"] = "Année de naissance"; +App::$strings["Birth Month"] = "Mois de naissance"; +App::$strings["Birth Day"] = "Jour de naissance"; +App::$strings["Birthdate"] = "Date de naissance"; +App::$strings["Gender"] = "Sexe"; +App::$strings["Male"] = "Homme"; +App::$strings["Female"] = "Femme"; +App::$strings["Channel added."] = "Canal ajouté."; App::$strings["%d rating"] = array( 0 => "%d évaluation", 1 => "%d évaluations", @@ -196,13 +198,74 @@ App::$strings["Reverse Alphabetic"] = "Alphabétique inversé"; App::$strings["Newest to Oldest"] = "Du plus récent au moins récent"; App::$strings["Oldest to Newest"] = "Du moins récent du plus récent"; App::$strings["No entries (some entries may be hidden)."] = "Pas d'entrées (certaines peuvent être cachées)."; -App::$strings["Item not found."] = "Élément introuvable"; +App::$strings["Continue"] = "Continuer"; +App::$strings["Premium Channel Setup"] = "Configuration du canal VIP"; +App::$strings["Enable premium channel connection restrictions"] = "Activer les restrictions liées au canal VIP"; +App::$strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = "Merci de saisir les restrictions et/ou conditions - reçu Paypal, transaction Bitcoin, ligne de conduite, ..."; +App::$strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = "Avant d'autoriser la mise en relation, ce canal attire votre attention sur les conditions suivantes :"; +App::$strings["Potential connections will then see the following text before proceeding:"] = "Les contacts potentiels verront ce qui suit avant de pouvoir continuer :"; +App::$strings["By continuing, I certify that I have complied with any instructions provided on this page."] = "En continuant, je certifie que je me suis conformé à toutes les instructions indiquées sur cette page."; +App::$strings["(No specific instructions have been provided by the channel owner.)"] = "(Aucune instruction spécifique n'a été fournie par le propriétaire du canal.)"; +App::$strings["Restricted or Premium Channel"] = "Canal VIP ou restreint"; +App::$strings["Calendar entries imported."] = "Entrées du calendrier importées."; +App::$strings["No calendar entries found."] = "Aucune entrée du calendrier trouvée."; +App::$strings["Event can not end before it has started."] = "La fin de l'événement ne peut être antérieure à son début."; +App::$strings["Unable to generate preview."] = "Impossible de générer l'aperçu."; +App::$strings["Event title and start time are required."] = "Un titre et une date de début sont requises pour l'événement."; +App::$strings["Event not found."] = "Événement introuvable."; +App::$strings["event"] = "événement"; +App::$strings["Edit event title"] = "Modifier le titre de l'événement"; +App::$strings["Event title"] = "Titre de l'événement"; +App::$strings["Required"] = "Requis"; +App::$strings["Categories (comma-separated list)"] = "Catégories (séparées par des virgules)"; +App::$strings["Edit Category"] = "Modifier la catégorie"; +App::$strings["Category"] = "Catégorie"; +App::$strings["Edit start date and time"] = "Modifier la date et l'heure de début"; +App::$strings["Start date and time"] = "Date et heure de début"; +App::$strings["Finish date and time are not known or not relevant"] = "Date et heure de fin inconnues ou sans objet"; +App::$strings["Edit finish date and time"] = "Modifier la date et l'heure de fin"; +App::$strings["Finish date and time"] = "Date et heure de fin"; +App::$strings["Adjust for viewer timezone"] = "Ajuster au fuseau horaire du visiteur"; +App::$strings["Important for events that happen in a particular place. Not practical for global holidays."] = "Important pour les événements se tenant en un lieu particulier. Pas pratique pour les vacances communes à de nombreux pays dans le monde."; +App::$strings["Edit Description"] = "Modifier la description"; +App::$strings["Description"] = "Description"; +App::$strings["Edit Location"] = "Modifier l'emplacement"; +App::$strings["Location"] = "Emplacement"; +App::$strings["Share this event"] = "Partager cet événement"; +App::$strings["Preview"] = "Aperçu"; +App::$strings["Permission settings"] = "Gérer les autorisations"; +App::$strings["Advanced Options"] = "Options avancées"; +App::$strings["l, F j"] = "l, F j"; +App::$strings["Edit event"] = "Modifier l'événement"; +App::$strings["Delete event"] = "Supprimer l'événement"; +App::$strings["Link to Source"] = "Lien vers la Source"; +App::$strings["calendar"] = "calendrier"; +App::$strings["Edit Event"] = "Modifier l'événement"; +App::$strings["Create Event"] = "Créer un événement"; +App::$strings["Previous"] = "Précédent"; +App::$strings["Next"] = "Suivant"; +App::$strings["Export"] = "Export"; +App::$strings["View"] = "Voir"; +App::$strings["Month"] = ""; +App::$strings["Week"] = ""; +App::$strings["Day"] = ""; +App::$strings["Today"] = "Aujourd'hui"; +App::$strings["Event removed"] = "Événement supprimé"; +App::$strings["Failed to remove event"] = "Impossible de supprimer l'événement"; +App::$strings["Bookmark added"] = "Favori ajouté"; +App::$strings["My Bookmarks"] = "Mes Favoris"; +App::$strings["My Connections Bookmarks"] = "Favoris de mes contacts"; App::$strings["Item not found"] = "Élément introuvable"; -App::$strings["Title (optional)"] = "Titre (facultatif)"; -App::$strings["Edit Block"] = "Modifier le bloc"; -App::$strings["No channel."] = "Pas de canal."; -App::$strings["Common connections"] = "Contacts en commun"; -App::$strings["No connections in common."] = "Pas de contacts en commun."; +App::$strings["Item is not editable"] = "Elément non modifiable"; +App::$strings["Edit post"] = "Modifier la publication"; +App::$strings["Photos"] = "Photos"; +App::$strings["Cancel"] = "Annuler"; +App::$strings["Invalid item."] = "Élément invalide."; +App::$strings["Channel not found."] = "Canal introuvable."; +App::$strings["Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."] = "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."; +App::$strings["Save to Folder:"] = "Classer dans le dossier :"; +App::$strings["- select -"] = "- choisir -"; +App::$strings["Save"] = "Enregistrer"; App::$strings["Blocked"] = "Bloqué(e)"; App::$strings["Ignored"] = "Ignoré(e)"; App::$strings["Hidden"] = "Caché"; @@ -254,51 +317,38 @@ App::$strings["select a photo from your photo albums"] = "choisir une photo dans App::$strings["Crop Image"] = "Recadrer l'image"; App::$strings["Please adjust the image cropping for optimum viewing."] = "Merci d'ajuster le cadre pour une visualisation optimale."; App::$strings["Done Editing"] = "J'ai terminé"; -App::$strings["Item is not editable"] = "Elément non modifiable"; -App::$strings["Edit post"] = "Modifier la publication"; -App::$strings["Calendar entries imported."] = "Entrées du calendrier importées."; -App::$strings["No calendar entries found."] = "Aucune entrée du calendrier trouvée."; -App::$strings["Event can not end before it has started."] = "La fin de l'événement ne peut être antérieure à son début."; -App::$strings["Unable to generate preview."] = "Impossible de générer l'aperçu."; -App::$strings["Event title and start time are required."] = "Un titre et une date de début sont requises pour l'événement."; -App::$strings["Event not found."] = "Événement introuvable."; -App::$strings["event"] = "événement"; -App::$strings["Edit event title"] = "Modifier le titre de l'événement"; -App::$strings["Event title"] = "Titre de l'événement"; -App::$strings["Required"] = "Requis"; -App::$strings["Categories (comma-separated list)"] = "Catégories (séparées par des virgules)"; -App::$strings["Edit Category"] = "Modifier la catégorie"; -App::$strings["Category"] = "Catégorie"; -App::$strings["Edit start date and time"] = "Modifier la date et l'heure de début"; -App::$strings["Start date and time"] = "Date et heure de début"; -App::$strings["Finish date and time are not known or not relevant"] = "Date et heure de fin inconnues ou sans objet"; -App::$strings["Edit finish date and time"] = "Modifier la date et l'heure de fin"; -App::$strings["Finish date and time"] = "Date et heure de fin"; -App::$strings["Adjust for viewer timezone"] = "Ajuster au fuseau horaire du visiteur"; -App::$strings["Important for events that happen in a particular place. Not practical for global holidays."] = "Important pour les événements se tenant en un lieu particulier. Pas pratique pour les vacances communes à de nombreux pays dans le monde."; -App::$strings["Edit Description"] = "Modifier la description"; -App::$strings["Description"] = "Description"; -App::$strings["Edit Location"] = "Modifier l'emplacement"; -App::$strings["Location"] = "Emplacement"; -App::$strings["Share this event"] = "Partager cet événement"; -App::$strings["Preview"] = "Aperçu"; -App::$strings["Permission settings"] = "Gérer les autorisations"; -App::$strings["Advanced Options"] = "Options avancées"; -App::$strings["Edit event"] = "Modifier l'événement"; -App::$strings["Delete event"] = "Supprimer l'événement"; -App::$strings["calendar"] = "calendrier"; -App::$strings["Event removed"] = "Événement supprimé"; -App::$strings["Failed to remove event"] = "Impossible de supprimer l'événement"; -App::$strings["Photos"] = "Photos"; -App::$strings["Cancel"] = "Annuler"; +App::$strings["webpage"] = "pages web"; +App::$strings["block"] = "bloquer"; +App::$strings["layout"] = "mise en page"; +App::$strings["menu"] = "menu"; +App::$strings["%s element installed"] = "Elément %s installé"; +App::$strings["%s element installation failed"] = "L'installation de l'élément %s a échoué"; +App::$strings["Permissions denied."] = "Permissions refusées."; +App::$strings["Import"] = "Import"; App::$strings["This site is not a directory server"] = "Ce site n'est pas un serveur d'annuaire"; App::$strings["This directory server requires an access token"] = "Ce serveur d'annuaire requiert un jeton d'accès"; -App::$strings["Save to Folder:"] = "Classer dans le dossier :"; -App::$strings["- select -"] = "- choisir -"; -App::$strings["Save"] = "Enregistrer"; +App::$strings["You must be logged in to see this page."] = "Vous devez vous connecter pour voir cette page."; +App::$strings["Room not found"] = "Salon introuvable"; +App::$strings["Leave Room"] = "Quitter le salon"; +App::$strings["Delete Room"] = ""; +App::$strings["I am away right now"] = "Je suis absent en ce moment"; +App::$strings["I am online"] = "Je suis en ligne"; +App::$strings["Bookmark this room"] = "Marquer ce salon comme favori"; +App::$strings["Please enter a link URL:"] = "Merci d'entrer l'URL d'un lien :"; +App::$strings["Encrypt text"] = "Chiffrer le texte"; +App::$strings["Insert web link"] = "Insérer lien web"; +App::$strings["Feature disabled."] = ""; +App::$strings["New Chatroom"] = "Nouveau salon de discussion"; +App::$strings["Chatroom name"] = ""; +App::$strings["Expiration of chats (minutes)"] = "Expiration des discussions (en minutes)"; +App::$strings["Permissions"] = "Autorisations"; +App::$strings["%1\$s's Chatrooms"] = "Salons de %1\$s"; +App::$strings["No chatrooms available"] = ""; +App::$strings["Create New"] = ""; +App::$strings["Expiration"] = ""; +App::$strings["min"] = ""; App::$strings["Invalid message"] = "Message non valide"; App::$strings["no results"] = "aucun résultat"; -App::$strings["Delivery report for %1\$s"] = "Rapport de distribution pour %1\$s"; App::$strings["channel sync processed"] = "Synchro de canal effectuée"; App::$strings["queued"] = "mis dans la file d'attente"; App::$strings["posted"] = "publié"; @@ -310,14 +360,14 @@ App::$strings["recipient not found"] = "destinataire introuvable"; App::$strings["mail recalled"] = "courriel rappelé"; App::$strings["duplicate mail received"] = "courriel reçu en double"; App::$strings["mail delivered"] = "courriel distribué"; +App::$strings["Delivery report for %1\$s"] = "Rapport de distribution pour %1\$s"; +App::$strings["Options"] = ""; +App::$strings["Redeliver"] = ""; App::$strings["Layout Name"] = "Nom de la mise en page"; App::$strings["Layout Description (Optional)"] = "Description de la mise en page (facultatif)"; App::$strings["Edit Layout"] = "Modifier la mise en page"; App::$strings["Page link"] = ""; App::$strings["Edit Webpage"] = "Modifier la page web"; -App::$strings["Channel added."] = "Canal ajouté."; -App::$strings["network"] = "réseau"; -App::$strings["RSS"] = "RSS"; App::$strings["Privacy group created."] = "Groupe d'accès créé."; App::$strings["Could not create privacy group."] = "Impossible de créer le groupe d'accès."; App::$strings["Privacy group not found."] = "Groupe d'accès introuvable."; @@ -331,16 +381,33 @@ App::$strings["Privacy group editor"] = "Editeur de groupe d'accès."; App::$strings["Members"] = "Membres"; App::$strings["All Connected Channels"] = "Tous les canaux connectés"; App::$strings["Click on a channel to add or remove."] = "Cliquer sur un canal pour l'ajouter ou le supprimer"; -App::$strings["Share content from Firefox to \$Projectname"] = "Partager du contenu depuis Firefox avec \$Projectname"; -App::$strings["Activate the Firefox \$Projectname provider"] = "Activer le connecteur \$Projectname pour Firefox"; -App::$strings["Authorize application connection"] = "Autoriser l'application à se connecter"; -App::$strings["Return to your app and insert this Securty Code:"] = "Merci de retourner vers votre application, et d'y insérer ce Code de Sécurité :"; -App::$strings["Please login to continue."] = "Merci de vous identifier pour continuer."; -App::$strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Voulez-vous autoriser cette application à accéder à vos publications et contacts, et/ou à publier en votre nom?"; +App::$strings["App installed."] = "Application installée."; +App::$strings["Malformed app."] = "Erreur de l'application - Malformée."; +App::$strings["Embed code"] = "Imbriquer le code"; +App::$strings["Edit App"] = "Modifier l'application"; +App::$strings["Create App"] = "Créer une application"; +App::$strings["Name of app"] = "Nom de l'application"; +App::$strings["Location (URL) of app"] = "Emplacement (URL) de l'application"; +App::$strings["Photo icon URL"] = "URL de l'icône à utiliser pour cette photo"; +App::$strings["80 x 80 pixels - optional"] = "80 x 80 pixels - facultatif"; +App::$strings["Categories (optional, comma separated list)"] = ""; +App::$strings["Version ID"] = "Identifiant de version"; +App::$strings["Price of app"] = "Prix de l'application"; +App::$strings["Location (URL) to purchase app"] = "Emplacement (URL) pour l'achat de l'application"; App::$strings["Documentation Search"] = "Chercher dans la documentation"; App::$strings["Help:"] = "Aide :"; App::$strings["Help"] = "Aide"; App::$strings["\$Projectname Documentation"] = "Documentation \$Projectname"; +App::$strings["Item not available."] = "Élément indisponible."; +App::$strings["Layout updated."] = "Mise en page mise à jour."; +App::$strings["Edit System Page Description"] = "Modifier la description de la page du système"; +App::$strings["Layout not found."] = "Mise en page introuvable."; +App::$strings["Module Name:"] = "Nom du module :"; +App::$strings["Layout Help"] = "Aide à la mise en page"; +App::$strings["Share content from Firefox to \$Projectname"] = "Partager du contenu depuis Firefox avec \$Projectname"; +App::$strings["Activate the Firefox \$Projectname provider"] = "Activer le connecteur \$Projectname pour Firefox"; +App::$strings["network"] = "réseau"; +App::$strings["RSS"] = "RSS"; App::$strings["Permission Denied."] = "Permission refusée."; App::$strings["File not found."] = "Fichier introuvable."; App::$strings["Edit file permissions"] = "Modifier les autorisations d'accès au fichier"; @@ -352,70 +419,13 @@ App::$strings["Copy/paste this URL to link file from a web page"] = "Copiez/coll App::$strings["Share this file"] = "Partager ce fichier"; App::$strings["Show URL to this file"] = "Montrer l'URL de ce fichier"; App::$strings["Notify your contacts about this file"] = "Notifier vos contacts à propos de ce fichier"; -App::$strings["Apps"] = "Applications"; -App::$strings["Item not available."] = "Élément indisponible."; -App::$strings["Your service plan only allows %d channels."] = "Votre forfait n'autorise que %d canaux."; -App::$strings["Nothing to import."] = "Rien à importer."; -App::$strings["Unable to download data from old server"] = "Impossible de récupérer les données de l'ancien serveur"; -App::$strings["Imported file is empty."] = "Le fichier importé est vide."; -App::$strings["Warning: Database versions differ by %1\$d updates."] = "Attention : les versions de bases de données diffèrent de %1\$d mises à jour."; -App::$strings["Cloned channel not found. Import failed."] = "Canal cloné non trouvé. Echec de l'import."; -App::$strings["No channel. Import failed."] = "Pas de canal. Echec de l'import."; -App::$strings["Import completed."] = "L'import est terminé."; -App::$strings["You must be logged in to use this feature."] = "Vous devez vous connecter pour utiliser cette fonctionnalité."; -App::$strings["Import Channel"] = "Importation de canal"; -App::$strings["Use this form to import an existing channel from a different server/hub. You may retrieve the channel identity from the old server/hub via the network or provide an export file."] = "Utilisez ce formulaire pour importer un canal existant sur un autre serveur. Vous pouvez récupérer l'identité du canal sur l'ancien serveur directement par le réseau, ou bien fournir un fichier d'export/import."; -App::$strings["File to Upload"] = "Fichier à envoyer"; -App::$strings["Or provide the old server/hub details"] = "Ou fournissez les détails de l'ancien serveur/hub"; -App::$strings["Your old identity address (xyz@example.com)"] = "Votre ancienne identité (zyx@exemple.com)"; -App::$strings["Your old login email address"] = "Votre ancienne adresse de courriel"; -App::$strings["Your old login password"] = "Votre ancien mot de passe"; -App::$strings["For either option, please choose whether to make this hub your new primary address, or whether your old location should continue this role. You will be able to post from either location, but only one can be marked as the primary location for files, photos, and media."] = "Quelle que soit l'option choisie, merci de décider si ce hub sera votre nouvelle adresse primaire, ou si votre ancien hub continuera à jouer ce rôle. Vous pourrez publier depuis l'emplacement de votre choix, mais une seule peut être déclarée comme stockage primaire de vos fichiers/photos/media."; -App::$strings["Make this hub my primary location"] = "Faire de ce hub mon emplacement primaire"; -App::$strings["Import existing posts if possible (experimental - limited by available memory"] = "Importer les publications existantes si possible (expérimental - limité par la mémoire disponible)"; -App::$strings["This process may take several minutes to complete. Please submit the form only once and leave this page open until finished."] = "Ce processus peut prendre plusieurs minutes. Merci de ne valider le formulaire qu'une seule fois et de laisser cette page ouverte jusqu'à la fin."; -App::$strings["Unable to locate original post."] = "Impossible de localiser la publication initiale."; -App::$strings["Empty post discarded."] = "Publication vide annulée."; -App::$strings["Executable content type not permitted to this channel."] = "Les contenus de type 'exécutable' ne sont pas autorisés sur ce canal."; -App::$strings["Duplicate post suppressed."] = "Publication en doublon supprimée."; -App::$strings["System error. Post not saved."] = "Erreur système. Publication non sauvegardée."; -App::$strings["Unable to obtain post information from database."] = "Impossible d'obtenir les informations de publication depuis la base de données."; -App::$strings["You have reached your limit of %1$.0f top level posts."] = "Vous avez atteint votre limite de %1$.0f contributions \"racines\"."; -App::$strings["You have reached your limit of %1$.0f webpages."] = "Vous avez atteint votre limite de %1$.0f pages web."; App::$strings["Layouts"] = "Mises-en-page"; App::$strings["Comanche page description language help"] = "Aide sur le langage de description de page Comanche"; App::$strings["Layout Description"] = "Description de la mise en page"; +App::$strings["Created"] = "Créé(e)"; +App::$strings["Edited"] = "Modifié(e)"; +App::$strings["Share"] = "Partager"; App::$strings["Download PDL file"] = "Télécharger le fichier PDL"; -App::$strings["\$Projectname"] = "\$Projectname"; -App::$strings["Welcome to %s"] = "Bienvenue sur %s"; -App::$strings["First Name"] = "Prénom"; -App::$strings["Last Name"] = "Nom de famille"; -App::$strings["Nickname"] = "Surnom"; -App::$strings["Full Name"] = "Nom complet"; -App::$strings["Email"] = "Courriel"; -App::$strings["Profile Photo"] = "Photo du Profil"; -App::$strings["Profile Photo 16px"] = "Photo de profil 16px"; -App::$strings["Profile Photo 32px"] = "Photo de profil 32px"; -App::$strings["Profile Photo 48px"] = "Photo de profil 48px"; -App::$strings["Profile Photo 64px"] = "Photo de profil 64px"; -App::$strings["Profile Photo 80px"] = "Photo de profil 80px"; -App::$strings["Profile Photo 128px"] = "Photo de profil 128px"; -App::$strings["Timezone"] = "Fuseau horaire"; -App::$strings["Homepage URL"] = "URL de mon site Internet :"; -App::$strings["Language"] = "Langue"; -App::$strings["Birth Year"] = "Année de naissance"; -App::$strings["Birth Month"] = "Mois de naissance"; -App::$strings["Birth Day"] = "Jour de naissance"; -App::$strings["Birthdate"] = "Date de naissance"; -App::$strings["Gender"] = "Sexe"; -App::$strings["Male"] = "Homme"; -App::$strings["Female"] = "Femme"; -App::$strings["webpage"] = "pages web"; -App::$strings["block"] = "bloquer"; -App::$strings["layout"] = "mise en page"; -App::$strings["menu"] = "menu"; -App::$strings["%s element installed"] = "Elément %s installé"; -App::$strings["%s element installation failed"] = "L'installation de l'élément %s a échoué"; App::$strings["Like/Dislike"] = "Aime/n'aime pas"; App::$strings["This action is restricted to members."] = "Cette action est réservée aux membres."; App::$strings["Please login with your \$Projectname ID or register as a new \$Projectname member to continue."] = "S'il vous plait, identifiez vous avec votre identifant de \$Projectname ou inscrivez vous comme nouveau membre de \$Projectname pour continuer."; @@ -436,175 +446,103 @@ App::$strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$s ne participe pas App::$strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$s participe peut-être à %3\$s de %2\$s"; App::$strings["Action completed."] = "Action terminée."; App::$strings["Thank you."] = "Merci."; -App::$strings["Import completed"] = "L'import est terminé."; -App::$strings["Import Items"] = "Importer"; -App::$strings["Use this form to import existing posts and content from an export file."] = "Utiliser ce formulaire pour importer des publications et du contenu existant d'un fichier d'export."; -App::$strings["Total invitation limit exceeded."] = "Limite du nombre total d'invitation dépassée."; -App::$strings["%s : Not a valid email address."] = "%s : adresse courriel invalide."; -App::$strings["Please join us on \$Projectname"] = "Rejoignez-nous sur \$Projectname"; -App::$strings["Invitation limit exceeded. Please contact your site administrator."] = "Limite d'invitations dépassée. Merci de contacter l'administration de votre site."; -App::$strings["%s : Message delivery failed."] = "%s : Échec de distribution du message."; -App::$strings["%d message sent."] = array( - 0 => "%d message envoyé.", - 1 => "%d messages envoyés.", -); -App::$strings["You have no more invitations available"] = "Vous ne disposez plus d'aucune invitation"; -App::$strings["Send invitations"] = "Envoyer des invitations"; -App::$strings["Enter email addresses, one per line:"] = "Entrez les adresses de courriel, une par ligne :"; -App::$strings["Your message:"] = "Votre message :"; -App::$strings["Please join my community on \$Projectname."] = "Rejoignez ma communauté sur \$Projectname."; -App::$strings["You will need to supply this invitation code:"] = "Vous devrez fournir le code suivant :"; -App::$strings["1. Register at any \$Projectname location (they are all inter-connected)"] = "1. Enregistrez-vous sur n'importe quel serveur \$Projectname (ils sont tous inter-connectés)"; -App::$strings["2. Enter my \$Projectname network address into the site searchbar."] = "2. Saisissez l'adresse de mon canal \$Projectname dans la barre de recherche du site."; -App::$strings["or visit"] = "ou rendez-vous sur"; -App::$strings["3. Click [Connect]"] = "3. Cliquez sur [Ajouter]"; -App::$strings["Remote privacy information not available."] = "Les informations distantes de confidentialité ne sont pas disponibles."; -App::$strings["Visible to:"] = "Visible par :"; -App::$strings["Location not found."] = "Emplacement introuvable."; -App::$strings["Location lookup failed."] = "Echec de la recherche de l'emplacement."; -App::$strings["Please select another location to become primary before removing the primary location."] = "Merci de sélectionner un autre emplacement comme nouvel emplacement primaire avant de supprimer l'emplacement primaire actuel."; -App::$strings["Syncing locations"] = "Synchronisation des emplacements"; -App::$strings["No locations found."] = "Emplacement(s) introuvable."; -App::$strings["Manage Channel Locations"] = "Gérer les emplacements des canaux"; +App::$strings["Profile not found."] = "Profil introuvable."; +App::$strings["Profile deleted."] = "Profil supprimé."; +App::$strings["Profile-"] = "Profil-"; +App::$strings["New profile created."] = "Nouveau profil créé."; +App::$strings["Profile unavailable to clone."] = "Profil impossible à cloner."; +App::$strings["Profile unavailable to export."] = "Impossible d'exporter le profil."; +App::$strings["Profile Name is required."] = "Le nom du profil est obligatoire."; +App::$strings["Marital Status"] = "Statut marital"; +App::$strings["Romantic Partner"] = "Partenaire amoureux"; +App::$strings["Likes"] = "Aime"; +App::$strings["Dislikes"] = "N'aime pas"; +App::$strings["Work/Employment"] = "Travail/Occupation"; +App::$strings["Religion"] = "Religion/Croyance"; +App::$strings["Political Views"] = "Opinions politiques"; +App::$strings["Sexual Preference"] = "Préférences sexuelle"; +App::$strings["Homepage"] = "Site Internet"; +App::$strings["Interests"] = "Centres d'intérêt"; App::$strings["Address"] = "Adresse"; -App::$strings["Primary"] = ""; -App::$strings["Drop"] = "Supprimer"; -App::$strings["Sync Now"] = ""; -App::$strings["Please wait several minutes between consecutive operations."] = "Merci d'attendre plusieurs minutes entre opérations successives."; -App::$strings["When possible, drop a location by logging into that website/hub and removing your channel."] = "Quand c'est possible, abandonnez un emplacement en vous connectant sur le site/hub et en supprimant votre canal."; -App::$strings["Use this form to drop the location if the hub is no longer operating."] = "Utilisez ce formulaire pour abandonner l'emplacement si le hub n'est plus actif."; -App::$strings["Hub not found."] = "Hub introuvable."; -App::$strings["Unable to lookup recipient."] = "Impossible de localiser le destinataire."; -App::$strings["Unable to communicate with requested channel."] = "Impossible de communiquer avec le canal demandé."; -App::$strings["Cannot verify requested channel."] = "Impossible de vérifier le canal demandé."; -App::$strings["Selected channel has private message restrictions. Send failed."] = "Le canal choisi a des restrictions quant aux messages privés. L'envoi a échoué."; -App::$strings["Messages"] = "Messages"; -App::$strings["Message recalled."] = "Message rappelé."; -App::$strings["Conversation removed."] = "Conversation supprimée."; -App::$strings["Expires YYYY-MM-DD HH:MM"] = "Expire le YYYY-MM-DD à HH:MM"; -App::$strings["Requested channel is not in this network"] = "Le canal demandé n'est pas sur ce réseau"; -App::$strings["Send Private Message"] = "Envoyer un message privé"; -App::$strings["To:"] = "À :"; -App::$strings["Subject:"] = "Objet :"; -App::$strings["Attach file"] = "Joindre un fichier"; -App::$strings["Send"] = "Envoyer"; -App::$strings["Set expiration date"] = "Définir la date d'expiration"; -App::$strings["Delete message"] = "Supprimer le message"; -App::$strings["Delivery report"] = "Rapport de distribution"; -App::$strings["Recall message"] = "Rappeler le message"; -App::$strings["Message has been recalled."] = "Le message a été rappelé."; -App::$strings["Delete Conversation"] = "Supprimer la conversation"; -App::$strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Aucune communication sécurisée n'est possible. Vous pourrez peut-être répondre depuis la page de profil de l'émetteur."; -App::$strings["Send Reply"] = "Envoyer la réponse"; -App::$strings["Your message for %s (%s):"] = "Votre message pour %s (%s) :"; -App::$strings["You have created %1$.0f of %2$.0f allowed channels."] = "Vous avez créé %1$.0f des %2$.0f canaux autorisés."; -App::$strings["Create a new channel"] = "Créer un nouveau canal"; -App::$strings["Channel Manager"] = "Gérer les canaux"; -App::$strings["Current Channel"] = "Canal actif"; -App::$strings["Switch to one of your channels by selecting it."] = "Pour changer de canal, sélectionnez-en un"; -App::$strings["Default Channel"] = "Canal par défaut"; -App::$strings["Make Default"] = "Définir comme défaut"; -App::$strings["%d new messages"] = "%d nouveaux messages"; -App::$strings["%d new introductions"] = "%d nouvelles présentations"; -App::$strings["Delegated Channel"] = ""; -App::$strings["No valid account found."] = "Aucun compte valide trouvé."; -App::$strings["Password reset request issued. Check your email."] = "Demande de réinitialisation du mot de passe envoyée. Vérifiez vos courriels."; -App::$strings["Site Member (%s)"] = "Membre du site (%s)"; -App::$strings["Password reset requested at %s"] = "Demande de réinitialisation du mot de passe sur %s"; -App::$strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "La demande n'a pas pu être vérifiée. (Peut-être l'avez vous déjà utilisée.) La réinitialisation a échoué."; -App::$strings["Password Reset"] = "Réinitialiser le mot de passe"; -App::$strings["Your password has been reset as requested."] = "Votre mot de passe a bien été réinitialisé."; -App::$strings["Your new password is"] = "Votre nouveau mot de passe est"; -App::$strings["Save or copy your new password - and then"] = "Enregistrez ou copiez votre nouveau mot de passe, puis"; -App::$strings["click here to login"] = "cliquez ici pour vous connecter"; -App::$strings["Your password may be changed from the Settings page after successful login."] = "Votre mot de passe peut être changé depuis la page des Paramètres une fois connecté."; -App::$strings["Your password has changed at %s"] = "Votre mot de passe de %s a été changé"; -App::$strings["Forgot your Password?"] = "Mot de passe oublié ?"; -App::$strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Saisissez votre adresse de courriel, et validez, pour réinitialiser votre mot de passe. Vérifiez ensuite votre boîte aux lettres pour la suite des instructions."; -App::$strings["Email Address"] = "Adresse de courriel"; -App::$strings["Reset"] = "Réinitialiser"; -App::$strings["Unable to update menu."] = "Impossible de mettre le menu à jour."; -App::$strings["Unable to create menu."] = "Impossible de créer le menu."; -App::$strings["Menu Name"] = "Nom du menu"; -App::$strings["Unique name (not visible on webpage) - required"] = "Nom unique (non visible sur la page web) - requis"; -App::$strings["Menu Title"] = "Titre du menu"; -App::$strings["Visible on webpage - leave empty for no title"] = "Visible pour la page web - laisser vide pour qu'il n'y ait pas de titre"; -App::$strings["Allow Bookmarks"] = "Autoriser l'usage de favoris"; -App::$strings["Menu may be used to store saved bookmarks"] = "Le menu pourra être utilisé pour stocker des favoris"; -App::$strings["Submit and proceed"] = "Valider et continuer"; -App::$strings["Menus"] = "Menus"; -App::$strings["Bookmarks allowed"] = "Favoris autorisés"; -App::$strings["Delete this menu"] = "Supprimer ce menu"; -App::$strings["Edit menu contents"] = "Modifier le contenu du menu"; -App::$strings["Edit this menu"] = "Modifier ce menu"; -App::$strings["Menu could not be deleted."] = "Impossible de supprimer le menu."; -App::$strings["Menu not found."] = "Menu introuvable."; -App::$strings["Edit Menu"] = "Modifier le menu"; -App::$strings["Add or remove entries to this menu"] = "Ajouter/supprimer des entrées à ce menu"; -App::$strings["Menu name"] = "Nom du menu"; -App::$strings["Must be unique, only seen by you"] = "Doit être unique, ne sera vu que par vous"; -App::$strings["Menu title"] = "Titre du menu"; -App::$strings["Menu title as seen by others"] = "Titre du menu tel que vu par les visiteurs"; -App::$strings["Allow bookmarks"] = "Autoriser l'usage de favoris"; -App::$strings["Not found."] = "Introuvable."; -App::$strings["__ctx:mood__ %1\$s is %2\$s"] = "%1\$s est %2\$s"; -App::$strings["Mood"] = "Humeur"; -App::$strings["Set your current mood and tell your friends"] = "Indiquez votre humeur du moment à vos amis"; -App::$strings["Profile Match"] = "Profils similaires"; -App::$strings["No keywords to match. Please add keywords to your default profile."] = "Aucun mot-clef à comparer. Merci d'ajouter des mots-clefs à votre profil par défaut."; -App::$strings["is interested in:"] = "s'intéresse à :"; -App::$strings["No matches"] = "Pas de correspondance"; -App::$strings["No such group"] = "Groupe introuvable"; -App::$strings["No such channel"] = "Canal introuvable"; -App::$strings["forum"] = "forum"; -App::$strings["Search Results For:"] = "Résultats de recherche pour :"; -App::$strings["Privacy group is empty"] = "Groupe d'accès vide"; -App::$strings["Privacy group: "] = "Groupe d'accès :"; -App::$strings["Invalid connection."] = "Contact non valide."; -App::$strings["No more system notifications."] = "Pas d'autre notification du système."; -App::$strings["System Notifications"] = "Notifications du système"; -App::$strings["Unable to create element."] = "Impossible de créer l'entrée."; -App::$strings["Unable to update menu element."] = "Impossible de mettre à jour l'entrée de menu."; -App::$strings["Unable to add menu element."] = "Impossible d'ajouter l'entrée de menu."; -App::$strings["Menu Item Permissions"] = "Permissions de l'entrée de menu"; -App::$strings["(click to open/close)"] = "(cliquer pour ouvrir/fermer)"; -App::$strings["Link Name"] = "Nom du lien"; -App::$strings["Link or Submenu Target"] = "Lien ou sous-menu cible"; -App::$strings["Enter URL of the link or select a menu name to create a submenu"] = "Entrez l'URL du lien ou sélectionnez un nom de menu pour créer un sous-menu"; -App::$strings["Use magic-auth if available"] = "Utiliser l'authentification distante, quand disponible"; -App::$strings["Open link in new window"] = "Ouvrir le lien dans une nouvelle fenêtre"; -App::$strings["Order in list"] = "Ordre dans la liste"; -App::$strings["Higher numbers will sink to bottom of listing"] = "Les nombres les plus élevés seront au bas de la liste"; -App::$strings["Submit and finish"] = "Vadiler et terminer"; -App::$strings["Submit and continue"] = "Valider et continuer"; -App::$strings["Menu:"] = "Menu :"; -App::$strings["Link Target"] = "Cible du lien"; -App::$strings["Edit menu"] = "Modifier le menu"; -App::$strings["Edit element"] = "Modifier l'entrée"; -App::$strings["Drop element"] = "Supprimer l'entrée"; -App::$strings["New element"] = "Nouvelle entrée"; -App::$strings["Edit this menu container"] = "Éditer ce bloc de menu"; -App::$strings["Add menu element"] = "Ajouter une entrée au menu"; -App::$strings["Delete this menu item"] = "Supprimer cette entrée du menu"; -App::$strings["Edit this menu item"] = "Modifier cette entrée du menu"; -App::$strings["Menu item not found."] = "Entrée de menu introuvable."; -App::$strings["Menu item deleted."] = "Entrée de menu supprimée."; -App::$strings["Menu item could not be deleted."] = "Impossible de supprimer l'entrée de menu."; -App::$strings["Edit Menu Element"] = "Modifier l'entrée de menu"; -App::$strings["Link text"] = "Texte du lien"; -App::$strings["Name or caption"] = "Nom ou libellé"; -App::$strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\""] = "Exemples : \"Jérôme Dutilleul\", \"Louise et ses chevaux\", \"Football\", \"Club d'aéromodélisme\""; -App::$strings["Choose a short nickname"] = "Choisissez un alias"; -App::$strings["Your nickname will be used to create an easy to remember channel address e.g. nickname%s"] = "Votre pseudo sera utilisé pour créer une adresse de canal facile à mémoriser, par ex. pseudo%s"; -App::$strings["Channel role and privacy"] = "Rôle et confidentialité du canal"; -App::$strings["Select a channel role with your privacy requirements."] = "Sélectionner un rôle de canal adapté à vos besoins de confidentialité."; -App::$strings["Read more about roles"] = "En savoir plus sur les rôles"; -App::$strings["Create Channel"] = "Créer le canal"; -App::$strings["A channel is your identity on this network. It can represent a person, a blog, or a forum to name a few. Channels can make connections with other channels to share information with highly detailed permissions."] = "Un canal est votre identité sur ce réseau. Il peut représenter une personne, un blog, ou un forum par exemple. Les canaux peuvent entrer en contact les uns avec les autres pour partager des informations avec des permissions d'accès très fines."; -App::$strings["or import an existing channel from another location."] = "ou importer un canal existant d'un autre serveur."; -App::$strings["Invalid request identifier."] = "Identifiant de requête invalide."; -App::$strings["Discard"] = "Annuler"; -App::$strings["Mark all system notifications seen"] = "Marquer toutes les notifications système comme vues"; +App::$strings["Profile updated."] = "Profil mis à jour."; +App::$strings["Hide your connections list from viewers of this profile"] = ""; +App::$strings["Edit Profile Details"] = "Modifier les détails du profil"; +App::$strings["View this profile"] = "Voir ce profil"; +App::$strings["Edit visibility"] = "Changer la visibilité"; +App::$strings["Profile Tools"] = ""; +App::$strings["Change cover photo"] = ""; +App::$strings["Change profile photo"] = "Changer la photo du profil"; +App::$strings["Create a new profile using these settings"] = "Créer un nouveau profil avec ces paramètres"; +App::$strings["Clone this profile"] = "Cloner ce profil"; +App::$strings["Delete this profile"] = "Supprimer ce profil"; +App::$strings["Add profile things"] = "Ajouter des éléments de profil"; +App::$strings["Personal"] = "Me concernant"; +App::$strings["Relation"] = ""; +App::$strings["Miscellaneous"] = "Divers"; +App::$strings["Import profile from file"] = "Importer le profil à partir d'un fichier"; +App::$strings["Export profile to file"] = "Exporter le profil vers un fichier."; +App::$strings["Your gender"] = ""; +App::$strings["Marital status"] = ""; +App::$strings["Sexual preference"] = ""; +App::$strings["Profile name"] = ""; +App::$strings["This is your default profile."] = "Ceci est votre profil par défaut."; +App::$strings["Your full name"] = ""; +App::$strings["Title/Description"] = "Titre/description"; +App::$strings["Street address"] = ""; +App::$strings["Locality/City"] = "Ville"; +App::$strings["Region/State"] = "Région"; +App::$strings["Postal/Zip code"] = ""; +App::$strings["Country"] = "Pays"; +App::$strings["Who (if applicable)"] = "Qui (si applicable)"; +App::$strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Exemples : marie123, Marie Deschamps, marie@exemple.com"; +App::$strings["Since (date)"] = ""; +App::$strings["Tell us about yourself"] = ""; +App::$strings["Hometown"] = "Ville de naissance"; +App::$strings["Political views"] = ""; +App::$strings["Religious views"] = ""; +App::$strings["Keywords used in directory listings"] = ""; +App::$strings["Example: fishing photography software"] = "Exemple : escrime photographie modélisme"; +App::$strings["Musical interests"] = "Goûts musicaux"; +App::$strings["Books, literature"] = "Livres, littérature"; +App::$strings["Television"] = "Télévision"; +App::$strings["Film/Dance/Culture/Entertainment"] = ""; +App::$strings["Hobbies/Interests"] = "Loisirs/Centres d'intêret"; +App::$strings["Love/Romance"] = ""; +App::$strings["School/Education"] = ""; +App::$strings["Contact information and social networks"] = ""; +App::$strings["My other channels"] = "Mes autres canaux"; +App::$strings["Profile Image"] = "Image du profil"; +App::$strings["Edit Profiles"] = "Modifier les profils"; +App::$strings["Your service plan only allows %d channels."] = "Votre forfait n'autorise que %d canaux."; +App::$strings["Nothing to import."] = "Rien à importer."; +App::$strings["Unable to download data from old server"] = "Impossible de récupérer les données de l'ancien serveur"; +App::$strings["Imported file is empty."] = "Le fichier importé est vide."; +App::$strings["Warning: Database versions differ by %1\$d updates."] = "Attention : les versions de bases de données diffèrent de %1\$d mises à jour."; +App::$strings["Cloned channel not found. Import failed."] = "Canal cloné non trouvé. Echec de l'import."; +App::$strings["No channel. Import failed."] = "Pas de canal. Echec de l'import."; +App::$strings["Import completed."] = "L'import est terminé."; +App::$strings["You must be logged in to use this feature."] = "Vous devez vous connecter pour utiliser cette fonctionnalité."; +App::$strings["Import Channel"] = "Importation de canal"; +App::$strings["Use this form to import an existing channel from a different server/hub. You may retrieve the channel identity from the old server/hub via the network or provide an export file."] = "Utilisez ce formulaire pour importer un canal existant sur un autre serveur. Vous pouvez récupérer l'identité du canal sur l'ancien serveur directement par le réseau, ou bien fournir un fichier d'export/import."; +App::$strings["File to Upload"] = "Fichier à envoyer"; +App::$strings["Or provide the old server/hub details"] = "Ou fournissez les détails de l'ancien serveur/hub"; +App::$strings["Your old identity address (xyz@example.com)"] = "Votre ancienne identité (zyx@exemple.com)"; +App::$strings["Your old login email address"] = "Votre ancienne adresse de courriel"; +App::$strings["Your old login password"] = "Votre ancien mot de passe"; +App::$strings["For either option, please choose whether to make this hub your new primary address, or whether your old location should continue this role. You will be able to post from either location, but only one can be marked as the primary location for files, photos, and media."] = "Quelle que soit l'option choisie, merci de décider si ce hub sera votre nouvelle adresse primaire, ou si votre ancien hub continuera à jouer ce rôle. Vous pourrez publier depuis l'emplacement de votre choix, mais une seule peut être déclarée comme stockage primaire de vos fichiers/photos/media."; +App::$strings["Make this hub my primary location"] = "Faire de ce hub mon emplacement primaire"; +App::$strings["Import existing posts if possible (experimental - limited by available memory"] = "Importer les publications existantes si possible (expérimental - limité par la mémoire disponible)"; +App::$strings["This process may take several minutes to complete. Please submit the form only once and leave this page open until finished."] = "Ce processus peut prendre plusieurs minutes. Merci de ne valider le formulaire qu'une seule fois et de laisser cette page ouverte jusqu'à la fin."; +App::$strings["\$Projectname"] = "\$Projectname"; +App::$strings["Welcome to %s"] = "Bienvenue sur %s"; +App::$strings["Unable to locate original post."] = "Impossible de localiser la publication initiale."; +App::$strings["Empty post discarded."] = "Publication vide annulée."; +App::$strings["Executable content type not permitted to this channel."] = "Les contenus de type 'exécutable' ne sont pas autorisés sur ce canal."; +App::$strings["Duplicate post suppressed."] = "Publication en doublon supprimée."; +App::$strings["System error. Post not saved."] = "Erreur système. Publication non sauvegardée."; +App::$strings["Unable to obtain post information from database."] = "Impossible d'obtenir les informations de publication depuis la base de données."; +App::$strings["You have reached your limit of %1$.0f top level posts."] = "Vous avez atteint votre limite de %1$.0f contributions \"racines\"."; +App::$strings["You have reached your limit of %1$.0f webpages."] = "Vous avez atteint votre limite de %1$.0f pages web."; App::$strings["Page owner information could not be retrieved."] = "Impossible d'obtenir des informations sur le propriétaire de la page."; App::$strings["Profile Photos"] = "Photos du profil"; App::$strings["Album not found."] = "Album introuvable."; @@ -673,122 +611,164 @@ App::$strings["__ctx:noun__ Dislikes"] = "N'aime pas"; App::$strings["Close"] = "Fermer"; App::$strings["View Album"] = "Voir l'album"; App::$strings["Recent Photos"] = "Photos récentes"; -App::$strings["sent you a private message"] = "vous a envoyé un message privé"; -App::$strings["added your channel"] = "a ajouté votre canal"; -App::$strings["g A l F d"] = "g A l F d"; -App::$strings["[today]"] = "[aujourd'hui]"; -App::$strings["posted an event"] = "a publié un événement"; -App::$strings["Unable to find your hub."] = "Impossible de trouver votre hub."; -App::$strings["Post successful."] = "Publication réussie."; -App::$strings["OpenID protocol error. No ID returned."] = "Erreur du protocole OpenID. Pas d'ID retourné."; -App::$strings["Login failed."] = "Échec de la connexion."; -App::$strings["Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."] = "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."; -App::$strings["This setting requires special processing and editing has been blocked."] = "Ce paramètre nécessité un traitement spécial, les modifications ont été bloquées."; -App::$strings["Configuration Editor"] = "Editeur de configuration"; -App::$strings["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."] = "Attention :modifier certains paramètres peut rendre votre canal inutilisable. Merci d'ignorer cette page à moins d'être suffisamment à l'aise de savoir comment utiliser correctement cette fonctionnalité."; -App::$strings["Layout updated."] = "Mise en page mise à jour."; -App::$strings["Edit System Page Description"] = "Modifier la description de la page du système"; -App::$strings["Layout not found."] = "Mise en page introuvable."; -App::$strings["Module Name:"] = "Nom du module :"; -App::$strings["Layout Help"] = "Aide à la mise en page"; -App::$strings["Poke"] = "Tapoter"; -App::$strings["Poke somebody"] = "Taquiner quelqu'un"; -App::$strings["Poke/Prod"] = "Tapoter/Encourager"; -App::$strings["Poke, prod or do other things to somebody"] = "Taquiner, pousser ou faire autre chose à quelqu'un"; -App::$strings["Recipient"] = "Destinataire"; -App::$strings["Choose what you wish to do to recipient"] = "Choisir ce que vous voulez faire au destinataire"; -App::$strings["Make this post private"] = "Rendre cette publication privée"; -App::$strings["Fetching URL returns error: %1\$s"] = "Récupération d'URL échouée : %1\$s"; -App::$strings["Profile not found."] = "Profil introuvable."; -App::$strings["Profile deleted."] = "Profil supprimé."; -App::$strings["Profile-"] = "Profil-"; -App::$strings["New profile created."] = "Nouveau profil créé."; -App::$strings["Profile unavailable to clone."] = "Profil impossible à cloner."; -App::$strings["Profile unavailable to export."] = "Impossible d'exporter le profil."; -App::$strings["Profile Name is required."] = "Le nom du profil est obligatoire."; -App::$strings["Marital Status"] = "Statut marital"; -App::$strings["Romantic Partner"] = "Partenaire amoureux"; -App::$strings["Likes"] = "Aime"; -App::$strings["Dislikes"] = "N'aime pas"; -App::$strings["Work/Employment"] = "Travail/Occupation"; -App::$strings["Religion"] = "Religion/Croyance"; -App::$strings["Political Views"] = "Opinions politiques"; -App::$strings["Sexual Preference"] = "Préférences sexuelle"; -App::$strings["Homepage"] = "Site Internet"; -App::$strings["Interests"] = "Centres d'intérêt"; -App::$strings["Profile updated."] = "Profil mis à jour."; -App::$strings["Hide your connections list from viewers of this profile"] = ""; -App::$strings["Edit Profile Details"] = "Modifier les détails du profil"; -App::$strings["View this profile"] = "Voir ce profil"; -App::$strings["Edit visibility"] = "Changer la visibilité"; -App::$strings["Profile Tools"] = ""; -App::$strings["Change cover photo"] = ""; -App::$strings["Change profile photo"] = "Changer la photo du profil"; -App::$strings["Create a new profile using these settings"] = "Créer un nouveau profil avec ces paramètres"; -App::$strings["Clone this profile"] = "Cloner ce profil"; -App::$strings["Delete this profile"] = "Supprimer ce profil"; -App::$strings["Add profile things"] = "Ajouter des éléments de profil"; -App::$strings["Personal"] = "Me concernant"; -App::$strings["Relation"] = ""; -App::$strings["Miscellaneous"] = "Divers"; -App::$strings["Import profile from file"] = "Importer le profil à partir d'un fichier"; -App::$strings["Export profile to file"] = "Exporter le profil vers un fichier."; -App::$strings["Your gender"] = ""; -App::$strings["Marital status"] = ""; -App::$strings["Sexual preference"] = ""; -App::$strings["Profile name"] = ""; -App::$strings["This is your default profile."] = "Ceci est votre profil par défaut."; -App::$strings["Your full name"] = ""; -App::$strings["Title/Description"] = "Titre/description"; -App::$strings["Street address"] = ""; -App::$strings["Locality/City"] = "Ville"; -App::$strings["Region/State"] = "Région"; -App::$strings["Postal/Zip code"] = ""; -App::$strings["Country"] = "Pays"; -App::$strings["Who (if applicable)"] = "Qui (si applicable)"; -App::$strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Exemples : marie123, Marie Deschamps, marie@exemple.com"; -App::$strings["Since (date)"] = ""; -App::$strings["Tell us about yourself"] = ""; -App::$strings["Hometown"] = "Ville de naissance"; -App::$strings["Political views"] = ""; -App::$strings["Religious views"] = ""; -App::$strings["Keywords used in directory listings"] = ""; -App::$strings["Example: fishing photography software"] = "Exemple : escrime photographie modélisme"; -App::$strings["Musical interests"] = "Goûts musicaux"; -App::$strings["Books, literature"] = "Livres, littérature"; -App::$strings["Television"] = "Télévision"; -App::$strings["Film/Dance/Culture/Entertainment"] = ""; -App::$strings["Hobbies/Interests"] = "Loisirs/Centres d'intêret"; -App::$strings["Love/Romance"] = ""; -App::$strings["School/Education"] = ""; -App::$strings["Contact information and social networks"] = ""; -App::$strings["My other channels"] = "Mes autres canaux"; -App::$strings["Profile Image"] = "Image du profil"; -App::$strings["Edit Profiles"] = "Modifier les profils"; -App::$strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Shift-rechargez votre page, ou videz le cache du navigateur si la photo ne s'affiche pas immédiatement."; -App::$strings["Upload Profile Photo"] = "Téléverser une photo de profil"; -App::$strings["Invalid profile identifier."] = "Identifiant de profil invalide."; -App::$strings["Profile Visibility Editor"] = "Éditeur de visibilité de profil"; -App::$strings["Profile"] = "Profil"; -App::$strings["Click on a contact to add or remove."] = "Cliquer sur un contact pour l'ajouter ou le retirer."; -App::$strings["Visible To"] = "Visible par"; -App::$strings["Public Hubs"] = "Instances publiques"; -App::$strings["The listed hubs allow public registration for the \$Projectname network. All hubs in the network are interlinked so membership on any of them conveys membership in the network as a whole. Some hubs may require subscription or provide tiered service plans. The hub itself may provide additional details."] = "Les sites listés permettent l'enregistrement public de comptes pour le réseau \$Projectname. Tous les sites du réseau sont reliés entre eux, être membre d'un site revient à être membre de tous. Certains sites peuvent demander une souscription ou proposer différents niveaux de service. Chaque site peut fournir des détails supplémentaires."; -App::$strings["Hub URL"] = "URL du site"; -App::$strings["Access Type"] = "Type d'accès"; -App::$strings["Registration Policy"] = "Politique d'inscription"; -App::$strings["Stats"] = ""; -App::$strings["Software"] = ""; -App::$strings["Ratings"] = "Evaluations"; -App::$strings["Rate"] = "Evaluer"; -App::$strings["Website:"] = "Site web :"; -App::$strings["Remote Channel [%s] (not yet known on this site)"] = "Canal distant [%s] (encore inconnu sur ce site)"; -App::$strings["Rating (this information is public)"] = "Evaluation (cette information est publique)"; -App::$strings["Optionally explain your rating (this information is public)"] = "Explication facultative de votre évaluation (cette information est publique)"; -App::$strings["No ratings"] = "Pas de note"; -App::$strings["Rating: "] = "Evaluation :"; -App::$strings["Website: "] = "Site web :"; -App::$strings["Description: "] = "Description :"; +App::$strings["Remote privacy information not available."] = "Les informations distantes de confidentialité ne sont pas disponibles."; +App::$strings["Visible to:"] = "Visible par :"; +App::$strings["Import completed"] = "L'import est terminé."; +App::$strings["Import Items"] = "Importer"; +App::$strings["Use this form to import existing posts and content from an export file."] = "Utiliser ce formulaire pour importer des publications et du contenu existant d'un fichier d'export."; +App::$strings["Total invitation limit exceeded."] = "Limite du nombre total d'invitation dépassée."; +App::$strings["%s : Not a valid email address."] = "%s : adresse courriel invalide."; +App::$strings["Please join us on \$Projectname"] = "Rejoignez-nous sur \$Projectname"; +App::$strings["Invitation limit exceeded. Please contact your site administrator."] = "Limite d'invitations dépassée. Merci de contacter l'administration de votre site."; +App::$strings["%s : Message delivery failed."] = "%s : Échec de distribution du message."; +App::$strings["%d message sent."] = array( + 0 => "%d message envoyé.", + 1 => "%d messages envoyés.", +); +App::$strings["You have no more invitations available"] = "Vous ne disposez plus d'aucune invitation"; +App::$strings["Send invitations"] = "Envoyer des invitations"; +App::$strings["Enter email addresses, one per line:"] = "Entrez les adresses de courriel, une par ligne :"; +App::$strings["Your message:"] = "Votre message :"; +App::$strings["Please join my community on \$Projectname."] = "Rejoignez ma communauté sur \$Projectname."; +App::$strings["You will need to supply this invitation code:"] = "Vous devrez fournir le code suivant :"; +App::$strings["1. Register at any \$Projectname location (they are all inter-connected)"] = "1. Enregistrez-vous sur n'importe quel serveur \$Projectname (ils sont tous inter-connectés)"; +App::$strings["2. Enter my \$Projectname network address into the site searchbar."] = "2. Saisissez l'adresse de mon canal \$Projectname dans la barre de recherche du site."; +App::$strings["or visit"] = "ou rendez-vous sur"; +App::$strings["3. Click [Connect]"] = "3. Cliquez sur [Ajouter]"; +App::$strings["Location not found."] = "Emplacement introuvable."; +App::$strings["Location lookup failed."] = "Echec de la recherche de l'emplacement."; +App::$strings["Please select another location to become primary before removing the primary location."] = "Merci de sélectionner un autre emplacement comme nouvel emplacement primaire avant de supprimer l'emplacement primaire actuel."; +App::$strings["Syncing locations"] = "Synchronisation des emplacements"; +App::$strings["No locations found."] = "Emplacement(s) introuvable."; +App::$strings["Manage Channel Locations"] = "Gérer les emplacements des canaux"; +App::$strings["Primary"] = ""; +App::$strings["Drop"] = "Supprimer"; +App::$strings["Sync Now"] = ""; +App::$strings["Please wait several minutes between consecutive operations."] = "Merci d'attendre plusieurs minutes entre opérations successives."; +App::$strings["When possible, drop a location by logging into that website/hub and removing your channel."] = "Quand c'est possible, abandonnez un emplacement en vous connectant sur le site/hub et en supprimant votre canal."; +App::$strings["Use this form to drop the location if the hub is no longer operating."] = "Utilisez ce formulaire pour abandonner l'emplacement si le hub n'est plus actif."; +App::$strings["Hub not found."] = "Hub introuvable."; +App::$strings["Unable to lookup recipient."] = "Impossible de localiser le destinataire."; +App::$strings["Unable to communicate with requested channel."] = "Impossible de communiquer avec le canal demandé."; +App::$strings["Cannot verify requested channel."] = "Impossible de vérifier le canal demandé."; +App::$strings["Selected channel has private message restrictions. Send failed."] = "Le canal choisi a des restrictions quant aux messages privés. L'envoi a échoué."; +App::$strings["Messages"] = "Messages"; +App::$strings["Message recalled."] = "Message rappelé."; +App::$strings["Conversation removed."] = "Conversation supprimée."; +App::$strings["Expires YYYY-MM-DD HH:MM"] = "Expire le YYYY-MM-DD à HH:MM"; +App::$strings["Requested channel is not in this network"] = "Le canal demandé n'est pas sur ce réseau"; +App::$strings["Send Private Message"] = "Envoyer un message privé"; +App::$strings["To:"] = "À :"; +App::$strings["Subject:"] = "Objet :"; +App::$strings["Attach file"] = "Joindre un fichier"; +App::$strings["Send"] = "Envoyer"; +App::$strings["Set expiration date"] = "Définir la date d'expiration"; +App::$strings["Delete message"] = "Supprimer le message"; +App::$strings["Delivery report"] = "Rapport de distribution"; +App::$strings["Recall message"] = "Rappeler le message"; +App::$strings["Message has been recalled."] = "Le message a été rappelé."; +App::$strings["Delete Conversation"] = "Supprimer la conversation"; +App::$strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Aucune communication sécurisée n'est possible. Vous pourrez peut-être répondre depuis la page de profil de l'émetteur."; +App::$strings["Send Reply"] = "Envoyer la réponse"; +App::$strings["Your message for %s (%s):"] = "Votre message pour %s (%s) :"; +App::$strings["You have created %1$.0f of %2$.0f allowed channels."] = "Vous avez créé %1$.0f des %2$.0f canaux autorisés."; +App::$strings["Create a new channel"] = "Créer un nouveau canal"; +App::$strings["Channel Manager"] = "Gérer les canaux"; +App::$strings["Current Channel"] = "Canal actif"; +App::$strings["Switch to one of your channels by selecting it."] = "Pour changer de canal, sélectionnez-en un"; +App::$strings["Default Channel"] = "Canal par défaut"; +App::$strings["Make Default"] = "Définir comme défaut"; +App::$strings["%d new messages"] = "%d nouveaux messages"; +App::$strings["%d new introductions"] = "%d nouvelles présentations"; +App::$strings["Delegated Channel"] = ""; +App::$strings["Unable to update menu."] = "Impossible de mettre le menu à jour."; +App::$strings["Unable to create menu."] = "Impossible de créer le menu."; +App::$strings["Menu Name"] = "Nom du menu"; +App::$strings["Unique name (not visible on webpage) - required"] = "Nom unique (non visible sur la page web) - requis"; +App::$strings["Menu Title"] = "Titre du menu"; +App::$strings["Visible on webpage - leave empty for no title"] = "Visible pour la page web - laisser vide pour qu'il n'y ait pas de titre"; +App::$strings["Allow Bookmarks"] = "Autoriser l'usage de favoris"; +App::$strings["Menu may be used to store saved bookmarks"] = "Le menu pourra être utilisé pour stocker des favoris"; +App::$strings["Submit and proceed"] = "Valider et continuer"; +App::$strings["Menus"] = "Menus"; +App::$strings["Bookmarks allowed"] = "Favoris autorisés"; +App::$strings["Delete this menu"] = "Supprimer ce menu"; +App::$strings["Edit menu contents"] = "Modifier le contenu du menu"; +App::$strings["Edit this menu"] = "Modifier ce menu"; +App::$strings["Menu could not be deleted."] = "Impossible de supprimer le menu."; +App::$strings["Menu not found."] = "Menu introuvable."; +App::$strings["Edit Menu"] = "Modifier le menu"; +App::$strings["Add or remove entries to this menu"] = "Ajouter/supprimer des entrées à ce menu"; +App::$strings["Menu name"] = "Nom du menu"; +App::$strings["Must be unique, only seen by you"] = "Doit être unique, ne sera vu que par vous"; +App::$strings["Menu title"] = "Titre du menu"; +App::$strings["Menu title as seen by others"] = "Titre du menu tel que vu par les visiteurs"; +App::$strings["Allow bookmarks"] = "Autoriser l'usage de favoris"; +App::$strings["Not found."] = "Introuvable."; +App::$strings["No valid account found."] = "Aucun compte valide trouvé."; +App::$strings["Password reset request issued. Check your email."] = "Demande de réinitialisation du mot de passe envoyée. Vérifiez vos courriels."; +App::$strings["Site Member (%s)"] = "Membre du site (%s)"; +App::$strings["Password reset requested at %s"] = "Demande de réinitialisation du mot de passe sur %s"; +App::$strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "La demande n'a pas pu être vérifiée. (Peut-être l'avez vous déjà utilisée.) La réinitialisation a échoué."; +App::$strings["Password Reset"] = "Réinitialiser le mot de passe"; +App::$strings["Your password has been reset as requested."] = "Votre mot de passe a bien été réinitialisé."; +App::$strings["Your new password is"] = "Votre nouveau mot de passe est"; +App::$strings["Save or copy your new password - and then"] = "Enregistrez ou copiez votre nouveau mot de passe, puis"; +App::$strings["click here to login"] = "cliquez ici pour vous connecter"; +App::$strings["Your password may be changed from the Settings page after successful login."] = "Votre mot de passe peut être changé depuis la page des Paramètres une fois connecté."; +App::$strings["Your password has changed at %s"] = "Votre mot de passe de %s a été changé"; +App::$strings["Forgot your Password?"] = "Mot de passe oublié ?"; +App::$strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Saisissez votre adresse de courriel, et validez, pour réinitialiser votre mot de passe. Vérifiez ensuite votre boîte aux lettres pour la suite des instructions."; +App::$strings["Email Address"] = "Adresse de courriel"; +App::$strings["Reset"] = "Réinitialiser"; +App::$strings["__ctx:mood__ %1\$s is %2\$s"] = "%1\$s est %2\$s"; +App::$strings["Mood"] = "Humeur"; +App::$strings["Set your current mood and tell your friends"] = "Indiquez votre humeur du moment à vos amis"; +App::$strings["No such group"] = "Groupe introuvable"; +App::$strings["No such channel"] = "Canal introuvable"; +App::$strings["forum"] = "forum"; +App::$strings["Search Results For:"] = "Résultats de recherche pour :"; +App::$strings["Privacy group is empty"] = "Groupe d'accès vide"; +App::$strings["Privacy group: "] = "Groupe d'accès :"; +App::$strings["Invalid connection."] = "Contact non valide."; +App::$strings["No more system notifications."] = "Pas d'autre notification du système."; +App::$strings["System Notifications"] = "Notifications du système"; +App::$strings["Profile Match"] = "Profils similaires"; +App::$strings["No keywords to match. Please add keywords to your default profile."] = "Aucun mot-clef à comparer. Merci d'ajouter des mots-clefs à votre profil par défaut."; +App::$strings["is interested in:"] = "s'intéresse à :"; +App::$strings["No matches"] = "Pas de correspondance"; +App::$strings["Posts and comments"] = ""; +App::$strings["Only posts"] = ""; +App::$strings["Insufficient permissions. Request redirected to profile page."] = "Permissions insuffisantes. Demande redirigée vers la page du profil."; +App::$strings["Unable to create element."] = "Impossible de créer l'entrée."; +App::$strings["Unable to update menu element."] = "Impossible de mettre à jour l'entrée de menu."; +App::$strings["Unable to add menu element."] = "Impossible d'ajouter l'entrée de menu."; +App::$strings["Menu Item Permissions"] = "Permissions de l'entrée de menu"; +App::$strings["(click to open/close)"] = "(cliquer pour ouvrir/fermer)"; +App::$strings["Link Name"] = "Nom du lien"; +App::$strings["Link or Submenu Target"] = "Lien ou sous-menu cible"; +App::$strings["Enter URL of the link or select a menu name to create a submenu"] = "Entrez l'URL du lien ou sélectionnez un nom de menu pour créer un sous-menu"; +App::$strings["Use magic-auth if available"] = "Utiliser l'authentification distante, quand disponible"; +App::$strings["Open link in new window"] = "Ouvrir le lien dans une nouvelle fenêtre"; +App::$strings["Order in list"] = "Ordre dans la liste"; +App::$strings["Higher numbers will sink to bottom of listing"] = "Les nombres les plus élevés seront au bas de la liste"; +App::$strings["Submit and finish"] = "Vadiler et terminer"; +App::$strings["Submit and continue"] = "Valider et continuer"; +App::$strings["Menu:"] = "Menu :"; +App::$strings["Link Target"] = "Cible du lien"; +App::$strings["Edit menu"] = "Modifier le menu"; +App::$strings["Edit element"] = "Modifier l'entrée"; +App::$strings["Drop element"] = "Supprimer l'entrée"; +App::$strings["New element"] = "Nouvelle entrée"; +App::$strings["Edit this menu container"] = "Éditer ce bloc de menu"; +App::$strings["Add menu element"] = "Ajouter une entrée au menu"; +App::$strings["Delete this menu item"] = "Supprimer cette entrée du menu"; +App::$strings["Edit this menu item"] = "Modifier cette entrée du menu"; +App::$strings["Menu item not found."] = "Entrée de menu introuvable."; +App::$strings["Menu item deleted."] = "Entrée de menu supprimée."; +App::$strings["Menu item could not be deleted."] = "Impossible de supprimer l'entrée de menu."; +App::$strings["Edit Menu Element"] = "Modifier l'entrée de menu"; +App::$strings["Link text"] = "Texte du lien"; App::$strings["Theme settings updated."] = "Paramètres du thème mis à jour."; App::$strings["# Accounts"] = "# Comptes"; App::$strings["# blocked accounts"] = "# comptes bloqués"; @@ -1031,19 +1011,91 @@ App::$strings["(In addition to basic fields)"] = "(en plus des champs de base)"; App::$strings["All available fields"] = "Tous les champs disponibles"; App::$strings["Custom Fields"] = "Champs personnalisés"; App::$strings["Create Custom Field"] = "Créer un champ personnalisé"; -App::$strings["App installed."] = "Application installée."; -App::$strings["Malformed app."] = "Erreur de l'application - Malformée."; -App::$strings["Embed code"] = "Imbriquer le code"; -App::$strings["Edit App"] = "Modifier l'application"; -App::$strings["Create App"] = "Créer une application"; -App::$strings["Name of app"] = "Nom de l'application"; -App::$strings["Location (URL) of app"] = "Emplacement (URL) de l'application"; -App::$strings["Photo icon URL"] = "URL de l'icône à utiliser pour cette photo"; -App::$strings["80 x 80 pixels - optional"] = "80 x 80 pixels - facultatif"; -App::$strings["Categories (optional, comma separated list)"] = ""; -App::$strings["Version ID"] = "Identifiant de version"; -App::$strings["Price of app"] = "Prix de l'application"; -App::$strings["Location (URL) to purchase app"] = "Emplacement (URL) pour l'achat de l'application"; +App::$strings["Name or caption"] = "Nom ou libellé"; +App::$strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\""] = "Exemples : \"Jérôme Dutilleul\", \"Louise et ses chevaux\", \"Football\", \"Club d'aéromodélisme\""; +App::$strings["Choose a short nickname"] = "Choisissez un alias"; +App::$strings["Your nickname will be used to create an easy to remember channel address e.g. nickname%s"] = "Votre pseudo sera utilisé pour créer une adresse de canal facile à mémoriser, par ex. pseudo%s"; +App::$strings["Channel role and privacy"] = "Rôle et confidentialité du canal"; +App::$strings["Select a channel role with your privacy requirements."] = "Sélectionner un rôle de canal adapté à vos besoins de confidentialité."; +App::$strings["Read more about roles"] = "En savoir plus sur les rôles"; +App::$strings["Create Channel"] = "Créer le canal"; +App::$strings["A channel is your identity on this network. It can represent a person, a blog, or a forum to name a few. Channels can make connections with other channels to share information with highly detailed permissions."] = "Un canal est votre identité sur ce réseau. Il peut représenter une personne, un blog, ou un forum par exemple. Les canaux peuvent entrer en contact les uns avec les autres pour partager des informations avec des permissions d'accès très fines."; +App::$strings["or import an existing channel from another location."] = "ou importer un canal existant d'un autre serveur."; +App::$strings["sent you a private message"] = "vous a envoyé un message privé"; +App::$strings["added your channel"] = "a ajouté votre canal"; +App::$strings["g A l F d"] = "g A l F d"; +App::$strings["[today]"] = "[aujourd'hui]"; +App::$strings["posted an event"] = "a publié un événement"; +App::$strings["Invalid request identifier."] = "Identifiant de requête invalide."; +App::$strings["Discard"] = "Annuler"; +App::$strings["Mark all system notifications seen"] = "Marquer toutes les notifications système comme vues"; +App::$strings["Poke"] = "Tapoter"; +App::$strings["Poke somebody"] = "Taquiner quelqu'un"; +App::$strings["Poke/Prod"] = "Tapoter/Encourager"; +App::$strings["Poke, prod or do other things to somebody"] = "Taquiner, pousser ou faire autre chose à quelqu'un"; +App::$strings["Recipient"] = "Destinataire"; +App::$strings["Choose what you wish to do to recipient"] = "Choisir ce que vous voulez faire au destinataire"; +App::$strings["Make this post private"] = "Rendre cette publication privée"; +App::$strings["Unable to find your hub."] = "Impossible de trouver votre hub."; +App::$strings["Post successful."] = "Publication réussie."; +App::$strings["OpenID protocol error. No ID returned."] = "Erreur du protocole OpenID. Pas d'ID retourné."; +App::$strings["Login failed."] = "Échec de la connexion."; +App::$strings["Invalid profile identifier."] = "Identifiant de profil invalide."; +App::$strings["Profile Visibility Editor"] = "Éditeur de visibilité de profil"; +App::$strings["Profile"] = "Profil"; +App::$strings["Click on a contact to add or remove."] = "Cliquer sur un contact pour l'ajouter ou le retirer."; +App::$strings["Visible To"] = "Visible par"; +App::$strings["This setting requires special processing and editing has been blocked."] = "Ce paramètre nécessité un traitement spécial, les modifications ont été bloquées."; +App::$strings["Configuration Editor"] = "Editeur de configuration"; +App::$strings["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."] = "Attention :modifier certains paramètres peut rendre votre canal inutilisable. Merci d'ignorer cette page à moins d'être suffisamment à l'aise de savoir comment utiliser correctement cette fonctionnalité."; +App::$strings["Fetching URL returns error: %1\$s"] = "Récupération d'URL échouée : %1\$s"; +App::$strings["Version %s"] = "Version %s"; +App::$strings["Installed plugins/addons/apps:"] = "Greffons/extensions/applications installés :"; +App::$strings["No installed plugins/addons/apps"] = "Aucun greffon/extension/application installé"; +App::$strings["This is a hub of \$Projectname - a global cooperative network of decentralized privacy enhanced websites."] = "Ceci est un serveur \$Projectname - un réseau collaboratif mondial de serveurs décentralisés à la confidentialité améliorée."; +App::$strings["Tag: "] = "Étiquette :"; +App::$strings["Last background fetch: "] = "Dernière récupération en tâche de fond :"; +App::$strings["Current load average: "] = "Charge moyenne actuelle :"; +App::$strings["Running at web location"] = "Tourne à l'adresse internet"; +App::$strings["Please visit hubzilla.org to learn more about \$Projectname."] = "Merci de visiter hubzilla.org pour en apprendre davantage sur \$Projectname."; +App::$strings["Bug reports and issues: please visit"] = "Pour remonter bogues et problèmes, merci de visiter"; +App::$strings["\$projectname issues"] = "Problèmes \$projectname"; +App::$strings["Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com"] = "Suggestions, demandes, etc. - merci de vous adresser à \"redmatrix\" à librelist - point com"; +App::$strings["Site Administrators"] = "Administrateurs du site"; +App::$strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Nous avons rencontré un problème avec l'OpenID que vous nous avez fourni. Merci de vérifier que l'ID est correctement saisi."; +App::$strings["The error message was:"] = "Le message d'erreur était :"; +App::$strings["Authentication failed."] = "Échec de l'authentification."; +App::$strings["Remote Authentication"] = "Authentification distante"; +App::$strings["Enter your channel address (e.g. channel@example.com)"] = "Entrez l'adresse de votre canal (par ex. moncanal@monsite.com)"; +App::$strings["Authenticate"] = "Authentifier"; +App::$strings["Public Hubs"] = "Instances publiques"; +App::$strings["The listed hubs allow public registration for the \$Projectname network. All hubs in the network are interlinked so membership on any of them conveys membership in the network as a whole. Some hubs may require subscription or provide tiered service plans. The hub itself may provide additional details."] = "Les sites listés permettent l'enregistrement public de comptes pour le réseau \$Projectname. Tous les sites du réseau sont reliés entre eux, être membre d'un site revient à être membre de tous. Certains sites peuvent demander une souscription ou proposer différents niveaux de service. Chaque site peut fournir des détails supplémentaires."; +App::$strings["Hub URL"] = "URL du site"; +App::$strings["Access Type"] = "Type d'accès"; +App::$strings["Registration Policy"] = "Politique d'inscription"; +App::$strings["Stats"] = ""; +App::$strings["Software"] = ""; +App::$strings["Ratings"] = "Evaluations"; +App::$strings["Rate"] = "Evaluer"; +App::$strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Shift-rechargez votre page, ou videz le cache du navigateur si la photo ne s'affiche pas immédiatement."; +App::$strings["Upload Profile Photo"] = "Téléverser une photo de profil"; +App::$strings["Block Name"] = "Nom du Bloc"; +App::$strings["Blocks"] = "Blocs"; +App::$strings["Block Title"] = "Titre du bloc"; +App::$strings["Website:"] = "Site web :"; +App::$strings["Remote Channel [%s] (not yet known on this site)"] = "Canal distant [%s] (encore inconnu sur ce site)"; +App::$strings["Rating (this information is public)"] = "Evaluation (cette information est publique)"; +App::$strings["Optionally explain your rating (this information is public)"] = "Explication facultative de votre évaluation (cette information est publique)"; +App::$strings["No ratings"] = "Pas de note"; +App::$strings["Rating: "] = "Evaluation :"; +App::$strings["Website: "] = "Site web :"; +App::$strings["Description: "] = "Description :"; +App::$strings["Apps"] = "Applications"; +App::$strings["Title (optional)"] = "Titre (facultatif)"; +App::$strings["Edit Block"] = "Modifier le bloc"; +App::$strings["No channel."] = "Pas de canal."; +App::$strings["Common connections"] = "Contacts en commun"; +App::$strings["No connections in common."] = "Pas de contacts en commun."; App::$strings["Select a bookmark folder"] = "Choisir un dossier de favoris"; App::$strings["Save Bookmark"] = "Enregistrer le favori"; App::$strings["URL of bookmark"] = "URL du favori"; @@ -1069,7 +1121,7 @@ App::$strings["no"] = "non"; App::$strings["yes"] = "oui"; App::$strings["Membership on this site is by invitation only."] = "L'inscription à ce site se fait uniquement sur invitation."; App::$strings["Register"] = "S'inscrire"; -App::$strings["Proceed to create your first channel"] = "Continuer pour créer votre premier canal"; +App::$strings["This site may require email verification after submitting this form. If you are returned to a login page, please check your email for instructions."] = ""; App::$strings["Please login."] = "Merci de vous connecter."; App::$strings["Account removals are not allowed within 48 hours of changing the account password."] = "Il est impossible de supprimer un compte dans les 48 heures après avoir changé le mot de passe du compte."; App::$strings["Remove This Account"] = "Supprimer ce compte"; @@ -1086,17 +1138,23 @@ App::$strings["This channel will be completely removed from the network. "] = "C App::$strings["Remove this channel and all its clones from the network"] = "Supprimer ce canal ainsi que tous ses clones sur le réseau"; App::$strings["By default only the instance of the channel located on this hub will be removed from the network"] = "Par défaut, seule l'instance du canal présente sur ce hub sera supprimée du réseau"; App::$strings["Remove Channel"] = "Supprimer le canal"; -App::$strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Nous avons rencontré un problème avec l'OpenID que vous nous avez fourni. Merci de vérifier que l'ID est correctement saisi."; -App::$strings["The error message was:"] = "Le message d'erreur était :"; -App::$strings["Authentication failed."] = "Échec de l'authentification."; -App::$strings["Remote Authentication"] = "Authentification distante"; -App::$strings["Enter your channel address (e.g. channel@example.com)"] = "Entrez l'adresse de votre canal (par ex. moncanal@monsite.com)"; -App::$strings["Authenticate"] = "Authentifier"; +App::$strings["Export Channel"] = "Exporter le canal"; +App::$strings["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."] = "Exportez les principales informations de votre canal dans un fichier. Celui-ci pourra servir de sauvegarde de vos contacts, permissions, profils et données de base. Il pourra être importé sur un nouveau hub/serveur, mais n'embarquera pas vos contenus."; +App::$strings["Export Content"] = "Exporter le contenu"; +App::$strings["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."] = "Exportez les informations du canal et les contenus récents dans un fichier JSON. Celui-ci contiendra toutes vos relations, permissions, profils, et plusieurs mois de publications. Ce fichier peut être TRÈS gros. Armez-vous de patience - plusieurs minutes peuvent s'écouler avant que le téléchargement ne commence."; +App::$strings["Export your posts from a given year."] = "Exporter vos publications d'une année en particulier"; +App::$strings["You may also export your posts and conversations for a particular year or month. Adjust the date in your browser location bar to select other dates. If the export fails (possibly due to memory exhaustion on your server hub), please try again selecting a more limited date range."] = "Vous pouvez également exporter vos publications et conversations pour une année ou un mois particulier. Ajustez la date dans la barre de votre navigateur pour sélectionner d'autres dates. Si l'export échoue (possible en cas de pénurie de mémoire sur le serveur de votre hub), essayez à nouveau en sélectionnant un intervalle de dates plus petit."; +App::$strings["To select all posts for a given year, such as this year, visit %2\$s"] = "Pour sélectionner toutes les publications pour une année donnée, telle que cette année, visitez %2\$s"; +App::$strings["To select all posts for a given month, such as January of this year, visit %2\$s"] = "Pour sélectionner toutes les publications pour un mois donné, par exemple janvier, visitez %2\$s"; +App::$strings["These content files may be imported or restored by visiting %2\$s on any site containing your channel. For best results please import or restore these in date order (oldest first)."] = "Ces fichiers de contenu peuvent être importés ou restaurés en visitant %2\$s sur n'importe quel site hébergeant votre canal. Pour de meilleurs résultats merci de les importer par ordre chronologique (les plus anciens d'abord)."; App::$strings["Items tagged with: %s"] = "Eléments étiquetés avec : %s"; App::$strings["Search results for: %s"] = "Résultats de recherche pour : %s"; App::$strings["No service class restrictions found."] = "Aucune restriction de classe de service trouvée."; App::$strings["Name is required"] = "Le nom est requis"; App::$strings["Key and Secret are required"] = "Clef et secret sont requis"; +App::$strings["This channel is limited to %d tokens"] = ""; +App::$strings["Name and Password are required."] = ""; +App::$strings["Token saved."] = ""; App::$strings["Not valid email."] = "Adresse de courriel non valide."; App::$strings["Protected email address. Cannot change to that email."] = "Adresse de courriel protégée. Impossible de l'utiliser."; App::$strings["System failure storing new email. Please try again."] = "Défaillance système lors du stockage de la nouvelle adresse de courriel. Merci d'essayer à nouveau."; @@ -1129,6 +1187,12 @@ App::$strings["Confirm New Password"] = "Confirmez le nouveau mot de passe"; App::$strings["Leave password fields blank unless changing"] = "Laissez les mots de passe vides si vous ne voulez pas les modifier"; App::$strings["Email Address:"] = "Adresse de courriel :"; App::$strings["Remove this account including all its channels"] = "Supprimer ce compte et tous ses canaux"; +App::$strings["Use this form to create temporary access identifiers to share things with non-members. These identities may be used in Access Control Lists and visitors may login using these credentials to access the private content."] = ""; +App::$strings["You may also provide dropbox style access links to friends and associates by adding the Login Password to any specific site URL as shown. Examples:"] = ""; +App::$strings["Guest Access Tokens"] = ""; +App::$strings["Login Name"] = ""; +App::$strings["Login Password"] = ""; +App::$strings["Expires (yyyy-mm-dd)"] = ""; App::$strings["Additional Features"] = "Fonctionnalités additionnelles"; App::$strings["Connector Settings"] = "Paramètres du connecteur"; App::$strings["No special theme for mobile devices"] = "Pas de thème spécifique aux mobiles"; @@ -1291,7 +1355,6 @@ App::$strings["GD graphics PHP module"] = "module PHP GD graphics"; App::$strings["OpenSSL PHP module"] = "module PHP OpenSSL"; App::$strings["mysqli or postgres PHP module"] = "module PHP postgres ou mysqli"; App::$strings["mb_string PHP module"] = "module PHP mb_string"; -App::$strings["mcrypt PHP module"] = "module PHP mcrypt"; App::$strings["xml PHP module"] = "module PHP xml"; App::$strings["Apache mod_rewrite module"] = "module Apache mod_rewrite"; App::$strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Erreur : le module mod-rewrite du serveur web Apache est requis, mais pas installé."; @@ -1302,7 +1365,6 @@ App::$strings["Error: GD graphics PHP module with JPEG support required but not App::$strings["Error: openssl PHP module required but not installed."] = "Erreur : le module openssl de PHP est requis, mais pas installé."; App::$strings["Error: mysqli or postgres PHP module required but neither are installed."] = "Erreur : un module PHP mysqli ou postgres est requis, mais aucun des deux n'est installé."; App::$strings["Error: mb_string PHP module required but not installed."] = "Erreur : le module mb_string de PHP est requis, mais pas installé."; -App::$strings["Error: mcrypt PHP module required but not installed."] = "Erreur : le module mcrypt de PHP est requis, mais pas installé."; App::$strings["Error: xml PHP module required for DAV but not installed."] = "Erreur : le module xml de PHP est requis pour le DAV, mais pas installé."; App::$strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "L'installeur web a besoin de créer un fichier \".htconfig.php\" à la racine de votre serveur web, mais en est incapable."; App::$strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "C'est généralement lié à un problème de droits, à cause duquel le serveur web est interdit d'écriture dans le répertoire concerné - alors que votre propre utilisateur a le droit."; @@ -1314,7 +1376,7 @@ App::$strings["In order to store these compiled templates, the web server needs App::$strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Merci de vous assurer que l'utilisateur sous lequel le serveur web tourne (le plus souvent, www-data) a bien l'autorisation d'écrire dans ce répertoire."; App::$strings["Note: as a security measure, you should give the web server write access to %s only--not the template files (.tpl) that it contains."] = "Note: Comme mesure de sécurité, assurez vous de donner les droits d'écriture au serveur web sur %s uniquement, pas sur les fichiers individuels (.tpl) qu'il contient."; App::$strings["%s is writable"] = "Permission d'écriture sur %s activée"; -App::$strings["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"] = "\$Projectname utilise le répertoire 'store' - situé à la racine de votre installation de \$Projectname - pour sauvegarder les fichiers envoyés. Le serveur web aura donc besoin de pouvoir y écrire."; +App::$strings["This software 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"] = ""; App::$strings["store is writable"] = "'store' est accessible en écriture"; App::$strings["SSL certificate cannot be validated. Fix certificate or disable https access to this site."] = "Le certificat SSL/TLS n'a pas pu être validé. Merci de le corriger, ou de désactiver l'accès https à ce site (non recommandé)."; App::$strings["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!"] = "Si votre serveur accepte les connexions https ou s'il permet les connexions sur le port TCP 443 (le port utilisé par le protocole https), vous DEVEZ utiliser un certificat valide. Vous ne DEVEZ PAS utiliser un certificat que vous avez vous-mêmes signé !"; @@ -1322,6 +1384,7 @@ App::$strings["This restriction is incorporated because public posts from you ma App::$strings["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."] = "Si votre certificat n'est pas reconnu, les membres des autres sites (qui eux peuvent avoir des certificats valides) recevront des messages d'avertissement sur leur propre site se plaignant de problèmes de sécurité."; App::$strings["This can cause usability issues elsewhere (not just on your own site) so we must insist on this requirement."] = "Ceci peut causer des problèmes d'ergonomie ailleurs (pas seulement sur votre site), nous devons donc insister sur ce prérequis."; App::$strings["Providers are available that issue free certificates which are browser-valid."] = "Il existe des autorités de certification qui vous fourniront gratuitement un certificat valide."; +App::$strings["If you are confident that the certificate is valid and signed by a trusted authority, check to see if you have failed to install an intermediate cert. These are not normally required by browsers, but are required for server-to-server communications."] = ""; App::$strings["SSL certificate validation"] = "Validation du certificat SSL/TLS"; App::$strings["Url rewrite in .htaccess is not working. Check your server configuration.Test: "] = "La réécriture d'URL définie dans le .htaccess ne fonctionne pas. Vérifiez votre configuration serveur. Test :"; App::$strings["Url rewrite is working"] = "La réécriture d'URL fonctionne"; @@ -1333,19 +1396,20 @@ App::$strings["Files: shared with me"] = "Fichiers : partagés avec moi"; App::$strings["NEW"] = "NOUVEAU"; App::$strings["Remove all files"] = "Supprimer tous les fichiers"; App::$strings["Remove this file"] = "Supprimer ce fichier"; -App::$strings["Version %s"] = "Version %s"; -App::$strings["Installed plugins/addons/apps:"] = "Greffons/extensions/applications installés :"; -App::$strings["No installed plugins/addons/apps"] = "Aucun greffon/extension/application installé"; -App::$strings["This is a hub of \$Projectname - a global cooperative network of decentralized privacy enhanced websites."] = "Ceci est un serveur \$Projectname - un réseau collaboratif mondial de serveurs décentralisés à la confidentialité améliorée."; -App::$strings["Tag: "] = "Étiquette :"; -App::$strings["Last background fetch: "] = "Dernière récupération en tâche de fond :"; -App::$strings["Current load average: "] = "Charge moyenne actuelle :"; -App::$strings["Running at web location"] = "Tourne à l'adresse internet"; -App::$strings["Please visit hubzilla.org to learn more about \$Projectname."] = "Merci de visiter hubzilla.org pour en apprendre davantage sur \$Projectname."; -App::$strings["Bug reports and issues: please visit"] = "Pour remonter bogues et problèmes, merci de visiter"; -App::$strings["\$projectname issues"] = "Problèmes \$projectname"; -App::$strings["Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com"] = "Suggestions, demandes, etc. - merci de vous adresser à \"redmatrix\" à librelist - point com"; -App::$strings["Site Administrators"] = "Administrateurs du site"; +App::$strings["Thing updated"] = "Elément mis à jour"; +App::$strings["Object store: failed"] = "Stockage de l'objet : échec"; +App::$strings["Thing added"] = "Elément ajouté"; +App::$strings["OBJ: %1\$s %2\$s %3\$s"] = "OBJ: %1\$s %2\$s %3\$s"; +App::$strings["Show Thing"] = "Montrer élément"; +App::$strings["item not found."] = "élément introuvable."; +App::$strings["Edit Thing"] = "Modifier élément"; +App::$strings["Select a profile"] = "Choisissez un profil"; +App::$strings["Post an activity"] = "Publier une activité"; +App::$strings["Only sends to viewers of the applicable profile"] = "Envoie exclusivement aux visiteurs du profil concerné"; +App::$strings["Name of thing e.g. something"] = "Nom de l'élément, p.ex. quelque-chose"; +App::$strings["URL of thing (optional)"] = "URL de l'élément (facultatif)"; +App::$strings["URL for photo of thing (optional)"] = "URL d'une photo de l'élément (facultatif)"; +App::$strings["Add Thing to your Profile"] = "Ajouter l'élément à votre profil"; App::$strings["Failed to create source. No channel selected."] = "Impossible de créer la source. Aucun canal selectionné."; App::$strings["Source created."] = "Source créée."; App::$strings["Source updated."] = "Source mise à jour."; @@ -1373,60 +1437,38 @@ App::$strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s a étiqueté le App::$strings["Tag removed"] = "Étiquette retirée"; App::$strings["Remove Item Tag"] = "Retirer une étiquette à l'élément"; App::$strings["Select a tag to remove: "] = "Étiquette à retirer :"; -App::$strings["Thing updated"] = "Elément mis à jour"; -App::$strings["Object store: failed"] = "Stockage de l'objet : échec"; -App::$strings["Thing added"] = "Elément ajouté"; -App::$strings["OBJ: %1\$s %2\$s %3\$s"] = "OBJ: %1\$s %2\$s %3\$s"; -App::$strings["Show Thing"] = "Montrer élément"; -App::$strings["item not found."] = "élément introuvable."; -App::$strings["Edit Thing"] = "Modifier élément"; -App::$strings["Select a profile"] = "Choisissez un profil"; -App::$strings["Post an activity"] = "Publier une activité"; -App::$strings["Only sends to viewers of the applicable profile"] = "Envoie exclusivement aux visiteurs du profil concerné"; -App::$strings["Name of thing e.g. something"] = "Nom de l'élément, p.ex. quelque-chose"; -App::$strings["URL of thing (optional)"] = "URL de l'élément (facultatif)"; -App::$strings["URL for photo of thing (optional)"] = "URL d'une photo de l'élément (facultatif)"; -App::$strings["Add Thing to your Profile"] = "Ajouter l'élément à votre profil"; -App::$strings["Export Channel"] = "Exporter le canal"; -App::$strings["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."] = "Exportez les principales informations de votre canal dans un fichier. Celui-ci pourra servir de sauvegarde de vos contacts, permissions, profils et données de base. Il pourra être importé sur un nouveau hub/serveur, mais n'embarquera pas vos contenus."; -App::$strings["Export Content"] = "Exporter le contenu"; -App::$strings["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."] = "Exportez les informations du canal et les contenus récents dans un fichier JSON. Celui-ci contiendra toutes vos relations, permissions, profils, et plusieurs mois de publications. Ce fichier peut être TRÈS gros. Armez-vous de patience - plusieurs minutes peuvent s'écouler avant que le téléchargement ne commence."; -App::$strings["Export your posts from a given year."] = "Exporter vos publications d'une année en particulier"; -App::$strings["You may also export your posts and conversations for a particular year or month. Adjust the date in your browser location bar to select other dates. If the export fails (possibly due to memory exhaustion on your server hub), please try again selecting a more limited date range."] = "Vous pouvez également exporter vos publications et conversations pour une année ou un mois particulier. Ajustez la date dans la barre de votre navigateur pour sélectionner d'autres dates. Si l'export échoue (possible en cas de pénurie de mémoire sur le serveur de votre hub), essayez à nouveau en sélectionnant un intervalle de dates plus petit."; -App::$strings["To select all posts for a given year, such as this year, visit %2\$s"] = "Pour sélectionner toutes les publications pour une année donnée, telle que cette année, visitez %2\$s"; -App::$strings["To select all posts for a given month, such as January of this year, visit %2\$s"] = "Pour sélectionner toutes les publications pour un mois donné, par exemple janvier, visitez %2\$s"; -App::$strings["These content files may be imported or restored by visiting %2\$s on any site containing your channel. For best results please import or restore these in date order (oldest first)."] = "Ces fichiers de contenu peuvent être importés ou restaurés en visitant %2\$s sur n'importe quel site hébergeant votre canal. Pour de meilleurs résultats merci de les importer par ordre chronologique (les plus anciens d'abord)."; -App::$strings["No connections."] = "Aucun contact."; -App::$strings["Visit %s's profile [%s]"] = "Visiter le profil de %s [%s]"; -App::$strings["View Connections"] = "Voir les contacts"; -App::$strings["Source of Item"] = "Source de l'élément"; App::$strings["Webpages"] = "Pages web"; App::$strings["Actions"] = "Actions"; App::$strings["Page Link"] = "Lien vers la page"; App::$strings["Page Title"] = "Titre de la page"; +App::$strings["Not found"] = ""; +App::$strings["Wiki"] = ""; +App::$strings["Sandbox"] = ""; +App::$strings["\"# Wiki Sandbox\\n\\nContent you **edit** and **preview** here *will not be saved*.\""] = ""; +App::$strings["Revision Comparison"] = ""; +App::$strings["Revert"] = ""; +App::$strings["Enter the name of your new wiki:"] = ""; +App::$strings["Enter the name of the new page:"] = ""; +App::$strings["Enter the new name:"] = ""; +App::$strings["Embed image from photo albums"] = ""; +App::$strings["Embed an image from your albums"] = ""; +App::$strings["OK"] = "OK"; +App::$strings["Choose images to embed"] = ""; +App::$strings["Choose an album"] = ""; +App::$strings["Choose a different album..."] = ""; +App::$strings["Error getting album list"] = ""; +App::$strings["Error getting photo link"] = ""; +App::$strings["Error getting album"] = ""; +App::$strings["No connections."] = "Aucun contact."; +App::$strings["Visit %s's profile [%s]"] = "Visiter le profil de %s [%s]"; +App::$strings["View Connections"] = "Voir les contacts"; +App::$strings["Source of Item"] = "Source de l'élément"; +App::$strings["Authorize application connection"] = "Autoriser l'application à se connecter"; +App::$strings["Return to your app and insert this Securty Code:"] = "Merci de retourner vers votre application, et d'y insérer ce Code de Sécurité :"; +App::$strings["Please login to continue."] = "Merci de vous identifier pour continuer."; +App::$strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Voulez-vous autoriser cette application à accéder à vos publications et contacts, et/ou à publier en votre nom?"; App::$strings["Xchan Lookup"] = "Recherche xchan"; App::$strings["Lookup xchan beginning with (or webbie): "] = "Recherche xchan commençant par (ou adresse \"webbie\") :"; -App::$strings["Site Admin"] = "Administrateur"; -App::$strings["Bug Report"] = ""; -App::$strings["View Bookmarks"] = ""; -App::$strings["My Chatrooms"] = ""; -App::$strings["Firefox Share"] = ""; -App::$strings["Remote Diagnostics"] = ""; -App::$strings["Suggest Channels"] = "Suggérer des canaux"; -App::$strings["Login"] = "Connexion"; -App::$strings["Grid"] = "Réseau"; -App::$strings["Channel Home"] = "Mon canal"; -App::$strings["Events"] = "Événements"; -App::$strings["Directory"] = "Annuaire"; -App::$strings["Mail"] = "Messages"; -App::$strings["Chat"] = "Clavardage"; -App::$strings["Probe"] = "Sonder"; -App::$strings["Suggest"] = "Suggérer"; -App::$strings["Random Channel"] = "Un canal au hasard"; -App::$strings["Invite"] = "Invitation"; -App::$strings["Features"] = "Fonctionalités"; -App::$strings["Post"] = "Envoyer"; -App::$strings["Purchase"] = "Acheter"; App::$strings["Missing room name"] = "Il manque le nom du salon"; App::$strings["Duplicate room name"] = "Un salon avec ce nom existe déjà"; App::$strings["Invalid room specifier."] = "Identifiant de salon invalide."; @@ -1474,6 +1516,27 @@ App::$strings["Please visit %s to approve or reject the suggestion."] = "Merci d App::$strings["[Hubzilla:Notify]"] = "[Hubzilla:Notify]"; App::$strings["created a new post"] = "a publié un nouveau message"; App::$strings["commented on %s's post"] = "a commenté la publication de %s"; +App::$strings["Site Admin"] = "Administrateur"; +App::$strings["Bug Report"] = ""; +App::$strings["View Bookmarks"] = ""; +App::$strings["My Chatrooms"] = ""; +App::$strings["Firefox Share"] = ""; +App::$strings["Remote Diagnostics"] = ""; +App::$strings["Suggest Channels"] = "Suggérer des canaux"; +App::$strings["Login"] = "Connexion"; +App::$strings["Grid"] = "Réseau"; +App::$strings["Channel Home"] = "Mon canal"; +App::$strings["Events"] = "Événements"; +App::$strings["Directory"] = "Annuaire"; +App::$strings["Mail"] = "Messages"; +App::$strings["Chat"] = "Clavardage"; +App::$strings["Probe"] = "Sonder"; +App::$strings["Suggest"] = "Suggérer"; +App::$strings["Random Channel"] = "Un canal au hasard"; +App::$strings["Invite"] = "Invitation"; +App::$strings["Features"] = "Fonctionalités"; +App::$strings["Post"] = "Envoyer"; +App::$strings["Purchase"] = "Acheter"; App::$strings["Private Message"] = "Message Privé"; App::$strings["Select"] = "Sélectionner"; App::$strings["Save to Folder"] = "Enregistrer dans le dossier"; @@ -1510,7 +1573,7 @@ App::$strings["Expires: %s"] = "Expire : %s"; App::$strings["Save Bookmarks"] = "Enregistrer les favoris"; App::$strings["Add to Calendar"] = "Ajouter au Calendrier"; App::$strings["Mark all seen"] = "Tout marquer comme vu"; -App::$strings["[+] show all"] = "[+] voir tous"; +App::$strings["%s show all"] = ""; App::$strings["Bold"] = "Gras"; App::$strings["Italic"] = "Italique"; App::$strings["Underline"] = "Souligné"; @@ -1519,9 +1582,93 @@ App::$strings["Code"] = "Code"; App::$strings["Image"] = "Image"; App::$strings["Insert Link"] = "Insérer un lien"; App::$strings["Video"] = "Vidéo"; +App::$strings["Visible to your default audience"] = "Visible pour vos contacts seulement"; +App::$strings["Only me"] = ""; +App::$strings["Public"] = "Public"; +App::$strings["Anybody in the \$Projectname network"] = ""; +App::$strings["Any account on %s"] = ""; +App::$strings["Any of my connections"] = ""; +App::$strings["Only connections I specifically allow"] = ""; +App::$strings["Anybody authenticated (could include visitors from other networks)"] = ""; +App::$strings["Any connections including those who haven't yet been approved"] = ""; +App::$strings["This is your default setting for the audience of your normal stream, and posts."] = ""; +App::$strings["This is your default setting for who can view your default channel profile"] = ""; +App::$strings["This is your default setting for who can view your connections"] = ""; +App::$strings["This is your default setting for who can view your file storage and photos"] = ""; +App::$strings["This is your default setting for the audience of your webpages"] = ""; App::$strings["No username found in import file."] = "Aucun nom d'utilisateur dans le fichier d'import."; App::$strings["Unable to create a unique channel address. Import failed."] = "Impossible de créer une adresse de canal unique. Echec de l'import."; App::$strings["Cannot locate DNS info for database server '%s'"] = "Impossible de trouver les infos DNS du serveur de BDD '%s'"; +App::$strings["Image exceeds website size limit of %lu bytes"] = "L'image dépasse la taille limite de %lu octets"; +App::$strings["Image file is empty."] = "L'image est vide."; +App::$strings["Photo storage failed."] = "Le stockage de l'image a échoué."; +App::$strings["a new photo"] = "une nouvelle photo"; +App::$strings["__ctx:photo_upload__ %1\$s posted %2\$s to %3\$s"] = "%1\$s a publié %2\$s pour %3\$s"; +App::$strings["Photo Albums"] = "Albums photo"; +App::$strings["Upload New Photos"] = "Ajouter des photos"; +App::$strings["Logout"] = "Déconnexion"; +App::$strings["End this session"] = "Mettre fin à la session"; +App::$strings["Home"] = "Mon canal"; +App::$strings["Your posts and conversations"] = "Vos publications et conversations"; +App::$strings["Your profile page"] = "Votre profil"; +App::$strings["Manage/Edit profiles"] = "Gérer/modifier les profils"; +App::$strings["Edit Profile"] = "Éditeur de profil"; +App::$strings["Edit your profile"] = "Modifier votre profil"; +App::$strings["Your photos"] = "Vos photos"; +App::$strings["Your files"] = "Vos fichiers"; +App::$strings["Your chatrooms"] = "Vos salons"; +App::$strings["Bookmarks"] = "Favoris"; +App::$strings["Your bookmarks"] = "Vos favoris"; +App::$strings["Your webpages"] = "Vos pages web"; +App::$strings["Your wiki"] = ""; +App::$strings["Sign in"] = "Connexion"; +App::$strings["%s - click to logout"] = "%s - cliquer ici pour déconnecter"; +App::$strings["Remote authentication"] = "Authentification distante"; +App::$strings["Click to authenticate to your home hub"] = "S'authentifier auprès de votre hub principal"; +App::$strings["Home Page"] = "Page d'accueil"; +App::$strings["Create an account"] = "Créer un compte"; +App::$strings["Help and documentation"] = "Aide et documentation"; +App::$strings["Applications, utilities, links, games"] = "Applications, utilitaires, liens, jeux"; +App::$strings["Search site @name, #tag, ?docs, content"] = "Recherche @nom, #tag, contenu"; +App::$strings["Channel Directory"] = "Annuaire des canaux"; +App::$strings["Your grid"] = "Votre réseau"; +App::$strings["Mark all grid notifications seen"] = "Marquer toutes les notifications du réseau comme vues"; +App::$strings["Channel home"] = "Mon canal"; +App::$strings["Mark all channel notifications seen"] = "Marquer toutes les notifications du canal comme vues"; +App::$strings["Notices"] = "Notifications"; +App::$strings["Notifications"] = "Notifications"; +App::$strings["See all notifications"] = "Voir toutes les notifications"; +App::$strings["Private mail"] = "Messages privés"; +App::$strings["See all private messages"] = "Voir tous les messages privés"; +App::$strings["Mark all private messages seen"] = "Marquer tous les messages privés comme vus"; +App::$strings["Inbox"] = "Boîte de réception"; +App::$strings["Outbox"] = "Boîte d'envoi"; +App::$strings["New Message"] = "Nouveau message"; +App::$strings["Event Calendar"] = "Calendrier des événements"; +App::$strings["See all events"] = "Voir tous les événements"; +App::$strings["Mark all events seen"] = "Marquer tous les événements comme vus"; +App::$strings["Manage Your Channels"] = "Gérer vos canaux"; +App::$strings["Account/Channel Settings"] = "Paramètres du Compte/Canal"; +App::$strings["Admin"] = "Administrateur"; +App::$strings["Site Setup and Configuration"] = "Configuration du site"; +App::$strings["Loading..."] = "Chargement..."; +App::$strings["@name, #tag, ?doc, content"] = "@nom, #étiquette, ?doc, contenu"; +App::$strings["Please wait..."] = "Merci de patienter..."; +App::$strings["view full size"] = "voir en taille réelle"; +App::$strings["Administrator"] = "Administrateur"; +App::$strings["No Subject"] = "Pas d'objet"; +App::$strings["Friendica"] = "Friendica"; +App::$strings["OStatus"] = "OStatus"; +App::$strings["GNU-Social"] = ""; +App::$strings["RSS/Atom"] = "RSS/Atom"; +App::$strings["Diaspora"] = "Diaspora"; +App::$strings["Facebook"] = "Facebook"; +App::$strings["Zot"] = "Zot"; +App::$strings["LinkedIn"] = "Linkedin"; +App::$strings["XMPP/IM"] = "XMPP/IM"; +App::$strings["MySpace"] = "MySpace"; +App::$strings["New Page"] = "Nouvelle page"; +App::$strings["Title"] = "Titre"; App::$strings["Categories"] = "Catégories"; App::$strings["Tags"] = "Étiquettes"; App::$strings["Keywords"] = "Mots-clefs"; @@ -1531,34 +1678,196 @@ App::$strings["want"] = "veulent"; App::$strings["wants"] = "veut"; App::$strings["likes"] = "aime"; App::$strings["dislikes"] = "n'aime pas"; -App::$strings["l F d, Y \\@ g:i A"] = "l d F Y \\à G\\hi"; -App::$strings["Starts:"] = "Début :"; -App::$strings["Finishes:"] = "Fin :"; -App::$strings["This event has been added to your calendar."] = "Cet évènement a été ajouté dans votre calendrier."; -App::$strings["Not specified"] = "Non spécifié"; -App::$strings["Needs Action"] = "Besoin d'une action"; -App::$strings["Completed"] = "Terminé"; -App::$strings["In Process"] = "En cours"; -App::$strings["Cancelled"] = "Annulé"; +App::$strings["Unable to obtain identity information from database"] = "Impossible d'obtenir les données d'identité depuis la base de données"; +App::$strings["Empty name"] = "Nom vide"; +App::$strings["Name too long"] = "Nom trop long"; +App::$strings["No account identifier"] = "Pas d'identifiant de compte"; +App::$strings["Nickname is required."] = "Un surnom est requis."; +App::$strings["Reserved nickname. Please choose another."] = "Surnom réservé. Merci d'en choisir un autre."; +App::$strings["Nickname has unsupported characters or is already being used on this site."] = "Le surnom contient des caractères interdits ou est déjà pris sur ce site."; +App::$strings["Unable to retrieve created identity"] = "Impossible de récupérer l'identité créée"; +App::$strings["Default Profile"] = "Profil par défaut"; +App::$strings["Requested channel is not available."] = "Canal demandé non disponible."; +App::$strings["Create New Profile"] = "Créer un nouveau profil"; +App::$strings["Visible to everybody"] = "Visible de tous"; +App::$strings["Gender:"] = "Sexe :"; +App::$strings["Status:"] = "État :"; +App::$strings["Homepage:"] = "Site Internet :"; +App::$strings["Online Now"] = "Connecté"; +App::$strings["Like this channel"] = "J'aime ce canal"; +App::$strings["j F, Y"] = "j F, Y"; +App::$strings["j F"] = "j F"; +App::$strings["Birthday:"] = "Date de naissance :"; +App::$strings["for %1\$d %2\$s"] = "depuis %1\$d %2\$s"; +App::$strings["Sexual Preference:"] = "Orientation sexuelle :"; +App::$strings["Tags:"] = "Étiquettes :"; +App::$strings["Political Views:"] = "Opinions politiques :"; +App::$strings["Religion:"] = "Religion :"; +App::$strings["Hobbies/Interests:"] = "Occupations/Centres d'intérêt :"; +App::$strings["Likes:"] = "Aime :"; +App::$strings["Dislikes:"] = "N'aime pas :"; +App::$strings["Contact information and Social Networks:"] = "Coordonnées et réseaux sociaux :"; +App::$strings["My other channels:"] = "Mes autres canaux :"; +App::$strings["Musical interests:"] = "Goûts musicaux :"; +App::$strings["Books, literature:"] = "Lectures, goûts littéraires :"; +App::$strings["Television:"] = "Télévision :"; +App::$strings["Film/dance/culture/entertainment:"] = "Cinéma/danse/culture/divertissement&nsbp;:"; +App::$strings["Love/Romance:"] = "Vie sentimentale/amoureuse :"; +App::$strings["Work/employment:"] = "Travail/Occupation "; +App::$strings["School/education:"] = "Études "; +App::$strings["Like this thing"] = "J'aime ceci"; +App::$strings["New window"] = "Nouvelle fenêtre"; +App::$strings["Open the selected location in a different window or browser tab"] = "Ouvrir l'emplacement dans une fenêtre ou un onglet différent"; +App::$strings["User '%s' deleted"] = "Utilisateur '%s' supprimé"; +App::$strings["%1\$s is now connected with %2\$s"] = "%1\$s ajoute %2\$s à ses contacts"; +App::$strings["%1\$s poked %2\$s"] = "%1\$s a tapoté %2\$s"; +App::$strings["poked"] = "a tapoté"; +App::$strings["View %s's profile @ %s"] = "Voir le profil de %s @ %s"; +App::$strings["Categories:"] = "Catégories :"; +App::$strings["Filed under:"] = "Classé sous :"; +App::$strings["View in context"] = "Voir en contexte"; +App::$strings["remove"] = "supprimer"; +App::$strings["Delete Selected Items"] = "Supprimer les éléments selectionnés"; +App::$strings["View Source"] = "Voir source"; +App::$strings["Follow Thread"] = "Suivre la discussion"; +App::$strings["Unfollow Thread"] = "Ne plus suivre la discussion"; +App::$strings["Activity/Posts"] = "Activité/Publications"; +App::$strings["Edit Connection"] = "Modifier le contact"; +App::$strings["Message"] = "Message"; +App::$strings["%s likes this."] = "%s aime ça."; +App::$strings["%s doesn't like this."] = "%s n'aime pas ça."; +App::$strings["%2\$d people like this."] = array( + 0 => "%2\$d personne aime ceci.", + 1 => "%2\$d personnes aiment ceci.", +); +App::$strings["%2\$d people don't like this."] = array( + 0 => "%2\$d personne n'aime pas ça.", + 1 => "%2\$d personnes n'aiment pas ça.", +); +App::$strings["and"] = "et"; +App::$strings[", and %d other people"] = array( + 0 => ", et %d autre personne", + 1 => ", et %d autres personnes", +); +App::$strings["%s like this."] = "%s aime ça."; +App::$strings["%s don't like this."] = "%s n'aime pas ça."; +App::$strings["Set your location"] = "Spécifier votre emplacement géographique"; +App::$strings["Clear browser location"] = "Supprimer l'emplacement géographique du navigateur"; +App::$strings["Tag term:"] = "Étiquette :"; +App::$strings["Where are you right now?"] = "Où êtes-vous en ce moment ?"; +App::$strings["Page link name"] = "Nom du lien vers la page"; +App::$strings["Post as"] = "Publier en tant que"; +App::$strings["Toggle voting"] = "(Dés)activer le vote"; +App::$strings["Categories (optional, comma-separated list)"] = "Catégories (facultatives, séparées par des virgules)"; +App::$strings["Set publish date"] = "Définir la date de publication"; +App::$strings["Discover"] = "À découvrir"; +App::$strings["Imported public streams"] = "Flux publics importés"; +App::$strings["Commented Order"] = "Par date de commentaire"; +App::$strings["Sort by Comment Date"] = "Trier par date de dernier commentaire"; +App::$strings["Posted Order"] = "Par date de publication"; +App::$strings["Sort by Post Date"] = "Trier par date de publication"; +App::$strings["Posts that mention or involve you"] = "Publications qui vous mentionnent ou vous concernent d'une manière ou d'une autre"; +App::$strings["Activity Stream - by date"] = "Flux d'activité - par date"; +App::$strings["Starred"] = "Mis en avant (étoiles)"; +App::$strings["Favourite Posts"] = "Publications préférées"; +App::$strings["Spam"] = "Indésirable"; +App::$strings["Posts flagged as SPAM"] = "Publications marquées comme indésirables"; +App::$strings["Status Messages and Posts"] = "Messages d'état et contributions"; +App::$strings["About"] = "À propos"; +App::$strings["Profile Details"] = "Détails du profil"; +App::$strings["Files and Storage"] = "Fichiers et Stockage"; +App::$strings["Chatrooms"] = "Salons de clavardage"; +App::$strings["Saved Bookmarks"] = "Favoris sauvegardés"; +App::$strings["Manage Webpages"] = "Gérer les pages web"; +App::$strings["__ctx:noun__ Attending"] = array( + 0 => "Participe", + 1 => "Participent", +); +App::$strings["__ctx:noun__ Not Attending"] = array( + 0 => "Ne participe pas", + 1 => "Ne participent pas", +); +App::$strings["__ctx:noun__ Undecided"] = array( + 0 => "Indécis(e)", + 1 => "Indécis(es)", +); +App::$strings["__ctx:noun__ Agree"] = array( + 0 => "D'accord", + 1 => "D'accord", +); +App::$strings["__ctx:noun__ Disagree"] = array( + 0 => "Pas d'accord", + 1 => "Pas d'accord", +); +App::$strings["__ctx:noun__ Abstain"] = array( + 0 => "S'abstient", + 1 => "S'abstiennent", +); App::$strings["Cannot create a duplicate channel identifier on this system. Import failed."] = "L'import a échoué. Un canal existe déjà avec ce nom"; App::$strings["Channel clone failed. Import failed."] = "Echec du clonage du canal. Echec de l'impot."; -App::$strings["(Unknown)"] = "(Inconnu)"; -App::$strings["Visible to anybody on the internet."] = "Visible pour tout le monde sur internet."; -App::$strings["Visible to you only."] = "Visible pour vous seulement."; -App::$strings["Visible to anybody in this network."] = "Visible pour tout le monde sur ce réseau."; -App::$strings["Visible to anybody authenticated."] = "Visible aux utilisateurs authentifiés."; -App::$strings["Visible to anybody on %s."] = "Visible pour tous sur %s."; -App::$strings["Visible to all connections."] = "Visible pour tous les contacts."; -App::$strings["Visible to approved connections."] = "Visible aux contacts approuvés."; -App::$strings["Visible to specific connections."] = "Visible pour certains contacts."; -App::$strings["Privacy group is empty."] = "Groupe d'accès vide."; -App::$strings["Privacy group: %s"] = "Groupe d'accès : %s"; -App::$strings["Connection not found."] = "Contact non trouvé."; -App::$strings["profile photo"] = "photo de profil"; -App::$strings["No recipient provided."] = "Pas de destinataire."; -App::$strings["[no subject]"] = "[sans objet]"; -App::$strings["Unable to determine sender."] = "Impossible de déterminer l'émetteur."; -App::$strings["Stored post could not be verified."] = "Le message stocké n'a pas pu être vérifié."; +App::$strings["Frequently"] = "Fréquemment"; +App::$strings["Hourly"] = "Toutes les heures"; +App::$strings["Twice daily"] = "Deux fois par jour"; +App::$strings["Daily"] = "Chaque jour"; +App::$strings["Weekly"] = "Chaque semaine"; +App::$strings["Monthly"] = "Chaque mois"; +App::$strings["Currently Male"] = "Actuellement homme"; +App::$strings["Currently Female"] = "Actuellement femme"; +App::$strings["Mostly Male"] = "Surtout homme"; +App::$strings["Mostly Female"] = "Surtout femme"; +App::$strings["Transgender"] = "Transgenre"; +App::$strings["Intersex"] = "Intersexuel"; +App::$strings["Transsexual"] = "Transsexuel"; +App::$strings["Hermaphrodite"] = "Hermaphrodite"; +App::$strings["Neuter"] = "Neutre"; +App::$strings["Non-specific"] = "Non spécifique"; +App::$strings["Undecided"] = "Indécis"; +App::$strings["Males"] = "Hommes"; +App::$strings["Females"] = "Femmes"; +App::$strings["Gay"] = "Gay"; +App::$strings["Lesbian"] = "Lesbienne"; +App::$strings["No Preference"] = "Sans préférence"; +App::$strings["Bisexual"] = "Bisexuel"; +App::$strings["Autosexual"] = "Autosexuel"; +App::$strings["Abstinent"] = "Abstinent"; +App::$strings["Virgin"] = "Vierge"; +App::$strings["Deviant"] = "Déviant"; +App::$strings["Fetish"] = "Fétichiste"; +App::$strings["Oodles"] = "Une floppée"; +App::$strings["Nonsexual"] = "Non-sexuel"; +App::$strings["Single"] = "Célibataire"; +App::$strings["Lonely"] = "Solitaire"; +App::$strings["Available"] = "Disponible"; +App::$strings["Unavailable"] = "Indisponible"; +App::$strings["Has crush"] = "A un béguin"; +App::$strings["Infatuated"] = "Amoureux transi"; +App::$strings["Dating"] = "Sort avec quelqu'un"; +App::$strings["Unfaithful"] = "Infidèle"; +App::$strings["Sex Addict"] = "Accro au sexe"; +App::$strings["Friends/Benefits"] = "Amis avec bénéfices"; +App::$strings["Casual"] = "Sans engagement"; +App::$strings["Engaged"] = "Fiancé(e)"; +App::$strings["Married"] = "Marié(e)"; +App::$strings["Imaginarily married"] = "Marié(e) dans ses rêves"; +App::$strings["Partners"] = "Partenaires"; +App::$strings["Cohabiting"] = "En cohabitation"; +App::$strings["Common law"] = "Conjoints de fait"; +App::$strings["Happy"] = "Heureux"; +App::$strings["Not looking"] = "Pas en recherche"; +App::$strings["Swinger"] = "Echangiste"; +App::$strings["Betrayed"] = "Trahi(e)"; +App::$strings["Separated"] = "Séparé(e)"; +App::$strings["Unstable"] = "Instable"; +App::$strings["Divorced"] = "Divorcé(e)"; +App::$strings["Imaginarily divorced"] = "Divorcé(e) dans ses rêves"; +App::$strings["Widowed"] = "Veuf/veuve"; +App::$strings["Uncertain"] = "Incertain"; +App::$strings["It's complicated"] = "C'est compliqué"; +App::$strings["Don't care"] = "S'en fiche"; +App::$strings["Ask me"] = "Me demander"; +App::$strings["%1\$s's bookmarks"] = "Favoris de %1\$s"; +App::$strings["guest:"] = ""; +App::$strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "Le formulaire n'est plus sécurisé, probablement parce qu'il est ouvert depuis trop longtemps (plus de 3 heures)."; App::$strings["prev"] = "préc."; App::$strings["first"] = "premier"; App::$strings["last"] = "dernier"; @@ -1568,7 +1877,6 @@ App::$strings["newer"] = "plus récent"; App::$strings["No connections"] = "Pas de relations."; App::$strings["View all %s connections"] = "Voir les %s contacts"; App::$strings["poke"] = "tapoter"; -App::$strings["poked"] = "a tapoté"; App::$strings["ping"] = "ping"; App::$strings["pinged"] = "pingé"; App::$strings["prod"] = "encourager"; @@ -1631,385 +1939,21 @@ App::$strings["Select an alternate language"] = "Choisir une langue alternative" App::$strings["activity"] = "activité"; App::$strings["Design Tools"] = "Outils de conception"; App::$strings["Pages"] = "Pages"; -App::$strings["System"] = "Système"; -App::$strings["New App"] = ""; -App::$strings["Suggestions"] = "Suggestions"; -App::$strings["See more..."] = "Voir plus..."; -App::$strings["You have %1$.0f of %2$.0f allowed connections."] = "Vous avez %1$.0f sur %2$.0f contacts autorisés."; -App::$strings["Add New Connection"] = "Ajouter un nouveau contact"; -App::$strings["Enter channel address"] = "Saisissez l'adresse du canal"; -App::$strings["Examples: bob@example.com, https://example.com/barbara"] = "Exemples : pierre@exemple.com, https://exemple.com/sophie"; -App::$strings["Notes"] = "Notes"; -App::$strings["Remove term"] = "Retirer le terme"; -App::$strings["Saved Searches"] = "Recherches sauvegardées"; -App::$strings["add"] = "ajouter"; -App::$strings["Saved Folders"] = "Dossiers sauvegardés"; -App::$strings["Everything"] = "Tout"; -App::$strings["Archives"] = "Archives"; -App::$strings["Refresh"] = "Actualiser"; -App::$strings["Account settings"] = "Paramètres du compte"; -App::$strings["Channel settings"] = "Paramètres du canal"; -App::$strings["Additional features"] = "Fonctionnalités supplémentaires"; -App::$strings["Feature/Addon settings"] = "Paramètres des extensions/greffons"; -App::$strings["Display settings"] = "Paramètres d'affichage"; -App::$strings["Manage locations"] = ""; -App::$strings["Export channel"] = "Exporter le canal"; -App::$strings["Connected apps"] = "Applications connectées"; -App::$strings["Premium Channel Settings"] = "Paramètres de canal VIP"; -App::$strings["Private Mail Menu"] = "Menu des messages privés"; -App::$strings["Combined View"] = "Vue combinée"; -App::$strings["Inbox"] = "Boîte de réception"; -App::$strings["Outbox"] = "Boîte d'envoi"; -App::$strings["New Message"] = "Nouveau message"; -App::$strings["Conversations"] = "Conversations"; -App::$strings["Received Messages"] = "Messages reçus"; -App::$strings["Sent Messages"] = "Messages envoyés"; -App::$strings["No messages."] = "Pas de message."; -App::$strings["Delete conversation"] = "Supprimer la conversation"; -App::$strings["Events Menu"] = "Menu Evènements"; -App::$strings["Day View"] = "Vue Jour"; -App::$strings["Week View"] = "Vue Semaine"; -App::$strings["Month View"] = "Vue Mois"; -App::$strings["Events Tools"] = "Outils Evènements"; -App::$strings["Export Calendar"] = "Exporter le calendrier"; -App::$strings["Import Calendar"] = "Importer un calendrier"; -App::$strings["Chatrooms"] = "Salons de clavardage"; -App::$strings["Overview"] = ""; -App::$strings["Chat Members"] = ""; -App::$strings["Bookmarked Chatrooms"] = "Salons favoris"; -App::$strings["Suggested Chatrooms"] = "Salons suggérés"; -App::$strings["photo/image"] = "photo/image"; -App::$strings["Click to show more"] = "Cliquer pour voir plus"; -App::$strings["Rating Tools"] = "Outils d'évaluation"; -App::$strings["Rate Me"] = "M'évaluer"; -App::$strings["View Ratings"] = "Voir mes évaluations"; -App::$strings["Forums"] = "Membres du forum"; -App::$strings["Tasks"] = "Tâches"; -App::$strings["Documentation"] = "Documentation"; -App::$strings["Project/Site Information"] = "Information sur le site/projet"; -App::$strings["For Members"] = "Pour les membres"; -App::$strings["For Administrators"] = "Pour les administrateurs"; -App::$strings["For Developers"] = "Pour les développeurs"; -App::$strings["Member registrations waiting for confirmation"] = ""; -App::$strings["Inspect queue"] = "Analyser la file d'attente"; -App::$strings["DB updates"] = "Mises à jour BDD"; -App::$strings["Admin"] = "Administrateur"; -App::$strings["Plugin Features"] = "Fonctionnalités des greffons"; -App::$strings["Channel is blocked on this site."] = "Ce canal est bloqué sur ce site."; -App::$strings["Channel location missing."] = "Emplacement du canal introuvable."; -App::$strings["Response from remote channel was incomplete."] = "La réponse du canal distant était incomplète."; -App::$strings["Channel was deleted and no longer exists."] = "Le canal a été supprimé et n'existe plus."; -App::$strings["Protocol disabled."] = "Protocole désactivé."; -App::$strings["Channel discovery failed."] = "La tentative d'accéder au canal a échoué."; -App::$strings["Cannot connect to yourself."] = "Ne peut pas se connecter à vous."; -App::$strings["%1\$s's bookmarks"] = "Favoris de %1\$s"; -App::$strings["Public Timeline"] = "Fil public"; -App::$strings["Image/photo"] = "Image/photo"; -App::$strings["Encrypted content"] = "Contenu chiffré"; -App::$strings["Install %s element: "] = "Installer %s élément"; -App::$strings["This post contains an installable %s element, however you lack permissions to install it on this site."] = "Ce message contient un élément installable %s, mais vous n'avez pas l'autorisation de l'installer sur ce site."; -App::$strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s a écrit %2\$s qui suit %3\$s"; -App::$strings["Click to open/close"] = "Cliquer pour ouvrir/fermer"; -App::$strings["spoiler"] = ""; -App::$strings["Different viewers will see this text differently"] = "Ce texte aura un rendu différent en fonction des utilisateurs"; -App::$strings["$1 wrote:"] = "$1 a écrit :"; -App::$strings["Directory Options"] = "Options d'annuaire"; -App::$strings["Safe Mode"] = "Mode sûr"; -App::$strings["Public Forums Only"] = "Les forums publics uniquement"; -App::$strings["This Website Only"] = "Ce site uniquement"; -App::$strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "Le formulaire n'est plus sécurisé, probablement parce qu'il est ouvert depuis trop longtemps (plus de 3 heures)."; -App::$strings["Logout"] = "Déconnexion"; -App::$strings["End this session"] = "Mettre fin à la session"; -App::$strings["Home"] = "Mon canal"; -App::$strings["Your posts and conversations"] = "Vos publications et conversations"; -App::$strings["Your profile page"] = "Votre profil"; -App::$strings["Manage/Edit profiles"] = "Gérer/modifier les profils"; -App::$strings["Edit Profile"] = "Éditeur de profil"; -App::$strings["Edit your profile"] = "Modifier votre profil"; -App::$strings["Your photos"] = "Vos photos"; -App::$strings["Your files"] = "Vos fichiers"; -App::$strings["Your chatrooms"] = "Vos salons"; -App::$strings["Bookmarks"] = "Favoris"; -App::$strings["Your bookmarks"] = "Vos favoris"; -App::$strings["Your webpages"] = "Vos pages web"; -App::$strings["Sign in"] = "Connexion"; -App::$strings["%s - click to logout"] = "%s - cliquer ici pour déconnecter"; -App::$strings["Remote authentication"] = "Authentification distante"; -App::$strings["Click to authenticate to your home hub"] = "S'authentifier auprès de votre hub principal"; -App::$strings["Home Page"] = "Page d'accueil"; -App::$strings["Create an account"] = "Créer un compte"; -App::$strings["Help and documentation"] = "Aide et documentation"; -App::$strings["Applications, utilities, links, games"] = "Applications, utilitaires, liens, jeux"; -App::$strings["Search site @name, #tag, ?docs, content"] = "Recherche @nom, #tag, contenu"; -App::$strings["Channel Directory"] = "Annuaire des canaux"; -App::$strings["Your grid"] = "Votre réseau"; -App::$strings["Mark all grid notifications seen"] = "Marquer toutes les notifications du réseau comme vues"; -App::$strings["Channel home"] = "Mon canal"; -App::$strings["Mark all channel notifications seen"] = "Marquer toutes les notifications du canal comme vues"; -App::$strings["Notices"] = "Notifications"; -App::$strings["Notifications"] = "Notifications"; -App::$strings["See all notifications"] = "Voir toutes les notifications"; -App::$strings["Private mail"] = "Messages privés"; -App::$strings["See all private messages"] = "Voir tous les messages privés"; -App::$strings["Mark all private messages seen"] = "Marquer tous les messages privés comme vus"; -App::$strings["Event Calendar"] = "Calendrier des événements"; -App::$strings["See all events"] = "Voir tous les événements"; -App::$strings["Mark all events seen"] = "Marquer tous les événements comme vus"; -App::$strings["Manage Your Channels"] = "Gérer vos canaux"; -App::$strings["Account/Channel Settings"] = "Paramètres du Compte/Canal"; -App::$strings["Site Setup and Configuration"] = "Configuration du site"; -App::$strings["Loading..."] = "Chargement..."; -App::$strings["@name, #tag, ?doc, content"] = "@nom, #étiquette, ?doc, contenu"; -App::$strings["Please wait..."] = "Merci de patienter..."; -App::$strings["New window"] = "Nouvelle fenêtre"; -App::$strings["Open the selected location in a different window or browser tab"] = "Ouvrir l'emplacement dans une fenêtre ou un onglet différent"; -App::$strings["User '%s' deleted"] = "Utilisateur '%s' supprimé"; -App::$strings["%d invitation available"] = array( - 0 => "%d invitation disponible", - 1 => "%d invitations disponibles", -); -App::$strings["Find Channels"] = "Trouver des canaux"; -App::$strings["Enter name or interest"] = "Saisir nom ou centre d'intérêt"; -App::$strings["Connect/Follow"] = "Ajouter/Suivre"; -App::$strings["Examples: Robert Morgenstein, Fishing"] = "Exemples: Guillaume Martin, Course à pieds"; -App::$strings["Random Profile"] = "Un profil au hasard"; -App::$strings["Invite Friends"] = "Inviter des amis"; -App::$strings["Advanced example: name=fred and country=iceland"] = "Exemple avancé : name=fred and country=iceland"; -App::$strings["%d connection in common"] = array( - 0 => "%d contact en commun", - 1 => "%d contacts en commun", -); -App::$strings["show more"] = "montrer plus"; -App::$strings["%1\$s is now connected with %2\$s"] = "%1\$s ajoute %2\$s à ses contacts"; -App::$strings["%1\$s poked %2\$s"] = "%1\$s a tapoté %2\$s"; -App::$strings["View %s's profile @ %s"] = "Voir le profil de %s @ %s"; -App::$strings["Categories:"] = "Catégories :"; -App::$strings["Filed under:"] = "Classé sous :"; -App::$strings["View in context"] = "Voir en contexte"; -App::$strings["remove"] = "supprimer"; -App::$strings["Delete Selected Items"] = "Supprimer les éléments selectionnés"; -App::$strings["View Source"] = "Voir source"; -App::$strings["Follow Thread"] = "Suivre la discussion"; -App::$strings["Unfollow Thread"] = "Ne plus suivre la discussion"; -App::$strings["Activity/Posts"] = "Activité/Publications"; -App::$strings["Edit Connection"] = "Modifier le contact"; -App::$strings["Message"] = "Message"; -App::$strings["%s likes this."] = "%s aime ça."; -App::$strings["%s doesn't like this."] = "%s n'aime pas ça."; -App::$strings["%2\$d people like this."] = array( - 0 => "%2\$d personne aime ceci.", - 1 => "%2\$d personnes aiment ceci.", -); -App::$strings["%2\$d people don't like this."] = array( - 0 => "%2\$d personne n'aime pas ça.", - 1 => "%2\$d personnes n'aiment pas ça.", -); -App::$strings["and"] = "et"; -App::$strings[", and %d other people"] = array( - 0 => ", et %d autre personne", - 1 => ", et %d autres personnes", -); -App::$strings["%s like this."] = "%s aime ça."; -App::$strings["%s don't like this."] = "%s n'aime pas ça."; -App::$strings["Set your location"] = "Spécifier votre emplacement géographique"; -App::$strings["Clear browser location"] = "Supprimer l'emplacement géographique du navigateur"; -App::$strings["Tag term:"] = "Étiquette :"; -App::$strings["Where are you right now?"] = "Où êtes-vous en ce moment ?"; -App::$strings["Page link name"] = "Nom du lien vers la page"; -App::$strings["Post as"] = "Publier en tant que"; -App::$strings["Toggle voting"] = "(Dés)activer le vote"; -App::$strings["Categories (optional, comma-separated list)"] = "Catégories (facultatives, séparées par des virgules)"; -App::$strings["Set publish date"] = "Définir la date de publication"; -App::$strings["OK"] = "OK"; -App::$strings["Discover"] = "À découvrir"; -App::$strings["Imported public streams"] = "Flux publics importés"; -App::$strings["Commented Order"] = "Par date de commentaire"; -App::$strings["Sort by Comment Date"] = "Trier par date de dernier commentaire"; -App::$strings["Posted Order"] = "Par date de publication"; -App::$strings["Sort by Post Date"] = "Trier par date de publication"; -App::$strings["Posts that mention or involve you"] = "Publications qui vous mentionnent ou vous concernent d'une manière ou d'une autre"; -App::$strings["Activity Stream - by date"] = "Flux d'activité - par date"; -App::$strings["Starred"] = "Mis en avant (étoiles)"; -App::$strings["Favourite Posts"] = "Publications préférées"; -App::$strings["Spam"] = "Indésirable"; -App::$strings["Posts flagged as SPAM"] = "Publications marquées comme indésirables"; -App::$strings["Status Messages and Posts"] = "Messages d'état et contributions"; -App::$strings["About"] = "À propos"; -App::$strings["Profile Details"] = "Détails du profil"; -App::$strings["Photo Albums"] = "Albums photo"; -App::$strings["Files and Storage"] = "Fichiers et Stockage"; -App::$strings["Saved Bookmarks"] = "Favoris sauvegardés"; -App::$strings["Manage Webpages"] = "Gérer les pages web"; -App::$strings["__ctx:noun__ Attending"] = array( - 0 => "Participe", - 1 => "Participent", -); -App::$strings["__ctx:noun__ Not Attending"] = array( - 0 => "Ne participe pas", - 1 => "Ne participent pas", -); -App::$strings["__ctx:noun__ Undecided"] = array( - 0 => "Indécis(e)", - 1 => "Indécis(es)", -); -App::$strings["__ctx:noun__ Agree"] = array( - 0 => "D'accord", - 1 => "D'accord", -); -App::$strings["__ctx:noun__ Disagree"] = array( - 0 => "Pas d'accord", - 1 => "Pas d'accord", -); -App::$strings["__ctx:noun__ Abstain"] = array( - 0 => "S'abstient", - 1 => "S'abstiennent", -); -App::$strings["Frequently"] = "Fréquemment"; -App::$strings["Hourly"] = "Toutes les heures"; -App::$strings["Twice daily"] = "Deux fois par jour"; -App::$strings["Daily"] = "Chaque jour"; -App::$strings["Weekly"] = "Chaque semaine"; -App::$strings["Monthly"] = "Chaque mois"; -App::$strings["Currently Male"] = "Actuellement homme"; -App::$strings["Currently Female"] = "Actuellement femme"; -App::$strings["Mostly Male"] = "Surtout homme"; -App::$strings["Mostly Female"] = "Surtout femme"; -App::$strings["Transgender"] = "Transgenre"; -App::$strings["Intersex"] = "Intersexuel"; -App::$strings["Transsexual"] = "Transsexuel"; -App::$strings["Hermaphrodite"] = "Hermaphrodite"; -App::$strings["Neuter"] = "Neutre"; -App::$strings["Non-specific"] = "Non spécifique"; -App::$strings["Other"] = "Autre"; -App::$strings["Undecided"] = "Indécis"; -App::$strings["Males"] = "Hommes"; -App::$strings["Females"] = "Femmes"; -App::$strings["Gay"] = "Gay"; -App::$strings["Lesbian"] = "Lesbienne"; -App::$strings["No Preference"] = "Sans préférence"; -App::$strings["Bisexual"] = "Bisexuel"; -App::$strings["Autosexual"] = "Autosexuel"; -App::$strings["Abstinent"] = "Abstinent"; -App::$strings["Virgin"] = "Vierge"; -App::$strings["Deviant"] = "Déviant"; -App::$strings["Fetish"] = "Fétichiste"; -App::$strings["Oodles"] = "Une floppée"; -App::$strings["Nonsexual"] = "Non-sexuel"; -App::$strings["Single"] = "Célibataire"; -App::$strings["Lonely"] = "Solitaire"; -App::$strings["Available"] = "Disponible"; -App::$strings["Unavailable"] = "Indisponible"; -App::$strings["Has crush"] = "A un béguin"; -App::$strings["Infatuated"] = "Amoureux transi"; -App::$strings["Dating"] = "Sort avec quelqu'un"; -App::$strings["Unfaithful"] = "Infidèle"; -App::$strings["Sex Addict"] = "Accro au sexe"; -App::$strings["Friends/Benefits"] = "Amis avec bénéfices"; -App::$strings["Casual"] = "Sans engagement"; -App::$strings["Engaged"] = "Fiancé(e)"; -App::$strings["Married"] = "Marié(e)"; -App::$strings["Imaginarily married"] = "Marié(e) dans ses rêves"; -App::$strings["Partners"] = "Partenaires"; -App::$strings["Cohabiting"] = "En cohabitation"; -App::$strings["Common law"] = "Conjoints de fait"; -App::$strings["Happy"] = "Heureux"; -App::$strings["Not looking"] = "Pas en recherche"; -App::$strings["Swinger"] = "Echangiste"; -App::$strings["Betrayed"] = "Trahi(e)"; -App::$strings["Separated"] = "Séparé(e)"; -App::$strings["Unstable"] = "Instable"; -App::$strings["Divorced"] = "Divorcé(e)"; -App::$strings["Imaginarily divorced"] = "Divorcé(e) dans ses rêves"; -App::$strings["Widowed"] = "Veuf/veuve"; -App::$strings["Uncertain"] = "Incertain"; -App::$strings["It's complicated"] = "C'est compliqué"; -App::$strings["Don't care"] = "S'en fiche"; -App::$strings["Ask me"] = "Me demander"; -App::$strings["Visible to your default audience"] = "Visible pour vos contacts seulement"; -App::$strings["Only me"] = ""; -App::$strings["Public"] = "Public"; -App::$strings["Anybody in the \$Projectname network"] = ""; -App::$strings["Any account on %s"] = ""; -App::$strings["Any of my connections"] = ""; -App::$strings["Only connections I specifically allow"] = ""; -App::$strings["Anybody authenticated (could include visitors from other networks)"] = ""; -App::$strings["Any connections including those who haven't yet been approved"] = ""; -App::$strings["This is your default setting for the audience of your normal stream, and posts."] = ""; -App::$strings["This is your default setting for who can view your default channel profile"] = ""; -App::$strings["This is your default setting for who can view your connections"] = ""; -App::$strings["This is your default setting for who can view your file storage and photos"] = ""; -App::$strings["This is your default setting for the audience of your webpages"] = ""; -App::$strings["Not a valid email address"] = "Ce n'est pas une adresse de courriel valide"; -App::$strings["Your email domain is not among those allowed on this site"] = "Votre domaine de courriel ne fait pas partie de ceux autorisés par ce site"; -App::$strings["Your email address is already registered at this site."] = "Votre adresse de courriel est déjà inscrite sur ce site."; -App::$strings["An invitation is required."] = "Une invitation est requise."; -App::$strings["Invitation could not be verified."] = "Votre invitation n'a pas pu être vérifiée."; -App::$strings["Please enter the required information."] = "Merci d'entrer les informations requises."; -App::$strings["Failed to store account information."] = "Impossible de stocker les informations liées au compte."; -App::$strings["Registration confirmation for %s"] = "Confirmation de l'inscription pour %s"; -App::$strings["Registration request at %s"] = "Demande d'inscription sur %s"; -App::$strings["Administrator"] = "Administrateur"; -App::$strings["your registration password"] = "votre mot de passe d'inscription"; -App::$strings["Registration details for %s"] = "Détails de l'inscription pour %s"; -App::$strings["Account approved."] = "Compte approuvé."; -App::$strings["Registration revoked for %s"] = "Inscription révoquée pour %s"; -App::$strings["Account verified. Please login."] = "Compte vérifié. Veuillez vous connecter."; -App::$strings["Click here to upgrade."] = "Cliquez ici pour mettre à jour."; -App::$strings["This action exceeds the limits set by your subscription plan."] = "Cette action outrepasserait les limites prévues par votre forfait."; -App::$strings["This action is not available under your subscription plan."] = "Cette action n'est pas disponible avec votre forfait."; -App::$strings["Item was not found."] = "Élément introuvable."; -App::$strings["No source file."] = "Pas de fichier source."; -App::$strings["Cannot locate file to replace"] = "Impossible de trouver le fichier à remplacer."; -App::$strings["Cannot locate file to revise/update"] = "Impossible de trouver le fichier à corriger/mettre à jour"; -App::$strings["File exceeds size limit of %d"] = "Le fichier dépasse la taille limite de %d"; -App::$strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Vous avez atteint votre limite de %1$.0f méga-octets autorisés pour le stockage des pièces-jointes."; -App::$strings["File upload failed. Possible system limit or action terminated."] = "Envoi du fichier impossible. Limite système ou action avortée."; -App::$strings["Stored file could not be verified. Upload failed."] = "Le fichier stocké n'a pu être vérifié. Echec de l'envoi."; -App::$strings["Path not available."] = "Chemin non disponible."; -App::$strings["Empty pathname"] = "Chemin vide"; -App::$strings["duplicate filename or path"] = "doublon de chemin ou de fichier"; -App::$strings["Path not found."] = "Chemin introuvable."; -App::$strings["mkdir failed."] = "mkdir a échoué."; -App::$strings["database storage failed."] = "l'écriture dans la base de données a échoué."; -App::$strings["Empty path"] = "Chemin vide"; -App::$strings["Unable to obtain identity information from database"] = "Impossible d'obtenir les données d'identité depuis la base de données"; -App::$strings["Empty name"] = "Nom vide"; -App::$strings["Name too long"] = "Nom trop long"; -App::$strings["No account identifier"] = "Pas d'identifiant de compte"; -App::$strings["Nickname is required."] = "Un surnom est requis."; -App::$strings["Reserved nickname. Please choose another."] = "Surnom réservé. Merci d'en choisir un autre."; -App::$strings["Nickname has unsupported characters or is already being used on this site."] = "Le surnom contient des caractères interdits ou est déjà pris sur ce site."; -App::$strings["Unable to retrieve created identity"] = "Impossible de récupérer l'identité créée"; -App::$strings["Default Profile"] = "Profil par défaut"; -App::$strings["Requested channel is not available."] = "Canal demandé non disponible."; -App::$strings["Create New Profile"] = "Créer un nouveau profil"; -App::$strings["Visible to everybody"] = "Visible de tous"; -App::$strings["Gender:"] = "Sexe :"; -App::$strings["Status:"] = "État :"; -App::$strings["Homepage:"] = "Site Internet :"; -App::$strings["Online Now"] = "Connecté"; -App::$strings["Like this channel"] = "J'aime ce canal"; -App::$strings["j F, Y"] = "j F, Y"; -App::$strings["j F"] = "j F"; -App::$strings["Birthday:"] = "Date de naissance :"; -App::$strings["for %1\$d %2\$s"] = "depuis %1\$d %2\$s"; -App::$strings["Sexual Preference:"] = "Orientation sexuelle :"; -App::$strings["Tags:"] = "Étiquettes :"; -App::$strings["Political Views:"] = "Opinions politiques :"; -App::$strings["Religion:"] = "Religion :"; -App::$strings["Hobbies/Interests:"] = "Occupations/Centres d'intérêt :"; -App::$strings["Likes:"] = "Aime :"; -App::$strings["Dislikes:"] = "N'aime pas :"; -App::$strings["Contact information and Social Networks:"] = "Coordonnées et réseaux sociaux :"; -App::$strings["My other channels:"] = "Mes autres canaux :"; -App::$strings["Musical interests:"] = "Goûts musicaux :"; -App::$strings["Books, literature:"] = "Lectures, goûts littéraires :"; -App::$strings["Television:"] = "Télévision :"; -App::$strings["Film/dance/culture/entertainment:"] = "Cinéma/danse/culture/divertissement&nsbp;:"; -App::$strings["Love/Romance:"] = "Vie sentimentale/amoureuse :"; -App::$strings["Work/employment:"] = "Travail/Occupation "; -App::$strings["School/education:"] = "Études "; -App::$strings["Like this thing"] = "J'aime ceci"; +App::$strings["Logged out."] = "Deconnecté."; +App::$strings["Failed authentication"] = "Échec de l'authentification"; +App::$strings["Can view my normal stream and posts"] = "Peut voir les publications ordinaires sur mon canal."; +App::$strings["Can view my webpages"] = "Peut voir mes pages web"; +App::$strings["Can post on my channel page (\"wall\")"] = "Peuvent poster sur la page de mon canal (\"mur\")"; +App::$strings["Can like/dislike stuff"] = "Peuvent aimer/ne pas aimer"; +App::$strings["Profiles and things other than posts/comments"] = "Profils et autres excluant les publications/commentaires."; +App::$strings["Can forward to all my channel contacts via post @mentions"] = "Peut faire suivre à tous les contacts de mon canal via \"@mention\""; +App::$strings["Advanced - useful for creating group forum channels"] = "Avancé - utile pour les canaux de type \"forum/groupe\""; +App::$strings["Can chat with me (when available)"] = "Peut discuter avec moi (quand disponibie)"; +App::$strings["Can write to my file storage and photos"] = "Peut charger des fichiers et des photos dans mon canal"; +App::$strings["Can edit my webpages"] = "Peut modifier mes pages web"; +App::$strings["Somewhat advanced - very useful in open communities"] = "Plutôt avancé - très utile dans les communautés ouvertes"; +App::$strings["Can administer my channel resources"] = "Peut administrer les ressources de mon canal"; +App::$strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "Très avancé. Ne pas toucher, sauf si vous savez ce que vous faîtes"; App::$strings["General Features"] = "Fonctionnalités générales"; App::$strings["Content Expiration"] = "Expiration du contenu"; App::$strings["Remove posts/comments and/or private messages at a future time"] = "Supprimer les contributions/commentaires et/ou messages privés plus tard"; @@ -2021,6 +1965,7 @@ App::$strings["Profile Import/Export"] = "Importer/Exporter le profil"; App::$strings["Save and load profile details across sites/channels"] = "Sauvegarder et charger les détails d'un profil entre sites/canaux"; App::$strings["Web Pages"] = "Pages web"; App::$strings["Provide managed web pages on your channel"] = "Fournir des pages web, sous votre contrôle, sur votre canal"; +App::$strings["Provide a wiki for your channel"] = ""; App::$strings["Hide Rating"] = "Masquer l'évaluation"; App::$strings["Hide the rating buttons on your channel and profile pages. Note: People can still rate you somewhere else."] = "Masquer les boutons d'évaluation sur les pages de votre canal et de votre profil. NB : vous pourrez toujours être évalué(e) ailleurs."; App::$strings["Private Notes"] = "Notes privées"; @@ -2054,6 +1999,7 @@ App::$strings["Search by Date"] = "Chercher par date"; App::$strings["Ability to select posts by date ranges"] = "Pouvoir choisir des publications par date"; App::$strings["Privacy Groups"] = "Groupes d'accès"; App::$strings["Enable management and selection of privacy groups"] = "Active la gestion et la sélection des groupes d'accès"; +App::$strings["Saved Searches"] = "Recherches sauvegardées"; App::$strings["Save search terms for re-use"] = "Sauvegarder des termes de recherche pour utilisation ultérieure"; App::$strings["Network Personal Tab"] = "Onglet \"Me concernant\""; App::$strings["Enable tab to display only Network posts that you've interacted on"] = "Activer un onglet affichant seulement les publications du réseau sur lesquelles vous êtes intervenu"; @@ -2071,6 +2017,7 @@ App::$strings["Post Categories"] = "Catégoriser les publications"; App::$strings["Add categories to your posts"] = "Ajouter des catégories à vos publications"; App::$strings["Emoji Reactions"] = ""; App::$strings["Add emoji reaction ability to posts"] = ""; +App::$strings["Saved Folders"] = "Dossiers sauvegardés"; App::$strings["Ability to file posts under folders"] = "Permettre de classer les publications dans des dossiers"; App::$strings["Dislike Posts"] = "\"Ne pas aimer\" les publications"; App::$strings["Ability to dislike posts/comments"] = "Possibilité de \"ne pas aimer\" les publications/commentaires"; @@ -2078,63 +2025,149 @@ App::$strings["Star Posts"] = "Pouvoir mettre en avant les publications"; App::$strings["Ability to mark special posts with a star indicator"] = "Pouvoir marquer certaines publications d'une étoile"; App::$strings["Tag Cloud"] = "Nuage de tags"; App::$strings["Provide a personal tag cloud on your channel page"] = "Afficher un nuage de vos tags sur votre canal"; -App::$strings["Embedded content"] = "Contenu imbriqué"; -App::$strings["Embedding disabled"] = "Imbrication désactivée"; -App::$strings["Who can see this?"] = ""; -App::$strings["Custom selection"] = ""; -App::$strings["Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit the scope of \"Show\"."] = ""; -App::$strings["Show"] = "Montrer"; -App::$strings["Don't show"] = "Cacher"; -App::$strings["Other networks and post services"] = "Autres réseaux et services de messagerie"; -App::$strings["Post permissions %s cannot be changed %s after a post is shared.
These permissions set who is allowed to view the post."] = ""; -App::$strings["Logged out."] = "Deconnecté."; -App::$strings["Failed authentication"] = "Échec de l'authentification"; -App::$strings["Birthday"] = "Anniversaire"; -App::$strings["Age: "] = "Age :"; -App::$strings["YYYY-MM-DD or MM-DD"] = "AAAA-MM-JJ ou MM-JJ"; -App::$strings["never"] = "jamais"; -App::$strings["less than a second ago"] = "à l'instant"; -App::$strings["__ctx:e.g. 22 hours ago, 1 minute ago__ %1\$d %2\$s ago"] = "il y a %1\$d %2\$s"; -App::$strings["__ctx:relative_date__ year"] = array( - 0 => "an", - 1 => "ans", -); -App::$strings["__ctx:relative_date__ month"] = array( - 0 => "mois", - 1 => "mois", -); -App::$strings["__ctx:relative_date__ week"] = array( - 0 => "semaine", - 1 => "semaines", -); -App::$strings["__ctx:relative_date__ day"] = array( - 0 => "jour", - 1 => "jours", -); -App::$strings["__ctx:relative_date__ hour"] = array( - 0 => "heure", - 1 => "heures", -); -App::$strings["__ctx:relative_date__ minute"] = array( - 0 => "minute", - 1 => "minutes", -); -App::$strings["__ctx:relative_date__ second"] = array( - 0 => "seconde", - 1 => "secondes", -); -App::$strings["%1\$s's birthday"] = "Anniversaire de %1\$s"; -App::$strings["Happy Birthday %1\$s"] = "Joyeux Anniversaire %1\$s"; App::$strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Un groupe supprimé portant ce nom a été ressuscité. Les permissions liées aux éléments existants peuvent s'appliquer au groupe et aux membres futurs. Si ce n'est pas ce que vous attendiez, merci de créer un autre groupe avec un nom différent."; App::$strings["Add new connections to this privacy group"] = "Ajouter de nouveaux contacts à ce groupe d'accès"; App::$strings["edit"] = "modifier"; App::$strings["Edit group"] = "Modifier le groupe"; App::$strings["Add privacy group"] = "Ajouter un groupe d'accès"; App::$strings["Channels not in any privacy group"] = "Canaux n'étant dans aucun groupe d'accès"; +App::$strings["add"] = "ajouter"; +App::$strings["l F d, Y \\@ g:i A"] = "l d F Y \\à G\\hi"; +App::$strings["Starts:"] = "Début :"; +App::$strings["Finishes:"] = "Fin :"; +App::$strings["This event has been added to your calendar."] = "Cet évènement a été ajouté dans votre calendrier."; +App::$strings["Not specified"] = "Non spécifié"; +App::$strings["Needs Action"] = "Besoin d'une action"; +App::$strings["Completed"] = "Terminé"; +App::$strings["In Process"] = "En cours"; +App::$strings["Cancelled"] = "Annulé"; +App::$strings["Not a valid email address"] = "Ce n'est pas une adresse de courriel valide"; +App::$strings["Your email domain is not among those allowed on this site"] = "Votre domaine de courriel ne fait pas partie de ceux autorisés par ce site"; +App::$strings["Your email address is already registered at this site."] = "Votre adresse de courriel est déjà inscrite sur ce site."; +App::$strings["An invitation is required."] = "Une invitation est requise."; +App::$strings["Invitation could not be verified."] = "Votre invitation n'a pas pu être vérifiée."; +App::$strings["Please enter the required information."] = "Merci d'entrer les informations requises."; +App::$strings["Failed to store account information."] = "Impossible de stocker les informations liées au compte."; +App::$strings["Registration confirmation for %s"] = "Confirmation de l'inscription pour %s"; +App::$strings["Registration request at %s"] = "Demande d'inscription sur %s"; +App::$strings["your registration password"] = "votre mot de passe d'inscription"; +App::$strings["Registration details for %s"] = "Détails de l'inscription pour %s"; +App::$strings["Account approved."] = "Compte approuvé."; +App::$strings["Registration revoked for %s"] = "Inscription révoquée pour %s"; +App::$strings["Click here to upgrade."] = "Cliquez ici pour mettre à jour."; +App::$strings["This action exceeds the limits set by your subscription plan."] = "Cette action outrepasserait les limites prévues par votre forfait."; +App::$strings["This action is not available under your subscription plan."] = "Cette action n'est pas disponible avec votre forfait."; +App::$strings["Channel is blocked on this site."] = "Ce canal est bloqué sur ce site."; +App::$strings["Channel location missing."] = "Emplacement du canal introuvable."; +App::$strings["Response from remote channel was incomplete."] = "La réponse du canal distant était incomplète."; +App::$strings["Channel was deleted and no longer exists."] = "Le canal a été supprimé et n'existe plus."; +App::$strings["Protocol disabled."] = "Protocole désactivé."; +App::$strings["Channel discovery failed."] = "La tentative d'accéder au canal a échoué."; +App::$strings["Cannot connect to yourself."] = "Ne peut pas se connecter à vous."; +App::$strings["Item was not found."] = "Élément introuvable."; +App::$strings["No source file."] = "Pas de fichier source."; +App::$strings["Cannot locate file to replace"] = "Impossible de trouver le fichier à remplacer."; +App::$strings["Cannot locate file to revise/update"] = "Impossible de trouver le fichier à corriger/mettre à jour"; +App::$strings["File exceeds size limit of %d"] = "Le fichier dépasse la taille limite de %d"; +App::$strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Vous avez atteint votre limite de %1$.0f méga-octets autorisés pour le stockage des pièces-jointes."; +App::$strings["File upload failed. Possible system limit or action terminated."] = "Envoi du fichier impossible. Limite système ou action avortée."; +App::$strings["Stored file could not be verified. Upload failed."] = "Le fichier stocké n'a pu être vérifié. Echec de l'envoi."; +App::$strings["Path not available."] = "Chemin non disponible."; +App::$strings["Empty pathname"] = "Chemin vide"; +App::$strings["duplicate filename or path"] = "doublon de chemin ou de fichier"; +App::$strings["Path not found."] = "Chemin introuvable."; +App::$strings["mkdir failed."] = "mkdir a échoué."; +App::$strings["database storage failed."] = "l'écriture dans la base de données a échoué."; +App::$strings["Empty path"] = "Chemin vide"; +App::$strings["Image/photo"] = "Image/photo"; +App::$strings["Encrypted content"] = "Contenu chiffré"; +App::$strings["Install %s element: "] = "Installer %s élément"; +App::$strings["This post contains an installable %s element, however you lack permissions to install it on this site."] = "Ce message contient un élément installable %s, mais vous n'avez pas l'autorisation de l'installer sur ce site."; +App::$strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s a écrit %2\$s qui suit %3\$s"; +App::$strings["Click to open/close"] = "Cliquer pour ouvrir/fermer"; +App::$strings["spoiler"] = ""; +App::$strings["Different viewers will see this text differently"] = "Ce texte aura un rendu différent en fonction des utilisateurs"; +App::$strings["$1 wrote:"] = "$1 a écrit :"; +App::$strings["(Unknown)"] = "(Inconnu)"; +App::$strings["Visible to anybody on the internet."] = "Visible pour tout le monde sur internet."; +App::$strings["Visible to you only."] = "Visible pour vous seulement."; +App::$strings["Visible to anybody in this network."] = "Visible pour tout le monde sur ce réseau."; +App::$strings["Visible to anybody authenticated."] = "Visible aux utilisateurs authentifiés."; +App::$strings["Visible to anybody on %s."] = "Visible pour tous sur %s."; +App::$strings["Visible to all connections."] = "Visible pour tous les contacts."; +App::$strings["Visible to approved connections."] = "Visible aux contacts approuvés."; +App::$strings["Visible to specific connections."] = "Visible pour certains contacts."; +App::$strings["Privacy group is empty."] = "Groupe d'accès vide."; +App::$strings["Privacy group: %s"] = "Groupe d'accès : %s"; +App::$strings["Connection not found."] = "Contact non trouvé."; +App::$strings["profile photo"] = "photo de profil"; +App::$strings["Embedded content"] = "Contenu imbriqué"; +App::$strings["Embedding disabled"] = "Imbrication désactivée"; +App::$strings["System"] = "Système"; +App::$strings["New App"] = ""; +App::$strings["Suggestions"] = "Suggestions"; +App::$strings["See more..."] = "Voir plus..."; +App::$strings["You have %1$.0f of %2$.0f allowed connections."] = "Vous avez %1$.0f sur %2$.0f contacts autorisés."; +App::$strings["Add New Connection"] = "Ajouter un nouveau contact"; +App::$strings["Enter channel address"] = "Saisissez l'adresse du canal"; +App::$strings["Examples: bob@example.com, https://example.com/barbara"] = "Exemples : pierre@exemple.com, https://exemple.com/sophie"; +App::$strings["Notes"] = "Notes"; +App::$strings["Remove term"] = "Retirer le terme"; +App::$strings["Everything"] = "Tout"; +App::$strings["Archives"] = "Archives"; +App::$strings["Refresh"] = "Actualiser"; +App::$strings["Account settings"] = "Paramètres du compte"; +App::$strings["Channel settings"] = "Paramètres du canal"; +App::$strings["Additional features"] = "Fonctionnalités supplémentaires"; +App::$strings["Feature/Addon settings"] = "Paramètres des extensions/greffons"; +App::$strings["Display settings"] = "Paramètres d'affichage"; +App::$strings["Manage locations"] = ""; +App::$strings["Export channel"] = "Exporter le canal"; +App::$strings["Connected apps"] = "Applications connectées"; +App::$strings["Premium Channel Settings"] = "Paramètres de canal VIP"; +App::$strings["Private Mail Menu"] = "Menu des messages privés"; +App::$strings["Combined View"] = "Vue combinée"; +App::$strings["Conversations"] = "Conversations"; +App::$strings["Received Messages"] = "Messages reçus"; +App::$strings["Sent Messages"] = "Messages envoyés"; +App::$strings["No messages."] = "Pas de message."; +App::$strings["Delete conversation"] = "Supprimer la conversation"; +App::$strings["Events Tools"] = "Outils Evènements"; +App::$strings["Export Calendar"] = "Exporter le calendrier"; +App::$strings["Import Calendar"] = "Importer un calendrier"; +App::$strings["Overview"] = ""; +App::$strings["Chat Members"] = ""; +App::$strings["Wiki List"] = ""; +App::$strings["Wiki Pages"] = ""; +App::$strings["Bookmarked Chatrooms"] = "Salons favoris"; +App::$strings["Suggested Chatrooms"] = "Salons suggérés"; +App::$strings["photo/image"] = "photo/image"; +App::$strings["Click to show more"] = "Cliquer pour voir plus"; +App::$strings["Rating Tools"] = "Outils d'évaluation"; +App::$strings["Rate Me"] = "M'évaluer"; +App::$strings["View Ratings"] = "Voir mes évaluations"; +App::$strings["Forums"] = "Membres du forum"; +App::$strings["Tasks"] = "Tâches"; +App::$strings["Documentation"] = "Documentation"; +App::$strings["Project/Site Information"] = "Information sur le site/projet"; +App::$strings["For Members"] = "Pour les membres"; +App::$strings["For Administrators"] = "Pour les administrateurs"; +App::$strings["For Developers"] = "Pour les développeurs"; +App::$strings["Member registrations waiting for confirmation"] = ""; +App::$strings["Inspect queue"] = "Analyser la file d'attente"; +App::$strings["DB updates"] = "Mises à jour BDD"; +App::$strings["Plugin Features"] = "Fonctionnalités des greffons"; +App::$strings[" and "] = "et"; +App::$strings["public profile"] = "profil public"; +App::$strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s a changé %2\$s en “%3\$s”"; +App::$strings["Visit %1\$s's %2\$s"] = "Visiter %2\$s de %1\$s"; +App::$strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s a mis à jour %2\$s, modifiant %3\$s."; +App::$strings["Attachments:"] = "Pièces jointes :"; +App::$strings["\$Projectname event notification:"] = "Notification d'événement de \$Projectname :"; App::$strings["Delete this item?"] = "Supprimer cet élément?"; -App::$strings["[-] show less"] = "[-] montrer moins"; -App::$strings["[+] expand"] = "[+] déplier"; -App::$strings["[-] collapse"] = "[-] replier"; +App::$strings["%s show less"] = ""; +App::$strings["%s expand"] = ""; +App::$strings["%s collapse"] = ""; App::$strings["Password too short"] = "Mot de passe trop court"; App::$strings["Passwords do not match"] = "Les mots de passe ne correspondent pas"; App::$strings["everybody"] = "tout le monde"; @@ -2189,72 +2222,78 @@ App::$strings["__ctx:calendar__ month"] = "mois"; App::$strings["__ctx:calendar__ week"] = "semaine"; App::$strings["__ctx:calendar__ day"] = "jour"; App::$strings["__ctx:calendar__ All day"] = "Toute la journée"; -App::$strings["view full size"] = "voir en taille réelle"; -App::$strings["No Subject"] = "Pas d'objet"; -App::$strings["Friendica"] = "Friendica"; -App::$strings["OStatus"] = "OStatus"; -App::$strings["GNU-Social"] = ""; -App::$strings["RSS/Atom"] = "RSS/Atom"; -App::$strings["Diaspora"] = "Diaspora"; -App::$strings["Facebook"] = "Facebook"; -App::$strings["Zot"] = "Zot"; -App::$strings["LinkedIn"] = "Linkedin"; -App::$strings["XMPP/IM"] = "XMPP/IM"; -App::$strings["MySpace"] = "MySpace"; -App::$strings["Image exceeds website size limit of %lu bytes"] = "L'image dépasse la taille limite de %lu octets"; -App::$strings["Image file is empty."] = "L'image est vide."; -App::$strings["Photo storage failed."] = "Le stockage de l'image a échoué."; -App::$strings["a new photo"] = "une nouvelle photo"; -App::$strings["__ctx:photo_upload__ %1\$s posted %2\$s to %3\$s"] = "%1\$s a publié %2\$s pour %3\$s"; -App::$strings["Upload New Photos"] = "Ajouter des photos"; +App::$strings["%d invitation available"] = array( + 0 => "%d invitation disponible", + 1 => "%d invitations disponibles", +); +App::$strings["Find Channels"] = "Trouver des canaux"; +App::$strings["Enter name or interest"] = "Saisir nom ou centre d'intérêt"; +App::$strings["Connect/Follow"] = "Ajouter/Suivre"; +App::$strings["Examples: Robert Morgenstein, Fishing"] = "Exemples: Guillaume Martin, Course à pieds"; +App::$strings["Random Profile"] = "Un profil au hasard"; +App::$strings["Invite Friends"] = "Inviter des amis"; +App::$strings["Advanced example: name=fred and country=iceland"] = "Exemple avancé : name=fred and country=iceland"; +App::$strings["%d connection in common"] = array( + 0 => "%d contact en commun", + 1 => "%d contacts en commun", +); +App::$strings["show more"] = "montrer plus"; +App::$strings["Directory Options"] = "Options d'annuaire"; +App::$strings["Safe Mode"] = "Mode sûr"; +App::$strings["Public Forums Only"] = "Les forums publics uniquement"; +App::$strings["This Website Only"] = "Ce site uniquement"; +App::$strings["No recipient provided."] = "Pas de destinataire."; +App::$strings["[no subject]"] = "[sans objet]"; +App::$strings["Unable to determine sender."] = "Impossible de déterminer l'émetteur."; +App::$strings["Stored post could not be verified."] = "Le message stocké n'a pas pu être vérifié."; +App::$strings["Who can see this?"] = ""; +App::$strings["Custom selection"] = ""; +App::$strings["Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit the scope of \"Show\"."] = ""; +App::$strings["Show"] = "Montrer"; +App::$strings["Don't show"] = "Cacher"; +App::$strings["Other networks and post services"] = "Autres réseaux et services de messagerie"; +App::$strings["Post permissions %s cannot be changed %s after a post is shared.
These permissions set who is allowed to view the post."] = ""; +App::$strings["Birthday"] = "Anniversaire"; +App::$strings["Age: "] = "Age :"; +App::$strings["YYYY-MM-DD or MM-DD"] = "AAAA-MM-JJ ou MM-JJ"; +App::$strings["never"] = "jamais"; +App::$strings["less than a second ago"] = "à l'instant"; +App::$strings["__ctx:e.g. 22 hours ago, 1 minute ago__ %1\$d %2\$s ago"] = "il y a %1\$d %2\$s"; +App::$strings["__ctx:relative_date__ year"] = array( + 0 => "an", + 1 => "ans", +); +App::$strings["__ctx:relative_date__ month"] = array( + 0 => "mois", + 1 => "mois", +); +App::$strings["__ctx:relative_date__ week"] = array( + 0 => "semaine", + 1 => "semaines", +); +App::$strings["__ctx:relative_date__ day"] = array( + 0 => "jour", + 1 => "jours", +); +App::$strings["__ctx:relative_date__ hour"] = array( + 0 => "heure", + 1 => "heures", +); +App::$strings["__ctx:relative_date__ minute"] = array( + 0 => "minute", + 1 => "minutes", +); +App::$strings["__ctx:relative_date__ second"] = array( + 0 => "seconde", + 1 => "secondes", +); +App::$strings["%1\$s's birthday"] = "Anniversaire de %1\$s"; +App::$strings["Happy Birthday %1\$s"] = "Joyeux Anniversaire %1\$s"; +App::$strings["Public Timeline"] = "Fil public"; App::$strings["Invalid data packet"] = "Paquet de données invalide"; App::$strings["Unable to verify channel signature"] = "Impossible de vérifier la signature du canal"; App::$strings["Unable to verify site signature for %s"] = "Impossible de vérifier la signature de site pour %s"; App::$strings["invalid target signature"] = "signature de la cible invalide"; -App::$strings["New Page"] = "Nouvelle page"; -App::$strings["Title"] = "Titre"; -App::$strings["Can view my normal stream and posts"] = "Peut voir les publications ordinaires sur mon canal."; -App::$strings["Can view my default channel profile"] = "Peut voir le profil du canal par défaut."; -App::$strings["Can view my connections"] = "Peut voir mes contacts"; -App::$strings["Can view my file storage and photos"] = "Peut voir mes fichiers et photos"; -App::$strings["Can view my webpages"] = "Peut voir mes pages web"; -App::$strings["Can send me their channel stream and posts"] = "Peuvent m'envoyer leur flux et les publications de leur canal"; -App::$strings["Can post on my channel page (\"wall\")"] = "Peuvent poster sur la page de mon canal (\"mur\")"; -App::$strings["Can comment on or like my posts"] = "Peuvent commenter et/ou aimer mes publications"; -App::$strings["Can send me private mail messages"] = "Peuvent m'envoyer des messages privés"; -App::$strings["Can like/dislike stuff"] = "Peuvent aimer/ne pas aimer"; -App::$strings["Profiles and things other than posts/comments"] = "Profils et autres excluant les publications/commentaires."; -App::$strings["Can forward to all my channel contacts via post @mentions"] = "Peut faire suivre à tous les contacts de mon canal via \"@mention\""; -App::$strings["Advanced - useful for creating group forum channels"] = "Avancé - utile pour les canaux de type \"forum/groupe\""; -App::$strings["Can chat with me (when available)"] = "Peut discuter avec moi (quand disponibie)"; -App::$strings["Can write to my file storage and photos"] = "Peut charger des fichiers et des photos dans mon canal"; -App::$strings["Can edit my webpages"] = "Peut modifier mes pages web"; -App::$strings["Can source my public posts in derived channels"] = "Peut rediriger mes publications publiques vers des canaux dérivés"; -App::$strings["Somewhat advanced - very useful in open communities"] = "Plutôt avancé - très utile dans les communautés ouvertes"; -App::$strings["Can administer my channel resources"] = "Peut administrer les ressources de mon canal"; -App::$strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "Très avancé. Ne pas toucher, sauf si vous savez ce que vous faîtes"; -App::$strings["Social Networking"] = "Réseau social"; -App::$strings["Social - Mostly Public"] = "Social - surtout public"; -App::$strings["Social - Restricted"] = "Social - restreint"; -App::$strings["Social - Private"] = "Social - privé"; -App::$strings["Community Forum"] = "Forum communautaire"; -App::$strings["Forum - Mostly Public"] = "Forum - surtout public"; -App::$strings["Forum - Restricted"] = "Forum - restreint"; -App::$strings["Forum - Private"] = "Forum - privé"; -App::$strings["Feed Republish"] = "Republication de flux"; -App::$strings["Feed - Mostly Public"] = "Flux - surtout public"; -App::$strings["Feed - Restricted"] = "Flux - restreint"; -App::$strings["Special Purpose"] = "Utilisation spécifique"; -App::$strings["Special - Celebrity/Soapbox"] = "Spécial - célébrité/promotion"; -App::$strings["Special - Group Repository"] = "Spécial - dépôt partagé"; -App::$strings["Custom/Expert Mode"] = "Mode expert/spécifique"; -App::$strings[" and "] = "et"; -App::$strings["public profile"] = "profil public"; -App::$strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s a changé %2\$s en “%3\$s”"; -App::$strings["Visit %1\$s's %2\$s"] = "Visiter %2\$s de %1\$s"; -App::$strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s a mis à jour %2\$s, modifiant %3\$s."; -App::$strings["Attachments:"] = "Pièces jointes :"; -App::$strings["\$Projectname event notification:"] = "Notification d'événement de \$Projectname :"; App::$strings["Focus (Hubzilla default)"] = "Focus (par défaut pour Hubzilla)"; App::$strings["Theme settings"] = "Paramètres du thème"; App::$strings["Select scheme"] = "Définir la palette de couleurs"; @@ -2294,6 +2333,7 @@ App::$strings["__ctx:opensearch__ \$Projectname"] = ""; App::$strings["Update %s failed. See error logs."] = "La mise-à-jour %s a échoué. Merci de consulter les journaux d'erreur."; App::$strings["Update Error at %s"] = "Erreur de mise à jour sur %s"; App::$strings["Create an account to access services and applications within the Hubzilla"] = "Créez un compte pour pouvoir accéder aux services et applications de Hubzilla"; +App::$strings["Login/Email"] = ""; App::$strings["Password"] = "Mot de passe"; App::$strings["Remember me"] = "Se souvenir de moi"; App::$strings["Forgot your password?"] = "Mot de passe oublié ?"; diff --git a/view/it/hstrings.php b/view/it/hstrings.php index 21e413144..03024afab 100644 --- a/view/it/hstrings.php +++ b/view/it/hstrings.php @@ -1,6 +1,5 @@ \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/Friendica/red-matrix/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -18,11 +18,156 @@ msgstr "" "Language: nb_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ../../Zotlabs/Access/PermissionRoles.php:182 +#: ../../include/permissions.php:904 +msgid "Social Networking" +msgstr "Sosialt nettverk" + +#: ../../Zotlabs/Access/PermissionRoles.php:183 +#: ../../include/permissions.php:904 +msgid "Social - Mostly Public" +msgstr "Sosial - ganske offentlig" + +#: ../../Zotlabs/Access/PermissionRoles.php:184 +#: ../../include/permissions.php:904 +msgid "Social - Restricted" +msgstr "Sosial - begrenset" + +#: ../../Zotlabs/Access/PermissionRoles.php:185 +#: ../../include/permissions.php:904 +msgid "Social - Private" +msgstr "Sosial - privat" + +#: ../../Zotlabs/Access/PermissionRoles.php:188 +#: ../../include/permissions.php:905 +msgid "Community Forum" +msgstr "Forum for fellesskap" + +#: ../../Zotlabs/Access/PermissionRoles.php:189 +#: ../../include/permissions.php:905 +msgid "Forum - Mostly Public" +msgstr "Forum - ganske offentlig" + +#: ../../Zotlabs/Access/PermissionRoles.php:190 +#: ../../include/permissions.php:905 +msgid "Forum - Restricted" +msgstr "Forum - begrenset" + +#: ../../Zotlabs/Access/PermissionRoles.php:191 +#: ../../include/permissions.php:905 +msgid "Forum - Private" +msgstr "Forum - privat" + +#: ../../Zotlabs/Access/PermissionRoles.php:194 +#: ../../include/permissions.php:906 +msgid "Feed Republish" +msgstr "Republisering av strømmet innhold" + +#: ../../Zotlabs/Access/PermissionRoles.php:195 +#: ../../include/permissions.php:906 +msgid "Feed - Mostly Public" +msgstr "Strøm - ganske offentlig" + +#: ../../Zotlabs/Access/PermissionRoles.php:196 +#: ../../include/permissions.php:906 +msgid "Feed - Restricted" +msgstr "Strøm - begrenset" + +#: ../../Zotlabs/Access/PermissionRoles.php:199 +#: ../../include/permissions.php:907 +msgid "Special Purpose" +msgstr "Spesiell bruk" + +#: ../../Zotlabs/Access/PermissionRoles.php:200 +#: ../../include/permissions.php:907 +msgid "Special - Celebrity/Soapbox" +msgstr "Spesiell - kjendis/talerstol" + +#: ../../Zotlabs/Access/PermissionRoles.php:201 +#: ../../include/permissions.php:907 +msgid "Special - Group Repository" +msgstr "Spesiell - gruppelager" + +#: ../../Zotlabs/Access/PermissionRoles.php:204 ../../include/selectors.php:49 +#: ../../include/selectors.php:66 ../../include/selectors.php:104 +#: ../../include/selectors.php:140 ../../include/permissions.php:908 +msgid "Other" +msgstr "Annen" + +#: ../../Zotlabs/Access/PermissionRoles.php:205 +#: ../../include/permissions.php:908 +msgid "Custom/Expert Mode" +msgstr "Tilpasset/Ekspertmodus" + +#: ../../Zotlabs/Access/Permissions.php:30 +msgid "Can view my channel stream and posts" +msgstr "" + +#: ../../Zotlabs/Access/Permissions.php:31 ../../include/permissions.php:33 +msgid "Can send me their channel stream and posts" +msgstr "Kan sende meg deres kanalstrøm og innlegg" + +#: ../../Zotlabs/Access/Permissions.php:32 ../../include/permissions.php:27 +msgid "Can view my default channel profile" +msgstr "Kan se min standard kanalprofil" + +#: ../../Zotlabs/Access/Permissions.php:33 ../../include/permissions.php:28 +msgid "Can view my connections" +msgstr "Kan se mine forbindelser" + +#: ../../Zotlabs/Access/Permissions.php:34 ../../include/permissions.php:29 +msgid "Can view my file storage and photos" +msgstr "Kan se mine filer og bilder" + +#: ../../Zotlabs/Access/Permissions.php:35 +msgid "Can upload/modify my file storage and photos" +msgstr "" + +#: ../../Zotlabs/Access/Permissions.php:36 +msgid "Can view my channel webpages" +msgstr "" + +#: ../../Zotlabs/Access/Permissions.php:37 +msgid "Can create/edit my channel webpages" +msgstr "" + +#: ../../Zotlabs/Access/Permissions.php:38 +msgid "Can post on my channel (wall) page" +msgstr "" + +#: ../../Zotlabs/Access/Permissions.php:39 ../../include/permissions.php:35 +msgid "Can comment on or like my posts" +msgstr "Kan kommentere på eller like mine innlegg" + +#: ../../Zotlabs/Access/Permissions.php:40 ../../include/permissions.php:36 +msgid "Can send me private mail messages" +msgstr "Kan sende meg private meldinger" + +#: ../../Zotlabs/Access/Permissions.php:41 +msgid "Can like/dislike profiles and profile things" +msgstr "" + +#: ../../Zotlabs/Access/Permissions.php:42 +msgid "Can forward to all my channel connections via @+ mentions in posts" +msgstr "" + +#: ../../Zotlabs/Access/Permissions.php:43 +msgid "Can chat with me" +msgstr "" + +#: ../../Zotlabs/Access/Permissions.php:44 ../../include/permissions.php:44 +msgid "Can source my public posts in derived channels" +msgstr "Kan bruke mine offentlige innlegg som kanalkilde i egne kanaler" + +#: ../../Zotlabs/Access/Permissions.php:45 +msgid "Can administer my channel" +msgstr "" + #: ../../Zotlabs/Storage/Browser.php:107 ../../Zotlabs/Storage/Browser.php:239 msgid "parent" msgstr "opp et nivå" -#: ../../Zotlabs/Storage/Browser.php:131 ../../include/text.php:2620 +#: ../../Zotlabs/Storage/Browser.php:131 ../../include/text.php:2605 msgid "Collection" msgstr "Samling" @@ -46,16 +191,17 @@ msgstr "Tidsplan innboks" msgid "Schedule Outbox" msgstr "Tidsplan utboks" -#: ../../Zotlabs/Storage/Browser.php:164 ../../Zotlabs/Module/Photos.php:798 -#: ../../Zotlabs/Module/Photos.php:1243 ../../Zotlabs/Lib/Apps.php:486 -#: ../../Zotlabs/Lib/Apps.php:561 ../../include/widgets.php:1505 -#: ../../include/conversation.php:1032 +#: ../../Zotlabs/Storage/Browser.php:164 ../../Zotlabs/Module/Photos.php:796 +#: ../../Zotlabs/Module/Photos.php:1241 +#: ../../Zotlabs/Module/Embedphotos.php:147 ../../Zotlabs/Lib/Apps.php:490 +#: ../../Zotlabs/Lib/Apps.php:565 ../../include/conversation.php:1035 +#: ../../include/widgets.php:1599 msgid "Unknown" msgstr "Ukjent" #: ../../Zotlabs/Storage/Browser.php:226 ../../Zotlabs/Module/Fbrowser.php:85 -#: ../../Zotlabs/Lib/Apps.php:216 ../../include/nav.php:93 -#: ../../include/conversation.php:1639 +#: ../../Zotlabs/Lib/Apps.php:217 ../../include/nav.php:93 +#: ../../include/conversation.php:1654 msgid "Files" msgstr "Filer" @@ -68,22 +214,23 @@ msgid "Shared" msgstr "Delt" #: ../../Zotlabs/Storage/Browser.php:230 ../../Zotlabs/Storage/Browser.php:306 -#: ../../Zotlabs/Module/Blocks.php:156 ../../Zotlabs/Module/Layouts.php:182 -#: ../../Zotlabs/Module/Menu.php:118 ../../Zotlabs/Module/New_channel.php:142 -#: ../../Zotlabs/Module/Webpages.php:186 +#: ../../Zotlabs/Module/Layouts.php:184 ../../Zotlabs/Module/Menu.php:118 +#: ../../Zotlabs/Module/New_channel.php:142 +#: ../../Zotlabs/Module/Blocks.php:159 ../../Zotlabs/Module/Webpages.php:193 msgid "Create" msgstr "Lag" #: ../../Zotlabs/Storage/Browser.php:231 ../../Zotlabs/Storage/Browser.php:308 #: ../../Zotlabs/Module/Cover_photo.php:357 -#: ../../Zotlabs/Module/Photos.php:825 ../../Zotlabs/Module/Photos.php:1364 -#: ../../Zotlabs/Module/Profile_photo.php:368 ../../include/widgets.php:1518 +#: ../../Zotlabs/Module/Photos.php:823 ../../Zotlabs/Module/Photos.php:1362 +#: ../../Zotlabs/Module/Profile_photo.php:390 +#: ../../Zotlabs/Module/Embedphotos.php:159 ../../include/widgets.php:1612 msgid "Upload" msgstr "Last opp" #: ../../Zotlabs/Storage/Browser.php:235 ../../Zotlabs/Module/Chat.php:247 -#: ../../Zotlabs/Module/Admin.php:1223 ../../Zotlabs/Module/Settings.php:592 -#: ../../Zotlabs/Module/Settings.php:618 +#: ../../Zotlabs/Module/Admin.php:1223 ../../Zotlabs/Module/Settings.php:646 +#: ../../Zotlabs/Module/Settings.php:672 #: ../../Zotlabs/Module/Sharedwithme.php:99 msgid "Name" msgstr "Navn" @@ -93,7 +240,7 @@ msgid "Type" msgstr "Type" #: ../../Zotlabs/Storage/Browser.php:237 -#: ../../Zotlabs/Module/Sharedwithme.php:101 ../../include/text.php:1344 +#: ../../Zotlabs/Module/Sharedwithme.php:101 ../../include/text.php:1324 msgid "Size" msgstr "Størrelse" @@ -102,34 +249,32 @@ msgstr "Størrelse" msgid "Last Modified" msgstr "Sist endret" -#: ../../Zotlabs/Storage/Browser.php:240 ../../Zotlabs/Module/Blocks.php:157 -#: ../../Zotlabs/Module/Editblock.php:109 +#: ../../Zotlabs/Storage/Browser.php:240 ../../Zotlabs/Module/Editpost.php:84 #: ../../Zotlabs/Module/Connections.php:290 #: ../../Zotlabs/Module/Connections.php:310 -#: ../../Zotlabs/Module/Editpost.php:84 -#: ../../Zotlabs/Module/Editlayout.php:113 -#: ../../Zotlabs/Module/Editwebpage.php:146 -#: ../../Zotlabs/Module/Layouts.php:190 ../../Zotlabs/Module/Menu.php:112 -#: ../../Zotlabs/Module/Admin.php:2113 ../../Zotlabs/Module/Settings.php:652 -#: ../../Zotlabs/Module/Thing.php:260 ../../Zotlabs/Module/Webpages.php:187 -#: ../../Zotlabs/Lib/Apps.php:337 ../../Zotlabs/Lib/ThreadItem.php:106 -#: ../../include/channel.php:937 ../../include/channel.php:941 -#: ../../include/menu.php:108 ../../include/page_widgets.php:8 -#: ../../include/page_widgets.php:36 +#: ../../Zotlabs/Module/Editlayout.php:114 +#: ../../Zotlabs/Module/Editwebpage.php:145 +#: ../../Zotlabs/Module/Layouts.php:192 ../../Zotlabs/Module/Menu.php:112 +#: ../../Zotlabs/Module/Admin.php:2113 ../../Zotlabs/Module/Blocks.php:160 +#: ../../Zotlabs/Module/Editblock.php:109 +#: ../../Zotlabs/Module/Settings.php:706 ../../Zotlabs/Module/Thing.php:260 +#: ../../Zotlabs/Module/Webpages.php:194 ../../Zotlabs/Lib/Apps.php:341 +#: ../../Zotlabs/Lib/ThreadItem.php:106 ../../include/page_widgets.php:9 +#: ../../include/page_widgets.php:39 ../../include/channel.php:976 +#: ../../include/channel.php:980 ../../include/menu.php:108 msgid "Edit" msgstr "Endre" -#: ../../Zotlabs/Storage/Browser.php:241 ../../Zotlabs/Module/Blocks.php:159 -#: ../../Zotlabs/Module/Connedit.php:572 -#: ../../Zotlabs/Module/Editblock.php:134 +#: ../../Zotlabs/Storage/Browser.php:241 ../../Zotlabs/Module/Connedit.php:602 #: ../../Zotlabs/Module/Connections.php:263 -#: ../../Zotlabs/Module/Editlayout.php:136 -#: ../../Zotlabs/Module/Editwebpage.php:170 ../../Zotlabs/Module/Group.php:177 -#: ../../Zotlabs/Module/Photos.php:1173 ../../Zotlabs/Module/Admin.php:1039 +#: ../../Zotlabs/Module/Editlayout.php:137 +#: ../../Zotlabs/Module/Editwebpage.php:169 ../../Zotlabs/Module/Group.php:177 +#: ../../Zotlabs/Module/Photos.php:1171 ../../Zotlabs/Module/Admin.php:1039 #: ../../Zotlabs/Module/Admin.php:1213 ../../Zotlabs/Module/Admin.php:2114 -#: ../../Zotlabs/Module/Settings.php:653 ../../Zotlabs/Module/Thing.php:261 -#: ../../Zotlabs/Module/Webpages.php:189 ../../Zotlabs/Lib/Apps.php:338 -#: ../../Zotlabs/Lib/ThreadItem.php:126 ../../include/conversation.php:657 +#: ../../Zotlabs/Module/Blocks.php:162 ../../Zotlabs/Module/Editblock.php:134 +#: ../../Zotlabs/Module/Settings.php:707 ../../Zotlabs/Module/Thing.php:261 +#: ../../Zotlabs/Module/Webpages.php:196 ../../Zotlabs/Lib/Apps.php:342 +#: ../../Zotlabs/Lib/ThreadItem.php:126 ../../include/conversation.php:660 msgid "Delete" msgstr "Slett" @@ -155,74 +300,73 @@ msgstr "Lag ny mappe" msgid "Upload file" msgstr "Last opp fil" -#: ../../Zotlabs/Web/WebServer.php:120 ../../Zotlabs/Module/Dreport.php:10 -#: ../../Zotlabs/Module/Dreport.php:49 ../../Zotlabs/Module/Group.php:72 -#: ../../Zotlabs/Module/Like.php:284 ../../Zotlabs/Module/Import_items.php:112 +#: ../../Zotlabs/Web/WebServer.php:127 ../../Zotlabs/Module/Dreport.php:10 +#: ../../Zotlabs/Module/Dreport.php:66 ../../Zotlabs/Module/Group.php:72 +#: ../../Zotlabs/Module/Like.php:283 ../../Zotlabs/Module/Import_items.php:114 #: ../../Zotlabs/Module/Profperm.php:28 ../../Zotlabs/Module/Subthread.php:62 -#: ../../include/items.php:385 +#: ../../include/items.php:384 msgid "Permission denied" msgstr "Tillatelse avvist" -#: ../../Zotlabs/Web/WebServer.php:121 ../../Zotlabs/Web/Router.php:65 -#: ../../Zotlabs/Module/Achievements.php:34 ../../Zotlabs/Module/Blocks.php:73 -#: ../../Zotlabs/Module/Blocks.php:80 ../../Zotlabs/Module/Channel.php:105 -#: ../../Zotlabs/Module/Channel.php:226 ../../Zotlabs/Module/Channel.php:267 -#: ../../Zotlabs/Module/Chat.php:100 ../../Zotlabs/Module/Chat.php:105 -#: ../../Zotlabs/Module/Authtest.php:16 ../../Zotlabs/Module/Block.php:26 -#: ../../Zotlabs/Module/Block.php:76 ../../Zotlabs/Module/Bookmarks.php:61 -#: ../../Zotlabs/Module/Connedit.php:366 ../../Zotlabs/Module/Editblock.php:67 -#: ../../Zotlabs/Module/Common.php:39 ../../Zotlabs/Module/Connections.php:33 +#: ../../Zotlabs/Web/WebServer.php:128 ../../Zotlabs/Web/Router.php:65 +#: ../../Zotlabs/Module/Achievements.php:34 +#: ../../Zotlabs/Module/Connedit.php:390 ../../Zotlabs/Module/Id.php:76 +#: ../../Zotlabs/Module/Authtest.php:16 ../../Zotlabs/Module/Events.php:264 +#: ../../Zotlabs/Module/Bookmarks.php:61 ../../Zotlabs/Module/Editpost.php:17 +#: ../../Zotlabs/Module/Page.php:35 ../../Zotlabs/Module/Page.php:91 +#: ../../Zotlabs/Module/Connections.php:33 #: ../../Zotlabs/Module/Cover_photo.php:277 -#: ../../Zotlabs/Module/Cover_photo.php:290 -#: ../../Zotlabs/Module/Editpost.php:17 ../../Zotlabs/Module/Events.php:265 -#: ../../Zotlabs/Module/Editlayout.php:67 +#: ../../Zotlabs/Module/Cover_photo.php:290 ../../Zotlabs/Module/Chat.php:100 +#: ../../Zotlabs/Module/Chat.php:105 ../../Zotlabs/Module/Editlayout.php:67 #: ../../Zotlabs/Module/Editlayout.php:90 -#: ../../Zotlabs/Module/Editwebpage.php:69 -#: ../../Zotlabs/Module/Editwebpage.php:90 -#: ../../Zotlabs/Module/Editwebpage.php:105 -#: ../../Zotlabs/Module/Editwebpage.php:127 ../../Zotlabs/Module/Group.php:13 -#: ../../Zotlabs/Module/Api.php:13 ../../Zotlabs/Module/Api.php:18 -#: ../../Zotlabs/Module/Filestorage.php:24 -#: ../../Zotlabs/Module/Filestorage.php:79 -#: ../../Zotlabs/Module/Filestorage.php:94 -#: ../../Zotlabs/Module/Filestorage.php:121 ../../Zotlabs/Module/Item.php:210 -#: ../../Zotlabs/Module/Item.php:218 ../../Zotlabs/Module/Item.php:1070 +#: ../../Zotlabs/Module/Editwebpage.php:68 +#: ../../Zotlabs/Module/Editwebpage.php:89 +#: ../../Zotlabs/Module/Editwebpage.php:104 +#: ../../Zotlabs/Module/Editwebpage.php:126 ../../Zotlabs/Module/Group.php:13 +#: ../../Zotlabs/Module/Appman.php:75 ../../Zotlabs/Module/Pdledit.php:26 +#: ../../Zotlabs/Module/Filestorage.php:23 +#: ../../Zotlabs/Module/Filestorage.php:78 +#: ../../Zotlabs/Module/Filestorage.php:93 +#: ../../Zotlabs/Module/Filestorage.php:120 #: ../../Zotlabs/Module/Layouts.php:71 ../../Zotlabs/Module/Layouts.php:78 -#: ../../Zotlabs/Module/Layouts.php:89 ../../Zotlabs/Module/Id.php:76 -#: ../../Zotlabs/Module/Like.php:181 ../../Zotlabs/Module/Invite.php:17 -#: ../../Zotlabs/Module/Invite.php:91 ../../Zotlabs/Module/Locs.php:87 -#: ../../Zotlabs/Module/Mail.php:129 ../../Zotlabs/Module/Manage.php:10 -#: ../../Zotlabs/Module/Menu.php:78 ../../Zotlabs/Module/Message.php:18 -#: ../../Zotlabs/Module/Mood.php:116 ../../Zotlabs/Module/Network.php:17 +#: ../../Zotlabs/Module/Layouts.php:89 ../../Zotlabs/Module/Like.php:181 +#: ../../Zotlabs/Module/Profiles.php:203 ../../Zotlabs/Module/Profiles.php:601 +#: ../../Zotlabs/Module/Item.php:213 ../../Zotlabs/Module/Item.php:221 +#: ../../Zotlabs/Module/Item.php:1071 ../../Zotlabs/Module/Photos.php:73 +#: ../../Zotlabs/Module/Invite.php:17 ../../Zotlabs/Module/Invite.php:91 +#: ../../Zotlabs/Module/Locs.php:87 ../../Zotlabs/Module/Mail.php:121 +#: ../../Zotlabs/Module/Manage.php:10 ../../Zotlabs/Module/Menu.php:78 +#: ../../Zotlabs/Module/Message.php:18 ../../Zotlabs/Module/Mood.php:116 +#: ../../Zotlabs/Module/Network.php:15 ../../Zotlabs/Module/Channel.php:104 +#: ../../Zotlabs/Module/Channel.php:225 ../../Zotlabs/Module/Channel.php:266 #: ../../Zotlabs/Module/Mitem.php:115 ../../Zotlabs/Module/New_channel.php:77 #: ../../Zotlabs/Module/New_channel.php:104 -#: ../../Zotlabs/Module/Notifications.php:70 -#: ../../Zotlabs/Module/Photos.php:75 ../../Zotlabs/Module/Page.php:35 -#: ../../Zotlabs/Module/Page.php:90 ../../Zotlabs/Module/Pdledit.php:26 -#: ../../Zotlabs/Module/Poke.php:137 ../../Zotlabs/Module/Profile.php:68 -#: ../../Zotlabs/Module/Profile.php:76 ../../Zotlabs/Module/Profiles.php:203 -#: ../../Zotlabs/Module/Profiles.php:601 -#: ../../Zotlabs/Module/Profile_photo.php:256 -#: ../../Zotlabs/Module/Profile_photo.php:269 -#: ../../Zotlabs/Module/Rate.php:113 ../../Zotlabs/Module/Appman.php:75 -#: ../../Zotlabs/Module/Register.php:77 ../../Zotlabs/Module/Regmod.php:21 +#: ../../Zotlabs/Module/Notifications.php:70 ../../Zotlabs/Module/Poke.php:137 +#: ../../Zotlabs/Module/Profile.php:68 ../../Zotlabs/Module/Profile.php:76 +#: ../../Zotlabs/Module/Block.php:26 ../../Zotlabs/Module/Block.php:76 +#: ../../Zotlabs/Module/Profile_photo.php:265 +#: ../../Zotlabs/Module/Profile_photo.php:278 +#: ../../Zotlabs/Module/Blocks.php:73 ../../Zotlabs/Module/Blocks.php:80 +#: ../../Zotlabs/Module/Rate.php:113 ../../Zotlabs/Module/Editblock.php:67 +#: ../../Zotlabs/Module/Common.php:39 ../../Zotlabs/Module/Register.php:77 +#: ../../Zotlabs/Module/Regmod.php:21 #: ../../Zotlabs/Module/Service_limits.php:11 -#: ../../Zotlabs/Module/Settings.php:572 ../../Zotlabs/Module/Setup.php:215 -#: ../../Zotlabs/Module/Sharedwithme.php:11 +#: ../../Zotlabs/Module/Settings.php:626 ../../Zotlabs/Module/Setup.php:215 +#: ../../Zotlabs/Module/Sharedwithme.php:11 ../../Zotlabs/Module/Thing.php:274 +#: ../../Zotlabs/Module/Thing.php:294 ../../Zotlabs/Module/Thing.php:331 #: ../../Zotlabs/Module/Sources.php:74 ../../Zotlabs/Module/Suggest.php:30 -#: ../../Zotlabs/Module/Thing.php:274 ../../Zotlabs/Module/Thing.php:294 -#: ../../Zotlabs/Module/Thing.php:331 -#: ../../Zotlabs/Module/Viewconnections.php:25 -#: ../../Zotlabs/Module/Viewconnections.php:30 -#: ../../Zotlabs/Module/Viewsrc.php:18 ../../Zotlabs/Module/Webpages.php:74 -#: ../../Zotlabs/Lib/Chatroom.php:137 ../../include/items.php:3438 -#: ../../include/attach.php:141 ../../include/attach.php:189 -#: ../../include/attach.php:252 ../../include/attach.php:266 -#: ../../include/attach.php:273 ../../include/attach.php:338 -#: ../../include/attach.php:352 ../../include/attach.php:359 -#: ../../include/attach.php:437 ../../include/attach.php:895 -#: ../../include/attach.php:966 ../../include/attach.php:1118 -#: ../../include/photos.php:27 +#: ../../Zotlabs/Module/Webpages.php:73 +#: ../../Zotlabs/Module/Viewconnections.php:28 +#: ../../Zotlabs/Module/Viewconnections.php:33 +#: ../../Zotlabs/Module/Viewsrc.php:18 ../../Zotlabs/Module/Api.php:13 +#: ../../Zotlabs/Module/Api.php:18 ../../Zotlabs/Lib/Chatroom.php:137 +#: ../../include/photos.php:27 ../../include/attach.php:141 +#: ../../include/attach.php:189 ../../include/attach.php:252 +#: ../../include/attach.php:266 ../../include/attach.php:273 +#: ../../include/attach.php:338 ../../include/attach.php:352 +#: ../../include/attach.php:359 ../../include/attach.php:439 +#: ../../include/attach.php:901 ../../include/attach.php:972 +#: ../../include/attach.php:1124 ../../include/items.php:3448 msgid "Permission denied." msgstr "Tillatelse avslått." @@ -230,9 +374,9 @@ msgstr "Tillatelse avslått." msgid "Not Found" msgstr "Ikke funnet" -#: ../../Zotlabs/Web/Router.php:149 ../../Zotlabs/Module/Block.php:79 -#: ../../Zotlabs/Module/Display.php:117 ../../Zotlabs/Module/Help.php:97 -#: ../../Zotlabs/Module/Page.php:93 +#: ../../Zotlabs/Web/Router.php:149 ../../Zotlabs/Module/Display.php:118 +#: ../../Zotlabs/Module/Page.php:94 ../../Zotlabs/Module/Help.php:97 +#: ../../Zotlabs/Module/Block.php:79 msgid "Page not found." msgstr "Siden ikke funnet." @@ -248,13 +392,13 @@ msgstr "Fjernautentisering blokkert. Du er logget inn på dette nettstedet lokal msgid "Welcome %s. Remote authentication successful." msgstr "Velkommen %s. Ekstern autentisering er vellykket." -#: ../../Zotlabs/Module/Achievements.php:15 ../../Zotlabs/Module/Blocks.php:33 -#: ../../Zotlabs/Module/Connect.php:17 ../../Zotlabs/Module/Editblock.php:31 -#: ../../Zotlabs/Module/Editlayout.php:31 -#: ../../Zotlabs/Module/Editwebpage.php:33 -#: ../../Zotlabs/Module/Filestorage.php:60 ../../Zotlabs/Module/Hcard.php:12 -#: ../../Zotlabs/Module/Layouts.php:31 ../../Zotlabs/Module/Profile.php:20 -#: ../../Zotlabs/Module/Webpages.php:34 ../../include/channel.php:837 +#: ../../Zotlabs/Module/Achievements.php:15 +#: ../../Zotlabs/Module/Connect.php:17 ../../Zotlabs/Module/Editlayout.php:31 +#: ../../Zotlabs/Module/Editwebpage.php:32 ../../Zotlabs/Module/Hcard.php:12 +#: ../../Zotlabs/Module/Filestorage.php:59 ../../Zotlabs/Module/Layouts.php:31 +#: ../../Zotlabs/Module/Profile.php:20 ../../Zotlabs/Module/Blocks.php:33 +#: ../../Zotlabs/Module/Editblock.php:31 ../../Zotlabs/Module/Webpages.php:33 +#: ../../include/channel.php:876 msgid "Requested profile is not available." msgstr "Forespurt profil er ikke tilgjengelig." @@ -262,229 +406,6 @@ msgstr "Forespurt profil er ikke tilgjengelig." msgid "Some blurb about what to do when you're new here" msgstr "En standardtekst om hva du bør gjøre som ny her" -#: ../../Zotlabs/Module/Blocks.php:97 ../../Zotlabs/Module/Blocks.php:152 -#: ../../Zotlabs/Module/Editblock.php:108 -msgid "Block Name" -msgstr "Byggeklossens navn" - -#: ../../Zotlabs/Module/Blocks.php:151 ../../include/text.php:2265 -msgid "Blocks" -msgstr "Byggeklosser" - -#: ../../Zotlabs/Module/Blocks.php:153 -msgid "Block Title" -msgstr "Byggeklossens tittel" - -#: ../../Zotlabs/Module/Blocks.php:154 ../../Zotlabs/Module/Layouts.php:188 -#: ../../Zotlabs/Module/Menu.php:114 ../../Zotlabs/Module/Webpages.php:198 -#: ../../include/page_widgets.php:44 -msgid "Created" -msgstr "Laget" - -#: ../../Zotlabs/Module/Blocks.php:155 ../../Zotlabs/Module/Layouts.php:189 -#: ../../Zotlabs/Module/Menu.php:115 ../../Zotlabs/Module/Webpages.php:199 -#: ../../include/page_widgets.php:45 -msgid "Edited" -msgstr "Endret" - -#: ../../Zotlabs/Module/Blocks.php:158 ../../Zotlabs/Module/Layouts.php:191 -#: ../../Zotlabs/Module/Photos.php:1072 ../../Zotlabs/Module/Webpages.php:188 -#: ../../include/conversation.php:1208 -msgid "Share" -msgstr "Del" - -#: ../../Zotlabs/Module/Blocks.php:163 ../../Zotlabs/Module/Layouts.php:195 -#: ../../Zotlabs/Module/Pubsites.php:47 ../../Zotlabs/Module/Webpages.php:193 -#: ../../include/page_widgets.php:39 -msgid "View" -msgstr "Vis" - -#: ../../Zotlabs/Module/Cal.php:62 ../../Zotlabs/Module/Block.php:43 -#: ../../Zotlabs/Module/Page.php:56 ../../Zotlabs/Module/Wall_upload.php:33 -msgid "Channel not found." -msgstr "Kanalen ble ikke funnet." - -#: ../../Zotlabs/Module/Cal.php:69 -msgid "Permissions denied." -msgstr "Tillatelse avvist." - -#: ../../Zotlabs/Module/Cal.php:259 ../../Zotlabs/Module/Events.php:588 -msgid "l, F j" -msgstr "l, F j" - -#: ../../Zotlabs/Module/Cal.php:308 ../../Zotlabs/Module/Events.php:637 -#: ../../include/text.php:1732 -msgid "Link to Source" -msgstr "Lenke til kilde" - -#: ../../Zotlabs/Module/Cal.php:331 ../../Zotlabs/Module/Events.php:665 -msgid "Edit Event" -msgstr "Endre hendelse" - -#: ../../Zotlabs/Module/Cal.php:331 ../../Zotlabs/Module/Events.php:665 -msgid "Create Event" -msgstr "Lag hendelse" - -#: ../../Zotlabs/Module/Cal.php:332 ../../Zotlabs/Module/Cal.php:339 -#: ../../Zotlabs/Module/Events.php:666 ../../Zotlabs/Module/Events.php:673 -#: ../../Zotlabs/Module/Photos.php:949 -msgid "Previous" -msgstr "Forrige" - -#: ../../Zotlabs/Module/Cal.php:333 ../../Zotlabs/Module/Cal.php:340 -#: ../../Zotlabs/Module/Events.php:667 ../../Zotlabs/Module/Events.php:674 -#: ../../Zotlabs/Module/Photos.php:958 ../../Zotlabs/Module/Setup.php:267 -msgid "Next" -msgstr "Neste" - -#: ../../Zotlabs/Module/Cal.php:334 ../../Zotlabs/Module/Events.php:668 -#: ../../include/widgets.php:755 -msgid "Export" -msgstr "Eksport" - -#: ../../Zotlabs/Module/Cal.php:337 ../../Zotlabs/Module/Events.php:671 -#: ../../include/widgets.php:756 -msgid "Import" -msgstr "Importer" - -#: ../../Zotlabs/Module/Cal.php:338 ../../Zotlabs/Module/Chat.php:196 -#: ../../Zotlabs/Module/Chat.php:238 ../../Zotlabs/Module/Connect.php:98 -#: ../../Zotlabs/Module/Connedit.php:731 ../../Zotlabs/Module/Events.php:475 -#: ../../Zotlabs/Module/Events.php:672 ../../Zotlabs/Module/Group.php:85 -#: ../../Zotlabs/Module/Filestorage.php:162 -#: ../../Zotlabs/Module/Import.php:550 -#: ../../Zotlabs/Module/Import_items.php:120 -#: ../../Zotlabs/Module/Invite.php:146 ../../Zotlabs/Module/Locs.php:121 -#: ../../Zotlabs/Module/Mail.php:378 ../../Zotlabs/Module/Mood.php:139 -#: ../../Zotlabs/Module/Mitem.php:235 ../../Zotlabs/Module/Photos.php:677 -#: ../../Zotlabs/Module/Photos.php:1052 ../../Zotlabs/Module/Photos.php:1092 -#: ../../Zotlabs/Module/Photos.php:1210 ../../Zotlabs/Module/Pconfig.php:107 -#: ../../Zotlabs/Module/Pdledit.php:66 ../../Zotlabs/Module/Poke.php:186 -#: ../../Zotlabs/Module/Profiles.php:687 ../../Zotlabs/Module/Rate.php:170 -#: ../../Zotlabs/Module/Admin.php:492 ../../Zotlabs/Module/Admin.php:688 -#: ../../Zotlabs/Module/Admin.php:771 ../../Zotlabs/Module/Admin.php:1032 -#: ../../Zotlabs/Module/Admin.php:1211 ../../Zotlabs/Module/Admin.php:1421 -#: ../../Zotlabs/Module/Admin.php:1648 ../../Zotlabs/Module/Admin.php:1733 -#: ../../Zotlabs/Module/Admin.php:2116 ../../Zotlabs/Module/Appman.php:126 -#: ../../Zotlabs/Module/Settings.php:590 ../../Zotlabs/Module/Settings.php:703 -#: ../../Zotlabs/Module/Settings.php:731 ../../Zotlabs/Module/Settings.php:754 -#: ../../Zotlabs/Module/Settings.php:842 -#: ../../Zotlabs/Module/Settings.php:1034 ../../Zotlabs/Module/Setup.php:312 -#: ../../Zotlabs/Module/Setup.php:353 ../../Zotlabs/Module/Sources.php:114 -#: ../../Zotlabs/Module/Sources.php:149 ../../Zotlabs/Module/Thing.php:316 -#: ../../Zotlabs/Module/Thing.php:362 ../../Zotlabs/Module/Xchan.php:15 -#: ../../Zotlabs/Lib/ThreadItem.php:710 ../../include/widgets.php:757 -#: ../../include/widgets.php:769 ../../include/js_strings.php:22 -#: ../../view/theme/redbasic/php/config.php:99 -msgid "Submit" -msgstr "Send" - -#: ../../Zotlabs/Module/Cal.php:341 ../../Zotlabs/Module/Events.php:675 -msgid "Today" -msgstr "Idag" - -#: ../../Zotlabs/Module/Channel.php:29 ../../Zotlabs/Module/Chat.php:25 -msgid "You must be logged in to see this page." -msgstr "Du må være innloegget for å se denne siden." - -#: ../../Zotlabs/Module/Channel.php:41 -msgid "Posts and comments" -msgstr "" - -#: ../../Zotlabs/Module/Channel.php:42 -msgid "Only posts" -msgstr "" - -#: ../../Zotlabs/Module/Channel.php:102 -msgid "Insufficient permissions. Request redirected to profile page." -msgstr "Utilstrekkelig tillatelse. Forespørsel omdirigert til profilsiden." - -#: ../../Zotlabs/Module/Chat.php:181 -msgid "Room not found" -msgstr "Rommet ble ikke funnet" - -#: ../../Zotlabs/Module/Chat.php:197 -msgid "Leave Room" -msgstr "Forlat rom" - -#: ../../Zotlabs/Module/Chat.php:198 -msgid "Delete Room" -msgstr "" - -#: ../../Zotlabs/Module/Chat.php:199 -msgid "I am away right now" -msgstr "Jeg er borte akkurat nå" - -#: ../../Zotlabs/Module/Chat.php:200 -msgid "I am online" -msgstr "Jeg er online" - -#: ../../Zotlabs/Module/Chat.php:202 -msgid "Bookmark this room" -msgstr "Bokmerk dette rommet" - -#: ../../Zotlabs/Module/Chat.php:205 ../../Zotlabs/Module/Mail.php:205 -#: ../../Zotlabs/Module/Mail.php:314 ../../include/conversation.php:1176 -msgid "Please enter a link URL:" -msgstr "Vennligst skriv inn en lenke URL:" - -#: ../../Zotlabs/Module/Chat.php:206 ../../Zotlabs/Module/Mail.php:258 -#: ../../Zotlabs/Module/Mail.php:383 ../../Zotlabs/Lib/ThreadItem.php:722 -#: ../../include/conversation.php:1256 -msgid "Encrypt text" -msgstr "Krypter tekst" - -#: ../../Zotlabs/Module/Chat.php:207 ../../Zotlabs/Module/Editblock.php:111 -#: ../../Zotlabs/Module/Editwebpage.php:147 ../../Zotlabs/Module/Mail.php:252 -#: ../../Zotlabs/Module/Mail.php:377 ../../include/conversation.php:1143 -msgid "Insert web link" -msgstr "Sett inn web-lenke" - -#: ../../Zotlabs/Module/Chat.php:218 -msgid "Feature disabled." -msgstr "" - -#: ../../Zotlabs/Module/Chat.php:232 -msgid "New Chatroom" -msgstr "Nytt chatrom" - -#: ../../Zotlabs/Module/Chat.php:233 -msgid "Chatroom name" -msgstr "" - -#: ../../Zotlabs/Module/Chat.php:234 -msgid "Expiration of chats (minutes)" -msgstr "Chat utgår (antall minutter)" - -#: ../../Zotlabs/Module/Chat.php:235 ../../Zotlabs/Module/Filestorage.php:153 -#: ../../Zotlabs/Module/Photos.php:671 ../../Zotlabs/Module/Photos.php:1045 -#: ../../Zotlabs/Module/Thing.php:313 ../../Zotlabs/Module/Thing.php:359 -#: ../../include/acl_selectors.php:283 -msgid "Permissions" -msgstr "Tillatelser" - -#: ../../Zotlabs/Module/Chat.php:246 -#, php-format -msgid "%1$s's Chatrooms" -msgstr "%1$s sine chatrom" - -#: ../../Zotlabs/Module/Chat.php:251 -msgid "No chatrooms available" -msgstr "" - -#: ../../Zotlabs/Module/Chat.php:252 ../../Zotlabs/Module/Manage.php:143 -#: ../../Zotlabs/Module/Profiles.php:778 -msgid "Create New" -msgstr "" - -#: ../../Zotlabs/Module/Chat.php:255 -msgid "Expiration" -msgstr "" - -#: ../../Zotlabs/Module/Chat.php:256 -msgid "min" -msgstr "" - #: ../../Zotlabs/Module/Chatsvc.php:117 msgid "Away" msgstr "Borte" @@ -493,65 +414,6 @@ msgstr "Borte" msgid "Online" msgstr "Online" -#: ../../Zotlabs/Module/Block.php:31 ../../Zotlabs/Module/Page.php:40 -msgid "Invalid item." -msgstr "Ugyldig element." - -#: ../../Zotlabs/Module/Bookmarks.php:53 -msgid "Bookmark added" -msgstr "Bokmerke lagt til" - -#: ../../Zotlabs/Module/Bookmarks.php:75 -msgid "My Bookmarks" -msgstr "Mine bokmerker" - -#: ../../Zotlabs/Module/Bookmarks.php:86 -msgid "My Connections Bookmarks" -msgstr "Mine forbindelsers bokmerker" - -#: ../../Zotlabs/Module/Connect.php:61 ../../Zotlabs/Module/Connect.php:109 -msgid "Continue" -msgstr "Fortsett" - -#: ../../Zotlabs/Module/Connect.php:90 -msgid "Premium Channel Setup" -msgstr "Premiumkanal-oppsett" - -#: ../../Zotlabs/Module/Connect.php:92 -msgid "Enable premium channel connection restrictions" -msgstr "Slå på restriksjoner for forbindelse med premiumkanal" - -#: ../../Zotlabs/Module/Connect.php:93 -msgid "" -"Please enter your restrictions or conditions, such as paypal receipt, usage " -"guidelines, etc." -msgstr "Vennligst skriv dine restriksjoner og betingelser, slik som PayPal-kvittering, retningslinjer for bruk, og så videre." - -#: ../../Zotlabs/Module/Connect.php:95 ../../Zotlabs/Module/Connect.php:115 -msgid "" -"This channel may require additional steps or acknowledgement of the " -"following conditions prior to connecting:" -msgstr "Denne kanalen kan kreve ytterligere steg og bekreftelse av følgende betingelser før tilkobling:" - -#: ../../Zotlabs/Module/Connect.php:96 -msgid "" -"Potential connections will then see the following text before proceeding:" -msgstr "Potensielle forbindelser vil da se følgende tekst før de går videre:" - -#: ../../Zotlabs/Module/Connect.php:97 ../../Zotlabs/Module/Connect.php:118 -msgid "" -"By continuing, I certify that I have complied with any instructions provided" -" on this page." -msgstr "Ved å fortsette bekrefter jeg at jeg har oppfylt alle instruksjoner gitt på denne siden." - -#: ../../Zotlabs/Module/Connect.php:106 -msgid "(No specific instructions have been provided by the channel owner.)" -msgstr "(Ingen spesifikke instruksjoner er gitt av kanaleieren.)" - -#: ../../Zotlabs/Module/Connect.php:114 -msgid "Restricted or Premium Channel" -msgstr "Begrenset kanal eller premiumkanal" - #: ../../Zotlabs/Module/Connedit.php:80 msgid "Could not access contact record." msgstr "Fikk ikke tilgang til kontaktinformasjonen." @@ -560,317 +422,350 @@ msgstr "Fikk ikke tilgang til kontaktinformasjonen." msgid "Could not locate selected profile." msgstr "Fant ikke valgt profil." -#: ../../Zotlabs/Module/Connedit.php:227 +#: ../../Zotlabs/Module/Connedit.php:248 msgid "Connection updated." msgstr "Forbindelsen er oppdatert." -#: ../../Zotlabs/Module/Connedit.php:229 +#: ../../Zotlabs/Module/Connedit.php:250 msgid "Failed to update connection record." msgstr "Mislyktes med å oppdatere forbindelsesinformasjonen." -#: ../../Zotlabs/Module/Connedit.php:276 +#: ../../Zotlabs/Module/Connedit.php:300 msgid "is now connected to" msgstr "er nå forbundet til" -#: ../../Zotlabs/Module/Connedit.php:379 ../../Zotlabs/Module/Connedit.php:654 -#: ../../Zotlabs/Module/Events.php:459 ../../Zotlabs/Module/Events.php:460 -#: ../../Zotlabs/Module/Events.php:469 ../../Zotlabs/Module/Api.php:89 -#: ../../Zotlabs/Module/Filestorage.php:157 -#: ../../Zotlabs/Module/Filestorage.php:165 ../../Zotlabs/Module/Menu.php:100 -#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Mitem.php:158 -#: ../../Zotlabs/Module/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:232 -#: ../../Zotlabs/Module/Mitem.php:233 ../../Zotlabs/Module/Photos.php:666 -#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Admin.php:459 -#: ../../Zotlabs/Module/Removeme.php:61 ../../Zotlabs/Module/Settings.php:581 +#: ../../Zotlabs/Module/Connedit.php:403 ../../Zotlabs/Module/Connedit.php:685 +#: ../../Zotlabs/Module/Events.php:458 ../../Zotlabs/Module/Events.php:459 +#: ../../Zotlabs/Module/Events.php:468 +#: ../../Zotlabs/Module/Filestorage.php:156 +#: ../../Zotlabs/Module/Filestorage.php:164 +#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Photos.php:664 +#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 +#: ../../Zotlabs/Module/Mitem.php:158 ../../Zotlabs/Module/Mitem.php:159 +#: ../../Zotlabs/Module/Mitem.php:232 ../../Zotlabs/Module/Mitem.php:233 +#: ../../Zotlabs/Module/Admin.php:459 ../../Zotlabs/Module/Removeme.php:63 +#: ../../Zotlabs/Module/Settings.php:635 ../../Zotlabs/Module/Api.php:89 #: ../../include/dir_fns.php:143 ../../include/dir_fns.php:144 #: ../../include/dir_fns.php:145 ../../view/theme/redbasic/php/config.php:105 -#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1707 +#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1708 msgid "No" msgstr "Nei" -#: ../../Zotlabs/Module/Connedit.php:379 ../../Zotlabs/Module/Events.php:459 -#: ../../Zotlabs/Module/Events.php:460 ../../Zotlabs/Module/Events.php:469 -#: ../../Zotlabs/Module/Api.php:88 ../../Zotlabs/Module/Filestorage.php:157 -#: ../../Zotlabs/Module/Filestorage.php:165 ../../Zotlabs/Module/Menu.php:100 -#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Mitem.php:158 -#: ../../Zotlabs/Module/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:232 -#: ../../Zotlabs/Module/Mitem.php:233 ../../Zotlabs/Module/Photos.php:666 -#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Admin.php:461 -#: ../../Zotlabs/Module/Removeme.php:61 ../../Zotlabs/Module/Settings.php:581 +#: ../../Zotlabs/Module/Connedit.php:403 ../../Zotlabs/Module/Events.php:458 +#: ../../Zotlabs/Module/Events.php:459 ../../Zotlabs/Module/Events.php:468 +#: ../../Zotlabs/Module/Filestorage.php:156 +#: ../../Zotlabs/Module/Filestorage.php:164 +#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Photos.php:664 +#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 +#: ../../Zotlabs/Module/Mitem.php:158 ../../Zotlabs/Module/Mitem.php:159 +#: ../../Zotlabs/Module/Mitem.php:232 ../../Zotlabs/Module/Mitem.php:233 +#: ../../Zotlabs/Module/Admin.php:461 ../../Zotlabs/Module/Removeme.php:63 +#: ../../Zotlabs/Module/Settings.php:635 ../../Zotlabs/Module/Api.php:88 #: ../../include/dir_fns.php:143 ../../include/dir_fns.php:144 #: ../../include/dir_fns.php:145 ../../view/theme/redbasic/php/config.php:105 -#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1707 +#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1708 msgid "Yes" msgstr "Ja" -#: ../../Zotlabs/Module/Connedit.php:411 +#: ../../Zotlabs/Module/Connedit.php:435 msgid "Could not access address book record." msgstr "Fikk ikke tilgang til informasjonen i adresseboken." -#: ../../Zotlabs/Module/Connedit.php:425 +#: ../../Zotlabs/Module/Connedit.php:455 msgid "Refresh failed - channel is currently unavailable." msgstr "Oppfrisking mislyktes - kanalen er for øyeblikket utilgjengelig." -#: ../../Zotlabs/Module/Connedit.php:440 ../../Zotlabs/Module/Connedit.php:449 -#: ../../Zotlabs/Module/Connedit.php:458 ../../Zotlabs/Module/Connedit.php:467 -#: ../../Zotlabs/Module/Connedit.php:480 +#: ../../Zotlabs/Module/Connedit.php:470 ../../Zotlabs/Module/Connedit.php:479 +#: ../../Zotlabs/Module/Connedit.php:488 ../../Zotlabs/Module/Connedit.php:497 +#: ../../Zotlabs/Module/Connedit.php:510 msgid "Unable to set address book parameters." msgstr "Ikke i stand til å angi parametre for adresseboken." -#: ../../Zotlabs/Module/Connedit.php:503 +#: ../../Zotlabs/Module/Connedit.php:533 msgid "Connection has been removed." msgstr "Forbindelsen har blitt fjernet." -#: ../../Zotlabs/Module/Connedit.php:519 ../../Zotlabs/Lib/Apps.php:219 -#: ../../include/nav.php:86 ../../include/conversation.php:954 +#: ../../Zotlabs/Module/Connedit.php:549 ../../Zotlabs/Lib/Apps.php:221 +#: ../../include/nav.php:86 ../../include/conversation.php:957 msgid "View Profile" msgstr "Vis profil" -#: ../../Zotlabs/Module/Connedit.php:522 +#: ../../Zotlabs/Module/Connedit.php:552 #, php-format msgid "View %s's profile" msgstr "Vis %s sin profil" -#: ../../Zotlabs/Module/Connedit.php:526 +#: ../../Zotlabs/Module/Connedit.php:556 msgid "Refresh Permissions" msgstr "Oppfrisk tillatelser" -#: ../../Zotlabs/Module/Connedit.php:529 +#: ../../Zotlabs/Module/Connedit.php:559 msgid "Fetch updated permissions" msgstr "Hent oppdaterte tillatelser" -#: ../../Zotlabs/Module/Connedit.php:533 +#: ../../Zotlabs/Module/Connedit.php:563 msgid "Recent Activity" msgstr "Nylig aktivitet" -#: ../../Zotlabs/Module/Connedit.php:536 +#: ../../Zotlabs/Module/Connedit.php:566 msgid "View recent posts and comments" msgstr "Vis nylige innlegg og kommentarer" -#: ../../Zotlabs/Module/Connedit.php:540 ../../Zotlabs/Module/Admin.php:1041 +#: ../../Zotlabs/Module/Connedit.php:570 ../../Zotlabs/Module/Admin.php:1041 msgid "Unblock" msgstr "Ikke blokker lenger" -#: ../../Zotlabs/Module/Connedit.php:540 ../../Zotlabs/Module/Admin.php:1040 +#: ../../Zotlabs/Module/Connedit.php:570 ../../Zotlabs/Module/Admin.php:1040 msgid "Block" msgstr "Blokker" -#: ../../Zotlabs/Module/Connedit.php:543 +#: ../../Zotlabs/Module/Connedit.php:573 msgid "Block (or Unblock) all communications with this connection" msgstr "Blokker eller fjern blokkering av all kommunikasjon med denne forbindelsen" -#: ../../Zotlabs/Module/Connedit.php:544 +#: ../../Zotlabs/Module/Connedit.php:574 msgid "This connection is blocked!" msgstr "Denne forbindelsen er blokkert!" -#: ../../Zotlabs/Module/Connedit.php:548 +#: ../../Zotlabs/Module/Connedit.php:578 msgid "Unignore" msgstr "Ikke ignorer lenger" -#: ../../Zotlabs/Module/Connedit.php:548 +#: ../../Zotlabs/Module/Connedit.php:578 #: ../../Zotlabs/Module/Connections.php:277 #: ../../Zotlabs/Module/Notifications.php:55 msgid "Ignore" msgstr "Ignorer" -#: ../../Zotlabs/Module/Connedit.php:551 +#: ../../Zotlabs/Module/Connedit.php:581 msgid "Ignore (or Unignore) all inbound communications from this connection" msgstr "Ignorer eller fjern ignorering av all inngående kommunikasjon fra denne forbindelsen" -#: ../../Zotlabs/Module/Connedit.php:552 +#: ../../Zotlabs/Module/Connedit.php:582 msgid "This connection is ignored!" msgstr "Denne forbindelsen er ignorert!" -#: ../../Zotlabs/Module/Connedit.php:556 +#: ../../Zotlabs/Module/Connedit.php:586 msgid "Unarchive" msgstr "Ikke arkiver lenger" -#: ../../Zotlabs/Module/Connedit.php:556 +#: ../../Zotlabs/Module/Connedit.php:586 msgid "Archive" msgstr "Arkiver" -#: ../../Zotlabs/Module/Connedit.php:559 +#: ../../Zotlabs/Module/Connedit.php:589 msgid "" "Archive (or Unarchive) this connection - mark channel dead but keep content" msgstr "Arkiver eller fjern arkivering av denne forbindelsen - marker kanal som død, men behold innhold" -#: ../../Zotlabs/Module/Connedit.php:560 +#: ../../Zotlabs/Module/Connedit.php:590 msgid "This connection is archived!" msgstr "Denne forbindelsen er arkivert!" -#: ../../Zotlabs/Module/Connedit.php:564 +#: ../../Zotlabs/Module/Connedit.php:594 msgid "Unhide" msgstr "Ikke skjul lenger" -#: ../../Zotlabs/Module/Connedit.php:564 +#: ../../Zotlabs/Module/Connedit.php:594 msgid "Hide" msgstr "Skjul" -#: ../../Zotlabs/Module/Connedit.php:567 +#: ../../Zotlabs/Module/Connedit.php:597 msgid "Hide or Unhide this connection from your other connections" msgstr "Skjul eller fjern skjuling av denne forbindelsen fra dine andre forbindelser" -#: ../../Zotlabs/Module/Connedit.php:568 +#: ../../Zotlabs/Module/Connedit.php:598 msgid "This connection is hidden!" msgstr "Denne forbindelsen er skjult!" -#: ../../Zotlabs/Module/Connedit.php:575 +#: ../../Zotlabs/Module/Connedit.php:605 msgid "Delete this connection" msgstr "Slett denne forbindelsen" -#: ../../Zotlabs/Module/Connedit.php:590 ../../include/widgets.php:493 +#: ../../Zotlabs/Module/Connedit.php:620 ../../include/widgets.php:493 msgid "Me" msgstr "Meg" -#: ../../Zotlabs/Module/Connedit.php:591 ../../include/widgets.php:494 +#: ../../Zotlabs/Module/Connedit.php:621 ../../include/widgets.php:494 msgid "Family" msgstr "Familie" -#: ../../Zotlabs/Module/Connedit.php:592 ../../Zotlabs/Module/Settings.php:342 -#: ../../Zotlabs/Module/Settings.php:346 ../../Zotlabs/Module/Settings.php:347 -#: ../../Zotlabs/Module/Settings.php:350 ../../Zotlabs/Module/Settings.php:361 -#: ../../include/widgets.php:495 ../../include/selectors.php:123 -#: ../../include/channel.php:389 ../../include/channel.php:390 -#: ../../include/channel.php:397 +#: ../../Zotlabs/Module/Connedit.php:622 ../../Zotlabs/Module/Settings.php:391 +#: ../../Zotlabs/Module/Settings.php:395 ../../Zotlabs/Module/Settings.php:396 +#: ../../Zotlabs/Module/Settings.php:399 ../../Zotlabs/Module/Settings.php:410 +#: ../../include/channel.php:402 ../../include/channel.php:403 +#: ../../include/channel.php:410 ../../include/selectors.php:123 +#: ../../include/widgets.php:495 msgid "Friends" msgstr "Venner" -#: ../../Zotlabs/Module/Connedit.php:593 ../../include/widgets.php:496 +#: ../../Zotlabs/Module/Connedit.php:623 ../../include/widgets.php:496 msgid "Acquaintances" msgstr "Bekjente" -#: ../../Zotlabs/Module/Connedit.php:594 +#: ../../Zotlabs/Module/Connedit.php:624 #: ../../Zotlabs/Module/Connections.php:92 #: ../../Zotlabs/Module/Connections.php:107 ../../include/widgets.php:497 msgid "All" msgstr "Alle" -#: ../../Zotlabs/Module/Connedit.php:654 +#: ../../Zotlabs/Module/Connedit.php:685 msgid "Approve this connection" msgstr "Godta denne forbindelsen" -#: ../../Zotlabs/Module/Connedit.php:654 +#: ../../Zotlabs/Module/Connedit.php:685 msgid "Accept connection to allow communication" msgstr "Godta denne forbindelsen for å tillate kommunikasjon" -#: ../../Zotlabs/Module/Connedit.php:659 +#: ../../Zotlabs/Module/Connedit.php:690 msgid "Set Affinity" msgstr "Angi nærhet" -#: ../../Zotlabs/Module/Connedit.php:662 +#: ../../Zotlabs/Module/Connedit.php:693 msgid "Set Profile" msgstr "Angi profil" -#: ../../Zotlabs/Module/Connedit.php:665 +#: ../../Zotlabs/Module/Connedit.php:696 msgid "Set Affinity & Profile" msgstr "Angi nærhet og profil" -#: ../../Zotlabs/Module/Connedit.php:698 +#: ../../Zotlabs/Module/Connedit.php:745 msgid "none" msgstr "ingen" -#: ../../Zotlabs/Module/Connedit.php:702 ../../include/widgets.php:614 +#: ../../Zotlabs/Module/Connedit.php:749 ../../include/widgets.php:623 msgid "Connection Default Permissions" msgstr "Forbindelsens standard tillatelser" -#: ../../Zotlabs/Module/Connedit.php:702 ../../include/items.php:3926 +#: ../../Zotlabs/Module/Connedit.php:749 ../../include/items.php:3935 #, php-format msgid "Connection: %s" msgstr "Forbindelse: %s" -#: ../../Zotlabs/Module/Connedit.php:703 +#: ../../Zotlabs/Module/Connedit.php:750 msgid "Apply these permissions automatically" msgstr "Bruk disse tillatelsene automatisk" -#: ../../Zotlabs/Module/Connedit.php:703 +#: ../../Zotlabs/Module/Connedit.php:750 msgid "Connection requests will be approved without your interaction" msgstr "Forespørsler om forbindelse vil bli godkjent automatisk" -#: ../../Zotlabs/Module/Connedit.php:705 +#: ../../Zotlabs/Module/Connedit.php:752 msgid "This connection's primary address is" msgstr "Denne forbindelsens primære adresse er" -#: ../../Zotlabs/Module/Connedit.php:706 +#: ../../Zotlabs/Module/Connedit.php:753 msgid "Available locations:" msgstr "Tilgjengelige plasseringer:" -#: ../../Zotlabs/Module/Connedit.php:710 +#: ../../Zotlabs/Module/Connedit.php:757 msgid "" "The permissions indicated on this page will be applied to all new " "connections." msgstr "Tillatelsene angitt på denne siden gjøres gjeldende for alle nye forbindelser." -#: ../../Zotlabs/Module/Connedit.php:711 +#: ../../Zotlabs/Module/Connedit.php:758 msgid "Connection Tools" -msgstr "" +msgstr "Forbindelsesverktøy" -#: ../../Zotlabs/Module/Connedit.php:713 +#: ../../Zotlabs/Module/Connedit.php:760 msgid "Slide to adjust your degree of friendship" msgstr "Flytt for å justere din grad av vennskap" -#: ../../Zotlabs/Module/Connedit.php:714 ../../Zotlabs/Module/Rate.php:159 +#: ../../Zotlabs/Module/Connedit.php:761 ../../Zotlabs/Module/Rate.php:159 #: ../../include/js_strings.php:20 msgid "Rating" msgstr "Vurdering" -#: ../../Zotlabs/Module/Connedit.php:715 +#: ../../Zotlabs/Module/Connedit.php:762 msgid "Slide to adjust your rating" msgstr "Flytt for å justere din vurdering" -#: ../../Zotlabs/Module/Connedit.php:716 ../../Zotlabs/Module/Connedit.php:721 +#: ../../Zotlabs/Module/Connedit.php:763 ../../Zotlabs/Module/Connedit.php:768 msgid "Optionally explain your rating" msgstr "Velg om du vil forklare vurderingen" -#: ../../Zotlabs/Module/Connedit.php:718 +#: ../../Zotlabs/Module/Connedit.php:765 msgid "Custom Filter" msgstr "Tilpasset filter" -#: ../../Zotlabs/Module/Connedit.php:719 +#: ../../Zotlabs/Module/Connedit.php:766 msgid "Only import posts with this text" msgstr "Bare importer innlegg med disse ordene" -#: ../../Zotlabs/Module/Connedit.php:719 ../../Zotlabs/Module/Connedit.php:720 +#: ../../Zotlabs/Module/Connedit.php:766 ../../Zotlabs/Module/Connedit.php:767 msgid "" "words one per line or #tags or /patterns/ or lang=xx, leave blank to import " "all posts" msgstr "ord per linje eller #merkelapper eller /mønster/ eller språk lang=xx, la stå blankt for å importere alle innlegg" -#: ../../Zotlabs/Module/Connedit.php:720 +#: ../../Zotlabs/Module/Connedit.php:767 msgid "Do not import posts with this text" msgstr "Ikke importer innlegg med denne teksten" -#: ../../Zotlabs/Module/Connedit.php:722 +#: ../../Zotlabs/Module/Connedit.php:769 msgid "This information is public!" msgstr "Denne informasjonen er offentlig!" -#: ../../Zotlabs/Module/Connedit.php:727 +#: ../../Zotlabs/Module/Connedit.php:774 msgid "Connection Pending Approval" msgstr "Forbindelse venter på godkjenning" -#: ../../Zotlabs/Module/Connedit.php:730 +#: ../../Zotlabs/Module/Connedit.php:777 msgid "inherited" msgstr "arvet" -#: ../../Zotlabs/Module/Connedit.php:732 +#: ../../Zotlabs/Module/Connedit.php:778 ../../Zotlabs/Module/Connect.php:98 +#: ../../Zotlabs/Module/Events.php:474 ../../Zotlabs/Module/Cal.php:338 +#: ../../Zotlabs/Module/Chat.php:196 ../../Zotlabs/Module/Chat.php:238 +#: ../../Zotlabs/Module/Group.php:85 ../../Zotlabs/Module/Appman.php:126 +#: ../../Zotlabs/Module/Pdledit.php:66 +#: ../../Zotlabs/Module/Filestorage.php:161 +#: ../../Zotlabs/Module/Profiles.php:687 ../../Zotlabs/Module/Import.php:560 +#: ../../Zotlabs/Module/Photos.php:675 ../../Zotlabs/Module/Photos.php:1050 +#: ../../Zotlabs/Module/Photos.php:1090 ../../Zotlabs/Module/Photos.php:1208 +#: ../../Zotlabs/Module/Import_items.php:122 +#: ../../Zotlabs/Module/Invite.php:146 ../../Zotlabs/Module/Locs.php:121 +#: ../../Zotlabs/Module/Mail.php:370 ../../Zotlabs/Module/Mood.php:139 +#: ../../Zotlabs/Module/Mitem.php:235 ../../Zotlabs/Module/Admin.php:492 +#: ../../Zotlabs/Module/Admin.php:688 ../../Zotlabs/Module/Admin.php:771 +#: ../../Zotlabs/Module/Admin.php:1032 ../../Zotlabs/Module/Admin.php:1211 +#: ../../Zotlabs/Module/Admin.php:1421 ../../Zotlabs/Module/Admin.php:1648 +#: ../../Zotlabs/Module/Admin.php:1733 ../../Zotlabs/Module/Admin.php:2116 +#: ../../Zotlabs/Module/Poke.php:186 ../../Zotlabs/Module/Pconfig.php:107 +#: ../../Zotlabs/Module/Rate.php:170 ../../Zotlabs/Module/Settings.php:644 +#: ../../Zotlabs/Module/Settings.php:757 ../../Zotlabs/Module/Settings.php:806 +#: ../../Zotlabs/Module/Settings.php:832 ../../Zotlabs/Module/Settings.php:855 +#: ../../Zotlabs/Module/Settings.php:943 +#: ../../Zotlabs/Module/Settings.php:1129 ../../Zotlabs/Module/Setup.php:312 +#: ../../Zotlabs/Module/Setup.php:353 ../../Zotlabs/Module/Thing.php:316 +#: ../../Zotlabs/Module/Thing.php:362 ../../Zotlabs/Module/Sources.php:114 +#: ../../Zotlabs/Module/Sources.php:149 ../../Zotlabs/Module/Xchan.php:15 +#: ../../Zotlabs/Lib/ThreadItem.php:710 ../../include/widgets.php:763 +#: ../../include/js_strings.php:22 ../../view/theme/redbasic/php/config.php:99 +msgid "Submit" +msgstr "Send" + +#: ../../Zotlabs/Module/Connedit.php:779 #, php-format msgid "" "Please choose the profile you would like to display to %s when viewing your " "profile securely." msgstr "Vennligst velg profilen du ønsker å vise %s når profilen din ses på en sikret måte. " -#: ../../Zotlabs/Module/Connedit.php:734 +#: ../../Zotlabs/Module/Connedit.php:781 msgid "Their Settings" msgstr "Deres innstillinger" -#: ../../Zotlabs/Module/Connedit.php:735 +#: ../../Zotlabs/Module/Connedit.php:782 msgid "My Settings" msgstr "Mine innstillinger" -#: ../../Zotlabs/Module/Connedit.php:737 +#: ../../Zotlabs/Module/Connedit.php:784 msgid "Individual Permissions" msgstr "Individuelle tillatelser" -#: ../../Zotlabs/Module/Connedit.php:738 +#: ../../Zotlabs/Module/Connedit.php:785 msgid "" "Some permissions may be inherited from your channel's privacy settings, which have higher " @@ -878,7 +773,7 @@ msgid "" " settings here." msgstr "Noen tillatelser kan være arvet fra din kanals personverninnstillinger, som har høyere prioritet enn individuelle innstillinger. Du kan ikke endre arvede innstillingene her." -#: ../../Zotlabs/Module/Connedit.php:739 +#: ../../Zotlabs/Module/Connedit.php:786 msgid "" "Some permissions may be inherited from your channel's privacy settings, which have higher " @@ -886,17 +781,121 @@ msgid "" "they wont have any impact unless the inherited setting changes." msgstr "Noen tillatelser kan være arvet fra din kanals personverninnstillinger, som har høyere prioritet enn individuelle innstillinger. Du kan endre disse innstillingene her, men de vil ikke få noen effekt før de arvede innstillingene endres." -#: ../../Zotlabs/Module/Connedit.php:740 +#: ../../Zotlabs/Module/Connedit.php:787 msgid "Last update:" msgstr "Siste oppdatering:" -#: ../../Zotlabs/Module/Directory.php:63 ../../Zotlabs/Module/Display.php:17 -#: ../../Zotlabs/Module/Photos.php:522 ../../Zotlabs/Module/Ratings.php:86 +#: ../../Zotlabs/Module/Display.php:17 ../../Zotlabs/Module/Directory.php:63 +#: ../../Zotlabs/Module/Photos.php:520 ../../Zotlabs/Module/Ratings.php:86 #: ../../Zotlabs/Module/Search.php:17 -#: ../../Zotlabs/Module/Viewconnections.php:20 +#: ../../Zotlabs/Module/Viewconnections.php:23 msgid "Public access denied." msgstr "Offentlig tilgang avvist." +#: ../../Zotlabs/Module/Display.php:40 ../../Zotlabs/Module/Filestorage.php:32 +#: ../../Zotlabs/Module/Admin.php:164 ../../Zotlabs/Module/Admin.php:1255 +#: ../../Zotlabs/Module/Admin.php:1561 ../../Zotlabs/Module/Thing.php:89 +#: ../../Zotlabs/Module/Viewsrc.php:24 ../../include/items.php:3369 +msgid "Item not found." +msgstr "Elementet ble ikke funnet." + +#: ../../Zotlabs/Module/Id.php:13 +msgid "First Name" +msgstr "Fornavn" + +#: ../../Zotlabs/Module/Id.php:14 +msgid "Last Name" +msgstr "Etternavn" + +#: ../../Zotlabs/Module/Id.php:15 +msgid "Nickname" +msgstr "Kallenavn" + +#: ../../Zotlabs/Module/Id.php:16 +msgid "Full Name" +msgstr "Fullt navn" + +#: ../../Zotlabs/Module/Id.php:17 ../../Zotlabs/Module/Id.php:18 +#: ../../Zotlabs/Module/Admin.php:1035 ../../Zotlabs/Module/Admin.php:1047 +#: ../../include/network.php:2203 +msgid "Email" +msgstr "E-post" + +#: ../../Zotlabs/Module/Id.php:19 ../../Zotlabs/Module/Id.php:20 +#: ../../Zotlabs/Module/Id.php:21 ../../Zotlabs/Lib/Apps.php:238 +msgid "Profile Photo" +msgstr "Profilbilde" + +#: ../../Zotlabs/Module/Id.php:22 +msgid "Profile Photo 16px" +msgstr "Profilbilde 16px" + +#: ../../Zotlabs/Module/Id.php:23 +msgid "Profile Photo 32px" +msgstr "Profilbilde 32px" + +#: ../../Zotlabs/Module/Id.php:24 +msgid "Profile Photo 48px" +msgstr "Profilbilde 48px" + +#: ../../Zotlabs/Module/Id.php:25 +msgid "Profile Photo 64px" +msgstr "Profilbilde 64px" + +#: ../../Zotlabs/Module/Id.php:26 +msgid "Profile Photo 80px" +msgstr "Profilbilde 80px" + +#: ../../Zotlabs/Module/Id.php:27 +msgid "Profile Photo 128px" +msgstr "Profilbilde 128px" + +#: ../../Zotlabs/Module/Id.php:28 +msgid "Timezone" +msgstr "Tidssone" + +#: ../../Zotlabs/Module/Id.php:29 ../../Zotlabs/Module/Profiles.php:731 +msgid "Homepage URL" +msgstr "Hjemmeside URL" + +#: ../../Zotlabs/Module/Id.php:30 ../../Zotlabs/Lib/Apps.php:236 +msgid "Language" +msgstr "Språk" + +#: ../../Zotlabs/Module/Id.php:31 +msgid "Birth Year" +msgstr "Fødselsår" + +#: ../../Zotlabs/Module/Id.php:32 +msgid "Birth Month" +msgstr "Fødselsmåne" + +#: ../../Zotlabs/Module/Id.php:33 +msgid "Birth Day" +msgstr "Fødselsdag" + +#: ../../Zotlabs/Module/Id.php:34 +msgid "Birthdate" +msgstr "Fødselsdato" + +#: ../../Zotlabs/Module/Id.php:35 ../../Zotlabs/Module/Profiles.php:454 +msgid "Gender" +msgstr "Kjønn" + +#: ../../Zotlabs/Module/Id.php:108 ../../include/selectors.php:49 +#: ../../include/selectors.php:66 +msgid "Male" +msgstr "Mannlig" + +#: ../../Zotlabs/Module/Id.php:110 ../../include/selectors.php:49 +#: ../../include/selectors.php:66 +msgid "Female" +msgstr "Kvinnelig" + +#: ../../Zotlabs/Module/Follow.php:34 +msgid "Channel added." +msgstr "Kanal lagt til." + #: ../../Zotlabs/Module/Directory.php:243 #, php-format msgid "%d rating" @@ -916,12 +915,12 @@ msgstr "Status:" msgid "Homepage: " msgstr "Hjemmeside:" -#: ../../Zotlabs/Module/Directory.php:306 ../../include/channel.php:1183 +#: ../../Zotlabs/Module/Directory.php:306 ../../include/channel.php:1223 msgid "Age:" msgstr "Alder:" -#: ../../Zotlabs/Module/Directory.php:311 ../../include/event.php:52 -#: ../../include/event.php:84 ../../include/channel.php:1027 +#: ../../Zotlabs/Module/Directory.php:311 ../../include/channel.php:1066 +#: ../../include/event.php:52 ../../include/event.php:84 #: ../../include/bb2diaspora.php:507 msgid "Location:" msgstr "Plassering:" @@ -930,18 +929,18 @@ msgstr "Plassering:" msgid "Description:" msgstr "Beskrivelse:" -#: ../../Zotlabs/Module/Directory.php:322 ../../include/channel.php:1199 +#: ../../Zotlabs/Module/Directory.php:322 ../../include/channel.php:1239 msgid "Hometown:" msgstr "Hjemby:" -#: ../../Zotlabs/Module/Directory.php:324 ../../include/channel.php:1207 +#: ../../Zotlabs/Module/Directory.php:324 ../../include/channel.php:1247 msgid "About:" msgstr "Om:" #: ../../Zotlabs/Module/Directory.php:325 ../../Zotlabs/Module/Match.php:68 -#: ../../Zotlabs/Module/Suggest.php:56 ../../include/widgets.php:147 -#: ../../include/widgets.php:184 ../../include/connections.php:78 -#: ../../include/conversation.php:956 ../../include/channel.php:1012 +#: ../../Zotlabs/Module/Suggest.php:56 ../../include/channel.php:1051 +#: ../../include/connections.php:78 ../../include/conversation.php:959 +#: ../../include/widgets.php:147 ../../include/widgets.php:184 msgid "Connect" msgstr "Koble" @@ -1017,38 +1016,322 @@ msgstr "Eldst til nyest" msgid "No entries (some entries may be hidden)." msgstr "Ingen oppføringer (noen oppføringer kan være skjult)." -#: ../../Zotlabs/Module/Display.php:40 ../../Zotlabs/Module/Filestorage.php:33 -#: ../../Zotlabs/Module/Admin.php:164 ../../Zotlabs/Module/Admin.php:1255 -#: ../../Zotlabs/Module/Admin.php:1561 ../../Zotlabs/Module/Thing.php:89 -#: ../../Zotlabs/Module/Viewsrc.php:24 ../../include/items.php:3359 -msgid "Item not found." -msgstr "Elementet ble ikke funnet." +#: ../../Zotlabs/Module/Connect.php:61 ../../Zotlabs/Module/Connect.php:109 +msgid "Continue" +msgstr "Fortsett" + +#: ../../Zotlabs/Module/Connect.php:90 +msgid "Premium Channel Setup" +msgstr "Premiumkanal-oppsett" + +#: ../../Zotlabs/Module/Connect.php:92 +msgid "Enable premium channel connection restrictions" +msgstr "Slå på restriksjoner for forbindelse med premiumkanal" + +#: ../../Zotlabs/Module/Connect.php:93 +msgid "" +"Please enter your restrictions or conditions, such as paypal receipt, usage " +"guidelines, etc." +msgstr "Vennligst skriv dine restriksjoner og betingelser, slik som PayPal-kvittering, retningslinjer for bruk, og så videre." + +#: ../../Zotlabs/Module/Connect.php:95 ../../Zotlabs/Module/Connect.php:115 +msgid "" +"This channel may require additional steps or acknowledgement of the " +"following conditions prior to connecting:" +msgstr "Denne kanalen kan kreve ytterligere steg og bekreftelse av følgende betingelser før tilkobling:" + +#: ../../Zotlabs/Module/Connect.php:96 +msgid "" +"Potential connections will then see the following text before proceeding:" +msgstr "Potensielle forbindelser vil da se følgende tekst før de går videre:" + +#: ../../Zotlabs/Module/Connect.php:97 ../../Zotlabs/Module/Connect.php:118 +msgid "" +"By continuing, I certify that I have complied with any instructions provided" +" on this page." +msgstr "Ved å fortsette bekrefter jeg at jeg har oppfylt alle instruksjoner gitt på denne siden." + +#: ../../Zotlabs/Module/Connect.php:106 +msgid "(No specific instructions have been provided by the channel owner.)" +msgstr "(Ingen spesifikke instruksjoner er gitt av kanaleieren.)" + +#: ../../Zotlabs/Module/Connect.php:114 +msgid "Restricted or Premium Channel" +msgstr "Begrenset kanal eller premiumkanal" + +#: ../../Zotlabs/Module/Events.php:25 +msgid "Calendar entries imported." +msgstr "Kalenderhendelsene er importert." + +#: ../../Zotlabs/Module/Events.php:27 +msgid "No calendar entries found." +msgstr "Ingen kalenderhendelser funnet." + +#: ../../Zotlabs/Module/Events.php:104 +msgid "Event can not end before it has started." +msgstr "Hendelsen kan ikke slutte før den starter." + +#: ../../Zotlabs/Module/Events.php:106 ../../Zotlabs/Module/Events.php:115 +#: ../../Zotlabs/Module/Events.php:135 +msgid "Unable to generate preview." +msgstr "Klarer ikke å lage forhåndsvisning." + +#: ../../Zotlabs/Module/Events.php:113 +msgid "Event title and start time are required." +msgstr "Hendelsestittel og starttidspunkt er påkrevd." + +#: ../../Zotlabs/Module/Events.php:133 ../../Zotlabs/Module/Events.php:258 +msgid "Event not found." +msgstr "Hendelsen ble ikke funnet." + +#: ../../Zotlabs/Module/Events.php:253 ../../Zotlabs/Module/Like.php:372 +#: ../../Zotlabs/Module/Tagger.php:51 ../../include/conversation.php:123 +#: ../../include/text.php:1924 ../../include/event.php:951 +msgid "event" +msgstr "hendelse" + +#: ../../Zotlabs/Module/Events.php:448 +msgid "Edit event title" +msgstr "Endre tittel på hendelse" + +#: ../../Zotlabs/Module/Events.php:448 +msgid "Event title" +msgstr "Tittel på hendelse" + +#: ../../Zotlabs/Module/Events.php:448 ../../Zotlabs/Module/Events.php:453 +#: ../../Zotlabs/Module/Appman.php:115 ../../Zotlabs/Module/Appman.php:116 +#: ../../Zotlabs/Module/Profiles.php:709 ../../Zotlabs/Module/Profiles.php:713 +#: ../../include/datetime.php:245 +msgid "Required" +msgstr "Påkrevd" + +#: ../../Zotlabs/Module/Events.php:450 +msgid "Categories (comma-separated list)" +msgstr "Kategorier (kommaseparert liste)" + +#: ../../Zotlabs/Module/Events.php:451 +msgid "Edit Category" +msgstr "Endre kategori" + +#: ../../Zotlabs/Module/Events.php:451 +msgid "Category" +msgstr "Kategori" + +#: ../../Zotlabs/Module/Events.php:454 +msgid "Edit start date and time" +msgstr "Endre startdato og tidspunkt" + +#: ../../Zotlabs/Module/Events.php:454 +msgid "Start date and time" +msgstr "Startdato og tidspunkt" + +#: ../../Zotlabs/Module/Events.php:455 ../../Zotlabs/Module/Events.php:458 +msgid "Finish date and time are not known or not relevant" +msgstr "Sluttdato og tidspunkt er ikke kjent eller ikke relevant" + +#: ../../Zotlabs/Module/Events.php:457 +msgid "Edit finish date and time" +msgstr "Endre sluttdato og tidspunkt" + +#: ../../Zotlabs/Module/Events.php:457 +msgid "Finish date and time" +msgstr "Sluttdato og tidspunkt" + +#: ../../Zotlabs/Module/Events.php:459 ../../Zotlabs/Module/Events.php:460 +msgid "Adjust for viewer timezone" +msgstr "Juster i forhold til tilskuerens tidssone" + +#: ../../Zotlabs/Module/Events.php:459 +msgid "" +"Important for events that happen in a particular place. Not practical for " +"global holidays." +msgstr "Viktig for hendelser som skjer på et bestemt sted. Ikke praktisk for globale ferier eller fridager." + +#: ../../Zotlabs/Module/Events.php:461 +msgid "Edit Description" +msgstr "Endre beskrivelse" + +#: ../../Zotlabs/Module/Events.php:461 ../../Zotlabs/Module/Appman.php:117 +#: ../../Zotlabs/Module/Rbmark.php:101 +msgid "Description" +msgstr "Beskrivelse" + +#: ../../Zotlabs/Module/Events.php:463 +msgid "Edit Location" +msgstr "Endre plassering" + +#: ../../Zotlabs/Module/Events.php:463 ../../Zotlabs/Module/Profiles.php:477 +#: ../../Zotlabs/Module/Profiles.php:698 ../../Zotlabs/Module/Locs.php:117 +#: ../../Zotlabs/Module/Pubsites.php:41 ../../include/js_strings.php:25 +msgid "Location" +msgstr "Plassering" + +#: ../../Zotlabs/Module/Events.php:466 ../../Zotlabs/Module/Events.php:468 +msgid "Share this event" +msgstr "Del denne hendelsen" + +#: ../../Zotlabs/Module/Events.php:469 ../../Zotlabs/Module/Photos.php:1091 +#: ../../Zotlabs/Module/Webpages.php:201 ../../Zotlabs/Lib/ThreadItem.php:719 +#: ../../include/page_widgets.php:43 ../../include/conversation.php:1198 +msgid "Preview" +msgstr "Forhåndsvisning" + +#: ../../Zotlabs/Module/Events.php:470 ../../include/conversation.php:1247 +msgid "Permission settings" +msgstr "Tillatelser - innstillinger" + +#: ../../Zotlabs/Module/Events.php:475 +msgid "Advanced Options" +msgstr "Avanserte alternativer" + +#: ../../Zotlabs/Module/Events.php:587 ../../Zotlabs/Module/Cal.php:259 +msgid "l, F j" +msgstr "l, F j" + +#: ../../Zotlabs/Module/Events.php:609 +msgid "Edit event" +msgstr "Endre hendelse" + +#: ../../Zotlabs/Module/Events.php:611 +msgid "Delete event" +msgstr "Slett hendelse" + +#: ../../Zotlabs/Module/Events.php:636 ../../Zotlabs/Module/Cal.php:308 +#: ../../include/text.php:1712 +msgid "Link to Source" +msgstr "Lenke til kilde" + +#: ../../Zotlabs/Module/Events.php:645 +msgid "calendar" +msgstr "kalender" + +#: ../../Zotlabs/Module/Events.php:664 ../../Zotlabs/Module/Cal.php:331 +msgid "Edit Event" +msgstr "Endre hendelse" + +#: ../../Zotlabs/Module/Events.php:664 ../../Zotlabs/Module/Cal.php:331 +msgid "Create Event" +msgstr "Lag hendelse" + +#: ../../Zotlabs/Module/Events.php:665 ../../Zotlabs/Module/Events.php:674 +#: ../../Zotlabs/Module/Cal.php:332 ../../Zotlabs/Module/Cal.php:339 +#: ../../Zotlabs/Module/Photos.php:947 +msgid "Previous" +msgstr "Forrige" + +#: ../../Zotlabs/Module/Events.php:666 ../../Zotlabs/Module/Events.php:675 +#: ../../Zotlabs/Module/Cal.php:333 ../../Zotlabs/Module/Cal.php:340 +#: ../../Zotlabs/Module/Photos.php:956 ../../Zotlabs/Module/Setup.php:267 +msgid "Next" +msgstr "Neste" + +#: ../../Zotlabs/Module/Events.php:667 ../../Zotlabs/Module/Cal.php:334 +msgid "Export" +msgstr "Eksport" + +#: ../../Zotlabs/Module/Events.php:670 ../../Zotlabs/Module/Layouts.php:197 +#: ../../Zotlabs/Module/Pubsites.php:47 ../../Zotlabs/Module/Blocks.php:166 +#: ../../Zotlabs/Module/Webpages.php:200 ../../include/page_widgets.php:42 +msgid "View" +msgstr "Vis" + +#: ../../Zotlabs/Module/Events.php:671 +msgid "Month" +msgstr "" + +#: ../../Zotlabs/Module/Events.php:672 +msgid "Week" +msgstr "" + +#: ../../Zotlabs/Module/Events.php:673 +msgid "Day" +msgstr "" + +#: ../../Zotlabs/Module/Events.php:676 ../../Zotlabs/Module/Cal.php:341 +msgid "Today" +msgstr "Idag" + +#: ../../Zotlabs/Module/Events.php:707 +msgid "Event removed" +msgstr "Hendelse slettet" + +#: ../../Zotlabs/Module/Events.php:710 +msgid "Failed to remove event" +msgstr "Mislyktes med å slette hendelse" + +#: ../../Zotlabs/Module/Bookmarks.php:53 +msgid "Bookmark added" +msgstr "Bokmerke lagt til" + +#: ../../Zotlabs/Module/Bookmarks.php:75 +msgid "My Bookmarks" +msgstr "Mine bokmerker" + +#: ../../Zotlabs/Module/Bookmarks.php:86 +msgid "My Connections Bookmarks" +msgstr "Mine forbindelsers bokmerker" -#: ../../Zotlabs/Module/Editblock.php:79 ../../Zotlabs/Module/Editblock.php:95 #: ../../Zotlabs/Module/Editpost.php:24 ../../Zotlabs/Module/Editlayout.php:79 -#: ../../Zotlabs/Module/Editwebpage.php:81 +#: ../../Zotlabs/Module/Editwebpage.php:80 +#: ../../Zotlabs/Module/Editblock.php:79 ../../Zotlabs/Module/Editblock.php:95 msgid "Item not found" msgstr "Elementet ble ikke funnet." -#: ../../Zotlabs/Module/Editblock.php:124 ../../include/conversation.php:1228 -msgid "Title (optional)" -msgstr "Tittel (valgfri)" +#: ../../Zotlabs/Module/Editpost.php:35 +msgid "Item is not editable" +msgstr "Elementet kan ikke endres" -#: ../../Zotlabs/Module/Editblock.php:133 -msgid "Edit Block" -msgstr "Endre byggekloss" +#: ../../Zotlabs/Module/Editpost.php:106 ../../Zotlabs/Module/Rpost.php:134 +msgid "Edit post" +msgstr "Endre innlegg" -#: ../../Zotlabs/Module/Common.php:14 -msgid "No channel." -msgstr "Ingen kanal." +#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:222 +#: ../../include/nav.php:92 ../../include/conversation.php:1647 +msgid "Photos" +msgstr "Bilder" -#: ../../Zotlabs/Module/Common.php:43 -msgid "Common connections" -msgstr "Felles forbindelser" +#: ../../Zotlabs/Module/Fbrowser.php:66 ../../Zotlabs/Module/Fbrowser.php:88 +#: ../../Zotlabs/Module/Admin.php:1406 ../../Zotlabs/Module/Settings.php:645 +#: ../../Zotlabs/Module/Settings.php:671 ../../Zotlabs/Module/Tagrm.php:15 +#: ../../Zotlabs/Module/Tagrm.php:138 ../../Zotlabs/Module/Wiki.php:166 +#: ../../Zotlabs/Module/Wiki.php:202 ../../include/conversation.php:1235 +#: ../../include/conversation.php:1274 +msgid "Cancel" +msgstr "Avbryt" -#: ../../Zotlabs/Module/Common.php:48 -msgid "No connections in common." -msgstr "Ingen forbindelser felles." +#: ../../Zotlabs/Module/Page.php:40 ../../Zotlabs/Module/Block.php:31 +msgid "Invalid item." +msgstr "Ugyldig element." + +#: ../../Zotlabs/Module/Page.php:56 ../../Zotlabs/Module/Cal.php:62 +#: ../../Zotlabs/Module/Block.php:43 ../../Zotlabs/Module/Wall_upload.php:33 +msgid "Channel not found." +msgstr "Kanalen ble ikke funnet." + +#: ../../Zotlabs/Module/Page.php:131 +msgid "" +"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod " +"tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam," +" quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo " +"consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse " +"cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat " +"non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." +msgstr "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." + +#: ../../Zotlabs/Module/Filer.php:52 +msgid "Save to Folder:" +msgstr "Lagre til mappe:" + +#: ../../Zotlabs/Module/Filer.php:52 +msgid "- select -" +msgstr "- velg -" + +#: ../../Zotlabs/Module/Filer.php:53 ../../Zotlabs/Module/Admin.php:2033 +#: ../../Zotlabs/Module/Admin.php:2053 ../../Zotlabs/Module/Rbmark.php:32 +#: ../../Zotlabs/Module/Rbmark.php:104 ../../include/text.php:926 +#: ../../include/text.php:938 ../../include/widgets.php:201 +msgid "Save" +msgstr "Lagre" #: ../../Zotlabs/Module/Connections.php:56 #: ../../Zotlabs/Module/Connections.php:161 @@ -1076,7 +1359,7 @@ msgstr "Arkivert" #: ../../Zotlabs/Module/Connections.php:76 #: ../../Zotlabs/Module/Connections.php:86 ../../Zotlabs/Module/Menu.php:116 -#: ../../include/conversation.php:1535 +#: ../../include/conversation.php:1550 msgid "New" msgstr "Nye" @@ -1163,15 +1446,15 @@ msgstr "Ignorer forbindelse" msgid "Recent activity" msgstr "Nylig aktivitet" -#: ../../Zotlabs/Module/Connections.php:302 ../../Zotlabs/Lib/Apps.php:208 -#: ../../include/text.php:875 ../../include/nav.php:186 +#: ../../Zotlabs/Module/Connections.php:302 ../../Zotlabs/Lib/Apps.php:209 +#: ../../include/nav.php:188 ../../include/text.php:855 msgid "Connections" msgstr "Forbindelser" #: ../../Zotlabs/Module/Connections.php:306 ../../Zotlabs/Module/Search.php:44 -#: ../../Zotlabs/Lib/Apps.php:228 ../../include/text.php:945 -#: ../../include/text.php:957 ../../include/nav.php:165 -#: ../../include/acl_selectors.php:276 +#: ../../Zotlabs/Lib/Apps.php:230 ../../include/nav.php:167 +#: ../../include/text.php:925 ../../include/text.php:937 +#: ../../include/acl_selectors.php:274 msgid "Search" msgstr "Søk" @@ -1184,7 +1467,7 @@ msgid "Connections search" msgstr "Søk blant forbindelser" #: ../../Zotlabs/Module/Cover_photo.php:58 -#: ../../Zotlabs/Module/Profile_photo.php:79 +#: ../../Zotlabs/Module/Profile_photo.php:61 msgid "Image uploaded but image cropping failed." msgstr "Bildet ble lastet opp, men beskjæring av bildet mislyktes." @@ -1194,66 +1477,66 @@ msgid "Cover Photos" msgstr "Forsidebilder" #: ../../Zotlabs/Module/Cover_photo.php:154 -#: ../../Zotlabs/Module/Profile_photo.php:133 +#: ../../Zotlabs/Module/Profile_photo.php:135 msgid "Image resize failed." msgstr "Endring av bildestørrelse mislyktes." #: ../../Zotlabs/Module/Cover_photo.php:168 -#: ../../Zotlabs/Module/Profile_photo.php:192 ../../include/photos.php:144 +#: ../../Zotlabs/Module/Profile_photo.php:196 ../../include/photos.php:148 msgid "Unable to process image" msgstr "Kan ikke behandle bildet" #: ../../Zotlabs/Module/Cover_photo.php:192 -#: ../../Zotlabs/Module/Profile_photo.php:217 +#: ../../Zotlabs/Module/Profile_photo.php:223 msgid "Image upload failed." msgstr "Opplasting av bildet mislyktes." #: ../../Zotlabs/Module/Cover_photo.php:210 -#: ../../Zotlabs/Module/Profile_photo.php:236 +#: ../../Zotlabs/Module/Profile_photo.php:242 msgid "Unable to process image." msgstr "Kan ikke behandle bildet." -#: ../../Zotlabs/Module/Cover_photo.php:233 ../../include/items.php:4270 +#: ../../Zotlabs/Module/Cover_photo.php:233 ../../include/items.php:4283 msgid "female" msgstr "kvinne" -#: ../../Zotlabs/Module/Cover_photo.php:234 ../../include/items.php:4271 +#: ../../Zotlabs/Module/Cover_photo.php:234 ../../include/items.php:4284 #, php-format msgid "%1$s updated her %2$s" msgstr "%1$s oppdaterte %2$s sitt" -#: ../../Zotlabs/Module/Cover_photo.php:235 ../../include/items.php:4272 +#: ../../Zotlabs/Module/Cover_photo.php:235 ../../include/items.php:4285 msgid "male" msgstr "mann" -#: ../../Zotlabs/Module/Cover_photo.php:236 ../../include/items.php:4273 +#: ../../Zotlabs/Module/Cover_photo.php:236 ../../include/items.php:4286 #, php-format msgid "%1$s updated his %2$s" msgstr "%1$s oppdaterte %2$s sitt" -#: ../../Zotlabs/Module/Cover_photo.php:238 ../../include/items.php:4275 +#: ../../Zotlabs/Module/Cover_photo.php:238 ../../include/items.php:4288 #, php-format msgid "%1$s updated their %2$s" msgstr "%1$s oppdaterte %2$s deres" -#: ../../Zotlabs/Module/Cover_photo.php:240 ../../include/channel.php:1661 +#: ../../Zotlabs/Module/Cover_photo.php:240 ../../include/channel.php:1726 msgid "cover photo" msgstr "forsidebilde" #: ../../Zotlabs/Module/Cover_photo.php:303 #: ../../Zotlabs/Module/Cover_photo.php:318 -#: ../../Zotlabs/Module/Profile_photo.php:283 -#: ../../Zotlabs/Module/Profile_photo.php:324 +#: ../../Zotlabs/Module/Profile_photo.php:300 +#: ../../Zotlabs/Module/Profile_photo.php:341 msgid "Photo not available." msgstr "Bildet er ikke tilgjengelig." #: ../../Zotlabs/Module/Cover_photo.php:354 -#: ../../Zotlabs/Module/Profile_photo.php:365 +#: ../../Zotlabs/Module/Profile_photo.php:387 msgid "Upload File:" msgstr "Last opp fil:" #: ../../Zotlabs/Module/Cover_photo.php:355 -#: ../../Zotlabs/Module/Profile_photo.php:366 +#: ../../Zotlabs/Module/Profile_photo.php:388 msgid "Select a profile:" msgstr "Velg en profil:" @@ -1262,200 +1545,69 @@ msgid "Upload Cover Photo" msgstr "Last opp forsidebilde" #: ../../Zotlabs/Module/Cover_photo.php:361 -#: ../../Zotlabs/Module/Profile_photo.php:374 -#: ../../Zotlabs/Module/Settings.php:985 +#: ../../Zotlabs/Module/Profile_photo.php:396 +#: ../../Zotlabs/Module/Settings.php:1080 msgid "or" msgstr "eller" #: ../../Zotlabs/Module/Cover_photo.php:361 -#: ../../Zotlabs/Module/Profile_photo.php:374 +#: ../../Zotlabs/Module/Profile_photo.php:396 msgid "skip this step" msgstr "hopp over dette steget" #: ../../Zotlabs/Module/Cover_photo.php:361 -#: ../../Zotlabs/Module/Profile_photo.php:374 +#: ../../Zotlabs/Module/Profile_photo.php:396 msgid "select a photo from your photo albums" msgstr "velg et bilde fra dine fotoalbum" #: ../../Zotlabs/Module/Cover_photo.php:377 -#: ../../Zotlabs/Module/Profile_photo.php:390 +#: ../../Zotlabs/Module/Profile_photo.php:415 msgid "Crop Image" msgstr "Beskjær bildet" #: ../../Zotlabs/Module/Cover_photo.php:378 -#: ../../Zotlabs/Module/Profile_photo.php:391 +#: ../../Zotlabs/Module/Profile_photo.php:416 msgid "Please adjust the image cropping for optimum viewing." msgstr "Vennligst juster bildebeskjæringen for optimal visning." #: ../../Zotlabs/Module/Cover_photo.php:380 -#: ../../Zotlabs/Module/Profile_photo.php:393 +#: ../../Zotlabs/Module/Profile_photo.php:418 msgid "Done Editing" msgstr "Avslutt redigering" -#: ../../Zotlabs/Module/Editpost.php:35 -msgid "Item is not editable" -msgstr "Elementet kan ikke endres" +#: ../../Zotlabs/Module/Impel.php:41 ../../include/bbcode.php:192 +msgid "webpage" +msgstr "nettside" -#: ../../Zotlabs/Module/Editpost.php:106 ../../Zotlabs/Module/Rpost.php:135 -msgid "Edit post" -msgstr "Endre innlegg" +#: ../../Zotlabs/Module/Impel.php:46 ../../include/bbcode.php:198 +msgid "block" +msgstr "byggekloss" -#: ../../Zotlabs/Module/Events.php:26 -msgid "Calendar entries imported." -msgstr "Kalenderhendelsene er importert." +#: ../../Zotlabs/Module/Impel.php:51 ../../include/bbcode.php:195 +msgid "layout" +msgstr "layout" -#: ../../Zotlabs/Module/Events.php:28 -msgid "No calendar entries found." -msgstr "Ingen kalenderhendelser funnet." +#: ../../Zotlabs/Module/Impel.php:58 ../../include/bbcode.php:201 +msgid "menu" +msgstr "meny" -#: ../../Zotlabs/Module/Events.php:105 -msgid "Event can not end before it has started." -msgstr "Hendelsen kan ikke slutte før den starter." +#: ../../Zotlabs/Module/Impel.php:187 +#, php-format +msgid "%s element installed" +msgstr "%s element installert" -#: ../../Zotlabs/Module/Events.php:107 ../../Zotlabs/Module/Events.php:116 -#: ../../Zotlabs/Module/Events.php:136 -msgid "Unable to generate preview." -msgstr "Klarer ikke å lage forhåndsvisning." +#: ../../Zotlabs/Module/Impel.php:190 +#, php-format +msgid "%s element installation failed" +msgstr "Installasjon av %s-element mislyktes" -#: ../../Zotlabs/Module/Events.php:114 -msgid "Event title and start time are required." -msgstr "Hendelsestittel og starttidspunkt er påkrevd." +#: ../../Zotlabs/Module/Cal.php:69 +msgid "Permissions denied." +msgstr "Tillatelse avvist." -#: ../../Zotlabs/Module/Events.php:134 ../../Zotlabs/Module/Events.php:259 -msgid "Event not found." -msgstr "Hendelsen ble ikke funnet." - -#: ../../Zotlabs/Module/Events.php:254 ../../Zotlabs/Module/Like.php:373 -#: ../../Zotlabs/Module/Tagger.php:51 ../../include/event.php:949 -#: ../../include/text.php:1943 ../../include/conversation.php:123 -msgid "event" -msgstr "hendelse" - -#: ../../Zotlabs/Module/Events.php:449 -msgid "Edit event title" -msgstr "Endre tittel på hendelse" - -#: ../../Zotlabs/Module/Events.php:449 -msgid "Event title" -msgstr "Tittel på hendelse" - -#: ../../Zotlabs/Module/Events.php:449 ../../Zotlabs/Module/Events.php:454 -#: ../../Zotlabs/Module/Profiles.php:709 ../../Zotlabs/Module/Profiles.php:713 -#: ../../Zotlabs/Module/Appman.php:115 ../../Zotlabs/Module/Appman.php:116 -#: ../../include/datetime.php:245 -msgid "Required" -msgstr "Påkrevd" - -#: ../../Zotlabs/Module/Events.php:451 -msgid "Categories (comma-separated list)" -msgstr "Kategorier (kommaseparert liste)" - -#: ../../Zotlabs/Module/Events.php:452 -msgid "Edit Category" -msgstr "Endre kategori" - -#: ../../Zotlabs/Module/Events.php:452 -msgid "Category" -msgstr "Kategori" - -#: ../../Zotlabs/Module/Events.php:455 -msgid "Edit start date and time" -msgstr "Endre startdato og tidspunkt" - -#: ../../Zotlabs/Module/Events.php:455 -msgid "Start date and time" -msgstr "Startdato og tidspunkt" - -#: ../../Zotlabs/Module/Events.php:456 ../../Zotlabs/Module/Events.php:459 -msgid "Finish date and time are not known or not relevant" -msgstr "Sluttdato og tidspunkt er ikke kjent eller ikke relevant" - -#: ../../Zotlabs/Module/Events.php:458 -msgid "Edit finish date and time" -msgstr "Endre sluttdato og tidspunkt" - -#: ../../Zotlabs/Module/Events.php:458 -msgid "Finish date and time" -msgstr "Sluttdato og tidspunkt" - -#: ../../Zotlabs/Module/Events.php:460 ../../Zotlabs/Module/Events.php:461 -msgid "Adjust for viewer timezone" -msgstr "Juster i forhold til tilskuerens tidssone" - -#: ../../Zotlabs/Module/Events.php:460 -msgid "" -"Important for events that happen in a particular place. Not practical for " -"global holidays." -msgstr "Viktig for hendelser som skjer på et bestemt sted. Ikke praktisk for globale ferier eller fridager." - -#: ../../Zotlabs/Module/Events.php:462 -msgid "Edit Description" -msgstr "Endre beskrivelse" - -#: ../../Zotlabs/Module/Events.php:462 ../../Zotlabs/Module/Appman.php:117 -#: ../../Zotlabs/Module/Rbmark.php:101 -msgid "Description" -msgstr "Beskrivelse" - -#: ../../Zotlabs/Module/Events.php:464 -msgid "Edit Location" -msgstr "Endre plassering" - -#: ../../Zotlabs/Module/Events.php:464 ../../Zotlabs/Module/Locs.php:117 -#: ../../Zotlabs/Module/Profiles.php:477 ../../Zotlabs/Module/Profiles.php:698 -#: ../../Zotlabs/Module/Pubsites.php:41 ../../include/js_strings.php:25 -msgid "Location" -msgstr "Plassering" - -#: ../../Zotlabs/Module/Events.php:467 ../../Zotlabs/Module/Events.php:469 -msgid "Share this event" -msgstr "Del denne hendelsen" - -#: ../../Zotlabs/Module/Events.php:470 ../../Zotlabs/Module/Photos.php:1093 -#: ../../Zotlabs/Module/Webpages.php:194 ../../Zotlabs/Lib/ThreadItem.php:719 -#: ../../include/conversation.php:1187 ../../include/page_widgets.php:40 -msgid "Preview" -msgstr "Forhåndsvisning" - -#: ../../Zotlabs/Module/Events.php:471 ../../include/conversation.php:1232 -msgid "Permission settings" -msgstr "Tillatelser - innstillinger" - -#: ../../Zotlabs/Module/Events.php:476 -msgid "Advanced Options" -msgstr "Avanserte alternativer" - -#: ../../Zotlabs/Module/Events.php:610 -msgid "Edit event" -msgstr "Endre hendelse" - -#: ../../Zotlabs/Module/Events.php:612 -msgid "Delete event" -msgstr "Slett hendelse" - -#: ../../Zotlabs/Module/Events.php:646 -msgid "calendar" -msgstr "kalender" - -#: ../../Zotlabs/Module/Events.php:706 -msgid "Event removed" -msgstr "Hendelse slettet" - -#: ../../Zotlabs/Module/Events.php:709 -msgid "Failed to remove event" -msgstr "Mislyktes med å slette hendelse" - -#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:220 -#: ../../include/nav.php:92 ../../include/conversation.php:1632 -msgid "Photos" -msgstr "Bilder" - -#: ../../Zotlabs/Module/Fbrowser.php:66 ../../Zotlabs/Module/Fbrowser.php:88 -#: ../../Zotlabs/Module/Admin.php:1406 ../../Zotlabs/Module/Settings.php:591 -#: ../../Zotlabs/Module/Settings.php:617 ../../Zotlabs/Module/Tagrm.php:15 -#: ../../Zotlabs/Module/Tagrm.php:138 ../../include/conversation.php:1259 -msgid "Cancel" -msgstr "Avbryt" +#: ../../Zotlabs/Module/Cal.php:337 +msgid "Import" +msgstr "Importer" #: ../../Zotlabs/Module/Dirsearch.php:25 ../../Zotlabs/Module/Regdir.php:49 msgid "This site is not a directory server" @@ -1465,112 +1617,184 @@ msgstr "Dette nettstedet er ikke en katalogtjener" msgid "This directory server requires an access token" msgstr "Denne katalogtjeneren krever en tilgangsnøkkel (access token)" -#: ../../Zotlabs/Module/Filer.php:52 -msgid "Save to Folder:" -msgstr "Lagre til mappe:" +#: ../../Zotlabs/Module/Chat.php:25 ../../Zotlabs/Module/Channel.php:28 +#: ../../Zotlabs/Module/Wiki.php:20 +msgid "You must be logged in to see this page." +msgstr "Du må være innloegget for å se denne siden." -#: ../../Zotlabs/Module/Filer.php:52 -msgid "- select -" -msgstr "- velg -" +#: ../../Zotlabs/Module/Chat.php:181 +msgid "Room not found" +msgstr "Rommet ble ikke funnet" -#: ../../Zotlabs/Module/Filer.php:53 ../../Zotlabs/Module/Admin.php:2033 -#: ../../Zotlabs/Module/Admin.php:2053 ../../Zotlabs/Module/Rbmark.php:32 -#: ../../Zotlabs/Module/Rbmark.php:104 ../../include/text.php:946 -#: ../../include/text.php:958 ../../include/widgets.php:201 -msgid "Save" -msgstr "Lagre" +#: ../../Zotlabs/Module/Chat.php:197 +msgid "Leave Room" +msgstr "Forlat rom" -#: ../../Zotlabs/Module/Dreport.php:27 +#: ../../Zotlabs/Module/Chat.php:198 +msgid "Delete Room" +msgstr "Slett rom" + +#: ../../Zotlabs/Module/Chat.php:199 +msgid "I am away right now" +msgstr "Jeg er borte akkurat nå" + +#: ../../Zotlabs/Module/Chat.php:200 +msgid "I am online" +msgstr "Jeg er online" + +#: ../../Zotlabs/Module/Chat.php:202 +msgid "Bookmark this room" +msgstr "Bokmerk dette rommet" + +#: ../../Zotlabs/Module/Chat.php:205 ../../Zotlabs/Module/Mail.php:197 +#: ../../Zotlabs/Module/Mail.php:306 ../../include/conversation.php:1181 +msgid "Please enter a link URL:" +msgstr "Vennligst skriv inn en lenke URL:" + +#: ../../Zotlabs/Module/Chat.php:206 ../../Zotlabs/Module/Mail.php:250 +#: ../../Zotlabs/Module/Mail.php:375 ../../Zotlabs/Lib/ThreadItem.php:722 +#: ../../include/conversation.php:1271 +msgid "Encrypt text" +msgstr "Krypter tekst" + +#: ../../Zotlabs/Module/Chat.php:207 ../../Zotlabs/Module/Editwebpage.php:146 +#: ../../Zotlabs/Module/Mail.php:244 ../../Zotlabs/Module/Mail.php:369 +#: ../../Zotlabs/Module/Editblock.php:111 ../../include/conversation.php:1146 +msgid "Insert web link" +msgstr "Sett inn web-lenke" + +#: ../../Zotlabs/Module/Chat.php:218 +msgid "Feature disabled." +msgstr "Funksjonen er avskrudd." + +#: ../../Zotlabs/Module/Chat.php:232 +msgid "New Chatroom" +msgstr "Nytt chatrom" + +#: ../../Zotlabs/Module/Chat.php:233 +msgid "Chatroom name" +msgstr "Navn på chatrom" + +#: ../../Zotlabs/Module/Chat.php:234 +msgid "Expiration of chats (minutes)" +msgstr "Chat utgår (antall minutter)" + +#: ../../Zotlabs/Module/Chat.php:235 ../../Zotlabs/Module/Filestorage.php:152 +#: ../../Zotlabs/Module/Photos.php:669 ../../Zotlabs/Module/Photos.php:1043 +#: ../../Zotlabs/Module/Thing.php:313 ../../Zotlabs/Module/Thing.php:359 +#: ../../include/acl_selectors.php:281 +msgid "Permissions" +msgstr "Tillatelser" + +#: ../../Zotlabs/Module/Chat.php:246 +#, php-format +msgid "%1$s's Chatrooms" +msgstr "%1$s sine chatrom" + +#: ../../Zotlabs/Module/Chat.php:251 +msgid "No chatrooms available" +msgstr "Ingen tilgjengelige chatrom" + +#: ../../Zotlabs/Module/Chat.php:252 ../../Zotlabs/Module/Profiles.php:778 +#: ../../Zotlabs/Module/Manage.php:143 +msgid "Create New" +msgstr "Lag ny" + +#: ../../Zotlabs/Module/Chat.php:255 +msgid "Expiration" +msgstr "Utløper" + +#: ../../Zotlabs/Module/Chat.php:256 +msgid "min" +msgstr "min" + +#: ../../Zotlabs/Module/Dreport.php:44 msgid "Invalid message" msgstr "Ugyldig melding" -#: ../../Zotlabs/Module/Dreport.php:59 +#: ../../Zotlabs/Module/Dreport.php:76 msgid "no results" msgstr "ingen resultater" -#: ../../Zotlabs/Module/Dreport.php:64 +#: ../../Zotlabs/Module/Dreport.php:91 +msgid "channel sync processed" +msgstr "Kanalsynkronisering er behandlet" + +#: ../../Zotlabs/Module/Dreport.php:95 +msgid "queued" +msgstr "lagt i kø" + +#: ../../Zotlabs/Module/Dreport.php:99 +msgid "posted" +msgstr "lagt inn" + +#: ../../Zotlabs/Module/Dreport.php:103 +msgid "accepted for delivery" +msgstr "akseptert for levering" + +#: ../../Zotlabs/Module/Dreport.php:107 +msgid "updated" +msgstr "oppdatert" + +#: ../../Zotlabs/Module/Dreport.php:110 +msgid "update ignored" +msgstr "oppdatering ignorert" + +#: ../../Zotlabs/Module/Dreport.php:113 +msgid "permission denied" +msgstr "tillatelse avvist" + +#: ../../Zotlabs/Module/Dreport.php:117 +msgid "recipient not found" +msgstr "mottaker ble ikke funnet" + +#: ../../Zotlabs/Module/Dreport.php:120 +msgid "mail recalled" +msgstr "melding tilbakekalt" + +#: ../../Zotlabs/Module/Dreport.php:123 +msgid "duplicate mail received" +msgstr "duplikat av melding mottatt" + +#: ../../Zotlabs/Module/Dreport.php:126 +msgid "mail delivered" +msgstr "melding mottatt" + +#: ../../Zotlabs/Module/Dreport.php:146 #, php-format msgid "Delivery report for %1$s" msgstr "Leveringsrapport for %1$s" -#: ../../Zotlabs/Module/Dreport.php:78 -msgid "channel sync processed" -msgstr "Kanalsynkronisering er behandlet" +#: ../../Zotlabs/Module/Dreport.php:149 +msgid "Options" +msgstr "" -#: ../../Zotlabs/Module/Dreport.php:82 -msgid "queued" -msgstr "lagt i kø" +#: ../../Zotlabs/Module/Dreport.php:150 +msgid "Redeliver" +msgstr "" -#: ../../Zotlabs/Module/Dreport.php:86 -msgid "posted" -msgstr "lagt inn" - -#: ../../Zotlabs/Module/Dreport.php:90 -msgid "accepted for delivery" -msgstr "akseptert for levering" - -#: ../../Zotlabs/Module/Dreport.php:94 -msgid "updated" -msgstr "oppdatert" - -#: ../../Zotlabs/Module/Dreport.php:97 -msgid "update ignored" -msgstr "oppdatering ignorert" - -#: ../../Zotlabs/Module/Dreport.php:100 -msgid "permission denied" -msgstr "tillatelse avvist" - -#: ../../Zotlabs/Module/Dreport.php:104 -msgid "recipient not found" -msgstr "mottaker ble ikke funnet" - -#: ../../Zotlabs/Module/Dreport.php:107 -msgid "mail recalled" -msgstr "melding tilbakekalt" - -#: ../../Zotlabs/Module/Dreport.php:110 -msgid "duplicate mail received" -msgstr "duplikat av melding mottatt" - -#: ../../Zotlabs/Module/Dreport.php:113 -msgid "mail delivered" -msgstr "melding mottatt" - -#: ../../Zotlabs/Module/Editlayout.php:126 -#: ../../Zotlabs/Module/Layouts.php:127 ../../Zotlabs/Module/Layouts.php:186 +#: ../../Zotlabs/Module/Editlayout.php:127 +#: ../../Zotlabs/Module/Layouts.php:128 ../../Zotlabs/Module/Layouts.php:188 msgid "Layout Name" msgstr "Layout-navn" -#: ../../Zotlabs/Module/Editlayout.php:127 -#: ../../Zotlabs/Module/Layouts.php:130 +#: ../../Zotlabs/Module/Editlayout.php:128 +#: ../../Zotlabs/Module/Layouts.php:131 msgid "Layout Description (Optional)" msgstr "Layoutens beskrivelse (valgfritt)" -#: ../../Zotlabs/Module/Editlayout.php:135 +#: ../../Zotlabs/Module/Editlayout.php:136 msgid "Edit Layout" msgstr "Endre layout" -#: ../../Zotlabs/Module/Editwebpage.php:143 +#: ../../Zotlabs/Module/Editwebpage.php:142 msgid "Page link" -msgstr "" +msgstr "Sidelenke" -#: ../../Zotlabs/Module/Editwebpage.php:169 +#: ../../Zotlabs/Module/Editwebpage.php:168 msgid "Edit Webpage" msgstr "Endre webside" -#: ../../Zotlabs/Module/Follow.php:34 -msgid "Channel added." -msgstr "Kanal lagt til." - -#: ../../Zotlabs/Module/Acl.php:227 -msgid "network" -msgstr "nettverk" - -#: ../../Zotlabs/Module/Acl.php:237 -msgid "RSS" -msgstr "RSS" - #: ../../Zotlabs/Module/Group.php:24 msgid "Privacy group created." msgstr "Personverngruppen er opprettet." @@ -1580,7 +1804,7 @@ msgid "Could not create privacy group." msgstr "Kunne ikke opprette personverngruppen." #: ../../Zotlabs/Module/Group.php:42 ../../Zotlabs/Module/Group.php:141 -#: ../../include/items.php:3893 +#: ../../include/items.php:3902 msgid "Privacy group not found." msgstr "Personverngruppen ble ikke funnet" @@ -1624,31 +1848,57 @@ msgstr "Alle tilkoblede kanaler" msgid "Click on a channel to add or remove." msgstr "Klikk på en kanal for å legge til eller fjerne." -#: ../../Zotlabs/Module/Ffsapi.php:12 -msgid "Share content from Firefox to $Projectname" -msgstr "Del innhold fra Firefox til $Projectname" +#: ../../Zotlabs/Module/Appman.php:37 ../../Zotlabs/Module/Appman.php:53 +msgid "App installed." +msgstr "App installert." -#: ../../Zotlabs/Module/Ffsapi.php:15 -msgid "Activate the Firefox $Projectname provider" -msgstr "Skru på Firefox $Projectname tilbyderen" +#: ../../Zotlabs/Module/Appman.php:46 +msgid "Malformed app." +msgstr "Feil oppsett for app-en." -#: ../../Zotlabs/Module/Api.php:61 ../../Zotlabs/Module/Api.php:85 -msgid "Authorize application connection" -msgstr "Tillat programforbindelse" +#: ../../Zotlabs/Module/Appman.php:104 +msgid "Embed code" +msgstr "Innbyggingskode" -#: ../../Zotlabs/Module/Api.php:62 -msgid "Return to your app and insert this Securty Code:" -msgstr "Gå tilbake til din app og legg inn denne sikkerhetskoden:" +#: ../../Zotlabs/Module/Appman.php:110 ../../include/widgets.php:107 +msgid "Edit App" +msgstr "Endre app" -#: ../../Zotlabs/Module/Api.php:72 -msgid "Please login to continue." -msgstr "Vennligst logg inn for å fortsette." +#: ../../Zotlabs/Module/Appman.php:110 +msgid "Create App" +msgstr "Lag app" -#: ../../Zotlabs/Module/Api.php:87 -msgid "" -"Do you want to authorize this application to access your posts and contacts," -" and/or create new posts for you?" -msgstr "Vil du tillate dette programmet å få tilgang til dine innlegg og kontakter, og/eller lage nye innlegg for deg?" +#: ../../Zotlabs/Module/Appman.php:115 +msgid "Name of app" +msgstr "Navn på app" + +#: ../../Zotlabs/Module/Appman.php:116 +msgid "Location (URL) of app" +msgstr "Plassering (URL) til app" + +#: ../../Zotlabs/Module/Appman.php:118 +msgid "Photo icon URL" +msgstr "Bildeikon URL" + +#: ../../Zotlabs/Module/Appman.php:118 +msgid "80 x 80 pixels - optional" +msgstr "80 x80 pixler - valgfritt" + +#: ../../Zotlabs/Module/Appman.php:119 +msgid "Categories (optional, comma separated list)" +msgstr "Kategorier (valgfri, kommaseparert liste)" + +#: ../../Zotlabs/Module/Appman.php:120 +msgid "Version ID" +msgstr "Versjons-ID" + +#: ../../Zotlabs/Module/Appman.php:121 +msgid "Price of app" +msgstr "Pris på app" + +#: ../../Zotlabs/Module/Appman.php:122 +msgid "Location (URL) to purchase app" +msgstr "Plassering (URL) for å kjøpe app" #: ../../Zotlabs/Module/Help.php:26 msgid "Documentation Search" @@ -1660,8 +1910,8 @@ msgid "Help:" msgstr "Hjelp:" #: ../../Zotlabs/Module/Help.php:85 ../../Zotlabs/Module/Help.php:90 -#: ../../Zotlabs/Module/Layouts.php:183 ../../Zotlabs/Lib/Apps.php:223 -#: ../../include/nav.php:159 +#: ../../Zotlabs/Module/Layouts.php:185 ../../Zotlabs/Lib/Apps.php:225 +#: ../../include/nav.php:161 msgid "Help" msgstr "Hjelp" @@ -1669,335 +1919,124 @@ msgstr "Hjelp" msgid "$Projectname Documentation" msgstr "$Projectname dokumentasjon" -#: ../../Zotlabs/Module/Filestorage.php:88 -msgid "Permission Denied." -msgstr "Tillatelse avvist." - -#: ../../Zotlabs/Module/Filestorage.php:104 -msgid "File not found." -msgstr "Filen ble ikke funnet." - -#: ../../Zotlabs/Module/Filestorage.php:147 -msgid "Edit file permissions" -msgstr "Endre filtillatelser" - -#: ../../Zotlabs/Module/Filestorage.php:156 -msgid "Set/edit permissions" -msgstr "Angi/endre tillatelser" - -#: ../../Zotlabs/Module/Filestorage.php:157 -msgid "Include all files and sub folders" -msgstr "Inkluder alle filer og undermapper" - -#: ../../Zotlabs/Module/Filestorage.php:158 -msgid "Return to file list" -msgstr "Gå tilbake til filoversikten" - -#: ../../Zotlabs/Module/Filestorage.php:160 -msgid "Copy/paste this code to attach file to a post" -msgstr "Kopier og lim inn denne koden for å legge til filen i et innlegg" - -#: ../../Zotlabs/Module/Filestorage.php:161 -msgid "Copy/paste this URL to link file from a web page" -msgstr "Kopier og lim inn denne URL-en for å lenke til filen fra en webside" - -#: ../../Zotlabs/Module/Filestorage.php:163 -msgid "Share this file" -msgstr "Del denne filen" - -#: ../../Zotlabs/Module/Filestorage.php:164 -msgid "Show URL to this file" -msgstr "Vis URLen til denne filen" - -#: ../../Zotlabs/Module/Filestorage.php:165 -msgid "Notify your contacts about this file" -msgstr "Varsle dine kontakter om denne filen" - -#: ../../Zotlabs/Module/Apps.php:47 ../../include/widgets.php:102 -#: ../../include/nav.php:163 -msgid "Apps" -msgstr "Apper" - #: ../../Zotlabs/Module/Attach.php:13 msgid "Item not available." msgstr "Elementet er ikke tilgjengelig." -#: ../../Zotlabs/Module/Import.php:32 -#, php-format -msgid "Your service plan only allows %d channels." -msgstr "Din tjenesteplan tillater bare %d kanaler." +#: ../../Zotlabs/Module/Pdledit.php:18 +msgid "Layout updated." +msgstr "Layout er oppdatert." -#: ../../Zotlabs/Module/Import.php:70 ../../Zotlabs/Module/Import_items.php:42 -msgid "Nothing to import." -msgstr "Ingenting å importere." +#: ../../Zotlabs/Module/Pdledit.php:34 ../../Zotlabs/Module/Pdledit.php:61 +msgid "Edit System Page Description" +msgstr "Endre beskrivelsen av systemsiden" -#: ../../Zotlabs/Module/Import.php:94 ../../Zotlabs/Module/Import_items.php:66 -msgid "Unable to download data from old server" -msgstr "Ikke i stand til å laste ned data fra gammel tjener" +#: ../../Zotlabs/Module/Pdledit.php:56 +msgid "Layout not found." +msgstr "Layouten ble ikke funnet." -#: ../../Zotlabs/Module/Import.php:100 -#: ../../Zotlabs/Module/Import_items.php:72 -msgid "Imported file is empty." -msgstr "Importert fil er tom." +#: ../../Zotlabs/Module/Pdledit.php:62 +msgid "Module Name:" +msgstr "Modulnavn:" -#: ../../Zotlabs/Module/Import.php:122 -#: ../../Zotlabs/Module/Import_items.php:86 -#, php-format -msgid "Warning: Database versions differ by %1$d updates." -msgstr "Advarsel: databaseversjoner avviker med %1$d oppdateringer." +#: ../../Zotlabs/Module/Pdledit.php:63 +msgid "Layout Help" +msgstr "Layout-hjelp" -#: ../../Zotlabs/Module/Import.php:150 ../../include/import.php:86 -msgid "Cloned channel not found. Import failed." -msgstr "Klonet kanal ble ikke funnet. Import mislyktes." +#: ../../Zotlabs/Module/Ffsapi.php:12 +msgid "Share content from Firefox to $Projectname" +msgstr "Del innhold fra Firefox til $Projectname" -#: ../../Zotlabs/Module/Import.php:160 -msgid "No channel. Import failed." -msgstr "Ingen kanal. Import mislyktes." +#: ../../Zotlabs/Module/Ffsapi.php:15 +msgid "Activate the Firefox $Projectname provider" +msgstr "Skru på Firefox $Projectname tilbyderen" -#: ../../Zotlabs/Module/Import.php:510 -#: ../../include/Import/import_diaspora.php:142 -msgid "Import completed." -msgstr "Import ferdig." +#: ../../Zotlabs/Module/Acl.php:312 +msgid "network" +msgstr "nettverk" -#: ../../Zotlabs/Module/Import.php:532 -msgid "You must be logged in to use this feature." -msgstr "Du må være innlogget for å bruke denne funksjonen." +#: ../../Zotlabs/Module/Acl.php:322 +msgid "RSS" +msgstr "RSS" -#: ../../Zotlabs/Module/Import.php:537 -msgid "Import Channel" -msgstr "Importer kanal" +#: ../../Zotlabs/Module/Filestorage.php:87 +msgid "Permission Denied." +msgstr "Tillatelse avvist." -#: ../../Zotlabs/Module/Import.php:538 -msgid "" -"Use this form to import an existing channel from a different server/hub. You" -" may retrieve the channel identity from the old server/hub via the network " -"or provide an export file." -msgstr "Bruk dette skjemaet for å importere en eksisterende kanal fra en annen tjener/hub. Du kan hente inn kanalidentiteten fra den gamle tjeneren/huben via nettverket eller ved å bruke en eksportfil." +#: ../../Zotlabs/Module/Filestorage.php:103 +msgid "File not found." +msgstr "Filen ble ikke funnet." -#: ../../Zotlabs/Module/Import.php:539 -#: ../../Zotlabs/Module/Import_items.php:119 -msgid "File to Upload" -msgstr "Fil som skal lastes opp" +#: ../../Zotlabs/Module/Filestorage.php:146 +msgid "Edit file permissions" +msgstr "Endre filtillatelser" -#: ../../Zotlabs/Module/Import.php:540 -msgid "Or provide the old server/hub details" -msgstr "Eller oppgi detaljene fra den gamle tjeneren/hub-en" +#: ../../Zotlabs/Module/Filestorage.php:155 +msgid "Set/edit permissions" +msgstr "Angi/endre tillatelser" -#: ../../Zotlabs/Module/Import.php:541 -msgid "Your old identity address (xyz@example.com)" -msgstr "Din gamle identitetsadresse (xyz@example.com)" +#: ../../Zotlabs/Module/Filestorage.php:156 +msgid "Include all files and sub folders" +msgstr "Inkluder alle filer og undermapper" -#: ../../Zotlabs/Module/Import.php:542 -msgid "Your old login email address" -msgstr "Din gamle innloggings e-postadresse" +#: ../../Zotlabs/Module/Filestorage.php:157 +msgid "Return to file list" +msgstr "Gå tilbake til filoversikten" -#: ../../Zotlabs/Module/Import.php:543 -msgid "Your old login password" -msgstr "Ditt gamle innloggingspassord" +#: ../../Zotlabs/Module/Filestorage.php:159 +msgid "Copy/paste this code to attach file to a post" +msgstr "Kopier og lim inn denne koden for å legge til filen i et innlegg" -#: ../../Zotlabs/Module/Import.php:544 -msgid "" -"For either option, please choose whether to make this hub your new primary " -"address, or whether your old location should continue this role. You will be" -" able to post from either location, but only one can be marked as the " -"primary location for files, photos, and media." -msgstr "Enten du tar det ene eller det andre valget, vennligst angi om du vil at denne hubben skal være din nye primære adresse, eller om din gamle plassering skal fortsette å ha denne rollen. Du kan lage innlegg fra den ene eller den andre plasseringen, men bare en av dem kan markeres som den primære plasseringen for filer, bilder og media." +#: ../../Zotlabs/Module/Filestorage.php:160 +msgid "Copy/paste this URL to link file from a web page" +msgstr "Kopier og lim inn denne URL-en for å lenke til filen fra en webside" -#: ../../Zotlabs/Module/Import.php:545 -msgid "Make this hub my primary location" -msgstr "Gjør dette nettstedet til min primære plassering" +#: ../../Zotlabs/Module/Filestorage.php:162 +msgid "Share this file" +msgstr "Del denne filen" -#: ../../Zotlabs/Module/Import.php:546 -msgid "" -"Import existing posts if possible (experimental - limited by available " -"memory" -msgstr "Importer eksisterende innlegg om mulig (eksperimentelt - begrenset av tilgjengelig minne)" +#: ../../Zotlabs/Module/Filestorage.php:163 +msgid "Show URL to this file" +msgstr "Vis URLen til denne filen" -#: ../../Zotlabs/Module/Import.php:547 -msgid "" -"This process may take several minutes to complete. Please submit the form " -"only once and leave this page open until finished." -msgstr "Denne prosessen kan ta flere minutter å fullføre. Vennligst send inn dette skjemaet bare en gang og la siden være åpen inntil den er ferdig." +#: ../../Zotlabs/Module/Filestorage.php:164 +msgid "Notify your contacts about this file" +msgstr "Varsle dine kontakter om denne filen" -#: ../../Zotlabs/Module/Item.php:178 -msgid "Unable to locate original post." -msgstr "Ikke i stand til å finne opprinnelig innlegg." - -#: ../../Zotlabs/Module/Item.php:427 -msgid "Empty post discarded." -msgstr "Tomt innlegg forkastet." - -#: ../../Zotlabs/Module/Item.php:467 -msgid "Executable content type not permitted to this channel." -msgstr "Kjørbar innholdstype er ikke tillat for denne kanalen." - -#: ../../Zotlabs/Module/Item.php:847 -msgid "Duplicate post suppressed." -msgstr "Duplikat av innlegg forhindret." - -#: ../../Zotlabs/Module/Item.php:977 -msgid "System error. Post not saved." -msgstr "Systemfeil. Innlegg ble ikke lagret." - -#: ../../Zotlabs/Module/Item.php:1241 -msgid "Unable to obtain post information from database." -msgstr "Ikke i stand til å få tak i informasjon om innlegg fra databasen." - -#: ../../Zotlabs/Module/Item.php:1248 -#, php-format -msgid "You have reached your limit of %1$.0f top level posts." -msgstr "Du har nådd din grense på %1$.0f startinnlegg." - -#: ../../Zotlabs/Module/Item.php:1255 -#, php-format -msgid "You have reached your limit of %1$.0f webpages." -msgstr "Du har nådd din grense på %1$.0f websider." - -#: ../../Zotlabs/Module/Layouts.php:181 ../../include/text.php:2267 +#: ../../Zotlabs/Module/Layouts.php:183 ../../include/text.php:2240 msgid "Layouts" msgstr "Layout" -#: ../../Zotlabs/Module/Layouts.php:183 +#: ../../Zotlabs/Module/Layouts.php:185 msgid "Comanche page description language help" msgstr "Hjelp med Comanche sidebeskrivelsesspråk" -#: ../../Zotlabs/Module/Layouts.php:187 +#: ../../Zotlabs/Module/Layouts.php:189 msgid "Layout Description" msgstr "Layout-beskrivelse" -#: ../../Zotlabs/Module/Layouts.php:192 +#: ../../Zotlabs/Module/Layouts.php:190 ../../Zotlabs/Module/Menu.php:114 +#: ../../Zotlabs/Module/Blocks.php:157 ../../Zotlabs/Module/Webpages.php:205 +#: ../../include/page_widgets.php:47 +msgid "Created" +msgstr "Laget" + +#: ../../Zotlabs/Module/Layouts.php:191 ../../Zotlabs/Module/Menu.php:115 +#: ../../Zotlabs/Module/Blocks.php:158 ../../Zotlabs/Module/Webpages.php:206 +#: ../../include/page_widgets.php:48 +msgid "Edited" +msgstr "Endret" + +#: ../../Zotlabs/Module/Layouts.php:193 ../../Zotlabs/Module/Photos.php:1070 +#: ../../Zotlabs/Module/Blocks.php:161 ../../Zotlabs/Module/Webpages.php:195 +#: ../../include/conversation.php:1219 +msgid "Share" +msgstr "Del" + +#: ../../Zotlabs/Module/Layouts.php:194 msgid "Download PDL file" msgstr "Last ned PDL-fil" -#: ../../Zotlabs/Module/Home.php:61 ../../Zotlabs/Module/Home.php:69 -#: ../../Zotlabs/Module/Siteinfo.php:65 -msgid "$Projectname" -msgstr "$Projectname" - -#: ../../Zotlabs/Module/Home.php:79 -#, php-format -msgid "Welcome to %s" -msgstr "Velkommen til %s" - -#: ../../Zotlabs/Module/Id.php:13 -msgid "First Name" -msgstr "Fornavn" - -#: ../../Zotlabs/Module/Id.php:14 -msgid "Last Name" -msgstr "Etternavn" - -#: ../../Zotlabs/Module/Id.php:15 -msgid "Nickname" -msgstr "Kallenavn" - -#: ../../Zotlabs/Module/Id.php:16 -msgid "Full Name" -msgstr "Fullt navn" - -#: ../../Zotlabs/Module/Id.php:17 ../../Zotlabs/Module/Id.php:18 -#: ../../Zotlabs/Module/Admin.php:1035 ../../Zotlabs/Module/Admin.php:1047 -#: ../../include/network.php:2151 ../../boot.php:1705 -msgid "Email" -msgstr "E-post" - -#: ../../Zotlabs/Module/Id.php:19 ../../Zotlabs/Module/Id.php:20 -#: ../../Zotlabs/Module/Id.php:21 ../../Zotlabs/Lib/Apps.php:236 -msgid "Profile Photo" -msgstr "Profilbilde" - -#: ../../Zotlabs/Module/Id.php:22 -msgid "Profile Photo 16px" -msgstr "Profilbilde 16px" - -#: ../../Zotlabs/Module/Id.php:23 -msgid "Profile Photo 32px" -msgstr "Profilbilde 32px" - -#: ../../Zotlabs/Module/Id.php:24 -msgid "Profile Photo 48px" -msgstr "Profilbilde 48px" - -#: ../../Zotlabs/Module/Id.php:25 -msgid "Profile Photo 64px" -msgstr "Profilbilde 64px" - -#: ../../Zotlabs/Module/Id.php:26 -msgid "Profile Photo 80px" -msgstr "Profilbilde 80px" - -#: ../../Zotlabs/Module/Id.php:27 -msgid "Profile Photo 128px" -msgstr "Profilbilde 128px" - -#: ../../Zotlabs/Module/Id.php:28 -msgid "Timezone" -msgstr "Tidssone" - -#: ../../Zotlabs/Module/Id.php:29 ../../Zotlabs/Module/Profiles.php:731 -msgid "Homepage URL" -msgstr "Hjemmeside URL" - -#: ../../Zotlabs/Module/Id.php:30 ../../Zotlabs/Lib/Apps.php:234 -msgid "Language" -msgstr "Språk" - -#: ../../Zotlabs/Module/Id.php:31 -msgid "Birth Year" -msgstr "Fødselsår" - -#: ../../Zotlabs/Module/Id.php:32 -msgid "Birth Month" -msgstr "Fødselsmåne" - -#: ../../Zotlabs/Module/Id.php:33 -msgid "Birth Day" -msgstr "Fødselsdag" - -#: ../../Zotlabs/Module/Id.php:34 -msgid "Birthdate" -msgstr "Fødselsdato" - -#: ../../Zotlabs/Module/Id.php:35 ../../Zotlabs/Module/Profiles.php:454 -msgid "Gender" -msgstr "Kjønn" - -#: ../../Zotlabs/Module/Id.php:108 ../../include/selectors.php:49 -#: ../../include/selectors.php:66 -msgid "Male" -msgstr "Mannlig" - -#: ../../Zotlabs/Module/Id.php:110 ../../include/selectors.php:49 -#: ../../include/selectors.php:66 -msgid "Female" -msgstr "Kvinnelig" - -#: ../../Zotlabs/Module/Impel.php:41 ../../include/bbcode.php:192 -msgid "webpage" -msgstr "nettside" - -#: ../../Zotlabs/Module/Impel.php:46 ../../include/bbcode.php:198 -msgid "block" -msgstr "byggekloss" - -#: ../../Zotlabs/Module/Impel.php:51 ../../include/bbcode.php:195 -msgid "layout" -msgstr "layout" - -#: ../../Zotlabs/Module/Impel.php:58 ../../include/bbcode.php:201 -msgid "menu" -msgstr "meny" - -#: ../../Zotlabs/Module/Impel.php:196 -#, php-format -msgid "%s element installed" -msgstr "%s element installert" - -#: ../../Zotlabs/Module/Impel.php:199 -#, php-format -msgid "%s element installation failed" -msgstr "Installasjon av %s-element mislyktes" - #: ../../Zotlabs/Module/Like.php:19 msgid "Like/Dislike" msgstr "Liker/Liker ikke" @@ -2033,74 +2072,782 @@ msgstr "Kanalen er utilgjengelig." msgid "Previous action reversed." msgstr "Forrige handling er omgjort." -#: ../../Zotlabs/Module/Like.php:371 ../../Zotlabs/Module/Subthread.php:87 -#: ../../Zotlabs/Module/Tagger.php:47 ../../include/text.php:1940 -#: ../../include/conversation.php:120 +#: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87 +#: ../../Zotlabs/Module/Tagger.php:47 ../../include/conversation.php:120 +#: ../../include/text.php:1921 msgid "photo" msgstr "foto" -#: ../../Zotlabs/Module/Like.php:371 ../../Zotlabs/Module/Subthread.php:87 -#: ../../include/text.php:1946 ../../include/conversation.php:148 +#: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87 +#: ../../include/conversation.php:148 ../../include/text.php:1927 msgid "status" msgstr "status" -#: ../../Zotlabs/Module/Like.php:420 ../../include/conversation.php:164 +#: ../../Zotlabs/Module/Like.php:419 ../../include/conversation.php:164 #, php-format msgid "%1$s likes %2$s's %3$s" msgstr "%1$s liker %2$s sin %3$s" -#: ../../Zotlabs/Module/Like.php:422 ../../include/conversation.php:167 +#: ../../Zotlabs/Module/Like.php:421 ../../include/conversation.php:167 #, php-format msgid "%1$s doesn't like %2$s's %3$s" msgstr "%1$s liker ikke %2$s sin %3$s" -#: ../../Zotlabs/Module/Like.php:424 +#: ../../Zotlabs/Module/Like.php:423 #, php-format msgid "%1$s agrees with %2$s's %3$s" msgstr "%1$s er enig med %2$s sin %3$s" -#: ../../Zotlabs/Module/Like.php:426 +#: ../../Zotlabs/Module/Like.php:425 #, php-format msgid "%1$s doesn't agree with %2$s's %3$s" msgstr "%1$s er ikke enig med %2$s sin %3$s" -#: ../../Zotlabs/Module/Like.php:428 +#: ../../Zotlabs/Module/Like.php:427 #, php-format msgid "%1$s abstains from a decision on %2$s's %3$s" msgstr "%1$s avstår fra å mene noe om %2$s sin %3$s" -#: ../../Zotlabs/Module/Like.php:430 +#: ../../Zotlabs/Module/Like.php:429 #, php-format msgid "%1$s is attending %2$s's %3$s" msgstr "%1$s deltar på %2$ss %3$s" -#: ../../Zotlabs/Module/Like.php:432 +#: ../../Zotlabs/Module/Like.php:431 #, php-format msgid "%1$s is not attending %2$s's %3$s" msgstr "%1$s deltar ikke på %2$ss %3$s" -#: ../../Zotlabs/Module/Like.php:434 +#: ../../Zotlabs/Module/Like.php:433 #, php-format msgid "%1$s may attend %2$s's %3$s" msgstr "%1$s deltar kanskje på %2$ss %3$s" -#: ../../Zotlabs/Module/Like.php:537 +#: ../../Zotlabs/Module/Like.php:536 msgid "Action completed." msgstr "Handling ferdig." -#: ../../Zotlabs/Module/Like.php:538 +#: ../../Zotlabs/Module/Like.php:537 msgid "Thank you." msgstr "Tusen takk." -#: ../../Zotlabs/Module/Import_items.php:102 +#: ../../Zotlabs/Module/Profiles.php:24 ../../Zotlabs/Module/Profiles.php:189 +#: ../../Zotlabs/Module/Profiles.php:246 ../../Zotlabs/Module/Profiles.php:625 +msgid "Profile not found." +msgstr "Profilen ble ikke funnet." + +#: ../../Zotlabs/Module/Profiles.php:44 +msgid "Profile deleted." +msgstr "Profilen er slettet." + +#: ../../Zotlabs/Module/Profiles.php:68 ../../Zotlabs/Module/Profiles.php:104 +msgid "Profile-" +msgstr "Profil-" + +#: ../../Zotlabs/Module/Profiles.php:89 ../../Zotlabs/Module/Profiles.php:132 +msgid "New profile created." +msgstr "Ny profil opprettet." + +#: ../../Zotlabs/Module/Profiles.php:110 +msgid "Profile unavailable to clone." +msgstr "Profilen er utilgjengelig for klonen." + +#: ../../Zotlabs/Module/Profiles.php:151 +msgid "Profile unavailable to export." +msgstr "Profilen er utilgjengelig for eksport." + +#: ../../Zotlabs/Module/Profiles.php:256 +msgid "Profile Name is required." +msgstr "Profilnavn er påkrevd." + +#: ../../Zotlabs/Module/Profiles.php:427 +msgid "Marital Status" +msgstr "Sivilstand" + +#: ../../Zotlabs/Module/Profiles.php:431 +msgid "Romantic Partner" +msgstr "Romantisk partner" + +#: ../../Zotlabs/Module/Profiles.php:435 ../../Zotlabs/Module/Profiles.php:736 +msgid "Likes" +msgstr "Liker" + +#: ../../Zotlabs/Module/Profiles.php:439 ../../Zotlabs/Module/Profiles.php:737 +msgid "Dislikes" +msgstr "Liker ikke" + +#: ../../Zotlabs/Module/Profiles.php:443 ../../Zotlabs/Module/Profiles.php:744 +msgid "Work/Employment" +msgstr "Arbeid/sysselsetting" + +#: ../../Zotlabs/Module/Profiles.php:446 +msgid "Religion" +msgstr "Religion" + +#: ../../Zotlabs/Module/Profiles.php:450 +msgid "Political Views" +msgstr "Politiske synspunkter" + +#: ../../Zotlabs/Module/Profiles.php:458 +msgid "Sexual Preference" +msgstr "Seksuelle preferanser" + +#: ../../Zotlabs/Module/Profiles.php:462 +msgid "Homepage" +msgstr "Hjemmeside" + +#: ../../Zotlabs/Module/Profiles.php:466 +msgid "Interests" +msgstr "Interesser" + +#: ../../Zotlabs/Module/Profiles.php:470 ../../Zotlabs/Module/Locs.php:118 +#: ../../Zotlabs/Module/Admin.php:1224 +msgid "Address" +msgstr "Adresse" + +#: ../../Zotlabs/Module/Profiles.php:560 +msgid "Profile updated." +msgstr "Profilen er oppdatert." + +#: ../../Zotlabs/Module/Profiles.php:644 +msgid "Hide your connections list from viewers of this profile" +msgstr "Skjul listen med forbindelser fra besøkende som ser denne profilen" + +#: ../../Zotlabs/Module/Profiles.php:686 +msgid "Edit Profile Details" +msgstr "Endre profildetaljer" + +#: ../../Zotlabs/Module/Profiles.php:688 +msgid "View this profile" +msgstr "Vis denne profilen" + +#: ../../Zotlabs/Module/Profiles.php:689 ../../Zotlabs/Module/Profiles.php:771 +#: ../../include/channel.php:998 +msgid "Edit visibility" +msgstr "Endre synlighet" + +#: ../../Zotlabs/Module/Profiles.php:690 +msgid "Profile Tools" +msgstr "Profilverktøy" + +#: ../../Zotlabs/Module/Profiles.php:691 +msgid "Change cover photo" +msgstr "Endre forsidebilde" + +#: ../../Zotlabs/Module/Profiles.php:692 ../../include/channel.php:969 +msgid "Change profile photo" +msgstr "Endre profilbilde" + +#: ../../Zotlabs/Module/Profiles.php:693 +msgid "Create a new profile using these settings" +msgstr "Lag en ny profil ved å bruke disse innstillingene" + +#: ../../Zotlabs/Module/Profiles.php:694 +msgid "Clone this profile" +msgstr "Klon denne profilen" + +#: ../../Zotlabs/Module/Profiles.php:695 +msgid "Delete this profile" +msgstr "Slett denne profilen" + +#: ../../Zotlabs/Module/Profiles.php:696 +msgid "Add profile things" +msgstr "Legg til profilting" + +#: ../../Zotlabs/Module/Profiles.php:697 ../../include/conversation.php:1541 +#: ../../include/widgets.php:105 +msgid "Personal" +msgstr "Personlig" + +#: ../../Zotlabs/Module/Profiles.php:699 +msgid "Relation" +msgstr "Forhold" + +#: ../../Zotlabs/Module/Profiles.php:700 ../../include/datetime.php:48 +msgid "Miscellaneous" +msgstr "Forskjellig" + +#: ../../Zotlabs/Module/Profiles.php:702 +msgid "Import profile from file" +msgstr "Importer profil fra fil" + +#: ../../Zotlabs/Module/Profiles.php:703 +msgid "Export profile to file" +msgstr "Eksporter profil til fil" + +#: ../../Zotlabs/Module/Profiles.php:704 +msgid "Your gender" +msgstr "Ditt kjønn" + +#: ../../Zotlabs/Module/Profiles.php:705 +msgid "Marital status" +msgstr "Sivilstand" + +#: ../../Zotlabs/Module/Profiles.php:706 +msgid "Sexual preference" +msgstr "Seksuelle preferanser" + +#: ../../Zotlabs/Module/Profiles.php:709 +msgid "Profile name" +msgstr "Profilnavn" + +#: ../../Zotlabs/Module/Profiles.php:711 +msgid "This is your default profile." +msgstr "Dette er din standardprofil." + +#: ../../Zotlabs/Module/Profiles.php:713 +msgid "Your full name" +msgstr "Ditt fulle navn" + +#: ../../Zotlabs/Module/Profiles.php:714 +msgid "Title/Description" +msgstr "Tittel/beskrivelse" + +#: ../../Zotlabs/Module/Profiles.php:717 +msgid "Street address" +msgstr "Gateadresse" + +#: ../../Zotlabs/Module/Profiles.php:718 +msgid "Locality/City" +msgstr "Sted/by" + +#: ../../Zotlabs/Module/Profiles.php:719 +msgid "Region/State" +msgstr "Region/fylke" + +#: ../../Zotlabs/Module/Profiles.php:720 +msgid "Postal/Zip code" +msgstr "Postnummer/ZIP-kode" + +#: ../../Zotlabs/Module/Profiles.php:721 +msgid "Country" +msgstr "Land" + +#: ../../Zotlabs/Module/Profiles.php:726 +msgid "Who (if applicable)" +msgstr "Hvem (hvis det er aktuelt)" + +#: ../../Zotlabs/Module/Profiles.php:726 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +msgstr "Eksempler: kari123, Kari Villiamsen, kari@example.com" + +#: ../../Zotlabs/Module/Profiles.php:727 +msgid "Since (date)" +msgstr "Siden (dato)" + +#: ../../Zotlabs/Module/Profiles.php:730 +msgid "Tell us about yourself" +msgstr "Fortell oss om deg selv" + +#: ../../Zotlabs/Module/Profiles.php:732 +msgid "Hometown" +msgstr "Hjemby" + +#: ../../Zotlabs/Module/Profiles.php:733 +msgid "Political views" +msgstr "Politiske synspunkter" + +#: ../../Zotlabs/Module/Profiles.php:734 +msgid "Religious views" +msgstr "Religiøse synspunkter" + +#: ../../Zotlabs/Module/Profiles.php:735 +msgid "Keywords used in directory listings" +msgstr "Nøkkelord bruk i katalogoppføringer" + +#: ../../Zotlabs/Module/Profiles.php:735 +msgid "Example: fishing photography software" +msgstr "Eksempel: fisking fotografering programvare" + +#: ../../Zotlabs/Module/Profiles.php:738 +msgid "Musical interests" +msgstr "Musikkinteresser" + +#: ../../Zotlabs/Module/Profiles.php:739 +msgid "Books, literature" +msgstr "Bøker, litteratur" + +#: ../../Zotlabs/Module/Profiles.php:740 +msgid "Television" +msgstr "TV/fjernsyn" + +#: ../../Zotlabs/Module/Profiles.php:741 +msgid "Film/Dance/Culture/Entertainment" +msgstr "Film/dans/kultur/underholdning" + +#: ../../Zotlabs/Module/Profiles.php:742 +msgid "Hobbies/Interests" +msgstr "Hobbier/Interesser" + +#: ../../Zotlabs/Module/Profiles.php:743 +msgid "Love/Romance" +msgstr "Kjærlighet/romantikk" + +#: ../../Zotlabs/Module/Profiles.php:745 +msgid "School/Education" +msgstr "Skole/utdanning" + +#: ../../Zotlabs/Module/Profiles.php:746 +msgid "Contact information and social networks" +msgstr "Kontaktinformasjon og sosiale nettverk" + +#: ../../Zotlabs/Module/Profiles.php:747 +msgid "My other channels" +msgstr "Mine andre kanaler" + +#: ../../Zotlabs/Module/Profiles.php:767 ../../include/channel.php:994 +msgid "Profile Image" +msgstr "Profilbilde" + +#: ../../Zotlabs/Module/Profiles.php:777 ../../include/nav.php:88 +#: ../../include/channel.php:976 +msgid "Edit Profiles" +msgstr "Endre profiler" + +#: ../../Zotlabs/Module/Import.php:33 +#, php-format +msgid "Your service plan only allows %d channels." +msgstr "Din tjenesteplan tillater bare %d kanaler." + +#: ../../Zotlabs/Module/Import.php:71 ../../Zotlabs/Module/Import_items.php:42 +msgid "Nothing to import." +msgstr "Ingenting å importere." + +#: ../../Zotlabs/Module/Import.php:95 ../../Zotlabs/Module/Import_items.php:66 +msgid "Unable to download data from old server" +msgstr "Ikke i stand til å laste ned data fra gammel tjener" + +#: ../../Zotlabs/Module/Import.php:101 +#: ../../Zotlabs/Module/Import_items.php:72 +msgid "Imported file is empty." +msgstr "Importert fil er tom." + +#: ../../Zotlabs/Module/Import.php:123 +#: ../../Zotlabs/Module/Import_items.php:88 +#, php-format +msgid "Warning: Database versions differ by %1$d updates." +msgstr "Advarsel: databaseversjoner avviker med %1$d oppdateringer." + +#: ../../Zotlabs/Module/Import.php:153 ../../include/import.php:107 +msgid "Cloned channel not found. Import failed." +msgstr "Klonet kanal ble ikke funnet. Import mislyktes." + +#: ../../Zotlabs/Module/Import.php:163 +msgid "No channel. Import failed." +msgstr "Ingen kanal. Import mislyktes." + +#: ../../Zotlabs/Module/Import.php:520 +#: ../../include/Import/import_diaspora.php:142 +msgid "Import completed." +msgstr "Import ferdig." + +#: ../../Zotlabs/Module/Import.php:542 +msgid "You must be logged in to use this feature." +msgstr "Du må være innlogget for å bruke denne funksjonen." + +#: ../../Zotlabs/Module/Import.php:547 +msgid "Import Channel" +msgstr "Importer kanal" + +#: ../../Zotlabs/Module/Import.php:548 +msgid "" +"Use this form to import an existing channel from a different server/hub. You" +" may retrieve the channel identity from the old server/hub via the network " +"or provide an export file." +msgstr "Bruk dette skjemaet for å importere en eksisterende kanal fra en annen tjener/hub. Du kan hente inn kanalidentiteten fra den gamle tjeneren/huben via nettverket eller ved å bruke en eksportfil." + +#: ../../Zotlabs/Module/Import.php:549 +#: ../../Zotlabs/Module/Import_items.php:121 +msgid "File to Upload" +msgstr "Fil som skal lastes opp" + +#: ../../Zotlabs/Module/Import.php:550 +msgid "Or provide the old server/hub details" +msgstr "Eller oppgi detaljene fra den gamle tjeneren/hub-en" + +#: ../../Zotlabs/Module/Import.php:551 +msgid "Your old identity address (xyz@example.com)" +msgstr "Din gamle identitetsadresse (xyz@example.com)" + +#: ../../Zotlabs/Module/Import.php:552 +msgid "Your old login email address" +msgstr "Din gamle innloggings e-postadresse" + +#: ../../Zotlabs/Module/Import.php:553 +msgid "Your old login password" +msgstr "Ditt gamle innloggingspassord" + +#: ../../Zotlabs/Module/Import.php:554 +msgid "" +"For either option, please choose whether to make this hub your new primary " +"address, or whether your old location should continue this role. You will be" +" able to post from either location, but only one can be marked as the " +"primary location for files, photos, and media." +msgstr "Enten du tar det ene eller det andre valget, vennligst angi om du vil at denne hubben skal være din nye primære adresse, eller om din gamle plassering skal fortsette å ha denne rollen. Du kan lage innlegg fra den ene eller den andre plasseringen, men bare en av dem kan markeres som den primære plasseringen for filer, bilder og media." + +#: ../../Zotlabs/Module/Import.php:555 +msgid "Make this hub my primary location" +msgstr "Gjør dette nettstedet til min primære plassering" + +#: ../../Zotlabs/Module/Import.php:556 +msgid "" +"Import existing posts if possible (experimental - limited by available " +"memory" +msgstr "Importer eksisterende innlegg om mulig (eksperimentelt - begrenset av tilgjengelig minne)" + +#: ../../Zotlabs/Module/Import.php:557 +msgid "" +"This process may take several minutes to complete. Please submit the form " +"only once and leave this page open until finished." +msgstr "Denne prosessen kan ta flere minutter å fullføre. Vennligst send inn dette skjemaet bare en gang og la siden være åpen inntil den er ferdig." + +#: ../../Zotlabs/Module/Home.php:74 ../../Zotlabs/Module/Home.php:82 +#: ../../Zotlabs/Module/Siteinfo.php:48 +msgid "$Projectname" +msgstr "$Projectname" + +#: ../../Zotlabs/Module/Home.php:92 +#, php-format +msgid "Welcome to %s" +msgstr "Velkommen til %s" + +#: ../../Zotlabs/Module/Item.php:179 +msgid "Unable to locate original post." +msgstr "Ikke i stand til å finne opprinnelig innlegg." + +#: ../../Zotlabs/Module/Item.php:432 +msgid "Empty post discarded." +msgstr "Tomt innlegg forkastet." + +#: ../../Zotlabs/Module/Item.php:472 +msgid "Executable content type not permitted to this channel." +msgstr "Kjørbar innholdstype er ikke tillat for denne kanalen." + +#: ../../Zotlabs/Module/Item.php:856 +msgid "Duplicate post suppressed." +msgstr "Duplikat av innlegg forhindret." + +#: ../../Zotlabs/Module/Item.php:989 +msgid "System error. Post not saved." +msgstr "Systemfeil. Innlegg ble ikke lagret." + +#: ../../Zotlabs/Module/Item.php:1242 +msgid "Unable to obtain post information from database." +msgstr "Ikke i stand til å få tak i informasjon om innlegg fra databasen." + +#: ../../Zotlabs/Module/Item.php:1249 +#, php-format +msgid "You have reached your limit of %1$.0f top level posts." +msgstr "Du har nådd din grense på %1$.0f startinnlegg." + +#: ../../Zotlabs/Module/Item.php:1256 +#, php-format +msgid "You have reached your limit of %1$.0f webpages." +msgstr "Du har nådd din grense på %1$.0f websider." + +#: ../../Zotlabs/Module/Photos.php:82 +msgid "Page owner information could not be retrieved." +msgstr "Informasjon om sideeier kunne ikke hentes." + +#: ../../Zotlabs/Module/Photos.php:97 ../../Zotlabs/Module/Photos.php:741 +#: ../../Zotlabs/Module/Profile_photo.php:115 +#: ../../Zotlabs/Module/Profile_photo.php:212 +#: ../../Zotlabs/Module/Profile_photo.php:311 +#: ../../include/photo/photo_driver.php:718 +msgid "Profile Photos" +msgstr "Profilbilder" + +#: ../../Zotlabs/Module/Photos.php:103 ../../Zotlabs/Module/Photos.php:147 +msgid "Album not found." +msgstr "Albumet ble ikke funnet." + +#: ../../Zotlabs/Module/Photos.php:130 +msgid "Delete Album" +msgstr "Slett album" + +#: ../../Zotlabs/Module/Photos.php:151 +msgid "" +"Multiple storage folders exist with this album name, but within different " +"directories. Please remove the desired folder or folders using the Files " +"manager" +msgstr "Flere lagringsmapper finnes med dette albumnavnet, men i ulike mapper. Vennligst fjern den ønskede mappen eller mappene med filbehandleren." + +#: ../../Zotlabs/Module/Photos.php:208 ../../Zotlabs/Module/Photos.php:1051 +msgid "Delete Photo" +msgstr "Slett bilde" + +#: ../../Zotlabs/Module/Photos.php:531 +msgid "No photos selected" +msgstr "Ingen bilder valgt" + +#: ../../Zotlabs/Module/Photos.php:580 +msgid "Access to this item is restricted." +msgstr "Tilgang til dette elementet er begrenset." + +#: ../../Zotlabs/Module/Photos.php:619 +#, php-format +msgid "%1$.2f MB of %2$.2f MB photo storage used." +msgstr "%1$.2f MB av %2$.2f MB lagringsplass til bilder er brukt." + +#: ../../Zotlabs/Module/Photos.php:622 +#, php-format +msgid "%1$.2f MB photo storage used." +msgstr "%1$.2f MB lagringsplass til bilder er brukt." + +#: ../../Zotlabs/Module/Photos.php:658 +msgid "Upload Photos" +msgstr "Last opp bilder" + +#: ../../Zotlabs/Module/Photos.php:662 +msgid "Enter an album name" +msgstr "Skriv et albumnavn" + +#: ../../Zotlabs/Module/Photos.php:663 +msgid "or select an existing album (doubleclick)" +msgstr "eller velg et eksisterende album (dobbeltklikk)" + +#: ../../Zotlabs/Module/Photos.php:664 +msgid "Create a status post for this upload" +msgstr "Lag et statusinnlegg for denne opplastingen" + +#: ../../Zotlabs/Module/Photos.php:665 +msgid "Caption (optional):" +msgstr "Bildetekst (valgfritt):" + +#: ../../Zotlabs/Module/Photos.php:666 +msgid "Description (optional):" +msgstr "Beskrivelse (valgfritt):" + +#: ../../Zotlabs/Module/Photos.php:693 +msgid "Album name could not be decoded" +msgstr "Albumnavnet kunne ikke dekodes" + +#: ../../Zotlabs/Module/Photos.php:741 +msgid "Contact Photos" +msgstr "Kontaktbilder" + +#: ../../Zotlabs/Module/Photos.php:764 +msgid "Show Newest First" +msgstr "Vis nyeste først" + +#: ../../Zotlabs/Module/Photos.php:766 +msgid "Show Oldest First" +msgstr "Vis eldste først" + +#: ../../Zotlabs/Module/Photos.php:790 ../../Zotlabs/Module/Photos.php:1329 +#: ../../Zotlabs/Module/Embedphotos.php:141 ../../include/widgets.php:1593 +msgid "View Photo" +msgstr "Vis foto" + +#: ../../Zotlabs/Module/Photos.php:821 +#: ../../Zotlabs/Module/Embedphotos.php:157 ../../include/widgets.php:1610 +msgid "Edit Album" +msgstr "Endre album" + +#: ../../Zotlabs/Module/Photos.php:868 +msgid "Permission denied. Access to this item may be restricted." +msgstr "Tillatelse avvist. Tilgang til dette elementet kan være begrenset." + +#: ../../Zotlabs/Module/Photos.php:870 +msgid "Photo not available" +msgstr "Bilde er utilgjengelig" + +#: ../../Zotlabs/Module/Photos.php:928 +msgid "Use as profile photo" +msgstr "Bruk som profilbilde" + +#: ../../Zotlabs/Module/Photos.php:929 +msgid "Use as cover photo" +msgstr "Bruk som forsidebilde" + +#: ../../Zotlabs/Module/Photos.php:936 +msgid "Private Photo" +msgstr "Privat bilde" + +#: ../../Zotlabs/Module/Photos.php:951 +msgid "View Full Size" +msgstr "Vis i full størrelse" + +#: ../../Zotlabs/Module/Photos.php:996 ../../Zotlabs/Module/Admin.php:1437 +#: ../../Zotlabs/Module/Tagrm.php:137 +msgid "Remove" +msgstr "Fjern" + +#: ../../Zotlabs/Module/Photos.php:1030 +msgid "Edit photo" +msgstr "Endre bilde" + +#: ../../Zotlabs/Module/Photos.php:1032 +msgid "Rotate CW (right)" +msgstr "Roter med klokka (mot høyre)" + +#: ../../Zotlabs/Module/Photos.php:1033 +msgid "Rotate CCW (left)" +msgstr "Roter mot klokka (venstre)" + +#: ../../Zotlabs/Module/Photos.php:1036 +msgid "Enter a new album name" +msgstr "Skriv et nytt albumnavn" + +#: ../../Zotlabs/Module/Photos.php:1037 +msgid "or select an existing one (doubleclick)" +msgstr "eller velg et eksisterende album (dobbeltklikk)" + +#: ../../Zotlabs/Module/Photos.php:1040 +msgid "Caption" +msgstr "Overskrift" + +#: ../../Zotlabs/Module/Photos.php:1042 +msgid "Add a Tag" +msgstr "Legg til merkelapp" + +#: ../../Zotlabs/Module/Photos.php:1046 +msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" +msgstr "Eksempel: @bob, @Barbara_Jensen, @jim@example.com" + +#: ../../Zotlabs/Module/Photos.php:1049 +msgid "Flag as adult in album view" +msgstr "Flag som voksent i albumvisning" + +#: ../../Zotlabs/Module/Photos.php:1068 ../../Zotlabs/Lib/ThreadItem.php:261 +msgid "I like this (toggle)" +msgstr "Jeg liker dette (skru av og på)" + +#: ../../Zotlabs/Module/Photos.php:1069 ../../Zotlabs/Lib/ThreadItem.php:262 +msgid "I don't like this (toggle)" +msgstr "Jeg liker ikke dette (skru av og på)" + +#: ../../Zotlabs/Module/Photos.php:1071 ../../Zotlabs/Lib/ThreadItem.php:397 +#: ../../include/conversation.php:743 +msgid "Please wait" +msgstr "Vennligst vent" + +#: ../../Zotlabs/Module/Photos.php:1087 ../../Zotlabs/Module/Photos.php:1205 +#: ../../Zotlabs/Lib/ThreadItem.php:707 +msgid "This is you" +msgstr "Dette er deg" + +#: ../../Zotlabs/Module/Photos.php:1089 ../../Zotlabs/Module/Photos.php:1207 +#: ../../Zotlabs/Lib/ThreadItem.php:709 ../../include/js_strings.php:6 +msgid "Comment" +msgstr "Kommentar" + +#: ../../Zotlabs/Module/Photos.php:1105 ../../include/conversation.php:577 +msgctxt "title" +msgid "Likes" +msgstr "Liker" + +#: ../../Zotlabs/Module/Photos.php:1105 ../../include/conversation.php:577 +msgctxt "title" +msgid "Dislikes" +msgstr "Liker ikke" + +#: ../../Zotlabs/Module/Photos.php:1106 ../../include/conversation.php:578 +msgctxt "title" +msgid "Agree" +msgstr "Enig" + +#: ../../Zotlabs/Module/Photos.php:1106 ../../include/conversation.php:578 +msgctxt "title" +msgid "Disagree" +msgstr "Uenig" + +#: ../../Zotlabs/Module/Photos.php:1106 ../../include/conversation.php:578 +msgctxt "title" +msgid "Abstain" +msgstr "Avstår" + +#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:579 +msgctxt "title" +msgid "Attending" +msgstr "Deltar" + +#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:579 +msgctxt "title" +msgid "Not attending" +msgstr "Deltar ikke" + +#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:579 +msgctxt "title" +msgid "Might attend" +msgstr "Deltar kanskje" + +#: ../../Zotlabs/Module/Photos.php:1124 ../../Zotlabs/Module/Photos.php:1136 +#: ../../Zotlabs/Lib/ThreadItem.php:181 ../../Zotlabs/Lib/ThreadItem.php:193 +#: ../../include/conversation.php:1738 +msgid "View all" +msgstr "Vis alle" + +#: ../../Zotlabs/Module/Photos.php:1128 ../../Zotlabs/Lib/ThreadItem.php:185 +#: ../../include/taxonomy.php:403 ../../include/channel.php:1198 +#: ../../include/conversation.php:1762 +msgctxt "noun" +msgid "Like" +msgid_plural "Likes" +msgstr[0] "Liker" +msgstr[1] "Liker" + +#: ../../Zotlabs/Module/Photos.php:1133 ../../Zotlabs/Lib/ThreadItem.php:190 +#: ../../include/conversation.php:1765 +msgctxt "noun" +msgid "Dislike" +msgid_plural "Dislikes" +msgstr[0] "Liker ikke" +msgstr[1] "Liker ikke" + +#: ../../Zotlabs/Module/Photos.php:1233 +msgid "Photo Tools" +msgstr "Fotoverktøy" + +#: ../../Zotlabs/Module/Photos.php:1242 +msgid "In This Photo:" +msgstr "I dette bildet:" + +#: ../../Zotlabs/Module/Photos.php:1247 +msgid "Map" +msgstr "Kart" + +#: ../../Zotlabs/Module/Photos.php:1255 ../../Zotlabs/Lib/ThreadItem.php:386 +msgctxt "noun" +msgid "Likes" +msgstr "Liker" + +#: ../../Zotlabs/Module/Photos.php:1256 ../../Zotlabs/Lib/ThreadItem.php:387 +msgctxt "noun" +msgid "Dislikes" +msgstr "Liker ikke" + +#: ../../Zotlabs/Module/Photos.php:1261 ../../Zotlabs/Lib/ThreadItem.php:392 +#: ../../include/acl_selectors.php:283 +msgid "Close" +msgstr "Lukk" + +#: ../../Zotlabs/Module/Photos.php:1335 +msgid "View Album" +msgstr "Vis album" + +#: ../../Zotlabs/Module/Photos.php:1346 ../../Zotlabs/Module/Photos.php:1359 +#: ../../Zotlabs/Module/Photos.php:1360 +msgid "Recent Photos" +msgstr "Nye bilder" + +#: ../../Zotlabs/Module/Lockview.php:75 +msgid "Remote privacy information not available." +msgstr "Ekstern personverninformasjon er ikke tilgjengelig." + +#: ../../Zotlabs/Module/Lockview.php:96 +msgid "Visible to:" +msgstr "Synlig for:" + +#: ../../Zotlabs/Module/Import_items.php:104 msgid "Import completed" msgstr "Import ferdig" -#: ../../Zotlabs/Module/Import_items.php:117 +#: ../../Zotlabs/Module/Import_items.php:119 msgid "Import Items" msgstr "Importer elementer" -#: ../../Zotlabs/Module/Import_items.php:118 +#: ../../Zotlabs/Module/Import_items.php:120 msgid "" "Use this form to import existing posts and content from an export file." msgstr "Bruk dette skjemaet for å importere eksisterende innlegg og innhold fra en eksportfil." @@ -2146,7 +2893,7 @@ msgstr "Send invitasjoner" msgid "Enter email addresses, one per line:" msgstr "Skriv e-postadresser, en per linje:" -#: ../../Zotlabs/Module/Invite.php:135 ../../Zotlabs/Module/Mail.php:249 +#: ../../Zotlabs/Module/Invite.php:135 ../../Zotlabs/Module/Mail.php:241 msgid "Your message:" msgstr "Din melding:" @@ -2175,14 +2922,6 @@ msgstr "eller besøke" msgid "3. Click [Connect]" msgstr "3. Klikk [Forbindelse]" -#: ../../Zotlabs/Module/Lockview.php:61 -msgid "Remote privacy information not available." -msgstr "Ekstern personverninformasjon er ikke tilgjengelig." - -#: ../../Zotlabs/Module/Lockview.php:82 -msgid "Visible to:" -msgstr "Synlig for:" - #: ../../Zotlabs/Module/Locs.php:25 ../../Zotlabs/Module/Locs.php:54 msgid "Location not found." msgstr "Plassering er ikke funnet." @@ -2209,14 +2948,9 @@ msgstr "Ingen plasseringer ble funnet." msgid "Manage Channel Locations" msgstr "Håndter kanalplasseringer" -#: ../../Zotlabs/Module/Locs.php:118 ../../Zotlabs/Module/Profiles.php:470 -#: ../../Zotlabs/Module/Admin.php:1224 -msgid "Address" -msgstr "Adresse" - #: ../../Zotlabs/Module/Locs.php:119 msgid "Primary" -msgstr "" +msgstr "Hoved" #: ../../Zotlabs/Module/Locs.php:120 ../../Zotlabs/Module/Menu.php:113 msgid "Drop" @@ -2224,7 +2958,7 @@ msgstr "Slett" #: ../../Zotlabs/Module/Locs.php:122 msgid "Sync Now" -msgstr "" +msgstr "Synkroniser nå" #: ../../Zotlabs/Module/Locs.php:123 msgid "Please wait several minutes between consecutive operations." @@ -2256,87 +2990,87 @@ msgstr "Ikke i stand til å kommunisere med forespurt kanal." msgid "Cannot verify requested channel." msgstr "Kan ikke bekrefte forespurt kanal." -#: ../../Zotlabs/Module/Mail.php:78 +#: ../../Zotlabs/Module/Mail.php:70 msgid "Selected channel has private message restrictions. Send failed." msgstr "Valgt kanal har restriksjoner for private meldinger. Sending feilet." -#: ../../Zotlabs/Module/Mail.php:143 +#: ../../Zotlabs/Module/Mail.php:135 msgid "Messages" msgstr "Meldinger" -#: ../../Zotlabs/Module/Mail.php:178 +#: ../../Zotlabs/Module/Mail.php:170 msgid "Message recalled." msgstr "Innlegg tilbakekalt." -#: ../../Zotlabs/Module/Mail.php:191 +#: ../../Zotlabs/Module/Mail.php:183 msgid "Conversation removed." msgstr "Samtale fjernet." -#: ../../Zotlabs/Module/Mail.php:206 ../../Zotlabs/Module/Mail.php:315 +#: ../../Zotlabs/Module/Mail.php:198 ../../Zotlabs/Module/Mail.php:307 msgid "Expires YYYY-MM-DD HH:MM" msgstr "Utløper YYYY-MM-DD HH:MM" -#: ../../Zotlabs/Module/Mail.php:234 +#: ../../Zotlabs/Module/Mail.php:226 msgid "Requested channel is not in this network" msgstr "Forespurt kanal er ikke tilgjengelig i dette nettverket." -#: ../../Zotlabs/Module/Mail.php:242 +#: ../../Zotlabs/Module/Mail.php:234 msgid "Send Private Message" msgstr "Send privat melding" -#: ../../Zotlabs/Module/Mail.php:243 ../../Zotlabs/Module/Mail.php:368 +#: ../../Zotlabs/Module/Mail.php:235 ../../Zotlabs/Module/Mail.php:360 msgid "To:" msgstr "Til:" -#: ../../Zotlabs/Module/Mail.php:246 ../../Zotlabs/Module/Mail.php:370 +#: ../../Zotlabs/Module/Mail.php:238 ../../Zotlabs/Module/Mail.php:362 msgid "Subject:" msgstr "Emne:" -#: ../../Zotlabs/Module/Mail.php:251 ../../Zotlabs/Module/Mail.php:376 -#: ../../include/conversation.php:1220 +#: ../../Zotlabs/Module/Mail.php:243 ../../Zotlabs/Module/Mail.php:368 +#: ../../include/conversation.php:1231 msgid "Attach file" msgstr "Legg ved fil" -#: ../../Zotlabs/Module/Mail.php:253 +#: ../../Zotlabs/Module/Mail.php:245 msgid "Send" msgstr "Send" -#: ../../Zotlabs/Module/Mail.php:256 ../../Zotlabs/Module/Mail.php:381 -#: ../../include/conversation.php:1251 +#: ../../Zotlabs/Module/Mail.php:248 ../../Zotlabs/Module/Mail.php:373 +#: ../../include/conversation.php:1266 msgid "Set expiration date" msgstr "Angi utløpsdato" -#: ../../Zotlabs/Module/Mail.php:340 +#: ../../Zotlabs/Module/Mail.php:332 msgid "Delete message" msgstr "Slett melding" -#: ../../Zotlabs/Module/Mail.php:341 +#: ../../Zotlabs/Module/Mail.php:333 msgid "Delivery report" msgstr "Leveringsrapport" -#: ../../Zotlabs/Module/Mail.php:342 +#: ../../Zotlabs/Module/Mail.php:334 msgid "Recall message" msgstr "Tilbakekall innlegg" -#: ../../Zotlabs/Module/Mail.php:344 +#: ../../Zotlabs/Module/Mail.php:336 msgid "Message has been recalled." msgstr "Innlegget har blitt tilbakekalt." -#: ../../Zotlabs/Module/Mail.php:361 +#: ../../Zotlabs/Module/Mail.php:353 msgid "Delete Conversation" msgstr "Slett samtale" -#: ../../Zotlabs/Module/Mail.php:363 +#: ../../Zotlabs/Module/Mail.php:355 msgid "" "No secure communications available. You may be able to " "respond from the sender's profile page." msgstr "Ingen sikret kommunikasjon tilgjengelig. Du kan muligens greie å svare via senderens profilside." -#: ../../Zotlabs/Module/Mail.php:367 +#: ../../Zotlabs/Module/Mail.php:359 msgid "Send Reply" msgstr "Send svar" -#: ../../Zotlabs/Module/Mail.php:372 +#: ../../Zotlabs/Module/Mail.php:364 #, php-format msgid "Your message for %s (%s):" msgstr "Din melding til %s (%s):" @@ -2351,8 +3085,8 @@ msgstr "Du har laget %1$.0f av %2$.0f tillatte kanaler." msgid "Create a new channel" msgstr "Lag en ny kanal" -#: ../../Zotlabs/Module/Manage.php:164 ../../Zotlabs/Lib/Apps.php:213 -#: ../../include/nav.php:206 +#: ../../Zotlabs/Module/Manage.php:164 ../../Zotlabs/Lib/Apps.php:214 +#: ../../include/nav.php:208 msgid "Channel Manager" msgstr "Kanalstyring" @@ -2384,80 +3118,7 @@ msgstr "%d nye introduksjoner" #: ../../Zotlabs/Module/Manage.php:175 msgid "Delegated Channel" -msgstr "" - -#: ../../Zotlabs/Module/Lostpass.php:19 -msgid "No valid account found." -msgstr "Ingen gyldig konto funnet." - -#: ../../Zotlabs/Module/Lostpass.php:33 -msgid "Password reset request issued. Check your email." -msgstr "Forespørsel om å tilbakestille passord er mottatt. Sjekk e-posten din." - -#: ../../Zotlabs/Module/Lostpass.php:39 ../../Zotlabs/Module/Lostpass.php:107 -#, php-format -msgid "Site Member (%s)" -msgstr "Nettstedsmedlem (%s)" - -#: ../../Zotlabs/Module/Lostpass.php:44 -#, php-format -msgid "Password reset requested at %s" -msgstr "Forespurt om å tilbakestille passord hos %s" - -#: ../../Zotlabs/Module/Lostpass.php:67 -msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." -msgstr "Forespørsel kunne ikke bekreftes. (Du kan ha sendt den inn tidligere.) Tilbakestilling av passord mislyktes." - -#: ../../Zotlabs/Module/Lostpass.php:90 ../../boot.php:1711 -msgid "Password Reset" -msgstr "Tilbakestill passord" - -#: ../../Zotlabs/Module/Lostpass.php:91 -msgid "Your password has been reset as requested." -msgstr "Ditt passord har blitt tilbakestilt som forespurt." - -#: ../../Zotlabs/Module/Lostpass.php:92 -msgid "Your new password is" -msgstr "Ditt nye passord er" - -#: ../../Zotlabs/Module/Lostpass.php:93 -msgid "Save or copy your new password - and then" -msgstr "Lagre eller kopier ditt nye passord, og deretter kan du" - -#: ../../Zotlabs/Module/Lostpass.php:94 -msgid "click here to login" -msgstr "klikke her for å logge inn" - -#: ../../Zotlabs/Module/Lostpass.php:95 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." -msgstr "Ditt passord kan endres på siden Innstillinger etter vellykket innlogging." - -#: ../../Zotlabs/Module/Lostpass.php:112 -#, php-format -msgid "Your password has changed at %s" -msgstr "Ditt passord er endret hos %s" - -#: ../../Zotlabs/Module/Lostpass.php:127 -msgid "Forgot your Password?" -msgstr "Glemt passord ditt?" - -#: ../../Zotlabs/Module/Lostpass.php:128 -msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." -msgstr "Skriv e-postadressen din og send inn for å tilbakestille passordet ditt. Sjekk deretter din e-post for videre instruksjoner." - -#: ../../Zotlabs/Module/Lostpass.php:129 -msgid "Email Address" -msgstr "E-postadresse" - -#: ../../Zotlabs/Module/Lostpass.php:130 -msgid "Reset" -msgstr "Tilbakestill" +msgstr "Delegert kanal" #: ../../Zotlabs/Module/Menu.php:49 msgid "Unable to update menu." @@ -2495,7 +3156,7 @@ msgstr "Menyen kan brukes til å lagre lagrede bokmerker" msgid "Submit and proceed" msgstr "Send inn og fortsett" -#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2266 +#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2239 msgid "Menus" msgstr "Menyer" @@ -2556,13 +3217,86 @@ msgstr "Tillat bokmerker" msgid "Not found." msgstr "Ikke funnet." +#: ../../Zotlabs/Module/Lostpass.php:19 +msgid "No valid account found." +msgstr "Ingen gyldig konto funnet." + +#: ../../Zotlabs/Module/Lostpass.php:33 +msgid "Password reset request issued. Check your email." +msgstr "Forespørsel om å tilbakestille passord er mottatt. Sjekk e-posten din." + +#: ../../Zotlabs/Module/Lostpass.php:39 ../../Zotlabs/Module/Lostpass.php:107 +#, php-format +msgid "Site Member (%s)" +msgstr "Nettstedsmedlem (%s)" + +#: ../../Zotlabs/Module/Lostpass.php:44 +#, php-format +msgid "Password reset requested at %s" +msgstr "Forespurt om å tilbakestille passord hos %s" + +#: ../../Zotlabs/Module/Lostpass.php:67 +msgid "" +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." +msgstr "Forespørsel kunne ikke bekreftes. (Du kan ha sendt den inn tidligere.) Tilbakestilling av passord mislyktes." + +#: ../../Zotlabs/Module/Lostpass.php:90 ../../boot.php:1712 +msgid "Password Reset" +msgstr "Tilbakestill passord" + +#: ../../Zotlabs/Module/Lostpass.php:91 +msgid "Your password has been reset as requested." +msgstr "Ditt passord har blitt tilbakestilt som forespurt." + +#: ../../Zotlabs/Module/Lostpass.php:92 +msgid "Your new password is" +msgstr "Ditt nye passord er" + +#: ../../Zotlabs/Module/Lostpass.php:93 +msgid "Save or copy your new password - and then" +msgstr "Lagre eller kopier ditt nye passord, og deretter kan du" + +#: ../../Zotlabs/Module/Lostpass.php:94 +msgid "click here to login" +msgstr "klikke her for å logge inn" + +#: ../../Zotlabs/Module/Lostpass.php:95 +msgid "" +"Your password may be changed from the Settings page after " +"successful login." +msgstr "Ditt passord kan endres på siden Innstillinger etter vellykket innlogging." + +#: ../../Zotlabs/Module/Lostpass.php:112 +#, php-format +msgid "Your password has changed at %s" +msgstr "Ditt passord er endret hos %s" + +#: ../../Zotlabs/Module/Lostpass.php:127 +msgid "Forgot your Password?" +msgstr "Glemt passord ditt?" + +#: ../../Zotlabs/Module/Lostpass.php:128 +msgid "" +"Enter your email address and submit to have your password reset. Then check " +"your email for further instructions." +msgstr "Skriv e-postadressen din og send inn for å tilbakestille passordet ditt. Sjekk deretter din e-post for videre instruksjoner." + +#: ../../Zotlabs/Module/Lostpass.php:129 +msgid "Email Address" +msgstr "E-postadresse" + +#: ../../Zotlabs/Module/Lostpass.php:130 +msgid "Reset" +msgstr "Tilbakestill" + #: ../../Zotlabs/Module/Mood.php:67 ../../include/conversation.php:260 #, php-format msgctxt "mood" msgid "%1$s is %2$s" msgstr "%1$s er %2$s" -#: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Lib/Apps.php:225 +#: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Lib/Apps.php:227 msgid "Mood" msgstr "Stemning" @@ -2570,6 +3304,44 @@ msgstr "Stemning" msgid "Set your current mood and tell your friends" msgstr "Angi ditt nåværende humør og fortell dine venner" +#: ../../Zotlabs/Module/Network.php:94 +msgid "No such group" +msgstr "Gruppen finnes ikke" + +#: ../../Zotlabs/Module/Network.php:134 +msgid "No such channel" +msgstr "Ingen slik kanal" + +#: ../../Zotlabs/Module/Network.php:139 +msgid "forum" +msgstr "forum" + +#: ../../Zotlabs/Module/Network.php:151 +msgid "Search Results For:" +msgstr "Søkeresultat for:" + +#: ../../Zotlabs/Module/Network.php:215 +msgid "Privacy group is empty" +msgstr "Personverngruppen er tom" + +#: ../../Zotlabs/Module/Network.php:224 +msgid "Privacy group: " +msgstr "Personverngruppe:" + +#: ../../Zotlabs/Module/Network.php:250 +msgid "Invalid connection." +msgstr "Ugyldig forbindelse." + +#: ../../Zotlabs/Module/Notify.php:57 +#: ../../Zotlabs/Module/Notifications.php:98 +msgid "No more system notifications." +msgstr "Ingen flere systemvarsler." + +#: ../../Zotlabs/Module/Notify.php:61 +#: ../../Zotlabs/Module/Notifications.php:102 +msgid "System Notifications" +msgstr "Systemvarsler" + #: ../../Zotlabs/Module/Match.php:26 msgid "Profile Match" msgstr "Profiltreff" @@ -2586,43 +3358,17 @@ msgstr "er interessert i:" msgid "No matches" msgstr "Ingen treff" -#: ../../Zotlabs/Module/Network.php:96 -msgid "No such group" -msgstr "Gruppen finnes ikke" +#: ../../Zotlabs/Module/Channel.php:40 +msgid "Posts and comments" +msgstr "Innlegg og kommentarer" -#: ../../Zotlabs/Module/Network.php:136 -msgid "No such channel" -msgstr "Ingen slik kanal" +#: ../../Zotlabs/Module/Channel.php:41 +msgid "Only posts" +msgstr "Bare innlegg" -#: ../../Zotlabs/Module/Network.php:141 -msgid "forum" -msgstr "forum" - -#: ../../Zotlabs/Module/Network.php:153 -msgid "Search Results For:" -msgstr "Søkeresultat for:" - -#: ../../Zotlabs/Module/Network.php:217 -msgid "Privacy group is empty" -msgstr "Personverngruppen er tom" - -#: ../../Zotlabs/Module/Network.php:226 -msgid "Privacy group: " -msgstr "Personverngruppe:" - -#: ../../Zotlabs/Module/Network.php:252 -msgid "Invalid connection." -msgstr "Ugyldig forbindelse." - -#: ../../Zotlabs/Module/Notify.php:57 -#: ../../Zotlabs/Module/Notifications.php:98 -msgid "No more system notifications." -msgstr "Ingen flere systemvarsler." - -#: ../../Zotlabs/Module/Notify.php:61 -#: ../../Zotlabs/Module/Notifications.php:102 -msgid "System Notifications" -msgstr "Systemvarsler" +#: ../../Zotlabs/Module/Channel.php:101 +msgid "Insufficient permissions. Request redirected to profile page." +msgstr "Utilstrekkelig tillatelse. Forespørsel omdirigert til profilsiden." #: ../../Zotlabs/Module/Mitem.php:52 msgid "Unable to create element." @@ -2641,7 +3387,7 @@ msgid "Menu Item Permissions" msgstr "Menyelement Tillatelser" #: ../../Zotlabs/Module/Mitem.php:154 ../../Zotlabs/Module/Mitem.php:227 -#: ../../Zotlabs/Module/Settings.php:1068 +#: ../../Zotlabs/Module/Settings.php:1163 msgid "(click to open/close)" msgstr "(klikk for å åpne/lukke)" @@ -2741,845 +3487,6 @@ msgstr "Endre menyelement" msgid "Link text" msgstr "Lenketekst" -#: ../../Zotlabs/Module/New_channel.php:128 -#: ../../Zotlabs/Module/Register.php:231 -msgid "Name or caption" -msgstr "Navn eller overskrift" - -#: ../../Zotlabs/Module/New_channel.php:128 -#: ../../Zotlabs/Module/Register.php:231 -msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\"" -msgstr "Eksempel: \"Ola Nordmann\", \"Lisa og hestene hennes\", \"Fotball\", \"Sykkelgruppa\"" - -#: ../../Zotlabs/Module/New_channel.php:130 -#: ../../Zotlabs/Module/Register.php:233 -msgid "Choose a short nickname" -msgstr "Velg et kort kallenavn" - -#: ../../Zotlabs/Module/New_channel.php:130 -#: ../../Zotlabs/Module/Register.php:233 -#, php-format -msgid "" -"Your nickname will be used to create an easy to remember channel address " -"e.g. nickname%s" -msgstr "Ditt kallenavn brukes til å lage en kanaladresse som er enkel å huske, for eksempel kallenavn%s" - -#: ../../Zotlabs/Module/New_channel.php:132 -#: ../../Zotlabs/Module/Register.php:235 -msgid "Channel role and privacy" -msgstr "Kanalrolle og personvern" - -#: ../../Zotlabs/Module/New_channel.php:132 -#: ../../Zotlabs/Module/Register.php:235 -msgid "Select a channel role with your privacy requirements." -msgstr "Velg en kanalrolle for ditt personvernbehov." - -#: ../../Zotlabs/Module/New_channel.php:132 -#: ../../Zotlabs/Module/Register.php:235 -msgid "Read more about roles" -msgstr "Les mer om roller" - -#: ../../Zotlabs/Module/New_channel.php:135 -msgid "Create Channel" -msgstr "Lag kanal" - -#: ../../Zotlabs/Module/New_channel.php:136 -msgid "" -"A channel is your identity on this network. It can represent a person, a " -"blog, or a forum to name a few. Channels can make connections with other " -"channels to share information with highly detailed permissions." -msgstr "En kanal er din identitet i dette nettverket. Den kan representere en person, en blogg eller et forum for å nevne noe. Kanaler kan ha forbindelser til andre kanaler for å dele informasjon, og med svært detaljerte tillatelser." - -#: ../../Zotlabs/Module/New_channel.php:137 -msgid "" -"or import an existing channel from another location." -msgstr "eller importer en eksisterende kanal fra et annet sted." - -#: ../../Zotlabs/Module/Notifications.php:30 -msgid "Invalid request identifier." -msgstr "Ugyldig forespørselsidentifikator." - -#: ../../Zotlabs/Module/Notifications.php:39 -msgid "Discard" -msgstr "Forkast" - -#: ../../Zotlabs/Module/Notifications.php:103 ../../include/nav.php:191 -msgid "Mark all system notifications seen" -msgstr "Merk alle systemvarsler som sett" - -#: ../../Zotlabs/Module/Photos.php:84 -msgid "Page owner information could not be retrieved." -msgstr "Informasjon om sideeier kunne ikke hentes." - -#: ../../Zotlabs/Module/Photos.php:99 ../../Zotlabs/Module/Photos.php:743 -#: ../../Zotlabs/Module/Profile_photo.php:114 -#: ../../Zotlabs/Module/Profile_photo.php:206 -#: ../../Zotlabs/Module/Profile_photo.php:294 -#: ../../include/photo/photo_driver.php:718 -msgid "Profile Photos" -msgstr "Profilbilder" - -#: ../../Zotlabs/Module/Photos.php:105 ../../Zotlabs/Module/Photos.php:149 -msgid "Album not found." -msgstr "Albumet ble ikke funnet." - -#: ../../Zotlabs/Module/Photos.php:132 -msgid "Delete Album" -msgstr "Slett album" - -#: ../../Zotlabs/Module/Photos.php:153 -msgid "" -"Multiple storage folders exist with this album name, but within different " -"directories. Please remove the desired folder or folders using the Files " -"manager" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:210 ../../Zotlabs/Module/Photos.php:1053 -msgid "Delete Photo" -msgstr "Slett bilde" - -#: ../../Zotlabs/Module/Photos.php:533 -msgid "No photos selected" -msgstr "Ingen bilder valgt" - -#: ../../Zotlabs/Module/Photos.php:582 -msgid "Access to this item is restricted." -msgstr "Tilgang til dette elementet er begrenset." - -#: ../../Zotlabs/Module/Photos.php:621 -#, php-format -msgid "%1$.2f MB of %2$.2f MB photo storage used." -msgstr "%1$.2f MB av %2$.2f MB lagringsplass til bilder er brukt." - -#: ../../Zotlabs/Module/Photos.php:624 -#, php-format -msgid "%1$.2f MB photo storage used." -msgstr "%1$.2f MB lagringsplass til bilder er brukt." - -#: ../../Zotlabs/Module/Photos.php:660 -msgid "Upload Photos" -msgstr "Last opp bilder" - -#: ../../Zotlabs/Module/Photos.php:664 -msgid "Enter an album name" -msgstr "Skriv et albumnavn" - -#: ../../Zotlabs/Module/Photos.php:665 -msgid "or select an existing album (doubleclick)" -msgstr "eller velg et eksisterende album (dobbeltklikk)" - -#: ../../Zotlabs/Module/Photos.php:666 -msgid "Create a status post for this upload" -msgstr "Lag et statusinnlegg for denne opplastingen" - -#: ../../Zotlabs/Module/Photos.php:667 -msgid "Caption (optional):" -msgstr "Bildetekst (valgfritt):" - -#: ../../Zotlabs/Module/Photos.php:668 -msgid "Description (optional):" -msgstr "Beskrivelse (valgfritt):" - -#: ../../Zotlabs/Module/Photos.php:695 -msgid "Album name could not be decoded" -msgstr "Albumnavnet kunne ikke dekodes" - -#: ../../Zotlabs/Module/Photos.php:743 -msgid "Contact Photos" -msgstr "Kontaktbilder" - -#: ../../Zotlabs/Module/Photos.php:766 -msgid "Show Newest First" -msgstr "Vis nyeste først" - -#: ../../Zotlabs/Module/Photos.php:768 -msgid "Show Oldest First" -msgstr "Vis eldste først" - -#: ../../Zotlabs/Module/Photos.php:792 ../../Zotlabs/Module/Photos.php:1331 -#: ../../include/widgets.php:1499 -msgid "View Photo" -msgstr "Vis foto" - -#: ../../Zotlabs/Module/Photos.php:823 ../../include/widgets.php:1516 -msgid "Edit Album" -msgstr "Endre album" - -#: ../../Zotlabs/Module/Photos.php:870 -msgid "Permission denied. Access to this item may be restricted." -msgstr "Tillatelse avvist. Tilgang til dette elementet kan være begrenset." - -#: ../../Zotlabs/Module/Photos.php:872 -msgid "Photo not available" -msgstr "Bilde er utilgjengelig" - -#: ../../Zotlabs/Module/Photos.php:930 -msgid "Use as profile photo" -msgstr "Bruk som profilbilde" - -#: ../../Zotlabs/Module/Photos.php:931 -msgid "Use as cover photo" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:938 -msgid "Private Photo" -msgstr "Privat bilde" - -#: ../../Zotlabs/Module/Photos.php:953 -msgid "View Full Size" -msgstr "Vis i full størrelse" - -#: ../../Zotlabs/Module/Photos.php:998 ../../Zotlabs/Module/Admin.php:1437 -#: ../../Zotlabs/Module/Tagrm.php:137 -msgid "Remove" -msgstr "Fjern" - -#: ../../Zotlabs/Module/Photos.php:1032 -msgid "Edit photo" -msgstr "Endre bilde" - -#: ../../Zotlabs/Module/Photos.php:1034 -msgid "Rotate CW (right)" -msgstr "Roter med klokka (mot høyre)" - -#: ../../Zotlabs/Module/Photos.php:1035 -msgid "Rotate CCW (left)" -msgstr "Roter mot klokka (venstre)" - -#: ../../Zotlabs/Module/Photos.php:1038 -msgid "Enter a new album name" -msgstr "Skriv et nytt albumnavn" - -#: ../../Zotlabs/Module/Photos.php:1039 -msgid "or select an existing one (doubleclick)" -msgstr "eller velg et eksisterende album (dobbeltklikk)" - -#: ../../Zotlabs/Module/Photos.php:1042 -msgid "Caption" -msgstr "Overskrift" - -#: ../../Zotlabs/Module/Photos.php:1044 -msgid "Add a Tag" -msgstr "Legg til merkelapp" - -#: ../../Zotlabs/Module/Photos.php:1048 -msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" -msgstr "Eksempel: @bob, @Barbara_Jensen, @jim@example.com" - -#: ../../Zotlabs/Module/Photos.php:1051 -msgid "Flag as adult in album view" -msgstr "Flag som voksent i albumvisning" - -#: ../../Zotlabs/Module/Photos.php:1070 ../../Zotlabs/Lib/ThreadItem.php:261 -msgid "I like this (toggle)" -msgstr "Jeg liker dette (skru av og på)" - -#: ../../Zotlabs/Module/Photos.php:1071 ../../Zotlabs/Lib/ThreadItem.php:262 -msgid "I don't like this (toggle)" -msgstr "Jeg liker ikke dette (skru av og på)" - -#: ../../Zotlabs/Module/Photos.php:1073 ../../Zotlabs/Lib/ThreadItem.php:397 -#: ../../include/conversation.php:740 -msgid "Please wait" -msgstr "Vennligst vent" - -#: ../../Zotlabs/Module/Photos.php:1089 ../../Zotlabs/Module/Photos.php:1207 -#: ../../Zotlabs/Lib/ThreadItem.php:707 -msgid "This is you" -msgstr "Dette er deg" - -#: ../../Zotlabs/Module/Photos.php:1091 ../../Zotlabs/Module/Photos.php:1209 -#: ../../Zotlabs/Lib/ThreadItem.php:709 ../../include/js_strings.php:6 -msgid "Comment" -msgstr "Kommentar" - -#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:574 -msgctxt "title" -msgid "Likes" -msgstr "Liker" - -#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:574 -msgctxt "title" -msgid "Dislikes" -msgstr "Liker ikke" - -#: ../../Zotlabs/Module/Photos.php:1108 ../../include/conversation.php:575 -msgctxt "title" -msgid "Agree" -msgstr "Enig" - -#: ../../Zotlabs/Module/Photos.php:1108 ../../include/conversation.php:575 -msgctxt "title" -msgid "Disagree" -msgstr "Uenig" - -#: ../../Zotlabs/Module/Photos.php:1108 ../../include/conversation.php:575 -msgctxt "title" -msgid "Abstain" -msgstr "Avstår" - -#: ../../Zotlabs/Module/Photos.php:1109 ../../include/conversation.php:576 -msgctxt "title" -msgid "Attending" -msgstr "Deltar" - -#: ../../Zotlabs/Module/Photos.php:1109 ../../include/conversation.php:576 -msgctxt "title" -msgid "Not attending" -msgstr "Deltar ikke" - -#: ../../Zotlabs/Module/Photos.php:1109 ../../include/conversation.php:576 -msgctxt "title" -msgid "Might attend" -msgstr "Deltar kanskje" - -#: ../../Zotlabs/Module/Photos.php:1126 ../../Zotlabs/Module/Photos.php:1138 -#: ../../Zotlabs/Lib/ThreadItem.php:181 ../../Zotlabs/Lib/ThreadItem.php:193 -#: ../../include/conversation.php:1717 -msgid "View all" -msgstr "Vis alle" - -#: ../../Zotlabs/Module/Photos.php:1130 ../../Zotlabs/Lib/ThreadItem.php:185 -#: ../../include/taxonomy.php:403 ../../include/conversation.php:1741 -#: ../../include/channel.php:1158 -msgctxt "noun" -msgid "Like" -msgid_plural "Likes" -msgstr[0] "Liker" -msgstr[1] "Liker" - -#: ../../Zotlabs/Module/Photos.php:1135 ../../Zotlabs/Lib/ThreadItem.php:190 -#: ../../include/conversation.php:1744 -msgctxt "noun" -msgid "Dislike" -msgid_plural "Dislikes" -msgstr[0] "Liker ikke" -msgstr[1] "Liker ikke" - -#: ../../Zotlabs/Module/Photos.php:1235 -msgid "Photo Tools" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1244 -msgid "In This Photo:" -msgstr "I dette bildet:" - -#: ../../Zotlabs/Module/Photos.php:1249 -msgid "Map" -msgstr "Kart" - -#: ../../Zotlabs/Module/Photos.php:1257 ../../Zotlabs/Lib/ThreadItem.php:386 -msgctxt "noun" -msgid "Likes" -msgstr "Liker" - -#: ../../Zotlabs/Module/Photos.php:1258 ../../Zotlabs/Lib/ThreadItem.php:387 -msgctxt "noun" -msgid "Dislikes" -msgstr "Liker ikke" - -#: ../../Zotlabs/Module/Photos.php:1263 ../../Zotlabs/Lib/ThreadItem.php:392 -#: ../../include/acl_selectors.php:285 -msgid "Close" -msgstr "Lukk" - -#: ../../Zotlabs/Module/Photos.php:1337 -msgid "View Album" -msgstr "Vis album" - -#: ../../Zotlabs/Module/Photos.php:1348 ../../Zotlabs/Module/Photos.php:1361 -#: ../../Zotlabs/Module/Photos.php:1362 -msgid "Recent Photos" -msgstr "Nye bilder" - -#: ../../Zotlabs/Module/Ping.php:265 -msgid "sent you a private message" -msgstr "sendte deg en privat melding" - -#: ../../Zotlabs/Module/Ping.php:313 -msgid "added your channel" -msgstr "la til din kanal" - -#: ../../Zotlabs/Module/Ping.php:323 -msgid "g A l F d" -msgstr "g A l F d" - -#: ../../Zotlabs/Module/Ping.php:346 -msgid "[today]" -msgstr "[idag]" - -#: ../../Zotlabs/Module/Ping.php:355 -msgid "posted an event" -msgstr "la ut en hendelse" - -#: ../../Zotlabs/Module/Oexchange.php:27 -msgid "Unable to find your hub." -msgstr "Ikke i stand til å finne hubben din." - -#: ../../Zotlabs/Module/Oexchange.php:41 -msgid "Post successful." -msgstr "Innlegg vellykket." - -#: ../../Zotlabs/Module/Openid.php:30 -msgid "OpenID protocol error. No ID returned." -msgstr "OpenID protokollfeil. Ingen ID ble returnert." - -#: ../../Zotlabs/Module/Openid.php:193 ../../include/auth.php:226 -msgid "Login failed." -msgstr "Innlogging mislyktes." - -#: ../../Zotlabs/Module/Page.php:133 -msgid "" -"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod " -"tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam," -" quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo " -"consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse " -"cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat " -"non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." -msgstr "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." - -#: ../../Zotlabs/Module/Pconfig.php:26 ../../Zotlabs/Module/Pconfig.php:59 -msgid "This setting requires special processing and editing has been blocked." -msgstr "Denne innstillingen krever spesiell behandling og redigering har blitt blokkert." - -#: ../../Zotlabs/Module/Pconfig.php:48 -msgid "Configuration Editor" -msgstr "Konfigurasjonsbehandler" - -#: ../../Zotlabs/Module/Pconfig.php:49 -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 "Advarsel: kanalen din kan slutte å virke ved endring av enkelte innstillinger. Vennligst forlat denne siden med mindre du er komfortabel med dette og vet hvordan du bruker denne funksjonen riktig." - -#: ../../Zotlabs/Module/Pdledit.php:18 -msgid "Layout updated." -msgstr "Layout er oppdatert." - -#: ../../Zotlabs/Module/Pdledit.php:34 ../../Zotlabs/Module/Pdledit.php:61 -msgid "Edit System Page Description" -msgstr "Endre beskrivelsen av systemsiden" - -#: ../../Zotlabs/Module/Pdledit.php:56 -msgid "Layout not found." -msgstr "Layouten ble ikke funnet." - -#: ../../Zotlabs/Module/Pdledit.php:62 -msgid "Module Name:" -msgstr "Modulnavn:" - -#: ../../Zotlabs/Module/Pdledit.php:63 -msgid "Layout Help" -msgstr "Layout-hjelp" - -#: ../../Zotlabs/Module/Poke.php:168 ../../Zotlabs/Lib/Apps.php:226 -#: ../../include/conversation.php:960 -msgid "Poke" -msgstr "Prikk" - -#: ../../Zotlabs/Module/Poke.php:169 -msgid "Poke somebody" -msgstr "Dult noen" - -#: ../../Zotlabs/Module/Poke.php:172 -msgid "Poke/Prod" -msgstr "Prikke/oppildne" - -#: ../../Zotlabs/Module/Poke.php:173 -msgid "Poke, prod or do other things to somebody" -msgstr "Dult, prikk eller gjør andre ting med noen" - -#: ../../Zotlabs/Module/Poke.php:180 -msgid "Recipient" -msgstr "Mottaker" - -#: ../../Zotlabs/Module/Poke.php:181 -msgid "Choose what you wish to do to recipient" -msgstr "Velg hva du ønsker å gjøre med mottakeren" - -#: ../../Zotlabs/Module/Poke.php:184 ../../Zotlabs/Module/Poke.php:185 -msgid "Make this post private" -msgstr "Gjør dette innlegget privat" - -#: ../../Zotlabs/Module/Probe.php:30 ../../Zotlabs/Module/Probe.php:34 -#, php-format -msgid "Fetching URL returns error: %1$s" -msgstr "Henting av URL gir følgende feil: %1$s" - -#: ../../Zotlabs/Module/Profiles.php:24 ../../Zotlabs/Module/Profiles.php:189 -#: ../../Zotlabs/Module/Profiles.php:246 ../../Zotlabs/Module/Profiles.php:625 -msgid "Profile not found." -msgstr "Profilen ble ikke funnet." - -#: ../../Zotlabs/Module/Profiles.php:44 -msgid "Profile deleted." -msgstr "Profilen er slettet." - -#: ../../Zotlabs/Module/Profiles.php:68 ../../Zotlabs/Module/Profiles.php:104 -msgid "Profile-" -msgstr "Profil-" - -#: ../../Zotlabs/Module/Profiles.php:89 ../../Zotlabs/Module/Profiles.php:132 -msgid "New profile created." -msgstr "Ny profil opprettet." - -#: ../../Zotlabs/Module/Profiles.php:110 -msgid "Profile unavailable to clone." -msgstr "Profilen er utilgjengelig for klonen." - -#: ../../Zotlabs/Module/Profiles.php:151 -msgid "Profile unavailable to export." -msgstr "Profilen er utilgjengelig for eksport." - -#: ../../Zotlabs/Module/Profiles.php:256 -msgid "Profile Name is required." -msgstr "Profilnavn er påkrevd." - -#: ../../Zotlabs/Module/Profiles.php:427 -msgid "Marital Status" -msgstr "Sivilstand" - -#: ../../Zotlabs/Module/Profiles.php:431 -msgid "Romantic Partner" -msgstr "Romantisk partner" - -#: ../../Zotlabs/Module/Profiles.php:435 ../../Zotlabs/Module/Profiles.php:736 -msgid "Likes" -msgstr "Liker" - -#: ../../Zotlabs/Module/Profiles.php:439 ../../Zotlabs/Module/Profiles.php:737 -msgid "Dislikes" -msgstr "Liker ikke" - -#: ../../Zotlabs/Module/Profiles.php:443 ../../Zotlabs/Module/Profiles.php:744 -msgid "Work/Employment" -msgstr "Arbeid/sysselsetting" - -#: ../../Zotlabs/Module/Profiles.php:446 -msgid "Religion" -msgstr "Religion" - -#: ../../Zotlabs/Module/Profiles.php:450 -msgid "Political Views" -msgstr "Politiske synspunkter" - -#: ../../Zotlabs/Module/Profiles.php:458 -msgid "Sexual Preference" -msgstr "Seksuelle preferanser" - -#: ../../Zotlabs/Module/Profiles.php:462 -msgid "Homepage" -msgstr "Hjemmeside" - -#: ../../Zotlabs/Module/Profiles.php:466 -msgid "Interests" -msgstr "Interesser" - -#: ../../Zotlabs/Module/Profiles.php:560 -msgid "Profile updated." -msgstr "Profilen er oppdatert." - -#: ../../Zotlabs/Module/Profiles.php:644 -msgid "Hide your connections list from viewers of this profile" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:686 -msgid "Edit Profile Details" -msgstr "Endre profildetaljer" - -#: ../../Zotlabs/Module/Profiles.php:688 -msgid "View this profile" -msgstr "Vis denne profilen" - -#: ../../Zotlabs/Module/Profiles.php:689 ../../Zotlabs/Module/Profiles.php:771 -#: ../../include/channel.php:959 -msgid "Edit visibility" -msgstr "Endre synlighet" - -#: ../../Zotlabs/Module/Profiles.php:690 -msgid "Profile Tools" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:691 -msgid "Change cover photo" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:692 ../../include/channel.php:930 -msgid "Change profile photo" -msgstr "Endre profilbilde" - -#: ../../Zotlabs/Module/Profiles.php:693 -msgid "Create a new profile using these settings" -msgstr "Lag en ny profil ved å bruke disse innstillingene" - -#: ../../Zotlabs/Module/Profiles.php:694 -msgid "Clone this profile" -msgstr "Klon denne profilen" - -#: ../../Zotlabs/Module/Profiles.php:695 -msgid "Delete this profile" -msgstr "Slett denne profilen" - -#: ../../Zotlabs/Module/Profiles.php:696 -msgid "Add profile things" -msgstr "Legg til profilting" - -#: ../../Zotlabs/Module/Profiles.php:697 ../../include/widgets.php:105 -#: ../../include/conversation.php:1526 -msgid "Personal" -msgstr "Personlig" - -#: ../../Zotlabs/Module/Profiles.php:699 -msgid "Relation" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:700 ../../include/datetime.php:48 -msgid "Miscellaneous" -msgstr "Forskjellig" - -#: ../../Zotlabs/Module/Profiles.php:702 -msgid "Import profile from file" -msgstr "Importer profil fra fil" - -#: ../../Zotlabs/Module/Profiles.php:703 -msgid "Export profile to file" -msgstr "Eksporter profil til fil" - -#: ../../Zotlabs/Module/Profiles.php:704 -msgid "Your gender" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:705 -msgid "Marital status" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:706 -msgid "Sexual preference" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:709 -msgid "Profile name" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:711 -msgid "This is your default profile." -msgstr "Dette er din standardprofil." - -#: ../../Zotlabs/Module/Profiles.php:713 -msgid "Your full name" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:714 -msgid "Title/Description" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:717 -msgid "Street address" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:718 -msgid "Locality/City" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:719 -msgid "Region/State" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:720 -msgid "Postal/Zip code" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:721 -msgid "Country" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:726 -msgid "Who (if applicable)" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:726 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" -msgstr "Eksempler: kari123, Kari Villiamsen, kari@example.com" - -#: ../../Zotlabs/Module/Profiles.php:727 -msgid "Since (date)" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:730 -msgid "Tell us about yourself" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:732 -msgid "Hometown" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:733 -msgid "Political views" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:734 -msgid "Religious views" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:735 -msgid "Keywords used in directory listings" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:735 -msgid "Example: fishing photography software" -msgstr "Eksempel: fisking fotografering programvare" - -#: ../../Zotlabs/Module/Profiles.php:738 -msgid "Musical interests" -msgstr "Musikkinteresser" - -#: ../../Zotlabs/Module/Profiles.php:739 -msgid "Books, literature" -msgstr "Bøker, litteratur" - -#: ../../Zotlabs/Module/Profiles.php:740 -msgid "Television" -msgstr "TV/fjernsyn" - -#: ../../Zotlabs/Module/Profiles.php:741 -msgid "Film/Dance/Culture/Entertainment" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:742 -msgid "Hobbies/Interests" -msgstr "Hobbier/Interesser" - -#: ../../Zotlabs/Module/Profiles.php:743 -msgid "Love/Romance" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:745 -msgid "School/Education" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:746 -msgid "Contact information and social networks" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:747 -msgid "My other channels" -msgstr "Mine andre kanaler" - -#: ../../Zotlabs/Module/Profiles.php:767 ../../include/channel.php:955 -msgid "Profile Image" -msgstr "Profilbilde" - -#: ../../Zotlabs/Module/Profiles.php:777 ../../include/nav.php:88 -#: ../../include/channel.php:937 -msgid "Edit Profiles" -msgstr "Endre profiler" - -#: ../../Zotlabs/Module/Profile_photo.php:179 -msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." -msgstr "Hold nede Shift-knappen og last siden på nytt eller tøm nettleserens mellomlager hvis det nye bildet ikke vises umiddelbart." - -#: ../../Zotlabs/Module/Profile_photo.php:367 -msgid "Upload Profile Photo" -msgstr "Last opp profilbilde:" - -#: ../../Zotlabs/Module/Profperm.php:34 ../../Zotlabs/Module/Profperm.php:63 -msgid "Invalid profile identifier." -msgstr "Ugyldig profil-identifikator." - -#: ../../Zotlabs/Module/Profperm.php:115 -msgid "Profile Visibility Editor" -msgstr "Endre profilsynlighet" - -#: ../../Zotlabs/Module/Profperm.php:117 ../../include/channel.php:1249 -msgid "Profile" -msgstr "Profil" - -#: ../../Zotlabs/Module/Profperm.php:119 -msgid "Click on a contact to add or remove." -msgstr "Klikk på en kontakt for å legge til eller fjerne." - -#: ../../Zotlabs/Module/Profperm.php:128 -msgid "Visible To" -msgstr "Synlig for" - -#: ../../Zotlabs/Module/Pubsites.php:22 ../../include/widgets.php:1270 -msgid "Public Hubs" -msgstr "Offentlige huber" - -#: ../../Zotlabs/Module/Pubsites.php:25 -msgid "" -"The listed hubs allow public registration for the $Projectname network. All " -"hubs in the network are interlinked so membership on any of them conveys " -"membership in the network as a whole. Some hubs may require subscription or " -"provide tiered service plans. The hub itself may provide " -"additional details." -msgstr "Nettstedene på listen tillater offentlig registrering i $Projectname-nettverket. Alle nettsteder i nettverket er forbundet så medlemskap på enhver av dem formidler medlemskap i nettverket som helhet. Noen nettsteder kan kreve abonnement eller tilby lagdelte tjenesteavtaler. Nettstedene selv kan gi tilleggsopplysninger." - -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Hub URL" -msgstr "Nettstedets URL" - -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Access Type" -msgstr "Tilgangstype" - -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Registration Policy" -msgstr "Retningslinjer for registrering" - -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Stats" -msgstr "" - -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Software" -msgstr "" - -#: ../../Zotlabs/Module/Pubsites.php:31 ../../Zotlabs/Module/Ratings.php:103 -#: ../../include/conversation.php:959 -msgid "Ratings" -msgstr "Vurderinger" - -#: ../../Zotlabs/Module/Pubsites.php:38 -msgid "Rate" -msgstr "Vurder" - -#: ../../Zotlabs/Module/Rate.php:160 -msgid "Website:" -msgstr "Nettsted:" - -#: ../../Zotlabs/Module/Rate.php:163 -#, php-format -msgid "Remote Channel [%s] (not yet known on this site)" -msgstr "Fjerntliggende kanal [%s] (foreløpig ikke kjent på dette nettstedet)" - -#: ../../Zotlabs/Module/Rate.php:164 -msgid "Rating (this information is public)" -msgstr "Vurdering (denne informasjonen er offentlig)" - -#: ../../Zotlabs/Module/Rate.php:165 -msgid "Optionally explain your rating (this information is public)" -msgstr "Velg om du vil forklare din vurdering (denne informasjonen er offentlig)" - -#: ../../Zotlabs/Module/Ratings.php:73 -msgid "No ratings" -msgstr "Ingen vurderinger" - -#: ../../Zotlabs/Module/Ratings.php:104 -msgid "Rating: " -msgstr "Vurdering:" - -#: ../../Zotlabs/Module/Ratings.php:105 -msgid "Website: " -msgstr "Nettsted:" - -#: ../../Zotlabs/Module/Ratings.php:107 -msgid "Description: " -msgstr "Beskrivelse:" - #: ../../Zotlabs/Module/Admin.php:77 msgid "Theme settings updated." msgstr "Temainnstillinger er oppdatert." @@ -3618,7 +3525,7 @@ msgstr "Meldingskøer" #: ../../Zotlabs/Module/Admin.php:236 msgid "Your software should be updated" -msgstr "" +msgstr "Programvaren din bør oppdateres" #: ../../Zotlabs/Module/Admin.php:241 ../../Zotlabs/Module/Admin.php:490 #: ../../Zotlabs/Module/Admin.php:711 ../../Zotlabs/Module/Admin.php:755 @@ -3655,21 +3562,21 @@ msgstr "Versjon" #: ../../Zotlabs/Module/Admin.php:250 msgid "Repository version (master)" -msgstr "" +msgstr "Depotversjon (master)" #: ../../Zotlabs/Module/Admin.php:251 msgid "Repository version (dev)" -msgstr "" +msgstr "Depotversjon (dev)" #: ../../Zotlabs/Module/Admin.php:373 msgid "Site settings updated." msgstr "Nettstedsinnstillinger er oppdatert." -#: ../../Zotlabs/Module/Admin.php:400 ../../include/text.php:2841 +#: ../../Zotlabs/Module/Admin.php:400 ../../include/text.php:2829 msgid "Default" msgstr "Standard" -#: ../../Zotlabs/Module/Admin.php:410 ../../Zotlabs/Module/Settings.php:798 +#: ../../Zotlabs/Module/Admin.php:410 ../../Zotlabs/Module/Settings.php:899 msgid "mobile" msgstr "mobil" @@ -3701,7 +3608,7 @@ msgstr "Mitt nettsted har kun gratis tilgang" msgid "My site offers free accounts with optional paid upgrades" msgstr "Mitt nettsted tilbyr gratis konto med valgfri oppgradering til betalt tjeneste" -#: ../../Zotlabs/Module/Admin.php:491 ../../include/widgets.php:1382 +#: ../../Zotlabs/Module/Admin.php:491 ../../include/widgets.php:1476 msgid "Site" msgstr "Nettsted" @@ -3897,7 +3804,7 @@ msgstr "Importer og gi tilgang til offentlig innhold trukket inn fra andre netts #: ../../Zotlabs/Module/Admin.php:522 msgid "Login on Homepage" -msgstr "" +msgstr "Logg inn på hjemmesiden" #: ../../Zotlabs/Module/Admin.php:522 msgid "" @@ -3907,13 +3814,13 @@ msgstr "Presenter en innloggingsboks til besøkende på hjemmesiden hvis ikke no #: ../../Zotlabs/Module/Admin.php:523 msgid "Enable context help" -msgstr "" +msgstr "Skru på kontekstsensitiv hjelp" #: ../../Zotlabs/Module/Admin.php:523 msgid "" "Display contextual help for the current page when the help button is " "pressed." -msgstr "" +msgstr "Vis hjelp for den gjeldende siden når Hjelp-knappen trykkes." #: ../../Zotlabs/Module/Admin.php:525 msgid "Directory Server URL" @@ -3989,12 +3896,12 @@ msgid "0 for no expiration of imported content" msgstr "0 dersom importert innhold ikke skal utgå" #: ../../Zotlabs/Module/Admin.php:677 ../../Zotlabs/Module/Admin.php:678 -#: ../../Zotlabs/Module/Settings.php:722 +#: ../../Zotlabs/Module/Settings.php:823 msgid "Off" msgstr "Av" #: ../../Zotlabs/Module/Admin.php:677 ../../Zotlabs/Module/Admin.php:678 -#: ../../Zotlabs/Module/Settings.php:722 +#: ../../Zotlabs/Module/Settings.php:823 msgid "On" msgstr "På" @@ -4031,27 +3938,27 @@ msgstr "Tjener" msgid "" "By default, unfiltered HTML is allowed in embedded media. This is inherently" " insecure." -msgstr "" +msgstr "Standardinnstillingen er at ufiltrert HTML er tillat ved innebygging av media. Dette er grunnleggende usikkert." #: ../../Zotlabs/Module/Admin.php:749 msgid "" "The recommended setting is to only allow unfiltered HTML from the following " "sites:" -msgstr "" +msgstr "Anbefalt innstilling er å bare tillate ufiltrert HTML fra følgende nettsteder:" #: ../../Zotlabs/Module/Admin.php:750 msgid "" "https://youtube.com/
https://www.youtube.com/
https://youtu.be/https://vimeo.com/
https://soundcloud.com/
" -msgstr "" +msgstr "https://youtube.com/
https://www.youtube.com/
https://youtu.be/
https://vimeo.com/
https://soundcloud.com/
" #: ../../Zotlabs/Module/Admin.php:751 msgid "" "All other embedded content will be filtered, unless " "embedded content from that site is explicitly blocked." -msgstr "" +msgstr "Alt annet innebygget innhold vil bli filtrert, med mindre innebygget innhold fra det nettstedet er eksplisitt blokkert." -#: ../../Zotlabs/Module/Admin.php:756 ../../include/widgets.php:1385 +#: ../../Zotlabs/Module/Admin.php:756 ../../include/widgets.php:1479 msgid "Security" msgstr "Sikkerhet" @@ -4067,11 +3974,11 @@ msgstr "Kryss av for å blokkere tilgang til alle personlige sider som ellers vi #: ../../Zotlabs/Module/Admin.php:759 msgid "Set \"Transport Security\" HTTP header" -msgstr "" +msgstr "Sett HTTP header \"Transport Security\"" #: ../../Zotlabs/Module/Admin.php:760 msgid "Set \"Content Security Policy\" HTTP header" -msgstr "" +msgstr "Sett HTTP header \"Content Security Policy\"" #: ../../Zotlabs/Module/Admin.php:761 msgid "Allow communications only from these sites" @@ -4103,15 +4010,15 @@ msgstr "Blokker kommunikasjon fra disse kanalene" #: ../../Zotlabs/Module/Admin.php:765 msgid "Only allow embeds from secure (SSL) websites and links." -msgstr "" +msgstr "Bare tillat innebygging fra sikrede (SSL) nettsteder og lenker." #: ../../Zotlabs/Module/Admin.php:766 msgid "Allow unfiltered embedded HTML content only from these domains" -msgstr "" +msgstr "Tillat ufiltrert innebygging av HTML-innhold bare fra disse domenene" #: ../../Zotlabs/Module/Admin.php:766 msgid "One site per line. By default embedded content is filtered." -msgstr "" +msgstr "Et nettsted per linje. Det er standard at innebygget innhold er filtrert." #: ../../Zotlabs/Module/Admin.php:767 msgid "Block embedded HTML from these domains" @@ -4219,7 +4126,7 @@ msgid "Account '%s' unblocked" msgstr "Kontoen '%s' er ikke blokkert lenger" #: ../../Zotlabs/Module/Admin.php:1031 ../../Zotlabs/Module/Admin.php:1044 -#: ../../include/widgets.php:1383 +#: ../../include/widgets.php:1477 msgid "Accounts" msgstr "Kontoer" @@ -4229,7 +4136,7 @@ msgstr "velg alle" #: ../../Zotlabs/Module/Admin.php:1034 msgid "Registrations waiting for confirm" -msgstr "" +msgstr "Registreringer venter på bekreftelse" #: ../../Zotlabs/Module/Admin.php:1035 msgid "Request date" @@ -4325,7 +4232,7 @@ msgstr "Kanal '%s' kode tillatt" msgid "Channel '%s' code disallowed" msgstr "Kanal '%s' kode ikke tillatt" -#: ../../Zotlabs/Module/Admin.php:1210 ../../include/widgets.php:1384 +#: ../../Zotlabs/Module/Admin.php:1210 ../../include/widgets.php:1478 msgid "Channels" msgstr "Kanaler" @@ -4345,7 +4252,7 @@ msgstr "Tillat kode" msgid "Disallow Code" msgstr "Ikke tillat kode" -#: ../../Zotlabs/Module/Admin.php:1218 ../../include/conversation.php:1611 +#: ../../Zotlabs/Module/Admin.php:1218 ../../include/conversation.php:1626 msgid "Channel" msgstr "Kanal" @@ -4384,7 +4291,7 @@ msgid "Enable" msgstr "Skru på" #: ../../Zotlabs/Module/Admin.php:1330 ../../Zotlabs/Module/Admin.php:1420 -#: ../../include/widgets.php:1387 +#: ../../include/widgets.php:1481 msgid "Plugins" msgstr "Tilleggsfunksjoner" @@ -4393,8 +4300,8 @@ msgid "Toggle" msgstr "Skru av og på" #: ../../Zotlabs/Module/Admin.php:1332 ../../Zotlabs/Module/Admin.php:1615 -#: ../../Zotlabs/Lib/Apps.php:215 ../../include/widgets.php:638 -#: ../../include/nav.php:208 +#: ../../Zotlabs/Lib/Apps.php:216 ../../include/nav.php:210 +#: ../../include/widgets.php:647 msgid "Settings" msgstr "Innstillinger" @@ -4428,52 +4335,52 @@ msgstr "Skrudd av - versjonsinkompatibilitet" #: ../../Zotlabs/Module/Admin.php:1394 msgid "Enter the public git repository URL of the plugin repo." -msgstr "" +msgstr "Skriv inn URL-en til det offentlige git-depoet til tillegget." #: ../../Zotlabs/Module/Admin.php:1395 msgid "Plugin repo git URL" -msgstr "" +msgstr "Git-URL-en til tillegget" #: ../../Zotlabs/Module/Admin.php:1396 msgid "Custom repo name" -msgstr "" +msgstr "Tilpasset depotnavn" #: ../../Zotlabs/Module/Admin.php:1396 msgid "(optional)" -msgstr "" +msgstr "(valgfritt)" #: ../../Zotlabs/Module/Admin.php:1397 msgid "Download Plugin Repo" -msgstr "" +msgstr "Last ned depotet til tillegget" #: ../../Zotlabs/Module/Admin.php:1404 msgid "Install new repo" -msgstr "" +msgstr "Installer nytt depot" -#: ../../Zotlabs/Module/Admin.php:1405 ../../Zotlabs/Lib/Apps.php:330 +#: ../../Zotlabs/Module/Admin.php:1405 ../../Zotlabs/Lib/Apps.php:334 msgid "Install" msgstr "Installer" #: ../../Zotlabs/Module/Admin.php:1427 msgid "Manage Repos" -msgstr "" +msgstr "Håndter depoter" #: ../../Zotlabs/Module/Admin.php:1428 msgid "Installed Plugin Repositories" -msgstr "" +msgstr "Installerede tilleggsdepoter" #: ../../Zotlabs/Module/Admin.php:1429 msgid "Install a New Plugin Repository" -msgstr "" +msgstr "Installer et nytt tillleggsdepot" -#: ../../Zotlabs/Module/Admin.php:1435 ../../Zotlabs/Module/Settings.php:77 -#: ../../Zotlabs/Module/Settings.php:616 ../../Zotlabs/Lib/Apps.php:330 +#: ../../Zotlabs/Module/Admin.php:1435 ../../Zotlabs/Module/Settings.php:72 +#: ../../Zotlabs/Module/Settings.php:670 ../../Zotlabs/Lib/Apps.php:334 msgid "Update" msgstr "Oppdater" #: ../../Zotlabs/Module/Admin.php:1436 msgid "Switch branch" -msgstr "" +msgstr "Bytt gren" #: ../../Zotlabs/Module/Admin.php:1550 msgid "No themes found." @@ -4484,7 +4391,7 @@ msgid "Screenshot" msgstr "Skjermbilde" #: ../../Zotlabs/Module/Admin.php:1613 ../../Zotlabs/Module/Admin.php:1647 -#: ../../include/widgets.php:1388 +#: ../../include/widgets.php:1482 msgid "Themes" msgstr "Temaer" @@ -4500,8 +4407,8 @@ msgstr "[Ingen støtte]" msgid "Log settings updated." msgstr "Logginnstillinger er oppdatert." -#: ../../Zotlabs/Module/Admin.php:1732 ../../include/widgets.php:1409 -#: ../../include/widgets.php:1419 +#: ../../Zotlabs/Module/Admin.php:1732 ../../include/widgets.php:1503 +#: ../../include/widgets.php:1513 msgid "Logs" msgstr "Logger" @@ -4521,7 +4428,7 @@ msgstr "Loggfil" msgid "" "Must be writable by web server. Relative to your top-level webserver " "directory." -msgstr "" +msgstr "Må kunne skrives til av webtjenesten. Relativ til din toppnivåkatalog på webtjeneren." #: ../../Zotlabs/Module/Admin.php:1742 msgid "Log level" @@ -4567,85 +4474,412 @@ msgstr "Feltdefinisjonen ble ikke funnet" msgid "Edit Profile Field" msgstr "Endre profilfelt" -#: ../../Zotlabs/Module/Admin.php:2106 ../../include/widgets.php:1390 +#: ../../Zotlabs/Module/Admin.php:2106 ../../include/widgets.php:1484 msgid "Profile Fields" -msgstr "" +msgstr "Profilfelter" #: ../../Zotlabs/Module/Admin.php:2107 msgid "Basic Profile Fields" -msgstr "" +msgstr "Grunnleggende profilfelter" #: ../../Zotlabs/Module/Admin.php:2108 msgid "Advanced Profile Fields" -msgstr "" +msgstr "Avanserte profilfelter" #: ../../Zotlabs/Module/Admin.php:2108 msgid "(In addition to basic fields)" -msgstr "" +msgstr "(i tillegg til grunnleggende felter)" #: ../../Zotlabs/Module/Admin.php:2110 msgid "All available fields" -msgstr "" +msgstr "Alle tilgjengelige felter" #: ../../Zotlabs/Module/Admin.php:2111 msgid "Custom Fields" -msgstr "" +msgstr "Tilpassede felter" #: ../../Zotlabs/Module/Admin.php:2115 msgid "Create Custom Field" -msgstr "" +msgstr "Lag tilpasset felt" -#: ../../Zotlabs/Module/Appman.php:37 ../../Zotlabs/Module/Appman.php:53 -msgid "App installed." -msgstr "App installert." +#: ../../Zotlabs/Module/New_channel.php:128 +#: ../../Zotlabs/Module/Register.php:231 +msgid "Name or caption" +msgstr "Navn eller overskrift" -#: ../../Zotlabs/Module/Appman.php:46 -msgid "Malformed app." -msgstr "Feil oppsett for app-en." +#: ../../Zotlabs/Module/New_channel.php:128 +#: ../../Zotlabs/Module/Register.php:231 +msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\"" +msgstr "Eksempel: \"Ola Nordmann\", \"Lisa og hestene hennes\", \"Fotball\", \"Sykkelgruppa\"" -#: ../../Zotlabs/Module/Appman.php:104 -msgid "Embed code" -msgstr "Innbyggingskode" +#: ../../Zotlabs/Module/New_channel.php:130 +#: ../../Zotlabs/Module/Register.php:233 +msgid "Choose a short nickname" +msgstr "Velg et kort kallenavn" -#: ../../Zotlabs/Module/Appman.php:110 ../../include/widgets.php:107 -msgid "Edit App" -msgstr "Endre app" +#: ../../Zotlabs/Module/New_channel.php:130 +#: ../../Zotlabs/Module/Register.php:233 +#, php-format +msgid "" +"Your nickname will be used to create an easy to remember channel address " +"e.g. nickname%s" +msgstr "Ditt kallenavn brukes til å lage en kanaladresse som er enkel å huske, for eksempel kallenavn%s" -#: ../../Zotlabs/Module/Appman.php:110 -msgid "Create App" -msgstr "Lag app" +#: ../../Zotlabs/Module/New_channel.php:132 +#: ../../Zotlabs/Module/Register.php:235 +msgid "Channel role and privacy" +msgstr "Kanalrolle og personvern" -#: ../../Zotlabs/Module/Appman.php:115 -msgid "Name of app" -msgstr "Navn på app" +#: ../../Zotlabs/Module/New_channel.php:132 +#: ../../Zotlabs/Module/Register.php:235 +msgid "Select a channel role with your privacy requirements." +msgstr "Velg en kanalrolle for ditt personvernbehov." -#: ../../Zotlabs/Module/Appman.php:116 -msgid "Location (URL) of app" -msgstr "Plassering (URL) til app" +#: ../../Zotlabs/Module/New_channel.php:132 +#: ../../Zotlabs/Module/Register.php:235 +msgid "Read more about roles" +msgstr "Les mer om roller" -#: ../../Zotlabs/Module/Appman.php:118 -msgid "Photo icon URL" -msgstr "Bildeikon URL" +#: ../../Zotlabs/Module/New_channel.php:135 +msgid "Create Channel" +msgstr "Lag kanal" -#: ../../Zotlabs/Module/Appman.php:118 -msgid "80 x 80 pixels - optional" -msgstr "80 x80 pixler - valgfritt" +#: ../../Zotlabs/Module/New_channel.php:136 +msgid "" +"A channel is your identity on this network. It can represent a person, a " +"blog, or a forum to name a few. Channels can make connections with other " +"channels to share information with highly detailed permissions." +msgstr "En kanal er din identitet i dette nettverket. Den kan representere en person, en blogg eller et forum for å nevne noe. Kanaler kan ha forbindelser til andre kanaler for å dele informasjon, og med svært detaljerte tillatelser." -#: ../../Zotlabs/Module/Appman.php:119 -msgid "Categories (optional, comma separated list)" -msgstr "" +#: ../../Zotlabs/Module/New_channel.php:137 +msgid "" +"or import an existing channel from another location." +msgstr "eller importer en eksisterende kanal fra et annet sted." -#: ../../Zotlabs/Module/Appman.php:120 -msgid "Version ID" -msgstr "Versjons-ID" +#: ../../Zotlabs/Module/Ping.php:265 +msgid "sent you a private message" +msgstr "sendte deg en privat melding" -#: ../../Zotlabs/Module/Appman.php:121 -msgid "Price of app" -msgstr "Pris på app" +#: ../../Zotlabs/Module/Ping.php:313 +msgid "added your channel" +msgstr "la til din kanal" -#: ../../Zotlabs/Module/Appman.php:122 -msgid "Location (URL) to purchase app" -msgstr "Plassering (URL) for å kjøpe app" +#: ../../Zotlabs/Module/Ping.php:323 +msgid "g A l F d" +msgstr "g A l F d" + +#: ../../Zotlabs/Module/Ping.php:346 +msgid "[today]" +msgstr "[idag]" + +#: ../../Zotlabs/Module/Ping.php:355 +msgid "posted an event" +msgstr "la ut en hendelse" + +#: ../../Zotlabs/Module/Notifications.php:30 +msgid "Invalid request identifier." +msgstr "Ugyldig forespørselsidentifikator." + +#: ../../Zotlabs/Module/Notifications.php:39 +msgid "Discard" +msgstr "Forkast" + +#: ../../Zotlabs/Module/Notifications.php:103 ../../include/nav.php:193 +msgid "Mark all system notifications seen" +msgstr "Merk alle systemvarsler som sett" + +#: ../../Zotlabs/Module/Poke.php:168 ../../Zotlabs/Lib/Apps.php:228 +#: ../../include/conversation.php:963 +msgid "Poke" +msgstr "Prikk" + +#: ../../Zotlabs/Module/Poke.php:169 +msgid "Poke somebody" +msgstr "Dult noen" + +#: ../../Zotlabs/Module/Poke.php:172 +msgid "Poke/Prod" +msgstr "Prikke/oppildne" + +#: ../../Zotlabs/Module/Poke.php:173 +msgid "Poke, prod or do other things to somebody" +msgstr "Dult, prikk eller gjør andre ting med noen" + +#: ../../Zotlabs/Module/Poke.php:180 +msgid "Recipient" +msgstr "Mottaker" + +#: ../../Zotlabs/Module/Poke.php:181 +msgid "Choose what you wish to do to recipient" +msgstr "Velg hva du ønsker å gjøre med mottakeren" + +#: ../../Zotlabs/Module/Poke.php:184 ../../Zotlabs/Module/Poke.php:185 +msgid "Make this post private" +msgstr "Gjør dette innlegget privat" + +#: ../../Zotlabs/Module/Oexchange.php:27 +msgid "Unable to find your hub." +msgstr "Ikke i stand til å finne hubben din." + +#: ../../Zotlabs/Module/Oexchange.php:41 +msgid "Post successful." +msgstr "Innlegg vellykket." + +#: ../../Zotlabs/Module/Openid.php:30 +msgid "OpenID protocol error. No ID returned." +msgstr "OpenID protokollfeil. Ingen ID ble returnert." + +#: ../../Zotlabs/Module/Openid.php:193 ../../include/auth.php:285 +msgid "Login failed." +msgstr "Innlogging mislyktes." + +#: ../../Zotlabs/Module/Profperm.php:34 ../../Zotlabs/Module/Profperm.php:63 +msgid "Invalid profile identifier." +msgstr "Ugyldig profil-identifikator." + +#: ../../Zotlabs/Module/Profperm.php:115 +msgid "Profile Visibility Editor" +msgstr "Endre profilsynlighet" + +#: ../../Zotlabs/Module/Profperm.php:117 ../../include/channel.php:1290 +msgid "Profile" +msgstr "Profil" + +#: ../../Zotlabs/Module/Profperm.php:119 +msgid "Click on a contact to add or remove." +msgstr "Klikk på en kontakt for å legge til eller fjerne." + +#: ../../Zotlabs/Module/Profperm.php:128 +msgid "Visible To" +msgstr "Synlig for" + +#: ../../Zotlabs/Module/Pconfig.php:26 ../../Zotlabs/Module/Pconfig.php:59 +msgid "This setting requires special processing and editing has been blocked." +msgstr "Denne innstillingen krever spesiell behandling og redigering har blitt blokkert." + +#: ../../Zotlabs/Module/Pconfig.php:48 +msgid "Configuration Editor" +msgstr "Konfigurasjonsbehandler" + +#: ../../Zotlabs/Module/Pconfig.php:49 +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 "Advarsel: kanalen din kan slutte å virke ved endring av enkelte innstillinger. Vennligst forlat denne siden med mindre du er komfortabel med dette og vet hvordan du bruker denne funksjonen riktig." + +#: ../../Zotlabs/Module/Probe.php:28 ../../Zotlabs/Module/Probe.php:32 +#, php-format +msgid "Fetching URL returns error: %1$s" +msgstr "Henting av URL gir følgende feil: %1$s" + +#: ../../Zotlabs/Module/Siteinfo.php:19 +#, php-format +msgid "Version %s" +msgstr "Versjon %s" + +#: ../../Zotlabs/Module/Siteinfo.php:34 +msgid "Installed plugins/addons/apps:" +msgstr "Installerte tilleggsfunksjoner/tillegg/apper:" + +#: ../../Zotlabs/Module/Siteinfo.php:36 +msgid "No installed plugins/addons/apps" +msgstr "Ingen installerte tilleggsfunksjoner/tillegg/apper" + +#: ../../Zotlabs/Module/Siteinfo.php:49 +msgid "" +"This is a hub of $Projectname - a global cooperative network of " +"decentralized privacy enhanced websites." +msgstr "Dette er en $Projectname-hub - et globalt samhandlende nettverk av desentraliserte nettsteder med innbygget personvern." + +#: ../../Zotlabs/Module/Siteinfo.php:51 +msgid "Tag: " +msgstr "Merkelapp:" + +#: ../../Zotlabs/Module/Siteinfo.php:53 +msgid "Last background fetch: " +msgstr "Siste innhenting i bakgrunnen:" + +#: ../../Zotlabs/Module/Siteinfo.php:55 +msgid "Current load average: " +msgstr "Gjeldende belastningsgjennomsnitt:" + +#: ../../Zotlabs/Module/Siteinfo.php:58 +msgid "Running at web location" +msgstr "Kjører på webplasseringen" + +#: ../../Zotlabs/Module/Siteinfo.php:59 +msgid "" +"Please visit hubzilla.org to learn more " +"about $Projectname." +msgstr "Vennligst besøk hubzilla.org for å lære mer om $Projectname." + +#: ../../Zotlabs/Module/Siteinfo.php:60 +msgid "Bug reports and issues: please visit" +msgstr "Feilmeldinger og feilretting: vennligst besøk" + +#: ../../Zotlabs/Module/Siteinfo.php:62 +msgid "$projectname issues" +msgstr "$projectname problemer" + +#: ../../Zotlabs/Module/Siteinfo.php:63 +msgid "" +"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot " +"com" +msgstr "Forslag, ros og så videre - vennligst e-post \"redmatrix\" hos librelist - punktum com" + +#: ../../Zotlabs/Module/Siteinfo.php:65 +msgid "Site Administrators" +msgstr "Nettstedsadministratorer" + +#: ../../Zotlabs/Module/Rmagic.php:44 +msgid "" +"We encountered a problem while logging in with the OpenID you provided. " +"Please check the correct spelling of the ID." +msgstr "Vi støtte på et problem under innloggingen med din OpenID. Vennligst sjekk at ID-en er stavet riktig." + +#: ../../Zotlabs/Module/Rmagic.php:44 +msgid "The error message was:" +msgstr "Feilmeldingen var:" + +#: ../../Zotlabs/Module/Rmagic.php:48 +msgid "Authentication failed." +msgstr "Autentisering mislyktes." + +#: ../../Zotlabs/Module/Rmagic.php:88 +msgid "Remote Authentication" +msgstr "Fjernautentisering" + +#: ../../Zotlabs/Module/Rmagic.php:89 +msgid "Enter your channel address (e.g. channel@example.com)" +msgstr "Skriv din kanaladresse (for eksempel channel@exampel.com)" + +#: ../../Zotlabs/Module/Rmagic.php:90 +msgid "Authenticate" +msgstr "Autentiser" + +#: ../../Zotlabs/Module/Pubsites.php:22 ../../include/widgets.php:1337 +msgid "Public Hubs" +msgstr "Offentlige huber" + +#: ../../Zotlabs/Module/Pubsites.php:25 +msgid "" +"The listed hubs allow public registration for the $Projectname network. All " +"hubs in the network are interlinked so membership on any of them conveys " +"membership in the network as a whole. Some hubs may require subscription or " +"provide tiered service plans. The hub itself may provide " +"additional details." +msgstr "Nettstedene på listen tillater offentlig registrering i $Projectname-nettverket. Alle nettsteder i nettverket er forbundet så medlemskap på enhver av dem formidler medlemskap i nettverket som helhet. Noen nettsteder kan kreve abonnement eller tilby lagdelte tjenesteavtaler. Nettstedene selv kan gi tilleggsopplysninger." + +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Hub URL" +msgstr "Nettstedets URL" + +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Access Type" +msgstr "Tilgangstype" + +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Registration Policy" +msgstr "Retningslinjer for registrering" + +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Stats" +msgstr "Statistikk" + +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Software" +msgstr "Programvare" + +#: ../../Zotlabs/Module/Pubsites.php:31 ../../Zotlabs/Module/Ratings.php:103 +#: ../../include/conversation.php:962 +msgid "Ratings" +msgstr "Vurderinger" + +#: ../../Zotlabs/Module/Pubsites.php:38 +msgid "Rate" +msgstr "Vurder" + +#: ../../Zotlabs/Module/Profile_photo.php:186 +msgid "" +"Shift-reload the page or clear browser cache if the new photo does not " +"display immediately." +msgstr "Hold nede Shift-knappen og last siden på nytt eller tøm nettleserens mellomlager hvis det nye bildet ikke vises umiddelbart." + +#: ../../Zotlabs/Module/Profile_photo.php:389 +msgid "Upload Profile Photo" +msgstr "Last opp profilbilde:" + +#: ../../Zotlabs/Module/Blocks.php:97 ../../Zotlabs/Module/Blocks.php:155 +#: ../../Zotlabs/Module/Editblock.php:108 +msgid "Block Name" +msgstr "Byggeklossens navn" + +#: ../../Zotlabs/Module/Blocks.php:154 ../../include/text.php:2238 +msgid "Blocks" +msgstr "Byggeklosser" + +#: ../../Zotlabs/Module/Blocks.php:156 +msgid "Block Title" +msgstr "Byggeklossens tittel" + +#: ../../Zotlabs/Module/Rate.php:160 +msgid "Website:" +msgstr "Nettsted:" + +#: ../../Zotlabs/Module/Rate.php:163 +#, php-format +msgid "Remote Channel [%s] (not yet known on this site)" +msgstr "Fjerntliggende kanal [%s] (foreløpig ikke kjent på dette nettstedet)" + +#: ../../Zotlabs/Module/Rate.php:164 +msgid "Rating (this information is public)" +msgstr "Vurdering (denne informasjonen er offentlig)" + +#: ../../Zotlabs/Module/Rate.php:165 +msgid "Optionally explain your rating (this information is public)" +msgstr "Velg om du vil forklare din vurdering (denne informasjonen er offentlig)" + +#: ../../Zotlabs/Module/Ratings.php:73 +msgid "No ratings" +msgstr "Ingen vurderinger" + +#: ../../Zotlabs/Module/Ratings.php:104 +msgid "Rating: " +msgstr "Vurdering:" + +#: ../../Zotlabs/Module/Ratings.php:105 +msgid "Website: " +msgstr "Nettsted:" + +#: ../../Zotlabs/Module/Ratings.php:107 +msgid "Description: " +msgstr "Beskrivelse:" + +#: ../../Zotlabs/Module/Apps.php:47 ../../include/nav.php:165 +#: ../../include/widgets.php:102 +msgid "Apps" +msgstr "Apper" + +#: ../../Zotlabs/Module/Editblock.php:124 ../../include/conversation.php:1243 +msgid "Title (optional)" +msgstr "Tittel (valgfri)" + +#: ../../Zotlabs/Module/Editblock.php:133 +msgid "Edit Block" +msgstr "Endre byggekloss" + +#: ../../Zotlabs/Module/Common.php:14 +msgid "No channel." +msgstr "Ingen kanal." + +#: ../../Zotlabs/Module/Common.php:43 +msgid "Common connections" +msgstr "Felles forbindelser" + +#: ../../Zotlabs/Module/Common.php:48 +msgid "No connections in common." +msgstr "Ingen forbindelser felles." #: ../../Zotlabs/Module/Rbmark.php:94 msgid "Select a bookmark folder" @@ -4750,120 +4984,154 @@ msgstr "ja" msgid "Membership on this site is by invitation only." msgstr "Medlemskap ved dette nettstedet skjer kun via invitasjon." -#: ../../Zotlabs/Module/Register.php:262 ../../include/nav.php:147 -#: ../../boot.php:1685 +#: ../../Zotlabs/Module/Register.php:262 ../../include/nav.php:149 +#: ../../boot.php:1686 msgid "Register" msgstr "Registrer" -#: ../../Zotlabs/Module/Register.php:262 -msgid "Proceed to create your first channel" -msgstr "Gå videre for å lage din første kanal" +#: ../../Zotlabs/Module/Register.php:263 +msgid "" +"This site may require email verification after submitting this form. If you " +"are returned to a login page, please check your email for instructions." +msgstr "" #: ../../Zotlabs/Module/Regmod.php:15 msgid "Please login." msgstr "Vennligst logg inn." -#: ../../Zotlabs/Module/Removeaccount.php:34 +#: ../../Zotlabs/Module/Removeaccount.php:35 msgid "" "Account removals are not allowed within 48 hours of changing the account " "password." msgstr "Sletting av kontoer er ikke tillatt innen 48 timer etter endring av kontopassordet." -#: ../../Zotlabs/Module/Removeaccount.php:56 +#: ../../Zotlabs/Module/Removeaccount.php:57 msgid "Remove This Account" msgstr "Slett denne kontoen" -#: ../../Zotlabs/Module/Removeaccount.php:57 -#: ../../Zotlabs/Module/Removeme.php:59 +#: ../../Zotlabs/Module/Removeaccount.php:58 +#: ../../Zotlabs/Module/Removeme.php:61 msgid "WARNING: " msgstr "ADVARSEL:" -#: ../../Zotlabs/Module/Removeaccount.php:57 +#: ../../Zotlabs/Module/Removeaccount.php:58 msgid "" "This account and all its channels will be completely removed from the " "network. " msgstr "Denne kontoen og alle dens kanaler vil bli fullstendig fjernet fra nettverket." -#: ../../Zotlabs/Module/Removeaccount.php:57 -#: ../../Zotlabs/Module/Removeme.php:59 +#: ../../Zotlabs/Module/Removeaccount.php:58 +#: ../../Zotlabs/Module/Removeme.php:61 msgid "This action is permanent and can not be undone!" msgstr "Denne handlingen er permanent og kan ikke angres!" -#: ../../Zotlabs/Module/Removeaccount.php:58 -#: ../../Zotlabs/Module/Removeme.php:60 +#: ../../Zotlabs/Module/Removeaccount.php:59 +#: ../../Zotlabs/Module/Removeme.php:62 msgid "Please enter your password for verification:" msgstr "Vennligst skriv ditt passord for å få bekreftelse:" -#: ../../Zotlabs/Module/Removeaccount.php:59 +#: ../../Zotlabs/Module/Removeaccount.php:60 msgid "" "Remove this account, all its channels and all its channel clones from the " "network" msgstr "Slett denne kontoen, alle dens kanaler og alle dens kanalkloner fra dette nettverket" -#: ../../Zotlabs/Module/Removeaccount.php:59 +#: ../../Zotlabs/Module/Removeaccount.php:60 msgid "" "By default only the instances of the channels located on this hub will be " "removed from the network" msgstr "Som standard vil bare forekomster av kanalene lokalisert på denne hubben bli slettet fra nettverket" -#: ../../Zotlabs/Module/Removeaccount.php:60 -#: ../../Zotlabs/Module/Settings.php:705 +#: ../../Zotlabs/Module/Removeaccount.php:61 +#: ../../Zotlabs/Module/Settings.php:759 msgid "Remove Account" msgstr "Slett konto" -#: ../../Zotlabs/Module/Removeme.php:33 +#: ../../Zotlabs/Module/Removeme.php:35 msgid "" "Channel removals are not allowed within 48 hours of changing the account " "password." msgstr "Fjerning av kanaler er ikke tillatt innen 48 timer etter endring av kontopassordet." -#: ../../Zotlabs/Module/Removeme.php:58 +#: ../../Zotlabs/Module/Removeme.php:60 msgid "Remove This Channel" msgstr "Fjern denne kanalen" -#: ../../Zotlabs/Module/Removeme.php:59 +#: ../../Zotlabs/Module/Removeme.php:61 msgid "This channel will be completely removed from the network. " msgstr "Denne kanalen vil bli fullstendig fjernet fra nettverket." -#: ../../Zotlabs/Module/Removeme.php:61 +#: ../../Zotlabs/Module/Removeme.php:63 msgid "Remove this channel and all its clones from the network" msgstr "Fjern denne kanalen og alle dens kloner fra nettverket" -#: ../../Zotlabs/Module/Removeme.php:61 +#: ../../Zotlabs/Module/Removeme.php:63 msgid "" "By default only the instance of the channel located on this hub will be " "removed from the network" msgstr "Som standard vil bare forekomsten av denne kanalen lokalisert på denne hubben bli fjernet fra nettverket" -#: ../../Zotlabs/Module/Removeme.php:62 ../../Zotlabs/Module/Settings.php:1124 +#: ../../Zotlabs/Module/Removeme.php:64 ../../Zotlabs/Module/Settings.php:1219 msgid "Remove Channel" msgstr "Fjern kanal" -#: ../../Zotlabs/Module/Rmagic.php:44 +#: ../../Zotlabs/Module/Uexport.php:55 ../../Zotlabs/Module/Uexport.php:56 +msgid "Export Channel" +msgstr "Eksporter kanal" + +#: ../../Zotlabs/Module/Uexport.php:57 msgid "" -"We encountered a problem while logging in with the OpenID you provided. " -"Please check the correct spelling of the ID." -msgstr "Vi støtte på et problem under innloggingen med din OpenID. Vennligst sjekk at ID-en er stavet riktig." +"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 "Eksporter grunnleggende informasjon om kanalen din til en fil. Denne er en sikkerhetskopi av dine forbindelser, tillatelser, profil og grunnleggende data, som kan brukes til å importere dine data til en ny hub, men den tar ikke med innholdet." -#: ../../Zotlabs/Module/Rmagic.php:44 -msgid "The error message was:" -msgstr "Feilmeldingen var:" +#: ../../Zotlabs/Module/Uexport.php:58 +msgid "Export Content" +msgstr "Eksporter innhold" -#: ../../Zotlabs/Module/Rmagic.php:48 -msgid "Authentication failed." -msgstr "Autentisering mislyktes." +#: ../../Zotlabs/Module/Uexport.php:59 +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 "Eksporter din kanalinformasjon og det nyeste innholdet til en JSON-sikkerhetskopi, som kan gjenopprettes eller importeres til en annen hub. Denne lager en sikkerhetskopi av alle dine forbindelser, tillatelser, profildata og flere måneder av innholdet ditt. Denne filen kan være SVÆRT stor. Vennligst vær tålmodig - det kan ta flere minutter før denne nedlastningen begynner." -#: ../../Zotlabs/Module/Rmagic.php:88 -msgid "Remote Authentication" -msgstr "Fjernautentisering" +#: ../../Zotlabs/Module/Uexport.php:60 +msgid "Export your posts from a given year." +msgstr "Eksporter dine innlegg fra et bestemt år" -#: ../../Zotlabs/Module/Rmagic.php:89 -msgid "Enter your channel address (e.g. channel@example.com)" -msgstr "Skriv din kanaladresse (for eksempel channel@exampel.com)" +#: ../../Zotlabs/Module/Uexport.php:62 +msgid "" +"You may also export your posts and conversations for a particular year or " +"month. Adjust the date in your browser location bar to select other dates. " +"If the export fails (possibly due to memory exhaustion on your server hub), " +"please try again selecting a more limited date range." +msgstr "Du kan også eksportere dine innlegg og samtaler for et bestemt år eller måned. Juster datoen i din nettlesers adresselinje for å velge andre datoer. Hvis eksporten feiler (muligens på grunn av utilstrekkelig minne på din hub), vennligst prøv igjen med et mer begrenset datoområde." -#: ../../Zotlabs/Module/Rmagic.php:90 -msgid "Authenticate" -msgstr "Autentiser" +#: ../../Zotlabs/Module/Uexport.php:63 +#, php-format +msgid "" +"To select all posts for a given year, such as this year, visit %2$s" +msgstr "For å velge alle innlegg for et gitt år, slik som iår, besøk %2$s" + +#: ../../Zotlabs/Module/Uexport.php:64 +#, php-format +msgid "" +"To select all posts for a given month, such as January of this year, visit " +"%2$s" +msgstr "For å velge alle innlegg fra en gitt måned, slik som januar i år, besøk %2$s" + +#: ../../Zotlabs/Module/Uexport.php:65 +#, php-format +msgid "" +"These content files may be imported or restored by visiting %2$s on any site containing your channel. For best results" +" please import or restore these in date order (oldest first)." +msgstr "Disse innholdsfilene kan importeres eller gjenopprettes ved å besøke %2$s på ethvert nettsted som inneholder din kanal. For best resultat, vennligst importer eller gjenopprett disse etter dato (eldste først)." #: ../../Zotlabs/Module/Search.php:216 #, php-format @@ -4879,609 +5147,652 @@ msgstr "Søkeresultater for: %s" msgid "No service class restrictions found." msgstr "Ingen restriksjoner er funnet i tjenesteklasse." -#: ../../Zotlabs/Module/Settings.php:69 +#: ../../Zotlabs/Module/Settings.php:64 msgid "Name is required" msgstr "Navn er påkrevd" -#: ../../Zotlabs/Module/Settings.php:73 +#: ../../Zotlabs/Module/Settings.php:68 msgid "Key and Secret are required" msgstr "Nøkkel og hemmelighet er påkrevd" -#: ../../Zotlabs/Module/Settings.php:225 +#: ../../Zotlabs/Module/Settings.php:138 +#, php-format +msgid "This channel is limited to %d tokens" +msgstr "" + +#: ../../Zotlabs/Module/Settings.php:144 +msgid "Name and Password are required." +msgstr "" + +#: ../../Zotlabs/Module/Settings.php:168 +msgid "Token saved." +msgstr "" + +#: ../../Zotlabs/Module/Settings.php:274 msgid "Not valid email." msgstr "Ikke gyldig e-post." -#: ../../Zotlabs/Module/Settings.php:228 +#: ../../Zotlabs/Module/Settings.php:277 msgid "Protected email address. Cannot change to that email." msgstr "Beskyttet e-postadresse. Kan ikke endre til den e-postadressen." -#: ../../Zotlabs/Module/Settings.php:237 +#: ../../Zotlabs/Module/Settings.php:286 msgid "System failure storing new email. Please try again." msgstr "Systemfeil ved lagring av ny e-post. Vennligst prøv igjen." -#: ../../Zotlabs/Module/Settings.php:254 +#: ../../Zotlabs/Module/Settings.php:303 msgid "Password verification failed." msgstr "Passordbekreftelsen mislyktes." -#: ../../Zotlabs/Module/Settings.php:261 +#: ../../Zotlabs/Module/Settings.php:310 msgid "Passwords do not match. Password unchanged." msgstr "Passordene stemmer ikke overens. Passord uforandret." -#: ../../Zotlabs/Module/Settings.php:265 +#: ../../Zotlabs/Module/Settings.php:314 msgid "Empty passwords are not allowed. Password unchanged." msgstr "Tomme passord er ikke tillatt. Passord uforandret." -#: ../../Zotlabs/Module/Settings.php:279 +#: ../../Zotlabs/Module/Settings.php:328 msgid "Password changed." msgstr "Passord endret." -#: ../../Zotlabs/Module/Settings.php:281 +#: ../../Zotlabs/Module/Settings.php:330 msgid "Password update failed. Please try again." msgstr "Passord oppdatering mislyktes. Vennligst prøv igjen." -#: ../../Zotlabs/Module/Settings.php:525 +#: ../../Zotlabs/Module/Settings.php:579 msgid "Settings updated." msgstr "Innstillinger oppdatert." -#: ../../Zotlabs/Module/Settings.php:589 ../../Zotlabs/Module/Settings.php:615 -#: ../../Zotlabs/Module/Settings.php:651 +#: ../../Zotlabs/Module/Settings.php:643 ../../Zotlabs/Module/Settings.php:669 +#: ../../Zotlabs/Module/Settings.php:705 msgid "Add application" msgstr "Legg til program" -#: ../../Zotlabs/Module/Settings.php:592 +#: ../../Zotlabs/Module/Settings.php:646 msgid "Name of application" msgstr "Navn på program" -#: ../../Zotlabs/Module/Settings.php:593 ../../Zotlabs/Module/Settings.php:619 +#: ../../Zotlabs/Module/Settings.php:647 ../../Zotlabs/Module/Settings.php:673 msgid "Consumer Key" msgstr "Consumer Key" -#: ../../Zotlabs/Module/Settings.php:593 ../../Zotlabs/Module/Settings.php:594 +#: ../../Zotlabs/Module/Settings.php:647 ../../Zotlabs/Module/Settings.php:648 msgid "Automatically generated - change if desired. Max length 20" msgstr "Automatisk laget - kan endres om du vil. Største lengde 20" -#: ../../Zotlabs/Module/Settings.php:594 ../../Zotlabs/Module/Settings.php:620 +#: ../../Zotlabs/Module/Settings.php:648 ../../Zotlabs/Module/Settings.php:674 msgid "Consumer Secret" msgstr "Consumer Secret" -#: ../../Zotlabs/Module/Settings.php:595 ../../Zotlabs/Module/Settings.php:621 +#: ../../Zotlabs/Module/Settings.php:649 ../../Zotlabs/Module/Settings.php:675 msgid "Redirect" msgstr "Omdirigering" -#: ../../Zotlabs/Module/Settings.php:595 +#: ../../Zotlabs/Module/Settings.php:649 msgid "" "Redirect URI - leave blank unless your application specifically requires " "this" msgstr "Omdirigerings-URI - la stå tomt hvis ikke ditt program spesifikt krever dette" -#: ../../Zotlabs/Module/Settings.php:596 ../../Zotlabs/Module/Settings.php:622 +#: ../../Zotlabs/Module/Settings.php:650 ../../Zotlabs/Module/Settings.php:676 msgid "Icon url" msgstr "Ikon-URL" -#: ../../Zotlabs/Module/Settings.php:596 ../../Zotlabs/Module/Sources.php:112 +#: ../../Zotlabs/Module/Settings.php:650 ../../Zotlabs/Module/Sources.php:112 #: ../../Zotlabs/Module/Sources.php:147 msgid "Optional" msgstr "Valgfritt" -#: ../../Zotlabs/Module/Settings.php:607 +#: ../../Zotlabs/Module/Settings.php:661 msgid "Application not found." msgstr "Programmet ble ikke funnet." -#: ../../Zotlabs/Module/Settings.php:650 +#: ../../Zotlabs/Module/Settings.php:704 msgid "Connected Apps" msgstr "Tilkoblede app-er" -#: ../../Zotlabs/Module/Settings.php:654 +#: ../../Zotlabs/Module/Settings.php:708 msgid "Client key starts with" msgstr "Klientnøkkel starter med" -#: ../../Zotlabs/Module/Settings.php:655 +#: ../../Zotlabs/Module/Settings.php:709 msgid "No name" msgstr "Ikke noe navn" -#: ../../Zotlabs/Module/Settings.php:656 +#: ../../Zotlabs/Module/Settings.php:710 msgid "Remove authorization" msgstr "Fjern tillatelse" -#: ../../Zotlabs/Module/Settings.php:669 +#: ../../Zotlabs/Module/Settings.php:723 msgid "No feature settings configured" msgstr "Ingen funksjonsinnstillinger er konfigurert" -#: ../../Zotlabs/Module/Settings.php:676 +#: ../../Zotlabs/Module/Settings.php:730 msgid "Feature/Addon Settings" msgstr "Funksjons-/Tilleggsinnstillinger" -#: ../../Zotlabs/Module/Settings.php:699 +#: ../../Zotlabs/Module/Settings.php:753 msgid "Account Settings" msgstr "Kontoinnstillinger" -#: ../../Zotlabs/Module/Settings.php:700 +#: ../../Zotlabs/Module/Settings.php:754 msgid "Current Password" msgstr "Nåværende passord" -#: ../../Zotlabs/Module/Settings.php:701 +#: ../../Zotlabs/Module/Settings.php:755 msgid "Enter New Password" msgstr "Skriv nytt passord" -#: ../../Zotlabs/Module/Settings.php:702 +#: ../../Zotlabs/Module/Settings.php:756 msgid "Confirm New Password" msgstr "Bekreft nytt passord" -#: ../../Zotlabs/Module/Settings.php:702 +#: ../../Zotlabs/Module/Settings.php:756 msgid "Leave password fields blank unless changing" msgstr "La passordfeltene stå blanke om det ikke skal endres" -#: ../../Zotlabs/Module/Settings.php:704 -#: ../../Zotlabs/Module/Settings.php:1041 +#: ../../Zotlabs/Module/Settings.php:758 +#: ../../Zotlabs/Module/Settings.php:1136 msgid "Email Address:" msgstr "E-postadresse:" -#: ../../Zotlabs/Module/Settings.php:706 +#: ../../Zotlabs/Module/Settings.php:760 msgid "Remove this account including all its channels" msgstr "Slett denne kontoen inkludert alle dens kanaler" -#: ../../Zotlabs/Module/Settings.php:729 +#: ../../Zotlabs/Module/Settings.php:789 +msgid "" +"Use this form to create temporary access identifiers to share things with " +"non-members. These identities may be used in Access Control Lists and " +"visitors may login using these credentials to access the private content." +msgstr "" + +#: ../../Zotlabs/Module/Settings.php:791 +msgid "" +"You may also provide dropbox style access links to friends and " +"associates by adding the Login Password to any specific site URL as shown. " +"Examples:" +msgstr "" + +#: ../../Zotlabs/Module/Settings.php:796 ../../include/widgets.php:614 +msgid "Guest Access Tokens" +msgstr "" + +#: ../../Zotlabs/Module/Settings.php:803 +msgid "Login Name" +msgstr "" + +#: ../../Zotlabs/Module/Settings.php:804 +msgid "Login Password" +msgstr "" + +#: ../../Zotlabs/Module/Settings.php:805 +msgid "Expires (yyyy-mm-dd)" +msgstr "" + +#: ../../Zotlabs/Module/Settings.php:830 msgid "Additional Features" msgstr "Ekstra funksjoner" -#: ../../Zotlabs/Module/Settings.php:753 +#: ../../Zotlabs/Module/Settings.php:854 msgid "Connector Settings" msgstr "Koblingsinnstillinger" -#: ../../Zotlabs/Module/Settings.php:792 +#: ../../Zotlabs/Module/Settings.php:893 msgid "No special theme for mobile devices" msgstr "Ikke noe spesielt tema for mobile enheter" -#: ../../Zotlabs/Module/Settings.php:795 +#: ../../Zotlabs/Module/Settings.php:896 #, php-format msgid "%s - (Experimental)" msgstr "%s - (Eksperimentelt)" -#: ../../Zotlabs/Module/Settings.php:837 +#: ../../Zotlabs/Module/Settings.php:938 msgid "Display Settings" msgstr "Visningsinnstillinger" -#: ../../Zotlabs/Module/Settings.php:838 +#: ../../Zotlabs/Module/Settings.php:939 msgid "Theme Settings" msgstr "Temainnstillinger" -#: ../../Zotlabs/Module/Settings.php:839 +#: ../../Zotlabs/Module/Settings.php:940 msgid "Custom Theme Settings" msgstr "Tilpassede temainnstillinger" -#: ../../Zotlabs/Module/Settings.php:840 +#: ../../Zotlabs/Module/Settings.php:941 msgid "Content Settings" msgstr "Innholdsinnstillinger" -#: ../../Zotlabs/Module/Settings.php:846 +#: ../../Zotlabs/Module/Settings.php:947 msgid "Display Theme:" msgstr "Visningstema:" -#: ../../Zotlabs/Module/Settings.php:847 +#: ../../Zotlabs/Module/Settings.php:948 msgid "Mobile Theme:" msgstr "Mobiltema:" -#: ../../Zotlabs/Module/Settings.php:848 +#: ../../Zotlabs/Module/Settings.php:949 msgid "Preload images before rendering the page" msgstr "Last inn bildene før gjengivelsen av siden" -#: ../../Zotlabs/Module/Settings.php:848 +#: ../../Zotlabs/Module/Settings.php:949 msgid "" "The subjective page load time will be longer but the page will be ready when" " displayed" msgstr "Den personlige opplevelsen av lastetiden vil være lenger, men siden vil være klar når den vises" -#: ../../Zotlabs/Module/Settings.php:849 +#: ../../Zotlabs/Module/Settings.php:950 msgid "Enable user zoom on mobile devices" msgstr "Skru på brukerstyrt zoom på mobile enheter" -#: ../../Zotlabs/Module/Settings.php:850 +#: ../../Zotlabs/Module/Settings.php:951 msgid "Update browser every xx seconds" msgstr "Oppdater nettleser hvert xx sekunder" -#: ../../Zotlabs/Module/Settings.php:850 +#: ../../Zotlabs/Module/Settings.php:951 msgid "Minimum of 10 seconds, no maximum" msgstr "Minimum 10 sekunder, ikke noe maksimum" -#: ../../Zotlabs/Module/Settings.php:851 +#: ../../Zotlabs/Module/Settings.php:952 msgid "Maximum number of conversations to load at any time:" msgstr "Maksimalt antall samtaler å laste samtidig:" -#: ../../Zotlabs/Module/Settings.php:851 +#: ../../Zotlabs/Module/Settings.php:952 msgid "Maximum of 100 items" msgstr "Maksimum 100 elementer" -#: ../../Zotlabs/Module/Settings.php:852 +#: ../../Zotlabs/Module/Settings.php:953 msgid "Show emoticons (smilies) as images" msgstr "Vis emoticons (smilefjes) som bilder" -#: ../../Zotlabs/Module/Settings.php:853 +#: ../../Zotlabs/Module/Settings.php:954 msgid "Link post titles to source" msgstr "Lenk innleggets tittel til kilden" -#: ../../Zotlabs/Module/Settings.php:854 +#: ../../Zotlabs/Module/Settings.php:955 msgid "System Page Layout Editor - (advanced)" msgstr "Systemsidens layoutbehandler - (avansert)" -#: ../../Zotlabs/Module/Settings.php:857 +#: ../../Zotlabs/Module/Settings.php:958 msgid "Use blog/list mode on channel page" msgstr "Bruk blogg-/listemodus på kanalsiden" -#: ../../Zotlabs/Module/Settings.php:857 ../../Zotlabs/Module/Settings.php:858 +#: ../../Zotlabs/Module/Settings.php:958 ../../Zotlabs/Module/Settings.php:959 msgid "(comments displayed separately)" msgstr "(kommentarer vist separat)" -#: ../../Zotlabs/Module/Settings.php:858 +#: ../../Zotlabs/Module/Settings.php:959 msgid "Use blog/list mode on grid page" msgstr "Bruk blogg-/liste-modus på nettverkssiden" -#: ../../Zotlabs/Module/Settings.php:859 +#: ../../Zotlabs/Module/Settings.php:960 msgid "Channel page max height of content (in pixels)" msgstr "Kanalsidens makshøyde for innhold (i pixler)" -#: ../../Zotlabs/Module/Settings.php:859 ../../Zotlabs/Module/Settings.php:860 +#: ../../Zotlabs/Module/Settings.php:960 ../../Zotlabs/Module/Settings.php:961 msgid "click to expand content exceeding this height" msgstr "klikk for å utvide innhold som overstiger denne høyden" -#: ../../Zotlabs/Module/Settings.php:860 +#: ../../Zotlabs/Module/Settings.php:961 msgid "Grid page max height of content (in pixels)" msgstr "Nettverkssidens makshøyde for innhold (i piksler)" -#: ../../Zotlabs/Module/Settings.php:894 +#: ../../Zotlabs/Module/Settings.php:990 msgid "Nobody except yourself" msgstr "Ingen unntatt deg selv" -#: ../../Zotlabs/Module/Settings.php:895 +#: ../../Zotlabs/Module/Settings.php:991 msgid "Only those you specifically allow" msgstr "Bare de du spesifikt tillater" -#: ../../Zotlabs/Module/Settings.php:896 +#: ../../Zotlabs/Module/Settings.php:992 msgid "Approved connections" msgstr "Godkjente forbindelser" -#: ../../Zotlabs/Module/Settings.php:897 +#: ../../Zotlabs/Module/Settings.php:993 msgid "Any connections" msgstr "Enhver forbindelse" -#: ../../Zotlabs/Module/Settings.php:898 +#: ../../Zotlabs/Module/Settings.php:994 msgid "Anybody on this website" msgstr "Enhver ved dette nettstedet" -#: ../../Zotlabs/Module/Settings.php:899 +#: ../../Zotlabs/Module/Settings.php:995 msgid "Anybody in this network" msgstr "Enhver i dette nettverket" -#: ../../Zotlabs/Module/Settings.php:900 +#: ../../Zotlabs/Module/Settings.php:996 msgid "Anybody authenticated" msgstr "Enhver som er autentisert" -#: ../../Zotlabs/Module/Settings.php:901 +#: ../../Zotlabs/Module/Settings.php:997 msgid "Anybody on the internet" msgstr "Enhver på Internett" -#: ../../Zotlabs/Module/Settings.php:976 +#: ../../Zotlabs/Module/Settings.php:1071 msgid "Publish your default profile in the network directory" msgstr "Publiser din standardprofil i nettverkskatalogen" -#: ../../Zotlabs/Module/Settings.php:981 +#: ../../Zotlabs/Module/Settings.php:1076 msgid "Allow us to suggest you as a potential friend to new members?" msgstr "Tillat oss å foreslå deg som en mulig venn til nye medlemmer?" -#: ../../Zotlabs/Module/Settings.php:990 +#: ../../Zotlabs/Module/Settings.php:1085 msgid "Your channel address is" msgstr "Din kanaladresse er" -#: ../../Zotlabs/Module/Settings.php:1032 +#: ../../Zotlabs/Module/Settings.php:1127 msgid "Channel Settings" msgstr "Kanalinnstillinger" -#: ../../Zotlabs/Module/Settings.php:1039 +#: ../../Zotlabs/Module/Settings.php:1134 msgid "Basic Settings" msgstr "Grunninnstillinger" -#: ../../Zotlabs/Module/Settings.php:1040 ../../include/channel.php:1140 +#: ../../Zotlabs/Module/Settings.php:1135 ../../include/channel.php:1180 msgid "Full Name:" msgstr "Fullt navn:" -#: ../../Zotlabs/Module/Settings.php:1042 +#: ../../Zotlabs/Module/Settings.php:1137 msgid "Your Timezone:" msgstr "Din tidssone:" -#: ../../Zotlabs/Module/Settings.php:1043 +#: ../../Zotlabs/Module/Settings.php:1138 msgid "Default Post Location:" msgstr "Standard plassering ved innlegg:" -#: ../../Zotlabs/Module/Settings.php:1043 +#: ../../Zotlabs/Module/Settings.php:1138 msgid "Geographical location to display on your posts" msgstr "Geografisk plassering som vises på dine innlegg" -#: ../../Zotlabs/Module/Settings.php:1044 +#: ../../Zotlabs/Module/Settings.php:1139 msgid "Use Browser Location:" msgstr "Bruk nettleseren sin plassering:" -#: ../../Zotlabs/Module/Settings.php:1046 +#: ../../Zotlabs/Module/Settings.php:1141 msgid "Adult Content" msgstr "Voksent innhold" -#: ../../Zotlabs/Module/Settings.php:1046 +#: ../../Zotlabs/Module/Settings.php:1141 msgid "" "This channel frequently or regularly publishes adult content. (Please tag " "any adult material and/or nudity with #NSFW)" msgstr "Denne kanalen vil ofte eller jevnlig publisere voksent innhold. (Vennligst merk alt voksent materiale og/eller nakenhet med #NSFW)" -#: ../../Zotlabs/Module/Settings.php:1048 +#: ../../Zotlabs/Module/Settings.php:1143 msgid "Security and Privacy Settings" msgstr "Sikkerhets- og personverninnstillinger" -#: ../../Zotlabs/Module/Settings.php:1051 +#: ../../Zotlabs/Module/Settings.php:1146 msgid "Your permissions are already configured. Click to view/adjust" msgstr "Dine tillatelser er allerede satt. Klikk for å se/justere." -#: ../../Zotlabs/Module/Settings.php:1053 +#: ../../Zotlabs/Module/Settings.php:1148 msgid "Hide my online presence" msgstr "Skjul min tilstedeværelse online" -#: ../../Zotlabs/Module/Settings.php:1053 +#: ../../Zotlabs/Module/Settings.php:1148 msgid "Prevents displaying in your profile that you are online" msgstr "Forhindrer visning på din profil av at du er online " -#: ../../Zotlabs/Module/Settings.php:1055 +#: ../../Zotlabs/Module/Settings.php:1150 msgid "Simple Privacy Settings:" msgstr "Enkle personverninnstillinger:" -#: ../../Zotlabs/Module/Settings.php:1056 +#: ../../Zotlabs/Module/Settings.php:1151 msgid "" "Very Public - extremely permissive (should be used with caution)" msgstr "Svært offentlig - ekstremt åpent (bør brukes med varsomhet)" -#: ../../Zotlabs/Module/Settings.php:1057 +#: ../../Zotlabs/Module/Settings.php:1152 msgid "" "Typical - default public, privacy when desired (similar to social " "network permissions but with improved privacy)" msgstr "Typisk - standard er offentlig, personvern når ønsket (likner på tillatelser i sosiale nettverk, men med forbedret personvern)" -#: ../../Zotlabs/Module/Settings.php:1058 +#: ../../Zotlabs/Module/Settings.php:1153 msgid "Private - default private, never open or public" msgstr "Privat - standard er privat, aldri åpen eller offentlig" -#: ../../Zotlabs/Module/Settings.php:1059 +#: ../../Zotlabs/Module/Settings.php:1154 msgid "Blocked - default blocked to/from everybody" msgstr "Blokkert - standard blokkert til/fra alle" -#: ../../Zotlabs/Module/Settings.php:1061 +#: ../../Zotlabs/Module/Settings.php:1156 msgid "Allow others to tag your posts" msgstr "Tillat andre å merke dine innlegg" -#: ../../Zotlabs/Module/Settings.php:1061 +#: ../../Zotlabs/Module/Settings.php:1156 msgid "" "Often used by the community to retro-actively flag inappropriate content" msgstr "Ofte brukt av fellesskapet for å merke upassende innhold i etterkant" -#: ../../Zotlabs/Module/Settings.php:1063 +#: ../../Zotlabs/Module/Settings.php:1158 msgid "Advanced Privacy Settings" msgstr "Avanserte personverninnstillinger" -#: ../../Zotlabs/Module/Settings.php:1065 +#: ../../Zotlabs/Module/Settings.php:1160 msgid "Expire other channel content after this many days" msgstr "Annet kanal innhold utløper etter så mange dager" -#: ../../Zotlabs/Module/Settings.php:1065 +#: ../../Zotlabs/Module/Settings.php:1160 msgid "0 or blank to use the website limit." -msgstr "" +msgstr "0 eller ikke noe for å bruke nettstedets grense." -#: ../../Zotlabs/Module/Settings.php:1065 +#: ../../Zotlabs/Module/Settings.php:1160 #, php-format msgid "This website expires after %d days." -msgstr "" +msgstr "Dette nettstedet utgår etter %d dager." -#: ../../Zotlabs/Module/Settings.php:1065 +#: ../../Zotlabs/Module/Settings.php:1160 msgid "This website does not expire imported content." -msgstr "" +msgstr "Dette nettstedet lar ikke importert innhold utgå." -#: ../../Zotlabs/Module/Settings.php:1065 +#: ../../Zotlabs/Module/Settings.php:1160 msgid "The website limit takes precedence if lower than your limit." -msgstr "" +msgstr "Nettstedets grense bestemmer hvis lavere enn din grense." -#: ../../Zotlabs/Module/Settings.php:1066 +#: ../../Zotlabs/Module/Settings.php:1161 msgid "Maximum Friend Requests/Day:" msgstr "Maksimalt antall venneforespørsler per dag:" -#: ../../Zotlabs/Module/Settings.php:1066 +#: ../../Zotlabs/Module/Settings.php:1161 msgid "May reduce spam activity" msgstr "Kan redusere søppelpostaktivitet" -#: ../../Zotlabs/Module/Settings.php:1067 +#: ../../Zotlabs/Module/Settings.php:1162 msgid "Default Post and Publish Permissions" -msgstr "" +msgstr "Standard innleggs- og publiseringstillatelser" -#: ../../Zotlabs/Module/Settings.php:1069 +#: ../../Zotlabs/Module/Settings.php:1164 msgid "Use my default audience setting for the type of object published" -msgstr "" +msgstr "Bruk min standard målgruppeinnstilling for objekttypen som publiseres" -#: ../../Zotlabs/Module/Settings.php:1072 +#: ../../Zotlabs/Module/Settings.php:1167 msgid "Channel permissions category:" msgstr "Kategori med kanaltillatelser:" -#: ../../Zotlabs/Module/Settings.php:1078 +#: ../../Zotlabs/Module/Settings.php:1173 msgid "Maximum private messages per day from unknown people:" msgstr "Maksimalt antall private meldinger per dag fra ukjente personer:" -#: ../../Zotlabs/Module/Settings.php:1078 +#: ../../Zotlabs/Module/Settings.php:1173 msgid "Useful to reduce spamming" msgstr "Nyttig for å redusere søppelpost" -#: ../../Zotlabs/Module/Settings.php:1081 +#: ../../Zotlabs/Module/Settings.php:1176 msgid "Notification Settings" msgstr "Varslingsinnstillinger" -#: ../../Zotlabs/Module/Settings.php:1082 +#: ../../Zotlabs/Module/Settings.php:1177 msgid "By default post a status message when:" msgstr "Legg inn en statusmelding når du:" -#: ../../Zotlabs/Module/Settings.php:1083 +#: ../../Zotlabs/Module/Settings.php:1178 msgid "accepting a friend request" msgstr "aksepterer en venneforespørsel" -#: ../../Zotlabs/Module/Settings.php:1084 +#: ../../Zotlabs/Module/Settings.php:1179 msgid "joining a forum/community" msgstr "blir med i et forum/miljø" -#: ../../Zotlabs/Module/Settings.php:1085 +#: ../../Zotlabs/Module/Settings.php:1180 msgid "making an interesting profile change" msgstr "gjør en interessant profilendring" -#: ../../Zotlabs/Module/Settings.php:1086 +#: ../../Zotlabs/Module/Settings.php:1181 msgid "Send a notification email when:" msgstr "Send en varsel-e-post når:" -#: ../../Zotlabs/Module/Settings.php:1087 +#: ../../Zotlabs/Module/Settings.php:1182 msgid "You receive a connection request" msgstr "Du har mottatt en forespørsel om forbindelse" -#: ../../Zotlabs/Module/Settings.php:1088 +#: ../../Zotlabs/Module/Settings.php:1183 msgid "Your connections are confirmed" msgstr "Dine forbindelser er bekreftet" -#: ../../Zotlabs/Module/Settings.php:1089 +#: ../../Zotlabs/Module/Settings.php:1184 msgid "Someone writes on your profile wall" msgstr "Noen skriver på din profilvegg" -#: ../../Zotlabs/Module/Settings.php:1090 +#: ../../Zotlabs/Module/Settings.php:1185 msgid "Someone writes a followup comment" msgstr "Noen skriver en oppfølgende kommentar" -#: ../../Zotlabs/Module/Settings.php:1091 +#: ../../Zotlabs/Module/Settings.php:1186 msgid "You receive a private message" msgstr "Du mottar en privat melding" -#: ../../Zotlabs/Module/Settings.php:1092 +#: ../../Zotlabs/Module/Settings.php:1187 msgid "You receive a friend suggestion" msgstr "Du mottok et venneforslag" -#: ../../Zotlabs/Module/Settings.php:1093 +#: ../../Zotlabs/Module/Settings.php:1188 msgid "You are tagged in a post" msgstr "Du merkes i et innlegg" -#: ../../Zotlabs/Module/Settings.php:1094 +#: ../../Zotlabs/Module/Settings.php:1189 msgid "You are poked/prodded/etc. in a post" msgstr "Du ble prikket/oppildnet/og så vider i et innlegg" -#: ../../Zotlabs/Module/Settings.php:1097 +#: ../../Zotlabs/Module/Settings.php:1192 msgid "Show visual notifications including:" msgstr "Vis visuelle varslinger om:" -#: ../../Zotlabs/Module/Settings.php:1099 +#: ../../Zotlabs/Module/Settings.php:1194 msgid "Unseen grid activity" msgstr "Usett nettverksaktivitet" -#: ../../Zotlabs/Module/Settings.php:1100 +#: ../../Zotlabs/Module/Settings.php:1195 msgid "Unseen channel activity" msgstr "Usett kanalaktivitet" -#: ../../Zotlabs/Module/Settings.php:1101 +#: ../../Zotlabs/Module/Settings.php:1196 msgid "Unseen private messages" msgstr "Usette private meldinger" -#: ../../Zotlabs/Module/Settings.php:1101 -#: ../../Zotlabs/Module/Settings.php:1106 -#: ../../Zotlabs/Module/Settings.php:1107 -#: ../../Zotlabs/Module/Settings.php:1108 +#: ../../Zotlabs/Module/Settings.php:1196 +#: ../../Zotlabs/Module/Settings.php:1201 +#: ../../Zotlabs/Module/Settings.php:1202 +#: ../../Zotlabs/Module/Settings.php:1203 msgid "Recommended" msgstr "Anbefalt" -#: ../../Zotlabs/Module/Settings.php:1102 +#: ../../Zotlabs/Module/Settings.php:1197 msgid "Upcoming events" msgstr "Kommende hendelser" -#: ../../Zotlabs/Module/Settings.php:1103 +#: ../../Zotlabs/Module/Settings.php:1198 msgid "Events today" msgstr "Hendelser idag" -#: ../../Zotlabs/Module/Settings.php:1104 +#: ../../Zotlabs/Module/Settings.php:1199 msgid "Upcoming birthdays" msgstr "Kommende fødselsdager" -#: ../../Zotlabs/Module/Settings.php:1104 +#: ../../Zotlabs/Module/Settings.php:1199 msgid "Not available in all themes" msgstr "Ikke tilgjengelig i alle temaer" -#: ../../Zotlabs/Module/Settings.php:1105 +#: ../../Zotlabs/Module/Settings.php:1200 msgid "System (personal) notifications" msgstr "System (personlige) varslinger" -#: ../../Zotlabs/Module/Settings.php:1106 +#: ../../Zotlabs/Module/Settings.php:1201 msgid "System info messages" msgstr "System infomeldinger" -#: ../../Zotlabs/Module/Settings.php:1107 +#: ../../Zotlabs/Module/Settings.php:1202 msgid "System critical alerts" msgstr "System kritiske varsel" -#: ../../Zotlabs/Module/Settings.php:1108 +#: ../../Zotlabs/Module/Settings.php:1203 msgid "New connections" msgstr "Nye forbindelser" -#: ../../Zotlabs/Module/Settings.php:1109 +#: ../../Zotlabs/Module/Settings.php:1204 msgid "System Registrations" msgstr "Systemregistreringer" -#: ../../Zotlabs/Module/Settings.php:1110 +#: ../../Zotlabs/Module/Settings.php:1205 msgid "" "Also show new wall posts, private messages and connections under Notices" msgstr "Vis også nye vegginnlegg, private meldinger og forbindelser under Varsler" -#: ../../Zotlabs/Module/Settings.php:1112 +#: ../../Zotlabs/Module/Settings.php:1207 msgid "Notify me of events this many days in advance" msgstr "Varsle meg om hendelser dette antall dager på forhånd" -#: ../../Zotlabs/Module/Settings.php:1112 +#: ../../Zotlabs/Module/Settings.php:1207 msgid "Must be greater than 0" msgstr "Må være større enn 0" -#: ../../Zotlabs/Module/Settings.php:1114 +#: ../../Zotlabs/Module/Settings.php:1209 msgid "Advanced Account/Page Type Settings" msgstr "Avanserte innstillinger for konto/sidetype" -#: ../../Zotlabs/Module/Settings.php:1115 +#: ../../Zotlabs/Module/Settings.php:1210 msgid "Change the behaviour of this account for special situations" msgstr "Endre oppførselen til denne kontoen i spesielle situasjoner" -#: ../../Zotlabs/Module/Settings.php:1118 +#: ../../Zotlabs/Module/Settings.php:1213 msgid "" "Please enable expert mode (in Settings > " "Additional features) to adjust!" msgstr "Vennligst skru på ekspertmodus (under Innstillinger > Ekstra funksjoner) for å justere!" -#: ../../Zotlabs/Module/Settings.php:1119 +#: ../../Zotlabs/Module/Settings.php:1214 msgid "Miscellaneous Settings" msgstr "Diverse innstillinger" -#: ../../Zotlabs/Module/Settings.php:1120 +#: ../../Zotlabs/Module/Settings.php:1215 msgid "Default photo upload folder" msgstr "Standard mappe for opplasting av bilder" -#: ../../Zotlabs/Module/Settings.php:1120 -#: ../../Zotlabs/Module/Settings.php:1121 +#: ../../Zotlabs/Module/Settings.php:1215 +#: ../../Zotlabs/Module/Settings.php:1216 msgid "%Y - current year, %m - current month" msgstr "%Y - nåværende år, %m - nåværende måned" -#: ../../Zotlabs/Module/Settings.php:1121 +#: ../../Zotlabs/Module/Settings.php:1216 msgid "Default file upload folder" msgstr "Standard mappe for opplasting av filer" -#: ../../Zotlabs/Module/Settings.php:1123 +#: ../../Zotlabs/Module/Settings.php:1218 msgid "Personal menu to display in your channel pages" msgstr "Personlig meny som kan vises på dine kanalsider" -#: ../../Zotlabs/Module/Settings.php:1125 +#: ../../Zotlabs/Module/Settings.php:1220 msgid "Remove this channel." msgstr "Fjern denne kanalen." -#: ../../Zotlabs/Module/Settings.php:1126 +#: ../../Zotlabs/Module/Settings.php:1221 msgid "Firefox Share $Projectname provider" msgstr "$Projectname Firefox Share tilbyder" -#: ../../Zotlabs/Module/Settings.php:1127 +#: ../../Zotlabs/Module/Settings.php:1222 msgid "Start calendar week on monday" msgstr "Start uken med mandag i kalenderen" @@ -5514,7 +5825,7 @@ msgid "" msgstr "Du må kanskje importere filen \"install/schmea_xxx.sql\" manuelt ved å bruke en databaseklient." #: ../../Zotlabs/Module/Setup.php:204 ../../Zotlabs/Module/Setup.php:266 -#: ../../Zotlabs/Module/Setup.php:721 +#: ../../Zotlabs/Module/Setup.php:722 msgid "Please see the file \"install/INSTALL.txt\"." msgstr "Vennligst les filen \"install/INSTALL.txt\"." @@ -5618,11 +5929,11 @@ msgstr "Noen avanserte egenskaper, som - selv om de er nyttige - kanskje passer #: ../../Zotlabs/Module/Setup.php:388 msgid "PHP version 5.5 or greater is required." -msgstr "" +msgstr "PHP-versjon 5.5 eller høyere er påkrevet." #: ../../Zotlabs/Module/Setup.php:389 msgid "PHP version" -msgstr "" +msgstr "PHP-versjon" #: ../../Zotlabs/Module/Setup.php:404 msgid "Could not find a command line version of PHP in the web server PATH." @@ -5714,199 +6025,200 @@ msgid "mb_string PHP module" msgstr "mb_string PHP-modul" #: ../../Zotlabs/Module/Setup.php:496 -msgid "mcrypt PHP module" -msgstr "mcrypt PHP-modul" - -#: ../../Zotlabs/Module/Setup.php:497 msgid "xml PHP module" msgstr "XML PHP modul" -#: ../../Zotlabs/Module/Setup.php:501 ../../Zotlabs/Module/Setup.php:503 +#: ../../Zotlabs/Module/Setup.php:500 ../../Zotlabs/Module/Setup.php:502 msgid "Apache mod_rewrite module" msgstr "Apache mod_rewrite-modul" -#: ../../Zotlabs/Module/Setup.php:501 +#: ../../Zotlabs/Module/Setup.php:500 msgid "" "Error: Apache webserver mod-rewrite module is required but not installed." msgstr "Feil: Apache web-tjenerens mod-rewrite-modul er påkrevd, men ikke installert." -#: ../../Zotlabs/Module/Setup.php:507 ../../Zotlabs/Module/Setup.php:510 +#: ../../Zotlabs/Module/Setup.php:506 ../../Zotlabs/Module/Setup.php:509 msgid "proc_open" msgstr "proc_open" -#: ../../Zotlabs/Module/Setup.php:507 +#: ../../Zotlabs/Module/Setup.php:506 msgid "" "Error: proc_open is required but is either not installed or has been " "disabled in php.ini" msgstr "Feil: proc_open er påkrevd, men er enten ikke installert eller har blitt avskrudd i php.ini" -#: ../../Zotlabs/Module/Setup.php:515 +#: ../../Zotlabs/Module/Setup.php:514 msgid "Error: libCURL PHP module required but not installed." msgstr "Feil: libCURL PHP-modul er påkrevd, men er ikke installert." -#: ../../Zotlabs/Module/Setup.php:519 +#: ../../Zotlabs/Module/Setup.php:518 msgid "" "Error: GD graphics PHP module with JPEG support required but not installed." msgstr "Feil: GD graphics PHP-modul med JPEG-støtte er påkrevd, men er ikke installert." -#: ../../Zotlabs/Module/Setup.php:523 +#: ../../Zotlabs/Module/Setup.php:522 msgid "Error: openssl PHP module required but not installed." msgstr "Feil: openssl PHP-modul er påkrevd, men er ikke installert." -#: ../../Zotlabs/Module/Setup.php:527 +#: ../../Zotlabs/Module/Setup.php:526 msgid "" "Error: mysqli or postgres PHP module required but neither are installed." msgstr "Feil: mysqli eller postgres PHP modul er påkrevd, men ingen av dem er installert." -#: ../../Zotlabs/Module/Setup.php:531 +#: ../../Zotlabs/Module/Setup.php:530 msgid "Error: mb_string PHP module required but not installed." msgstr "Feil: mb_string PHP-modul er påkrevd, men er ikke installert." -#: ../../Zotlabs/Module/Setup.php:535 -msgid "Error: mcrypt PHP module required but not installed." -msgstr "Feil: mcrypt PHP-modul er påkrevd, men er ikke installert." - -#: ../../Zotlabs/Module/Setup.php:539 +#: ../../Zotlabs/Module/Setup.php:534 msgid "Error: xml PHP module required for DAV but not installed." msgstr "Feil: XML PHP modul er påkrevet for DAV, men den er ikke installert." -#: ../../Zotlabs/Module/Setup.php:557 +#: ../../Zotlabs/Module/Setup.php:552 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 "Web-installasjonen må kunne lage en fil kalt \".htconfig.php\" i toppkatalogen til web-tjeneren din, men dette får den ikke til." -#: ../../Zotlabs/Module/Setup.php:558 +#: ../../Zotlabs/Module/Setup.php:553 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 "Dette er oftest tillatelsesinnstilling, ettersom webtjeneren kanskje kan skrive til filer i din mappe - selv om du kan." -#: ../../Zotlabs/Module/Setup.php:559 +#: ../../Zotlabs/Module/Setup.php:554 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 "På slutten av denne prosedyren vil vi gi deg en tekst til å lagre i en fil kalt .htconfig.php i toppkatalogen til din Red." -#: ../../Zotlabs/Module/Setup.php:560 +#: ../../Zotlabs/Module/Setup.php:555 msgid "" "You can alternatively skip this procedure and perform a manual installation." " Please see the file \"install/INSTALL.txt\" for instructions." msgstr "Alternativt, så kan du hoppe over denne prosedyren og gjennomføre en manuell installasjon. Vennligst se filen \"install/INSTALL.txt\" for instruksjoner." -#: ../../Zotlabs/Module/Setup.php:563 +#: ../../Zotlabs/Module/Setup.php:558 msgid ".htconfig.php is writable" msgstr ".htconfig.php kan skrives til" -#: ../../Zotlabs/Module/Setup.php:577 +#: ../../Zotlabs/Module/Setup.php:572 msgid "" "Red uses the Smarty3 template engine to render its web views. Smarty3 " "compiles templates to PHP to speed up rendering." msgstr "Red bruker malmotoren Smarty3 for å gjengi sine webvisninger. Smarty3 kompilerer malene om til PHP for å framskynde gjengivelsen." -#: ../../Zotlabs/Module/Setup.php:578 +#: ../../Zotlabs/Module/Setup.php:573 #, php-format msgid "" "In order to store these compiled templates, the web server needs to have " "write access to the directory %s under the top level web folder." -msgstr "" +msgstr "For å kunne lagre disse kompilerte malene, så må webtjeneren ha skrivetilgang til katalogen %s under hovedmappen." -#: ../../Zotlabs/Module/Setup.php:579 ../../Zotlabs/Module/Setup.php:600 +#: ../../Zotlabs/Module/Setup.php:574 ../../Zotlabs/Module/Setup.php:595 msgid "" "Please ensure that the user that your web server runs as (e.g. www-data) has" " write access to this folder." msgstr "Vennligst sikre at brukeren som din web-tjeneste kjører som (for eksempel www-data) har skrivetilgang til denne katalogen." -#: ../../Zotlabs/Module/Setup.php:580 +#: ../../Zotlabs/Module/Setup.php:575 #, 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 "Merknad: som et sikkerhetstiltak bør du bare gi webtjerenn skrivetilgang til %s - ikke til malfilene (.tpl) som den inneholder." -#: ../../Zotlabs/Module/Setup.php:583 +#: ../../Zotlabs/Module/Setup.php:578 #, php-format msgid "%s is writable" msgstr "%s kan skrives til" -#: ../../Zotlabs/Module/Setup.php:599 +#: ../../Zotlabs/Module/Setup.php:594 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" -msgstr "Red bruker lagringsmappen for å lagre opplastede filer. Webtjeneren trenger å ha skrivetilgang til lagringsmappen under Red sin toppnivåmappe." +"This software 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 "" -#: ../../Zotlabs/Module/Setup.php:603 +#: ../../Zotlabs/Module/Setup.php:598 msgid "store is writable" msgstr "lageret kan skrives til" -#: ../../Zotlabs/Module/Setup.php:636 +#: ../../Zotlabs/Module/Setup.php:631 msgid "" "SSL certificate cannot be validated. Fix certificate or disable https access" " to this site." msgstr "SSL-sertifikatet kan ikke kontrolleres. Fiks sertifikatet eller skru av https tilgang til dette nettstedet." -#: ../../Zotlabs/Module/Setup.php:637 +#: ../../Zotlabs/Module/Setup.php:632 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 "Hvis du har HTTPS-tilgang til ditt nettsted eller tillater forbindelser til TCP port 443 (HTTPS-porten), så MÅ du bruke nettlesergodkjent sertifkater. Du MÅ IKKE bruke egensignert sertifikater!" -#: ../../Zotlabs/Module/Setup.php:638 +#: ../../Zotlabs/Module/Setup.php:633 msgid "" "This restriction is incorporated because public posts from you may for " "example contain references to images on your own hub." msgstr "Denne begrensningen er tatt inn fordi offentlige innlegg fra deg kan for eksempel inneholde referanser til bilder på din egen hub." -#: ../../Zotlabs/Module/Setup.php:639 +#: ../../Zotlabs/Module/Setup.php:634 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." msgstr "Hvis sertifikatet ditt ikke gjenkjennes, så vil medlemmer på andre nettsteder (som selv kan ha godkjente sertifikater) få en beskjed med en advarsel på deres eget nettsted som klager over sikkerhetsproblemer." -#: ../../Zotlabs/Module/Setup.php:640 +#: ../../Zotlabs/Module/Setup.php:635 msgid "" "This can cause usability issues elsewhere (not just on your own site) so we " "must insist on this requirement." msgstr "Dette kan gi problemer med brukervennlighet (ikke bare på ditt eget nettsted), så vi må insistere på dette kravet." -#: ../../Zotlabs/Module/Setup.php:641 +#: ../../Zotlabs/Module/Setup.php:636 msgid "" "Providers are available that issue free certificates which are browser-" "valid." msgstr "Det finnes tilbydere som utsteder gratis sertifikater som er gyldige i nettlesere." -#: ../../Zotlabs/Module/Setup.php:643 +#: ../../Zotlabs/Module/Setup.php:638 +msgid "" +"If you are confident that the certificate is valid and signed by a trusted " +"authority, check to see if you have failed to install an intermediate cert. " +"These are not normally required by browsers, but are required for server-to-" +"server communications." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:641 msgid "SSL certificate validation" msgstr "SSL sertifikat-kontroll" -#: ../../Zotlabs/Module/Setup.php:649 +#: ../../Zotlabs/Module/Setup.php:647 msgid "" "Url rewrite in .htaccess is not working. Check your server " "configuration.Test: " msgstr "URL omskriving (rewrite) i .htaccess virker ikke. Sjekk konfigurasjonen til tjeneren din. Test:" -#: ../../Zotlabs/Module/Setup.php:652 +#: ../../Zotlabs/Module/Setup.php:650 msgid "Url rewrite is working" msgstr "URL rewrite virker" -#: ../../Zotlabs/Module/Setup.php:661 +#: ../../Zotlabs/Module/Setup.php:659 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 "Databasekonfigurasjonsfilen \".htconfig.php\" kunne ikke skrives. Vennligst bruk den medfølgende teksten for å lage en konfigurasjonsfil i toppkatalogen av din web-tjener." -#: ../../Zotlabs/Module/Setup.php:685 +#: ../../Zotlabs/Module/Setup.php:683 msgid "Errors encountered creating database tables." msgstr "Feil oppstod under opprettelsen av databasetabeller." -#: ../../Zotlabs/Module/Setup.php:719 +#: ../../Zotlabs/Module/Setup.php:720 msgid "

What next

" msgstr "

Hva gjenstår

" -#: ../../Zotlabs/Module/Setup.php:720 +#: ../../Zotlabs/Module/Setup.php:721 msgid "" "IMPORTANT: You will need to [manually] setup a scheduled task for the " "poller." @@ -5928,184 +6240,6 @@ msgstr "Fjern alle filer" msgid "Remove this file" msgstr "Fjern denne filen" -#: ../../Zotlabs/Module/Siteinfo.php:19 -#, php-format -msgid "Version %s" -msgstr "Versjon %s" - -#: ../../Zotlabs/Module/Siteinfo.php:40 -msgid "Installed plugins/addons/apps:" -msgstr "Installerte tilleggsfunksjoner/tillegg/apper:" - -#: ../../Zotlabs/Module/Siteinfo.php:53 -msgid "No installed plugins/addons/apps" -msgstr "Ingen installerte tilleggsfunksjoner/tillegg/apper" - -#: ../../Zotlabs/Module/Siteinfo.php:66 -msgid "" -"This is a hub of $Projectname - a global cooperative network of " -"decentralized privacy enhanced websites." -msgstr "Dette er en $Projectname-hub - et globalt samhandlende nettverk av desentraliserte nettsteder med innbygget personvern." - -#: ../../Zotlabs/Module/Siteinfo.php:68 -msgid "Tag: " -msgstr "Merkelapp:" - -#: ../../Zotlabs/Module/Siteinfo.php:70 -msgid "Last background fetch: " -msgstr "Siste innhenting i bakgrunnen:" - -#: ../../Zotlabs/Module/Siteinfo.php:72 -msgid "Current load average: " -msgstr "Gjeldende belastningsgjennomsnitt:" - -#: ../../Zotlabs/Module/Siteinfo.php:75 -msgid "Running at web location" -msgstr "Kjører på webplasseringen" - -#: ../../Zotlabs/Module/Siteinfo.php:76 -msgid "" -"Please visit hubzilla.org to learn more " -"about $Projectname." -msgstr "Vennligst besøk hubzilla.org for å lære mer om $Projectname." - -#: ../../Zotlabs/Module/Siteinfo.php:77 -msgid "Bug reports and issues: please visit" -msgstr "Feilmeldinger og feilretting: vennligst besøk" - -#: ../../Zotlabs/Module/Siteinfo.php:79 -msgid "$projectname issues" -msgstr "$projectname problemer" - -#: ../../Zotlabs/Module/Siteinfo.php:80 -msgid "" -"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot " -"com" -msgstr "Forslag, ros og så videre - vennligst e-post \"redmatrix\" hos librelist - punktum com" - -#: ../../Zotlabs/Module/Siteinfo.php:82 -msgid "Site Administrators" -msgstr "Nettstedsadministratorer" - -#: ../../Zotlabs/Module/Sources.php:37 -msgid "Failed to create source. No channel selected." -msgstr "Mislyktes med å lage kilde. Ingen kanal er valgt." - -#: ../../Zotlabs/Module/Sources.php:51 -msgid "Source created." -msgstr "Kilden er laget." - -#: ../../Zotlabs/Module/Sources.php:64 -msgid "Source updated." -msgstr "Kilden er oppdatert." - -#: ../../Zotlabs/Module/Sources.php:90 -msgid "*" -msgstr "*" - -#: ../../Zotlabs/Module/Sources.php:96 ../../include/widgets.php:630 -#: ../../include/features.php:71 -msgid "Channel Sources" -msgstr "Kanalkilder" - -#: ../../Zotlabs/Module/Sources.php:97 -msgid "Manage remote sources of content for your channel." -msgstr "Håndtere eksterne innholdskilder til din kanal." - -#: ../../Zotlabs/Module/Sources.php:98 ../../Zotlabs/Module/Sources.php:108 -msgid "New Source" -msgstr "Ny kilde" - -#: ../../Zotlabs/Module/Sources.php:109 ../../Zotlabs/Module/Sources.php:143 -msgid "" -"Import all or selected content from the following channel into this channel " -"and distribute it according to your channel settings." -msgstr "Importer alt eller et utvalgt av innhold fra følgende kanal inn i denne kanalen og distribuer det i henhold til dine egne kanalinnstillinger." - -#: ../../Zotlabs/Module/Sources.php:110 ../../Zotlabs/Module/Sources.php:144 -msgid "Only import content with these words (one per line)" -msgstr "Bare importer innhold med disse ordene (ett ord per linje)" - -#: ../../Zotlabs/Module/Sources.php:110 ../../Zotlabs/Module/Sources.php:144 -msgid "Leave blank to import all public content" -msgstr "La stå tomt for å importere alt offentlig innhold" - -#: ../../Zotlabs/Module/Sources.php:111 ../../Zotlabs/Module/Sources.php:148 -msgid "Channel Name" -msgstr "Kanalnavn" - -#: ../../Zotlabs/Module/Sources.php:112 ../../Zotlabs/Module/Sources.php:147 -msgid "" -"Add the following categories to posts imported from this source (comma " -"separated)" -msgstr "" - -#: ../../Zotlabs/Module/Sources.php:133 ../../Zotlabs/Module/Sources.php:161 -msgid "Source not found." -msgstr "Kilden ble ikke funnet." - -#: ../../Zotlabs/Module/Sources.php:140 -msgid "Edit Source" -msgstr "Endre kilde" - -#: ../../Zotlabs/Module/Sources.php:141 -msgid "Delete Source" -msgstr "Slett kilde" - -#: ../../Zotlabs/Module/Sources.php:169 -msgid "Source removed" -msgstr "Kilden er fjernet" - -#: ../../Zotlabs/Module/Sources.php:171 -msgid "Unable to remove source." -msgstr "Ikke i stand til å fjerne kilde." - -#: ../../Zotlabs/Module/Subthread.php:118 -#, php-format -msgid "%1$s is following %2$s's %3$s" -msgstr "%1$s følger %2$s sin %3$s" - -#: ../../Zotlabs/Module/Subthread.php:120 -#, php-format -msgid "%1$s stopped following %2$s's %3$s" -msgstr "%1$s stopped å følge %2$s sin %3$s" - -#: ../../Zotlabs/Module/Suggest.php:39 -msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "Ingen forslag tilgjengelige. Hvis dette er et nytt nettsted, vennligst prøv igjen om 24 timer." - -#: ../../Zotlabs/Module/Suggest.php:58 ../../include/widgets.php:149 -msgid "Ignore/Hide" -msgstr "Ignorer/Skjul" - -#: ../../Zotlabs/Module/Tagger.php:55 ../../include/bbcode.php:256 -msgid "post" -msgstr "innlegg" - -#: ../../Zotlabs/Module/Tagger.php:57 ../../include/text.php:1948 -#: ../../include/conversation.php:150 -msgid "comment" -msgstr "kommentar" - -#: ../../Zotlabs/Module/Tagger.php:100 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "%1$s merket %3$s til %2$s med %4$s" - -#: ../../Zotlabs/Module/Tagrm.php:48 ../../Zotlabs/Module/Tagrm.php:98 -msgid "Tag removed" -msgstr "Merkelapp fjernet" - -#: ../../Zotlabs/Module/Tagrm.php:123 -msgid "Remove Item Tag" -msgstr "Fjern merkelapp fra element" - -#: ../../Zotlabs/Module/Tagrm.php:125 -msgid "Select a tag to remove: " -msgstr "Velg merkelapp å fjerne:" - #: ../../Zotlabs/Module/Thing.php:114 msgid "Thing updated" msgstr "Tingen er oppdatert" @@ -6163,74 +6297,229 @@ msgstr "URL til bilde av ting (valgfritt)" msgid "Add Thing to your Profile" msgstr "Legg til ting i din profil" -#: ../../Zotlabs/Module/Uexport.php:55 ../../Zotlabs/Module/Uexport.php:56 -msgid "Export Channel" -msgstr "Eksporter kanal" +#: ../../Zotlabs/Module/Sources.php:37 +msgid "Failed to create source. No channel selected." +msgstr "Mislyktes med å lage kilde. Ingen kanal er valgt." -#: ../../Zotlabs/Module/Uexport.php:57 +#: ../../Zotlabs/Module/Sources.php:51 +msgid "Source created." +msgstr "Kilden er laget." + +#: ../../Zotlabs/Module/Sources.php:64 +msgid "Source updated." +msgstr "Kilden er oppdatert." + +#: ../../Zotlabs/Module/Sources.php:90 +msgid "*" +msgstr "*" + +#: ../../Zotlabs/Module/Sources.php:96 ../../include/features.php:72 +#: ../../include/widgets.php:639 +msgid "Channel Sources" +msgstr "Kanalkilder" + +#: ../../Zotlabs/Module/Sources.php:97 +msgid "Manage remote sources of content for your channel." +msgstr "Håndtere eksterne innholdskilder til din kanal." + +#: ../../Zotlabs/Module/Sources.php:98 ../../Zotlabs/Module/Sources.php:108 +msgid "New Source" +msgstr "Ny kilde" + +#: ../../Zotlabs/Module/Sources.php:109 ../../Zotlabs/Module/Sources.php:143 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 "Eksporter grunnleggende informasjon om kanalen din til en fil. Denne er en sikkerhetskopi av dine forbindelser, tillatelser, profil og grunnleggende data, som kan brukes til å importere dine data til en ny hub, men den tar ikke med innholdet." +"Import all or selected content from the following channel into this channel " +"and distribute it according to your channel settings." +msgstr "Importer alt eller et utvalgt av innhold fra følgende kanal inn i denne kanalen og distribuer det i henhold til dine egne kanalinnstillinger." -#: ../../Zotlabs/Module/Uexport.php:58 -msgid "Export Content" -msgstr "Eksporter innhold" +#: ../../Zotlabs/Module/Sources.php:110 ../../Zotlabs/Module/Sources.php:144 +msgid "Only import content with these words (one per line)" +msgstr "Bare importer innhold med disse ordene (ett ord per linje)" -#: ../../Zotlabs/Module/Uexport.php:59 +#: ../../Zotlabs/Module/Sources.php:110 ../../Zotlabs/Module/Sources.php:144 +msgid "Leave blank to import all public content" +msgstr "La stå tomt for å importere alt offentlig innhold" + +#: ../../Zotlabs/Module/Sources.php:111 ../../Zotlabs/Module/Sources.php:148 +msgid "Channel Name" +msgstr "Kanalnavn" + +#: ../../Zotlabs/Module/Sources.php:112 ../../Zotlabs/Module/Sources.php:147 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 "Eksporter din kanalinformasjon og det nyeste innholdet til en JSON-sikkerhetskopi, som kan gjenopprettes eller importeres til en annen hub. Denne lager en sikkerhetskopi av alle dine forbindelser, tillatelser, profildata og flere måneder av innholdet ditt. Denne filen kan være SVÆRT stor. Vennligst vær tålmodig - det kan ta flere minutter før denne nedlastningen begynner." +"Add the following categories to posts imported from this source (comma " +"separated)" +msgstr "Legg til følgende kategorier til innlegg importert fra denne kilden (kommeseparert)" -#: ../../Zotlabs/Module/Uexport.php:60 -msgid "Export your posts from a given year." -msgstr "Eksporter dine innlegg fra et bestemt år" +#: ../../Zotlabs/Module/Sources.php:133 ../../Zotlabs/Module/Sources.php:161 +msgid "Source not found." +msgstr "Kilden ble ikke funnet." -#: ../../Zotlabs/Module/Uexport.php:62 -msgid "" -"You may also export your posts and conversations for a particular year or " -"month. Adjust the date in your browser location bar to select other dates. " -"If the export fails (possibly due to memory exhaustion on your server hub), " -"please try again selecting a more limited date range." -msgstr "Du kan også eksportere dine innlegg og samtaler for et bestemt år eller måned. Juster datoen i din nettlesers adresselinje for å velge andre datoer. Hvis eksporten feiler (muligens på grunn av utilstrekkelig minne på din hub), vennligst prøv igjen med et mer begrenset datoområde." +#: ../../Zotlabs/Module/Sources.php:140 +msgid "Edit Source" +msgstr "Endre kilde" -#: ../../Zotlabs/Module/Uexport.php:63 +#: ../../Zotlabs/Module/Sources.php:141 +msgid "Delete Source" +msgstr "Slett kilde" + +#: ../../Zotlabs/Module/Sources.php:169 +msgid "Source removed" +msgstr "Kilden er fjernet" + +#: ../../Zotlabs/Module/Sources.php:171 +msgid "Unable to remove source." +msgstr "Ikke i stand til å fjerne kilde." + +#: ../../Zotlabs/Module/Subthread.php:118 #, php-format -msgid "" -"To select all posts for a given year, such as this year, visit %2$s" -msgstr "For å velge alle innlegg for et gitt år, slik som iår, besøk %2$s" +msgid "%1$s is following %2$s's %3$s" +msgstr "%1$s følger %2$s sin %3$s" -#: ../../Zotlabs/Module/Uexport.php:64 +#: ../../Zotlabs/Module/Subthread.php:120 #, php-format -msgid "" -"To select all posts for a given month, such as January of this year, visit " -"%2$s" -msgstr "For å velge alle innlegg fra en gitt måned, slik som januar i år, besøk %2$s" +msgid "%1$s stopped following %2$s's %3$s" +msgstr "%1$s stopped å følge %2$s sin %3$s" -#: ../../Zotlabs/Module/Uexport.php:65 +#: ../../Zotlabs/Module/Suggest.php:39 +msgid "" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." +msgstr "Ingen forslag tilgjengelige. Hvis dette er et nytt nettsted, vennligst prøv igjen om 24 timer." + +#: ../../Zotlabs/Module/Suggest.php:58 ../../include/widgets.php:149 +msgid "Ignore/Hide" +msgstr "Ignorer/Skjul" + +#: ../../Zotlabs/Module/Tagger.php:55 ../../include/bbcode.php:263 +msgid "post" +msgstr "innlegg" + +#: ../../Zotlabs/Module/Tagger.php:57 ../../include/conversation.php:150 +#: ../../include/text.php:1929 +msgid "comment" +msgstr "kommentar" + +#: ../../Zotlabs/Module/Tagger.php:100 #, php-format -msgid "" -"These content files may be imported or restored by visiting %2$s on any site containing your channel. For best results" -" please import or restore these in date order (oldest first)." -msgstr "Disse innholdsfilene kan importeres eller gjenopprettes ved å besøke %2$s på ethvert nettsted som inneholder din kanal. For best resultat, vennligst importer eller gjenopprett disse etter dato (eldste først)." +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "%1$s merket %3$s til %2$s med %4$s" -#: ../../Zotlabs/Module/Viewconnections.php:62 +#: ../../Zotlabs/Module/Tagrm.php:48 ../../Zotlabs/Module/Tagrm.php:98 +msgid "Tag removed" +msgstr "Merkelapp fjernet" + +#: ../../Zotlabs/Module/Tagrm.php:123 +msgid "Remove Item Tag" +msgstr "Fjern merkelapp fra element" + +#: ../../Zotlabs/Module/Tagrm.php:125 +msgid "Select a tag to remove: " +msgstr "Velg merkelapp å fjerne:" + +#: ../../Zotlabs/Module/Webpages.php:191 ../../Zotlabs/Lib/Apps.php:218 +#: ../../include/nav.php:106 ../../include/conversation.php:1700 +msgid "Webpages" +msgstr "Websider" + +#: ../../Zotlabs/Module/Webpages.php:202 ../../include/page_widgets.php:44 +msgid "Actions" +msgstr "Handlinger" + +#: ../../Zotlabs/Module/Webpages.php:203 ../../include/page_widgets.php:45 +msgid "Page Link" +msgstr "Sidelenke" + +#: ../../Zotlabs/Module/Webpages.php:204 +msgid "Page Title" +msgstr "Sidetittel" + +#: ../../Zotlabs/Module/Wiki.php:34 +msgid "Not found" +msgstr "" + +#: ../../Zotlabs/Module/Wiki.php:92 ../../Zotlabs/Lib/Apps.php:219 +#: ../../include/nav.php:108 ../../include/conversation.php:1710 +#: ../../include/conversation.php:1713 ../../include/features.php:55 +msgid "Wiki" +msgstr "" + +#: ../../Zotlabs/Module/Wiki.php:93 +msgid "Sandbox" +msgstr "" + +#: ../../Zotlabs/Module/Wiki.php:95 +msgid "" +"\"# Wiki Sandbox\\n\\nContent you **edit** and **preview** here *will not be" +" saved*.\"" +msgstr "" + +#: ../../Zotlabs/Module/Wiki.php:164 +msgid "Revision Comparison" +msgstr "" + +#: ../../Zotlabs/Module/Wiki.php:165 +msgid "Revert" +msgstr "" + +#: ../../Zotlabs/Module/Wiki.php:192 +msgid "Enter the name of your new wiki:" +msgstr "" + +#: ../../Zotlabs/Module/Wiki.php:193 +msgid "Enter the name of the new page:" +msgstr "" + +#: ../../Zotlabs/Module/Wiki.php:194 +msgid "Enter the new name:" +msgstr "" + +#: ../../Zotlabs/Module/Wiki.php:200 ../../include/conversation.php:1150 +msgid "Embed image from photo albums" +msgstr "" + +#: ../../Zotlabs/Module/Wiki.php:201 ../../include/conversation.php:1234 +msgid "Embed an image from your albums" +msgstr "" + +#: ../../Zotlabs/Module/Wiki.php:203 ../../include/conversation.php:1236 +#: ../../include/conversation.php:1273 +msgid "OK" +msgstr "OK" + +#: ../../Zotlabs/Module/Wiki.php:204 ../../include/conversation.php:1186 +msgid "Choose images to embed" +msgstr "" + +#: ../../Zotlabs/Module/Wiki.php:205 ../../include/conversation.php:1187 +msgid "Choose an album" +msgstr "" + +#: ../../Zotlabs/Module/Wiki.php:206 ../../include/conversation.php:1188 +msgid "Choose a different album..." +msgstr "" + +#: ../../Zotlabs/Module/Wiki.php:207 ../../include/conversation.php:1189 +msgid "Error getting album list" +msgstr "" + +#: ../../Zotlabs/Module/Wiki.php:208 ../../include/conversation.php:1190 +msgid "Error getting photo link" +msgstr "" + +#: ../../Zotlabs/Module/Wiki.php:209 ../../include/conversation.php:1191 +msgid "Error getting album" +msgstr "" + +#: ../../Zotlabs/Module/Viewconnections.php:65 msgid "No connections." msgstr "Ingen forbindelser." -#: ../../Zotlabs/Module/Viewconnections.php:75 +#: ../../Zotlabs/Module/Viewconnections.php:78 #, php-format msgid "Visit %s's profile [%s]" msgstr "Besøk %s sin profil [%s]" -#: ../../Zotlabs/Module/Viewconnections.php:104 +#: ../../Zotlabs/Module/Viewconnections.php:107 msgid "View Connections" msgstr "Vis forbindelser" @@ -6238,22 +6527,23 @@ msgstr "Vis forbindelser" msgid "Source of Item" msgstr "Kilde til element" -#: ../../Zotlabs/Module/Webpages.php:184 ../../Zotlabs/Lib/Apps.php:217 -#: ../../include/nav.php:106 ../../include/conversation.php:1685 -msgid "Webpages" -msgstr "Websider" +#: ../../Zotlabs/Module/Api.php:61 ../../Zotlabs/Module/Api.php:85 +msgid "Authorize application connection" +msgstr "Tillat programforbindelse" -#: ../../Zotlabs/Module/Webpages.php:195 ../../include/page_widgets.php:41 -msgid "Actions" -msgstr "Handlinger" +#: ../../Zotlabs/Module/Api.php:62 +msgid "Return to your app and insert this Securty Code:" +msgstr "Gå tilbake til din app og legg inn denne sikkerhetskoden:" -#: ../../Zotlabs/Module/Webpages.php:196 ../../include/page_widgets.php:42 -msgid "Page Link" -msgstr "Sidelenke" +#: ../../Zotlabs/Module/Api.php:72 +msgid "Please login to continue." +msgstr "Vennligst logg inn for å fortsette." -#: ../../Zotlabs/Module/Webpages.php:197 -msgid "Page Title" -msgstr "Sidetittel" +#: ../../Zotlabs/Module/Api.php:87 +msgid "" +"Do you want to authorize this application to access your posts and contacts," +" and/or create new posts for you?" +msgstr "Vil du tillate dette programmet å få tilgang til dine innlegg og kontakter, og/eller lage nye innlegg for deg?" #: ../../Zotlabs/Module/Xchan.php:10 msgid "Xchan Lookup" @@ -6263,92 +6553,6 @@ msgstr "Xchan oppslag" msgid "Lookup xchan beginning with (or webbie): " msgstr "Slå opp xchan som begynner med (eller webbie):" -#: ../../Zotlabs/Lib/Apps.php:204 -msgid "Site Admin" -msgstr "Nettstedsadministrator" - -#: ../../Zotlabs/Lib/Apps.php:205 -msgid "Bug Report" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:206 -msgid "View Bookmarks" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:207 -msgid "My Chatrooms" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:209 -msgid "Firefox Share" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:210 -msgid "Remote Diagnostics" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:211 ../../include/features.php:89 -msgid "Suggest Channels" -msgstr "Foreslå kanaler" - -#: ../../Zotlabs/Lib/Apps.php:212 ../../include/nav.php:110 -#: ../../boot.php:1703 -msgid "Login" -msgstr "Logg inn" - -#: ../../Zotlabs/Lib/Apps.php:214 ../../include/nav.php:179 -msgid "Grid" -msgstr "Nett" - -#: ../../Zotlabs/Lib/Apps.php:218 ../../include/nav.php:182 -msgid "Channel Home" -msgstr "Kanalhjem" - -#: ../../Zotlabs/Lib/Apps.php:221 ../../include/nav.php:201 -#: ../../include/conversation.php:1649 ../../include/conversation.php:1652 -msgid "Events" -msgstr "Hendelser" - -#: ../../Zotlabs/Lib/Apps.php:222 ../../include/nav.php:167 -msgid "Directory" -msgstr "Katalog" - -#: ../../Zotlabs/Lib/Apps.php:224 ../../include/nav.php:193 -msgid "Mail" -msgstr "Melding" - -#: ../../Zotlabs/Lib/Apps.php:227 ../../include/nav.php:96 -msgid "Chat" -msgstr "Chat" - -#: ../../Zotlabs/Lib/Apps.php:229 -msgid "Probe" -msgstr "Undersøk" - -#: ../../Zotlabs/Lib/Apps.php:230 -msgid "Suggest" -msgstr "Forreslå" - -#: ../../Zotlabs/Lib/Apps.php:231 -msgid "Random Channel" -msgstr "Tilfeldig kanal" - -#: ../../Zotlabs/Lib/Apps.php:232 -msgid "Invite" -msgstr "Inviter" - -#: ../../Zotlabs/Lib/Apps.php:233 ../../include/widgets.php:1386 -msgid "Features" -msgstr "Funksjoner" - -#: ../../Zotlabs/Lib/Apps.php:235 -msgid "Post" -msgstr "Innlegg" - -#: ../../Zotlabs/Lib/Apps.php:335 -msgid "Purchase" -msgstr "Kjøp" - #: ../../Zotlabs/Lib/Chatroom.php:27 msgid "Missing room name" msgstr "Mangler romnavn" @@ -6369,19 +6573,19 @@ msgstr "Rommet ble ikke funnet." msgid "Room is full" msgstr "Rommet er fullt" -#: ../../Zotlabs/Lib/Enotify.php:60 ../../include/network.php:1823 +#: ../../Zotlabs/Lib/Enotify.php:60 ../../include/network.php:1882 msgid "$Projectname Notification" msgstr "$Projectname varsling" -#: ../../Zotlabs/Lib/Enotify.php:61 ../../include/network.php:1824 +#: ../../Zotlabs/Lib/Enotify.php:61 ../../include/network.php:1883 msgid "$projectname" msgstr "$projectname" -#: ../../Zotlabs/Lib/Enotify.php:63 ../../include/network.php:1826 +#: ../../Zotlabs/Lib/Enotify.php:63 ../../include/network.php:1885 msgid "Thank You," msgstr "Tusen takk," -#: ../../Zotlabs/Lib/Enotify.php:65 ../../include/network.php:1828 +#: ../../Zotlabs/Lib/Enotify.php:65 ../../include/network.php:1887 #, php-format msgid "%s Administrator" msgstr "%s administrator" @@ -6574,11 +6778,97 @@ msgstr "laget et nytt innlegg" msgid "commented on %s's post" msgstr "kommenterte på %s sitt innlegg" -#: ../../Zotlabs/Lib/ThreadItem.php:95 ../../include/conversation.php:664 +#: ../../Zotlabs/Lib/Apps.php:205 +msgid "Site Admin" +msgstr "Nettstedsadministrator" + +#: ../../Zotlabs/Lib/Apps.php:206 +msgid "Bug Report" +msgstr "Feilmelding" + +#: ../../Zotlabs/Lib/Apps.php:207 +msgid "View Bookmarks" +msgstr "Vis bokmerker" + +#: ../../Zotlabs/Lib/Apps.php:208 +msgid "My Chatrooms" +msgstr "Mine chatrom" + +#: ../../Zotlabs/Lib/Apps.php:210 +msgid "Firefox Share" +msgstr "Firefox-deling" + +#: ../../Zotlabs/Lib/Apps.php:211 +msgid "Remote Diagnostics" +msgstr "Fjerndiagnostisering" + +#: ../../Zotlabs/Lib/Apps.php:212 ../../include/features.php:90 +msgid "Suggest Channels" +msgstr "Foreslå kanaler" + +#: ../../Zotlabs/Lib/Apps.php:213 ../../include/nav.php:112 +#: ../../boot.php:1704 +msgid "Login" +msgstr "Logg inn" + +#: ../../Zotlabs/Lib/Apps.php:215 ../../include/nav.php:181 +msgid "Grid" +msgstr "Nett" + +#: ../../Zotlabs/Lib/Apps.php:220 ../../include/nav.php:184 +msgid "Channel Home" +msgstr "Kanalhjem" + +#: ../../Zotlabs/Lib/Apps.php:223 ../../include/nav.php:203 +#: ../../include/conversation.php:1664 ../../include/conversation.php:1667 +msgid "Events" +msgstr "Hendelser" + +#: ../../Zotlabs/Lib/Apps.php:224 ../../include/nav.php:169 +msgid "Directory" +msgstr "Katalog" + +#: ../../Zotlabs/Lib/Apps.php:226 ../../include/nav.php:195 +msgid "Mail" +msgstr "Melding" + +#: ../../Zotlabs/Lib/Apps.php:229 ../../include/nav.php:96 +msgid "Chat" +msgstr "Chat" + +#: ../../Zotlabs/Lib/Apps.php:231 +msgid "Probe" +msgstr "Undersøk" + +#: ../../Zotlabs/Lib/Apps.php:232 +msgid "Suggest" +msgstr "Forreslå" + +#: ../../Zotlabs/Lib/Apps.php:233 +msgid "Random Channel" +msgstr "Tilfeldig kanal" + +#: ../../Zotlabs/Lib/Apps.php:234 +msgid "Invite" +msgstr "Inviter" + +#: ../../Zotlabs/Lib/Apps.php:235 ../../include/widgets.php:1480 +msgid "Features" +msgstr "Funksjoner" + +#: ../../Zotlabs/Lib/Apps.php:237 +msgid "Post" +msgstr "Innlegg" + +#: ../../Zotlabs/Lib/Apps.php:339 +msgid "Purchase" +msgstr "Kjøp" + +#: ../../Zotlabs/Lib/ThreadItem.php:95 ../../include/conversation.php:667 msgid "Private Message" msgstr "Privat melding" -#: ../../Zotlabs/Lib/ThreadItem.php:132 ../../include/conversation.php:656 +#: ../../Zotlabs/Lib/ThreadItem.php:132 ../../include/conversation.php:659 msgid "Select" msgstr "Velg" @@ -6626,11 +6916,11 @@ msgstr "Skru av og på stjernestatus" msgid "starred" msgstr "stjernemerket" -#: ../../Zotlabs/Lib/ThreadItem.php:234 ../../include/conversation.php:671 +#: ../../Zotlabs/Lib/ThreadItem.php:234 ../../include/conversation.php:674 msgid "Message signature validated" msgstr "Innleggets signatur er bekreftet" -#: ../../Zotlabs/Lib/ThreadItem.php:235 ../../include/conversation.php:672 +#: ../../Zotlabs/Lib/ThreadItem.php:235 ../../include/conversation.php:675 msgid "Message signature incorrect" msgstr "Innleggets signatur er feil" @@ -6686,17 +6976,17 @@ msgstr "vegg-til-vegg" msgid "via Wall-To-Wall:" msgstr "via vegg-til-vegg:" -#: ../../Zotlabs/Lib/ThreadItem.php:341 ../../include/conversation.php:719 +#: ../../Zotlabs/Lib/ThreadItem.php:341 ../../include/conversation.php:722 #, php-format msgid "from %s" msgstr "fra %s" -#: ../../Zotlabs/Lib/ThreadItem.php:344 ../../include/conversation.php:722 +#: ../../Zotlabs/Lib/ThreadItem.php:344 ../../include/conversation.php:725 #, php-format msgid "last edited: %s" msgstr "sist endret: %s" -#: ../../Zotlabs/Lib/ThreadItem.php:345 ../../include/conversation.php:723 +#: ../../Zotlabs/Lib/ThreadItem.php:345 ../../include/conversation.php:726 #, php-format msgid "Expires: %s" msgstr "Utløper: %s" @@ -6714,26 +7004,27 @@ msgid "Mark all seen" msgstr "Merk alle som sett" #: ../../Zotlabs/Lib/ThreadItem.php:421 ../../include/js_strings.php:7 -msgid "[+] show all" -msgstr "[+] Vis alle" +#, php-format +msgid "%s show all" +msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:711 ../../include/conversation.php:1215 +#: ../../Zotlabs/Lib/ThreadItem.php:711 ../../include/conversation.php:1226 msgid "Bold" msgstr "Uthevet" -#: ../../Zotlabs/Lib/ThreadItem.php:712 ../../include/conversation.php:1216 +#: ../../Zotlabs/Lib/ThreadItem.php:712 ../../include/conversation.php:1227 msgid "Italic" msgstr "Kursiv" -#: ../../Zotlabs/Lib/ThreadItem.php:713 ../../include/conversation.php:1217 +#: ../../Zotlabs/Lib/ThreadItem.php:713 ../../include/conversation.php:1228 msgid "Underline" msgstr "Understreket" -#: ../../Zotlabs/Lib/ThreadItem.php:714 ../../include/conversation.php:1218 +#: ../../Zotlabs/Lib/ThreadItem.php:714 ../../include/conversation.php:1229 msgid "Quote" msgstr "Sitat" -#: ../../Zotlabs/Lib/ThreadItem.php:715 ../../include/conversation.php:1219 +#: ../../Zotlabs/Lib/ThreadItem.php:715 ../../include/conversation.php:1230 msgid "Code" msgstr "Kode" @@ -6749,11 +7040,74 @@ msgstr "Sett inn lenke" msgid "Video" msgstr "Video" +#: ../../Zotlabs/Lib/PermissionDescription.php:31 +#: ../../include/acl_selectors.php:230 +msgid "Visible to your default audience" +msgstr "Synlig for ditt standard publikum" + +#: ../../Zotlabs/Lib/PermissionDescription.php:106 +#: ../../include/acl_selectors.php:266 +msgid "Only me" +msgstr "Bare meg" + +#: ../../Zotlabs/Lib/PermissionDescription.php:107 +msgid "Public" +msgstr "Offentlig" + +#: ../../Zotlabs/Lib/PermissionDescription.php:108 +msgid "Anybody in the $Projectname network" +msgstr "Enhver i $Projectname -nettverket" + +#: ../../Zotlabs/Lib/PermissionDescription.php:109 +#, php-format +msgid "Any account on %s" +msgstr "Enhver konto på %s" + +#: ../../Zotlabs/Lib/PermissionDescription.php:110 +msgid "Any of my connections" +msgstr "Enhver av mine forbindelser" + +#: ../../Zotlabs/Lib/PermissionDescription.php:111 +msgid "Only connections I specifically allow" +msgstr "Bare forbindelser som jeg spesifikt tillater" + +#: ../../Zotlabs/Lib/PermissionDescription.php:112 +msgid "Anybody authenticated (could include visitors from other networks)" +msgstr "Enhver som er autentisert (kan inkludere besøkende fra andre nettverk)" + +#: ../../Zotlabs/Lib/PermissionDescription.php:113 +msgid "Any connections including those who haven't yet been approved" +msgstr "Enhver forbindelse inkluder de som ennå ikke er blitt godkjent" + +#: ../../Zotlabs/Lib/PermissionDescription.php:152 +msgid "" +"This is your default setting for the audience of your normal stream, and " +"posts." +msgstr "Dette er dine standardinnstillinger for publikumet til din normale strøm og innlegg." + +#: ../../Zotlabs/Lib/PermissionDescription.php:153 +msgid "" +"This is your default setting for who can view your default channel profile" +msgstr "Dette er din standardinnstilling for hvem som kan se din standard kanalprofil" + +#: ../../Zotlabs/Lib/PermissionDescription.php:154 +msgid "This is your default setting for who can view your connections" +msgstr "Dette er din standardinnstilling for hvem som kan se dine forbindelser" + +#: ../../Zotlabs/Lib/PermissionDescription.php:155 +msgid "" +"This is your default setting for who can view your file storage and photos" +msgstr "Dette er din standardinnstilling for hvem som kan se fillagreret ditt og bilder" + +#: ../../Zotlabs/Lib/PermissionDescription.php:156 +msgid "This is your default setting for the audience of your webpages" +msgstr "Dette er din standardinnstilling for besøkende til dine websider" + #: ../../include/Import/import_diaspora.php:16 msgid "No username found in import file." msgstr "Ingen brukernavn ble funnet i importfilen." -#: ../../include/Import/import_diaspora.php:41 ../../include/import.php:50 +#: ../../include/Import/import_diaspora.php:41 ../../include/import.php:51 msgid "Unable to create a unique channel address. Import failed." msgstr "Klarte ikke å lage en unik kanaladresse. Import mislyktes." @@ -6762,6 +7116,291 @@ msgstr "Klarte ikke å lage en unik kanaladresse. Import mislyktes." msgid "Cannot locate DNS info for database server '%s'" msgstr "Kan ikke finne DNS-informasjon om databasetjener '%s'" +#: ../../include/photos.php:114 +#, php-format +msgid "Image exceeds website size limit of %lu bytes" +msgstr "Bilde overstiger nettstedets størrelsesbegrensning på %lu bytes" + +#: ../../include/photos.php:121 +msgid "Image file is empty." +msgstr "Bildefilen er tom." + +#: ../../include/photos.php:259 +msgid "Photo storage failed." +msgstr "Bildelagring mislyktes." + +#: ../../include/photos.php:299 +msgid "a new photo" +msgstr "et nytt bilde" + +#: ../../include/photos.php:303 +#, php-format +msgctxt "photo_upload" +msgid "%1$s posted %2$s to %3$s" +msgstr "%1$s la inn %2$s til %3$s" + +#: ../../include/photos.php:506 ../../include/conversation.php:1650 +msgid "Photo Albums" +msgstr "Fotoalbum" + +#: ../../include/photos.php:510 +msgid "Upload New Photos" +msgstr "Last opp nye bilder" + +#: ../../include/nav.php:82 ../../include/nav.php:115 ../../boot.php:1703 +msgid "Logout" +msgstr "Logg ut" + +#: ../../include/nav.php:82 ../../include/nav.php:115 +msgid "End this session" +msgstr "Avslutt denne økten" + +#: ../../include/nav.php:85 ../../include/nav.php:146 +msgid "Home" +msgstr "Hjem" + +#: ../../include/nav.php:85 +msgid "Your posts and conversations" +msgstr "Dine innlegg og samtaler" + +#: ../../include/nav.php:86 +msgid "Your profile page" +msgstr "Din profilside" + +#: ../../include/nav.php:88 +msgid "Manage/Edit profiles" +msgstr "Håndter/endre profiler" + +#: ../../include/nav.php:90 ../../include/channel.php:980 +msgid "Edit Profile" +msgstr "Endre profil" + +#: ../../include/nav.php:90 +msgid "Edit your profile" +msgstr "Endre din profil" + +#: ../../include/nav.php:92 +msgid "Your photos" +msgstr "Dine bilder" + +#: ../../include/nav.php:93 +msgid "Your files" +msgstr "Dine filer" + +#: ../../include/nav.php:96 +msgid "Your chatrooms" +msgstr "Dine chatterom" + +#: ../../include/nav.php:102 ../../include/conversation.php:1690 +msgid "Bookmarks" +msgstr "Bokmerker" + +#: ../../include/nav.php:102 +msgid "Your bookmarks" +msgstr "Dine bokmerker" + +#: ../../include/nav.php:106 +msgid "Your webpages" +msgstr "Dine websider" + +#: ../../include/nav.php:108 +msgid "Your wiki" +msgstr "" + +#: ../../include/nav.php:112 +msgid "Sign in" +msgstr "Logg på" + +#: ../../include/nav.php:129 +#, php-format +msgid "%s - click to logout" +msgstr "%s - klikk for å logge ut" + +#: ../../include/nav.php:132 +msgid "Remote authentication" +msgstr "Fjernautentisering" + +#: ../../include/nav.php:132 +msgid "Click to authenticate to your home hub" +msgstr "Klikk for å godkjennes mot din hjemme-hub" + +#: ../../include/nav.php:146 +msgid "Home Page" +msgstr "Hjemmeside" + +#: ../../include/nav.php:149 +msgid "Create an account" +msgstr "Lag en konto" + +#: ../../include/nav.php:161 +msgid "Help and documentation" +msgstr "Hjelp og dokumentasjon" + +#: ../../include/nav.php:165 +msgid "Applications, utilities, links, games" +msgstr "Programmer, verktøy, lenker, spill" + +#: ../../include/nav.php:167 +msgid "Search site @name, #tag, ?docs, content" +msgstr "Søk nettstedet for @navn, #merkelapp, ?dokumentasjon, innhold" + +#: ../../include/nav.php:169 +msgid "Channel Directory" +msgstr "Kanalkatalog" + +#: ../../include/nav.php:181 +msgid "Your grid" +msgstr "Ditt nett" + +#: ../../include/nav.php:182 +msgid "Mark all grid notifications seen" +msgstr "Marker alle nettvarsler som sett" + +#: ../../include/nav.php:184 +msgid "Channel home" +msgstr "Kanalhjem" + +#: ../../include/nav.php:185 +msgid "Mark all channel notifications seen" +msgstr "Merk alle kanalvarsler som sett" + +#: ../../include/nav.php:191 +msgid "Notices" +msgstr "Varsel" + +#: ../../include/nav.php:191 +msgid "Notifications" +msgstr "Varsler" + +#: ../../include/nav.php:192 +msgid "See all notifications" +msgstr "Se alle varsler" + +#: ../../include/nav.php:195 +msgid "Private mail" +msgstr "Privat post" + +#: ../../include/nav.php:196 +msgid "See all private messages" +msgstr "Se alle private meldinger" + +#: ../../include/nav.php:197 +msgid "Mark all private messages seen" +msgstr "Merk alle private meldinger som sett" + +#: ../../include/nav.php:198 ../../include/widgets.php:667 +msgid "Inbox" +msgstr "Innboks" + +#: ../../include/nav.php:199 ../../include/widgets.php:672 +msgid "Outbox" +msgstr "Utboks" + +#: ../../include/nav.php:200 ../../include/widgets.php:677 +msgid "New Message" +msgstr "Ny melding" + +#: ../../include/nav.php:203 +msgid "Event Calendar" +msgstr "Kalender" + +#: ../../include/nav.php:204 +msgid "See all events" +msgstr "Se alle hendelser" + +#: ../../include/nav.php:205 +msgid "Mark all events seen" +msgstr "Merk alle hendelser som sett" + +#: ../../include/nav.php:208 +msgid "Manage Your Channels" +msgstr "Håndter dine kanaler" + +#: ../../include/nav.php:210 +msgid "Account/Channel Settings" +msgstr "Konto-/kanal-innstillinger" + +#: ../../include/nav.php:218 ../../include/widgets.php:1510 +msgid "Admin" +msgstr "Administrator" + +#: ../../include/nav.php:218 +msgid "Site Setup and Configuration" +msgstr "Nettstedsoppsett og -konfigurasjon" + +#: ../../include/nav.php:249 ../../include/conversation.php:854 +msgid "Loading..." +msgstr "Laster..." + +#: ../../include/nav.php:254 +msgid "@name, #tag, ?doc, content" +msgstr "@navn, #merkelapp, ?dokumentasjon, innhold" + +#: ../../include/nav.php:255 +msgid "Please wait..." +msgstr "Vennligst vent..." + +#: ../../include/network.php:704 +msgid "view full size" +msgstr "vis full størrelse" + +#: ../../include/network.php:1930 ../../include/account.php:317 +#: ../../include/account.php:344 ../../include/account.php:404 +msgid "Administrator" +msgstr "Administrator" + +#: ../../include/network.php:1944 +msgid "No Subject" +msgstr "Uten emne" + +#: ../../include/network.php:2198 ../../include/network.php:2199 +msgid "Friendica" +msgstr "Friendica" + +#: ../../include/network.php:2200 +msgid "OStatus" +msgstr "OStatus" + +#: ../../include/network.php:2201 +msgid "GNU-Social" +msgstr "GNU-Social" + +#: ../../include/network.php:2202 +msgid "RSS/Atom" +msgstr "RSS/Atom" + +#: ../../include/network.php:2204 +msgid "Diaspora" +msgstr "Diaspora" + +#: ../../include/network.php:2205 +msgid "Facebook" +msgstr "Facebook" + +#: ../../include/network.php:2206 +msgid "Zot" +msgstr "Zot" + +#: ../../include/network.php:2207 +msgid "LinkedIn" +msgstr "LinkedIn" + +#: ../../include/network.php:2208 +msgid "XMPP/IM" +msgstr "XMPP/IM" + +#: ../../include/network.php:2209 +msgid "MySpace" +msgstr "MySpace" + +#: ../../include/page_widgets.php:7 +msgid "New Page" +msgstr "Ny side" + +#: ../../include/page_widgets.php:46 +msgid "Title" +msgstr "Tittel" + #: ../../include/taxonomy.php:188 ../../include/taxonomy.php:270 #: ../../include/widgets.php:46 ../../include/widgets.php:429 #: ../../include/contact_widgets.php:91 @@ -6800,952 +7439,159 @@ msgstr "liker" msgid "dislikes" msgstr "misliker" -#: ../../include/event.php:22 ../../include/event.php:69 -#: ../../include/bb2diaspora.php:485 -msgid "l F d, Y \\@ g:i A" -msgstr "l F d, Y \\@ g:i A" +#: ../../include/channel.php:33 +msgid "Unable to obtain identity information from database" +msgstr "Klarer ikke å få tak i identitetsinformasjon fra databasen" -#: ../../include/event.php:30 ../../include/event.php:73 -#: ../../include/bb2diaspora.php:491 -msgid "Starts:" -msgstr "Starter:" +#: ../../include/channel.php:67 +msgid "Empty name" +msgstr "Mangler navn" -#: ../../include/event.php:40 ../../include/event.php:77 -#: ../../include/bb2diaspora.php:499 -msgid "Finishes:" -msgstr "Slutter:" +#: ../../include/channel.php:70 +msgid "Name too long" +msgstr "Navnet er for langt" -#: ../../include/event.php:812 -msgid "This event has been added to your calendar." -msgstr "Denne hendelsen er lagt til i din kalender." +#: ../../include/channel.php:181 +msgid "No account identifier" +msgstr "Ingen kontoidentifikator" -#: ../../include/event.php:1012 -msgid "Not specified" -msgstr "Ikke spesifisert" +#: ../../include/channel.php:193 +msgid "Nickname is required." +msgstr "Kallenavn er påkrevd." -#: ../../include/event.php:1013 -msgid "Needs Action" -msgstr "Trenger handling" +#: ../../include/channel.php:207 +msgid "Reserved nickname. Please choose another." +msgstr "Reservert kallenavn. Vennligst velg et annet." -#: ../../include/event.php:1014 -msgid "Completed" -msgstr "Ferdig" - -#: ../../include/event.php:1015 -msgid "In Process" -msgstr "Igang" - -#: ../../include/event.php:1016 -msgid "Cancelled" -msgstr "Avbrutt" - -#: ../../include/import.php:29 +#: ../../include/channel.php:212 msgid "" -"Cannot create a duplicate channel identifier on this system. Import failed." -msgstr "Kan ikke lage en kopi av kanal-identifikatoren på dette systemet. Import mislyktes." +"Nickname has unsupported characters or is already being used on this site." +msgstr "Kallenavnet inneholder tegn som ikke er støttet eller det er allerede i bruk på dette nettstedet." -#: ../../include/import.php:76 -msgid "Channel clone failed. Import failed." -msgstr "Kanalkloning mislyktes. Import mislyktes." +#: ../../include/channel.php:272 +msgid "Unable to retrieve created identity" +msgstr "Klarer ikke å hente den lagede identiteten" -#: ../../include/items.php:892 ../../include/items.php:937 -msgid "(Unknown)" -msgstr "(Ukjent)" +#: ../../include/channel.php:341 +msgid "Default Profile" +msgstr "Standardprofil" -#: ../../include/items.php:1136 -msgid "Visible to anybody on the internet." -msgstr "Synlig for enhver på Internett." +#: ../../include/channel.php:830 +msgid "Requested channel is not available." +msgstr "Forespurt kanal er ikke tilgjengelig." -#: ../../include/items.php:1138 -msgid "Visible to you only." -msgstr "Synlig bare for deg." +#: ../../include/channel.php:977 +msgid "Create New Profile" +msgstr "Lag ny profil" -#: ../../include/items.php:1140 -msgid "Visible to anybody in this network." -msgstr "Synlig for enhver i dette nettverket." +#: ../../include/channel.php:997 +msgid "Visible to everybody" +msgstr "Synlig for alle" -#: ../../include/items.php:1142 -msgid "Visible to anybody authenticated." -msgstr "Synlig for enhver som er autentisert." +#: ../../include/channel.php:1070 ../../include/channel.php:1182 +msgid "Gender:" +msgstr "Kjønn:" -#: ../../include/items.php:1144 +#: ../../include/channel.php:1071 ../../include/channel.php:1226 +msgid "Status:" +msgstr "Status:" + +#: ../../include/channel.php:1072 ../../include/channel.php:1237 +msgid "Homepage:" +msgstr "Hjemmeside:" + +#: ../../include/channel.php:1073 +msgid "Online Now" +msgstr "Online nå" + +#: ../../include/channel.php:1187 +msgid "Like this channel" +msgstr "Lik denne kanalen" + +#: ../../include/channel.php:1211 +msgid "j F, Y" +msgstr "j F, Y" + +#: ../../include/channel.php:1212 +msgid "j F" +msgstr "j F" + +#: ../../include/channel.php:1219 +msgid "Birthday:" +msgstr "Fødselsdag:" + +#: ../../include/channel.php:1232 #, php-format -msgid "Visible to anybody on %s." -msgstr "Synlig for alle på %s." +msgid "for %1$d %2$s" +msgstr "for %1$d %2$s" -#: ../../include/items.php:1146 -msgid "Visible to all connections." -msgstr "Synlig for alle forbindelser." +#: ../../include/channel.php:1235 +msgid "Sexual Preference:" +msgstr "Seksuell preferanse:" -#: ../../include/items.php:1148 -msgid "Visible to approved connections." -msgstr "Synlig for godkjente forbindelser." +#: ../../include/channel.php:1241 +msgid "Tags:" +msgstr "Merkelapper:" -#: ../../include/items.php:1150 -msgid "Visible to specific connections." -msgstr "Synlig for spesifikke forbindelser." +#: ../../include/channel.php:1243 +msgid "Political Views:" +msgstr "Politiske synspunkter:" -#: ../../include/items.php:3909 -msgid "Privacy group is empty." -msgstr "Personverngruppen er tom." +#: ../../include/channel.php:1245 +msgid "Religion:" +msgstr "Religion:" -#: ../../include/items.php:3916 -#, php-format -msgid "Privacy group: %s" -msgstr "Personverngruppe: %s" +#: ../../include/channel.php:1249 +msgid "Hobbies/Interests:" +msgstr "Hobbyer/interesser:" -#: ../../include/items.php:3928 -msgid "Connection not found." -msgstr "Forbindelsen ble ikke funnet." +#: ../../include/channel.php:1251 +msgid "Likes:" +msgstr "Liker:" -#: ../../include/items.php:4277 -msgid "profile photo" -msgstr "profilbilde" +#: ../../include/channel.php:1253 +msgid "Dislikes:" +msgstr "Misliker:" -#: ../../include/message.php:20 -msgid "No recipient provided." -msgstr "Ingen mottaker angitt." +#: ../../include/channel.php:1255 +msgid "Contact information and Social Networks:" +msgstr "Kontaktinformasjon og sosiale nettverk:" -#: ../../include/message.php:25 -msgid "[no subject]" -msgstr "[ikke noe emne]" +#: ../../include/channel.php:1257 +msgid "My other channels:" +msgstr "Mine andre kanaler:" -#: ../../include/message.php:45 -msgid "Unable to determine sender." -msgstr "Kan ikke avgjøre avsender." +#: ../../include/channel.php:1259 +msgid "Musical interests:" +msgstr "Musikkinteresse:" -#: ../../include/message.php:222 -msgid "Stored post could not be verified." -msgstr "Lagret innlegg kunne ikke bekreftes." +#: ../../include/channel.php:1261 +msgid "Books, literature:" +msgstr "Bøker, litteratur:" -#: ../../include/text.php:428 -msgid "prev" -msgstr "forrige" +#: ../../include/channel.php:1263 +msgid "Television:" +msgstr "TV:" -#: ../../include/text.php:430 -msgid "first" -msgstr "første" +#: ../../include/channel.php:1265 +msgid "Film/dance/culture/entertainment:" +msgstr "Film/dans/kultur/underholdning:" -#: ../../include/text.php:459 -msgid "last" -msgstr "siste" +#: ../../include/channel.php:1267 +msgid "Love/Romance:" +msgstr "Kjærlighet/romantikk:" -#: ../../include/text.php:462 -msgid "next" -msgstr "neste" +#: ../../include/channel.php:1269 +msgid "Work/employment:" +msgstr "Arbeid/sysselsetting:" -#: ../../include/text.php:472 -msgid "older" -msgstr "eldre" +#: ../../include/channel.php:1271 +msgid "School/education:" +msgstr "Skole/utdannelse:" -#: ../../include/text.php:474 -msgid "newer" -msgstr "nyere" - -#: ../../include/text.php:863 -msgid "No connections" -msgstr "Ingen forbindelser" - -#: ../../include/text.php:888 -#, php-format -msgid "View all %s connections" -msgstr "Vis alle %s forbindelser" - -#: ../../include/text.php:1033 ../../include/text.php:1038 -msgid "poke" -msgstr "prikk" - -#: ../../include/text.php:1033 ../../include/text.php:1038 -#: ../../include/conversation.php:243 -msgid "poked" -msgstr "prikket" - -#: ../../include/text.php:1039 -msgid "ping" -msgstr "varsle" - -#: ../../include/text.php:1039 -msgid "pinged" -msgstr "varslet" - -#: ../../include/text.php:1040 -msgid "prod" -msgstr "oppildne" - -#: ../../include/text.php:1040 -msgid "prodded" -msgstr "oppildnet" - -#: ../../include/text.php:1041 -msgid "slap" -msgstr "daske" - -#: ../../include/text.php:1041 -msgid "slapped" -msgstr "dasket" - -#: ../../include/text.php:1042 -msgid "finger" -msgstr "fingre" - -#: ../../include/text.php:1042 -msgid "fingered" -msgstr "fingret" - -#: ../../include/text.php:1043 -msgid "rebuff" -msgstr "tilbakevise" - -#: ../../include/text.php:1043 -msgid "rebuffed" -msgstr "tilbakeviste" - -#: ../../include/text.php:1055 -msgid "happy" -msgstr "glad" - -#: ../../include/text.php:1056 -msgid "sad" -msgstr "trist" - -#: ../../include/text.php:1057 -msgid "mellow" -msgstr "dempet" - -#: ../../include/text.php:1058 -msgid "tired" -msgstr "trøtt" - -#: ../../include/text.php:1059 -msgid "perky" -msgstr "oppkvikket" - -#: ../../include/text.php:1060 -msgid "angry" -msgstr "sint" - -#: ../../include/text.php:1061 -msgid "stupefied" -msgstr "lamslått" - -#: ../../include/text.php:1062 -msgid "puzzled" -msgstr "forundret" - -#: ../../include/text.php:1063 -msgid "interested" -msgstr "interessert" - -#: ../../include/text.php:1064 -msgid "bitter" -msgstr "bitter" - -#: ../../include/text.php:1065 -msgid "cheerful" -msgstr "munter" - -#: ../../include/text.php:1066 -msgid "alive" -msgstr "levende" - -#: ../../include/text.php:1067 -msgid "annoyed" -msgstr "irritert" - -#: ../../include/text.php:1068 -msgid "anxious" -msgstr "nervøs" - -#: ../../include/text.php:1069 -msgid "cranky" -msgstr "gretten" - -#: ../../include/text.php:1070 -msgid "disturbed" -msgstr "foruroliget" - -#: ../../include/text.php:1071 -msgid "frustrated" -msgstr "frustrert" - -#: ../../include/text.php:1072 -msgid "depressed" -msgstr "lei seg" - -#: ../../include/text.php:1073 -msgid "motivated" -msgstr "motivert" - -#: ../../include/text.php:1074 -msgid "relaxed" -msgstr "avslappet" - -#: ../../include/text.php:1075 -msgid "surprised" -msgstr "overrasket" - -#: ../../include/text.php:1257 ../../include/js_strings.php:70 -msgid "Monday" -msgstr "mandag" - -#: ../../include/text.php:1257 ../../include/js_strings.php:71 -msgid "Tuesday" -msgstr "tirsdag" - -#: ../../include/text.php:1257 ../../include/js_strings.php:72 -msgid "Wednesday" -msgstr "onsdag" - -#: ../../include/text.php:1257 ../../include/js_strings.php:73 -msgid "Thursday" -msgstr "torsdag" - -#: ../../include/text.php:1257 ../../include/js_strings.php:74 -msgid "Friday" -msgstr "fredag" - -#: ../../include/text.php:1257 ../../include/js_strings.php:75 -msgid "Saturday" -msgstr "lørdag" - -#: ../../include/text.php:1257 ../../include/js_strings.php:69 -msgid "Sunday" -msgstr "søndag" - -#: ../../include/text.php:1261 ../../include/js_strings.php:45 -msgid "January" -msgstr "januar" - -#: ../../include/text.php:1261 ../../include/js_strings.php:46 -msgid "February" -msgstr "februar" - -#: ../../include/text.php:1261 ../../include/js_strings.php:47 -msgid "March" -msgstr "mars" - -#: ../../include/text.php:1261 ../../include/js_strings.php:48 -msgid "April" -msgstr "april" - -#: ../../include/text.php:1261 -msgid "May" -msgstr "mai" - -#: ../../include/text.php:1261 ../../include/js_strings.php:50 -msgid "June" -msgstr "juni" - -#: ../../include/text.php:1261 ../../include/js_strings.php:51 -msgid "July" -msgstr "juli" - -#: ../../include/text.php:1261 ../../include/js_strings.php:52 -msgid "August" -msgstr "august" - -#: ../../include/text.php:1261 ../../include/js_strings.php:53 -msgid "September" -msgstr "september" - -#: ../../include/text.php:1261 ../../include/js_strings.php:54 -msgid "October" -msgstr "oktober" - -#: ../../include/text.php:1261 ../../include/js_strings.php:55 -msgid "November" -msgstr "november" - -#: ../../include/text.php:1261 ../../include/js_strings.php:56 -msgid "December" -msgstr "desember" - -#: ../../include/text.php:1338 ../../include/text.php:1342 -msgid "Unknown Attachment" -msgstr "Ukjent vedlegg" - -#: ../../include/text.php:1344 -msgid "unknown" -msgstr "ukjent" - -#: ../../include/text.php:1380 -msgid "remove category" -msgstr "fjern kategori" - -#: ../../include/text.php:1457 -msgid "remove from file" -msgstr "fjern fra fil" - -#: ../../include/text.php:1753 ../../include/text.php:1824 -msgid "default" -msgstr "standard" - -#: ../../include/text.php:1761 -msgid "Page layout" -msgstr "Sidens layout" - -#: ../../include/text.php:1761 -msgid "You can create your own with the layouts tool" -msgstr "Du kan lage din egen med layout-verktøyet" - -#: ../../include/text.php:1803 -msgid "Page content type" -msgstr "Sidens innholdstype" - -#: ../../include/text.php:1836 -msgid "Select an alternate language" -msgstr "Velg et annet språk" - -#: ../../include/text.php:1953 -msgid "activity" -msgstr "aktivitet" - -#: ../../include/text.php:2262 -msgid "Design Tools" -msgstr "Designverktøy" - -#: ../../include/text.php:2268 -msgid "Pages" -msgstr "Sider" - -#: ../../include/widgets.php:103 -msgid "System" -msgstr "System" - -#: ../../include/widgets.php:106 -msgid "New App" -msgstr "" - -#: ../../include/widgets.php:154 -msgid "Suggestions" -msgstr "Forslag" - -#: ../../include/widgets.php:155 -msgid "See more..." -msgstr "Se mer..." - -#: ../../include/widgets.php:175 -#, php-format -msgid "You have %1$.0f of %2$.0f allowed connections." -msgstr "Du har %1$.0f av %2$.0f tillate forbindelser." - -#: ../../include/widgets.php:181 -msgid "Add New Connection" -msgstr "Legg til ny forbindelse" - -#: ../../include/widgets.php:182 -msgid "Enter channel address" -msgstr "Skriv kanaladressen" - -#: ../../include/widgets.php:183 -msgid "Examples: bob@example.com, https://example.com/barbara" -msgstr "Eksempel: ola@eksempel.no, https://eksempel.no/kari" - -#: ../../include/widgets.php:199 -msgid "Notes" -msgstr "Merknader" - -#: ../../include/widgets.php:273 -msgid "Remove term" -msgstr "Fjern begrep" - -#: ../../include/widgets.php:281 ../../include/features.php:84 -msgid "Saved Searches" -msgstr "Lagrede søk" - -#: ../../include/widgets.php:282 ../../include/group.php:316 -msgid "add" -msgstr "legg til" - -#: ../../include/widgets.php:310 ../../include/contact_widgets.php:53 -#: ../../include/features.php:98 -msgid "Saved Folders" -msgstr "Lagrede mapper" - -#: ../../include/widgets.php:313 ../../include/widgets.php:432 -#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:94 -msgid "Everything" -msgstr "Alt" - -#: ../../include/widgets.php:354 -msgid "Archives" -msgstr "Arkiv" - -#: ../../include/widgets.php:516 -msgid "Refresh" -msgstr "Forny" - -#: ../../include/widgets.php:556 -msgid "Account settings" -msgstr "Kontoinnstillinger" - -#: ../../include/widgets.php:562 -msgid "Channel settings" -msgstr "Kanalinnstillinger" - -#: ../../include/widgets.php:571 -msgid "Additional features" -msgstr "Tilleggsfunksjoner" - -#: ../../include/widgets.php:578 -msgid "Feature/Addon settings" -msgstr "Funksjons-/Tilleggsinnstillinger" - -#: ../../include/widgets.php:584 -msgid "Display settings" -msgstr "Visningsinnstillinger" - -#: ../../include/widgets.php:591 -msgid "Manage locations" -msgstr "" - -#: ../../include/widgets.php:600 -msgid "Export channel" -msgstr "Eksporter kanal" - -#: ../../include/widgets.php:607 -msgid "Connected apps" -msgstr "Tilkoblede app-er" - -#: ../../include/widgets.php:622 -msgid "Premium Channel Settings" -msgstr "Premiumkanal-innstillinger" - -#: ../../include/widgets.php:651 -msgid "Private Mail Menu" -msgstr "Meny for privat post" - -#: ../../include/widgets.php:653 -msgid "Combined View" -msgstr "Kombinert visning" - -#: ../../include/widgets.php:658 ../../include/nav.php:196 -msgid "Inbox" -msgstr "Innboks" - -#: ../../include/widgets.php:663 ../../include/nav.php:197 -msgid "Outbox" -msgstr "Utboks" - -#: ../../include/widgets.php:668 ../../include/nav.php:198 -msgid "New Message" -msgstr "Ny melding" - -#: ../../include/widgets.php:685 ../../include/widgets.php:697 -msgid "Conversations" -msgstr "Samtaler" - -#: ../../include/widgets.php:689 -msgid "Received Messages" -msgstr "Mottatte meldinger" - -#: ../../include/widgets.php:693 -msgid "Sent Messages" -msgstr "Sendte meldinger" - -#: ../../include/widgets.php:707 -msgid "No messages." -msgstr "Ingen meldinger." - -#: ../../include/widgets.php:725 -msgid "Delete conversation" -msgstr "Slett samtale" - -#: ../../include/widgets.php:751 -msgid "Events Menu" -msgstr "Meny for hendelser" - -#: ../../include/widgets.php:752 -msgid "Day View" -msgstr "Dag" - -#: ../../include/widgets.php:753 -msgid "Week View" -msgstr "Uke" - -#: ../../include/widgets.php:754 -msgid "Month View" -msgstr "Måned" - -#: ../../include/widgets.php:766 -msgid "Events Tools" -msgstr "Kalenderverktøy" - -#: ../../include/widgets.php:767 -msgid "Export Calendar" -msgstr "Eksporter kalender" - -#: ../../include/widgets.php:768 -msgid "Import Calendar" -msgstr "Importer kalender" - -#: ../../include/widgets.php:842 ../../include/conversation.php:1662 -#: ../../include/conversation.php:1665 -msgid "Chatrooms" -msgstr "Chatrom" - -#: ../../include/widgets.php:846 -msgid "Overview" -msgstr "" - -#: ../../include/widgets.php:853 -msgid "Chat Members" -msgstr "" - -#: ../../include/widgets.php:876 -msgid "Bookmarked Chatrooms" -msgstr "Bokmerkede chatrom" - -#: ../../include/widgets.php:899 -msgid "Suggested Chatrooms" -msgstr "Foreslåtte chatrom" - -#: ../../include/widgets.php:1044 ../../include/widgets.php:1156 -msgid "photo/image" -msgstr "foto/bilde" - -#: ../../include/widgets.php:1099 -msgid "Click to show more" -msgstr "" - -#: ../../include/widgets.php:1250 -msgid "Rating Tools" -msgstr "Vurderingsverktøy" - -#: ../../include/widgets.php:1254 ../../include/widgets.php:1256 -msgid "Rate Me" -msgstr "Vurder meg" - -#: ../../include/widgets.php:1259 -msgid "View Ratings" -msgstr "Vis vurderinger" - -#: ../../include/widgets.php:1316 -msgid "Forums" -msgstr "Forum" - -#: ../../include/widgets.php:1345 -msgid "Tasks" -msgstr "Oppgaver" - -#: ../../include/widgets.php:1354 -msgid "Documentation" -msgstr "Dokumentasjon" - -#: ../../include/widgets.php:1356 -msgid "Project/Site Information" -msgstr "Prosjekt-/Nettstedsinformasjon" - -#: ../../include/widgets.php:1357 -msgid "For Members" -msgstr "For medlemmer" - -#: ../../include/widgets.php:1358 -msgid "For Administrators" -msgstr "For administratorer" - -#: ../../include/widgets.php:1359 -msgid "For Developers" -msgstr "For utviklere" - -#: ../../include/widgets.php:1383 ../../include/widgets.php:1421 -msgid "Member registrations waiting for confirmation" -msgstr "" - -#: ../../include/widgets.php:1389 -msgid "Inspect queue" -msgstr "Inspiser kø" - -#: ../../include/widgets.php:1391 -msgid "DB updates" -msgstr "Databaseoppdateringer" - -#: ../../include/widgets.php:1416 ../../include/nav.php:216 -msgid "Admin" -msgstr "Administrator" - -#: ../../include/widgets.php:1417 -msgid "Plugin Features" -msgstr "Tilleggsfunksjoner" - -#: ../../include/follow.php:27 -msgid "Channel is blocked on this site." -msgstr "Kanalen er blokkert på dette nettstedet." - -#: ../../include/follow.php:32 -msgid "Channel location missing." -msgstr "Kanalplassering mangler." - -#: ../../include/follow.php:81 -msgid "Response from remote channel was incomplete." -msgstr "Svaret fra den andre kanalen var ikke komplett." - -#: ../../include/follow.php:98 -msgid "Channel was deleted and no longer exists." -msgstr "Kanalen er slettet og finnes ikke lenger." - -#: ../../include/follow.php:154 ../../include/follow.php:190 -msgid "Protocol disabled." -msgstr "Protokollen er avskrudd." - -#: ../../include/follow.php:178 -msgid "Channel discovery failed." -msgstr "Kanaloppdagelse mislyktes." - -#: ../../include/follow.php:216 -msgid "Cannot connect to yourself." -msgstr "Kan ikke lage forbindelse med deg selv." - -#: ../../include/bookmarks.php:35 -#, php-format -msgid "%1$s's bookmarks" -msgstr "%1$s sine bokmerker" - -#: ../../include/api.php:1336 -msgid "Public Timeline" -msgstr "Offentlig tidslinje" - -#: ../../include/bbcode.php:123 ../../include/bbcode.php:844 -#: ../../include/bbcode.php:847 ../../include/bbcode.php:852 -#: ../../include/bbcode.php:855 ../../include/bbcode.php:858 -#: ../../include/bbcode.php:861 ../../include/bbcode.php:866 -#: ../../include/bbcode.php:869 ../../include/bbcode.php:874 -#: ../../include/bbcode.php:877 ../../include/bbcode.php:880 -#: ../../include/bbcode.php:883 -msgid "Image/photo" -msgstr "Bilde/fotografi" - -#: ../../include/bbcode.php:162 ../../include/bbcode.php:894 -msgid "Encrypted content" -msgstr "Kryptert innhold" - -#: ../../include/bbcode.php:178 -#, php-format -msgid "Install %s element: " -msgstr "Installer %s element:" - -#: ../../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 "Dette innlegget inneholder det installerbare elementet %s, men du mangler tillatelse til å installere det på dette nettstedet." - -#: ../../include/bbcode.php:254 -#, php-format -msgid "%1$s wrote the following %2$s %3$s" -msgstr "%1$s skrev følgende %2$s %3$s" - -#: ../../include/bbcode.php:331 ../../include/bbcode.php:339 -msgid "Click to open/close" -msgstr "Klikk for å åpne/lukke" - -#: ../../include/bbcode.php:339 -msgid "spoiler" -msgstr "" - -#: ../../include/bbcode.php:585 -msgid "Different viewers will see this text differently" -msgstr "Denne teksten vil se forskjellig ut for ulike besøkende" - -#: ../../include/bbcode.php:832 -msgid "$1 wrote:" -msgstr "$1 skrev:" - -#: ../../include/dir_fns.php:141 -msgid "Directory Options" -msgstr "Kataloginnstillinger" - -#: ../../include/dir_fns.php:143 -msgid "Safe Mode" -msgstr "Trygt modus" - -#: ../../include/dir_fns.php:144 -msgid "Public Forums Only" -msgstr "Bare offentlige forum" - -#: ../../include/dir_fns.php:145 -msgid "This Website Only" -msgstr "Kun dette nettstedet" - -#: ../../include/security.php:383 -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 "Skjemaets sikkerhetspollett var ikke gyldig. Dette skjedde antakelig fordi skjemaet har vært åpnet for lenge (>3 timer) før det ble sendt inn." - -#: ../../include/nav.php:82 ../../include/nav.php:113 ../../boot.php:1702 -msgid "Logout" -msgstr "Logg ut" - -#: ../../include/nav.php:82 ../../include/nav.php:113 -msgid "End this session" -msgstr "Avslutt denne økten" - -#: ../../include/nav.php:85 ../../include/nav.php:144 -msgid "Home" -msgstr "Hjem" - -#: ../../include/nav.php:85 -msgid "Your posts and conversations" -msgstr "Dine innlegg og samtaler" - -#: ../../include/nav.php:86 -msgid "Your profile page" -msgstr "Din profilside" - -#: ../../include/nav.php:88 -msgid "Manage/Edit profiles" -msgstr "Håndter/endre profiler" - -#: ../../include/nav.php:90 ../../include/channel.php:941 -msgid "Edit Profile" -msgstr "Endre profil" - -#: ../../include/nav.php:90 -msgid "Edit your profile" -msgstr "Endre din profil" - -#: ../../include/nav.php:92 -msgid "Your photos" -msgstr "Dine bilder" - -#: ../../include/nav.php:93 -msgid "Your files" -msgstr "Dine filer" - -#: ../../include/nav.php:96 -msgid "Your chatrooms" -msgstr "Dine chatterom" - -#: ../../include/nav.php:102 ../../include/conversation.php:1675 -msgid "Bookmarks" -msgstr "Bokmerker" - -#: ../../include/nav.php:102 -msgid "Your bookmarks" -msgstr "Dine bokmerker" - -#: ../../include/nav.php:106 -msgid "Your webpages" -msgstr "Dine websider" - -#: ../../include/nav.php:110 -msgid "Sign in" -msgstr "Logg på" - -#: ../../include/nav.php:127 -#, php-format -msgid "%s - click to logout" -msgstr "%s - klikk for å logge ut" - -#: ../../include/nav.php:130 -msgid "Remote authentication" -msgstr "Fjernautentisering" - -#: ../../include/nav.php:130 -msgid "Click to authenticate to your home hub" -msgstr "Klikk for å godkjennes mot din hjemme-hub" - -#: ../../include/nav.php:144 -msgid "Home Page" -msgstr "Hjemmeside" - -#: ../../include/nav.php:147 -msgid "Create an account" -msgstr "Lag en konto" - -#: ../../include/nav.php:159 -msgid "Help and documentation" -msgstr "Hjelp og dokumentasjon" - -#: ../../include/nav.php:163 -msgid "Applications, utilities, links, games" -msgstr "Programmer, verktøy, lenker, spill" - -#: ../../include/nav.php:165 -msgid "Search site @name, #tag, ?docs, content" -msgstr "Søk nettstedet for @navn, #merkelapp, ?dokumentasjon, innhold" - -#: ../../include/nav.php:167 -msgid "Channel Directory" -msgstr "Kanalkatalog" - -#: ../../include/nav.php:179 -msgid "Your grid" -msgstr "Ditt nett" - -#: ../../include/nav.php:180 -msgid "Mark all grid notifications seen" -msgstr "Marker alle nettvarsler som sett" - -#: ../../include/nav.php:182 -msgid "Channel home" -msgstr "Kanalhjem" - -#: ../../include/nav.php:183 -msgid "Mark all channel notifications seen" -msgstr "Merk alle kanalvarsler som sett" - -#: ../../include/nav.php:189 -msgid "Notices" -msgstr "Varsel" - -#: ../../include/nav.php:189 -msgid "Notifications" -msgstr "Varsler" - -#: ../../include/nav.php:190 -msgid "See all notifications" -msgstr "Se alle varsler" - -#: ../../include/nav.php:193 -msgid "Private mail" -msgstr "Privat post" - -#: ../../include/nav.php:194 -msgid "See all private messages" -msgstr "Se alle private meldinger" - -#: ../../include/nav.php:195 -msgid "Mark all private messages seen" -msgstr "Merk alle private meldinger som sett" - -#: ../../include/nav.php:201 -msgid "Event Calendar" -msgstr "Kalender" - -#: ../../include/nav.php:202 -msgid "See all events" -msgstr "Se alle hendelser" - -#: ../../include/nav.php:203 -msgid "Mark all events seen" -msgstr "Merk alle hendelser som sett" - -#: ../../include/nav.php:206 -msgid "Manage Your Channels" -msgstr "Håndter dine kanaler" - -#: ../../include/nav.php:208 -msgid "Account/Channel Settings" -msgstr "Konto-/kanal-innstillinger" - -#: ../../include/nav.php:216 -msgid "Site Setup and Configuration" -msgstr "Nettstedsoppsett og -konfigurasjon" - -#: ../../include/nav.php:247 ../../include/conversation.php:851 -msgid "Loading..." -msgstr "Laster..." - -#: ../../include/nav.php:252 -msgid "@name, #tag, ?doc, content" -msgstr "@navn, #merkelapp, ?dokumentasjon, innhold" - -#: ../../include/nav.php:253 -msgid "Please wait..." -msgstr "Vennligst vent..." +#: ../../include/channel.php:1292 +msgid "Like this thing" +msgstr "Lik denne tingen" #: ../../include/connections.php:95 msgid "New window" @@ -7760,52 +7606,6 @@ msgstr "Åpne det valgte stedet i et annet vindu eller nettleser-fane" msgid "User '%s' deleted" msgstr "Brukeren '%s' er slettet" -#: ../../include/contact_widgets.php:11 -#, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "%d invitasjon tilgjengelig" -msgstr[1] "%d invitasjoner tilgjengelig" - -#: ../../include/contact_widgets.php:19 -msgid "Find Channels" -msgstr "Finn kanaler" - -#: ../../include/contact_widgets.php:20 -msgid "Enter name or interest" -msgstr "Skriv navn eller interesse" - -#: ../../include/contact_widgets.php:21 -msgid "Connect/Follow" -msgstr "Forbindelse/Følg" - -#: ../../include/contact_widgets.php:22 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "Eksempler: Ola Nordmann, fisking" - -#: ../../include/contact_widgets.php:26 -msgid "Random Profile" -msgstr "Tilfeldig profil" - -#: ../../include/contact_widgets.php:27 -msgid "Invite Friends" -msgstr "Inviter venner" - -#: ../../include/contact_widgets.php:29 -msgid "Advanced example: name=fred and country=iceland" -msgstr "Avansert eksempel: navn=fred og land=island" - -#: ../../include/contact_widgets.php:122 -#, php-format -msgid "%d connection in common" -msgid_plural "%d connections in common" -msgstr[0] "%d forbindelse felles" -msgstr[1] "%d forbindelser felles" - -#: ../../include/contact_widgets.php:127 -msgid "show more" -msgstr "vis mer" - #: ../../include/conversation.php:204 #, php-format msgid "%1$s is now connected with %2$s" @@ -7816,258 +7616,269 @@ msgstr "%1$s er nå forbundet med %2$s" msgid "%1$s poked %2$s" msgstr "%1$s prikket %2$s" -#: ../../include/conversation.php:691 +#: ../../include/conversation.php:243 ../../include/text.php:1013 +#: ../../include/text.php:1018 +msgid "poked" +msgstr "prikket" + +#: ../../include/conversation.php:694 #, php-format msgid "View %s's profile @ %s" msgstr "Vis %s sin profile @ %s" -#: ../../include/conversation.php:710 +#: ../../include/conversation.php:713 msgid "Categories:" msgstr "Kategorier:" -#: ../../include/conversation.php:711 +#: ../../include/conversation.php:714 msgid "Filed under:" msgstr "Sortert under:" -#: ../../include/conversation.php:738 +#: ../../include/conversation.php:741 msgid "View in context" msgstr "Vis i sammenheng" -#: ../../include/conversation.php:847 +#: ../../include/conversation.php:850 msgid "remove" msgstr "fjern" -#: ../../include/conversation.php:852 +#: ../../include/conversation.php:855 msgid "Delete Selected Items" msgstr "Slett valgte elementer" -#: ../../include/conversation.php:948 +#: ../../include/conversation.php:951 msgid "View Source" msgstr "Vis kilde" -#: ../../include/conversation.php:949 +#: ../../include/conversation.php:952 msgid "Follow Thread" msgstr "Følg tråd" -#: ../../include/conversation.php:950 +#: ../../include/conversation.php:953 msgid "Unfollow Thread" msgstr "Ikke følg tråd" -#: ../../include/conversation.php:955 +#: ../../include/conversation.php:958 msgid "Activity/Posts" msgstr "Aktivitet/Innlegg" -#: ../../include/conversation.php:957 +#: ../../include/conversation.php:960 msgid "Edit Connection" msgstr "Endre forbindelse" -#: ../../include/conversation.php:958 +#: ../../include/conversation.php:961 msgid "Message" msgstr "Melding" -#: ../../include/conversation.php:1075 +#: ../../include/conversation.php:1078 #, php-format msgid "%s likes this." msgstr "%s liker dette." -#: ../../include/conversation.php:1075 +#: ../../include/conversation.php:1078 #, php-format msgid "%s doesn't like this." msgstr "%s liker ikke dette." -#: ../../include/conversation.php:1079 +#: ../../include/conversation.php:1082 #, php-format msgid "%2$d people like this." msgid_plural "%2$d people like this." msgstr[0] "%2$d person liker dette." msgstr[1] "%2$d personer liker dette." -#: ../../include/conversation.php:1081 +#: ../../include/conversation.php:1084 #, php-format msgid "%2$d people don't like this." msgid_plural "%2$d people don't like this." msgstr[0] "%2$d person liker ikke dette." msgstr[1] "%2$d personer liker ikke dette." -#: ../../include/conversation.php:1087 +#: ../../include/conversation.php:1090 msgid "and" msgstr "og" -#: ../../include/conversation.php:1090 +#: ../../include/conversation.php:1093 #, php-format msgid ", and %d other people" msgid_plural ", and %d other people" msgstr[0] ", og %d annen person" msgstr[1] ", og %d andre personer" -#: ../../include/conversation.php:1091 +#: ../../include/conversation.php:1094 #, php-format msgid "%s like this." msgstr "%s liker dette." -#: ../../include/conversation.php:1091 +#: ../../include/conversation.php:1094 #, php-format msgid "%s don't like this." msgstr "%s liker ikke dette." -#: ../../include/conversation.php:1130 +#: ../../include/conversation.php:1133 msgid "Set your location" msgstr "Angi din plassering" -#: ../../include/conversation.php:1131 +#: ../../include/conversation.php:1134 msgid "Clear browser location" msgstr "Fjern nettleserplassering" -#: ../../include/conversation.php:1177 +#: ../../include/conversation.php:1182 msgid "Tag term:" msgstr "Merkelapp:" -#: ../../include/conversation.php:1178 +#: ../../include/conversation.php:1183 msgid "Where are you right now?" msgstr "Hvor er du akkurat nå?" -#: ../../include/conversation.php:1210 +#: ../../include/conversation.php:1221 msgid "Page link name" msgstr "Sidens lenkenavn" -#: ../../include/conversation.php:1213 +#: ../../include/conversation.php:1224 msgid "Post as" msgstr "Lag innlegg som" -#: ../../include/conversation.php:1223 +#: ../../include/conversation.php:1238 msgid "Toggle voting" msgstr "Skru av eller på stemming" -#: ../../include/conversation.php:1231 +#: ../../include/conversation.php:1246 msgid "Categories (optional, comma-separated list)" msgstr "Kategorier (valgfri, kommaseparert liste)" -#: ../../include/conversation.php:1254 +#: ../../include/conversation.php:1269 msgid "Set publish date" msgstr "Angi publiseringsdato" -#: ../../include/conversation.php:1258 -msgid "OK" -msgstr "OK" - -#: ../../include/conversation.php:1503 +#: ../../include/conversation.php:1518 msgid "Discover" msgstr "Oppdage" -#: ../../include/conversation.php:1506 +#: ../../include/conversation.php:1521 msgid "Imported public streams" msgstr "Importerte offentlige strømmer" -#: ../../include/conversation.php:1511 +#: ../../include/conversation.php:1526 msgid "Commented Order" msgstr "Kommentert" -#: ../../include/conversation.php:1514 +#: ../../include/conversation.php:1529 msgid "Sort by Comment Date" msgstr "Sorter etter kommentert dato" -#: ../../include/conversation.php:1518 +#: ../../include/conversation.php:1533 msgid "Posted Order" msgstr "Lagt inn" -#: ../../include/conversation.php:1521 +#: ../../include/conversation.php:1536 msgid "Sort by Post Date" msgstr "Sorter etter innleggsdato" -#: ../../include/conversation.php:1529 +#: ../../include/conversation.php:1544 msgid "Posts that mention or involve you" msgstr "Innlegg som nevner eller involverer deg" -#: ../../include/conversation.php:1538 +#: ../../include/conversation.php:1553 msgid "Activity Stream - by date" msgstr "Aktivitetsstrøm - etter dato" -#: ../../include/conversation.php:1544 +#: ../../include/conversation.php:1559 msgid "Starred" msgstr "Stjerne" -#: ../../include/conversation.php:1547 +#: ../../include/conversation.php:1562 msgid "Favourite Posts" msgstr "Favorittinnlegg" -#: ../../include/conversation.php:1554 +#: ../../include/conversation.php:1569 msgid "Spam" msgstr "Søppel" -#: ../../include/conversation.php:1557 +#: ../../include/conversation.php:1572 msgid "Posts flagged as SPAM" msgstr "Innlegg merket som SØPPEL" -#: ../../include/conversation.php:1614 +#: ../../include/conversation.php:1629 msgid "Status Messages and Posts" msgstr "Statusmeldinger og -innlegg" -#: ../../include/conversation.php:1623 +#: ../../include/conversation.php:1638 msgid "About" msgstr "Om" -#: ../../include/conversation.php:1626 +#: ../../include/conversation.php:1641 msgid "Profile Details" msgstr "Profildetaljer" -#: ../../include/conversation.php:1635 ../../include/photos.php:502 -msgid "Photo Albums" -msgstr "Fotoalbum" - -#: ../../include/conversation.php:1642 +#: ../../include/conversation.php:1657 msgid "Files and Storage" msgstr "Filer og lagring" -#: ../../include/conversation.php:1678 +#: ../../include/conversation.php:1677 ../../include/conversation.php:1680 +#: ../../include/widgets.php:836 +msgid "Chatrooms" +msgstr "Chatrom" + +#: ../../include/conversation.php:1693 msgid "Saved Bookmarks" msgstr "Lagrede bokmerker" -#: ../../include/conversation.php:1688 +#: ../../include/conversation.php:1703 msgid "Manage Webpages" msgstr "Håndtere websider" -#: ../../include/conversation.php:1747 +#: ../../include/conversation.php:1768 msgctxt "noun" msgid "Attending" msgid_plural "Attending" msgstr[0] "Deltar" msgstr[1] "Deltar" -#: ../../include/conversation.php:1750 +#: ../../include/conversation.php:1771 msgctxt "noun" msgid "Not Attending" msgid_plural "Not Attending" msgstr[0] "Deltar ikke" msgstr[1] "Deltar ikke" -#: ../../include/conversation.php:1753 +#: ../../include/conversation.php:1774 msgctxt "noun" msgid "Undecided" msgid_plural "Undecided" msgstr[0] "Ikke bestemt" msgstr[1] "Ikke bestemt" -#: ../../include/conversation.php:1756 +#: ../../include/conversation.php:1777 msgctxt "noun" msgid "Agree" msgid_plural "Agrees" msgstr[0] "Enig" msgstr[1] "Enige" -#: ../../include/conversation.php:1759 +#: ../../include/conversation.php:1780 msgctxt "noun" msgid "Disagree" msgid_plural "Disagrees" msgstr[0] "Uenig" msgstr[1] "Uenige" -#: ../../include/conversation.php:1762 +#: ../../include/conversation.php:1783 msgctxt "noun" msgid "Abstain" msgid_plural "Abstains" msgstr[0] "Avstår" msgstr[1] "Avstår" +#: ../../include/import.php:30 +msgid "" +"Cannot create a duplicate channel identifier on this system. Import failed." +msgstr "Kan ikke lage en kopi av kanal-identifikatoren på dette systemet. Import mislyktes." + +#: ../../include/import.php:97 +msgid "Channel clone failed. Import failed." +msgstr "Kanalkloning mislyktes. Import mislyktes." + #: ../../include/selectors.php:30 msgid "Frequently" msgstr "Ofte" @@ -8132,12 +7943,6 @@ msgstr "Intetkjønn" msgid "Non-specific" msgstr "Ubestemt" -#: ../../include/selectors.php:49 ../../include/selectors.php:66 -#: ../../include/selectors.php:104 ../../include/selectors.php:140 -#: ../../include/permissions.php:881 -msgid "Other" -msgstr "Annen" - #: ../../include/selectors.php:49 msgid "Undecided" msgstr "Ubestemt" @@ -8314,361 +8119,366 @@ msgstr "Bryr meg ikke" msgid "Ask me" msgstr "Spør meg" -#: ../../include/PermissionDescription.php:31 -#: ../../include/acl_selectors.php:232 -msgid "Visible to your default audience" -msgstr "Synlig for ditt standard publikum" - -#: ../../include/PermissionDescription.php:115 -#: ../../include/acl_selectors.php:268 -msgid "Only me" -msgstr "" - -#: ../../include/PermissionDescription.php:116 -msgid "Public" -msgstr "Offentlig" - -#: ../../include/PermissionDescription.php:117 -msgid "Anybody in the $Projectname network" -msgstr "" - -#: ../../include/PermissionDescription.php:118 +#: ../../include/bookmarks.php:35 #, php-format -msgid "Any account on %s" +msgid "%1$s's bookmarks" +msgstr "%1$s sine bokmerker" + +#: ../../include/security.php:109 +msgid "guest:" msgstr "" -#: ../../include/PermissionDescription.php:119 -msgid "Any of my connections" -msgstr "" - -#: ../../include/PermissionDescription.php:120 -msgid "Only connections I specifically allow" -msgstr "" - -#: ../../include/PermissionDescription.php:121 -msgid "Anybody authenticated (could include visitors from other networks)" -msgstr "" - -#: ../../include/PermissionDescription.php:122 -msgid "Any connections including those who haven't yet been approved" -msgstr "" - -#: ../../include/PermissionDescription.php:161 +#: ../../include/security.php:427 msgid "" -"This is your default setting for the audience of your normal stream, and " -"posts." -msgstr "" +"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 "Skjemaets sikkerhetspollett var ikke gyldig. Dette skjedde antakelig fordi skjemaet har vært åpnet for lenge (>3 timer) før det ble sendt inn." -#: ../../include/PermissionDescription.php:162 +#: ../../include/text.php:404 +msgid "prev" +msgstr "forrige" + +#: ../../include/text.php:406 +msgid "first" +msgstr "første" + +#: ../../include/text.php:435 +msgid "last" +msgstr "siste" + +#: ../../include/text.php:438 +msgid "next" +msgstr "neste" + +#: ../../include/text.php:448 +msgid "older" +msgstr "eldre" + +#: ../../include/text.php:450 +msgid "newer" +msgstr "nyere" + +#: ../../include/text.php:843 +msgid "No connections" +msgstr "Ingen forbindelser" + +#: ../../include/text.php:868 +#, php-format +msgid "View all %s connections" +msgstr "Vis alle %s forbindelser" + +#: ../../include/text.php:1013 ../../include/text.php:1018 +msgid "poke" +msgstr "prikk" + +#: ../../include/text.php:1019 +msgid "ping" +msgstr "varsle" + +#: ../../include/text.php:1019 +msgid "pinged" +msgstr "varslet" + +#: ../../include/text.php:1020 +msgid "prod" +msgstr "oppildne" + +#: ../../include/text.php:1020 +msgid "prodded" +msgstr "oppildnet" + +#: ../../include/text.php:1021 +msgid "slap" +msgstr "daske" + +#: ../../include/text.php:1021 +msgid "slapped" +msgstr "dasket" + +#: ../../include/text.php:1022 +msgid "finger" +msgstr "fingre" + +#: ../../include/text.php:1022 +msgid "fingered" +msgstr "fingret" + +#: ../../include/text.php:1023 +msgid "rebuff" +msgstr "tilbakevise" + +#: ../../include/text.php:1023 +msgid "rebuffed" +msgstr "tilbakeviste" + +#: ../../include/text.php:1035 +msgid "happy" +msgstr "glad" + +#: ../../include/text.php:1036 +msgid "sad" +msgstr "trist" + +#: ../../include/text.php:1037 +msgid "mellow" +msgstr "dempet" + +#: ../../include/text.php:1038 +msgid "tired" +msgstr "trøtt" + +#: ../../include/text.php:1039 +msgid "perky" +msgstr "oppkvikket" + +#: ../../include/text.php:1040 +msgid "angry" +msgstr "sint" + +#: ../../include/text.php:1041 +msgid "stupefied" +msgstr "lamslått" + +#: ../../include/text.php:1042 +msgid "puzzled" +msgstr "forundret" + +#: ../../include/text.php:1043 +msgid "interested" +msgstr "interessert" + +#: ../../include/text.php:1044 +msgid "bitter" +msgstr "bitter" + +#: ../../include/text.php:1045 +msgid "cheerful" +msgstr "munter" + +#: ../../include/text.php:1046 +msgid "alive" +msgstr "levende" + +#: ../../include/text.php:1047 +msgid "annoyed" +msgstr "irritert" + +#: ../../include/text.php:1048 +msgid "anxious" +msgstr "nervøs" + +#: ../../include/text.php:1049 +msgid "cranky" +msgstr "gretten" + +#: ../../include/text.php:1050 +msgid "disturbed" +msgstr "foruroliget" + +#: ../../include/text.php:1051 +msgid "frustrated" +msgstr "frustrert" + +#: ../../include/text.php:1052 +msgid "depressed" +msgstr "lei seg" + +#: ../../include/text.php:1053 +msgid "motivated" +msgstr "motivert" + +#: ../../include/text.php:1054 +msgid "relaxed" +msgstr "avslappet" + +#: ../../include/text.php:1055 +msgid "surprised" +msgstr "overrasket" + +#: ../../include/text.php:1237 ../../include/js_strings.php:70 +msgid "Monday" +msgstr "mandag" + +#: ../../include/text.php:1237 ../../include/js_strings.php:71 +msgid "Tuesday" +msgstr "tirsdag" + +#: ../../include/text.php:1237 ../../include/js_strings.php:72 +msgid "Wednesday" +msgstr "onsdag" + +#: ../../include/text.php:1237 ../../include/js_strings.php:73 +msgid "Thursday" +msgstr "torsdag" + +#: ../../include/text.php:1237 ../../include/js_strings.php:74 +msgid "Friday" +msgstr "fredag" + +#: ../../include/text.php:1237 ../../include/js_strings.php:75 +msgid "Saturday" +msgstr "lørdag" + +#: ../../include/text.php:1237 ../../include/js_strings.php:69 +msgid "Sunday" +msgstr "søndag" + +#: ../../include/text.php:1241 ../../include/js_strings.php:45 +msgid "January" +msgstr "januar" + +#: ../../include/text.php:1241 ../../include/js_strings.php:46 +msgid "February" +msgstr "februar" + +#: ../../include/text.php:1241 ../../include/js_strings.php:47 +msgid "March" +msgstr "mars" + +#: ../../include/text.php:1241 ../../include/js_strings.php:48 +msgid "April" +msgstr "april" + +#: ../../include/text.php:1241 +msgid "May" +msgstr "mai" + +#: ../../include/text.php:1241 ../../include/js_strings.php:50 +msgid "June" +msgstr "juni" + +#: ../../include/text.php:1241 ../../include/js_strings.php:51 +msgid "July" +msgstr "juli" + +#: ../../include/text.php:1241 ../../include/js_strings.php:52 +msgid "August" +msgstr "august" + +#: ../../include/text.php:1241 ../../include/js_strings.php:53 +msgid "September" +msgstr "september" + +#: ../../include/text.php:1241 ../../include/js_strings.php:54 +msgid "October" +msgstr "oktober" + +#: ../../include/text.php:1241 ../../include/js_strings.php:55 +msgid "November" +msgstr "november" + +#: ../../include/text.php:1241 ../../include/js_strings.php:56 +msgid "December" +msgstr "desember" + +#: ../../include/text.php:1318 ../../include/text.php:1322 +msgid "Unknown Attachment" +msgstr "Ukjent vedlegg" + +#: ../../include/text.php:1324 +msgid "unknown" +msgstr "ukjent" + +#: ../../include/text.php:1360 +msgid "remove category" +msgstr "fjern kategori" + +#: ../../include/text.php:1437 +msgid "remove from file" +msgstr "fjern fra fil" + +#: ../../include/text.php:1734 ../../include/text.php:1805 +msgid "default" +msgstr "standard" + +#: ../../include/text.php:1742 +msgid "Page layout" +msgstr "Sidens layout" + +#: ../../include/text.php:1742 +msgid "You can create your own with the layouts tool" +msgstr "Du kan lage din egen med layout-verktøyet" + +#: ../../include/text.php:1784 +msgid "Page content type" +msgstr "Sidens innholdstype" + +#: ../../include/text.php:1817 +msgid "Select an alternate language" +msgstr "Velg et annet språk" + +#: ../../include/text.php:1934 +msgid "activity" +msgstr "aktivitet" + +#: ../../include/text.php:2235 +msgid "Design Tools" +msgstr "Designverktøy" + +#: ../../include/text.php:2241 +msgid "Pages" +msgstr "Sider" + +#: ../../include/auth.php:147 +msgid "Logged out." +msgstr "Logget ut." + +#: ../../include/auth.php:274 +msgid "Failed authentication" +msgstr "Mislykket autentisering" + +#: ../../include/permissions.php:26 +msgid "Can view my normal stream and posts" +msgstr "Kan se min normale strøm og innlegg" + +#: ../../include/permissions.php:30 +msgid "Can view my webpages" +msgstr "Kan se mine websider" + +#: ../../include/permissions.php:34 +msgid "Can post on my channel page (\"wall\")" +msgstr "Kan lage innlegg på min kanalside (\"vegg\")" + +#: ../../include/permissions.php:37 +msgid "Can like/dislike stuff" +msgstr "Kan like/ikke like forskjellige greier" + +#: ../../include/permissions.php:37 +msgid "Profiles and things other than posts/comments" +msgstr "Profiler og andre ting enn innlegg/kommentarer" + +#: ../../include/permissions.php:39 +msgid "Can forward to all my channel contacts via post @mentions" +msgstr "Kan videresende til alle mine kanalkontakter via @navn i innlegg" + +#: ../../include/permissions.php:39 +msgid "Advanced - useful for creating group forum channels" +msgstr "Avansert - nyttig for å lage forumkanaler for grupper" + +#: ../../include/permissions.php:40 +msgid "Can chat with me (when available)" +msgstr "Kan chatte/sende lynmeldinger til meg (når tilgjengelig)" + +#: ../../include/permissions.php:41 +msgid "Can write to my file storage and photos" +msgstr "Kan skrive til mitt lager for filer og bilder" + +#: ../../include/permissions.php:42 +msgid "Can edit my webpages" +msgstr "Kan endre mine websider" + +#: ../../include/permissions.php:44 +msgid "Somewhat advanced - very useful in open communities" +msgstr "Litt avansert - svært nyttig i åpne fellesskap" + +#: ../../include/permissions.php:46 +msgid "Can administer my channel resources" +msgstr "Kan administrere mine kanalressurser" + +#: ../../include/permissions.php:46 msgid "" -"This is your default setting for who can view your default channel profile" -msgstr "" - -#: ../../include/PermissionDescription.php:163 -msgid "This is your default setting for who can view your connections" -msgstr "" - -#: ../../include/PermissionDescription.php:164 -msgid "" -"This is your default setting for who can view your file storage and photos" -msgstr "" - -#: ../../include/PermissionDescription.php:165 -msgid "This is your default setting for the audience of your webpages" -msgstr "" - -#: ../../include/account.php:28 -msgid "Not a valid email address" -msgstr "Ikke en gyldig e-postadresse" - -#: ../../include/account.php:30 -msgid "Your email domain is not among those allowed on this site" -msgstr "Ditt e-postdomene er ikke blant de som er tillatt på dette stedet" - -#: ../../include/account.php:36 -msgid "Your email address is already registered at this site." -msgstr "Din e-postadresse er allerede registrert på dette nettstedet." - -#: ../../include/account.php:68 -msgid "An invitation is required." -msgstr "En invitasjon er påkrevd." - -#: ../../include/account.php:72 -msgid "Invitation could not be verified." -msgstr "Invitasjon kunne ikke bekreftes." - -#: ../../include/account.php:122 -msgid "Please enter the required information." -msgstr "Vennligst skriv inn nødvendig informasjon." - -#: ../../include/account.php:189 -msgid "Failed to store account information." -msgstr "Mislyktes med å lagre kontoinformasjon." - -#: ../../include/account.php:249 -#, php-format -msgid "Registration confirmation for %s" -msgstr "Registreringsbekreftelse for %s" - -#: ../../include/account.php:315 -#, php-format -msgid "Registration request at %s" -msgstr "Registreringsforespørsel hos %s" - -#: ../../include/account.php:317 ../../include/account.php:344 -#: ../../include/account.php:404 ../../include/network.php:1871 -msgid "Administrator" -msgstr "Administrator" - -#: ../../include/account.php:339 -msgid "your registration password" -msgstr "ditt registreringspassord" - -#: ../../include/account.php:342 ../../include/account.php:402 -#, php-format -msgid "Registration details for %s" -msgstr "Registreringsdetaljer for %s" - -#: ../../include/account.php:414 -msgid "Account approved." -msgstr "Konto godkjent." - -#: ../../include/account.php:454 -#, php-format -msgid "Registration revoked for %s" -msgstr "Registrering trukket tilbake for %s" - -#: ../../include/account.php:506 -msgid "Account verified. Please login." -msgstr "Konto bekreftet. Vennligst logg inn." - -#: ../../include/account.php:723 ../../include/account.php:725 -msgid "Click here to upgrade." -msgstr "Klikk her for å oppgradere." - -#: ../../include/account.php:731 -msgid "This action exceeds the limits set by your subscription plan." -msgstr "Denne handlingen går utenfor grensene satt i din abonnementsplan." - -#: ../../include/account.php:736 -msgid "This action is not available under your subscription plan." -msgstr "Denne handlingen er ikke tilgjengelig i din abonnementsplan." - -#: ../../include/attach.php:247 ../../include/attach.php:333 -msgid "Item was not found." -msgstr "Elementet ble ikke funnet." - -#: ../../include/attach.php:497 -msgid "No source file." -msgstr "Ingen kildefil." - -#: ../../include/attach.php:519 -msgid "Cannot locate file to replace" -msgstr "Kan ikke finne filen som skal byttes ut" - -#: ../../include/attach.php:537 -msgid "Cannot locate file to revise/update" -msgstr "Finner ikke filen som skal revideres/oppdateres" - -#: ../../include/attach.php:672 -#, php-format -msgid "File exceeds size limit of %d" -msgstr "Filens størrelse overgår grensen på %d" - -#: ../../include/attach.php:686 -#, php-format -msgid "You have reached your limit of %1$.0f Mbytes attachment storage." -msgstr "Du har nådd din lagringsgrense for vedlegg på %1$.0f Mbytes." - -#: ../../include/attach.php:842 -msgid "File upload failed. Possible system limit or action terminated." -msgstr "Mislyktes med å laste opp filen. Mulig systemgrense eller handling avbrutt." - -#: ../../include/attach.php:855 -msgid "Stored file could not be verified. Upload failed." -msgstr "Lagret fil kunne ikke bekreftes. Opplasting mislyktes." - -#: ../../include/attach.php:909 ../../include/attach.php:925 -msgid "Path not available." -msgstr "Stien er ikke tilgjengelig." - -#: ../../include/attach.php:971 ../../include/attach.php:1123 -msgid "Empty pathname" -msgstr "Tomt sti-navn" - -#: ../../include/attach.php:997 -msgid "duplicate filename or path" -msgstr "duplikat av filnavn eller sti" - -#: ../../include/attach.php:1019 -msgid "Path not found." -msgstr "Stien ble ikke funnet." - -#: ../../include/attach.php:1077 -msgid "mkdir failed." -msgstr "mkdir mislyktes." - -#: ../../include/attach.php:1081 -msgid "database storage failed." -msgstr "databaselagring mislyktes." - -#: ../../include/attach.php:1129 -msgid "Empty path" -msgstr "Tom sti" - -#: ../../include/channel.php:32 -msgid "Unable to obtain identity information from database" -msgstr "Klarer ikke å få tak i identitetsinformasjon fra databasen" - -#: ../../include/channel.php:66 -msgid "Empty name" -msgstr "Mangler navn" - -#: ../../include/channel.php:69 -msgid "Name too long" -msgstr "Navnet er for langt" - -#: ../../include/channel.php:180 -msgid "No account identifier" -msgstr "Ingen kontoidentifikator" - -#: ../../include/channel.php:192 -msgid "Nickname is required." -msgstr "Kallenavn er påkrevd." - -#: ../../include/channel.php:206 -msgid "Reserved nickname. Please choose another." -msgstr "Reservert kallenavn. Vennligst velg et annet." - -#: ../../include/channel.php:211 -msgid "" -"Nickname has unsupported characters or is already being used on this site." -msgstr "Kallenavnet inneholder tegn som ikke er støttet eller det er allerede i bruk på dette nettstedet." - -#: ../../include/channel.php:287 -msgid "Unable to retrieve created identity" -msgstr "Klarer ikke å hente den lagede identiteten" - -#: ../../include/channel.php:345 -msgid "Default Profile" -msgstr "Standardprofil" - -#: ../../include/channel.php:791 -msgid "Requested channel is not available." -msgstr "Forespurt kanal er ikke tilgjengelig." - -#: ../../include/channel.php:938 -msgid "Create New Profile" -msgstr "Lag ny profil" - -#: ../../include/channel.php:958 -msgid "Visible to everybody" -msgstr "" - -#: ../../include/channel.php:1031 ../../include/channel.php:1142 -msgid "Gender:" -msgstr "Kjønn:" - -#: ../../include/channel.php:1032 ../../include/channel.php:1186 -msgid "Status:" -msgstr "Status:" - -#: ../../include/channel.php:1033 ../../include/channel.php:1197 -msgid "Homepage:" -msgstr "Hjemmeside:" - -#: ../../include/channel.php:1034 -msgid "Online Now" -msgstr "Online nå" - -#: ../../include/channel.php:1147 -msgid "Like this channel" -msgstr "Lik denne kanalen" - -#: ../../include/channel.php:1171 -msgid "j F, Y" -msgstr "j F, Y" - -#: ../../include/channel.php:1172 -msgid "j F" -msgstr "j F" - -#: ../../include/channel.php:1179 -msgid "Birthday:" -msgstr "Fødselsdag:" - -#: ../../include/channel.php:1192 -#, php-format -msgid "for %1$d %2$s" -msgstr "for %1$d %2$s" - -#: ../../include/channel.php:1195 -msgid "Sexual Preference:" -msgstr "Seksuell preferanse:" - -#: ../../include/channel.php:1201 -msgid "Tags:" -msgstr "Merkelapper:" - -#: ../../include/channel.php:1203 -msgid "Political Views:" -msgstr "Politiske synspunkter:" - -#: ../../include/channel.php:1205 -msgid "Religion:" -msgstr "Religion:" - -#: ../../include/channel.php:1209 -msgid "Hobbies/Interests:" -msgstr "Hobbyer/interesser:" - -#: ../../include/channel.php:1211 -msgid "Likes:" -msgstr "Liker:" - -#: ../../include/channel.php:1213 -msgid "Dislikes:" -msgstr "Misliker:" - -#: ../../include/channel.php:1215 -msgid "Contact information and Social Networks:" -msgstr "Kontaktinformasjon og sosiale nettverk:" - -#: ../../include/channel.php:1217 -msgid "My other channels:" -msgstr "Mine andre kanaler:" - -#: ../../include/channel.php:1219 -msgid "Musical interests:" -msgstr "Musikkinteresse:" - -#: ../../include/channel.php:1221 -msgid "Books, literature:" -msgstr "Bøker, litteratur:" - -#: ../../include/channel.php:1223 -msgid "Television:" -msgstr "TV:" - -#: ../../include/channel.php:1225 -msgid "Film/dance/culture/entertainment:" -msgstr "Film/dans/kultur/underholdning:" - -#: ../../include/channel.php:1227 -msgid "Love/Romance:" -msgstr "Kjærlighet/romantikk:" - -#: ../../include/channel.php:1229 -msgid "Work/employment:" -msgstr "Arbeid/sysselsetting:" - -#: ../../include/channel.php:1231 -msgid "School/education:" -msgstr "Skole/utdannelse:" - -#: ../../include/channel.php:1251 -msgid "Like this thing" -msgstr "Lik denne tingen" +"Extremely advanced. Leave this alone unless you know what you are doing" +msgstr "Ekstremt avansert. La dette være med mindre du vet hva du gjør" #: ../../include/features.php:48 msgid "General Features" @@ -8715,378 +8525,257 @@ msgid "Provide managed web pages on your channel" msgstr "Tilby kontrollerte web-sider på din kanal" #: ../../include/features.php:55 +msgid "Provide a wiki for your channel" +msgstr "" + +#: ../../include/features.php:56 msgid "Hide Rating" msgstr "Skjul vurdering" -#: ../../include/features.php:55 +#: ../../include/features.php:56 msgid "" "Hide the rating buttons on your channel and profile pages. Note: People can " "still rate you somewhere else." msgstr "Skjul vurderingsknappene for din kanal og profilsider. Merknad: folk kan fortsatt vurdere deg et annet sted." -#: ../../include/features.php:56 +#: ../../include/features.php:57 msgid "Private Notes" msgstr "Private merknader" -#: ../../include/features.php:56 +#: ../../include/features.php:57 msgid "Enables a tool to store notes and reminders (note: not encrypted)" msgstr "Skru på et verktøy for å lagre notater og påminnelser (merknad: ikke kryptert)" -#: ../../include/features.php:57 +#: ../../include/features.php:58 msgid "Navigation Channel Select" msgstr "Navigasjon kanalvalg" -#: ../../include/features.php:57 +#: ../../include/features.php:58 msgid "Change channels directly from within the navigation dropdown menu" msgstr "Endre kanaler direkte fra navigasjonsmenyen" -#: ../../include/features.php:58 +#: ../../include/features.php:59 msgid "Photo Location" msgstr "Bildeplassering" -#: ../../include/features.php:58 +#: ../../include/features.php:59 msgid "If location data is available on uploaded photos, link this to a map." msgstr "Hvis plasseringsdata er tilgjengelige i opplastede bilder, plasser dette på et kart." -#: ../../include/features.php:59 +#: ../../include/features.php:60 msgid "Access Controlled Chatrooms" -msgstr "" +msgstr "Tilgangsstyrte chatrom" -#: ../../include/features.php:59 +#: ../../include/features.php:60 msgid "Provide chatrooms and chat services with access control." -msgstr "" +msgstr "Tilby chatrom og chattjenester med tilgangskontroll." -#: ../../include/features.php:60 +#: ../../include/features.php:61 msgid "Smart Birthdays" -msgstr "" +msgstr "Smarte fødselsdager" -#: ../../include/features.php:60 +#: ../../include/features.php:61 msgid "" "Make birthday events timezone aware in case your friends are scattered " "across the planet." -msgstr "" +msgstr "Gjør fødselsdagshendelser oppmerksom på tidsoner i tilfelle dine venner er spredt rundt planeten." -#: ../../include/features.php:61 +#: ../../include/features.php:62 msgid "Expert Mode" msgstr "Ekspertmodus" -#: ../../include/features.php:61 +#: ../../include/features.php:62 msgid "Enable Expert Mode to provide advanced configuration options" msgstr "Skru på Ekspertmodus for å tilby avanserte konfigurasjonsvalg" -#: ../../include/features.php:62 +#: ../../include/features.php:63 msgid "Premium Channel" msgstr "Premiumkanal" -#: ../../include/features.php:62 +#: ../../include/features.php:63 msgid "" "Allows you to set restrictions and terms on those that connect with your " "channel" msgstr "Lar deg angi restriksjoner og betingelser for de som kobler seg til din kanal" -#: ../../include/features.php:67 +#: ../../include/features.php:68 msgid "Post Composition Features" msgstr "Funksjoner for å lage innlegg" -#: ../../include/features.php:70 +#: ../../include/features.php:71 msgid "Large Photos" msgstr "Store bilder" -#: ../../include/features.php:70 +#: ../../include/features.php:71 msgid "" "Include large (1024px) photo thumbnails in posts. If not enabled, use small " "(640px) photo thumbnails" msgstr "Inkluder store (1024px) småbilder i innlegg. Hvis denne ikke er påskrudd, bruk små (640px) småbilder." -#: ../../include/features.php:71 +#: ../../include/features.php:72 msgid "Automatically import channel content from other channels or feeds" msgstr "Automatisk import av kanalinnhold fra andre kanaler eller strømmer" -#: ../../include/features.php:72 +#: ../../include/features.php:73 msgid "Even More Encryption" msgstr "Enda mer kryptering" -#: ../../include/features.php:72 +#: ../../include/features.php:73 msgid "" "Allow optional encryption of content end-to-end with a shared secret key" msgstr "Tillat valgfri kryptering av innhold ende-til-ende via en delt hemmelig nøkkel" -#: ../../include/features.php:73 +#: ../../include/features.php:74 msgid "Enable Voting Tools" msgstr "Skru på verktøy for å stemme" -#: ../../include/features.php:73 +#: ../../include/features.php:74 msgid "Provide a class of post which others can vote on" msgstr "Tilby en type innlegg som andre kan stemme på" -#: ../../include/features.php:74 +#: ../../include/features.php:75 msgid "Delayed Posting" msgstr "Tidfest publisering" -#: ../../include/features.php:74 +#: ../../include/features.php:75 msgid "Allow posts to be published at a later date" msgstr "Tillat innlegg å bli publisert på et senere tidspunkt" -#: ../../include/features.php:75 +#: ../../include/features.php:76 msgid "Suppress Duplicate Posts/Comments" msgstr "Forhindre duplikat av innlegg/kommentarer" -#: ../../include/features.php:75 +#: ../../include/features.php:76 msgid "" "Prevent posts with identical content to be published with less than two " "minutes in between submissions." msgstr "Forhindre innlegg med identisk innhold fra å bli publisert hvis det er mindre enn to minutter mellom innsendingene." -#: ../../include/features.php:81 +#: ../../include/features.php:82 msgid "Network and Stream Filtering" msgstr "Nettverk- og strømfiltrering" -#: ../../include/features.php:82 +#: ../../include/features.php:83 msgid "Search by Date" msgstr "Søk etter dato" -#: ../../include/features.php:82 +#: ../../include/features.php:83 msgid "Ability to select posts by date ranges" msgstr "Mulighet for å velge innlegg etter datoområde" -#: ../../include/features.php:83 ../../include/group.php:311 +#: ../../include/features.php:84 ../../include/group.php:311 msgid "Privacy Groups" msgstr "Personverngrupper" -#: ../../include/features.php:83 +#: ../../include/features.php:84 msgid "Enable management and selection of privacy groups" msgstr "Skru på håndtering og valg av personverngrupper" -#: ../../include/features.php:84 +#: ../../include/features.php:85 ../../include/widgets.php:281 +msgid "Saved Searches" +msgstr "Lagrede søk" + +#: ../../include/features.php:85 msgid "Save search terms for re-use" msgstr "Lagre søkeuttrykk for senere bruk" -#: ../../include/features.php:85 +#: ../../include/features.php:86 msgid "Network Personal Tab" msgstr "Nettverk personlig fane" -#: ../../include/features.php:85 +#: ../../include/features.php:86 msgid "Enable tab to display only Network posts that you've interacted on" msgstr "Skru på fane for å bare vise Nettverksinnlegg som du har deltatt i" -#: ../../include/features.php:86 +#: ../../include/features.php:87 msgid "Network New Tab" msgstr "Nettverk Ny fane" -#: ../../include/features.php:86 +#: ../../include/features.php:87 msgid "Enable tab to display all new Network activity" msgstr "Skru på fane for å vise all ny nettverksaktivitet" -#: ../../include/features.php:87 +#: ../../include/features.php:88 msgid "Affinity Tool" msgstr "Nærhetsverktøy" -#: ../../include/features.php:87 +#: ../../include/features.php:88 msgid "Filter stream activity by depth of relationships" msgstr "Filtrer strømaktiviteten etter releasjonsdybde" -#: ../../include/features.php:88 +#: ../../include/features.php:89 msgid "Connection Filtering" msgstr "Filtrer forbindelser" -#: ../../include/features.php:88 +#: ../../include/features.php:89 msgid "Filter incoming posts from connections based on keywords/content" msgstr "Filtrer innkommende innlegg fra forbindelser basert på nøkkelord/innhold" -#: ../../include/features.php:89 +#: ../../include/features.php:90 msgid "Show channel suggestions" msgstr "Vis kanalforslag" -#: ../../include/features.php:94 +#: ../../include/features.php:95 msgid "Post/Comment Tools" msgstr "Innlegg-/Kommentar-verktøy" -#: ../../include/features.php:95 +#: ../../include/features.php:96 msgid "Community Tagging" msgstr "Felleskapsmerkelapper" -#: ../../include/features.php:95 +#: ../../include/features.php:96 msgid "Ability to tag existing posts" msgstr "Mulighet til å merke eksisterende meldinger" -#: ../../include/features.php:96 +#: ../../include/features.php:97 msgid "Post Categories" msgstr "Innleggskategorier" -#: ../../include/features.php:96 +#: ../../include/features.php:97 msgid "Add categories to your posts" msgstr "Legg kategorier til dine innlegg" -#: ../../include/features.php:97 +#: ../../include/features.php:98 msgid "Emoji Reactions" -msgstr "" - -#: ../../include/features.php:97 -msgid "Add emoji reaction ability to posts" -msgstr "" +msgstr "Emoji-reaksjoner" #: ../../include/features.php:98 +msgid "Add emoji reaction ability to posts" +msgstr "Legg til muligheten for emoji-reaksjoner på innlegg" + +#: ../../include/features.php:99 ../../include/widgets.php:310 +#: ../../include/contact_widgets.php:53 +msgid "Saved Folders" +msgstr "Lagrede mapper" + +#: ../../include/features.php:99 msgid "Ability to file posts under folders" msgstr "Mulighet til å sortere innlegg i mapper" -#: ../../include/features.php:99 +#: ../../include/features.php:100 msgid "Dislike Posts" msgstr "Mislik innlegg" -#: ../../include/features.php:99 +#: ../../include/features.php:100 msgid "Ability to dislike posts/comments" msgstr "Mulighet til å mislike innlegg/kommentarer" -#: ../../include/features.php:100 +#: ../../include/features.php:101 msgid "Star Posts" msgstr "Stjerneinnlegg" -#: ../../include/features.php:100 +#: ../../include/features.php:101 msgid "Ability to mark special posts with a star indicator" msgstr "Mulighet til å merke spesielle innlegg med en stjerne" -#: ../../include/features.php:101 +#: ../../include/features.php:102 msgid "Tag Cloud" msgstr "Merkelappsky" -#: ../../include/features.php:101 +#: ../../include/features.php:102 msgid "Provide a personal tag cloud on your channel page" msgstr "Tilby en personlig merkelappsky på din kanalside" -#: ../../include/oembed.php:324 -msgid "Embedded content" -msgstr "Innebygget innhold" - -#: ../../include/oembed.php:333 -msgid "Embedding disabled" -msgstr "Innbygging avskrudd" - -#: ../../include/acl_selectors.php:271 -msgid "Who can see this?" -msgstr "" - -#: ../../include/acl_selectors.php:272 -msgid "Custom selection" -msgstr "" - -#: ../../include/acl_selectors.php:273 -msgid "" -"Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit" -" the scope of \"Show\"." -msgstr "" - -#: ../../include/acl_selectors.php:274 -msgid "Show" -msgstr "Vis" - -#: ../../include/acl_selectors.php:275 -msgid "Don't show" -msgstr "Ikke vis" - -#: ../../include/acl_selectors.php:281 -msgid "Other networks and post services" -msgstr "Andre nettverk og innleggstjenester" - -#: ../../include/acl_selectors.php:311 -#, php-format -msgid "" -"Post permissions %s cannot be changed %s after a post is shared.
These" -" permissions set who is allowed to view the post." -msgstr "" - -#: ../../include/auth.php:105 -msgid "Logged out." -msgstr "Logget ut." - -#: ../../include/auth.php:212 -msgid "Failed authentication" -msgstr "Mislykket autentisering" - -#: ../../include/datetime.php:135 -msgid "Birthday" -msgstr "" - -#: ../../include/datetime.php:137 -msgid "Age: " -msgstr "Alder:" - -#: ../../include/datetime.php:139 -msgid "YYYY-MM-DD or MM-DD" -msgstr "YYYY-MM-DD eller MM-DD" - -#: ../../include/datetime.php:272 ../../boot.php:2470 -msgid "never" -msgstr "aldri" - -#: ../../include/datetime.php:278 -msgid "less than a second ago" -msgstr "for mindre enn ett sekund siden" - -#: ../../include/datetime.php:296 -#, php-format -msgctxt "e.g. 22 hours ago, 1 minute ago" -msgid "%1$d %2$s ago" -msgstr "%1$d %2$s siden" - -#: ../../include/datetime.php:307 -msgctxt "relative_date" -msgid "year" -msgid_plural "years" -msgstr[0] "år" -msgstr[1] "år" - -#: ../../include/datetime.php:310 -msgctxt "relative_date" -msgid "month" -msgid_plural "months" -msgstr[0] "måned" -msgstr[1] "måneder" - -#: ../../include/datetime.php:313 -msgctxt "relative_date" -msgid "week" -msgid_plural "weeks" -msgstr[0] "uke" -msgstr[1] "uker" - -#: ../../include/datetime.php:316 -msgctxt "relative_date" -msgid "day" -msgid_plural "days" -msgstr[0] "dag" -msgstr[1] "dager" - -#: ../../include/datetime.php:319 -msgctxt "relative_date" -msgid "hour" -msgid_plural "hours" -msgstr[0] "time" -msgstr[1] "timer" - -#: ../../include/datetime.php:322 -msgctxt "relative_date" -msgid "minute" -msgid_plural "minutes" -msgstr[0] "minutt" -msgstr[1] "minutter" - -#: ../../include/datetime.php:325 -msgctxt "relative_date" -msgid "second" -msgid_plural "seconds" -msgstr[0] "sekund" -msgstr[1] "sekunder" - -#: ../../include/datetime.php:562 -#, php-format -msgid "%1$s's birthday" -msgstr "%1$s sin fødselsdag" - -#: ../../include/datetime.php:563 -#, php-format -msgid "Happy Birthday %1$s" -msgstr "Gratulerer med dagen, %1$s !" - #: ../../include/group.php:26 msgid "" "A deleted group with this name was revived. Existing item permissions " @@ -9114,21 +8803,583 @@ msgstr "Legg til personverngruppe" msgid "Channels not in any privacy group" msgstr "Kanaler uten personverngruppe" +#: ../../include/group.php:316 ../../include/widgets.php:282 +msgid "add" +msgstr "legg til" + +#: ../../include/event.php:22 ../../include/event.php:69 +#: ../../include/bb2diaspora.php:485 +msgid "l F d, Y \\@ g:i A" +msgstr "l F d, Y \\@ g:i A" + +#: ../../include/event.php:30 ../../include/event.php:73 +#: ../../include/bb2diaspora.php:491 +msgid "Starts:" +msgstr "Starter:" + +#: ../../include/event.php:40 ../../include/event.php:77 +#: ../../include/bb2diaspora.php:499 +msgid "Finishes:" +msgstr "Slutter:" + +#: ../../include/event.php:814 +msgid "This event has been added to your calendar." +msgstr "Denne hendelsen er lagt til i din kalender." + +#: ../../include/event.php:1014 +msgid "Not specified" +msgstr "Ikke spesifisert" + +#: ../../include/event.php:1015 +msgid "Needs Action" +msgstr "Trenger handling" + +#: ../../include/event.php:1016 +msgid "Completed" +msgstr "Ferdig" + +#: ../../include/event.php:1017 +msgid "In Process" +msgstr "Igang" + +#: ../../include/event.php:1018 +msgid "Cancelled" +msgstr "Avbrutt" + +#: ../../include/account.php:28 +msgid "Not a valid email address" +msgstr "Ikke en gyldig e-postadresse" + +#: ../../include/account.php:30 +msgid "Your email domain is not among those allowed on this site" +msgstr "Ditt e-postdomene er ikke blant de som er tillatt på dette stedet" + +#: ../../include/account.php:36 +msgid "Your email address is already registered at this site." +msgstr "Din e-postadresse er allerede registrert på dette nettstedet." + +#: ../../include/account.php:68 +msgid "An invitation is required." +msgstr "En invitasjon er påkrevd." + +#: ../../include/account.php:72 +msgid "Invitation could not be verified." +msgstr "Invitasjon kunne ikke bekreftes." + +#: ../../include/account.php:122 +msgid "Please enter the required information." +msgstr "Vennligst skriv inn nødvendig informasjon." + +#: ../../include/account.php:189 +msgid "Failed to store account information." +msgstr "Mislyktes med å lagre kontoinformasjon." + +#: ../../include/account.php:249 +#, php-format +msgid "Registration confirmation for %s" +msgstr "Registreringsbekreftelse for %s" + +#: ../../include/account.php:315 +#, php-format +msgid "Registration request at %s" +msgstr "Registreringsforespørsel hos %s" + +#: ../../include/account.php:339 +msgid "your registration password" +msgstr "ditt registreringspassord" + +#: ../../include/account.php:342 ../../include/account.php:402 +#, php-format +msgid "Registration details for %s" +msgstr "Registreringsdetaljer for %s" + +#: ../../include/account.php:414 +msgid "Account approved." +msgstr "Konto godkjent." + +#: ../../include/account.php:454 +#, php-format +msgid "Registration revoked for %s" +msgstr "Registrering trukket tilbake for %s" + +#: ../../include/account.php:739 ../../include/account.php:741 +msgid "Click here to upgrade." +msgstr "Klikk her for å oppgradere." + +#: ../../include/account.php:747 +msgid "This action exceeds the limits set by your subscription plan." +msgstr "Denne handlingen går utenfor grensene satt i din abonnementsplan." + +#: ../../include/account.php:752 +msgid "This action is not available under your subscription plan." +msgstr "Denne handlingen er ikke tilgjengelig i din abonnementsplan." + +#: ../../include/follow.php:27 +msgid "Channel is blocked on this site." +msgstr "Kanalen er blokkert på dette nettstedet." + +#: ../../include/follow.php:32 +msgid "Channel location missing." +msgstr "Kanalplassering mangler." + +#: ../../include/follow.php:80 +msgid "Response from remote channel was incomplete." +msgstr "Svaret fra den andre kanalen var ikke komplett." + +#: ../../include/follow.php:97 +msgid "Channel was deleted and no longer exists." +msgstr "Kanalen er slettet og finnes ikke lenger." + +#: ../../include/follow.php:147 ../../include/follow.php:183 +msgid "Protocol disabled." +msgstr "Protokollen er avskrudd." + +#: ../../include/follow.php:171 +msgid "Channel discovery failed." +msgstr "Kanaloppdagelse mislyktes." + +#: ../../include/follow.php:210 +msgid "Cannot connect to yourself." +msgstr "Kan ikke lage forbindelse med deg selv." + +#: ../../include/attach.php:247 ../../include/attach.php:333 +msgid "Item was not found." +msgstr "Elementet ble ikke funnet." + +#: ../../include/attach.php:499 +msgid "No source file." +msgstr "Ingen kildefil." + +#: ../../include/attach.php:521 +msgid "Cannot locate file to replace" +msgstr "Kan ikke finne filen som skal byttes ut" + +#: ../../include/attach.php:539 +msgid "Cannot locate file to revise/update" +msgstr "Finner ikke filen som skal revideres/oppdateres" + +#: ../../include/attach.php:674 +#, php-format +msgid "File exceeds size limit of %d" +msgstr "Filens størrelse overgår grensen på %d" + +#: ../../include/attach.php:688 +#, php-format +msgid "You have reached your limit of %1$.0f Mbytes attachment storage." +msgstr "Du har nådd din lagringsgrense for vedlegg på %1$.0f Mbytes." + +#: ../../include/attach.php:846 +msgid "File upload failed. Possible system limit or action terminated." +msgstr "Mislyktes med å laste opp filen. Mulig systemgrense eller handling avbrutt." + +#: ../../include/attach.php:859 +msgid "Stored file could not be verified. Upload failed." +msgstr "Lagret fil kunne ikke bekreftes. Opplasting mislyktes." + +#: ../../include/attach.php:915 ../../include/attach.php:931 +msgid "Path not available." +msgstr "Stien er ikke tilgjengelig." + +#: ../../include/attach.php:977 ../../include/attach.php:1129 +msgid "Empty pathname" +msgstr "Tomt sti-navn" + +#: ../../include/attach.php:1003 +msgid "duplicate filename or path" +msgstr "duplikat av filnavn eller sti" + +#: ../../include/attach.php:1025 +msgid "Path not found." +msgstr "Stien ble ikke funnet." + +#: ../../include/attach.php:1083 +msgid "mkdir failed." +msgstr "mkdir mislyktes." + +#: ../../include/attach.php:1087 +msgid "database storage failed." +msgstr "databaselagring mislyktes." + +#: ../../include/attach.php:1135 +msgid "Empty path" +msgstr "Tom sti" + +#: ../../include/bbcode.php:123 ../../include/bbcode.php:878 +#: ../../include/bbcode.php:881 ../../include/bbcode.php:886 +#: ../../include/bbcode.php:889 ../../include/bbcode.php:892 +#: ../../include/bbcode.php:895 ../../include/bbcode.php:900 +#: ../../include/bbcode.php:903 ../../include/bbcode.php:908 +#: ../../include/bbcode.php:911 ../../include/bbcode.php:914 +#: ../../include/bbcode.php:917 +msgid "Image/photo" +msgstr "Bilde/fotografi" + +#: ../../include/bbcode.php:162 ../../include/bbcode.php:928 +msgid "Encrypted content" +msgstr "Kryptert innhold" + +#: ../../include/bbcode.php:178 +#, php-format +msgid "Install %s element: " +msgstr "Installer %s element:" + +#: ../../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 "Dette innlegget inneholder det installerbare elementet %s, men du mangler tillatelse til å installere det på dette nettstedet." + +#: ../../include/bbcode.php:261 +#, php-format +msgid "%1$s wrote the following %2$s %3$s" +msgstr "%1$s skrev følgende %2$s %3$s" + +#: ../../include/bbcode.php:338 ../../include/bbcode.php:346 +msgid "Click to open/close" +msgstr "Klikk for å åpne/lukke" + +#: ../../include/bbcode.php:346 +msgid "spoiler" +msgstr "avsløring" + +#: ../../include/bbcode.php:619 +msgid "Different viewers will see this text differently" +msgstr "Denne teksten vil se forskjellig ut for ulike besøkende" + +#: ../../include/bbcode.php:866 +msgid "$1 wrote:" +msgstr "$1 skrev:" + +#: ../../include/items.php:897 ../../include/items.php:942 +msgid "(Unknown)" +msgstr "(Ukjent)" + +#: ../../include/items.php:1141 +msgid "Visible to anybody on the internet." +msgstr "Synlig for enhver på Internett." + +#: ../../include/items.php:1143 +msgid "Visible to you only." +msgstr "Synlig bare for deg." + +#: ../../include/items.php:1145 +msgid "Visible to anybody in this network." +msgstr "Synlig for enhver i dette nettverket." + +#: ../../include/items.php:1147 +msgid "Visible to anybody authenticated." +msgstr "Synlig for enhver som er autentisert." + +#: ../../include/items.php:1149 +#, php-format +msgid "Visible to anybody on %s." +msgstr "Synlig for alle på %s." + +#: ../../include/items.php:1151 +msgid "Visible to all connections." +msgstr "Synlig for alle forbindelser." + +#: ../../include/items.php:1153 +msgid "Visible to approved connections." +msgstr "Synlig for godkjente forbindelser." + +#: ../../include/items.php:1155 +msgid "Visible to specific connections." +msgstr "Synlig for spesifikke forbindelser." + +#: ../../include/items.php:3918 +msgid "Privacy group is empty." +msgstr "Personverngruppen er tom." + +#: ../../include/items.php:3925 +#, php-format +msgid "Privacy group: %s" +msgstr "Personverngruppe: %s" + +#: ../../include/items.php:3937 +msgid "Connection not found." +msgstr "Forbindelsen ble ikke funnet." + +#: ../../include/items.php:4290 +msgid "profile photo" +msgstr "profilbilde" + +#: ../../include/oembed.php:336 +msgid "Embedded content" +msgstr "Innebygget innhold" + +#: ../../include/oembed.php:345 +msgid "Embedding disabled" +msgstr "Innbygging avskrudd" + +#: ../../include/widgets.php:103 +msgid "System" +msgstr "System" + +#: ../../include/widgets.php:106 +msgid "New App" +msgstr "Ny app" + +#: ../../include/widgets.php:154 +msgid "Suggestions" +msgstr "Forslag" + +#: ../../include/widgets.php:155 +msgid "See more..." +msgstr "Se mer..." + +#: ../../include/widgets.php:175 +#, php-format +msgid "You have %1$.0f of %2$.0f allowed connections." +msgstr "Du har %1$.0f av %2$.0f tillate forbindelser." + +#: ../../include/widgets.php:181 +msgid "Add New Connection" +msgstr "Legg til ny forbindelse" + +#: ../../include/widgets.php:182 +msgid "Enter channel address" +msgstr "Skriv kanaladressen" + +#: ../../include/widgets.php:183 +msgid "Examples: bob@example.com, https://example.com/barbara" +msgstr "Eksempel: ola@eksempel.no, https://eksempel.no/kari" + +#: ../../include/widgets.php:199 +msgid "Notes" +msgstr "Merknader" + +#: ../../include/widgets.php:273 +msgid "Remove term" +msgstr "Fjern begrep" + +#: ../../include/widgets.php:313 ../../include/widgets.php:432 +#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:94 +msgid "Everything" +msgstr "Alt" + +#: ../../include/widgets.php:354 +msgid "Archives" +msgstr "Arkiv" + +#: ../../include/widgets.php:516 +msgid "Refresh" +msgstr "Forny" + +#: ../../include/widgets.php:556 +msgid "Account settings" +msgstr "Kontoinnstillinger" + +#: ../../include/widgets.php:562 +msgid "Channel settings" +msgstr "Kanalinnstillinger" + +#: ../../include/widgets.php:571 +msgid "Additional features" +msgstr "Tilleggsfunksjoner" + +#: ../../include/widgets.php:578 +msgid "Feature/Addon settings" +msgstr "Funksjons-/Tilleggsinnstillinger" + +#: ../../include/widgets.php:584 +msgid "Display settings" +msgstr "Visningsinnstillinger" + +#: ../../include/widgets.php:591 +msgid "Manage locations" +msgstr "Håndter plasseringer" + +#: ../../include/widgets.php:600 +msgid "Export channel" +msgstr "Eksporter kanal" + +#: ../../include/widgets.php:607 +msgid "Connected apps" +msgstr "Tilkoblede app-er" + +#: ../../include/widgets.php:631 +msgid "Premium Channel Settings" +msgstr "Premiumkanal-innstillinger" + +#: ../../include/widgets.php:660 +msgid "Private Mail Menu" +msgstr "Meny for privat post" + +#: ../../include/widgets.php:662 +msgid "Combined View" +msgstr "Kombinert visning" + +#: ../../include/widgets.php:694 ../../include/widgets.php:706 +msgid "Conversations" +msgstr "Samtaler" + +#: ../../include/widgets.php:698 +msgid "Received Messages" +msgstr "Mottatte meldinger" + +#: ../../include/widgets.php:702 +msgid "Sent Messages" +msgstr "Sendte meldinger" + +#: ../../include/widgets.php:716 +msgid "No messages." +msgstr "Ingen meldinger." + +#: ../../include/widgets.php:734 +msgid "Delete conversation" +msgstr "Slett samtale" + +#: ../../include/widgets.php:760 +msgid "Events Tools" +msgstr "Kalenderverktøy" + +#: ../../include/widgets.php:761 +msgid "Export Calendar" +msgstr "Eksporter kalender" + +#: ../../include/widgets.php:762 +msgid "Import Calendar" +msgstr "Importer kalender" + +#: ../../include/widgets.php:840 +msgid "Overview" +msgstr "Overblikk" + +#: ../../include/widgets.php:847 +msgid "Chat Members" +msgstr "Chatmedlemmer" + +#: ../../include/widgets.php:869 +msgid "Wiki List" +msgstr "" + +#: ../../include/widgets.php:907 +msgid "Wiki Pages" +msgstr "" + +#: ../../include/widgets.php:942 +msgid "Bookmarked Chatrooms" +msgstr "Bokmerkede chatrom" + +#: ../../include/widgets.php:965 +msgid "Suggested Chatrooms" +msgstr "Foreslåtte chatrom" + +#: ../../include/widgets.php:1111 ../../include/widgets.php:1223 +msgid "photo/image" +msgstr "foto/bilde" + +#: ../../include/widgets.php:1166 +msgid "Click to show more" +msgstr "Klikk for å vise mer" + +#: ../../include/widgets.php:1317 +msgid "Rating Tools" +msgstr "Vurderingsverktøy" + +#: ../../include/widgets.php:1321 ../../include/widgets.php:1323 +msgid "Rate Me" +msgstr "Vurder meg" + +#: ../../include/widgets.php:1326 +msgid "View Ratings" +msgstr "Vis vurderinger" + +#: ../../include/widgets.php:1410 +msgid "Forums" +msgstr "Forum" + +#: ../../include/widgets.php:1439 +msgid "Tasks" +msgstr "Oppgaver" + +#: ../../include/widgets.php:1448 +msgid "Documentation" +msgstr "Dokumentasjon" + +#: ../../include/widgets.php:1450 +msgid "Project/Site Information" +msgstr "Prosjekt-/Nettstedsinformasjon" + +#: ../../include/widgets.php:1451 +msgid "For Members" +msgstr "For medlemmer" + +#: ../../include/widgets.php:1452 +msgid "For Administrators" +msgstr "For administratorer" + +#: ../../include/widgets.php:1453 +msgid "For Developers" +msgstr "For utviklere" + +#: ../../include/widgets.php:1477 ../../include/widgets.php:1515 +msgid "Member registrations waiting for confirmation" +msgstr "Medlemsregistreringer venter på bekreftelse" + +#: ../../include/widgets.php:1483 +msgid "Inspect queue" +msgstr "Inspiser kø" + +#: ../../include/widgets.php:1485 +msgid "DB updates" +msgstr "Databaseoppdateringer" + +#: ../../include/widgets.php:1511 +msgid "Plugin Features" +msgstr "Tilleggsfunksjoner" + +#: ../../include/activities.php:41 +msgid " and " +msgstr "og" + +#: ../../include/activities.php:49 +msgid "public profile" +msgstr "offentlig profil" + +#: ../../include/activities.php:58 +#, php-format +msgid "%1$s changed %2$s to “%3$s”" +msgstr "%1$s endret %2$s til “%3$s”" + +#: ../../include/activities.php:59 +#, php-format +msgid "Visit %1$s's %2$s" +msgstr "Besøk %1$s sitt %2$s" + +#: ../../include/activities.php:62 +#, php-format +msgid "%1$s has an updated %2$s, changing %3$s." +msgstr "%1$s har oppdatert %2$s, endret %3$s." + +#: ../../include/bb2diaspora.php:398 +msgid "Attachments:" +msgstr "Vedlegg:" + +#: ../../include/bb2diaspora.php:487 +msgid "$Projectname event notification:" +msgstr "$Projectname hendelsesvarsling:" + #: ../../include/js_strings.php:5 msgid "Delete this item?" msgstr "Slett dette elementet?" #: ../../include/js_strings.php:8 -msgid "[-] show less" -msgstr "[-] Vis mindre" +#, php-format +msgid "%s show less" +msgstr "" #: ../../include/js_strings.php:9 -msgid "[+] expand" -msgstr "[+] Utvid" +#, php-format +msgid "%s expand" +msgstr "" #: ../../include/js_strings.php:10 -msgid "[-] collapse" -msgstr "[-] Lukk" +#, php-format +msgid "%s collapse" +msgstr "" #: ../../include/js_strings.php:11 msgid "Password too short" @@ -9358,278 +9609,223 @@ msgctxt "calendar" msgid "All day" msgstr "Hele dagen" -#: ../../include/network.php:657 -msgid "view full size" -msgstr "vis full størrelse" - -#: ../../include/network.php:1885 -msgid "No Subject" -msgstr "Uten emne" - -#: ../../include/network.php:2146 ../../include/network.php:2147 -msgid "Friendica" -msgstr "Friendica" - -#: ../../include/network.php:2148 -msgid "OStatus" -msgstr "OStatus" - -#: ../../include/network.php:2149 -msgid "GNU-Social" -msgstr "" - -#: ../../include/network.php:2150 -msgid "RSS/Atom" -msgstr "RSS/Atom" - -#: ../../include/network.php:2152 -msgid "Diaspora" -msgstr "Diaspora" - -#: ../../include/network.php:2153 -msgid "Facebook" -msgstr "Facebook" - -#: ../../include/network.php:2154 -msgid "Zot" -msgstr "Zot" - -#: ../../include/network.php:2155 -msgid "LinkedIn" -msgstr "LinkedIn" - -#: ../../include/network.php:2156 -msgid "XMPP/IM" -msgstr "XMPP/IM" - -#: ../../include/network.php:2157 -msgid "MySpace" -msgstr "MySpace" - -#: ../../include/photos.php:110 +#: ../../include/contact_widgets.php:11 #, php-format -msgid "Image exceeds website size limit of %lu bytes" -msgstr "Bilde overstiger nettstedets størrelsesbegrensning på %lu bytes" +msgid "%d invitation available" +msgid_plural "%d invitations available" +msgstr[0] "%d invitasjon tilgjengelig" +msgstr[1] "%d invitasjoner tilgjengelig" -#: ../../include/photos.php:117 -msgid "Image file is empty." -msgstr "Bildefilen er tom." +#: ../../include/contact_widgets.php:19 +msgid "Find Channels" +msgstr "Finn kanaler" -#: ../../include/photos.php:255 -msgid "Photo storage failed." -msgstr "Bildelagring mislyktes." +#: ../../include/contact_widgets.php:20 +msgid "Enter name or interest" +msgstr "Skriv navn eller interesse" -#: ../../include/photos.php:295 -msgid "a new photo" -msgstr "et nytt bilde" +#: ../../include/contact_widgets.php:21 +msgid "Connect/Follow" +msgstr "Forbindelse/Følg" -#: ../../include/photos.php:299 +#: ../../include/contact_widgets.php:22 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "Eksempler: Ola Nordmann, fisking" + +#: ../../include/contact_widgets.php:26 +msgid "Random Profile" +msgstr "Tilfeldig profil" + +#: ../../include/contact_widgets.php:27 +msgid "Invite Friends" +msgstr "Inviter venner" + +#: ../../include/contact_widgets.php:29 +msgid "Advanced example: name=fred and country=iceland" +msgstr "Avansert eksempel: navn=fred og land=island" + +#: ../../include/contact_widgets.php:122 #, php-format -msgctxt "photo_upload" -msgid "%1$s posted %2$s to %3$s" -msgstr "%1$s la inn %2$s til %3$s" +msgid "%d connection in common" +msgid_plural "%d connections in common" +msgstr[0] "%d forbindelse felles" +msgstr[1] "%d forbindelser felles" -#: ../../include/photos.php:506 -msgid "Upload New Photos" -msgstr "Last opp nye bilder" +#: ../../include/contact_widgets.php:127 +msgid "show more" +msgstr "vis mer" -#: ../../include/zot.php:699 +#: ../../include/dir_fns.php:141 +msgid "Directory Options" +msgstr "Kataloginnstillinger" + +#: ../../include/dir_fns.php:143 +msgid "Safe Mode" +msgstr "Trygt modus" + +#: ../../include/dir_fns.php:144 +msgid "Public Forums Only" +msgstr "Bare offentlige forum" + +#: ../../include/dir_fns.php:145 +msgid "This Website Only" +msgstr "Kun dette nettstedet" + +#: ../../include/message.php:20 +msgid "No recipient provided." +msgstr "Ingen mottaker angitt." + +#: ../../include/message.php:25 +msgid "[no subject]" +msgstr "[ikke noe emne]" + +#: ../../include/message.php:45 +msgid "Unable to determine sender." +msgstr "Kan ikke avgjøre avsender." + +#: ../../include/message.php:222 +msgid "Stored post could not be verified." +msgstr "Lagret innlegg kunne ikke bekreftes." + +#: ../../include/acl_selectors.php:269 +msgid "Who can see this?" +msgstr "Hvem kan se dette?" + +#: ../../include/acl_selectors.php:270 +msgid "Custom selection" +msgstr "Tilpasset utvalg" + +#: ../../include/acl_selectors.php:271 +msgid "" +"Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit" +" the scope of \"Show\"." +msgstr "Velg \"Vis\" for å tillate visning. \"Ikke vis\" lar deg overstyre og avgrense omfanget av \"Vis\"." + +#: ../../include/acl_selectors.php:272 +msgid "Show" +msgstr "Vis" + +#: ../../include/acl_selectors.php:273 +msgid "Don't show" +msgstr "Ikke vis" + +#: ../../include/acl_selectors.php:279 +msgid "Other networks and post services" +msgstr "Andre nettverk og innleggstjenester" + +#: ../../include/acl_selectors.php:309 +#, php-format +msgid "" +"Post permissions %s cannot be changed %s after a post is shared.
These" +" permissions set who is allowed to view the post." +msgstr "Innleggstillatelsene %s kan ikke endres %s etter at et innlegg er delt.
Disse innstillingene angir hvem som har tillatelse til å se innlegget." + +#: ../../include/datetime.php:135 +msgid "Birthday" +msgstr "Fødselsdag" + +#: ../../include/datetime.php:137 +msgid "Age: " +msgstr "Alder:" + +#: ../../include/datetime.php:139 +msgid "YYYY-MM-DD or MM-DD" +msgstr "YYYY-MM-DD eller MM-DD" + +#: ../../include/datetime.php:272 ../../boot.php:2479 +msgid "never" +msgstr "aldri" + +#: ../../include/datetime.php:278 +msgid "less than a second ago" +msgstr "for mindre enn ett sekund siden" + +#: ../../include/datetime.php:296 +#, php-format +msgctxt "e.g. 22 hours ago, 1 minute ago" +msgid "%1$d %2$s ago" +msgstr "%1$d %2$s siden" + +#: ../../include/datetime.php:307 +msgctxt "relative_date" +msgid "year" +msgid_plural "years" +msgstr[0] "år" +msgstr[1] "år" + +#: ../../include/datetime.php:310 +msgctxt "relative_date" +msgid "month" +msgid_plural "months" +msgstr[0] "måned" +msgstr[1] "måneder" + +#: ../../include/datetime.php:313 +msgctxt "relative_date" +msgid "week" +msgid_plural "weeks" +msgstr[0] "uke" +msgstr[1] "uker" + +#: ../../include/datetime.php:316 +msgctxt "relative_date" +msgid "day" +msgid_plural "days" +msgstr[0] "dag" +msgstr[1] "dager" + +#: ../../include/datetime.php:319 +msgctxt "relative_date" +msgid "hour" +msgid_plural "hours" +msgstr[0] "time" +msgstr[1] "timer" + +#: ../../include/datetime.php:322 +msgctxt "relative_date" +msgid "minute" +msgid_plural "minutes" +msgstr[0] "minutt" +msgstr[1] "minutter" + +#: ../../include/datetime.php:325 +msgctxt "relative_date" +msgid "second" +msgid_plural "seconds" +msgstr[0] "sekund" +msgstr[1] "sekunder" + +#: ../../include/datetime.php:562 +#, php-format +msgid "%1$s's birthday" +msgstr "%1$s sin fødselsdag" + +#: ../../include/datetime.php:563 +#, php-format +msgid "Happy Birthday %1$s" +msgstr "Gratulerer med dagen, %1$s !" + +#: ../../include/api.php:1327 +msgid "Public Timeline" +msgstr "Offentlig tidslinje" + +#: ../../include/zot.php:697 msgid "Invalid data packet" msgstr "Ugyldig datapakke" -#: ../../include/zot.php:715 +#: ../../include/zot.php:713 msgid "Unable to verify channel signature" msgstr "Ikke i stand til å sjekke kanalsignaturen" -#: ../../include/zot.php:2363 +#: ../../include/zot.php:2326 #, php-format msgid "Unable to verify site signature for %s" msgstr "Ikke i stand til å bekrefte signaturen til %s" -#: ../../include/zot.php:3712 +#: ../../include/zot.php:3703 msgid "invalid target signature" msgstr "Målets signatur er ugyldig" -#: ../../include/page_widgets.php:6 -msgid "New Page" -msgstr "Ny side" - -#: ../../include/page_widgets.php:43 -msgid "Title" -msgstr "Tittel" - -#: ../../include/permissions.php:26 -msgid "Can view my normal stream and posts" -msgstr "Kan se min normale strøm og innlegg" - -#: ../../include/permissions.php:27 -msgid "Can view my default channel profile" -msgstr "Kan se min standard kanalprofil" - -#: ../../include/permissions.php:28 -msgid "Can view my connections" -msgstr "Kan se mine forbindelser" - -#: ../../include/permissions.php:29 -msgid "Can view my file storage and photos" -msgstr "Kan se mine filer og bilder" - -#: ../../include/permissions.php:30 -msgid "Can view my webpages" -msgstr "Kan se mine websider" - -#: ../../include/permissions.php:33 -msgid "Can send me their channel stream and posts" -msgstr "Kan sende meg deres kanalstrøm og innlegg" - -#: ../../include/permissions.php:34 -msgid "Can post on my channel page (\"wall\")" -msgstr "Kan lage innlegg på min kanalside (\"vegg\")" - -#: ../../include/permissions.php:35 -msgid "Can comment on or like my posts" -msgstr "Kan kommentere på eller like mine innlegg" - -#: ../../include/permissions.php:36 -msgid "Can send me private mail messages" -msgstr "Kan sende meg private meldinger" - -#: ../../include/permissions.php:37 -msgid "Can like/dislike stuff" -msgstr "Kan like/ikke like forskjellige greier" - -#: ../../include/permissions.php:37 -msgid "Profiles and things other than posts/comments" -msgstr "Profiler og andre ting enn innlegg/kommentarer" - -#: ../../include/permissions.php:39 -msgid "Can forward to all my channel contacts via post @mentions" -msgstr "Kan videresende til alle mine kanalkontakter via @navn i innlegg" - -#: ../../include/permissions.php:39 -msgid "Advanced - useful for creating group forum channels" -msgstr "Avansert - nyttig for å lage forumkanaler for grupper" - -#: ../../include/permissions.php:40 -msgid "Can chat with me (when available)" -msgstr "Kan chatte/sende lynmeldinger til meg (når tilgjengelig)" - -#: ../../include/permissions.php:41 -msgid "Can write to my file storage and photos" -msgstr "Kan skrive til mitt lager for filer og bilder" - -#: ../../include/permissions.php:42 -msgid "Can edit my webpages" -msgstr "Kan endre mine websider" - -#: ../../include/permissions.php:44 -msgid "Can source my public posts in derived channels" -msgstr "Kan bruke mine offentlige innlegg som kanalkilde i egne kanaler" - -#: ../../include/permissions.php:44 -msgid "Somewhat advanced - very useful in open communities" -msgstr "Litt avansert - svært nyttig i åpne fellesskap" - -#: ../../include/permissions.php:46 -msgid "Can administer my channel resources" -msgstr "Kan administrere mine kanalressurser" - -#: ../../include/permissions.php:46 -msgid "" -"Extremely advanced. Leave this alone unless you know what you are doing" -msgstr "Ekstremt avansert. La dette være med mindre du vet hva du gjør" - -#: ../../include/permissions.php:877 -msgid "Social Networking" -msgstr "Sosialt nettverk" - -#: ../../include/permissions.php:877 -msgid "Social - Mostly Public" -msgstr "Sosial - ganske offentlig" - -#: ../../include/permissions.php:877 -msgid "Social - Restricted" -msgstr "Sosial - begrenset" - -#: ../../include/permissions.php:877 -msgid "Social - Private" -msgstr "Sosial - privat" - -#: ../../include/permissions.php:878 -msgid "Community Forum" -msgstr "Forum for fellesskap" - -#: ../../include/permissions.php:878 -msgid "Forum - Mostly Public" -msgstr "Forum - ganske offentlig" - -#: ../../include/permissions.php:878 -msgid "Forum - Restricted" -msgstr "Forum - begrenset" - -#: ../../include/permissions.php:878 -msgid "Forum - Private" -msgstr "Forum - privat" - -#: ../../include/permissions.php:879 -msgid "Feed Republish" -msgstr "Republisering av strømmet innhold" - -#: ../../include/permissions.php:879 -msgid "Feed - Mostly Public" -msgstr "Strøm - ganske offentlig" - -#: ../../include/permissions.php:879 -msgid "Feed - Restricted" -msgstr "Strøm - begrenset" - -#: ../../include/permissions.php:880 -msgid "Special Purpose" -msgstr "Spesiell bruk" - -#: ../../include/permissions.php:880 -msgid "Special - Celebrity/Soapbox" -msgstr "Spesiell - kjendis/talerstol" - -#: ../../include/permissions.php:880 -msgid "Special - Group Repository" -msgstr "Spesiell - gruppelager" - -#: ../../include/permissions.php:881 -msgid "Custom/Expert Mode" -msgstr "Tilpasset/Ekspertmodus" - -#: ../../include/activities.php:41 -msgid " and " -msgstr "og" - -#: ../../include/activities.php:49 -msgid "public profile" -msgstr "offentlig profil" - -#: ../../include/activities.php:58 -#, php-format -msgid "%1$s changed %2$s to “%3$s”" -msgstr "%1$s endret %2$s til “%3$s”" - -#: ../../include/activities.php:59 -#, php-format -msgid "Visit %1$s's %2$s" -msgstr "Besøk %1$s sitt %2$s" - -#: ../../include/activities.php:62 -#, php-format -msgid "%1$s has an updated %2$s, changing %3$s." -msgstr "%1$s har oppdatert %2$s, endret %3$s." - -#: ../../include/bb2diaspora.php:398 -msgid "Attachments:" -msgstr "Vedlegg:" - -#: ../../include/bb2diaspora.php:487 -msgid "$Projectname event notification:" -msgstr "$Projectname hendelsesvarsling:" - #: ../../view/theme/redbasic/php/config.php:82 msgid "Focus (Hubzilla default)" msgstr "Focus (Hubzilla standardtema)" @@ -9766,62 +9962,66 @@ msgstr "Angi størrelsen for samtalens forfatterbilde" msgid "Set size of followup author photos" msgstr "Angi størrelsen på forfatterbilder ved oppfølging" -#: ../../boot.php:1162 +#: ../../boot.php:1163 #, php-format msgctxt "opensearch" msgid "Search %1$s (%2$s)" -msgstr "" +msgstr "Søk %1$s (%2$s)" -#: ../../boot.php:1162 +#: ../../boot.php:1163 msgctxt "opensearch" msgid "$Projectname" -msgstr "" +msgstr "$Projectname" -#: ../../boot.php:1480 +#: ../../boot.php:1481 #, php-format msgid "Update %s failed. See error logs." msgstr "Oppdatering %s mislyktes. Se feilloggen." -#: ../../boot.php:1483 +#: ../../boot.php:1484 #, php-format msgid "Update Error at %s" msgstr "Oppdateringsfeil ved %s" -#: ../../boot.php:1684 +#: ../../boot.php:1685 msgid "" "Create an account to access services and applications within the Hubzilla" msgstr "Lag en konto for å få tilgang til tjenester og programmer i Hubzilla" #: ../../boot.php:1706 +msgid "Login/Email" +msgstr "" + +#: ../../boot.php:1707 msgid "Password" msgstr "Passord" -#: ../../boot.php:1707 +#: ../../boot.php:1708 msgid "Remember me" msgstr "Husk meg" -#: ../../boot.php:1710 +#: ../../boot.php:1711 msgid "Forgot your password?" msgstr "Glemt passordet ditt?" -#: ../../boot.php:2276 +#: ../../boot.php:2277 msgid "toggle mobile" msgstr "Skru på mobil" -#: ../../boot.php:2425 +#: ../../boot.php:2432 msgid "Website SSL certificate is not valid. Please correct." msgstr "Nettstedets SSL-sertifikat er ikke gyldig. Vennligst fiks dette." -#: ../../boot.php:2428 +#: ../../boot.php:2435 #, php-format msgid "[hubzilla] Website SSL error for %s" msgstr "[hubzilla] SSL-feil ved nettsted hos %s" -#: ../../boot.php:2469 +#: ../../boot.php:2478 msgid "Cron/Scheduled tasks not running." msgstr "Cron/planlagte oppgaver kjører ikke." -#: ../../boot.php:2473 +#: ../../boot.php:2482 #, php-format msgid "[hubzilla] Cron tasks not running on %s" msgstr "[hubzilla] Cron-oppgaver kjører ikke på %s" diff --git a/view/nb-no/hstrings.php b/view/nb-no/hstrings.php index e03ba321d..53aae8c0e 100644 --- a/view/nb-no/hstrings.php +++ b/view/nb-no/hstrings.php @@ -4,7 +4,39 @@ if(! function_exists("string_plural_select_nb_no")) { function string_plural_select_nb_no($n){ return ($n != 1);; }} -; +App::$rtl = 0; +App::$strings["Social Networking"] = "Sosialt nettverk"; +App::$strings["Social - Mostly Public"] = "Sosial - ganske offentlig"; +App::$strings["Social - Restricted"] = "Sosial - begrenset"; +App::$strings["Social - Private"] = "Sosial - privat"; +App::$strings["Community Forum"] = "Forum for fellesskap"; +App::$strings["Forum - Mostly Public"] = "Forum - ganske offentlig"; +App::$strings["Forum - Restricted"] = "Forum - begrenset"; +App::$strings["Forum - Private"] = "Forum - privat"; +App::$strings["Feed Republish"] = "Republisering av strømmet innhold"; +App::$strings["Feed - Mostly Public"] = "Strøm - ganske offentlig"; +App::$strings["Feed - Restricted"] = "Strøm - begrenset"; +App::$strings["Special Purpose"] = "Spesiell bruk"; +App::$strings["Special - Celebrity/Soapbox"] = "Spesiell - kjendis/talerstol"; +App::$strings["Special - Group Repository"] = "Spesiell - gruppelager"; +App::$strings["Other"] = "Annen"; +App::$strings["Custom/Expert Mode"] = "Tilpasset/Ekspertmodus"; +App::$strings["Can view my channel stream and posts"] = ""; +App::$strings["Can send me their channel stream and posts"] = "Kan sende meg deres kanalstrøm og innlegg"; +App::$strings["Can view my default channel profile"] = "Kan se min standard kanalprofil"; +App::$strings["Can view my connections"] = "Kan se mine forbindelser"; +App::$strings["Can view my file storage and photos"] = "Kan se mine filer og bilder"; +App::$strings["Can upload/modify my file storage and photos"] = ""; +App::$strings["Can view my channel webpages"] = ""; +App::$strings["Can create/edit my channel webpages"] = ""; +App::$strings["Can post on my channel (wall) page"] = ""; +App::$strings["Can comment on or like my posts"] = "Kan kommentere på eller like mine innlegg"; +App::$strings["Can send me private mail messages"] = "Kan sende meg private meldinger"; +App::$strings["Can like/dislike profiles and profile things"] = ""; +App::$strings["Can forward to all my channel connections via @+ mentions in posts"] = ""; +App::$strings["Can chat with me"] = ""; +App::$strings["Can source my public posts in derived channels"] = "Kan bruke mine offentlige innlegg som kanalkilde i egne kanaler"; +App::$strings["Can administer my channel"] = ""; App::$strings["parent"] = "opp et nivå"; App::$strings["Collection"] = "Samling"; App::$strings["Principal"] = "Viktigste"; @@ -37,63 +69,8 @@ App::$strings["Remote authentication blocked. You are logged into this site loca App::$strings["Welcome %s. Remote authentication successful."] = "Velkommen %s. Ekstern autentisering er vellykket."; App::$strings["Requested profile is not available."] = "Forespurt profil er ikke tilgjengelig."; App::$strings["Some blurb about what to do when you're new here"] = "En standardtekst om hva du bør gjøre som ny her"; -App::$strings["Block Name"] = "Byggeklossens navn"; -App::$strings["Blocks"] = "Byggeklosser"; -App::$strings["Block Title"] = "Byggeklossens tittel"; -App::$strings["Created"] = "Laget"; -App::$strings["Edited"] = "Endret"; -App::$strings["Share"] = "Del"; -App::$strings["View"] = "Vis"; -App::$strings["Channel not found."] = "Kanalen ble ikke funnet."; -App::$strings["Permissions denied."] = "Tillatelse avvist."; -App::$strings["l, F j"] = "l, F j"; -App::$strings["Link to Source"] = "Lenke til kilde"; -App::$strings["Edit Event"] = "Endre hendelse"; -App::$strings["Create Event"] = "Lag hendelse"; -App::$strings["Previous"] = "Forrige"; -App::$strings["Next"] = "Neste"; -App::$strings["Export"] = "Eksport"; -App::$strings["Import"] = "Importer"; -App::$strings["Submit"] = "Send"; -App::$strings["Today"] = "Idag"; -App::$strings["You must be logged in to see this page."] = "Du må være innloegget for å se denne siden."; -App::$strings["Posts and comments"] = ""; -App::$strings["Only posts"] = ""; -App::$strings["Insufficient permissions. Request redirected to profile page."] = "Utilstrekkelig tillatelse. Forespørsel omdirigert til profilsiden."; -App::$strings["Room not found"] = "Rommet ble ikke funnet"; -App::$strings["Leave Room"] = "Forlat rom"; -App::$strings["Delete Room"] = ""; -App::$strings["I am away right now"] = "Jeg er borte akkurat nå"; -App::$strings["I am online"] = "Jeg er online"; -App::$strings["Bookmark this room"] = "Bokmerk dette rommet"; -App::$strings["Please enter a link URL:"] = "Vennligst skriv inn en lenke URL:"; -App::$strings["Encrypt text"] = "Krypter tekst"; -App::$strings["Insert web link"] = "Sett inn web-lenke"; -App::$strings["Feature disabled."] = ""; -App::$strings["New Chatroom"] = "Nytt chatrom"; -App::$strings["Chatroom name"] = ""; -App::$strings["Expiration of chats (minutes)"] = "Chat utgår (antall minutter)"; -App::$strings["Permissions"] = "Tillatelser"; -App::$strings["%1\$s's Chatrooms"] = "%1\$s sine chatrom"; -App::$strings["No chatrooms available"] = ""; -App::$strings["Create New"] = ""; -App::$strings["Expiration"] = ""; -App::$strings["min"] = ""; App::$strings["Away"] = "Borte"; App::$strings["Online"] = "Online"; -App::$strings["Invalid item."] = "Ugyldig element."; -App::$strings["Bookmark added"] = "Bokmerke lagt til"; -App::$strings["My Bookmarks"] = "Mine bokmerker"; -App::$strings["My Connections Bookmarks"] = "Mine forbindelsers bokmerker"; -App::$strings["Continue"] = "Fortsett"; -App::$strings["Premium Channel Setup"] = "Premiumkanal-oppsett"; -App::$strings["Enable premium channel connection restrictions"] = "Slå på restriksjoner for forbindelse med premiumkanal"; -App::$strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = "Vennligst skriv dine restriksjoner og betingelser, slik som PayPal-kvittering, retningslinjer for bruk, og så videre."; -App::$strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = "Denne kanalen kan kreve ytterligere steg og bekreftelse av følgende betingelser før tilkobling:"; -App::$strings["Potential connections will then see the following text before proceeding:"] = "Potensielle forbindelser vil da se følgende tekst før de går videre:"; -App::$strings["By continuing, I certify that I have complied with any instructions provided on this page."] = "Ved å fortsette bekrefter jeg at jeg har oppfylt alle instruksjoner gitt på denne siden."; -App::$strings["(No specific instructions have been provided by the channel owner.)"] = "(Ingen spesifikke instruksjoner er gitt av kanaleieren.)"; -App::$strings["Restricted or Premium Channel"] = "Begrenset kanal eller premiumkanal"; App::$strings["Could not access contact record."] = "Fikk ikke tilgang til kontaktinformasjonen."; App::$strings["Could not locate selected profile."] = "Fant ikke valgt profil."; App::$strings["Connection updated."] = "Forbindelsen er oppdatert."; @@ -146,7 +123,7 @@ App::$strings["Connection requests will be approved without your interaction"] = App::$strings["This connection's primary address is"] = "Denne forbindelsens primære adresse er"; App::$strings["Available locations:"] = "Tilgjengelige plasseringer:"; App::$strings["The permissions indicated on this page will be applied to all new connections."] = "Tillatelsene angitt på denne siden gjøres gjeldende for alle nye forbindelser."; -App::$strings["Connection Tools"] = ""; +App::$strings["Connection Tools"] = "Forbindelsesverktøy"; App::$strings["Slide to adjust your degree of friendship"] = "Flytt for å justere din grad av vennskap"; App::$strings["Rating"] = "Vurdering"; App::$strings["Slide to adjust your rating"] = "Flytt for å justere din vurdering"; @@ -158,6 +135,7 @@ App::$strings["Do not import posts with this text"] = "Ikke importer innlegg med App::$strings["This information is public!"] = "Denne informasjonen er offentlig!"; App::$strings["Connection Pending Approval"] = "Forbindelse venter på godkjenning"; App::$strings["inherited"] = "arvet"; +App::$strings["Submit"] = "Send"; App::$strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Vennligst velg profilen du ønsker å vise %s når profilen din ses på en sikret måte. "; App::$strings["Their Settings"] = "Deres innstillinger"; App::$strings["My Settings"] = "Mine innstillinger"; @@ -166,6 +144,30 @@ App::$strings["Some permissions may be inherited from your channel's privacy settings, which have higher priority than individual settings. You can change those settings here but they wont have any impact unless the inherited setting changes."] = "Noen tillatelser kan være arvet fra din kanals personverninnstillinger, som har høyere prioritet enn individuelle innstillinger. Du kan endre disse innstillingene her, men de vil ikke få noen effekt før de arvede innstillingene endres."; App::$strings["Last update:"] = "Siste oppdatering:"; App::$strings["Public access denied."] = "Offentlig tilgang avvist."; +App::$strings["Item not found."] = "Elementet ble ikke funnet."; +App::$strings["First Name"] = "Fornavn"; +App::$strings["Last Name"] = "Etternavn"; +App::$strings["Nickname"] = "Kallenavn"; +App::$strings["Full Name"] = "Fullt navn"; +App::$strings["Email"] = "E-post"; +App::$strings["Profile Photo"] = "Profilbilde"; +App::$strings["Profile Photo 16px"] = "Profilbilde 16px"; +App::$strings["Profile Photo 32px"] = "Profilbilde 32px"; +App::$strings["Profile Photo 48px"] = "Profilbilde 48px"; +App::$strings["Profile Photo 64px"] = "Profilbilde 64px"; +App::$strings["Profile Photo 80px"] = "Profilbilde 80px"; +App::$strings["Profile Photo 128px"] = "Profilbilde 128px"; +App::$strings["Timezone"] = "Tidssone"; +App::$strings["Homepage URL"] = "Hjemmeside URL"; +App::$strings["Language"] = "Språk"; +App::$strings["Birth Year"] = "Fødselsår"; +App::$strings["Birth Month"] = "Fødselsmåne"; +App::$strings["Birth Day"] = "Fødselsdag"; +App::$strings["Birthdate"] = "Fødselsdato"; +App::$strings["Gender"] = "Kjønn"; +App::$strings["Male"] = "Mannlig"; +App::$strings["Female"] = "Kvinnelig"; +App::$strings["Channel added."] = "Kanal lagt til."; App::$strings["%d rating"] = array( 0 => "%d vurdering", 1 => "%d vurderinger", @@ -196,13 +198,74 @@ App::$strings["Reverse Alphabetic"] = "Omvendt alfabetisk"; App::$strings["Newest to Oldest"] = "Nyest til eldst"; App::$strings["Oldest to Newest"] = "Eldst til nyest"; App::$strings["No entries (some entries may be hidden)."] = "Ingen oppføringer (noen oppføringer kan være skjult)."; -App::$strings["Item not found."] = "Elementet ble ikke funnet."; +App::$strings["Continue"] = "Fortsett"; +App::$strings["Premium Channel Setup"] = "Premiumkanal-oppsett"; +App::$strings["Enable premium channel connection restrictions"] = "Slå på restriksjoner for forbindelse med premiumkanal"; +App::$strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = "Vennligst skriv dine restriksjoner og betingelser, slik som PayPal-kvittering, retningslinjer for bruk, og så videre."; +App::$strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = "Denne kanalen kan kreve ytterligere steg og bekreftelse av følgende betingelser før tilkobling:"; +App::$strings["Potential connections will then see the following text before proceeding:"] = "Potensielle forbindelser vil da se følgende tekst før de går videre:"; +App::$strings["By continuing, I certify that I have complied with any instructions provided on this page."] = "Ved å fortsette bekrefter jeg at jeg har oppfylt alle instruksjoner gitt på denne siden."; +App::$strings["(No specific instructions have been provided by the channel owner.)"] = "(Ingen spesifikke instruksjoner er gitt av kanaleieren.)"; +App::$strings["Restricted or Premium Channel"] = "Begrenset kanal eller premiumkanal"; +App::$strings["Calendar entries imported."] = "Kalenderhendelsene er importert."; +App::$strings["No calendar entries found."] = "Ingen kalenderhendelser funnet."; +App::$strings["Event can not end before it has started."] = "Hendelsen kan ikke slutte før den starter."; +App::$strings["Unable to generate preview."] = "Klarer ikke å lage forhåndsvisning."; +App::$strings["Event title and start time are required."] = "Hendelsestittel og starttidspunkt er påkrevd."; +App::$strings["Event not found."] = "Hendelsen ble ikke funnet."; +App::$strings["event"] = "hendelse"; +App::$strings["Edit event title"] = "Endre tittel på hendelse"; +App::$strings["Event title"] = "Tittel på hendelse"; +App::$strings["Required"] = "Påkrevd"; +App::$strings["Categories (comma-separated list)"] = "Kategorier (kommaseparert liste)"; +App::$strings["Edit Category"] = "Endre kategori"; +App::$strings["Category"] = "Kategori"; +App::$strings["Edit start date and time"] = "Endre startdato og tidspunkt"; +App::$strings["Start date and time"] = "Startdato og tidspunkt"; +App::$strings["Finish date and time are not known or not relevant"] = "Sluttdato og tidspunkt er ikke kjent eller ikke relevant"; +App::$strings["Edit finish date and time"] = "Endre sluttdato og tidspunkt"; +App::$strings["Finish date and time"] = "Sluttdato og tidspunkt"; +App::$strings["Adjust for viewer timezone"] = "Juster i forhold til tilskuerens tidssone"; +App::$strings["Important for events that happen in a particular place. Not practical for global holidays."] = "Viktig for hendelser som skjer på et bestemt sted. Ikke praktisk for globale ferier eller fridager."; +App::$strings["Edit Description"] = "Endre beskrivelse"; +App::$strings["Description"] = "Beskrivelse"; +App::$strings["Edit Location"] = "Endre plassering"; +App::$strings["Location"] = "Plassering"; +App::$strings["Share this event"] = "Del denne hendelsen"; +App::$strings["Preview"] = "Forhåndsvisning"; +App::$strings["Permission settings"] = "Tillatelser - innstillinger"; +App::$strings["Advanced Options"] = "Avanserte alternativer"; +App::$strings["l, F j"] = "l, F j"; +App::$strings["Edit event"] = "Endre hendelse"; +App::$strings["Delete event"] = "Slett hendelse"; +App::$strings["Link to Source"] = "Lenke til kilde"; +App::$strings["calendar"] = "kalender"; +App::$strings["Edit Event"] = "Endre hendelse"; +App::$strings["Create Event"] = "Lag hendelse"; +App::$strings["Previous"] = "Forrige"; +App::$strings["Next"] = "Neste"; +App::$strings["Export"] = "Eksport"; +App::$strings["View"] = "Vis"; +App::$strings["Month"] = ""; +App::$strings["Week"] = ""; +App::$strings["Day"] = ""; +App::$strings["Today"] = "Idag"; +App::$strings["Event removed"] = "Hendelse slettet"; +App::$strings["Failed to remove event"] = "Mislyktes med å slette hendelse"; +App::$strings["Bookmark added"] = "Bokmerke lagt til"; +App::$strings["My Bookmarks"] = "Mine bokmerker"; +App::$strings["My Connections Bookmarks"] = "Mine forbindelsers bokmerker"; App::$strings["Item not found"] = "Elementet ble ikke funnet."; -App::$strings["Title (optional)"] = "Tittel (valgfri)"; -App::$strings["Edit Block"] = "Endre byggekloss"; -App::$strings["No channel."] = "Ingen kanal."; -App::$strings["Common connections"] = "Felles forbindelser"; -App::$strings["No connections in common."] = "Ingen forbindelser felles."; +App::$strings["Item is not editable"] = "Elementet kan ikke endres"; +App::$strings["Edit post"] = "Endre innlegg"; +App::$strings["Photos"] = "Bilder"; +App::$strings["Cancel"] = "Avbryt"; +App::$strings["Invalid item."] = "Ugyldig element."; +App::$strings["Channel not found."] = "Kanalen ble ikke funnet."; +App::$strings["Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."] = "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."; +App::$strings["Save to Folder:"] = "Lagre til mappe:"; +App::$strings["- select -"] = "- velg -"; +App::$strings["Save"] = "Lagre"; App::$strings["Blocked"] = "Blokkert"; App::$strings["Ignored"] = "Ignorert"; App::$strings["Hidden"] = "Skjult"; @@ -254,51 +317,38 @@ App::$strings["select a photo from your photo albums"] = "velg et bilde fra dine App::$strings["Crop Image"] = "Beskjær bildet"; App::$strings["Please adjust the image cropping for optimum viewing."] = "Vennligst juster bildebeskjæringen for optimal visning."; App::$strings["Done Editing"] = "Avslutt redigering"; -App::$strings["Item is not editable"] = "Elementet kan ikke endres"; -App::$strings["Edit post"] = "Endre innlegg"; -App::$strings["Calendar entries imported."] = "Kalenderhendelsene er importert."; -App::$strings["No calendar entries found."] = "Ingen kalenderhendelser funnet."; -App::$strings["Event can not end before it has started."] = "Hendelsen kan ikke slutte før den starter."; -App::$strings["Unable to generate preview."] = "Klarer ikke å lage forhåndsvisning."; -App::$strings["Event title and start time are required."] = "Hendelsestittel og starttidspunkt er påkrevd."; -App::$strings["Event not found."] = "Hendelsen ble ikke funnet."; -App::$strings["event"] = "hendelse"; -App::$strings["Edit event title"] = "Endre tittel på hendelse"; -App::$strings["Event title"] = "Tittel på hendelse"; -App::$strings["Required"] = "Påkrevd"; -App::$strings["Categories (comma-separated list)"] = "Kategorier (kommaseparert liste)"; -App::$strings["Edit Category"] = "Endre kategori"; -App::$strings["Category"] = "Kategori"; -App::$strings["Edit start date and time"] = "Endre startdato og tidspunkt"; -App::$strings["Start date and time"] = "Startdato og tidspunkt"; -App::$strings["Finish date and time are not known or not relevant"] = "Sluttdato og tidspunkt er ikke kjent eller ikke relevant"; -App::$strings["Edit finish date and time"] = "Endre sluttdato og tidspunkt"; -App::$strings["Finish date and time"] = "Sluttdato og tidspunkt"; -App::$strings["Adjust for viewer timezone"] = "Juster i forhold til tilskuerens tidssone"; -App::$strings["Important for events that happen in a particular place. Not practical for global holidays."] = "Viktig for hendelser som skjer på et bestemt sted. Ikke praktisk for globale ferier eller fridager."; -App::$strings["Edit Description"] = "Endre beskrivelse"; -App::$strings["Description"] = "Beskrivelse"; -App::$strings["Edit Location"] = "Endre plassering"; -App::$strings["Location"] = "Plassering"; -App::$strings["Share this event"] = "Del denne hendelsen"; -App::$strings["Preview"] = "Forhåndsvisning"; -App::$strings["Permission settings"] = "Tillatelser - innstillinger"; -App::$strings["Advanced Options"] = "Avanserte alternativer"; -App::$strings["Edit event"] = "Endre hendelse"; -App::$strings["Delete event"] = "Slett hendelse"; -App::$strings["calendar"] = "kalender"; -App::$strings["Event removed"] = "Hendelse slettet"; -App::$strings["Failed to remove event"] = "Mislyktes med å slette hendelse"; -App::$strings["Photos"] = "Bilder"; -App::$strings["Cancel"] = "Avbryt"; +App::$strings["webpage"] = "nettside"; +App::$strings["block"] = "byggekloss"; +App::$strings["layout"] = "layout"; +App::$strings["menu"] = "meny"; +App::$strings["%s element installed"] = "%s element installert"; +App::$strings["%s element installation failed"] = "Installasjon av %s-element mislyktes"; +App::$strings["Permissions denied."] = "Tillatelse avvist."; +App::$strings["Import"] = "Importer"; App::$strings["This site is not a directory server"] = "Dette nettstedet er ikke en katalogtjener"; App::$strings["This directory server requires an access token"] = "Denne katalogtjeneren krever en tilgangsnøkkel (access token)"; -App::$strings["Save to Folder:"] = "Lagre til mappe:"; -App::$strings["- select -"] = "- velg -"; -App::$strings["Save"] = "Lagre"; +App::$strings["You must be logged in to see this page."] = "Du må være innloegget for å se denne siden."; +App::$strings["Room not found"] = "Rommet ble ikke funnet"; +App::$strings["Leave Room"] = "Forlat rom"; +App::$strings["Delete Room"] = "Slett rom"; +App::$strings["I am away right now"] = "Jeg er borte akkurat nå"; +App::$strings["I am online"] = "Jeg er online"; +App::$strings["Bookmark this room"] = "Bokmerk dette rommet"; +App::$strings["Please enter a link URL:"] = "Vennligst skriv inn en lenke URL:"; +App::$strings["Encrypt text"] = "Krypter tekst"; +App::$strings["Insert web link"] = "Sett inn web-lenke"; +App::$strings["Feature disabled."] = "Funksjonen er avskrudd."; +App::$strings["New Chatroom"] = "Nytt chatrom"; +App::$strings["Chatroom name"] = "Navn på chatrom"; +App::$strings["Expiration of chats (minutes)"] = "Chat utgår (antall minutter)"; +App::$strings["Permissions"] = "Tillatelser"; +App::$strings["%1\$s's Chatrooms"] = "%1\$s sine chatrom"; +App::$strings["No chatrooms available"] = "Ingen tilgjengelige chatrom"; +App::$strings["Create New"] = "Lag ny"; +App::$strings["Expiration"] = "Utløper"; +App::$strings["min"] = "min"; App::$strings["Invalid message"] = "Ugyldig melding"; App::$strings["no results"] = "ingen resultater"; -App::$strings["Delivery report for %1\$s"] = "Leveringsrapport for %1\$s"; App::$strings["channel sync processed"] = "Kanalsynkronisering er behandlet"; App::$strings["queued"] = "lagt i kø"; App::$strings["posted"] = "lagt inn"; @@ -310,14 +360,14 @@ App::$strings["recipient not found"] = "mottaker ble ikke funnet"; App::$strings["mail recalled"] = "melding tilbakekalt"; App::$strings["duplicate mail received"] = "duplikat av melding mottatt"; App::$strings["mail delivered"] = "melding mottatt"; +App::$strings["Delivery report for %1\$s"] = "Leveringsrapport for %1\$s"; +App::$strings["Options"] = ""; +App::$strings["Redeliver"] = ""; App::$strings["Layout Name"] = "Layout-navn"; App::$strings["Layout Description (Optional)"] = "Layoutens beskrivelse (valgfritt)"; App::$strings["Edit Layout"] = "Endre layout"; -App::$strings["Page link"] = ""; +App::$strings["Page link"] = "Sidelenke"; App::$strings["Edit Webpage"] = "Endre webside"; -App::$strings["Channel added."] = "Kanal lagt til."; -App::$strings["network"] = "nettverk"; -App::$strings["RSS"] = "RSS"; App::$strings["Privacy group created."] = "Personverngruppen er opprettet."; App::$strings["Could not create privacy group."] = "Kunne ikke opprette personverngruppen."; App::$strings["Privacy group not found."] = "Personverngruppen ble ikke funnet"; @@ -331,16 +381,33 @@ App::$strings["Privacy group editor"] = "Personverngruppebehandler"; App::$strings["Members"] = "Medlemmer"; App::$strings["All Connected Channels"] = "Alle tilkoblede kanaler"; App::$strings["Click on a channel to add or remove."] = "Klikk på en kanal for å legge til eller fjerne."; -App::$strings["Share content from Firefox to \$Projectname"] = "Del innhold fra Firefox til \$Projectname"; -App::$strings["Activate the Firefox \$Projectname provider"] = "Skru på Firefox \$Projectname tilbyderen"; -App::$strings["Authorize application connection"] = "Tillat programforbindelse"; -App::$strings["Return to your app and insert this Securty Code:"] = "Gå tilbake til din app og legg inn denne sikkerhetskoden:"; -App::$strings["Please login to continue."] = "Vennligst logg inn for å fortsette."; -App::$strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Vil du tillate dette programmet å få tilgang til dine innlegg og kontakter, og/eller lage nye innlegg for deg?"; +App::$strings["App installed."] = "App installert."; +App::$strings["Malformed app."] = "Feil oppsett for app-en."; +App::$strings["Embed code"] = "Innbyggingskode"; +App::$strings["Edit App"] = "Endre app"; +App::$strings["Create App"] = "Lag app"; +App::$strings["Name of app"] = "Navn på app"; +App::$strings["Location (URL) of app"] = "Plassering (URL) til app"; +App::$strings["Photo icon URL"] = "Bildeikon URL"; +App::$strings["80 x 80 pixels - optional"] = "80 x80 pixler - valgfritt"; +App::$strings["Categories (optional, comma separated list)"] = "Kategorier (valgfri, kommaseparert liste)"; +App::$strings["Version ID"] = "Versjons-ID"; +App::$strings["Price of app"] = "Pris på app"; +App::$strings["Location (URL) to purchase app"] = "Plassering (URL) for å kjøpe app"; App::$strings["Documentation Search"] = "Søk i dokumentasjon"; App::$strings["Help:"] = "Hjelp:"; App::$strings["Help"] = "Hjelp"; App::$strings["\$Projectname Documentation"] = "\$Projectname dokumentasjon"; +App::$strings["Item not available."] = "Elementet er ikke tilgjengelig."; +App::$strings["Layout updated."] = "Layout er oppdatert."; +App::$strings["Edit System Page Description"] = "Endre beskrivelsen av systemsiden"; +App::$strings["Layout not found."] = "Layouten ble ikke funnet."; +App::$strings["Module Name:"] = "Modulnavn:"; +App::$strings["Layout Help"] = "Layout-hjelp"; +App::$strings["Share content from Firefox to \$Projectname"] = "Del innhold fra Firefox til \$Projectname"; +App::$strings["Activate the Firefox \$Projectname provider"] = "Skru på Firefox \$Projectname tilbyderen"; +App::$strings["network"] = "nettverk"; +App::$strings["RSS"] = "RSS"; App::$strings["Permission Denied."] = "Tillatelse avvist."; App::$strings["File not found."] = "Filen ble ikke funnet."; App::$strings["Edit file permissions"] = "Endre filtillatelser"; @@ -352,70 +419,13 @@ App::$strings["Copy/paste this URL to link file from a web page"] = "Kopier og l App::$strings["Share this file"] = "Del denne filen"; App::$strings["Show URL to this file"] = "Vis URLen til denne filen"; App::$strings["Notify your contacts about this file"] = "Varsle dine kontakter om denne filen"; -App::$strings["Apps"] = "Apper"; -App::$strings["Item not available."] = "Elementet er ikke tilgjengelig."; -App::$strings["Your service plan only allows %d channels."] = "Din tjenesteplan tillater bare %d kanaler."; -App::$strings["Nothing to import."] = "Ingenting å importere."; -App::$strings["Unable to download data from old server"] = "Ikke i stand til å laste ned data fra gammel tjener"; -App::$strings["Imported file is empty."] = "Importert fil er tom."; -App::$strings["Warning: Database versions differ by %1\$d updates."] = "Advarsel: databaseversjoner avviker med %1\$d oppdateringer."; -App::$strings["Cloned channel not found. Import failed."] = "Klonet kanal ble ikke funnet. Import mislyktes."; -App::$strings["No channel. Import failed."] = "Ingen kanal. Import mislyktes."; -App::$strings["Import completed."] = "Import ferdig."; -App::$strings["You must be logged in to use this feature."] = "Du må være innlogget for å bruke denne funksjonen."; -App::$strings["Import Channel"] = "Importer kanal"; -App::$strings["Use this form to import an existing channel from a different server/hub. You may retrieve the channel identity from the old server/hub via the network or provide an export file."] = "Bruk dette skjemaet for å importere en eksisterende kanal fra en annen tjener/hub. Du kan hente inn kanalidentiteten fra den gamle tjeneren/huben via nettverket eller ved å bruke en eksportfil."; -App::$strings["File to Upload"] = "Fil som skal lastes opp"; -App::$strings["Or provide the old server/hub details"] = "Eller oppgi detaljene fra den gamle tjeneren/hub-en"; -App::$strings["Your old identity address (xyz@example.com)"] = "Din gamle identitetsadresse (xyz@example.com)"; -App::$strings["Your old login email address"] = "Din gamle innloggings e-postadresse"; -App::$strings["Your old login password"] = "Ditt gamle innloggingspassord"; -App::$strings["For either option, please choose whether to make this hub your new primary address, or whether your old location should continue this role. You will be able to post from either location, but only one can be marked as the primary location for files, photos, and media."] = "Enten du tar det ene eller det andre valget, vennligst angi om du vil at denne hubben skal være din nye primære adresse, eller om din gamle plassering skal fortsette å ha denne rollen. Du kan lage innlegg fra den ene eller den andre plasseringen, men bare en av dem kan markeres som den primære plasseringen for filer, bilder og media."; -App::$strings["Make this hub my primary location"] = "Gjør dette nettstedet til min primære plassering"; -App::$strings["Import existing posts if possible (experimental - limited by available memory"] = "Importer eksisterende innlegg om mulig (eksperimentelt - begrenset av tilgjengelig minne)"; -App::$strings["This process may take several minutes to complete. Please submit the form only once and leave this page open until finished."] = "Denne prosessen kan ta flere minutter å fullføre. Vennligst send inn dette skjemaet bare en gang og la siden være åpen inntil den er ferdig."; -App::$strings["Unable to locate original post."] = "Ikke i stand til å finne opprinnelig innlegg."; -App::$strings["Empty post discarded."] = "Tomt innlegg forkastet."; -App::$strings["Executable content type not permitted to this channel."] = "Kjørbar innholdstype er ikke tillat for denne kanalen."; -App::$strings["Duplicate post suppressed."] = "Duplikat av innlegg forhindret."; -App::$strings["System error. Post not saved."] = "Systemfeil. Innlegg ble ikke lagret."; -App::$strings["Unable to obtain post information from database."] = "Ikke i stand til å få tak i informasjon om innlegg fra databasen."; -App::$strings["You have reached your limit of %1$.0f top level posts."] = "Du har nådd din grense på %1$.0f startinnlegg."; -App::$strings["You have reached your limit of %1$.0f webpages."] = "Du har nådd din grense på %1$.0f websider."; App::$strings["Layouts"] = "Layout"; App::$strings["Comanche page description language help"] = "Hjelp med Comanche sidebeskrivelsesspråk"; App::$strings["Layout Description"] = "Layout-beskrivelse"; +App::$strings["Created"] = "Laget"; +App::$strings["Edited"] = "Endret"; +App::$strings["Share"] = "Del"; App::$strings["Download PDL file"] = "Last ned PDL-fil"; -App::$strings["\$Projectname"] = "\$Projectname"; -App::$strings["Welcome to %s"] = "Velkommen til %s"; -App::$strings["First Name"] = "Fornavn"; -App::$strings["Last Name"] = "Etternavn"; -App::$strings["Nickname"] = "Kallenavn"; -App::$strings["Full Name"] = "Fullt navn"; -App::$strings["Email"] = "E-post"; -App::$strings["Profile Photo"] = "Profilbilde"; -App::$strings["Profile Photo 16px"] = "Profilbilde 16px"; -App::$strings["Profile Photo 32px"] = "Profilbilde 32px"; -App::$strings["Profile Photo 48px"] = "Profilbilde 48px"; -App::$strings["Profile Photo 64px"] = "Profilbilde 64px"; -App::$strings["Profile Photo 80px"] = "Profilbilde 80px"; -App::$strings["Profile Photo 128px"] = "Profilbilde 128px"; -App::$strings["Timezone"] = "Tidssone"; -App::$strings["Homepage URL"] = "Hjemmeside URL"; -App::$strings["Language"] = "Språk"; -App::$strings["Birth Year"] = "Fødselsår"; -App::$strings["Birth Month"] = "Fødselsmåne"; -App::$strings["Birth Day"] = "Fødselsdag"; -App::$strings["Birthdate"] = "Fødselsdato"; -App::$strings["Gender"] = "Kjønn"; -App::$strings["Male"] = "Mannlig"; -App::$strings["Female"] = "Kvinnelig"; -App::$strings["webpage"] = "nettside"; -App::$strings["block"] = "byggekloss"; -App::$strings["layout"] = "layout"; -App::$strings["menu"] = "meny"; -App::$strings["%s element installed"] = "%s element installert"; -App::$strings["%s element installation failed"] = "Installasjon av %s-element mislyktes"; App::$strings["Like/Dislike"] = "Liker/Liker ikke"; App::$strings["This action is restricted to members."] = "Denne handlingen er begrenset til medlemmer."; App::$strings["Please login with your \$Projectname ID or register as a new \$Projectname member to continue."] = "Vennligst logg inn med din \$Projectname ID eller registrer deg som et nytt \$Projectname-medlem for å fortsette"; @@ -436,6 +446,173 @@ App::$strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$s deltar ikke på % App::$strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$s deltar kanskje på %2\$ss %3\$s"; App::$strings["Action completed."] = "Handling ferdig."; App::$strings["Thank you."] = "Tusen takk."; +App::$strings["Profile not found."] = "Profilen ble ikke funnet."; +App::$strings["Profile deleted."] = "Profilen er slettet."; +App::$strings["Profile-"] = "Profil-"; +App::$strings["New profile created."] = "Ny profil opprettet."; +App::$strings["Profile unavailable to clone."] = "Profilen er utilgjengelig for klonen."; +App::$strings["Profile unavailable to export."] = "Profilen er utilgjengelig for eksport."; +App::$strings["Profile Name is required."] = "Profilnavn er påkrevd."; +App::$strings["Marital Status"] = "Sivilstand"; +App::$strings["Romantic Partner"] = "Romantisk partner"; +App::$strings["Likes"] = "Liker"; +App::$strings["Dislikes"] = "Liker ikke"; +App::$strings["Work/Employment"] = "Arbeid/sysselsetting"; +App::$strings["Religion"] = "Religion"; +App::$strings["Political Views"] = "Politiske synspunkter"; +App::$strings["Sexual Preference"] = "Seksuelle preferanser"; +App::$strings["Homepage"] = "Hjemmeside"; +App::$strings["Interests"] = "Interesser"; +App::$strings["Address"] = "Adresse"; +App::$strings["Profile updated."] = "Profilen er oppdatert."; +App::$strings["Hide your connections list from viewers of this profile"] = "Skjul listen med forbindelser fra besøkende som ser denne profilen"; +App::$strings["Edit Profile Details"] = "Endre profildetaljer"; +App::$strings["View this profile"] = "Vis denne profilen"; +App::$strings["Edit visibility"] = "Endre synlighet"; +App::$strings["Profile Tools"] = "Profilverktøy"; +App::$strings["Change cover photo"] = "Endre forsidebilde"; +App::$strings["Change profile photo"] = "Endre profilbilde"; +App::$strings["Create a new profile using these settings"] = "Lag en ny profil ved å bruke disse innstillingene"; +App::$strings["Clone this profile"] = "Klon denne profilen"; +App::$strings["Delete this profile"] = "Slett denne profilen"; +App::$strings["Add profile things"] = "Legg til profilting"; +App::$strings["Personal"] = "Personlig"; +App::$strings["Relation"] = "Forhold"; +App::$strings["Miscellaneous"] = "Forskjellig"; +App::$strings["Import profile from file"] = "Importer profil fra fil"; +App::$strings["Export profile to file"] = "Eksporter profil til fil"; +App::$strings["Your gender"] = "Ditt kjønn"; +App::$strings["Marital status"] = "Sivilstand"; +App::$strings["Sexual preference"] = "Seksuelle preferanser"; +App::$strings["Profile name"] = "Profilnavn"; +App::$strings["This is your default profile."] = "Dette er din standardprofil."; +App::$strings["Your full name"] = "Ditt fulle navn"; +App::$strings["Title/Description"] = "Tittel/beskrivelse"; +App::$strings["Street address"] = "Gateadresse"; +App::$strings["Locality/City"] = "Sted/by"; +App::$strings["Region/State"] = "Region/fylke"; +App::$strings["Postal/Zip code"] = "Postnummer/ZIP-kode"; +App::$strings["Country"] = "Land"; +App::$strings["Who (if applicable)"] = "Hvem (hvis det er aktuelt)"; +App::$strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Eksempler: kari123, Kari Villiamsen, kari@example.com"; +App::$strings["Since (date)"] = "Siden (dato)"; +App::$strings["Tell us about yourself"] = "Fortell oss om deg selv"; +App::$strings["Hometown"] = "Hjemby"; +App::$strings["Political views"] = "Politiske synspunkter"; +App::$strings["Religious views"] = "Religiøse synspunkter"; +App::$strings["Keywords used in directory listings"] = "Nøkkelord bruk i katalogoppføringer"; +App::$strings["Example: fishing photography software"] = "Eksempel: fisking fotografering programvare"; +App::$strings["Musical interests"] = "Musikkinteresser"; +App::$strings["Books, literature"] = "Bøker, litteratur"; +App::$strings["Television"] = "TV/fjernsyn"; +App::$strings["Film/Dance/Culture/Entertainment"] = "Film/dans/kultur/underholdning"; +App::$strings["Hobbies/Interests"] = "Hobbier/Interesser"; +App::$strings["Love/Romance"] = "Kjærlighet/romantikk"; +App::$strings["School/Education"] = "Skole/utdanning"; +App::$strings["Contact information and social networks"] = "Kontaktinformasjon og sosiale nettverk"; +App::$strings["My other channels"] = "Mine andre kanaler"; +App::$strings["Profile Image"] = "Profilbilde"; +App::$strings["Edit Profiles"] = "Endre profiler"; +App::$strings["Your service plan only allows %d channels."] = "Din tjenesteplan tillater bare %d kanaler."; +App::$strings["Nothing to import."] = "Ingenting å importere."; +App::$strings["Unable to download data from old server"] = "Ikke i stand til å laste ned data fra gammel tjener"; +App::$strings["Imported file is empty."] = "Importert fil er tom."; +App::$strings["Warning: Database versions differ by %1\$d updates."] = "Advarsel: databaseversjoner avviker med %1\$d oppdateringer."; +App::$strings["Cloned channel not found. Import failed."] = "Klonet kanal ble ikke funnet. Import mislyktes."; +App::$strings["No channel. Import failed."] = "Ingen kanal. Import mislyktes."; +App::$strings["Import completed."] = "Import ferdig."; +App::$strings["You must be logged in to use this feature."] = "Du må være innlogget for å bruke denne funksjonen."; +App::$strings["Import Channel"] = "Importer kanal"; +App::$strings["Use this form to import an existing channel from a different server/hub. You may retrieve the channel identity from the old server/hub via the network or provide an export file."] = "Bruk dette skjemaet for å importere en eksisterende kanal fra en annen tjener/hub. Du kan hente inn kanalidentiteten fra den gamle tjeneren/huben via nettverket eller ved å bruke en eksportfil."; +App::$strings["File to Upload"] = "Fil som skal lastes opp"; +App::$strings["Or provide the old server/hub details"] = "Eller oppgi detaljene fra den gamle tjeneren/hub-en"; +App::$strings["Your old identity address (xyz@example.com)"] = "Din gamle identitetsadresse (xyz@example.com)"; +App::$strings["Your old login email address"] = "Din gamle innloggings e-postadresse"; +App::$strings["Your old login password"] = "Ditt gamle innloggingspassord"; +App::$strings["For either option, please choose whether to make this hub your new primary address, or whether your old location should continue this role. You will be able to post from either location, but only one can be marked as the primary location for files, photos, and media."] = "Enten du tar det ene eller det andre valget, vennligst angi om du vil at denne hubben skal være din nye primære adresse, eller om din gamle plassering skal fortsette å ha denne rollen. Du kan lage innlegg fra den ene eller den andre plasseringen, men bare en av dem kan markeres som den primære plasseringen for filer, bilder og media."; +App::$strings["Make this hub my primary location"] = "Gjør dette nettstedet til min primære plassering"; +App::$strings["Import existing posts if possible (experimental - limited by available memory"] = "Importer eksisterende innlegg om mulig (eksperimentelt - begrenset av tilgjengelig minne)"; +App::$strings["This process may take several minutes to complete. Please submit the form only once and leave this page open until finished."] = "Denne prosessen kan ta flere minutter å fullføre. Vennligst send inn dette skjemaet bare en gang og la siden være åpen inntil den er ferdig."; +App::$strings["\$Projectname"] = "\$Projectname"; +App::$strings["Welcome to %s"] = "Velkommen til %s"; +App::$strings["Unable to locate original post."] = "Ikke i stand til å finne opprinnelig innlegg."; +App::$strings["Empty post discarded."] = "Tomt innlegg forkastet."; +App::$strings["Executable content type not permitted to this channel."] = "Kjørbar innholdstype er ikke tillat for denne kanalen."; +App::$strings["Duplicate post suppressed."] = "Duplikat av innlegg forhindret."; +App::$strings["System error. Post not saved."] = "Systemfeil. Innlegg ble ikke lagret."; +App::$strings["Unable to obtain post information from database."] = "Ikke i stand til å få tak i informasjon om innlegg fra databasen."; +App::$strings["You have reached your limit of %1$.0f top level posts."] = "Du har nådd din grense på %1$.0f startinnlegg."; +App::$strings["You have reached your limit of %1$.0f webpages."] = "Du har nådd din grense på %1$.0f websider."; +App::$strings["Page owner information could not be retrieved."] = "Informasjon om sideeier kunne ikke hentes."; +App::$strings["Profile Photos"] = "Profilbilder"; +App::$strings["Album not found."] = "Albumet ble ikke funnet."; +App::$strings["Delete Album"] = "Slett album"; +App::$strings["Multiple storage folders exist with this album name, but within different directories. Please remove the desired folder or folders using the Files manager"] = "Flere lagringsmapper finnes med dette albumnavnet, men i ulike mapper. Vennligst fjern den ønskede mappen eller mappene med filbehandleren."; +App::$strings["Delete Photo"] = "Slett bilde"; +App::$strings["No photos selected"] = "Ingen bilder valgt"; +App::$strings["Access to this item is restricted."] = "Tilgang til dette elementet er begrenset."; +App::$strings["%1$.2f MB of %2$.2f MB photo storage used."] = "%1$.2f MB av %2$.2f MB lagringsplass til bilder er brukt."; +App::$strings["%1$.2f MB photo storage used."] = "%1$.2f MB lagringsplass til bilder er brukt."; +App::$strings["Upload Photos"] = "Last opp bilder"; +App::$strings["Enter an album name"] = "Skriv et albumnavn"; +App::$strings["or select an existing album (doubleclick)"] = "eller velg et eksisterende album (dobbeltklikk)"; +App::$strings["Create a status post for this upload"] = "Lag et statusinnlegg for denne opplastingen"; +App::$strings["Caption (optional):"] = "Bildetekst (valgfritt):"; +App::$strings["Description (optional):"] = "Beskrivelse (valgfritt):"; +App::$strings["Album name could not be decoded"] = "Albumnavnet kunne ikke dekodes"; +App::$strings["Contact Photos"] = "Kontaktbilder"; +App::$strings["Show Newest First"] = "Vis nyeste først"; +App::$strings["Show Oldest First"] = "Vis eldste først"; +App::$strings["View Photo"] = "Vis foto"; +App::$strings["Edit Album"] = "Endre album"; +App::$strings["Permission denied. Access to this item may be restricted."] = "Tillatelse avvist. Tilgang til dette elementet kan være begrenset."; +App::$strings["Photo not available"] = "Bilde er utilgjengelig"; +App::$strings["Use as profile photo"] = "Bruk som profilbilde"; +App::$strings["Use as cover photo"] = "Bruk som forsidebilde"; +App::$strings["Private Photo"] = "Privat bilde"; +App::$strings["View Full Size"] = "Vis i full størrelse"; +App::$strings["Remove"] = "Fjern"; +App::$strings["Edit photo"] = "Endre bilde"; +App::$strings["Rotate CW (right)"] = "Roter med klokka (mot høyre)"; +App::$strings["Rotate CCW (left)"] = "Roter mot klokka (venstre)"; +App::$strings["Enter a new album name"] = "Skriv et nytt albumnavn"; +App::$strings["or select an existing one (doubleclick)"] = "eller velg et eksisterende album (dobbeltklikk)"; +App::$strings["Caption"] = "Overskrift"; +App::$strings["Add a Tag"] = "Legg til merkelapp"; +App::$strings["Example: @bob, @Barbara_Jensen, @jim@example.com"] = "Eksempel: @bob, @Barbara_Jensen, @jim@example.com"; +App::$strings["Flag as adult in album view"] = "Flag som voksent i albumvisning"; +App::$strings["I like this (toggle)"] = "Jeg liker dette (skru av og på)"; +App::$strings["I don't like this (toggle)"] = "Jeg liker ikke dette (skru av og på)"; +App::$strings["Please wait"] = "Vennligst vent"; +App::$strings["This is you"] = "Dette er deg"; +App::$strings["Comment"] = "Kommentar"; +App::$strings["__ctx:title__ Likes"] = "Liker"; +App::$strings["__ctx:title__ Dislikes"] = "Liker ikke"; +App::$strings["__ctx:title__ Agree"] = "Enig"; +App::$strings["__ctx:title__ Disagree"] = "Uenig"; +App::$strings["__ctx:title__ Abstain"] = "Avstår"; +App::$strings["__ctx:title__ Attending"] = "Deltar"; +App::$strings["__ctx:title__ Not attending"] = "Deltar ikke"; +App::$strings["__ctx:title__ Might attend"] = "Deltar kanskje"; +App::$strings["View all"] = "Vis alle"; +App::$strings["__ctx:noun__ Like"] = array( + 0 => "Liker", + 1 => "Liker", +); +App::$strings["__ctx:noun__ Dislike"] = array( + 0 => "Liker ikke", + 1 => "Liker ikke", +); +App::$strings["Photo Tools"] = "Fotoverktøy"; +App::$strings["In This Photo:"] = "I dette bildet:"; +App::$strings["Map"] = "Kart"; +App::$strings["__ctx:noun__ Likes"] = "Liker"; +App::$strings["__ctx:noun__ Dislikes"] = "Liker ikke"; +App::$strings["Close"] = "Lukk"; +App::$strings["View Album"] = "Vis album"; +App::$strings["Recent Photos"] = "Nye bilder"; +App::$strings["Remote privacy information not available."] = "Ekstern personverninformasjon er ikke tilgjengelig."; +App::$strings["Visible to:"] = "Synlig for:"; App::$strings["Import completed"] = "Import ferdig"; App::$strings["Import Items"] = "Importer elementer"; App::$strings["Use this form to import existing posts and content from an export file."] = "Bruk dette skjemaet for å importere eksisterende innlegg og innhold fra en eksportfil."; @@ -458,18 +635,15 @@ App::$strings["1. Register at any \$Projectname location (they are all inter-con App::$strings["2. Enter my \$Projectname network address into the site searchbar."] = "2. Skriv inn min \$Projectname-adresse i nettstedets søkefelt."; App::$strings["or visit"] = "eller besøke"; App::$strings["3. Click [Connect]"] = "3. Klikk [Forbindelse]"; -App::$strings["Remote privacy information not available."] = "Ekstern personverninformasjon er ikke tilgjengelig."; -App::$strings["Visible to:"] = "Synlig for:"; App::$strings["Location not found."] = "Plassering er ikke funnet."; App::$strings["Location lookup failed."] = "Oppslag på plassering mislyktes."; App::$strings["Please select another location to become primary before removing the primary location."] = "Vennligst velg en annen plassering som primær før du sletter gjeldende primære plassering."; App::$strings["Syncing locations"] = "Synkroniserer plasseringer"; App::$strings["No locations found."] = "Ingen plasseringer ble funnet."; App::$strings["Manage Channel Locations"] = "Håndter kanalplasseringer"; -App::$strings["Address"] = "Adresse"; -App::$strings["Primary"] = ""; +App::$strings["Primary"] = "Hoved"; App::$strings["Drop"] = "Slett"; -App::$strings["Sync Now"] = ""; +App::$strings["Sync Now"] = "Synkroniser nå"; App::$strings["Please wait several minutes between consecutive operations."] = "Vennligst vent flere minutter mellom hver etterfølgende operasjon."; App::$strings["When possible, drop a location by logging into that website/hub and removing your channel."] = "Når mulig, fjern en plassering ved å logge inn på det nettstedet eller den hub-en og fjern din kanal."; App::$strings["Use this form to drop the location if the hub is no longer operating."] = "Bruk dette skjemaet for å fjerne plasseringen hvis huben ikke er i drift lenger."; @@ -506,23 +680,7 @@ App::$strings["Default Channel"] = "Standardkanal"; App::$strings["Make Default"] = "Gjør til standard"; App::$strings["%d new messages"] = "%d nye meldinger"; App::$strings["%d new introductions"] = "%d nye introduksjoner"; -App::$strings["Delegated Channel"] = ""; -App::$strings["No valid account found."] = "Ingen gyldig konto funnet."; -App::$strings["Password reset request issued. Check your email."] = "Forespørsel om å tilbakestille passord er mottatt. Sjekk e-posten din."; -App::$strings["Site Member (%s)"] = "Nettstedsmedlem (%s)"; -App::$strings["Password reset requested at %s"] = "Forespurt om å tilbakestille passord hos %s"; -App::$strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Forespørsel kunne ikke bekreftes. (Du kan ha sendt den inn tidligere.) Tilbakestilling av passord mislyktes."; -App::$strings["Password Reset"] = "Tilbakestill passord"; -App::$strings["Your password has been reset as requested."] = "Ditt passord har blitt tilbakestilt som forespurt."; -App::$strings["Your new password is"] = "Ditt nye passord er"; -App::$strings["Save or copy your new password - and then"] = "Lagre eller kopier ditt nye passord, og deretter kan du"; -App::$strings["click here to login"] = "klikke her for å logge inn"; -App::$strings["Your password may be changed from the Settings page after successful login."] = "Ditt passord kan endres på siden Innstillinger etter vellykket innlogging."; -App::$strings["Your password has changed at %s"] = "Ditt passord er endret hos %s"; -App::$strings["Forgot your Password?"] = "Glemt passord ditt?"; -App::$strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Skriv e-postadressen din og send inn for å tilbakestille passordet ditt. Sjekk deretter din e-post for videre instruksjoner."; -App::$strings["Email Address"] = "E-postadresse"; -App::$strings["Reset"] = "Tilbakestill"; +App::$strings["Delegated Channel"] = "Delegert kanal"; App::$strings["Unable to update menu."] = "Ikke i stand til å oppdatere meny."; App::$strings["Unable to create menu."] = "Ikke i stand til å lage meny."; App::$strings["Menu Name"] = "Menynavn"; @@ -547,13 +705,25 @@ App::$strings["Menu title"] = "Menytittel"; App::$strings["Menu title as seen by others"] = "Menytittelen andre ser"; App::$strings["Allow bookmarks"] = "Tillat bokmerker"; App::$strings["Not found."] = "Ikke funnet."; +App::$strings["No valid account found."] = "Ingen gyldig konto funnet."; +App::$strings["Password reset request issued. Check your email."] = "Forespørsel om å tilbakestille passord er mottatt. Sjekk e-posten din."; +App::$strings["Site Member (%s)"] = "Nettstedsmedlem (%s)"; +App::$strings["Password reset requested at %s"] = "Forespurt om å tilbakestille passord hos %s"; +App::$strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Forespørsel kunne ikke bekreftes. (Du kan ha sendt den inn tidligere.) Tilbakestilling av passord mislyktes."; +App::$strings["Password Reset"] = "Tilbakestill passord"; +App::$strings["Your password has been reset as requested."] = "Ditt passord har blitt tilbakestilt som forespurt."; +App::$strings["Your new password is"] = "Ditt nye passord er"; +App::$strings["Save or copy your new password - and then"] = "Lagre eller kopier ditt nye passord, og deretter kan du"; +App::$strings["click here to login"] = "klikke her for å logge inn"; +App::$strings["Your password may be changed from the Settings page after successful login."] = "Ditt passord kan endres på siden Innstillinger etter vellykket innlogging."; +App::$strings["Your password has changed at %s"] = "Ditt passord er endret hos %s"; +App::$strings["Forgot your Password?"] = "Glemt passord ditt?"; +App::$strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Skriv e-postadressen din og send inn for å tilbakestille passordet ditt. Sjekk deretter din e-post for videre instruksjoner."; +App::$strings["Email Address"] = "E-postadresse"; +App::$strings["Reset"] = "Tilbakestill"; App::$strings["__ctx:mood__ %1\$s is %2\$s"] = "%1\$s er %2\$s"; App::$strings["Mood"] = "Stemning"; App::$strings["Set your current mood and tell your friends"] = "Angi ditt nåværende humør og fortell dine venner"; -App::$strings["Profile Match"] = "Profiltreff"; -App::$strings["No keywords to match. Please add keywords to your default profile."] = "Ingen nøkkelord å sammenlikne. Vennligst legg til nøkkelord til din standardprofil."; -App::$strings["is interested in:"] = "er interessert i:"; -App::$strings["No matches"] = "Ingen treff"; App::$strings["No such group"] = "Gruppen finnes ikke"; App::$strings["No such channel"] = "Ingen slik kanal"; App::$strings["forum"] = "forum"; @@ -563,6 +733,13 @@ App::$strings["Privacy group: "] = "Personverngruppe:"; App::$strings["Invalid connection."] = "Ugyldig forbindelse."; App::$strings["No more system notifications."] = "Ingen flere systemvarsler."; App::$strings["System Notifications"] = "Systemvarsler"; +App::$strings["Profile Match"] = "Profiltreff"; +App::$strings["No keywords to match. Please add keywords to your default profile."] = "Ingen nøkkelord å sammenlikne. Vennligst legg til nøkkelord til din standardprofil."; +App::$strings["is interested in:"] = "er interessert i:"; +App::$strings["No matches"] = "Ingen treff"; +App::$strings["Posts and comments"] = "Innlegg og kommentarer"; +App::$strings["Only posts"] = "Bare innlegg"; +App::$strings["Insufficient permissions. Request redirected to profile page."] = "Utilstrekkelig tillatelse. Forespørsel omdirigert til profilsiden."; App::$strings["Unable to create element."] = "Klarer ikke å lage element."; App::$strings["Unable to update menu element."] = "Ikke i stand til å oppdatere menyelement."; App::$strings["Unable to add menu element."] = "Ikke i stand til å legge til menyelement."; @@ -592,203 +769,6 @@ App::$strings["Menu item deleted."] = "Menyelement slettet."; App::$strings["Menu item could not be deleted."] = "Menyelement kunne ikke bli slettet."; App::$strings["Edit Menu Element"] = "Endre menyelement"; App::$strings["Link text"] = "Lenketekst"; -App::$strings["Name or caption"] = "Navn eller overskrift"; -App::$strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\""] = "Eksempel: \"Ola Nordmann\", \"Lisa og hestene hennes\", \"Fotball\", \"Sykkelgruppa\""; -App::$strings["Choose a short nickname"] = "Velg et kort kallenavn"; -App::$strings["Your nickname will be used to create an easy to remember channel address e.g. nickname%s"] = "Ditt kallenavn brukes til å lage en kanaladresse som er enkel å huske, for eksempel kallenavn%s"; -App::$strings["Channel role and privacy"] = "Kanalrolle og personvern"; -App::$strings["Select a channel role with your privacy requirements."] = "Velg en kanalrolle for ditt personvernbehov."; -App::$strings["Read more about roles"] = "Les mer om roller"; -App::$strings["Create Channel"] = "Lag kanal"; -App::$strings["A channel is your identity on this network. It can represent a person, a blog, or a forum to name a few. Channels can make connections with other channels to share information with highly detailed permissions."] = "En kanal er din identitet i dette nettverket. Den kan representere en person, en blogg eller et forum for å nevne noe. Kanaler kan ha forbindelser til andre kanaler for å dele informasjon, og med svært detaljerte tillatelser."; -App::$strings["or import an existing channel from another location."] = "eller importer en eksisterende kanal fra et annet sted."; -App::$strings["Invalid request identifier."] = "Ugyldig forespørselsidentifikator."; -App::$strings["Discard"] = "Forkast"; -App::$strings["Mark all system notifications seen"] = "Merk alle systemvarsler som sett"; -App::$strings["Page owner information could not be retrieved."] = "Informasjon om sideeier kunne ikke hentes."; -App::$strings["Profile Photos"] = "Profilbilder"; -App::$strings["Album not found."] = "Albumet ble ikke funnet."; -App::$strings["Delete Album"] = "Slett album"; -App::$strings["Multiple storage folders exist with this album name, but within different directories. Please remove the desired folder or folders using the Files manager"] = ""; -App::$strings["Delete Photo"] = "Slett bilde"; -App::$strings["No photos selected"] = "Ingen bilder valgt"; -App::$strings["Access to this item is restricted."] = "Tilgang til dette elementet er begrenset."; -App::$strings["%1$.2f MB of %2$.2f MB photo storage used."] = "%1$.2f MB av %2$.2f MB lagringsplass til bilder er brukt."; -App::$strings["%1$.2f MB photo storage used."] = "%1$.2f MB lagringsplass til bilder er brukt."; -App::$strings["Upload Photos"] = "Last opp bilder"; -App::$strings["Enter an album name"] = "Skriv et albumnavn"; -App::$strings["or select an existing album (doubleclick)"] = "eller velg et eksisterende album (dobbeltklikk)"; -App::$strings["Create a status post for this upload"] = "Lag et statusinnlegg for denne opplastingen"; -App::$strings["Caption (optional):"] = "Bildetekst (valgfritt):"; -App::$strings["Description (optional):"] = "Beskrivelse (valgfritt):"; -App::$strings["Album name could not be decoded"] = "Albumnavnet kunne ikke dekodes"; -App::$strings["Contact Photos"] = "Kontaktbilder"; -App::$strings["Show Newest First"] = "Vis nyeste først"; -App::$strings["Show Oldest First"] = "Vis eldste først"; -App::$strings["View Photo"] = "Vis foto"; -App::$strings["Edit Album"] = "Endre album"; -App::$strings["Permission denied. Access to this item may be restricted."] = "Tillatelse avvist. Tilgang til dette elementet kan være begrenset."; -App::$strings["Photo not available"] = "Bilde er utilgjengelig"; -App::$strings["Use as profile photo"] = "Bruk som profilbilde"; -App::$strings["Use as cover photo"] = ""; -App::$strings["Private Photo"] = "Privat bilde"; -App::$strings["View Full Size"] = "Vis i full størrelse"; -App::$strings["Remove"] = "Fjern"; -App::$strings["Edit photo"] = "Endre bilde"; -App::$strings["Rotate CW (right)"] = "Roter med klokka (mot høyre)"; -App::$strings["Rotate CCW (left)"] = "Roter mot klokka (venstre)"; -App::$strings["Enter a new album name"] = "Skriv et nytt albumnavn"; -App::$strings["or select an existing one (doubleclick)"] = "eller velg et eksisterende album (dobbeltklikk)"; -App::$strings["Caption"] = "Overskrift"; -App::$strings["Add a Tag"] = "Legg til merkelapp"; -App::$strings["Example: @bob, @Barbara_Jensen, @jim@example.com"] = "Eksempel: @bob, @Barbara_Jensen, @jim@example.com"; -App::$strings["Flag as adult in album view"] = "Flag som voksent i albumvisning"; -App::$strings["I like this (toggle)"] = "Jeg liker dette (skru av og på)"; -App::$strings["I don't like this (toggle)"] = "Jeg liker ikke dette (skru av og på)"; -App::$strings["Please wait"] = "Vennligst vent"; -App::$strings["This is you"] = "Dette er deg"; -App::$strings["Comment"] = "Kommentar"; -App::$strings["__ctx:title__ Likes"] = "Liker"; -App::$strings["__ctx:title__ Dislikes"] = "Liker ikke"; -App::$strings["__ctx:title__ Agree"] = "Enig"; -App::$strings["__ctx:title__ Disagree"] = "Uenig"; -App::$strings["__ctx:title__ Abstain"] = "Avstår"; -App::$strings["__ctx:title__ Attending"] = "Deltar"; -App::$strings["__ctx:title__ Not attending"] = "Deltar ikke"; -App::$strings["__ctx:title__ Might attend"] = "Deltar kanskje"; -App::$strings["View all"] = "Vis alle"; -App::$strings["__ctx:noun__ Like"] = array( - 0 => "Liker", - 1 => "Liker", -); -App::$strings["__ctx:noun__ Dislike"] = array( - 0 => "Liker ikke", - 1 => "Liker ikke", -); -App::$strings["Photo Tools"] = ""; -App::$strings["In This Photo:"] = "I dette bildet:"; -App::$strings["Map"] = "Kart"; -App::$strings["__ctx:noun__ Likes"] = "Liker"; -App::$strings["__ctx:noun__ Dislikes"] = "Liker ikke"; -App::$strings["Close"] = "Lukk"; -App::$strings["View Album"] = "Vis album"; -App::$strings["Recent Photos"] = "Nye bilder"; -App::$strings["sent you a private message"] = "sendte deg en privat melding"; -App::$strings["added your channel"] = "la til din kanal"; -App::$strings["g A l F d"] = "g A l F d"; -App::$strings["[today]"] = "[idag]"; -App::$strings["posted an event"] = "la ut en hendelse"; -App::$strings["Unable to find your hub."] = "Ikke i stand til å finne hubben din."; -App::$strings["Post successful."] = "Innlegg vellykket."; -App::$strings["OpenID protocol error. No ID returned."] = "OpenID protokollfeil. Ingen ID ble returnert."; -App::$strings["Login failed."] = "Innlogging mislyktes."; -App::$strings["Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."] = "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."; -App::$strings["This setting requires special processing and editing has been blocked."] = "Denne innstillingen krever spesiell behandling og redigering har blitt blokkert."; -App::$strings["Configuration Editor"] = "Konfigurasjonsbehandler"; -App::$strings["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."] = "Advarsel: kanalen din kan slutte å virke ved endring av enkelte innstillinger. Vennligst forlat denne siden med mindre du er komfortabel med dette og vet hvordan du bruker denne funksjonen riktig."; -App::$strings["Layout updated."] = "Layout er oppdatert."; -App::$strings["Edit System Page Description"] = "Endre beskrivelsen av systemsiden"; -App::$strings["Layout not found."] = "Layouten ble ikke funnet."; -App::$strings["Module Name:"] = "Modulnavn:"; -App::$strings["Layout Help"] = "Layout-hjelp"; -App::$strings["Poke"] = "Prikk"; -App::$strings["Poke somebody"] = "Dult noen"; -App::$strings["Poke/Prod"] = "Prikke/oppildne"; -App::$strings["Poke, prod or do other things to somebody"] = "Dult, prikk eller gjør andre ting med noen"; -App::$strings["Recipient"] = "Mottaker"; -App::$strings["Choose what you wish to do to recipient"] = "Velg hva du ønsker å gjøre med mottakeren"; -App::$strings["Make this post private"] = "Gjør dette innlegget privat"; -App::$strings["Fetching URL returns error: %1\$s"] = "Henting av URL gir følgende feil: %1\$s"; -App::$strings["Profile not found."] = "Profilen ble ikke funnet."; -App::$strings["Profile deleted."] = "Profilen er slettet."; -App::$strings["Profile-"] = "Profil-"; -App::$strings["New profile created."] = "Ny profil opprettet."; -App::$strings["Profile unavailable to clone."] = "Profilen er utilgjengelig for klonen."; -App::$strings["Profile unavailable to export."] = "Profilen er utilgjengelig for eksport."; -App::$strings["Profile Name is required."] = "Profilnavn er påkrevd."; -App::$strings["Marital Status"] = "Sivilstand"; -App::$strings["Romantic Partner"] = "Romantisk partner"; -App::$strings["Likes"] = "Liker"; -App::$strings["Dislikes"] = "Liker ikke"; -App::$strings["Work/Employment"] = "Arbeid/sysselsetting"; -App::$strings["Religion"] = "Religion"; -App::$strings["Political Views"] = "Politiske synspunkter"; -App::$strings["Sexual Preference"] = "Seksuelle preferanser"; -App::$strings["Homepage"] = "Hjemmeside"; -App::$strings["Interests"] = "Interesser"; -App::$strings["Profile updated."] = "Profilen er oppdatert."; -App::$strings["Hide your connections list from viewers of this profile"] = ""; -App::$strings["Edit Profile Details"] = "Endre profildetaljer"; -App::$strings["View this profile"] = "Vis denne profilen"; -App::$strings["Edit visibility"] = "Endre synlighet"; -App::$strings["Profile Tools"] = ""; -App::$strings["Change cover photo"] = ""; -App::$strings["Change profile photo"] = "Endre profilbilde"; -App::$strings["Create a new profile using these settings"] = "Lag en ny profil ved å bruke disse innstillingene"; -App::$strings["Clone this profile"] = "Klon denne profilen"; -App::$strings["Delete this profile"] = "Slett denne profilen"; -App::$strings["Add profile things"] = "Legg til profilting"; -App::$strings["Personal"] = "Personlig"; -App::$strings["Relation"] = ""; -App::$strings["Miscellaneous"] = "Forskjellig"; -App::$strings["Import profile from file"] = "Importer profil fra fil"; -App::$strings["Export profile to file"] = "Eksporter profil til fil"; -App::$strings["Your gender"] = ""; -App::$strings["Marital status"] = ""; -App::$strings["Sexual preference"] = ""; -App::$strings["Profile name"] = ""; -App::$strings["This is your default profile."] = "Dette er din standardprofil."; -App::$strings["Your full name"] = ""; -App::$strings["Title/Description"] = ""; -App::$strings["Street address"] = ""; -App::$strings["Locality/City"] = ""; -App::$strings["Region/State"] = ""; -App::$strings["Postal/Zip code"] = ""; -App::$strings["Country"] = ""; -App::$strings["Who (if applicable)"] = ""; -App::$strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Eksempler: kari123, Kari Villiamsen, kari@example.com"; -App::$strings["Since (date)"] = ""; -App::$strings["Tell us about yourself"] = ""; -App::$strings["Hometown"] = ""; -App::$strings["Political views"] = ""; -App::$strings["Religious views"] = ""; -App::$strings["Keywords used in directory listings"] = ""; -App::$strings["Example: fishing photography software"] = "Eksempel: fisking fotografering programvare"; -App::$strings["Musical interests"] = "Musikkinteresser"; -App::$strings["Books, literature"] = "Bøker, litteratur"; -App::$strings["Television"] = "TV/fjernsyn"; -App::$strings["Film/Dance/Culture/Entertainment"] = ""; -App::$strings["Hobbies/Interests"] = "Hobbier/Interesser"; -App::$strings["Love/Romance"] = ""; -App::$strings["School/Education"] = ""; -App::$strings["Contact information and social networks"] = ""; -App::$strings["My other channels"] = "Mine andre kanaler"; -App::$strings["Profile Image"] = "Profilbilde"; -App::$strings["Edit Profiles"] = "Endre profiler"; -App::$strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Hold nede Shift-knappen og last siden på nytt eller tøm nettleserens mellomlager hvis det nye bildet ikke vises umiddelbart."; -App::$strings["Upload Profile Photo"] = "Last opp profilbilde:"; -App::$strings["Invalid profile identifier."] = "Ugyldig profil-identifikator."; -App::$strings["Profile Visibility Editor"] = "Endre profilsynlighet"; -App::$strings["Profile"] = "Profil"; -App::$strings["Click on a contact to add or remove."] = "Klikk på en kontakt for å legge til eller fjerne."; -App::$strings["Visible To"] = "Synlig for"; -App::$strings["Public Hubs"] = "Offentlige huber"; -App::$strings["The listed hubs allow public registration for the \$Projectname network. All hubs in the network are interlinked so membership on any of them conveys membership in the network as a whole. Some hubs may require subscription or provide tiered service plans. The hub itself may provide additional details."] = "Nettstedene på listen tillater offentlig registrering i \$Projectname-nettverket. Alle nettsteder i nettverket er forbundet så medlemskap på enhver av dem formidler medlemskap i nettverket som helhet. Noen nettsteder kan kreve abonnement eller tilby lagdelte tjenesteavtaler. Nettstedene selv kan gi tilleggsopplysninger."; -App::$strings["Hub URL"] = "Nettstedets URL"; -App::$strings["Access Type"] = "Tilgangstype"; -App::$strings["Registration Policy"] = "Retningslinjer for registrering"; -App::$strings["Stats"] = ""; -App::$strings["Software"] = ""; -App::$strings["Ratings"] = "Vurderinger"; -App::$strings["Rate"] = "Vurder"; -App::$strings["Website:"] = "Nettsted:"; -App::$strings["Remote Channel [%s] (not yet known on this site)"] = "Fjerntliggende kanal [%s] (foreløpig ikke kjent på dette nettstedet)"; -App::$strings["Rating (this information is public)"] = "Vurdering (denne informasjonen er offentlig)"; -App::$strings["Optionally explain your rating (this information is public)"] = "Velg om du vil forklare din vurdering (denne informasjonen er offentlig)"; -App::$strings["No ratings"] = "Ingen vurderinger"; -App::$strings["Rating: "] = "Vurdering:"; -App::$strings["Website: "] = "Nettsted:"; -App::$strings["Description: "] = "Beskrivelse:"; App::$strings["Theme settings updated."] = "Temainnstillinger er oppdatert."; App::$strings["# Accounts"] = "# Kontoer"; App::$strings["# blocked accounts"] = "# blokkerte kontoer"; @@ -798,7 +778,7 @@ App::$strings["# Channels"] = "# Kanaler"; App::$strings["# primary"] = "# hoved"; App::$strings["# clones"] = "# kloner"; App::$strings["Message queues"] = "Meldingskøer"; -App::$strings["Your software should be updated"] = ""; +App::$strings["Your software should be updated"] = "Programvaren din bør oppdateres"; App::$strings["Administration"] = "Administrasjon"; App::$strings["Summary"] = "Sammendrag"; App::$strings["Registered accounts"] = "Registrerte kontoer"; @@ -806,8 +786,8 @@ App::$strings["Pending registrations"] = "Ventende registreringer"; App::$strings["Registered channels"] = "Registrerte kanaler"; App::$strings["Active plugins"] = "Aktive tilleggsfunksjoner"; App::$strings["Version"] = "Versjon"; -App::$strings["Repository version (master)"] = ""; -App::$strings["Repository version (dev)"] = ""; +App::$strings["Repository version (master)"] = "Depotversjon (master)"; +App::$strings["Repository version (dev)"] = "Depotversjon (dev)"; App::$strings["Site settings updated."] = "Nettstedsinnstillinger er oppdatert."; App::$strings["Default"] = "Standard"; App::$strings["mobile"] = "mobil"; @@ -860,10 +840,10 @@ App::$strings["Force publish"] = "Tving publisering"; App::$strings["Check to force all profiles on this site to be listed in the site directory."] = "Kryss av for å tvinge alle profiler på dette nettstedet til å bli oppført i nettstedet sin katalog."; App::$strings["Import Public Streams"] = "Importer offentlige innholdsstrømmer"; App::$strings["Import and allow access to public content pulled from other sites. Warning: this content is unmoderated."] = "Importer og gi tilgang til offentlig innhold trukket inn fra andre nettsteder. Advarsel: dette innholdet er ikke moderert."; -App::$strings["Login on Homepage"] = ""; +App::$strings["Login on Homepage"] = "Logg inn på hjemmesiden"; App::$strings["Present a login box to visitors on the home page if no other content has been configured."] = "Presenter en innloggingsboks til besøkende på hjemmesiden hvis ikke noe annet innhold har blitt konfigurert."; -App::$strings["Enable context help"] = ""; -App::$strings["Display contextual help for the current page when the help button is pressed."] = ""; +App::$strings["Enable context help"] = "Skru på kontekstsensitiv hjelp"; +App::$strings["Display contextual help for the current page when the help button is pressed."] = "Vis hjelp for den gjeldende siden når Hjelp-knappen trykkes."; App::$strings["Directory Server URL"] = "Katalogtjener URL"; App::$strings["Default directory server"] = "Standard katalogtjener"; App::$strings["Proxy user"] = "Brukernavn mellomtjener"; @@ -889,24 +869,24 @@ App::$strings["ID"] = "ID"; App::$strings["for channel"] = "for kanalen"; App::$strings["on server"] = "på tjener"; App::$strings["Server"] = "Tjener"; -App::$strings["By default, unfiltered HTML is allowed in embedded media. This is inherently insecure."] = ""; -App::$strings["The recommended setting is to only allow unfiltered HTML from the following sites:"] = ""; -App::$strings["https://youtube.com/
https://www.youtube.com/
https://youtu.be/
https://vimeo.com/
https://soundcloud.com/
"] = ""; -App::$strings["All other embedded content will be filtered, unless embedded content from that site is explicitly blocked."] = ""; +App::$strings["By default, unfiltered HTML is allowed in embedded media. This is inherently insecure."] = "Standardinnstillingen er at ufiltrert HTML er tillat ved innebygging av media. Dette er grunnleggende usikkert."; +App::$strings["The recommended setting is to only allow unfiltered HTML from the following sites:"] = "Anbefalt innstilling er å bare tillate ufiltrert HTML fra følgende nettsteder:"; +App::$strings["https://youtube.com/
https://www.youtube.com/
https://youtu.be/
https://vimeo.com/
https://soundcloud.com/
"] = "https://youtube.com/
https://www.youtube.com/
https://youtu.be/
https://vimeo.com/
https://soundcloud.com/
"; +App::$strings["All other embedded content will be filtered, unless embedded content from that site is explicitly blocked."] = "Alt annet innebygget innhold vil bli filtrert, med mindre innebygget innhold fra det nettstedet er eksplisitt blokkert."; App::$strings["Security"] = "Sikkerhet"; App::$strings["Block public"] = "Blokker offentlig tilgang"; App::$strings["Check to block public access to all otherwise public personal pages on this site unless you are currently authenticated."] = "Kryss av for å blokkere tilgang til alle personlige sider som ellers ville vært offentlig tilgjengelige på dette nettstedet med mindre du er logget inn."; -App::$strings["Set \"Transport Security\" HTTP header"] = ""; -App::$strings["Set \"Content Security Policy\" HTTP header"] = ""; +App::$strings["Set \"Transport Security\" HTTP header"] = "Sett HTTP header \"Transport Security\""; +App::$strings["Set \"Content Security Policy\" HTTP header"] = "Sett HTTP header \"Content Security Policy\""; App::$strings["Allow communications only from these sites"] = "Tillat kommunikasjon med bare disse nettstedene"; App::$strings["One site per line. Leave empty to allow communication from anywhere by default"] = "Et nettsted per linje. La det stå tomt for å tillate kommunikasjon med ethvert nettsted som standard"; App::$strings["Block communications from these sites"] = "Blokker kommunikasjon fra disse nettstedene"; App::$strings["Allow communications only from these channels"] = "Tillat kommunikasjon med bare disse kanalene"; App::$strings["One channel (hash) per line. Leave empty to allow from any channel by default"] = "En kanal (hash) per linje. La det stå tomt for å tillate enhver kanal som standard"; App::$strings["Block communications from these channels"] = "Blokker kommunikasjon fra disse kanalene"; -App::$strings["Only allow embeds from secure (SSL) websites and links."] = ""; -App::$strings["Allow unfiltered embedded HTML content only from these domains"] = ""; -App::$strings["One site per line. By default embedded content is filtered."] = ""; +App::$strings["Only allow embeds from secure (SSL) websites and links."] = "Bare tillat innebygging fra sikrede (SSL) nettsteder og lenker."; +App::$strings["Allow unfiltered embedded HTML content only from these domains"] = "Tillat ufiltrert innebygging av HTML-innhold bare fra disse domenene"; +App::$strings["One site per line. By default embedded content is filtered."] = "Et nettsted per linje. Det er standard at innebygget innhold er filtrert."; App::$strings["Block embedded HTML from these domains"] = "Blokker innbygget HTML fra disse domenene"; App::$strings["Update has been marked successful"] = "Oppdateringen har blitt merket som en suksess"; App::$strings["Executing %s failed. Check system logs."] = "Utføring av %s feilet. Sjekk systemlogger."; @@ -938,7 +918,7 @@ App::$strings["Account '%s' blocked"] = "Kontoen '%s' blokkert"; App::$strings["Account '%s' unblocked"] = "Kontoen '%s' er ikke blokkert lenger"; App::$strings["Accounts"] = "Kontoer"; App::$strings["select all"] = "velg alle"; -App::$strings["Registrations waiting for confirm"] = ""; +App::$strings["Registrations waiting for confirm"] = "Registreringer venter på bekreftelse"; App::$strings["Request date"] = "Dato for forespørsel"; App::$strings["No registrations."] = "Ingen registreringer."; App::$strings["Deny"] = "Avslå"; @@ -990,18 +970,18 @@ App::$strings["Maximum project version: "] = "Maksimum prosjektversjon:"; App::$strings["Minimum PHP version: "] = "Minimum PHP-versjon:"; App::$strings["Requires: "] = "Krever:"; App::$strings["Disabled - version incompatibility"] = "Skrudd av - versjonsinkompatibilitet"; -App::$strings["Enter the public git repository URL of the plugin repo."] = ""; -App::$strings["Plugin repo git URL"] = ""; -App::$strings["Custom repo name"] = ""; -App::$strings["(optional)"] = ""; -App::$strings["Download Plugin Repo"] = ""; -App::$strings["Install new repo"] = ""; +App::$strings["Enter the public git repository URL of the plugin repo."] = "Skriv inn URL-en til det offentlige git-depoet til tillegget."; +App::$strings["Plugin repo git URL"] = "Git-URL-en til tillegget"; +App::$strings["Custom repo name"] = "Tilpasset depotnavn"; +App::$strings["(optional)"] = "(valgfritt)"; +App::$strings["Download Plugin Repo"] = "Last ned depotet til tillegget"; +App::$strings["Install new repo"] = "Installer nytt depot"; App::$strings["Install"] = "Installer"; -App::$strings["Manage Repos"] = ""; -App::$strings["Installed Plugin Repositories"] = ""; -App::$strings["Install a New Plugin Repository"] = ""; +App::$strings["Manage Repos"] = "Håndter depoter"; +App::$strings["Installed Plugin Repositories"] = "Installerede tilleggsdepoter"; +App::$strings["Install a New Plugin Repository"] = "Installer et nytt tillleggsdepot"; App::$strings["Update"] = "Oppdater"; -App::$strings["Switch branch"] = ""; +App::$strings["Switch branch"] = "Bytt gren"; App::$strings["No themes found."] = "Ingen temaer er funnet."; App::$strings["Screenshot"] = "Skjermbilde"; App::$strings["Themes"] = "Temaer"; @@ -1012,7 +992,7 @@ App::$strings["Logs"] = "Logger"; App::$strings["Clear"] = "Tøm"; App::$strings["Debugging"] = "Feilsøking"; App::$strings["Log file"] = "Loggfil"; -App::$strings["Must be writable by web server. Relative to your top-level webserver directory."] = ""; +App::$strings["Must be writable by web server. Relative to your top-level webserver directory."] = "Må kunne skrives til av webtjenesten. Relativ til din toppnivåkatalog på webtjeneren."; App::$strings["Log level"] = "Loggnivå"; App::$strings["New Profile Field"] = "Nytt profilfelt"; App::$strings["Field nickname"] = "Feltets kallenavn"; @@ -1024,26 +1004,98 @@ App::$strings["Help text"] = "Hjelpetekst"; App::$strings["Additional info (optional)"] = "Tilleggsinformasjon (valgfritt)"; App::$strings["Field definition not found"] = "Feltdefinisjonen ble ikke funnet"; App::$strings["Edit Profile Field"] = "Endre profilfelt"; -App::$strings["Profile Fields"] = ""; -App::$strings["Basic Profile Fields"] = ""; -App::$strings["Advanced Profile Fields"] = ""; -App::$strings["(In addition to basic fields)"] = ""; -App::$strings["All available fields"] = ""; -App::$strings["Custom Fields"] = ""; -App::$strings["Create Custom Field"] = ""; -App::$strings["App installed."] = "App installert."; -App::$strings["Malformed app."] = "Feil oppsett for app-en."; -App::$strings["Embed code"] = "Innbyggingskode"; -App::$strings["Edit App"] = "Endre app"; -App::$strings["Create App"] = "Lag app"; -App::$strings["Name of app"] = "Navn på app"; -App::$strings["Location (URL) of app"] = "Plassering (URL) til app"; -App::$strings["Photo icon URL"] = "Bildeikon URL"; -App::$strings["80 x 80 pixels - optional"] = "80 x80 pixler - valgfritt"; -App::$strings["Categories (optional, comma separated list)"] = ""; -App::$strings["Version ID"] = "Versjons-ID"; -App::$strings["Price of app"] = "Pris på app"; -App::$strings["Location (URL) to purchase app"] = "Plassering (URL) for å kjøpe app"; +App::$strings["Profile Fields"] = "Profilfelter"; +App::$strings["Basic Profile Fields"] = "Grunnleggende profilfelter"; +App::$strings["Advanced Profile Fields"] = "Avanserte profilfelter"; +App::$strings["(In addition to basic fields)"] = "(i tillegg til grunnleggende felter)"; +App::$strings["All available fields"] = "Alle tilgjengelige felter"; +App::$strings["Custom Fields"] = "Tilpassede felter"; +App::$strings["Create Custom Field"] = "Lag tilpasset felt"; +App::$strings["Name or caption"] = "Navn eller overskrift"; +App::$strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\""] = "Eksempel: \"Ola Nordmann\", \"Lisa og hestene hennes\", \"Fotball\", \"Sykkelgruppa\""; +App::$strings["Choose a short nickname"] = "Velg et kort kallenavn"; +App::$strings["Your nickname will be used to create an easy to remember channel address e.g. nickname%s"] = "Ditt kallenavn brukes til å lage en kanaladresse som er enkel å huske, for eksempel kallenavn%s"; +App::$strings["Channel role and privacy"] = "Kanalrolle og personvern"; +App::$strings["Select a channel role with your privacy requirements."] = "Velg en kanalrolle for ditt personvernbehov."; +App::$strings["Read more about roles"] = "Les mer om roller"; +App::$strings["Create Channel"] = "Lag kanal"; +App::$strings["A channel is your identity on this network. It can represent a person, a blog, or a forum to name a few. Channels can make connections with other channels to share information with highly detailed permissions."] = "En kanal er din identitet i dette nettverket. Den kan representere en person, en blogg eller et forum for å nevne noe. Kanaler kan ha forbindelser til andre kanaler for å dele informasjon, og med svært detaljerte tillatelser."; +App::$strings["or import an existing channel from another location."] = "eller importer en eksisterende kanal fra et annet sted."; +App::$strings["sent you a private message"] = "sendte deg en privat melding"; +App::$strings["added your channel"] = "la til din kanal"; +App::$strings["g A l F d"] = "g A l F d"; +App::$strings["[today]"] = "[idag]"; +App::$strings["posted an event"] = "la ut en hendelse"; +App::$strings["Invalid request identifier."] = "Ugyldig forespørselsidentifikator."; +App::$strings["Discard"] = "Forkast"; +App::$strings["Mark all system notifications seen"] = "Merk alle systemvarsler som sett"; +App::$strings["Poke"] = "Prikk"; +App::$strings["Poke somebody"] = "Dult noen"; +App::$strings["Poke/Prod"] = "Prikke/oppildne"; +App::$strings["Poke, prod or do other things to somebody"] = "Dult, prikk eller gjør andre ting med noen"; +App::$strings["Recipient"] = "Mottaker"; +App::$strings["Choose what you wish to do to recipient"] = "Velg hva du ønsker å gjøre med mottakeren"; +App::$strings["Make this post private"] = "Gjør dette innlegget privat"; +App::$strings["Unable to find your hub."] = "Ikke i stand til å finne hubben din."; +App::$strings["Post successful."] = "Innlegg vellykket."; +App::$strings["OpenID protocol error. No ID returned."] = "OpenID protokollfeil. Ingen ID ble returnert."; +App::$strings["Login failed."] = "Innlogging mislyktes."; +App::$strings["Invalid profile identifier."] = "Ugyldig profil-identifikator."; +App::$strings["Profile Visibility Editor"] = "Endre profilsynlighet"; +App::$strings["Profile"] = "Profil"; +App::$strings["Click on a contact to add or remove."] = "Klikk på en kontakt for å legge til eller fjerne."; +App::$strings["Visible To"] = "Synlig for"; +App::$strings["This setting requires special processing and editing has been blocked."] = "Denne innstillingen krever spesiell behandling og redigering har blitt blokkert."; +App::$strings["Configuration Editor"] = "Konfigurasjonsbehandler"; +App::$strings["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."] = "Advarsel: kanalen din kan slutte å virke ved endring av enkelte innstillinger. Vennligst forlat denne siden med mindre du er komfortabel med dette og vet hvordan du bruker denne funksjonen riktig."; +App::$strings["Fetching URL returns error: %1\$s"] = "Henting av URL gir følgende feil: %1\$s"; +App::$strings["Version %s"] = "Versjon %s"; +App::$strings["Installed plugins/addons/apps:"] = "Installerte tilleggsfunksjoner/tillegg/apper:"; +App::$strings["No installed plugins/addons/apps"] = "Ingen installerte tilleggsfunksjoner/tillegg/apper"; +App::$strings["This is a hub of \$Projectname - a global cooperative network of decentralized privacy enhanced websites."] = "Dette er en \$Projectname-hub - et globalt samhandlende nettverk av desentraliserte nettsteder med innbygget personvern."; +App::$strings["Tag: "] = "Merkelapp:"; +App::$strings["Last background fetch: "] = "Siste innhenting i bakgrunnen:"; +App::$strings["Current load average: "] = "Gjeldende belastningsgjennomsnitt:"; +App::$strings["Running at web location"] = "Kjører på webplasseringen"; +App::$strings["Please visit hubzilla.org to learn more about \$Projectname."] = "Vennligst besøk hubzilla.org for å lære mer om \$Projectname."; +App::$strings["Bug reports and issues: please visit"] = "Feilmeldinger og feilretting: vennligst besøk"; +App::$strings["\$projectname issues"] = "\$projectname problemer"; +App::$strings["Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com"] = "Forslag, ros og så videre - vennligst e-post \"redmatrix\" hos librelist - punktum com"; +App::$strings["Site Administrators"] = "Nettstedsadministratorer"; +App::$strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Vi støtte på et problem under innloggingen med din OpenID. Vennligst sjekk at ID-en er stavet riktig."; +App::$strings["The error message was:"] = "Feilmeldingen var:"; +App::$strings["Authentication failed."] = "Autentisering mislyktes."; +App::$strings["Remote Authentication"] = "Fjernautentisering"; +App::$strings["Enter your channel address (e.g. channel@example.com)"] = "Skriv din kanaladresse (for eksempel channel@exampel.com)"; +App::$strings["Authenticate"] = "Autentiser"; +App::$strings["Public Hubs"] = "Offentlige huber"; +App::$strings["The listed hubs allow public registration for the \$Projectname network. All hubs in the network are interlinked so membership on any of them conveys membership in the network as a whole. Some hubs may require subscription or provide tiered service plans. The hub itself may provide additional details."] = "Nettstedene på listen tillater offentlig registrering i \$Projectname-nettverket. Alle nettsteder i nettverket er forbundet så medlemskap på enhver av dem formidler medlemskap i nettverket som helhet. Noen nettsteder kan kreve abonnement eller tilby lagdelte tjenesteavtaler. Nettstedene selv kan gi tilleggsopplysninger."; +App::$strings["Hub URL"] = "Nettstedets URL"; +App::$strings["Access Type"] = "Tilgangstype"; +App::$strings["Registration Policy"] = "Retningslinjer for registrering"; +App::$strings["Stats"] = "Statistikk"; +App::$strings["Software"] = "Programvare"; +App::$strings["Ratings"] = "Vurderinger"; +App::$strings["Rate"] = "Vurder"; +App::$strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Hold nede Shift-knappen og last siden på nytt eller tøm nettleserens mellomlager hvis det nye bildet ikke vises umiddelbart."; +App::$strings["Upload Profile Photo"] = "Last opp profilbilde:"; +App::$strings["Block Name"] = "Byggeklossens navn"; +App::$strings["Blocks"] = "Byggeklosser"; +App::$strings["Block Title"] = "Byggeklossens tittel"; +App::$strings["Website:"] = "Nettsted:"; +App::$strings["Remote Channel [%s] (not yet known on this site)"] = "Fjerntliggende kanal [%s] (foreløpig ikke kjent på dette nettstedet)"; +App::$strings["Rating (this information is public)"] = "Vurdering (denne informasjonen er offentlig)"; +App::$strings["Optionally explain your rating (this information is public)"] = "Velg om du vil forklare din vurdering (denne informasjonen er offentlig)"; +App::$strings["No ratings"] = "Ingen vurderinger"; +App::$strings["Rating: "] = "Vurdering:"; +App::$strings["Website: "] = "Nettsted:"; +App::$strings["Description: "] = "Beskrivelse:"; +App::$strings["Apps"] = "Apper"; +App::$strings["Title (optional)"] = "Tittel (valgfri)"; +App::$strings["Edit Block"] = "Endre byggekloss"; +App::$strings["No channel."] = "Ingen kanal."; +App::$strings["Common connections"] = "Felles forbindelser"; +App::$strings["No connections in common."] = "Ingen forbindelser felles."; App::$strings["Select a bookmark folder"] = "Velg en bokmerkemappe"; App::$strings["Save Bookmark"] = "Lagre bokmerke"; App::$strings["URL of bookmark"] = "URL-en til bokmerket"; @@ -1069,7 +1121,7 @@ App::$strings["no"] = "nei"; App::$strings["yes"] = "ja"; App::$strings["Membership on this site is by invitation only."] = "Medlemskap ved dette nettstedet skjer kun via invitasjon."; App::$strings["Register"] = "Registrer"; -App::$strings["Proceed to create your first channel"] = "Gå videre for å lage din første kanal"; +App::$strings["This site may require email verification after submitting this form. If you are returned to a login page, please check your email for instructions."] = ""; App::$strings["Please login."] = "Vennligst logg inn."; App::$strings["Account removals are not allowed within 48 hours of changing the account password."] = "Sletting av kontoer er ikke tillatt innen 48 timer etter endring av kontopassordet."; App::$strings["Remove This Account"] = "Slett denne kontoen"; @@ -1086,17 +1138,23 @@ App::$strings["This channel will be completely removed from the network. "] = "D App::$strings["Remove this channel and all its clones from the network"] = "Fjern denne kanalen og alle dens kloner fra nettverket"; App::$strings["By default only the instance of the channel located on this hub will be removed from the network"] = "Som standard vil bare forekomsten av denne kanalen lokalisert på denne hubben bli fjernet fra nettverket"; App::$strings["Remove Channel"] = "Fjern kanal"; -App::$strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Vi støtte på et problem under innloggingen med din OpenID. Vennligst sjekk at ID-en er stavet riktig."; -App::$strings["The error message was:"] = "Feilmeldingen var:"; -App::$strings["Authentication failed."] = "Autentisering mislyktes."; -App::$strings["Remote Authentication"] = "Fjernautentisering"; -App::$strings["Enter your channel address (e.g. channel@example.com)"] = "Skriv din kanaladresse (for eksempel channel@exampel.com)"; -App::$strings["Authenticate"] = "Autentiser"; +App::$strings["Export Channel"] = "Eksporter kanal"; +App::$strings["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."] = "Eksporter grunnleggende informasjon om kanalen din til en fil. Denne er en sikkerhetskopi av dine forbindelser, tillatelser, profil og grunnleggende data, som kan brukes til å importere dine data til en ny hub, men den tar ikke med innholdet."; +App::$strings["Export Content"] = "Eksporter innhold"; +App::$strings["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."] = "Eksporter din kanalinformasjon og det nyeste innholdet til en JSON-sikkerhetskopi, som kan gjenopprettes eller importeres til en annen hub. Denne lager en sikkerhetskopi av alle dine forbindelser, tillatelser, profildata og flere måneder av innholdet ditt. Denne filen kan være SVÆRT stor. Vennligst vær tålmodig - det kan ta flere minutter før denne nedlastningen begynner."; +App::$strings["Export your posts from a given year."] = "Eksporter dine innlegg fra et bestemt år"; +App::$strings["You may also export your posts and conversations for a particular year or month. Adjust the date in your browser location bar to select other dates. If the export fails (possibly due to memory exhaustion on your server hub), please try again selecting a more limited date range."] = "Du kan også eksportere dine innlegg og samtaler for et bestemt år eller måned. Juster datoen i din nettlesers adresselinje for å velge andre datoer. Hvis eksporten feiler (muligens på grunn av utilstrekkelig minne på din hub), vennligst prøv igjen med et mer begrenset datoområde."; +App::$strings["To select all posts for a given year, such as this year, visit %2\$s"] = "For å velge alle innlegg for et gitt år, slik som iår, besøk %2\$s"; +App::$strings["To select all posts for a given month, such as January of this year, visit %2\$s"] = "For å velge alle innlegg fra en gitt måned, slik som januar i år, besøk %2\$s"; +App::$strings["These content files may be imported or restored by visiting %2\$s on any site containing your channel. For best results please import or restore these in date order (oldest first)."] = "Disse innholdsfilene kan importeres eller gjenopprettes ved å besøke %2\$s på ethvert nettsted som inneholder din kanal. For best resultat, vennligst importer eller gjenopprett disse etter dato (eldste først)."; App::$strings["Items tagged with: %s"] = "Elementer merket med: %s"; App::$strings["Search results for: %s"] = "Søkeresultater for: %s"; App::$strings["No service class restrictions found."] = "Ingen restriksjoner er funnet i tjenesteklasse."; App::$strings["Name is required"] = "Navn er påkrevd"; App::$strings["Key and Secret are required"] = "Nøkkel og hemmelighet er påkrevd"; +App::$strings["This channel is limited to %d tokens"] = ""; +App::$strings["Name and Password are required."] = ""; +App::$strings["Token saved."] = ""; App::$strings["Not valid email."] = "Ikke gyldig e-post."; App::$strings["Protected email address. Cannot change to that email."] = "Beskyttet e-postadresse. Kan ikke endre til den e-postadressen."; App::$strings["System failure storing new email. Please try again."] = "Systemfeil ved lagring av ny e-post. Vennligst prøv igjen."; @@ -1129,6 +1187,12 @@ App::$strings["Confirm New Password"] = "Bekreft nytt passord"; App::$strings["Leave password fields blank unless changing"] = "La passordfeltene stå blanke om det ikke skal endres"; App::$strings["Email Address:"] = "E-postadresse:"; App::$strings["Remove this account including all its channels"] = "Slett denne kontoen inkludert alle dens kanaler"; +App::$strings["Use this form to create temporary access identifiers to share things with non-members. These identities may be used in Access Control Lists and visitors may login using these credentials to access the private content."] = ""; +App::$strings["You may also provide dropbox style access links to friends and associates by adding the Login Password to any specific site URL as shown. Examples:"] = ""; +App::$strings["Guest Access Tokens"] = ""; +App::$strings["Login Name"] = ""; +App::$strings["Login Password"] = ""; +App::$strings["Expires (yyyy-mm-dd)"] = ""; App::$strings["Additional Features"] = "Ekstra funksjoner"; App::$strings["Connector Settings"] = "Koblingsinnstillinger"; App::$strings["No special theme for mobile devices"] = "Ikke noe spesielt tema for mobile enheter"; @@ -1188,14 +1252,14 @@ App::$strings["Allow others to tag your posts"] = "Tillat andre å merke dine in App::$strings["Often used by the community to retro-actively flag inappropriate content"] = "Ofte brukt av fellesskapet for å merke upassende innhold i etterkant"; App::$strings["Advanced Privacy Settings"] = "Avanserte personverninnstillinger"; App::$strings["Expire other channel content after this many days"] = "Annet kanal innhold utløper etter så mange dager"; -App::$strings["0 or blank to use the website limit."] = ""; -App::$strings["This website expires after %d days."] = ""; -App::$strings["This website does not expire imported content."] = ""; -App::$strings["The website limit takes precedence if lower than your limit."] = ""; +App::$strings["0 or blank to use the website limit."] = "0 eller ikke noe for å bruke nettstedets grense."; +App::$strings["This website expires after %d days."] = "Dette nettstedet utgår etter %d dager."; +App::$strings["This website does not expire imported content."] = "Dette nettstedet lar ikke importert innhold utgå."; +App::$strings["The website limit takes precedence if lower than your limit."] = "Nettstedets grense bestemmer hvis lavere enn din grense."; App::$strings["Maximum Friend Requests/Day:"] = "Maksimalt antall venneforespørsler per dag:"; App::$strings["May reduce spam activity"] = "Kan redusere søppelpostaktivitet"; -App::$strings["Default Post and Publish Permissions"] = ""; -App::$strings["Use my default audience setting for the type of object published"] = ""; +App::$strings["Default Post and Publish Permissions"] = "Standard innleggs- og publiseringstillatelser"; +App::$strings["Use my default audience setting for the type of object published"] = "Bruk min standard målgruppeinnstilling for objekttypen som publiseres"; App::$strings["Channel permissions category:"] = "Kategori med kanaltillatelser:"; App::$strings["Maximum private messages per day from unknown people:"] = "Maksimalt antall private meldinger per dag fra ukjente personer:"; App::$strings["Useful to reduce spamming"] = "Nyttig for å redusere søppelpost"; @@ -1270,8 +1334,8 @@ App::$strings["Please select a default timezone for your website"] = "Vennligst App::$strings["Site settings"] = "Nettstedets innstillinger"; App::$strings["Enable \$Projectname advanced features?"] = "Skru på avansertehubzilla.org to learn more about \$Projectname."] = "Vennligst besøk hubzilla.org for å lære mer om \$Projectname."; -App::$strings["Bug reports and issues: please visit"] = "Feilmeldinger og feilretting: vennligst besøk"; -App::$strings["\$projectname issues"] = "\$projectname problemer"; -App::$strings["Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com"] = "Forslag, ros og så videre - vennligst e-post \"redmatrix\" hos librelist - punktum com"; -App::$strings["Site Administrators"] = "Nettstedsadministratorer"; +App::$strings["Thing updated"] = "Tingen er oppdatert"; +App::$strings["Object store: failed"] = "Objektlagring: mislyktes"; +App::$strings["Thing added"] = "Ting lagt til"; +App::$strings["OBJ: %1\$s %2\$s %3\$s"] = "OBJ: %1\$s %2\$s %3\$s"; +App::$strings["Show Thing"] = "Vis ting"; +App::$strings["item not found."] = "element ble ikke funnet."; +App::$strings["Edit Thing"] = "Endre ting"; +App::$strings["Select a profile"] = "Velg en profil"; +App::$strings["Post an activity"] = "Legg inn en aktivitet"; +App::$strings["Only sends to viewers of the applicable profile"] = "Sender bare til seere av den aktuelle profilen"; +App::$strings["Name of thing e.g. something"] = "Navn på ting for eksempel noe"; +App::$strings["URL of thing (optional)"] = "URL til ting (valgfritt)"; +App::$strings["URL for photo of thing (optional)"] = "URL til bilde av ting (valgfritt)"; +App::$strings["Add Thing to your Profile"] = "Legg til ting i din profil"; App::$strings["Failed to create source. No channel selected."] = "Mislyktes med å lage kilde. Ingen kanal er valgt."; App::$strings["Source created."] = "Kilden er laget."; App::$strings["Source updated."] = "Kilden er oppdatert."; @@ -1357,7 +1421,7 @@ App::$strings["Import all or selected content from the following channel into th App::$strings["Only import content with these words (one per line)"] = "Bare importer innhold med disse ordene (ett ord per linje)"; App::$strings["Leave blank to import all public content"] = "La stå tomt for å importere alt offentlig innhold"; App::$strings["Channel Name"] = "Kanalnavn"; -App::$strings["Add the following categories to posts imported from this source (comma separated)"] = ""; +App::$strings["Add the following categories to posts imported from this source (comma separated)"] = "Legg til følgende kategorier til innlegg importert fra denne kilden (kommeseparert)"; App::$strings["Source not found."] = "Kilden ble ikke funnet."; App::$strings["Edit Source"] = "Endre kilde"; App::$strings["Delete Source"] = "Slett kilde"; @@ -1373,60 +1437,38 @@ App::$strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s merket %3\$s til App::$strings["Tag removed"] = "Merkelapp fjernet"; App::$strings["Remove Item Tag"] = "Fjern merkelapp fra element"; App::$strings["Select a tag to remove: "] = "Velg merkelapp å fjerne:"; -App::$strings["Thing updated"] = "Tingen er oppdatert"; -App::$strings["Object store: failed"] = "Objektlagring: mislyktes"; -App::$strings["Thing added"] = "Ting lagt til"; -App::$strings["OBJ: %1\$s %2\$s %3\$s"] = "OBJ: %1\$s %2\$s %3\$s"; -App::$strings["Show Thing"] = "Vis ting"; -App::$strings["item not found."] = "element ble ikke funnet."; -App::$strings["Edit Thing"] = "Endre ting"; -App::$strings["Select a profile"] = "Velg en profil"; -App::$strings["Post an activity"] = "Legg inn en aktivitet"; -App::$strings["Only sends to viewers of the applicable profile"] = "Sender bare til seere av den aktuelle profilen"; -App::$strings["Name of thing e.g. something"] = "Navn på ting for eksempel noe"; -App::$strings["URL of thing (optional)"] = "URL til ting (valgfritt)"; -App::$strings["URL for photo of thing (optional)"] = "URL til bilde av ting (valgfritt)"; -App::$strings["Add Thing to your Profile"] = "Legg til ting i din profil"; -App::$strings["Export Channel"] = "Eksporter kanal"; -App::$strings["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."] = "Eksporter grunnleggende informasjon om kanalen din til en fil. Denne er en sikkerhetskopi av dine forbindelser, tillatelser, profil og grunnleggende data, som kan brukes til å importere dine data til en ny hub, men den tar ikke med innholdet."; -App::$strings["Export Content"] = "Eksporter innhold"; -App::$strings["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."] = "Eksporter din kanalinformasjon og det nyeste innholdet til en JSON-sikkerhetskopi, som kan gjenopprettes eller importeres til en annen hub. Denne lager en sikkerhetskopi av alle dine forbindelser, tillatelser, profildata og flere måneder av innholdet ditt. Denne filen kan være SVÆRT stor. Vennligst vær tålmodig - det kan ta flere minutter før denne nedlastningen begynner."; -App::$strings["Export your posts from a given year."] = "Eksporter dine innlegg fra et bestemt år"; -App::$strings["You may also export your posts and conversations for a particular year or month. Adjust the date in your browser location bar to select other dates. If the export fails (possibly due to memory exhaustion on your server hub), please try again selecting a more limited date range."] = "Du kan også eksportere dine innlegg og samtaler for et bestemt år eller måned. Juster datoen i din nettlesers adresselinje for å velge andre datoer. Hvis eksporten feiler (muligens på grunn av utilstrekkelig minne på din hub), vennligst prøv igjen med et mer begrenset datoområde."; -App::$strings["To select all posts for a given year, such as this year, visit %2\$s"] = "For å velge alle innlegg for et gitt år, slik som iår, besøk %2\$s"; -App::$strings["To select all posts for a given month, such as January of this year, visit %2\$s"] = "For å velge alle innlegg fra en gitt måned, slik som januar i år, besøk %2\$s"; -App::$strings["These content files may be imported or restored by visiting %2\$s on any site containing your channel. For best results please import or restore these in date order (oldest first)."] = "Disse innholdsfilene kan importeres eller gjenopprettes ved å besøke %2\$s på ethvert nettsted som inneholder din kanal. For best resultat, vennligst importer eller gjenopprett disse etter dato (eldste først)."; -App::$strings["No connections."] = "Ingen forbindelser."; -App::$strings["Visit %s's profile [%s]"] = "Besøk %s sin profil [%s]"; -App::$strings["View Connections"] = "Vis forbindelser"; -App::$strings["Source of Item"] = "Kilde til element"; App::$strings["Webpages"] = "Websider"; App::$strings["Actions"] = "Handlinger"; App::$strings["Page Link"] = "Sidelenke"; App::$strings["Page Title"] = "Sidetittel"; +App::$strings["Not found"] = ""; +App::$strings["Wiki"] = ""; +App::$strings["Sandbox"] = ""; +App::$strings["\"# Wiki Sandbox\\n\\nContent you **edit** and **preview** here *will not be saved*.\""] = ""; +App::$strings["Revision Comparison"] = ""; +App::$strings["Revert"] = ""; +App::$strings["Enter the name of your new wiki:"] = ""; +App::$strings["Enter the name of the new page:"] = ""; +App::$strings["Enter the new name:"] = ""; +App::$strings["Embed image from photo albums"] = ""; +App::$strings["Embed an image from your albums"] = ""; +App::$strings["OK"] = "OK"; +App::$strings["Choose images to embed"] = ""; +App::$strings["Choose an album"] = ""; +App::$strings["Choose a different album..."] = ""; +App::$strings["Error getting album list"] = ""; +App::$strings["Error getting photo link"] = ""; +App::$strings["Error getting album"] = ""; +App::$strings["No connections."] = "Ingen forbindelser."; +App::$strings["Visit %s's profile [%s]"] = "Besøk %s sin profil [%s]"; +App::$strings["View Connections"] = "Vis forbindelser"; +App::$strings["Source of Item"] = "Kilde til element"; +App::$strings["Authorize application connection"] = "Tillat programforbindelse"; +App::$strings["Return to your app and insert this Securty Code:"] = "Gå tilbake til din app og legg inn denne sikkerhetskoden:"; +App::$strings["Please login to continue."] = "Vennligst logg inn for å fortsette."; +App::$strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Vil du tillate dette programmet å få tilgang til dine innlegg og kontakter, og/eller lage nye innlegg for deg?"; App::$strings["Xchan Lookup"] = "Xchan oppslag"; App::$strings["Lookup xchan beginning with (or webbie): "] = "Slå opp xchan som begynner med (eller webbie):"; -App::$strings["Site Admin"] = "Nettstedsadministrator"; -App::$strings["Bug Report"] = ""; -App::$strings["View Bookmarks"] = ""; -App::$strings["My Chatrooms"] = ""; -App::$strings["Firefox Share"] = ""; -App::$strings["Remote Diagnostics"] = ""; -App::$strings["Suggest Channels"] = "Foreslå kanaler"; -App::$strings["Login"] = "Logg inn"; -App::$strings["Grid"] = "Nett"; -App::$strings["Channel Home"] = "Kanalhjem"; -App::$strings["Events"] = "Hendelser"; -App::$strings["Directory"] = "Katalog"; -App::$strings["Mail"] = "Melding"; -App::$strings["Chat"] = "Chat"; -App::$strings["Probe"] = "Undersøk"; -App::$strings["Suggest"] = "Forreslå"; -App::$strings["Random Channel"] = "Tilfeldig kanal"; -App::$strings["Invite"] = "Inviter"; -App::$strings["Features"] = "Funksjoner"; -App::$strings["Post"] = "Innlegg"; -App::$strings["Purchase"] = "Kjøp"; App::$strings["Missing room name"] = "Mangler romnavn"; App::$strings["Duplicate room name"] = "Duplikat romnavn"; App::$strings["Invalid room specifier."] = "Ugyldig rom-spesifisering"; @@ -1474,6 +1516,27 @@ App::$strings["Please visit %s to approve or reject the suggestion."] = "Vennlig App::$strings["[Hubzilla:Notify]"] = "[Hubzilla:Notify]"; App::$strings["created a new post"] = "laget et nytt innlegg"; App::$strings["commented on %s's post"] = "kommenterte på %s sitt innlegg"; +App::$strings["Site Admin"] = "Nettstedsadministrator"; +App::$strings["Bug Report"] = "Feilmelding"; +App::$strings["View Bookmarks"] = "Vis bokmerker"; +App::$strings["My Chatrooms"] = "Mine chatrom"; +App::$strings["Firefox Share"] = "Firefox-deling"; +App::$strings["Remote Diagnostics"] = "Fjerndiagnostisering"; +App::$strings["Suggest Channels"] = "Foreslå kanaler"; +App::$strings["Login"] = "Logg inn"; +App::$strings["Grid"] = "Nett"; +App::$strings["Channel Home"] = "Kanalhjem"; +App::$strings["Events"] = "Hendelser"; +App::$strings["Directory"] = "Katalog"; +App::$strings["Mail"] = "Melding"; +App::$strings["Chat"] = "Chat"; +App::$strings["Probe"] = "Undersøk"; +App::$strings["Suggest"] = "Forreslå"; +App::$strings["Random Channel"] = "Tilfeldig kanal"; +App::$strings["Invite"] = "Inviter"; +App::$strings["Features"] = "Funksjoner"; +App::$strings["Post"] = "Innlegg"; +App::$strings["Purchase"] = "Kjøp"; App::$strings["Private Message"] = "Privat melding"; App::$strings["Select"] = "Velg"; App::$strings["Save to Folder"] = "Lagre i mappe"; @@ -1510,7 +1573,7 @@ App::$strings["Expires: %s"] = "Utløper: %s"; App::$strings["Save Bookmarks"] = "Lagre bokmerker"; App::$strings["Add to Calendar"] = "Legg til i kalender"; App::$strings["Mark all seen"] = "Merk alle som sett"; -App::$strings["[+] show all"] = "[+] Vis alle"; +App::$strings["%s show all"] = ""; App::$strings["Bold"] = "Uthevet"; App::$strings["Italic"] = "Kursiv"; App::$strings["Underline"] = "Understreket"; @@ -1519,9 +1582,93 @@ App::$strings["Code"] = "Kode"; App::$strings["Image"] = "Bilde"; App::$strings["Insert Link"] = "Sett inn lenke"; App::$strings["Video"] = "Video"; +App::$strings["Visible to your default audience"] = "Synlig for ditt standard publikum"; +App::$strings["Only me"] = "Bare meg"; +App::$strings["Public"] = "Offentlig"; +App::$strings["Anybody in the \$Projectname network"] = "Enhver i \$Projectname -nettverket"; +App::$strings["Any account on %s"] = "Enhver konto på %s"; +App::$strings["Any of my connections"] = "Enhver av mine forbindelser"; +App::$strings["Only connections I specifically allow"] = "Bare forbindelser som jeg spesifikt tillater"; +App::$strings["Anybody authenticated (could include visitors from other networks)"] = "Enhver som er autentisert (kan inkludere besøkende fra andre nettverk)"; +App::$strings["Any connections including those who haven't yet been approved"] = "Enhver forbindelse inkluder de som ennå ikke er blitt godkjent"; +App::$strings["This is your default setting for the audience of your normal stream, and posts."] = "Dette er dine standardinnstillinger for publikumet til din normale strøm og innlegg."; +App::$strings["This is your default setting for who can view your default channel profile"] = "Dette er din standardinnstilling for hvem som kan se din standard kanalprofil"; +App::$strings["This is your default setting for who can view your connections"] = "Dette er din standardinnstilling for hvem som kan se dine forbindelser"; +App::$strings["This is your default setting for who can view your file storage and photos"] = "Dette er din standardinnstilling for hvem som kan se fillagreret ditt og bilder"; +App::$strings["This is your default setting for the audience of your webpages"] = "Dette er din standardinnstilling for besøkende til dine websider"; App::$strings["No username found in import file."] = "Ingen brukernavn ble funnet i importfilen."; App::$strings["Unable to create a unique channel address. Import failed."] = "Klarte ikke å lage en unik kanaladresse. Import mislyktes."; App::$strings["Cannot locate DNS info for database server '%s'"] = "Kan ikke finne DNS-informasjon om databasetjener '%s'"; +App::$strings["Image exceeds website size limit of %lu bytes"] = "Bilde overstiger nettstedets størrelsesbegrensning på %lu bytes"; +App::$strings["Image file is empty."] = "Bildefilen er tom."; +App::$strings["Photo storage failed."] = "Bildelagring mislyktes."; +App::$strings["a new photo"] = "et nytt bilde"; +App::$strings["__ctx:photo_upload__ %1\$s posted %2\$s to %3\$s"] = "%1\$s la inn %2\$s til %3\$s"; +App::$strings["Photo Albums"] = "Fotoalbum"; +App::$strings["Upload New Photos"] = "Last opp nye bilder"; +App::$strings["Logout"] = "Logg ut"; +App::$strings["End this session"] = "Avslutt denne økten"; +App::$strings["Home"] = "Hjem"; +App::$strings["Your posts and conversations"] = "Dine innlegg og samtaler"; +App::$strings["Your profile page"] = "Din profilside"; +App::$strings["Manage/Edit profiles"] = "Håndter/endre profiler"; +App::$strings["Edit Profile"] = "Endre profil"; +App::$strings["Edit your profile"] = "Endre din profil"; +App::$strings["Your photos"] = "Dine bilder"; +App::$strings["Your files"] = "Dine filer"; +App::$strings["Your chatrooms"] = "Dine chatterom"; +App::$strings["Bookmarks"] = "Bokmerker"; +App::$strings["Your bookmarks"] = "Dine bokmerker"; +App::$strings["Your webpages"] = "Dine websider"; +App::$strings["Your wiki"] = ""; +App::$strings["Sign in"] = "Logg på"; +App::$strings["%s - click to logout"] = "%s - klikk for å logge ut"; +App::$strings["Remote authentication"] = "Fjernautentisering"; +App::$strings["Click to authenticate to your home hub"] = "Klikk for å godkjennes mot din hjemme-hub"; +App::$strings["Home Page"] = "Hjemmeside"; +App::$strings["Create an account"] = "Lag en konto"; +App::$strings["Help and documentation"] = "Hjelp og dokumentasjon"; +App::$strings["Applications, utilities, links, games"] = "Programmer, verktøy, lenker, spill"; +App::$strings["Search site @name, #tag, ?docs, content"] = "Søk nettstedet for @navn, #merkelapp, ?dokumentasjon, innhold"; +App::$strings["Channel Directory"] = "Kanalkatalog"; +App::$strings["Your grid"] = "Ditt nett"; +App::$strings["Mark all grid notifications seen"] = "Marker alle nettvarsler som sett"; +App::$strings["Channel home"] = "Kanalhjem"; +App::$strings["Mark all channel notifications seen"] = "Merk alle kanalvarsler som sett"; +App::$strings["Notices"] = "Varsel"; +App::$strings["Notifications"] = "Varsler"; +App::$strings["See all notifications"] = "Se alle varsler"; +App::$strings["Private mail"] = "Privat post"; +App::$strings["See all private messages"] = "Se alle private meldinger"; +App::$strings["Mark all private messages seen"] = "Merk alle private meldinger som sett"; +App::$strings["Inbox"] = "Innboks"; +App::$strings["Outbox"] = "Utboks"; +App::$strings["New Message"] = "Ny melding"; +App::$strings["Event Calendar"] = "Kalender"; +App::$strings["See all events"] = "Se alle hendelser"; +App::$strings["Mark all events seen"] = "Merk alle hendelser som sett"; +App::$strings["Manage Your Channels"] = "Håndter dine kanaler"; +App::$strings["Account/Channel Settings"] = "Konto-/kanal-innstillinger"; +App::$strings["Admin"] = "Administrator"; +App::$strings["Site Setup and Configuration"] = "Nettstedsoppsett og -konfigurasjon"; +App::$strings["Loading..."] = "Laster..."; +App::$strings["@name, #tag, ?doc, content"] = "@navn, #merkelapp, ?dokumentasjon, innhold"; +App::$strings["Please wait..."] = "Vennligst vent..."; +App::$strings["view full size"] = "vis full størrelse"; +App::$strings["Administrator"] = "Administrator"; +App::$strings["No Subject"] = "Uten emne"; +App::$strings["Friendica"] = "Friendica"; +App::$strings["OStatus"] = "OStatus"; +App::$strings["GNU-Social"] = "GNU-Social"; +App::$strings["RSS/Atom"] = "RSS/Atom"; +App::$strings["Diaspora"] = "Diaspora"; +App::$strings["Facebook"] = "Facebook"; +App::$strings["Zot"] = "Zot"; +App::$strings["LinkedIn"] = "LinkedIn"; +App::$strings["XMPP/IM"] = "XMPP/IM"; +App::$strings["MySpace"] = "MySpace"; +App::$strings["New Page"] = "Ny side"; +App::$strings["Title"] = "Tittel"; App::$strings["Categories"] = "Kategorier"; App::$strings["Tags"] = "Merkelapper"; App::$strings["Keywords"] = "Nøkkelord"; @@ -1531,34 +1678,196 @@ App::$strings["want"] = "ønsker"; App::$strings["wants"] = "ønsker"; App::$strings["likes"] = "liker"; App::$strings["dislikes"] = "misliker"; -App::$strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A"; -App::$strings["Starts:"] = "Starter:"; -App::$strings["Finishes:"] = "Slutter:"; -App::$strings["This event has been added to your calendar."] = "Denne hendelsen er lagt til i din kalender."; -App::$strings["Not specified"] = "Ikke spesifisert"; -App::$strings["Needs Action"] = "Trenger handling"; -App::$strings["Completed"] = "Ferdig"; -App::$strings["In Process"] = "Igang"; -App::$strings["Cancelled"] = "Avbrutt"; +App::$strings["Unable to obtain identity information from database"] = "Klarer ikke å få tak i identitetsinformasjon fra databasen"; +App::$strings["Empty name"] = "Mangler navn"; +App::$strings["Name too long"] = "Navnet er for langt"; +App::$strings["No account identifier"] = "Ingen kontoidentifikator"; +App::$strings["Nickname is required."] = "Kallenavn er påkrevd."; +App::$strings["Reserved nickname. Please choose another."] = "Reservert kallenavn. Vennligst velg et annet."; +App::$strings["Nickname has unsupported characters or is already being used on this site."] = "Kallenavnet inneholder tegn som ikke er støttet eller det er allerede i bruk på dette nettstedet."; +App::$strings["Unable to retrieve created identity"] = "Klarer ikke å hente den lagede identiteten"; +App::$strings["Default Profile"] = "Standardprofil"; +App::$strings["Requested channel is not available."] = "Forespurt kanal er ikke tilgjengelig."; +App::$strings["Create New Profile"] = "Lag ny profil"; +App::$strings["Visible to everybody"] = "Synlig for alle"; +App::$strings["Gender:"] = "Kjønn:"; +App::$strings["Status:"] = "Status:"; +App::$strings["Homepage:"] = "Hjemmeside:"; +App::$strings["Online Now"] = "Online nå"; +App::$strings["Like this channel"] = "Lik denne kanalen"; +App::$strings["j F, Y"] = "j F, Y"; +App::$strings["j F"] = "j F"; +App::$strings["Birthday:"] = "Fødselsdag:"; +App::$strings["for %1\$d %2\$s"] = "for %1\$d %2\$s"; +App::$strings["Sexual Preference:"] = "Seksuell preferanse:"; +App::$strings["Tags:"] = "Merkelapper:"; +App::$strings["Political Views:"] = "Politiske synspunkter:"; +App::$strings["Religion:"] = "Religion:"; +App::$strings["Hobbies/Interests:"] = "Hobbyer/interesser:"; +App::$strings["Likes:"] = "Liker:"; +App::$strings["Dislikes:"] = "Misliker:"; +App::$strings["Contact information and Social Networks:"] = "Kontaktinformasjon og sosiale nettverk:"; +App::$strings["My other channels:"] = "Mine andre kanaler:"; +App::$strings["Musical interests:"] = "Musikkinteresse:"; +App::$strings["Books, literature:"] = "Bøker, litteratur:"; +App::$strings["Television:"] = "TV:"; +App::$strings["Film/dance/culture/entertainment:"] = "Film/dans/kultur/underholdning:"; +App::$strings["Love/Romance:"] = "Kjærlighet/romantikk:"; +App::$strings["Work/employment:"] = "Arbeid/sysselsetting:"; +App::$strings["School/education:"] = "Skole/utdannelse:"; +App::$strings["Like this thing"] = "Lik denne tingen"; +App::$strings["New window"] = "Nytt vindu"; +App::$strings["Open the selected location in a different window or browser tab"] = "Åpne det valgte stedet i et annet vindu eller nettleser-fane"; +App::$strings["User '%s' deleted"] = "Brukeren '%s' er slettet"; +App::$strings["%1\$s is now connected with %2\$s"] = "%1\$s er nå forbundet med %2\$s"; +App::$strings["%1\$s poked %2\$s"] = "%1\$s prikket %2\$s"; +App::$strings["poked"] = "prikket"; +App::$strings["View %s's profile @ %s"] = "Vis %s sin profile @ %s"; +App::$strings["Categories:"] = "Kategorier:"; +App::$strings["Filed under:"] = "Sortert under:"; +App::$strings["View in context"] = "Vis i sammenheng"; +App::$strings["remove"] = "fjern"; +App::$strings["Delete Selected Items"] = "Slett valgte elementer"; +App::$strings["View Source"] = "Vis kilde"; +App::$strings["Follow Thread"] = "Følg tråd"; +App::$strings["Unfollow Thread"] = "Ikke følg tråd"; +App::$strings["Activity/Posts"] = "Aktivitet/Innlegg"; +App::$strings["Edit Connection"] = "Endre forbindelse"; +App::$strings["Message"] = "Melding"; +App::$strings["%s likes this."] = "%s liker dette."; +App::$strings["%s doesn't like this."] = "%s liker ikke dette."; +App::$strings["%2\$d people like this."] = array( + 0 => "%2\$d person liker dette.", + 1 => "%2\$d personer liker dette.", +); +App::$strings["%2\$d people don't like this."] = array( + 0 => "%2\$d person liker ikke dette.", + 1 => "%2\$d personer liker ikke dette.", +); +App::$strings["and"] = "og"; +App::$strings[", and %d other people"] = array( + 0 => ", og %d annen person", + 1 => ", og %d andre personer", +); +App::$strings["%s like this."] = "%s liker dette."; +App::$strings["%s don't like this."] = "%s liker ikke dette."; +App::$strings["Set your location"] = "Angi din plassering"; +App::$strings["Clear browser location"] = "Fjern nettleserplassering"; +App::$strings["Tag term:"] = "Merkelapp:"; +App::$strings["Where are you right now?"] = "Hvor er du akkurat nå?"; +App::$strings["Page link name"] = "Sidens lenkenavn"; +App::$strings["Post as"] = "Lag innlegg som"; +App::$strings["Toggle voting"] = "Skru av eller på stemming"; +App::$strings["Categories (optional, comma-separated list)"] = "Kategorier (valgfri, kommaseparert liste)"; +App::$strings["Set publish date"] = "Angi publiseringsdato"; +App::$strings["Discover"] = "Oppdage"; +App::$strings["Imported public streams"] = "Importerte offentlige strømmer"; +App::$strings["Commented Order"] = "Kommentert"; +App::$strings["Sort by Comment Date"] = "Sorter etter kommentert dato"; +App::$strings["Posted Order"] = "Lagt inn"; +App::$strings["Sort by Post Date"] = "Sorter etter innleggsdato"; +App::$strings["Posts that mention or involve you"] = "Innlegg som nevner eller involverer deg"; +App::$strings["Activity Stream - by date"] = "Aktivitetsstrøm - etter dato"; +App::$strings["Starred"] = "Stjerne"; +App::$strings["Favourite Posts"] = "Favorittinnlegg"; +App::$strings["Spam"] = "Søppel"; +App::$strings["Posts flagged as SPAM"] = "Innlegg merket som SØPPEL"; +App::$strings["Status Messages and Posts"] = "Statusmeldinger og -innlegg"; +App::$strings["About"] = "Om"; +App::$strings["Profile Details"] = "Profildetaljer"; +App::$strings["Files and Storage"] = "Filer og lagring"; +App::$strings["Chatrooms"] = "Chatrom"; +App::$strings["Saved Bookmarks"] = "Lagrede bokmerker"; +App::$strings["Manage Webpages"] = "Håndtere websider"; +App::$strings["__ctx:noun__ Attending"] = array( + 0 => "Deltar", + 1 => "Deltar", +); +App::$strings["__ctx:noun__ Not Attending"] = array( + 0 => "Deltar ikke", + 1 => "Deltar ikke", +); +App::$strings["__ctx:noun__ Undecided"] = array( + 0 => "Ikke bestemt", + 1 => "Ikke bestemt", +); +App::$strings["__ctx:noun__ Agree"] = array( + 0 => "Enig", + 1 => "Enige", +); +App::$strings["__ctx:noun__ Disagree"] = array( + 0 => "Uenig", + 1 => "Uenige", +); +App::$strings["__ctx:noun__ Abstain"] = array( + 0 => "Avstår", + 1 => "Avstår", +); App::$strings["Cannot create a duplicate channel identifier on this system. Import failed."] = "Kan ikke lage en kopi av kanal-identifikatoren på dette systemet. Import mislyktes."; App::$strings["Channel clone failed. Import failed."] = "Kanalkloning mislyktes. Import mislyktes."; -App::$strings["(Unknown)"] = "(Ukjent)"; -App::$strings["Visible to anybody on the internet."] = "Synlig for enhver på Internett."; -App::$strings["Visible to you only."] = "Synlig bare for deg."; -App::$strings["Visible to anybody in this network."] = "Synlig for enhver i dette nettverket."; -App::$strings["Visible to anybody authenticated."] = "Synlig for enhver som er autentisert."; -App::$strings["Visible to anybody on %s."] = "Synlig for alle på %s."; -App::$strings["Visible to all connections."] = "Synlig for alle forbindelser."; -App::$strings["Visible to approved connections."] = "Synlig for godkjente forbindelser."; -App::$strings["Visible to specific connections."] = "Synlig for spesifikke forbindelser."; -App::$strings["Privacy group is empty."] = "Personverngruppen er tom."; -App::$strings["Privacy group: %s"] = "Personverngruppe: %s"; -App::$strings["Connection not found."] = "Forbindelsen ble ikke funnet."; -App::$strings["profile photo"] = "profilbilde"; -App::$strings["No recipient provided."] = "Ingen mottaker angitt."; -App::$strings["[no subject]"] = "[ikke noe emne]"; -App::$strings["Unable to determine sender."] = "Kan ikke avgjøre avsender."; -App::$strings["Stored post could not be verified."] = "Lagret innlegg kunne ikke bekreftes."; +App::$strings["Frequently"] = "Ofte"; +App::$strings["Hourly"] = "Hver time"; +App::$strings["Twice daily"] = "To ganger daglig"; +App::$strings["Daily"] = "Daglig"; +App::$strings["Weekly"] = "Ukentlig"; +App::$strings["Monthly"] = "Månedlig"; +App::$strings["Currently Male"] = "For tiden mann"; +App::$strings["Currently Female"] = "For tiden kvinne"; +App::$strings["Mostly Male"] = "For det meste mann"; +App::$strings["Mostly Female"] = "For det meste kvinne"; +App::$strings["Transgender"] = "Transkjønnet"; +App::$strings["Intersex"] = "interkjønnet"; +App::$strings["Transsexual"] = "Transseksuell"; +App::$strings["Hermaphrodite"] = "Hermafroditt"; +App::$strings["Neuter"] = "Intetkjønn"; +App::$strings["Non-specific"] = "Ubestemt"; +App::$strings["Undecided"] = "Ubestemt"; +App::$strings["Males"] = "Menn"; +App::$strings["Females"] = "Kvinner"; +App::$strings["Gay"] = "Homo"; +App::$strings["Lesbian"] = "Lesbisk"; +App::$strings["No Preference"] = "Ingen preferanse"; +App::$strings["Bisexual"] = "Biseksuell"; +App::$strings["Autosexual"] = "Autoseksuell"; +App::$strings["Abstinent"] = "Avholdende"; +App::$strings["Virgin"] = "Jomfru"; +App::$strings["Deviant"] = "Avviker"; +App::$strings["Fetish"] = "Fetisj"; +App::$strings["Oodles"] = "Masse"; +App::$strings["Nonsexual"] = "Ikke-seksuell"; +App::$strings["Single"] = "Enslig"; +App::$strings["Lonely"] = "Ensom"; +App::$strings["Available"] = "Tilgjengelig"; +App::$strings["Unavailable"] = "Ikke tilgjengelig"; +App::$strings["Has crush"] = "Er forelsket"; +App::$strings["Infatuated"] = "Betatt"; +App::$strings["Dating"] = "Sammen med"; +App::$strings["Unfaithful"] = "Utro"; +App::$strings["Sex Addict"] = "Sexavhengig"; +App::$strings["Friends/Benefits"] = "Venner med frynsegoder"; +App::$strings["Casual"] = "Tilfeldig"; +App::$strings["Engaged"] = "Forlovet"; +App::$strings["Married"] = "Gift"; +App::$strings["Imaginarily married"] = "Gift i fantasien"; +App::$strings["Partners"] = "Partnere"; +App::$strings["Cohabiting"] = "Samboer"; +App::$strings["Common law"] = "Samboer"; +App::$strings["Happy"] = "Lykkelig"; +App::$strings["Not looking"] = "Ikke på utkikk"; +App::$strings["Swinger"] = "Partnerbytte"; +App::$strings["Betrayed"] = "Bedratt"; +App::$strings["Separated"] = "Separert"; +App::$strings["Unstable"] = "Ustabilt"; +App::$strings["Divorced"] = "Skilt"; +App::$strings["Imaginarily divorced"] = "Skilt i fantasien"; +App::$strings["Widowed"] = "Enke"; +App::$strings["Uncertain"] = "Usikkert"; +App::$strings["It's complicated"] = "Det er komplisert"; +App::$strings["Don't care"] = "Bryr meg ikke"; +App::$strings["Ask me"] = "Spør meg"; +App::$strings["%1\$s's bookmarks"] = "%1\$s sine bokmerker"; +App::$strings["guest:"] = ""; +App::$strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "Skjemaets sikkerhetspollett var ikke gyldig. Dette skjedde antakelig fordi skjemaet har vært åpnet for lenge (>3 timer) før det ble sendt inn."; App::$strings["prev"] = "forrige"; App::$strings["first"] = "første"; App::$strings["last"] = "siste"; @@ -1568,7 +1877,6 @@ App::$strings["newer"] = "nyere"; App::$strings["No connections"] = "Ingen forbindelser"; App::$strings["View all %s connections"] = "Vis alle %s forbindelser"; App::$strings["poke"] = "prikk"; -App::$strings["poked"] = "prikket"; App::$strings["ping"] = "varsle"; App::$strings["pinged"] = "varslet"; App::$strings["prod"] = "oppildne"; @@ -1631,385 +1939,21 @@ App::$strings["Select an alternate language"] = "Velg et annet språk"; App::$strings["activity"] = "aktivitet"; App::$strings["Design Tools"] = "Designverktøy"; App::$strings["Pages"] = "Sider"; -App::$strings["System"] = "System"; -App::$strings["New App"] = ""; -App::$strings["Suggestions"] = "Forslag"; -App::$strings["See more..."] = "Se mer..."; -App::$strings["You have %1$.0f of %2$.0f allowed connections."] = "Du har %1$.0f av %2$.0f tillate forbindelser."; -App::$strings["Add New Connection"] = "Legg til ny forbindelse"; -App::$strings["Enter channel address"] = "Skriv kanaladressen"; -App::$strings["Examples: bob@example.com, https://example.com/barbara"] = "Eksempel: ola@eksempel.no, https://eksempel.no/kari"; -App::$strings["Notes"] = "Merknader"; -App::$strings["Remove term"] = "Fjern begrep"; -App::$strings["Saved Searches"] = "Lagrede søk"; -App::$strings["add"] = "legg til"; -App::$strings["Saved Folders"] = "Lagrede mapper"; -App::$strings["Everything"] = "Alt"; -App::$strings["Archives"] = "Arkiv"; -App::$strings["Refresh"] = "Forny"; -App::$strings["Account settings"] = "Kontoinnstillinger"; -App::$strings["Channel settings"] = "Kanalinnstillinger"; -App::$strings["Additional features"] = "Tilleggsfunksjoner"; -App::$strings["Feature/Addon settings"] = "Funksjons-/Tilleggsinnstillinger"; -App::$strings["Display settings"] = "Visningsinnstillinger"; -App::$strings["Manage locations"] = ""; -App::$strings["Export channel"] = "Eksporter kanal"; -App::$strings["Connected apps"] = "Tilkoblede app-er"; -App::$strings["Premium Channel Settings"] = "Premiumkanal-innstillinger"; -App::$strings["Private Mail Menu"] = "Meny for privat post"; -App::$strings["Combined View"] = "Kombinert visning"; -App::$strings["Inbox"] = "Innboks"; -App::$strings["Outbox"] = "Utboks"; -App::$strings["New Message"] = "Ny melding"; -App::$strings["Conversations"] = "Samtaler"; -App::$strings["Received Messages"] = "Mottatte meldinger"; -App::$strings["Sent Messages"] = "Sendte meldinger"; -App::$strings["No messages."] = "Ingen meldinger."; -App::$strings["Delete conversation"] = "Slett samtale"; -App::$strings["Events Menu"] = "Meny for hendelser"; -App::$strings["Day View"] = "Dag"; -App::$strings["Week View"] = "Uke"; -App::$strings["Month View"] = "Måned"; -App::$strings["Events Tools"] = "Kalenderverktøy"; -App::$strings["Export Calendar"] = "Eksporter kalender"; -App::$strings["Import Calendar"] = "Importer kalender"; -App::$strings["Chatrooms"] = "Chatrom"; -App::$strings["Overview"] = ""; -App::$strings["Chat Members"] = ""; -App::$strings["Bookmarked Chatrooms"] = "Bokmerkede chatrom"; -App::$strings["Suggested Chatrooms"] = "Foreslåtte chatrom"; -App::$strings["photo/image"] = "foto/bilde"; -App::$strings["Click to show more"] = ""; -App::$strings["Rating Tools"] = "Vurderingsverktøy"; -App::$strings["Rate Me"] = "Vurder meg"; -App::$strings["View Ratings"] = "Vis vurderinger"; -App::$strings["Forums"] = "Forum"; -App::$strings["Tasks"] = "Oppgaver"; -App::$strings["Documentation"] = "Dokumentasjon"; -App::$strings["Project/Site Information"] = "Prosjekt-/Nettstedsinformasjon"; -App::$strings["For Members"] = "For medlemmer"; -App::$strings["For Administrators"] = "For administratorer"; -App::$strings["For Developers"] = "For utviklere"; -App::$strings["Member registrations waiting for confirmation"] = ""; -App::$strings["Inspect queue"] = "Inspiser kø"; -App::$strings["DB updates"] = "Databaseoppdateringer"; -App::$strings["Admin"] = "Administrator"; -App::$strings["Plugin Features"] = "Tilleggsfunksjoner"; -App::$strings["Channel is blocked on this site."] = "Kanalen er blokkert på dette nettstedet."; -App::$strings["Channel location missing."] = "Kanalplassering mangler."; -App::$strings["Response from remote channel was incomplete."] = "Svaret fra den andre kanalen var ikke komplett."; -App::$strings["Channel was deleted and no longer exists."] = "Kanalen er slettet og finnes ikke lenger."; -App::$strings["Protocol disabled."] = "Protokollen er avskrudd."; -App::$strings["Channel discovery failed."] = "Kanaloppdagelse mislyktes."; -App::$strings["Cannot connect to yourself."] = "Kan ikke lage forbindelse med deg selv."; -App::$strings["%1\$s's bookmarks"] = "%1\$s sine bokmerker"; -App::$strings["Public Timeline"] = "Offentlig tidslinje"; -App::$strings["Image/photo"] = "Bilde/fotografi"; -App::$strings["Encrypted content"] = "Kryptert innhold"; -App::$strings["Install %s element: "] = "Installer %s element:"; -App::$strings["This post contains an installable %s element, however you lack permissions to install it on this site."] = "Dette innlegget inneholder det installerbare elementet %s, men du mangler tillatelse til å installere det på dette nettstedet."; -App::$strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s skrev følgende %2\$s %3\$s"; -App::$strings["Click to open/close"] = "Klikk for å åpne/lukke"; -App::$strings["spoiler"] = ""; -App::$strings["Different viewers will see this text differently"] = "Denne teksten vil se forskjellig ut for ulike besøkende"; -App::$strings["$1 wrote:"] = "$1 skrev:"; -App::$strings["Directory Options"] = "Kataloginnstillinger"; -App::$strings["Safe Mode"] = "Trygt modus"; -App::$strings["Public Forums Only"] = "Bare offentlige forum"; -App::$strings["This Website Only"] = "Kun dette nettstedet"; -App::$strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "Skjemaets sikkerhetspollett var ikke gyldig. Dette skjedde antakelig fordi skjemaet har vært åpnet for lenge (>3 timer) før det ble sendt inn."; -App::$strings["Logout"] = "Logg ut"; -App::$strings["End this session"] = "Avslutt denne økten"; -App::$strings["Home"] = "Hjem"; -App::$strings["Your posts and conversations"] = "Dine innlegg og samtaler"; -App::$strings["Your profile page"] = "Din profilside"; -App::$strings["Manage/Edit profiles"] = "Håndter/endre profiler"; -App::$strings["Edit Profile"] = "Endre profil"; -App::$strings["Edit your profile"] = "Endre din profil"; -App::$strings["Your photos"] = "Dine bilder"; -App::$strings["Your files"] = "Dine filer"; -App::$strings["Your chatrooms"] = "Dine chatterom"; -App::$strings["Bookmarks"] = "Bokmerker"; -App::$strings["Your bookmarks"] = "Dine bokmerker"; -App::$strings["Your webpages"] = "Dine websider"; -App::$strings["Sign in"] = "Logg på"; -App::$strings["%s - click to logout"] = "%s - klikk for å logge ut"; -App::$strings["Remote authentication"] = "Fjernautentisering"; -App::$strings["Click to authenticate to your home hub"] = "Klikk for å godkjennes mot din hjemme-hub"; -App::$strings["Home Page"] = "Hjemmeside"; -App::$strings["Create an account"] = "Lag en konto"; -App::$strings["Help and documentation"] = "Hjelp og dokumentasjon"; -App::$strings["Applications, utilities, links, games"] = "Programmer, verktøy, lenker, spill"; -App::$strings["Search site @name, #tag, ?docs, content"] = "Søk nettstedet for @navn, #merkelapp, ?dokumentasjon, innhold"; -App::$strings["Channel Directory"] = "Kanalkatalog"; -App::$strings["Your grid"] = "Ditt nett"; -App::$strings["Mark all grid notifications seen"] = "Marker alle nettvarsler som sett"; -App::$strings["Channel home"] = "Kanalhjem"; -App::$strings["Mark all channel notifications seen"] = "Merk alle kanalvarsler som sett"; -App::$strings["Notices"] = "Varsel"; -App::$strings["Notifications"] = "Varsler"; -App::$strings["See all notifications"] = "Se alle varsler"; -App::$strings["Private mail"] = "Privat post"; -App::$strings["See all private messages"] = "Se alle private meldinger"; -App::$strings["Mark all private messages seen"] = "Merk alle private meldinger som sett"; -App::$strings["Event Calendar"] = "Kalender"; -App::$strings["See all events"] = "Se alle hendelser"; -App::$strings["Mark all events seen"] = "Merk alle hendelser som sett"; -App::$strings["Manage Your Channels"] = "Håndter dine kanaler"; -App::$strings["Account/Channel Settings"] = "Konto-/kanal-innstillinger"; -App::$strings["Site Setup and Configuration"] = "Nettstedsoppsett og -konfigurasjon"; -App::$strings["Loading..."] = "Laster..."; -App::$strings["@name, #tag, ?doc, content"] = "@navn, #merkelapp, ?dokumentasjon, innhold"; -App::$strings["Please wait..."] = "Vennligst vent..."; -App::$strings["New window"] = "Nytt vindu"; -App::$strings["Open the selected location in a different window or browser tab"] = "Åpne det valgte stedet i et annet vindu eller nettleser-fane"; -App::$strings["User '%s' deleted"] = "Brukeren '%s' er slettet"; -App::$strings["%d invitation available"] = array( - 0 => "%d invitasjon tilgjengelig", - 1 => "%d invitasjoner tilgjengelig", -); -App::$strings["Find Channels"] = "Finn kanaler"; -App::$strings["Enter name or interest"] = "Skriv navn eller interesse"; -App::$strings["Connect/Follow"] = "Forbindelse/Følg"; -App::$strings["Examples: Robert Morgenstein, Fishing"] = "Eksempler: Ola Nordmann, fisking"; -App::$strings["Random Profile"] = "Tilfeldig profil"; -App::$strings["Invite Friends"] = "Inviter venner"; -App::$strings["Advanced example: name=fred and country=iceland"] = "Avansert eksempel: navn=fred og land=island"; -App::$strings["%d connection in common"] = array( - 0 => "%d forbindelse felles", - 1 => "%d forbindelser felles", -); -App::$strings["show more"] = "vis mer"; -App::$strings["%1\$s is now connected with %2\$s"] = "%1\$s er nå forbundet med %2\$s"; -App::$strings["%1\$s poked %2\$s"] = "%1\$s prikket %2\$s"; -App::$strings["View %s's profile @ %s"] = "Vis %s sin profile @ %s"; -App::$strings["Categories:"] = "Kategorier:"; -App::$strings["Filed under:"] = "Sortert under:"; -App::$strings["View in context"] = "Vis i sammenheng"; -App::$strings["remove"] = "fjern"; -App::$strings["Delete Selected Items"] = "Slett valgte elementer"; -App::$strings["View Source"] = "Vis kilde"; -App::$strings["Follow Thread"] = "Følg tråd"; -App::$strings["Unfollow Thread"] = "Ikke følg tråd"; -App::$strings["Activity/Posts"] = "Aktivitet/Innlegg"; -App::$strings["Edit Connection"] = "Endre forbindelse"; -App::$strings["Message"] = "Melding"; -App::$strings["%s likes this."] = "%s liker dette."; -App::$strings["%s doesn't like this."] = "%s liker ikke dette."; -App::$strings["%2\$d people like this."] = array( - 0 => "%2\$d person liker dette.", - 1 => "%2\$d personer liker dette.", -); -App::$strings["%2\$d people don't like this."] = array( - 0 => "%2\$d person liker ikke dette.", - 1 => "%2\$d personer liker ikke dette.", -); -App::$strings["and"] = "og"; -App::$strings[", and %d other people"] = array( - 0 => ", og %d annen person", - 1 => ", og %d andre personer", -); -App::$strings["%s like this."] = "%s liker dette."; -App::$strings["%s don't like this."] = "%s liker ikke dette."; -App::$strings["Set your location"] = "Angi din plassering"; -App::$strings["Clear browser location"] = "Fjern nettleserplassering"; -App::$strings["Tag term:"] = "Merkelapp:"; -App::$strings["Where are you right now?"] = "Hvor er du akkurat nå?"; -App::$strings["Page link name"] = "Sidens lenkenavn"; -App::$strings["Post as"] = "Lag innlegg som"; -App::$strings["Toggle voting"] = "Skru av eller på stemming"; -App::$strings["Categories (optional, comma-separated list)"] = "Kategorier (valgfri, kommaseparert liste)"; -App::$strings["Set publish date"] = "Angi publiseringsdato"; -App::$strings["OK"] = "OK"; -App::$strings["Discover"] = "Oppdage"; -App::$strings["Imported public streams"] = "Importerte offentlige strømmer"; -App::$strings["Commented Order"] = "Kommentert"; -App::$strings["Sort by Comment Date"] = "Sorter etter kommentert dato"; -App::$strings["Posted Order"] = "Lagt inn"; -App::$strings["Sort by Post Date"] = "Sorter etter innleggsdato"; -App::$strings["Posts that mention or involve you"] = "Innlegg som nevner eller involverer deg"; -App::$strings["Activity Stream - by date"] = "Aktivitetsstrøm - etter dato"; -App::$strings["Starred"] = "Stjerne"; -App::$strings["Favourite Posts"] = "Favorittinnlegg"; -App::$strings["Spam"] = "Søppel"; -App::$strings["Posts flagged as SPAM"] = "Innlegg merket som SØPPEL"; -App::$strings["Status Messages and Posts"] = "Statusmeldinger og -innlegg"; -App::$strings["About"] = "Om"; -App::$strings["Profile Details"] = "Profildetaljer"; -App::$strings["Photo Albums"] = "Fotoalbum"; -App::$strings["Files and Storage"] = "Filer og lagring"; -App::$strings["Saved Bookmarks"] = "Lagrede bokmerker"; -App::$strings["Manage Webpages"] = "Håndtere websider"; -App::$strings["__ctx:noun__ Attending"] = array( - 0 => "Deltar", - 1 => "Deltar", -); -App::$strings["__ctx:noun__ Not Attending"] = array( - 0 => "Deltar ikke", - 1 => "Deltar ikke", -); -App::$strings["__ctx:noun__ Undecided"] = array( - 0 => "Ikke bestemt", - 1 => "Ikke bestemt", -); -App::$strings["__ctx:noun__ Agree"] = array( - 0 => "Enig", - 1 => "Enige", -); -App::$strings["__ctx:noun__ Disagree"] = array( - 0 => "Uenig", - 1 => "Uenige", -); -App::$strings["__ctx:noun__ Abstain"] = array( - 0 => "Avstår", - 1 => "Avstår", -); -App::$strings["Frequently"] = "Ofte"; -App::$strings["Hourly"] = "Hver time"; -App::$strings["Twice daily"] = "To ganger daglig"; -App::$strings["Daily"] = "Daglig"; -App::$strings["Weekly"] = "Ukentlig"; -App::$strings["Monthly"] = "Månedlig"; -App::$strings["Currently Male"] = "For tiden mann"; -App::$strings["Currently Female"] = "For tiden kvinne"; -App::$strings["Mostly Male"] = "For det meste mann"; -App::$strings["Mostly Female"] = "For det meste kvinne"; -App::$strings["Transgender"] = "Transkjønnet"; -App::$strings["Intersex"] = "interkjønnet"; -App::$strings["Transsexual"] = "Transseksuell"; -App::$strings["Hermaphrodite"] = "Hermafroditt"; -App::$strings["Neuter"] = "Intetkjønn"; -App::$strings["Non-specific"] = "Ubestemt"; -App::$strings["Other"] = "Annen"; -App::$strings["Undecided"] = "Ubestemt"; -App::$strings["Males"] = "Menn"; -App::$strings["Females"] = "Kvinner"; -App::$strings["Gay"] = "Homo"; -App::$strings["Lesbian"] = "Lesbisk"; -App::$strings["No Preference"] = "Ingen preferanse"; -App::$strings["Bisexual"] = "Biseksuell"; -App::$strings["Autosexual"] = "Autoseksuell"; -App::$strings["Abstinent"] = "Avholdende"; -App::$strings["Virgin"] = "Jomfru"; -App::$strings["Deviant"] = "Avviker"; -App::$strings["Fetish"] = "Fetisj"; -App::$strings["Oodles"] = "Masse"; -App::$strings["Nonsexual"] = "Ikke-seksuell"; -App::$strings["Single"] = "Enslig"; -App::$strings["Lonely"] = "Ensom"; -App::$strings["Available"] = "Tilgjengelig"; -App::$strings["Unavailable"] = "Ikke tilgjengelig"; -App::$strings["Has crush"] = "Er forelsket"; -App::$strings["Infatuated"] = "Betatt"; -App::$strings["Dating"] = "Sammen med"; -App::$strings["Unfaithful"] = "Utro"; -App::$strings["Sex Addict"] = "Sexavhengig"; -App::$strings["Friends/Benefits"] = "Venner med frynsegoder"; -App::$strings["Casual"] = "Tilfeldig"; -App::$strings["Engaged"] = "Forlovet"; -App::$strings["Married"] = "Gift"; -App::$strings["Imaginarily married"] = "Gift i fantasien"; -App::$strings["Partners"] = "Partnere"; -App::$strings["Cohabiting"] = "Samboer"; -App::$strings["Common law"] = "Samboer"; -App::$strings["Happy"] = "Lykkelig"; -App::$strings["Not looking"] = "Ikke på utkikk"; -App::$strings["Swinger"] = "Partnerbytte"; -App::$strings["Betrayed"] = "Bedratt"; -App::$strings["Separated"] = "Separert"; -App::$strings["Unstable"] = "Ustabilt"; -App::$strings["Divorced"] = "Skilt"; -App::$strings["Imaginarily divorced"] = "Skilt i fantasien"; -App::$strings["Widowed"] = "Enke"; -App::$strings["Uncertain"] = "Usikkert"; -App::$strings["It's complicated"] = "Det er komplisert"; -App::$strings["Don't care"] = "Bryr meg ikke"; -App::$strings["Ask me"] = "Spør meg"; -App::$strings["Visible to your default audience"] = "Synlig for ditt standard publikum"; -App::$strings["Only me"] = ""; -App::$strings["Public"] = "Offentlig"; -App::$strings["Anybody in the \$Projectname network"] = ""; -App::$strings["Any account on %s"] = ""; -App::$strings["Any of my connections"] = ""; -App::$strings["Only connections I specifically allow"] = ""; -App::$strings["Anybody authenticated (could include visitors from other networks)"] = ""; -App::$strings["Any connections including those who haven't yet been approved"] = ""; -App::$strings["This is your default setting for the audience of your normal stream, and posts."] = ""; -App::$strings["This is your default setting for who can view your default channel profile"] = ""; -App::$strings["This is your default setting for who can view your connections"] = ""; -App::$strings["This is your default setting for who can view your file storage and photos"] = ""; -App::$strings["This is your default setting for the audience of your webpages"] = ""; -App::$strings["Not a valid email address"] = "Ikke en gyldig e-postadresse"; -App::$strings["Your email domain is not among those allowed on this site"] = "Ditt e-postdomene er ikke blant de som er tillatt på dette stedet"; -App::$strings["Your email address is already registered at this site."] = "Din e-postadresse er allerede registrert på dette nettstedet."; -App::$strings["An invitation is required."] = "En invitasjon er påkrevd."; -App::$strings["Invitation could not be verified."] = "Invitasjon kunne ikke bekreftes."; -App::$strings["Please enter the required information."] = "Vennligst skriv inn nødvendig informasjon."; -App::$strings["Failed to store account information."] = "Mislyktes med å lagre kontoinformasjon."; -App::$strings["Registration confirmation for %s"] = "Registreringsbekreftelse for %s"; -App::$strings["Registration request at %s"] = "Registreringsforespørsel hos %s"; -App::$strings["Administrator"] = "Administrator"; -App::$strings["your registration password"] = "ditt registreringspassord"; -App::$strings["Registration details for %s"] = "Registreringsdetaljer for %s"; -App::$strings["Account approved."] = "Konto godkjent."; -App::$strings["Registration revoked for %s"] = "Registrering trukket tilbake for %s"; -App::$strings["Account verified. Please login."] = "Konto bekreftet. Vennligst logg inn."; -App::$strings["Click here to upgrade."] = "Klikk her for å oppgradere."; -App::$strings["This action exceeds the limits set by your subscription plan."] = "Denne handlingen går utenfor grensene satt i din abonnementsplan."; -App::$strings["This action is not available under your subscription plan."] = "Denne handlingen er ikke tilgjengelig i din abonnementsplan."; -App::$strings["Item was not found."] = "Elementet ble ikke funnet."; -App::$strings["No source file."] = "Ingen kildefil."; -App::$strings["Cannot locate file to replace"] = "Kan ikke finne filen som skal byttes ut"; -App::$strings["Cannot locate file to revise/update"] = "Finner ikke filen som skal revideres/oppdateres"; -App::$strings["File exceeds size limit of %d"] = "Filens størrelse overgår grensen på %d"; -App::$strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Du har nådd din lagringsgrense for vedlegg på %1$.0f Mbytes."; -App::$strings["File upload failed. Possible system limit or action terminated."] = "Mislyktes med å laste opp filen. Mulig systemgrense eller handling avbrutt."; -App::$strings["Stored file could not be verified. Upload failed."] = "Lagret fil kunne ikke bekreftes. Opplasting mislyktes."; -App::$strings["Path not available."] = "Stien er ikke tilgjengelig."; -App::$strings["Empty pathname"] = "Tomt sti-navn"; -App::$strings["duplicate filename or path"] = "duplikat av filnavn eller sti"; -App::$strings["Path not found."] = "Stien ble ikke funnet."; -App::$strings["mkdir failed."] = "mkdir mislyktes."; -App::$strings["database storage failed."] = "databaselagring mislyktes."; -App::$strings["Empty path"] = "Tom sti"; -App::$strings["Unable to obtain identity information from database"] = "Klarer ikke å få tak i identitetsinformasjon fra databasen"; -App::$strings["Empty name"] = "Mangler navn"; -App::$strings["Name too long"] = "Navnet er for langt"; -App::$strings["No account identifier"] = "Ingen kontoidentifikator"; -App::$strings["Nickname is required."] = "Kallenavn er påkrevd."; -App::$strings["Reserved nickname. Please choose another."] = "Reservert kallenavn. Vennligst velg et annet."; -App::$strings["Nickname has unsupported characters or is already being used on this site."] = "Kallenavnet inneholder tegn som ikke er støttet eller det er allerede i bruk på dette nettstedet."; -App::$strings["Unable to retrieve created identity"] = "Klarer ikke å hente den lagede identiteten"; -App::$strings["Default Profile"] = "Standardprofil"; -App::$strings["Requested channel is not available."] = "Forespurt kanal er ikke tilgjengelig."; -App::$strings["Create New Profile"] = "Lag ny profil"; -App::$strings["Visible to everybody"] = ""; -App::$strings["Gender:"] = "Kjønn:"; -App::$strings["Status:"] = "Status:"; -App::$strings["Homepage:"] = "Hjemmeside:"; -App::$strings["Online Now"] = "Online nå"; -App::$strings["Like this channel"] = "Lik denne kanalen"; -App::$strings["j F, Y"] = "j F, Y"; -App::$strings["j F"] = "j F"; -App::$strings["Birthday:"] = "Fødselsdag:"; -App::$strings["for %1\$d %2\$s"] = "for %1\$d %2\$s"; -App::$strings["Sexual Preference:"] = "Seksuell preferanse:"; -App::$strings["Tags:"] = "Merkelapper:"; -App::$strings["Political Views:"] = "Politiske synspunkter:"; -App::$strings["Religion:"] = "Religion:"; -App::$strings["Hobbies/Interests:"] = "Hobbyer/interesser:"; -App::$strings["Likes:"] = "Liker:"; -App::$strings["Dislikes:"] = "Misliker:"; -App::$strings["Contact information and Social Networks:"] = "Kontaktinformasjon og sosiale nettverk:"; -App::$strings["My other channels:"] = "Mine andre kanaler:"; -App::$strings["Musical interests:"] = "Musikkinteresse:"; -App::$strings["Books, literature:"] = "Bøker, litteratur:"; -App::$strings["Television:"] = "TV:"; -App::$strings["Film/dance/culture/entertainment:"] = "Film/dans/kultur/underholdning:"; -App::$strings["Love/Romance:"] = "Kjærlighet/romantikk:"; -App::$strings["Work/employment:"] = "Arbeid/sysselsetting:"; -App::$strings["School/education:"] = "Skole/utdannelse:"; -App::$strings["Like this thing"] = "Lik denne tingen"; +App::$strings["Logged out."] = "Logget ut."; +App::$strings["Failed authentication"] = "Mislykket autentisering"; +App::$strings["Can view my normal stream and posts"] = "Kan se min normale strøm og innlegg"; +App::$strings["Can view my webpages"] = "Kan se mine websider"; +App::$strings["Can post on my channel page (\"wall\")"] = "Kan lage innlegg på min kanalside (\"vegg\")"; +App::$strings["Can like/dislike stuff"] = "Kan like/ikke like forskjellige greier"; +App::$strings["Profiles and things other than posts/comments"] = "Profiler og andre ting enn innlegg/kommentarer"; +App::$strings["Can forward to all my channel contacts via post @mentions"] = "Kan videresende til alle mine kanalkontakter via @navn i innlegg"; +App::$strings["Advanced - useful for creating group forum channels"] = "Avansert - nyttig for å lage forumkanaler for grupper"; +App::$strings["Can chat with me (when available)"] = "Kan chatte/sende lynmeldinger til meg (når tilgjengelig)"; +App::$strings["Can write to my file storage and photos"] = "Kan skrive til mitt lager for filer og bilder"; +App::$strings["Can edit my webpages"] = "Kan endre mine websider"; +App::$strings["Somewhat advanced - very useful in open communities"] = "Litt avansert - svært nyttig i åpne fellesskap"; +App::$strings["Can administer my channel resources"] = "Kan administrere mine kanalressurser"; +App::$strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "Ekstremt avansert. La dette være med mindre du vet hva du gjør"; App::$strings["General Features"] = "Generelle funksjoner"; App::$strings["Content Expiration"] = "Innholdet utløper"; App::$strings["Remove posts/comments and/or private messages at a future time"] = "Fjern innlegg/kommentarer og/eller private meldinger på et angitt tidspunkt i fremtiden"; @@ -2021,6 +1965,7 @@ App::$strings["Profile Import/Export"] = "Profil-import/-eksport"; App::$strings["Save and load profile details across sites/channels"] = "Lagre og åpne profildetaljer på tvers av nettsteder/kanaler"; App::$strings["Web Pages"] = "Web-sider"; App::$strings["Provide managed web pages on your channel"] = "Tilby kontrollerte web-sider på din kanal"; +App::$strings["Provide a wiki for your channel"] = ""; App::$strings["Hide Rating"] = "Skjul vurdering"; App::$strings["Hide the rating buttons on your channel and profile pages. Note: People can still rate you somewhere else."] = "Skjul vurderingsknappene for din kanal og profilsider. Merknad: folk kan fortsatt vurdere deg et annet sted."; App::$strings["Private Notes"] = "Private merknader"; @@ -2029,10 +1974,10 @@ App::$strings["Navigation Channel Select"] = "Navigasjon kanalvalg"; App::$strings["Change channels directly from within the navigation dropdown menu"] = "Endre kanaler direkte fra navigasjonsmenyen"; App::$strings["Photo Location"] = "Bildeplassering"; App::$strings["If location data is available on uploaded photos, link this to a map."] = "Hvis plasseringsdata er tilgjengelige i opplastede bilder, plasser dette på et kart."; -App::$strings["Access Controlled Chatrooms"] = ""; -App::$strings["Provide chatrooms and chat services with access control."] = ""; -App::$strings["Smart Birthdays"] = ""; -App::$strings["Make birthday events timezone aware in case your friends are scattered across the planet."] = ""; +App::$strings["Access Controlled Chatrooms"] = "Tilgangsstyrte chatrom"; +App::$strings["Provide chatrooms and chat services with access control."] = "Tilby chatrom og chattjenester med tilgangskontroll."; +App::$strings["Smart Birthdays"] = "Smarte fødselsdager"; +App::$strings["Make birthday events timezone aware in case your friends are scattered across the planet."] = "Gjør fødselsdagshendelser oppmerksom på tidsoner i tilfelle dine venner er spredt rundt planeten."; App::$strings["Expert Mode"] = "Ekspertmodus"; App::$strings["Enable Expert Mode to provide advanced configuration options"] = "Skru på Ekspertmodus for å tilby avanserte konfigurasjonsvalg"; App::$strings["Premium Channel"] = "Premiumkanal"; @@ -2054,6 +1999,7 @@ App::$strings["Search by Date"] = "Søk etter dato"; App::$strings["Ability to select posts by date ranges"] = "Mulighet for å velge innlegg etter datoområde"; App::$strings["Privacy Groups"] = "Personverngrupper"; App::$strings["Enable management and selection of privacy groups"] = "Skru på håndtering og valg av personverngrupper"; +App::$strings["Saved Searches"] = "Lagrede søk"; App::$strings["Save search terms for re-use"] = "Lagre søkeuttrykk for senere bruk"; App::$strings["Network Personal Tab"] = "Nettverk personlig fane"; App::$strings["Enable tab to display only Network posts that you've interacted on"] = "Skru på fane for å bare vise Nettverksinnlegg som du har deltatt i"; @@ -2069,8 +2015,9 @@ App::$strings["Community Tagging"] = "Felleskapsmerkelapper"; App::$strings["Ability to tag existing posts"] = "Mulighet til å merke eksisterende meldinger"; App::$strings["Post Categories"] = "Innleggskategorier"; App::$strings["Add categories to your posts"] = "Legg kategorier til dine innlegg"; -App::$strings["Emoji Reactions"] = ""; -App::$strings["Add emoji reaction ability to posts"] = ""; +App::$strings["Emoji Reactions"] = "Emoji-reaksjoner"; +App::$strings["Add emoji reaction ability to posts"] = "Legg til muligheten for emoji-reaksjoner på innlegg"; +App::$strings["Saved Folders"] = "Lagrede mapper"; App::$strings["Ability to file posts under folders"] = "Mulighet til å sortere innlegg i mapper"; App::$strings["Dislike Posts"] = "Mislik innlegg"; App::$strings["Ability to dislike posts/comments"] = "Mulighet til å mislike innlegg/kommentarer"; @@ -2078,63 +2025,149 @@ App::$strings["Star Posts"] = "Stjerneinnlegg"; App::$strings["Ability to mark special posts with a star indicator"] = "Mulighet til å merke spesielle innlegg med en stjerne"; App::$strings["Tag Cloud"] = "Merkelappsky"; App::$strings["Provide a personal tag cloud on your channel page"] = "Tilby en personlig merkelappsky på din kanalside"; -App::$strings["Embedded content"] = "Innebygget innhold"; -App::$strings["Embedding disabled"] = "Innbygging avskrudd"; -App::$strings["Who can see this?"] = ""; -App::$strings["Custom selection"] = ""; -App::$strings["Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit the scope of \"Show\"."] = ""; -App::$strings["Show"] = "Vis"; -App::$strings["Don't show"] = "Ikke vis"; -App::$strings["Other networks and post services"] = "Andre nettverk og innleggstjenester"; -App::$strings["Post permissions %s cannot be changed %s after a post is shared.
These permissions set who is allowed to view the post."] = ""; -App::$strings["Logged out."] = "Logget ut."; -App::$strings["Failed authentication"] = "Mislykket autentisering"; -App::$strings["Birthday"] = ""; -App::$strings["Age: "] = "Alder:"; -App::$strings["YYYY-MM-DD or MM-DD"] = "YYYY-MM-DD eller MM-DD"; -App::$strings["never"] = "aldri"; -App::$strings["less than a second ago"] = "for mindre enn ett sekund siden"; -App::$strings["__ctx:e.g. 22 hours ago, 1 minute ago__ %1\$d %2\$s ago"] = "%1\$d %2\$s siden"; -App::$strings["__ctx:relative_date__ year"] = array( - 0 => "år", - 1 => "år", -); -App::$strings["__ctx:relative_date__ month"] = array( - 0 => "måned", - 1 => "måneder", -); -App::$strings["__ctx:relative_date__ week"] = array( - 0 => "uke", - 1 => "uker", -); -App::$strings["__ctx:relative_date__ day"] = array( - 0 => "dag", - 1 => "dager", -); -App::$strings["__ctx:relative_date__ hour"] = array( - 0 => "time", - 1 => "timer", -); -App::$strings["__ctx:relative_date__ minute"] = array( - 0 => "minutt", - 1 => "minutter", -); -App::$strings["__ctx:relative_date__ second"] = array( - 0 => "sekund", - 1 => "sekunder", -); -App::$strings["%1\$s's birthday"] = "%1\$s sin fødselsdag"; -App::$strings["Happy Birthday %1\$s"] = "Gratulerer med dagen, %1\$s !"; App::$strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "En slettet gruppe med dette navnet ble gjenopprettet. Eksisterende tillatelser for elementet kan gjelde for denne gruppen og fremtidige medlemmer. Hvis du ønsket noe annet, vennligst lag en ny gruppe med et annet navn."; App::$strings["Add new connections to this privacy group"] = "Legg nye forbindelser i denne personverngruppen"; App::$strings["edit"] = "endre"; App::$strings["Edit group"] = "Endre gruppe"; App::$strings["Add privacy group"] = "Legg til personverngruppe"; App::$strings["Channels not in any privacy group"] = "Kanaler uten personverngruppe"; +App::$strings["add"] = "legg til"; +App::$strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A"; +App::$strings["Starts:"] = "Starter:"; +App::$strings["Finishes:"] = "Slutter:"; +App::$strings["This event has been added to your calendar."] = "Denne hendelsen er lagt til i din kalender."; +App::$strings["Not specified"] = "Ikke spesifisert"; +App::$strings["Needs Action"] = "Trenger handling"; +App::$strings["Completed"] = "Ferdig"; +App::$strings["In Process"] = "Igang"; +App::$strings["Cancelled"] = "Avbrutt"; +App::$strings["Not a valid email address"] = "Ikke en gyldig e-postadresse"; +App::$strings["Your email domain is not among those allowed on this site"] = "Ditt e-postdomene er ikke blant de som er tillatt på dette stedet"; +App::$strings["Your email address is already registered at this site."] = "Din e-postadresse er allerede registrert på dette nettstedet."; +App::$strings["An invitation is required."] = "En invitasjon er påkrevd."; +App::$strings["Invitation could not be verified."] = "Invitasjon kunne ikke bekreftes."; +App::$strings["Please enter the required information."] = "Vennligst skriv inn nødvendig informasjon."; +App::$strings["Failed to store account information."] = "Mislyktes med å lagre kontoinformasjon."; +App::$strings["Registration confirmation for %s"] = "Registreringsbekreftelse for %s"; +App::$strings["Registration request at %s"] = "Registreringsforespørsel hos %s"; +App::$strings["your registration password"] = "ditt registreringspassord"; +App::$strings["Registration details for %s"] = "Registreringsdetaljer for %s"; +App::$strings["Account approved."] = "Konto godkjent."; +App::$strings["Registration revoked for %s"] = "Registrering trukket tilbake for %s"; +App::$strings["Click here to upgrade."] = "Klikk her for å oppgradere."; +App::$strings["This action exceeds the limits set by your subscription plan."] = "Denne handlingen går utenfor grensene satt i din abonnementsplan."; +App::$strings["This action is not available under your subscription plan."] = "Denne handlingen er ikke tilgjengelig i din abonnementsplan."; +App::$strings["Channel is blocked on this site."] = "Kanalen er blokkert på dette nettstedet."; +App::$strings["Channel location missing."] = "Kanalplassering mangler."; +App::$strings["Response from remote channel was incomplete."] = "Svaret fra den andre kanalen var ikke komplett."; +App::$strings["Channel was deleted and no longer exists."] = "Kanalen er slettet og finnes ikke lenger."; +App::$strings["Protocol disabled."] = "Protokollen er avskrudd."; +App::$strings["Channel discovery failed."] = "Kanaloppdagelse mislyktes."; +App::$strings["Cannot connect to yourself."] = "Kan ikke lage forbindelse med deg selv."; +App::$strings["Item was not found."] = "Elementet ble ikke funnet."; +App::$strings["No source file."] = "Ingen kildefil."; +App::$strings["Cannot locate file to replace"] = "Kan ikke finne filen som skal byttes ut"; +App::$strings["Cannot locate file to revise/update"] = "Finner ikke filen som skal revideres/oppdateres"; +App::$strings["File exceeds size limit of %d"] = "Filens størrelse overgår grensen på %d"; +App::$strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Du har nådd din lagringsgrense for vedlegg på %1$.0f Mbytes."; +App::$strings["File upload failed. Possible system limit or action terminated."] = "Mislyktes med å laste opp filen. Mulig systemgrense eller handling avbrutt."; +App::$strings["Stored file could not be verified. Upload failed."] = "Lagret fil kunne ikke bekreftes. Opplasting mislyktes."; +App::$strings["Path not available."] = "Stien er ikke tilgjengelig."; +App::$strings["Empty pathname"] = "Tomt sti-navn"; +App::$strings["duplicate filename or path"] = "duplikat av filnavn eller sti"; +App::$strings["Path not found."] = "Stien ble ikke funnet."; +App::$strings["mkdir failed."] = "mkdir mislyktes."; +App::$strings["database storage failed."] = "databaselagring mislyktes."; +App::$strings["Empty path"] = "Tom sti"; +App::$strings["Image/photo"] = "Bilde/fotografi"; +App::$strings["Encrypted content"] = "Kryptert innhold"; +App::$strings["Install %s element: "] = "Installer %s element:"; +App::$strings["This post contains an installable %s element, however you lack permissions to install it on this site."] = "Dette innlegget inneholder det installerbare elementet %s, men du mangler tillatelse til å installere det på dette nettstedet."; +App::$strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s skrev følgende %2\$s %3\$s"; +App::$strings["Click to open/close"] = "Klikk for å åpne/lukke"; +App::$strings["spoiler"] = "avsløring"; +App::$strings["Different viewers will see this text differently"] = "Denne teksten vil se forskjellig ut for ulike besøkende"; +App::$strings["$1 wrote:"] = "$1 skrev:"; +App::$strings["(Unknown)"] = "(Ukjent)"; +App::$strings["Visible to anybody on the internet."] = "Synlig for enhver på Internett."; +App::$strings["Visible to you only."] = "Synlig bare for deg."; +App::$strings["Visible to anybody in this network."] = "Synlig for enhver i dette nettverket."; +App::$strings["Visible to anybody authenticated."] = "Synlig for enhver som er autentisert."; +App::$strings["Visible to anybody on %s."] = "Synlig for alle på %s."; +App::$strings["Visible to all connections."] = "Synlig for alle forbindelser."; +App::$strings["Visible to approved connections."] = "Synlig for godkjente forbindelser."; +App::$strings["Visible to specific connections."] = "Synlig for spesifikke forbindelser."; +App::$strings["Privacy group is empty."] = "Personverngruppen er tom."; +App::$strings["Privacy group: %s"] = "Personverngruppe: %s"; +App::$strings["Connection not found."] = "Forbindelsen ble ikke funnet."; +App::$strings["profile photo"] = "profilbilde"; +App::$strings["Embedded content"] = "Innebygget innhold"; +App::$strings["Embedding disabled"] = "Innbygging avskrudd"; +App::$strings["System"] = "System"; +App::$strings["New App"] = "Ny app"; +App::$strings["Suggestions"] = "Forslag"; +App::$strings["See more..."] = "Se mer..."; +App::$strings["You have %1$.0f of %2$.0f allowed connections."] = "Du har %1$.0f av %2$.0f tillate forbindelser."; +App::$strings["Add New Connection"] = "Legg til ny forbindelse"; +App::$strings["Enter channel address"] = "Skriv kanaladressen"; +App::$strings["Examples: bob@example.com, https://example.com/barbara"] = "Eksempel: ola@eksempel.no, https://eksempel.no/kari"; +App::$strings["Notes"] = "Merknader"; +App::$strings["Remove term"] = "Fjern begrep"; +App::$strings["Everything"] = "Alt"; +App::$strings["Archives"] = "Arkiv"; +App::$strings["Refresh"] = "Forny"; +App::$strings["Account settings"] = "Kontoinnstillinger"; +App::$strings["Channel settings"] = "Kanalinnstillinger"; +App::$strings["Additional features"] = "Tilleggsfunksjoner"; +App::$strings["Feature/Addon settings"] = "Funksjons-/Tilleggsinnstillinger"; +App::$strings["Display settings"] = "Visningsinnstillinger"; +App::$strings["Manage locations"] = "Håndter plasseringer"; +App::$strings["Export channel"] = "Eksporter kanal"; +App::$strings["Connected apps"] = "Tilkoblede app-er"; +App::$strings["Premium Channel Settings"] = "Premiumkanal-innstillinger"; +App::$strings["Private Mail Menu"] = "Meny for privat post"; +App::$strings["Combined View"] = "Kombinert visning"; +App::$strings["Conversations"] = "Samtaler"; +App::$strings["Received Messages"] = "Mottatte meldinger"; +App::$strings["Sent Messages"] = "Sendte meldinger"; +App::$strings["No messages."] = "Ingen meldinger."; +App::$strings["Delete conversation"] = "Slett samtale"; +App::$strings["Events Tools"] = "Kalenderverktøy"; +App::$strings["Export Calendar"] = "Eksporter kalender"; +App::$strings["Import Calendar"] = "Importer kalender"; +App::$strings["Overview"] = "Overblikk"; +App::$strings["Chat Members"] = "Chatmedlemmer"; +App::$strings["Wiki List"] = ""; +App::$strings["Wiki Pages"] = ""; +App::$strings["Bookmarked Chatrooms"] = "Bokmerkede chatrom"; +App::$strings["Suggested Chatrooms"] = "Foreslåtte chatrom"; +App::$strings["photo/image"] = "foto/bilde"; +App::$strings["Click to show more"] = "Klikk for å vise mer"; +App::$strings["Rating Tools"] = "Vurderingsverktøy"; +App::$strings["Rate Me"] = "Vurder meg"; +App::$strings["View Ratings"] = "Vis vurderinger"; +App::$strings["Forums"] = "Forum"; +App::$strings["Tasks"] = "Oppgaver"; +App::$strings["Documentation"] = "Dokumentasjon"; +App::$strings["Project/Site Information"] = "Prosjekt-/Nettstedsinformasjon"; +App::$strings["For Members"] = "For medlemmer"; +App::$strings["For Administrators"] = "For administratorer"; +App::$strings["For Developers"] = "For utviklere"; +App::$strings["Member registrations waiting for confirmation"] = "Medlemsregistreringer venter på bekreftelse"; +App::$strings["Inspect queue"] = "Inspiser kø"; +App::$strings["DB updates"] = "Databaseoppdateringer"; +App::$strings["Plugin Features"] = "Tilleggsfunksjoner"; +App::$strings[" and "] = "og"; +App::$strings["public profile"] = "offentlig profil"; +App::$strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s endret %2\$s til “%3\$s”"; +App::$strings["Visit %1\$s's %2\$s"] = "Besøk %1\$s sitt %2\$s"; +App::$strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s har oppdatert %2\$s, endret %3\$s."; +App::$strings["Attachments:"] = "Vedlegg:"; +App::$strings["\$Projectname event notification:"] = "\$Projectname hendelsesvarsling:"; App::$strings["Delete this item?"] = "Slett dette elementet?"; -App::$strings["[-] show less"] = "[-] Vis mindre"; -App::$strings["[+] expand"] = "[+] Utvid"; -App::$strings["[-] collapse"] = "[-] Lukk"; +App::$strings["%s show less"] = ""; +App::$strings["%s expand"] = ""; +App::$strings["%s collapse"] = ""; App::$strings["Password too short"] = "Passordet er for kort"; App::$strings["Passwords do not match"] = "Passordene er ikke like"; App::$strings["everybody"] = "alle"; @@ -2189,72 +2222,78 @@ App::$strings["__ctx:calendar__ month"] = "måned"; App::$strings["__ctx:calendar__ week"] = "uke"; App::$strings["__ctx:calendar__ day"] = "dag"; App::$strings["__ctx:calendar__ All day"] = "Hele dagen"; -App::$strings["view full size"] = "vis full størrelse"; -App::$strings["No Subject"] = "Uten emne"; -App::$strings["Friendica"] = "Friendica"; -App::$strings["OStatus"] = "OStatus"; -App::$strings["GNU-Social"] = ""; -App::$strings["RSS/Atom"] = "RSS/Atom"; -App::$strings["Diaspora"] = "Diaspora"; -App::$strings["Facebook"] = "Facebook"; -App::$strings["Zot"] = "Zot"; -App::$strings["LinkedIn"] = "LinkedIn"; -App::$strings["XMPP/IM"] = "XMPP/IM"; -App::$strings["MySpace"] = "MySpace"; -App::$strings["Image exceeds website size limit of %lu bytes"] = "Bilde overstiger nettstedets størrelsesbegrensning på %lu bytes"; -App::$strings["Image file is empty."] = "Bildefilen er tom."; -App::$strings["Photo storage failed."] = "Bildelagring mislyktes."; -App::$strings["a new photo"] = "et nytt bilde"; -App::$strings["__ctx:photo_upload__ %1\$s posted %2\$s to %3\$s"] = "%1\$s la inn %2\$s til %3\$s"; -App::$strings["Upload New Photos"] = "Last opp nye bilder"; +App::$strings["%d invitation available"] = array( + 0 => "%d invitasjon tilgjengelig", + 1 => "%d invitasjoner tilgjengelig", +); +App::$strings["Find Channels"] = "Finn kanaler"; +App::$strings["Enter name or interest"] = "Skriv navn eller interesse"; +App::$strings["Connect/Follow"] = "Forbindelse/Følg"; +App::$strings["Examples: Robert Morgenstein, Fishing"] = "Eksempler: Ola Nordmann, fisking"; +App::$strings["Random Profile"] = "Tilfeldig profil"; +App::$strings["Invite Friends"] = "Inviter venner"; +App::$strings["Advanced example: name=fred and country=iceland"] = "Avansert eksempel: navn=fred og land=island"; +App::$strings["%d connection in common"] = array( + 0 => "%d forbindelse felles", + 1 => "%d forbindelser felles", +); +App::$strings["show more"] = "vis mer"; +App::$strings["Directory Options"] = "Kataloginnstillinger"; +App::$strings["Safe Mode"] = "Trygt modus"; +App::$strings["Public Forums Only"] = "Bare offentlige forum"; +App::$strings["This Website Only"] = "Kun dette nettstedet"; +App::$strings["No recipient provided."] = "Ingen mottaker angitt."; +App::$strings["[no subject]"] = "[ikke noe emne]"; +App::$strings["Unable to determine sender."] = "Kan ikke avgjøre avsender."; +App::$strings["Stored post could not be verified."] = "Lagret innlegg kunne ikke bekreftes."; +App::$strings["Who can see this?"] = "Hvem kan se dette?"; +App::$strings["Custom selection"] = "Tilpasset utvalg"; +App::$strings["Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit the scope of \"Show\"."] = "Velg \"Vis\" for å tillate visning. \"Ikke vis\" lar deg overstyre og avgrense omfanget av \"Vis\"."; +App::$strings["Show"] = "Vis"; +App::$strings["Don't show"] = "Ikke vis"; +App::$strings["Other networks and post services"] = "Andre nettverk og innleggstjenester"; +App::$strings["Post permissions %s cannot be changed %s after a post is shared.
These permissions set who is allowed to view the post."] = "Innleggstillatelsene %s kan ikke endres %s etter at et innlegg er delt.
Disse innstillingene angir hvem som har tillatelse til å se innlegget."; +App::$strings["Birthday"] = "Fødselsdag"; +App::$strings["Age: "] = "Alder:"; +App::$strings["YYYY-MM-DD or MM-DD"] = "YYYY-MM-DD eller MM-DD"; +App::$strings["never"] = "aldri"; +App::$strings["less than a second ago"] = "for mindre enn ett sekund siden"; +App::$strings["__ctx:e.g. 22 hours ago, 1 minute ago__ %1\$d %2\$s ago"] = "%1\$d %2\$s siden"; +App::$strings["__ctx:relative_date__ year"] = array( + 0 => "år", + 1 => "år", +); +App::$strings["__ctx:relative_date__ month"] = array( + 0 => "måned", + 1 => "måneder", +); +App::$strings["__ctx:relative_date__ week"] = array( + 0 => "uke", + 1 => "uker", +); +App::$strings["__ctx:relative_date__ day"] = array( + 0 => "dag", + 1 => "dager", +); +App::$strings["__ctx:relative_date__ hour"] = array( + 0 => "time", + 1 => "timer", +); +App::$strings["__ctx:relative_date__ minute"] = array( + 0 => "minutt", + 1 => "minutter", +); +App::$strings["__ctx:relative_date__ second"] = array( + 0 => "sekund", + 1 => "sekunder", +); +App::$strings["%1\$s's birthday"] = "%1\$s sin fødselsdag"; +App::$strings["Happy Birthday %1\$s"] = "Gratulerer med dagen, %1\$s !"; +App::$strings["Public Timeline"] = "Offentlig tidslinje"; App::$strings["Invalid data packet"] = "Ugyldig datapakke"; App::$strings["Unable to verify channel signature"] = "Ikke i stand til å sjekke kanalsignaturen"; App::$strings["Unable to verify site signature for %s"] = "Ikke i stand til å bekrefte signaturen til %s"; App::$strings["invalid target signature"] = "Målets signatur er ugyldig"; -App::$strings["New Page"] = "Ny side"; -App::$strings["Title"] = "Tittel"; -App::$strings["Can view my normal stream and posts"] = "Kan se min normale strøm og innlegg"; -App::$strings["Can view my default channel profile"] = "Kan se min standard kanalprofil"; -App::$strings["Can view my connections"] = "Kan se mine forbindelser"; -App::$strings["Can view my file storage and photos"] = "Kan se mine filer og bilder"; -App::$strings["Can view my webpages"] = "Kan se mine websider"; -App::$strings["Can send me their channel stream and posts"] = "Kan sende meg deres kanalstrøm og innlegg"; -App::$strings["Can post on my channel page (\"wall\")"] = "Kan lage innlegg på min kanalside (\"vegg\")"; -App::$strings["Can comment on or like my posts"] = "Kan kommentere på eller like mine innlegg"; -App::$strings["Can send me private mail messages"] = "Kan sende meg private meldinger"; -App::$strings["Can like/dislike stuff"] = "Kan like/ikke like forskjellige greier"; -App::$strings["Profiles and things other than posts/comments"] = "Profiler og andre ting enn innlegg/kommentarer"; -App::$strings["Can forward to all my channel contacts via post @mentions"] = "Kan videresende til alle mine kanalkontakter via @navn i innlegg"; -App::$strings["Advanced - useful for creating group forum channels"] = "Avansert - nyttig for å lage forumkanaler for grupper"; -App::$strings["Can chat with me (when available)"] = "Kan chatte/sende lynmeldinger til meg (når tilgjengelig)"; -App::$strings["Can write to my file storage and photos"] = "Kan skrive til mitt lager for filer og bilder"; -App::$strings["Can edit my webpages"] = "Kan endre mine websider"; -App::$strings["Can source my public posts in derived channels"] = "Kan bruke mine offentlige innlegg som kanalkilde i egne kanaler"; -App::$strings["Somewhat advanced - very useful in open communities"] = "Litt avansert - svært nyttig i åpne fellesskap"; -App::$strings["Can administer my channel resources"] = "Kan administrere mine kanalressurser"; -App::$strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "Ekstremt avansert. La dette være med mindre du vet hva du gjør"; -App::$strings["Social Networking"] = "Sosialt nettverk"; -App::$strings["Social - Mostly Public"] = "Sosial - ganske offentlig"; -App::$strings["Social - Restricted"] = "Sosial - begrenset"; -App::$strings["Social - Private"] = "Sosial - privat"; -App::$strings["Community Forum"] = "Forum for fellesskap"; -App::$strings["Forum - Mostly Public"] = "Forum - ganske offentlig"; -App::$strings["Forum - Restricted"] = "Forum - begrenset"; -App::$strings["Forum - Private"] = "Forum - privat"; -App::$strings["Feed Republish"] = "Republisering av strømmet innhold"; -App::$strings["Feed - Mostly Public"] = "Strøm - ganske offentlig"; -App::$strings["Feed - Restricted"] = "Strøm - begrenset"; -App::$strings["Special Purpose"] = "Spesiell bruk"; -App::$strings["Special - Celebrity/Soapbox"] = "Spesiell - kjendis/talerstol"; -App::$strings["Special - Group Repository"] = "Spesiell - gruppelager"; -App::$strings["Custom/Expert Mode"] = "Tilpasset/Ekspertmodus"; -App::$strings[" and "] = "og"; -App::$strings["public profile"] = "offentlig profil"; -App::$strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s endret %2\$s til “%3\$s”"; -App::$strings["Visit %1\$s's %2\$s"] = "Besøk %1\$s sitt %2\$s"; -App::$strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s har oppdatert %2\$s, endret %3\$s."; -App::$strings["Attachments:"] = "Vedlegg:"; -App::$strings["\$Projectname event notification:"] = "\$Projectname hendelsesvarsling:"; App::$strings["Focus (Hubzilla default)"] = "Focus (Hubzilla standardtema)"; App::$strings["Theme settings"] = "Temainnstillinger"; App::$strings["Select scheme"] = "Velg skjema"; @@ -2289,11 +2328,12 @@ App::$strings["Left align page content"] = "Venstrejuster sideinnhold"; App::$strings["Set minimum opacity of nav bar - to hide it"] = "Angi minste dekkevne for navigasjonslinjen - for å skjule den"; App::$strings["Set size of conversation author photo"] = "Angi størrelsen for samtalens forfatterbilde"; App::$strings["Set size of followup author photos"] = "Angi størrelsen på forfatterbilder ved oppfølging"; -App::$strings["__ctx:opensearch__ Search %1\$s (%2\$s)"] = ""; -App::$strings["__ctx:opensearch__ \$Projectname"] = ""; +App::$strings["__ctx:opensearch__ Search %1\$s (%2\$s)"] = "Søk %1\$s (%2\$s)"; +App::$strings["__ctx:opensearch__ \$Projectname"] = "\$Projectname"; App::$strings["Update %s failed. See error logs."] = "Oppdatering %s mislyktes. Se feilloggen."; App::$strings["Update Error at %s"] = "Oppdateringsfeil ved %s"; App::$strings["Create an account to access services and applications within the Hubzilla"] = "Lag en konto for å få tilgang til tjenester og programmer i Hubzilla"; +App::$strings["Login/Email"] = ""; App::$strings["Password"] = "Passord"; App::$strings["Remember me"] = "Husk meg"; App::$strings["Forgot your password?"] = "Glemt passordet ditt?"; diff --git a/view/nl/hmessages.po b/view/nl/hmessages.po index 9219a1c06..858724e05 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: 2016-06-10 00:02-0700\n" -"PO-Revision-Date: 2016-06-10 13:57+0000\n" +"POT-Creation-Date: 2016-07-22 00:02-0700\n" +"PO-Revision-Date: 2016-07-26 00:17+0000\n" "Last-Translator: jeroenpraat \n" "Language-Team: Dutch (http://www.transifex.com/Friendica/red-matrix/language/nl/)\n" "MIME-Version: 1.0\n" @@ -18,11 +18,156 @@ msgstr "" "Language: nl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ../../Zotlabs/Access/PermissionRoles.php:182 +#: ../../include/permissions.php:904 +msgid "Social Networking" +msgstr "Sociaal netwerk" + +#: ../../Zotlabs/Access/PermissionRoles.php:183 +#: ../../include/permissions.php:904 +msgid "Social - Mostly Public" +msgstr "Sociaal - Vrijwel alles openbaar" + +#: ../../Zotlabs/Access/PermissionRoles.php:184 +#: ../../include/permissions.php:904 +msgid "Social - Restricted" +msgstr "Sociaal - Beperkt zichtbaar" + +#: ../../Zotlabs/Access/PermissionRoles.php:185 +#: ../../include/permissions.php:904 +msgid "Social - Private" +msgstr "Sociaal - Verborgen kanaal" + +#: ../../Zotlabs/Access/PermissionRoles.php:188 +#: ../../include/permissions.php:905 +msgid "Community Forum" +msgstr "Groepsforum" + +#: ../../Zotlabs/Access/PermissionRoles.php:189 +#: ../../include/permissions.php:905 +msgid "Forum - Mostly Public" +msgstr "Forum - Vrijwel alles openbaar" + +#: ../../Zotlabs/Access/PermissionRoles.php:190 +#: ../../include/permissions.php:905 +msgid "Forum - Restricted" +msgstr "Forum - Beperkt zichtbaar" + +#: ../../Zotlabs/Access/PermissionRoles.php:191 +#: ../../include/permissions.php:905 +msgid "Forum - Private" +msgstr "Forum - Verborgen kanaal" + +#: ../../Zotlabs/Access/PermissionRoles.php:194 +#: ../../include/permissions.php:906 +msgid "Feed Republish" +msgstr "Feed herpubliceren" + +#: ../../Zotlabs/Access/PermissionRoles.php:195 +#: ../../include/permissions.php:906 +msgid "Feed - Mostly Public" +msgstr "Feed - Vrijwel alles openbaar" + +#: ../../Zotlabs/Access/PermissionRoles.php:196 +#: ../../include/permissions.php:906 +msgid "Feed - Restricted" +msgstr "Feed - Beperkt zichtbaar" + +#: ../../Zotlabs/Access/PermissionRoles.php:199 +#: ../../include/permissions.php:907 +msgid "Special Purpose" +msgstr "Speciaal doel" + +#: ../../Zotlabs/Access/PermissionRoles.php:200 +#: ../../include/permissions.php:907 +msgid "Special - Celebrity/Soapbox" +msgstr "Speciaal - Beroemdheid/alleen volgen" + +#: ../../Zotlabs/Access/PermissionRoles.php:201 +#: ../../include/permissions.php:907 +msgid "Special - Group Repository" +msgstr "Speciaal - Groepsopslag" + +#: ../../Zotlabs/Access/PermissionRoles.php:204 ../../include/selectors.php:49 +#: ../../include/selectors.php:66 ../../include/selectors.php:104 +#: ../../include/selectors.php:140 ../../include/permissions.php:908 +msgid "Other" +msgstr "Anders" + +#: ../../Zotlabs/Access/PermissionRoles.php:205 +#: ../../include/permissions.php:908 +msgid "Custom/Expert Mode" +msgstr "Expertmodus/handmatig aanpassen" + +#: ../../Zotlabs/Access/Permissions.php:30 +msgid "Can view my channel stream and posts" +msgstr "Kan mijn kanaal en berichten bekijken" + +#: ../../Zotlabs/Access/Permissions.php:31 ../../include/permissions.php:33 +msgid "Can send me their channel stream and posts" +msgstr "Kan mij de inhoud van hun kanaal en berichten sturen" + +#: ../../Zotlabs/Access/Permissions.php:32 ../../include/permissions.php:27 +msgid "Can view my default channel profile" +msgstr "Kan mijn standaard kanaalprofiel bekijken" + +#: ../../Zotlabs/Access/Permissions.php:33 ../../include/permissions.php:28 +msgid "Can view my connections" +msgstr "Kan een lijst met mijn connecties bekijken" + +#: ../../Zotlabs/Access/Permissions.php:34 ../../include/permissions.php:29 +msgid "Can view my file storage and photos" +msgstr "Kan mijn foto's en andere bestanden bekijken" + +#: ../../Zotlabs/Access/Permissions.php:35 +msgid "Can upload/modify my file storage and photos" +msgstr "Kan foto's en andere bestanden aan mijn bestandsopslag toevoegen" + +#: ../../Zotlabs/Access/Permissions.php:36 +msgid "Can view my channel webpages" +msgstr "Kan de webpagina's van mijn kanaal bekijken" + +#: ../../Zotlabs/Access/Permissions.php:37 +msgid "Can create/edit my channel webpages" +msgstr "Kan wegpagina's van mijn kanaal aanmaken en bewerken" + +#: ../../Zotlabs/Access/Permissions.php:38 +msgid "Can post on my channel (wall) page" +msgstr "Kan een bericht in mijn kanaal plaatsen" + +#: ../../Zotlabs/Access/Permissions.php:39 ../../include/permissions.php:35 +msgid "Can comment on or like my posts" +msgstr "Kan op mijn berichten reageren of deze (niet) leuk vinden" + +#: ../../Zotlabs/Access/Permissions.php:40 ../../include/permissions.php:36 +msgid "Can send me private mail messages" +msgstr "Kan mij privéberichten sturen" + +#: ../../Zotlabs/Access/Permissions.php:41 +msgid "Can like/dislike profiles and profile things" +msgstr "Kan profielen en profieldingen leuk en niet leuk vinden " + +#: ../../Zotlabs/Access/Permissions.php:42 +msgid "Can forward to all my channel connections via @+ mentions in posts" +msgstr "Kan naar al mijn kanaalconnecties berichten doorsturen met behulp van @vermeldingen+" + +#: ../../Zotlabs/Access/Permissions.php:43 +msgid "Can chat with me" +msgstr "Kan met mij chatten" + +#: ../../Zotlabs/Access/Permissions.php:44 ../../include/permissions.php:44 +msgid "Can source my public posts in derived channels" +msgstr "Kan mijn openbare berichten als bron voor andere kanalen gebruiken" + +#: ../../Zotlabs/Access/Permissions.php:45 +msgid "Can administer my channel" +msgstr "Kan mijn kanaal beheren" + #: ../../Zotlabs/Storage/Browser.php:107 ../../Zotlabs/Storage/Browser.php:239 msgid "parent" msgstr "omhoog" -#: ../../Zotlabs/Storage/Browser.php:131 ../../include/text.php:2620 +#: ../../Zotlabs/Storage/Browser.php:131 ../../include/text.php:2605 msgid "Collection" msgstr "map" @@ -46,16 +191,17 @@ msgstr "Planning-postvak IN" msgid "Schedule Outbox" msgstr "Planning-postvak UIT" -#: ../../Zotlabs/Storage/Browser.php:164 ../../Zotlabs/Module/Photos.php:798 -#: ../../Zotlabs/Module/Photos.php:1243 ../../Zotlabs/Lib/Apps.php:486 -#: ../../Zotlabs/Lib/Apps.php:561 ../../include/widgets.php:1505 -#: ../../include/conversation.php:1032 +#: ../../Zotlabs/Storage/Browser.php:164 ../../Zotlabs/Module/Photos.php:796 +#: ../../Zotlabs/Module/Photos.php:1241 +#: ../../Zotlabs/Module/Embedphotos.php:147 ../../Zotlabs/Lib/Apps.php:490 +#: ../../Zotlabs/Lib/Apps.php:565 ../../include/conversation.php:1035 +#: ../../include/widgets.php:1599 msgid "Unknown" msgstr "Onbekend" #: ../../Zotlabs/Storage/Browser.php:226 ../../Zotlabs/Module/Fbrowser.php:85 -#: ../../Zotlabs/Lib/Apps.php:216 ../../include/nav.php:93 -#: ../../include/conversation.php:1639 +#: ../../Zotlabs/Lib/Apps.php:217 ../../include/nav.php:93 +#: ../../include/conversation.php:1654 msgid "Files" msgstr "Bestanden" @@ -68,22 +214,23 @@ msgid "Shared" msgstr "Gedeeld" #: ../../Zotlabs/Storage/Browser.php:230 ../../Zotlabs/Storage/Browser.php:306 -#: ../../Zotlabs/Module/Blocks.php:156 ../../Zotlabs/Module/Layouts.php:182 -#: ../../Zotlabs/Module/Menu.php:118 ../../Zotlabs/Module/New_channel.php:142 -#: ../../Zotlabs/Module/Webpages.php:186 +#: ../../Zotlabs/Module/Layouts.php:184 ../../Zotlabs/Module/Menu.php:118 +#: ../../Zotlabs/Module/New_channel.php:142 +#: ../../Zotlabs/Module/Blocks.php:159 ../../Zotlabs/Module/Webpages.php:193 msgid "Create" msgstr "Aanmaken" #: ../../Zotlabs/Storage/Browser.php:231 ../../Zotlabs/Storage/Browser.php:308 #: ../../Zotlabs/Module/Cover_photo.php:357 -#: ../../Zotlabs/Module/Photos.php:825 ../../Zotlabs/Module/Photos.php:1364 -#: ../../Zotlabs/Module/Profile_photo.php:368 ../../include/widgets.php:1518 +#: ../../Zotlabs/Module/Photos.php:823 ../../Zotlabs/Module/Photos.php:1362 +#: ../../Zotlabs/Module/Profile_photo.php:390 +#: ../../Zotlabs/Module/Embedphotos.php:159 ../../include/widgets.php:1612 msgid "Upload" msgstr "Uploaden" #: ../../Zotlabs/Storage/Browser.php:235 ../../Zotlabs/Module/Chat.php:247 -#: ../../Zotlabs/Module/Admin.php:1223 ../../Zotlabs/Module/Settings.php:592 -#: ../../Zotlabs/Module/Settings.php:618 +#: ../../Zotlabs/Module/Admin.php:1223 ../../Zotlabs/Module/Settings.php:646 +#: ../../Zotlabs/Module/Settings.php:672 #: ../../Zotlabs/Module/Sharedwithme.php:99 msgid "Name" msgstr "Naam" @@ -93,7 +240,7 @@ msgid "Type" msgstr "Type" #: ../../Zotlabs/Storage/Browser.php:237 -#: ../../Zotlabs/Module/Sharedwithme.php:101 ../../include/text.php:1344 +#: ../../Zotlabs/Module/Sharedwithme.php:101 ../../include/text.php:1324 msgid "Size" msgstr "Grootte" @@ -102,34 +249,32 @@ msgstr "Grootte" msgid "Last Modified" msgstr "Laatst gewijzigd" -#: ../../Zotlabs/Storage/Browser.php:240 ../../Zotlabs/Module/Blocks.php:157 -#: ../../Zotlabs/Module/Editblock.php:109 +#: ../../Zotlabs/Storage/Browser.php:240 ../../Zotlabs/Module/Editpost.php:84 #: ../../Zotlabs/Module/Connections.php:290 #: ../../Zotlabs/Module/Connections.php:310 -#: ../../Zotlabs/Module/Editpost.php:84 -#: ../../Zotlabs/Module/Editlayout.php:113 -#: ../../Zotlabs/Module/Editwebpage.php:146 -#: ../../Zotlabs/Module/Layouts.php:190 ../../Zotlabs/Module/Menu.php:112 -#: ../../Zotlabs/Module/Admin.php:2113 ../../Zotlabs/Module/Settings.php:652 -#: ../../Zotlabs/Module/Thing.php:260 ../../Zotlabs/Module/Webpages.php:187 -#: ../../Zotlabs/Lib/Apps.php:337 ../../Zotlabs/Lib/ThreadItem.php:106 -#: ../../include/channel.php:937 ../../include/channel.php:941 -#: ../../include/menu.php:108 ../../include/page_widgets.php:8 -#: ../../include/page_widgets.php:36 +#: ../../Zotlabs/Module/Editlayout.php:114 +#: ../../Zotlabs/Module/Editwebpage.php:145 +#: ../../Zotlabs/Module/Layouts.php:192 ../../Zotlabs/Module/Menu.php:112 +#: ../../Zotlabs/Module/Admin.php:2113 ../../Zotlabs/Module/Blocks.php:160 +#: ../../Zotlabs/Module/Editblock.php:109 +#: ../../Zotlabs/Module/Settings.php:706 ../../Zotlabs/Module/Thing.php:260 +#: ../../Zotlabs/Module/Webpages.php:194 ../../Zotlabs/Lib/Apps.php:341 +#: ../../Zotlabs/Lib/ThreadItem.php:106 ../../include/page_widgets.php:9 +#: ../../include/page_widgets.php:39 ../../include/channel.php:976 +#: ../../include/channel.php:980 ../../include/menu.php:108 msgid "Edit" msgstr "Bewerken" -#: ../../Zotlabs/Storage/Browser.php:241 ../../Zotlabs/Module/Blocks.php:159 -#: ../../Zotlabs/Module/Connedit.php:572 -#: ../../Zotlabs/Module/Editblock.php:134 +#: ../../Zotlabs/Storage/Browser.php:241 ../../Zotlabs/Module/Connedit.php:602 #: ../../Zotlabs/Module/Connections.php:263 -#: ../../Zotlabs/Module/Editlayout.php:136 -#: ../../Zotlabs/Module/Editwebpage.php:170 ../../Zotlabs/Module/Group.php:177 -#: ../../Zotlabs/Module/Photos.php:1173 ../../Zotlabs/Module/Admin.php:1039 +#: ../../Zotlabs/Module/Editlayout.php:137 +#: ../../Zotlabs/Module/Editwebpage.php:169 ../../Zotlabs/Module/Group.php:177 +#: ../../Zotlabs/Module/Photos.php:1171 ../../Zotlabs/Module/Admin.php:1039 #: ../../Zotlabs/Module/Admin.php:1213 ../../Zotlabs/Module/Admin.php:2114 -#: ../../Zotlabs/Module/Settings.php:653 ../../Zotlabs/Module/Thing.php:261 -#: ../../Zotlabs/Module/Webpages.php:189 ../../Zotlabs/Lib/Apps.php:338 -#: ../../Zotlabs/Lib/ThreadItem.php:126 ../../include/conversation.php:657 +#: ../../Zotlabs/Module/Blocks.php:162 ../../Zotlabs/Module/Editblock.php:134 +#: ../../Zotlabs/Module/Settings.php:707 ../../Zotlabs/Module/Thing.php:261 +#: ../../Zotlabs/Module/Webpages.php:196 ../../Zotlabs/Lib/Apps.php:342 +#: ../../Zotlabs/Lib/ThreadItem.php:126 ../../include/conversation.php:660 msgid "Delete" msgstr "Verwijderen" @@ -155,74 +300,73 @@ msgstr "Nieuwe map aanmaken" msgid "Upload file" msgstr "Bestand uploaden" -#: ../../Zotlabs/Web/WebServer.php:120 ../../Zotlabs/Module/Dreport.php:10 -#: ../../Zotlabs/Module/Dreport.php:49 ../../Zotlabs/Module/Group.php:72 -#: ../../Zotlabs/Module/Like.php:284 ../../Zotlabs/Module/Import_items.php:112 +#: ../../Zotlabs/Web/WebServer.php:127 ../../Zotlabs/Module/Dreport.php:10 +#: ../../Zotlabs/Module/Dreport.php:66 ../../Zotlabs/Module/Group.php:72 +#: ../../Zotlabs/Module/Like.php:283 ../../Zotlabs/Module/Import_items.php:114 #: ../../Zotlabs/Module/Profperm.php:28 ../../Zotlabs/Module/Subthread.php:62 -#: ../../include/items.php:385 +#: ../../include/items.php:384 msgid "Permission denied" msgstr "Toegang geweigerd" -#: ../../Zotlabs/Web/WebServer.php:121 ../../Zotlabs/Web/Router.php:65 -#: ../../Zotlabs/Module/Achievements.php:34 ../../Zotlabs/Module/Blocks.php:73 -#: ../../Zotlabs/Module/Blocks.php:80 ../../Zotlabs/Module/Channel.php:105 -#: ../../Zotlabs/Module/Channel.php:226 ../../Zotlabs/Module/Channel.php:267 -#: ../../Zotlabs/Module/Chat.php:100 ../../Zotlabs/Module/Chat.php:105 -#: ../../Zotlabs/Module/Authtest.php:16 ../../Zotlabs/Module/Block.php:26 -#: ../../Zotlabs/Module/Block.php:76 ../../Zotlabs/Module/Bookmarks.php:61 -#: ../../Zotlabs/Module/Connedit.php:366 ../../Zotlabs/Module/Editblock.php:67 -#: ../../Zotlabs/Module/Common.php:39 ../../Zotlabs/Module/Connections.php:33 +#: ../../Zotlabs/Web/WebServer.php:128 ../../Zotlabs/Web/Router.php:65 +#: ../../Zotlabs/Module/Achievements.php:34 +#: ../../Zotlabs/Module/Connedit.php:390 ../../Zotlabs/Module/Id.php:76 +#: ../../Zotlabs/Module/Authtest.php:16 ../../Zotlabs/Module/Events.php:264 +#: ../../Zotlabs/Module/Bookmarks.php:61 ../../Zotlabs/Module/Editpost.php:17 +#: ../../Zotlabs/Module/Page.php:35 ../../Zotlabs/Module/Page.php:91 +#: ../../Zotlabs/Module/Connections.php:33 #: ../../Zotlabs/Module/Cover_photo.php:277 -#: ../../Zotlabs/Module/Cover_photo.php:290 -#: ../../Zotlabs/Module/Editpost.php:17 ../../Zotlabs/Module/Events.php:265 -#: ../../Zotlabs/Module/Editlayout.php:67 +#: ../../Zotlabs/Module/Cover_photo.php:290 ../../Zotlabs/Module/Chat.php:100 +#: ../../Zotlabs/Module/Chat.php:105 ../../Zotlabs/Module/Editlayout.php:67 #: ../../Zotlabs/Module/Editlayout.php:90 -#: ../../Zotlabs/Module/Editwebpage.php:69 -#: ../../Zotlabs/Module/Editwebpage.php:90 -#: ../../Zotlabs/Module/Editwebpage.php:105 -#: ../../Zotlabs/Module/Editwebpage.php:127 ../../Zotlabs/Module/Group.php:13 -#: ../../Zotlabs/Module/Api.php:13 ../../Zotlabs/Module/Api.php:18 -#: ../../Zotlabs/Module/Filestorage.php:24 -#: ../../Zotlabs/Module/Filestorage.php:79 -#: ../../Zotlabs/Module/Filestorage.php:94 -#: ../../Zotlabs/Module/Filestorage.php:121 ../../Zotlabs/Module/Item.php:210 -#: ../../Zotlabs/Module/Item.php:218 ../../Zotlabs/Module/Item.php:1070 +#: ../../Zotlabs/Module/Editwebpage.php:68 +#: ../../Zotlabs/Module/Editwebpage.php:89 +#: ../../Zotlabs/Module/Editwebpage.php:104 +#: ../../Zotlabs/Module/Editwebpage.php:126 ../../Zotlabs/Module/Group.php:13 +#: ../../Zotlabs/Module/Appman.php:75 ../../Zotlabs/Module/Pdledit.php:26 +#: ../../Zotlabs/Module/Filestorage.php:23 +#: ../../Zotlabs/Module/Filestorage.php:78 +#: ../../Zotlabs/Module/Filestorage.php:93 +#: ../../Zotlabs/Module/Filestorage.php:120 #: ../../Zotlabs/Module/Layouts.php:71 ../../Zotlabs/Module/Layouts.php:78 -#: ../../Zotlabs/Module/Layouts.php:89 ../../Zotlabs/Module/Id.php:76 -#: ../../Zotlabs/Module/Like.php:181 ../../Zotlabs/Module/Invite.php:17 -#: ../../Zotlabs/Module/Invite.php:91 ../../Zotlabs/Module/Locs.php:87 -#: ../../Zotlabs/Module/Mail.php:129 ../../Zotlabs/Module/Manage.php:10 -#: ../../Zotlabs/Module/Menu.php:78 ../../Zotlabs/Module/Message.php:18 -#: ../../Zotlabs/Module/Mood.php:116 ../../Zotlabs/Module/Network.php:17 +#: ../../Zotlabs/Module/Layouts.php:89 ../../Zotlabs/Module/Like.php:181 +#: ../../Zotlabs/Module/Profiles.php:203 ../../Zotlabs/Module/Profiles.php:601 +#: ../../Zotlabs/Module/Item.php:213 ../../Zotlabs/Module/Item.php:221 +#: ../../Zotlabs/Module/Item.php:1071 ../../Zotlabs/Module/Photos.php:73 +#: ../../Zotlabs/Module/Invite.php:17 ../../Zotlabs/Module/Invite.php:91 +#: ../../Zotlabs/Module/Locs.php:87 ../../Zotlabs/Module/Mail.php:121 +#: ../../Zotlabs/Module/Manage.php:10 ../../Zotlabs/Module/Menu.php:78 +#: ../../Zotlabs/Module/Message.php:18 ../../Zotlabs/Module/Mood.php:116 +#: ../../Zotlabs/Module/Network.php:15 ../../Zotlabs/Module/Channel.php:104 +#: ../../Zotlabs/Module/Channel.php:225 ../../Zotlabs/Module/Channel.php:266 #: ../../Zotlabs/Module/Mitem.php:115 ../../Zotlabs/Module/New_channel.php:77 #: ../../Zotlabs/Module/New_channel.php:104 -#: ../../Zotlabs/Module/Notifications.php:70 -#: ../../Zotlabs/Module/Photos.php:75 ../../Zotlabs/Module/Page.php:35 -#: ../../Zotlabs/Module/Page.php:90 ../../Zotlabs/Module/Pdledit.php:26 -#: ../../Zotlabs/Module/Poke.php:137 ../../Zotlabs/Module/Profile.php:68 -#: ../../Zotlabs/Module/Profile.php:76 ../../Zotlabs/Module/Profiles.php:203 -#: ../../Zotlabs/Module/Profiles.php:601 -#: ../../Zotlabs/Module/Profile_photo.php:256 -#: ../../Zotlabs/Module/Profile_photo.php:269 -#: ../../Zotlabs/Module/Rate.php:113 ../../Zotlabs/Module/Appman.php:75 -#: ../../Zotlabs/Module/Register.php:77 ../../Zotlabs/Module/Regmod.php:21 +#: ../../Zotlabs/Module/Notifications.php:70 ../../Zotlabs/Module/Poke.php:137 +#: ../../Zotlabs/Module/Profile.php:68 ../../Zotlabs/Module/Profile.php:76 +#: ../../Zotlabs/Module/Block.php:26 ../../Zotlabs/Module/Block.php:76 +#: ../../Zotlabs/Module/Profile_photo.php:265 +#: ../../Zotlabs/Module/Profile_photo.php:278 +#: ../../Zotlabs/Module/Blocks.php:73 ../../Zotlabs/Module/Blocks.php:80 +#: ../../Zotlabs/Module/Rate.php:113 ../../Zotlabs/Module/Editblock.php:67 +#: ../../Zotlabs/Module/Common.php:39 ../../Zotlabs/Module/Register.php:77 +#: ../../Zotlabs/Module/Regmod.php:21 #: ../../Zotlabs/Module/Service_limits.php:11 -#: ../../Zotlabs/Module/Settings.php:572 ../../Zotlabs/Module/Setup.php:215 -#: ../../Zotlabs/Module/Sharedwithme.php:11 +#: ../../Zotlabs/Module/Settings.php:626 ../../Zotlabs/Module/Setup.php:215 +#: ../../Zotlabs/Module/Sharedwithme.php:11 ../../Zotlabs/Module/Thing.php:274 +#: ../../Zotlabs/Module/Thing.php:294 ../../Zotlabs/Module/Thing.php:331 #: ../../Zotlabs/Module/Sources.php:74 ../../Zotlabs/Module/Suggest.php:30 -#: ../../Zotlabs/Module/Thing.php:274 ../../Zotlabs/Module/Thing.php:294 -#: ../../Zotlabs/Module/Thing.php:331 -#: ../../Zotlabs/Module/Viewconnections.php:25 -#: ../../Zotlabs/Module/Viewconnections.php:30 -#: ../../Zotlabs/Module/Viewsrc.php:18 ../../Zotlabs/Module/Webpages.php:74 -#: ../../Zotlabs/Lib/Chatroom.php:137 ../../include/items.php:3438 -#: ../../include/attach.php:141 ../../include/attach.php:189 -#: ../../include/attach.php:252 ../../include/attach.php:266 -#: ../../include/attach.php:273 ../../include/attach.php:338 -#: ../../include/attach.php:352 ../../include/attach.php:359 -#: ../../include/attach.php:437 ../../include/attach.php:895 -#: ../../include/attach.php:966 ../../include/attach.php:1118 -#: ../../include/photos.php:27 +#: ../../Zotlabs/Module/Webpages.php:73 +#: ../../Zotlabs/Module/Viewconnections.php:28 +#: ../../Zotlabs/Module/Viewconnections.php:33 +#: ../../Zotlabs/Module/Viewsrc.php:18 ../../Zotlabs/Module/Api.php:13 +#: ../../Zotlabs/Module/Api.php:18 ../../Zotlabs/Lib/Chatroom.php:137 +#: ../../include/photos.php:27 ../../include/attach.php:141 +#: ../../include/attach.php:189 ../../include/attach.php:252 +#: ../../include/attach.php:266 ../../include/attach.php:273 +#: ../../include/attach.php:338 ../../include/attach.php:352 +#: ../../include/attach.php:359 ../../include/attach.php:439 +#: ../../include/attach.php:901 ../../include/attach.php:972 +#: ../../include/attach.php:1124 ../../include/items.php:3448 msgid "Permission denied." msgstr "Toegang geweigerd." @@ -230,9 +374,9 @@ msgstr "Toegang geweigerd." msgid "Not Found" msgstr "Niet gevonden" -#: ../../Zotlabs/Web/Router.php:149 ../../Zotlabs/Module/Block.php:79 -#: ../../Zotlabs/Module/Display.php:117 ../../Zotlabs/Module/Help.php:97 -#: ../../Zotlabs/Module/Page.php:93 +#: ../../Zotlabs/Web/Router.php:149 ../../Zotlabs/Module/Display.php:118 +#: ../../Zotlabs/Module/Page.php:94 ../../Zotlabs/Module/Help.php:97 +#: ../../Zotlabs/Module/Block.php:79 msgid "Page not found." msgstr "Pagina niet gevonden." @@ -248,13 +392,13 @@ msgstr "Authenticatie op afstand geblokkeerd. Je bent lokaal op deze hub ingelog msgid "Welcome %s. Remote authentication successful." msgstr "Welkom %s. Authenticatie op afstand geslaagd." -#: ../../Zotlabs/Module/Achievements.php:15 ../../Zotlabs/Module/Blocks.php:33 -#: ../../Zotlabs/Module/Connect.php:17 ../../Zotlabs/Module/Editblock.php:31 -#: ../../Zotlabs/Module/Editlayout.php:31 -#: ../../Zotlabs/Module/Editwebpage.php:33 -#: ../../Zotlabs/Module/Filestorage.php:60 ../../Zotlabs/Module/Hcard.php:12 -#: ../../Zotlabs/Module/Layouts.php:31 ../../Zotlabs/Module/Profile.php:20 -#: ../../Zotlabs/Module/Webpages.php:34 ../../include/channel.php:837 +#: ../../Zotlabs/Module/Achievements.php:15 +#: ../../Zotlabs/Module/Connect.php:17 ../../Zotlabs/Module/Editlayout.php:31 +#: ../../Zotlabs/Module/Editwebpage.php:32 ../../Zotlabs/Module/Hcard.php:12 +#: ../../Zotlabs/Module/Filestorage.php:59 ../../Zotlabs/Module/Layouts.php:31 +#: ../../Zotlabs/Module/Profile.php:20 ../../Zotlabs/Module/Blocks.php:33 +#: ../../Zotlabs/Module/Editblock.php:31 ../../Zotlabs/Module/Webpages.php:33 +#: ../../include/channel.php:876 msgid "Requested profile is not available." msgstr "Opgevraagd profiel is niet beschikbaar" @@ -262,229 +406,6 @@ msgstr "Opgevraagd profiel is niet beschikbaar" msgid "Some blurb about what to do when you're new here" msgstr "Welkom op $Projectname. Klik op de tab ontdekken of klik rechtsboven op de kanalengids, om kanalen te vinden. Rechtsboven vind je ook apps, waar je vrijwel alle functies van $Projectname kunt vinden. Voor hulp met $Projectname klik je op het vraagteken." -#: ../../Zotlabs/Module/Blocks.php:97 ../../Zotlabs/Module/Blocks.php:152 -#: ../../Zotlabs/Module/Editblock.php:108 -msgid "Block Name" -msgstr "Bloknaam" - -#: ../../Zotlabs/Module/Blocks.php:151 ../../include/text.php:2265 -msgid "Blocks" -msgstr "Blokken" - -#: ../../Zotlabs/Module/Blocks.php:153 -msgid "Block Title" -msgstr "Bloktitel" - -#: ../../Zotlabs/Module/Blocks.php:154 ../../Zotlabs/Module/Layouts.php:188 -#: ../../Zotlabs/Module/Menu.php:114 ../../Zotlabs/Module/Webpages.php:198 -#: ../../include/page_widgets.php:44 -msgid "Created" -msgstr "Aangemaakt" - -#: ../../Zotlabs/Module/Blocks.php:155 ../../Zotlabs/Module/Layouts.php:189 -#: ../../Zotlabs/Module/Menu.php:115 ../../Zotlabs/Module/Webpages.php:199 -#: ../../include/page_widgets.php:45 -msgid "Edited" -msgstr "Bewerkt" - -#: ../../Zotlabs/Module/Blocks.php:158 ../../Zotlabs/Module/Layouts.php:191 -#: ../../Zotlabs/Module/Photos.php:1072 ../../Zotlabs/Module/Webpages.php:188 -#: ../../include/conversation.php:1208 -msgid "Share" -msgstr "Delen" - -#: ../../Zotlabs/Module/Blocks.php:163 ../../Zotlabs/Module/Layouts.php:195 -#: ../../Zotlabs/Module/Pubsites.php:47 ../../Zotlabs/Module/Webpages.php:193 -#: ../../include/page_widgets.php:39 -msgid "View" -msgstr "Weergeven" - -#: ../../Zotlabs/Module/Cal.php:62 ../../Zotlabs/Module/Block.php:43 -#: ../../Zotlabs/Module/Page.php:56 ../../Zotlabs/Module/Wall_upload.php:33 -msgid "Channel not found." -msgstr "Kanaal niet gevonden." - -#: ../../Zotlabs/Module/Cal.php:69 -msgid "Permissions denied." -msgstr "Permissies niet toegestaan" - -#: ../../Zotlabs/Module/Cal.php:259 ../../Zotlabs/Module/Events.php:588 -msgid "l, F j" -msgstr "l j F" - -#: ../../Zotlabs/Module/Cal.php:308 ../../Zotlabs/Module/Events.php:637 -#: ../../include/text.php:1732 -msgid "Link to Source" -msgstr "Originele locatie" - -#: ../../Zotlabs/Module/Cal.php:331 ../../Zotlabs/Module/Events.php:665 -msgid "Edit Event" -msgstr "Gebeurtenis bewerken" - -#: ../../Zotlabs/Module/Cal.php:331 ../../Zotlabs/Module/Events.php:665 -msgid "Create Event" -msgstr "Gebeurtenis aanmaken" - -#: ../../Zotlabs/Module/Cal.php:332 ../../Zotlabs/Module/Cal.php:339 -#: ../../Zotlabs/Module/Events.php:666 ../../Zotlabs/Module/Events.php:673 -#: ../../Zotlabs/Module/Photos.php:949 -msgid "Previous" -msgstr "Vorige" - -#: ../../Zotlabs/Module/Cal.php:333 ../../Zotlabs/Module/Cal.php:340 -#: ../../Zotlabs/Module/Events.php:667 ../../Zotlabs/Module/Events.php:674 -#: ../../Zotlabs/Module/Photos.php:958 ../../Zotlabs/Module/Setup.php:267 -msgid "Next" -msgstr "Volgende" - -#: ../../Zotlabs/Module/Cal.php:334 ../../Zotlabs/Module/Events.php:668 -#: ../../include/widgets.php:755 -msgid "Export" -msgstr "Exporteren" - -#: ../../Zotlabs/Module/Cal.php:337 ../../Zotlabs/Module/Events.php:671 -#: ../../include/widgets.php:756 -msgid "Import" -msgstr "Importeren" - -#: ../../Zotlabs/Module/Cal.php:338 ../../Zotlabs/Module/Chat.php:196 -#: ../../Zotlabs/Module/Chat.php:238 ../../Zotlabs/Module/Connect.php:98 -#: ../../Zotlabs/Module/Connedit.php:731 ../../Zotlabs/Module/Events.php:475 -#: ../../Zotlabs/Module/Events.php:672 ../../Zotlabs/Module/Group.php:85 -#: ../../Zotlabs/Module/Filestorage.php:162 -#: ../../Zotlabs/Module/Import.php:550 -#: ../../Zotlabs/Module/Import_items.php:120 -#: ../../Zotlabs/Module/Invite.php:146 ../../Zotlabs/Module/Locs.php:121 -#: ../../Zotlabs/Module/Mail.php:378 ../../Zotlabs/Module/Mood.php:139 -#: ../../Zotlabs/Module/Mitem.php:235 ../../Zotlabs/Module/Photos.php:677 -#: ../../Zotlabs/Module/Photos.php:1052 ../../Zotlabs/Module/Photos.php:1092 -#: ../../Zotlabs/Module/Photos.php:1210 ../../Zotlabs/Module/Pconfig.php:107 -#: ../../Zotlabs/Module/Pdledit.php:66 ../../Zotlabs/Module/Poke.php:186 -#: ../../Zotlabs/Module/Profiles.php:687 ../../Zotlabs/Module/Rate.php:170 -#: ../../Zotlabs/Module/Admin.php:492 ../../Zotlabs/Module/Admin.php:688 -#: ../../Zotlabs/Module/Admin.php:771 ../../Zotlabs/Module/Admin.php:1032 -#: ../../Zotlabs/Module/Admin.php:1211 ../../Zotlabs/Module/Admin.php:1421 -#: ../../Zotlabs/Module/Admin.php:1648 ../../Zotlabs/Module/Admin.php:1733 -#: ../../Zotlabs/Module/Admin.php:2116 ../../Zotlabs/Module/Appman.php:126 -#: ../../Zotlabs/Module/Settings.php:590 ../../Zotlabs/Module/Settings.php:703 -#: ../../Zotlabs/Module/Settings.php:731 ../../Zotlabs/Module/Settings.php:754 -#: ../../Zotlabs/Module/Settings.php:842 -#: ../../Zotlabs/Module/Settings.php:1034 ../../Zotlabs/Module/Setup.php:312 -#: ../../Zotlabs/Module/Setup.php:353 ../../Zotlabs/Module/Sources.php:114 -#: ../../Zotlabs/Module/Sources.php:149 ../../Zotlabs/Module/Thing.php:316 -#: ../../Zotlabs/Module/Thing.php:362 ../../Zotlabs/Module/Xchan.php:15 -#: ../../Zotlabs/Lib/ThreadItem.php:710 ../../include/widgets.php:757 -#: ../../include/widgets.php:769 ../../include/js_strings.php:22 -#: ../../view/theme/redbasic/php/config.php:99 -msgid "Submit" -msgstr "Opslaan" - -#: ../../Zotlabs/Module/Cal.php:341 ../../Zotlabs/Module/Events.php:675 -msgid "Today" -msgstr "Vandaag" - -#: ../../Zotlabs/Module/Channel.php:29 ../../Zotlabs/Module/Chat.php:25 -msgid "You must be logged in to see this page." -msgstr "Je moet zijn ingelogd om deze pagina te kunnen bekijken." - -#: ../../Zotlabs/Module/Channel.php:41 -msgid "Posts and comments" -msgstr "Berichten en reacties" - -#: ../../Zotlabs/Module/Channel.php:42 -msgid "Only posts" -msgstr "Alleen berichten" - -#: ../../Zotlabs/Module/Channel.php:102 -msgid "Insufficient permissions. Request redirected to profile page." -msgstr "Onvoldoende permissies. Doorgestuurd naar profielpagina." - -#: ../../Zotlabs/Module/Chat.php:181 -msgid "Room not found" -msgstr "Chatkanaal niet gevonden" - -#: ../../Zotlabs/Module/Chat.php:197 -msgid "Leave Room" -msgstr "Chatkanaal verlaten" - -#: ../../Zotlabs/Module/Chat.php:198 -msgid "Delete Room" -msgstr "Chatkanaal verwijderen" - -#: ../../Zotlabs/Module/Chat.php:199 -msgid "I am away right now" -msgstr "Ik ben momenteel afwezig" - -#: ../../Zotlabs/Module/Chat.php:200 -msgid "I am online" -msgstr "Ik ben online" - -#: ../../Zotlabs/Module/Chat.php:202 -msgid "Bookmark this room" -msgstr "Chatkanaal aan bladwijzers toevoegen" - -#: ../../Zotlabs/Module/Chat.php:205 ../../Zotlabs/Module/Mail.php:205 -#: ../../Zotlabs/Module/Mail.php:314 ../../include/conversation.php:1176 -msgid "Please enter a link URL:" -msgstr "Vul een URL in:" - -#: ../../Zotlabs/Module/Chat.php:206 ../../Zotlabs/Module/Mail.php:258 -#: ../../Zotlabs/Module/Mail.php:383 ../../Zotlabs/Lib/ThreadItem.php:722 -#: ../../include/conversation.php:1256 -msgid "Encrypt text" -msgstr "Tekst versleutelen" - -#: ../../Zotlabs/Module/Chat.php:207 ../../Zotlabs/Module/Editblock.php:111 -#: ../../Zotlabs/Module/Editwebpage.php:147 ../../Zotlabs/Module/Mail.php:252 -#: ../../Zotlabs/Module/Mail.php:377 ../../include/conversation.php:1143 -msgid "Insert web link" -msgstr "Weblink invoegen" - -#: ../../Zotlabs/Module/Chat.php:218 -msgid "Feature disabled." -msgstr "Functie uitgeschakeld." - -#: ../../Zotlabs/Module/Chat.php:232 -msgid "New Chatroom" -msgstr "Nieuw chatkanaal" - -#: ../../Zotlabs/Module/Chat.php:233 -msgid "Chatroom name" -msgstr "Naam chatkanaal" - -#: ../../Zotlabs/Module/Chat.php:234 -msgid "Expiration of chats (minutes)" -msgstr "Aantal minuten voordat chatberichten worden verwijderd" - -#: ../../Zotlabs/Module/Chat.php:235 ../../Zotlabs/Module/Filestorage.php:153 -#: ../../Zotlabs/Module/Photos.php:671 ../../Zotlabs/Module/Photos.php:1045 -#: ../../Zotlabs/Module/Thing.php:313 ../../Zotlabs/Module/Thing.php:359 -#: ../../include/acl_selectors.php:283 -msgid "Permissions" -msgstr "Permissies" - -#: ../../Zotlabs/Module/Chat.php:246 -#, php-format -msgid "%1$s's Chatrooms" -msgstr "Chatkanalen van %1$s" - -#: ../../Zotlabs/Module/Chat.php:251 -msgid "No chatrooms available" -msgstr "Geen chatkanalen beschikbaar" - -#: ../../Zotlabs/Module/Chat.php:252 ../../Zotlabs/Module/Manage.php:143 -#: ../../Zotlabs/Module/Profiles.php:778 -msgid "Create New" -msgstr "Nieuwe aanmaken" - -#: ../../Zotlabs/Module/Chat.php:255 -msgid "Expiration" -msgstr "Verloopt na" - -#: ../../Zotlabs/Module/Chat.php:256 -msgid "min" -msgstr "min" - #: ../../Zotlabs/Module/Chatsvc.php:117 msgid "Away" msgstr "Afwezig" @@ -493,65 +414,6 @@ msgstr "Afwezig" msgid "Online" msgstr "Online" -#: ../../Zotlabs/Module/Block.php:31 ../../Zotlabs/Module/Page.php:40 -msgid "Invalid item." -msgstr "Ongeldig item." - -#: ../../Zotlabs/Module/Bookmarks.php:53 -msgid "Bookmark added" -msgstr "Bladwijzer toegevoegd" - -#: ../../Zotlabs/Module/Bookmarks.php:75 -msgid "My Bookmarks" -msgstr "Mijn bladwijzers" - -#: ../../Zotlabs/Module/Bookmarks.php:86 -msgid "My Connections Bookmarks" -msgstr "Bladwijzers van mijn connecties" - -#: ../../Zotlabs/Module/Connect.php:61 ../../Zotlabs/Module/Connect.php:109 -msgid "Continue" -msgstr "Ga verder" - -#: ../../Zotlabs/Module/Connect.php:90 -msgid "Premium Channel Setup" -msgstr "Instellen premiumkanaal " - -#: ../../Zotlabs/Module/Connect.php:92 -msgid "Enable premium channel connection restrictions" -msgstr "Restricties voor connecties van premiumkanaal toestaan" - -#: ../../Zotlabs/Module/Connect.php:93 -msgid "" -"Please enter your restrictions or conditions, such as paypal receipt, usage " -"guidelines, etc." -msgstr "Vul je restricties of voorwaarden in, zoals een paypal-afschrift, voorschriften voor leden, enz." - -#: ../../Zotlabs/Module/Connect.php:95 ../../Zotlabs/Module/Connect.php:115 -msgid "" -"This channel may require additional steps or acknowledgement of the " -"following conditions prior to connecting:" -msgstr "Dit kanaal kan extra stappen of het accepteren van de volgende voorwaarden vereisen, voordat de connectie wordt geaccepteerd:" - -#: ../../Zotlabs/Module/Connect.php:96 -msgid "" -"Potential connections will then see the following text before proceeding:" -msgstr "Mogelijke connecties zullen dan de volgende tekst zien voordat ze verder kunnen:" - -#: ../../Zotlabs/Module/Connect.php:97 ../../Zotlabs/Module/Connect.php:118 -msgid "" -"By continuing, I certify that I have complied with any instructions provided" -" on this page." -msgstr "Door verder te gaan ga ik automatisch akkoord met alle voorwaarden en aanwijzingen op deze pagina." - -#: ../../Zotlabs/Module/Connect.php:106 -msgid "(No specific instructions have been provided by the channel owner.)" -msgstr "(Er zijn geen speciale voorwaarden en aanwijzingen door de kanaal-eigenaar verstrekt) " - -#: ../../Zotlabs/Module/Connect.php:114 -msgid "Restricted or Premium Channel" -msgstr "Beperkt of premiumkanaal" - #: ../../Zotlabs/Module/Connedit.php:80 msgid "Could not access contact record." msgstr "Kon geen toegang krijgen tot de connectie-gegevens." @@ -560,317 +422,350 @@ msgstr "Kon geen toegang krijgen tot de connectie-gegevens." msgid "Could not locate selected profile." msgstr "Kon het gekozen profiel niet vinden." -#: ../../Zotlabs/Module/Connedit.php:227 +#: ../../Zotlabs/Module/Connedit.php:248 msgid "Connection updated." msgstr "Connectie bijgewerkt." -#: ../../Zotlabs/Module/Connedit.php:229 +#: ../../Zotlabs/Module/Connedit.php:250 msgid "Failed to update connection record." msgstr "Bijwerken van connectie-gegevens mislukt." -#: ../../Zotlabs/Module/Connedit.php:276 +#: ../../Zotlabs/Module/Connedit.php:300 msgid "is now connected to" msgstr "is nu verbonden met" -#: ../../Zotlabs/Module/Connedit.php:379 ../../Zotlabs/Module/Connedit.php:654 -#: ../../Zotlabs/Module/Events.php:459 ../../Zotlabs/Module/Events.php:460 -#: ../../Zotlabs/Module/Events.php:469 ../../Zotlabs/Module/Api.php:89 -#: ../../Zotlabs/Module/Filestorage.php:157 -#: ../../Zotlabs/Module/Filestorage.php:165 ../../Zotlabs/Module/Menu.php:100 -#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Mitem.php:158 -#: ../../Zotlabs/Module/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:232 -#: ../../Zotlabs/Module/Mitem.php:233 ../../Zotlabs/Module/Photos.php:666 -#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Admin.php:459 -#: ../../Zotlabs/Module/Removeme.php:61 ../../Zotlabs/Module/Settings.php:581 +#: ../../Zotlabs/Module/Connedit.php:403 ../../Zotlabs/Module/Connedit.php:685 +#: ../../Zotlabs/Module/Events.php:458 ../../Zotlabs/Module/Events.php:459 +#: ../../Zotlabs/Module/Events.php:468 +#: ../../Zotlabs/Module/Filestorage.php:156 +#: ../../Zotlabs/Module/Filestorage.php:164 +#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Photos.php:664 +#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 +#: ../../Zotlabs/Module/Mitem.php:158 ../../Zotlabs/Module/Mitem.php:159 +#: ../../Zotlabs/Module/Mitem.php:232 ../../Zotlabs/Module/Mitem.php:233 +#: ../../Zotlabs/Module/Admin.php:459 ../../Zotlabs/Module/Removeme.php:63 +#: ../../Zotlabs/Module/Settings.php:635 ../../Zotlabs/Module/Api.php:89 #: ../../include/dir_fns.php:143 ../../include/dir_fns.php:144 #: ../../include/dir_fns.php:145 ../../view/theme/redbasic/php/config.php:105 -#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1707 +#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1708 msgid "No" msgstr "Nee" -#: ../../Zotlabs/Module/Connedit.php:379 ../../Zotlabs/Module/Events.php:459 -#: ../../Zotlabs/Module/Events.php:460 ../../Zotlabs/Module/Events.php:469 -#: ../../Zotlabs/Module/Api.php:88 ../../Zotlabs/Module/Filestorage.php:157 -#: ../../Zotlabs/Module/Filestorage.php:165 ../../Zotlabs/Module/Menu.php:100 -#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Mitem.php:158 -#: ../../Zotlabs/Module/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:232 -#: ../../Zotlabs/Module/Mitem.php:233 ../../Zotlabs/Module/Photos.php:666 -#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Admin.php:461 -#: ../../Zotlabs/Module/Removeme.php:61 ../../Zotlabs/Module/Settings.php:581 +#: ../../Zotlabs/Module/Connedit.php:403 ../../Zotlabs/Module/Events.php:458 +#: ../../Zotlabs/Module/Events.php:459 ../../Zotlabs/Module/Events.php:468 +#: ../../Zotlabs/Module/Filestorage.php:156 +#: ../../Zotlabs/Module/Filestorage.php:164 +#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Photos.php:664 +#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 +#: ../../Zotlabs/Module/Mitem.php:158 ../../Zotlabs/Module/Mitem.php:159 +#: ../../Zotlabs/Module/Mitem.php:232 ../../Zotlabs/Module/Mitem.php:233 +#: ../../Zotlabs/Module/Admin.php:461 ../../Zotlabs/Module/Removeme.php:63 +#: ../../Zotlabs/Module/Settings.php:635 ../../Zotlabs/Module/Api.php:88 #: ../../include/dir_fns.php:143 ../../include/dir_fns.php:144 #: ../../include/dir_fns.php:145 ../../view/theme/redbasic/php/config.php:105 -#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1707 +#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1708 msgid "Yes" msgstr "Ja" -#: ../../Zotlabs/Module/Connedit.php:411 +#: ../../Zotlabs/Module/Connedit.php:435 msgid "Could not access address book record." msgstr "Kon geen toegang krijgen tot de record van de connectie." -#: ../../Zotlabs/Module/Connedit.php:425 +#: ../../Zotlabs/Module/Connedit.php:455 msgid "Refresh failed - channel is currently unavailable." msgstr "Vernieuwen mislukt - kanaal is momenteel niet beschikbaar" -#: ../../Zotlabs/Module/Connedit.php:440 ../../Zotlabs/Module/Connedit.php:449 -#: ../../Zotlabs/Module/Connedit.php:458 ../../Zotlabs/Module/Connedit.php:467 -#: ../../Zotlabs/Module/Connedit.php:480 +#: ../../Zotlabs/Module/Connedit.php:470 ../../Zotlabs/Module/Connedit.php:479 +#: ../../Zotlabs/Module/Connedit.php:488 ../../Zotlabs/Module/Connedit.php:497 +#: ../../Zotlabs/Module/Connedit.php:510 msgid "Unable to set address book parameters." msgstr "Niet in staat om de parameters van connecties in te stellen." -#: ../../Zotlabs/Module/Connedit.php:503 +#: ../../Zotlabs/Module/Connedit.php:533 msgid "Connection has been removed." msgstr "Connectie is verwijderd" -#: ../../Zotlabs/Module/Connedit.php:519 ../../Zotlabs/Lib/Apps.php:219 -#: ../../include/nav.php:86 ../../include/conversation.php:954 +#: ../../Zotlabs/Module/Connedit.php:549 ../../Zotlabs/Lib/Apps.php:221 +#: ../../include/nav.php:86 ../../include/conversation.php:957 msgid "View Profile" msgstr "Profiel weergeven" -#: ../../Zotlabs/Module/Connedit.php:522 +#: ../../Zotlabs/Module/Connedit.php:552 #, php-format msgid "View %s's profile" msgstr "Profiel van %s weergeven" -#: ../../Zotlabs/Module/Connedit.php:526 +#: ../../Zotlabs/Module/Connedit.php:556 msgid "Refresh Permissions" msgstr "Permissies vernieuwen" -#: ../../Zotlabs/Module/Connedit.php:529 +#: ../../Zotlabs/Module/Connedit.php:559 msgid "Fetch updated permissions" msgstr "Aangepaste permissies ophalen" -#: ../../Zotlabs/Module/Connedit.php:533 +#: ../../Zotlabs/Module/Connedit.php:563 msgid "Recent Activity" msgstr "Recente activiteit/berichten" -#: ../../Zotlabs/Module/Connedit.php:536 +#: ../../Zotlabs/Module/Connedit.php:566 msgid "View recent posts and comments" msgstr "Recente berichten en reacties weergeven" -#: ../../Zotlabs/Module/Connedit.php:540 ../../Zotlabs/Module/Admin.php:1041 +#: ../../Zotlabs/Module/Connedit.php:570 ../../Zotlabs/Module/Admin.php:1041 msgid "Unblock" msgstr "Deblokkeren" -#: ../../Zotlabs/Module/Connedit.php:540 ../../Zotlabs/Module/Admin.php:1040 +#: ../../Zotlabs/Module/Connedit.php:570 ../../Zotlabs/Module/Admin.php:1040 msgid "Block" msgstr "Blokkeren" -#: ../../Zotlabs/Module/Connedit.php:543 +#: ../../Zotlabs/Module/Connedit.php:573 msgid "Block (or Unblock) all communications with this connection" msgstr "Blokkeer (of deblokkeer) alle communicatie met deze connectie" -#: ../../Zotlabs/Module/Connedit.php:544 +#: ../../Zotlabs/Module/Connedit.php:574 msgid "This connection is blocked!" msgstr "Deze connectie is geblokkeerd!" -#: ../../Zotlabs/Module/Connedit.php:548 +#: ../../Zotlabs/Module/Connedit.php:578 msgid "Unignore" msgstr "Niet meer negeren" -#: ../../Zotlabs/Module/Connedit.php:548 +#: ../../Zotlabs/Module/Connedit.php:578 #: ../../Zotlabs/Module/Connections.php:277 #: ../../Zotlabs/Module/Notifications.php:55 msgid "Ignore" msgstr "Negeren" -#: ../../Zotlabs/Module/Connedit.php:551 +#: ../../Zotlabs/Module/Connedit.php:581 msgid "Ignore (or Unignore) all inbound communications from this connection" msgstr "Negeer (of negeer niet meer) alle inkomende communicatie van deze connectie" -#: ../../Zotlabs/Module/Connedit.php:552 +#: ../../Zotlabs/Module/Connedit.php:582 msgid "This connection is ignored!" msgstr "Deze connectie wordt genegeerd!" -#: ../../Zotlabs/Module/Connedit.php:556 +#: ../../Zotlabs/Module/Connedit.php:586 msgid "Unarchive" msgstr "Niet meer archiveren" -#: ../../Zotlabs/Module/Connedit.php:556 +#: ../../Zotlabs/Module/Connedit.php:586 msgid "Archive" msgstr "Archiveren" -#: ../../Zotlabs/Module/Connedit.php:559 +#: ../../Zotlabs/Module/Connedit.php:589 msgid "" "Archive (or Unarchive) this connection - mark channel dead but keep content" msgstr "Archiveer (of dearchiveer) deze connectie - markeer het kanaal als dood, maar bewaar de inhoud" -#: ../../Zotlabs/Module/Connedit.php:560 +#: ../../Zotlabs/Module/Connedit.php:590 msgid "This connection is archived!" msgstr "Deze connectie is gearchiveerd!" -#: ../../Zotlabs/Module/Connedit.php:564 +#: ../../Zotlabs/Module/Connedit.php:594 msgid "Unhide" msgstr "Niet meer verbergen" -#: ../../Zotlabs/Module/Connedit.php:564 +#: ../../Zotlabs/Module/Connedit.php:594 msgid "Hide" msgstr "Verbergen" -#: ../../Zotlabs/Module/Connedit.php:567 +#: ../../Zotlabs/Module/Connedit.php:597 msgid "Hide or Unhide this connection from your other connections" msgstr "Deze connectie verbergen (of niet meer verbergen) voor jouw andere connecties" -#: ../../Zotlabs/Module/Connedit.php:568 +#: ../../Zotlabs/Module/Connedit.php:598 msgid "This connection is hidden!" msgstr "Deze connectie is verborgen!" -#: ../../Zotlabs/Module/Connedit.php:575 +#: ../../Zotlabs/Module/Connedit.php:605 msgid "Delete this connection" msgstr "Deze connectie verwijderen" -#: ../../Zotlabs/Module/Connedit.php:590 ../../include/widgets.php:493 +#: ../../Zotlabs/Module/Connedit.php:620 ../../include/widgets.php:493 msgid "Me" msgstr "Ik" -#: ../../Zotlabs/Module/Connedit.php:591 ../../include/widgets.php:494 +#: ../../Zotlabs/Module/Connedit.php:621 ../../include/widgets.php:494 msgid "Family" msgstr "Familie" -#: ../../Zotlabs/Module/Connedit.php:592 ../../Zotlabs/Module/Settings.php:342 -#: ../../Zotlabs/Module/Settings.php:346 ../../Zotlabs/Module/Settings.php:347 -#: ../../Zotlabs/Module/Settings.php:350 ../../Zotlabs/Module/Settings.php:361 -#: ../../include/widgets.php:495 ../../include/selectors.php:123 -#: ../../include/channel.php:389 ../../include/channel.php:390 -#: ../../include/channel.php:397 +#: ../../Zotlabs/Module/Connedit.php:622 ../../Zotlabs/Module/Settings.php:391 +#: ../../Zotlabs/Module/Settings.php:395 ../../Zotlabs/Module/Settings.php:396 +#: ../../Zotlabs/Module/Settings.php:399 ../../Zotlabs/Module/Settings.php:410 +#: ../../include/channel.php:402 ../../include/channel.php:403 +#: ../../include/channel.php:410 ../../include/selectors.php:123 +#: ../../include/widgets.php:495 msgid "Friends" msgstr "Vrienden" -#: ../../Zotlabs/Module/Connedit.php:593 ../../include/widgets.php:496 +#: ../../Zotlabs/Module/Connedit.php:623 ../../include/widgets.php:496 msgid "Acquaintances" msgstr "Kennissen" -#: ../../Zotlabs/Module/Connedit.php:594 +#: ../../Zotlabs/Module/Connedit.php:624 #: ../../Zotlabs/Module/Connections.php:92 #: ../../Zotlabs/Module/Connections.php:107 ../../include/widgets.php:497 msgid "All" msgstr "Alles" -#: ../../Zotlabs/Module/Connedit.php:654 +#: ../../Zotlabs/Module/Connedit.php:685 msgid "Approve this connection" msgstr "Deze connectie accepteren" -#: ../../Zotlabs/Module/Connedit.php:654 +#: ../../Zotlabs/Module/Connedit.php:685 msgid "Accept connection to allow communication" msgstr "Keur deze connectie goed om communicatie toe te staan" -#: ../../Zotlabs/Module/Connedit.php:659 +#: ../../Zotlabs/Module/Connedit.php:690 msgid "Set Affinity" msgstr "Verwantschapsfilter instellen" -#: ../../Zotlabs/Module/Connedit.php:662 +#: ../../Zotlabs/Module/Connedit.php:693 msgid "Set Profile" msgstr "Profiel instellen" -#: ../../Zotlabs/Module/Connedit.php:665 +#: ../../Zotlabs/Module/Connedit.php:696 msgid "Set Affinity & Profile" msgstr "Verwantschapsfilter en profiel instellen" -#: ../../Zotlabs/Module/Connedit.php:698 +#: ../../Zotlabs/Module/Connedit.php:745 msgid "none" msgstr "geen" -#: ../../Zotlabs/Module/Connedit.php:702 ../../include/widgets.php:614 +#: ../../Zotlabs/Module/Connedit.php:749 ../../include/widgets.php:623 msgid "Connection Default Permissions" msgstr "Standaard permissies voor connecties" -#: ../../Zotlabs/Module/Connedit.php:702 ../../include/items.php:3926 +#: ../../Zotlabs/Module/Connedit.php:749 ../../include/items.php:3935 #, php-format msgid "Connection: %s" msgstr "Connectie: %s" -#: ../../Zotlabs/Module/Connedit.php:703 +#: ../../Zotlabs/Module/Connedit.php:750 msgid "Apply these permissions automatically" msgstr "Deze permissies automatisch toepassen" -#: ../../Zotlabs/Module/Connedit.php:703 +#: ../../Zotlabs/Module/Connedit.php:750 msgid "Connection requests will be approved without your interaction" msgstr "Connectieverzoeken zullen automatisch worden geaccepteerd" -#: ../../Zotlabs/Module/Connedit.php:705 +#: ../../Zotlabs/Module/Connedit.php:752 msgid "This connection's primary address is" msgstr "Het primaire kanaaladres van deze connectie is" -#: ../../Zotlabs/Module/Connedit.php:706 +#: ../../Zotlabs/Module/Connedit.php:753 msgid "Available locations:" msgstr "Beschikbare locaties:" -#: ../../Zotlabs/Module/Connedit.php:710 +#: ../../Zotlabs/Module/Connedit.php:757 msgid "" "The permissions indicated on this page will be applied to all new " "connections." msgstr "Permissies die op deze pagina staan vermeld worden op alle nieuwe connecties toegepast." -#: ../../Zotlabs/Module/Connedit.php:711 +#: ../../Zotlabs/Module/Connedit.php:758 msgid "Connection Tools" msgstr "Hulpmiddelen" -#: ../../Zotlabs/Module/Connedit.php:713 +#: ../../Zotlabs/Module/Connedit.php:760 msgid "Slide to adjust your degree of friendship" msgstr "Schuif om te bepalen hoe goed je iemand kent en/of mag" -#: ../../Zotlabs/Module/Connedit.php:714 ../../Zotlabs/Module/Rate.php:159 +#: ../../Zotlabs/Module/Connedit.php:761 ../../Zotlabs/Module/Rate.php:159 #: ../../include/js_strings.php:20 msgid "Rating" msgstr "Beoordeling" -#: ../../Zotlabs/Module/Connedit.php:715 +#: ../../Zotlabs/Module/Connedit.php:762 msgid "Slide to adjust your rating" msgstr "Gebruik de schuif om je beoordeling te geven" -#: ../../Zotlabs/Module/Connedit.php:716 ../../Zotlabs/Module/Connedit.php:721 +#: ../../Zotlabs/Module/Connedit.php:763 ../../Zotlabs/Module/Connedit.php:768 msgid "Optionally explain your rating" msgstr "Verklaar jouw beoordeling (niet verplicht)" -#: ../../Zotlabs/Module/Connedit.php:718 +#: ../../Zotlabs/Module/Connedit.php:765 msgid "Custom Filter" msgstr "Berichtenfilter" -#: ../../Zotlabs/Module/Connedit.php:719 +#: ../../Zotlabs/Module/Connedit.php:766 msgid "Only import posts with this text" msgstr "Importeer alleen berichten met deze tekst" -#: ../../Zotlabs/Module/Connedit.php:719 ../../Zotlabs/Module/Connedit.php:720 +#: ../../Zotlabs/Module/Connedit.php:766 ../../Zotlabs/Module/Connedit.php:767 msgid "" "words one per line or #tags or /patterns/ or lang=xx, leave blank to import " "all posts" msgstr "woorden (één per regel), #tags, /regex/ of talen (lang=iso639-1) - laat leeg om alle berichten te importeren" -#: ../../Zotlabs/Module/Connedit.php:720 +#: ../../Zotlabs/Module/Connedit.php:767 msgid "Do not import posts with this text" msgstr "Importeer geen berichten met deze tekst" -#: ../../Zotlabs/Module/Connedit.php:722 +#: ../../Zotlabs/Module/Connedit.php:769 msgid "This information is public!" msgstr "Deze informatie is openbaar!" -#: ../../Zotlabs/Module/Connedit.php:727 +#: ../../Zotlabs/Module/Connedit.php:774 msgid "Connection Pending Approval" msgstr "Connectie moet nog geaccepteerd worden" -#: ../../Zotlabs/Module/Connedit.php:730 +#: ../../Zotlabs/Module/Connedit.php:777 msgid "inherited" msgstr "geërfd" -#: ../../Zotlabs/Module/Connedit.php:732 +#: ../../Zotlabs/Module/Connedit.php:778 ../../Zotlabs/Module/Connect.php:98 +#: ../../Zotlabs/Module/Events.php:474 ../../Zotlabs/Module/Cal.php:338 +#: ../../Zotlabs/Module/Chat.php:196 ../../Zotlabs/Module/Chat.php:238 +#: ../../Zotlabs/Module/Group.php:85 ../../Zotlabs/Module/Appman.php:126 +#: ../../Zotlabs/Module/Pdledit.php:66 +#: ../../Zotlabs/Module/Filestorage.php:161 +#: ../../Zotlabs/Module/Profiles.php:687 ../../Zotlabs/Module/Import.php:560 +#: ../../Zotlabs/Module/Photos.php:675 ../../Zotlabs/Module/Photos.php:1050 +#: ../../Zotlabs/Module/Photos.php:1090 ../../Zotlabs/Module/Photos.php:1208 +#: ../../Zotlabs/Module/Import_items.php:122 +#: ../../Zotlabs/Module/Invite.php:146 ../../Zotlabs/Module/Locs.php:121 +#: ../../Zotlabs/Module/Mail.php:370 ../../Zotlabs/Module/Mood.php:139 +#: ../../Zotlabs/Module/Mitem.php:235 ../../Zotlabs/Module/Admin.php:492 +#: ../../Zotlabs/Module/Admin.php:688 ../../Zotlabs/Module/Admin.php:771 +#: ../../Zotlabs/Module/Admin.php:1032 ../../Zotlabs/Module/Admin.php:1211 +#: ../../Zotlabs/Module/Admin.php:1421 ../../Zotlabs/Module/Admin.php:1648 +#: ../../Zotlabs/Module/Admin.php:1733 ../../Zotlabs/Module/Admin.php:2116 +#: ../../Zotlabs/Module/Poke.php:186 ../../Zotlabs/Module/Pconfig.php:107 +#: ../../Zotlabs/Module/Rate.php:170 ../../Zotlabs/Module/Settings.php:644 +#: ../../Zotlabs/Module/Settings.php:757 ../../Zotlabs/Module/Settings.php:806 +#: ../../Zotlabs/Module/Settings.php:832 ../../Zotlabs/Module/Settings.php:855 +#: ../../Zotlabs/Module/Settings.php:943 +#: ../../Zotlabs/Module/Settings.php:1129 ../../Zotlabs/Module/Setup.php:312 +#: ../../Zotlabs/Module/Setup.php:353 ../../Zotlabs/Module/Thing.php:316 +#: ../../Zotlabs/Module/Thing.php:362 ../../Zotlabs/Module/Sources.php:114 +#: ../../Zotlabs/Module/Sources.php:149 ../../Zotlabs/Module/Xchan.php:15 +#: ../../Zotlabs/Lib/ThreadItem.php:710 ../../include/widgets.php:763 +#: ../../include/js_strings.php:22 ../../view/theme/redbasic/php/config.php:99 +msgid "Submit" +msgstr "Opslaan" + +#: ../../Zotlabs/Module/Connedit.php:779 #, php-format msgid "" "Please choose the profile you would like to display to %s when viewing your " "profile securely." msgstr "Kies het profiel dat je aan %s wil tonen wanneer hij/zij ingelogd jouw profiel wil bekijken." -#: ../../Zotlabs/Module/Connedit.php:734 +#: ../../Zotlabs/Module/Connedit.php:781 msgid "Their Settings" msgstr "Hun instellingen" -#: ../../Zotlabs/Module/Connedit.php:735 +#: ../../Zotlabs/Module/Connedit.php:782 msgid "My Settings" msgstr "Mijn instellingen" -#: ../../Zotlabs/Module/Connedit.php:737 +#: ../../Zotlabs/Module/Connedit.php:784 msgid "Individual Permissions" msgstr "Individuele permissies" -#: ../../Zotlabs/Module/Connedit.php:738 +#: ../../Zotlabs/Module/Connedit.php:785 msgid "" "Some permissions may be inherited from your channel's privacy settings, which have higher " @@ -878,7 +773,7 @@ msgid "" " settings here." msgstr "Sommige permissies worden mogelijk overgeërfd van de privacy-instellingen van jouw kanaal, die een hogere prioriteit hebben dan deze individuele instellingen. Je kan je deze overgeërfde permissies hier niet veranderen." -#: ../../Zotlabs/Module/Connedit.php:739 +#: ../../Zotlabs/Module/Connedit.php:786 msgid "" "Some permissions may be inherited from your channel's privacy settings, which have higher " @@ -886,17 +781,121 @@ msgid "" "they wont have any impact unless the inherited setting changes." msgstr "Sommige permissies worden mogelijk overgeërfd van de privacy-instellingen van jouw kanaal, die een hogere prioriteit hebben dan deze individuele permissies. Je kan de permissies hier veranderen, maar die hebben geen effect, tenzij de overgeërfde permissies worden veranderd. " -#: ../../Zotlabs/Module/Connedit.php:740 +#: ../../Zotlabs/Module/Connedit.php:787 msgid "Last update:" msgstr "Laatste wijziging:" -#: ../../Zotlabs/Module/Directory.php:63 ../../Zotlabs/Module/Display.php:17 -#: ../../Zotlabs/Module/Photos.php:522 ../../Zotlabs/Module/Ratings.php:86 +#: ../../Zotlabs/Module/Display.php:17 ../../Zotlabs/Module/Directory.php:63 +#: ../../Zotlabs/Module/Photos.php:520 ../../Zotlabs/Module/Ratings.php:86 #: ../../Zotlabs/Module/Search.php:17 -#: ../../Zotlabs/Module/Viewconnections.php:20 +#: ../../Zotlabs/Module/Viewconnections.php:23 msgid "Public access denied." msgstr "Openbare toegang geweigerd." +#: ../../Zotlabs/Module/Display.php:40 ../../Zotlabs/Module/Filestorage.php:32 +#: ../../Zotlabs/Module/Admin.php:164 ../../Zotlabs/Module/Admin.php:1255 +#: ../../Zotlabs/Module/Admin.php:1561 ../../Zotlabs/Module/Thing.php:89 +#: ../../Zotlabs/Module/Viewsrc.php:24 ../../include/items.php:3369 +msgid "Item not found." +msgstr "Item niet gevonden." + +#: ../../Zotlabs/Module/Id.php:13 +msgid "First Name" +msgstr "Voornaam" + +#: ../../Zotlabs/Module/Id.php:14 +msgid "Last Name" +msgstr "Achternaam" + +#: ../../Zotlabs/Module/Id.php:15 +msgid "Nickname" +msgstr "Bijnaam" + +#: ../../Zotlabs/Module/Id.php:16 +msgid "Full Name" +msgstr "Volledige naam" + +#: ../../Zotlabs/Module/Id.php:17 ../../Zotlabs/Module/Id.php:18 +#: ../../Zotlabs/Module/Admin.php:1035 ../../Zotlabs/Module/Admin.php:1047 +#: ../../include/network.php:2203 +msgid "Email" +msgstr "E-mail" + +#: ../../Zotlabs/Module/Id.php:19 ../../Zotlabs/Module/Id.php:20 +#: ../../Zotlabs/Module/Id.php:21 ../../Zotlabs/Lib/Apps.php:238 +msgid "Profile Photo" +msgstr "Profielfoto" + +#: ../../Zotlabs/Module/Id.php:22 +msgid "Profile Photo 16px" +msgstr "Profielfoto 16px" + +#: ../../Zotlabs/Module/Id.php:23 +msgid "Profile Photo 32px" +msgstr "Profielfoto 32px" + +#: ../../Zotlabs/Module/Id.php:24 +msgid "Profile Photo 48px" +msgstr "Profielfoto 48px" + +#: ../../Zotlabs/Module/Id.php:25 +msgid "Profile Photo 64px" +msgstr "Profielfoto 64px" + +#: ../../Zotlabs/Module/Id.php:26 +msgid "Profile Photo 80px" +msgstr "Profielfoto 80px" + +#: ../../Zotlabs/Module/Id.php:27 +msgid "Profile Photo 128px" +msgstr "Profielfoto 128px" + +#: ../../Zotlabs/Module/Id.php:28 +msgid "Timezone" +msgstr "Tijdzone" + +#: ../../Zotlabs/Module/Id.php:29 ../../Zotlabs/Module/Profiles.php:731 +msgid "Homepage URL" +msgstr "URL homepagina" + +#: ../../Zotlabs/Module/Id.php:30 ../../Zotlabs/Lib/Apps.php:236 +msgid "Language" +msgstr "Taal" + +#: ../../Zotlabs/Module/Id.php:31 +msgid "Birth Year" +msgstr "Geboortejaar" + +#: ../../Zotlabs/Module/Id.php:32 +msgid "Birth Month" +msgstr "Geboortemaand" + +#: ../../Zotlabs/Module/Id.php:33 +msgid "Birth Day" +msgstr "Geboortedag" + +#: ../../Zotlabs/Module/Id.php:34 +msgid "Birthdate" +msgstr "Geboortedatum" + +#: ../../Zotlabs/Module/Id.php:35 ../../Zotlabs/Module/Profiles.php:454 +msgid "Gender" +msgstr "Geslacht" + +#: ../../Zotlabs/Module/Id.php:108 ../../include/selectors.php:49 +#: ../../include/selectors.php:66 +msgid "Male" +msgstr "Man" + +#: ../../Zotlabs/Module/Id.php:110 ../../include/selectors.php:49 +#: ../../include/selectors.php:66 +msgid "Female" +msgstr "Vrouw" + +#: ../../Zotlabs/Module/Follow.php:34 +msgid "Channel added." +msgstr "Kanaal toegevoegd." + #: ../../Zotlabs/Module/Directory.php:243 #, php-format msgid "%d rating" @@ -916,12 +915,12 @@ msgstr "Status: " msgid "Homepage: " msgstr "Homepage: " -#: ../../Zotlabs/Module/Directory.php:306 ../../include/channel.php:1183 +#: ../../Zotlabs/Module/Directory.php:306 ../../include/channel.php:1223 msgid "Age:" msgstr "Leeftijd:" -#: ../../Zotlabs/Module/Directory.php:311 ../../include/event.php:52 -#: ../../include/event.php:84 ../../include/channel.php:1027 +#: ../../Zotlabs/Module/Directory.php:311 ../../include/channel.php:1066 +#: ../../include/event.php:52 ../../include/event.php:84 #: ../../include/bb2diaspora.php:507 msgid "Location:" msgstr "Plaats:" @@ -930,18 +929,18 @@ msgstr "Plaats:" msgid "Description:" msgstr "Omschrijving:" -#: ../../Zotlabs/Module/Directory.php:322 ../../include/channel.php:1199 +#: ../../Zotlabs/Module/Directory.php:322 ../../include/channel.php:1239 msgid "Hometown:" msgstr "Oorspronkelijk uit:" -#: ../../Zotlabs/Module/Directory.php:324 ../../include/channel.php:1207 +#: ../../Zotlabs/Module/Directory.php:324 ../../include/channel.php:1247 msgid "About:" msgstr "Over:" #: ../../Zotlabs/Module/Directory.php:325 ../../Zotlabs/Module/Match.php:68 -#: ../../Zotlabs/Module/Suggest.php:56 ../../include/widgets.php:147 -#: ../../include/widgets.php:184 ../../include/connections.php:78 -#: ../../include/conversation.php:956 ../../include/channel.php:1012 +#: ../../Zotlabs/Module/Suggest.php:56 ../../include/channel.php:1051 +#: ../../include/connections.php:78 ../../include/conversation.php:959 +#: ../../include/widgets.php:147 ../../include/widgets.php:184 msgid "Connect" msgstr "Verbinden" @@ -1017,38 +1016,322 @@ msgstr "Oud naar nieuw" msgid "No entries (some entries may be hidden)." msgstr "Niets gevonden (sommige kanalen kunnen verborgen zijn)." -#: ../../Zotlabs/Module/Display.php:40 ../../Zotlabs/Module/Filestorage.php:33 -#: ../../Zotlabs/Module/Admin.php:164 ../../Zotlabs/Module/Admin.php:1255 -#: ../../Zotlabs/Module/Admin.php:1561 ../../Zotlabs/Module/Thing.php:89 -#: ../../Zotlabs/Module/Viewsrc.php:24 ../../include/items.php:3359 -msgid "Item not found." -msgstr "Item niet gevonden." +#: ../../Zotlabs/Module/Connect.php:61 ../../Zotlabs/Module/Connect.php:109 +msgid "Continue" +msgstr "Ga verder" + +#: ../../Zotlabs/Module/Connect.php:90 +msgid "Premium Channel Setup" +msgstr "Instellen premiumkanaal " + +#: ../../Zotlabs/Module/Connect.php:92 +msgid "Enable premium channel connection restrictions" +msgstr "Restricties voor connecties van premiumkanaal toestaan" + +#: ../../Zotlabs/Module/Connect.php:93 +msgid "" +"Please enter your restrictions or conditions, such as paypal receipt, usage " +"guidelines, etc." +msgstr "Vul je restricties of voorwaarden in, zoals een paypal-afschrift, voorschriften voor leden, enz." + +#: ../../Zotlabs/Module/Connect.php:95 ../../Zotlabs/Module/Connect.php:115 +msgid "" +"This channel may require additional steps or acknowledgement of the " +"following conditions prior to connecting:" +msgstr "Dit kanaal kan extra stappen of het accepteren van de volgende voorwaarden vereisen, voordat de connectie wordt geaccepteerd:" + +#: ../../Zotlabs/Module/Connect.php:96 +msgid "" +"Potential connections will then see the following text before proceeding:" +msgstr "Mogelijke connecties zullen dan de volgende tekst zien voordat ze verder kunnen:" + +#: ../../Zotlabs/Module/Connect.php:97 ../../Zotlabs/Module/Connect.php:118 +msgid "" +"By continuing, I certify that I have complied with any instructions provided" +" on this page." +msgstr "Door verder te gaan ga ik automatisch akkoord met alle voorwaarden en aanwijzingen op deze pagina." + +#: ../../Zotlabs/Module/Connect.php:106 +msgid "(No specific instructions have been provided by the channel owner.)" +msgstr "(Er zijn geen speciale voorwaarden en aanwijzingen door de kanaal-eigenaar verstrekt) " + +#: ../../Zotlabs/Module/Connect.php:114 +msgid "Restricted or Premium Channel" +msgstr "Beperkt of premiumkanaal" + +#: ../../Zotlabs/Module/Events.php:25 +msgid "Calendar entries imported." +msgstr "Agenda-items geïmporteerd." + +#: ../../Zotlabs/Module/Events.php:27 +msgid "No calendar entries found." +msgstr "Geen agenda-items gevonden." + +#: ../../Zotlabs/Module/Events.php:104 +msgid "Event can not end before it has started." +msgstr "Gebeurtenis kan niet eindigen voordat het is begonnen" + +#: ../../Zotlabs/Module/Events.php:106 ../../Zotlabs/Module/Events.php:115 +#: ../../Zotlabs/Module/Events.php:135 +msgid "Unable to generate preview." +msgstr "Niet in staat om voorvertoning te genereren" + +#: ../../Zotlabs/Module/Events.php:113 +msgid "Event title and start time are required." +msgstr "Titel en begintijd van gebeurtenis zijn vereist." + +#: ../../Zotlabs/Module/Events.php:133 ../../Zotlabs/Module/Events.php:258 +msgid "Event not found." +msgstr "Gebeurtenis niet gevonden" + +#: ../../Zotlabs/Module/Events.php:253 ../../Zotlabs/Module/Like.php:372 +#: ../../Zotlabs/Module/Tagger.php:51 ../../include/conversation.php:123 +#: ../../include/text.php:1924 ../../include/event.php:951 +msgid "event" +msgstr "gebeurtenis" + +#: ../../Zotlabs/Module/Events.php:448 +msgid "Edit event title" +msgstr "Titel bewerken" + +#: ../../Zotlabs/Module/Events.php:448 +msgid "Event title" +msgstr "Titel" + +#: ../../Zotlabs/Module/Events.php:448 ../../Zotlabs/Module/Events.php:453 +#: ../../Zotlabs/Module/Appman.php:115 ../../Zotlabs/Module/Appman.php:116 +#: ../../Zotlabs/Module/Profiles.php:709 ../../Zotlabs/Module/Profiles.php:713 +#: ../../include/datetime.php:245 +msgid "Required" +msgstr "Vereist" + +#: ../../Zotlabs/Module/Events.php:450 +msgid "Categories (comma-separated list)" +msgstr "Categorieën (door komma's gescheiden lijst)" + +#: ../../Zotlabs/Module/Events.php:451 +msgid "Edit Category" +msgstr "Categorie" + +#: ../../Zotlabs/Module/Events.php:451 +msgid "Category" +msgstr "Categorie" + +#: ../../Zotlabs/Module/Events.php:454 +msgid "Edit start date and time" +msgstr "Begindatum en -tijd bewerken" + +#: ../../Zotlabs/Module/Events.php:454 +msgid "Start date and time" +msgstr "Begindatum en -tijd" + +#: ../../Zotlabs/Module/Events.php:455 ../../Zotlabs/Module/Events.php:458 +msgid "Finish date and time are not known or not relevant" +msgstr "Einddatum en -tijd zijn niet bekend of niet van toepassing" + +#: ../../Zotlabs/Module/Events.php:457 +msgid "Edit finish date and time" +msgstr "Einddatum en -tijd bewerken" + +#: ../../Zotlabs/Module/Events.php:457 +msgid "Finish date and time" +msgstr "Einddatum en -tijd" + +#: ../../Zotlabs/Module/Events.php:459 ../../Zotlabs/Module/Events.php:460 +msgid "Adjust for viewer timezone" +msgstr "Aanpassen aan de tijdzone van wie deze gebeurtenis bekijkt" + +#: ../../Zotlabs/Module/Events.php:459 +msgid "" +"Important for events that happen in a particular place. Not practical for " +"global holidays." +msgstr "Belangrijk voor gebeurtenissen die op een bepaalde locatie plaatsvinden. Niet praktisch voor wereldwijde feestdagen." + +#: ../../Zotlabs/Module/Events.php:461 +msgid "Edit Description" +msgstr "Omschrijving bewerken" + +#: ../../Zotlabs/Module/Events.php:461 ../../Zotlabs/Module/Appman.php:117 +#: ../../Zotlabs/Module/Rbmark.php:101 +msgid "Description" +msgstr "Omschrijving" + +#: ../../Zotlabs/Module/Events.php:463 +msgid "Edit Location" +msgstr "Locatie bewerken" + +#: ../../Zotlabs/Module/Events.php:463 ../../Zotlabs/Module/Profiles.php:477 +#: ../../Zotlabs/Module/Profiles.php:698 ../../Zotlabs/Module/Locs.php:117 +#: ../../Zotlabs/Module/Pubsites.php:41 ../../include/js_strings.php:25 +msgid "Location" +msgstr "Locatie" + +#: ../../Zotlabs/Module/Events.php:466 ../../Zotlabs/Module/Events.php:468 +msgid "Share this event" +msgstr "Deel deze gebeurtenis" + +#: ../../Zotlabs/Module/Events.php:469 ../../Zotlabs/Module/Photos.php:1091 +#: ../../Zotlabs/Module/Webpages.php:201 ../../Zotlabs/Lib/ThreadItem.php:719 +#: ../../include/page_widgets.php:43 ../../include/conversation.php:1198 +msgid "Preview" +msgstr "Voorvertoning" + +#: ../../Zotlabs/Module/Events.php:470 ../../include/conversation.php:1247 +msgid "Permission settings" +msgstr "Permissies" + +#: ../../Zotlabs/Module/Events.php:475 +msgid "Advanced Options" +msgstr "Geavanceerde opties" + +#: ../../Zotlabs/Module/Events.php:587 ../../Zotlabs/Module/Cal.php:259 +msgid "l, F j" +msgstr "l j F" + +#: ../../Zotlabs/Module/Events.php:609 +msgid "Edit event" +msgstr "Gebeurtenis bewerken" + +#: ../../Zotlabs/Module/Events.php:611 +msgid "Delete event" +msgstr "Gebeurtenis verwijderen" + +#: ../../Zotlabs/Module/Events.php:636 ../../Zotlabs/Module/Cal.php:308 +#: ../../include/text.php:1712 +msgid "Link to Source" +msgstr "Originele locatie" + +#: ../../Zotlabs/Module/Events.php:645 +msgid "calendar" +msgstr "agenda" + +#: ../../Zotlabs/Module/Events.php:664 ../../Zotlabs/Module/Cal.php:331 +msgid "Edit Event" +msgstr "Gebeurtenis bewerken" + +#: ../../Zotlabs/Module/Events.php:664 ../../Zotlabs/Module/Cal.php:331 +msgid "Create Event" +msgstr "Gebeurtenis aanmaken" + +#: ../../Zotlabs/Module/Events.php:665 ../../Zotlabs/Module/Events.php:674 +#: ../../Zotlabs/Module/Cal.php:332 ../../Zotlabs/Module/Cal.php:339 +#: ../../Zotlabs/Module/Photos.php:947 +msgid "Previous" +msgstr "Vorige" + +#: ../../Zotlabs/Module/Events.php:666 ../../Zotlabs/Module/Events.php:675 +#: ../../Zotlabs/Module/Cal.php:333 ../../Zotlabs/Module/Cal.php:340 +#: ../../Zotlabs/Module/Photos.php:956 ../../Zotlabs/Module/Setup.php:267 +msgid "Next" +msgstr "Volgende" + +#: ../../Zotlabs/Module/Events.php:667 ../../Zotlabs/Module/Cal.php:334 +msgid "Export" +msgstr "Exporteren" + +#: ../../Zotlabs/Module/Events.php:670 ../../Zotlabs/Module/Layouts.php:197 +#: ../../Zotlabs/Module/Pubsites.php:47 ../../Zotlabs/Module/Blocks.php:166 +#: ../../Zotlabs/Module/Webpages.php:200 ../../include/page_widgets.php:42 +msgid "View" +msgstr "Weergeven" + +#: ../../Zotlabs/Module/Events.php:671 +msgid "Month" +msgstr "Maand" + +#: ../../Zotlabs/Module/Events.php:672 +msgid "Week" +msgstr "Week" + +#: ../../Zotlabs/Module/Events.php:673 +msgid "Day" +msgstr "Dag" + +#: ../../Zotlabs/Module/Events.php:676 ../../Zotlabs/Module/Cal.php:341 +msgid "Today" +msgstr "Vandaag" + +#: ../../Zotlabs/Module/Events.php:707 +msgid "Event removed" +msgstr "Gebeurtenis verwijderd" + +#: ../../Zotlabs/Module/Events.php:710 +msgid "Failed to remove event" +msgstr "Verwijderen gebeurtenis mislukt" + +#: ../../Zotlabs/Module/Bookmarks.php:53 +msgid "Bookmark added" +msgstr "Bladwijzer toegevoegd" + +#: ../../Zotlabs/Module/Bookmarks.php:75 +msgid "My Bookmarks" +msgstr "Mijn bladwijzers" + +#: ../../Zotlabs/Module/Bookmarks.php:86 +msgid "My Connections Bookmarks" +msgstr "Bladwijzers van mijn connecties" -#: ../../Zotlabs/Module/Editblock.php:79 ../../Zotlabs/Module/Editblock.php:95 #: ../../Zotlabs/Module/Editpost.php:24 ../../Zotlabs/Module/Editlayout.php:79 -#: ../../Zotlabs/Module/Editwebpage.php:81 +#: ../../Zotlabs/Module/Editwebpage.php:80 +#: ../../Zotlabs/Module/Editblock.php:79 ../../Zotlabs/Module/Editblock.php:95 msgid "Item not found" msgstr "Item niet gevonden" -#: ../../Zotlabs/Module/Editblock.php:124 ../../include/conversation.php:1228 -msgid "Title (optional)" -msgstr "Titel (optioneel)" +#: ../../Zotlabs/Module/Editpost.php:35 +msgid "Item is not editable" +msgstr "Item is niet te bewerken" -#: ../../Zotlabs/Module/Editblock.php:133 -msgid "Edit Block" -msgstr "Blok bewerken" +#: ../../Zotlabs/Module/Editpost.php:106 ../../Zotlabs/Module/Rpost.php:134 +msgid "Edit post" +msgstr "Bericht bewerken" -#: ../../Zotlabs/Module/Common.php:14 -msgid "No channel." -msgstr "Geen kanaal." +#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:222 +#: ../../include/nav.php:92 ../../include/conversation.php:1647 +msgid "Photos" +msgstr "Foto's" -#: ../../Zotlabs/Module/Common.php:43 -msgid "Common connections" -msgstr "Veel voorkomende connecties" +#: ../../Zotlabs/Module/Fbrowser.php:66 ../../Zotlabs/Module/Fbrowser.php:88 +#: ../../Zotlabs/Module/Admin.php:1406 ../../Zotlabs/Module/Settings.php:645 +#: ../../Zotlabs/Module/Settings.php:671 ../../Zotlabs/Module/Tagrm.php:15 +#: ../../Zotlabs/Module/Tagrm.php:138 ../../Zotlabs/Module/Wiki.php:166 +#: ../../Zotlabs/Module/Wiki.php:202 ../../include/conversation.php:1235 +#: ../../include/conversation.php:1274 +msgid "Cancel" +msgstr "Annuleren" -#: ../../Zotlabs/Module/Common.php:48 -msgid "No connections in common." -msgstr "Geen gemeenschappelijke connecties." +#: ../../Zotlabs/Module/Page.php:40 ../../Zotlabs/Module/Block.php:31 +msgid "Invalid item." +msgstr "Ongeldig item." + +#: ../../Zotlabs/Module/Page.php:56 ../../Zotlabs/Module/Cal.php:62 +#: ../../Zotlabs/Module/Block.php:43 ../../Zotlabs/Module/Wall_upload.php:33 +msgid "Channel not found." +msgstr "Kanaal niet gevonden." + +#: ../../Zotlabs/Module/Page.php:131 +msgid "" +"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod " +"tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam," +" quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo " +"consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse " +"cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat " +"non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." +msgstr "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." + +#: ../../Zotlabs/Module/Filer.php:52 +msgid "Save to Folder:" +msgstr "Bewaar in map: " + +#: ../../Zotlabs/Module/Filer.php:52 +msgid "- select -" +msgstr "- kies map -" + +#: ../../Zotlabs/Module/Filer.php:53 ../../Zotlabs/Module/Admin.php:2033 +#: ../../Zotlabs/Module/Admin.php:2053 ../../Zotlabs/Module/Rbmark.php:32 +#: ../../Zotlabs/Module/Rbmark.php:104 ../../include/text.php:926 +#: ../../include/text.php:938 ../../include/widgets.php:201 +msgid "Save" +msgstr "Opslaan" #: ../../Zotlabs/Module/Connections.php:56 #: ../../Zotlabs/Module/Connections.php:161 @@ -1076,7 +1359,7 @@ msgstr "Gearchiveerd" #: ../../Zotlabs/Module/Connections.php:76 #: ../../Zotlabs/Module/Connections.php:86 ../../Zotlabs/Module/Menu.php:116 -#: ../../include/conversation.php:1535 +#: ../../include/conversation.php:1550 msgid "New" msgstr "Nieuw" @@ -1163,15 +1446,15 @@ msgstr "Connectie negeren" msgid "Recent activity" msgstr "Recente activiteit" -#: ../../Zotlabs/Module/Connections.php:302 ../../Zotlabs/Lib/Apps.php:208 -#: ../../include/text.php:875 ../../include/nav.php:186 +#: ../../Zotlabs/Module/Connections.php:302 ../../Zotlabs/Lib/Apps.php:209 +#: ../../include/nav.php:188 ../../include/text.php:855 msgid "Connections" msgstr "Connecties" #: ../../Zotlabs/Module/Connections.php:306 ../../Zotlabs/Module/Search.php:44 -#: ../../Zotlabs/Lib/Apps.php:228 ../../include/text.php:945 -#: ../../include/text.php:957 ../../include/nav.php:165 -#: ../../include/acl_selectors.php:276 +#: ../../Zotlabs/Lib/Apps.php:230 ../../include/nav.php:167 +#: ../../include/text.php:925 ../../include/text.php:937 +#: ../../include/acl_selectors.php:274 msgid "Search" msgstr "Zoeken" @@ -1184,7 +1467,7 @@ msgid "Connections search" msgstr "Connecties zoeken" #: ../../Zotlabs/Module/Cover_photo.php:58 -#: ../../Zotlabs/Module/Profile_photo.php:79 +#: ../../Zotlabs/Module/Profile_photo.php:61 msgid "Image uploaded but image cropping failed." msgstr "Afbeelding geüpload, maar afbeelding kon niet worden bijgesneden. " @@ -1194,66 +1477,66 @@ msgid "Cover Photos" msgstr "Omslagfoto's" #: ../../Zotlabs/Module/Cover_photo.php:154 -#: ../../Zotlabs/Module/Profile_photo.php:133 +#: ../../Zotlabs/Module/Profile_photo.php:135 msgid "Image resize failed." msgstr "Afbeelding kon niet van grootte veranderd worden." #: ../../Zotlabs/Module/Cover_photo.php:168 -#: ../../Zotlabs/Module/Profile_photo.php:192 ../../include/photos.php:144 +#: ../../Zotlabs/Module/Profile_photo.php:196 ../../include/photos.php:148 msgid "Unable to process image" msgstr "Afbeelding kan niet verwerkt worden" #: ../../Zotlabs/Module/Cover_photo.php:192 -#: ../../Zotlabs/Module/Profile_photo.php:217 +#: ../../Zotlabs/Module/Profile_photo.php:223 msgid "Image upload failed." msgstr "Uploaden afbeelding mislukt" #: ../../Zotlabs/Module/Cover_photo.php:210 -#: ../../Zotlabs/Module/Profile_photo.php:236 +#: ../../Zotlabs/Module/Profile_photo.php:242 msgid "Unable to process image." msgstr "Niet in staat om afbeelding te verwerken." -#: ../../Zotlabs/Module/Cover_photo.php:233 ../../include/items.php:4270 +#: ../../Zotlabs/Module/Cover_photo.php:233 ../../include/items.php:4283 msgid "female" msgstr "vrouw" -#: ../../Zotlabs/Module/Cover_photo.php:234 ../../include/items.php:4271 +#: ../../Zotlabs/Module/Cover_photo.php:234 ../../include/items.php:4284 #, php-format msgid "%1$s updated her %2$s" msgstr "%1$s heeft haar %2$s bijgewerkt" -#: ../../Zotlabs/Module/Cover_photo.php:235 ../../include/items.php:4272 +#: ../../Zotlabs/Module/Cover_photo.php:235 ../../include/items.php:4285 msgid "male" msgstr "man" -#: ../../Zotlabs/Module/Cover_photo.php:236 ../../include/items.php:4273 +#: ../../Zotlabs/Module/Cover_photo.php:236 ../../include/items.php:4286 #, php-format msgid "%1$s updated his %2$s" msgstr "%1$s heeft zijn %2$s bijgewerkt" -#: ../../Zotlabs/Module/Cover_photo.php:238 ../../include/items.php:4275 +#: ../../Zotlabs/Module/Cover_photo.php:238 ../../include/items.php:4288 #, php-format msgid "%1$s updated their %2$s" msgstr "De %2$s van %1$s is bijgewerkt" -#: ../../Zotlabs/Module/Cover_photo.php:240 ../../include/channel.php:1661 +#: ../../Zotlabs/Module/Cover_photo.php:240 ../../include/channel.php:1726 msgid "cover photo" msgstr "omslagfoto" #: ../../Zotlabs/Module/Cover_photo.php:303 #: ../../Zotlabs/Module/Cover_photo.php:318 -#: ../../Zotlabs/Module/Profile_photo.php:283 -#: ../../Zotlabs/Module/Profile_photo.php:324 +#: ../../Zotlabs/Module/Profile_photo.php:300 +#: ../../Zotlabs/Module/Profile_photo.php:341 msgid "Photo not available." msgstr "Foto niet beschikbaar." #: ../../Zotlabs/Module/Cover_photo.php:354 -#: ../../Zotlabs/Module/Profile_photo.php:365 +#: ../../Zotlabs/Module/Profile_photo.php:387 msgid "Upload File:" msgstr "Bestand uploaden:" #: ../../Zotlabs/Module/Cover_photo.php:355 -#: ../../Zotlabs/Module/Profile_photo.php:366 +#: ../../Zotlabs/Module/Profile_photo.php:388 msgid "Select a profile:" msgstr "Kies een profiel:" @@ -1262,200 +1545,69 @@ msgid "Upload Cover Photo" msgstr "Omslagfoto uploaden" #: ../../Zotlabs/Module/Cover_photo.php:361 -#: ../../Zotlabs/Module/Profile_photo.php:374 -#: ../../Zotlabs/Module/Settings.php:985 +#: ../../Zotlabs/Module/Profile_photo.php:396 +#: ../../Zotlabs/Module/Settings.php:1080 msgid "or" msgstr "of" #: ../../Zotlabs/Module/Cover_photo.php:361 -#: ../../Zotlabs/Module/Profile_photo.php:374 +#: ../../Zotlabs/Module/Profile_photo.php:396 msgid "skip this step" msgstr "sla deze stap over" #: ../../Zotlabs/Module/Cover_photo.php:361 -#: ../../Zotlabs/Module/Profile_photo.php:374 +#: ../../Zotlabs/Module/Profile_photo.php:396 msgid "select a photo from your photo albums" msgstr "Kies een foto uit jouw fotoalbums" #: ../../Zotlabs/Module/Cover_photo.php:377 -#: ../../Zotlabs/Module/Profile_photo.php:390 +#: ../../Zotlabs/Module/Profile_photo.php:415 msgid "Crop Image" msgstr "Afbeelding bijsnijden" #: ../../Zotlabs/Module/Cover_photo.php:378 -#: ../../Zotlabs/Module/Profile_photo.php:391 +#: ../../Zotlabs/Module/Profile_photo.php:416 msgid "Please adjust the image cropping for optimum viewing." msgstr "Snij de afbeelding zo uit dat deze optimaal wordt weergegeven." #: ../../Zotlabs/Module/Cover_photo.php:380 -#: ../../Zotlabs/Module/Profile_photo.php:393 +#: ../../Zotlabs/Module/Profile_photo.php:418 msgid "Done Editing" msgstr "Klaar met bewerken" -#: ../../Zotlabs/Module/Editpost.php:35 -msgid "Item is not editable" -msgstr "Item is niet te bewerken" +#: ../../Zotlabs/Module/Impel.php:41 ../../include/bbcode.php:192 +msgid "webpage" +msgstr "Webpagina" -#: ../../Zotlabs/Module/Editpost.php:106 ../../Zotlabs/Module/Rpost.php:135 -msgid "Edit post" -msgstr "Bericht bewerken" +#: ../../Zotlabs/Module/Impel.php:46 ../../include/bbcode.php:198 +msgid "block" +msgstr "blok" -#: ../../Zotlabs/Module/Events.php:26 -msgid "Calendar entries imported." -msgstr "Agenda-items geïmporteerd." +#: ../../Zotlabs/Module/Impel.php:51 ../../include/bbcode.php:195 +msgid "layout" +msgstr "lay-out" -#: ../../Zotlabs/Module/Events.php:28 -msgid "No calendar entries found." -msgstr "Geen agenda-items gevonden." +#: ../../Zotlabs/Module/Impel.php:58 ../../include/bbcode.php:201 +msgid "menu" +msgstr "menu" -#: ../../Zotlabs/Module/Events.php:105 -msgid "Event can not end before it has started." -msgstr "Gebeurtenis kan niet eindigen voordat het is begonnen" +#: ../../Zotlabs/Module/Impel.php:187 +#, php-format +msgid "%s element installed" +msgstr "%s onderdeel geïnstalleerd" -#: ../../Zotlabs/Module/Events.php:107 ../../Zotlabs/Module/Events.php:116 -#: ../../Zotlabs/Module/Events.php:136 -msgid "Unable to generate preview." -msgstr "Niet in staat om voorvertoning te genereren" +#: ../../Zotlabs/Module/Impel.php:190 +#, php-format +msgid "%s element installation failed" +msgstr "Installatie %s-element mislukt" -#: ../../Zotlabs/Module/Events.php:114 -msgid "Event title and start time are required." -msgstr "Titel en begintijd van gebeurtenis zijn vereist." +#: ../../Zotlabs/Module/Cal.php:69 +msgid "Permissions denied." +msgstr "Permissies niet toegestaan" -#: ../../Zotlabs/Module/Events.php:134 ../../Zotlabs/Module/Events.php:259 -msgid "Event not found." -msgstr "Gebeurtenis niet gevonden" - -#: ../../Zotlabs/Module/Events.php:254 ../../Zotlabs/Module/Like.php:373 -#: ../../Zotlabs/Module/Tagger.php:51 ../../include/event.php:949 -#: ../../include/text.php:1943 ../../include/conversation.php:123 -msgid "event" -msgstr "gebeurtenis" - -#: ../../Zotlabs/Module/Events.php:449 -msgid "Edit event title" -msgstr "Titel bewerken" - -#: ../../Zotlabs/Module/Events.php:449 -msgid "Event title" -msgstr "Titel" - -#: ../../Zotlabs/Module/Events.php:449 ../../Zotlabs/Module/Events.php:454 -#: ../../Zotlabs/Module/Profiles.php:709 ../../Zotlabs/Module/Profiles.php:713 -#: ../../Zotlabs/Module/Appman.php:115 ../../Zotlabs/Module/Appman.php:116 -#: ../../include/datetime.php:245 -msgid "Required" -msgstr "Vereist" - -#: ../../Zotlabs/Module/Events.php:451 -msgid "Categories (comma-separated list)" -msgstr "Categorieën (door komma's gescheiden lijst)" - -#: ../../Zotlabs/Module/Events.php:452 -msgid "Edit Category" -msgstr "Categorie" - -#: ../../Zotlabs/Module/Events.php:452 -msgid "Category" -msgstr "Categorie" - -#: ../../Zotlabs/Module/Events.php:455 -msgid "Edit start date and time" -msgstr "Begindatum en -tijd bewerken" - -#: ../../Zotlabs/Module/Events.php:455 -msgid "Start date and time" -msgstr "Begindatum en -tijd" - -#: ../../Zotlabs/Module/Events.php:456 ../../Zotlabs/Module/Events.php:459 -msgid "Finish date and time are not known or not relevant" -msgstr "Einddatum en -tijd zijn niet bekend of niet van toepassing" - -#: ../../Zotlabs/Module/Events.php:458 -msgid "Edit finish date and time" -msgstr "Einddatum en -tijd bewerken" - -#: ../../Zotlabs/Module/Events.php:458 -msgid "Finish date and time" -msgstr "Einddatum en -tijd" - -#: ../../Zotlabs/Module/Events.php:460 ../../Zotlabs/Module/Events.php:461 -msgid "Adjust for viewer timezone" -msgstr "Aanpassen aan de tijdzone van wie deze gebeurtenis bekijkt" - -#: ../../Zotlabs/Module/Events.php:460 -msgid "" -"Important for events that happen in a particular place. Not practical for " -"global holidays." -msgstr "Belangrijk voor gebeurtenissen die op een bepaalde locatie plaatsvinden. Niet praktisch voor wereldwijde feestdagen." - -#: ../../Zotlabs/Module/Events.php:462 -msgid "Edit Description" -msgstr "Omschrijving bewerken" - -#: ../../Zotlabs/Module/Events.php:462 ../../Zotlabs/Module/Appman.php:117 -#: ../../Zotlabs/Module/Rbmark.php:101 -msgid "Description" -msgstr "Omschrijving" - -#: ../../Zotlabs/Module/Events.php:464 -msgid "Edit Location" -msgstr "Locatie bewerken" - -#: ../../Zotlabs/Module/Events.php:464 ../../Zotlabs/Module/Locs.php:117 -#: ../../Zotlabs/Module/Profiles.php:477 ../../Zotlabs/Module/Profiles.php:698 -#: ../../Zotlabs/Module/Pubsites.php:41 ../../include/js_strings.php:25 -msgid "Location" -msgstr "Locatie" - -#: ../../Zotlabs/Module/Events.php:467 ../../Zotlabs/Module/Events.php:469 -msgid "Share this event" -msgstr "Deel deze gebeurtenis" - -#: ../../Zotlabs/Module/Events.php:470 ../../Zotlabs/Module/Photos.php:1093 -#: ../../Zotlabs/Module/Webpages.php:194 ../../Zotlabs/Lib/ThreadItem.php:719 -#: ../../include/conversation.php:1187 ../../include/page_widgets.php:40 -msgid "Preview" -msgstr "Voorvertoning" - -#: ../../Zotlabs/Module/Events.php:471 ../../include/conversation.php:1232 -msgid "Permission settings" -msgstr "Permissies" - -#: ../../Zotlabs/Module/Events.php:476 -msgid "Advanced Options" -msgstr "Geavanceerde opties" - -#: ../../Zotlabs/Module/Events.php:610 -msgid "Edit event" -msgstr "Gebeurtenis bewerken" - -#: ../../Zotlabs/Module/Events.php:612 -msgid "Delete event" -msgstr "Gebeurtenis verwijderen" - -#: ../../Zotlabs/Module/Events.php:646 -msgid "calendar" -msgstr "agenda" - -#: ../../Zotlabs/Module/Events.php:706 -msgid "Event removed" -msgstr "Gebeurtenis verwijderd" - -#: ../../Zotlabs/Module/Events.php:709 -msgid "Failed to remove event" -msgstr "Verwijderen gebeurtenis mislukt" - -#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:220 -#: ../../include/nav.php:92 ../../include/conversation.php:1632 -msgid "Photos" -msgstr "Foto's" - -#: ../../Zotlabs/Module/Fbrowser.php:66 ../../Zotlabs/Module/Fbrowser.php:88 -#: ../../Zotlabs/Module/Admin.php:1406 ../../Zotlabs/Module/Settings.php:591 -#: ../../Zotlabs/Module/Settings.php:617 ../../Zotlabs/Module/Tagrm.php:15 -#: ../../Zotlabs/Module/Tagrm.php:138 ../../include/conversation.php:1259 -msgid "Cancel" -msgstr "Annuleren" +#: ../../Zotlabs/Module/Cal.php:337 +msgid "Import" +msgstr "Importeren" #: ../../Zotlabs/Module/Dirsearch.php:25 ../../Zotlabs/Module/Regdir.php:49 msgid "This site is not a directory server" @@ -1465,112 +1617,184 @@ msgstr "Deze hub is geen kanalengidshub (directoryserver)" msgid "This directory server requires an access token" msgstr "Deze kanalengidshub (directoryserver) heeft een toegangs-token nodig" -#: ../../Zotlabs/Module/Filer.php:52 -msgid "Save to Folder:" -msgstr "Bewaar in map: " +#: ../../Zotlabs/Module/Chat.php:25 ../../Zotlabs/Module/Channel.php:28 +#: ../../Zotlabs/Module/Wiki.php:20 +msgid "You must be logged in to see this page." +msgstr "Je moet zijn ingelogd om deze pagina te kunnen bekijken." -#: ../../Zotlabs/Module/Filer.php:52 -msgid "- select -" -msgstr "- kies map -" +#: ../../Zotlabs/Module/Chat.php:181 +msgid "Room not found" +msgstr "Chatkanaal niet gevonden" -#: ../../Zotlabs/Module/Filer.php:53 ../../Zotlabs/Module/Admin.php:2033 -#: ../../Zotlabs/Module/Admin.php:2053 ../../Zotlabs/Module/Rbmark.php:32 -#: ../../Zotlabs/Module/Rbmark.php:104 ../../include/text.php:946 -#: ../../include/text.php:958 ../../include/widgets.php:201 -msgid "Save" -msgstr "Opslaan" +#: ../../Zotlabs/Module/Chat.php:197 +msgid "Leave Room" +msgstr "Chatkanaal verlaten" -#: ../../Zotlabs/Module/Dreport.php:27 +#: ../../Zotlabs/Module/Chat.php:198 +msgid "Delete Room" +msgstr "Chatkanaal verwijderen" + +#: ../../Zotlabs/Module/Chat.php:199 +msgid "I am away right now" +msgstr "Ik ben momenteel afwezig" + +#: ../../Zotlabs/Module/Chat.php:200 +msgid "I am online" +msgstr "Ik ben online" + +#: ../../Zotlabs/Module/Chat.php:202 +msgid "Bookmark this room" +msgstr "Chatkanaal aan bladwijzers toevoegen" + +#: ../../Zotlabs/Module/Chat.php:205 ../../Zotlabs/Module/Mail.php:197 +#: ../../Zotlabs/Module/Mail.php:306 ../../include/conversation.php:1181 +msgid "Please enter a link URL:" +msgstr "Vul een URL in:" + +#: ../../Zotlabs/Module/Chat.php:206 ../../Zotlabs/Module/Mail.php:250 +#: ../../Zotlabs/Module/Mail.php:375 ../../Zotlabs/Lib/ThreadItem.php:722 +#: ../../include/conversation.php:1271 +msgid "Encrypt text" +msgstr "Tekst versleutelen" + +#: ../../Zotlabs/Module/Chat.php:207 ../../Zotlabs/Module/Editwebpage.php:146 +#: ../../Zotlabs/Module/Mail.php:244 ../../Zotlabs/Module/Mail.php:369 +#: ../../Zotlabs/Module/Editblock.php:111 ../../include/conversation.php:1146 +msgid "Insert web link" +msgstr "Weblink invoegen" + +#: ../../Zotlabs/Module/Chat.php:218 +msgid "Feature disabled." +msgstr "Functie uitgeschakeld." + +#: ../../Zotlabs/Module/Chat.php:232 +msgid "New Chatroom" +msgstr "Nieuw chatkanaal" + +#: ../../Zotlabs/Module/Chat.php:233 +msgid "Chatroom name" +msgstr "Naam chatkanaal" + +#: ../../Zotlabs/Module/Chat.php:234 +msgid "Expiration of chats (minutes)" +msgstr "Aantal minuten voordat chatberichten worden verwijderd" + +#: ../../Zotlabs/Module/Chat.php:235 ../../Zotlabs/Module/Filestorage.php:152 +#: ../../Zotlabs/Module/Photos.php:669 ../../Zotlabs/Module/Photos.php:1043 +#: ../../Zotlabs/Module/Thing.php:313 ../../Zotlabs/Module/Thing.php:359 +#: ../../include/acl_selectors.php:281 +msgid "Permissions" +msgstr "Permissies" + +#: ../../Zotlabs/Module/Chat.php:246 +#, php-format +msgid "%1$s's Chatrooms" +msgstr "Chatkanalen van %1$s" + +#: ../../Zotlabs/Module/Chat.php:251 +msgid "No chatrooms available" +msgstr "Geen chatkanalen beschikbaar" + +#: ../../Zotlabs/Module/Chat.php:252 ../../Zotlabs/Module/Profiles.php:778 +#: ../../Zotlabs/Module/Manage.php:143 +msgid "Create New" +msgstr "Nieuwe aanmaken" + +#: ../../Zotlabs/Module/Chat.php:255 +msgid "Expiration" +msgstr "Verloopt na" + +#: ../../Zotlabs/Module/Chat.php:256 +msgid "min" +msgstr "min" + +#: ../../Zotlabs/Module/Dreport.php:44 msgid "Invalid message" msgstr "Ongeldig bericht" -#: ../../Zotlabs/Module/Dreport.php:59 +#: ../../Zotlabs/Module/Dreport.php:76 msgid "no results" msgstr "geen resultaten" -#: ../../Zotlabs/Module/Dreport.php:64 +#: ../../Zotlabs/Module/Dreport.php:91 +msgid "channel sync processed" +msgstr "kanaalsync verwerkt" + +#: ../../Zotlabs/Module/Dreport.php:95 +msgid "queued" +msgstr "in wachtrij" + +#: ../../Zotlabs/Module/Dreport.php:99 +msgid "posted" +msgstr "verstuurd" + +#: ../../Zotlabs/Module/Dreport.php:103 +msgid "accepted for delivery" +msgstr "geaccepteerd om afgeleverd te worden" + +#: ../../Zotlabs/Module/Dreport.php:107 +msgid "updated" +msgstr "geüpdatet" + +#: ../../Zotlabs/Module/Dreport.php:110 +msgid "update ignored" +msgstr "update genegeerd" + +#: ../../Zotlabs/Module/Dreport.php:113 +msgid "permission denied" +msgstr "toegang geweigerd" + +#: ../../Zotlabs/Module/Dreport.php:117 +msgid "recipient not found" +msgstr "ontvanger niet gevonden" + +#: ../../Zotlabs/Module/Dreport.php:120 +msgid "mail recalled" +msgstr "Privébericht ingetrokken" + +#: ../../Zotlabs/Module/Dreport.php:123 +msgid "duplicate mail received" +msgstr "dubbel privébericht ontvangen" + +#: ../../Zotlabs/Module/Dreport.php:126 +msgid "mail delivered" +msgstr "privébericht afgeleverd" + +#: ../../Zotlabs/Module/Dreport.php:146 #, php-format msgid "Delivery report for %1$s" msgstr "Afleveringsrapport voor %1$s" -#: ../../Zotlabs/Module/Dreport.php:78 -msgid "channel sync processed" -msgstr "kanaalsync verwerkt" +#: ../../Zotlabs/Module/Dreport.php:149 +msgid "Options" +msgstr "Opties" -#: ../../Zotlabs/Module/Dreport.php:82 -msgid "queued" -msgstr "in wachtrij" +#: ../../Zotlabs/Module/Dreport.php:150 +msgid "Redeliver" +msgstr "Opnieuw afleveren" -#: ../../Zotlabs/Module/Dreport.php:86 -msgid "posted" -msgstr "verstuurd" - -#: ../../Zotlabs/Module/Dreport.php:90 -msgid "accepted for delivery" -msgstr "geaccepteerd om afgeleverd te worden" - -#: ../../Zotlabs/Module/Dreport.php:94 -msgid "updated" -msgstr "geüpdatet" - -#: ../../Zotlabs/Module/Dreport.php:97 -msgid "update ignored" -msgstr "update genegeerd" - -#: ../../Zotlabs/Module/Dreport.php:100 -msgid "permission denied" -msgstr "toegang geweigerd" - -#: ../../Zotlabs/Module/Dreport.php:104 -msgid "recipient not found" -msgstr "ontvanger niet gevonden" - -#: ../../Zotlabs/Module/Dreport.php:107 -msgid "mail recalled" -msgstr "Privébericht ingetrokken" - -#: ../../Zotlabs/Module/Dreport.php:110 -msgid "duplicate mail received" -msgstr "dubbel privébericht ontvangen" - -#: ../../Zotlabs/Module/Dreport.php:113 -msgid "mail delivered" -msgstr "privébericht afgeleverd" - -#: ../../Zotlabs/Module/Editlayout.php:126 -#: ../../Zotlabs/Module/Layouts.php:127 ../../Zotlabs/Module/Layouts.php:186 +#: ../../Zotlabs/Module/Editlayout.php:127 +#: ../../Zotlabs/Module/Layouts.php:128 ../../Zotlabs/Module/Layouts.php:188 msgid "Layout Name" msgstr "Naam lay-out" -#: ../../Zotlabs/Module/Editlayout.php:127 -#: ../../Zotlabs/Module/Layouts.php:130 +#: ../../Zotlabs/Module/Editlayout.php:128 +#: ../../Zotlabs/Module/Layouts.php:131 msgid "Layout Description (Optional)" msgstr "Lay-out-omschrijving (optioneel)" -#: ../../Zotlabs/Module/Editlayout.php:135 +#: ../../Zotlabs/Module/Editlayout.php:136 msgid "Edit Layout" msgstr "Lay-out bewerken" -#: ../../Zotlabs/Module/Editwebpage.php:143 +#: ../../Zotlabs/Module/Editwebpage.php:142 msgid "Page link" msgstr "Paginalink" -#: ../../Zotlabs/Module/Editwebpage.php:169 +#: ../../Zotlabs/Module/Editwebpage.php:168 msgid "Edit Webpage" msgstr "Webpagina bewerken" -#: ../../Zotlabs/Module/Follow.php:34 -msgid "Channel added." -msgstr "Kanaal toegevoegd." - -#: ../../Zotlabs/Module/Acl.php:227 -msgid "network" -msgstr "netwerk" - -#: ../../Zotlabs/Module/Acl.php:237 -msgid "RSS" -msgstr "RSS" - #: ../../Zotlabs/Module/Group.php:24 msgid "Privacy group created." msgstr "Privacygroep aangemaakt" @@ -1580,7 +1804,7 @@ msgid "Could not create privacy group." msgstr "Kon privacygroep niet aanmaken" #: ../../Zotlabs/Module/Group.php:42 ../../Zotlabs/Module/Group.php:141 -#: ../../include/items.php:3893 +#: ../../include/items.php:3902 msgid "Privacy group not found." msgstr "Privacygroep niet gevonden" @@ -1624,31 +1848,57 @@ msgstr "Alle kanaalconnecties" msgid "Click on a channel to add or remove." msgstr "Klik op een kanaal om deze toe te voegen of te verwijderen." -#: ../../Zotlabs/Module/Ffsapi.php:12 -msgid "Share content from Firefox to $Projectname" -msgstr "Deel webpagina's vanuit Firefox met " +#: ../../Zotlabs/Module/Appman.php:37 ../../Zotlabs/Module/Appman.php:53 +msgid "App installed." +msgstr "App geïnstalleerd" -#: ../../Zotlabs/Module/Ffsapi.php:15 -msgid "Activate the Firefox $Projectname provider" -msgstr "Activeer de $Projectname-service in Firefox" +#: ../../Zotlabs/Module/Appman.php:46 +msgid "Malformed app." +msgstr "Misvormde app." -#: ../../Zotlabs/Module/Api.php:61 ../../Zotlabs/Module/Api.php:85 -msgid "Authorize application connection" -msgstr "Geef toestemming voor applicatiekoppeling" +#: ../../Zotlabs/Module/Appman.php:104 +msgid "Embed code" +msgstr "Insluitcode" -#: ../../Zotlabs/Module/Api.php:62 -msgid "Return to your app and insert this Securty Code:" -msgstr "Ga terug naar je app en voeg deze beveiligingscode in:" +#: ../../Zotlabs/Module/Appman.php:110 ../../include/widgets.php:107 +msgid "Edit App" +msgstr "App bewerken" -#: ../../Zotlabs/Module/Api.php:72 -msgid "Please login to continue." -msgstr "Inloggen om verder te kunnen gaan." +#: ../../Zotlabs/Module/Appman.php:110 +msgid "Create App" +msgstr "App maken" -#: ../../Zotlabs/Module/Api.php:87 -msgid "" -"Do you want to authorize this application to access your posts and contacts," -" and/or create new posts for you?" -msgstr "Wil je deze applicatie toestemming geven om jouw berichten en connecties te zien, en/of nieuwe berichten voor jou te plaatsen?" +#: ../../Zotlabs/Module/Appman.php:115 +msgid "Name of app" +msgstr "Naam van app" + +#: ../../Zotlabs/Module/Appman.php:116 +msgid "Location (URL) of app" +msgstr "Locatie (URL) van app" + +#: ../../Zotlabs/Module/Appman.php:118 +msgid "Photo icon URL" +msgstr "URL van pictogram" + +#: ../../Zotlabs/Module/Appman.php:118 +msgid "80 x 80 pixels - optional" +msgstr "80 x 80 pixels (optioneel)" + +#: ../../Zotlabs/Module/Appman.php:119 +msgid "Categories (optional, comma separated list)" +msgstr "Categorieën (optioneel, door komma's gescheiden lijst)" + +#: ../../Zotlabs/Module/Appman.php:120 +msgid "Version ID" +msgstr "Versie-ID" + +#: ../../Zotlabs/Module/Appman.php:121 +msgid "Price of app" +msgstr "Prijs van de app" + +#: ../../Zotlabs/Module/Appman.php:122 +msgid "Location (URL) to purchase app" +msgstr "Locatie (URL) om de app aan te schaffen" #: ../../Zotlabs/Module/Help.php:26 msgid "Documentation Search" @@ -1660,8 +1910,8 @@ msgid "Help:" msgstr "Hulp:" #: ../../Zotlabs/Module/Help.php:85 ../../Zotlabs/Module/Help.php:90 -#: ../../Zotlabs/Module/Layouts.php:183 ../../Zotlabs/Lib/Apps.php:223 -#: ../../include/nav.php:159 +#: ../../Zotlabs/Module/Layouts.php:185 ../../Zotlabs/Lib/Apps.php:225 +#: ../../include/nav.php:161 msgid "Help" msgstr "Hulp" @@ -1669,335 +1919,124 @@ msgstr "Hulp" msgid "$Projectname Documentation" msgstr "$Projectname-documentatie" -#: ../../Zotlabs/Module/Filestorage.php:88 -msgid "Permission Denied." -msgstr "Toegang geweigerd" - -#: ../../Zotlabs/Module/Filestorage.php:104 -msgid "File not found." -msgstr "Bestand niet gevonden." - -#: ../../Zotlabs/Module/Filestorage.php:147 -msgid "Edit file permissions" -msgstr "Bestandsrechten bewerken" - -#: ../../Zotlabs/Module/Filestorage.php:156 -msgid "Set/edit permissions" -msgstr "Rechten instellen/bewerken" - -#: ../../Zotlabs/Module/Filestorage.php:157 -msgid "Include all files and sub folders" -msgstr "Toepassen op alle bestanden en submappen" - -#: ../../Zotlabs/Module/Filestorage.php:158 -msgid "Return to file list" -msgstr "Terugkeren naar bestandlijst " - -#: ../../Zotlabs/Module/Filestorage.php:160 -msgid "Copy/paste this code to attach file to a post" -msgstr "Kopieer/plak deze code om het bestand aan een bericht te koppelen" - -#: ../../Zotlabs/Module/Filestorage.php:161 -msgid "Copy/paste this URL to link file from a web page" -msgstr "Kopieer/plak deze URL om het bestand aan een externe webpagina te koppelen" - -#: ../../Zotlabs/Module/Filestorage.php:163 -msgid "Share this file" -msgstr "Dit bestand delen" - -#: ../../Zotlabs/Module/Filestorage.php:164 -msgid "Show URL to this file" -msgstr "Toon URL van dit bestand" - -#: ../../Zotlabs/Module/Filestorage.php:165 -msgid "Notify your contacts about this file" -msgstr "Jouw connecties over dit bestand berichten" - -#: ../../Zotlabs/Module/Apps.php:47 ../../include/widgets.php:102 -#: ../../include/nav.php:163 -msgid "Apps" -msgstr "Apps" - #: ../../Zotlabs/Module/Attach.php:13 msgid "Item not available." msgstr "Item is niet aanwezig." -#: ../../Zotlabs/Module/Import.php:32 -#, php-format -msgid "Your service plan only allows %d channels." -msgstr "Jouw abonnement staat maar %d kanalen toe." +#: ../../Zotlabs/Module/Pdledit.php:18 +msgid "Layout updated." +msgstr "Lay-out bijgewerkt." -#: ../../Zotlabs/Module/Import.php:70 ../../Zotlabs/Module/Import_items.php:42 -msgid "Nothing to import." -msgstr "Niets gevonden om te importeren" +#: ../../Zotlabs/Module/Pdledit.php:34 ../../Zotlabs/Module/Pdledit.php:61 +msgid "Edit System Page Description" +msgstr "Systeempagina's bewerken" -#: ../../Zotlabs/Module/Import.php:94 ../../Zotlabs/Module/Import_items.php:66 -msgid "Unable to download data from old server" -msgstr "Niet in staat om gegevens van de oude hub te downloaden" +#: ../../Zotlabs/Module/Pdledit.php:56 +msgid "Layout not found." +msgstr "Lay-out niet gevonden." -#: ../../Zotlabs/Module/Import.php:100 -#: ../../Zotlabs/Module/Import_items.php:72 -msgid "Imported file is empty." -msgstr "Geïmporteerde bestand is leeg" +#: ../../Zotlabs/Module/Pdledit.php:62 +msgid "Module Name:" +msgstr "Modulenaam:" -#: ../../Zotlabs/Module/Import.php:122 -#: ../../Zotlabs/Module/Import_items.php:86 -#, php-format -msgid "Warning: Database versions differ by %1$d updates." -msgstr "Waarschuwing: database-versies lopen %1$d updates achter." +#: ../../Zotlabs/Module/Pdledit.php:63 +msgid "Layout Help" +msgstr "Lay-out-hulp" -#: ../../Zotlabs/Module/Import.php:150 ../../include/import.php:86 -msgid "Cloned channel not found. Import failed." -msgstr "Gekloond kanaal niet gevonden. Importeren mislukt." +#: ../../Zotlabs/Module/Ffsapi.php:12 +msgid "Share content from Firefox to $Projectname" +msgstr "Deel webpagina's vanuit Firefox met " -#: ../../Zotlabs/Module/Import.php:160 -msgid "No channel. Import failed." -msgstr "Geen kanaal. Importeren mislukt." +#: ../../Zotlabs/Module/Ffsapi.php:15 +msgid "Activate the Firefox $Projectname provider" +msgstr "Activeer de $Projectname-service in Firefox" -#: ../../Zotlabs/Module/Import.php:510 -#: ../../include/Import/import_diaspora.php:142 -msgid "Import completed." -msgstr "Import voltooid." +#: ../../Zotlabs/Module/Acl.php:312 +msgid "network" +msgstr "netwerk" -#: ../../Zotlabs/Module/Import.php:532 -msgid "You must be logged in to use this feature." -msgstr "Je moet ingelogd zijn om dit onderdeel te kunnen gebruiken." +#: ../../Zotlabs/Module/Acl.php:322 +msgid "RSS" +msgstr "RSS" -#: ../../Zotlabs/Module/Import.php:537 -msgid "Import Channel" -msgstr "Kanaal importeren" +#: ../../Zotlabs/Module/Filestorage.php:87 +msgid "Permission Denied." +msgstr "Toegang geweigerd" -#: ../../Zotlabs/Module/Import.php:538 -msgid "" -"Use this form to import an existing channel from a different server/hub. You" -" may retrieve the channel identity from the old server/hub via the network " -"or provide an export file." -msgstr "Gebruik dit formulier om een bestaand kanaal te importeren van een andere hub. Je kan de kanaal-identiteit van de oude hub via het netwerk ontvangen of een exportbestand verstrekken." +#: ../../Zotlabs/Module/Filestorage.php:103 +msgid "File not found." +msgstr "Bestand niet gevonden." -#: ../../Zotlabs/Module/Import.php:539 -#: ../../Zotlabs/Module/Import_items.php:119 -msgid "File to Upload" -msgstr "Bestand om te uploaden" +#: ../../Zotlabs/Module/Filestorage.php:146 +msgid "Edit file permissions" +msgstr "Bestandsrechten bewerken" -#: ../../Zotlabs/Module/Import.php:540 -msgid "Or provide the old server/hub details" -msgstr "Of vul de gegevens van de oude hub in" +#: ../../Zotlabs/Module/Filestorage.php:155 +msgid "Set/edit permissions" +msgstr "Rechten instellen/bewerken" -#: ../../Zotlabs/Module/Import.php:541 -msgid "Your old identity address (xyz@example.com)" -msgstr "Jouw oude kanaaladres (xyz@example.com)" +#: ../../Zotlabs/Module/Filestorage.php:156 +msgid "Include all files and sub folders" +msgstr "Toepassen op alle bestanden en submappen" -#: ../../Zotlabs/Module/Import.php:542 -msgid "Your old login email address" -msgstr "Het e-mailadres van je oude account" +#: ../../Zotlabs/Module/Filestorage.php:157 +msgid "Return to file list" +msgstr "Terugkeren naar bestandlijst " -#: ../../Zotlabs/Module/Import.php:543 -msgid "Your old login password" -msgstr "Wachtwoord van jouw oude account" +#: ../../Zotlabs/Module/Filestorage.php:159 +msgid "Copy/paste this code to attach file to a post" +msgstr "Kopieer/plak deze code om het bestand aan een bericht te koppelen" -#: ../../Zotlabs/Module/Import.php:544 -msgid "" -"For either option, please choose whether to make this hub your new primary " -"address, or whether your old location should continue this role. You will be" -" able to post from either location, but only one can be marked as the " -"primary location for files, photos, and media." -msgstr "Voor elke optie geldt dat je moet kiezen of je jouw primaire kanaaladres op deze hub wil instellen of dat jouw oude hub deze rol blijft vervullen." +#: ../../Zotlabs/Module/Filestorage.php:160 +msgid "Copy/paste this URL to link file from a web page" +msgstr "Kopieer/plak deze URL om het bestand aan een externe webpagina te koppelen" -#: ../../Zotlabs/Module/Import.php:545 -msgid "Make this hub my primary location" -msgstr "Stel deze hub als mijn primaire locatie in" +#: ../../Zotlabs/Module/Filestorage.php:162 +msgid "Share this file" +msgstr "Dit bestand delen" -#: ../../Zotlabs/Module/Import.php:546 -msgid "" -"Import existing posts if possible (experimental - limited by available " -"memory" -msgstr "Importeer bestaande berichten wanneer mogelijk (experimenteel - afhankelijk van beschikbaar servergeheugen)" +#: ../../Zotlabs/Module/Filestorage.php:163 +msgid "Show URL to this file" +msgstr "Toon URL van dit bestand" -#: ../../Zotlabs/Module/Import.php:547 -msgid "" -"This process may take several minutes to complete. Please submit the form " -"only once and leave this page open until finished." -msgstr "Dit proces kan enkele minuten in beslag nemen. Klik maar één keer op opslaan en verlaat deze pagina niet alvorens het proces is voltooid." +#: ../../Zotlabs/Module/Filestorage.php:164 +msgid "Notify your contacts about this file" +msgstr "Jouw connecties over dit bestand berichten" -#: ../../Zotlabs/Module/Item.php:178 -msgid "Unable to locate original post." -msgstr "Niet in staat om de originele locatie van het bericht te vinden. " - -#: ../../Zotlabs/Module/Item.php:427 -msgid "Empty post discarded." -msgstr "Leeg bericht geannuleerd" - -#: ../../Zotlabs/Module/Item.php:467 -msgid "Executable content type not permitted to this channel." -msgstr "Uitvoerbare bestanden zijn niet toegestaan op dit kanaal." - -#: ../../Zotlabs/Module/Item.php:847 -msgid "Duplicate post suppressed." -msgstr "Dubbel bericht tegengehouden." - -#: ../../Zotlabs/Module/Item.php:977 -msgid "System error. Post not saved." -msgstr "Systeemfout. Bericht niet opgeslagen." - -#: ../../Zotlabs/Module/Item.php:1241 -msgid "Unable to obtain post information from database." -msgstr "Niet in staat om informatie over dit bericht uit de database te verkrijgen." - -#: ../../Zotlabs/Module/Item.php:1248 -#, php-format -msgid "You have reached your limit of %1$.0f top level posts." -msgstr "Je hebt jouw limiet van %1$.0f berichten bereikt." - -#: ../../Zotlabs/Module/Item.php:1255 -#, php-format -msgid "You have reached your limit of %1$.0f webpages." -msgstr "Je hebt jouw limiet van %1$.0f webpagina's bereikt." - -#: ../../Zotlabs/Module/Layouts.php:181 ../../include/text.php:2267 +#: ../../Zotlabs/Module/Layouts.php:183 ../../include/text.php:2240 msgid "Layouts" msgstr "Lay-outs" -#: ../../Zotlabs/Module/Layouts.php:183 +#: ../../Zotlabs/Module/Layouts.php:185 msgid "Comanche page description language help" msgstr "Hulp met de paginabeschrijvingstaal Comanche" -#: ../../Zotlabs/Module/Layouts.php:187 +#: ../../Zotlabs/Module/Layouts.php:189 msgid "Layout Description" msgstr "Lay-out-omschrijving" -#: ../../Zotlabs/Module/Layouts.php:192 +#: ../../Zotlabs/Module/Layouts.php:190 ../../Zotlabs/Module/Menu.php:114 +#: ../../Zotlabs/Module/Blocks.php:157 ../../Zotlabs/Module/Webpages.php:205 +#: ../../include/page_widgets.php:47 +msgid "Created" +msgstr "Aangemaakt" + +#: ../../Zotlabs/Module/Layouts.php:191 ../../Zotlabs/Module/Menu.php:115 +#: ../../Zotlabs/Module/Blocks.php:158 ../../Zotlabs/Module/Webpages.php:206 +#: ../../include/page_widgets.php:48 +msgid "Edited" +msgstr "Bewerkt" + +#: ../../Zotlabs/Module/Layouts.php:193 ../../Zotlabs/Module/Photos.php:1070 +#: ../../Zotlabs/Module/Blocks.php:161 ../../Zotlabs/Module/Webpages.php:195 +#: ../../include/conversation.php:1219 +msgid "Share" +msgstr "Delen" + +#: ../../Zotlabs/Module/Layouts.php:194 msgid "Download PDL file" msgstr "Download PDL-bestand" -#: ../../Zotlabs/Module/Home.php:61 ../../Zotlabs/Module/Home.php:69 -#: ../../Zotlabs/Module/Siteinfo.php:65 -msgid "$Projectname" -msgstr "$Projectname" - -#: ../../Zotlabs/Module/Home.php:79 -#, php-format -msgid "Welcome to %s" -msgstr "Welkom op %s" - -#: ../../Zotlabs/Module/Id.php:13 -msgid "First Name" -msgstr "Voornaam" - -#: ../../Zotlabs/Module/Id.php:14 -msgid "Last Name" -msgstr "Achternaam" - -#: ../../Zotlabs/Module/Id.php:15 -msgid "Nickname" -msgstr "Bijnaam" - -#: ../../Zotlabs/Module/Id.php:16 -msgid "Full Name" -msgstr "Volledige naam" - -#: ../../Zotlabs/Module/Id.php:17 ../../Zotlabs/Module/Id.php:18 -#: ../../Zotlabs/Module/Admin.php:1035 ../../Zotlabs/Module/Admin.php:1047 -#: ../../include/network.php:2151 ../../boot.php:1705 -msgid "Email" -msgstr "E-mail" - -#: ../../Zotlabs/Module/Id.php:19 ../../Zotlabs/Module/Id.php:20 -#: ../../Zotlabs/Module/Id.php:21 ../../Zotlabs/Lib/Apps.php:236 -msgid "Profile Photo" -msgstr "Profielfoto" - -#: ../../Zotlabs/Module/Id.php:22 -msgid "Profile Photo 16px" -msgstr "Profielfoto 16px" - -#: ../../Zotlabs/Module/Id.php:23 -msgid "Profile Photo 32px" -msgstr "Profielfoto 32px" - -#: ../../Zotlabs/Module/Id.php:24 -msgid "Profile Photo 48px" -msgstr "Profielfoto 48px" - -#: ../../Zotlabs/Module/Id.php:25 -msgid "Profile Photo 64px" -msgstr "Profielfoto 64px" - -#: ../../Zotlabs/Module/Id.php:26 -msgid "Profile Photo 80px" -msgstr "Profielfoto 80px" - -#: ../../Zotlabs/Module/Id.php:27 -msgid "Profile Photo 128px" -msgstr "Profielfoto 128px" - -#: ../../Zotlabs/Module/Id.php:28 -msgid "Timezone" -msgstr "Tijdzone" - -#: ../../Zotlabs/Module/Id.php:29 ../../Zotlabs/Module/Profiles.php:731 -msgid "Homepage URL" -msgstr "URL homepagina" - -#: ../../Zotlabs/Module/Id.php:30 ../../Zotlabs/Lib/Apps.php:234 -msgid "Language" -msgstr "Taal" - -#: ../../Zotlabs/Module/Id.php:31 -msgid "Birth Year" -msgstr "Geboortejaar" - -#: ../../Zotlabs/Module/Id.php:32 -msgid "Birth Month" -msgstr "Geboortemaand" - -#: ../../Zotlabs/Module/Id.php:33 -msgid "Birth Day" -msgstr "Geboortedag" - -#: ../../Zotlabs/Module/Id.php:34 -msgid "Birthdate" -msgstr "Geboortedatum" - -#: ../../Zotlabs/Module/Id.php:35 ../../Zotlabs/Module/Profiles.php:454 -msgid "Gender" -msgstr "Geslacht" - -#: ../../Zotlabs/Module/Id.php:108 ../../include/selectors.php:49 -#: ../../include/selectors.php:66 -msgid "Male" -msgstr "Man" - -#: ../../Zotlabs/Module/Id.php:110 ../../include/selectors.php:49 -#: ../../include/selectors.php:66 -msgid "Female" -msgstr "Vrouw" - -#: ../../Zotlabs/Module/Impel.php:41 ../../include/bbcode.php:192 -msgid "webpage" -msgstr "Webpagina" - -#: ../../Zotlabs/Module/Impel.php:46 ../../include/bbcode.php:198 -msgid "block" -msgstr "blok" - -#: ../../Zotlabs/Module/Impel.php:51 ../../include/bbcode.php:195 -msgid "layout" -msgstr "lay-out" - -#: ../../Zotlabs/Module/Impel.php:58 ../../include/bbcode.php:201 -msgid "menu" -msgstr "menu" - -#: ../../Zotlabs/Module/Impel.php:196 -#, php-format -msgid "%s element installed" -msgstr "%s onderdeel geïnstalleerd" - -#: ../../Zotlabs/Module/Impel.php:199 -#, php-format -msgid "%s element installation failed" -msgstr "Installatie %s-element mislukt" - #: ../../Zotlabs/Module/Like.php:19 msgid "Like/Dislike" msgstr "Leuk/niet leuk" @@ -2033,1180 +2072,65 @@ msgstr "Kanaal niet beschikbaar." msgid "Previous action reversed." msgstr "Vorige actie omgedraaid" -#: ../../Zotlabs/Module/Like.php:371 ../../Zotlabs/Module/Subthread.php:87 -#: ../../Zotlabs/Module/Tagger.php:47 ../../include/text.php:1940 -#: ../../include/conversation.php:120 +#: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87 +#: ../../Zotlabs/Module/Tagger.php:47 ../../include/conversation.php:120 +#: ../../include/text.php:1921 msgid "photo" msgstr "foto" -#: ../../Zotlabs/Module/Like.php:371 ../../Zotlabs/Module/Subthread.php:87 -#: ../../include/text.php:1946 ../../include/conversation.php:148 +#: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87 +#: ../../include/conversation.php:148 ../../include/text.php:1927 msgid "status" msgstr "bericht" -#: ../../Zotlabs/Module/Like.php:420 ../../include/conversation.php:164 +#: ../../Zotlabs/Module/Like.php:419 ../../include/conversation.php:164 #, php-format msgid "%1$s likes %2$s's %3$s" msgstr "%1$s vindt %3$s van %2$s leuk" -#: ../../Zotlabs/Module/Like.php:422 ../../include/conversation.php:167 +#: ../../Zotlabs/Module/Like.php:421 ../../include/conversation.php:167 #, php-format msgid "%1$s doesn't like %2$s's %3$s" msgstr "%1$s vindt %3$s van %2$s niet leuk" -#: ../../Zotlabs/Module/Like.php:424 +#: ../../Zotlabs/Module/Like.php:423 #, php-format msgid "%1$s agrees with %2$s's %3$s" msgstr "%1$s is het eens met %2$s's %3$s" -#: ../../Zotlabs/Module/Like.php:426 +#: ../../Zotlabs/Module/Like.php:425 #, php-format msgid "%1$s doesn't agree with %2$s's %3$s" msgstr "%1$s is het niet eens met %2$s's %3$s" -#: ../../Zotlabs/Module/Like.php:428 +#: ../../Zotlabs/Module/Like.php:427 #, php-format msgid "%1$s abstains from a decision on %2$s's %3$s" msgstr "%1$s onthoudt zich van een besluit over %2$s's %3$s" -#: ../../Zotlabs/Module/Like.php:430 +#: ../../Zotlabs/Module/Like.php:429 #, php-format msgid "%1$s is attending %2$s's %3$s" msgstr "%1$s is aanwezig op %2$s's %3$s" -#: ../../Zotlabs/Module/Like.php:432 +#: ../../Zotlabs/Module/Like.php:431 #, php-format msgid "%1$s is not attending %2$s's %3$s" msgstr "%1$s is niet aanwezig op %2$s's %3$s" -#: ../../Zotlabs/Module/Like.php:434 +#: ../../Zotlabs/Module/Like.php:433 #, php-format msgid "%1$s may attend %2$s's %3$s" msgstr "%1$s is mogelijk aanwezig op %2$s's %3$s" -#: ../../Zotlabs/Module/Like.php:537 +#: ../../Zotlabs/Module/Like.php:536 msgid "Action completed." msgstr "Actie voltooid" -#: ../../Zotlabs/Module/Like.php:538 +#: ../../Zotlabs/Module/Like.php:537 msgid "Thank you." msgstr "Bedankt" -#: ../../Zotlabs/Module/Import_items.php:102 -msgid "Import completed" -msgstr "Importeren voltooid" - -#: ../../Zotlabs/Module/Import_items.php:117 -msgid "Import Items" -msgstr "Importeer items" - -#: ../../Zotlabs/Module/Import_items.php:118 -msgid "" -"Use this form to import existing posts and content from an export file." -msgstr "Gebruik dit formulier om bestaande berichten en andere inhoud vanuit een exportbestand te importeren." - -#: ../../Zotlabs/Module/Invite.php:29 -msgid "Total invitation limit exceeded." -msgstr "Limiet voor aantal uitnodigingen overschreden." - -#: ../../Zotlabs/Module/Invite.php:53 -#, php-format -msgid "%s : Not a valid email address." -msgstr "%s : Geen geldig e-mailadres." - -#: ../../Zotlabs/Module/Invite.php:63 -msgid "Please join us on $Projectname" -msgstr "Uitnodiging voor $Projectname" - -#: ../../Zotlabs/Module/Invite.php:74 -msgid "Invitation limit exceeded. Please contact your site administrator." -msgstr "Limiet voor aantal uitnodigingen overschreden. Neem contact op met je hub-beheerder." - -#: ../../Zotlabs/Module/Invite.php:79 -#, php-format -msgid "%s : Message delivery failed." -msgstr "%s: Aflevering bericht mislukt." - -#: ../../Zotlabs/Module/Invite.php:83 -#, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "%d bericht verzonden." -msgstr[1] "%d berichten verzonden." - -#: ../../Zotlabs/Module/Invite.php:102 -msgid "You have no more invitations available" -msgstr "Je hebt geen uitnodigingen meer beschikbaar" - -#: ../../Zotlabs/Module/Invite.php:133 -msgid "Send invitations" -msgstr "Uitnodigingen verzenden" - -#: ../../Zotlabs/Module/Invite.php:134 -msgid "Enter email addresses, one per line:" -msgstr "Voer e-mailadressen in, één per regel:" - -#: ../../Zotlabs/Module/Invite.php:135 ../../Zotlabs/Module/Mail.php:249 -msgid "Your message:" -msgstr "Jouw bericht:" - -#: ../../Zotlabs/Module/Invite.php:136 -msgid "Please join my community on $Projectname." -msgstr "Hierbij nodig ik je uit om mij, en andere vrienden en kennissen, op $Projectname te vergezellen. Lees meer over $Projectname op http://hubzilla.org" - -#: ../../Zotlabs/Module/Invite.php:138 -msgid "You will need to supply this invitation code:" -msgstr "Je moet deze uitnodigingscode opgeven:" - -#: ../../Zotlabs/Module/Invite.php:139 -msgid "" -"1. Register at any $Projectname location (they are all inter-connected)" -msgstr "1. Registreer je op een willekeurige $Projectname-hub (ze zijn allemaal onderling met elkaar verbonden):" - -#: ../../Zotlabs/Module/Invite.php:141 -msgid "2. Enter my $Projectname network address into the site searchbar." -msgstr "2. Nadat je bent ingelogd en een kanaal hebt aangemaakt kan je mijn $Projectname-kanaaladres in het zoekveld invullen:" - -#: ../../Zotlabs/Module/Invite.php:142 -msgid "or visit" -msgstr "of bezoek" - -#: ../../Zotlabs/Module/Invite.php:144 -msgid "3. Click [Connect]" -msgstr "3. Klik op [+ Verbinden]" - -#: ../../Zotlabs/Module/Lockview.php:61 -msgid "Remote privacy information not available." -msgstr "Privacy-informatie op afstand niet beschikbaar." - -#: ../../Zotlabs/Module/Lockview.php:82 -msgid "Visible to:" -msgstr "Zichtbaar voor:" - -#: ../../Zotlabs/Module/Locs.php:25 ../../Zotlabs/Module/Locs.php:54 -msgid "Location not found." -msgstr "Locatie niet gevonden." - -#: ../../Zotlabs/Module/Locs.php:62 -msgid "Location lookup failed." -msgstr "Opzoeken locatie mislukt" - -#: ../../Zotlabs/Module/Locs.php:66 -msgid "" -"Please select another location to become primary before removing the primary" -" location." -msgstr "Kies eerst een andere primaire locatie alvorens de huidige primaire locatie te verwijderen." - -#: ../../Zotlabs/Module/Locs.php:95 -msgid "Syncing locations" -msgstr "Locaties synchronizeren" - -#: ../../Zotlabs/Module/Locs.php:105 -msgid "No locations found." -msgstr "Geen locaties gevonden." - -#: ../../Zotlabs/Module/Locs.php:116 -msgid "Manage Channel Locations" -msgstr "Kanaallocaties beheren" - -#: ../../Zotlabs/Module/Locs.php:118 ../../Zotlabs/Module/Profiles.php:470 -#: ../../Zotlabs/Module/Admin.php:1224 -msgid "Address" -msgstr "Kanaaladres" - -#: ../../Zotlabs/Module/Locs.php:119 -msgid "Primary" -msgstr "Primair" - -#: ../../Zotlabs/Module/Locs.php:120 ../../Zotlabs/Module/Menu.php:113 -msgid "Drop" -msgstr "Verwijderen" - -#: ../../Zotlabs/Module/Locs.php:122 -msgid "Sync Now" -msgstr "Nu synchroniseren" - -#: ../../Zotlabs/Module/Locs.php:123 -msgid "Please wait several minutes between consecutive operations." -msgstr "Wacht enkele minuten tussen opeenvolgende handelingen." - -#: ../../Zotlabs/Module/Locs.php:124 -msgid "" -"When possible, drop a location by logging into that website/hub and removing" -" your channel." -msgstr "Wij adviseren, wanneer dit (nog) mogelijk is, de locatie te verwijderen door op de hub van de kloon in te loggen en het kanaal daar te verwijderen." - -#: ../../Zotlabs/Module/Locs.php:125 -msgid "Use this form to drop the location if the hub is no longer operating." -msgstr "Gebruik dit formulier om de locatie te verwijderen wanneer de hub van de kloon niet meer operationeel is." - -#: ../../Zotlabs/Module/Magic.php:71 -msgid "Hub not found." -msgstr "Hub niet gevonden." - -#: ../../Zotlabs/Module/Mail.php:38 -msgid "Unable to lookup recipient." -msgstr "Niet in staat om ontvanger op te zoeken." - -#: ../../Zotlabs/Module/Mail.php:45 -msgid "Unable to communicate with requested channel." -msgstr "Niet in staat om met het aangevraagde kanaal te communiceren." - -#: ../../Zotlabs/Module/Mail.php:52 -msgid "Cannot verify requested channel." -msgstr "Kan opgevraagd kanaal niet verifieren" - -#: ../../Zotlabs/Module/Mail.php:78 -msgid "Selected channel has private message restrictions. Send failed." -msgstr "Gekozen kanaal heeft restricties voor privéberichten. Verzenden mislukt." - -#: ../../Zotlabs/Module/Mail.php:143 -msgid "Messages" -msgstr "Berichten" - -#: ../../Zotlabs/Module/Mail.php:178 -msgid "Message recalled." -msgstr "Bericht ingetrokken." - -#: ../../Zotlabs/Module/Mail.php:191 -msgid "Conversation removed." -msgstr "Conversatie verwijderd" - -#: ../../Zotlabs/Module/Mail.php:206 ../../Zotlabs/Module/Mail.php:315 -msgid "Expires YYYY-MM-DD HH:MM" -msgstr "Verloopt op DD-MM-YYYY om HH:MM" - -#: ../../Zotlabs/Module/Mail.php:234 -msgid "Requested channel is not in this network" -msgstr "Opgevraagd kanaal is niet in dit netwerk beschikbaar" - -#: ../../Zotlabs/Module/Mail.php:242 -msgid "Send Private Message" -msgstr "Privébericht versturen" - -#: ../../Zotlabs/Module/Mail.php:243 ../../Zotlabs/Module/Mail.php:368 -msgid "To:" -msgstr "Aan:" - -#: ../../Zotlabs/Module/Mail.php:246 ../../Zotlabs/Module/Mail.php:370 -msgid "Subject:" -msgstr "Onderwerp:" - -#: ../../Zotlabs/Module/Mail.php:251 ../../Zotlabs/Module/Mail.php:376 -#: ../../include/conversation.php:1220 -msgid "Attach file" -msgstr "Bestand toevoegen" - -#: ../../Zotlabs/Module/Mail.php:253 -msgid "Send" -msgstr "Verzenden" - -#: ../../Zotlabs/Module/Mail.php:256 ../../Zotlabs/Module/Mail.php:381 -#: ../../include/conversation.php:1251 -msgid "Set expiration date" -msgstr "Verloopdatum instellen" - -#: ../../Zotlabs/Module/Mail.php:340 -msgid "Delete message" -msgstr "Bericht verwijderen" - -#: ../../Zotlabs/Module/Mail.php:341 -msgid "Delivery report" -msgstr "Afleveringsrapport" - -#: ../../Zotlabs/Module/Mail.php:342 -msgid "Recall message" -msgstr "Bericht intrekken" - -#: ../../Zotlabs/Module/Mail.php:344 -msgid "Message has been recalled." -msgstr "Bericht is ingetrokken." - -#: ../../Zotlabs/Module/Mail.php:361 -msgid "Delete Conversation" -msgstr "Verwijder conversatie" - -#: ../../Zotlabs/Module/Mail.php:363 -msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." -msgstr "Geen veilige communicatie beschikbaar. Mogelijk kan je reageren op de kanaalpagina van de afzender." - -#: ../../Zotlabs/Module/Mail.php:367 -msgid "Send Reply" -msgstr "Antwoord versturen" - -#: ../../Zotlabs/Module/Mail.php:372 -#, php-format -msgid "Your message for %s (%s):" -msgstr "Jouw privébericht aan %s (%s):" - -#: ../../Zotlabs/Module/Manage.php:136 -#: ../../Zotlabs/Module/New_channel.php:121 -#, php-format -msgid "You have created %1$.0f of %2$.0f allowed channels." -msgstr "Je hebt %1$.0f van totaal %2$.0f toegestane kanalen aangemaakt." - -#: ../../Zotlabs/Module/Manage.php:143 -msgid "Create a new channel" -msgstr "Nieuw kanaal aanmaken" - -#: ../../Zotlabs/Module/Manage.php:164 ../../Zotlabs/Lib/Apps.php:213 -#: ../../include/nav.php:206 -msgid "Channel Manager" -msgstr "Kanaalbeheer" - -#: ../../Zotlabs/Module/Manage.php:165 -msgid "Current Channel" -msgstr "Huidig kanaal" - -#: ../../Zotlabs/Module/Manage.php:167 -msgid "Switch to one of your channels by selecting it." -msgstr "Activeer een van jouw andere kanalen door er op te klikken." - -#: ../../Zotlabs/Module/Manage.php:168 -msgid "Default Channel" -msgstr "Standaardkanaal" - -#: ../../Zotlabs/Module/Manage.php:169 -msgid "Make Default" -msgstr "Als standaard instellen" - -#: ../../Zotlabs/Module/Manage.php:172 -#, php-format -msgid "%d new messages" -msgstr "%d nieuwe berichten" - -#: ../../Zotlabs/Module/Manage.php:173 -#, php-format -msgid "%d new introductions" -msgstr "%d nieuwe connectieverzoeken" - -#: ../../Zotlabs/Module/Manage.php:175 -msgid "Delegated Channel" -msgstr "Uitbesteed kanaal" - -#: ../../Zotlabs/Module/Lostpass.php:19 -msgid "No valid account found." -msgstr "Geen geldige account gevonden." - -#: ../../Zotlabs/Module/Lostpass.php:33 -msgid "Password reset request issued. Check your email." -msgstr "Het verzoek om je wachtwoord opnieuw in te stellen is behandeld. Controleer je e-mail." - -#: ../../Zotlabs/Module/Lostpass.php:39 ../../Zotlabs/Module/Lostpass.php:107 -#, php-format -msgid "Site Member (%s)" -msgstr "Lid van hub (%s)" - -#: ../../Zotlabs/Module/Lostpass.php:44 -#, php-format -msgid "Password reset requested at %s" -msgstr "Verzoek tot het opnieuw instellen van een wachtwoord op %s is ingediend" - -#: ../../Zotlabs/Module/Lostpass.php:67 -msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." -msgstr "Het verzoek kon niet worden geverifieerd. (Mogelijk heb je al eerder een verzoek ingediend.) Opnieuw instellen van wachtwoord is mislukt." - -#: ../../Zotlabs/Module/Lostpass.php:90 ../../boot.php:1711 -msgid "Password Reset" -msgstr "Wachtwoord vergeten?" - -#: ../../Zotlabs/Module/Lostpass.php:91 -msgid "Your password has been reset as requested." -msgstr "Jouw wachtwoord is opnieuw ingesteld zoals je had verzocht." - -#: ../../Zotlabs/Module/Lostpass.php:92 -msgid "Your new password is" -msgstr "Jouw nieuwe wachtwoord is" - -#: ../../Zotlabs/Module/Lostpass.php:93 -msgid "Save or copy your new password - and then" -msgstr "Kopieer of sla je nieuwe wachtwoord op - en" - -#: ../../Zotlabs/Module/Lostpass.php:94 -msgid "click here to login" -msgstr "klik dan hier om in te loggen" - -#: ../../Zotlabs/Module/Lostpass.php:95 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." -msgstr "Jouw wachtwoord kan worden veranderd onder instellingen, nadat je succesvol bent ingelogd." - -#: ../../Zotlabs/Module/Lostpass.php:112 -#, php-format -msgid "Your password has changed at %s" -msgstr "Jouw wachtwoord op %s is veranderd" - -#: ../../Zotlabs/Module/Lostpass.php:127 -msgid "Forgot your Password?" -msgstr "Wachtwoord vergeten?" - -#: ../../Zotlabs/Module/Lostpass.php:128 -msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." -msgstr "Voer je e-mailadres in en verstuur deze om je wachtwoord opnieuw in te stellen. Controleer hierna hier je e-mail voor verdere instructies." - -#: ../../Zotlabs/Module/Lostpass.php:129 -msgid "Email Address" -msgstr "E-mailadres" - -#: ../../Zotlabs/Module/Lostpass.php:130 -msgid "Reset" -msgstr "Opnieuw instellen" - -#: ../../Zotlabs/Module/Menu.php:49 -msgid "Unable to update menu." -msgstr "Niet in staat om menu aan te passen" - -#: ../../Zotlabs/Module/Menu.php:60 -msgid "Unable to create menu." -msgstr "Niet in staat om menu aan te maken." - -#: ../../Zotlabs/Module/Menu.php:98 ../../Zotlabs/Module/Menu.php:110 -msgid "Menu Name" -msgstr "Menunaam" - -#: ../../Zotlabs/Module/Menu.php:98 -msgid "Unique name (not visible on webpage) - required" -msgstr "Unieke naam vereist (niet zichtbaar op webpagina)" - -#: ../../Zotlabs/Module/Menu.php:99 ../../Zotlabs/Module/Menu.php:111 -msgid "Menu Title" -msgstr "Menutitel" - -#: ../../Zotlabs/Module/Menu.php:99 -msgid "Visible on webpage - leave empty for no title" -msgstr "Zichtbaar op webpagina (leeg laten voor geen titel)" - -#: ../../Zotlabs/Module/Menu.php:100 -msgid "Allow Bookmarks" -msgstr "Bladwijzers toestaan" - -#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 -msgid "Menu may be used to store saved bookmarks" -msgstr "Menu kan gebruikt worden om bladwijzers in op te slaan" - -#: ../../Zotlabs/Module/Menu.php:101 ../../Zotlabs/Module/Menu.php:159 -msgid "Submit and proceed" -msgstr "Opslaan en doorgaan" - -#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2266 -msgid "Menus" -msgstr "Menu's" - -#: ../../Zotlabs/Module/Menu.php:117 -msgid "Bookmarks allowed" -msgstr "Bladwijzers toegestaan" - -#: ../../Zotlabs/Module/Menu.php:119 -msgid "Delete this menu" -msgstr "Menu verwijderen" - -#: ../../Zotlabs/Module/Menu.php:120 ../../Zotlabs/Module/Menu.php:154 -msgid "Edit menu contents" -msgstr "Bewerk de inhoud van het menu" - -#: ../../Zotlabs/Module/Menu.php:121 -msgid "Edit this menu" -msgstr "Dit menu bewerken" - -#: ../../Zotlabs/Module/Menu.php:136 -msgid "Menu could not be deleted." -msgstr "Menu kon niet verwijderd worden." - -#: ../../Zotlabs/Module/Menu.php:144 ../../Zotlabs/Module/Mitem.php:28 -msgid "Menu not found." -msgstr "Menu niet gevonden." - -#: ../../Zotlabs/Module/Menu.php:149 -msgid "Edit Menu" -msgstr "Menu bewerken" - -#: ../../Zotlabs/Module/Menu.php:153 -msgid "Add or remove entries to this menu" -msgstr "Items aan dit menu toevoegen of verwijder" - -#: ../../Zotlabs/Module/Menu.php:155 -msgid "Menu name" -msgstr "Naam van menu" - -#: ../../Zotlabs/Module/Menu.php:155 -msgid "Must be unique, only seen by you" -msgstr "Moet uniek zijn en is alleen zichtbaar voor jou." - -#: ../../Zotlabs/Module/Menu.php:156 -msgid "Menu title" -msgstr "Titel van menu" - -#: ../../Zotlabs/Module/Menu.php:156 -msgid "Menu title as seen by others" -msgstr "Titel van menu zoals anderen dat zien." - -#: ../../Zotlabs/Module/Menu.php:157 -msgid "Allow bookmarks" -msgstr "Bladwijzers toestaan" - -#: ../../Zotlabs/Module/Menu.php:166 ../../Zotlabs/Module/Mitem.php:120 -#: ../../Zotlabs/Module/Xchan.php:41 -msgid "Not found." -msgstr "Niet gevonden." - -#: ../../Zotlabs/Module/Mood.php:67 ../../include/conversation.php:260 -#, php-format -msgctxt "mood" -msgid "%1$s is %2$s" -msgstr "%1$s is %2$s" - -#: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Lib/Apps.php:225 -msgid "Mood" -msgstr "Stemming" - -#: ../../Zotlabs/Module/Mood.php:136 -msgid "Set your current mood and tell your friends" -msgstr "Noteer je huidige stemming en toon het aan je connecties" - -#: ../../Zotlabs/Module/Match.php:26 -msgid "Profile Match" -msgstr "Profielovereenkomst" - -#: ../../Zotlabs/Module/Match.php:35 -msgid "No keywords to match. Please add keywords to your default profile." -msgstr "Je hebt geen trefwoorden waarmee overeenkomsten gevonden kunnen worden. Voeg enkele trefwoorden aan je standaardprofiel toe." - -#: ../../Zotlabs/Module/Match.php:67 -msgid "is interested in:" -msgstr "is geïnteresseerd in:" - -#: ../../Zotlabs/Module/Match.php:74 -msgid "No matches" -msgstr "Geen overeenkomsten" - -#: ../../Zotlabs/Module/Network.php:96 -msgid "No such group" -msgstr "Collectie niet gevonden" - -#: ../../Zotlabs/Module/Network.php:136 -msgid "No such channel" -msgstr "Niet zo'n kanaal" - -#: ../../Zotlabs/Module/Network.php:141 -msgid "forum" -msgstr "forum" - -#: ../../Zotlabs/Module/Network.php:153 -msgid "Search Results For:" -msgstr "Zoekresultaten voor:" - -#: ../../Zotlabs/Module/Network.php:217 -msgid "Privacy group is empty" -msgstr "Privacygroep is leeg" - -#: ../../Zotlabs/Module/Network.php:226 -msgid "Privacy group: " -msgstr "Privacygroep: " - -#: ../../Zotlabs/Module/Network.php:252 -msgid "Invalid connection." -msgstr "Ongeldige connectie." - -#: ../../Zotlabs/Module/Notify.php:57 -#: ../../Zotlabs/Module/Notifications.php:98 -msgid "No more system notifications." -msgstr "Geen systeemnotificaties meer." - -#: ../../Zotlabs/Module/Notify.php:61 -#: ../../Zotlabs/Module/Notifications.php:102 -msgid "System Notifications" -msgstr "Systeemnotificaties" - -#: ../../Zotlabs/Module/Mitem.php:52 -msgid "Unable to create element." -msgstr "Niet in staat om onderdeel aan te maken." - -#: ../../Zotlabs/Module/Mitem.php:76 -msgid "Unable to update menu element." -msgstr "Menu-onderdeel kan niet worden geüpdatet." - -#: ../../Zotlabs/Module/Mitem.php:92 -msgid "Unable to add menu element." -msgstr "Menu-onderdeel kan niet worden toegevoegd." - -#: ../../Zotlabs/Module/Mitem.php:153 ../../Zotlabs/Module/Mitem.php:226 -msgid "Menu Item Permissions" -msgstr "Permissies menu-item" - -#: ../../Zotlabs/Module/Mitem.php:154 ../../Zotlabs/Module/Mitem.php:227 -#: ../../Zotlabs/Module/Settings.php:1068 -msgid "(click to open/close)" -msgstr "(klik om te openen/sluiten)" - -#: ../../Zotlabs/Module/Mitem.php:156 ../../Zotlabs/Module/Mitem.php:172 -msgid "Link Name" -msgstr "Linknaam" - -#: ../../Zotlabs/Module/Mitem.php:157 ../../Zotlabs/Module/Mitem.php:231 -msgid "Link or Submenu Target" -msgstr "Linkdoel of submenu-doel" - -#: ../../Zotlabs/Module/Mitem.php:157 -msgid "Enter URL of the link or select a menu name to create a submenu" -msgstr "Geef de URL van de link of kies een menunaam om een submenu aan te maken" - -#: ../../Zotlabs/Module/Mitem.php:158 ../../Zotlabs/Module/Mitem.php:232 -msgid "Use magic-auth if available" -msgstr "Gebruik magic-auth wanneer beschikbaar" - -#: ../../Zotlabs/Module/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:233 -msgid "Open link in new window" -msgstr "Open link in nieuw venster" - -#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:234 -msgid "Order in list" -msgstr "Volgorde in lijst" - -#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:234 -msgid "Higher numbers will sink to bottom of listing" -msgstr "Hogere nummers komen onderaan de lijst terecht" - -#: ../../Zotlabs/Module/Mitem.php:161 -msgid "Submit and finish" -msgstr "Opslaan en afsluiten" - -#: ../../Zotlabs/Module/Mitem.php:162 -msgid "Submit and continue" -msgstr "Opslaan en doorgaan" - -#: ../../Zotlabs/Module/Mitem.php:170 -msgid "Menu:" -msgstr "Menu:" - -#: ../../Zotlabs/Module/Mitem.php:173 -msgid "Link Target" -msgstr "Linkdoel" - -#: ../../Zotlabs/Module/Mitem.php:176 -msgid "Edit menu" -msgstr "Menu bewerken" - -#: ../../Zotlabs/Module/Mitem.php:179 -msgid "Edit element" -msgstr "Onderdeel bewerken" - -#: ../../Zotlabs/Module/Mitem.php:180 -msgid "Drop element" -msgstr "Onderdeel verwijderen" - -#: ../../Zotlabs/Module/Mitem.php:181 -msgid "New element" -msgstr "Nieuw element" - -#: ../../Zotlabs/Module/Mitem.php:182 -msgid "Edit this menu container" -msgstr "Deze menu-container bewerken" - -#: ../../Zotlabs/Module/Mitem.php:183 -msgid "Add menu element" -msgstr "Menu-element toevoegen" - -#: ../../Zotlabs/Module/Mitem.php:184 -msgid "Delete this menu item" -msgstr "Dit menu-item verwijderen" - -#: ../../Zotlabs/Module/Mitem.php:185 -msgid "Edit this menu item" -msgstr "Dit menu-item bewerken" - -#: ../../Zotlabs/Module/Mitem.php:202 -msgid "Menu item not found." -msgstr "Menu-item niet gevonden." - -#: ../../Zotlabs/Module/Mitem.php:215 -msgid "Menu item deleted." -msgstr "Menu-item verwijderd." - -#: ../../Zotlabs/Module/Mitem.php:217 -msgid "Menu item could not be deleted." -msgstr "Menu-item kon niet worden verwijderd." - -#: ../../Zotlabs/Module/Mitem.php:224 -msgid "Edit Menu Element" -msgstr "Menu-element bewerken" - -#: ../../Zotlabs/Module/Mitem.php:230 -msgid "Link text" -msgstr "Linktekst" - -#: ../../Zotlabs/Module/New_channel.php:128 -#: ../../Zotlabs/Module/Register.php:231 -msgid "Name or caption" -msgstr "Naam" - -#: ../../Zotlabs/Module/New_channel.php:128 -#: ../../Zotlabs/Module/Register.php:231 -msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\"" -msgstr "Voorbeelden: \"Jan Pietersen\", \"Willems weblog\", \"Computerforum\"" - -#: ../../Zotlabs/Module/New_channel.php:130 -#: ../../Zotlabs/Module/Register.php:233 -msgid "Choose a short nickname" -msgstr "Korte bijnaam" - -#: ../../Zotlabs/Module/New_channel.php:130 -#: ../../Zotlabs/Module/Register.php:233 -#, php-format -msgid "" -"Your nickname will be used to create an easy to remember channel address " -"e.g. nickname%s" -msgstr "Deze bijnaam wordt gebruikt om een makkelijk te onthouden kanaaladres van jouw kanaal aan te maken, die je dan met anderen kunt delen. Bijvoorbeeld: bijnaam%s" - -#: ../../Zotlabs/Module/New_channel.php:132 -#: ../../Zotlabs/Module/Register.php:235 -msgid "Channel role and privacy" -msgstr "Kanaaltype en privacy" - -#: ../../Zotlabs/Module/New_channel.php:132 -#: ../../Zotlabs/Module/Register.php:235 -msgid "Select a channel role with your privacy requirements." -msgstr "Kies een kanaaltype met het door jou gewenste privacyniveau." - -#: ../../Zotlabs/Module/New_channel.php:132 -#: ../../Zotlabs/Module/Register.php:235 -msgid "Read more about roles" -msgstr "Lees meer over kanaaltypes" - -#: ../../Zotlabs/Module/New_channel.php:135 -msgid "Create Channel" -msgstr "Kanaal aanmaken" - -#: ../../Zotlabs/Module/New_channel.php:136 -msgid "" -"A channel is your identity on this network. It can represent a person, a " -"blog, or a forum to name a few. Channels can make connections with other " -"channels to share information with highly detailed permissions." -msgstr "Een kanaal is jouw identiteit in dit netwerk. Het kan bijvoorbeeld een persoon, een blog of een forum vertegenwoordigen. Door met elkaar te verbinden kunnen kanalen, met behulp van uitgebreide permissies, informatie uitwisselen." - -#: ../../Zotlabs/Module/New_channel.php:137 -msgid "" -"or import an existing channel from another location." -msgstr "Of importeer een bestaand kanaal vanaf een andere locatie" - -#: ../../Zotlabs/Module/Notifications.php:30 -msgid "Invalid request identifier." -msgstr "Ongeldige verzoek identificator (request identifier)" - -#: ../../Zotlabs/Module/Notifications.php:39 -msgid "Discard" -msgstr "Annuleren" - -#: ../../Zotlabs/Module/Notifications.php:103 ../../include/nav.php:191 -msgid "Mark all system notifications seen" -msgstr "Markeer alle systeemnotificaties als bekeken" - -#: ../../Zotlabs/Module/Photos.php:84 -msgid "Page owner information could not be retrieved." -msgstr "Informatie over de pagina-eigenaar werd niet ontvangen." - -#: ../../Zotlabs/Module/Photos.php:99 ../../Zotlabs/Module/Photos.php:743 -#: ../../Zotlabs/Module/Profile_photo.php:114 -#: ../../Zotlabs/Module/Profile_photo.php:206 -#: ../../Zotlabs/Module/Profile_photo.php:294 -#: ../../include/photo/photo_driver.php:718 -msgid "Profile Photos" -msgstr "Profielfoto's" - -#: ../../Zotlabs/Module/Photos.php:105 ../../Zotlabs/Module/Photos.php:149 -msgid "Album not found." -msgstr "Album niet gevonden." - -#: ../../Zotlabs/Module/Photos.php:132 -msgid "Delete Album" -msgstr "Verwijder album" - -#: ../../Zotlabs/Module/Photos.php:153 -msgid "" -"Multiple storage folders exist with this album name, but within different " -"directories. Please remove the desired folder or folders using the Files " -"manager" -msgstr "Er bestaan meerdere submappen met deze albumnaam, maar verspreidt over verschillende mappen. Verwijder de gewenste map(pen) met de bestandsbeheerder." - -#: ../../Zotlabs/Module/Photos.php:210 ../../Zotlabs/Module/Photos.php:1053 -msgid "Delete Photo" -msgstr "Verwijder foto" - -#: ../../Zotlabs/Module/Photos.php:533 -msgid "No photos selected" -msgstr "Geen foto's geselecteerd" - -#: ../../Zotlabs/Module/Photos.php:582 -msgid "Access to this item is restricted." -msgstr "Toegang tot dit item is beperkt." - -#: ../../Zotlabs/Module/Photos.php:621 -#, php-format -msgid "%1$.2f MB of %2$.2f MB photo storage used." -msgstr "%1$.2f MB van %2$.2f MB aan foto-opslag gebruikt." - -#: ../../Zotlabs/Module/Photos.php:624 -#, php-format -msgid "%1$.2f MB photo storage used." -msgstr "%1$.2f MB aan foto-opslag gebruikt." - -#: ../../Zotlabs/Module/Photos.php:660 -msgid "Upload Photos" -msgstr "Foto's uploaden" - -#: ../../Zotlabs/Module/Photos.php:664 -msgid "Enter an album name" -msgstr "Vul een albumnaam in" - -#: ../../Zotlabs/Module/Photos.php:665 -msgid "or select an existing album (doubleclick)" -msgstr "of kies een bestaand album (dubbelklikken)" - -#: ../../Zotlabs/Module/Photos.php:666 -msgid "Create a status post for this upload" -msgstr "Plaats een bericht voor deze upload." - -#: ../../Zotlabs/Module/Photos.php:667 -msgid "Caption (optional):" -msgstr "Bijschrift (optioneel):" - -#: ../../Zotlabs/Module/Photos.php:668 -msgid "Description (optional):" -msgstr "Omschrijving (optioneel):" - -#: ../../Zotlabs/Module/Photos.php:695 -msgid "Album name could not be decoded" -msgstr "Albumnaam kon niet gedecodeerd worden" - -#: ../../Zotlabs/Module/Photos.php:743 -msgid "Contact Photos" -msgstr "Connectiefoto's" - -#: ../../Zotlabs/Module/Photos.php:766 -msgid "Show Newest First" -msgstr "Nieuwste eerst weergeven" - -#: ../../Zotlabs/Module/Photos.php:768 -msgid "Show Oldest First" -msgstr "Oudste eerst weergeven" - -#: ../../Zotlabs/Module/Photos.php:792 ../../Zotlabs/Module/Photos.php:1331 -#: ../../include/widgets.php:1499 -msgid "View Photo" -msgstr "Foto weergeven" - -#: ../../Zotlabs/Module/Photos.php:823 ../../include/widgets.php:1516 -msgid "Edit Album" -msgstr "Album bewerken" - -#: ../../Zotlabs/Module/Photos.php:870 -msgid "Permission denied. Access to this item may be restricted." -msgstr "Toegang geweigerd. Toegang tot dit item kan zijn beperkt." - -#: ../../Zotlabs/Module/Photos.php:872 -msgid "Photo not available" -msgstr "Foto niet aanwezig" - -#: ../../Zotlabs/Module/Photos.php:930 -msgid "Use as profile photo" -msgstr "Als profielfoto gebruiken" - -#: ../../Zotlabs/Module/Photos.php:931 -msgid "Use as cover photo" -msgstr "Als omslagfoto gebruiken" - -#: ../../Zotlabs/Module/Photos.php:938 -msgid "Private Photo" -msgstr "Privéfoto" - -#: ../../Zotlabs/Module/Photos.php:953 -msgid "View Full Size" -msgstr "Volledige grootte weergeven" - -#: ../../Zotlabs/Module/Photos.php:998 ../../Zotlabs/Module/Admin.php:1437 -#: ../../Zotlabs/Module/Tagrm.php:137 -msgid "Remove" -msgstr "Verwijderen" - -#: ../../Zotlabs/Module/Photos.php:1032 -msgid "Edit photo" -msgstr "Foto bewerken" - -#: ../../Zotlabs/Module/Photos.php:1034 -msgid "Rotate CW (right)" -msgstr "Draai met de klok mee (naar rechts)" - -#: ../../Zotlabs/Module/Photos.php:1035 -msgid "Rotate CCW (left)" -msgstr "Draai tegen de klok in (naar links)" - -#: ../../Zotlabs/Module/Photos.php:1038 -msgid "Enter a new album name" -msgstr "Vul een nieuwe albumnaam in" - -#: ../../Zotlabs/Module/Photos.php:1039 -msgid "or select an existing one (doubleclick)" -msgstr "of kies een bestaand album (dubbelklikken)" - -#: ../../Zotlabs/Module/Photos.php:1042 -msgid "Caption" -msgstr "Bijschrift" - -#: ../../Zotlabs/Module/Photos.php:1044 -msgid "Add a Tag" -msgstr "Tag toevoegen" - -#: ../../Zotlabs/Module/Photos.php:1048 -msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" -msgstr "Voorbeeld: @bob, @Barbara_Jansen, @jan@voorbeeld.nl" - -#: ../../Zotlabs/Module/Photos.php:1051 -msgid "Flag as adult in album view" -msgstr "Markeer als voor volwassenen in albumweergave" - -#: ../../Zotlabs/Module/Photos.php:1070 ../../Zotlabs/Lib/ThreadItem.php:261 -msgid "I like this (toggle)" -msgstr "Vind ik leuk" - -#: ../../Zotlabs/Module/Photos.php:1071 ../../Zotlabs/Lib/ThreadItem.php:262 -msgid "I don't like this (toggle)" -msgstr "Vind ik niet leuk" - -#: ../../Zotlabs/Module/Photos.php:1073 ../../Zotlabs/Lib/ThreadItem.php:397 -#: ../../include/conversation.php:740 -msgid "Please wait" -msgstr "Even wachten" - -#: ../../Zotlabs/Module/Photos.php:1089 ../../Zotlabs/Module/Photos.php:1207 -#: ../../Zotlabs/Lib/ThreadItem.php:707 -msgid "This is you" -msgstr "Dit ben jij" - -#: ../../Zotlabs/Module/Photos.php:1091 ../../Zotlabs/Module/Photos.php:1209 -#: ../../Zotlabs/Lib/ThreadItem.php:709 ../../include/js_strings.php:6 -msgid "Comment" -msgstr "Reactie" - -#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:574 -msgctxt "title" -msgid "Likes" -msgstr "vinden dit leuk" - -#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:574 -msgctxt "title" -msgid "Dislikes" -msgstr "vinden dit niet leuk" - -#: ../../Zotlabs/Module/Photos.php:1108 ../../include/conversation.php:575 -msgctxt "title" -msgid "Agree" -msgstr "eens" - -#: ../../Zotlabs/Module/Photos.php:1108 ../../include/conversation.php:575 -msgctxt "title" -msgid "Disagree" -msgstr "oneens" - -#: ../../Zotlabs/Module/Photos.php:1108 ../../include/conversation.php:575 -msgctxt "title" -msgid "Abstain" -msgstr "onthoudingen" - -#: ../../Zotlabs/Module/Photos.php:1109 ../../include/conversation.php:576 -msgctxt "title" -msgid "Attending" -msgstr "aanwezig" - -#: ../../Zotlabs/Module/Photos.php:1109 ../../include/conversation.php:576 -msgctxt "title" -msgid "Not attending" -msgstr "niet aanwezig" - -#: ../../Zotlabs/Module/Photos.php:1109 ../../include/conversation.php:576 -msgctxt "title" -msgid "Might attend" -msgstr "mogelijk aanwezig" - -#: ../../Zotlabs/Module/Photos.php:1126 ../../Zotlabs/Module/Photos.php:1138 -#: ../../Zotlabs/Lib/ThreadItem.php:181 ../../Zotlabs/Lib/ThreadItem.php:193 -#: ../../include/conversation.php:1717 -msgid "View all" -msgstr "Toon alles" - -#: ../../Zotlabs/Module/Photos.php:1130 ../../Zotlabs/Lib/ThreadItem.php:185 -#: ../../include/taxonomy.php:403 ../../include/conversation.php:1741 -#: ../../include/channel.php:1158 -msgctxt "noun" -msgid "Like" -msgid_plural "Likes" -msgstr[0] "vindt dit leuk" -msgstr[1] "vinden dit leuk" - -#: ../../Zotlabs/Module/Photos.php:1135 ../../Zotlabs/Lib/ThreadItem.php:190 -#: ../../include/conversation.php:1744 -msgctxt "noun" -msgid "Dislike" -msgid_plural "Dislikes" -msgstr[0] "vindt dit niet leuk" -msgstr[1] "vinden dit niet leuk" - -#: ../../Zotlabs/Module/Photos.php:1235 -msgid "Photo Tools" -msgstr "Hulpmiddelen" - -#: ../../Zotlabs/Module/Photos.php:1244 -msgid "In This Photo:" -msgstr "Op deze foto:" - -#: ../../Zotlabs/Module/Photos.php:1249 -msgid "Map" -msgstr "Kaart" - -#: ../../Zotlabs/Module/Photos.php:1257 ../../Zotlabs/Lib/ThreadItem.php:386 -msgctxt "noun" -msgid "Likes" -msgstr "vinden dit leuk" - -#: ../../Zotlabs/Module/Photos.php:1258 ../../Zotlabs/Lib/ThreadItem.php:387 -msgctxt "noun" -msgid "Dislikes" -msgstr "vinden dit niet leuk" - -#: ../../Zotlabs/Module/Photos.php:1263 ../../Zotlabs/Lib/ThreadItem.php:392 -#: ../../include/acl_selectors.php:285 -msgid "Close" -msgstr "Sluiten" - -#: ../../Zotlabs/Module/Photos.php:1337 -msgid "View Album" -msgstr "Album weergeven" - -#: ../../Zotlabs/Module/Photos.php:1348 ../../Zotlabs/Module/Photos.php:1361 -#: ../../Zotlabs/Module/Photos.php:1362 -msgid "Recent Photos" -msgstr "Recente foto's" - -#: ../../Zotlabs/Module/Ping.php:265 -msgid "sent you a private message" -msgstr "stuurde jou een privébericht" - -#: ../../Zotlabs/Module/Ping.php:313 -msgid "added your channel" -msgstr "voegde jouw kanaal toe" - -#: ../../Zotlabs/Module/Ping.php:323 -msgid "g A l F d" -msgstr "G:i, l d F" - -#: ../../Zotlabs/Module/Ping.php:346 -msgid "[today]" -msgstr "[vandaag]" - -#: ../../Zotlabs/Module/Ping.php:355 -msgid "posted an event" -msgstr "plaatste een gebeurtenis" - -#: ../../Zotlabs/Module/Oexchange.php:27 -msgid "Unable to find your hub." -msgstr "Niet in staat om je hub te vinden" - -#: ../../Zotlabs/Module/Oexchange.php:41 -msgid "Post successful." -msgstr "Verzenden bericht geslaagd." - -#: ../../Zotlabs/Module/Openid.php:30 -msgid "OpenID protocol error. No ID returned." -msgstr "OpenID-protocolfout. Geen ID terugontvangen." - -#: ../../Zotlabs/Module/Openid.php:193 ../../include/auth.php:226 -msgid "Login failed." -msgstr "Inloggen mislukt." - -#: ../../Zotlabs/Module/Page.php:133 -msgid "" -"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod " -"tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam," -" quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo " -"consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse " -"cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat " -"non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." -msgstr "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." - -#: ../../Zotlabs/Module/Pconfig.php:26 ../../Zotlabs/Module/Pconfig.php:59 -msgid "This setting requires special processing and editing has been blocked." -msgstr "Deze instelling vereist een speciaal proces en bewerken is geblokkeerd." - -#: ../../Zotlabs/Module/Pconfig.php:48 -msgid "Configuration Editor" -msgstr "Configuratiebewerker" - -#: ../../Zotlabs/Module/Pconfig.php:49 -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 "Waarschuwing: het veranderen van sommige instellingen kunnen jouw kanaal onklaar maken. Verlaat deze pagina, tenzij je weet waar je mee bezig bent en voldoende kennis bezit over hoe je deze functies moet gebruiken. " - -#: ../../Zotlabs/Module/Pdledit.php:18 -msgid "Layout updated." -msgstr "Lay-out bijgewerkt." - -#: ../../Zotlabs/Module/Pdledit.php:34 ../../Zotlabs/Module/Pdledit.php:61 -msgid "Edit System Page Description" -msgstr "Systeempagina's bewerken" - -#: ../../Zotlabs/Module/Pdledit.php:56 -msgid "Layout not found." -msgstr "Lay-out niet gevonden." - -#: ../../Zotlabs/Module/Pdledit.php:62 -msgid "Module Name:" -msgstr "Modulenaam:" - -#: ../../Zotlabs/Module/Pdledit.php:63 -msgid "Layout Help" -msgstr "Lay-out-hulp" - -#: ../../Zotlabs/Module/Poke.php:168 ../../Zotlabs/Lib/Apps.php:226 -#: ../../include/conversation.php:960 -msgid "Poke" -msgstr "Aanstoten" - -#: ../../Zotlabs/Module/Poke.php:169 -msgid "Poke somebody" -msgstr "Iemand aanstoten" - -#: ../../Zotlabs/Module/Poke.php:172 -msgid "Poke/Prod" -msgstr "Aanstoten/porren" - -#: ../../Zotlabs/Module/Poke.php:173 -msgid "Poke, prod or do other things to somebody" -msgstr "Iemand bijvoorbeeld aanstoten of poren" - -#: ../../Zotlabs/Module/Poke.php:180 -msgid "Recipient" -msgstr "Ontvanger" - -#: ../../Zotlabs/Module/Poke.php:181 -msgid "Choose what you wish to do to recipient" -msgstr "Kies wat je met de ontvanger wil doen" - -#: ../../Zotlabs/Module/Poke.php:184 ../../Zotlabs/Module/Poke.php:185 -msgid "Make this post private" -msgstr "Maak dit bericht privé" - -#: ../../Zotlabs/Module/Probe.php:30 ../../Zotlabs/Module/Probe.php:34 -#, php-format -msgid "Fetching URL returns error: %1$s" -msgstr "Ophalen URL gaf een foutmelding terug: %1$s" - #: ../../Zotlabs/Module/Profiles.php:24 ../../Zotlabs/Module/Profiles.php:189 #: ../../Zotlabs/Module/Profiles.php:246 ../../Zotlabs/Module/Profiles.php:625 msgid "Profile not found." @@ -3276,6 +2200,11 @@ msgstr "Homepage" msgid "Interests" msgstr "Interesses" +#: ../../Zotlabs/Module/Profiles.php:470 ../../Zotlabs/Module/Locs.php:118 +#: ../../Zotlabs/Module/Admin.php:1224 +msgid "Address" +msgstr "Kanaaladres" + #: ../../Zotlabs/Module/Profiles.php:560 msgid "Profile updated." msgstr "Profiel bijgewerkt" @@ -3293,7 +2222,7 @@ msgid "View this profile" msgstr "Profiel weergeven" #: ../../Zotlabs/Module/Profiles.php:689 ../../Zotlabs/Module/Profiles.php:771 -#: ../../include/channel.php:959 +#: ../../include/channel.php:998 msgid "Edit visibility" msgstr "Zichtbaarheid bewerken" @@ -3305,7 +2234,7 @@ msgstr "Hulpmiddelen" msgid "Change cover photo" msgstr "Omslagfoto wijzigen" -#: ../../Zotlabs/Module/Profiles.php:692 ../../include/channel.php:930 +#: ../../Zotlabs/Module/Profiles.php:692 ../../include/channel.php:969 msgid "Change profile photo" msgstr "Profielfoto veranderen" @@ -3325,8 +2254,8 @@ msgstr "Dit profiel verwijderen" msgid "Add profile things" msgstr "Dingen aan je profiel toevoegen" -#: ../../Zotlabs/Module/Profiles.php:697 ../../include/widgets.php:105 -#: ../../include/conversation.php:1526 +#: ../../Zotlabs/Module/Profiles.php:697 ../../include/conversation.php:1541 +#: ../../include/widgets.php:105 msgid "Personal" msgstr "Persoonlijk" @@ -3466,119 +2395,1097 @@ msgstr "Contactinformatie en sociale netwerken" msgid "My other channels" msgstr "Mijn andere kanalen" -#: ../../Zotlabs/Module/Profiles.php:767 ../../include/channel.php:955 +#: ../../Zotlabs/Module/Profiles.php:767 ../../include/channel.php:994 msgid "Profile Image" msgstr "Profielfoto" #: ../../Zotlabs/Module/Profiles.php:777 ../../include/nav.php:88 -#: ../../include/channel.php:937 +#: ../../include/channel.php:976 msgid "Edit Profiles" msgstr "Bewerk profielen" -#: ../../Zotlabs/Module/Profile_photo.php:179 -msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." -msgstr "Vernieuw de pagina met shift+R of shift+F5, of leeg je browserbuffer, wanneer de nieuwe foto niet meteen wordt weergegeven." - -#: ../../Zotlabs/Module/Profile_photo.php:367 -msgid "Upload Profile Photo" -msgstr "Profielfoto uploaden" - -#: ../../Zotlabs/Module/Profperm.php:34 ../../Zotlabs/Module/Profperm.php:63 -msgid "Invalid profile identifier." -msgstr "Ongeldige profiel-identificator" - -#: ../../Zotlabs/Module/Profperm.php:115 -msgid "Profile Visibility Editor" -msgstr "Zichtbaarheid profiel " - -#: ../../Zotlabs/Module/Profperm.php:117 ../../include/channel.php:1249 -msgid "Profile" -msgstr "Profiel" - -#: ../../Zotlabs/Module/Profperm.php:119 -msgid "Click on a contact to add or remove." -msgstr "Klik op een connectie om deze toe te voegen of te verwijderen" - -#: ../../Zotlabs/Module/Profperm.php:128 -msgid "Visible To" -msgstr "Zichtbaar voor" - -#: ../../Zotlabs/Module/Pubsites.php:22 ../../include/widgets.php:1270 -msgid "Public Hubs" -msgstr "Openbare hubs" - -#: ../../Zotlabs/Module/Pubsites.php:25 -msgid "" -"The listed hubs allow public registration for the $Projectname network. All " -"hubs in the network are interlinked so membership on any of them conveys " -"membership in the network as a whole. Some hubs may require subscription or " -"provide tiered service plans. The hub itself may provide " -"additional details." -msgstr "Op de hier weergegeven hubs kan iedereen zich voor het $Projectname-netwerk aanmelden. Alle hubs in het netwerk zijn met elkaar verbonden, dus maakt het qua lidmaatschap niet uit waar je je aanmeldt. Op sommige hubs heb je eerst goedkeuring nodig en sommige hubs vereisen een financiële tegemoetkoming voor bepaalde uitbreidingen. Mogelijk wordt hierover op de hub zelf meer informatie gegeven." - -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Hub URL" -msgstr "Hub-URL" - -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Access Type" -msgstr "Toegangs-
 type" - -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Registration Policy" -msgstr "Registratie-
 beleid" - -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Stats" -msgstr "Stats" - -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Software" -msgstr "Software" - -#: ../../Zotlabs/Module/Pubsites.php:31 ../../Zotlabs/Module/Ratings.php:103 -#: ../../include/conversation.php:959 -msgid "Ratings" -msgstr "Beoordelingen" - -#: ../../Zotlabs/Module/Pubsites.php:38 -msgid "Rate" -msgstr "Beoordeel" - -#: ../../Zotlabs/Module/Rate.php:160 -msgid "Website:" -msgstr "Website:" - -#: ../../Zotlabs/Module/Rate.php:163 +#: ../../Zotlabs/Module/Import.php:33 #, php-format -msgid "Remote Channel [%s] (not yet known on this site)" -msgstr "Kanaal op afstand [%s] (nog niet op deze hub bekend)" +msgid "Your service plan only allows %d channels." +msgstr "Jouw abonnement staat maar %d kanalen toe." -#: ../../Zotlabs/Module/Rate.php:164 -msgid "Rating (this information is public)" -msgstr "Beoordeling (deze informatie is openbaar)" +#: ../../Zotlabs/Module/Import.php:71 ../../Zotlabs/Module/Import_items.php:42 +msgid "Nothing to import." +msgstr "Niets gevonden om te importeren" -#: ../../Zotlabs/Module/Rate.php:165 -msgid "Optionally explain your rating (this information is public)" -msgstr "Verklaar jouw beoordeling (niet verplicht, deze informatie is openbaar)" +#: ../../Zotlabs/Module/Import.php:95 ../../Zotlabs/Module/Import_items.php:66 +msgid "Unable to download data from old server" +msgstr "Niet in staat om gegevens van de oude hub te downloaden" -#: ../../Zotlabs/Module/Ratings.php:73 -msgid "No ratings" -msgstr "Geen beoordelingen" +#: ../../Zotlabs/Module/Import.php:101 +#: ../../Zotlabs/Module/Import_items.php:72 +msgid "Imported file is empty." +msgstr "Geïmporteerde bestand is leeg" -#: ../../Zotlabs/Module/Ratings.php:104 -msgid "Rating: " -msgstr "Beoordeling: " +#: ../../Zotlabs/Module/Import.php:123 +#: ../../Zotlabs/Module/Import_items.php:88 +#, php-format +msgid "Warning: Database versions differ by %1$d updates." +msgstr "Waarschuwing: database-versies lopen %1$d updates achter." -#: ../../Zotlabs/Module/Ratings.php:105 -msgid "Website: " -msgstr "Website: " +#: ../../Zotlabs/Module/Import.php:153 ../../include/import.php:107 +msgid "Cloned channel not found. Import failed." +msgstr "Gekloond kanaal niet gevonden. Importeren mislukt." -#: ../../Zotlabs/Module/Ratings.php:107 -msgid "Description: " -msgstr "Omschrijving: " +#: ../../Zotlabs/Module/Import.php:163 +msgid "No channel. Import failed." +msgstr "Geen kanaal. Importeren mislukt." + +#: ../../Zotlabs/Module/Import.php:520 +#: ../../include/Import/import_diaspora.php:142 +msgid "Import completed." +msgstr "Import voltooid." + +#: ../../Zotlabs/Module/Import.php:542 +msgid "You must be logged in to use this feature." +msgstr "Je moet ingelogd zijn om dit onderdeel te kunnen gebruiken." + +#: ../../Zotlabs/Module/Import.php:547 +msgid "Import Channel" +msgstr "Kanaal importeren" + +#: ../../Zotlabs/Module/Import.php:548 +msgid "" +"Use this form to import an existing channel from a different server/hub. You" +" may retrieve the channel identity from the old server/hub via the network " +"or provide an export file." +msgstr "Gebruik dit formulier om een bestaand kanaal te importeren van een andere hub. Je kan de kanaal-identiteit van de oude hub via het netwerk ontvangen of een exportbestand verstrekken." + +#: ../../Zotlabs/Module/Import.php:549 +#: ../../Zotlabs/Module/Import_items.php:121 +msgid "File to Upload" +msgstr "Bestand om te uploaden" + +#: ../../Zotlabs/Module/Import.php:550 +msgid "Or provide the old server/hub details" +msgstr "Of vul de gegevens van de oude hub in" + +#: ../../Zotlabs/Module/Import.php:551 +msgid "Your old identity address (xyz@example.com)" +msgstr "Jouw oude kanaaladres (xyz@example.com)" + +#: ../../Zotlabs/Module/Import.php:552 +msgid "Your old login email address" +msgstr "Het e-mailadres van je oude account" + +#: ../../Zotlabs/Module/Import.php:553 +msgid "Your old login password" +msgstr "Wachtwoord van jouw oude account" + +#: ../../Zotlabs/Module/Import.php:554 +msgid "" +"For either option, please choose whether to make this hub your new primary " +"address, or whether your old location should continue this role. You will be" +" able to post from either location, but only one can be marked as the " +"primary location for files, photos, and media." +msgstr "Voor elke optie geldt dat je moet kiezen of je jouw primaire kanaaladres op deze hub wil instellen of dat jouw oude hub deze rol blijft vervullen." + +#: ../../Zotlabs/Module/Import.php:555 +msgid "Make this hub my primary location" +msgstr "Stel deze hub als mijn primaire locatie in" + +#: ../../Zotlabs/Module/Import.php:556 +msgid "" +"Import existing posts if possible (experimental - limited by available " +"memory" +msgstr "Importeer bestaande berichten wanneer mogelijk (experimenteel - afhankelijk van beschikbaar servergeheugen)" + +#: ../../Zotlabs/Module/Import.php:557 +msgid "" +"This process may take several minutes to complete. Please submit the form " +"only once and leave this page open until finished." +msgstr "Dit proces kan enkele minuten in beslag nemen. Klik maar één keer op opslaan en verlaat deze pagina niet alvorens het proces is voltooid." + +#: ../../Zotlabs/Module/Home.php:74 ../../Zotlabs/Module/Home.php:82 +#: ../../Zotlabs/Module/Siteinfo.php:48 +msgid "$Projectname" +msgstr "$Projectname" + +#: ../../Zotlabs/Module/Home.php:92 +#, php-format +msgid "Welcome to %s" +msgstr "Welkom op %s" + +#: ../../Zotlabs/Module/Item.php:179 +msgid "Unable to locate original post." +msgstr "Niet in staat om de originele locatie van het bericht te vinden. " + +#: ../../Zotlabs/Module/Item.php:432 +msgid "Empty post discarded." +msgstr "Leeg bericht geannuleerd" + +#: ../../Zotlabs/Module/Item.php:472 +msgid "Executable content type not permitted to this channel." +msgstr "Uitvoerbare bestanden zijn niet toegestaan op dit kanaal." + +#: ../../Zotlabs/Module/Item.php:856 +msgid "Duplicate post suppressed." +msgstr "Dubbel bericht tegengehouden." + +#: ../../Zotlabs/Module/Item.php:989 +msgid "System error. Post not saved." +msgstr "Systeemfout. Bericht niet opgeslagen." + +#: ../../Zotlabs/Module/Item.php:1242 +msgid "Unable to obtain post information from database." +msgstr "Niet in staat om informatie over dit bericht uit de database te verkrijgen." + +#: ../../Zotlabs/Module/Item.php:1249 +#, php-format +msgid "You have reached your limit of %1$.0f top level posts." +msgstr "Je hebt jouw limiet van %1$.0f berichten bereikt." + +#: ../../Zotlabs/Module/Item.php:1256 +#, php-format +msgid "You have reached your limit of %1$.0f webpages." +msgstr "Je hebt jouw limiet van %1$.0f webpagina's bereikt." + +#: ../../Zotlabs/Module/Photos.php:82 +msgid "Page owner information could not be retrieved." +msgstr "Informatie over de pagina-eigenaar werd niet ontvangen." + +#: ../../Zotlabs/Module/Photos.php:97 ../../Zotlabs/Module/Photos.php:741 +#: ../../Zotlabs/Module/Profile_photo.php:115 +#: ../../Zotlabs/Module/Profile_photo.php:212 +#: ../../Zotlabs/Module/Profile_photo.php:311 +#: ../../include/photo/photo_driver.php:718 +msgid "Profile Photos" +msgstr "Profielfoto's" + +#: ../../Zotlabs/Module/Photos.php:103 ../../Zotlabs/Module/Photos.php:147 +msgid "Album not found." +msgstr "Album niet gevonden." + +#: ../../Zotlabs/Module/Photos.php:130 +msgid "Delete Album" +msgstr "Verwijder album" + +#: ../../Zotlabs/Module/Photos.php:151 +msgid "" +"Multiple storage folders exist with this album name, but within different " +"directories. Please remove the desired folder or folders using the Files " +"manager" +msgstr "Er bestaan meerdere submappen met deze albumnaam, maar verspreidt over verschillende mappen. Verwijder de gewenste map(pen) met de bestandsbeheerder." + +#: ../../Zotlabs/Module/Photos.php:208 ../../Zotlabs/Module/Photos.php:1051 +msgid "Delete Photo" +msgstr "Verwijder foto" + +#: ../../Zotlabs/Module/Photos.php:531 +msgid "No photos selected" +msgstr "Geen foto's geselecteerd" + +#: ../../Zotlabs/Module/Photos.php:580 +msgid "Access to this item is restricted." +msgstr "Toegang tot dit item is beperkt." + +#: ../../Zotlabs/Module/Photos.php:619 +#, php-format +msgid "%1$.2f MB of %2$.2f MB photo storage used." +msgstr "%1$.2f MB van %2$.2f MB aan foto-opslag gebruikt." + +#: ../../Zotlabs/Module/Photos.php:622 +#, php-format +msgid "%1$.2f MB photo storage used." +msgstr "%1$.2f MB aan foto-opslag gebruikt." + +#: ../../Zotlabs/Module/Photos.php:658 +msgid "Upload Photos" +msgstr "Foto's uploaden" + +#: ../../Zotlabs/Module/Photos.php:662 +msgid "Enter an album name" +msgstr "Vul een albumnaam in" + +#: ../../Zotlabs/Module/Photos.php:663 +msgid "or select an existing album (doubleclick)" +msgstr "of kies een bestaand album (dubbelklikken)" + +#: ../../Zotlabs/Module/Photos.php:664 +msgid "Create a status post for this upload" +msgstr "Plaats een bericht voor deze upload." + +#: ../../Zotlabs/Module/Photos.php:665 +msgid "Caption (optional):" +msgstr "Bijschrift (optioneel):" + +#: ../../Zotlabs/Module/Photos.php:666 +msgid "Description (optional):" +msgstr "Omschrijving (optioneel):" + +#: ../../Zotlabs/Module/Photos.php:693 +msgid "Album name could not be decoded" +msgstr "Albumnaam kon niet gedecodeerd worden" + +#: ../../Zotlabs/Module/Photos.php:741 +msgid "Contact Photos" +msgstr "Connectiefoto's" + +#: ../../Zotlabs/Module/Photos.php:764 +msgid "Show Newest First" +msgstr "Nieuwste eerst weergeven" + +#: ../../Zotlabs/Module/Photos.php:766 +msgid "Show Oldest First" +msgstr "Oudste eerst weergeven" + +#: ../../Zotlabs/Module/Photos.php:790 ../../Zotlabs/Module/Photos.php:1329 +#: ../../Zotlabs/Module/Embedphotos.php:141 ../../include/widgets.php:1593 +msgid "View Photo" +msgstr "Foto weergeven" + +#: ../../Zotlabs/Module/Photos.php:821 +#: ../../Zotlabs/Module/Embedphotos.php:157 ../../include/widgets.php:1610 +msgid "Edit Album" +msgstr "Album bewerken" + +#: ../../Zotlabs/Module/Photos.php:868 +msgid "Permission denied. Access to this item may be restricted." +msgstr "Toegang geweigerd. Toegang tot dit item kan zijn beperkt." + +#: ../../Zotlabs/Module/Photos.php:870 +msgid "Photo not available" +msgstr "Foto niet aanwezig" + +#: ../../Zotlabs/Module/Photos.php:928 +msgid "Use as profile photo" +msgstr "Als profielfoto gebruiken" + +#: ../../Zotlabs/Module/Photos.php:929 +msgid "Use as cover photo" +msgstr "Als omslagfoto gebruiken" + +#: ../../Zotlabs/Module/Photos.php:936 +msgid "Private Photo" +msgstr "Privéfoto" + +#: ../../Zotlabs/Module/Photos.php:951 +msgid "View Full Size" +msgstr "Volledige grootte weergeven" + +#: ../../Zotlabs/Module/Photos.php:996 ../../Zotlabs/Module/Admin.php:1437 +#: ../../Zotlabs/Module/Tagrm.php:137 +msgid "Remove" +msgstr "Verwijderen" + +#: ../../Zotlabs/Module/Photos.php:1030 +msgid "Edit photo" +msgstr "Foto bewerken" + +#: ../../Zotlabs/Module/Photos.php:1032 +msgid "Rotate CW (right)" +msgstr "Draai met de klok mee (naar rechts)" + +#: ../../Zotlabs/Module/Photos.php:1033 +msgid "Rotate CCW (left)" +msgstr "Draai tegen de klok in (naar links)" + +#: ../../Zotlabs/Module/Photos.php:1036 +msgid "Enter a new album name" +msgstr "Vul een nieuwe albumnaam in" + +#: ../../Zotlabs/Module/Photos.php:1037 +msgid "or select an existing one (doubleclick)" +msgstr "of kies een bestaand album (dubbelklikken)" + +#: ../../Zotlabs/Module/Photos.php:1040 +msgid "Caption" +msgstr "Bijschrift" + +#: ../../Zotlabs/Module/Photos.php:1042 +msgid "Add a Tag" +msgstr "Tag toevoegen" + +#: ../../Zotlabs/Module/Photos.php:1046 +msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" +msgstr "Voorbeeld: @bob, @Barbara_Jansen, @jan@voorbeeld.nl" + +#: ../../Zotlabs/Module/Photos.php:1049 +msgid "Flag as adult in album view" +msgstr "Markeer als voor volwassenen in albumweergave" + +#: ../../Zotlabs/Module/Photos.php:1068 ../../Zotlabs/Lib/ThreadItem.php:261 +msgid "I like this (toggle)" +msgstr "Vind ik leuk" + +#: ../../Zotlabs/Module/Photos.php:1069 ../../Zotlabs/Lib/ThreadItem.php:262 +msgid "I don't like this (toggle)" +msgstr "Vind ik niet leuk" + +#: ../../Zotlabs/Module/Photos.php:1071 ../../Zotlabs/Lib/ThreadItem.php:397 +#: ../../include/conversation.php:743 +msgid "Please wait" +msgstr "Even wachten" + +#: ../../Zotlabs/Module/Photos.php:1087 ../../Zotlabs/Module/Photos.php:1205 +#: ../../Zotlabs/Lib/ThreadItem.php:707 +msgid "This is you" +msgstr "Dit ben jij" + +#: ../../Zotlabs/Module/Photos.php:1089 ../../Zotlabs/Module/Photos.php:1207 +#: ../../Zotlabs/Lib/ThreadItem.php:709 ../../include/js_strings.php:6 +msgid "Comment" +msgstr "Reactie" + +#: ../../Zotlabs/Module/Photos.php:1105 ../../include/conversation.php:577 +msgctxt "title" +msgid "Likes" +msgstr "vinden dit leuk" + +#: ../../Zotlabs/Module/Photos.php:1105 ../../include/conversation.php:577 +msgctxt "title" +msgid "Dislikes" +msgstr "vinden dit niet leuk" + +#: ../../Zotlabs/Module/Photos.php:1106 ../../include/conversation.php:578 +msgctxt "title" +msgid "Agree" +msgstr "eens" + +#: ../../Zotlabs/Module/Photos.php:1106 ../../include/conversation.php:578 +msgctxt "title" +msgid "Disagree" +msgstr "oneens" + +#: ../../Zotlabs/Module/Photos.php:1106 ../../include/conversation.php:578 +msgctxt "title" +msgid "Abstain" +msgstr "onthoudingen" + +#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:579 +msgctxt "title" +msgid "Attending" +msgstr "aanwezig" + +#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:579 +msgctxt "title" +msgid "Not attending" +msgstr "niet aanwezig" + +#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:579 +msgctxt "title" +msgid "Might attend" +msgstr "mogelijk aanwezig" + +#: ../../Zotlabs/Module/Photos.php:1124 ../../Zotlabs/Module/Photos.php:1136 +#: ../../Zotlabs/Lib/ThreadItem.php:181 ../../Zotlabs/Lib/ThreadItem.php:193 +#: ../../include/conversation.php:1738 +msgid "View all" +msgstr "Toon alles" + +#: ../../Zotlabs/Module/Photos.php:1128 ../../Zotlabs/Lib/ThreadItem.php:185 +#: ../../include/taxonomy.php:403 ../../include/channel.php:1198 +#: ../../include/conversation.php:1762 +msgctxt "noun" +msgid "Like" +msgid_plural "Likes" +msgstr[0] "vindt dit leuk" +msgstr[1] "vinden dit leuk" + +#: ../../Zotlabs/Module/Photos.php:1133 ../../Zotlabs/Lib/ThreadItem.php:190 +#: ../../include/conversation.php:1765 +msgctxt "noun" +msgid "Dislike" +msgid_plural "Dislikes" +msgstr[0] "vindt dit niet leuk" +msgstr[1] "vinden dit niet leuk" + +#: ../../Zotlabs/Module/Photos.php:1233 +msgid "Photo Tools" +msgstr "Hulpmiddelen" + +#: ../../Zotlabs/Module/Photos.php:1242 +msgid "In This Photo:" +msgstr "Op deze foto:" + +#: ../../Zotlabs/Module/Photos.php:1247 +msgid "Map" +msgstr "Kaart" + +#: ../../Zotlabs/Module/Photos.php:1255 ../../Zotlabs/Lib/ThreadItem.php:386 +msgctxt "noun" +msgid "Likes" +msgstr "vinden dit leuk" + +#: ../../Zotlabs/Module/Photos.php:1256 ../../Zotlabs/Lib/ThreadItem.php:387 +msgctxt "noun" +msgid "Dislikes" +msgstr "vinden dit niet leuk" + +#: ../../Zotlabs/Module/Photos.php:1261 ../../Zotlabs/Lib/ThreadItem.php:392 +#: ../../include/acl_selectors.php:283 +msgid "Close" +msgstr "Sluiten" + +#: ../../Zotlabs/Module/Photos.php:1335 +msgid "View Album" +msgstr "Album weergeven" + +#: ../../Zotlabs/Module/Photos.php:1346 ../../Zotlabs/Module/Photos.php:1359 +#: ../../Zotlabs/Module/Photos.php:1360 +msgid "Recent Photos" +msgstr "Recente foto's" + +#: ../../Zotlabs/Module/Lockview.php:75 +msgid "Remote privacy information not available." +msgstr "Privacy-informatie op afstand niet beschikbaar." + +#: ../../Zotlabs/Module/Lockview.php:96 +msgid "Visible to:" +msgstr "Zichtbaar voor:" + +#: ../../Zotlabs/Module/Import_items.php:104 +msgid "Import completed" +msgstr "Importeren voltooid" + +#: ../../Zotlabs/Module/Import_items.php:119 +msgid "Import Items" +msgstr "Importeer items" + +#: ../../Zotlabs/Module/Import_items.php:120 +msgid "" +"Use this form to import existing posts and content from an export file." +msgstr "Gebruik dit formulier om bestaande berichten en andere inhoud vanuit een exportbestand te importeren." + +#: ../../Zotlabs/Module/Invite.php:29 +msgid "Total invitation limit exceeded." +msgstr "Limiet voor aantal uitnodigingen overschreden." + +#: ../../Zotlabs/Module/Invite.php:53 +#, php-format +msgid "%s : Not a valid email address." +msgstr "%s : Geen geldig e-mailadres." + +#: ../../Zotlabs/Module/Invite.php:63 +msgid "Please join us on $Projectname" +msgstr "Uitnodiging voor $Projectname" + +#: ../../Zotlabs/Module/Invite.php:74 +msgid "Invitation limit exceeded. Please contact your site administrator." +msgstr "Limiet voor aantal uitnodigingen overschreden. Neem contact op met je hub-beheerder." + +#: ../../Zotlabs/Module/Invite.php:79 +#, php-format +msgid "%s : Message delivery failed." +msgstr "%s: Aflevering bericht mislukt." + +#: ../../Zotlabs/Module/Invite.php:83 +#, php-format +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "%d bericht verzonden." +msgstr[1] "%d berichten verzonden." + +#: ../../Zotlabs/Module/Invite.php:102 +msgid "You have no more invitations available" +msgstr "Je hebt geen uitnodigingen meer beschikbaar" + +#: ../../Zotlabs/Module/Invite.php:133 +msgid "Send invitations" +msgstr "Uitnodigingen verzenden" + +#: ../../Zotlabs/Module/Invite.php:134 +msgid "Enter email addresses, one per line:" +msgstr "Voer e-mailadressen in, één per regel:" + +#: ../../Zotlabs/Module/Invite.php:135 ../../Zotlabs/Module/Mail.php:241 +msgid "Your message:" +msgstr "Jouw bericht:" + +#: ../../Zotlabs/Module/Invite.php:136 +msgid "Please join my community on $Projectname." +msgstr "Hierbij nodig ik je uit om mij, en andere vrienden en kennissen, op $Projectname te vergezellen. Lees meer over $Projectname op http://hubzilla.org" + +#: ../../Zotlabs/Module/Invite.php:138 +msgid "You will need to supply this invitation code:" +msgstr "Je moet deze uitnodigingscode opgeven:" + +#: ../../Zotlabs/Module/Invite.php:139 +msgid "" +"1. Register at any $Projectname location (they are all inter-connected)" +msgstr "1. Registreer je op een willekeurige $Projectname-hub (ze zijn allemaal onderling met elkaar verbonden):" + +#: ../../Zotlabs/Module/Invite.php:141 +msgid "2. Enter my $Projectname network address into the site searchbar." +msgstr "2. Nadat je bent ingelogd en een kanaal hebt aangemaakt kan je mijn $Projectname-kanaaladres in het zoekveld invullen:" + +#: ../../Zotlabs/Module/Invite.php:142 +msgid "or visit" +msgstr "of bezoek" + +#: ../../Zotlabs/Module/Invite.php:144 +msgid "3. Click [Connect]" +msgstr "3. Klik op [+ Verbinden]" + +#: ../../Zotlabs/Module/Locs.php:25 ../../Zotlabs/Module/Locs.php:54 +msgid "Location not found." +msgstr "Locatie niet gevonden." + +#: ../../Zotlabs/Module/Locs.php:62 +msgid "Location lookup failed." +msgstr "Opzoeken locatie mislukt" + +#: ../../Zotlabs/Module/Locs.php:66 +msgid "" +"Please select another location to become primary before removing the primary" +" location." +msgstr "Kies eerst een andere primaire locatie alvorens de huidige primaire locatie te verwijderen." + +#: ../../Zotlabs/Module/Locs.php:95 +msgid "Syncing locations" +msgstr "Locaties synchronizeren" + +#: ../../Zotlabs/Module/Locs.php:105 +msgid "No locations found." +msgstr "Geen locaties gevonden." + +#: ../../Zotlabs/Module/Locs.php:116 +msgid "Manage Channel Locations" +msgstr "Kanaallocaties beheren" + +#: ../../Zotlabs/Module/Locs.php:119 +msgid "Primary" +msgstr "Primair" + +#: ../../Zotlabs/Module/Locs.php:120 ../../Zotlabs/Module/Menu.php:113 +msgid "Drop" +msgstr "Verwijderen" + +#: ../../Zotlabs/Module/Locs.php:122 +msgid "Sync Now" +msgstr "Nu synchroniseren" + +#: ../../Zotlabs/Module/Locs.php:123 +msgid "Please wait several minutes between consecutive operations." +msgstr "Wacht enkele minuten tussen opeenvolgende handelingen." + +#: ../../Zotlabs/Module/Locs.php:124 +msgid "" +"When possible, drop a location by logging into that website/hub and removing" +" your channel." +msgstr "Wij adviseren, wanneer dit (nog) mogelijk is, de locatie te verwijderen door op de hub van de kloon in te loggen en het kanaal daar te verwijderen." + +#: ../../Zotlabs/Module/Locs.php:125 +msgid "Use this form to drop the location if the hub is no longer operating." +msgstr "Gebruik dit formulier om de locatie te verwijderen wanneer de hub van de kloon niet meer operationeel is." + +#: ../../Zotlabs/Module/Magic.php:71 +msgid "Hub not found." +msgstr "Hub niet gevonden." + +#: ../../Zotlabs/Module/Mail.php:38 +msgid "Unable to lookup recipient." +msgstr "Niet in staat om ontvanger op te zoeken." + +#: ../../Zotlabs/Module/Mail.php:45 +msgid "Unable to communicate with requested channel." +msgstr "Niet in staat om met het aangevraagde kanaal te communiceren." + +#: ../../Zotlabs/Module/Mail.php:52 +msgid "Cannot verify requested channel." +msgstr "Kan opgevraagd kanaal niet verifieren" + +#: ../../Zotlabs/Module/Mail.php:70 +msgid "Selected channel has private message restrictions. Send failed." +msgstr "Gekozen kanaal heeft restricties voor privéberichten. Verzenden mislukt." + +#: ../../Zotlabs/Module/Mail.php:135 +msgid "Messages" +msgstr "Berichten" + +#: ../../Zotlabs/Module/Mail.php:170 +msgid "Message recalled." +msgstr "Bericht ingetrokken." + +#: ../../Zotlabs/Module/Mail.php:183 +msgid "Conversation removed." +msgstr "Conversatie verwijderd" + +#: ../../Zotlabs/Module/Mail.php:198 ../../Zotlabs/Module/Mail.php:307 +msgid "Expires YYYY-MM-DD HH:MM" +msgstr "Verloopt op DD-MM-YYYY om HH:MM" + +#: ../../Zotlabs/Module/Mail.php:226 +msgid "Requested channel is not in this network" +msgstr "Opgevraagd kanaal is niet in dit netwerk beschikbaar" + +#: ../../Zotlabs/Module/Mail.php:234 +msgid "Send Private Message" +msgstr "Privébericht versturen" + +#: ../../Zotlabs/Module/Mail.php:235 ../../Zotlabs/Module/Mail.php:360 +msgid "To:" +msgstr "Aan:" + +#: ../../Zotlabs/Module/Mail.php:238 ../../Zotlabs/Module/Mail.php:362 +msgid "Subject:" +msgstr "Onderwerp:" + +#: ../../Zotlabs/Module/Mail.php:243 ../../Zotlabs/Module/Mail.php:368 +#: ../../include/conversation.php:1231 +msgid "Attach file" +msgstr "Bestand toevoegen" + +#: ../../Zotlabs/Module/Mail.php:245 +msgid "Send" +msgstr "Verzenden" + +#: ../../Zotlabs/Module/Mail.php:248 ../../Zotlabs/Module/Mail.php:373 +#: ../../include/conversation.php:1266 +msgid "Set expiration date" +msgstr "Verloopdatum instellen" + +#: ../../Zotlabs/Module/Mail.php:332 +msgid "Delete message" +msgstr "Bericht verwijderen" + +#: ../../Zotlabs/Module/Mail.php:333 +msgid "Delivery report" +msgstr "Afleveringsrapport" + +#: ../../Zotlabs/Module/Mail.php:334 +msgid "Recall message" +msgstr "Bericht intrekken" + +#: ../../Zotlabs/Module/Mail.php:336 +msgid "Message has been recalled." +msgstr "Bericht is ingetrokken." + +#: ../../Zotlabs/Module/Mail.php:353 +msgid "Delete Conversation" +msgstr "Verwijder conversatie" + +#: ../../Zotlabs/Module/Mail.php:355 +msgid "" +"No secure communications available. You may be able to " +"respond from the sender's profile page." +msgstr "Geen veilige communicatie beschikbaar. Mogelijk kan je reageren op de kanaalpagina van de afzender." + +#: ../../Zotlabs/Module/Mail.php:359 +msgid "Send Reply" +msgstr "Antwoord versturen" + +#: ../../Zotlabs/Module/Mail.php:364 +#, php-format +msgid "Your message for %s (%s):" +msgstr "Jouw privébericht aan %s (%s):" + +#: ../../Zotlabs/Module/Manage.php:136 +#: ../../Zotlabs/Module/New_channel.php:121 +#, php-format +msgid "You have created %1$.0f of %2$.0f allowed channels." +msgstr "Je hebt %1$.0f van totaal %2$.0f toegestane kanalen aangemaakt." + +#: ../../Zotlabs/Module/Manage.php:143 +msgid "Create a new channel" +msgstr "Nieuw kanaal aanmaken" + +#: ../../Zotlabs/Module/Manage.php:164 ../../Zotlabs/Lib/Apps.php:214 +#: ../../include/nav.php:208 +msgid "Channel Manager" +msgstr "Kanaalbeheer" + +#: ../../Zotlabs/Module/Manage.php:165 +msgid "Current Channel" +msgstr "Huidig kanaal" + +#: ../../Zotlabs/Module/Manage.php:167 +msgid "Switch to one of your channels by selecting it." +msgstr "Activeer een van jouw andere kanalen door er op te klikken." + +#: ../../Zotlabs/Module/Manage.php:168 +msgid "Default Channel" +msgstr "Standaardkanaal" + +#: ../../Zotlabs/Module/Manage.php:169 +msgid "Make Default" +msgstr "Als standaard instellen" + +#: ../../Zotlabs/Module/Manage.php:172 +#, php-format +msgid "%d new messages" +msgstr "%d nieuwe berichten" + +#: ../../Zotlabs/Module/Manage.php:173 +#, php-format +msgid "%d new introductions" +msgstr "%d nieuwe connectieverzoeken" + +#: ../../Zotlabs/Module/Manage.php:175 +msgid "Delegated Channel" +msgstr "Uitbesteed kanaal" + +#: ../../Zotlabs/Module/Menu.php:49 +msgid "Unable to update menu." +msgstr "Niet in staat om menu aan te passen" + +#: ../../Zotlabs/Module/Menu.php:60 +msgid "Unable to create menu." +msgstr "Niet in staat om menu aan te maken." + +#: ../../Zotlabs/Module/Menu.php:98 ../../Zotlabs/Module/Menu.php:110 +msgid "Menu Name" +msgstr "Menunaam" + +#: ../../Zotlabs/Module/Menu.php:98 +msgid "Unique name (not visible on webpage) - required" +msgstr "Unieke naam vereist (niet zichtbaar op webpagina)" + +#: ../../Zotlabs/Module/Menu.php:99 ../../Zotlabs/Module/Menu.php:111 +msgid "Menu Title" +msgstr "Menutitel" + +#: ../../Zotlabs/Module/Menu.php:99 +msgid "Visible on webpage - leave empty for no title" +msgstr "Zichtbaar op webpagina (leeg laten voor geen titel)" + +#: ../../Zotlabs/Module/Menu.php:100 +msgid "Allow Bookmarks" +msgstr "Bladwijzers toestaan" + +#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 +msgid "Menu may be used to store saved bookmarks" +msgstr "Menu kan gebruikt worden om bladwijzers in op te slaan" + +#: ../../Zotlabs/Module/Menu.php:101 ../../Zotlabs/Module/Menu.php:159 +msgid "Submit and proceed" +msgstr "Opslaan en doorgaan" + +#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2239 +msgid "Menus" +msgstr "Menu's" + +#: ../../Zotlabs/Module/Menu.php:117 +msgid "Bookmarks allowed" +msgstr "Bladwijzers toegestaan" + +#: ../../Zotlabs/Module/Menu.php:119 +msgid "Delete this menu" +msgstr "Menu verwijderen" + +#: ../../Zotlabs/Module/Menu.php:120 ../../Zotlabs/Module/Menu.php:154 +msgid "Edit menu contents" +msgstr "Bewerk de inhoud van het menu" + +#: ../../Zotlabs/Module/Menu.php:121 +msgid "Edit this menu" +msgstr "Dit menu bewerken" + +#: ../../Zotlabs/Module/Menu.php:136 +msgid "Menu could not be deleted." +msgstr "Menu kon niet verwijderd worden." + +#: ../../Zotlabs/Module/Menu.php:144 ../../Zotlabs/Module/Mitem.php:28 +msgid "Menu not found." +msgstr "Menu niet gevonden." + +#: ../../Zotlabs/Module/Menu.php:149 +msgid "Edit Menu" +msgstr "Menu bewerken" + +#: ../../Zotlabs/Module/Menu.php:153 +msgid "Add or remove entries to this menu" +msgstr "Items aan dit menu toevoegen of verwijder" + +#: ../../Zotlabs/Module/Menu.php:155 +msgid "Menu name" +msgstr "Naam van menu" + +#: ../../Zotlabs/Module/Menu.php:155 +msgid "Must be unique, only seen by you" +msgstr "Moet uniek zijn en is alleen zichtbaar voor jou." + +#: ../../Zotlabs/Module/Menu.php:156 +msgid "Menu title" +msgstr "Titel van menu" + +#: ../../Zotlabs/Module/Menu.php:156 +msgid "Menu title as seen by others" +msgstr "Titel van menu zoals anderen dat zien." + +#: ../../Zotlabs/Module/Menu.php:157 +msgid "Allow bookmarks" +msgstr "Bladwijzers toestaan" + +#: ../../Zotlabs/Module/Menu.php:166 ../../Zotlabs/Module/Mitem.php:120 +#: ../../Zotlabs/Module/Xchan.php:41 +msgid "Not found." +msgstr "Niet gevonden." + +#: ../../Zotlabs/Module/Lostpass.php:19 +msgid "No valid account found." +msgstr "Geen geldige account gevonden." + +#: ../../Zotlabs/Module/Lostpass.php:33 +msgid "Password reset request issued. Check your email." +msgstr "Het verzoek om je wachtwoord opnieuw in te stellen is behandeld. Controleer je e-mail." + +#: ../../Zotlabs/Module/Lostpass.php:39 ../../Zotlabs/Module/Lostpass.php:107 +#, php-format +msgid "Site Member (%s)" +msgstr "Lid van hub (%s)" + +#: ../../Zotlabs/Module/Lostpass.php:44 +#, php-format +msgid "Password reset requested at %s" +msgstr "Verzoek tot het opnieuw instellen van een wachtwoord op %s is ingediend" + +#: ../../Zotlabs/Module/Lostpass.php:67 +msgid "" +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." +msgstr "Het verzoek kon niet worden geverifieerd. (Mogelijk heb je al eerder een verzoek ingediend.) Opnieuw instellen van wachtwoord is mislukt." + +#: ../../Zotlabs/Module/Lostpass.php:90 ../../boot.php:1712 +msgid "Password Reset" +msgstr "Wachtwoord vergeten?" + +#: ../../Zotlabs/Module/Lostpass.php:91 +msgid "Your password has been reset as requested." +msgstr "Jouw wachtwoord is opnieuw ingesteld zoals je had verzocht." + +#: ../../Zotlabs/Module/Lostpass.php:92 +msgid "Your new password is" +msgstr "Jouw nieuwe wachtwoord is" + +#: ../../Zotlabs/Module/Lostpass.php:93 +msgid "Save or copy your new password - and then" +msgstr "Kopieer of sla je nieuwe wachtwoord op - en" + +#: ../../Zotlabs/Module/Lostpass.php:94 +msgid "click here to login" +msgstr "klik dan hier om in te loggen" + +#: ../../Zotlabs/Module/Lostpass.php:95 +msgid "" +"Your password may be changed from the Settings page after " +"successful login." +msgstr "Jouw wachtwoord kan worden veranderd onder instellingen, nadat je succesvol bent ingelogd." + +#: ../../Zotlabs/Module/Lostpass.php:112 +#, php-format +msgid "Your password has changed at %s" +msgstr "Jouw wachtwoord op %s is veranderd" + +#: ../../Zotlabs/Module/Lostpass.php:127 +msgid "Forgot your Password?" +msgstr "Wachtwoord vergeten?" + +#: ../../Zotlabs/Module/Lostpass.php:128 +msgid "" +"Enter your email address and submit to have your password reset. Then check " +"your email for further instructions." +msgstr "Voer je e-mailadres in en verstuur deze om je wachtwoord opnieuw in te stellen. Controleer hierna hier je e-mail voor verdere instructies." + +#: ../../Zotlabs/Module/Lostpass.php:129 +msgid "Email Address" +msgstr "E-mailadres" + +#: ../../Zotlabs/Module/Lostpass.php:130 +msgid "Reset" +msgstr "Opnieuw instellen" + +#: ../../Zotlabs/Module/Mood.php:67 ../../include/conversation.php:260 +#, php-format +msgctxt "mood" +msgid "%1$s is %2$s" +msgstr "%1$s is %2$s" + +#: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Lib/Apps.php:227 +msgid "Mood" +msgstr "Stemming" + +#: ../../Zotlabs/Module/Mood.php:136 +msgid "Set your current mood and tell your friends" +msgstr "Noteer je huidige stemming en toon het aan je connecties" + +#: ../../Zotlabs/Module/Network.php:94 +msgid "No such group" +msgstr "Collectie niet gevonden" + +#: ../../Zotlabs/Module/Network.php:134 +msgid "No such channel" +msgstr "Niet zo'n kanaal" + +#: ../../Zotlabs/Module/Network.php:139 +msgid "forum" +msgstr "forum" + +#: ../../Zotlabs/Module/Network.php:151 +msgid "Search Results For:" +msgstr "Zoekresultaten voor:" + +#: ../../Zotlabs/Module/Network.php:215 +msgid "Privacy group is empty" +msgstr "Privacygroep is leeg" + +#: ../../Zotlabs/Module/Network.php:224 +msgid "Privacy group: " +msgstr "Privacygroep: " + +#: ../../Zotlabs/Module/Network.php:250 +msgid "Invalid connection." +msgstr "Ongeldige connectie." + +#: ../../Zotlabs/Module/Notify.php:57 +#: ../../Zotlabs/Module/Notifications.php:98 +msgid "No more system notifications." +msgstr "Geen systeemnotificaties meer." + +#: ../../Zotlabs/Module/Notify.php:61 +#: ../../Zotlabs/Module/Notifications.php:102 +msgid "System Notifications" +msgstr "Systeemnotificaties" + +#: ../../Zotlabs/Module/Match.php:26 +msgid "Profile Match" +msgstr "Profielovereenkomst" + +#: ../../Zotlabs/Module/Match.php:35 +msgid "No keywords to match. Please add keywords to your default profile." +msgstr "Je hebt geen trefwoorden waarmee overeenkomsten gevonden kunnen worden. Voeg enkele trefwoorden aan je standaardprofiel toe." + +#: ../../Zotlabs/Module/Match.php:67 +msgid "is interested in:" +msgstr "is geïnteresseerd in:" + +#: ../../Zotlabs/Module/Match.php:74 +msgid "No matches" +msgstr "Geen overeenkomsten" + +#: ../../Zotlabs/Module/Channel.php:40 +msgid "Posts and comments" +msgstr "Berichten en reacties" + +#: ../../Zotlabs/Module/Channel.php:41 +msgid "Only posts" +msgstr "Alleen berichten" + +#: ../../Zotlabs/Module/Channel.php:101 +msgid "Insufficient permissions. Request redirected to profile page." +msgstr "Onvoldoende permissies. Doorgestuurd naar profielpagina." + +#: ../../Zotlabs/Module/Mitem.php:52 +msgid "Unable to create element." +msgstr "Niet in staat om onderdeel aan te maken." + +#: ../../Zotlabs/Module/Mitem.php:76 +msgid "Unable to update menu element." +msgstr "Menu-onderdeel kan niet worden geüpdatet." + +#: ../../Zotlabs/Module/Mitem.php:92 +msgid "Unable to add menu element." +msgstr "Menu-onderdeel kan niet worden toegevoegd." + +#: ../../Zotlabs/Module/Mitem.php:153 ../../Zotlabs/Module/Mitem.php:226 +msgid "Menu Item Permissions" +msgstr "Permissies menu-item" + +#: ../../Zotlabs/Module/Mitem.php:154 ../../Zotlabs/Module/Mitem.php:227 +#: ../../Zotlabs/Module/Settings.php:1163 +msgid "(click to open/close)" +msgstr "(klik om te openen/sluiten)" + +#: ../../Zotlabs/Module/Mitem.php:156 ../../Zotlabs/Module/Mitem.php:172 +msgid "Link Name" +msgstr "Linknaam" + +#: ../../Zotlabs/Module/Mitem.php:157 ../../Zotlabs/Module/Mitem.php:231 +msgid "Link or Submenu Target" +msgstr "Linkdoel of submenu-doel" + +#: ../../Zotlabs/Module/Mitem.php:157 +msgid "Enter URL of the link or select a menu name to create a submenu" +msgstr "Geef de URL van de link of kies een menunaam om een submenu aan te maken" + +#: ../../Zotlabs/Module/Mitem.php:158 ../../Zotlabs/Module/Mitem.php:232 +msgid "Use magic-auth if available" +msgstr "Gebruik magic-auth wanneer beschikbaar" + +#: ../../Zotlabs/Module/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:233 +msgid "Open link in new window" +msgstr "Open link in nieuw venster" + +#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:234 +msgid "Order in list" +msgstr "Volgorde in lijst" + +#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:234 +msgid "Higher numbers will sink to bottom of listing" +msgstr "Hogere nummers komen onderaan de lijst terecht" + +#: ../../Zotlabs/Module/Mitem.php:161 +msgid "Submit and finish" +msgstr "Opslaan en afsluiten" + +#: ../../Zotlabs/Module/Mitem.php:162 +msgid "Submit and continue" +msgstr "Opslaan en doorgaan" + +#: ../../Zotlabs/Module/Mitem.php:170 +msgid "Menu:" +msgstr "Menu:" + +#: ../../Zotlabs/Module/Mitem.php:173 +msgid "Link Target" +msgstr "Linkdoel" + +#: ../../Zotlabs/Module/Mitem.php:176 +msgid "Edit menu" +msgstr "Menu bewerken" + +#: ../../Zotlabs/Module/Mitem.php:179 +msgid "Edit element" +msgstr "Onderdeel bewerken" + +#: ../../Zotlabs/Module/Mitem.php:180 +msgid "Drop element" +msgstr "Onderdeel verwijderen" + +#: ../../Zotlabs/Module/Mitem.php:181 +msgid "New element" +msgstr "Nieuw element" + +#: ../../Zotlabs/Module/Mitem.php:182 +msgid "Edit this menu container" +msgstr "Deze menu-container bewerken" + +#: ../../Zotlabs/Module/Mitem.php:183 +msgid "Add menu element" +msgstr "Menu-element toevoegen" + +#: ../../Zotlabs/Module/Mitem.php:184 +msgid "Delete this menu item" +msgstr "Dit menu-item verwijderen" + +#: ../../Zotlabs/Module/Mitem.php:185 +msgid "Edit this menu item" +msgstr "Dit menu-item bewerken" + +#: ../../Zotlabs/Module/Mitem.php:202 +msgid "Menu item not found." +msgstr "Menu-item niet gevonden." + +#: ../../Zotlabs/Module/Mitem.php:215 +msgid "Menu item deleted." +msgstr "Menu-item verwijderd." + +#: ../../Zotlabs/Module/Mitem.php:217 +msgid "Menu item could not be deleted." +msgstr "Menu-item kon niet worden verwijderd." + +#: ../../Zotlabs/Module/Mitem.php:224 +msgid "Edit Menu Element" +msgstr "Menu-element bewerken" + +#: ../../Zotlabs/Module/Mitem.php:230 +msgid "Link text" +msgstr "Linktekst" #: ../../Zotlabs/Module/Admin.php:77 msgid "Theme settings updated." @@ -3665,11 +3572,11 @@ msgstr "Versie repository (dev)" msgid "Site settings updated." msgstr "Hub-instellingen bijgewerkt." -#: ../../Zotlabs/Module/Admin.php:400 ../../include/text.php:2841 +#: ../../Zotlabs/Module/Admin.php:400 ../../include/text.php:2829 msgid "Default" msgstr "Standaard" -#: ../../Zotlabs/Module/Admin.php:410 ../../Zotlabs/Module/Settings.php:798 +#: ../../Zotlabs/Module/Admin.php:410 ../../Zotlabs/Module/Settings.php:899 msgid "mobile" msgstr "mobiel" @@ -3701,7 +3608,7 @@ msgstr "Mijn $Projectname-hub kent alleen gratis toegang" msgid "My site offers free accounts with optional paid upgrades" msgstr "Mijn $Projectname-hub biedt gratis accounts aan met betaalde uitbreidingen als optie" -#: ../../Zotlabs/Module/Admin.php:491 ../../include/widgets.php:1382 +#: ../../Zotlabs/Module/Admin.php:491 ../../include/widgets.php:1476 msgid "Site" msgstr "Hub-instellingen" @@ -3989,12 +3896,12 @@ msgid "0 for no expiration of imported content" msgstr "Dit geldt alleen voor inhoud van andere kanalen, dus niet voor iemands eigen kanaal. 0 voor het niet verwijderen van geïmporteerde inhoud." #: ../../Zotlabs/Module/Admin.php:677 ../../Zotlabs/Module/Admin.php:678 -#: ../../Zotlabs/Module/Settings.php:722 +#: ../../Zotlabs/Module/Settings.php:823 msgid "Off" msgstr "Uit" #: ../../Zotlabs/Module/Admin.php:677 ../../Zotlabs/Module/Admin.php:678 -#: ../../Zotlabs/Module/Settings.php:722 +#: ../../Zotlabs/Module/Settings.php:823 msgid "On" msgstr "Aan" @@ -4051,7 +3958,7 @@ msgid "" "embedded content from that site is explicitly blocked." msgstr "Alle andere ingesloten (embedded) inhoud wordt gefilterd, tenzij ingesloten (embedded) inhoud van een website expliciet wordt geblokkeerd." -#: ../../Zotlabs/Module/Admin.php:756 ../../include/widgets.php:1385 +#: ../../Zotlabs/Module/Admin.php:756 ../../include/widgets.php:1479 msgid "Security" msgstr "Beveiliging" @@ -4219,7 +4126,7 @@ msgid "Account '%s' unblocked" msgstr "Account '%s' gedeblokkeerd" #: ../../Zotlabs/Module/Admin.php:1031 ../../Zotlabs/Module/Admin.php:1044 -#: ../../include/widgets.php:1383 +#: ../../include/widgets.php:1477 msgid "Accounts" msgstr "Accounts" @@ -4325,7 +4232,7 @@ msgstr "Scripts toegestaan voor kanaal '%s'" msgid "Channel '%s' code disallowed" msgstr "Scripts niet toegestaan voor kanaal '%s'" -#: ../../Zotlabs/Module/Admin.php:1210 ../../include/widgets.php:1384 +#: ../../Zotlabs/Module/Admin.php:1210 ../../include/widgets.php:1478 msgid "Channels" msgstr "Kanalen" @@ -4345,7 +4252,7 @@ msgstr "Scripts toestaan" msgid "Disallow Code" msgstr "Scripts niet toestaan" -#: ../../Zotlabs/Module/Admin.php:1218 ../../include/conversation.php:1611 +#: ../../Zotlabs/Module/Admin.php:1218 ../../include/conversation.php:1626 msgid "Channel" msgstr "Kanaal" @@ -4384,7 +4291,7 @@ msgid "Enable" msgstr "Inschakelen" #: ../../Zotlabs/Module/Admin.php:1330 ../../Zotlabs/Module/Admin.php:1420 -#: ../../include/widgets.php:1387 +#: ../../include/widgets.php:1481 msgid "Plugins" msgstr "Plugins" @@ -4393,8 +4300,8 @@ msgid "Toggle" msgstr "Omschakelen" #: ../../Zotlabs/Module/Admin.php:1332 ../../Zotlabs/Module/Admin.php:1615 -#: ../../Zotlabs/Lib/Apps.php:215 ../../include/widgets.php:638 -#: ../../include/nav.php:208 +#: ../../Zotlabs/Lib/Apps.php:216 ../../include/nav.php:210 +#: ../../include/widgets.php:647 msgid "Settings" msgstr "Instellingen" @@ -4450,7 +4357,7 @@ msgstr "Plugin-repository downloaden" msgid "Install new repo" msgstr "Nieuwe repository installeren" -#: ../../Zotlabs/Module/Admin.php:1405 ../../Zotlabs/Lib/Apps.php:330 +#: ../../Zotlabs/Module/Admin.php:1405 ../../Zotlabs/Lib/Apps.php:334 msgid "Install" msgstr "Installeren" @@ -4466,8 +4373,8 @@ msgstr "Toegevoegde plugin-repositories" msgid "Install a New Plugin Repository" msgstr "Nieuwe plugin-repository toevoegen" -#: ../../Zotlabs/Module/Admin.php:1435 ../../Zotlabs/Module/Settings.php:77 -#: ../../Zotlabs/Module/Settings.php:616 ../../Zotlabs/Lib/Apps.php:330 +#: ../../Zotlabs/Module/Admin.php:1435 ../../Zotlabs/Module/Settings.php:72 +#: ../../Zotlabs/Module/Settings.php:670 ../../Zotlabs/Lib/Apps.php:334 msgid "Update" msgstr "Bijwerken" @@ -4484,7 +4391,7 @@ msgid "Screenshot" msgstr "Schermafdruk" #: ../../Zotlabs/Module/Admin.php:1613 ../../Zotlabs/Module/Admin.php:1647 -#: ../../include/widgets.php:1388 +#: ../../include/widgets.php:1482 msgid "Themes" msgstr "Thema's" @@ -4500,8 +4407,8 @@ msgstr "[Niet ondersteund]" msgid "Log settings updated." msgstr "Logboek-instellingen bijgewerkt." -#: ../../Zotlabs/Module/Admin.php:1732 ../../include/widgets.php:1409 -#: ../../include/widgets.php:1419 +#: ../../Zotlabs/Module/Admin.php:1732 ../../include/widgets.php:1503 +#: ../../include/widgets.php:1513 msgid "Logs" msgstr "Logboeken" @@ -4567,7 +4474,7 @@ msgstr "Velddefinitie niet gevonden" msgid "Edit Profile Field" msgstr "Profielveld bewerken" -#: ../../Zotlabs/Module/Admin.php:2106 ../../include/widgets.php:1390 +#: ../../Zotlabs/Module/Admin.php:2106 ../../include/widgets.php:1484 msgid "Profile Fields" msgstr "Profielvelden" @@ -4595,57 +4502,384 @@ msgstr "Extra (handmatig toegevoegde) velden" msgid "Create Custom Field" msgstr "Extra velden aanmaken" -#: ../../Zotlabs/Module/Appman.php:37 ../../Zotlabs/Module/Appman.php:53 -msgid "App installed." -msgstr "App geïnstalleerd" +#: ../../Zotlabs/Module/New_channel.php:128 +#: ../../Zotlabs/Module/Register.php:231 +msgid "Name or caption" +msgstr "Naam" -#: ../../Zotlabs/Module/Appman.php:46 -msgid "Malformed app." -msgstr "Misvormde app." +#: ../../Zotlabs/Module/New_channel.php:128 +#: ../../Zotlabs/Module/Register.php:231 +msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\"" +msgstr "Voorbeelden: \"Jan Pietersen\", \"Willems weblog\", \"Computerforum\"" -#: ../../Zotlabs/Module/Appman.php:104 -msgid "Embed code" -msgstr "Insluitcode" +#: ../../Zotlabs/Module/New_channel.php:130 +#: ../../Zotlabs/Module/Register.php:233 +msgid "Choose a short nickname" +msgstr "Korte bijnaam" -#: ../../Zotlabs/Module/Appman.php:110 ../../include/widgets.php:107 -msgid "Edit App" -msgstr "App bewerken" +#: ../../Zotlabs/Module/New_channel.php:130 +#: ../../Zotlabs/Module/Register.php:233 +#, php-format +msgid "" +"Your nickname will be used to create an easy to remember channel address " +"e.g. nickname%s" +msgstr "Deze bijnaam wordt gebruikt om een makkelijk te onthouden kanaaladres van jouw kanaal aan te maken, die je dan met anderen kunt delen. Bijvoorbeeld: bijnaam%s" -#: ../../Zotlabs/Module/Appman.php:110 -msgid "Create App" -msgstr "App maken" +#: ../../Zotlabs/Module/New_channel.php:132 +#: ../../Zotlabs/Module/Register.php:235 +msgid "Channel role and privacy" +msgstr "Kanaaltype en privacy" -#: ../../Zotlabs/Module/Appman.php:115 -msgid "Name of app" -msgstr "Naam van app" +#: ../../Zotlabs/Module/New_channel.php:132 +#: ../../Zotlabs/Module/Register.php:235 +msgid "Select a channel role with your privacy requirements." +msgstr "Kies een kanaaltype met het door jou gewenste privacyniveau." -#: ../../Zotlabs/Module/Appman.php:116 -msgid "Location (URL) of app" -msgstr "Locatie (URL) van app" +#: ../../Zotlabs/Module/New_channel.php:132 +#: ../../Zotlabs/Module/Register.php:235 +msgid "Read more about roles" +msgstr "Lees meer over kanaaltypes" -#: ../../Zotlabs/Module/Appman.php:118 -msgid "Photo icon URL" -msgstr "URL van pictogram" +#: ../../Zotlabs/Module/New_channel.php:135 +msgid "Create Channel" +msgstr "Kanaal aanmaken" -#: ../../Zotlabs/Module/Appman.php:118 -msgid "80 x 80 pixels - optional" -msgstr "80 x 80 pixels (optioneel)" +#: ../../Zotlabs/Module/New_channel.php:136 +msgid "" +"A channel is your identity on this network. It can represent a person, a " +"blog, or a forum to name a few. Channels can make connections with other " +"channels to share information with highly detailed permissions." +msgstr "Een kanaal is jouw identiteit in dit netwerk. Het kan bijvoorbeeld een persoon, een blog of een forum vertegenwoordigen. Door met elkaar te verbinden kunnen kanalen, met behulp van uitgebreide permissies, informatie uitwisselen." -#: ../../Zotlabs/Module/Appman.php:119 -msgid "Categories (optional, comma separated list)" -msgstr "Categorieën (optioneel, door komma's gescheiden lijst)" +#: ../../Zotlabs/Module/New_channel.php:137 +msgid "" +"or import an existing channel from another location." +msgstr "Of importeer een bestaand kanaal vanaf een andere locatie" -#: ../../Zotlabs/Module/Appman.php:120 -msgid "Version ID" -msgstr "Versie-ID" +#: ../../Zotlabs/Module/Ping.php:265 +msgid "sent you a private message" +msgstr "stuurde jou een privébericht" -#: ../../Zotlabs/Module/Appman.php:121 -msgid "Price of app" -msgstr "Prijs van de app" +#: ../../Zotlabs/Module/Ping.php:313 +msgid "added your channel" +msgstr "voegde jouw kanaal toe" -#: ../../Zotlabs/Module/Appman.php:122 -msgid "Location (URL) to purchase app" -msgstr "Locatie (URL) om de app aan te schaffen" +#: ../../Zotlabs/Module/Ping.php:323 +msgid "g A l F d" +msgstr "G:i, l d F" + +#: ../../Zotlabs/Module/Ping.php:346 +msgid "[today]" +msgstr "[vandaag]" + +#: ../../Zotlabs/Module/Ping.php:355 +msgid "posted an event" +msgstr "plaatste een gebeurtenis" + +#: ../../Zotlabs/Module/Notifications.php:30 +msgid "Invalid request identifier." +msgstr "Ongeldige verzoek identificator (request identifier)" + +#: ../../Zotlabs/Module/Notifications.php:39 +msgid "Discard" +msgstr "Annuleren" + +#: ../../Zotlabs/Module/Notifications.php:103 ../../include/nav.php:193 +msgid "Mark all system notifications seen" +msgstr "Markeer alle systeemnotificaties als bekeken" + +#: ../../Zotlabs/Module/Poke.php:168 ../../Zotlabs/Lib/Apps.php:228 +#: ../../include/conversation.php:963 +msgid "Poke" +msgstr "Aanstoten" + +#: ../../Zotlabs/Module/Poke.php:169 +msgid "Poke somebody" +msgstr "Iemand aanstoten" + +#: ../../Zotlabs/Module/Poke.php:172 +msgid "Poke/Prod" +msgstr "Aanstoten/porren" + +#: ../../Zotlabs/Module/Poke.php:173 +msgid "Poke, prod or do other things to somebody" +msgstr "Iemand bijvoorbeeld aanstoten of poren" + +#: ../../Zotlabs/Module/Poke.php:180 +msgid "Recipient" +msgstr "Ontvanger" + +#: ../../Zotlabs/Module/Poke.php:181 +msgid "Choose what you wish to do to recipient" +msgstr "Kies wat je met de ontvanger wil doen" + +#: ../../Zotlabs/Module/Poke.php:184 ../../Zotlabs/Module/Poke.php:185 +msgid "Make this post private" +msgstr "Maak dit bericht privé" + +#: ../../Zotlabs/Module/Oexchange.php:27 +msgid "Unable to find your hub." +msgstr "Niet in staat om je hub te vinden" + +#: ../../Zotlabs/Module/Oexchange.php:41 +msgid "Post successful." +msgstr "Verzenden bericht geslaagd." + +#: ../../Zotlabs/Module/Openid.php:30 +msgid "OpenID protocol error. No ID returned." +msgstr "OpenID-protocolfout. Geen ID terugontvangen." + +#: ../../Zotlabs/Module/Openid.php:193 ../../include/auth.php:285 +msgid "Login failed." +msgstr "Inloggen mislukt." + +#: ../../Zotlabs/Module/Profperm.php:34 ../../Zotlabs/Module/Profperm.php:63 +msgid "Invalid profile identifier." +msgstr "Ongeldige profiel-identificator" + +#: ../../Zotlabs/Module/Profperm.php:115 +msgid "Profile Visibility Editor" +msgstr "Zichtbaarheid profiel " + +#: ../../Zotlabs/Module/Profperm.php:117 ../../include/channel.php:1290 +msgid "Profile" +msgstr "Profiel" + +#: ../../Zotlabs/Module/Profperm.php:119 +msgid "Click on a contact to add or remove." +msgstr "Klik op een connectie om deze toe te voegen of te verwijderen" + +#: ../../Zotlabs/Module/Profperm.php:128 +msgid "Visible To" +msgstr "Zichtbaar voor" + +#: ../../Zotlabs/Module/Pconfig.php:26 ../../Zotlabs/Module/Pconfig.php:59 +msgid "This setting requires special processing and editing has been blocked." +msgstr "Deze instelling vereist een speciaal proces en bewerken is geblokkeerd." + +#: ../../Zotlabs/Module/Pconfig.php:48 +msgid "Configuration Editor" +msgstr "Configuratiebewerker" + +#: ../../Zotlabs/Module/Pconfig.php:49 +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 "Waarschuwing: het veranderen van sommige instellingen kunnen jouw kanaal onklaar maken. Verlaat deze pagina, tenzij je weet waar je mee bezig bent en voldoende kennis bezit over hoe je deze functies moet gebruiken. " + +#: ../../Zotlabs/Module/Probe.php:28 ../../Zotlabs/Module/Probe.php:32 +#, php-format +msgid "Fetching URL returns error: %1$s" +msgstr "Ophalen URL gaf een foutmelding terug: %1$s" + +#: ../../Zotlabs/Module/Siteinfo.php:19 +#, php-format +msgid "Version %s" +msgstr "Versie %s" + +#: ../../Zotlabs/Module/Siteinfo.php:34 +msgid "Installed plugins/addons/apps:" +msgstr "Ingeschakelde plugins en apps:" + +#: ../../Zotlabs/Module/Siteinfo.php:36 +msgid "No installed plugins/addons/apps" +msgstr "Geen ingeschakelde plugins en apps" + +#: ../../Zotlabs/Module/Siteinfo.php:49 +msgid "" +"This is a hub of $Projectname - a global cooperative network of " +"decentralized privacy enhanced websites." +msgstr "Dit is een $Projectname-hub - $Projectname is een wereldwijd coöperatief netwerk van gedecentraliseerde websites (hubs) met verbeterde privacy." + +#: ../../Zotlabs/Module/Siteinfo.php:51 +msgid "Tag: " +msgstr "Tag: " + +#: ../../Zotlabs/Module/Siteinfo.php:53 +msgid "Last background fetch: " +msgstr "Meest recente achtergrond-fetch:" + +#: ../../Zotlabs/Module/Siteinfo.php:55 +msgid "Current load average: " +msgstr "Gemiddelde systeembelasting is nu:" + +#: ../../Zotlabs/Module/Siteinfo.php:58 +msgid "Running at web location" +msgstr "Draaiend op weblocatie" + +#: ../../Zotlabs/Module/Siteinfo.php:59 +msgid "" +"Please visit hubzilla.org to learn more " +"about $Projectname." +msgstr "Bezoek hubzilla.org " + +#: ../../Zotlabs/Module/Siteinfo.php:60 +msgid "Bug reports and issues: please visit" +msgstr "Bugrapporten en andere kwesties: bezoek" + +#: ../../Zotlabs/Module/Siteinfo.php:62 +msgid "$projectname issues" +msgstr "$projectname-issues" + +#: ../../Zotlabs/Module/Siteinfo.php:63 +msgid "" +"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot " +"com" +msgstr "Voorstellen, lofbetuigingen, enz. - e-mail \"redmatrix\" at librelist - dot com" + +#: ../../Zotlabs/Module/Siteinfo.php:65 +msgid "Site Administrators" +msgstr "Hubbeheerders: " + +#: ../../Zotlabs/Module/Rmagic.php:44 +msgid "" +"We encountered a problem while logging in with the OpenID you provided. " +"Please check the correct spelling of the ID." +msgstr "We hebben een probleem ontdekt tijdens het inloggen met de OpenID die je hebt verstrekt. Controleer de ID op typefouten." + +#: ../../Zotlabs/Module/Rmagic.php:44 +msgid "The error message was:" +msgstr "Het foutbericht was:" + +#: ../../Zotlabs/Module/Rmagic.php:48 +msgid "Authentication failed." +msgstr "Authenticatie mislukt." + +#: ../../Zotlabs/Module/Rmagic.php:88 +msgid "Remote Authentication" +msgstr "Authenticatie op afstand" + +#: ../../Zotlabs/Module/Rmagic.php:89 +msgid "Enter your channel address (e.g. channel@example.com)" +msgstr "Vul jouw kanaaladres in (bijv. channel@example.com)" + +#: ../../Zotlabs/Module/Rmagic.php:90 +msgid "Authenticate" +msgstr "Authenticeren" + +#: ../../Zotlabs/Module/Pubsites.php:22 ../../include/widgets.php:1337 +msgid "Public Hubs" +msgstr "Openbare hubs" + +#: ../../Zotlabs/Module/Pubsites.php:25 +msgid "" +"The listed hubs allow public registration for the $Projectname network. All " +"hubs in the network are interlinked so membership on any of them conveys " +"membership in the network as a whole. Some hubs may require subscription or " +"provide tiered service plans. The hub itself may provide " +"additional details." +msgstr "Op de hier weergegeven hubs kan iedereen zich voor het $Projectname-netwerk aanmelden. Alle hubs in het netwerk zijn met elkaar verbonden, dus maakt het qua lidmaatschap niet uit waar je je aanmeldt. Op sommige hubs heb je eerst goedkeuring nodig en sommige hubs vereisen een financiële tegemoetkoming voor bepaalde uitbreidingen. Mogelijk wordt hierover op de hub zelf meer informatie gegeven." + +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Hub URL" +msgstr "Hub-URL" + +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Access Type" +msgstr "Toegangs-
 type" + +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Registration Policy" +msgstr "Registratie-
 beleid" + +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Stats" +msgstr "Stats" + +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Software" +msgstr "Software" + +#: ../../Zotlabs/Module/Pubsites.php:31 ../../Zotlabs/Module/Ratings.php:103 +#: ../../include/conversation.php:962 +msgid "Ratings" +msgstr "Beoordelingen" + +#: ../../Zotlabs/Module/Pubsites.php:38 +msgid "Rate" +msgstr "Beoordeel" + +#: ../../Zotlabs/Module/Profile_photo.php:186 +msgid "" +"Shift-reload the page or clear browser cache if the new photo does not " +"display immediately." +msgstr "Vernieuw de pagina met shift+R of shift+F5, of leeg je browserbuffer, wanneer de nieuwe foto niet meteen wordt weergegeven." + +#: ../../Zotlabs/Module/Profile_photo.php:389 +msgid "Upload Profile Photo" +msgstr "Profielfoto uploaden" + +#: ../../Zotlabs/Module/Blocks.php:97 ../../Zotlabs/Module/Blocks.php:155 +#: ../../Zotlabs/Module/Editblock.php:108 +msgid "Block Name" +msgstr "Bloknaam" + +#: ../../Zotlabs/Module/Blocks.php:154 ../../include/text.php:2238 +msgid "Blocks" +msgstr "Blokken" + +#: ../../Zotlabs/Module/Blocks.php:156 +msgid "Block Title" +msgstr "Bloktitel" + +#: ../../Zotlabs/Module/Rate.php:160 +msgid "Website:" +msgstr "Website:" + +#: ../../Zotlabs/Module/Rate.php:163 +#, php-format +msgid "Remote Channel [%s] (not yet known on this site)" +msgstr "Kanaal op afstand [%s] (nog niet op deze hub bekend)" + +#: ../../Zotlabs/Module/Rate.php:164 +msgid "Rating (this information is public)" +msgstr "Beoordeling (deze informatie is openbaar)" + +#: ../../Zotlabs/Module/Rate.php:165 +msgid "Optionally explain your rating (this information is public)" +msgstr "Verklaar jouw beoordeling (niet verplicht, deze informatie is openbaar)" + +#: ../../Zotlabs/Module/Ratings.php:73 +msgid "No ratings" +msgstr "Geen beoordelingen" + +#: ../../Zotlabs/Module/Ratings.php:104 +msgid "Rating: " +msgstr "Beoordeling: " + +#: ../../Zotlabs/Module/Ratings.php:105 +msgid "Website: " +msgstr "Website: " + +#: ../../Zotlabs/Module/Ratings.php:107 +msgid "Description: " +msgstr "Omschrijving: " + +#: ../../Zotlabs/Module/Apps.php:47 ../../include/nav.php:165 +#: ../../include/widgets.php:102 +msgid "Apps" +msgstr "Apps" + +#: ../../Zotlabs/Module/Editblock.php:124 ../../include/conversation.php:1243 +msgid "Title (optional)" +msgstr "Titel (optioneel)" + +#: ../../Zotlabs/Module/Editblock.php:133 +msgid "Edit Block" +msgstr "Blok bewerken" + +#: ../../Zotlabs/Module/Common.php:14 +msgid "No channel." +msgstr "Geen kanaal." + +#: ../../Zotlabs/Module/Common.php:43 +msgid "Common connections" +msgstr "Veel voorkomende connecties" + +#: ../../Zotlabs/Module/Common.php:48 +msgid "No connections in common." +msgstr "Geen gemeenschappelijke connecties." #: ../../Zotlabs/Module/Rbmark.php:94 msgid "Select a bookmark folder" @@ -4750,120 +4984,154 @@ msgstr "Ja" msgid "Membership on this site is by invitation only." msgstr "Registreren op deze $Projectname-hub kan alleen op uitnodiging." -#: ../../Zotlabs/Module/Register.php:262 ../../include/nav.php:147 -#: ../../boot.php:1685 +#: ../../Zotlabs/Module/Register.php:262 ../../include/nav.php:149 +#: ../../boot.php:1686 msgid "Register" msgstr "Registreren" -#: ../../Zotlabs/Module/Register.php:262 -msgid "Proceed to create your first channel" -msgstr "Volgende stap: aanmaken van jouw eerste kanaal" +#: ../../Zotlabs/Module/Register.php:263 +msgid "" +"This site may require email verification after submitting this form. If you " +"are returned to a login page, please check your email for instructions." +msgstr "Mogelijk moet op deze hub eerst jouw e-mail geverifieerd worden. Wanneer je na het indienen van dit formulier op de inlogpagina terecht komt, dan dien je jouw e-mail te controleren voor instructies. Controleer eventueel ook jouw spamfolder." #: ../../Zotlabs/Module/Regmod.php:15 msgid "Please login." msgstr "Inloggen." -#: ../../Zotlabs/Module/Removeaccount.php:34 +#: ../../Zotlabs/Module/Removeaccount.php:35 msgid "" "Account removals are not allowed within 48 hours of changing the account " "password." msgstr "Het verwijderen van een account is niet toegestaan binnen 48 uur nadat het wachtwoord is veranderd." -#: ../../Zotlabs/Module/Removeaccount.php:56 +#: ../../Zotlabs/Module/Removeaccount.php:57 msgid "Remove This Account" msgstr "Verwijder dit account" -#: ../../Zotlabs/Module/Removeaccount.php:57 -#: ../../Zotlabs/Module/Removeme.php:59 +#: ../../Zotlabs/Module/Removeaccount.php:58 +#: ../../Zotlabs/Module/Removeme.php:61 msgid "WARNING: " msgstr "WAARSCHUWING: " -#: ../../Zotlabs/Module/Removeaccount.php:57 +#: ../../Zotlabs/Module/Removeaccount.php:58 msgid "" "This account and all its channels will be completely removed from the " "network. " msgstr "Dit account en al zijn kanalen worden volledig uit het $Projectname-netwerk verwijderd." -#: ../../Zotlabs/Module/Removeaccount.php:57 -#: ../../Zotlabs/Module/Removeme.php:59 +#: ../../Zotlabs/Module/Removeaccount.php:58 +#: ../../Zotlabs/Module/Removeme.php:61 msgid "This action is permanent and can not be undone!" msgstr "Deze handeling is van permanente aard en kan niet meer worden teruggedraaid!" -#: ../../Zotlabs/Module/Removeaccount.php:58 -#: ../../Zotlabs/Module/Removeme.php:60 +#: ../../Zotlabs/Module/Removeaccount.php:59 +#: ../../Zotlabs/Module/Removeme.php:62 msgid "Please enter your password for verification:" msgstr "Vul je wachtwoord in ter verificatie:" -#: ../../Zotlabs/Module/Removeaccount.php:59 +#: ../../Zotlabs/Module/Removeaccount.php:60 msgid "" "Remove this account, all its channels and all its channel clones from the " "network" msgstr "Dit account, al zijn kanalen en alle klonen van zijn kanalen uit het $Projectname-netwerk verwijderen" -#: ../../Zotlabs/Module/Removeaccount.php:59 +#: ../../Zotlabs/Module/Removeaccount.php:60 msgid "" "By default only the instances of the channels located on this hub will be " "removed from the network" msgstr "Standaard worden alleen de kanalen die zich op deze hub bevinden uit het $Projectname-netwerk verwijderd" -#: ../../Zotlabs/Module/Removeaccount.php:60 -#: ../../Zotlabs/Module/Settings.php:705 +#: ../../Zotlabs/Module/Removeaccount.php:61 +#: ../../Zotlabs/Module/Settings.php:759 msgid "Remove Account" msgstr "Account verwijderen" -#: ../../Zotlabs/Module/Removeme.php:33 +#: ../../Zotlabs/Module/Removeme.php:35 msgid "" "Channel removals are not allowed within 48 hours of changing the account " "password." msgstr "Het verwijderen van een kanaal is niet toegestaan binnen 48 uur nadat het wachtwoord van het account is veranderd." -#: ../../Zotlabs/Module/Removeme.php:58 +#: ../../Zotlabs/Module/Removeme.php:60 msgid "Remove This Channel" msgstr "Verwijder dit kanaal" -#: ../../Zotlabs/Module/Removeme.php:59 +#: ../../Zotlabs/Module/Removeme.php:61 msgid "This channel will be completely removed from the network. " msgstr "Dit kanaal wordt volledig uit het $Projectname-netwerk verwijderd." -#: ../../Zotlabs/Module/Removeme.php:61 +#: ../../Zotlabs/Module/Removeme.php:63 msgid "Remove this channel and all its clones from the network" msgstr "Dit kanaal en alle klonen hiervan uit het $Projectname-netwerk verwijderen" -#: ../../Zotlabs/Module/Removeme.php:61 +#: ../../Zotlabs/Module/Removeme.php:63 msgid "" "By default only the instance of the channel located on this hub will be " "removed from the network" msgstr "Standaard wordt alleen het kanaal dat zich op deze hub bevindt uit het $Projectname-netwerk verwijderd" -#: ../../Zotlabs/Module/Removeme.php:62 ../../Zotlabs/Module/Settings.php:1124 +#: ../../Zotlabs/Module/Removeme.php:64 ../../Zotlabs/Module/Settings.php:1219 msgid "Remove Channel" msgstr "Kanaal verwijderen" -#: ../../Zotlabs/Module/Rmagic.php:44 +#: ../../Zotlabs/Module/Uexport.php:55 ../../Zotlabs/Module/Uexport.php:56 +msgid "Export Channel" +msgstr "Kanaal exporteren" + +#: ../../Zotlabs/Module/Uexport.php:57 msgid "" -"We encountered a problem while logging in with the OpenID you provided. " -"Please check the correct spelling of the ID." -msgstr "We hebben een probleem ontdekt tijdens het inloggen met de OpenID die je hebt verstrekt. Controleer de ID op typefouten." +"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 "Exporteer de basisinformatie van jouw kanaal naar een bestand. Dit fungeert als een back-up van jouw connecties, permissies, profiel en basisgegevens, die gebruikt kan worden om op een nieuwe hub jouw gegevens te importeren. Deze back-up bevat echter niet de inhoud van jouw kanaal." -#: ../../Zotlabs/Module/Rmagic.php:44 -msgid "The error message was:" -msgstr "Het foutbericht was:" +#: ../../Zotlabs/Module/Uexport.php:58 +msgid "Export Content" +msgstr "Inhoud exporteren" -#: ../../Zotlabs/Module/Rmagic.php:48 -msgid "Authentication failed." -msgstr "Authenticatie mislukt." +#: ../../Zotlabs/Module/Uexport.php:59 +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 "Exporteer informatie en recente inhoud van jouw kanaal naar een JSON-back-up, wat kan worden gebruikt om jouw kanaal te herstellen of te importeren op een andere hub. Dit slaat al jouw connecties, permissies, profielgegevens en enkele maanden aan inhoud van jouw kanaal op. Dit bestand kan ZEER groot worden. Wees geduldig - het kan enkele minuten duren voordat de download begint." -#: ../../Zotlabs/Module/Rmagic.php:88 -msgid "Remote Authentication" -msgstr "Authenticatie op afstand" +#: ../../Zotlabs/Module/Uexport.php:60 +msgid "Export your posts from a given year." +msgstr "Exporteer jouw berichten uit een bepaald jaar." -#: ../../Zotlabs/Module/Rmagic.php:89 -msgid "Enter your channel address (e.g. channel@example.com)" -msgstr "Vul jouw kanaaladres in (bijv. channel@example.com)" +#: ../../Zotlabs/Module/Uexport.php:62 +msgid "" +"You may also export your posts and conversations for a particular year or " +"month. Adjust the date in your browser location bar to select other dates. " +"If the export fails (possibly due to memory exhaustion on your server hub), " +"please try again selecting a more limited date range." +msgstr "Je kan ook berichten en conversaties uit een bepaald jaar of van een bepaalde maand exporteren. Verander de datum in de adresbalk van jouw webbrowser om andere jaren en maanden te selecteren. Wanneer het exporteren mislukt (waarschijnlijk door een gebrek aan beschikbaar servergeheugen), probeer het dan nogmaals met een beperkter tijdvak." -#: ../../Zotlabs/Module/Rmagic.php:90 -msgid "Authenticate" -msgstr "Authenticeren" +#: ../../Zotlabs/Module/Uexport.php:63 +#, php-format +msgid "" +"To select all posts for a given year, such as this year, visit %2$s" +msgstr "Bezoek %2$s om alle berichten van bijvoorbeeld dit jaar te selecteren. " + +#: ../../Zotlabs/Module/Uexport.php:64 +#, php-format +msgid "" +"To select all posts for a given month, such as January of this year, visit " +"%2$s" +msgstr "Bezoek %2$s om alle berichten van bijvoorbeeld januari dit jaar te selecteren." + +#: ../../Zotlabs/Module/Uexport.php:65 +#, php-format +msgid "" +"These content files may be imported or restored by visiting %2$s on any site containing your channel. For best results" +" please import or restore these in date order (oldest first)." +msgstr "Deze back-up-bestanden kunnen geïmporteerd of hersteld worden door op jouw hub en met jouw kanaal %2$s te bezoeken. Voor het beste resultaat kan je de bestanden in chronologische volgorde importeren of herstellen." #: ../../Zotlabs/Module/Search.php:216 #, php-format @@ -4879,609 +5147,652 @@ msgstr "Zoekresultaten voor %s" msgid "No service class restrictions found." msgstr "Geen abonnementsbeperkingen gevonden." -#: ../../Zotlabs/Module/Settings.php:69 +#: ../../Zotlabs/Module/Settings.php:64 msgid "Name is required" msgstr "Naam is vereist" -#: ../../Zotlabs/Module/Settings.php:73 +#: ../../Zotlabs/Module/Settings.php:68 msgid "Key and Secret are required" msgstr "Key en secret zijn vereist" -#: ../../Zotlabs/Module/Settings.php:225 +#: ../../Zotlabs/Module/Settings.php:138 +#, php-format +msgid "This channel is limited to %d tokens" +msgstr "Dit kanaal heeft een limiet van %d tokens" + +#: ../../Zotlabs/Module/Settings.php:144 +msgid "Name and Password are required." +msgstr "Naam en wachtwoord zijn vereist" + +#: ../../Zotlabs/Module/Settings.php:168 +msgid "Token saved." +msgstr "Token opgeslagen." + +#: ../../Zotlabs/Module/Settings.php:274 msgid "Not valid email." msgstr "Geen geldig e-mailadres." -#: ../../Zotlabs/Module/Settings.php:228 +#: ../../Zotlabs/Module/Settings.php:277 msgid "Protected email address. Cannot change to that email." msgstr "Beschermd e-mailadres. Kan dat e-mailadres niet gebruiken." -#: ../../Zotlabs/Module/Settings.php:237 +#: ../../Zotlabs/Module/Settings.php:286 msgid "System failure storing new email. Please try again." msgstr "Systeemfout opslaan van nieuwe e-mail. Probeer het nog een keer." -#: ../../Zotlabs/Module/Settings.php:254 +#: ../../Zotlabs/Module/Settings.php:303 msgid "Password verification failed." msgstr "Wachtwoordverificatie mislukt" -#: ../../Zotlabs/Module/Settings.php:261 +#: ../../Zotlabs/Module/Settings.php:310 msgid "Passwords do not match. Password unchanged." msgstr "Wachtwoorden komen niet overeen. Wachtwoord onveranderd." -#: ../../Zotlabs/Module/Settings.php:265 +#: ../../Zotlabs/Module/Settings.php:314 msgid "Empty passwords are not allowed. Password unchanged." msgstr "Lege wachtwoorden zijn niet toegestaan. Wachtwoord onveranderd." -#: ../../Zotlabs/Module/Settings.php:279 +#: ../../Zotlabs/Module/Settings.php:328 msgid "Password changed." msgstr "Wachtwoord veranderd." -#: ../../Zotlabs/Module/Settings.php:281 +#: ../../Zotlabs/Module/Settings.php:330 msgid "Password update failed. Please try again." msgstr "Bijwerken wachtwoord mislukt. Probeer opnieuw." -#: ../../Zotlabs/Module/Settings.php:525 +#: ../../Zotlabs/Module/Settings.php:579 msgid "Settings updated." msgstr "Instellingen bijgewerkt." -#: ../../Zotlabs/Module/Settings.php:589 ../../Zotlabs/Module/Settings.php:615 -#: ../../Zotlabs/Module/Settings.php:651 +#: ../../Zotlabs/Module/Settings.php:643 ../../Zotlabs/Module/Settings.php:669 +#: ../../Zotlabs/Module/Settings.php:705 msgid "Add application" msgstr "Applicatie toevoegen" -#: ../../Zotlabs/Module/Settings.php:592 +#: ../../Zotlabs/Module/Settings.php:646 msgid "Name of application" msgstr "Naam van applicatie" -#: ../../Zotlabs/Module/Settings.php:593 ../../Zotlabs/Module/Settings.php:619 +#: ../../Zotlabs/Module/Settings.php:647 ../../Zotlabs/Module/Settings.php:673 msgid "Consumer Key" msgstr "Consumer key" -#: ../../Zotlabs/Module/Settings.php:593 ../../Zotlabs/Module/Settings.php:594 +#: ../../Zotlabs/Module/Settings.php:647 ../../Zotlabs/Module/Settings.php:648 msgid "Automatically generated - change if desired. Max length 20" msgstr "Automatische gegenereerd - verander wanneer gewenst. Maximale lengte is 20" -#: ../../Zotlabs/Module/Settings.php:594 ../../Zotlabs/Module/Settings.php:620 +#: ../../Zotlabs/Module/Settings.php:648 ../../Zotlabs/Module/Settings.php:674 msgid "Consumer Secret" msgstr "Consumer secret" -#: ../../Zotlabs/Module/Settings.php:595 ../../Zotlabs/Module/Settings.php:621 +#: ../../Zotlabs/Module/Settings.php:649 ../../Zotlabs/Module/Settings.php:675 msgid "Redirect" msgstr "Redirect/doorverwijzing" -#: ../../Zotlabs/Module/Settings.php:595 +#: ../../Zotlabs/Module/Settings.php:649 msgid "" "Redirect URI - leave blank unless your application specifically requires " "this" msgstr "URI voor redirect - laat leeg, behalve wanneer de applicatie dit vereist" -#: ../../Zotlabs/Module/Settings.php:596 ../../Zotlabs/Module/Settings.php:622 +#: ../../Zotlabs/Module/Settings.php:650 ../../Zotlabs/Module/Settings.php:676 msgid "Icon url" msgstr "Pictogram-URL" -#: ../../Zotlabs/Module/Settings.php:596 ../../Zotlabs/Module/Sources.php:112 +#: ../../Zotlabs/Module/Settings.php:650 ../../Zotlabs/Module/Sources.php:112 #: ../../Zotlabs/Module/Sources.php:147 msgid "Optional" msgstr "Optioneel" -#: ../../Zotlabs/Module/Settings.php:607 +#: ../../Zotlabs/Module/Settings.php:661 msgid "Application not found." msgstr "Applicatie niet gevonden." -#: ../../Zotlabs/Module/Settings.php:650 +#: ../../Zotlabs/Module/Settings.php:704 msgid "Connected Apps" msgstr "Verbonden applicaties" -#: ../../Zotlabs/Module/Settings.php:654 +#: ../../Zotlabs/Module/Settings.php:708 msgid "Client key starts with" msgstr "Client key begint met" -#: ../../Zotlabs/Module/Settings.php:655 +#: ../../Zotlabs/Module/Settings.php:709 msgid "No name" msgstr "Geen naam" -#: ../../Zotlabs/Module/Settings.php:656 +#: ../../Zotlabs/Module/Settings.php:710 msgid "Remove authorization" msgstr "Autorisatie verwijderen" -#: ../../Zotlabs/Module/Settings.php:669 +#: ../../Zotlabs/Module/Settings.php:723 msgid "No feature settings configured" msgstr "Geen plugin-instellingen aanwezig" -#: ../../Zotlabs/Module/Settings.php:676 +#: ../../Zotlabs/Module/Settings.php:730 msgid "Feature/Addon Settings" msgstr "Plugin-instellingen" -#: ../../Zotlabs/Module/Settings.php:699 +#: ../../Zotlabs/Module/Settings.php:753 msgid "Account Settings" msgstr "Account-instellingen" -#: ../../Zotlabs/Module/Settings.php:700 +#: ../../Zotlabs/Module/Settings.php:754 msgid "Current Password" msgstr "Huidig wachtwoord" -#: ../../Zotlabs/Module/Settings.php:701 +#: ../../Zotlabs/Module/Settings.php:755 msgid "Enter New Password" msgstr "Nieuw wachtwoord invoeren" -#: ../../Zotlabs/Module/Settings.php:702 +#: ../../Zotlabs/Module/Settings.php:756 msgid "Confirm New Password" msgstr "Nieuw wachtwoord bevestigen" -#: ../../Zotlabs/Module/Settings.php:702 +#: ../../Zotlabs/Module/Settings.php:756 msgid "Leave password fields blank unless changing" msgstr "Laat de wachtwoordvelden leeg, behalve wanneer je deze wil veranderen" -#: ../../Zotlabs/Module/Settings.php:704 -#: ../../Zotlabs/Module/Settings.php:1041 +#: ../../Zotlabs/Module/Settings.php:758 +#: ../../Zotlabs/Module/Settings.php:1136 msgid "Email Address:" msgstr "E-mailadres:" -#: ../../Zotlabs/Module/Settings.php:706 +#: ../../Zotlabs/Module/Settings.php:760 msgid "Remove this account including all its channels" msgstr "Dit account en al zijn kanalen verwijderen" -#: ../../Zotlabs/Module/Settings.php:729 +#: ../../Zotlabs/Module/Settings.php:789 +msgid "" +"Use this form to create temporary access identifiers to share things with " +"non-members. These identities may be used in Access Control Lists and " +"visitors may login using these credentials to access the private content." +msgstr "Gebruik dit formulier om tijdelijke identiteiten aan te maken, waarmee je bepaalde informatie met niet-leden kan delen. Deze identiteiten kunnen onder Permissies (handmatige selectie) worden gebruikt. Gasten kunnen inloggen met onderstaande gegevens om zo toegang te krijgen tot de privéinhoud." + +#: ../../Zotlabs/Module/Settings.php:791 +msgid "" +"You may also provide dropbox style access links to friends and " +"associates by adding the Login Password to any specific site URL as shown. " +"Examples:" +msgstr "Je kan ook dropbox-achtige links aan mensen geven door bovenstaand wachtwoord op onderstaande manier aan een hub-URL toe te voegen. Voorbeelden:" + +#: ../../Zotlabs/Module/Settings.php:796 ../../include/widgets.php:614 +msgid "Guest Access Tokens" +msgstr "Gasttoegang" + +#: ../../Zotlabs/Module/Settings.php:803 +msgid "Login Name" +msgstr "Inlognaam" + +#: ../../Zotlabs/Module/Settings.php:804 +msgid "Login Password" +msgstr "Wachtwoord:" + +#: ../../Zotlabs/Module/Settings.php:805 +msgid "Expires (yyyy-mm-dd)" +msgstr "Geldig t/m (yyyy-mm-dd)" + +#: ../../Zotlabs/Module/Settings.php:830 msgid "Additional Features" msgstr "Extra functies" -#: ../../Zotlabs/Module/Settings.php:753 +#: ../../Zotlabs/Module/Settings.php:854 msgid "Connector Settings" msgstr "Instellingen externe koppelingen" -#: ../../Zotlabs/Module/Settings.php:792 +#: ../../Zotlabs/Module/Settings.php:893 msgid "No special theme for mobile devices" msgstr "Geen speciaal thema voor mobiele apparaten" -#: ../../Zotlabs/Module/Settings.php:795 +#: ../../Zotlabs/Module/Settings.php:896 #, php-format msgid "%s - (Experimental)" msgstr "%s - (experimenteel)" -#: ../../Zotlabs/Module/Settings.php:837 +#: ../../Zotlabs/Module/Settings.php:938 msgid "Display Settings" msgstr "Weergave-instellingen" -#: ../../Zotlabs/Module/Settings.php:838 +#: ../../Zotlabs/Module/Settings.php:939 msgid "Theme Settings" msgstr "Thema-instellingen" -#: ../../Zotlabs/Module/Settings.php:839 +#: ../../Zotlabs/Module/Settings.php:940 msgid "Custom Theme Settings" msgstr "Handmatige thema-instellingen" -#: ../../Zotlabs/Module/Settings.php:840 +#: ../../Zotlabs/Module/Settings.php:941 msgid "Content Settings" msgstr "Inhoudsinstellingen" -#: ../../Zotlabs/Module/Settings.php:846 +#: ../../Zotlabs/Module/Settings.php:947 msgid "Display Theme:" msgstr "Gebruik thema:" -#: ../../Zotlabs/Module/Settings.php:847 +#: ../../Zotlabs/Module/Settings.php:948 msgid "Mobile Theme:" msgstr "Mobiel thema:" -#: ../../Zotlabs/Module/Settings.php:848 +#: ../../Zotlabs/Module/Settings.php:949 msgid "Preload images before rendering the page" msgstr "Afbeeldingen laden voordat de pagina wordt weergegeven" -#: ../../Zotlabs/Module/Settings.php:848 +#: ../../Zotlabs/Module/Settings.php:949 msgid "" "The subjective page load time will be longer but the page will be ready when" " displayed" msgstr "De laadtijd van een pagina lijkt langer, maar de pagina is wel meteen helemaal geladen wanneer deze wordt weergeven" -#: ../../Zotlabs/Module/Settings.php:849 +#: ../../Zotlabs/Module/Settings.php:950 msgid "Enable user zoom on mobile devices" msgstr "Inzoomen op smartphones en tablets toestaan" -#: ../../Zotlabs/Module/Settings.php:850 +#: ../../Zotlabs/Module/Settings.php:951 msgid "Update browser every xx seconds" msgstr "Ververs de webbrowser om de zoveel seconde" -#: ../../Zotlabs/Module/Settings.php:850 +#: ../../Zotlabs/Module/Settings.php:951 msgid "Minimum of 10 seconds, no maximum" msgstr "Minimaal 10 seconde, geen maximum" -#: ../../Zotlabs/Module/Settings.php:851 +#: ../../Zotlabs/Module/Settings.php:952 msgid "Maximum number of conversations to load at any time:" msgstr "Maximaal aantal conversaties die per keer geladen worden:" -#: ../../Zotlabs/Module/Settings.php:851 +#: ../../Zotlabs/Module/Settings.php:952 msgid "Maximum of 100 items" msgstr "Maximaal 100 conversaties" -#: ../../Zotlabs/Module/Settings.php:852 +#: ../../Zotlabs/Module/Settings.php:953 msgid "Show emoticons (smilies) as images" msgstr "Toon emoticons (smilies) als afbeeldingen" -#: ../../Zotlabs/Module/Settings.php:853 +#: ../../Zotlabs/Module/Settings.php:954 msgid "Link post titles to source" msgstr "Berichtkoppen naar originele locatie linken" -#: ../../Zotlabs/Module/Settings.php:854 +#: ../../Zotlabs/Module/Settings.php:955 msgid "System Page Layout Editor - (advanced)" msgstr "Lay-out bewerken van systeempagina's (geavanceerd)" -#: ../../Zotlabs/Module/Settings.php:857 +#: ../../Zotlabs/Module/Settings.php:958 msgid "Use blog/list mode on channel page" msgstr "Gebruik blog/lijst-modus op kanaalpagina" -#: ../../Zotlabs/Module/Settings.php:857 ../../Zotlabs/Module/Settings.php:858 +#: ../../Zotlabs/Module/Settings.php:958 ../../Zotlabs/Module/Settings.php:959 msgid "(comments displayed separately)" msgstr "(reacties worden afzonderlijk weergeven)" -#: ../../Zotlabs/Module/Settings.php:858 +#: ../../Zotlabs/Module/Settings.php:959 msgid "Use blog/list mode on grid page" msgstr "Gebruik blog/lijst-modus op gridpagina" -#: ../../Zotlabs/Module/Settings.php:859 +#: ../../Zotlabs/Module/Settings.php:960 msgid "Channel page max height of content (in pixels)" msgstr "Maximale hoogte berichtinhoud op kanaalpagina (in pixels)" -#: ../../Zotlabs/Module/Settings.php:859 ../../Zotlabs/Module/Settings.php:860 +#: ../../Zotlabs/Module/Settings.php:960 ../../Zotlabs/Module/Settings.php:961 msgid "click to expand content exceeding this height" msgstr "klik om inhoud uit te klappen die deze hoogte overschrijdt" -#: ../../Zotlabs/Module/Settings.php:860 +#: ../../Zotlabs/Module/Settings.php:961 msgid "Grid page max height of content (in pixels)" msgstr "Maximale hoogte berichtinhoud op gridpagina (in pixels)" -#: ../../Zotlabs/Module/Settings.php:894 +#: ../../Zotlabs/Module/Settings.php:990 msgid "Nobody except yourself" msgstr "Niemand, behalve jezelf" -#: ../../Zotlabs/Module/Settings.php:895 +#: ../../Zotlabs/Module/Settings.php:991 msgid "Only those you specifically allow" msgstr "Alleen connecties met uitdrukkelijke toestemming" -#: ../../Zotlabs/Module/Settings.php:896 +#: ../../Zotlabs/Module/Settings.php:992 msgid "Approved connections" msgstr "Geaccepteerde connecties" -#: ../../Zotlabs/Module/Settings.php:897 +#: ../../Zotlabs/Module/Settings.php:993 msgid "Any connections" msgstr "Alle connecties" -#: ../../Zotlabs/Module/Settings.php:898 +#: ../../Zotlabs/Module/Settings.php:994 msgid "Anybody on this website" msgstr "Iedereen op deze hub" -#: ../../Zotlabs/Module/Settings.php:899 +#: ../../Zotlabs/Module/Settings.php:995 msgid "Anybody in this network" msgstr "Iedereen in dit netwerk" -#: ../../Zotlabs/Module/Settings.php:900 +#: ../../Zotlabs/Module/Settings.php:996 msgid "Anybody authenticated" msgstr "Geauthenticeerd" -#: ../../Zotlabs/Module/Settings.php:901 +#: ../../Zotlabs/Module/Settings.php:997 msgid "Anybody on the internet" msgstr "Iedereen op het internet" -#: ../../Zotlabs/Module/Settings.php:976 +#: ../../Zotlabs/Module/Settings.php:1071 msgid "Publish your default profile in the network directory" msgstr "Publiceer je standaardprofiel in de kanalengids" -#: ../../Zotlabs/Module/Settings.php:981 +#: ../../Zotlabs/Module/Settings.php:1076 msgid "Allow us to suggest you as a potential friend to new members?" msgstr "Sta ons toe om jouw kanaal als mogelijke connectie voor te stellen aan nieuwe kanalen" -#: ../../Zotlabs/Module/Settings.php:990 +#: ../../Zotlabs/Module/Settings.php:1085 msgid "Your channel address is" msgstr "Jouw kanaaladres is" -#: ../../Zotlabs/Module/Settings.php:1032 +#: ../../Zotlabs/Module/Settings.php:1127 msgid "Channel Settings" msgstr "Kanaal-instellingen" -#: ../../Zotlabs/Module/Settings.php:1039 +#: ../../Zotlabs/Module/Settings.php:1134 msgid "Basic Settings" msgstr "Basis-instellingen" -#: ../../Zotlabs/Module/Settings.php:1040 ../../include/channel.php:1140 +#: ../../Zotlabs/Module/Settings.php:1135 ../../include/channel.php:1180 msgid "Full Name:" msgstr "Volledige naam:" -#: ../../Zotlabs/Module/Settings.php:1042 +#: ../../Zotlabs/Module/Settings.php:1137 msgid "Your Timezone:" msgstr "Jouw tijdzone:" -#: ../../Zotlabs/Module/Settings.php:1043 +#: ../../Zotlabs/Module/Settings.php:1138 msgid "Default Post Location:" msgstr "Standaardlocatie bericht:" -#: ../../Zotlabs/Module/Settings.php:1043 +#: ../../Zotlabs/Module/Settings.php:1138 msgid "Geographical location to display on your posts" msgstr "Geografische locatie die bij het bericht moet worden vermeld" -#: ../../Zotlabs/Module/Settings.php:1044 +#: ../../Zotlabs/Module/Settings.php:1139 msgid "Use Browser Location:" msgstr "Locatie van webbrowser gebruiken:" -#: ../../Zotlabs/Module/Settings.php:1046 +#: ../../Zotlabs/Module/Settings.php:1141 msgid "Adult Content" msgstr "Inhoud voor volwassenen" -#: ../../Zotlabs/Module/Settings.php:1046 +#: ../../Zotlabs/Module/Settings.php:1141 msgid "" "This channel frequently or regularly publishes adult content. (Please tag " "any adult material and/or nudity with #NSFW)" msgstr "Dit kanaal publiceert regelmatig of vaak materiaal dat alleen geschikt is voor volwassenen. (Gebruik de tag #NSFW in berichten met een seksueel getinte inhoud of ander voor minderjarigen ongeschikt materiaal)" -#: ../../Zotlabs/Module/Settings.php:1048 +#: ../../Zotlabs/Module/Settings.php:1143 msgid "Security and Privacy Settings" msgstr "Veiligheids- en privacy-instellingen" -#: ../../Zotlabs/Module/Settings.php:1051 +#: ../../Zotlabs/Module/Settings.php:1146 msgid "Your permissions are already configured. Click to view/adjust" msgstr "Jouw permissies zijn al ingesteld. Klik om ze te bekijken of aan te passen." -#: ../../Zotlabs/Module/Settings.php:1053 +#: ../../Zotlabs/Module/Settings.php:1148 msgid "Hide my online presence" msgstr "Verberg mijn aanwezigheid" -#: ../../Zotlabs/Module/Settings.php:1053 +#: ../../Zotlabs/Module/Settings.php:1148 msgid "Prevents displaying in your profile that you are online" msgstr "Voorkomt dat op je kanaalpagina te zien valt dat je momenteel op $Projectname aanwezig bent" -#: ../../Zotlabs/Module/Settings.php:1055 +#: ../../Zotlabs/Module/Settings.php:1150 msgid "Simple Privacy Settings:" msgstr "Eenvoudige privacy-instellingen:" -#: ../../Zotlabs/Module/Settings.php:1056 +#: ../../Zotlabs/Module/Settings.php:1151 msgid "" "Very Public - extremely permissive (should be used with caution)" msgstr "Zeer openbaar (kanaal staat volledig open - moet met grote zorgvuldigheid gebruikt worden)" -#: ../../Zotlabs/Module/Settings.php:1057 +#: ../../Zotlabs/Module/Settings.php:1152 msgid "" "Typical - default public, privacy when desired (similar to social " "network permissions but with improved privacy)" msgstr "Normaal (standaard openbaar, maar privacy wanneer noodzakelijk - vergelijkbaar met die van sociale netwerken, maar met verbeterde privacy)" -#: ../../Zotlabs/Module/Settings.php:1058 +#: ../../Zotlabs/Module/Settings.php:1153 msgid "Private - default private, never open or public" msgstr "Privé (standaard privé en nooit openbaar)" -#: ../../Zotlabs/Module/Settings.php:1059 +#: ../../Zotlabs/Module/Settings.php:1154 msgid "Blocked - default blocked to/from everybody" msgstr "Geblokkeerd (standaard geblokkeerd naar/van iedereen)" -#: ../../Zotlabs/Module/Settings.php:1061 +#: ../../Zotlabs/Module/Settings.php:1156 msgid "Allow others to tag your posts" msgstr "Anderen toestaan om je berichten te taggen" -#: ../../Zotlabs/Module/Settings.php:1061 +#: ../../Zotlabs/Module/Settings.php:1156 msgid "" "Often used by the community to retro-actively flag inappropriate content" msgstr "Vaak in groepen/forums gebruikt om met terugwerkende kracht ongepast materiaal te markeren" -#: ../../Zotlabs/Module/Settings.php:1063 +#: ../../Zotlabs/Module/Settings.php:1158 msgid "Advanced Privacy Settings" msgstr "Geavanceerde privacy-instellingen" -#: ../../Zotlabs/Module/Settings.php:1065 +#: ../../Zotlabs/Module/Settings.php:1160 msgid "Expire other channel content after this many days" msgstr "Inhoud van andere kanalen na zoveel aantal dagen laten verlopen:" -#: ../../Zotlabs/Module/Settings.php:1065 +#: ../../Zotlabs/Module/Settings.php:1160 msgid "0 or blank to use the website limit." msgstr "0 of leeg om het standaard aantal dagen van deze hub te gebruiken." -#: ../../Zotlabs/Module/Settings.php:1065 +#: ../../Zotlabs/Module/Settings.php:1160 #, php-format msgid "This website expires after %d days." msgstr "Deze hub laat de inhoud van andere kanalen na %d dagen verlopen." -#: ../../Zotlabs/Module/Settings.php:1065 +#: ../../Zotlabs/Module/Settings.php:1160 msgid "This website does not expire imported content." msgstr "Deze hub laat de inhoud van andere kanalen niet verlopen." -#: ../../Zotlabs/Module/Settings.php:1065 +#: ../../Zotlabs/Module/Settings.php:1160 msgid "The website limit takes precedence if lower than your limit." msgstr "Wanneer de standaard aantal dagen van deze hub lager ligt dan jouw aantal, dan heeft de limiet van deze hub voorrang." -#: ../../Zotlabs/Module/Settings.php:1066 +#: ../../Zotlabs/Module/Settings.php:1161 msgid "Maximum Friend Requests/Day:" msgstr "Maximum aantal connectieverzoeken per dag:" -#: ../../Zotlabs/Module/Settings.php:1066 +#: ../../Zotlabs/Module/Settings.php:1161 msgid "May reduce spam activity" msgstr "Kan eventuele spam verminderen" -#: ../../Zotlabs/Module/Settings.php:1067 +#: ../../Zotlabs/Module/Settings.php:1162 msgid "Default Post and Publish Permissions" msgstr "Standaard permissies voor nieuwe berichten en publicaties" -#: ../../Zotlabs/Module/Settings.php:1069 +#: ../../Zotlabs/Module/Settings.php:1164 msgid "Use my default audience setting for the type of object published" msgstr "Gebruik mijn standaard privacy-instelling voor dit type publicatie" -#: ../../Zotlabs/Module/Settings.php:1072 +#: ../../Zotlabs/Module/Settings.php:1167 msgid "Channel permissions category:" msgstr "Kanaaltype en -permissies:" -#: ../../Zotlabs/Module/Settings.php:1078 +#: ../../Zotlabs/Module/Settings.php:1173 msgid "Maximum private messages per day from unknown people:" msgstr "Maximum aantal privé-berichten per dag van onbekende personen:" -#: ../../Zotlabs/Module/Settings.php:1078 +#: ../../Zotlabs/Module/Settings.php:1173 msgid "Useful to reduce spamming" msgstr "Kan eventuele spam verminderen" -#: ../../Zotlabs/Module/Settings.php:1081 +#: ../../Zotlabs/Module/Settings.php:1176 msgid "Notification Settings" msgstr "Notificatie-instellingen" -#: ../../Zotlabs/Module/Settings.php:1082 +#: ../../Zotlabs/Module/Settings.php:1177 msgid "By default post a status message when:" msgstr "Plaats automatisch een bericht wanneer:" -#: ../../Zotlabs/Module/Settings.php:1083 +#: ../../Zotlabs/Module/Settings.php:1178 msgid "accepting a friend request" msgstr "Een connectieverzoek wordt geaccepteerd" -#: ../../Zotlabs/Module/Settings.php:1084 +#: ../../Zotlabs/Module/Settings.php:1179 msgid "joining a forum/community" msgstr "Je lid wordt van een forum/groep" -#: ../../Zotlabs/Module/Settings.php:1085 +#: ../../Zotlabs/Module/Settings.php:1180 msgid "making an interesting profile change" msgstr "Er sprake is van een interessante profielwijziging" -#: ../../Zotlabs/Module/Settings.php:1086 +#: ../../Zotlabs/Module/Settings.php:1181 msgid "Send a notification email when:" msgstr "Verzend een notificatie per e-mail wanneer:" -#: ../../Zotlabs/Module/Settings.php:1087 +#: ../../Zotlabs/Module/Settings.php:1182 msgid "You receive a connection request" msgstr "Je een connectieverzoek ontvangt" -#: ../../Zotlabs/Module/Settings.php:1088 +#: ../../Zotlabs/Module/Settings.php:1183 msgid "Your connections are confirmed" msgstr "Jouw connecties zijn bevestigd" -#: ../../Zotlabs/Module/Settings.php:1089 +#: ../../Zotlabs/Module/Settings.php:1184 msgid "Someone writes on your profile wall" msgstr "Iemand iets op jouw kanaal heeft geschreven" -#: ../../Zotlabs/Module/Settings.php:1090 +#: ../../Zotlabs/Module/Settings.php:1185 msgid "Someone writes a followup comment" msgstr "Iemand een reactie schrijft" -#: ../../Zotlabs/Module/Settings.php:1091 +#: ../../Zotlabs/Module/Settings.php:1186 msgid "You receive a private message" msgstr "Je een privé-bericht ontvangt" -#: ../../Zotlabs/Module/Settings.php:1092 +#: ../../Zotlabs/Module/Settings.php:1187 msgid "You receive a friend suggestion" msgstr "Je een kanaalvoorstel ontvangt" -#: ../../Zotlabs/Module/Settings.php:1093 +#: ../../Zotlabs/Module/Settings.php:1188 msgid "You are tagged in a post" msgstr "Je expliciet in een bericht bent genoemd" -#: ../../Zotlabs/Module/Settings.php:1094 +#: ../../Zotlabs/Module/Settings.php:1189 msgid "You are poked/prodded/etc. in a post" msgstr "Je bent in een bericht aangestoten/gepord/etc." -#: ../../Zotlabs/Module/Settings.php:1097 +#: ../../Zotlabs/Module/Settings.php:1192 msgid "Show visual notifications including:" msgstr "Toon de volgende zichtbare notificaties:" -#: ../../Zotlabs/Module/Settings.php:1099 +#: ../../Zotlabs/Module/Settings.php:1194 msgid "Unseen grid activity" msgstr "Niet bekeken grid-activiteit" -#: ../../Zotlabs/Module/Settings.php:1100 +#: ../../Zotlabs/Module/Settings.php:1195 msgid "Unseen channel activity" msgstr "Niet bekeken kanaal-activiteit" -#: ../../Zotlabs/Module/Settings.php:1101 +#: ../../Zotlabs/Module/Settings.php:1196 msgid "Unseen private messages" msgstr "Niet bekeken privéberichten" -#: ../../Zotlabs/Module/Settings.php:1101 -#: ../../Zotlabs/Module/Settings.php:1106 -#: ../../Zotlabs/Module/Settings.php:1107 -#: ../../Zotlabs/Module/Settings.php:1108 +#: ../../Zotlabs/Module/Settings.php:1196 +#: ../../Zotlabs/Module/Settings.php:1201 +#: ../../Zotlabs/Module/Settings.php:1202 +#: ../../Zotlabs/Module/Settings.php:1203 msgid "Recommended" msgstr "Aanbevolen" -#: ../../Zotlabs/Module/Settings.php:1102 +#: ../../Zotlabs/Module/Settings.php:1197 msgid "Upcoming events" msgstr "Aankomende gebeurtenissen" -#: ../../Zotlabs/Module/Settings.php:1103 +#: ../../Zotlabs/Module/Settings.php:1198 msgid "Events today" msgstr "Gebeurtenissen van vandaag" -#: ../../Zotlabs/Module/Settings.php:1104 +#: ../../Zotlabs/Module/Settings.php:1199 msgid "Upcoming birthdays" msgstr "Aankomende verjaardagen" -#: ../../Zotlabs/Module/Settings.php:1104 +#: ../../Zotlabs/Module/Settings.php:1199 msgid "Not available in all themes" msgstr "Niet in alle thema's beschikbaar" -#: ../../Zotlabs/Module/Settings.php:1105 +#: ../../Zotlabs/Module/Settings.php:1200 msgid "System (personal) notifications" msgstr "(Persoonlijke) systeemnotificaties" -#: ../../Zotlabs/Module/Settings.php:1106 +#: ../../Zotlabs/Module/Settings.php:1201 msgid "System info messages" msgstr "Systeemmededelingen" -#: ../../Zotlabs/Module/Settings.php:1107 +#: ../../Zotlabs/Module/Settings.php:1202 msgid "System critical alerts" msgstr "Kritische systeemwaarschuwingen" -#: ../../Zotlabs/Module/Settings.php:1108 +#: ../../Zotlabs/Module/Settings.php:1203 msgid "New connections" msgstr "Nieuwe connecties" -#: ../../Zotlabs/Module/Settings.php:1109 +#: ../../Zotlabs/Module/Settings.php:1204 msgid "System Registrations" msgstr "Nieuwe accountregistraties op deze hub" -#: ../../Zotlabs/Module/Settings.php:1110 +#: ../../Zotlabs/Module/Settings.php:1205 msgid "" "Also show new wall posts, private messages and connections under Notices" msgstr "Toon tevens nieuwe kanaalberichten, privéberichten en connecties onder Notificaties" -#: ../../Zotlabs/Module/Settings.php:1112 +#: ../../Zotlabs/Module/Settings.php:1207 msgid "Notify me of events this many days in advance" msgstr "Herinner mij zoveel dagen van te voren aan gebeurtenissen" -#: ../../Zotlabs/Module/Settings.php:1112 +#: ../../Zotlabs/Module/Settings.php:1207 msgid "Must be greater than 0" msgstr "Moet hoger dan 0 zijn" -#: ../../Zotlabs/Module/Settings.php:1114 +#: ../../Zotlabs/Module/Settings.php:1209 msgid "Advanced Account/Page Type Settings" msgstr "Instellingen geavanceerd account/paginatype" -#: ../../Zotlabs/Module/Settings.php:1115 +#: ../../Zotlabs/Module/Settings.php:1210 msgid "Change the behaviour of this account for special situations" msgstr "Verander het gedrag van dit account voor speciale situaties" -#: ../../Zotlabs/Module/Settings.php:1118 +#: ../../Zotlabs/Module/Settings.php:1213 msgid "" "Please enable expert mode (in Settings > " "Additional features) to adjust!" msgstr "Schakel de expertmodus in (in Instellingen > Extra functies) om aan te kunnen passen!" -#: ../../Zotlabs/Module/Settings.php:1119 +#: ../../Zotlabs/Module/Settings.php:1214 msgid "Miscellaneous Settings" msgstr "Diverse instellingen" -#: ../../Zotlabs/Module/Settings.php:1120 +#: ../../Zotlabs/Module/Settings.php:1215 msgid "Default photo upload folder" msgstr "Standaard fotoalbum voor uploads" -#: ../../Zotlabs/Module/Settings.php:1120 -#: ../../Zotlabs/Module/Settings.php:1121 +#: ../../Zotlabs/Module/Settings.php:1215 +#: ../../Zotlabs/Module/Settings.php:1216 msgid "%Y - current year, %m - current month" msgstr "%Y - dit jaar, %m - deze maand" -#: ../../Zotlabs/Module/Settings.php:1121 +#: ../../Zotlabs/Module/Settings.php:1216 msgid "Default file upload folder" msgstr "Standaard bestandsmap voor uploads" -#: ../../Zotlabs/Module/Settings.php:1123 +#: ../../Zotlabs/Module/Settings.php:1218 msgid "Personal menu to display in your channel pages" msgstr "Persoonlijk menu om op je kanaalpagina's weer te geven" -#: ../../Zotlabs/Module/Settings.php:1125 +#: ../../Zotlabs/Module/Settings.php:1220 msgid "Remove this channel." msgstr "Verwijder dit kanaal." -#: ../../Zotlabs/Module/Settings.php:1126 +#: ../../Zotlabs/Module/Settings.php:1221 msgid "Firefox Share $Projectname provider" msgstr "$Projectname-service voor Firefox Share" -#: ../../Zotlabs/Module/Settings.php:1127 +#: ../../Zotlabs/Module/Settings.php:1222 msgid "Start calendar week on monday" msgstr "Begin in de agenda de week op maandag" @@ -5514,7 +5825,7 @@ msgid "" msgstr "You may need to import the file \"install/schema_xxx.sql\" manually using a database client." #: ../../Zotlabs/Module/Setup.php:204 ../../Zotlabs/Module/Setup.php:266 -#: ../../Zotlabs/Module/Setup.php:721 +#: ../../Zotlabs/Module/Setup.php:722 msgid "Please see the file \"install/INSTALL.txt\"." msgstr "Please see the file \"install/INSTALL.txt\"." @@ -5714,199 +6025,200 @@ msgid "mb_string PHP module" msgstr "mb_string PHP module" #: ../../Zotlabs/Module/Setup.php:496 -msgid "mcrypt PHP module" -msgstr "mcrypt PHP module" - -#: ../../Zotlabs/Module/Setup.php:497 msgid "xml PHP module" msgstr "xml PHP module" -#: ../../Zotlabs/Module/Setup.php:501 ../../Zotlabs/Module/Setup.php:503 +#: ../../Zotlabs/Module/Setup.php:500 ../../Zotlabs/Module/Setup.php:502 msgid "Apache mod_rewrite module" msgstr "Apache mod_rewrite module" -#: ../../Zotlabs/Module/Setup.php:501 +#: ../../Zotlabs/Module/Setup.php:500 msgid "" "Error: Apache webserver mod-rewrite module is required but not installed." msgstr "Error: Apache webserver mod-rewrite module is required but not installed." -#: ../../Zotlabs/Module/Setup.php:507 ../../Zotlabs/Module/Setup.php:510 +#: ../../Zotlabs/Module/Setup.php:506 ../../Zotlabs/Module/Setup.php:509 msgid "proc_open" msgstr "proc_open" -#: ../../Zotlabs/Module/Setup.php:507 +#: ../../Zotlabs/Module/Setup.php:506 msgid "" "Error: proc_open is required but is either not installed or has been " "disabled in php.ini" msgstr "Error: proc_open is required but is either not installed or has been disabled in php.ini" -#: ../../Zotlabs/Module/Setup.php:515 +#: ../../Zotlabs/Module/Setup.php:514 msgid "Error: libCURL PHP module required but not installed." msgstr "Error: libCURL PHP module required but not installed." -#: ../../Zotlabs/Module/Setup.php:519 +#: ../../Zotlabs/Module/Setup.php:518 msgid "" "Error: GD graphics PHP module with JPEG support required but not installed." msgstr "Error: GD graphics PHP module with JPEG support required but not installed." -#: ../../Zotlabs/Module/Setup.php:523 +#: ../../Zotlabs/Module/Setup.php:522 msgid "Error: openssl PHP module required but not installed." msgstr "Error: openssl PHP module required but not installed." -#: ../../Zotlabs/Module/Setup.php:527 +#: ../../Zotlabs/Module/Setup.php:526 msgid "" "Error: mysqli or postgres PHP module required but neither are installed." msgstr "Error: mysqli or postgres PHP module required but neither are installed." -#: ../../Zotlabs/Module/Setup.php:531 +#: ../../Zotlabs/Module/Setup.php:530 msgid "Error: mb_string PHP module required but not installed." msgstr "Error: mb_string PHP module required but not installed." -#: ../../Zotlabs/Module/Setup.php:535 -msgid "Error: mcrypt PHP module required but not installed." -msgstr "Error: mcrypt PHP module required but not installed." - -#: ../../Zotlabs/Module/Setup.php:539 +#: ../../Zotlabs/Module/Setup.php:534 msgid "Error: xml PHP module required for DAV but not installed." msgstr "Error: xml PHP module required for DAV but not installed." -#: ../../Zotlabs/Module/Setup.php:557 +#: ../../Zotlabs/Module/Setup.php:552 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 "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." -#: ../../Zotlabs/Module/Setup.php:558 +#: ../../Zotlabs/Module/Setup.php:553 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 "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." -#: ../../Zotlabs/Module/Setup.php:559 +#: ../../Zotlabs/Module/Setup.php:554 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 "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." -#: ../../Zotlabs/Module/Setup.php:560 +#: ../../Zotlabs/Module/Setup.php:555 msgid "" "You can alternatively skip this procedure and perform a manual installation." " Please see the file \"install/INSTALL.txt\" for instructions." msgstr "You can alternatively skip this procedure and perform a manual installation. Please see the file \"install/INSTALL.txt\" for instructions." -#: ../../Zotlabs/Module/Setup.php:563 +#: ../../Zotlabs/Module/Setup.php:558 msgid ".htconfig.php is writable" msgstr ".htconfig.php is writable" -#: ../../Zotlabs/Module/Setup.php:577 +#: ../../Zotlabs/Module/Setup.php:572 msgid "" "Red uses the Smarty3 template engine to render its web views. Smarty3 " "compiles templates to PHP to speed up rendering." msgstr "Red uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering." -#: ../../Zotlabs/Module/Setup.php:578 +#: ../../Zotlabs/Module/Setup.php:573 #, php-format msgid "" "In order to store these compiled templates, the web server needs to have " "write access to the directory %s under the top level web folder." msgstr "In order to store these compiled templates, the web server needs to have write access to the directory %s under the top level web folder." -#: ../../Zotlabs/Module/Setup.php:579 ../../Zotlabs/Module/Setup.php:600 +#: ../../Zotlabs/Module/Setup.php:574 ../../Zotlabs/Module/Setup.php:595 msgid "" "Please ensure that the user that your web server runs as (e.g. www-data) has" " write access to this folder." msgstr "Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder." -#: ../../Zotlabs/Module/Setup.php:580 +#: ../../Zotlabs/Module/Setup.php:575 #, 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 "Note: as a security measure, you should give the web server write access to %s only--not the template files (.tpl) that it contains." -#: ../../Zotlabs/Module/Setup.php:583 +#: ../../Zotlabs/Module/Setup.php:578 #, php-format msgid "%s is writable" msgstr "%s is writable" -#: ../../Zotlabs/Module/Setup.php:599 +#: ../../Zotlabs/Module/Setup.php:594 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" -msgstr "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" +"This software 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 "This software 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" -#: ../../Zotlabs/Module/Setup.php:603 +#: ../../Zotlabs/Module/Setup.php:598 msgid "store is writable" msgstr "store is writable" -#: ../../Zotlabs/Module/Setup.php:636 +#: ../../Zotlabs/Module/Setup.php:631 msgid "" "SSL certificate cannot be validated. Fix certificate or disable https access" " to this site." msgstr "SSL certificate cannot be validated. Fix certificate or disable https access to this hub." -#: ../../Zotlabs/Module/Setup.php:637 +#: ../../Zotlabs/Module/Setup.php:632 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 "If you have https access to your hub or allow connections to TCP port 443 (the https: port), you MUST use a browser-valid certificate. You MUST NOT use self-signed certificates!" -#: ../../Zotlabs/Module/Setup.php:638 +#: ../../Zotlabs/Module/Setup.php:633 msgid "" "This restriction is incorporated because public posts from you may for " "example contain references to images on your own hub." msgstr "This restriction is incorporated because public posts from you may for example contain references to images on your own hub." -#: ../../Zotlabs/Module/Setup.php:639 +#: ../../Zotlabs/Module/Setup.php:634 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." msgstr "If your certificate is not recognized, members of other hubs (who may themselves have valid certificates) will get a warning message on their own hub complaining about security issues." -#: ../../Zotlabs/Module/Setup.php:640 +#: ../../Zotlabs/Module/Setup.php:635 msgid "" "This can cause usability issues elsewhere (not just on your own site) so we " "must insist on this requirement." msgstr "This can cause usability issues elsewhere (not just on your own hub) so we must insist on this requirement." -#: ../../Zotlabs/Module/Setup.php:641 +#: ../../Zotlabs/Module/Setup.php:636 msgid "" "Providers are available that issue free certificates which are browser-" "valid." msgstr "Providers are available that issue free certificates which are browser-valid." -#: ../../Zotlabs/Module/Setup.php:643 +#: ../../Zotlabs/Module/Setup.php:638 +msgid "" +"If you are confident that the certificate is valid and signed by a trusted " +"authority, check to see if you have failed to install an intermediate cert. " +"These are not normally required by browsers, but are required for server-to-" +"server communications." +msgstr "If you are confident that the certificate is valid and signed by a trusted authority, check to see if you have failed to install an intermediate cert. These are not normally required by browsers, but are required for server-to-server communications." + +#: ../../Zotlabs/Module/Setup.php:641 msgid "SSL certificate validation" msgstr "SSL certificate validation" -#: ../../Zotlabs/Module/Setup.php:649 +#: ../../Zotlabs/Module/Setup.php:647 msgid "" "Url rewrite in .htaccess is not working. Check your server " "configuration.Test: " msgstr "Url rewrite in .htaccess is not working. Check your server configuration.Test: " -#: ../../Zotlabs/Module/Setup.php:652 +#: ../../Zotlabs/Module/Setup.php:650 msgid "Url rewrite is working" msgstr "Url rewrite is working" -#: ../../Zotlabs/Module/Setup.php:661 +#: ../../Zotlabs/Module/Setup.php:659 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 "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." -#: ../../Zotlabs/Module/Setup.php:685 +#: ../../Zotlabs/Module/Setup.php:683 msgid "Errors encountered creating database tables." msgstr "Errors encountered creating database tables." -#: ../../Zotlabs/Module/Setup.php:719 +#: ../../Zotlabs/Module/Setup.php:720 msgid "

What next

" msgstr "

What next

" -#: ../../Zotlabs/Module/Setup.php:720 +#: ../../Zotlabs/Module/Setup.php:721 msgid "" "IMPORTANT: You will need to [manually] setup a scheduled task for the " "poller." @@ -5928,64 +6240,62 @@ msgstr "Verwijder alle bestanden" msgid "Remove this file" msgstr "Verwijder dit bestand" -#: ../../Zotlabs/Module/Siteinfo.php:19 +#: ../../Zotlabs/Module/Thing.php:114 +msgid "Thing updated" +msgstr "Ding bijgewerkt" + +#: ../../Zotlabs/Module/Thing.php:166 +msgid "Object store: failed" +msgstr "Opslaan van ding mislukt" + +#: ../../Zotlabs/Module/Thing.php:170 +msgid "Thing added" +msgstr "Ding toegevoegd" + +#: ../../Zotlabs/Module/Thing.php:196 #, php-format -msgid "Version %s" -msgstr "Versie %s" +msgid "OBJ: %1$s %2$s %3$s" +msgstr "OBJ: %1$s %2$s %3$s" -#: ../../Zotlabs/Module/Siteinfo.php:40 -msgid "Installed plugins/addons/apps:" -msgstr "Ingeschakelde plugins en apps:" +#: ../../Zotlabs/Module/Thing.php:259 +msgid "Show Thing" +msgstr "Ding weergeven" -#: ../../Zotlabs/Module/Siteinfo.php:53 -msgid "No installed plugins/addons/apps" -msgstr "Geen ingeschakelde plugins en apps" +#: ../../Zotlabs/Module/Thing.php:266 +msgid "item not found." +msgstr "Item niet gevonden" -#: ../../Zotlabs/Module/Siteinfo.php:66 -msgid "" -"This is a hub of $Projectname - a global cooperative network of " -"decentralized privacy enhanced websites." -msgstr "Dit is een $Projectname-hub - $Projectname is een wereldwijd coöperatief netwerk van gedecentraliseerde websites (hubs) met verbeterde privacy." +#: ../../Zotlabs/Module/Thing.php:299 +msgid "Edit Thing" +msgstr "Ding bewerken" -#: ../../Zotlabs/Module/Siteinfo.php:68 -msgid "Tag: " -msgstr "Tag: " +#: ../../Zotlabs/Module/Thing.php:301 ../../Zotlabs/Module/Thing.php:351 +msgid "Select a profile" +msgstr "Kies een profiel" -#: ../../Zotlabs/Module/Siteinfo.php:70 -msgid "Last background fetch: " -msgstr "Meest recente achtergrond-fetch:" +#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:354 +msgid "Post an activity" +msgstr "Plaats een bericht" -#: ../../Zotlabs/Module/Siteinfo.php:72 -msgid "Current load average: " -msgstr "Gemiddelde systeembelasting is nu:" +#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:354 +msgid "Only sends to viewers of the applicable profile" +msgstr "Toont dit alleen aan diegene die het gekozen profiel mogen zien." -#: ../../Zotlabs/Module/Siteinfo.php:75 -msgid "Running at web location" -msgstr "Draaiend op weblocatie" +#: ../../Zotlabs/Module/Thing.php:307 ../../Zotlabs/Module/Thing.php:356 +msgid "Name of thing e.g. something" +msgstr "Naam van ding" -#: ../../Zotlabs/Module/Siteinfo.php:76 -msgid "" -"Please visit hubzilla.org to learn more " -"about $Projectname." -msgstr "Bezoek hubzilla.org " +#: ../../Zotlabs/Module/Thing.php:309 ../../Zotlabs/Module/Thing.php:357 +msgid "URL of thing (optional)" +msgstr "URL van ding (optioneel)" -#: ../../Zotlabs/Module/Siteinfo.php:77 -msgid "Bug reports and issues: please visit" -msgstr "Bugrapporten en andere kwesties: bezoek" +#: ../../Zotlabs/Module/Thing.php:311 ../../Zotlabs/Module/Thing.php:358 +msgid "URL for photo of thing (optional)" +msgstr "URL voor foto van ding (optioneel)" -#: ../../Zotlabs/Module/Siteinfo.php:79 -msgid "$projectname issues" -msgstr "$projectname-issues" - -#: ../../Zotlabs/Module/Siteinfo.php:80 -msgid "" -"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot " -"com" -msgstr "Voorstellen, lofbetuigingen, enz. - e-mail \"redmatrix\" at librelist - dot com" - -#: ../../Zotlabs/Module/Siteinfo.php:82 -msgid "Site Administrators" -msgstr "Hubbeheerders: " +#: ../../Zotlabs/Module/Thing.php:349 +msgid "Add Thing to your Profile" +msgstr "Ding aan je profiel toevoegen" #: ../../Zotlabs/Module/Sources.php:37 msgid "Failed to create source. No channel selected." @@ -6003,8 +6313,8 @@ msgstr "Bron aangemaakt." msgid "*" msgstr "*" -#: ../../Zotlabs/Module/Sources.php:96 ../../include/widgets.php:630 -#: ../../include/features.php:71 +#: ../../Zotlabs/Module/Sources.php:96 ../../include/features.php:72 +#: ../../include/widgets.php:639 msgid "Channel Sources" msgstr "Kanaalbronnen" @@ -6080,12 +6390,12 @@ msgstr "Geen voorgestelde kanalen gevonden. Wanneer dit een nieuwe hub is, probe msgid "Ignore/Hide" msgstr "Negeren/Verbergen" -#: ../../Zotlabs/Module/Tagger.php:55 ../../include/bbcode.php:256 +#: ../../Zotlabs/Module/Tagger.php:55 ../../include/bbcode.php:263 msgid "post" msgstr "bericht" -#: ../../Zotlabs/Module/Tagger.php:57 ../../include/text.php:1948 -#: ../../include/conversation.php:150 +#: ../../Zotlabs/Module/Tagger.php:57 ../../include/conversation.php:150 +#: ../../include/text.php:1929 msgid "comment" msgstr "reactie" @@ -6106,131 +6416,110 @@ msgstr "Verwijder item-tag" msgid "Select a tag to remove: " msgstr "Kies een tag om te verwijderen" -#: ../../Zotlabs/Module/Thing.php:114 -msgid "Thing updated" -msgstr "Ding bijgewerkt" +#: ../../Zotlabs/Module/Webpages.php:191 ../../Zotlabs/Lib/Apps.php:218 +#: ../../include/nav.php:106 ../../include/conversation.php:1700 +msgid "Webpages" +msgstr "Webpagina's" -#: ../../Zotlabs/Module/Thing.php:166 -msgid "Object store: failed" -msgstr "Opslaan van ding mislukt" +#: ../../Zotlabs/Module/Webpages.php:202 ../../include/page_widgets.php:44 +msgid "Actions" +msgstr "Acties" -#: ../../Zotlabs/Module/Thing.php:170 -msgid "Thing added" -msgstr "Ding toegevoegd" +#: ../../Zotlabs/Module/Webpages.php:203 ../../include/page_widgets.php:45 +msgid "Page Link" +msgstr "Paginalink" -#: ../../Zotlabs/Module/Thing.php:196 -#, php-format -msgid "OBJ: %1$s %2$s %3$s" -msgstr "OBJ: %1$s %2$s %3$s" +#: ../../Zotlabs/Module/Webpages.php:204 +msgid "Page Title" +msgstr "Paginatitel" -#: ../../Zotlabs/Module/Thing.php:259 -msgid "Show Thing" -msgstr "Ding weergeven" +#: ../../Zotlabs/Module/Wiki.php:34 +msgid "Not found" +msgstr "Niet gevonden" -#: ../../Zotlabs/Module/Thing.php:266 -msgid "item not found." -msgstr "Item niet gevonden" +#: ../../Zotlabs/Module/Wiki.php:92 ../../Zotlabs/Lib/Apps.php:219 +#: ../../include/nav.php:108 ../../include/conversation.php:1710 +#: ../../include/conversation.php:1713 ../../include/features.php:55 +msgid "Wiki" +msgstr "Wiki" -#: ../../Zotlabs/Module/Thing.php:299 -msgid "Edit Thing" -msgstr "Ding bewerken" +#: ../../Zotlabs/Module/Wiki.php:93 +msgid "Sandbox" +msgstr "Zandbak" -#: ../../Zotlabs/Module/Thing.php:301 ../../Zotlabs/Module/Thing.php:351 -msgid "Select a profile" -msgstr "Kies een profiel" - -#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:354 -msgid "Post an activity" -msgstr "Plaats een bericht" - -#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:354 -msgid "Only sends to viewers of the applicable profile" -msgstr "Toont dit alleen aan diegene die het gekozen profiel mogen zien." - -#: ../../Zotlabs/Module/Thing.php:307 ../../Zotlabs/Module/Thing.php:356 -msgid "Name of thing e.g. something" -msgstr "Naam van ding" - -#: ../../Zotlabs/Module/Thing.php:309 ../../Zotlabs/Module/Thing.php:357 -msgid "URL of thing (optional)" -msgstr "URL van ding (optioneel)" - -#: ../../Zotlabs/Module/Thing.php:311 ../../Zotlabs/Module/Thing.php:358 -msgid "URL for photo of thing (optional)" -msgstr "URL voor foto van ding (optioneel)" - -#: ../../Zotlabs/Module/Thing.php:349 -msgid "Add Thing to your Profile" -msgstr "Ding aan je profiel toevoegen" - -#: ../../Zotlabs/Module/Uexport.php:55 ../../Zotlabs/Module/Uexport.php:56 -msgid "Export Channel" -msgstr "Kanaal exporteren" - -#: ../../Zotlabs/Module/Uexport.php:57 +#: ../../Zotlabs/Module/Wiki.php:95 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 "Exporteer de basisinformatie van jouw kanaal naar een bestand. Dit fungeert als een back-up van jouw connecties, permissies, profiel en basisgegevens, die gebruikt kan worden om op een nieuwe hub jouw gegevens te importeren. Deze back-up bevat echter niet de inhoud van jouw kanaal." +"\"# Wiki Sandbox\\n\\nContent you **edit** and **preview** here *will not be" +" saved*.\"" +msgstr "\"# Wiki Sandbox\\n\\nWat er hier onder **edit** en **preview** staat *wordt niet opgeslagen*.\"" -#: ../../Zotlabs/Module/Uexport.php:58 -msgid "Export Content" -msgstr "Inhoud exporteren" +#: ../../Zotlabs/Module/Wiki.php:164 +msgid "Revision Comparison" +msgstr "Revisies vergelijken" -#: ../../Zotlabs/Module/Uexport.php:59 -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 "Exporteer informatie en recente inhoud van jouw kanaal naar een JSON-back-up, wat kan worden gebruikt om jouw kanaal te herstellen of te importeren op een andere hub. Dit slaat al jouw connecties, permissies, profielgegevens en enkele maanden aan inhoud van jouw kanaal op. Dit bestand kan ZEER groot worden. Wees geduldig - het kan enkele minuten duren voordat de download begint." +#: ../../Zotlabs/Module/Wiki.php:165 +msgid "Revert" +msgstr "Ongedaan maken" -#: ../../Zotlabs/Module/Uexport.php:60 -msgid "Export your posts from a given year." -msgstr "Exporteer jouw berichten uit een bepaald jaar." +#: ../../Zotlabs/Module/Wiki.php:192 +msgid "Enter the name of your new wiki:" +msgstr "Vul de naam in van jouw nieuwe wiki:" -#: ../../Zotlabs/Module/Uexport.php:62 -msgid "" -"You may also export your posts and conversations for a particular year or " -"month. Adjust the date in your browser location bar to select other dates. " -"If the export fails (possibly due to memory exhaustion on your server hub), " -"please try again selecting a more limited date range." -msgstr "Je kan ook berichten en conversaties uit een bepaald jaar of van een bepaalde maand exporteren. Verander de datum in de adresbalk van jouw webbrowser om andere jaren en maanden te selecteren. Wanneer het exporteren mislukt (waarschijnlijk door een gebrek aan beschikbaar servergeheugen), probeer het dan nogmaals met een beperkter tijdvak." +#: ../../Zotlabs/Module/Wiki.php:193 +msgid "Enter the name of the new page:" +msgstr "Vul de naam in van de nieuwe pagina:" -#: ../../Zotlabs/Module/Uexport.php:63 -#, php-format -msgid "" -"To select all posts for a given year, such as this year, visit %2$s" -msgstr "Bezoek %2$s om alle berichten van bijvoorbeeld dit jaar te selecteren. " +#: ../../Zotlabs/Module/Wiki.php:194 +msgid "Enter the new name:" +msgstr "Vul de nieuwe naam in:" -#: ../../Zotlabs/Module/Uexport.php:64 -#, php-format -msgid "" -"To select all posts for a given month, such as January of this year, visit " -"%2$s" -msgstr "Bezoek %2$s om alle berichten van bijvoorbeeld januari dit jaar te selecteren." +#: ../../Zotlabs/Module/Wiki.php:200 ../../include/conversation.php:1150 +msgid "Embed image from photo albums" +msgstr "Afbeelding uit een fotoalbum invoegen" -#: ../../Zotlabs/Module/Uexport.php:65 -#, php-format -msgid "" -"These content files may be imported or restored by visiting %2$s on any site containing your channel. For best results" -" please import or restore these in date order (oldest first)." -msgstr "Deze back-up-bestanden kunnen geïmporteerd of hersteld worden door op jouw hub en met jouw kanaal %2$s te bezoeken. Voor het beste resultaat kan je de bestanden in chronologische volgorde importeren of herstellen." +#: ../../Zotlabs/Module/Wiki.php:201 ../../include/conversation.php:1234 +msgid "Embed an image from your albums" +msgstr "Afbeelding uit jouw albums invoegen" -#: ../../Zotlabs/Module/Viewconnections.php:62 +#: ../../Zotlabs/Module/Wiki.php:203 ../../include/conversation.php:1236 +#: ../../include/conversation.php:1273 +msgid "OK" +msgstr "OK" + +#: ../../Zotlabs/Module/Wiki.php:204 ../../include/conversation.php:1186 +msgid "Choose images to embed" +msgstr "Kies afbeeldingen om in te voegen" + +#: ../../Zotlabs/Module/Wiki.php:205 ../../include/conversation.php:1187 +msgid "Choose an album" +msgstr "Kies een album" + +#: ../../Zotlabs/Module/Wiki.php:206 ../../include/conversation.php:1188 +msgid "Choose a different album..." +msgstr "Kies een ander album..." + +#: ../../Zotlabs/Module/Wiki.php:207 ../../include/conversation.php:1189 +msgid "Error getting album list" +msgstr "Fout met ophalen albumlijst" + +#: ../../Zotlabs/Module/Wiki.php:208 ../../include/conversation.php:1190 +msgid "Error getting photo link" +msgstr "Fout met ophalen fotolink" + +#: ../../Zotlabs/Module/Wiki.php:209 ../../include/conversation.php:1191 +msgid "Error getting album" +msgstr "Fout met ophalen album" + +#: ../../Zotlabs/Module/Viewconnections.php:65 msgid "No connections." msgstr "Geen connecties." -#: ../../Zotlabs/Module/Viewconnections.php:75 +#: ../../Zotlabs/Module/Viewconnections.php:78 #, php-format msgid "Visit %s's profile [%s]" msgstr "Bezoek het profiel van %s [%s]" -#: ../../Zotlabs/Module/Viewconnections.php:104 +#: ../../Zotlabs/Module/Viewconnections.php:107 msgid "View Connections" msgstr "Connecties weergeven" @@ -6238,22 +6527,23 @@ msgstr "Connecties weergeven" msgid "Source of Item" msgstr "Bron van item" -#: ../../Zotlabs/Module/Webpages.php:184 ../../Zotlabs/Lib/Apps.php:217 -#: ../../include/nav.php:106 ../../include/conversation.php:1685 -msgid "Webpages" -msgstr "Webpagina's" +#: ../../Zotlabs/Module/Api.php:61 ../../Zotlabs/Module/Api.php:85 +msgid "Authorize application connection" +msgstr "Geef toestemming voor applicatiekoppeling" -#: ../../Zotlabs/Module/Webpages.php:195 ../../include/page_widgets.php:41 -msgid "Actions" -msgstr "Acties" +#: ../../Zotlabs/Module/Api.php:62 +msgid "Return to your app and insert this Securty Code:" +msgstr "Ga terug naar je app en voeg deze beveiligingscode in:" -#: ../../Zotlabs/Module/Webpages.php:196 ../../include/page_widgets.php:42 -msgid "Page Link" -msgstr "Paginalink" +#: ../../Zotlabs/Module/Api.php:72 +msgid "Please login to continue." +msgstr "Inloggen om verder te kunnen gaan." -#: ../../Zotlabs/Module/Webpages.php:197 -msgid "Page Title" -msgstr "Paginatitel" +#: ../../Zotlabs/Module/Api.php:87 +msgid "" +"Do you want to authorize this application to access your posts and contacts," +" and/or create new posts for you?" +msgstr "Wil je deze applicatie toestemming geven om jouw berichten en connecties te zien, en/of nieuwe berichten voor jou te plaatsen?" #: ../../Zotlabs/Module/Xchan.php:10 msgid "Xchan Lookup" @@ -6263,92 +6553,6 @@ msgstr "Xchan opzoeken" msgid "Lookup xchan beginning with (or webbie): " msgstr "Zoek een xchan (of webbie) die begint met:" -#: ../../Zotlabs/Lib/Apps.php:204 -msgid "Site Admin" -msgstr "Hubbeheerder" - -#: ../../Zotlabs/Lib/Apps.php:205 -msgid "Bug Report" -msgstr "Bugrapport" - -#: ../../Zotlabs/Lib/Apps.php:206 -msgid "View Bookmarks" -msgstr "Bladwijzers bekijken" - -#: ../../Zotlabs/Lib/Apps.php:207 -msgid "My Chatrooms" -msgstr "Mijn chatkanalen" - -#: ../../Zotlabs/Lib/Apps.php:209 -msgid "Firefox Share" -msgstr "Firefox Share" - -#: ../../Zotlabs/Lib/Apps.php:210 -msgid "Remote Diagnostics" -msgstr "Diagnose op afstand" - -#: ../../Zotlabs/Lib/Apps.php:211 ../../include/features.php:89 -msgid "Suggest Channels" -msgstr "Kanalen voorstellen" - -#: ../../Zotlabs/Lib/Apps.php:212 ../../include/nav.php:110 -#: ../../boot.php:1703 -msgid "Login" -msgstr "Inloggen" - -#: ../../Zotlabs/Lib/Apps.php:214 ../../include/nav.php:179 -msgid "Grid" -msgstr "Grid" - -#: ../../Zotlabs/Lib/Apps.php:218 ../../include/nav.php:182 -msgid "Channel Home" -msgstr "Jouw kanaal" - -#: ../../Zotlabs/Lib/Apps.php:221 ../../include/nav.php:201 -#: ../../include/conversation.php:1649 ../../include/conversation.php:1652 -msgid "Events" -msgstr "Agenda" - -#: ../../Zotlabs/Lib/Apps.php:222 ../../include/nav.php:167 -msgid "Directory" -msgstr "Kanalengids" - -#: ../../Zotlabs/Lib/Apps.php:224 ../../include/nav.php:193 -msgid "Mail" -msgstr "Privéberichten" - -#: ../../Zotlabs/Lib/Apps.php:227 ../../include/nav.php:96 -msgid "Chat" -msgstr "Chatten" - -#: ../../Zotlabs/Lib/Apps.php:229 -msgid "Probe" -msgstr "Onderzoeken" - -#: ../../Zotlabs/Lib/Apps.php:230 -msgid "Suggest" -msgstr "Voorstellen" - -#: ../../Zotlabs/Lib/Apps.php:231 -msgid "Random Channel" -msgstr "Willekeurig kanaal" - -#: ../../Zotlabs/Lib/Apps.php:232 -msgid "Invite" -msgstr "Uitnodigen " - -#: ../../Zotlabs/Lib/Apps.php:233 ../../include/widgets.php:1386 -msgid "Features" -msgstr "Extra functies" - -#: ../../Zotlabs/Lib/Apps.php:235 -msgid "Post" -msgstr "Bericht" - -#: ../../Zotlabs/Lib/Apps.php:335 -msgid "Purchase" -msgstr "Aanschaffen" - #: ../../Zotlabs/Lib/Chatroom.php:27 msgid "Missing room name" msgstr "Naam chatkanaal ontbreekt" @@ -6369,19 +6573,19 @@ msgstr "Chatkanaal niet gevonden" msgid "Room is full" msgstr "Chatkanaal is vol" -#: ../../Zotlabs/Lib/Enotify.php:60 ../../include/network.php:1823 +#: ../../Zotlabs/Lib/Enotify.php:60 ../../include/network.php:1882 msgid "$Projectname Notification" msgstr "$Projectname-notificatie" -#: ../../Zotlabs/Lib/Enotify.php:61 ../../include/network.php:1824 +#: ../../Zotlabs/Lib/Enotify.php:61 ../../include/network.php:1883 msgid "$projectname" msgstr "$projectname" -#: ../../Zotlabs/Lib/Enotify.php:63 ../../include/network.php:1826 +#: ../../Zotlabs/Lib/Enotify.php:63 ../../include/network.php:1885 msgid "Thank You," msgstr "Bedankt," -#: ../../Zotlabs/Lib/Enotify.php:65 ../../include/network.php:1828 +#: ../../Zotlabs/Lib/Enotify.php:65 ../../include/network.php:1887 #, php-format msgid "%s Administrator" msgstr "Beheerder %s" @@ -6574,11 +6778,97 @@ msgstr "maakte een nieuw bericht aan" msgid "commented on %s's post" msgstr "gaf een reactie op een bericht van %s" -#: ../../Zotlabs/Lib/ThreadItem.php:95 ../../include/conversation.php:664 +#: ../../Zotlabs/Lib/Apps.php:205 +msgid "Site Admin" +msgstr "Hubbeheerder" + +#: ../../Zotlabs/Lib/Apps.php:206 +msgid "Bug Report" +msgstr "Bugrapport" + +#: ../../Zotlabs/Lib/Apps.php:207 +msgid "View Bookmarks" +msgstr "Bladwijzers bekijken" + +#: ../../Zotlabs/Lib/Apps.php:208 +msgid "My Chatrooms" +msgstr "Mijn chatkanalen" + +#: ../../Zotlabs/Lib/Apps.php:210 +msgid "Firefox Share" +msgstr "Firefox Share" + +#: ../../Zotlabs/Lib/Apps.php:211 +msgid "Remote Diagnostics" +msgstr "Diagnose op afstand" + +#: ../../Zotlabs/Lib/Apps.php:212 ../../include/features.php:90 +msgid "Suggest Channels" +msgstr "Kanalen voorstellen" + +#: ../../Zotlabs/Lib/Apps.php:213 ../../include/nav.php:112 +#: ../../boot.php:1704 +msgid "Login" +msgstr "Inloggen" + +#: ../../Zotlabs/Lib/Apps.php:215 ../../include/nav.php:181 +msgid "Grid" +msgstr "Grid" + +#: ../../Zotlabs/Lib/Apps.php:220 ../../include/nav.php:184 +msgid "Channel Home" +msgstr "Jouw kanaal" + +#: ../../Zotlabs/Lib/Apps.php:223 ../../include/nav.php:203 +#: ../../include/conversation.php:1664 ../../include/conversation.php:1667 +msgid "Events" +msgstr "Agenda" + +#: ../../Zotlabs/Lib/Apps.php:224 ../../include/nav.php:169 +msgid "Directory" +msgstr "Kanalengids" + +#: ../../Zotlabs/Lib/Apps.php:226 ../../include/nav.php:195 +msgid "Mail" +msgstr "Privéberichten" + +#: ../../Zotlabs/Lib/Apps.php:229 ../../include/nav.php:96 +msgid "Chat" +msgstr "Chatten" + +#: ../../Zotlabs/Lib/Apps.php:231 +msgid "Probe" +msgstr "Onderzoeken" + +#: ../../Zotlabs/Lib/Apps.php:232 +msgid "Suggest" +msgstr "Voorstellen" + +#: ../../Zotlabs/Lib/Apps.php:233 +msgid "Random Channel" +msgstr "Willekeurig kanaal" + +#: ../../Zotlabs/Lib/Apps.php:234 +msgid "Invite" +msgstr "Uitnodigen " + +#: ../../Zotlabs/Lib/Apps.php:235 ../../include/widgets.php:1480 +msgid "Features" +msgstr "Extra functies" + +#: ../../Zotlabs/Lib/Apps.php:237 +msgid "Post" +msgstr "Bericht" + +#: ../../Zotlabs/Lib/Apps.php:339 +msgid "Purchase" +msgstr "Aanschaffen" + +#: ../../Zotlabs/Lib/ThreadItem.php:95 ../../include/conversation.php:667 msgid "Private Message" msgstr "Niet voor iedereen zichtbaar" -#: ../../Zotlabs/Lib/ThreadItem.php:132 ../../include/conversation.php:656 +#: ../../Zotlabs/Lib/ThreadItem.php:132 ../../include/conversation.php:659 msgid "Select" msgstr "Kies" @@ -6626,11 +6916,11 @@ msgstr "Ster toevoegen of verwijderen" msgid "starred" msgstr "met ster" -#: ../../Zotlabs/Lib/ThreadItem.php:234 ../../include/conversation.php:671 +#: ../../Zotlabs/Lib/ThreadItem.php:234 ../../include/conversation.php:674 msgid "Message signature validated" msgstr "Berichtkenmerk gevalideerd" -#: ../../Zotlabs/Lib/ThreadItem.php:235 ../../include/conversation.php:672 +#: ../../Zotlabs/Lib/ThreadItem.php:235 ../../include/conversation.php:675 msgid "Message signature incorrect" msgstr "Berichtkenmerk onjuist" @@ -6686,17 +6976,17 @@ msgstr "Kanaal-naar-kanaal" msgid "via Wall-To-Wall:" msgstr "via kanaal-naar-kanaal" -#: ../../Zotlabs/Lib/ThreadItem.php:341 ../../include/conversation.php:719 +#: ../../Zotlabs/Lib/ThreadItem.php:341 ../../include/conversation.php:722 #, php-format msgid "from %s" msgstr "van %s" -#: ../../Zotlabs/Lib/ThreadItem.php:344 ../../include/conversation.php:722 +#: ../../Zotlabs/Lib/ThreadItem.php:344 ../../include/conversation.php:725 #, php-format msgid "last edited: %s" msgstr "laatst bewerkt: %s" -#: ../../Zotlabs/Lib/ThreadItem.php:345 ../../include/conversation.php:723 +#: ../../Zotlabs/Lib/ThreadItem.php:345 ../../include/conversation.php:726 #, php-format msgid "Expires: %s" msgstr "Verloopt: %s" @@ -6714,26 +7004,27 @@ msgid "Mark all seen" msgstr "Markeer alles als bekeken" #: ../../Zotlabs/Lib/ThreadItem.php:421 ../../include/js_strings.php:7 -msgid "[+] show all" -msgstr "[+] alle" +#, php-format +msgid "%s show all" +msgstr "%s alle" -#: ../../Zotlabs/Lib/ThreadItem.php:711 ../../include/conversation.php:1215 +#: ../../Zotlabs/Lib/ThreadItem.php:711 ../../include/conversation.php:1226 msgid "Bold" msgstr "Vet" -#: ../../Zotlabs/Lib/ThreadItem.php:712 ../../include/conversation.php:1216 +#: ../../Zotlabs/Lib/ThreadItem.php:712 ../../include/conversation.php:1227 msgid "Italic" msgstr "Cursief" -#: ../../Zotlabs/Lib/ThreadItem.php:713 ../../include/conversation.php:1217 +#: ../../Zotlabs/Lib/ThreadItem.php:713 ../../include/conversation.php:1228 msgid "Underline" msgstr "Onderstrepen" -#: ../../Zotlabs/Lib/ThreadItem.php:714 ../../include/conversation.php:1218 +#: ../../Zotlabs/Lib/ThreadItem.php:714 ../../include/conversation.php:1229 msgid "Quote" msgstr "Citeren" -#: ../../Zotlabs/Lib/ThreadItem.php:715 ../../include/conversation.php:1219 +#: ../../Zotlabs/Lib/ThreadItem.php:715 ../../include/conversation.php:1230 msgid "Code" msgstr "Broncode" @@ -6749,11 +7040,74 @@ msgstr "Link invoegen" msgid "Video" msgstr "Video" +#: ../../Zotlabs/Lib/PermissionDescription.php:31 +#: ../../include/acl_selectors.php:230 +msgid "Visible to your default audience" +msgstr "Voor iedereen zichtbaar, mits niet anders ingesteld" + +#: ../../Zotlabs/Lib/PermissionDescription.php:106 +#: ../../include/acl_selectors.php:266 +msgid "Only me" +msgstr "Alleen ik" + +#: ../../Zotlabs/Lib/PermissionDescription.php:107 +msgid "Public" +msgstr "Openbaar" + +#: ../../Zotlabs/Lib/PermissionDescription.php:108 +msgid "Anybody in the $Projectname network" +msgstr "Iedereen in het $Projectname-netwerk" + +#: ../../Zotlabs/Lib/PermissionDescription.php:109 +#, php-format +msgid "Any account on %s" +msgstr "Iedereen op %s" + +#: ../../Zotlabs/Lib/PermissionDescription.php:110 +msgid "Any of my connections" +msgstr "Al mijn geaccepteerde connecties" + +#: ../../Zotlabs/Lib/PermissionDescription.php:111 +msgid "Only connections I specifically allow" +msgstr "Alleen connecties die uitdrukkelijk door jou zijn toegestaan" + +#: ../../Zotlabs/Lib/PermissionDescription.php:112 +msgid "Anybody authenticated (could include visitors from other networks)" +msgstr "Geauthenticeerde leden (kan bezoekers van andere netwerken bevatten)" + +#: ../../Zotlabs/Lib/PermissionDescription.php:113 +msgid "Any connections including those who haven't yet been approved" +msgstr "Al mijn geaccepteerde en nog niet geaccepteerde connecties" + +#: ../../Zotlabs/Lib/PermissionDescription.php:152 +msgid "" +"This is your default setting for the audience of your normal stream, and " +"posts." +msgstr "Dit is de standaard privacy-instelling voor wie jouw berichten kan bekijken" + +#: ../../Zotlabs/Lib/PermissionDescription.php:153 +msgid "" +"This is your default setting for who can view your default channel profile" +msgstr "Dit is de standaard privacy-instelling voor wie jouw standaardprofiel kan bekijken" + +#: ../../Zotlabs/Lib/PermissionDescription.php:154 +msgid "This is your default setting for who can view your connections" +msgstr "Dit is de standaard privacy-instelling voor wie een lijst met jouw connecties kan bekijken" + +#: ../../Zotlabs/Lib/PermissionDescription.php:155 +msgid "" +"This is your default setting for who can view your file storage and photos" +msgstr "Dit is de standaard privacy-instelling voor wie jouw bestanden en foto's kan bekijken" + +#: ../../Zotlabs/Lib/PermissionDescription.php:156 +msgid "This is your default setting for the audience of your webpages" +msgstr "Dit is de standaard privacy-instelling voor wie jouw webpagina's kan bekijken" + #: ../../include/Import/import_diaspora.php:16 msgid "No username found in import file." msgstr "Geen gebruikersnaam in het importbestand gevonden." -#: ../../include/Import/import_diaspora.php:41 ../../include/import.php:50 +#: ../../include/Import/import_diaspora.php:41 ../../include/import.php:51 msgid "Unable to create a unique channel address. Import failed." msgstr "Niet in staat om een uniek kanaaladres aan te maken. Importeren is mislukt." @@ -6762,6 +7116,291 @@ msgstr "Niet in staat om een uniek kanaaladres aan te maken. Importeren is mislu msgid "Cannot locate DNS info for database server '%s'" msgstr "Kan DNS-informatie voor databaseserver '%s' niet vinden" +#: ../../include/photos.php:114 +#, php-format +msgid "Image exceeds website size limit of %lu bytes" +msgstr "Afbeelding is groter dan op deze hub toegestane limiet van %lu bytes" + +#: ../../include/photos.php:121 +msgid "Image file is empty." +msgstr "Afbeeldingsbestand is leeg" + +#: ../../include/photos.php:259 +msgid "Photo storage failed." +msgstr "Foto kan niet worden opgeslagen" + +#: ../../include/photos.php:299 +msgid "a new photo" +msgstr "een nieuwe foto" + +#: ../../include/photos.php:303 +#, php-format +msgctxt "photo_upload" +msgid "%1$s posted %2$s to %3$s" +msgstr "%1$s plaatste %2$s op %3$s" + +#: ../../include/photos.php:506 ../../include/conversation.php:1650 +msgid "Photo Albums" +msgstr "Fotoalbums" + +#: ../../include/photos.php:510 +msgid "Upload New Photos" +msgstr "Nieuwe foto's uploaden" + +#: ../../include/nav.php:82 ../../include/nav.php:115 ../../boot.php:1703 +msgid "Logout" +msgstr "Uitloggen" + +#: ../../include/nav.php:82 ../../include/nav.php:115 +msgid "End this session" +msgstr "Beëindig deze sessie" + +#: ../../include/nav.php:85 ../../include/nav.php:146 +msgid "Home" +msgstr "Home" + +#: ../../include/nav.php:85 +msgid "Your posts and conversations" +msgstr "Jouw kanaal" + +#: ../../include/nav.php:86 +msgid "Your profile page" +msgstr "Jouw profielpagina" + +#: ../../include/nav.php:88 +msgid "Manage/Edit profiles" +msgstr "Beheer/wijzig profielen" + +#: ../../include/nav.php:90 ../../include/channel.php:980 +msgid "Edit Profile" +msgstr "Profiel bewerken" + +#: ../../include/nav.php:90 +msgid "Edit your profile" +msgstr "Jouw profiel bewerken" + +#: ../../include/nav.php:92 +msgid "Your photos" +msgstr "Jouw foto's" + +#: ../../include/nav.php:93 +msgid "Your files" +msgstr "Jouw bestanden" + +#: ../../include/nav.php:96 +msgid "Your chatrooms" +msgstr "Jouw chatkanalen" + +#: ../../include/nav.php:102 ../../include/conversation.php:1690 +msgid "Bookmarks" +msgstr "Bladwijzers" + +#: ../../include/nav.php:102 +msgid "Your bookmarks" +msgstr "Jouw bladwijzers" + +#: ../../include/nav.php:106 +msgid "Your webpages" +msgstr "Jouw webpagina's" + +#: ../../include/nav.php:108 +msgid "Your wiki" +msgstr "Jouw wiki" + +#: ../../include/nav.php:112 +msgid "Sign in" +msgstr "Inloggen" + +#: ../../include/nav.php:129 +#, php-format +msgid "%s - click to logout" +msgstr "%s - klik om uit te loggen" + +#: ../../include/nav.php:132 +msgid "Remote authentication" +msgstr "Authenticatie op afstand" + +#: ../../include/nav.php:132 +msgid "Click to authenticate to your home hub" +msgstr "Authenticeer jezelf via (bijvoorbeeld) jouw hub" + +#: ../../include/nav.php:146 +msgid "Home Page" +msgstr "Homepage" + +#: ../../include/nav.php:149 +msgid "Create an account" +msgstr "Maak een account aan" + +#: ../../include/nav.php:161 +msgid "Help and documentation" +msgstr "Hulp en documentatie" + +#: ../../include/nav.php:165 +msgid "Applications, utilities, links, games" +msgstr "Apps" + +#: ../../include/nav.php:167 +msgid "Search site @name, #tag, ?docs, content" +msgstr "Zoek een @kanaal, doorzoek inhoud hub met tekst en #tags, of doorzoek ?documentatie " + +#: ../../include/nav.php:169 +msgid "Channel Directory" +msgstr "Kanalengids" + +#: ../../include/nav.php:181 +msgid "Your grid" +msgstr "Jouw grid" + +#: ../../include/nav.php:182 +msgid "Mark all grid notifications seen" +msgstr "Markeer alle gridnotificaties als bekeken" + +#: ../../include/nav.php:184 +msgid "Channel home" +msgstr "Jouw kanaal" + +#: ../../include/nav.php:185 +msgid "Mark all channel notifications seen" +msgstr "Alle kanaalnotificaties als gelezen markeren" + +#: ../../include/nav.php:191 +msgid "Notices" +msgstr "Notificaties" + +#: ../../include/nav.php:191 +msgid "Notifications" +msgstr "Notificaties" + +#: ../../include/nav.php:192 +msgid "See all notifications" +msgstr "Alle notificaties weergeven" + +#: ../../include/nav.php:195 +msgid "Private mail" +msgstr "Privéberichten" + +#: ../../include/nav.php:196 +msgid "See all private messages" +msgstr "Alle privéberichten weergeven" + +#: ../../include/nav.php:197 +msgid "Mark all private messages seen" +msgstr "Markeer alle privéberichten als bekeken" + +#: ../../include/nav.php:198 ../../include/widgets.php:667 +msgid "Inbox" +msgstr "Postvak IN" + +#: ../../include/nav.php:199 ../../include/widgets.php:672 +msgid "Outbox" +msgstr "Postvak UIT" + +#: ../../include/nav.php:200 ../../include/widgets.php:677 +msgid "New Message" +msgstr "Nieuw bericht" + +#: ../../include/nav.php:203 +msgid "Event Calendar" +msgstr "Agenda" + +#: ../../include/nav.php:204 +msgid "See all events" +msgstr "Alle gebeurtenissen weergeven" + +#: ../../include/nav.php:205 +msgid "Mark all events seen" +msgstr "Markeer alle gebeurtenissen als bekeken" + +#: ../../include/nav.php:208 +msgid "Manage Your Channels" +msgstr "Beheer je kanalen" + +#: ../../include/nav.php:210 +msgid "Account/Channel Settings" +msgstr "Account-/kanaal-instellingen" + +#: ../../include/nav.php:218 ../../include/widgets.php:1510 +msgid "Admin" +msgstr "Beheer" + +#: ../../include/nav.php:218 +msgid "Site Setup and Configuration" +msgstr "Hub instellen en beheren" + +#: ../../include/nav.php:249 ../../include/conversation.php:854 +msgid "Loading..." +msgstr "Aan het laden..." + +#: ../../include/nav.php:254 +msgid "@name, #tag, ?doc, content" +msgstr "@kanaal, #tag, inhoud, ?hulp" + +#: ../../include/nav.php:255 +msgid "Please wait..." +msgstr "Wachten aub..." + +#: ../../include/network.php:704 +msgid "view full size" +msgstr "volledige grootte tonen" + +#: ../../include/network.php:1930 ../../include/account.php:317 +#: ../../include/account.php:344 ../../include/account.php:404 +msgid "Administrator" +msgstr "Beheerder" + +#: ../../include/network.php:1944 +msgid "No Subject" +msgstr "Geen onderwerp" + +#: ../../include/network.php:2198 ../../include/network.php:2199 +msgid "Friendica" +msgstr "Friendica" + +#: ../../include/network.php:2200 +msgid "OStatus" +msgstr "OStatus" + +#: ../../include/network.php:2201 +msgid "GNU-Social" +msgstr "GNU social" + +#: ../../include/network.php:2202 +msgid "RSS/Atom" +msgstr "RSS/Atom" + +#: ../../include/network.php:2204 +msgid "Diaspora" +msgstr "Diaspora" + +#: ../../include/network.php:2205 +msgid "Facebook" +msgstr "Facebook" + +#: ../../include/network.php:2206 +msgid "Zot" +msgstr "Zot" + +#: ../../include/network.php:2207 +msgid "LinkedIn" +msgstr "LinkedIn" + +#: ../../include/network.php:2208 +msgid "XMPP/IM" +msgstr "XMPP/IM" + +#: ../../include/network.php:2209 +msgid "MySpace" +msgstr "MySpace" + +#: ../../include/page_widgets.php:7 +msgid "New Page" +msgstr "Nieuwe pagina" + +#: ../../include/page_widgets.php:46 +msgid "Title" +msgstr "Titel" + #: ../../include/taxonomy.php:188 ../../include/taxonomy.php:270 #: ../../include/widgets.php:46 ../../include/widgets.php:429 #: ../../include/contact_widgets.php:91 @@ -6800,952 +7439,159 @@ msgstr "vindt dit leuk" msgid "dislikes" msgstr "vindt dit niet leuk" -#: ../../include/event.php:22 ../../include/event.php:69 -#: ../../include/bb2diaspora.php:485 -msgid "l F d, Y \\@ g:i A" -msgstr "l d F Y \\@ G:i" +#: ../../include/channel.php:33 +msgid "Unable to obtain identity information from database" +msgstr "Niet in staat om identiteitsinformatie uit de database te verkrijgen" -#: ../../include/event.php:30 ../../include/event.php:73 -#: ../../include/bb2diaspora.php:491 -msgid "Starts:" -msgstr "Start:" +#: ../../include/channel.php:67 +msgid "Empty name" +msgstr "Ontbrekende naam" -#: ../../include/event.php:40 ../../include/event.php:77 -#: ../../include/bb2diaspora.php:499 -msgid "Finishes:" -msgstr "Einde:" +#: ../../include/channel.php:70 +msgid "Name too long" +msgstr "Naam te lang" -#: ../../include/event.php:812 -msgid "This event has been added to your calendar." -msgstr "Dit evenement is aan jouw agenda toegevoegd." +#: ../../include/channel.php:181 +msgid "No account identifier" +msgstr "Geen account-identificator" -#: ../../include/event.php:1012 -msgid "Not specified" -msgstr "Niet aangegeven" +#: ../../include/channel.php:193 +msgid "Nickname is required." +msgstr "Bijnaam is verplicht" -#: ../../include/event.php:1013 -msgid "Needs Action" -msgstr "Actie vereist" +#: ../../include/channel.php:207 +msgid "Reserved nickname. Please choose another." +msgstr "Deze naam is gereserveerd. Kies een andere." -#: ../../include/event.php:1014 -msgid "Completed" -msgstr "Voltooid" - -#: ../../include/event.php:1015 -msgid "In Process" -msgstr "In behandeling" - -#: ../../include/event.php:1016 -msgid "Cancelled" -msgstr "Geannuleerd" - -#: ../../include/import.php:29 +#: ../../include/channel.php:212 msgid "" -"Cannot create a duplicate channel identifier on this system. Import failed." -msgstr "Kan geen dubbele kanaal-identificator op deze hub aanmaken. Importeren mislukt." +"Nickname has unsupported characters or is already being used on this site." +msgstr "Deze naam heeft niet ondersteunde karakters of is al op deze hub in gebruik." -#: ../../include/import.php:76 -msgid "Channel clone failed. Import failed." -msgstr "Het klonen van het kanaal is mislukt. Importeren mislukt." +#: ../../include/channel.php:272 +msgid "Unable to retrieve created identity" +msgstr "Niet in staat om aangemaakte identiteit te vinden" -#: ../../include/items.php:892 ../../include/items.php:937 -msgid "(Unknown)" -msgstr "(Onbekend)" +#: ../../include/channel.php:341 +msgid "Default Profile" +msgstr "Standaardprofiel" -#: ../../include/items.php:1136 -msgid "Visible to anybody on the internet." -msgstr "Voor iedereen op het internet zichtbaar." +#: ../../include/channel.php:830 +msgid "Requested channel is not available." +msgstr "Opgevraagd kanaal is niet beschikbaar." -#: ../../include/items.php:1138 -msgid "Visible to you only." -msgstr "Alleen voor jou zichtbaar." +#: ../../include/channel.php:977 +msgid "Create New Profile" +msgstr "Nieuw profiel aanmaken" -#: ../../include/items.php:1140 -msgid "Visible to anybody in this network." -msgstr "Voor iedereen in dit netwerk zichtbaar." +#: ../../include/channel.php:997 +msgid "Visible to everybody" +msgstr "Voor iedereen zichtbaar" -#: ../../include/items.php:1142 -msgid "Visible to anybody authenticated." -msgstr "Voor iedereen die geauthenticeerd is zichtbaar." +#: ../../include/channel.php:1070 ../../include/channel.php:1182 +msgid "Gender:" +msgstr "Geslacht:" -#: ../../include/items.php:1144 +#: ../../include/channel.php:1071 ../../include/channel.php:1226 +msgid "Status:" +msgstr "Status:" + +#: ../../include/channel.php:1072 ../../include/channel.php:1237 +msgid "Homepage:" +msgstr "Homepagina:" + +#: ../../include/channel.php:1073 +msgid "Online Now" +msgstr "Nu online" + +#: ../../include/channel.php:1187 +msgid "Like this channel" +msgstr "Vind dit kanaal leuk" + +#: ../../include/channel.php:1211 +msgid "j F, Y" +msgstr "F j Y" + +#: ../../include/channel.php:1212 +msgid "j F" +msgstr "F j" + +#: ../../include/channel.php:1219 +msgid "Birthday:" +msgstr "Geboortedatum:" + +#: ../../include/channel.php:1232 #, php-format -msgid "Visible to anybody on %s." -msgstr "Voor iedereen op %s zichtbaar." +msgid "for %1$d %2$s" +msgstr "voor %1$d %2$s" -#: ../../include/items.php:1146 -msgid "Visible to all connections." -msgstr "Voor alle connecties zichtbaar." +#: ../../include/channel.php:1235 +msgid "Sexual Preference:" +msgstr "Seksuele voorkeur:" -#: ../../include/items.php:1148 -msgid "Visible to approved connections." -msgstr "Voor alle geaccepteerde connecties zichtbaar." +#: ../../include/channel.php:1241 +msgid "Tags:" +msgstr "Tags:" -#: ../../include/items.php:1150 -msgid "Visible to specific connections." -msgstr "Voor specifieke connecties zichtbaar." +#: ../../include/channel.php:1243 +msgid "Political Views:" +msgstr "Politieke overtuigingen:" -#: ../../include/items.php:3909 -msgid "Privacy group is empty." -msgstr "Privacygroep is leeg" +#: ../../include/channel.php:1245 +msgid "Religion:" +msgstr "Religie:" -#: ../../include/items.php:3916 -#, php-format -msgid "Privacy group: %s" -msgstr "Privacygroep: %s" +#: ../../include/channel.php:1249 +msgid "Hobbies/Interests:" +msgstr "Hobby's/interesses:" -#: ../../include/items.php:3928 -msgid "Connection not found." -msgstr "Connectie niet gevonden." +#: ../../include/channel.php:1251 +msgid "Likes:" +msgstr "Houdt van:" -#: ../../include/items.php:4277 -msgid "profile photo" -msgstr "profielfoto" +#: ../../include/channel.php:1253 +msgid "Dislikes:" +msgstr "Houdt niet van:" -#: ../../include/message.php:20 -msgid "No recipient provided." -msgstr "Geen ontvanger opgegeven." +#: ../../include/channel.php:1255 +msgid "Contact information and Social Networks:" +msgstr "Contactinformatie en sociale netwerken:" -#: ../../include/message.php:25 -msgid "[no subject]" -msgstr "[geen onderwerp]" +#: ../../include/channel.php:1257 +msgid "My other channels:" +msgstr "Mijn andere kanalen" -#: ../../include/message.php:45 -msgid "Unable to determine sender." -msgstr "Afzender kan niet bepaald worden." +#: ../../include/channel.php:1259 +msgid "Musical interests:" +msgstr "Muzikale interesses:" -#: ../../include/message.php:222 -msgid "Stored post could not be verified." -msgstr "Opgeslagen bericht kon niet worden geverifieerd." +#: ../../include/channel.php:1261 +msgid "Books, literature:" +msgstr "Boeken, literatuur:" -#: ../../include/text.php:428 -msgid "prev" -msgstr "vorige" +#: ../../include/channel.php:1263 +msgid "Television:" +msgstr "Televisie:" -#: ../../include/text.php:430 -msgid "first" -msgstr "eerste" +#: ../../include/channel.php:1265 +msgid "Film/dance/culture/entertainment:" +msgstr "Films/dansen/cultuur/vermaak:" -#: ../../include/text.php:459 -msgid "last" -msgstr "laatste" +#: ../../include/channel.php:1267 +msgid "Love/Romance:" +msgstr "Liefde/romantiek:" -#: ../../include/text.php:462 -msgid "next" -msgstr "volgende" +#: ../../include/channel.php:1269 +msgid "Work/employment:" +msgstr "Werk/beroep:" -#: ../../include/text.php:472 -msgid "older" -msgstr "ouder" +#: ../../include/channel.php:1271 +msgid "School/education:" +msgstr "School/opleiding:" -#: ../../include/text.php:474 -msgid "newer" -msgstr "nieuwer" - -#: ../../include/text.php:863 -msgid "No connections" -msgstr "Geen connecties" - -#: ../../include/text.php:888 -#, php-format -msgid "View all %s connections" -msgstr "Toon alle %s connecties" - -#: ../../include/text.php:1033 ../../include/text.php:1038 -msgid "poke" -msgstr "aanstoten" - -#: ../../include/text.php:1033 ../../include/text.php:1038 -#: ../../include/conversation.php:243 -msgid "poked" -msgstr "aangestoten" - -#: ../../include/text.php:1039 -msgid "ping" -msgstr "ping" - -#: ../../include/text.php:1039 -msgid "pinged" -msgstr "gepingd" - -#: ../../include/text.php:1040 -msgid "prod" -msgstr "por" - -#: ../../include/text.php:1040 -msgid "prodded" -msgstr "gepord" - -#: ../../include/text.php:1041 -msgid "slap" -msgstr "slaan" - -#: ../../include/text.php:1041 -msgid "slapped" -msgstr "sloeg" - -#: ../../include/text.php:1042 -msgid "finger" -msgstr "finger" - -#: ../../include/text.php:1042 -msgid "fingered" -msgstr "gefingerd" - -#: ../../include/text.php:1043 -msgid "rebuff" -msgstr "afpoeieren" - -#: ../../include/text.php:1043 -msgid "rebuffed" -msgstr "afgepoeierd" - -#: ../../include/text.php:1055 -msgid "happy" -msgstr "gelukkig" - -#: ../../include/text.php:1056 -msgid "sad" -msgstr "bedroefd" - -#: ../../include/text.php:1057 -msgid "mellow" -msgstr "mellow" - -#: ../../include/text.php:1058 -msgid "tired" -msgstr "moe" - -#: ../../include/text.php:1059 -msgid "perky" -msgstr "parmantig" - -#: ../../include/text.php:1060 -msgid "angry" -msgstr "boos" - -#: ../../include/text.php:1061 -msgid "stupefied" -msgstr "verbijsterd" - -#: ../../include/text.php:1062 -msgid "puzzled" -msgstr "verward" - -#: ../../include/text.php:1063 -msgid "interested" -msgstr "geïnteresseerd" - -#: ../../include/text.php:1064 -msgid "bitter" -msgstr "verbitterd" - -#: ../../include/text.php:1065 -msgid "cheerful" -msgstr "vrolijk" - -#: ../../include/text.php:1066 -msgid "alive" -msgstr "levendig" - -#: ../../include/text.php:1067 -msgid "annoyed" -msgstr "geërgerd" - -#: ../../include/text.php:1068 -msgid "anxious" -msgstr "bezorgd" - -#: ../../include/text.php:1069 -msgid "cranky" -msgstr "humeurig" - -#: ../../include/text.php:1070 -msgid "disturbed" -msgstr "verontrust" - -#: ../../include/text.php:1071 -msgid "frustrated" -msgstr "gefrustreerd " - -#: ../../include/text.php:1072 -msgid "depressed" -msgstr "gedeprimeerd" - -#: ../../include/text.php:1073 -msgid "motivated" -msgstr "gemotiveerd" - -#: ../../include/text.php:1074 -msgid "relaxed" -msgstr "ontspannen" - -#: ../../include/text.php:1075 -msgid "surprised" -msgstr "verrast" - -#: ../../include/text.php:1257 ../../include/js_strings.php:70 -msgid "Monday" -msgstr "maandag" - -#: ../../include/text.php:1257 ../../include/js_strings.php:71 -msgid "Tuesday" -msgstr "dinsdag" - -#: ../../include/text.php:1257 ../../include/js_strings.php:72 -msgid "Wednesday" -msgstr "woensdag" - -#: ../../include/text.php:1257 ../../include/js_strings.php:73 -msgid "Thursday" -msgstr "donderdag" - -#: ../../include/text.php:1257 ../../include/js_strings.php:74 -msgid "Friday" -msgstr "vrijdag" - -#: ../../include/text.php:1257 ../../include/js_strings.php:75 -msgid "Saturday" -msgstr "zaterdag" - -#: ../../include/text.php:1257 ../../include/js_strings.php:69 -msgid "Sunday" -msgstr "zondag" - -#: ../../include/text.php:1261 ../../include/js_strings.php:45 -msgid "January" -msgstr "januari" - -#: ../../include/text.php:1261 ../../include/js_strings.php:46 -msgid "February" -msgstr "februari" - -#: ../../include/text.php:1261 ../../include/js_strings.php:47 -msgid "March" -msgstr "maart" - -#: ../../include/text.php:1261 ../../include/js_strings.php:48 -msgid "April" -msgstr "april" - -#: ../../include/text.php:1261 -msgid "May" -msgstr "mei" - -#: ../../include/text.php:1261 ../../include/js_strings.php:50 -msgid "June" -msgstr "juni" - -#: ../../include/text.php:1261 ../../include/js_strings.php:51 -msgid "July" -msgstr "juli" - -#: ../../include/text.php:1261 ../../include/js_strings.php:52 -msgid "August" -msgstr "augustus" - -#: ../../include/text.php:1261 ../../include/js_strings.php:53 -msgid "September" -msgstr "september" - -#: ../../include/text.php:1261 ../../include/js_strings.php:54 -msgid "October" -msgstr "oktober" - -#: ../../include/text.php:1261 ../../include/js_strings.php:55 -msgid "November" -msgstr "november" - -#: ../../include/text.php:1261 ../../include/js_strings.php:56 -msgid "December" -msgstr "december" - -#: ../../include/text.php:1338 ../../include/text.php:1342 -msgid "Unknown Attachment" -msgstr "Onbekende bijlage" - -#: ../../include/text.php:1344 -msgid "unknown" -msgstr "onbekend" - -#: ../../include/text.php:1380 -msgid "remove category" -msgstr "categorie verwijderen" - -#: ../../include/text.php:1457 -msgid "remove from file" -msgstr "uit map verwijderen" - -#: ../../include/text.php:1753 ../../include/text.php:1824 -msgid "default" -msgstr "standaard" - -#: ../../include/text.php:1761 -msgid "Page layout" -msgstr "Pagina-lay-out" - -#: ../../include/text.php:1761 -msgid "You can create your own with the layouts tool" -msgstr "Je kan jouw eigen lay-out ontwerpen onder lay-outs" - -#: ../../include/text.php:1803 -msgid "Page content type" -msgstr "Opmaaktype pagina" - -#: ../../include/text.php:1836 -msgid "Select an alternate language" -msgstr "Kies een andere taal" - -#: ../../include/text.php:1953 -msgid "activity" -msgstr "activiteit" - -#: ../../include/text.php:2262 -msgid "Design Tools" -msgstr "Ontwerp-hulpmiddelen" - -#: ../../include/text.php:2268 -msgid "Pages" -msgstr "Pagina's" - -#: ../../include/widgets.php:103 -msgid "System" -msgstr "Systeem" - -#: ../../include/widgets.php:106 -msgid "New App" -msgstr "Nieuwe app" - -#: ../../include/widgets.php:154 -msgid "Suggestions" -msgstr "Voorgestelde kanalen" - -#: ../../include/widgets.php:155 -msgid "See more..." -msgstr "Meer..." - -#: ../../include/widgets.php:175 -#, php-format -msgid "You have %1$.0f of %2$.0f allowed connections." -msgstr "Je hebt %1$.0f van de %2$.0f toegestane connecties." - -#: ../../include/widgets.php:181 -msgid "Add New Connection" -msgstr "Nieuwe connectie toevoegen" - -#: ../../include/widgets.php:182 -msgid "Enter channel address" -msgstr "Vul kanaaladres in" - -#: ../../include/widgets.php:183 -msgid "Examples: bob@example.com, https://example.com/barbara" -msgstr "Voorbeelden: bob@example.com, http://example.com/barbara" - -#: ../../include/widgets.php:199 -msgid "Notes" -msgstr "Aantekeningen" - -#: ../../include/widgets.php:273 -msgid "Remove term" -msgstr "Verwijder zoekterm" - -#: ../../include/widgets.php:281 ../../include/features.php:84 -msgid "Saved Searches" -msgstr "Opgeslagen zoekopdrachten" - -#: ../../include/widgets.php:282 ../../include/group.php:316 -msgid "add" -msgstr "toevoegen" - -#: ../../include/widgets.php:310 ../../include/contact_widgets.php:53 -#: ../../include/features.php:98 -msgid "Saved Folders" -msgstr "Bewaarde mappen" - -#: ../../include/widgets.php:313 ../../include/widgets.php:432 -#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:94 -msgid "Everything" -msgstr "Alles" - -#: ../../include/widgets.php:354 -msgid "Archives" -msgstr "Archieven" - -#: ../../include/widgets.php:516 -msgid "Refresh" -msgstr "Vernieuwen" - -#: ../../include/widgets.php:556 -msgid "Account settings" -msgstr "Account" - -#: ../../include/widgets.php:562 -msgid "Channel settings" -msgstr "Kanaal" - -#: ../../include/widgets.php:571 -msgid "Additional features" -msgstr "Extra functies" - -#: ../../include/widgets.php:578 -msgid "Feature/Addon settings" -msgstr "Plugin-instellingen" - -#: ../../include/widgets.php:584 -msgid "Display settings" -msgstr "Weergave" - -#: ../../include/widgets.php:591 -msgid "Manage locations" -msgstr "Locaties beheren" - -#: ../../include/widgets.php:600 -msgid "Export channel" -msgstr "Kanaal exporteren" - -#: ../../include/widgets.php:607 -msgid "Connected apps" -msgstr "Verbonden applicaties" - -#: ../../include/widgets.php:622 -msgid "Premium Channel Settings" -msgstr "Instellingen premiumkanaal" - -#: ../../include/widgets.php:651 -msgid "Private Mail Menu" -msgstr "Privéberichten" - -#: ../../include/widgets.php:653 -msgid "Combined View" -msgstr "Gecombineerd postvak" - -#: ../../include/widgets.php:658 ../../include/nav.php:196 -msgid "Inbox" -msgstr "Postvak IN" - -#: ../../include/widgets.php:663 ../../include/nav.php:197 -msgid "Outbox" -msgstr "Postvak UIT" - -#: ../../include/widgets.php:668 ../../include/nav.php:198 -msgid "New Message" -msgstr "Nieuw bericht" - -#: ../../include/widgets.php:685 ../../include/widgets.php:697 -msgid "Conversations" -msgstr "Conversaties" - -#: ../../include/widgets.php:689 -msgid "Received Messages" -msgstr "Ontvangen berichten" - -#: ../../include/widgets.php:693 -msgid "Sent Messages" -msgstr "Verzonden berichten" - -#: ../../include/widgets.php:707 -msgid "No messages." -msgstr "Geen berichten" - -#: ../../include/widgets.php:725 -msgid "Delete conversation" -msgstr "Verwijder conversatie" - -#: ../../include/widgets.php:751 -msgid "Events Menu" -msgstr "Agenda-menu" - -#: ../../include/widgets.php:752 -msgid "Day View" -msgstr "Dag tonen" - -#: ../../include/widgets.php:753 -msgid "Week View" -msgstr "Week tonen" - -#: ../../include/widgets.php:754 -msgid "Month View" -msgstr "Maand tonen" - -#: ../../include/widgets.php:766 -msgid "Events Tools" -msgstr "Agenda-hulpmiddelen" - -#: ../../include/widgets.php:767 -msgid "Export Calendar" -msgstr "Exporteren" - -#: ../../include/widgets.php:768 -msgid "Import Calendar" -msgstr "Importeren" - -#: ../../include/widgets.php:842 ../../include/conversation.php:1662 -#: ../../include/conversation.php:1665 -msgid "Chatrooms" -msgstr "Chatkanalen" - -#: ../../include/widgets.php:846 -msgid "Overview" -msgstr "Overzicht" - -#: ../../include/widgets.php:853 -msgid "Chat Members" -msgstr "Chatleden" - -#: ../../include/widgets.php:876 -msgid "Bookmarked Chatrooms" -msgstr "Bladwijzers van chatkanalen" - -#: ../../include/widgets.php:899 -msgid "Suggested Chatrooms" -msgstr "Voorgestelde chatkanalen" - -#: ../../include/widgets.php:1044 ../../include/widgets.php:1156 -msgid "photo/image" -msgstr "foto/afbeelding" - -#: ../../include/widgets.php:1099 -msgid "Click to show more" -msgstr "Klik voor meer" - -#: ../../include/widgets.php:1250 -msgid "Rating Tools" -msgstr "Beoordelingen" - -#: ../../include/widgets.php:1254 ../../include/widgets.php:1256 -msgid "Rate Me" -msgstr "Beoordeel mij" - -#: ../../include/widgets.php:1259 -msgid "View Ratings" -msgstr "Bekijk beoordelingen" - -#: ../../include/widgets.php:1316 -msgid "Forums" -msgstr "Forums" - -#: ../../include/widgets.php:1345 -msgid "Tasks" -msgstr "Taken" - -#: ../../include/widgets.php:1354 -msgid "Documentation" -msgstr "Documentatie" - -#: ../../include/widgets.php:1356 -msgid "Project/Site Information" -msgstr "Project- en hub-informatie" - -#: ../../include/widgets.php:1357 -msgid "For Members" -msgstr "Voor leden" - -#: ../../include/widgets.php:1358 -msgid "For Administrators" -msgstr "Voor beheerders" - -#: ../../include/widgets.php:1359 -msgid "For Developers" -msgstr "Voor ontwikkelaars" - -#: ../../include/widgets.php:1383 ../../include/widgets.php:1421 -msgid "Member registrations waiting for confirmation" -msgstr "Accounts die op goedkeuring wachten" - -#: ../../include/widgets.php:1389 -msgid "Inspect queue" -msgstr "Inspecteer berichtenwachtrij" - -#: ../../include/widgets.php:1391 -msgid "DB updates" -msgstr "Database-updates" - -#: ../../include/widgets.php:1416 ../../include/nav.php:216 -msgid "Admin" -msgstr "Beheer" - -#: ../../include/widgets.php:1417 -msgid "Plugin Features" -msgstr "Plugin-opties" - -#: ../../include/follow.php:27 -msgid "Channel is blocked on this site." -msgstr "Kanaal is op deze hub geblokkeerd." - -#: ../../include/follow.php:32 -msgid "Channel location missing." -msgstr "Ontbrekende kanaallocatie." - -#: ../../include/follow.php:81 -msgid "Response from remote channel was incomplete." -msgstr "Antwoord van het kanaal op afstand was niet volledig." - -#: ../../include/follow.php:98 -msgid "Channel was deleted and no longer exists." -msgstr "Kanaal is verwijderd en bestaat niet meer." - -#: ../../include/follow.php:154 ../../include/follow.php:190 -msgid "Protocol disabled." -msgstr "Protocol uitgeschakeld." - -#: ../../include/follow.php:178 -msgid "Channel discovery failed." -msgstr "Kanaal ontdekken mislukt." - -#: ../../include/follow.php:216 -msgid "Cannot connect to yourself." -msgstr "Kan niet met jezelf verbinden" - -#: ../../include/bookmarks.php:35 -#, php-format -msgid "%1$s's bookmarks" -msgstr "Bladwijzers van %1$s" - -#: ../../include/api.php:1336 -msgid "Public Timeline" -msgstr "Openbare tijdlijn" - -#: ../../include/bbcode.php:123 ../../include/bbcode.php:844 -#: ../../include/bbcode.php:847 ../../include/bbcode.php:852 -#: ../../include/bbcode.php:855 ../../include/bbcode.php:858 -#: ../../include/bbcode.php:861 ../../include/bbcode.php:866 -#: ../../include/bbcode.php:869 ../../include/bbcode.php:874 -#: ../../include/bbcode.php:877 ../../include/bbcode.php:880 -#: ../../include/bbcode.php:883 -msgid "Image/photo" -msgstr "Afbeelding/foto" - -#: ../../include/bbcode.php:162 ../../include/bbcode.php:894 -msgid "Encrypted content" -msgstr "Versleutelde inhoud" - -#: ../../include/bbcode.php:178 -#, php-format -msgid "Install %s element: " -msgstr "Installeer %s-element: " - -#: ../../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 "Dit bericht heeft een te installeren %s-element, maar je hebt geen permissies om het op deze hub te installeren." - -#: ../../include/bbcode.php:254 -#, php-format -msgid "%1$s wrote the following %2$s %3$s" -msgstr "%1$s schreef het volgende %2$s %3$s" - -#: ../../include/bbcode.php:331 ../../include/bbcode.php:339 -msgid "Click to open/close" -msgstr "Klik om te openen of te sluiten" - -#: ../../include/bbcode.php:339 -msgid "spoiler" -msgstr "spoiler" - -#: ../../include/bbcode.php:585 -msgid "Different viewers will see this text differently" -msgstr "Deze tekst wordt per persoon anders weergeven." - -#: ../../include/bbcode.php:832 -msgid "$1 wrote:" -msgstr "$1 schreef:" - -#: ../../include/dir_fns.php:141 -msgid "Directory Options" -msgstr "Opties kanalengids" - -#: ../../include/dir_fns.php:143 -msgid "Safe Mode" -msgstr "Veilig zoeken" - -#: ../../include/dir_fns.php:144 -msgid "Public Forums Only" -msgstr "Alleen openbare forums" - -#: ../../include/dir_fns.php:145 -msgid "This Website Only" -msgstr "Alleen deze hub" - -#: ../../include/security.php:383 -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 "De beveiligings-token van het tekstvak was ongeldig. Dit is mogelijk het gevolg van dat er te lang (meer dan 3 uur) gewacht is om de tekst op te slaan. " - -#: ../../include/nav.php:82 ../../include/nav.php:113 ../../boot.php:1702 -msgid "Logout" -msgstr "Uitloggen" - -#: ../../include/nav.php:82 ../../include/nav.php:113 -msgid "End this session" -msgstr "Beëindig deze sessie" - -#: ../../include/nav.php:85 ../../include/nav.php:144 -msgid "Home" -msgstr "Home" - -#: ../../include/nav.php:85 -msgid "Your posts and conversations" -msgstr "Jouw kanaal" - -#: ../../include/nav.php:86 -msgid "Your profile page" -msgstr "Jouw profielpagina" - -#: ../../include/nav.php:88 -msgid "Manage/Edit profiles" -msgstr "Beheer/wijzig profielen" - -#: ../../include/nav.php:90 ../../include/channel.php:941 -msgid "Edit Profile" -msgstr "Profiel bewerken" - -#: ../../include/nav.php:90 -msgid "Edit your profile" -msgstr "Jouw profiel bewerken" - -#: ../../include/nav.php:92 -msgid "Your photos" -msgstr "Jouw foto's" - -#: ../../include/nav.php:93 -msgid "Your files" -msgstr "Jouw bestanden" - -#: ../../include/nav.php:96 -msgid "Your chatrooms" -msgstr "Jouw chatkanalen" - -#: ../../include/nav.php:102 ../../include/conversation.php:1675 -msgid "Bookmarks" -msgstr "Bladwijzers" - -#: ../../include/nav.php:102 -msgid "Your bookmarks" -msgstr "Jouw bladwijzers" - -#: ../../include/nav.php:106 -msgid "Your webpages" -msgstr "Jouw webpagina's" - -#: ../../include/nav.php:110 -msgid "Sign in" -msgstr "Inloggen" - -#: ../../include/nav.php:127 -#, php-format -msgid "%s - click to logout" -msgstr "%s - klik om uit te loggen" - -#: ../../include/nav.php:130 -msgid "Remote authentication" -msgstr "Authenticatie op afstand" - -#: ../../include/nav.php:130 -msgid "Click to authenticate to your home hub" -msgstr "Authenticeer jezelf via (bijvoorbeeld) jouw hub" - -#: ../../include/nav.php:144 -msgid "Home Page" -msgstr "Homepage" - -#: ../../include/nav.php:147 -msgid "Create an account" -msgstr "Maak een account aan" - -#: ../../include/nav.php:159 -msgid "Help and documentation" -msgstr "Hulp en documentatie" - -#: ../../include/nav.php:163 -msgid "Applications, utilities, links, games" -msgstr "Apps" - -#: ../../include/nav.php:165 -msgid "Search site @name, #tag, ?docs, content" -msgstr "Zoek een @kanaal, doorzoek inhoud hub met tekst en #tags, of doorzoek ?documentatie " - -#: ../../include/nav.php:167 -msgid "Channel Directory" -msgstr "Kanalengids" - -#: ../../include/nav.php:179 -msgid "Your grid" -msgstr "Jouw grid" - -#: ../../include/nav.php:180 -msgid "Mark all grid notifications seen" -msgstr "Markeer alle gridnotificaties als bekeken" - -#: ../../include/nav.php:182 -msgid "Channel home" -msgstr "Jouw kanaal" - -#: ../../include/nav.php:183 -msgid "Mark all channel notifications seen" -msgstr "Alle kanaalnotificaties als gelezen markeren" - -#: ../../include/nav.php:189 -msgid "Notices" -msgstr "Notificaties" - -#: ../../include/nav.php:189 -msgid "Notifications" -msgstr "Notificaties" - -#: ../../include/nav.php:190 -msgid "See all notifications" -msgstr "Alle notificaties weergeven" - -#: ../../include/nav.php:193 -msgid "Private mail" -msgstr "Privéberichten" - -#: ../../include/nav.php:194 -msgid "See all private messages" -msgstr "Alle privéberichten weergeven" - -#: ../../include/nav.php:195 -msgid "Mark all private messages seen" -msgstr "Markeer alle privéberichten als bekeken" - -#: ../../include/nav.php:201 -msgid "Event Calendar" -msgstr "Agenda" - -#: ../../include/nav.php:202 -msgid "See all events" -msgstr "Alle gebeurtenissen weergeven" - -#: ../../include/nav.php:203 -msgid "Mark all events seen" -msgstr "Markeer alle gebeurtenissen als bekeken" - -#: ../../include/nav.php:206 -msgid "Manage Your Channels" -msgstr "Beheer je kanalen" - -#: ../../include/nav.php:208 -msgid "Account/Channel Settings" -msgstr "Account-/kanaal-instellingen" - -#: ../../include/nav.php:216 -msgid "Site Setup and Configuration" -msgstr "Hub instellen en beheren" - -#: ../../include/nav.php:247 ../../include/conversation.php:851 -msgid "Loading..." -msgstr "Aan het laden..." - -#: ../../include/nav.php:252 -msgid "@name, #tag, ?doc, content" -msgstr "@kanaal, #tag, inhoud, ?hulp" - -#: ../../include/nav.php:253 -msgid "Please wait..." -msgstr "Wachten aub..." +#: ../../include/channel.php:1292 +msgid "Like this thing" +msgstr "Vind dit ding leuk" #: ../../include/connections.php:95 msgid "New window" @@ -7760,52 +7606,6 @@ msgstr "Open de geselecteerde locatie in een ander venster of tab" msgid "User '%s' deleted" msgstr "Account '%s' verwijderd" -#: ../../include/contact_widgets.php:11 -#, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "%d uitnodiging beschikbaar" -msgstr[1] "%d uitnodigingen beschikbaar" - -#: ../../include/contact_widgets.php:19 -msgid "Find Channels" -msgstr "Kanalen vinden" - -#: ../../include/contact_widgets.php:20 -msgid "Enter name or interest" -msgstr "Vul naam of interesse in" - -#: ../../include/contact_widgets.php:21 -msgid "Connect/Follow" -msgstr "Verbinden/volgen" - -#: ../../include/contact_widgets.php:22 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "Voorbeeld: Robert Morgenstein, vissen" - -#: ../../include/contact_widgets.php:26 -msgid "Random Profile" -msgstr "Willekeurig profiel" - -#: ../../include/contact_widgets.php:27 -msgid "Invite Friends" -msgstr "Vrienden uitnodigen" - -#: ../../include/contact_widgets.php:29 -msgid "Advanced example: name=fred and country=iceland" -msgstr "Geavanceerd voorbeeld (Engels): name=jan en country=nederland" - -#: ../../include/contact_widgets.php:122 -#, php-format -msgid "%d connection in common" -msgid_plural "%d connections in common" -msgstr[0] "%d gemeenschappelijke connectie" -msgstr[1] "%d gemeenschappelijke connecties" - -#: ../../include/contact_widgets.php:127 -msgid "show more" -msgstr "meer connecties weergeven" - #: ../../include/conversation.php:204 #, php-format msgid "%1$s is now connected with %2$s" @@ -7816,258 +7616,269 @@ msgstr "%1$s is nu met %2$s verbonden" msgid "%1$s poked %2$s" msgstr "%1$s heeft %2$s aangestoten" -#: ../../include/conversation.php:691 +#: ../../include/conversation.php:243 ../../include/text.php:1013 +#: ../../include/text.php:1018 +msgid "poked" +msgstr "aangestoten" + +#: ../../include/conversation.php:694 #, php-format msgid "View %s's profile @ %s" msgstr "Bekijk het profiel van %s @ %s" -#: ../../include/conversation.php:710 +#: ../../include/conversation.php:713 msgid "Categories:" msgstr "Categorieën:" -#: ../../include/conversation.php:711 +#: ../../include/conversation.php:714 msgid "Filed under:" msgstr "Bewaard onder:" -#: ../../include/conversation.php:738 +#: ../../include/conversation.php:741 msgid "View in context" msgstr "In context bekijken" -#: ../../include/conversation.php:847 +#: ../../include/conversation.php:850 msgid "remove" msgstr "verwijderen" -#: ../../include/conversation.php:852 +#: ../../include/conversation.php:855 msgid "Delete Selected Items" msgstr "Verwijder de geselecteerde items" -#: ../../include/conversation.php:948 +#: ../../include/conversation.php:951 msgid "View Source" msgstr "Bron weergeven" -#: ../../include/conversation.php:949 +#: ../../include/conversation.php:952 msgid "Follow Thread" msgstr "Conversatie volgen" -#: ../../include/conversation.php:950 +#: ../../include/conversation.php:953 msgid "Unfollow Thread" msgstr "Conversatie niet meer volgen" -#: ../../include/conversation.php:955 +#: ../../include/conversation.php:958 msgid "Activity/Posts" msgstr "Activiteit/berichten connectie" -#: ../../include/conversation.php:957 +#: ../../include/conversation.php:960 msgid "Edit Connection" msgstr "Connectie bewerken" -#: ../../include/conversation.php:958 +#: ../../include/conversation.php:961 msgid "Message" msgstr "Bericht" -#: ../../include/conversation.php:1075 +#: ../../include/conversation.php:1078 #, php-format msgid "%s likes this." msgstr "%s vindt dit leuk." -#: ../../include/conversation.php:1075 +#: ../../include/conversation.php:1078 #, php-format msgid "%s doesn't like this." msgstr "%s vindt dit niet leuk." -#: ../../include/conversation.php:1079 +#: ../../include/conversation.php:1082 #, php-format msgid "%2$d people like this." msgid_plural "%2$d people like this." msgstr[0] "%2$d persoon vindt dit leuk." msgstr[1] "%2$d personen vinden dit leuk." -#: ../../include/conversation.php:1081 +#: ../../include/conversation.php:1084 #, php-format msgid "%2$d people don't like this." msgid_plural "%2$d people don't like this." msgstr[0] "%2$d persoon vindt dit niet leuk." msgstr[1] "%2$d personen vinden dit niet leuk." -#: ../../include/conversation.php:1087 +#: ../../include/conversation.php:1090 msgid "and" msgstr "en" -#: ../../include/conversation.php:1090 +#: ../../include/conversation.php:1093 #, php-format msgid ", and %d other people" msgid_plural ", and %d other people" msgstr[0] ", en %d ander persoon" msgstr[1] ", en %d andere personen" -#: ../../include/conversation.php:1091 +#: ../../include/conversation.php:1094 #, php-format msgid "%s like this." msgstr "%s vinden dit leuk." -#: ../../include/conversation.php:1091 +#: ../../include/conversation.php:1094 #, php-format msgid "%s don't like this." msgstr "%s vinden dit niet leuk." -#: ../../include/conversation.php:1130 +#: ../../include/conversation.php:1133 msgid "Set your location" msgstr "Locatie instellen" -#: ../../include/conversation.php:1131 +#: ../../include/conversation.php:1134 msgid "Clear browser location" msgstr "Locatie van webbrowser wissen" -#: ../../include/conversation.php:1177 +#: ../../include/conversation.php:1182 msgid "Tag term:" msgstr "Tag:" -#: ../../include/conversation.php:1178 +#: ../../include/conversation.php:1183 msgid "Where are you right now?" msgstr "Waar bevind je je op dit moment?" -#: ../../include/conversation.php:1210 +#: ../../include/conversation.php:1221 msgid "Page link name" msgstr "Linknaam pagina" -#: ../../include/conversation.php:1213 +#: ../../include/conversation.php:1224 msgid "Post as" msgstr "Bericht plaatsen als" -#: ../../include/conversation.php:1223 +#: ../../include/conversation.php:1238 msgid "Toggle voting" msgstr "Peiling in- of uitschakelen" -#: ../../include/conversation.php:1231 +#: ../../include/conversation.php:1246 msgid "Categories (optional, comma-separated list)" msgstr "Categorieën (optioneel, door komma's gescheiden lijst)" -#: ../../include/conversation.php:1254 +#: ../../include/conversation.php:1269 msgid "Set publish date" msgstr "Publicatiedatum instellen" -#: ../../include/conversation.php:1258 -msgid "OK" -msgstr "OK" - -#: ../../include/conversation.php:1503 +#: ../../include/conversation.php:1518 msgid "Discover" msgstr "Ontdekken" -#: ../../include/conversation.php:1506 +#: ../../include/conversation.php:1521 msgid "Imported public streams" msgstr "Openbare streams importeren" -#: ../../include/conversation.php:1511 +#: ../../include/conversation.php:1526 msgid "Commented Order" msgstr "Nieuwe reacties bovenaan" -#: ../../include/conversation.php:1514 +#: ../../include/conversation.php:1529 msgid "Sort by Comment Date" msgstr "Berichten met nieuwe reacties bovenaan" -#: ../../include/conversation.php:1518 +#: ../../include/conversation.php:1533 msgid "Posted Order" msgstr "Nieuwe berichten bovenaan" -#: ../../include/conversation.php:1521 +#: ../../include/conversation.php:1536 msgid "Sort by Post Date" msgstr "Nieuwe berichten bovenaan" -#: ../../include/conversation.php:1529 +#: ../../include/conversation.php:1544 msgid "Posts that mention or involve you" msgstr "Alleen berichten die jou vermelden of waar je op een andere manier bij betrokken bent" -#: ../../include/conversation.php:1538 +#: ../../include/conversation.php:1553 msgid "Activity Stream - by date" msgstr "Activiteitenstroom - volgens datum" -#: ../../include/conversation.php:1544 +#: ../../include/conversation.php:1559 msgid "Starred" msgstr "Met ster" -#: ../../include/conversation.php:1547 +#: ../../include/conversation.php:1562 msgid "Favourite Posts" msgstr "Favoriete berichten" -#: ../../include/conversation.php:1554 +#: ../../include/conversation.php:1569 msgid "Spam" msgstr "Spam" -#: ../../include/conversation.php:1557 +#: ../../include/conversation.php:1572 msgid "Posts flagged as SPAM" msgstr "Berichten gemarkeerd als SPAM" -#: ../../include/conversation.php:1614 +#: ../../include/conversation.php:1629 msgid "Status Messages and Posts" msgstr "Berichten in dit kanaal" -#: ../../include/conversation.php:1623 +#: ../../include/conversation.php:1638 msgid "About" msgstr "Over" -#: ../../include/conversation.php:1626 +#: ../../include/conversation.php:1641 msgid "Profile Details" msgstr "Profiel" -#: ../../include/conversation.php:1635 ../../include/photos.php:502 -msgid "Photo Albums" -msgstr "Fotoalbums" - -#: ../../include/conversation.php:1642 +#: ../../include/conversation.php:1657 msgid "Files and Storage" msgstr "Bestanden en opslagruimte" -#: ../../include/conversation.php:1678 +#: ../../include/conversation.php:1677 ../../include/conversation.php:1680 +#: ../../include/widgets.php:836 +msgid "Chatrooms" +msgstr "Chatkanalen" + +#: ../../include/conversation.php:1693 msgid "Saved Bookmarks" msgstr "Opgeslagen bladwijzers" -#: ../../include/conversation.php:1688 +#: ../../include/conversation.php:1703 msgid "Manage Webpages" msgstr "Webpagina's beheren" -#: ../../include/conversation.php:1747 +#: ../../include/conversation.php:1768 msgctxt "noun" msgid "Attending" msgid_plural "Attending" msgstr[0] "aanwezig" msgstr[1] "aanwezig" -#: ../../include/conversation.php:1750 +#: ../../include/conversation.php:1771 msgctxt "noun" msgid "Not Attending" msgid_plural "Not Attending" msgstr[0] "niet aanwezig" msgstr[1] "niet aanwezig" -#: ../../include/conversation.php:1753 +#: ../../include/conversation.php:1774 msgctxt "noun" msgid "Undecided" msgid_plural "Undecided" msgstr[0] "nog niet beslist" msgstr[1] "nog niet beslist" -#: ../../include/conversation.php:1756 +#: ../../include/conversation.php:1777 msgctxt "noun" msgid "Agree" msgid_plural "Agrees" msgstr[0] "eens" msgstr[1] "eens" -#: ../../include/conversation.php:1759 +#: ../../include/conversation.php:1780 msgctxt "noun" msgid "Disagree" msgid_plural "Disagrees" msgstr[0] "oneens" msgstr[1] "oneens" -#: ../../include/conversation.php:1762 +#: ../../include/conversation.php:1783 msgctxt "noun" msgid "Abstain" msgid_plural "Abstains" msgstr[0] "onthouding" msgstr[1] "onthoudingen" +#: ../../include/import.php:30 +msgid "" +"Cannot create a duplicate channel identifier on this system. Import failed." +msgstr "Kan geen dubbele kanaal-identificator op deze hub aanmaken. Importeren mislukt." + +#: ../../include/import.php:97 +msgid "Channel clone failed. Import failed." +msgstr "Het klonen van het kanaal is mislukt. Importeren mislukt." + #: ../../include/selectors.php:30 msgid "Frequently" msgstr "Regelmatig" @@ -8132,12 +7943,6 @@ msgstr "Genderneutraal" msgid "Non-specific" msgstr "Niet gespecificeerd" -#: ../../include/selectors.php:49 ../../include/selectors.php:66 -#: ../../include/selectors.php:104 ../../include/selectors.php:140 -#: ../../include/permissions.php:881 -msgid "Other" -msgstr "Anders" - #: ../../include/selectors.php:49 msgid "Undecided" msgstr "Nog niet beslist" @@ -8314,361 +8119,366 @@ msgstr "Maakt mij niks uit" msgid "Ask me" msgstr "Vraag het me" -#: ../../include/PermissionDescription.php:31 -#: ../../include/acl_selectors.php:232 -msgid "Visible to your default audience" -msgstr "Voor iedereen zichtbaar, mits niet anders ingesteld" - -#: ../../include/PermissionDescription.php:115 -#: ../../include/acl_selectors.php:268 -msgid "Only me" -msgstr "Alleen ik" - -#: ../../include/PermissionDescription.php:116 -msgid "Public" -msgstr "Openbaar" - -#: ../../include/PermissionDescription.php:117 -msgid "Anybody in the $Projectname network" -msgstr "Iedereen in het $Projectname-netwerk" - -#: ../../include/PermissionDescription.php:118 +#: ../../include/bookmarks.php:35 #, php-format -msgid "Any account on %s" -msgstr "Iedereen op %s" +msgid "%1$s's bookmarks" +msgstr "Bladwijzers van %1$s" -#: ../../include/PermissionDescription.php:119 -msgid "Any of my connections" -msgstr "Al mijn geaccepteerde connecties" +#: ../../include/security.php:109 +msgid "guest:" +msgstr "gast:" -#: ../../include/PermissionDescription.php:120 -msgid "Only connections I specifically allow" -msgstr "Alleen connecties die uitdrukkelijk door jou zijn toegestaan" - -#: ../../include/PermissionDescription.php:121 -msgid "Anybody authenticated (could include visitors from other networks)" -msgstr "Geauthenticeerde leden (kan bezoekers van andere netwerken bevatten)" - -#: ../../include/PermissionDescription.php:122 -msgid "Any connections including those who haven't yet been approved" -msgstr "Al mijn geaccepteerde en nog niet geaccepteerde connecties" - -#: ../../include/PermissionDescription.php:161 +#: ../../include/security.php:427 msgid "" -"This is your default setting for the audience of your normal stream, and " -"posts." -msgstr "Dit is de standaard privacy-instelling voor wie jouw berichten kan bekijken" +"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 "De beveiligings-token van het tekstvak was ongeldig. Dit is mogelijk het gevolg van dat er te lang (meer dan 3 uur) gewacht is om de tekst op te slaan. " -#: ../../include/PermissionDescription.php:162 +#: ../../include/text.php:404 +msgid "prev" +msgstr "vorige" + +#: ../../include/text.php:406 +msgid "first" +msgstr "eerste" + +#: ../../include/text.php:435 +msgid "last" +msgstr "laatste" + +#: ../../include/text.php:438 +msgid "next" +msgstr "volgende" + +#: ../../include/text.php:448 +msgid "older" +msgstr "ouder" + +#: ../../include/text.php:450 +msgid "newer" +msgstr "nieuwer" + +#: ../../include/text.php:843 +msgid "No connections" +msgstr "Geen connecties" + +#: ../../include/text.php:868 +#, php-format +msgid "View all %s connections" +msgstr "Toon alle %s connecties" + +#: ../../include/text.php:1013 ../../include/text.php:1018 +msgid "poke" +msgstr "aanstoten" + +#: ../../include/text.php:1019 +msgid "ping" +msgstr "ping" + +#: ../../include/text.php:1019 +msgid "pinged" +msgstr "gepingd" + +#: ../../include/text.php:1020 +msgid "prod" +msgstr "por" + +#: ../../include/text.php:1020 +msgid "prodded" +msgstr "gepord" + +#: ../../include/text.php:1021 +msgid "slap" +msgstr "slaan" + +#: ../../include/text.php:1021 +msgid "slapped" +msgstr "sloeg" + +#: ../../include/text.php:1022 +msgid "finger" +msgstr "finger" + +#: ../../include/text.php:1022 +msgid "fingered" +msgstr "gefingerd" + +#: ../../include/text.php:1023 +msgid "rebuff" +msgstr "afpoeieren" + +#: ../../include/text.php:1023 +msgid "rebuffed" +msgstr "afgepoeierd" + +#: ../../include/text.php:1035 +msgid "happy" +msgstr "gelukkig" + +#: ../../include/text.php:1036 +msgid "sad" +msgstr "bedroefd" + +#: ../../include/text.php:1037 +msgid "mellow" +msgstr "mellow" + +#: ../../include/text.php:1038 +msgid "tired" +msgstr "moe" + +#: ../../include/text.php:1039 +msgid "perky" +msgstr "parmantig" + +#: ../../include/text.php:1040 +msgid "angry" +msgstr "boos" + +#: ../../include/text.php:1041 +msgid "stupefied" +msgstr "verbijsterd" + +#: ../../include/text.php:1042 +msgid "puzzled" +msgstr "verward" + +#: ../../include/text.php:1043 +msgid "interested" +msgstr "geïnteresseerd" + +#: ../../include/text.php:1044 +msgid "bitter" +msgstr "verbitterd" + +#: ../../include/text.php:1045 +msgid "cheerful" +msgstr "vrolijk" + +#: ../../include/text.php:1046 +msgid "alive" +msgstr "levendig" + +#: ../../include/text.php:1047 +msgid "annoyed" +msgstr "geërgerd" + +#: ../../include/text.php:1048 +msgid "anxious" +msgstr "bezorgd" + +#: ../../include/text.php:1049 +msgid "cranky" +msgstr "humeurig" + +#: ../../include/text.php:1050 +msgid "disturbed" +msgstr "verontrust" + +#: ../../include/text.php:1051 +msgid "frustrated" +msgstr "gefrustreerd " + +#: ../../include/text.php:1052 +msgid "depressed" +msgstr "gedeprimeerd" + +#: ../../include/text.php:1053 +msgid "motivated" +msgstr "gemotiveerd" + +#: ../../include/text.php:1054 +msgid "relaxed" +msgstr "ontspannen" + +#: ../../include/text.php:1055 +msgid "surprised" +msgstr "verrast" + +#: ../../include/text.php:1237 ../../include/js_strings.php:70 +msgid "Monday" +msgstr "maandag" + +#: ../../include/text.php:1237 ../../include/js_strings.php:71 +msgid "Tuesday" +msgstr "dinsdag" + +#: ../../include/text.php:1237 ../../include/js_strings.php:72 +msgid "Wednesday" +msgstr "woensdag" + +#: ../../include/text.php:1237 ../../include/js_strings.php:73 +msgid "Thursday" +msgstr "donderdag" + +#: ../../include/text.php:1237 ../../include/js_strings.php:74 +msgid "Friday" +msgstr "vrijdag" + +#: ../../include/text.php:1237 ../../include/js_strings.php:75 +msgid "Saturday" +msgstr "zaterdag" + +#: ../../include/text.php:1237 ../../include/js_strings.php:69 +msgid "Sunday" +msgstr "zondag" + +#: ../../include/text.php:1241 ../../include/js_strings.php:45 +msgid "January" +msgstr "januari" + +#: ../../include/text.php:1241 ../../include/js_strings.php:46 +msgid "February" +msgstr "februari" + +#: ../../include/text.php:1241 ../../include/js_strings.php:47 +msgid "March" +msgstr "maart" + +#: ../../include/text.php:1241 ../../include/js_strings.php:48 +msgid "April" +msgstr "april" + +#: ../../include/text.php:1241 +msgid "May" +msgstr "mei" + +#: ../../include/text.php:1241 ../../include/js_strings.php:50 +msgid "June" +msgstr "juni" + +#: ../../include/text.php:1241 ../../include/js_strings.php:51 +msgid "July" +msgstr "juli" + +#: ../../include/text.php:1241 ../../include/js_strings.php:52 +msgid "August" +msgstr "augustus" + +#: ../../include/text.php:1241 ../../include/js_strings.php:53 +msgid "September" +msgstr "september" + +#: ../../include/text.php:1241 ../../include/js_strings.php:54 +msgid "October" +msgstr "oktober" + +#: ../../include/text.php:1241 ../../include/js_strings.php:55 +msgid "November" +msgstr "november" + +#: ../../include/text.php:1241 ../../include/js_strings.php:56 +msgid "December" +msgstr "december" + +#: ../../include/text.php:1318 ../../include/text.php:1322 +msgid "Unknown Attachment" +msgstr "Onbekende bijlage" + +#: ../../include/text.php:1324 +msgid "unknown" +msgstr "onbekend" + +#: ../../include/text.php:1360 +msgid "remove category" +msgstr "categorie verwijderen" + +#: ../../include/text.php:1437 +msgid "remove from file" +msgstr "uit map verwijderen" + +#: ../../include/text.php:1734 ../../include/text.php:1805 +msgid "default" +msgstr "standaard" + +#: ../../include/text.php:1742 +msgid "Page layout" +msgstr "Pagina-lay-out" + +#: ../../include/text.php:1742 +msgid "You can create your own with the layouts tool" +msgstr "Je kan jouw eigen lay-out ontwerpen onder lay-outs" + +#: ../../include/text.php:1784 +msgid "Page content type" +msgstr "Opmaaktype pagina" + +#: ../../include/text.php:1817 +msgid "Select an alternate language" +msgstr "Kies een andere taal" + +#: ../../include/text.php:1934 +msgid "activity" +msgstr "activiteit" + +#: ../../include/text.php:2235 +msgid "Design Tools" +msgstr "Ontwerp-hulpmiddelen" + +#: ../../include/text.php:2241 +msgid "Pages" +msgstr "Pagina's" + +#: ../../include/auth.php:147 +msgid "Logged out." +msgstr "Uitgelogd." + +#: ../../include/auth.php:274 +msgid "Failed authentication" +msgstr "Mislukte authenticatie" + +#: ../../include/permissions.php:26 +msgid "Can view my normal stream and posts" +msgstr "Kan mijn normale kanaalstream en berichten bekijken" + +#: ../../include/permissions.php:30 +msgid "Can view my webpages" +msgstr "Kan mijn pagina's bekijken" + +#: ../../include/permissions.php:34 +msgid "Can post on my channel page (\"wall\")" +msgstr "Kan een bericht in mijn kanaal plaatsen" + +#: ../../include/permissions.php:37 +msgid "Can like/dislike stuff" +msgstr "Kan dingen leuk of niet leuk vinden" + +#: ../../include/permissions.php:37 +msgid "Profiles and things other than posts/comments" +msgstr "Profielen en dingen, buiten berichten en reacties" + +#: ../../include/permissions.php:39 +msgid "Can forward to all my channel contacts via post @mentions" +msgstr "Kan naar al mijn kanaalconnecties berichten doorsturen met behulp van @vermeldingen+" + +#: ../../include/permissions.php:39 +msgid "Advanced - useful for creating group forum channels" +msgstr "Geavanceerd - nuttig voor groepforums" + +#: ../../include/permissions.php:40 +msgid "Can chat with me (when available)" +msgstr "Kan met mij chatten (wanneer beschikbaar)" + +#: ../../include/permissions.php:41 +msgid "Can write to my file storage and photos" +msgstr "Kan foto's en andere bestanden aan mijn bestandsopslag toevoegen" + +#: ../../include/permissions.php:42 +msgid "Can edit my webpages" +msgstr "Kan mijn pagina's bewerken" + +#: ../../include/permissions.php:44 +msgid "Somewhat advanced - very useful in open communities" +msgstr "Enigszins geavanceerd (erg nuttig voor kanalen van forums/groepen)" + +#: ../../include/permissions.php:46 +msgid "Can administer my channel resources" +msgstr "Kan mijn kanaal beheren" + +#: ../../include/permissions.php:46 msgid "" -"This is your default setting for who can view your default channel profile" -msgstr "Dit is de standaard privacy-instelling voor wie jouw standaardprofiel kan bekijken" - -#: ../../include/PermissionDescription.php:163 -msgid "This is your default setting for who can view your connections" -msgstr "Dit is de standaard privacy-instelling voor wie een lijst met jouw connecties kan bekijken" - -#: ../../include/PermissionDescription.php:164 -msgid "" -"This is your default setting for who can view your file storage and photos" -msgstr "Dit is de standaard privacy-instelling voor wie jouw bestanden en foto's kan bekijken" - -#: ../../include/PermissionDescription.php:165 -msgid "This is your default setting for the audience of your webpages" -msgstr "Dit is de standaard privacy-instelling voor wie jouw webpagina's kan bekijken" - -#: ../../include/account.php:28 -msgid "Not a valid email address" -msgstr "Geen geldig e-mailadres" - -#: ../../include/account.php:30 -msgid "Your email domain is not among those allowed on this site" -msgstr "Jouw e-maildomein is op deze hub niet toegestaan" - -#: ../../include/account.php:36 -msgid "Your email address is already registered at this site." -msgstr "Jouw e-mailadres is al op deze hub geregistreerd." - -#: ../../include/account.php:68 -msgid "An invitation is required." -msgstr "Een uitnodiging is vereist" - -#: ../../include/account.php:72 -msgid "Invitation could not be verified." -msgstr "Uitnodiging kon niet geverifieerd worden" - -#: ../../include/account.php:122 -msgid "Please enter the required information." -msgstr "Vul de vereiste informatie in." - -#: ../../include/account.php:189 -msgid "Failed to store account information." -msgstr "Account-informatie kon niet opgeslagen worden." - -#: ../../include/account.php:249 -#, php-format -msgid "Registration confirmation for %s" -msgstr "Registratiebevestiging voor %s" - -#: ../../include/account.php:315 -#, php-format -msgid "Registration request at %s" -msgstr "Registratiebevestiging voor %s" - -#: ../../include/account.php:317 ../../include/account.php:344 -#: ../../include/account.php:404 ../../include/network.php:1871 -msgid "Administrator" -msgstr "Beheerder" - -#: ../../include/account.php:339 -msgid "your registration password" -msgstr "jouw registratiewachtwoord" - -#: ../../include/account.php:342 ../../include/account.php:402 -#, php-format -msgid "Registration details for %s" -msgstr "Registratiegegevens voor %s" - -#: ../../include/account.php:414 -msgid "Account approved." -msgstr "Account goedgekeurd" - -#: ../../include/account.php:454 -#, php-format -msgid "Registration revoked for %s" -msgstr "Registratie ingetrokken voor %s" - -#: ../../include/account.php:506 -msgid "Account verified. Please login." -msgstr "Account is geverifieerd. Je kan inloggen." - -#: ../../include/account.php:723 ../../include/account.php:725 -msgid "Click here to upgrade." -msgstr "Klik hier om te upgraden." - -#: ../../include/account.php:731 -msgid "This action exceeds the limits set by your subscription plan." -msgstr "Deze handeling overschrijdt de beperkingen die voor jouw abonnement gelden." - -#: ../../include/account.php:736 -msgid "This action is not available under your subscription plan." -msgstr "Deze handeling is niet mogelijk met jouw abonnement." - -#: ../../include/attach.php:247 ../../include/attach.php:333 -msgid "Item was not found." -msgstr "Item niet gevonden" - -#: ../../include/attach.php:497 -msgid "No source file." -msgstr "Geen bronbestand." - -#: ../../include/attach.php:519 -msgid "Cannot locate file to replace" -msgstr "Kan het te vervangen bestand niet vinden" - -#: ../../include/attach.php:537 -msgid "Cannot locate file to revise/update" -msgstr "Kan het bestand wat aangepast moet worden niet vinden" - -#: ../../include/attach.php:672 -#, php-format -msgid "File exceeds size limit of %d" -msgstr "Bestand is groter dan de toegelaten %d" - -#: ../../include/attach.php:686 -#, php-format -msgid "You have reached your limit of %1$.0f Mbytes attachment storage." -msgstr "Je hebt jouw limiet van %1$.0f MB opslagruimte voor bijlagen bereikt." - -#: ../../include/attach.php:842 -msgid "File upload failed. Possible system limit or action terminated." -msgstr "Uploaden van bestand mislukt. Mogelijk systeemlimiet bereikt of actie afgebroken." - -#: ../../include/attach.php:855 -msgid "Stored file could not be verified. Upload failed." -msgstr "Opgeslagen bestand kon niet worden geverifieerd. Uploaden mislukt." - -#: ../../include/attach.php:909 ../../include/attach.php:925 -msgid "Path not available." -msgstr "Pad niet beschikbaar." - -#: ../../include/attach.php:971 ../../include/attach.php:1123 -msgid "Empty pathname" -msgstr "Padnaam leeg" - -#: ../../include/attach.php:997 -msgid "duplicate filename or path" -msgstr "dubbele bestandsnaam of pad" - -#: ../../include/attach.php:1019 -msgid "Path not found." -msgstr "Pad niet gevonden" - -#: ../../include/attach.php:1077 -msgid "mkdir failed." -msgstr "directory aanmaken (mkdir) mislukt." - -#: ../../include/attach.php:1081 -msgid "database storage failed." -msgstr "opslag in database mislukt." - -#: ../../include/attach.php:1129 -msgid "Empty path" -msgstr "Ontbrekend bestandspad" - -#: ../../include/channel.php:32 -msgid "Unable to obtain identity information from database" -msgstr "Niet in staat om identiteitsinformatie uit de database te verkrijgen" - -#: ../../include/channel.php:66 -msgid "Empty name" -msgstr "Ontbrekende naam" - -#: ../../include/channel.php:69 -msgid "Name too long" -msgstr "Naam te lang" - -#: ../../include/channel.php:180 -msgid "No account identifier" -msgstr "Geen account-identificator" - -#: ../../include/channel.php:192 -msgid "Nickname is required." -msgstr "Bijnaam is verplicht" - -#: ../../include/channel.php:206 -msgid "Reserved nickname. Please choose another." -msgstr "Deze naam is gereserveerd. Kies een andere." - -#: ../../include/channel.php:211 -msgid "" -"Nickname has unsupported characters or is already being used on this site." -msgstr "Deze naam heeft niet ondersteunde karakters of is al op deze hub in gebruik." - -#: ../../include/channel.php:287 -msgid "Unable to retrieve created identity" -msgstr "Niet in staat om aangemaakte identiteit te vinden" - -#: ../../include/channel.php:345 -msgid "Default Profile" -msgstr "Standaardprofiel" - -#: ../../include/channel.php:791 -msgid "Requested channel is not available." -msgstr "Opgevraagd kanaal is niet beschikbaar." - -#: ../../include/channel.php:938 -msgid "Create New Profile" -msgstr "Nieuw profiel aanmaken" - -#: ../../include/channel.php:958 -msgid "Visible to everybody" -msgstr "Voor iedereen zichtbaar" - -#: ../../include/channel.php:1031 ../../include/channel.php:1142 -msgid "Gender:" -msgstr "Geslacht:" - -#: ../../include/channel.php:1032 ../../include/channel.php:1186 -msgid "Status:" -msgstr "Status:" - -#: ../../include/channel.php:1033 ../../include/channel.php:1197 -msgid "Homepage:" -msgstr "Homepagina:" - -#: ../../include/channel.php:1034 -msgid "Online Now" -msgstr "Nu online" - -#: ../../include/channel.php:1147 -msgid "Like this channel" -msgstr "Vind dit kanaal leuk" - -#: ../../include/channel.php:1171 -msgid "j F, Y" -msgstr "F j Y" - -#: ../../include/channel.php:1172 -msgid "j F" -msgstr "F j" - -#: ../../include/channel.php:1179 -msgid "Birthday:" -msgstr "Geboortedatum:" - -#: ../../include/channel.php:1192 -#, php-format -msgid "for %1$d %2$s" -msgstr "voor %1$d %2$s" - -#: ../../include/channel.php:1195 -msgid "Sexual Preference:" -msgstr "Seksuele voorkeur:" - -#: ../../include/channel.php:1201 -msgid "Tags:" -msgstr "Tags:" - -#: ../../include/channel.php:1203 -msgid "Political Views:" -msgstr "Politieke overtuigingen:" - -#: ../../include/channel.php:1205 -msgid "Religion:" -msgstr "Religie:" - -#: ../../include/channel.php:1209 -msgid "Hobbies/Interests:" -msgstr "Hobby's/interesses:" - -#: ../../include/channel.php:1211 -msgid "Likes:" -msgstr "Houdt van:" - -#: ../../include/channel.php:1213 -msgid "Dislikes:" -msgstr "Houdt niet van:" - -#: ../../include/channel.php:1215 -msgid "Contact information and Social Networks:" -msgstr "Contactinformatie en sociale netwerken:" - -#: ../../include/channel.php:1217 -msgid "My other channels:" -msgstr "Mijn andere kanalen" - -#: ../../include/channel.php:1219 -msgid "Musical interests:" -msgstr "Muzikale interesses:" - -#: ../../include/channel.php:1221 -msgid "Books, literature:" -msgstr "Boeken, literatuur:" - -#: ../../include/channel.php:1223 -msgid "Television:" -msgstr "Televisie:" - -#: ../../include/channel.php:1225 -msgid "Film/dance/culture/entertainment:" -msgstr "Films/dansen/cultuur/vermaak:" - -#: ../../include/channel.php:1227 -msgid "Love/Romance:" -msgstr "Liefde/romantiek:" - -#: ../../include/channel.php:1229 -msgid "Work/employment:" -msgstr "Werk/beroep:" - -#: ../../include/channel.php:1231 -msgid "School/education:" -msgstr "School/opleiding:" - -#: ../../include/channel.php:1251 -msgid "Like this thing" -msgstr "Vind dit ding leuk" +"Extremely advanced. Leave this alone unless you know what you are doing" +msgstr "Zeer geavanceerd. Laat dit met rust, behalve als je weet wat je doet." #: ../../include/features.php:48 msgid "General Features" @@ -8715,378 +8525,257 @@ msgid "Provide managed web pages on your channel" msgstr "Sta beheerde webpagina's op jouw kanaal toe" #: ../../include/features.php:55 +msgid "Provide a wiki for your channel" +msgstr "Voeg een wiki aan jouw kanaal toe" + +#: ../../include/features.php:56 msgid "Hide Rating" msgstr "Beoordelingen verbergen" -#: ../../include/features.php:55 +#: ../../include/features.php:56 msgid "" "Hide the rating buttons on your channel and profile pages. Note: People can " "still rate you somewhere else." msgstr "Verbergt de beoordelingsknoppen op jouw kanaal- en profielpagina's. Let op: Mensen kunnen jou nog steeds ergens anders beoordelen. " -#: ../../include/features.php:56 +#: ../../include/features.php:57 msgid "Private Notes" msgstr "Privé-aantekeningen" -#: ../../include/features.php:56 +#: ../../include/features.php:57 msgid "Enables a tool to store notes and reminders (note: not encrypted)" msgstr "Een eenvoudige toepassing om aantekeningen en herinneringen in te bewaren (let op: niet versleuteld)" -#: ../../include/features.php:57 +#: ../../include/features.php:58 msgid "Navigation Channel Select" msgstr "Kanaal kiezen in navigatiemenu" -#: ../../include/features.php:57 +#: ../../include/features.php:58 msgid "Change channels directly from within the navigation dropdown menu" msgstr "Kies een ander kanaal direct vanuit het dropdown-menu op de navigatiebalk" -#: ../../include/features.php:58 +#: ../../include/features.php:59 msgid "Photo Location" msgstr "Fotolocatie" -#: ../../include/features.php:58 +#: ../../include/features.php:59 msgid "If location data is available on uploaded photos, link this to a map." msgstr "Wanneer in de geüploade foto's locatiegegevens aanwezig zijn, link dit dan aan een kaart." -#: ../../include/features.php:59 +#: ../../include/features.php:60 msgid "Access Controlled Chatrooms" msgstr "Chatkanalen met toegangscontrole " -#: ../../include/features.php:59 +#: ../../include/features.php:60 msgid "Provide chatrooms and chat services with access control." msgstr "Chatkanalen en chatdiensten met toegangscontrole aanbieden." -#: ../../include/features.php:60 +#: ../../include/features.php:61 msgid "Smart Birthdays" msgstr "Slimme verjaardagen" -#: ../../include/features.php:60 +#: ../../include/features.php:61 msgid "" "Make birthday events timezone aware in case your friends are scattered " "across the planet." msgstr "Maak verjaardagen bewust van tijdzones. Voor het geval dat jouw vrienden over de hele wereld verspreid zijn." -#: ../../include/features.php:61 +#: ../../include/features.php:62 msgid "Expert Mode" msgstr "Expertmodus" -#: ../../include/features.php:61 +#: ../../include/features.php:62 msgid "Enable Expert Mode to provide advanced configuration options" msgstr "Schakel de expertmodus in voor geavanceerde instellingen" -#: ../../include/features.php:62 +#: ../../include/features.php:63 msgid "Premium Channel" msgstr "Premiumkanaal" -#: ../../include/features.php:62 +#: ../../include/features.php:63 msgid "" "Allows you to set restrictions and terms on those that connect with your " "channel" msgstr "Stelt je in staat om beperkingen en voorwaarden in te stellen voor jouw kanaal" -#: ../../include/features.php:67 +#: ../../include/features.php:68 msgid "Post Composition Features" msgstr "Functies voor het opstellen van berichten" -#: ../../include/features.php:70 +#: ../../include/features.php:71 msgid "Large Photos" msgstr "Grote foto's" -#: ../../include/features.php:70 +#: ../../include/features.php:71 msgid "" "Include large (1024px) photo thumbnails in posts. If not enabled, use small " "(640px) photo thumbnails" msgstr "Gebruik grotere foto's (1024px) in berichten. Wanneer dit is uitgeschakeld worden er kleinere foto's (640px) gebruikt." -#: ../../include/features.php:71 +#: ../../include/features.php:72 msgid "Automatically import channel content from other channels or feeds" msgstr "Automatisch inhoud uit andere kanalen of feeds importeren." -#: ../../include/features.php:72 +#: ../../include/features.php:73 msgid "Even More Encryption" msgstr "Extra encryptie" -#: ../../include/features.php:72 +#: ../../include/features.php:73 msgid "" "Allow optional encryption of content end-to-end with a shared secret key" msgstr "Sta toe dat inhoud extra end-to-end wordt versleuteld met een gedeelde geheime sleutel." -#: ../../include/features.php:73 +#: ../../include/features.php:74 msgid "Enable Voting Tools" msgstr "Peilingen inschakelen" -#: ../../include/features.php:73 +#: ../../include/features.php:74 msgid "Provide a class of post which others can vote on" msgstr "Maakt het mogelijk om een bericht op te stellen, waar mensen op kunnen stemmen." -#: ../../include/features.php:74 +#: ../../include/features.php:75 msgid "Delayed Posting" msgstr "Berichten uitstellen" -#: ../../include/features.php:74 +#: ../../include/features.php:75 msgid "Allow posts to be published at a later date" msgstr "Maakt het mogelijk dat berichten op een toekomstig moment gepubliceerd kunnen worden." -#: ../../include/features.php:75 +#: ../../include/features.php:76 msgid "Suppress Duplicate Posts/Comments" msgstr "Dubbele berichten/reacties tegenhouden" -#: ../../include/features.php:75 +#: ../../include/features.php:76 msgid "" "Prevent posts with identical content to be published with less than two " "minutes in between submissions." msgstr "Voorkomt dat berichten en reacties met identieke inhoud en die binnen twee minuten zijn verstuurd, worden gepubliceerd. " -#: ../../include/features.php:81 +#: ../../include/features.php:82 msgid "Network and Stream Filtering" msgstr "Netwerk- en streamfilter" -#: ../../include/features.php:82 +#: ../../include/features.php:83 msgid "Search by Date" msgstr "Zoek op datum" -#: ../../include/features.php:82 +#: ../../include/features.php:83 msgid "Ability to select posts by date ranges" msgstr "Mogelijkheid om berichten op datum te filteren " -#: ../../include/features.php:83 ../../include/group.php:311 +#: ../../include/features.php:84 ../../include/group.php:311 msgid "Privacy Groups" msgstr "Privacygroepen" -#: ../../include/features.php:83 +#: ../../include/features.php:84 msgid "Enable management and selection of privacy groups" msgstr "Beheer en selectie van privacygroepen inschakelen" -#: ../../include/features.php:84 +#: ../../include/features.php:85 ../../include/widgets.php:281 +msgid "Saved Searches" +msgstr "Opgeslagen zoekopdrachten" + +#: ../../include/features.php:85 msgid "Save search terms for re-use" msgstr "Sla zoekopdrachten op voor hergebruik" -#: ../../include/features.php:85 +#: ../../include/features.php:86 msgid "Network Personal Tab" msgstr "Persoonlijke netwerktab" -#: ../../include/features.php:85 +#: ../../include/features.php:86 msgid "Enable tab to display only Network posts that you've interacted on" msgstr "Sta het toe dat de tab netwerkberichten toont waarmee je interactie had" -#: ../../include/features.php:86 +#: ../../include/features.php:87 msgid "Network New Tab" msgstr "Nieuwe netwerktab" -#: ../../include/features.php:86 +#: ../../include/features.php:87 msgid "Enable tab to display all new Network activity" msgstr "Laat de tab alle nieuwe netwerkactiviteit tonen" -#: ../../include/features.php:87 +#: ../../include/features.php:88 msgid "Affinity Tool" msgstr "Verwantschapsfilter" -#: ../../include/features.php:87 +#: ../../include/features.php:88 msgid "Filter stream activity by depth of relationships" msgstr "Filter wat je in jouw grid ziet op hoe goed je iemand kent of mag" -#: ../../include/features.php:88 +#: ../../include/features.php:89 msgid "Connection Filtering" msgstr "Berichtenfilters" -#: ../../include/features.php:88 +#: ../../include/features.php:89 msgid "Filter incoming posts from connections based on keywords/content" msgstr "Filter binnenkomende berichten van connecties aan de hand van trefwoorden en taal" -#: ../../include/features.php:89 +#: ../../include/features.php:90 msgid "Show channel suggestions" msgstr "Voor jou mogelijk interessante kanalen voorstellen" -#: ../../include/features.php:94 +#: ../../include/features.php:95 msgid "Post/Comment Tools" msgstr "Bericht- en reactiehulpmiddelen" -#: ../../include/features.php:95 +#: ../../include/features.php:96 msgid "Community Tagging" msgstr "Taggen door anderen" -#: ../../include/features.php:95 +#: ../../include/features.php:96 msgid "Ability to tag existing posts" msgstr "Geeft andere mensen de mogelijkheid om jouw (bestaande) berichten te taggen" -#: ../../include/features.php:96 +#: ../../include/features.php:97 msgid "Post Categories" msgstr "Categorieën berichten" -#: ../../include/features.php:96 +#: ../../include/features.php:97 msgid "Add categories to your posts" msgstr "Voeg categorieën toe aan je berichten" -#: ../../include/features.php:97 +#: ../../include/features.php:98 msgid "Emoji Reactions" msgstr "Emoji-reacties" -#: ../../include/features.php:97 +#: ../../include/features.php:98 msgid "Add emoji reaction ability to posts" msgstr "Emoji-reacties in berichten toestaan" -#: ../../include/features.php:98 +#: ../../include/features.php:99 ../../include/widgets.php:310 +#: ../../include/contact_widgets.php:53 +msgid "Saved Folders" +msgstr "Bewaarde mappen" + +#: ../../include/features.php:99 msgid "Ability to file posts under folders" msgstr "Mogelijkheid om berichten in mappen op te slaan" -#: ../../include/features.php:99 +#: ../../include/features.php:100 msgid "Dislike Posts" msgstr "Vind berichten niet leuk" -#: ../../include/features.php:99 +#: ../../include/features.php:100 msgid "Ability to dislike posts/comments" msgstr "Mogelijkheid om berichten en reacties niet leuk te vinden" -#: ../../include/features.php:100 +#: ../../include/features.php:101 msgid "Star Posts" msgstr "Geef berichten een ster" -#: ../../include/features.php:100 +#: ../../include/features.php:101 msgid "Ability to mark special posts with a star indicator" msgstr "Mogelijkheid om speciale berichten met een ster te markeren" -#: ../../include/features.php:101 +#: ../../include/features.php:102 msgid "Tag Cloud" msgstr "Tagwolk" -#: ../../include/features.php:101 +#: ../../include/features.php:102 msgid "Provide a personal tag cloud on your channel page" msgstr "Zorgt voor een persoonlijke wolk met tags op jouw kanaalpagina" -#: ../../include/oembed.php:324 -msgid "Embedded content" -msgstr "Ingesloten (embedded) inhoud" - -#: ../../include/oembed.php:333 -msgid "Embedding disabled" -msgstr "Insluiten (embedding) uitgeschakeld" - -#: ../../include/acl_selectors.php:271 -msgid "Who can see this?" -msgstr "Wie kan dit zien?" - -#: ../../include/acl_selectors.php:272 -msgid "Custom selection" -msgstr "Handmatige selectie" - -#: ../../include/acl_selectors.php:273 -msgid "" -"Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit" -" the scope of \"Show\"." -msgstr "Kies \"Tonen\" om weergave toe te staan. Met \"Niet tonen\" kan je uitzonderingen maken op \"Tonen\"." - -#: ../../include/acl_selectors.php:274 -msgid "Show" -msgstr "Tonen" - -#: ../../include/acl_selectors.php:275 -msgid "Don't show" -msgstr "Niet tonen" - -#: ../../include/acl_selectors.php:281 -msgid "Other networks and post services" -msgstr "Andere netwerken en diensten" - -#: ../../include/acl_selectors.php:311 -#, php-format -msgid "" -"Post permissions %s cannot be changed %s after a post is shared.
These" -" permissions set who is allowed to view the post." -msgstr "Permissies van berichten %s zijn niet meer te veranderen %s nadat een bericht is gedeeld.
Met deze permissies bepaal je wie het bericht kan zien." - -#: ../../include/auth.php:105 -msgid "Logged out." -msgstr "Uitgelogd." - -#: ../../include/auth.php:212 -msgid "Failed authentication" -msgstr "Mislukte authenticatie" - -#: ../../include/datetime.php:135 -msgid "Birthday" -msgstr "Verjaardag of geboortedatum" - -#: ../../include/datetime.php:137 -msgid "Age: " -msgstr "Leeftijd:" - -#: ../../include/datetime.php:139 -msgid "YYYY-MM-DD or MM-DD" -msgstr "JJJJ-MM-DD of MM-DD" - -#: ../../include/datetime.php:272 ../../boot.php:2470 -msgid "never" -msgstr "nooit" - -#: ../../include/datetime.php:278 -msgid "less than a second ago" -msgstr "minder dan een seconde geleden" - -#: ../../include/datetime.php:296 -#, php-format -msgctxt "e.g. 22 hours ago, 1 minute ago" -msgid "%1$d %2$s ago" -msgstr "%1$d %2$s geleden" - -#: ../../include/datetime.php:307 -msgctxt "relative_date" -msgid "year" -msgid_plural "years" -msgstr[0] "jaar" -msgstr[1] "jaren" - -#: ../../include/datetime.php:310 -msgctxt "relative_date" -msgid "month" -msgid_plural "months" -msgstr[0] "maand" -msgstr[1] "maanden" - -#: ../../include/datetime.php:313 -msgctxt "relative_date" -msgid "week" -msgid_plural "weeks" -msgstr[0] "week" -msgstr[1] "weken" - -#: ../../include/datetime.php:316 -msgctxt "relative_date" -msgid "day" -msgid_plural "days" -msgstr[0] "dag" -msgstr[1] "dagen" - -#: ../../include/datetime.php:319 -msgctxt "relative_date" -msgid "hour" -msgid_plural "hours" -msgstr[0] "uur" -msgstr[1] "uren" - -#: ../../include/datetime.php:322 -msgctxt "relative_date" -msgid "minute" -msgid_plural "minutes" -msgstr[0] "minuut" -msgstr[1] "minuten" - -#: ../../include/datetime.php:325 -msgctxt "relative_date" -msgid "second" -msgid_plural "seconds" -msgstr[0] "seconde" -msgstr[1] "seconden" - -#: ../../include/datetime.php:562 -#, php-format -msgid "%1$s's birthday" -msgstr "Verjaardag van %1$s" - -#: ../../include/datetime.php:563 -#, php-format -msgid "Happy Birthday %1$s" -msgstr "Gefeliciteerd met je verjaardag %1$s" - #: ../../include/group.php:26 msgid "" "A deleted group with this name was revived. Existing item permissions " @@ -9114,21 +8803,583 @@ msgstr "Privacygroep toevoegen" msgid "Channels not in any privacy group" msgstr "Kanalen die zich in geen enkele privacygroep bevinden" +#: ../../include/group.php:316 ../../include/widgets.php:282 +msgid "add" +msgstr "toevoegen" + +#: ../../include/event.php:22 ../../include/event.php:69 +#: ../../include/bb2diaspora.php:485 +msgid "l F d, Y \\@ g:i A" +msgstr "l d F Y \\@ G:i" + +#: ../../include/event.php:30 ../../include/event.php:73 +#: ../../include/bb2diaspora.php:491 +msgid "Starts:" +msgstr "Start:" + +#: ../../include/event.php:40 ../../include/event.php:77 +#: ../../include/bb2diaspora.php:499 +msgid "Finishes:" +msgstr "Einde:" + +#: ../../include/event.php:814 +msgid "This event has been added to your calendar." +msgstr "Dit evenement is aan jouw agenda toegevoegd." + +#: ../../include/event.php:1014 +msgid "Not specified" +msgstr "Niet aangegeven" + +#: ../../include/event.php:1015 +msgid "Needs Action" +msgstr "Actie vereist" + +#: ../../include/event.php:1016 +msgid "Completed" +msgstr "Voltooid" + +#: ../../include/event.php:1017 +msgid "In Process" +msgstr "In behandeling" + +#: ../../include/event.php:1018 +msgid "Cancelled" +msgstr "Geannuleerd" + +#: ../../include/account.php:28 +msgid "Not a valid email address" +msgstr "Geen geldig e-mailadres" + +#: ../../include/account.php:30 +msgid "Your email domain is not among those allowed on this site" +msgstr "Jouw e-maildomein is op deze hub niet toegestaan" + +#: ../../include/account.php:36 +msgid "Your email address is already registered at this site." +msgstr "Jouw e-mailadres is al op deze hub geregistreerd." + +#: ../../include/account.php:68 +msgid "An invitation is required." +msgstr "Een uitnodiging is vereist" + +#: ../../include/account.php:72 +msgid "Invitation could not be verified." +msgstr "Uitnodiging kon niet geverifieerd worden" + +#: ../../include/account.php:122 +msgid "Please enter the required information." +msgstr "Vul de vereiste informatie in." + +#: ../../include/account.php:189 +msgid "Failed to store account information." +msgstr "Account-informatie kon niet opgeslagen worden." + +#: ../../include/account.php:249 +#, php-format +msgid "Registration confirmation for %s" +msgstr "Registratiebevestiging voor %s" + +#: ../../include/account.php:315 +#, php-format +msgid "Registration request at %s" +msgstr "Registratiebevestiging voor %s" + +#: ../../include/account.php:339 +msgid "your registration password" +msgstr "jouw registratiewachtwoord" + +#: ../../include/account.php:342 ../../include/account.php:402 +#, php-format +msgid "Registration details for %s" +msgstr "Registratiegegevens voor %s" + +#: ../../include/account.php:414 +msgid "Account approved." +msgstr "Account goedgekeurd" + +#: ../../include/account.php:454 +#, php-format +msgid "Registration revoked for %s" +msgstr "Registratie ingetrokken voor %s" + +#: ../../include/account.php:739 ../../include/account.php:741 +msgid "Click here to upgrade." +msgstr "Klik hier om te upgraden." + +#: ../../include/account.php:747 +msgid "This action exceeds the limits set by your subscription plan." +msgstr "Deze handeling overschrijdt de beperkingen die voor jouw abonnement gelden." + +#: ../../include/account.php:752 +msgid "This action is not available under your subscription plan." +msgstr "Deze handeling is niet mogelijk met jouw abonnement." + +#: ../../include/follow.php:27 +msgid "Channel is blocked on this site." +msgstr "Kanaal is op deze hub geblokkeerd." + +#: ../../include/follow.php:32 +msgid "Channel location missing." +msgstr "Ontbrekende kanaallocatie." + +#: ../../include/follow.php:80 +msgid "Response from remote channel was incomplete." +msgstr "Antwoord van het kanaal op afstand was niet volledig." + +#: ../../include/follow.php:97 +msgid "Channel was deleted and no longer exists." +msgstr "Kanaal is verwijderd en bestaat niet meer." + +#: ../../include/follow.php:147 ../../include/follow.php:183 +msgid "Protocol disabled." +msgstr "Protocol uitgeschakeld." + +#: ../../include/follow.php:171 +msgid "Channel discovery failed." +msgstr "Kanaal ontdekken mislukt." + +#: ../../include/follow.php:210 +msgid "Cannot connect to yourself." +msgstr "Kan niet met jezelf verbinden" + +#: ../../include/attach.php:247 ../../include/attach.php:333 +msgid "Item was not found." +msgstr "Item niet gevonden" + +#: ../../include/attach.php:499 +msgid "No source file." +msgstr "Geen bronbestand." + +#: ../../include/attach.php:521 +msgid "Cannot locate file to replace" +msgstr "Kan het te vervangen bestand niet vinden" + +#: ../../include/attach.php:539 +msgid "Cannot locate file to revise/update" +msgstr "Kan het bestand wat aangepast moet worden niet vinden" + +#: ../../include/attach.php:674 +#, php-format +msgid "File exceeds size limit of %d" +msgstr "Bestand is groter dan de toegelaten %d" + +#: ../../include/attach.php:688 +#, php-format +msgid "You have reached your limit of %1$.0f Mbytes attachment storage." +msgstr "Je hebt jouw limiet van %1$.0f MB opslagruimte voor bijlagen bereikt." + +#: ../../include/attach.php:846 +msgid "File upload failed. Possible system limit or action terminated." +msgstr "Uploaden van bestand mislukt. Mogelijk systeemlimiet bereikt of actie afgebroken." + +#: ../../include/attach.php:859 +msgid "Stored file could not be verified. Upload failed." +msgstr "Opgeslagen bestand kon niet worden geverifieerd. Uploaden mislukt." + +#: ../../include/attach.php:915 ../../include/attach.php:931 +msgid "Path not available." +msgstr "Pad niet beschikbaar." + +#: ../../include/attach.php:977 ../../include/attach.php:1129 +msgid "Empty pathname" +msgstr "Padnaam leeg" + +#: ../../include/attach.php:1003 +msgid "duplicate filename or path" +msgstr "dubbele bestandsnaam of pad" + +#: ../../include/attach.php:1025 +msgid "Path not found." +msgstr "Pad niet gevonden" + +#: ../../include/attach.php:1083 +msgid "mkdir failed." +msgstr "directory aanmaken (mkdir) mislukt." + +#: ../../include/attach.php:1087 +msgid "database storage failed." +msgstr "opslag in database mislukt." + +#: ../../include/attach.php:1135 +msgid "Empty path" +msgstr "Ontbrekend bestandspad" + +#: ../../include/bbcode.php:123 ../../include/bbcode.php:878 +#: ../../include/bbcode.php:881 ../../include/bbcode.php:886 +#: ../../include/bbcode.php:889 ../../include/bbcode.php:892 +#: ../../include/bbcode.php:895 ../../include/bbcode.php:900 +#: ../../include/bbcode.php:903 ../../include/bbcode.php:908 +#: ../../include/bbcode.php:911 ../../include/bbcode.php:914 +#: ../../include/bbcode.php:917 +msgid "Image/photo" +msgstr "Afbeelding/foto" + +#: ../../include/bbcode.php:162 ../../include/bbcode.php:928 +msgid "Encrypted content" +msgstr "Versleutelde inhoud" + +#: ../../include/bbcode.php:178 +#, php-format +msgid "Install %s element: " +msgstr "Installeer %s-element: " + +#: ../../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 "Dit bericht heeft een te installeren %s-element, maar je hebt geen permissies om het op deze hub te installeren." + +#: ../../include/bbcode.php:261 +#, php-format +msgid "%1$s wrote the following %2$s %3$s" +msgstr "%1$s schreef het volgende %2$s %3$s" + +#: ../../include/bbcode.php:338 ../../include/bbcode.php:346 +msgid "Click to open/close" +msgstr "Klik om te openen of te sluiten" + +#: ../../include/bbcode.php:346 +msgid "spoiler" +msgstr "spoiler" + +#: ../../include/bbcode.php:619 +msgid "Different viewers will see this text differently" +msgstr "Deze tekst wordt per persoon anders weergeven." + +#: ../../include/bbcode.php:866 +msgid "$1 wrote:" +msgstr "$1 schreef:" + +#: ../../include/items.php:897 ../../include/items.php:942 +msgid "(Unknown)" +msgstr "(Onbekend)" + +#: ../../include/items.php:1141 +msgid "Visible to anybody on the internet." +msgstr "Voor iedereen op het internet zichtbaar." + +#: ../../include/items.php:1143 +msgid "Visible to you only." +msgstr "Alleen voor jou zichtbaar." + +#: ../../include/items.php:1145 +msgid "Visible to anybody in this network." +msgstr "Voor iedereen in dit netwerk zichtbaar." + +#: ../../include/items.php:1147 +msgid "Visible to anybody authenticated." +msgstr "Voor iedereen die geauthenticeerd is zichtbaar." + +#: ../../include/items.php:1149 +#, php-format +msgid "Visible to anybody on %s." +msgstr "Voor iedereen op %s zichtbaar." + +#: ../../include/items.php:1151 +msgid "Visible to all connections." +msgstr "Voor alle connecties zichtbaar." + +#: ../../include/items.php:1153 +msgid "Visible to approved connections." +msgstr "Voor alle geaccepteerde connecties zichtbaar." + +#: ../../include/items.php:1155 +msgid "Visible to specific connections." +msgstr "Voor specifieke connecties zichtbaar." + +#: ../../include/items.php:3918 +msgid "Privacy group is empty." +msgstr "Privacygroep is leeg" + +#: ../../include/items.php:3925 +#, php-format +msgid "Privacy group: %s" +msgstr "Privacygroep: %s" + +#: ../../include/items.php:3937 +msgid "Connection not found." +msgstr "Connectie niet gevonden." + +#: ../../include/items.php:4290 +msgid "profile photo" +msgstr "profielfoto" + +#: ../../include/oembed.php:336 +msgid "Embedded content" +msgstr "Ingesloten (embedded) inhoud" + +#: ../../include/oembed.php:345 +msgid "Embedding disabled" +msgstr "Insluiten (embedding) uitgeschakeld" + +#: ../../include/widgets.php:103 +msgid "System" +msgstr "Systeem" + +#: ../../include/widgets.php:106 +msgid "New App" +msgstr "Nieuwe app" + +#: ../../include/widgets.php:154 +msgid "Suggestions" +msgstr "Voorgestelde kanalen" + +#: ../../include/widgets.php:155 +msgid "See more..." +msgstr "Meer..." + +#: ../../include/widgets.php:175 +#, php-format +msgid "You have %1$.0f of %2$.0f allowed connections." +msgstr "Je hebt %1$.0f van de %2$.0f toegestane connecties." + +#: ../../include/widgets.php:181 +msgid "Add New Connection" +msgstr "Nieuwe connectie toevoegen" + +#: ../../include/widgets.php:182 +msgid "Enter channel address" +msgstr "Vul kanaaladres in" + +#: ../../include/widgets.php:183 +msgid "Examples: bob@example.com, https://example.com/barbara" +msgstr "Voorbeelden: bob@example.com, http://example.com/barbara" + +#: ../../include/widgets.php:199 +msgid "Notes" +msgstr "Aantekeningen" + +#: ../../include/widgets.php:273 +msgid "Remove term" +msgstr "Verwijder zoekterm" + +#: ../../include/widgets.php:313 ../../include/widgets.php:432 +#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:94 +msgid "Everything" +msgstr "Alles" + +#: ../../include/widgets.php:354 +msgid "Archives" +msgstr "Archieven" + +#: ../../include/widgets.php:516 +msgid "Refresh" +msgstr "Vernieuwen" + +#: ../../include/widgets.php:556 +msgid "Account settings" +msgstr "Account" + +#: ../../include/widgets.php:562 +msgid "Channel settings" +msgstr "Kanaal" + +#: ../../include/widgets.php:571 +msgid "Additional features" +msgstr "Extra functies" + +#: ../../include/widgets.php:578 +msgid "Feature/Addon settings" +msgstr "Plugin-instellingen" + +#: ../../include/widgets.php:584 +msgid "Display settings" +msgstr "Weergave" + +#: ../../include/widgets.php:591 +msgid "Manage locations" +msgstr "Locaties beheren" + +#: ../../include/widgets.php:600 +msgid "Export channel" +msgstr "Kanaal exporteren" + +#: ../../include/widgets.php:607 +msgid "Connected apps" +msgstr "Verbonden applicaties" + +#: ../../include/widgets.php:631 +msgid "Premium Channel Settings" +msgstr "Instellingen premiumkanaal" + +#: ../../include/widgets.php:660 +msgid "Private Mail Menu" +msgstr "Privéberichten" + +#: ../../include/widgets.php:662 +msgid "Combined View" +msgstr "Gecombineerd postvak" + +#: ../../include/widgets.php:694 ../../include/widgets.php:706 +msgid "Conversations" +msgstr "Conversaties" + +#: ../../include/widgets.php:698 +msgid "Received Messages" +msgstr "Ontvangen berichten" + +#: ../../include/widgets.php:702 +msgid "Sent Messages" +msgstr "Verzonden berichten" + +#: ../../include/widgets.php:716 +msgid "No messages." +msgstr "Geen berichten" + +#: ../../include/widgets.php:734 +msgid "Delete conversation" +msgstr "Verwijder conversatie" + +#: ../../include/widgets.php:760 +msgid "Events Tools" +msgstr "Agenda-hulpmiddelen" + +#: ../../include/widgets.php:761 +msgid "Export Calendar" +msgstr "Exporteren" + +#: ../../include/widgets.php:762 +msgid "Import Calendar" +msgstr "Importeren" + +#: ../../include/widgets.php:840 +msgid "Overview" +msgstr "Overzicht" + +#: ../../include/widgets.php:847 +msgid "Chat Members" +msgstr "Chatleden" + +#: ../../include/widgets.php:869 +msgid "Wiki List" +msgstr "Wiki's" + +#: ../../include/widgets.php:907 +msgid "Wiki Pages" +msgstr "Wikipagina's" + +#: ../../include/widgets.php:942 +msgid "Bookmarked Chatrooms" +msgstr "Bladwijzers van chatkanalen" + +#: ../../include/widgets.php:965 +msgid "Suggested Chatrooms" +msgstr "Voorgestelde chatkanalen" + +#: ../../include/widgets.php:1111 ../../include/widgets.php:1223 +msgid "photo/image" +msgstr "foto/afbeelding" + +#: ../../include/widgets.php:1166 +msgid "Click to show more" +msgstr "Klik voor meer" + +#: ../../include/widgets.php:1317 +msgid "Rating Tools" +msgstr "Beoordelingen" + +#: ../../include/widgets.php:1321 ../../include/widgets.php:1323 +msgid "Rate Me" +msgstr "Beoordeel mij" + +#: ../../include/widgets.php:1326 +msgid "View Ratings" +msgstr "Bekijk beoordelingen" + +#: ../../include/widgets.php:1410 +msgid "Forums" +msgstr "Forums" + +#: ../../include/widgets.php:1439 +msgid "Tasks" +msgstr "Taken" + +#: ../../include/widgets.php:1448 +msgid "Documentation" +msgstr "Documentatie" + +#: ../../include/widgets.php:1450 +msgid "Project/Site Information" +msgstr "Project- en hub-informatie" + +#: ../../include/widgets.php:1451 +msgid "For Members" +msgstr "Voor leden" + +#: ../../include/widgets.php:1452 +msgid "For Administrators" +msgstr "Voor beheerders" + +#: ../../include/widgets.php:1453 +msgid "For Developers" +msgstr "Voor ontwikkelaars" + +#: ../../include/widgets.php:1477 ../../include/widgets.php:1515 +msgid "Member registrations waiting for confirmation" +msgstr "Accounts die op goedkeuring wachten" + +#: ../../include/widgets.php:1483 +msgid "Inspect queue" +msgstr "Inspecteer berichtenwachtrij" + +#: ../../include/widgets.php:1485 +msgid "DB updates" +msgstr "Database-updates" + +#: ../../include/widgets.php:1511 +msgid "Plugin Features" +msgstr "Plugin-opties" + +#: ../../include/activities.php:41 +msgid " and " +msgstr " en " + +#: ../../include/activities.php:49 +msgid "public profile" +msgstr "openbaar profiel" + +#: ../../include/activities.php:58 +#, php-format +msgid "%1$s changed %2$s to “%3$s”" +msgstr "%1$s veranderde %2$s naar “%3$s”" + +#: ../../include/activities.php:59 +#, php-format +msgid "Visit %1$s's %2$s" +msgstr "Bezoek het %2$s van %1$s" + +#: ../../include/activities.php:62 +#, php-format +msgid "%1$s has an updated %2$s, changing %3$s." +msgstr "%1$s heeft een aangepaste %2$s, %3$s veranderd." + +#: ../../include/bb2diaspora.php:398 +msgid "Attachments:" +msgstr "Bijlagen:" + +#: ../../include/bb2diaspora.php:487 +msgid "$Projectname event notification:" +msgstr "Notificatie $Projectname-gebeurtenis:" + #: ../../include/js_strings.php:5 msgid "Delete this item?" msgstr "Dit item verwijderen?" #: ../../include/js_strings.php:8 -msgid "[-] show less" -msgstr "[-] minder reacties weergeven" +#, php-format +msgid "%s show less" +msgstr "%s minder reacties weergeven" #: ../../include/js_strings.php:9 -msgid "[+] expand" -msgstr "[+] uitklappen" +#, php-format +msgid "%s expand" +msgstr "%s uitklappen" #: ../../include/js_strings.php:10 -msgid "[-] collapse" -msgstr "[-] inklappen" +#, php-format +msgid "%s collapse" +msgstr "%s inklappen" #: ../../include/js_strings.php:11 msgid "Password too short" @@ -9358,278 +9609,223 @@ msgctxt "calendar" msgid "All day" msgstr "hele dag" -#: ../../include/network.php:657 -msgid "view full size" -msgstr "volledige grootte tonen" - -#: ../../include/network.php:1885 -msgid "No Subject" -msgstr "Geen onderwerp" - -#: ../../include/network.php:2146 ../../include/network.php:2147 -msgid "Friendica" -msgstr "Friendica" - -#: ../../include/network.php:2148 -msgid "OStatus" -msgstr "OStatus" - -#: ../../include/network.php:2149 -msgid "GNU-Social" -msgstr "GNU social" - -#: ../../include/network.php:2150 -msgid "RSS/Atom" -msgstr "RSS/Atom" - -#: ../../include/network.php:2152 -msgid "Diaspora" -msgstr "Diaspora" - -#: ../../include/network.php:2153 -msgid "Facebook" -msgstr "Facebook" - -#: ../../include/network.php:2154 -msgid "Zot" -msgstr "Zot" - -#: ../../include/network.php:2155 -msgid "LinkedIn" -msgstr "LinkedIn" - -#: ../../include/network.php:2156 -msgid "XMPP/IM" -msgstr "XMPP/IM" - -#: ../../include/network.php:2157 -msgid "MySpace" -msgstr "MySpace" - -#: ../../include/photos.php:110 +#: ../../include/contact_widgets.php:11 #, php-format -msgid "Image exceeds website size limit of %lu bytes" -msgstr "Afbeelding is groter dan op deze hub toegestane limiet van %lu bytes" +msgid "%d invitation available" +msgid_plural "%d invitations available" +msgstr[0] "%d uitnodiging beschikbaar" +msgstr[1] "%d uitnodigingen beschikbaar" -#: ../../include/photos.php:117 -msgid "Image file is empty." -msgstr "Afbeeldingsbestand is leeg" +#: ../../include/contact_widgets.php:19 +msgid "Find Channels" +msgstr "Kanalen vinden" -#: ../../include/photos.php:255 -msgid "Photo storage failed." -msgstr "Foto kan niet worden opgeslagen" +#: ../../include/contact_widgets.php:20 +msgid "Enter name or interest" +msgstr "Vul naam of interesse in" -#: ../../include/photos.php:295 -msgid "a new photo" -msgstr "een nieuwe foto" +#: ../../include/contact_widgets.php:21 +msgid "Connect/Follow" +msgstr "Verbinden/volgen" -#: ../../include/photos.php:299 +#: ../../include/contact_widgets.php:22 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "Voorbeeld: Robert Morgenstein, vissen" + +#: ../../include/contact_widgets.php:26 +msgid "Random Profile" +msgstr "Willekeurig profiel" + +#: ../../include/contact_widgets.php:27 +msgid "Invite Friends" +msgstr "Vrienden uitnodigen" + +#: ../../include/contact_widgets.php:29 +msgid "Advanced example: name=fred and country=iceland" +msgstr "Geavanceerd voorbeeld (Engels): name=jan en country=nederland" + +#: ../../include/contact_widgets.php:122 #, php-format -msgctxt "photo_upload" -msgid "%1$s posted %2$s to %3$s" -msgstr "%1$s plaatste %2$s op %3$s" +msgid "%d connection in common" +msgid_plural "%d connections in common" +msgstr[0] "%d gemeenschappelijke connectie" +msgstr[1] "%d gemeenschappelijke connecties" -#: ../../include/photos.php:506 -msgid "Upload New Photos" -msgstr "Nieuwe foto's uploaden" +#: ../../include/contact_widgets.php:127 +msgid "show more" +msgstr "meer connecties weergeven" -#: ../../include/zot.php:699 +#: ../../include/dir_fns.php:141 +msgid "Directory Options" +msgstr "Opties kanalengids" + +#: ../../include/dir_fns.php:143 +msgid "Safe Mode" +msgstr "Veilig zoeken" + +#: ../../include/dir_fns.php:144 +msgid "Public Forums Only" +msgstr "Alleen openbare forums" + +#: ../../include/dir_fns.php:145 +msgid "This Website Only" +msgstr "Alleen deze hub" + +#: ../../include/message.php:20 +msgid "No recipient provided." +msgstr "Geen ontvanger opgegeven." + +#: ../../include/message.php:25 +msgid "[no subject]" +msgstr "[geen onderwerp]" + +#: ../../include/message.php:45 +msgid "Unable to determine sender." +msgstr "Afzender kan niet bepaald worden." + +#: ../../include/message.php:222 +msgid "Stored post could not be verified." +msgstr "Opgeslagen bericht kon niet worden geverifieerd." + +#: ../../include/acl_selectors.php:269 +msgid "Who can see this?" +msgstr "Wie kan dit zien?" + +#: ../../include/acl_selectors.php:270 +msgid "Custom selection" +msgstr "Handmatige selectie" + +#: ../../include/acl_selectors.php:271 +msgid "" +"Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit" +" the scope of \"Show\"." +msgstr "Kies \"Tonen\" om weergave toe te staan. Met \"Niet tonen\" kan je uitzonderingen maken op \"Tonen\"." + +#: ../../include/acl_selectors.php:272 +msgid "Show" +msgstr "Tonen" + +#: ../../include/acl_selectors.php:273 +msgid "Don't show" +msgstr "Niet tonen" + +#: ../../include/acl_selectors.php:279 +msgid "Other networks and post services" +msgstr "Andere netwerken en diensten" + +#: ../../include/acl_selectors.php:309 +#, php-format +msgid "" +"Post permissions %s cannot be changed %s after a post is shared.
These" +" permissions set who is allowed to view the post." +msgstr "Permissies van berichten %s zijn niet meer te veranderen %s nadat een bericht is gedeeld.
Met deze permissies bepaal je wie het bericht kan zien." + +#: ../../include/datetime.php:135 +msgid "Birthday" +msgstr "Verjaardag of geboortedatum" + +#: ../../include/datetime.php:137 +msgid "Age: " +msgstr "Leeftijd:" + +#: ../../include/datetime.php:139 +msgid "YYYY-MM-DD or MM-DD" +msgstr "JJJJ-MM-DD of MM-DD" + +#: ../../include/datetime.php:272 ../../boot.php:2479 +msgid "never" +msgstr "nooit" + +#: ../../include/datetime.php:278 +msgid "less than a second ago" +msgstr "minder dan een seconde geleden" + +#: ../../include/datetime.php:296 +#, php-format +msgctxt "e.g. 22 hours ago, 1 minute ago" +msgid "%1$d %2$s ago" +msgstr "%1$d %2$s geleden" + +#: ../../include/datetime.php:307 +msgctxt "relative_date" +msgid "year" +msgid_plural "years" +msgstr[0] "jaar" +msgstr[1] "jaren" + +#: ../../include/datetime.php:310 +msgctxt "relative_date" +msgid "month" +msgid_plural "months" +msgstr[0] "maand" +msgstr[1] "maanden" + +#: ../../include/datetime.php:313 +msgctxt "relative_date" +msgid "week" +msgid_plural "weeks" +msgstr[0] "week" +msgstr[1] "weken" + +#: ../../include/datetime.php:316 +msgctxt "relative_date" +msgid "day" +msgid_plural "days" +msgstr[0] "dag" +msgstr[1] "dagen" + +#: ../../include/datetime.php:319 +msgctxt "relative_date" +msgid "hour" +msgid_plural "hours" +msgstr[0] "uur" +msgstr[1] "uren" + +#: ../../include/datetime.php:322 +msgctxt "relative_date" +msgid "minute" +msgid_plural "minutes" +msgstr[0] "minuut" +msgstr[1] "minuten" + +#: ../../include/datetime.php:325 +msgctxt "relative_date" +msgid "second" +msgid_plural "seconds" +msgstr[0] "seconde" +msgstr[1] "seconden" + +#: ../../include/datetime.php:562 +#, php-format +msgid "%1$s's birthday" +msgstr "Verjaardag van %1$s" + +#: ../../include/datetime.php:563 +#, php-format +msgid "Happy Birthday %1$s" +msgstr "Gefeliciteerd met je verjaardag %1$s" + +#: ../../include/api.php:1327 +msgid "Public Timeline" +msgstr "Openbare tijdlijn" + +#: ../../include/zot.php:697 msgid "Invalid data packet" msgstr "Datapakket ongeldig" -#: ../../include/zot.php:715 +#: ../../include/zot.php:713 msgid "Unable to verify channel signature" msgstr "Kanaalkenmerk kon niet worden geverifieerd. " -#: ../../include/zot.php:2363 +#: ../../include/zot.php:2326 #, php-format msgid "Unable to verify site signature for %s" msgstr "Hubkenmerk voor %s kon niet worden geverifieerd" -#: ../../include/zot.php:3712 +#: ../../include/zot.php:3703 msgid "invalid target signature" msgstr "ongeldig doelkenmerk" -#: ../../include/page_widgets.php:6 -msgid "New Page" -msgstr "Nieuwe pagina" - -#: ../../include/page_widgets.php:43 -msgid "Title" -msgstr "Titel" - -#: ../../include/permissions.php:26 -msgid "Can view my normal stream and posts" -msgstr "Kan mijn normale kanaalstream en berichten bekijken" - -#: ../../include/permissions.php:27 -msgid "Can view my default channel profile" -msgstr "Kan mijn standaard kanaalprofiel bekijken" - -#: ../../include/permissions.php:28 -msgid "Can view my connections" -msgstr "Kan een lijst met mijn connecties bekijken" - -#: ../../include/permissions.php:29 -msgid "Can view my file storage and photos" -msgstr "Kan mijn foto's en andere bestanden bekijken" - -#: ../../include/permissions.php:30 -msgid "Can view my webpages" -msgstr "Kan mijn pagina's bekijken" - -#: ../../include/permissions.php:33 -msgid "Can send me their channel stream and posts" -msgstr "Kan mij de inhoud van hun kanaal en berichten sturen" - -#: ../../include/permissions.php:34 -msgid "Can post on my channel page (\"wall\")" -msgstr "Kan een bericht in mijn kanaal plaatsen" - -#: ../../include/permissions.php:35 -msgid "Can comment on or like my posts" -msgstr "Kan op mijn berichten reageren of deze (niet) leuk vinden" - -#: ../../include/permissions.php:36 -msgid "Can send me private mail messages" -msgstr "Kan mij privéberichten sturen" - -#: ../../include/permissions.php:37 -msgid "Can like/dislike stuff" -msgstr "Kan dingen leuk of niet leuk vinden" - -#: ../../include/permissions.php:37 -msgid "Profiles and things other than posts/comments" -msgstr "Profielen en dingen, buiten berichten en reacties" - -#: ../../include/permissions.php:39 -msgid "Can forward to all my channel contacts via post @mentions" -msgstr "Kan naar al mijn kanaalconnecties berichten doorsturen met behulp van @vermeldingen+" - -#: ../../include/permissions.php:39 -msgid "Advanced - useful for creating group forum channels" -msgstr "Geavanceerd - nuttig voor groepforums" - -#: ../../include/permissions.php:40 -msgid "Can chat with me (when available)" -msgstr "Kan met mij chatten (wanneer beschikbaar)" - -#: ../../include/permissions.php:41 -msgid "Can write to my file storage and photos" -msgstr "Kan foto's en andere bestanden aan mijn bestandsopslag toevoegen" - -#: ../../include/permissions.php:42 -msgid "Can edit my webpages" -msgstr "Kan mijn pagina's bewerken" - -#: ../../include/permissions.php:44 -msgid "Can source my public posts in derived channels" -msgstr "Kan mijn openbare berichten als bron voor andere kanalen gebruiken" - -#: ../../include/permissions.php:44 -msgid "Somewhat advanced - very useful in open communities" -msgstr "Enigszins geavanceerd (erg nuttig voor kanalen van forums/groepen)" - -#: ../../include/permissions.php:46 -msgid "Can administer my channel resources" -msgstr "Kan mijn kanaal beheren" - -#: ../../include/permissions.php:46 -msgid "" -"Extremely advanced. Leave this alone unless you know what you are doing" -msgstr "Zeer geavanceerd. Laat dit met rust, behalve als je weet wat je doet." - -#: ../../include/permissions.php:877 -msgid "Social Networking" -msgstr "Sociaal netwerk" - -#: ../../include/permissions.php:877 -msgid "Social - Mostly Public" -msgstr "Sociaal - Vrijwel alles openbaar" - -#: ../../include/permissions.php:877 -msgid "Social - Restricted" -msgstr "Sociaal - Beperkt zichtbaar" - -#: ../../include/permissions.php:877 -msgid "Social - Private" -msgstr "Sociaal - Verborgen kanaal" - -#: ../../include/permissions.php:878 -msgid "Community Forum" -msgstr "Groepsforum" - -#: ../../include/permissions.php:878 -msgid "Forum - Mostly Public" -msgstr "Forum - Vrijwel alles openbaar" - -#: ../../include/permissions.php:878 -msgid "Forum - Restricted" -msgstr "Forum - Beperkt zichtbaar" - -#: ../../include/permissions.php:878 -msgid "Forum - Private" -msgstr "Forum - Verborgen kanaal" - -#: ../../include/permissions.php:879 -msgid "Feed Republish" -msgstr "Feed herpubliceren" - -#: ../../include/permissions.php:879 -msgid "Feed - Mostly Public" -msgstr "Feed - Vrijwel alles openbaar" - -#: ../../include/permissions.php:879 -msgid "Feed - Restricted" -msgstr "Feed - Beperkt zichtbaar" - -#: ../../include/permissions.php:880 -msgid "Special Purpose" -msgstr "Speciaal doel" - -#: ../../include/permissions.php:880 -msgid "Special - Celebrity/Soapbox" -msgstr "Speciaal - Beroemdheid/alleen volgen" - -#: ../../include/permissions.php:880 -msgid "Special - Group Repository" -msgstr "Speciaal - Groepsopslag" - -#: ../../include/permissions.php:881 -msgid "Custom/Expert Mode" -msgstr "Expertmodus/handmatig aanpassen" - -#: ../../include/activities.php:41 -msgid " and " -msgstr " en " - -#: ../../include/activities.php:49 -msgid "public profile" -msgstr "openbaar profiel" - -#: ../../include/activities.php:58 -#, php-format -msgid "%1$s changed %2$s to “%3$s”" -msgstr "%1$s veranderde %2$s naar “%3$s”" - -#: ../../include/activities.php:59 -#, php-format -msgid "Visit %1$s's %2$s" -msgstr "Bezoek het %2$s van %1$s" - -#: ../../include/activities.php:62 -#, php-format -msgid "%1$s has an updated %2$s, changing %3$s." -msgstr "%1$s heeft een aangepaste %2$s, %3$s veranderd." - -#: ../../include/bb2diaspora.php:398 -msgid "Attachments:" -msgstr "Bijlagen:" - -#: ../../include/bb2diaspora.php:487 -msgid "$Projectname event notification:" -msgstr "Notificatie $Projectname-gebeurtenis:" - #: ../../view/theme/redbasic/php/config.php:82 msgid "Focus (Hubzilla default)" msgstr "Focus (Hubzilla-standaard)" @@ -9766,62 +9962,66 @@ msgstr "Grootte profielfoto's van berichten instellen" msgid "Set size of followup author photos" msgstr "Grootte profielfoto's van reacties instellen" -#: ../../boot.php:1162 +#: ../../boot.php:1163 #, php-format msgctxt "opensearch" msgid "Search %1$s (%2$s)" msgstr "Zoek %1$s (%2$s)" -#: ../../boot.php:1162 +#: ../../boot.php:1163 msgctxt "opensearch" msgid "$Projectname" msgstr "$Projectname" -#: ../../boot.php:1480 +#: ../../boot.php:1481 #, php-format msgid "Update %s failed. See error logs." msgstr "Update %s mislukt. Zie foutenlogboek." -#: ../../boot.php:1483 +#: ../../boot.php:1484 #, php-format msgid "Update Error at %s" msgstr "Update-fout op %s" -#: ../../boot.php:1684 +#: ../../boot.php:1685 msgid "" "Create an account to access services and applications within the Hubzilla" msgstr "Maak een account aan om toegang te krijgen tot diensten en toepassingen van Hubzilla" #: ../../boot.php:1706 +msgid "Login/Email" +msgstr "E-mailadres of inlognaam" + +#: ../../boot.php:1707 msgid "Password" msgstr "Wachtwoord" -#: ../../boot.php:1707 +#: ../../boot.php:1708 msgid "Remember me" msgstr "Aangemeld blijven" -#: ../../boot.php:1710 +#: ../../boot.php:1711 msgid "Forgot your password?" msgstr "Wachtwoord vergeten?" -#: ../../boot.php:2276 +#: ../../boot.php:2277 msgid "toggle mobile" msgstr "mobiele weergave omschakelen" -#: ../../boot.php:2425 +#: ../../boot.php:2432 msgid "Website SSL certificate is not valid. Please correct." msgstr "Het SSL-certificaat van deze website is ongeldig. Corrigeer dit a.u.b." -#: ../../boot.php:2428 +#: ../../boot.php:2435 #, php-format msgid "[hubzilla] Website SSL error for %s" msgstr "[hubzilla] Probleem met SSL-certificaat voor %s" -#: ../../boot.php:2469 +#: ../../boot.php:2478 msgid "Cron/Scheduled tasks not running." msgstr "Cron is niet actief" -#: ../../boot.php:2473 +#: ../../boot.php:2482 #, php-format msgid "[hubzilla] Cron tasks not running on %s" msgstr "[hubzilla] Cron-taken zijn niet actief op %s" diff --git a/view/nl/hstrings.php b/view/nl/hstrings.php index 4ff83f788..6cbc6425e 100644 --- a/view/nl/hstrings.php +++ b/view/nl/hstrings.php @@ -4,7 +4,39 @@ if(! function_exists("string_plural_select_nl")) { function string_plural_select_nl($n){ return ($n != 1);; }} -; +App::$rtl = 0; +App::$strings["Social Networking"] = "Sociaal netwerk"; +App::$strings["Social - Mostly Public"] = "Sociaal - Vrijwel alles openbaar"; +App::$strings["Social - Restricted"] = "Sociaal - Beperkt zichtbaar"; +App::$strings["Social - Private"] = "Sociaal - Verborgen kanaal"; +App::$strings["Community Forum"] = "Groepsforum"; +App::$strings["Forum - Mostly Public"] = "Forum - Vrijwel alles openbaar"; +App::$strings["Forum - Restricted"] = "Forum - Beperkt zichtbaar"; +App::$strings["Forum - Private"] = "Forum - Verborgen kanaal"; +App::$strings["Feed Republish"] = "Feed herpubliceren"; +App::$strings["Feed - Mostly Public"] = "Feed - Vrijwel alles openbaar"; +App::$strings["Feed - Restricted"] = "Feed - Beperkt zichtbaar"; +App::$strings["Special Purpose"] = "Speciaal doel"; +App::$strings["Special - Celebrity/Soapbox"] = "Speciaal - Beroemdheid/alleen volgen"; +App::$strings["Special - Group Repository"] = "Speciaal - Groepsopslag"; +App::$strings["Other"] = "Anders"; +App::$strings["Custom/Expert Mode"] = "Expertmodus/handmatig aanpassen"; +App::$strings["Can view my channel stream and posts"] = "Kan mijn kanaal en berichten bekijken"; +App::$strings["Can send me their channel stream and posts"] = "Kan mij de inhoud van hun kanaal en berichten sturen"; +App::$strings["Can view my default channel profile"] = "Kan mijn standaard kanaalprofiel bekijken"; +App::$strings["Can view my connections"] = "Kan een lijst met mijn connecties bekijken"; +App::$strings["Can view my file storage and photos"] = "Kan mijn foto's en andere bestanden bekijken"; +App::$strings["Can upload/modify my file storage and photos"] = "Kan foto's en andere bestanden aan mijn bestandsopslag toevoegen"; +App::$strings["Can view my channel webpages"] = "Kan de webpagina's van mijn kanaal bekijken"; +App::$strings["Can create/edit my channel webpages"] = "Kan wegpagina's van mijn kanaal aanmaken en bewerken"; +App::$strings["Can post on my channel (wall) page"] = "Kan een bericht in mijn kanaal plaatsen"; +App::$strings["Can comment on or like my posts"] = "Kan op mijn berichten reageren of deze (niet) leuk vinden"; +App::$strings["Can send me private mail messages"] = "Kan mij privéberichten sturen"; +App::$strings["Can like/dislike profiles and profile things"] = "Kan profielen en profieldingen leuk en niet leuk vinden "; +App::$strings["Can forward to all my channel connections via @+ mentions in posts"] = "Kan naar al mijn kanaalconnecties berichten doorsturen met behulp van @vermeldingen+"; +App::$strings["Can chat with me"] = "Kan met mij chatten"; +App::$strings["Can source my public posts in derived channels"] = "Kan mijn openbare berichten als bron voor andere kanalen gebruiken"; +App::$strings["Can administer my channel"] = "Kan mijn kanaal beheren"; App::$strings["parent"] = "omhoog"; App::$strings["Collection"] = "map"; App::$strings["Principal"] = "principal"; @@ -37,63 +69,8 @@ App::$strings["Remote authentication blocked. You are logged into this site loca App::$strings["Welcome %s. Remote authentication successful."] = "Welkom %s. Authenticatie op afstand geslaagd."; App::$strings["Requested profile is not available."] = "Opgevraagd profiel is niet beschikbaar"; App::$strings["Some blurb about what to do when you're new here"] = "Welkom op \$Projectname. Klik op de tab ontdekken of klik rechtsboven op de kanalengids, om kanalen te vinden. Rechtsboven vind je ook apps, waar je vrijwel alle functies van \$Projectname kunt vinden. Voor hulp met \$Projectname klik je op het vraagteken."; -App::$strings["Block Name"] = "Bloknaam"; -App::$strings["Blocks"] = "Blokken"; -App::$strings["Block Title"] = "Bloktitel"; -App::$strings["Created"] = "Aangemaakt"; -App::$strings["Edited"] = "Bewerkt"; -App::$strings["Share"] = "Delen"; -App::$strings["View"] = "Weergeven"; -App::$strings["Channel not found."] = "Kanaal niet gevonden."; -App::$strings["Permissions denied."] = "Permissies niet toegestaan"; -App::$strings["l, F j"] = "l j F"; -App::$strings["Link to Source"] = "Originele locatie"; -App::$strings["Edit Event"] = "Gebeurtenis bewerken"; -App::$strings["Create Event"] = "Gebeurtenis aanmaken"; -App::$strings["Previous"] = "Vorige"; -App::$strings["Next"] = "Volgende"; -App::$strings["Export"] = "Exporteren"; -App::$strings["Import"] = "Importeren"; -App::$strings["Submit"] = "Opslaan"; -App::$strings["Today"] = "Vandaag"; -App::$strings["You must be logged in to see this page."] = "Je moet zijn ingelogd om deze pagina te kunnen bekijken."; -App::$strings["Posts and comments"] = "Berichten en reacties"; -App::$strings["Only posts"] = "Alleen berichten"; -App::$strings["Insufficient permissions. Request redirected to profile page."] = "Onvoldoende permissies. Doorgestuurd naar profielpagina."; -App::$strings["Room not found"] = "Chatkanaal niet gevonden"; -App::$strings["Leave Room"] = "Chatkanaal verlaten"; -App::$strings["Delete Room"] = "Chatkanaal verwijderen"; -App::$strings["I am away right now"] = "Ik ben momenteel afwezig"; -App::$strings["I am online"] = "Ik ben online"; -App::$strings["Bookmark this room"] = "Chatkanaal aan bladwijzers toevoegen"; -App::$strings["Please enter a link URL:"] = "Vul een URL in:"; -App::$strings["Encrypt text"] = "Tekst versleutelen"; -App::$strings["Insert web link"] = "Weblink invoegen"; -App::$strings["Feature disabled."] = "Functie uitgeschakeld."; -App::$strings["New Chatroom"] = "Nieuw chatkanaal"; -App::$strings["Chatroom name"] = "Naam chatkanaal"; -App::$strings["Expiration of chats (minutes)"] = "Aantal minuten voordat chatberichten worden verwijderd"; -App::$strings["Permissions"] = "Permissies"; -App::$strings["%1\$s's Chatrooms"] = "Chatkanalen van %1\$s"; -App::$strings["No chatrooms available"] = "Geen chatkanalen beschikbaar"; -App::$strings["Create New"] = "Nieuwe aanmaken"; -App::$strings["Expiration"] = "Verloopt na"; -App::$strings["min"] = "min"; App::$strings["Away"] = "Afwezig"; App::$strings["Online"] = "Online"; -App::$strings["Invalid item."] = "Ongeldig item."; -App::$strings["Bookmark added"] = "Bladwijzer toegevoegd"; -App::$strings["My Bookmarks"] = "Mijn bladwijzers"; -App::$strings["My Connections Bookmarks"] = "Bladwijzers van mijn connecties"; -App::$strings["Continue"] = "Ga verder"; -App::$strings["Premium Channel Setup"] = "Instellen premiumkanaal "; -App::$strings["Enable premium channel connection restrictions"] = "Restricties voor connecties van premiumkanaal toestaan"; -App::$strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = "Vul je restricties of voorwaarden in, zoals een paypal-afschrift, voorschriften voor leden, enz."; -App::$strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = "Dit kanaal kan extra stappen of het accepteren van de volgende voorwaarden vereisen, voordat de connectie wordt geaccepteerd:"; -App::$strings["Potential connections will then see the following text before proceeding:"] = "Mogelijke connecties zullen dan de volgende tekst zien voordat ze verder kunnen:"; -App::$strings["By continuing, I certify that I have complied with any instructions provided on this page."] = "Door verder te gaan ga ik automatisch akkoord met alle voorwaarden en aanwijzingen op deze pagina."; -App::$strings["(No specific instructions have been provided by the channel owner.)"] = "(Er zijn geen speciale voorwaarden en aanwijzingen door de kanaal-eigenaar verstrekt) "; -App::$strings["Restricted or Premium Channel"] = "Beperkt of premiumkanaal"; App::$strings["Could not access contact record."] = "Kon geen toegang krijgen tot de connectie-gegevens."; App::$strings["Could not locate selected profile."] = "Kon het gekozen profiel niet vinden."; App::$strings["Connection updated."] = "Connectie bijgewerkt."; @@ -158,6 +135,7 @@ App::$strings["Do not import posts with this text"] = "Importeer geen berichten App::$strings["This information is public!"] = "Deze informatie is openbaar!"; App::$strings["Connection Pending Approval"] = "Connectie moet nog geaccepteerd worden"; App::$strings["inherited"] = "geërfd"; +App::$strings["Submit"] = "Opslaan"; App::$strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Kies het profiel dat je aan %s wil tonen wanneer hij/zij ingelogd jouw profiel wil bekijken."; App::$strings["Their Settings"] = "Hun instellingen"; App::$strings["My Settings"] = "Mijn instellingen"; @@ -166,6 +144,30 @@ App::$strings["Some permissions may be inherited from your channel's privacy settings, which have higher priority than individual settings. You can change those settings here but they wont have any impact unless the inherited setting changes."] = "Sommige permissies worden mogelijk overgeërfd van de privacy-instellingen van jouw kanaal, die een hogere prioriteit hebben dan deze individuele permissies. Je kan de permissies hier veranderen, maar die hebben geen effect, tenzij de overgeërfde permissies worden veranderd. "; App::$strings["Last update:"] = "Laatste wijziging:"; App::$strings["Public access denied."] = "Openbare toegang geweigerd."; +App::$strings["Item not found."] = "Item niet gevonden."; +App::$strings["First Name"] = "Voornaam"; +App::$strings["Last Name"] = "Achternaam"; +App::$strings["Nickname"] = "Bijnaam"; +App::$strings["Full Name"] = "Volledige naam"; +App::$strings["Email"] = "E-mail"; +App::$strings["Profile Photo"] = "Profielfoto"; +App::$strings["Profile Photo 16px"] = "Profielfoto 16px"; +App::$strings["Profile Photo 32px"] = "Profielfoto 32px"; +App::$strings["Profile Photo 48px"] = "Profielfoto 48px"; +App::$strings["Profile Photo 64px"] = "Profielfoto 64px"; +App::$strings["Profile Photo 80px"] = "Profielfoto 80px"; +App::$strings["Profile Photo 128px"] = "Profielfoto 128px"; +App::$strings["Timezone"] = "Tijdzone"; +App::$strings["Homepage URL"] = "URL homepagina"; +App::$strings["Language"] = "Taal"; +App::$strings["Birth Year"] = "Geboortejaar"; +App::$strings["Birth Month"] = "Geboortemaand"; +App::$strings["Birth Day"] = "Geboortedag"; +App::$strings["Birthdate"] = "Geboortedatum"; +App::$strings["Gender"] = "Geslacht"; +App::$strings["Male"] = "Man"; +App::$strings["Female"] = "Vrouw"; +App::$strings["Channel added."] = "Kanaal toegevoegd."; App::$strings["%d rating"] = array( 0 => "%d beoordeling", 1 => "%d beoordelingen", @@ -196,13 +198,74 @@ App::$strings["Reverse Alphabetic"] = "Omgekeerd alfabetisch"; App::$strings["Newest to Oldest"] = "Nieuw naar oud"; App::$strings["Oldest to Newest"] = "Oud naar nieuw"; App::$strings["No entries (some entries may be hidden)."] = "Niets gevonden (sommige kanalen kunnen verborgen zijn)."; -App::$strings["Item not found."] = "Item niet gevonden."; +App::$strings["Continue"] = "Ga verder"; +App::$strings["Premium Channel Setup"] = "Instellen premiumkanaal "; +App::$strings["Enable premium channel connection restrictions"] = "Restricties voor connecties van premiumkanaal toestaan"; +App::$strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = "Vul je restricties of voorwaarden in, zoals een paypal-afschrift, voorschriften voor leden, enz."; +App::$strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = "Dit kanaal kan extra stappen of het accepteren van de volgende voorwaarden vereisen, voordat de connectie wordt geaccepteerd:"; +App::$strings["Potential connections will then see the following text before proceeding:"] = "Mogelijke connecties zullen dan de volgende tekst zien voordat ze verder kunnen:"; +App::$strings["By continuing, I certify that I have complied with any instructions provided on this page."] = "Door verder te gaan ga ik automatisch akkoord met alle voorwaarden en aanwijzingen op deze pagina."; +App::$strings["(No specific instructions have been provided by the channel owner.)"] = "(Er zijn geen speciale voorwaarden en aanwijzingen door de kanaal-eigenaar verstrekt) "; +App::$strings["Restricted or Premium Channel"] = "Beperkt of premiumkanaal"; +App::$strings["Calendar entries imported."] = "Agenda-items geïmporteerd."; +App::$strings["No calendar entries found."] = "Geen agenda-items gevonden."; +App::$strings["Event can not end before it has started."] = "Gebeurtenis kan niet eindigen voordat het is begonnen"; +App::$strings["Unable to generate preview."] = "Niet in staat om voorvertoning te genereren"; +App::$strings["Event title and start time are required."] = "Titel en begintijd van gebeurtenis zijn vereist."; +App::$strings["Event not found."] = "Gebeurtenis niet gevonden"; +App::$strings["event"] = "gebeurtenis"; +App::$strings["Edit event title"] = "Titel bewerken"; +App::$strings["Event title"] = "Titel"; +App::$strings["Required"] = "Vereist"; +App::$strings["Categories (comma-separated list)"] = "Categorieën (door komma's gescheiden lijst)"; +App::$strings["Edit Category"] = "Categorie"; +App::$strings["Category"] = "Categorie"; +App::$strings["Edit start date and time"] = "Begindatum en -tijd bewerken"; +App::$strings["Start date and time"] = "Begindatum en -tijd"; +App::$strings["Finish date and time are not known or not relevant"] = "Einddatum en -tijd zijn niet bekend of niet van toepassing"; +App::$strings["Edit finish date and time"] = "Einddatum en -tijd bewerken"; +App::$strings["Finish date and time"] = "Einddatum en -tijd"; +App::$strings["Adjust for viewer timezone"] = "Aanpassen aan de tijdzone van wie deze gebeurtenis bekijkt"; +App::$strings["Important for events that happen in a particular place. Not practical for global holidays."] = "Belangrijk voor gebeurtenissen die op een bepaalde locatie plaatsvinden. Niet praktisch voor wereldwijde feestdagen."; +App::$strings["Edit Description"] = "Omschrijving bewerken"; +App::$strings["Description"] = "Omschrijving"; +App::$strings["Edit Location"] = "Locatie bewerken"; +App::$strings["Location"] = "Locatie"; +App::$strings["Share this event"] = "Deel deze gebeurtenis"; +App::$strings["Preview"] = "Voorvertoning"; +App::$strings["Permission settings"] = "Permissies"; +App::$strings["Advanced Options"] = "Geavanceerde opties"; +App::$strings["l, F j"] = "l j F"; +App::$strings["Edit event"] = "Gebeurtenis bewerken"; +App::$strings["Delete event"] = "Gebeurtenis verwijderen"; +App::$strings["Link to Source"] = "Originele locatie"; +App::$strings["calendar"] = "agenda"; +App::$strings["Edit Event"] = "Gebeurtenis bewerken"; +App::$strings["Create Event"] = "Gebeurtenis aanmaken"; +App::$strings["Previous"] = "Vorige"; +App::$strings["Next"] = "Volgende"; +App::$strings["Export"] = "Exporteren"; +App::$strings["View"] = "Weergeven"; +App::$strings["Month"] = "Maand"; +App::$strings["Week"] = "Week"; +App::$strings["Day"] = "Dag"; +App::$strings["Today"] = "Vandaag"; +App::$strings["Event removed"] = "Gebeurtenis verwijderd"; +App::$strings["Failed to remove event"] = "Verwijderen gebeurtenis mislukt"; +App::$strings["Bookmark added"] = "Bladwijzer toegevoegd"; +App::$strings["My Bookmarks"] = "Mijn bladwijzers"; +App::$strings["My Connections Bookmarks"] = "Bladwijzers van mijn connecties"; App::$strings["Item not found"] = "Item niet gevonden"; -App::$strings["Title (optional)"] = "Titel (optioneel)"; -App::$strings["Edit Block"] = "Blok bewerken"; -App::$strings["No channel."] = "Geen kanaal."; -App::$strings["Common connections"] = "Veel voorkomende connecties"; -App::$strings["No connections in common."] = "Geen gemeenschappelijke connecties."; +App::$strings["Item is not editable"] = "Item is niet te bewerken"; +App::$strings["Edit post"] = "Bericht bewerken"; +App::$strings["Photos"] = "Foto's"; +App::$strings["Cancel"] = "Annuleren"; +App::$strings["Invalid item."] = "Ongeldig item."; +App::$strings["Channel not found."] = "Kanaal niet gevonden."; +App::$strings["Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."] = "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."; +App::$strings["Save to Folder:"] = "Bewaar in map: "; +App::$strings["- select -"] = "- kies map -"; +App::$strings["Save"] = "Opslaan"; App::$strings["Blocked"] = "Geblokkeerd"; App::$strings["Ignored"] = "Genegeerd"; App::$strings["Hidden"] = "Verborgen"; @@ -254,51 +317,38 @@ App::$strings["select a photo from your photo albums"] = "Kies een foto uit jouw App::$strings["Crop Image"] = "Afbeelding bijsnijden"; App::$strings["Please adjust the image cropping for optimum viewing."] = "Snij de afbeelding zo uit dat deze optimaal wordt weergegeven."; App::$strings["Done Editing"] = "Klaar met bewerken"; -App::$strings["Item is not editable"] = "Item is niet te bewerken"; -App::$strings["Edit post"] = "Bericht bewerken"; -App::$strings["Calendar entries imported."] = "Agenda-items geïmporteerd."; -App::$strings["No calendar entries found."] = "Geen agenda-items gevonden."; -App::$strings["Event can not end before it has started."] = "Gebeurtenis kan niet eindigen voordat het is begonnen"; -App::$strings["Unable to generate preview."] = "Niet in staat om voorvertoning te genereren"; -App::$strings["Event title and start time are required."] = "Titel en begintijd van gebeurtenis zijn vereist."; -App::$strings["Event not found."] = "Gebeurtenis niet gevonden"; -App::$strings["event"] = "gebeurtenis"; -App::$strings["Edit event title"] = "Titel bewerken"; -App::$strings["Event title"] = "Titel"; -App::$strings["Required"] = "Vereist"; -App::$strings["Categories (comma-separated list)"] = "Categorieën (door komma's gescheiden lijst)"; -App::$strings["Edit Category"] = "Categorie"; -App::$strings["Category"] = "Categorie"; -App::$strings["Edit start date and time"] = "Begindatum en -tijd bewerken"; -App::$strings["Start date and time"] = "Begindatum en -tijd"; -App::$strings["Finish date and time are not known or not relevant"] = "Einddatum en -tijd zijn niet bekend of niet van toepassing"; -App::$strings["Edit finish date and time"] = "Einddatum en -tijd bewerken"; -App::$strings["Finish date and time"] = "Einddatum en -tijd"; -App::$strings["Adjust for viewer timezone"] = "Aanpassen aan de tijdzone van wie deze gebeurtenis bekijkt"; -App::$strings["Important for events that happen in a particular place. Not practical for global holidays."] = "Belangrijk voor gebeurtenissen die op een bepaalde locatie plaatsvinden. Niet praktisch voor wereldwijde feestdagen."; -App::$strings["Edit Description"] = "Omschrijving bewerken"; -App::$strings["Description"] = "Omschrijving"; -App::$strings["Edit Location"] = "Locatie bewerken"; -App::$strings["Location"] = "Locatie"; -App::$strings["Share this event"] = "Deel deze gebeurtenis"; -App::$strings["Preview"] = "Voorvertoning"; -App::$strings["Permission settings"] = "Permissies"; -App::$strings["Advanced Options"] = "Geavanceerde opties"; -App::$strings["Edit event"] = "Gebeurtenis bewerken"; -App::$strings["Delete event"] = "Gebeurtenis verwijderen"; -App::$strings["calendar"] = "agenda"; -App::$strings["Event removed"] = "Gebeurtenis verwijderd"; -App::$strings["Failed to remove event"] = "Verwijderen gebeurtenis mislukt"; -App::$strings["Photos"] = "Foto's"; -App::$strings["Cancel"] = "Annuleren"; +App::$strings["webpage"] = "Webpagina"; +App::$strings["block"] = "blok"; +App::$strings["layout"] = "lay-out"; +App::$strings["menu"] = "menu"; +App::$strings["%s element installed"] = "%s onderdeel geïnstalleerd"; +App::$strings["%s element installation failed"] = "Installatie %s-element mislukt"; +App::$strings["Permissions denied."] = "Permissies niet toegestaan"; +App::$strings["Import"] = "Importeren"; App::$strings["This site is not a directory server"] = "Deze hub is geen kanalengidshub (directoryserver)"; App::$strings["This directory server requires an access token"] = "Deze kanalengidshub (directoryserver) heeft een toegangs-token nodig"; -App::$strings["Save to Folder:"] = "Bewaar in map: "; -App::$strings["- select -"] = "- kies map -"; -App::$strings["Save"] = "Opslaan"; +App::$strings["You must be logged in to see this page."] = "Je moet zijn ingelogd om deze pagina te kunnen bekijken."; +App::$strings["Room not found"] = "Chatkanaal niet gevonden"; +App::$strings["Leave Room"] = "Chatkanaal verlaten"; +App::$strings["Delete Room"] = "Chatkanaal verwijderen"; +App::$strings["I am away right now"] = "Ik ben momenteel afwezig"; +App::$strings["I am online"] = "Ik ben online"; +App::$strings["Bookmark this room"] = "Chatkanaal aan bladwijzers toevoegen"; +App::$strings["Please enter a link URL:"] = "Vul een URL in:"; +App::$strings["Encrypt text"] = "Tekst versleutelen"; +App::$strings["Insert web link"] = "Weblink invoegen"; +App::$strings["Feature disabled."] = "Functie uitgeschakeld."; +App::$strings["New Chatroom"] = "Nieuw chatkanaal"; +App::$strings["Chatroom name"] = "Naam chatkanaal"; +App::$strings["Expiration of chats (minutes)"] = "Aantal minuten voordat chatberichten worden verwijderd"; +App::$strings["Permissions"] = "Permissies"; +App::$strings["%1\$s's Chatrooms"] = "Chatkanalen van %1\$s"; +App::$strings["No chatrooms available"] = "Geen chatkanalen beschikbaar"; +App::$strings["Create New"] = "Nieuwe aanmaken"; +App::$strings["Expiration"] = "Verloopt na"; +App::$strings["min"] = "min"; App::$strings["Invalid message"] = "Ongeldig bericht"; App::$strings["no results"] = "geen resultaten"; -App::$strings["Delivery report for %1\$s"] = "Afleveringsrapport voor %1\$s"; App::$strings["channel sync processed"] = "kanaalsync verwerkt"; App::$strings["queued"] = "in wachtrij"; App::$strings["posted"] = "verstuurd"; @@ -310,14 +360,14 @@ App::$strings["recipient not found"] = "ontvanger niet gevonden"; App::$strings["mail recalled"] = "Privébericht ingetrokken"; App::$strings["duplicate mail received"] = "dubbel privébericht ontvangen"; App::$strings["mail delivered"] = "privébericht afgeleverd"; +App::$strings["Delivery report for %1\$s"] = "Afleveringsrapport voor %1\$s"; +App::$strings["Options"] = "Opties"; +App::$strings["Redeliver"] = "Opnieuw afleveren"; App::$strings["Layout Name"] = "Naam lay-out"; App::$strings["Layout Description (Optional)"] = "Lay-out-omschrijving (optioneel)"; App::$strings["Edit Layout"] = "Lay-out bewerken"; App::$strings["Page link"] = "Paginalink"; App::$strings["Edit Webpage"] = "Webpagina bewerken"; -App::$strings["Channel added."] = "Kanaal toegevoegd."; -App::$strings["network"] = "netwerk"; -App::$strings["RSS"] = "RSS"; App::$strings["Privacy group created."] = "Privacygroep aangemaakt"; App::$strings["Could not create privacy group."] = "Kon privacygroep niet aanmaken"; App::$strings["Privacy group not found."] = "Privacygroep niet gevonden"; @@ -331,16 +381,33 @@ App::$strings["Privacy group editor"] = "Privacygroep bewerken"; App::$strings["Members"] = "Kanalen"; App::$strings["All Connected Channels"] = "Alle kanaalconnecties"; App::$strings["Click on a channel to add or remove."] = "Klik op een kanaal om deze toe te voegen of te verwijderen."; -App::$strings["Share content from Firefox to \$Projectname"] = "Deel webpagina's vanuit Firefox met "; -App::$strings["Activate the Firefox \$Projectname provider"] = "Activeer de \$Projectname-service in Firefox"; -App::$strings["Authorize application connection"] = "Geef toestemming voor applicatiekoppeling"; -App::$strings["Return to your app and insert this Securty Code:"] = "Ga terug naar je app en voeg deze beveiligingscode in:"; -App::$strings["Please login to continue."] = "Inloggen om verder te kunnen gaan."; -App::$strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Wil je deze applicatie toestemming geven om jouw berichten en connecties te zien, en/of nieuwe berichten voor jou te plaatsen?"; +App::$strings["App installed."] = "App geïnstalleerd"; +App::$strings["Malformed app."] = "Misvormde app."; +App::$strings["Embed code"] = "Insluitcode"; +App::$strings["Edit App"] = "App bewerken"; +App::$strings["Create App"] = "App maken"; +App::$strings["Name of app"] = "Naam van app"; +App::$strings["Location (URL) of app"] = "Locatie (URL) van app"; +App::$strings["Photo icon URL"] = "URL van pictogram"; +App::$strings["80 x 80 pixels - optional"] = "80 x 80 pixels (optioneel)"; +App::$strings["Categories (optional, comma separated list)"] = "Categorieën (optioneel, door komma's gescheiden lijst)"; +App::$strings["Version ID"] = "Versie-ID"; +App::$strings["Price of app"] = "Prijs van de app"; +App::$strings["Location (URL) to purchase app"] = "Locatie (URL) om de app aan te schaffen"; App::$strings["Documentation Search"] = "Zoek documentatie"; App::$strings["Help:"] = "Hulp:"; App::$strings["Help"] = "Hulp"; App::$strings["\$Projectname Documentation"] = "\$Projectname-documentatie"; +App::$strings["Item not available."] = "Item is niet aanwezig."; +App::$strings["Layout updated."] = "Lay-out bijgewerkt."; +App::$strings["Edit System Page Description"] = "Systeempagina's bewerken"; +App::$strings["Layout not found."] = "Lay-out niet gevonden."; +App::$strings["Module Name:"] = "Modulenaam:"; +App::$strings["Layout Help"] = "Lay-out-hulp"; +App::$strings["Share content from Firefox to \$Projectname"] = "Deel webpagina's vanuit Firefox met "; +App::$strings["Activate the Firefox \$Projectname provider"] = "Activeer de \$Projectname-service in Firefox"; +App::$strings["network"] = "netwerk"; +App::$strings["RSS"] = "RSS"; App::$strings["Permission Denied."] = "Toegang geweigerd"; App::$strings["File not found."] = "Bestand niet gevonden."; App::$strings["Edit file permissions"] = "Bestandsrechten bewerken"; @@ -352,70 +419,13 @@ App::$strings["Copy/paste this URL to link file from a web page"] = "Kopieer/pla App::$strings["Share this file"] = "Dit bestand delen"; App::$strings["Show URL to this file"] = "Toon URL van dit bestand"; App::$strings["Notify your contacts about this file"] = "Jouw connecties over dit bestand berichten"; -App::$strings["Apps"] = "Apps"; -App::$strings["Item not available."] = "Item is niet aanwezig."; -App::$strings["Your service plan only allows %d channels."] = "Jouw abonnement staat maar %d kanalen toe."; -App::$strings["Nothing to import."] = "Niets gevonden om te importeren"; -App::$strings["Unable to download data from old server"] = "Niet in staat om gegevens van de oude hub te downloaden"; -App::$strings["Imported file is empty."] = "Geïmporteerde bestand is leeg"; -App::$strings["Warning: Database versions differ by %1\$d updates."] = "Waarschuwing: database-versies lopen %1\$d updates achter."; -App::$strings["Cloned channel not found. Import failed."] = "Gekloond kanaal niet gevonden. Importeren mislukt."; -App::$strings["No channel. Import failed."] = "Geen kanaal. Importeren mislukt."; -App::$strings["Import completed."] = "Import voltooid."; -App::$strings["You must be logged in to use this feature."] = "Je moet ingelogd zijn om dit onderdeel te kunnen gebruiken."; -App::$strings["Import Channel"] = "Kanaal importeren"; -App::$strings["Use this form to import an existing channel from a different server/hub. You may retrieve the channel identity from the old server/hub via the network or provide an export file."] = "Gebruik dit formulier om een bestaand kanaal te importeren van een andere hub. Je kan de kanaal-identiteit van de oude hub via het netwerk ontvangen of een exportbestand verstrekken."; -App::$strings["File to Upload"] = "Bestand om te uploaden"; -App::$strings["Or provide the old server/hub details"] = "Of vul de gegevens van de oude hub in"; -App::$strings["Your old identity address (xyz@example.com)"] = "Jouw oude kanaaladres (xyz@example.com)"; -App::$strings["Your old login email address"] = "Het e-mailadres van je oude account"; -App::$strings["Your old login password"] = "Wachtwoord van jouw oude account"; -App::$strings["For either option, please choose whether to make this hub your new primary address, or whether your old location should continue this role. You will be able to post from either location, but only one can be marked as the primary location for files, photos, and media."] = "Voor elke optie geldt dat je moet kiezen of je jouw primaire kanaaladres op deze hub wil instellen of dat jouw oude hub deze rol blijft vervullen."; -App::$strings["Make this hub my primary location"] = "Stel deze hub als mijn primaire locatie in"; -App::$strings["Import existing posts if possible (experimental - limited by available memory"] = "Importeer bestaande berichten wanneer mogelijk (experimenteel - afhankelijk van beschikbaar servergeheugen)"; -App::$strings["This process may take several minutes to complete. Please submit the form only once and leave this page open until finished."] = "Dit proces kan enkele minuten in beslag nemen. Klik maar één keer op opslaan en verlaat deze pagina niet alvorens het proces is voltooid."; -App::$strings["Unable to locate original post."] = "Niet in staat om de originele locatie van het bericht te vinden. "; -App::$strings["Empty post discarded."] = "Leeg bericht geannuleerd"; -App::$strings["Executable content type not permitted to this channel."] = "Uitvoerbare bestanden zijn niet toegestaan op dit kanaal."; -App::$strings["Duplicate post suppressed."] = "Dubbel bericht tegengehouden."; -App::$strings["System error. Post not saved."] = "Systeemfout. Bericht niet opgeslagen."; -App::$strings["Unable to obtain post information from database."] = "Niet in staat om informatie over dit bericht uit de database te verkrijgen."; -App::$strings["You have reached your limit of %1$.0f top level posts."] = "Je hebt jouw limiet van %1$.0f berichten bereikt."; -App::$strings["You have reached your limit of %1$.0f webpages."] = "Je hebt jouw limiet van %1$.0f webpagina's bereikt."; App::$strings["Layouts"] = "Lay-outs"; App::$strings["Comanche page description language help"] = "Hulp met de paginabeschrijvingstaal Comanche"; App::$strings["Layout Description"] = "Lay-out-omschrijving"; +App::$strings["Created"] = "Aangemaakt"; +App::$strings["Edited"] = "Bewerkt"; +App::$strings["Share"] = "Delen"; App::$strings["Download PDL file"] = "Download PDL-bestand"; -App::$strings["\$Projectname"] = "\$Projectname"; -App::$strings["Welcome to %s"] = "Welkom op %s"; -App::$strings["First Name"] = "Voornaam"; -App::$strings["Last Name"] = "Achternaam"; -App::$strings["Nickname"] = "Bijnaam"; -App::$strings["Full Name"] = "Volledige naam"; -App::$strings["Email"] = "E-mail"; -App::$strings["Profile Photo"] = "Profielfoto"; -App::$strings["Profile Photo 16px"] = "Profielfoto 16px"; -App::$strings["Profile Photo 32px"] = "Profielfoto 32px"; -App::$strings["Profile Photo 48px"] = "Profielfoto 48px"; -App::$strings["Profile Photo 64px"] = "Profielfoto 64px"; -App::$strings["Profile Photo 80px"] = "Profielfoto 80px"; -App::$strings["Profile Photo 128px"] = "Profielfoto 128px"; -App::$strings["Timezone"] = "Tijdzone"; -App::$strings["Homepage URL"] = "URL homepagina"; -App::$strings["Language"] = "Taal"; -App::$strings["Birth Year"] = "Geboortejaar"; -App::$strings["Birth Month"] = "Geboortemaand"; -App::$strings["Birth Day"] = "Geboortedag"; -App::$strings["Birthdate"] = "Geboortedatum"; -App::$strings["Gender"] = "Geslacht"; -App::$strings["Male"] = "Man"; -App::$strings["Female"] = "Vrouw"; -App::$strings["webpage"] = "Webpagina"; -App::$strings["block"] = "blok"; -App::$strings["layout"] = "lay-out"; -App::$strings["menu"] = "menu"; -App::$strings["%s element installed"] = "%s onderdeel geïnstalleerd"; -App::$strings["%s element installation failed"] = "Installatie %s-element mislukt"; App::$strings["Like/Dislike"] = "Leuk/niet leuk"; App::$strings["This action is restricted to members."] = "Deze actie kan alleen door \$Projectname-leden worden uitgevoerd."; App::$strings["Please login with your \$Projectname ID or register as a new \$Projectname member to continue."] = "Je dient in te loggen met je \$Projectname-account of een nieuw \$Projectname-account aan te maken om verder te kunnen gaan."; @@ -436,175 +446,103 @@ App::$strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$s is niet aanwezig App::$strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$s is mogelijk aanwezig op %2\$s's %3\$s"; App::$strings["Action completed."] = "Actie voltooid"; App::$strings["Thank you."] = "Bedankt"; -App::$strings["Import completed"] = "Importeren voltooid"; -App::$strings["Import Items"] = "Importeer items"; -App::$strings["Use this form to import existing posts and content from an export file."] = "Gebruik dit formulier om bestaande berichten en andere inhoud vanuit een exportbestand te importeren."; -App::$strings["Total invitation limit exceeded."] = "Limiet voor aantal uitnodigingen overschreden."; -App::$strings["%s : Not a valid email address."] = "%s : Geen geldig e-mailadres."; -App::$strings["Please join us on \$Projectname"] = "Uitnodiging voor \$Projectname"; -App::$strings["Invitation limit exceeded. Please contact your site administrator."] = "Limiet voor aantal uitnodigingen overschreden. Neem contact op met je hub-beheerder."; -App::$strings["%s : Message delivery failed."] = "%s: Aflevering bericht mislukt."; -App::$strings["%d message sent."] = array( - 0 => "%d bericht verzonden.", - 1 => "%d berichten verzonden.", -); -App::$strings["You have no more invitations available"] = "Je hebt geen uitnodigingen meer beschikbaar"; -App::$strings["Send invitations"] = "Uitnodigingen verzenden"; -App::$strings["Enter email addresses, one per line:"] = "Voer e-mailadressen in, één per regel:"; -App::$strings["Your message:"] = "Jouw bericht:"; -App::$strings["Please join my community on \$Projectname."] = "Hierbij nodig ik je uit om mij, en andere vrienden en kennissen, op \$Projectname te vergezellen. Lees meer over \$Projectname op http://hubzilla.org"; -App::$strings["You will need to supply this invitation code:"] = "Je moet deze uitnodigingscode opgeven:"; -App::$strings["1. Register at any \$Projectname location (they are all inter-connected)"] = "1. Registreer je op een willekeurige \$Projectname-hub (ze zijn allemaal onderling met elkaar verbonden):"; -App::$strings["2. Enter my \$Projectname network address into the site searchbar."] = "2. Nadat je bent ingelogd en een kanaal hebt aangemaakt kan je mijn \$Projectname-kanaaladres in het zoekveld invullen:"; -App::$strings["or visit"] = "of bezoek"; -App::$strings["3. Click [Connect]"] = "3. Klik op [+ Verbinden]"; -App::$strings["Remote privacy information not available."] = "Privacy-informatie op afstand niet beschikbaar."; -App::$strings["Visible to:"] = "Zichtbaar voor:"; -App::$strings["Location not found."] = "Locatie niet gevonden."; -App::$strings["Location lookup failed."] = "Opzoeken locatie mislukt"; -App::$strings["Please select another location to become primary before removing the primary location."] = "Kies eerst een andere primaire locatie alvorens de huidige primaire locatie te verwijderen."; -App::$strings["Syncing locations"] = "Locaties synchronizeren"; -App::$strings["No locations found."] = "Geen locaties gevonden."; -App::$strings["Manage Channel Locations"] = "Kanaallocaties beheren"; +App::$strings["Profile not found."] = "Profiel niet gevonden."; +App::$strings["Profile deleted."] = "Profiel verwijderd."; +App::$strings["Profile-"] = "Profiel-"; +App::$strings["New profile created."] = "Nieuw profiel aangemaakt."; +App::$strings["Profile unavailable to clone."] = "Profiel niet beschikbaar om te klonen"; +App::$strings["Profile unavailable to export."] = "Geen profiel beschikbaar om te exporteren"; +App::$strings["Profile Name is required."] = "Profielnaam is vereist"; +App::$strings["Marital Status"] = "Huwelijke status"; +App::$strings["Romantic Partner"] = "Romantische partner"; +App::$strings["Likes"] = "Houdt van"; +App::$strings["Dislikes"] = "Houdt niet van"; +App::$strings["Work/Employment"] = "Werk/arbeid"; +App::$strings["Religion"] = "Religie"; +App::$strings["Political Views"] = "Politieke overtuigingen"; +App::$strings["Sexual Preference"] = "Seksuele voorkeur"; +App::$strings["Homepage"] = "Homepage"; +App::$strings["Interests"] = "Interesses"; App::$strings["Address"] = "Kanaaladres"; -App::$strings["Primary"] = "Primair"; -App::$strings["Drop"] = "Verwijderen"; -App::$strings["Sync Now"] = "Nu synchroniseren"; -App::$strings["Please wait several minutes between consecutive operations."] = "Wacht enkele minuten tussen opeenvolgende handelingen."; -App::$strings["When possible, drop a location by logging into that website/hub and removing your channel."] = "Wij adviseren, wanneer dit (nog) mogelijk is, de locatie te verwijderen door op de hub van de kloon in te loggen en het kanaal daar te verwijderen."; -App::$strings["Use this form to drop the location if the hub is no longer operating."] = "Gebruik dit formulier om de locatie te verwijderen wanneer de hub van de kloon niet meer operationeel is."; -App::$strings["Hub not found."] = "Hub niet gevonden."; -App::$strings["Unable to lookup recipient."] = "Niet in staat om ontvanger op te zoeken."; -App::$strings["Unable to communicate with requested channel."] = "Niet in staat om met het aangevraagde kanaal te communiceren."; -App::$strings["Cannot verify requested channel."] = "Kan opgevraagd kanaal niet verifieren"; -App::$strings["Selected channel has private message restrictions. Send failed."] = "Gekozen kanaal heeft restricties voor privéberichten. Verzenden mislukt."; -App::$strings["Messages"] = "Berichten"; -App::$strings["Message recalled."] = "Bericht ingetrokken."; -App::$strings["Conversation removed."] = "Conversatie verwijderd"; -App::$strings["Expires YYYY-MM-DD HH:MM"] = "Verloopt op DD-MM-YYYY om HH:MM"; -App::$strings["Requested channel is not in this network"] = "Opgevraagd kanaal is niet in dit netwerk beschikbaar"; -App::$strings["Send Private Message"] = "Privébericht versturen"; -App::$strings["To:"] = "Aan:"; -App::$strings["Subject:"] = "Onderwerp:"; -App::$strings["Attach file"] = "Bestand toevoegen"; -App::$strings["Send"] = "Verzenden"; -App::$strings["Set expiration date"] = "Verloopdatum instellen"; -App::$strings["Delete message"] = "Bericht verwijderen"; -App::$strings["Delivery report"] = "Afleveringsrapport"; -App::$strings["Recall message"] = "Bericht intrekken"; -App::$strings["Message has been recalled."] = "Bericht is ingetrokken."; -App::$strings["Delete Conversation"] = "Verwijder conversatie"; -App::$strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Geen veilige communicatie beschikbaar. Mogelijk kan je reageren op de kanaalpagina van de afzender."; -App::$strings["Send Reply"] = "Antwoord versturen"; -App::$strings["Your message for %s (%s):"] = "Jouw privébericht aan %s (%s):"; -App::$strings["You have created %1$.0f of %2$.0f allowed channels."] = "Je hebt %1$.0f van totaal %2$.0f toegestane kanalen aangemaakt."; -App::$strings["Create a new channel"] = "Nieuw kanaal aanmaken"; -App::$strings["Channel Manager"] = "Kanaalbeheer"; -App::$strings["Current Channel"] = "Huidig kanaal"; -App::$strings["Switch to one of your channels by selecting it."] = "Activeer een van jouw andere kanalen door er op te klikken."; -App::$strings["Default Channel"] = "Standaardkanaal"; -App::$strings["Make Default"] = "Als standaard instellen"; -App::$strings["%d new messages"] = "%d nieuwe berichten"; -App::$strings["%d new introductions"] = "%d nieuwe connectieverzoeken"; -App::$strings["Delegated Channel"] = "Uitbesteed kanaal"; -App::$strings["No valid account found."] = "Geen geldige account gevonden."; -App::$strings["Password reset request issued. Check your email."] = "Het verzoek om je wachtwoord opnieuw in te stellen is behandeld. Controleer je e-mail."; -App::$strings["Site Member (%s)"] = "Lid van hub (%s)"; -App::$strings["Password reset requested at %s"] = "Verzoek tot het opnieuw instellen van een wachtwoord op %s is ingediend"; -App::$strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Het verzoek kon niet worden geverifieerd. (Mogelijk heb je al eerder een verzoek ingediend.) Opnieuw instellen van wachtwoord is mislukt."; -App::$strings["Password Reset"] = "Wachtwoord vergeten?"; -App::$strings["Your password has been reset as requested."] = "Jouw wachtwoord is opnieuw ingesteld zoals je had verzocht."; -App::$strings["Your new password is"] = "Jouw nieuwe wachtwoord is"; -App::$strings["Save or copy your new password - and then"] = "Kopieer of sla je nieuwe wachtwoord op - en"; -App::$strings["click here to login"] = "klik dan hier om in te loggen"; -App::$strings["Your password may be changed from the Settings page after successful login."] = "Jouw wachtwoord kan worden veranderd onder instellingen, nadat je succesvol bent ingelogd."; -App::$strings["Your password has changed at %s"] = "Jouw wachtwoord op %s is veranderd"; -App::$strings["Forgot your Password?"] = "Wachtwoord vergeten?"; -App::$strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Voer je e-mailadres in en verstuur deze om je wachtwoord opnieuw in te stellen. Controleer hierna hier je e-mail voor verdere instructies."; -App::$strings["Email Address"] = "E-mailadres"; -App::$strings["Reset"] = "Opnieuw instellen"; -App::$strings["Unable to update menu."] = "Niet in staat om menu aan te passen"; -App::$strings["Unable to create menu."] = "Niet in staat om menu aan te maken."; -App::$strings["Menu Name"] = "Menunaam"; -App::$strings["Unique name (not visible on webpage) - required"] = "Unieke naam vereist (niet zichtbaar op webpagina)"; -App::$strings["Menu Title"] = "Menutitel"; -App::$strings["Visible on webpage - leave empty for no title"] = "Zichtbaar op webpagina (leeg laten voor geen titel)"; -App::$strings["Allow Bookmarks"] = "Bladwijzers toestaan"; -App::$strings["Menu may be used to store saved bookmarks"] = "Menu kan gebruikt worden om bladwijzers in op te slaan"; -App::$strings["Submit and proceed"] = "Opslaan en doorgaan"; -App::$strings["Menus"] = "Menu's"; -App::$strings["Bookmarks allowed"] = "Bladwijzers toegestaan"; -App::$strings["Delete this menu"] = "Menu verwijderen"; -App::$strings["Edit menu contents"] = "Bewerk de inhoud van het menu"; -App::$strings["Edit this menu"] = "Dit menu bewerken"; -App::$strings["Menu could not be deleted."] = "Menu kon niet verwijderd worden."; -App::$strings["Menu not found."] = "Menu niet gevonden."; -App::$strings["Edit Menu"] = "Menu bewerken"; -App::$strings["Add or remove entries to this menu"] = "Items aan dit menu toevoegen of verwijder"; -App::$strings["Menu name"] = "Naam van menu"; -App::$strings["Must be unique, only seen by you"] = "Moet uniek zijn en is alleen zichtbaar voor jou."; -App::$strings["Menu title"] = "Titel van menu"; -App::$strings["Menu title as seen by others"] = "Titel van menu zoals anderen dat zien."; -App::$strings["Allow bookmarks"] = "Bladwijzers toestaan"; -App::$strings["Not found."] = "Niet gevonden."; -App::$strings["__ctx:mood__ %1\$s is %2\$s"] = "%1\$s is %2\$s"; -App::$strings["Mood"] = "Stemming"; -App::$strings["Set your current mood and tell your friends"] = "Noteer je huidige stemming en toon het aan je connecties"; -App::$strings["Profile Match"] = "Profielovereenkomst"; -App::$strings["No keywords to match. Please add keywords to your default profile."] = "Je hebt geen trefwoorden waarmee overeenkomsten gevonden kunnen worden. Voeg enkele trefwoorden aan je standaardprofiel toe."; -App::$strings["is interested in:"] = "is geïnteresseerd in:"; -App::$strings["No matches"] = "Geen overeenkomsten"; -App::$strings["No such group"] = "Collectie niet gevonden"; -App::$strings["No such channel"] = "Niet zo'n kanaal"; -App::$strings["forum"] = "forum"; -App::$strings["Search Results For:"] = "Zoekresultaten voor:"; -App::$strings["Privacy group is empty"] = "Privacygroep is leeg"; -App::$strings["Privacy group: "] = "Privacygroep: "; -App::$strings["Invalid connection."] = "Ongeldige connectie."; -App::$strings["No more system notifications."] = "Geen systeemnotificaties meer."; -App::$strings["System Notifications"] = "Systeemnotificaties"; -App::$strings["Unable to create element."] = "Niet in staat om onderdeel aan te maken."; -App::$strings["Unable to update menu element."] = "Menu-onderdeel kan niet worden geüpdatet."; -App::$strings["Unable to add menu element."] = "Menu-onderdeel kan niet worden toegevoegd."; -App::$strings["Menu Item Permissions"] = "Permissies menu-item"; -App::$strings["(click to open/close)"] = "(klik om te openen/sluiten)"; -App::$strings["Link Name"] = "Linknaam"; -App::$strings["Link or Submenu Target"] = "Linkdoel of submenu-doel"; -App::$strings["Enter URL of the link or select a menu name to create a submenu"] = "Geef de URL van de link of kies een menunaam om een submenu aan te maken"; -App::$strings["Use magic-auth if available"] = "Gebruik magic-auth wanneer beschikbaar"; -App::$strings["Open link in new window"] = "Open link in nieuw venster"; -App::$strings["Order in list"] = "Volgorde in lijst"; -App::$strings["Higher numbers will sink to bottom of listing"] = "Hogere nummers komen onderaan de lijst terecht"; -App::$strings["Submit and finish"] = "Opslaan en afsluiten"; -App::$strings["Submit and continue"] = "Opslaan en doorgaan"; -App::$strings["Menu:"] = "Menu:"; -App::$strings["Link Target"] = "Linkdoel"; -App::$strings["Edit menu"] = "Menu bewerken"; -App::$strings["Edit element"] = "Onderdeel bewerken"; -App::$strings["Drop element"] = "Onderdeel verwijderen"; -App::$strings["New element"] = "Nieuw element"; -App::$strings["Edit this menu container"] = "Deze menu-container bewerken"; -App::$strings["Add menu element"] = "Menu-element toevoegen"; -App::$strings["Delete this menu item"] = "Dit menu-item verwijderen"; -App::$strings["Edit this menu item"] = "Dit menu-item bewerken"; -App::$strings["Menu item not found."] = "Menu-item niet gevonden."; -App::$strings["Menu item deleted."] = "Menu-item verwijderd."; -App::$strings["Menu item could not be deleted."] = "Menu-item kon niet worden verwijderd."; -App::$strings["Edit Menu Element"] = "Menu-element bewerken"; -App::$strings["Link text"] = "Linktekst"; -App::$strings["Name or caption"] = "Naam"; -App::$strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\""] = "Voorbeelden: \"Jan Pietersen\", \"Willems weblog\", \"Computerforum\""; -App::$strings["Choose a short nickname"] = "Korte bijnaam"; -App::$strings["Your nickname will be used to create an easy to remember channel address e.g. nickname%s"] = "Deze bijnaam wordt gebruikt om een makkelijk te onthouden kanaaladres van jouw kanaal aan te maken, die je dan met anderen kunt delen. Bijvoorbeeld: bijnaam%s"; -App::$strings["Channel role and privacy"] = "Kanaaltype en privacy"; -App::$strings["Select a channel role with your privacy requirements."] = "Kies een kanaaltype met het door jou gewenste privacyniveau."; -App::$strings["Read more about roles"] = "Lees meer over kanaaltypes"; -App::$strings["Create Channel"] = "Kanaal aanmaken"; -App::$strings["A channel is your identity on this network. It can represent a person, a blog, or a forum to name a few. Channels can make connections with other channels to share information with highly detailed permissions."] = "Een kanaal is jouw identiteit in dit netwerk. Het kan bijvoorbeeld een persoon, een blog of een forum vertegenwoordigen. Door met elkaar te verbinden kunnen kanalen, met behulp van uitgebreide permissies, informatie uitwisselen."; -App::$strings["or import an existing channel from another location."] = "Of importeer een bestaand kanaal vanaf een andere locatie"; -App::$strings["Invalid request identifier."] = "Ongeldige verzoek identificator (request identifier)"; -App::$strings["Discard"] = "Annuleren"; -App::$strings["Mark all system notifications seen"] = "Markeer alle systeemnotificaties als bekeken"; +App::$strings["Profile updated."] = "Profiel bijgewerkt"; +App::$strings["Hide your connections list from viewers of this profile"] = "Laat de lijst met connecties niet aan bezoekers van dit profiel zien."; +App::$strings["Edit Profile Details"] = "Profiel bewerken"; +App::$strings["View this profile"] = "Profiel weergeven"; +App::$strings["Edit visibility"] = "Zichtbaarheid bewerken"; +App::$strings["Profile Tools"] = "Hulpmiddelen"; +App::$strings["Change cover photo"] = "Omslagfoto wijzigen"; +App::$strings["Change profile photo"] = "Profielfoto veranderen"; +App::$strings["Create a new profile using these settings"] = "Een nieuw profiel aanmaken met dit profiel als basis"; +App::$strings["Clone this profile"] = "Dit profiel klonen"; +App::$strings["Delete this profile"] = "Dit profiel verwijderen"; +App::$strings["Add profile things"] = "Dingen aan je profiel toevoegen"; +App::$strings["Personal"] = "Persoonlijk"; +App::$strings["Relation"] = "Relatie"; +App::$strings["Miscellaneous"] = "Diversen"; +App::$strings["Import profile from file"] = "Profiel vanuit bestand importeren"; +App::$strings["Export profile to file"] = "Profiel naar bestand exporteren"; +App::$strings["Your gender"] = "Jouw geslacht"; +App::$strings["Marital status"] = "Burgerlijke staat"; +App::$strings["Sexual preference"] = "Seksuele voorkeur"; +App::$strings["Profile name"] = "Profielnaam"; +App::$strings["This is your default profile."] = "Dit is jouw standaardprofiel"; +App::$strings["Your full name"] = "Jouw volledige naam"; +App::$strings["Title/Description"] = "Titel/omschrijving"; +App::$strings["Street address"] = "Straat en huisnummer"; +App::$strings["Locality/City"] = "Woonplaats"; +App::$strings["Region/State"] = "Provincie/gewest/deelstaat"; +App::$strings["Postal/Zip code"] = "Postcode"; +App::$strings["Country"] = "Land"; +App::$strings["Who (if applicable)"] = "Wie (wanneer van toepassing)"; +App::$strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Voorbeelden: petra123, Petra Jansen, petra@voorbeeld.nl"; +App::$strings["Since (date)"] = "Sinds (datum)"; +App::$strings["Tell us about yourself"] = "Vertel ons iets over jezelf"; +App::$strings["Hometown"] = "Oorspronkelijk uit"; +App::$strings["Political views"] = "Politieke overtuigingen"; +App::$strings["Religious views"] = "Religieuze overtuigingen"; +App::$strings["Keywords used in directory listings"] = "Trefwoorden voor in de kanalengids"; +App::$strings["Example: fishing photography software"] = "Voorbeeld: muziek, fotografie, software"; +App::$strings["Musical interests"] = "Muzikale interesses"; +App::$strings["Books, literature"] = "Boeken/literatuur"; +App::$strings["Television"] = "Televisie"; +App::$strings["Film/Dance/Culture/Entertainment"] = "Film/dans/cultuur/entertainment"; +App::$strings["Hobbies/Interests"] = "Hobby's/interesses"; +App::$strings["Love/Romance"] = "Liefde/romantiek"; +App::$strings["School/Education"] = "School/opleiding"; +App::$strings["Contact information and social networks"] = "Contactinformatie en sociale netwerken"; +App::$strings["My other channels"] = "Mijn andere kanalen"; +App::$strings["Profile Image"] = "Profielfoto"; +App::$strings["Edit Profiles"] = "Bewerk profielen"; +App::$strings["Your service plan only allows %d channels."] = "Jouw abonnement staat maar %d kanalen toe."; +App::$strings["Nothing to import."] = "Niets gevonden om te importeren"; +App::$strings["Unable to download data from old server"] = "Niet in staat om gegevens van de oude hub te downloaden"; +App::$strings["Imported file is empty."] = "Geïmporteerde bestand is leeg"; +App::$strings["Warning: Database versions differ by %1\$d updates."] = "Waarschuwing: database-versies lopen %1\$d updates achter."; +App::$strings["Cloned channel not found. Import failed."] = "Gekloond kanaal niet gevonden. Importeren mislukt."; +App::$strings["No channel. Import failed."] = "Geen kanaal. Importeren mislukt."; +App::$strings["Import completed."] = "Import voltooid."; +App::$strings["You must be logged in to use this feature."] = "Je moet ingelogd zijn om dit onderdeel te kunnen gebruiken."; +App::$strings["Import Channel"] = "Kanaal importeren"; +App::$strings["Use this form to import an existing channel from a different server/hub. You may retrieve the channel identity from the old server/hub via the network or provide an export file."] = "Gebruik dit formulier om een bestaand kanaal te importeren van een andere hub. Je kan de kanaal-identiteit van de oude hub via het netwerk ontvangen of een exportbestand verstrekken."; +App::$strings["File to Upload"] = "Bestand om te uploaden"; +App::$strings["Or provide the old server/hub details"] = "Of vul de gegevens van de oude hub in"; +App::$strings["Your old identity address (xyz@example.com)"] = "Jouw oude kanaaladres (xyz@example.com)"; +App::$strings["Your old login email address"] = "Het e-mailadres van je oude account"; +App::$strings["Your old login password"] = "Wachtwoord van jouw oude account"; +App::$strings["For either option, please choose whether to make this hub your new primary address, or whether your old location should continue this role. You will be able to post from either location, but only one can be marked as the primary location for files, photos, and media."] = "Voor elke optie geldt dat je moet kiezen of je jouw primaire kanaaladres op deze hub wil instellen of dat jouw oude hub deze rol blijft vervullen."; +App::$strings["Make this hub my primary location"] = "Stel deze hub als mijn primaire locatie in"; +App::$strings["Import existing posts if possible (experimental - limited by available memory"] = "Importeer bestaande berichten wanneer mogelijk (experimenteel - afhankelijk van beschikbaar servergeheugen)"; +App::$strings["This process may take several minutes to complete. Please submit the form only once and leave this page open until finished."] = "Dit proces kan enkele minuten in beslag nemen. Klik maar één keer op opslaan en verlaat deze pagina niet alvorens het proces is voltooid."; +App::$strings["\$Projectname"] = "\$Projectname"; +App::$strings["Welcome to %s"] = "Welkom op %s"; +App::$strings["Unable to locate original post."] = "Niet in staat om de originele locatie van het bericht te vinden. "; +App::$strings["Empty post discarded."] = "Leeg bericht geannuleerd"; +App::$strings["Executable content type not permitted to this channel."] = "Uitvoerbare bestanden zijn niet toegestaan op dit kanaal."; +App::$strings["Duplicate post suppressed."] = "Dubbel bericht tegengehouden."; +App::$strings["System error. Post not saved."] = "Systeemfout. Bericht niet opgeslagen."; +App::$strings["Unable to obtain post information from database."] = "Niet in staat om informatie over dit bericht uit de database te verkrijgen."; +App::$strings["You have reached your limit of %1$.0f top level posts."] = "Je hebt jouw limiet van %1$.0f berichten bereikt."; +App::$strings["You have reached your limit of %1$.0f webpages."] = "Je hebt jouw limiet van %1$.0f webpagina's bereikt."; App::$strings["Page owner information could not be retrieved."] = "Informatie over de pagina-eigenaar werd niet ontvangen."; App::$strings["Profile Photos"] = "Profielfoto's"; App::$strings["Album not found."] = "Album niet gevonden."; @@ -673,122 +611,164 @@ App::$strings["__ctx:noun__ Dislikes"] = "vinden dit niet leuk"; App::$strings["Close"] = "Sluiten"; App::$strings["View Album"] = "Album weergeven"; App::$strings["Recent Photos"] = "Recente foto's"; -App::$strings["sent you a private message"] = "stuurde jou een privébericht"; -App::$strings["added your channel"] = "voegde jouw kanaal toe"; -App::$strings["g A l F d"] = "G:i, l d F"; -App::$strings["[today]"] = "[vandaag]"; -App::$strings["posted an event"] = "plaatste een gebeurtenis"; -App::$strings["Unable to find your hub."] = "Niet in staat om je hub te vinden"; -App::$strings["Post successful."] = "Verzenden bericht geslaagd."; -App::$strings["OpenID protocol error. No ID returned."] = "OpenID-protocolfout. Geen ID terugontvangen."; -App::$strings["Login failed."] = "Inloggen mislukt."; -App::$strings["Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."] = "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."; -App::$strings["This setting requires special processing and editing has been blocked."] = "Deze instelling vereist een speciaal proces en bewerken is geblokkeerd."; -App::$strings["Configuration Editor"] = "Configuratiebewerker"; -App::$strings["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."] = "Waarschuwing: het veranderen van sommige instellingen kunnen jouw kanaal onklaar maken. Verlaat deze pagina, tenzij je weet waar je mee bezig bent en voldoende kennis bezit over hoe je deze functies moet gebruiken. "; -App::$strings["Layout updated."] = "Lay-out bijgewerkt."; -App::$strings["Edit System Page Description"] = "Systeempagina's bewerken"; -App::$strings["Layout not found."] = "Lay-out niet gevonden."; -App::$strings["Module Name:"] = "Modulenaam:"; -App::$strings["Layout Help"] = "Lay-out-hulp"; -App::$strings["Poke"] = "Aanstoten"; -App::$strings["Poke somebody"] = "Iemand aanstoten"; -App::$strings["Poke/Prod"] = "Aanstoten/porren"; -App::$strings["Poke, prod or do other things to somebody"] = "Iemand bijvoorbeeld aanstoten of poren"; -App::$strings["Recipient"] = "Ontvanger"; -App::$strings["Choose what you wish to do to recipient"] = "Kies wat je met de ontvanger wil doen"; -App::$strings["Make this post private"] = "Maak dit bericht privé"; -App::$strings["Fetching URL returns error: %1\$s"] = "Ophalen URL gaf een foutmelding terug: %1\$s"; -App::$strings["Profile not found."] = "Profiel niet gevonden."; -App::$strings["Profile deleted."] = "Profiel verwijderd."; -App::$strings["Profile-"] = "Profiel-"; -App::$strings["New profile created."] = "Nieuw profiel aangemaakt."; -App::$strings["Profile unavailable to clone."] = "Profiel niet beschikbaar om te klonen"; -App::$strings["Profile unavailable to export."] = "Geen profiel beschikbaar om te exporteren"; -App::$strings["Profile Name is required."] = "Profielnaam is vereist"; -App::$strings["Marital Status"] = "Huwelijke status"; -App::$strings["Romantic Partner"] = "Romantische partner"; -App::$strings["Likes"] = "Houdt van"; -App::$strings["Dislikes"] = "Houdt niet van"; -App::$strings["Work/Employment"] = "Werk/arbeid"; -App::$strings["Religion"] = "Religie"; -App::$strings["Political Views"] = "Politieke overtuigingen"; -App::$strings["Sexual Preference"] = "Seksuele voorkeur"; -App::$strings["Homepage"] = "Homepage"; -App::$strings["Interests"] = "Interesses"; -App::$strings["Profile updated."] = "Profiel bijgewerkt"; -App::$strings["Hide your connections list from viewers of this profile"] = "Laat de lijst met connecties niet aan bezoekers van dit profiel zien."; -App::$strings["Edit Profile Details"] = "Profiel bewerken"; -App::$strings["View this profile"] = "Profiel weergeven"; -App::$strings["Edit visibility"] = "Zichtbaarheid bewerken"; -App::$strings["Profile Tools"] = "Hulpmiddelen"; -App::$strings["Change cover photo"] = "Omslagfoto wijzigen"; -App::$strings["Change profile photo"] = "Profielfoto veranderen"; -App::$strings["Create a new profile using these settings"] = "Een nieuw profiel aanmaken met dit profiel als basis"; -App::$strings["Clone this profile"] = "Dit profiel klonen"; -App::$strings["Delete this profile"] = "Dit profiel verwijderen"; -App::$strings["Add profile things"] = "Dingen aan je profiel toevoegen"; -App::$strings["Personal"] = "Persoonlijk"; -App::$strings["Relation"] = "Relatie"; -App::$strings["Miscellaneous"] = "Diversen"; -App::$strings["Import profile from file"] = "Profiel vanuit bestand importeren"; -App::$strings["Export profile to file"] = "Profiel naar bestand exporteren"; -App::$strings["Your gender"] = "Jouw geslacht"; -App::$strings["Marital status"] = "Burgerlijke staat"; -App::$strings["Sexual preference"] = "Seksuele voorkeur"; -App::$strings["Profile name"] = "Profielnaam"; -App::$strings["This is your default profile."] = "Dit is jouw standaardprofiel"; -App::$strings["Your full name"] = "Jouw volledige naam"; -App::$strings["Title/Description"] = "Titel/omschrijving"; -App::$strings["Street address"] = "Straat en huisnummer"; -App::$strings["Locality/City"] = "Woonplaats"; -App::$strings["Region/State"] = "Provincie/gewest/deelstaat"; -App::$strings["Postal/Zip code"] = "Postcode"; -App::$strings["Country"] = "Land"; -App::$strings["Who (if applicable)"] = "Wie (wanneer van toepassing)"; -App::$strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Voorbeelden: petra123, Petra Jansen, petra@voorbeeld.nl"; -App::$strings["Since (date)"] = "Sinds (datum)"; -App::$strings["Tell us about yourself"] = "Vertel ons iets over jezelf"; -App::$strings["Hometown"] = "Oorspronkelijk uit"; -App::$strings["Political views"] = "Politieke overtuigingen"; -App::$strings["Religious views"] = "Religieuze overtuigingen"; -App::$strings["Keywords used in directory listings"] = "Trefwoorden voor in de kanalengids"; -App::$strings["Example: fishing photography software"] = "Voorbeeld: muziek, fotografie, software"; -App::$strings["Musical interests"] = "Muzikale interesses"; -App::$strings["Books, literature"] = "Boeken/literatuur"; -App::$strings["Television"] = "Televisie"; -App::$strings["Film/Dance/Culture/Entertainment"] = "Film/dans/cultuur/entertainment"; -App::$strings["Hobbies/Interests"] = "Hobby's/interesses"; -App::$strings["Love/Romance"] = "Liefde/romantiek"; -App::$strings["School/Education"] = "School/opleiding"; -App::$strings["Contact information and social networks"] = "Contactinformatie en sociale netwerken"; -App::$strings["My other channels"] = "Mijn andere kanalen"; -App::$strings["Profile Image"] = "Profielfoto"; -App::$strings["Edit Profiles"] = "Bewerk profielen"; -App::$strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Vernieuw de pagina met shift+R of shift+F5, of leeg je browserbuffer, wanneer de nieuwe foto niet meteen wordt weergegeven."; -App::$strings["Upload Profile Photo"] = "Profielfoto uploaden"; -App::$strings["Invalid profile identifier."] = "Ongeldige profiel-identificator"; -App::$strings["Profile Visibility Editor"] = "Zichtbaarheid profiel "; -App::$strings["Profile"] = "Profiel"; -App::$strings["Click on a contact to add or remove."] = "Klik op een connectie om deze toe te voegen of te verwijderen"; -App::$strings["Visible To"] = "Zichtbaar voor"; -App::$strings["Public Hubs"] = "Openbare hubs"; -App::$strings["The listed hubs allow public registration for the \$Projectname network. All hubs in the network are interlinked so membership on any of them conveys membership in the network as a whole. Some hubs may require subscription or provide tiered service plans. The hub itself may provide additional details."] = "Op de hier weergegeven hubs kan iedereen zich voor het \$Projectname-netwerk aanmelden. Alle hubs in het netwerk zijn met elkaar verbonden, dus maakt het qua lidmaatschap niet uit waar je je aanmeldt. Op sommige hubs heb je eerst goedkeuring nodig en sommige hubs vereisen een financiële tegemoetkoming voor bepaalde uitbreidingen. Mogelijk wordt hierover op de hub zelf meer informatie gegeven."; -App::$strings["Hub URL"] = "Hub-URL"; -App::$strings["Access Type"] = "Toegangs-
 type"; -App::$strings["Registration Policy"] = "Registratie-
 beleid"; -App::$strings["Stats"] = "Stats"; -App::$strings["Software"] = "Software"; -App::$strings["Ratings"] = "Beoordelingen"; -App::$strings["Rate"] = "Beoordeel"; -App::$strings["Website:"] = "Website:"; -App::$strings["Remote Channel [%s] (not yet known on this site)"] = "Kanaal op afstand [%s] (nog niet op deze hub bekend)"; -App::$strings["Rating (this information is public)"] = "Beoordeling (deze informatie is openbaar)"; -App::$strings["Optionally explain your rating (this information is public)"] = "Verklaar jouw beoordeling (niet verplicht, deze informatie is openbaar)"; -App::$strings["No ratings"] = "Geen beoordelingen"; -App::$strings["Rating: "] = "Beoordeling: "; -App::$strings["Website: "] = "Website: "; -App::$strings["Description: "] = "Omschrijving: "; +App::$strings["Remote privacy information not available."] = "Privacy-informatie op afstand niet beschikbaar."; +App::$strings["Visible to:"] = "Zichtbaar voor:"; +App::$strings["Import completed"] = "Importeren voltooid"; +App::$strings["Import Items"] = "Importeer items"; +App::$strings["Use this form to import existing posts and content from an export file."] = "Gebruik dit formulier om bestaande berichten en andere inhoud vanuit een exportbestand te importeren."; +App::$strings["Total invitation limit exceeded."] = "Limiet voor aantal uitnodigingen overschreden."; +App::$strings["%s : Not a valid email address."] = "%s : Geen geldig e-mailadres."; +App::$strings["Please join us on \$Projectname"] = "Uitnodiging voor \$Projectname"; +App::$strings["Invitation limit exceeded. Please contact your site administrator."] = "Limiet voor aantal uitnodigingen overschreden. Neem contact op met je hub-beheerder."; +App::$strings["%s : Message delivery failed."] = "%s: Aflevering bericht mislukt."; +App::$strings["%d message sent."] = array( + 0 => "%d bericht verzonden.", + 1 => "%d berichten verzonden.", +); +App::$strings["You have no more invitations available"] = "Je hebt geen uitnodigingen meer beschikbaar"; +App::$strings["Send invitations"] = "Uitnodigingen verzenden"; +App::$strings["Enter email addresses, one per line:"] = "Voer e-mailadressen in, één per regel:"; +App::$strings["Your message:"] = "Jouw bericht:"; +App::$strings["Please join my community on \$Projectname."] = "Hierbij nodig ik je uit om mij, en andere vrienden en kennissen, op \$Projectname te vergezellen. Lees meer over \$Projectname op http://hubzilla.org"; +App::$strings["You will need to supply this invitation code:"] = "Je moet deze uitnodigingscode opgeven:"; +App::$strings["1. Register at any \$Projectname location (they are all inter-connected)"] = "1. Registreer je op een willekeurige \$Projectname-hub (ze zijn allemaal onderling met elkaar verbonden):"; +App::$strings["2. Enter my \$Projectname network address into the site searchbar."] = "2. Nadat je bent ingelogd en een kanaal hebt aangemaakt kan je mijn \$Projectname-kanaaladres in het zoekveld invullen:"; +App::$strings["or visit"] = "of bezoek"; +App::$strings["3. Click [Connect]"] = "3. Klik op [+ Verbinden]"; +App::$strings["Location not found."] = "Locatie niet gevonden."; +App::$strings["Location lookup failed."] = "Opzoeken locatie mislukt"; +App::$strings["Please select another location to become primary before removing the primary location."] = "Kies eerst een andere primaire locatie alvorens de huidige primaire locatie te verwijderen."; +App::$strings["Syncing locations"] = "Locaties synchronizeren"; +App::$strings["No locations found."] = "Geen locaties gevonden."; +App::$strings["Manage Channel Locations"] = "Kanaallocaties beheren"; +App::$strings["Primary"] = "Primair"; +App::$strings["Drop"] = "Verwijderen"; +App::$strings["Sync Now"] = "Nu synchroniseren"; +App::$strings["Please wait several minutes between consecutive operations."] = "Wacht enkele minuten tussen opeenvolgende handelingen."; +App::$strings["When possible, drop a location by logging into that website/hub and removing your channel."] = "Wij adviseren, wanneer dit (nog) mogelijk is, de locatie te verwijderen door op de hub van de kloon in te loggen en het kanaal daar te verwijderen."; +App::$strings["Use this form to drop the location if the hub is no longer operating."] = "Gebruik dit formulier om de locatie te verwijderen wanneer de hub van de kloon niet meer operationeel is."; +App::$strings["Hub not found."] = "Hub niet gevonden."; +App::$strings["Unable to lookup recipient."] = "Niet in staat om ontvanger op te zoeken."; +App::$strings["Unable to communicate with requested channel."] = "Niet in staat om met het aangevraagde kanaal te communiceren."; +App::$strings["Cannot verify requested channel."] = "Kan opgevraagd kanaal niet verifieren"; +App::$strings["Selected channel has private message restrictions. Send failed."] = "Gekozen kanaal heeft restricties voor privéberichten. Verzenden mislukt."; +App::$strings["Messages"] = "Berichten"; +App::$strings["Message recalled."] = "Bericht ingetrokken."; +App::$strings["Conversation removed."] = "Conversatie verwijderd"; +App::$strings["Expires YYYY-MM-DD HH:MM"] = "Verloopt op DD-MM-YYYY om HH:MM"; +App::$strings["Requested channel is not in this network"] = "Opgevraagd kanaal is niet in dit netwerk beschikbaar"; +App::$strings["Send Private Message"] = "Privébericht versturen"; +App::$strings["To:"] = "Aan:"; +App::$strings["Subject:"] = "Onderwerp:"; +App::$strings["Attach file"] = "Bestand toevoegen"; +App::$strings["Send"] = "Verzenden"; +App::$strings["Set expiration date"] = "Verloopdatum instellen"; +App::$strings["Delete message"] = "Bericht verwijderen"; +App::$strings["Delivery report"] = "Afleveringsrapport"; +App::$strings["Recall message"] = "Bericht intrekken"; +App::$strings["Message has been recalled."] = "Bericht is ingetrokken."; +App::$strings["Delete Conversation"] = "Verwijder conversatie"; +App::$strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Geen veilige communicatie beschikbaar. Mogelijk kan je reageren op de kanaalpagina van de afzender."; +App::$strings["Send Reply"] = "Antwoord versturen"; +App::$strings["Your message for %s (%s):"] = "Jouw privébericht aan %s (%s):"; +App::$strings["You have created %1$.0f of %2$.0f allowed channels."] = "Je hebt %1$.0f van totaal %2$.0f toegestane kanalen aangemaakt."; +App::$strings["Create a new channel"] = "Nieuw kanaal aanmaken"; +App::$strings["Channel Manager"] = "Kanaalbeheer"; +App::$strings["Current Channel"] = "Huidig kanaal"; +App::$strings["Switch to one of your channels by selecting it."] = "Activeer een van jouw andere kanalen door er op te klikken."; +App::$strings["Default Channel"] = "Standaardkanaal"; +App::$strings["Make Default"] = "Als standaard instellen"; +App::$strings["%d new messages"] = "%d nieuwe berichten"; +App::$strings["%d new introductions"] = "%d nieuwe connectieverzoeken"; +App::$strings["Delegated Channel"] = "Uitbesteed kanaal"; +App::$strings["Unable to update menu."] = "Niet in staat om menu aan te passen"; +App::$strings["Unable to create menu."] = "Niet in staat om menu aan te maken."; +App::$strings["Menu Name"] = "Menunaam"; +App::$strings["Unique name (not visible on webpage) - required"] = "Unieke naam vereist (niet zichtbaar op webpagina)"; +App::$strings["Menu Title"] = "Menutitel"; +App::$strings["Visible on webpage - leave empty for no title"] = "Zichtbaar op webpagina (leeg laten voor geen titel)"; +App::$strings["Allow Bookmarks"] = "Bladwijzers toestaan"; +App::$strings["Menu may be used to store saved bookmarks"] = "Menu kan gebruikt worden om bladwijzers in op te slaan"; +App::$strings["Submit and proceed"] = "Opslaan en doorgaan"; +App::$strings["Menus"] = "Menu's"; +App::$strings["Bookmarks allowed"] = "Bladwijzers toegestaan"; +App::$strings["Delete this menu"] = "Menu verwijderen"; +App::$strings["Edit menu contents"] = "Bewerk de inhoud van het menu"; +App::$strings["Edit this menu"] = "Dit menu bewerken"; +App::$strings["Menu could not be deleted."] = "Menu kon niet verwijderd worden."; +App::$strings["Menu not found."] = "Menu niet gevonden."; +App::$strings["Edit Menu"] = "Menu bewerken"; +App::$strings["Add or remove entries to this menu"] = "Items aan dit menu toevoegen of verwijder"; +App::$strings["Menu name"] = "Naam van menu"; +App::$strings["Must be unique, only seen by you"] = "Moet uniek zijn en is alleen zichtbaar voor jou."; +App::$strings["Menu title"] = "Titel van menu"; +App::$strings["Menu title as seen by others"] = "Titel van menu zoals anderen dat zien."; +App::$strings["Allow bookmarks"] = "Bladwijzers toestaan"; +App::$strings["Not found."] = "Niet gevonden."; +App::$strings["No valid account found."] = "Geen geldige account gevonden."; +App::$strings["Password reset request issued. Check your email."] = "Het verzoek om je wachtwoord opnieuw in te stellen is behandeld. Controleer je e-mail."; +App::$strings["Site Member (%s)"] = "Lid van hub (%s)"; +App::$strings["Password reset requested at %s"] = "Verzoek tot het opnieuw instellen van een wachtwoord op %s is ingediend"; +App::$strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Het verzoek kon niet worden geverifieerd. (Mogelijk heb je al eerder een verzoek ingediend.) Opnieuw instellen van wachtwoord is mislukt."; +App::$strings["Password Reset"] = "Wachtwoord vergeten?"; +App::$strings["Your password has been reset as requested."] = "Jouw wachtwoord is opnieuw ingesteld zoals je had verzocht."; +App::$strings["Your new password is"] = "Jouw nieuwe wachtwoord is"; +App::$strings["Save or copy your new password - and then"] = "Kopieer of sla je nieuwe wachtwoord op - en"; +App::$strings["click here to login"] = "klik dan hier om in te loggen"; +App::$strings["Your password may be changed from the Settings page after successful login."] = "Jouw wachtwoord kan worden veranderd onder instellingen, nadat je succesvol bent ingelogd."; +App::$strings["Your password has changed at %s"] = "Jouw wachtwoord op %s is veranderd"; +App::$strings["Forgot your Password?"] = "Wachtwoord vergeten?"; +App::$strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Voer je e-mailadres in en verstuur deze om je wachtwoord opnieuw in te stellen. Controleer hierna hier je e-mail voor verdere instructies."; +App::$strings["Email Address"] = "E-mailadres"; +App::$strings["Reset"] = "Opnieuw instellen"; +App::$strings["__ctx:mood__ %1\$s is %2\$s"] = "%1\$s is %2\$s"; +App::$strings["Mood"] = "Stemming"; +App::$strings["Set your current mood and tell your friends"] = "Noteer je huidige stemming en toon het aan je connecties"; +App::$strings["No such group"] = "Collectie niet gevonden"; +App::$strings["No such channel"] = "Niet zo'n kanaal"; +App::$strings["forum"] = "forum"; +App::$strings["Search Results For:"] = "Zoekresultaten voor:"; +App::$strings["Privacy group is empty"] = "Privacygroep is leeg"; +App::$strings["Privacy group: "] = "Privacygroep: "; +App::$strings["Invalid connection."] = "Ongeldige connectie."; +App::$strings["No more system notifications."] = "Geen systeemnotificaties meer."; +App::$strings["System Notifications"] = "Systeemnotificaties"; +App::$strings["Profile Match"] = "Profielovereenkomst"; +App::$strings["No keywords to match. Please add keywords to your default profile."] = "Je hebt geen trefwoorden waarmee overeenkomsten gevonden kunnen worden. Voeg enkele trefwoorden aan je standaardprofiel toe."; +App::$strings["is interested in:"] = "is geïnteresseerd in:"; +App::$strings["No matches"] = "Geen overeenkomsten"; +App::$strings["Posts and comments"] = "Berichten en reacties"; +App::$strings["Only posts"] = "Alleen berichten"; +App::$strings["Insufficient permissions. Request redirected to profile page."] = "Onvoldoende permissies. Doorgestuurd naar profielpagina."; +App::$strings["Unable to create element."] = "Niet in staat om onderdeel aan te maken."; +App::$strings["Unable to update menu element."] = "Menu-onderdeel kan niet worden geüpdatet."; +App::$strings["Unable to add menu element."] = "Menu-onderdeel kan niet worden toegevoegd."; +App::$strings["Menu Item Permissions"] = "Permissies menu-item"; +App::$strings["(click to open/close)"] = "(klik om te openen/sluiten)"; +App::$strings["Link Name"] = "Linknaam"; +App::$strings["Link or Submenu Target"] = "Linkdoel of submenu-doel"; +App::$strings["Enter URL of the link or select a menu name to create a submenu"] = "Geef de URL van de link of kies een menunaam om een submenu aan te maken"; +App::$strings["Use magic-auth if available"] = "Gebruik magic-auth wanneer beschikbaar"; +App::$strings["Open link in new window"] = "Open link in nieuw venster"; +App::$strings["Order in list"] = "Volgorde in lijst"; +App::$strings["Higher numbers will sink to bottom of listing"] = "Hogere nummers komen onderaan de lijst terecht"; +App::$strings["Submit and finish"] = "Opslaan en afsluiten"; +App::$strings["Submit and continue"] = "Opslaan en doorgaan"; +App::$strings["Menu:"] = "Menu:"; +App::$strings["Link Target"] = "Linkdoel"; +App::$strings["Edit menu"] = "Menu bewerken"; +App::$strings["Edit element"] = "Onderdeel bewerken"; +App::$strings["Drop element"] = "Onderdeel verwijderen"; +App::$strings["New element"] = "Nieuw element"; +App::$strings["Edit this menu container"] = "Deze menu-container bewerken"; +App::$strings["Add menu element"] = "Menu-element toevoegen"; +App::$strings["Delete this menu item"] = "Dit menu-item verwijderen"; +App::$strings["Edit this menu item"] = "Dit menu-item bewerken"; +App::$strings["Menu item not found."] = "Menu-item niet gevonden."; +App::$strings["Menu item deleted."] = "Menu-item verwijderd."; +App::$strings["Menu item could not be deleted."] = "Menu-item kon niet worden verwijderd."; +App::$strings["Edit Menu Element"] = "Menu-element bewerken"; +App::$strings["Link text"] = "Linktekst"; App::$strings["Theme settings updated."] = "Thema-instellingen bijgewerkt."; App::$strings["# Accounts"] = "# accounts"; App::$strings["# blocked accounts"] = "# geblokkeerde accounts"; @@ -1031,19 +1011,91 @@ App::$strings["(In addition to basic fields)"] = "(als toevoeging op de standaar App::$strings["All available fields"] = "Alle beschikbare velden"; App::$strings["Custom Fields"] = "Extra (handmatig toegevoegde) velden"; App::$strings["Create Custom Field"] = "Extra velden aanmaken"; -App::$strings["App installed."] = "App geïnstalleerd"; -App::$strings["Malformed app."] = "Misvormde app."; -App::$strings["Embed code"] = "Insluitcode"; -App::$strings["Edit App"] = "App bewerken"; -App::$strings["Create App"] = "App maken"; -App::$strings["Name of app"] = "Naam van app"; -App::$strings["Location (URL) of app"] = "Locatie (URL) van app"; -App::$strings["Photo icon URL"] = "URL van pictogram"; -App::$strings["80 x 80 pixels - optional"] = "80 x 80 pixels (optioneel)"; -App::$strings["Categories (optional, comma separated list)"] = "Categorieën (optioneel, door komma's gescheiden lijst)"; -App::$strings["Version ID"] = "Versie-ID"; -App::$strings["Price of app"] = "Prijs van de app"; -App::$strings["Location (URL) to purchase app"] = "Locatie (URL) om de app aan te schaffen"; +App::$strings["Name or caption"] = "Naam"; +App::$strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\""] = "Voorbeelden: \"Jan Pietersen\", \"Willems weblog\", \"Computerforum\""; +App::$strings["Choose a short nickname"] = "Korte bijnaam"; +App::$strings["Your nickname will be used to create an easy to remember channel address e.g. nickname%s"] = "Deze bijnaam wordt gebruikt om een makkelijk te onthouden kanaaladres van jouw kanaal aan te maken, die je dan met anderen kunt delen. Bijvoorbeeld: bijnaam%s"; +App::$strings["Channel role and privacy"] = "Kanaaltype en privacy"; +App::$strings["Select a channel role with your privacy requirements."] = "Kies een kanaaltype met het door jou gewenste privacyniveau."; +App::$strings["Read more about roles"] = "Lees meer over kanaaltypes"; +App::$strings["Create Channel"] = "Kanaal aanmaken"; +App::$strings["A channel is your identity on this network. It can represent a person, a blog, or a forum to name a few. Channels can make connections with other channels to share information with highly detailed permissions."] = "Een kanaal is jouw identiteit in dit netwerk. Het kan bijvoorbeeld een persoon, een blog of een forum vertegenwoordigen. Door met elkaar te verbinden kunnen kanalen, met behulp van uitgebreide permissies, informatie uitwisselen."; +App::$strings["or import an existing channel from another location."] = "Of importeer een bestaand kanaal vanaf een andere locatie"; +App::$strings["sent you a private message"] = "stuurde jou een privébericht"; +App::$strings["added your channel"] = "voegde jouw kanaal toe"; +App::$strings["g A l F d"] = "G:i, l d F"; +App::$strings["[today]"] = "[vandaag]"; +App::$strings["posted an event"] = "plaatste een gebeurtenis"; +App::$strings["Invalid request identifier."] = "Ongeldige verzoek identificator (request identifier)"; +App::$strings["Discard"] = "Annuleren"; +App::$strings["Mark all system notifications seen"] = "Markeer alle systeemnotificaties als bekeken"; +App::$strings["Poke"] = "Aanstoten"; +App::$strings["Poke somebody"] = "Iemand aanstoten"; +App::$strings["Poke/Prod"] = "Aanstoten/porren"; +App::$strings["Poke, prod or do other things to somebody"] = "Iemand bijvoorbeeld aanstoten of poren"; +App::$strings["Recipient"] = "Ontvanger"; +App::$strings["Choose what you wish to do to recipient"] = "Kies wat je met de ontvanger wil doen"; +App::$strings["Make this post private"] = "Maak dit bericht privé"; +App::$strings["Unable to find your hub."] = "Niet in staat om je hub te vinden"; +App::$strings["Post successful."] = "Verzenden bericht geslaagd."; +App::$strings["OpenID protocol error. No ID returned."] = "OpenID-protocolfout. Geen ID terugontvangen."; +App::$strings["Login failed."] = "Inloggen mislukt."; +App::$strings["Invalid profile identifier."] = "Ongeldige profiel-identificator"; +App::$strings["Profile Visibility Editor"] = "Zichtbaarheid profiel "; +App::$strings["Profile"] = "Profiel"; +App::$strings["Click on a contact to add or remove."] = "Klik op een connectie om deze toe te voegen of te verwijderen"; +App::$strings["Visible To"] = "Zichtbaar voor"; +App::$strings["This setting requires special processing and editing has been blocked."] = "Deze instelling vereist een speciaal proces en bewerken is geblokkeerd."; +App::$strings["Configuration Editor"] = "Configuratiebewerker"; +App::$strings["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."] = "Waarschuwing: het veranderen van sommige instellingen kunnen jouw kanaal onklaar maken. Verlaat deze pagina, tenzij je weet waar je mee bezig bent en voldoende kennis bezit over hoe je deze functies moet gebruiken. "; +App::$strings["Fetching URL returns error: %1\$s"] = "Ophalen URL gaf een foutmelding terug: %1\$s"; +App::$strings["Version %s"] = "Versie %s"; +App::$strings["Installed plugins/addons/apps:"] = "Ingeschakelde plugins en apps:"; +App::$strings["No installed plugins/addons/apps"] = "Geen ingeschakelde plugins en apps"; +App::$strings["This is a hub of \$Projectname - a global cooperative network of decentralized privacy enhanced websites."] = "Dit is een \$Projectname-hub - \$Projectname is een wereldwijd coöperatief netwerk van gedecentraliseerde websites (hubs) met verbeterde privacy."; +App::$strings["Tag: "] = "Tag: "; +App::$strings["Last background fetch: "] = "Meest recente achtergrond-fetch:"; +App::$strings["Current load average: "] = "Gemiddelde systeembelasting is nu:"; +App::$strings["Running at web location"] = "Draaiend op weblocatie"; +App::$strings["Please visit hubzilla.org to learn more about \$Projectname."] = "Bezoek hubzilla.org "; +App::$strings["Bug reports and issues: please visit"] = "Bugrapporten en andere kwesties: bezoek"; +App::$strings["\$projectname issues"] = "\$projectname-issues"; +App::$strings["Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com"] = "Voorstellen, lofbetuigingen, enz. - e-mail \"redmatrix\" at librelist - dot com"; +App::$strings["Site Administrators"] = "Hubbeheerders: "; +App::$strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "We hebben een probleem ontdekt tijdens het inloggen met de OpenID die je hebt verstrekt. Controleer de ID op typefouten."; +App::$strings["The error message was:"] = "Het foutbericht was:"; +App::$strings["Authentication failed."] = "Authenticatie mislukt."; +App::$strings["Remote Authentication"] = "Authenticatie op afstand"; +App::$strings["Enter your channel address (e.g. channel@example.com)"] = "Vul jouw kanaaladres in (bijv. channel@example.com)"; +App::$strings["Authenticate"] = "Authenticeren"; +App::$strings["Public Hubs"] = "Openbare hubs"; +App::$strings["The listed hubs allow public registration for the \$Projectname network. All hubs in the network are interlinked so membership on any of them conveys membership in the network as a whole. Some hubs may require subscription or provide tiered service plans. The hub itself may provide additional details."] = "Op de hier weergegeven hubs kan iedereen zich voor het \$Projectname-netwerk aanmelden. Alle hubs in het netwerk zijn met elkaar verbonden, dus maakt het qua lidmaatschap niet uit waar je je aanmeldt. Op sommige hubs heb je eerst goedkeuring nodig en sommige hubs vereisen een financiële tegemoetkoming voor bepaalde uitbreidingen. Mogelijk wordt hierover op de hub zelf meer informatie gegeven."; +App::$strings["Hub URL"] = "Hub-URL"; +App::$strings["Access Type"] = "Toegangs-
 type"; +App::$strings["Registration Policy"] = "Registratie-
 beleid"; +App::$strings["Stats"] = "Stats"; +App::$strings["Software"] = "Software"; +App::$strings["Ratings"] = "Beoordelingen"; +App::$strings["Rate"] = "Beoordeel"; +App::$strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Vernieuw de pagina met shift+R of shift+F5, of leeg je browserbuffer, wanneer de nieuwe foto niet meteen wordt weergegeven."; +App::$strings["Upload Profile Photo"] = "Profielfoto uploaden"; +App::$strings["Block Name"] = "Bloknaam"; +App::$strings["Blocks"] = "Blokken"; +App::$strings["Block Title"] = "Bloktitel"; +App::$strings["Website:"] = "Website:"; +App::$strings["Remote Channel [%s] (not yet known on this site)"] = "Kanaal op afstand [%s] (nog niet op deze hub bekend)"; +App::$strings["Rating (this information is public)"] = "Beoordeling (deze informatie is openbaar)"; +App::$strings["Optionally explain your rating (this information is public)"] = "Verklaar jouw beoordeling (niet verplicht, deze informatie is openbaar)"; +App::$strings["No ratings"] = "Geen beoordelingen"; +App::$strings["Rating: "] = "Beoordeling: "; +App::$strings["Website: "] = "Website: "; +App::$strings["Description: "] = "Omschrijving: "; +App::$strings["Apps"] = "Apps"; +App::$strings["Title (optional)"] = "Titel (optioneel)"; +App::$strings["Edit Block"] = "Blok bewerken"; +App::$strings["No channel."] = "Geen kanaal."; +App::$strings["Common connections"] = "Veel voorkomende connecties"; +App::$strings["No connections in common."] = "Geen gemeenschappelijke connecties."; App::$strings["Select a bookmark folder"] = "Kies een bladwijzermap"; App::$strings["Save Bookmark"] = "Bladwijzer opslaan"; App::$strings["URL of bookmark"] = "URL van bladwijzer"; @@ -1069,7 +1121,7 @@ App::$strings["no"] = "Nee"; App::$strings["yes"] = "Ja"; App::$strings["Membership on this site is by invitation only."] = "Registreren op deze \$Projectname-hub kan alleen op uitnodiging."; App::$strings["Register"] = "Registreren"; -App::$strings["Proceed to create your first channel"] = "Volgende stap: aanmaken van jouw eerste kanaal"; +App::$strings["This site may require email verification after submitting this form. If you are returned to a login page, please check your email for instructions."] = "Mogelijk moet op deze hub eerst jouw e-mail geverifieerd worden. Wanneer je na het indienen van dit formulier op de inlogpagina terecht komt, dan dien je jouw e-mail te controleren voor instructies. Controleer eventueel ook jouw spamfolder."; App::$strings["Please login."] = "Inloggen."; App::$strings["Account removals are not allowed within 48 hours of changing the account password."] = "Het verwijderen van een account is niet toegestaan binnen 48 uur nadat het wachtwoord is veranderd."; App::$strings["Remove This Account"] = "Verwijder dit account"; @@ -1086,17 +1138,23 @@ App::$strings["This channel will be completely removed from the network. "] = "D App::$strings["Remove this channel and all its clones from the network"] = "Dit kanaal en alle klonen hiervan uit het \$Projectname-netwerk verwijderen"; App::$strings["By default only the instance of the channel located on this hub will be removed from the network"] = "Standaard wordt alleen het kanaal dat zich op deze hub bevindt uit het \$Projectname-netwerk verwijderd"; App::$strings["Remove Channel"] = "Kanaal verwijderen"; -App::$strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "We hebben een probleem ontdekt tijdens het inloggen met de OpenID die je hebt verstrekt. Controleer de ID op typefouten."; -App::$strings["The error message was:"] = "Het foutbericht was:"; -App::$strings["Authentication failed."] = "Authenticatie mislukt."; -App::$strings["Remote Authentication"] = "Authenticatie op afstand"; -App::$strings["Enter your channel address (e.g. channel@example.com)"] = "Vul jouw kanaaladres in (bijv. channel@example.com)"; -App::$strings["Authenticate"] = "Authenticeren"; +App::$strings["Export Channel"] = "Kanaal exporteren"; +App::$strings["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."] = "Exporteer de basisinformatie van jouw kanaal naar een bestand. Dit fungeert als een back-up van jouw connecties, permissies, profiel en basisgegevens, die gebruikt kan worden om op een nieuwe hub jouw gegevens te importeren. Deze back-up bevat echter niet de inhoud van jouw kanaal."; +App::$strings["Export Content"] = "Inhoud exporteren"; +App::$strings["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."] = "Exporteer informatie en recente inhoud van jouw kanaal naar een JSON-back-up, wat kan worden gebruikt om jouw kanaal te herstellen of te importeren op een andere hub. Dit slaat al jouw connecties, permissies, profielgegevens en enkele maanden aan inhoud van jouw kanaal op. Dit bestand kan ZEER groot worden. Wees geduldig - het kan enkele minuten duren voordat de download begint."; +App::$strings["Export your posts from a given year."] = "Exporteer jouw berichten uit een bepaald jaar."; +App::$strings["You may also export your posts and conversations for a particular year or month. Adjust the date in your browser location bar to select other dates. If the export fails (possibly due to memory exhaustion on your server hub), please try again selecting a more limited date range."] = "Je kan ook berichten en conversaties uit een bepaald jaar of van een bepaalde maand exporteren. Verander de datum in de adresbalk van jouw webbrowser om andere jaren en maanden te selecteren. Wanneer het exporteren mislukt (waarschijnlijk door een gebrek aan beschikbaar servergeheugen), probeer het dan nogmaals met een beperkter tijdvak."; +App::$strings["To select all posts for a given year, such as this year, visit %2\$s"] = "Bezoek %2\$s om alle berichten van bijvoorbeeld dit jaar te selecteren. "; +App::$strings["To select all posts for a given month, such as January of this year, visit %2\$s"] = "Bezoek %2\$s om alle berichten van bijvoorbeeld januari dit jaar te selecteren."; +App::$strings["These content files may be imported or restored by visiting %2\$s on any site containing your channel. For best results please import or restore these in date order (oldest first)."] = "Deze back-up-bestanden kunnen geïmporteerd of hersteld worden door op jouw hub en met jouw kanaal %2\$s te bezoeken. Voor het beste resultaat kan je de bestanden in chronologische volgorde importeren of herstellen."; App::$strings["Items tagged with: %s"] = "Items getagd met %s"; App::$strings["Search results for: %s"] = "Zoekresultaten voor %s"; App::$strings["No service class restrictions found."] = "Geen abonnementsbeperkingen gevonden."; App::$strings["Name is required"] = "Naam is vereist"; App::$strings["Key and Secret are required"] = "Key en secret zijn vereist"; +App::$strings["This channel is limited to %d tokens"] = "Dit kanaal heeft een limiet van %d tokens"; +App::$strings["Name and Password are required."] = "Naam en wachtwoord zijn vereist"; +App::$strings["Token saved."] = "Token opgeslagen."; App::$strings["Not valid email."] = "Geen geldig e-mailadres."; App::$strings["Protected email address. Cannot change to that email."] = "Beschermd e-mailadres. Kan dat e-mailadres niet gebruiken."; App::$strings["System failure storing new email. Please try again."] = "Systeemfout opslaan van nieuwe e-mail. Probeer het nog een keer."; @@ -1129,6 +1187,12 @@ App::$strings["Confirm New Password"] = "Nieuw wachtwoord bevestigen"; App::$strings["Leave password fields blank unless changing"] = "Laat de wachtwoordvelden leeg, behalve wanneer je deze wil veranderen"; App::$strings["Email Address:"] = "E-mailadres:"; App::$strings["Remove this account including all its channels"] = "Dit account en al zijn kanalen verwijderen"; +App::$strings["Use this form to create temporary access identifiers to share things with non-members. These identities may be used in Access Control Lists and visitors may login using these credentials to access the private content."] = "Gebruik dit formulier om tijdelijke identiteiten aan te maken, waarmee je bepaalde informatie met niet-leden kan delen. Deze identiteiten kunnen onder Permissies (handmatige selectie) worden gebruikt. Gasten kunnen inloggen met onderstaande gegevens om zo toegang te krijgen tot de privéinhoud."; +App::$strings["You may also provide dropbox style access links to friends and associates by adding the Login Password to any specific site URL as shown. Examples:"] = "Je kan ook dropbox-achtige links aan mensen geven door bovenstaand wachtwoord op onderstaande manier aan een hub-URL toe te voegen. Voorbeelden:"; +App::$strings["Guest Access Tokens"] = "Gasttoegang"; +App::$strings["Login Name"] = "Inlognaam"; +App::$strings["Login Password"] = "Wachtwoord:"; +App::$strings["Expires (yyyy-mm-dd)"] = "Geldig t/m (yyyy-mm-dd)"; App::$strings["Additional Features"] = "Extra functies"; App::$strings["Connector Settings"] = "Instellingen externe koppelingen"; App::$strings["No special theme for mobile devices"] = "Geen speciaal thema voor mobiele apparaten"; @@ -1291,7 +1355,6 @@ App::$strings["GD graphics PHP module"] = "GD graphics PHP module"; App::$strings["OpenSSL PHP module"] = "OpenSSL PHP module"; App::$strings["mysqli or postgres PHP module"] = "mysqli or postgres PHP module"; App::$strings["mb_string PHP module"] = "mb_string PHP module"; -App::$strings["mcrypt PHP module"] = "mcrypt PHP module"; App::$strings["xml PHP module"] = "xml PHP module"; App::$strings["Apache mod_rewrite module"] = "Apache mod_rewrite module"; App::$strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Error: Apache webserver mod-rewrite module is required but not installed."; @@ -1302,7 +1365,6 @@ App::$strings["Error: GD graphics PHP module with JPEG support required but not App::$strings["Error: openssl PHP module required but not installed."] = "Error: openssl PHP module required but not installed."; App::$strings["Error: mysqli or postgres PHP module required but neither are installed."] = "Error: mysqli or postgres PHP module required but neither are installed."; App::$strings["Error: mb_string PHP module required but not installed."] = "Error: mb_string PHP module required but not installed."; -App::$strings["Error: mcrypt PHP module required but not installed."] = "Error: mcrypt PHP module required but not installed."; App::$strings["Error: xml PHP module required for DAV but not installed."] = "Error: xml PHP module required for DAV but not installed."; App::$strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."; App::$strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."; @@ -1314,7 +1376,7 @@ App::$strings["In order to store these compiled templates, the web server needs App::$strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."; App::$strings["Note: as a security measure, you should give the web server write access to %s only--not the template files (.tpl) that it contains."] = "Note: as a security measure, you should give the web server write access to %s only--not the template files (.tpl) that it contains."; App::$strings["%s is writable"] = "%s is writable"; -App::$strings["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"] = "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"; +App::$strings["This software 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"] = "This software 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"; App::$strings["store is writable"] = "store is writable"; App::$strings["SSL certificate cannot be validated. Fix certificate or disable https access to this site."] = "SSL certificate cannot be validated. Fix certificate or disable https access to this hub."; App::$strings["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!"] = "If you have https access to your hub or allow connections to TCP port 443 (the https: port), you MUST use a browser-valid certificate. You MUST NOT use self-signed certificates!"; @@ -1322,6 +1384,7 @@ App::$strings["This restriction is incorporated because public posts from you ma App::$strings["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."] = "If your certificate is not recognized, members of other hubs (who may themselves have valid certificates) will get a warning message on their own hub complaining about security issues."; App::$strings["This can cause usability issues elsewhere (not just on your own site) so we must insist on this requirement."] = "This can cause usability issues elsewhere (not just on your own hub) so we must insist on this requirement."; App::$strings["Providers are available that issue free certificates which are browser-valid."] = "Providers are available that issue free certificates which are browser-valid."; +App::$strings["If you are confident that the certificate is valid and signed by a trusted authority, check to see if you have failed to install an intermediate cert. These are not normally required by browsers, but are required for server-to-server communications."] = "If you are confident that the certificate is valid and signed by a trusted authority, check to see if you have failed to install an intermediate cert. These are not normally required by browsers, but are required for server-to-server communications."; App::$strings["SSL certificate validation"] = "SSL certificate validation"; App::$strings["Url rewrite in .htaccess is not working. Check your server configuration.Test: "] = "Url rewrite in .htaccess is not working. Check your server configuration.Test: "; App::$strings["Url rewrite is working"] = "Url rewrite is working"; @@ -1333,19 +1396,20 @@ App::$strings["Files: shared with me"] = "Bestanden: met mij gedeeld"; App::$strings["NEW"] = "NIEUW"; App::$strings["Remove all files"] = "Verwijder alle bestanden"; App::$strings["Remove this file"] = "Verwijder dit bestand"; -App::$strings["Version %s"] = "Versie %s"; -App::$strings["Installed plugins/addons/apps:"] = "Ingeschakelde plugins en apps:"; -App::$strings["No installed plugins/addons/apps"] = "Geen ingeschakelde plugins en apps"; -App::$strings["This is a hub of \$Projectname - a global cooperative network of decentralized privacy enhanced websites."] = "Dit is een \$Projectname-hub - \$Projectname is een wereldwijd coöperatief netwerk van gedecentraliseerde websites (hubs) met verbeterde privacy."; -App::$strings["Tag: "] = "Tag: "; -App::$strings["Last background fetch: "] = "Meest recente achtergrond-fetch:"; -App::$strings["Current load average: "] = "Gemiddelde systeembelasting is nu:"; -App::$strings["Running at web location"] = "Draaiend op weblocatie"; -App::$strings["Please visit hubzilla.org to learn more about \$Projectname."] = "Bezoek hubzilla.org "; -App::$strings["Bug reports and issues: please visit"] = "Bugrapporten en andere kwesties: bezoek"; -App::$strings["\$projectname issues"] = "\$projectname-issues"; -App::$strings["Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com"] = "Voorstellen, lofbetuigingen, enz. - e-mail \"redmatrix\" at librelist - dot com"; -App::$strings["Site Administrators"] = "Hubbeheerders: "; +App::$strings["Thing updated"] = "Ding bijgewerkt"; +App::$strings["Object store: failed"] = "Opslaan van ding mislukt"; +App::$strings["Thing added"] = "Ding toegevoegd"; +App::$strings["OBJ: %1\$s %2\$s %3\$s"] = "OBJ: %1\$s %2\$s %3\$s"; +App::$strings["Show Thing"] = "Ding weergeven"; +App::$strings["item not found."] = "Item niet gevonden"; +App::$strings["Edit Thing"] = "Ding bewerken"; +App::$strings["Select a profile"] = "Kies een profiel"; +App::$strings["Post an activity"] = "Plaats een bericht"; +App::$strings["Only sends to viewers of the applicable profile"] = "Toont dit alleen aan diegene die het gekozen profiel mogen zien."; +App::$strings["Name of thing e.g. something"] = "Naam van ding"; +App::$strings["URL of thing (optional)"] = "URL van ding (optioneel)"; +App::$strings["URL for photo of thing (optional)"] = "URL voor foto van ding (optioneel)"; +App::$strings["Add Thing to your Profile"] = "Ding aan je profiel toevoegen"; App::$strings["Failed to create source. No channel selected."] = "Aanmaken bron mislukt. Geen kanaal geselecteerd."; App::$strings["Source created."] = "Bron aangemaakt."; App::$strings["Source updated."] = "Bron aangemaakt."; @@ -1373,60 +1437,38 @@ App::$strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s heeft het %3\$s App::$strings["Tag removed"] = "Tag verwijderd"; App::$strings["Remove Item Tag"] = "Verwijder item-tag"; App::$strings["Select a tag to remove: "] = "Kies een tag om te verwijderen"; -App::$strings["Thing updated"] = "Ding bijgewerkt"; -App::$strings["Object store: failed"] = "Opslaan van ding mislukt"; -App::$strings["Thing added"] = "Ding toegevoegd"; -App::$strings["OBJ: %1\$s %2\$s %3\$s"] = "OBJ: %1\$s %2\$s %3\$s"; -App::$strings["Show Thing"] = "Ding weergeven"; -App::$strings["item not found."] = "Item niet gevonden"; -App::$strings["Edit Thing"] = "Ding bewerken"; -App::$strings["Select a profile"] = "Kies een profiel"; -App::$strings["Post an activity"] = "Plaats een bericht"; -App::$strings["Only sends to viewers of the applicable profile"] = "Toont dit alleen aan diegene die het gekozen profiel mogen zien."; -App::$strings["Name of thing e.g. something"] = "Naam van ding"; -App::$strings["URL of thing (optional)"] = "URL van ding (optioneel)"; -App::$strings["URL for photo of thing (optional)"] = "URL voor foto van ding (optioneel)"; -App::$strings["Add Thing to your Profile"] = "Ding aan je profiel toevoegen"; -App::$strings["Export Channel"] = "Kanaal exporteren"; -App::$strings["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."] = "Exporteer de basisinformatie van jouw kanaal naar een bestand. Dit fungeert als een back-up van jouw connecties, permissies, profiel en basisgegevens, die gebruikt kan worden om op een nieuwe hub jouw gegevens te importeren. Deze back-up bevat echter niet de inhoud van jouw kanaal."; -App::$strings["Export Content"] = "Inhoud exporteren"; -App::$strings["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."] = "Exporteer informatie en recente inhoud van jouw kanaal naar een JSON-back-up, wat kan worden gebruikt om jouw kanaal te herstellen of te importeren op een andere hub. Dit slaat al jouw connecties, permissies, profielgegevens en enkele maanden aan inhoud van jouw kanaal op. Dit bestand kan ZEER groot worden. Wees geduldig - het kan enkele minuten duren voordat de download begint."; -App::$strings["Export your posts from a given year."] = "Exporteer jouw berichten uit een bepaald jaar."; -App::$strings["You may also export your posts and conversations for a particular year or month. Adjust the date in your browser location bar to select other dates. If the export fails (possibly due to memory exhaustion on your server hub), please try again selecting a more limited date range."] = "Je kan ook berichten en conversaties uit een bepaald jaar of van een bepaalde maand exporteren. Verander de datum in de adresbalk van jouw webbrowser om andere jaren en maanden te selecteren. Wanneer het exporteren mislukt (waarschijnlijk door een gebrek aan beschikbaar servergeheugen), probeer het dan nogmaals met een beperkter tijdvak."; -App::$strings["To select all posts for a given year, such as this year, visit %2\$s"] = "Bezoek %2\$s om alle berichten van bijvoorbeeld dit jaar te selecteren. "; -App::$strings["To select all posts for a given month, such as January of this year, visit %2\$s"] = "Bezoek %2\$s om alle berichten van bijvoorbeeld januari dit jaar te selecteren."; -App::$strings["These content files may be imported or restored by visiting %2\$s on any site containing your channel. For best results please import or restore these in date order (oldest first)."] = "Deze back-up-bestanden kunnen geïmporteerd of hersteld worden door op jouw hub en met jouw kanaal %2\$s te bezoeken. Voor het beste resultaat kan je de bestanden in chronologische volgorde importeren of herstellen."; -App::$strings["No connections."] = "Geen connecties."; -App::$strings["Visit %s's profile [%s]"] = "Bezoek het profiel van %s [%s]"; -App::$strings["View Connections"] = "Connecties weergeven"; -App::$strings["Source of Item"] = "Bron van item"; App::$strings["Webpages"] = "Webpagina's"; App::$strings["Actions"] = "Acties"; App::$strings["Page Link"] = "Paginalink"; App::$strings["Page Title"] = "Paginatitel"; +App::$strings["Not found"] = "Niet gevonden"; +App::$strings["Wiki"] = "Wiki"; +App::$strings["Sandbox"] = "Zandbak"; +App::$strings["\"# Wiki Sandbox\\n\\nContent you **edit** and **preview** here *will not be saved*.\""] = "\"# Wiki Sandbox\\n\\nWat er hier onder **edit** en **preview** staat *wordt niet opgeslagen*.\""; +App::$strings["Revision Comparison"] = "Revisies vergelijken"; +App::$strings["Revert"] = "Ongedaan maken"; +App::$strings["Enter the name of your new wiki:"] = "Vul de naam in van jouw nieuwe wiki:"; +App::$strings["Enter the name of the new page:"] = "Vul de naam in van de nieuwe pagina:"; +App::$strings["Enter the new name:"] = "Vul de nieuwe naam in:"; +App::$strings["Embed image from photo albums"] = "Afbeelding uit een fotoalbum invoegen"; +App::$strings["Embed an image from your albums"] = "Afbeelding uit jouw albums invoegen"; +App::$strings["OK"] = "OK"; +App::$strings["Choose images to embed"] = "Kies afbeeldingen om in te voegen"; +App::$strings["Choose an album"] = "Kies een album"; +App::$strings["Choose a different album..."] = "Kies een ander album..."; +App::$strings["Error getting album list"] = "Fout met ophalen albumlijst"; +App::$strings["Error getting photo link"] = "Fout met ophalen fotolink"; +App::$strings["Error getting album"] = "Fout met ophalen album"; +App::$strings["No connections."] = "Geen connecties."; +App::$strings["Visit %s's profile [%s]"] = "Bezoek het profiel van %s [%s]"; +App::$strings["View Connections"] = "Connecties weergeven"; +App::$strings["Source of Item"] = "Bron van item"; +App::$strings["Authorize application connection"] = "Geef toestemming voor applicatiekoppeling"; +App::$strings["Return to your app and insert this Securty Code:"] = "Ga terug naar je app en voeg deze beveiligingscode in:"; +App::$strings["Please login to continue."] = "Inloggen om verder te kunnen gaan."; +App::$strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Wil je deze applicatie toestemming geven om jouw berichten en connecties te zien, en/of nieuwe berichten voor jou te plaatsen?"; App::$strings["Xchan Lookup"] = "Xchan opzoeken"; App::$strings["Lookup xchan beginning with (or webbie): "] = "Zoek een xchan (of webbie) die begint met:"; -App::$strings["Site Admin"] = "Hubbeheerder"; -App::$strings["Bug Report"] = "Bugrapport"; -App::$strings["View Bookmarks"] = "Bladwijzers bekijken"; -App::$strings["My Chatrooms"] = "Mijn chatkanalen"; -App::$strings["Firefox Share"] = "Firefox Share"; -App::$strings["Remote Diagnostics"] = "Diagnose op afstand"; -App::$strings["Suggest Channels"] = "Kanalen voorstellen"; -App::$strings["Login"] = "Inloggen"; -App::$strings["Grid"] = "Grid"; -App::$strings["Channel Home"] = "Jouw kanaal"; -App::$strings["Events"] = "Agenda"; -App::$strings["Directory"] = "Kanalengids"; -App::$strings["Mail"] = "Privéberichten"; -App::$strings["Chat"] = "Chatten"; -App::$strings["Probe"] = "Onderzoeken"; -App::$strings["Suggest"] = "Voorstellen"; -App::$strings["Random Channel"] = "Willekeurig kanaal"; -App::$strings["Invite"] = "Uitnodigen "; -App::$strings["Features"] = "Extra functies"; -App::$strings["Post"] = "Bericht"; -App::$strings["Purchase"] = "Aanschaffen"; App::$strings["Missing room name"] = "Naam chatkanaal ontbreekt"; App::$strings["Duplicate room name"] = "Naam chatkanaal bestaat al"; App::$strings["Invalid room specifier."] = "Ongeldige omschrijving chatkanaal"; @@ -1474,6 +1516,27 @@ App::$strings["Please visit %s to approve or reject the suggestion."] = "Bezoek App::$strings["[Hubzilla:Notify]"] = "[Hubzilla:Notificatie]"; App::$strings["created a new post"] = "maakte een nieuw bericht aan"; App::$strings["commented on %s's post"] = "gaf een reactie op een bericht van %s"; +App::$strings["Site Admin"] = "Hubbeheerder"; +App::$strings["Bug Report"] = "Bugrapport"; +App::$strings["View Bookmarks"] = "Bladwijzers bekijken"; +App::$strings["My Chatrooms"] = "Mijn chatkanalen"; +App::$strings["Firefox Share"] = "Firefox Share"; +App::$strings["Remote Diagnostics"] = "Diagnose op afstand"; +App::$strings["Suggest Channels"] = "Kanalen voorstellen"; +App::$strings["Login"] = "Inloggen"; +App::$strings["Grid"] = "Grid"; +App::$strings["Channel Home"] = "Jouw kanaal"; +App::$strings["Events"] = "Agenda"; +App::$strings["Directory"] = "Kanalengids"; +App::$strings["Mail"] = "Privéberichten"; +App::$strings["Chat"] = "Chatten"; +App::$strings["Probe"] = "Onderzoeken"; +App::$strings["Suggest"] = "Voorstellen"; +App::$strings["Random Channel"] = "Willekeurig kanaal"; +App::$strings["Invite"] = "Uitnodigen "; +App::$strings["Features"] = "Extra functies"; +App::$strings["Post"] = "Bericht"; +App::$strings["Purchase"] = "Aanschaffen"; App::$strings["Private Message"] = "Niet voor iedereen zichtbaar"; App::$strings["Select"] = "Kies"; App::$strings["Save to Folder"] = "In map opslaan"; @@ -1510,7 +1573,7 @@ App::$strings["Expires: %s"] = "Verloopt: %s"; App::$strings["Save Bookmarks"] = "Bladwijzers opslaan"; App::$strings["Add to Calendar"] = "Aan agenda toevoegen"; App::$strings["Mark all seen"] = "Markeer alles als bekeken"; -App::$strings["[+] show all"] = "[+] alle"; +App::$strings["%s show all"] = "%s alle"; App::$strings["Bold"] = "Vet"; App::$strings["Italic"] = "Cursief"; App::$strings["Underline"] = "Onderstrepen"; @@ -1519,9 +1582,93 @@ App::$strings["Code"] = "Broncode"; App::$strings["Image"] = "Afbeelding"; App::$strings["Insert Link"] = "Link invoegen"; App::$strings["Video"] = "Video"; +App::$strings["Visible to your default audience"] = "Voor iedereen zichtbaar, mits niet anders ingesteld"; +App::$strings["Only me"] = "Alleen ik"; +App::$strings["Public"] = "Openbaar"; +App::$strings["Anybody in the \$Projectname network"] = "Iedereen in het \$Projectname-netwerk"; +App::$strings["Any account on %s"] = "Iedereen op %s"; +App::$strings["Any of my connections"] = "Al mijn geaccepteerde connecties"; +App::$strings["Only connections I specifically allow"] = "Alleen connecties die uitdrukkelijk door jou zijn toegestaan"; +App::$strings["Anybody authenticated (could include visitors from other networks)"] = "Geauthenticeerde leden (kan bezoekers van andere netwerken bevatten)"; +App::$strings["Any connections including those who haven't yet been approved"] = "Al mijn geaccepteerde en nog niet geaccepteerde connecties"; +App::$strings["This is your default setting for the audience of your normal stream, and posts."] = "Dit is de standaard privacy-instelling voor wie jouw berichten kan bekijken"; +App::$strings["This is your default setting for who can view your default channel profile"] = "Dit is de standaard privacy-instelling voor wie jouw standaardprofiel kan bekijken"; +App::$strings["This is your default setting for who can view your connections"] = "Dit is de standaard privacy-instelling voor wie een lijst met jouw connecties kan bekijken"; +App::$strings["This is your default setting for who can view your file storage and photos"] = "Dit is de standaard privacy-instelling voor wie jouw bestanden en foto's kan bekijken"; +App::$strings["This is your default setting for the audience of your webpages"] = "Dit is de standaard privacy-instelling voor wie jouw webpagina's kan bekijken"; App::$strings["No username found in import file."] = "Geen gebruikersnaam in het importbestand gevonden."; App::$strings["Unable to create a unique channel address. Import failed."] = "Niet in staat om een uniek kanaaladres aan te maken. Importeren is mislukt."; App::$strings["Cannot locate DNS info for database server '%s'"] = "Kan DNS-informatie voor databaseserver '%s' niet vinden"; +App::$strings["Image exceeds website size limit of %lu bytes"] = "Afbeelding is groter dan op deze hub toegestane limiet van %lu bytes"; +App::$strings["Image file is empty."] = "Afbeeldingsbestand is leeg"; +App::$strings["Photo storage failed."] = "Foto kan niet worden opgeslagen"; +App::$strings["a new photo"] = "een nieuwe foto"; +App::$strings["__ctx:photo_upload__ %1\$s posted %2\$s to %3\$s"] = "%1\$s plaatste %2\$s op %3\$s"; +App::$strings["Photo Albums"] = "Fotoalbums"; +App::$strings["Upload New Photos"] = "Nieuwe foto's uploaden"; +App::$strings["Logout"] = "Uitloggen"; +App::$strings["End this session"] = "Beëindig deze sessie"; +App::$strings["Home"] = "Home"; +App::$strings["Your posts and conversations"] = "Jouw kanaal"; +App::$strings["Your profile page"] = "Jouw profielpagina"; +App::$strings["Manage/Edit profiles"] = "Beheer/wijzig profielen"; +App::$strings["Edit Profile"] = "Profiel bewerken"; +App::$strings["Edit your profile"] = "Jouw profiel bewerken"; +App::$strings["Your photos"] = "Jouw foto's"; +App::$strings["Your files"] = "Jouw bestanden"; +App::$strings["Your chatrooms"] = "Jouw chatkanalen"; +App::$strings["Bookmarks"] = "Bladwijzers"; +App::$strings["Your bookmarks"] = "Jouw bladwijzers"; +App::$strings["Your webpages"] = "Jouw webpagina's"; +App::$strings["Your wiki"] = "Jouw wiki"; +App::$strings["Sign in"] = "Inloggen"; +App::$strings["%s - click to logout"] = "%s - klik om uit te loggen"; +App::$strings["Remote authentication"] = "Authenticatie op afstand"; +App::$strings["Click to authenticate to your home hub"] = "Authenticeer jezelf via (bijvoorbeeld) jouw hub"; +App::$strings["Home Page"] = "Homepage"; +App::$strings["Create an account"] = "Maak een account aan"; +App::$strings["Help and documentation"] = "Hulp en documentatie"; +App::$strings["Applications, utilities, links, games"] = "Apps"; +App::$strings["Search site @name, #tag, ?docs, content"] = "Zoek een @kanaal, doorzoek inhoud hub met tekst en #tags, of doorzoek ?documentatie "; +App::$strings["Channel Directory"] = "Kanalengids"; +App::$strings["Your grid"] = "Jouw grid"; +App::$strings["Mark all grid notifications seen"] = "Markeer alle gridnotificaties als bekeken"; +App::$strings["Channel home"] = "Jouw kanaal"; +App::$strings["Mark all channel notifications seen"] = "Alle kanaalnotificaties als gelezen markeren"; +App::$strings["Notices"] = "Notificaties"; +App::$strings["Notifications"] = "Notificaties"; +App::$strings["See all notifications"] = "Alle notificaties weergeven"; +App::$strings["Private mail"] = "Privéberichten"; +App::$strings["See all private messages"] = "Alle privéberichten weergeven"; +App::$strings["Mark all private messages seen"] = "Markeer alle privéberichten als bekeken"; +App::$strings["Inbox"] = "Postvak IN"; +App::$strings["Outbox"] = "Postvak UIT"; +App::$strings["New Message"] = "Nieuw bericht"; +App::$strings["Event Calendar"] = "Agenda"; +App::$strings["See all events"] = "Alle gebeurtenissen weergeven"; +App::$strings["Mark all events seen"] = "Markeer alle gebeurtenissen als bekeken"; +App::$strings["Manage Your Channels"] = "Beheer je kanalen"; +App::$strings["Account/Channel Settings"] = "Account-/kanaal-instellingen"; +App::$strings["Admin"] = "Beheer"; +App::$strings["Site Setup and Configuration"] = "Hub instellen en beheren"; +App::$strings["Loading..."] = "Aan het laden..."; +App::$strings["@name, #tag, ?doc, content"] = "@kanaal, #tag, inhoud, ?hulp"; +App::$strings["Please wait..."] = "Wachten aub..."; +App::$strings["view full size"] = "volledige grootte tonen"; +App::$strings["Administrator"] = "Beheerder"; +App::$strings["No Subject"] = "Geen onderwerp"; +App::$strings["Friendica"] = "Friendica"; +App::$strings["OStatus"] = "OStatus"; +App::$strings["GNU-Social"] = "GNU social"; +App::$strings["RSS/Atom"] = "RSS/Atom"; +App::$strings["Diaspora"] = "Diaspora"; +App::$strings["Facebook"] = "Facebook"; +App::$strings["Zot"] = "Zot"; +App::$strings["LinkedIn"] = "LinkedIn"; +App::$strings["XMPP/IM"] = "XMPP/IM"; +App::$strings["MySpace"] = "MySpace"; +App::$strings["New Page"] = "Nieuwe pagina"; +App::$strings["Title"] = "Titel"; App::$strings["Categories"] = "Categorieën"; App::$strings["Tags"] = "Tags"; App::$strings["Keywords"] = "Trefwoorden"; @@ -1531,34 +1678,196 @@ App::$strings["want"] = "wil"; App::$strings["wants"] = "wil"; App::$strings["likes"] = "vindt dit leuk"; App::$strings["dislikes"] = "vindt dit niet leuk"; -App::$strings["l F d, Y \\@ g:i A"] = "l d F Y \\@ G:i"; -App::$strings["Starts:"] = "Start:"; -App::$strings["Finishes:"] = "Einde:"; -App::$strings["This event has been added to your calendar."] = "Dit evenement is aan jouw agenda toegevoegd."; -App::$strings["Not specified"] = "Niet aangegeven"; -App::$strings["Needs Action"] = "Actie vereist"; -App::$strings["Completed"] = "Voltooid"; -App::$strings["In Process"] = "In behandeling"; -App::$strings["Cancelled"] = "Geannuleerd"; +App::$strings["Unable to obtain identity information from database"] = "Niet in staat om identiteitsinformatie uit de database te verkrijgen"; +App::$strings["Empty name"] = "Ontbrekende naam"; +App::$strings["Name too long"] = "Naam te lang"; +App::$strings["No account identifier"] = "Geen account-identificator"; +App::$strings["Nickname is required."] = "Bijnaam is verplicht"; +App::$strings["Reserved nickname. Please choose another."] = "Deze naam is gereserveerd. Kies een andere."; +App::$strings["Nickname has unsupported characters or is already being used on this site."] = "Deze naam heeft niet ondersteunde karakters of is al op deze hub in gebruik."; +App::$strings["Unable to retrieve created identity"] = "Niet in staat om aangemaakte identiteit te vinden"; +App::$strings["Default Profile"] = "Standaardprofiel"; +App::$strings["Requested channel is not available."] = "Opgevraagd kanaal is niet beschikbaar."; +App::$strings["Create New Profile"] = "Nieuw profiel aanmaken"; +App::$strings["Visible to everybody"] = "Voor iedereen zichtbaar"; +App::$strings["Gender:"] = "Geslacht:"; +App::$strings["Status:"] = "Status:"; +App::$strings["Homepage:"] = "Homepagina:"; +App::$strings["Online Now"] = "Nu online"; +App::$strings["Like this channel"] = "Vind dit kanaal leuk"; +App::$strings["j F, Y"] = "F j Y"; +App::$strings["j F"] = "F j"; +App::$strings["Birthday:"] = "Geboortedatum:"; +App::$strings["for %1\$d %2\$s"] = "voor %1\$d %2\$s"; +App::$strings["Sexual Preference:"] = "Seksuele voorkeur:"; +App::$strings["Tags:"] = "Tags:"; +App::$strings["Political Views:"] = "Politieke overtuigingen:"; +App::$strings["Religion:"] = "Religie:"; +App::$strings["Hobbies/Interests:"] = "Hobby's/interesses:"; +App::$strings["Likes:"] = "Houdt van:"; +App::$strings["Dislikes:"] = "Houdt niet van:"; +App::$strings["Contact information and Social Networks:"] = "Contactinformatie en sociale netwerken:"; +App::$strings["My other channels:"] = "Mijn andere kanalen"; +App::$strings["Musical interests:"] = "Muzikale interesses:"; +App::$strings["Books, literature:"] = "Boeken, literatuur:"; +App::$strings["Television:"] = "Televisie:"; +App::$strings["Film/dance/culture/entertainment:"] = "Films/dansen/cultuur/vermaak:"; +App::$strings["Love/Romance:"] = "Liefde/romantiek:"; +App::$strings["Work/employment:"] = "Werk/beroep:"; +App::$strings["School/education:"] = "School/opleiding:"; +App::$strings["Like this thing"] = "Vind dit ding leuk"; +App::$strings["New window"] = "Nieuw venster"; +App::$strings["Open the selected location in a different window or browser tab"] = "Open de geselecteerde locatie in een ander venster of tab"; +App::$strings["User '%s' deleted"] = "Account '%s' verwijderd"; +App::$strings["%1\$s is now connected with %2\$s"] = "%1\$s is nu met %2\$s verbonden"; +App::$strings["%1\$s poked %2\$s"] = "%1\$s heeft %2\$s aangestoten"; +App::$strings["poked"] = "aangestoten"; +App::$strings["View %s's profile @ %s"] = "Bekijk het profiel van %s @ %s"; +App::$strings["Categories:"] = "Categorieën:"; +App::$strings["Filed under:"] = "Bewaard onder:"; +App::$strings["View in context"] = "In context bekijken"; +App::$strings["remove"] = "verwijderen"; +App::$strings["Delete Selected Items"] = "Verwijder de geselecteerde items"; +App::$strings["View Source"] = "Bron weergeven"; +App::$strings["Follow Thread"] = "Conversatie volgen"; +App::$strings["Unfollow Thread"] = "Conversatie niet meer volgen"; +App::$strings["Activity/Posts"] = "Activiteit/berichten connectie"; +App::$strings["Edit Connection"] = "Connectie bewerken"; +App::$strings["Message"] = "Bericht"; +App::$strings["%s likes this."] = "%s vindt dit leuk."; +App::$strings["%s doesn't like this."] = "%s vindt dit niet leuk."; +App::$strings["%2\$d people like this."] = array( + 0 => "%2\$d persoon vindt dit leuk.", + 1 => "%2\$d personen vinden dit leuk.", +); +App::$strings["%2\$d people don't like this."] = array( + 0 => "%2\$d persoon vindt dit niet leuk.", + 1 => "%2\$d personen vinden dit niet leuk.", +); +App::$strings["and"] = "en"; +App::$strings[", and %d other people"] = array( + 0 => ", en %d ander persoon", + 1 => ", en %d andere personen", +); +App::$strings["%s like this."] = "%s vinden dit leuk."; +App::$strings["%s don't like this."] = "%s vinden dit niet leuk."; +App::$strings["Set your location"] = "Locatie instellen"; +App::$strings["Clear browser location"] = "Locatie van webbrowser wissen"; +App::$strings["Tag term:"] = "Tag:"; +App::$strings["Where are you right now?"] = "Waar bevind je je op dit moment?"; +App::$strings["Page link name"] = "Linknaam pagina"; +App::$strings["Post as"] = "Bericht plaatsen als"; +App::$strings["Toggle voting"] = "Peiling in- of uitschakelen"; +App::$strings["Categories (optional, comma-separated list)"] = "Categorieën (optioneel, door komma's gescheiden lijst)"; +App::$strings["Set publish date"] = "Publicatiedatum instellen"; +App::$strings["Discover"] = "Ontdekken"; +App::$strings["Imported public streams"] = "Openbare streams importeren"; +App::$strings["Commented Order"] = "Nieuwe reacties bovenaan"; +App::$strings["Sort by Comment Date"] = "Berichten met nieuwe reacties bovenaan"; +App::$strings["Posted Order"] = "Nieuwe berichten bovenaan"; +App::$strings["Sort by Post Date"] = "Nieuwe berichten bovenaan"; +App::$strings["Posts that mention or involve you"] = "Alleen berichten die jou vermelden of waar je op een andere manier bij betrokken bent"; +App::$strings["Activity Stream - by date"] = "Activiteitenstroom - volgens datum"; +App::$strings["Starred"] = "Met ster"; +App::$strings["Favourite Posts"] = "Favoriete berichten"; +App::$strings["Spam"] = "Spam"; +App::$strings["Posts flagged as SPAM"] = "Berichten gemarkeerd als SPAM"; +App::$strings["Status Messages and Posts"] = "Berichten in dit kanaal"; +App::$strings["About"] = "Over"; +App::$strings["Profile Details"] = "Profiel"; +App::$strings["Files and Storage"] = "Bestanden en opslagruimte"; +App::$strings["Chatrooms"] = "Chatkanalen"; +App::$strings["Saved Bookmarks"] = "Opgeslagen bladwijzers"; +App::$strings["Manage Webpages"] = "Webpagina's beheren"; +App::$strings["__ctx:noun__ Attending"] = array( + 0 => "aanwezig", + 1 => "aanwezig", +); +App::$strings["__ctx:noun__ Not Attending"] = array( + 0 => "niet aanwezig", + 1 => "niet aanwezig", +); +App::$strings["__ctx:noun__ Undecided"] = array( + 0 => "nog niet beslist", + 1 => "nog niet beslist", +); +App::$strings["__ctx:noun__ Agree"] = array( + 0 => "eens", + 1 => "eens", +); +App::$strings["__ctx:noun__ Disagree"] = array( + 0 => "oneens", + 1 => "oneens", +); +App::$strings["__ctx:noun__ Abstain"] = array( + 0 => "onthouding", + 1 => "onthoudingen", +); App::$strings["Cannot create a duplicate channel identifier on this system. Import failed."] = "Kan geen dubbele kanaal-identificator op deze hub aanmaken. Importeren mislukt."; App::$strings["Channel clone failed. Import failed."] = "Het klonen van het kanaal is mislukt. Importeren mislukt."; -App::$strings["(Unknown)"] = "(Onbekend)"; -App::$strings["Visible to anybody on the internet."] = "Voor iedereen op het internet zichtbaar."; -App::$strings["Visible to you only."] = "Alleen voor jou zichtbaar."; -App::$strings["Visible to anybody in this network."] = "Voor iedereen in dit netwerk zichtbaar."; -App::$strings["Visible to anybody authenticated."] = "Voor iedereen die geauthenticeerd is zichtbaar."; -App::$strings["Visible to anybody on %s."] = "Voor iedereen op %s zichtbaar."; -App::$strings["Visible to all connections."] = "Voor alle connecties zichtbaar."; -App::$strings["Visible to approved connections."] = "Voor alle geaccepteerde connecties zichtbaar."; -App::$strings["Visible to specific connections."] = "Voor specifieke connecties zichtbaar."; -App::$strings["Privacy group is empty."] = "Privacygroep is leeg"; -App::$strings["Privacy group: %s"] = "Privacygroep: %s"; -App::$strings["Connection not found."] = "Connectie niet gevonden."; -App::$strings["profile photo"] = "profielfoto"; -App::$strings["No recipient provided."] = "Geen ontvanger opgegeven."; -App::$strings["[no subject]"] = "[geen onderwerp]"; -App::$strings["Unable to determine sender."] = "Afzender kan niet bepaald worden."; -App::$strings["Stored post could not be verified."] = "Opgeslagen bericht kon niet worden geverifieerd."; +App::$strings["Frequently"] = "Regelmatig"; +App::$strings["Hourly"] = "Elk uur"; +App::$strings["Twice daily"] = "Twee keer per dag"; +App::$strings["Daily"] = "Dagelijks"; +App::$strings["Weekly"] = "Wekelijks"; +App::$strings["Monthly"] = "Maandelijks"; +App::$strings["Currently Male"] = "Momenteel man"; +App::$strings["Currently Female"] = "Momenteel vrouw"; +App::$strings["Mostly Male"] = "Voornamelijk man"; +App::$strings["Mostly Female"] = "Voornamelijk vrouw"; +App::$strings["Transgender"] = "Transgender"; +App::$strings["Intersex"] = "Interseksueel"; +App::$strings["Transsexual"] = "Transseksueel"; +App::$strings["Hermaphrodite"] = "Hermafrodiet"; +App::$strings["Neuter"] = "Genderneutraal"; +App::$strings["Non-specific"] = "Niet gespecificeerd"; +App::$strings["Undecided"] = "Nog niet beslist"; +App::$strings["Males"] = "Mannen"; +App::$strings["Females"] = "Vrouwen"; +App::$strings["Gay"] = "Homoseksueel"; +App::$strings["Lesbian"] = "Lesbisch"; +App::$strings["No Preference"] = "Geen voorkeur"; +App::$strings["Bisexual"] = "Biseksueel"; +App::$strings["Autosexual"] = "Autoseksueel"; +App::$strings["Abstinent"] = "Seksuele onthouding"; +App::$strings["Virgin"] = "Maagd"; +App::$strings["Deviant"] = "Afwijkend"; +App::$strings["Fetish"] = "Fetisj"; +App::$strings["Oodles"] = "Veel"; +App::$strings["Nonsexual"] = "Aseksueel"; +App::$strings["Single"] = "Alleen"; +App::$strings["Lonely"] = "Eenzaam"; +App::$strings["Available"] = "Beschikbaar"; +App::$strings["Unavailable"] = "Niet beschikbaar"; +App::$strings["Has crush"] = "Heeft een oogje op iemand"; +App::$strings["Infatuated"] = "Smoorverliefd"; +App::$strings["Dating"] = "Aan het daten"; +App::$strings["Unfaithful"] = "Ontrouw"; +App::$strings["Sex Addict"] = "Seksverslaafd"; +App::$strings["Friends/Benefits"] = "Vriendschap plus"; +App::$strings["Casual"] = "Ongebonden/vluchtig"; +App::$strings["Engaged"] = "Verloofd"; +App::$strings["Married"] = "Getrouwd"; +App::$strings["Imaginarily married"] = "Denkbeeldig getrouwd"; +App::$strings["Partners"] = "Partners"; +App::$strings["Cohabiting"] = "Samenwonend"; +App::$strings["Common law"] = "Common-law-huwelijk"; +App::$strings["Happy"] = "Gelukkig"; +App::$strings["Not looking"] = "Niet op zoek"; +App::$strings["Swinger"] = "Swinger"; +App::$strings["Betrayed"] = "Verraden"; +App::$strings["Separated"] = "Uit elkaar"; +App::$strings["Unstable"] = "Onstabiel"; +App::$strings["Divorced"] = "Gescheiden"; +App::$strings["Imaginarily divorced"] = "Denkbeeldig gescheiden"; +App::$strings["Widowed"] = "Weduwnaar/weduwe"; +App::$strings["Uncertain"] = "Onzeker"; +App::$strings["It's complicated"] = "Het is ingewikkeld"; +App::$strings["Don't care"] = "Maakt mij niks uit"; +App::$strings["Ask me"] = "Vraag het me"; +App::$strings["%1\$s's bookmarks"] = "Bladwijzers van %1\$s"; +App::$strings["guest:"] = "gast:"; +App::$strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "De beveiligings-token van het tekstvak was ongeldig. Dit is mogelijk het gevolg van dat er te lang (meer dan 3 uur) gewacht is om de tekst op te slaan. "; App::$strings["prev"] = "vorige"; App::$strings["first"] = "eerste"; App::$strings["last"] = "laatste"; @@ -1568,7 +1877,6 @@ App::$strings["newer"] = "nieuwer"; App::$strings["No connections"] = "Geen connecties"; App::$strings["View all %s connections"] = "Toon alle %s connecties"; App::$strings["poke"] = "aanstoten"; -App::$strings["poked"] = "aangestoten"; App::$strings["ping"] = "ping"; App::$strings["pinged"] = "gepingd"; App::$strings["prod"] = "por"; @@ -1631,385 +1939,21 @@ App::$strings["Select an alternate language"] = "Kies een andere taal"; App::$strings["activity"] = "activiteit"; App::$strings["Design Tools"] = "Ontwerp-hulpmiddelen"; App::$strings["Pages"] = "Pagina's"; -App::$strings["System"] = "Systeem"; -App::$strings["New App"] = "Nieuwe app"; -App::$strings["Suggestions"] = "Voorgestelde kanalen"; -App::$strings["See more..."] = "Meer..."; -App::$strings["You have %1$.0f of %2$.0f allowed connections."] = "Je hebt %1$.0f van de %2$.0f toegestane connecties."; -App::$strings["Add New Connection"] = "Nieuwe connectie toevoegen"; -App::$strings["Enter channel address"] = "Vul kanaaladres in"; -App::$strings["Examples: bob@example.com, https://example.com/barbara"] = "Voorbeelden: bob@example.com, http://example.com/barbara"; -App::$strings["Notes"] = "Aantekeningen"; -App::$strings["Remove term"] = "Verwijder zoekterm"; -App::$strings["Saved Searches"] = "Opgeslagen zoekopdrachten"; -App::$strings["add"] = "toevoegen"; -App::$strings["Saved Folders"] = "Bewaarde mappen"; -App::$strings["Everything"] = "Alles"; -App::$strings["Archives"] = "Archieven"; -App::$strings["Refresh"] = "Vernieuwen"; -App::$strings["Account settings"] = "Account"; -App::$strings["Channel settings"] = "Kanaal"; -App::$strings["Additional features"] = "Extra functies"; -App::$strings["Feature/Addon settings"] = "Plugin-instellingen"; -App::$strings["Display settings"] = "Weergave"; -App::$strings["Manage locations"] = "Locaties beheren"; -App::$strings["Export channel"] = "Kanaal exporteren"; -App::$strings["Connected apps"] = "Verbonden applicaties"; -App::$strings["Premium Channel Settings"] = "Instellingen premiumkanaal"; -App::$strings["Private Mail Menu"] = "Privéberichten"; -App::$strings["Combined View"] = "Gecombineerd postvak"; -App::$strings["Inbox"] = "Postvak IN"; -App::$strings["Outbox"] = "Postvak UIT"; -App::$strings["New Message"] = "Nieuw bericht"; -App::$strings["Conversations"] = "Conversaties"; -App::$strings["Received Messages"] = "Ontvangen berichten"; -App::$strings["Sent Messages"] = "Verzonden berichten"; -App::$strings["No messages."] = "Geen berichten"; -App::$strings["Delete conversation"] = "Verwijder conversatie"; -App::$strings["Events Menu"] = "Agenda-menu"; -App::$strings["Day View"] = "Dag tonen"; -App::$strings["Week View"] = "Week tonen"; -App::$strings["Month View"] = "Maand tonen"; -App::$strings["Events Tools"] = "Agenda-hulpmiddelen"; -App::$strings["Export Calendar"] = "Exporteren"; -App::$strings["Import Calendar"] = "Importeren"; -App::$strings["Chatrooms"] = "Chatkanalen"; -App::$strings["Overview"] = "Overzicht"; -App::$strings["Chat Members"] = "Chatleden"; -App::$strings["Bookmarked Chatrooms"] = "Bladwijzers van chatkanalen"; -App::$strings["Suggested Chatrooms"] = "Voorgestelde chatkanalen"; -App::$strings["photo/image"] = "foto/afbeelding"; -App::$strings["Click to show more"] = "Klik voor meer"; -App::$strings["Rating Tools"] = "Beoordelingen"; -App::$strings["Rate Me"] = "Beoordeel mij"; -App::$strings["View Ratings"] = "Bekijk beoordelingen"; -App::$strings["Forums"] = "Forums"; -App::$strings["Tasks"] = "Taken"; -App::$strings["Documentation"] = "Documentatie"; -App::$strings["Project/Site Information"] = "Project- en hub-informatie"; -App::$strings["For Members"] = "Voor leden"; -App::$strings["For Administrators"] = "Voor beheerders"; -App::$strings["For Developers"] = "Voor ontwikkelaars"; -App::$strings["Member registrations waiting for confirmation"] = "Accounts die op goedkeuring wachten"; -App::$strings["Inspect queue"] = "Inspecteer berichtenwachtrij"; -App::$strings["DB updates"] = "Database-updates"; -App::$strings["Admin"] = "Beheer"; -App::$strings["Plugin Features"] = "Plugin-opties"; -App::$strings["Channel is blocked on this site."] = "Kanaal is op deze hub geblokkeerd."; -App::$strings["Channel location missing."] = "Ontbrekende kanaallocatie."; -App::$strings["Response from remote channel was incomplete."] = "Antwoord van het kanaal op afstand was niet volledig."; -App::$strings["Channel was deleted and no longer exists."] = "Kanaal is verwijderd en bestaat niet meer."; -App::$strings["Protocol disabled."] = "Protocol uitgeschakeld."; -App::$strings["Channel discovery failed."] = "Kanaal ontdekken mislukt."; -App::$strings["Cannot connect to yourself."] = "Kan niet met jezelf verbinden"; -App::$strings["%1\$s's bookmarks"] = "Bladwijzers van %1\$s"; -App::$strings["Public Timeline"] = "Openbare tijdlijn"; -App::$strings["Image/photo"] = "Afbeelding/foto"; -App::$strings["Encrypted content"] = "Versleutelde inhoud"; -App::$strings["Install %s element: "] = "Installeer %s-element: "; -App::$strings["This post contains an installable %s element, however you lack permissions to install it on this site."] = "Dit bericht heeft een te installeren %s-element, maar je hebt geen permissies om het op deze hub te installeren."; -App::$strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s schreef het volgende %2\$s %3\$s"; -App::$strings["Click to open/close"] = "Klik om te openen of te sluiten"; -App::$strings["spoiler"] = "spoiler"; -App::$strings["Different viewers will see this text differently"] = "Deze tekst wordt per persoon anders weergeven."; -App::$strings["$1 wrote:"] = "$1 schreef:"; -App::$strings["Directory Options"] = "Opties kanalengids"; -App::$strings["Safe Mode"] = "Veilig zoeken"; -App::$strings["Public Forums Only"] = "Alleen openbare forums"; -App::$strings["This Website Only"] = "Alleen deze hub"; -App::$strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "De beveiligings-token van het tekstvak was ongeldig. Dit is mogelijk het gevolg van dat er te lang (meer dan 3 uur) gewacht is om de tekst op te slaan. "; -App::$strings["Logout"] = "Uitloggen"; -App::$strings["End this session"] = "Beëindig deze sessie"; -App::$strings["Home"] = "Home"; -App::$strings["Your posts and conversations"] = "Jouw kanaal"; -App::$strings["Your profile page"] = "Jouw profielpagina"; -App::$strings["Manage/Edit profiles"] = "Beheer/wijzig profielen"; -App::$strings["Edit Profile"] = "Profiel bewerken"; -App::$strings["Edit your profile"] = "Jouw profiel bewerken"; -App::$strings["Your photos"] = "Jouw foto's"; -App::$strings["Your files"] = "Jouw bestanden"; -App::$strings["Your chatrooms"] = "Jouw chatkanalen"; -App::$strings["Bookmarks"] = "Bladwijzers"; -App::$strings["Your bookmarks"] = "Jouw bladwijzers"; -App::$strings["Your webpages"] = "Jouw webpagina's"; -App::$strings["Sign in"] = "Inloggen"; -App::$strings["%s - click to logout"] = "%s - klik om uit te loggen"; -App::$strings["Remote authentication"] = "Authenticatie op afstand"; -App::$strings["Click to authenticate to your home hub"] = "Authenticeer jezelf via (bijvoorbeeld) jouw hub"; -App::$strings["Home Page"] = "Homepage"; -App::$strings["Create an account"] = "Maak een account aan"; -App::$strings["Help and documentation"] = "Hulp en documentatie"; -App::$strings["Applications, utilities, links, games"] = "Apps"; -App::$strings["Search site @name, #tag, ?docs, content"] = "Zoek een @kanaal, doorzoek inhoud hub met tekst en #tags, of doorzoek ?documentatie "; -App::$strings["Channel Directory"] = "Kanalengids"; -App::$strings["Your grid"] = "Jouw grid"; -App::$strings["Mark all grid notifications seen"] = "Markeer alle gridnotificaties als bekeken"; -App::$strings["Channel home"] = "Jouw kanaal"; -App::$strings["Mark all channel notifications seen"] = "Alle kanaalnotificaties als gelezen markeren"; -App::$strings["Notices"] = "Notificaties"; -App::$strings["Notifications"] = "Notificaties"; -App::$strings["See all notifications"] = "Alle notificaties weergeven"; -App::$strings["Private mail"] = "Privéberichten"; -App::$strings["See all private messages"] = "Alle privéberichten weergeven"; -App::$strings["Mark all private messages seen"] = "Markeer alle privéberichten als bekeken"; -App::$strings["Event Calendar"] = "Agenda"; -App::$strings["See all events"] = "Alle gebeurtenissen weergeven"; -App::$strings["Mark all events seen"] = "Markeer alle gebeurtenissen als bekeken"; -App::$strings["Manage Your Channels"] = "Beheer je kanalen"; -App::$strings["Account/Channel Settings"] = "Account-/kanaal-instellingen"; -App::$strings["Site Setup and Configuration"] = "Hub instellen en beheren"; -App::$strings["Loading..."] = "Aan het laden..."; -App::$strings["@name, #tag, ?doc, content"] = "@kanaal, #tag, inhoud, ?hulp"; -App::$strings["Please wait..."] = "Wachten aub..."; -App::$strings["New window"] = "Nieuw venster"; -App::$strings["Open the selected location in a different window or browser tab"] = "Open de geselecteerde locatie in een ander venster of tab"; -App::$strings["User '%s' deleted"] = "Account '%s' verwijderd"; -App::$strings["%d invitation available"] = array( - 0 => "%d uitnodiging beschikbaar", - 1 => "%d uitnodigingen beschikbaar", -); -App::$strings["Find Channels"] = "Kanalen vinden"; -App::$strings["Enter name or interest"] = "Vul naam of interesse in"; -App::$strings["Connect/Follow"] = "Verbinden/volgen"; -App::$strings["Examples: Robert Morgenstein, Fishing"] = "Voorbeeld: Robert Morgenstein, vissen"; -App::$strings["Random Profile"] = "Willekeurig profiel"; -App::$strings["Invite Friends"] = "Vrienden uitnodigen"; -App::$strings["Advanced example: name=fred and country=iceland"] = "Geavanceerd voorbeeld (Engels): name=jan en country=nederland"; -App::$strings["%d connection in common"] = array( - 0 => "%d gemeenschappelijke connectie", - 1 => "%d gemeenschappelijke connecties", -); -App::$strings["show more"] = "meer connecties weergeven"; -App::$strings["%1\$s is now connected with %2\$s"] = "%1\$s is nu met %2\$s verbonden"; -App::$strings["%1\$s poked %2\$s"] = "%1\$s heeft %2\$s aangestoten"; -App::$strings["View %s's profile @ %s"] = "Bekijk het profiel van %s @ %s"; -App::$strings["Categories:"] = "Categorieën:"; -App::$strings["Filed under:"] = "Bewaard onder:"; -App::$strings["View in context"] = "In context bekijken"; -App::$strings["remove"] = "verwijderen"; -App::$strings["Delete Selected Items"] = "Verwijder de geselecteerde items"; -App::$strings["View Source"] = "Bron weergeven"; -App::$strings["Follow Thread"] = "Conversatie volgen"; -App::$strings["Unfollow Thread"] = "Conversatie niet meer volgen"; -App::$strings["Activity/Posts"] = "Activiteit/berichten connectie"; -App::$strings["Edit Connection"] = "Connectie bewerken"; -App::$strings["Message"] = "Bericht"; -App::$strings["%s likes this."] = "%s vindt dit leuk."; -App::$strings["%s doesn't like this."] = "%s vindt dit niet leuk."; -App::$strings["%2\$d people like this."] = array( - 0 => "%2\$d persoon vindt dit leuk.", - 1 => "%2\$d personen vinden dit leuk.", -); -App::$strings["%2\$d people don't like this."] = array( - 0 => "%2\$d persoon vindt dit niet leuk.", - 1 => "%2\$d personen vinden dit niet leuk.", -); -App::$strings["and"] = "en"; -App::$strings[", and %d other people"] = array( - 0 => ", en %d ander persoon", - 1 => ", en %d andere personen", -); -App::$strings["%s like this."] = "%s vinden dit leuk."; -App::$strings["%s don't like this."] = "%s vinden dit niet leuk."; -App::$strings["Set your location"] = "Locatie instellen"; -App::$strings["Clear browser location"] = "Locatie van webbrowser wissen"; -App::$strings["Tag term:"] = "Tag:"; -App::$strings["Where are you right now?"] = "Waar bevind je je op dit moment?"; -App::$strings["Page link name"] = "Linknaam pagina"; -App::$strings["Post as"] = "Bericht plaatsen als"; -App::$strings["Toggle voting"] = "Peiling in- of uitschakelen"; -App::$strings["Categories (optional, comma-separated list)"] = "Categorieën (optioneel, door komma's gescheiden lijst)"; -App::$strings["Set publish date"] = "Publicatiedatum instellen"; -App::$strings["OK"] = "OK"; -App::$strings["Discover"] = "Ontdekken"; -App::$strings["Imported public streams"] = "Openbare streams importeren"; -App::$strings["Commented Order"] = "Nieuwe reacties bovenaan"; -App::$strings["Sort by Comment Date"] = "Berichten met nieuwe reacties bovenaan"; -App::$strings["Posted Order"] = "Nieuwe berichten bovenaan"; -App::$strings["Sort by Post Date"] = "Nieuwe berichten bovenaan"; -App::$strings["Posts that mention or involve you"] = "Alleen berichten die jou vermelden of waar je op een andere manier bij betrokken bent"; -App::$strings["Activity Stream - by date"] = "Activiteitenstroom - volgens datum"; -App::$strings["Starred"] = "Met ster"; -App::$strings["Favourite Posts"] = "Favoriete berichten"; -App::$strings["Spam"] = "Spam"; -App::$strings["Posts flagged as SPAM"] = "Berichten gemarkeerd als SPAM"; -App::$strings["Status Messages and Posts"] = "Berichten in dit kanaal"; -App::$strings["About"] = "Over"; -App::$strings["Profile Details"] = "Profiel"; -App::$strings["Photo Albums"] = "Fotoalbums"; -App::$strings["Files and Storage"] = "Bestanden en opslagruimte"; -App::$strings["Saved Bookmarks"] = "Opgeslagen bladwijzers"; -App::$strings["Manage Webpages"] = "Webpagina's beheren"; -App::$strings["__ctx:noun__ Attending"] = array( - 0 => "aanwezig", - 1 => "aanwezig", -); -App::$strings["__ctx:noun__ Not Attending"] = array( - 0 => "niet aanwezig", - 1 => "niet aanwezig", -); -App::$strings["__ctx:noun__ Undecided"] = array( - 0 => "nog niet beslist", - 1 => "nog niet beslist", -); -App::$strings["__ctx:noun__ Agree"] = array( - 0 => "eens", - 1 => "eens", -); -App::$strings["__ctx:noun__ Disagree"] = array( - 0 => "oneens", - 1 => "oneens", -); -App::$strings["__ctx:noun__ Abstain"] = array( - 0 => "onthouding", - 1 => "onthoudingen", -); -App::$strings["Frequently"] = "Regelmatig"; -App::$strings["Hourly"] = "Elk uur"; -App::$strings["Twice daily"] = "Twee keer per dag"; -App::$strings["Daily"] = "Dagelijks"; -App::$strings["Weekly"] = "Wekelijks"; -App::$strings["Monthly"] = "Maandelijks"; -App::$strings["Currently Male"] = "Momenteel man"; -App::$strings["Currently Female"] = "Momenteel vrouw"; -App::$strings["Mostly Male"] = "Voornamelijk man"; -App::$strings["Mostly Female"] = "Voornamelijk vrouw"; -App::$strings["Transgender"] = "Transgender"; -App::$strings["Intersex"] = "Interseksueel"; -App::$strings["Transsexual"] = "Transseksueel"; -App::$strings["Hermaphrodite"] = "Hermafrodiet"; -App::$strings["Neuter"] = "Genderneutraal"; -App::$strings["Non-specific"] = "Niet gespecificeerd"; -App::$strings["Other"] = "Anders"; -App::$strings["Undecided"] = "Nog niet beslist"; -App::$strings["Males"] = "Mannen"; -App::$strings["Females"] = "Vrouwen"; -App::$strings["Gay"] = "Homoseksueel"; -App::$strings["Lesbian"] = "Lesbisch"; -App::$strings["No Preference"] = "Geen voorkeur"; -App::$strings["Bisexual"] = "Biseksueel"; -App::$strings["Autosexual"] = "Autoseksueel"; -App::$strings["Abstinent"] = "Seksuele onthouding"; -App::$strings["Virgin"] = "Maagd"; -App::$strings["Deviant"] = "Afwijkend"; -App::$strings["Fetish"] = "Fetisj"; -App::$strings["Oodles"] = "Veel"; -App::$strings["Nonsexual"] = "Aseksueel"; -App::$strings["Single"] = "Alleen"; -App::$strings["Lonely"] = "Eenzaam"; -App::$strings["Available"] = "Beschikbaar"; -App::$strings["Unavailable"] = "Niet beschikbaar"; -App::$strings["Has crush"] = "Heeft een oogje op iemand"; -App::$strings["Infatuated"] = "Smoorverliefd"; -App::$strings["Dating"] = "Aan het daten"; -App::$strings["Unfaithful"] = "Ontrouw"; -App::$strings["Sex Addict"] = "Seksverslaafd"; -App::$strings["Friends/Benefits"] = "Vriendschap plus"; -App::$strings["Casual"] = "Ongebonden/vluchtig"; -App::$strings["Engaged"] = "Verloofd"; -App::$strings["Married"] = "Getrouwd"; -App::$strings["Imaginarily married"] = "Denkbeeldig getrouwd"; -App::$strings["Partners"] = "Partners"; -App::$strings["Cohabiting"] = "Samenwonend"; -App::$strings["Common law"] = "Common-law-huwelijk"; -App::$strings["Happy"] = "Gelukkig"; -App::$strings["Not looking"] = "Niet op zoek"; -App::$strings["Swinger"] = "Swinger"; -App::$strings["Betrayed"] = "Verraden"; -App::$strings["Separated"] = "Uit elkaar"; -App::$strings["Unstable"] = "Onstabiel"; -App::$strings["Divorced"] = "Gescheiden"; -App::$strings["Imaginarily divorced"] = "Denkbeeldig gescheiden"; -App::$strings["Widowed"] = "Weduwnaar/weduwe"; -App::$strings["Uncertain"] = "Onzeker"; -App::$strings["It's complicated"] = "Het is ingewikkeld"; -App::$strings["Don't care"] = "Maakt mij niks uit"; -App::$strings["Ask me"] = "Vraag het me"; -App::$strings["Visible to your default audience"] = "Voor iedereen zichtbaar, mits niet anders ingesteld"; -App::$strings["Only me"] = "Alleen ik"; -App::$strings["Public"] = "Openbaar"; -App::$strings["Anybody in the \$Projectname network"] = "Iedereen in het \$Projectname-netwerk"; -App::$strings["Any account on %s"] = "Iedereen op %s"; -App::$strings["Any of my connections"] = "Al mijn geaccepteerde connecties"; -App::$strings["Only connections I specifically allow"] = "Alleen connecties die uitdrukkelijk door jou zijn toegestaan"; -App::$strings["Anybody authenticated (could include visitors from other networks)"] = "Geauthenticeerde leden (kan bezoekers van andere netwerken bevatten)"; -App::$strings["Any connections including those who haven't yet been approved"] = "Al mijn geaccepteerde en nog niet geaccepteerde connecties"; -App::$strings["This is your default setting for the audience of your normal stream, and posts."] = "Dit is de standaard privacy-instelling voor wie jouw berichten kan bekijken"; -App::$strings["This is your default setting for who can view your default channel profile"] = "Dit is de standaard privacy-instelling voor wie jouw standaardprofiel kan bekijken"; -App::$strings["This is your default setting for who can view your connections"] = "Dit is de standaard privacy-instelling voor wie een lijst met jouw connecties kan bekijken"; -App::$strings["This is your default setting for who can view your file storage and photos"] = "Dit is de standaard privacy-instelling voor wie jouw bestanden en foto's kan bekijken"; -App::$strings["This is your default setting for the audience of your webpages"] = "Dit is de standaard privacy-instelling voor wie jouw webpagina's kan bekijken"; -App::$strings["Not a valid email address"] = "Geen geldig e-mailadres"; -App::$strings["Your email domain is not among those allowed on this site"] = "Jouw e-maildomein is op deze hub niet toegestaan"; -App::$strings["Your email address is already registered at this site."] = "Jouw e-mailadres is al op deze hub geregistreerd."; -App::$strings["An invitation is required."] = "Een uitnodiging is vereist"; -App::$strings["Invitation could not be verified."] = "Uitnodiging kon niet geverifieerd worden"; -App::$strings["Please enter the required information."] = "Vul de vereiste informatie in."; -App::$strings["Failed to store account information."] = "Account-informatie kon niet opgeslagen worden."; -App::$strings["Registration confirmation for %s"] = "Registratiebevestiging voor %s"; -App::$strings["Registration request at %s"] = "Registratiebevestiging voor %s"; -App::$strings["Administrator"] = "Beheerder"; -App::$strings["your registration password"] = "jouw registratiewachtwoord"; -App::$strings["Registration details for %s"] = "Registratiegegevens voor %s"; -App::$strings["Account approved."] = "Account goedgekeurd"; -App::$strings["Registration revoked for %s"] = "Registratie ingetrokken voor %s"; -App::$strings["Account verified. Please login."] = "Account is geverifieerd. Je kan inloggen."; -App::$strings["Click here to upgrade."] = "Klik hier om te upgraden."; -App::$strings["This action exceeds the limits set by your subscription plan."] = "Deze handeling overschrijdt de beperkingen die voor jouw abonnement gelden."; -App::$strings["This action is not available under your subscription plan."] = "Deze handeling is niet mogelijk met jouw abonnement."; -App::$strings["Item was not found."] = "Item niet gevonden"; -App::$strings["No source file."] = "Geen bronbestand."; -App::$strings["Cannot locate file to replace"] = "Kan het te vervangen bestand niet vinden"; -App::$strings["Cannot locate file to revise/update"] = "Kan het bestand wat aangepast moet worden niet vinden"; -App::$strings["File exceeds size limit of %d"] = "Bestand is groter dan de toegelaten %d"; -App::$strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Je hebt jouw limiet van %1$.0f MB opslagruimte voor bijlagen bereikt."; -App::$strings["File upload failed. Possible system limit or action terminated."] = "Uploaden van bestand mislukt. Mogelijk systeemlimiet bereikt of actie afgebroken."; -App::$strings["Stored file could not be verified. Upload failed."] = "Opgeslagen bestand kon niet worden geverifieerd. Uploaden mislukt."; -App::$strings["Path not available."] = "Pad niet beschikbaar."; -App::$strings["Empty pathname"] = "Padnaam leeg"; -App::$strings["duplicate filename or path"] = "dubbele bestandsnaam of pad"; -App::$strings["Path not found."] = "Pad niet gevonden"; -App::$strings["mkdir failed."] = "directory aanmaken (mkdir) mislukt."; -App::$strings["database storage failed."] = "opslag in database mislukt."; -App::$strings["Empty path"] = "Ontbrekend bestandspad"; -App::$strings["Unable to obtain identity information from database"] = "Niet in staat om identiteitsinformatie uit de database te verkrijgen"; -App::$strings["Empty name"] = "Ontbrekende naam"; -App::$strings["Name too long"] = "Naam te lang"; -App::$strings["No account identifier"] = "Geen account-identificator"; -App::$strings["Nickname is required."] = "Bijnaam is verplicht"; -App::$strings["Reserved nickname. Please choose another."] = "Deze naam is gereserveerd. Kies een andere."; -App::$strings["Nickname has unsupported characters or is already being used on this site."] = "Deze naam heeft niet ondersteunde karakters of is al op deze hub in gebruik."; -App::$strings["Unable to retrieve created identity"] = "Niet in staat om aangemaakte identiteit te vinden"; -App::$strings["Default Profile"] = "Standaardprofiel"; -App::$strings["Requested channel is not available."] = "Opgevraagd kanaal is niet beschikbaar."; -App::$strings["Create New Profile"] = "Nieuw profiel aanmaken"; -App::$strings["Visible to everybody"] = "Voor iedereen zichtbaar"; -App::$strings["Gender:"] = "Geslacht:"; -App::$strings["Status:"] = "Status:"; -App::$strings["Homepage:"] = "Homepagina:"; -App::$strings["Online Now"] = "Nu online"; -App::$strings["Like this channel"] = "Vind dit kanaal leuk"; -App::$strings["j F, Y"] = "F j Y"; -App::$strings["j F"] = "F j"; -App::$strings["Birthday:"] = "Geboortedatum:"; -App::$strings["for %1\$d %2\$s"] = "voor %1\$d %2\$s"; -App::$strings["Sexual Preference:"] = "Seksuele voorkeur:"; -App::$strings["Tags:"] = "Tags:"; -App::$strings["Political Views:"] = "Politieke overtuigingen:"; -App::$strings["Religion:"] = "Religie:"; -App::$strings["Hobbies/Interests:"] = "Hobby's/interesses:"; -App::$strings["Likes:"] = "Houdt van:"; -App::$strings["Dislikes:"] = "Houdt niet van:"; -App::$strings["Contact information and Social Networks:"] = "Contactinformatie en sociale netwerken:"; -App::$strings["My other channels:"] = "Mijn andere kanalen"; -App::$strings["Musical interests:"] = "Muzikale interesses:"; -App::$strings["Books, literature:"] = "Boeken, literatuur:"; -App::$strings["Television:"] = "Televisie:"; -App::$strings["Film/dance/culture/entertainment:"] = "Films/dansen/cultuur/vermaak:"; -App::$strings["Love/Romance:"] = "Liefde/romantiek:"; -App::$strings["Work/employment:"] = "Werk/beroep:"; -App::$strings["School/education:"] = "School/opleiding:"; -App::$strings["Like this thing"] = "Vind dit ding leuk"; +App::$strings["Logged out."] = "Uitgelogd."; +App::$strings["Failed authentication"] = "Mislukte authenticatie"; +App::$strings["Can view my normal stream and posts"] = "Kan mijn normale kanaalstream en berichten bekijken"; +App::$strings["Can view my webpages"] = "Kan mijn pagina's bekijken"; +App::$strings["Can post on my channel page (\"wall\")"] = "Kan een bericht in mijn kanaal plaatsen"; +App::$strings["Can like/dislike stuff"] = "Kan dingen leuk of niet leuk vinden"; +App::$strings["Profiles and things other than posts/comments"] = "Profielen en dingen, buiten berichten en reacties"; +App::$strings["Can forward to all my channel contacts via post @mentions"] = "Kan naar al mijn kanaalconnecties berichten doorsturen met behulp van @vermeldingen+"; +App::$strings["Advanced - useful for creating group forum channels"] = "Geavanceerd - nuttig voor groepforums"; +App::$strings["Can chat with me (when available)"] = "Kan met mij chatten (wanneer beschikbaar)"; +App::$strings["Can write to my file storage and photos"] = "Kan foto's en andere bestanden aan mijn bestandsopslag toevoegen"; +App::$strings["Can edit my webpages"] = "Kan mijn pagina's bewerken"; +App::$strings["Somewhat advanced - very useful in open communities"] = "Enigszins geavanceerd (erg nuttig voor kanalen van forums/groepen)"; +App::$strings["Can administer my channel resources"] = "Kan mijn kanaal beheren"; +App::$strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "Zeer geavanceerd. Laat dit met rust, behalve als je weet wat je doet."; App::$strings["General Features"] = "Algemene functies"; App::$strings["Content Expiration"] = "Inhoud laten verlopen"; App::$strings["Remove posts/comments and/or private messages at a future time"] = "Berichten, reacties en/of privéberichten na een bepaalde tijd verwijderen"; @@ -2021,6 +1965,7 @@ App::$strings["Profile Import/Export"] = "Profiel importen/exporteren"; App::$strings["Save and load profile details across sites/channels"] = "Profielgegevens opslaan en in andere hubs/kanalen gebruiken."; App::$strings["Web Pages"] = "Webpagina's"; App::$strings["Provide managed web pages on your channel"] = "Sta beheerde webpagina's op jouw kanaal toe"; +App::$strings["Provide a wiki for your channel"] = "Voeg een wiki aan jouw kanaal toe"; App::$strings["Hide Rating"] = "Beoordelingen verbergen"; App::$strings["Hide the rating buttons on your channel and profile pages. Note: People can still rate you somewhere else."] = "Verbergt de beoordelingsknoppen op jouw kanaal- en profielpagina's. Let op: Mensen kunnen jou nog steeds ergens anders beoordelen. "; App::$strings["Private Notes"] = "Privé-aantekeningen"; @@ -2054,6 +1999,7 @@ App::$strings["Search by Date"] = "Zoek op datum"; App::$strings["Ability to select posts by date ranges"] = "Mogelijkheid om berichten op datum te filteren "; App::$strings["Privacy Groups"] = "Privacygroepen"; App::$strings["Enable management and selection of privacy groups"] = "Beheer en selectie van privacygroepen inschakelen"; +App::$strings["Saved Searches"] = "Opgeslagen zoekopdrachten"; App::$strings["Save search terms for re-use"] = "Sla zoekopdrachten op voor hergebruik"; App::$strings["Network Personal Tab"] = "Persoonlijke netwerktab"; App::$strings["Enable tab to display only Network posts that you've interacted on"] = "Sta het toe dat de tab netwerkberichten toont waarmee je interactie had"; @@ -2071,6 +2017,7 @@ App::$strings["Post Categories"] = "Categorieën berichten"; App::$strings["Add categories to your posts"] = "Voeg categorieën toe aan je berichten"; App::$strings["Emoji Reactions"] = "Emoji-reacties"; App::$strings["Add emoji reaction ability to posts"] = "Emoji-reacties in berichten toestaan"; +App::$strings["Saved Folders"] = "Bewaarde mappen"; App::$strings["Ability to file posts under folders"] = "Mogelijkheid om berichten in mappen op te slaan"; App::$strings["Dislike Posts"] = "Vind berichten niet leuk"; App::$strings["Ability to dislike posts/comments"] = "Mogelijkheid om berichten en reacties niet leuk te vinden"; @@ -2078,63 +2025,149 @@ App::$strings["Star Posts"] = "Geef berichten een ster"; App::$strings["Ability to mark special posts with a star indicator"] = "Mogelijkheid om speciale berichten met een ster te markeren"; App::$strings["Tag Cloud"] = "Tagwolk"; App::$strings["Provide a personal tag cloud on your channel page"] = "Zorgt voor een persoonlijke wolk met tags op jouw kanaalpagina"; -App::$strings["Embedded content"] = "Ingesloten (embedded) inhoud"; -App::$strings["Embedding disabled"] = "Insluiten (embedding) uitgeschakeld"; -App::$strings["Who can see this?"] = "Wie kan dit zien?"; -App::$strings["Custom selection"] = "Handmatige selectie"; -App::$strings["Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit the scope of \"Show\"."] = "Kies \"Tonen\" om weergave toe te staan. Met \"Niet tonen\" kan je uitzonderingen maken op \"Tonen\"."; -App::$strings["Show"] = "Tonen"; -App::$strings["Don't show"] = "Niet tonen"; -App::$strings["Other networks and post services"] = "Andere netwerken en diensten"; -App::$strings["Post permissions %s cannot be changed %s after a post is shared.
These permissions set who is allowed to view the post."] = "Permissies van berichten %s zijn niet meer te veranderen %s nadat een bericht is gedeeld.
Met deze permissies bepaal je wie het bericht kan zien."; -App::$strings["Logged out."] = "Uitgelogd."; -App::$strings["Failed authentication"] = "Mislukte authenticatie"; -App::$strings["Birthday"] = "Verjaardag of geboortedatum"; -App::$strings["Age: "] = "Leeftijd:"; -App::$strings["YYYY-MM-DD or MM-DD"] = "JJJJ-MM-DD of MM-DD"; -App::$strings["never"] = "nooit"; -App::$strings["less than a second ago"] = "minder dan een seconde geleden"; -App::$strings["__ctx:e.g. 22 hours ago, 1 minute ago__ %1\$d %2\$s ago"] = "%1\$d %2\$s geleden"; -App::$strings["__ctx:relative_date__ year"] = array( - 0 => "jaar", - 1 => "jaren", -); -App::$strings["__ctx:relative_date__ month"] = array( - 0 => "maand", - 1 => "maanden", -); -App::$strings["__ctx:relative_date__ week"] = array( - 0 => "week", - 1 => "weken", -); -App::$strings["__ctx:relative_date__ day"] = array( - 0 => "dag", - 1 => "dagen", -); -App::$strings["__ctx:relative_date__ hour"] = array( - 0 => "uur", - 1 => "uren", -); -App::$strings["__ctx:relative_date__ minute"] = array( - 0 => "minuut", - 1 => "minuten", -); -App::$strings["__ctx:relative_date__ second"] = array( - 0 => "seconde", - 1 => "seconden", -); -App::$strings["%1\$s's birthday"] = "Verjaardag van %1\$s"; -App::$strings["Happy Birthday %1\$s"] = "Gefeliciteerd met je verjaardag %1\$s"; App::$strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Een verwijderde collectie met deze naam is gereactiveerd. Bestaande itemrechten kunnen van toepassing zijn op deze collectie en toekomstige leden. Wanneer je dit niet zo bedoeld hebt, moet je een nieuwe collectie met een andere naam aanmaken."; App::$strings["Add new connections to this privacy group"] = "Voeg nieuwe connecties aan deze privacygroep toe"; App::$strings["edit"] = "bewerken"; App::$strings["Edit group"] = "Privacygroep bewerken"; App::$strings["Add privacy group"] = "Privacygroep toevoegen"; App::$strings["Channels not in any privacy group"] = "Kanalen die zich in geen enkele privacygroep bevinden"; +App::$strings["add"] = "toevoegen"; +App::$strings["l F d, Y \\@ g:i A"] = "l d F Y \\@ G:i"; +App::$strings["Starts:"] = "Start:"; +App::$strings["Finishes:"] = "Einde:"; +App::$strings["This event has been added to your calendar."] = "Dit evenement is aan jouw agenda toegevoegd."; +App::$strings["Not specified"] = "Niet aangegeven"; +App::$strings["Needs Action"] = "Actie vereist"; +App::$strings["Completed"] = "Voltooid"; +App::$strings["In Process"] = "In behandeling"; +App::$strings["Cancelled"] = "Geannuleerd"; +App::$strings["Not a valid email address"] = "Geen geldig e-mailadres"; +App::$strings["Your email domain is not among those allowed on this site"] = "Jouw e-maildomein is op deze hub niet toegestaan"; +App::$strings["Your email address is already registered at this site."] = "Jouw e-mailadres is al op deze hub geregistreerd."; +App::$strings["An invitation is required."] = "Een uitnodiging is vereist"; +App::$strings["Invitation could not be verified."] = "Uitnodiging kon niet geverifieerd worden"; +App::$strings["Please enter the required information."] = "Vul de vereiste informatie in."; +App::$strings["Failed to store account information."] = "Account-informatie kon niet opgeslagen worden."; +App::$strings["Registration confirmation for %s"] = "Registratiebevestiging voor %s"; +App::$strings["Registration request at %s"] = "Registratiebevestiging voor %s"; +App::$strings["your registration password"] = "jouw registratiewachtwoord"; +App::$strings["Registration details for %s"] = "Registratiegegevens voor %s"; +App::$strings["Account approved."] = "Account goedgekeurd"; +App::$strings["Registration revoked for %s"] = "Registratie ingetrokken voor %s"; +App::$strings["Click here to upgrade."] = "Klik hier om te upgraden."; +App::$strings["This action exceeds the limits set by your subscription plan."] = "Deze handeling overschrijdt de beperkingen die voor jouw abonnement gelden."; +App::$strings["This action is not available under your subscription plan."] = "Deze handeling is niet mogelijk met jouw abonnement."; +App::$strings["Channel is blocked on this site."] = "Kanaal is op deze hub geblokkeerd."; +App::$strings["Channel location missing."] = "Ontbrekende kanaallocatie."; +App::$strings["Response from remote channel was incomplete."] = "Antwoord van het kanaal op afstand was niet volledig."; +App::$strings["Channel was deleted and no longer exists."] = "Kanaal is verwijderd en bestaat niet meer."; +App::$strings["Protocol disabled."] = "Protocol uitgeschakeld."; +App::$strings["Channel discovery failed."] = "Kanaal ontdekken mislukt."; +App::$strings["Cannot connect to yourself."] = "Kan niet met jezelf verbinden"; +App::$strings["Item was not found."] = "Item niet gevonden"; +App::$strings["No source file."] = "Geen bronbestand."; +App::$strings["Cannot locate file to replace"] = "Kan het te vervangen bestand niet vinden"; +App::$strings["Cannot locate file to revise/update"] = "Kan het bestand wat aangepast moet worden niet vinden"; +App::$strings["File exceeds size limit of %d"] = "Bestand is groter dan de toegelaten %d"; +App::$strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Je hebt jouw limiet van %1$.0f MB opslagruimte voor bijlagen bereikt."; +App::$strings["File upload failed. Possible system limit or action terminated."] = "Uploaden van bestand mislukt. Mogelijk systeemlimiet bereikt of actie afgebroken."; +App::$strings["Stored file could not be verified. Upload failed."] = "Opgeslagen bestand kon niet worden geverifieerd. Uploaden mislukt."; +App::$strings["Path not available."] = "Pad niet beschikbaar."; +App::$strings["Empty pathname"] = "Padnaam leeg"; +App::$strings["duplicate filename or path"] = "dubbele bestandsnaam of pad"; +App::$strings["Path not found."] = "Pad niet gevonden"; +App::$strings["mkdir failed."] = "directory aanmaken (mkdir) mislukt."; +App::$strings["database storage failed."] = "opslag in database mislukt."; +App::$strings["Empty path"] = "Ontbrekend bestandspad"; +App::$strings["Image/photo"] = "Afbeelding/foto"; +App::$strings["Encrypted content"] = "Versleutelde inhoud"; +App::$strings["Install %s element: "] = "Installeer %s-element: "; +App::$strings["This post contains an installable %s element, however you lack permissions to install it on this site."] = "Dit bericht heeft een te installeren %s-element, maar je hebt geen permissies om het op deze hub te installeren."; +App::$strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s schreef het volgende %2\$s %3\$s"; +App::$strings["Click to open/close"] = "Klik om te openen of te sluiten"; +App::$strings["spoiler"] = "spoiler"; +App::$strings["Different viewers will see this text differently"] = "Deze tekst wordt per persoon anders weergeven."; +App::$strings["$1 wrote:"] = "$1 schreef:"; +App::$strings["(Unknown)"] = "(Onbekend)"; +App::$strings["Visible to anybody on the internet."] = "Voor iedereen op het internet zichtbaar."; +App::$strings["Visible to you only."] = "Alleen voor jou zichtbaar."; +App::$strings["Visible to anybody in this network."] = "Voor iedereen in dit netwerk zichtbaar."; +App::$strings["Visible to anybody authenticated."] = "Voor iedereen die geauthenticeerd is zichtbaar."; +App::$strings["Visible to anybody on %s."] = "Voor iedereen op %s zichtbaar."; +App::$strings["Visible to all connections."] = "Voor alle connecties zichtbaar."; +App::$strings["Visible to approved connections."] = "Voor alle geaccepteerde connecties zichtbaar."; +App::$strings["Visible to specific connections."] = "Voor specifieke connecties zichtbaar."; +App::$strings["Privacy group is empty."] = "Privacygroep is leeg"; +App::$strings["Privacy group: %s"] = "Privacygroep: %s"; +App::$strings["Connection not found."] = "Connectie niet gevonden."; +App::$strings["profile photo"] = "profielfoto"; +App::$strings["Embedded content"] = "Ingesloten (embedded) inhoud"; +App::$strings["Embedding disabled"] = "Insluiten (embedding) uitgeschakeld"; +App::$strings["System"] = "Systeem"; +App::$strings["New App"] = "Nieuwe app"; +App::$strings["Suggestions"] = "Voorgestelde kanalen"; +App::$strings["See more..."] = "Meer..."; +App::$strings["You have %1$.0f of %2$.0f allowed connections."] = "Je hebt %1$.0f van de %2$.0f toegestane connecties."; +App::$strings["Add New Connection"] = "Nieuwe connectie toevoegen"; +App::$strings["Enter channel address"] = "Vul kanaaladres in"; +App::$strings["Examples: bob@example.com, https://example.com/barbara"] = "Voorbeelden: bob@example.com, http://example.com/barbara"; +App::$strings["Notes"] = "Aantekeningen"; +App::$strings["Remove term"] = "Verwijder zoekterm"; +App::$strings["Everything"] = "Alles"; +App::$strings["Archives"] = "Archieven"; +App::$strings["Refresh"] = "Vernieuwen"; +App::$strings["Account settings"] = "Account"; +App::$strings["Channel settings"] = "Kanaal"; +App::$strings["Additional features"] = "Extra functies"; +App::$strings["Feature/Addon settings"] = "Plugin-instellingen"; +App::$strings["Display settings"] = "Weergave"; +App::$strings["Manage locations"] = "Locaties beheren"; +App::$strings["Export channel"] = "Kanaal exporteren"; +App::$strings["Connected apps"] = "Verbonden applicaties"; +App::$strings["Premium Channel Settings"] = "Instellingen premiumkanaal"; +App::$strings["Private Mail Menu"] = "Privéberichten"; +App::$strings["Combined View"] = "Gecombineerd postvak"; +App::$strings["Conversations"] = "Conversaties"; +App::$strings["Received Messages"] = "Ontvangen berichten"; +App::$strings["Sent Messages"] = "Verzonden berichten"; +App::$strings["No messages."] = "Geen berichten"; +App::$strings["Delete conversation"] = "Verwijder conversatie"; +App::$strings["Events Tools"] = "Agenda-hulpmiddelen"; +App::$strings["Export Calendar"] = "Exporteren"; +App::$strings["Import Calendar"] = "Importeren"; +App::$strings["Overview"] = "Overzicht"; +App::$strings["Chat Members"] = "Chatleden"; +App::$strings["Wiki List"] = "Wiki's"; +App::$strings["Wiki Pages"] = "Wikipagina's"; +App::$strings["Bookmarked Chatrooms"] = "Bladwijzers van chatkanalen"; +App::$strings["Suggested Chatrooms"] = "Voorgestelde chatkanalen"; +App::$strings["photo/image"] = "foto/afbeelding"; +App::$strings["Click to show more"] = "Klik voor meer"; +App::$strings["Rating Tools"] = "Beoordelingen"; +App::$strings["Rate Me"] = "Beoordeel mij"; +App::$strings["View Ratings"] = "Bekijk beoordelingen"; +App::$strings["Forums"] = "Forums"; +App::$strings["Tasks"] = "Taken"; +App::$strings["Documentation"] = "Documentatie"; +App::$strings["Project/Site Information"] = "Project- en hub-informatie"; +App::$strings["For Members"] = "Voor leden"; +App::$strings["For Administrators"] = "Voor beheerders"; +App::$strings["For Developers"] = "Voor ontwikkelaars"; +App::$strings["Member registrations waiting for confirmation"] = "Accounts die op goedkeuring wachten"; +App::$strings["Inspect queue"] = "Inspecteer berichtenwachtrij"; +App::$strings["DB updates"] = "Database-updates"; +App::$strings["Plugin Features"] = "Plugin-opties"; +App::$strings[" and "] = " en "; +App::$strings["public profile"] = "openbaar profiel"; +App::$strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s veranderde %2\$s naar “%3\$s”"; +App::$strings["Visit %1\$s's %2\$s"] = "Bezoek het %2\$s van %1\$s"; +App::$strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s heeft een aangepaste %2\$s, %3\$s veranderd."; +App::$strings["Attachments:"] = "Bijlagen:"; +App::$strings["\$Projectname event notification:"] = "Notificatie \$Projectname-gebeurtenis:"; App::$strings["Delete this item?"] = "Dit item verwijderen?"; -App::$strings["[-] show less"] = "[-] minder reacties weergeven"; -App::$strings["[+] expand"] = "[+] uitklappen"; -App::$strings["[-] collapse"] = "[-] inklappen"; +App::$strings["%s show less"] = "%s minder reacties weergeven"; +App::$strings["%s expand"] = "%s uitklappen"; +App::$strings["%s collapse"] = "%s inklappen"; App::$strings["Password too short"] = "Wachtwoord te kort"; App::$strings["Passwords do not match"] = "Wachtwoorden komen niet overeen"; App::$strings["everybody"] = "iedereen"; @@ -2189,72 +2222,78 @@ App::$strings["__ctx:calendar__ month"] = "maand"; App::$strings["__ctx:calendar__ week"] = "week"; App::$strings["__ctx:calendar__ day"] = "dag"; App::$strings["__ctx:calendar__ All day"] = "hele dag"; -App::$strings["view full size"] = "volledige grootte tonen"; -App::$strings["No Subject"] = "Geen onderwerp"; -App::$strings["Friendica"] = "Friendica"; -App::$strings["OStatus"] = "OStatus"; -App::$strings["GNU-Social"] = "GNU social"; -App::$strings["RSS/Atom"] = "RSS/Atom"; -App::$strings["Diaspora"] = "Diaspora"; -App::$strings["Facebook"] = "Facebook"; -App::$strings["Zot"] = "Zot"; -App::$strings["LinkedIn"] = "LinkedIn"; -App::$strings["XMPP/IM"] = "XMPP/IM"; -App::$strings["MySpace"] = "MySpace"; -App::$strings["Image exceeds website size limit of %lu bytes"] = "Afbeelding is groter dan op deze hub toegestane limiet van %lu bytes"; -App::$strings["Image file is empty."] = "Afbeeldingsbestand is leeg"; -App::$strings["Photo storage failed."] = "Foto kan niet worden opgeslagen"; -App::$strings["a new photo"] = "een nieuwe foto"; -App::$strings["__ctx:photo_upload__ %1\$s posted %2\$s to %3\$s"] = "%1\$s plaatste %2\$s op %3\$s"; -App::$strings["Upload New Photos"] = "Nieuwe foto's uploaden"; +App::$strings["%d invitation available"] = array( + 0 => "%d uitnodiging beschikbaar", + 1 => "%d uitnodigingen beschikbaar", +); +App::$strings["Find Channels"] = "Kanalen vinden"; +App::$strings["Enter name or interest"] = "Vul naam of interesse in"; +App::$strings["Connect/Follow"] = "Verbinden/volgen"; +App::$strings["Examples: Robert Morgenstein, Fishing"] = "Voorbeeld: Robert Morgenstein, vissen"; +App::$strings["Random Profile"] = "Willekeurig profiel"; +App::$strings["Invite Friends"] = "Vrienden uitnodigen"; +App::$strings["Advanced example: name=fred and country=iceland"] = "Geavanceerd voorbeeld (Engels): name=jan en country=nederland"; +App::$strings["%d connection in common"] = array( + 0 => "%d gemeenschappelijke connectie", + 1 => "%d gemeenschappelijke connecties", +); +App::$strings["show more"] = "meer connecties weergeven"; +App::$strings["Directory Options"] = "Opties kanalengids"; +App::$strings["Safe Mode"] = "Veilig zoeken"; +App::$strings["Public Forums Only"] = "Alleen openbare forums"; +App::$strings["This Website Only"] = "Alleen deze hub"; +App::$strings["No recipient provided."] = "Geen ontvanger opgegeven."; +App::$strings["[no subject]"] = "[geen onderwerp]"; +App::$strings["Unable to determine sender."] = "Afzender kan niet bepaald worden."; +App::$strings["Stored post could not be verified."] = "Opgeslagen bericht kon niet worden geverifieerd."; +App::$strings["Who can see this?"] = "Wie kan dit zien?"; +App::$strings["Custom selection"] = "Handmatige selectie"; +App::$strings["Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit the scope of \"Show\"."] = "Kies \"Tonen\" om weergave toe te staan. Met \"Niet tonen\" kan je uitzonderingen maken op \"Tonen\"."; +App::$strings["Show"] = "Tonen"; +App::$strings["Don't show"] = "Niet tonen"; +App::$strings["Other networks and post services"] = "Andere netwerken en diensten"; +App::$strings["Post permissions %s cannot be changed %s after a post is shared.
These permissions set who is allowed to view the post."] = "Permissies van berichten %s zijn niet meer te veranderen %s nadat een bericht is gedeeld.
Met deze permissies bepaal je wie het bericht kan zien."; +App::$strings["Birthday"] = "Verjaardag of geboortedatum"; +App::$strings["Age: "] = "Leeftijd:"; +App::$strings["YYYY-MM-DD or MM-DD"] = "JJJJ-MM-DD of MM-DD"; +App::$strings["never"] = "nooit"; +App::$strings["less than a second ago"] = "minder dan een seconde geleden"; +App::$strings["__ctx:e.g. 22 hours ago, 1 minute ago__ %1\$d %2\$s ago"] = "%1\$d %2\$s geleden"; +App::$strings["__ctx:relative_date__ year"] = array( + 0 => "jaar", + 1 => "jaren", +); +App::$strings["__ctx:relative_date__ month"] = array( + 0 => "maand", + 1 => "maanden", +); +App::$strings["__ctx:relative_date__ week"] = array( + 0 => "week", + 1 => "weken", +); +App::$strings["__ctx:relative_date__ day"] = array( + 0 => "dag", + 1 => "dagen", +); +App::$strings["__ctx:relative_date__ hour"] = array( + 0 => "uur", + 1 => "uren", +); +App::$strings["__ctx:relative_date__ minute"] = array( + 0 => "minuut", + 1 => "minuten", +); +App::$strings["__ctx:relative_date__ second"] = array( + 0 => "seconde", + 1 => "seconden", +); +App::$strings["%1\$s's birthday"] = "Verjaardag van %1\$s"; +App::$strings["Happy Birthday %1\$s"] = "Gefeliciteerd met je verjaardag %1\$s"; +App::$strings["Public Timeline"] = "Openbare tijdlijn"; App::$strings["Invalid data packet"] = "Datapakket ongeldig"; App::$strings["Unable to verify channel signature"] = "Kanaalkenmerk kon niet worden geverifieerd. "; App::$strings["Unable to verify site signature for %s"] = "Hubkenmerk voor %s kon niet worden geverifieerd"; App::$strings["invalid target signature"] = "ongeldig doelkenmerk"; -App::$strings["New Page"] = "Nieuwe pagina"; -App::$strings["Title"] = "Titel"; -App::$strings["Can view my normal stream and posts"] = "Kan mijn normale kanaalstream en berichten bekijken"; -App::$strings["Can view my default channel profile"] = "Kan mijn standaard kanaalprofiel bekijken"; -App::$strings["Can view my connections"] = "Kan een lijst met mijn connecties bekijken"; -App::$strings["Can view my file storage and photos"] = "Kan mijn foto's en andere bestanden bekijken"; -App::$strings["Can view my webpages"] = "Kan mijn pagina's bekijken"; -App::$strings["Can send me their channel stream and posts"] = "Kan mij de inhoud van hun kanaal en berichten sturen"; -App::$strings["Can post on my channel page (\"wall\")"] = "Kan een bericht in mijn kanaal plaatsen"; -App::$strings["Can comment on or like my posts"] = "Kan op mijn berichten reageren of deze (niet) leuk vinden"; -App::$strings["Can send me private mail messages"] = "Kan mij privéberichten sturen"; -App::$strings["Can like/dislike stuff"] = "Kan dingen leuk of niet leuk vinden"; -App::$strings["Profiles and things other than posts/comments"] = "Profielen en dingen, buiten berichten en reacties"; -App::$strings["Can forward to all my channel contacts via post @mentions"] = "Kan naar al mijn kanaalconnecties berichten doorsturen met behulp van @vermeldingen+"; -App::$strings["Advanced - useful for creating group forum channels"] = "Geavanceerd - nuttig voor groepforums"; -App::$strings["Can chat with me (when available)"] = "Kan met mij chatten (wanneer beschikbaar)"; -App::$strings["Can write to my file storage and photos"] = "Kan foto's en andere bestanden aan mijn bestandsopslag toevoegen"; -App::$strings["Can edit my webpages"] = "Kan mijn pagina's bewerken"; -App::$strings["Can source my public posts in derived channels"] = "Kan mijn openbare berichten als bron voor andere kanalen gebruiken"; -App::$strings["Somewhat advanced - very useful in open communities"] = "Enigszins geavanceerd (erg nuttig voor kanalen van forums/groepen)"; -App::$strings["Can administer my channel resources"] = "Kan mijn kanaal beheren"; -App::$strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "Zeer geavanceerd. Laat dit met rust, behalve als je weet wat je doet."; -App::$strings["Social Networking"] = "Sociaal netwerk"; -App::$strings["Social - Mostly Public"] = "Sociaal - Vrijwel alles openbaar"; -App::$strings["Social - Restricted"] = "Sociaal - Beperkt zichtbaar"; -App::$strings["Social - Private"] = "Sociaal - Verborgen kanaal"; -App::$strings["Community Forum"] = "Groepsforum"; -App::$strings["Forum - Mostly Public"] = "Forum - Vrijwel alles openbaar"; -App::$strings["Forum - Restricted"] = "Forum - Beperkt zichtbaar"; -App::$strings["Forum - Private"] = "Forum - Verborgen kanaal"; -App::$strings["Feed Republish"] = "Feed herpubliceren"; -App::$strings["Feed - Mostly Public"] = "Feed - Vrijwel alles openbaar"; -App::$strings["Feed - Restricted"] = "Feed - Beperkt zichtbaar"; -App::$strings["Special Purpose"] = "Speciaal doel"; -App::$strings["Special - Celebrity/Soapbox"] = "Speciaal - Beroemdheid/alleen volgen"; -App::$strings["Special - Group Repository"] = "Speciaal - Groepsopslag"; -App::$strings["Custom/Expert Mode"] = "Expertmodus/handmatig aanpassen"; -App::$strings[" and "] = " en "; -App::$strings["public profile"] = "openbaar profiel"; -App::$strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s veranderde %2\$s naar “%3\$s”"; -App::$strings["Visit %1\$s's %2\$s"] = "Bezoek het %2\$s van %1\$s"; -App::$strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s heeft een aangepaste %2\$s, %3\$s veranderd."; -App::$strings["Attachments:"] = "Bijlagen:"; -App::$strings["\$Projectname event notification:"] = "Notificatie \$Projectname-gebeurtenis:"; App::$strings["Focus (Hubzilla default)"] = "Focus (Hubzilla-standaard)"; App::$strings["Theme settings"] = "Thema-instellingen"; App::$strings["Select scheme"] = "Kies schema van thema"; @@ -2294,6 +2333,7 @@ App::$strings["__ctx:opensearch__ \$Projectname"] = "\$Projectname"; App::$strings["Update %s failed. See error logs."] = "Update %s mislukt. Zie foutenlogboek."; App::$strings["Update Error at %s"] = "Update-fout op %s"; App::$strings["Create an account to access services and applications within the Hubzilla"] = "Maak een account aan om toegang te krijgen tot diensten en toepassingen van Hubzilla"; +App::$strings["Login/Email"] = "E-mailadres of inlognaam"; App::$strings["Password"] = "Wachtwoord"; App::$strings["Remember me"] = "Aangemeld blijven"; App::$strings["Forgot your password?"] = "Wachtwoord vergeten?"; From 12952c982128564e4b0c2add182e4ec6eb53430c Mon Sep 17 00:00:00 2001 From: redmatrix Date: Thu, 28 Jul 2016 13:10:19 -0700 Subject: [PATCH 017/819] issue #466, sql typo --- Zotlabs/Module/Ping.php | 2 +- include/api.php | 2 +- library/asn1.php | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Zotlabs/Module/Ping.php b/Zotlabs/Module/Ping.php index 5cbf45daa..e01c3b49a 100644 --- a/Zotlabs/Module/Ping.php +++ b/Zotlabs/Module/Ping.php @@ -173,7 +173,7 @@ class Ping extends \Zotlabs\Web\Controller { ); break; case 'all_events': - $r = q("update event set `dimissed` = 1 where `dismissed` = 0 and uid = %d AND dtstart < '%s' AND dtstart > '%s' ", + $r = q("update event set `dismissed` = 1 where `dismissed` = 0 and uid = %d AND dtstart < '%s' AND dtstart > '%s' ", intval(local_channel()), dbesc(datetime_convert('UTC', date_default_timezone_get(), 'now + ' . intval($evdays) . ' days')), dbesc(datetime_convert('UTC', date_default_timezone_get(), 'now - 1 days')) diff --git a/include/api.php b/include/api.php index df6aba957..b11e2c351 100644 --- a/include/api.php +++ b/include/api.php @@ -13,7 +13,7 @@ require_once('include/api_auth.php'); /* * - * Red API. Loosely based on and possibly compatible with a Twitter-Like API but all similarities end there. + * Hubzilla API. Loosely based on and possibly compatible with Twitter-Like (v1.0) API but all similarities end there. * */ diff --git a/library/asn1.php b/library/asn1.php index e84398bf6..6ab8c6210 100644 --- a/library/asn1.php +++ b/library/asn1.php @@ -159,7 +159,7 @@ class ASN_BASE { } $length = $tempLength; } - $data = substr($string, $p, $length); + $data = substr($string, $p, intval($length)); $parsed[] = self::parseASNData($type, $data, $level, $maxLevels); $p = $p + $length; } From 2d916b531b0078002232209907b414b6e2a07722 Mon Sep 17 00:00:00 2001 From: redmatrix Date: Thu, 28 Jul 2016 13:13:59 -0700 Subject: [PATCH 018/819] Revert "issue #466, sql typo" This reverts commit 4ce8f965aab8cfb09fc9f102f771cf67a7ee84fa. --- Zotlabs/Module/Ping.php | 2 +- include/api.php | 2 +- library/asn1.php | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Zotlabs/Module/Ping.php b/Zotlabs/Module/Ping.php index e01c3b49a..5cbf45daa 100644 --- a/Zotlabs/Module/Ping.php +++ b/Zotlabs/Module/Ping.php @@ -173,7 +173,7 @@ class Ping extends \Zotlabs\Web\Controller { ); break; case 'all_events': - $r = q("update event set `dismissed` = 1 where `dismissed` = 0 and uid = %d AND dtstart < '%s' AND dtstart > '%s' ", + $r = q("update event set `dimissed` = 1 where `dismissed` = 0 and uid = %d AND dtstart < '%s' AND dtstart > '%s' ", intval(local_channel()), dbesc(datetime_convert('UTC', date_default_timezone_get(), 'now + ' . intval($evdays) . ' days')), dbesc(datetime_convert('UTC', date_default_timezone_get(), 'now - 1 days')) diff --git a/include/api.php b/include/api.php index b11e2c351..df6aba957 100644 --- a/include/api.php +++ b/include/api.php @@ -13,7 +13,7 @@ require_once('include/api_auth.php'); /* * - * Hubzilla API. Loosely based on and possibly compatible with Twitter-Like (v1.0) API but all similarities end there. + * Red API. Loosely based on and possibly compatible with a Twitter-Like API but all similarities end there. * */ diff --git a/library/asn1.php b/library/asn1.php index 6ab8c6210..e84398bf6 100644 --- a/library/asn1.php +++ b/library/asn1.php @@ -159,7 +159,7 @@ class ASN_BASE { } $length = $tempLength; } - $data = substr($string, $p, intval($length)); + $data = substr($string, $p, $length); $parsed[] = self::parseASNData($type, $data, $level, $maxLevels); $p = $p + $length; } From 58cf5f310d89026fb526e201c301075725044e48 Mon Sep 17 00:00:00 2001 From: redmatrix Date: Thu, 28 Jul 2016 13:14:48 -0700 Subject: [PATCH 019/819] sql typo --- Zotlabs/Module/Ping.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Zotlabs/Module/Ping.php b/Zotlabs/Module/Ping.php index 5cbf45daa..e01c3b49a 100644 --- a/Zotlabs/Module/Ping.php +++ b/Zotlabs/Module/Ping.php @@ -173,7 +173,7 @@ class Ping extends \Zotlabs\Web\Controller { ); break; case 'all_events': - $r = q("update event set `dimissed` = 1 where `dismissed` = 0 and uid = %d AND dtstart < '%s' AND dtstart > '%s' ", + $r = q("update event set `dismissed` = 1 where `dismissed` = 0 and uid = %d AND dtstart < '%s' AND dtstart > '%s' ", intval(local_channel()), dbesc(datetime_convert('UTC', date_default_timezone_get(), 'now + ' . intval($evdays) . ' days')), dbesc(datetime_convert('UTC', date_default_timezone_get(), 'now - 1 days')) From bc74425872704ad955b37de18639ec831a245761 Mon Sep 17 00:00:00 2001 From: redmatrix Date: Thu, 28 Jul 2016 16:02:51 -0700 Subject: [PATCH 020/819] Revert "Merge branch '1.10RC' of https://github.com/redmatrix/hubzilla into 1.10RC_merge" This reverts commit 35f17acb388f68745068d6a60e12c7b777b92282, reversing changes made to 58cf5f310d89026fb526e201c301075725044e48. --- Zotlabs/Access/PermissionLimits.php | 36 - Zotlabs/Access/PermissionRoles.php | 215 - Zotlabs/Access/Permissions.php | 116 - Zotlabs/Daemon/Onepoll.php | 4 +- Zotlabs/Lib/AbConfig.php | 2 +- Zotlabs/Lib/Cache.php | 5 - Zotlabs/Lib/PConfig.php | 17 +- Zotlabs/Lib/PermissionDescription.php | 15 +- Zotlabs/Module/Acl.php | 54 +- Zotlabs/Module/Connedit.php | 89 +- Zotlabs/Module/Editpost.php | 4 +- Zotlabs/Module/Editwebpage.php | 4 +- Zotlabs/Module/File_upload.php | 40 - Zotlabs/Module/Follow.php | 5 +- Zotlabs/Module/Id.php | 319 + Zotlabs/Module/Import.php | 9 - Zotlabs/Module/Item.php | 12 +- Zotlabs/Module/Like.php | 31 +- Zotlabs/Module/Mail.php | 12 +- Zotlabs/Module/Manage.php | 4 +- Zotlabs/Module/Openid.php | 198 + Zotlabs/Module/Probe.php | 2 + Zotlabs/Module/Profiles.php | 4 +- Zotlabs/Module/Ratingsearch.php | 4 +- Zotlabs/Module/Rmagic.php | 13 + Zotlabs/Module/Settings.php | 58 +- Zotlabs/Storage/BasicAuth.php | 2 +- Zotlabs/Storage/Browser.php | 24 +- Zotlabs/Web/Router.php | 1 - Zotlabs/Web/WebServer.php | 2 +- boot.php | 71 +- include/api.php | 110 +- include/api_auth.php | 2 - include/attach.php | 1 - include/channel.php | 107 +- include/config.php | 1 + include/connections.php | 10 +- include/conversation.php | 6 +- include/follow.php | 48 +- include/import.php | 45 +- include/items.php | 39 +- include/oembed.php | 11 - include/perm_upgrade.php | 236 - include/permissions.php | 519 +- include/photos.php | 2 +- include/security.php | 41 +- include/text.php | 49 +- include/widgets.php | 11 +- include/zot.php | 194 +- install/schema_mysql.sql | 1 - install/schema_postgres.sql | 1 - install/update.php | 29 +- library/readmore.js/README.md | 22 +- .../hubzilla-custom-fix-webkit-browsers.patch | 13 - library/readmore.js/readmore.js | 28 +- util/hmessages.po | 3290 +++--- util/po2php.php | 4 +- vendor/sabre/dav/lib/DAV/Browser/Plugin.php | 6 +- view/ca/hmessages.po | 9660 ++++++++-------- view/ca/hstrings.php | 2196 ++-- view/css/conversation.css | 6 - view/css/mod_cloud.css | 6 - view/de/hmessages.po | 9616 ++++++++-------- view/de/hstrings.php | 2154 ++-- view/es-es/hmessages.po | 9616 ++++++++-------- view/es-es/hstrings.php | 2152 ++-- view/fr/hmessages.po | 9594 ++++++++-------- view/fr/hstrings.php | 2152 ++-- view/it/hmessages.po | 9800 ++++++++--------- view/it/hstrings.php | 2200 ++-- view/js/main.js | 4 +- view/js/mod_cloud.js | 190 - view/nb-no/hmessages.po | 9458 ++++++++-------- view/nb-no/hstrings.php | 2136 ++-- view/nl/hmessages.po | 9614 ++++++++-------- view/nl/hstrings.php | 2152 ++-- view/theme/redbasic/css/style.css | 3 +- view/tpl/cloud_actionspanel.tpl | 32 +- view/tpl/cloud_directory.tpl | 2 +- view/tpl/jot-header.tpl | 82 +- 80 files changed, 43275 insertions(+), 45748 deletions(-) delete mode 100644 Zotlabs/Access/PermissionLimits.php delete mode 100644 Zotlabs/Access/PermissionRoles.php delete mode 100644 Zotlabs/Access/Permissions.php delete mode 100644 Zotlabs/Module/File_upload.php create mode 100644 Zotlabs/Module/Id.php create mode 100644 Zotlabs/Module/Openid.php delete mode 100644 include/perm_upgrade.php delete mode 100644 library/readmore.js/hubzilla-custom-fix-webkit-browsers.patch delete mode 100644 view/js/mod_cloud.js diff --git a/Zotlabs/Access/PermissionLimits.php b/Zotlabs/Access/PermissionLimits.php deleted file mode 100644 index 909b654d5..000000000 --- a/Zotlabs/Access/PermissionLimits.php +++ /dev/null @@ -1,36 +0,0 @@ - $v) { - if(strstr($k,'view')) - $limits[$k] = PERMS_PUBLIC; - else - $limits[$k] = PERMS_SPECIFIC; - } - return $limits; - } - - static public function Set($channel_id,$perm,$perm_limit) { - ZLib\PConfig::Set($channel_id,'perm_limits',$perm,$perm_limit); - } - - static public function Get($channel_id,$perm = '') { - if($perm) { - return Zlib\PConfig::Get($channel_id,'perm_limits',$perm); - } - else { - Zlib\PConfig::Load($channel_id); - if(array_key_exists($channel_id,\App::$config) && array_key_exists('perm_limits',\App::$config[$channel_id])) - return \App::$config[$channel_id]['perm_limits']; - return false; - } - } -} \ No newline at end of file diff --git a/Zotlabs/Access/PermissionRoles.php b/Zotlabs/Access/PermissionRoles.php deleted file mode 100644 index 8b116adc5..000000000 --- a/Zotlabs/Access/PermissionRoles.php +++ /dev/null @@ -1,215 +0,0 @@ - [ - 'social' => t('Social - Mostly Public'), - 'social_restricted' => t('Social - Restricted'), - 'social_private' => t('Social - Private') - ], - - t('Community Forum') => [ - 'forum' => t('Forum - Mostly Public'), - 'forum_restricted' => t('Forum - Restricted'), - 'forum_private' => t('Forum - Private') - ], - - t('Feed Republish') => [ - 'feed' => t('Feed - Mostly Public'), - 'feed_restricted' => t('Feed - Restricted') - ], - - t('Special Purpose') => [ - 'soapbox' => t('Special - Celebrity/Soapbox'), - 'repository' => t('Special - Group Repository') - ], - - t('Other') => [ - 'custom' => t('Custom/Expert Mode') - ] - - ]; - - return $roles; - } - - - -} \ No newline at end of file diff --git a/Zotlabs/Access/Permissions.php b/Zotlabs/Access/Permissions.php deleted file mode 100644 index 61ea51a48..000000000 --- a/Zotlabs/Access/Permissions.php +++ /dev/null @@ -1,116 +0,0 @@ - t('Can view my channel stream and posts'), - 'send_stream' => t('Can send me their channel stream and posts'), - 'view_profile' => t('Can view my default channel profile'), - 'view_contacts' => t('Can view my connections'), - 'view_storage' => t('Can view my file storage and photos'), - 'write_storage' => t('Can upload/modify my file storage and photos'), - 'view_pages' => t('Can view my channel webpages'), - 'write_pages' => t('Can create/edit my channel webpages'), - 'post_wall' => t('Can post on my channel (wall) page'), - 'post_comments' => t('Can comment on or like my posts'), - 'post_mail' => t('Can send me private mail messages'), - 'post_like' => t('Can like/dislike profiles and profile things'), - 'tag_deliver' => t('Can forward to all my channel connections via @+ mentions in posts'), - 'chat' => t('Can chat with me'), - 'republish' => t('Can source my public posts in derived channels'), - 'delegate' => t('Can administer my channel') - ]; - - $x = array('permissions' => $perms, 'filter' => $filter); - call_hooks('permissions_list',$x); - return($x['permissions']); - - } - - static public function BlockedAnonPerms() { - - // Perms from the above list that are blocked from anonymous observers. - // e.g. you must be authenticated. - - $res = array(); - $perms = PermissionLimits::Std_limits(); - foreach($perms as $perm => $limit) { - if($limit != PERMS_PUBLIC) { - $res[] = $perm; - } - } - - $x = array('permissions' => $res); - call_hooks('write_perms',$x); - return($x['permissions']); - - } - - // converts [ 0 => 'view_stream', ... ] - // to [ 'view_stream' => 1 ] - // for any permissions in $arr; - // Undeclared permissions are set to 0 - - static public function FilledPerms($arr) { - $everything = self::Perms(); - $ret = []; - foreach($everything as $k => $v) { - if(in_array($k,$arr)) - $ret[$k] = 1; - else - $ret[$k] = 0; - } - return $ret; - - } - - static public function FilledAutoperms($channel_id) { - if(! intval(get_pconfig($channel_id,'system','autoperms'))) - return false; - - $arr = []; - $r = q("select * from pconfig where uid = %d and cat = 'autoperms'", - intval($channel_id) - ); - if($r) { - foreach($r as $rr) { - $arr[$rr['k']] = $arr[$rr['v']]; - } - } - return $arr; - } - - static public function PermsCompare($p1,$p2) { - foreach($p1 as $k => $v) { - if(! array_key_exists($k,$p2)) - return false; - if($p1[$k] != $p2[$k]) - return false; - } - return true; - } -} \ No newline at end of file diff --git a/Zotlabs/Daemon/Onepoll.php b/Zotlabs/Daemon/Onepoll.php index 21c46cec5..036a4991b 100644 --- a/Zotlabs/Daemon/Onepoll.php +++ b/Zotlabs/Daemon/Onepoll.php @@ -102,9 +102,7 @@ class Onepoll { $fetch_feed = true; $x = null; - $can_view_stream = intval(get_abconfig($importer_uid,$contact['abook_xchan'],'their_perms','view_stream')); - - if(! $can_view_stream) + if(! ($contact['abook_their_perms'] & PERMS_R_STREAM )) $fetch_feed = false; if($fetch_feed) { diff --git a/Zotlabs/Lib/AbConfig.php b/Zotlabs/Lib/AbConfig.php index cb5d96951..cab59abbd 100644 --- a/Zotlabs/Lib/AbConfig.php +++ b/Zotlabs/Lib/AbConfig.php @@ -7,7 +7,7 @@ class AbConfig { static public function Load($chan,$xhash,$family = '') { if($family) - $where = sprintf(" and cat = '%s' ",dbesc($family)); + $where = sprintf(" and family = '%s' ",dbesc($family)); $r = q("select * from abconfig where chan = %d and xchan = '%s' $where", intval($chan), dbesc($xhash) diff --git a/Zotlabs/Lib/Cache.php b/Zotlabs/Lib/Cache.php index f211269be..35c8f56ad 100644 --- a/Zotlabs/Lib/Cache.php +++ b/Zotlabs/Lib/Cache.php @@ -8,9 +8,6 @@ namespace Zotlabs\Lib; class Cache { public static function get($key) { - - $key = substr($key,0,254); - $r = q("SELECT v FROM cache WHERE k = '%s' limit 1", dbesc($key) ); @@ -22,8 +19,6 @@ class Cache { public static function set($key,$value) { - $key = substr($key,0,254); - $r = q("SELECT * FROM cache WHERE k = '%s' limit 1", dbesc($key) ); diff --git a/Zotlabs/Lib/PConfig.php b/Zotlabs/Lib/PConfig.php index a481667a5..195321375 100644 --- a/Zotlabs/Lib/PConfig.php +++ b/Zotlabs/Lib/PConfig.php @@ -17,20 +17,12 @@ class PConfig { */ static public function Load($uid) { - if(is_null($uid) || $uid === false) + if($uid === false) return false; if(! array_key_exists($uid, \App::$config)) \App::$config[$uid] = array(); - if(! is_array(\App::$config)) { - btlogger('App::$config not an array: ' . $uid); - } - - if(! is_array(\App::$config[$uid])) { - btlogger('App::$config[$uid] not an array: ' . $uid); - } - $r = q("SELECT * FROM pconfig WHERE uid = %d", intval($uid) ); @@ -69,7 +61,7 @@ class PConfig { static public function Get($uid,$family,$key,$instore = false) { - if(is_null($uid) || $uid === false) + if($uid === false) return false; if(! array_key_exists($uid, \App::$config)) @@ -110,7 +102,7 @@ class PConfig { // we provide a function backtrace in the logs so that we can find // and fix the calling function. - if(is_null($uid) || $uid === false) { + if($uid === false) { btlogger('UID is FALSE!', LOGGER_NORMAL, LOG_ERR); return; } @@ -180,9 +172,6 @@ class PConfig { static public function Delete($uid, $family, $key) { - if(is_null($uid) || $uid === false) - return false; - $ret = false; if(array_key_exists($key, \App::$config[$uid][$family])) diff --git a/Zotlabs/Lib/PermissionDescription.php b/Zotlabs/Lib/PermissionDescription.php index b6c6dd29d..55aac2dea 100644 --- a/Zotlabs/Lib/PermissionDescription.php +++ b/Zotlabs/Lib/PermissionDescription.php @@ -78,13 +78,22 @@ class PermissionDescription { $result = null; - $global_perms = \Zotlabs\Access\Permissions::Perms(); + $global_perms = get_perms(); if (array_key_exists($permname, $global_perms)) { - $channelPerm = \Zotlabs\Access\PermissionLimits::Get(\App::$channel['channel_id'],$permname); + $permDetails = $global_perms[$permname]; - $result = new PermissionDescription('', $channelPerm); + // It should be OK to always just read the permissions from App::$channel + // + // App::$profile is a union of channel and profile fields. + // The distinction is basically that App::$profile is pointing to the resource + // being observed. App::$channel is referring to the current logged-in channel + // member (if this is a local channel) e.g. the observer. We only show the ACL + // widget to the page owner (observer and observed are the same) so in that case + // I believe either may be safely used here. + $channelPerm = \App::$channel[$permDetails[0]]; + $result = new PermissionDescription($permDetails[1], $channelPerm); } else { // The acl dialog can handle null arguments, but it shouldn't happen logger('null PermissionDescription from unknown global permission: ' . $permname ,LOGGER_DEBUG, LOG_ERROR); diff --git a/Zotlabs/Module/Acl.php b/Zotlabs/Module/Acl.php index 03dc6c5d3..76a001fdd 100644 --- a/Zotlabs/Module/Acl.php +++ b/Zotlabs/Module/Acl.php @@ -58,23 +58,7 @@ class Acl extends \Zotlabs\Web\Controller { if( (! local_channel()) && (! ($type == 'x' || $type == 'c'))) killme(); - - $permitted = []; - - if(in_array($type, [ 'm', 'a', 'c' ])) { - - // These queries require permission checking. We'll create a simple array of xchan_hash for those with - // the requisite permissions which we can check against. - - $x = q("select xchan from abconfig where chan = %d and cat = 'their_perms' and k = '%s' and v = 1", - intval(local_channel()), - dbesc(($type === 'm') ? 'post_mail' : 'tag_deliver') - ); - - $permitted = ids_to_array($x,'xchan'); - } - - + if($search) { $sql_extra = " AND `name` LIKE " . protect_sprintf( "'%" . dbesc($search) . "%'" ) . " "; $sql_extra2 = "AND ( xchan_name LIKE " . protect_sprintf( "'%" . dbesc($search) . "%'" ) . " OR xchan_addr LIKE " . protect_sprintf( "'%" . dbesc($search) . ((strpos($search,'@') === false) ? "%@%'" : "%'")) . ") "; @@ -103,13 +87,13 @@ class Acl extends \Zotlabs\Web\Controller { if($type == '' || $type == 'g') { - $r = q("SELECT groups.id, groups.hash, groups.gname - FROM groups,group_member - WHERE groups.deleted = 0 AND groups.uid = %d - AND group_member.gid=groups.id + $r = q("SELECT `groups`.`id`, `groups`.`hash`, `groups`.`gname` + FROM `groups`,`group_member` + WHERE `groups`.`deleted` = 0 AND `groups`.`uid` = %d + AND `group_member`.`gid`=`groups`.`id` $sql_extra - GROUP BY groups.id - ORDER BY groups.gname + GROUP BY `groups`.`id` + ORDER BY `groups`.`gname` LIMIT %d OFFSET %d", intval(local_channel()), intval($count), @@ -172,7 +156,7 @@ class Acl extends \Zotlabs\Web\Controller { } - $r = q("SELECT abook_id as id, xchan_hash as hash, xchan_name as name, xchan_photo_s as micro, xchan_url as url, xchan_addr as nick, abook_their_perms, xchan_pubforum, abook_flags, abook_self + $r = q("SELECT abook_id as id, xchan_hash as hash, xchan_name as name, xchan_photo_s as micro, xchan_url as url, xchan_addr as nick, abook_their_perms, abook_flags, abook_self FROM abook left join xchan on abook_xchan = xchan_hash WHERE (abook_channel = %d $extra_channels_sql) AND abook_blocked = 0 and abook_pending = 0 and xchan_deleted = 0 $sql_extra2 order by $order_extra2 xchan_name asc" , intval(local_channel()) @@ -237,24 +221,16 @@ class Acl extends \Zotlabs\Web\Controller { } } elseif($type == 'm') { - - $r = array(); - $z = q("SELECT xchan_hash as hash, xchan_name as name, xchan_addr as nick, xchan_photo_s as micro, xchan_url as url + + $r = q("SELECT xchan_hash as hash, xchan_name as name, xchan_addr as nick, xchan_photo_s as micro, xchan_url as url FROM abook left join xchan on abook_xchan = xchan_hash - WHERE abook_channel = %d + WHERE abook_channel = %d and ( (abook_their_perms = null) or (abook_their_perms & %d )>0) and xchan_deleted = 0 $sql_extra3 - ORDER BY xchan_name ASC ", - intval(local_channel()) + ORDER BY `xchan_name` ASC ", + intval(local_channel()), + intval(PERMS_W_MAIL) ); - if($z) { - foreach($z as $zz) { - if(in_array($zz['id'],$permitted)) { - $r[] = $zz; - } - } - } - } elseif($type == 'a') { @@ -298,7 +274,7 @@ class Acl extends \Zotlabs\Web\Controller { if(strpos($g['hash'],'/') && $type != 'a') continue; - if(in_array($g['hash'],$permitted) && $type == 'c' && (! $noforums)) { + if(($g['abook_their_perms'] & PERMS_W_TAGWALL) && $type == 'c' && (! $noforums)) { $contacts[] = array( "type" => "c", "photo" => "images/twopeople.png", diff --git a/Zotlabs/Module/Connedit.php b/Zotlabs/Module/Connedit.php index 93ee30999..7db4950b1 100644 --- a/Zotlabs/Module/Connedit.php +++ b/Zotlabs/Module/Connedit.php @@ -126,30 +126,15 @@ class Connedit extends \Zotlabs\Web\Controller { $rating = 10; $rating_text = trim(escape_tags($_REQUEST['rating_text'])); - - $all_perms = \Zotlabs\Access\Permissions::Perms(); - - if($all_perms) { - foreach($all_perms as $perm => $desc) { - if(array_key_exists('perms_' . $perm, $_POST)) { - set_abconfig($channel['channel_id'],$orig_record[0]['abook_xchan'],'my_perms',$perm, - intval($_POST['perms_' . $perm])); - if($autoperms) { - set_pconfig($channel['channel_id'],'autoperms',$perm,intval($_POST['perms_' . $perm])); - } - } - else { - set_abconfig($channel['channel_id'],$orig_record[0]['abook_xchan'],'my_perms',$perm,0); - if($autoperms) { - set_pconfig($channel['channel_id'],'autoperms',$perm,0); - } - } + + $abook_my_perms = 0; + + foreach($_POST as $k => $v) { + if(strpos($k,'perms_') === 0) { + $abook_my_perms += $v; } } - - if(! is_null($autoperms)) - set_pconfig($channel['channel_id'],'system','autoperms',$autoperms); - + $new_friend = false; if(! $is_self) { @@ -209,25 +194,19 @@ class Connedit extends \Zotlabs\Web\Controller { $role = get_pconfig(local_channel(),'system','permissions_role'); if($role) { - $x = \Zotlabs\Access\PermissionRoles::role_perms($role); - if($x['perms_connect']) { - $abook_my_perms = $x['perms_connect']; - } + $x = get_role_perms($role); + if($x['perms_accept']) + $abook_my_perms = $x['perms_accept']; } - - $filled_perms = \Zotlabs\Access\Permissions::FilledPerms($abook_my_perms); - foreach($filled_perms as $k => $v) { - set_abconfig($channel['channel_id'],$orig_record[0]['abook_xchan'],'my_perms',$k,$v); - } - } - + $abook_pending = (($new_friend) ? 0 : $orig_record[0]['abook_pending']); - $r = q("UPDATE abook SET abook_profile = '%s', abook_closeness = %d, abook_pending = %d, + $r = q("UPDATE abook SET abook_profile = '%s', abook_my_perms = %d , abook_closeness = %d, abook_pending = %d, abook_incl = '%s', abook_excl = '%s' where abook_id = %d AND abook_channel = %d", dbesc($profile_id), + intval($abook_my_perms), intval($closeness), intval($abook_pending), dbesc($abook_incl), @@ -248,13 +227,10 @@ class Connedit extends \Zotlabs\Web\Controller { info( t('Connection updated.') . EOL); else notice( t('Failed to update connection record.') . EOL); - - if(! intval(\App::$poi['abook_self'])) { - \Zotlabs\Daemon\Master::Summon( [ - 'Notifier', - (($new_friend) ? 'permission_create' : 'permission_update'), - $contact_id - ]); + + if(\App::$poi && \App::$poi['abook_my_perms'] != $abook_my_perms + && (! intval(\App::$poi['abook_self']))) { + \Zotlabs\Daemon\Master::Summon(array('Notifier', (($new_friend) ? 'permission_create' : 'permission_update'), $contact_id)); } if($new_friend) { @@ -395,9 +371,9 @@ class Connedit extends \Zotlabs\Web\Controller { $my_perms = get_channel_default_perms(local_channel()); $role = get_pconfig(local_channel(),'system','permissions_role'); if($role) { - $x = \Zotlabs\Access\PermissionRoles::role_perms($role); - if($x['perms_connect']) - $my_perms = $x['perms_connect']; + $x = get_role_perms($role); + if($x['perms_accept']) + $my_perms = $x['perms_accept']; } $yes_no = array(t('No'),t('Yes')); @@ -678,8 +654,7 @@ class Connedit extends \Zotlabs\Web\Controller { $perms = array(); $channel = \App::get_channel(); - $global_perms = \Zotlabs\Access\Permissions::Perms(); - + $global_perms = get_perms(); $existing = get_all_perms(local_channel(),$contact['abook_xchan']); $unapproved = array('pending', t('Approve this connection'), '', t('Accept connection to allow communication'), array(t('No'),('Yes'))); @@ -695,32 +670,16 @@ class Connedit extends \Zotlabs\Web\Controller { if($slide && $multiprofs) $affinity = t('Set Affinity & Profile'); - $theirs = q("select * from abconfig where chan = %d and xchan = '%s' and cat = 'their_perms'", - intval(local_channel()), - dbesc($contact['abook_xchan']) - ); - $their_perms = array(); - if($theirs) { - foreach($theirs as $t) { - $their_perms[$t['k']] = $t['v']; - } - } - foreach($global_perms as $k => $v) { - $thisperm = get_abconfig(local_channel(),$contact['abook_xchan'],'my_perms',$k); -//fixme - - $checkinherited = \Zotlabs\Access\PermissionLimits::Get(local_channel(),$k); + $thisperm = (($contact['abook_my_perms'] & $v[1]) ? "1" : ''); + $checkinherited = ((($channel[$v[0]]) && ($channel[$v[0]] != PERMS_SPECIFIC)) ? "1" : ''); // For auto permissions (when $self is true) we don't want to look at existing // permissions because they are enabled for the channel owner if((! $self) && ($existing[$k])) $thisperm = "1"; - - - - $perms[] = array('perms_' . $k, $v, ((array_key_exists($k,$their_perms)) ? intval($their_perms[$k]) : ''),$thisperm, 1, (($checkinherited & PERMS_SPECIFIC) ? '' : '1'), '', $checkinherited); + $perms[] = array('perms_' . $k, $v[3], (($contact['abook_their_perms'] & $v[1]) ? "1" : ""),$thisperm, $v[1], (($channel[$v[0]] == PERMS_SPECIFIC) ? '' : '1'), $v[4], $checkinherited); } $locstr = ''; diff --git a/Zotlabs/Module/Editpost.php b/Zotlabs/Module/Editpost.php index 838fe9e4f..da859de3e 100644 --- a/Zotlabs/Module/Editpost.php +++ b/Zotlabs/Module/Editpost.php @@ -47,9 +47,9 @@ class Editpost extends \Zotlabs\Web\Controller { if(intval($itm[0]['item_obscured'])) { $key = get_config('system','prvkey'); if($itm[0]['title']) - $itm[0]['title'] = crypto_unencapsulate(json_decode($itm[0]['title'],true),$key); + $itm[0]['title'] = crypto_unencapsulate(json_decode_plus($itm[0]['title']),$key); if($itm[0]['body']) - $itm[0]['body'] = crypto_unencapsulate(json_decode($itm[0]['body'],true),$key); + $itm[0]['body'] = crypto_unencapsulate(json_decode_plus($itm[0]['body']),$key); } $category = ''; diff --git a/Zotlabs/Module/Editwebpage.php b/Zotlabs/Module/Editwebpage.php index a55f81101..be4803a07 100644 --- a/Zotlabs/Module/Editwebpage.php +++ b/Zotlabs/Module/Editwebpage.php @@ -108,9 +108,9 @@ class Editwebpage extends \Zotlabs\Web\Controller { if(intval($itm[0]['item_obscured'])) { $key = get_config('system','prvkey'); if($itm[0]['title']) - $itm[0]['title'] = crypto_unencapsulate(json_decode($itm[0]['title'],true),$key); + $itm[0]['title'] = crypto_unencapsulate(json_decode_plus($itm[0]['title']),$key); if($itm[0]['body']) - $itm[0]['body'] = crypto_unencapsulate(json_decode($itm[0]['body'],true),$key); + $itm[0]['body'] = crypto_unencapsulate(json_decode_plus($itm[0]['body']),$key); } $item_id = q("select * from iconfig where cat = 'system' and k = 'WEBPAGE' and iid = %d limit 1", diff --git a/Zotlabs/Module/File_upload.php b/Zotlabs/Module/File_upload.php deleted file mode 100644 index 999b241f1..000000000 --- a/Zotlabs/Module/File_upload.php +++ /dev/null @@ -1,40 +0,0 @@ - array($clone)), true); + build_sync_packet(0 /* use the current local_channel */, array('abook' => array($clone))); - $can_view_stream = intval(get_abconfig($channel['channel_id'],$clone['abook_xchan'],'their_perms','view_stream')); // If we can view their stream, pull in some posts - if(($can_view_stream) || ($result['abook']['xchan_network'] === 'rss')) + if(($result['abook']['abook_their_perms'] & PERMS_R_STREAM) || ($result['abook']['xchan_network'] === 'rss')) \Zotlabs\Daemon\Master::Summon(array('Onepoll',$result['abook']['abook_id'])); goaway(z_root() . '/connedit/' . $result['abook']['abook_id'] . '?f=&follow=1'); diff --git a/Zotlabs/Module/Id.php b/Zotlabs/Module/Id.php new file mode 100644 index 000000000..e053bf99c --- /dev/null +++ b/Zotlabs/Module/Id.php @@ -0,0 +1,319 @@ + t('First Name'), + 'namePerson/last' => t('Last Name'), + 'namePerson/friendly' => t('Nickname'), + 'namePerson' => t('Full Name'), + 'contact/internet/email' => t('Email'), + 'contact/email' => t('Email'), + 'media/image/aspect11' => t('Profile Photo'), + 'media/image' => t('Profile Photo'), + 'media/image/default' => t('Profile Photo'), + 'media/image/16x16' => t('Profile Photo 16px'), + 'media/image/32x32' => t('Profile Photo 32px'), + 'media/image/48x48' => t('Profile Photo 48px'), + 'media/image/64x64' => t('Profile Photo 64px'), + 'media/image/80x80' => t('Profile Photo 80px'), + 'media/image/128x128' => t('Profile Photo 128px'), + 'timezone' => t('Timezone'), + 'contact/web/default' => t('Homepage URL'), + 'language/pref' => t('Language'), + 'birthDate/birthYear' => t('Birth Year'), + 'birthDate/birthMonth' => t('Birth Month'), + 'birthDate/birthday' => t('Birth Day'), + 'birthDate' => t('Birthdate'), + 'gender' => t('Gender'), +); + + +/** + * @brief Entrypoint for the OpenID implementation. + * + * @param App &$a + */ + +class Id extends \Zotlabs\Web\Controller { + + function init() { + + logger('id: ' . print_r($_REQUEST, true)); + + if(argc() > 1) { + $which = argv(1); + } else { + \App::$error = 404; + return; + } + + $profile = ''; + $channel = \App::get_channel(); + profile_load($which,$profile); + + $op = new MysqlProvider; + $op->server(); + } + + /** + * @brief Returns user data needed for OpenID. + * + * If no $handle is provided we will use local_channel() by default. + * + * @param string $handle (default null) + * @return boolean|array + */ + static public function getUserData($handle = null) { + if (! local_channel()) { + notice( t('Permission denied.') . EOL); + \App::$page['content'] = login(); + + return false; + } + + // logger('handle: ' . $handle); + + if ($handle) { + $r = q("select * from channel left join xchan on channel_hash = xchan_hash where channel_address = '%s' limit 1", + dbesc($handle) + ); + } else { + $r = q("select * from channel left join xchan on channel_hash = xchan_hash where channel_id = %d", + intval(local_channel()) + ); + } + + if (! r) + return false; + + $x = q("select * from account where account_id = %d limit 1", + intval($r[0]['channel_account_id']) + ); + if ($x) + $r[0]['email'] = $x[0]['account_email']; + + $p = q("select * from profile where is_default = 1 and uid = %d limit 1", + intval($r[0]['channel_account_id']) + ); + + $gender = ''; + if ($p[0]['gender'] == t('Male')) + $gender = 'M'; + if ($p[0]['gender'] == t('Female')) + $gender = 'F'; + + $r[0]['firstName'] = ((strpos($r[0]['channel_name'],' ')) ? substr($r[0]['channel_name'],0,strpos($r[0]['channel_name'],' ')) : $r[0]['channel_name']); + $r[0]['lastName'] = ((strpos($r[0]['channel_name'],' ')) ? substr($r[0]['channel_name'],strpos($r[0]['channel_name'],' ')+1) : ''); + $r[0]['namePerson'] = $r[0]['channel_name']; + $r[0]['pphoto'] = $r[0]['xchan_photo_l']; + $r[0]['pphoto16'] = z_root() . '/photo/profile/16/' . $r[0]['channel_id'] . '.jpg'; + $r[0]['pphoto32'] = z_root() . '/photo/profile/32/' . $r[0]['channel_id'] . '.jpg'; + $r[0]['pphoto48'] = z_root() . '/photo/profile/48/' . $r[0]['channel_id'] . '.jpg'; + $r[0]['pphoto64'] = z_root() . '/photo/profile/64/' . $r[0]['channel_id'] . '.jpg'; + $r[0]['pphoto80'] = z_root() . '/photo/profile/80/' . $r[0]['channel_id'] . '.jpg'; + $r[0]['pphoto128'] = z_root() . '/photo/profile/128/' . $r[0]['channel_id'] . '.jpg'; + $r[0]['timezone'] = $r[0]['channel_timezone']; + $r[0]['url'] = $r[0]['xchan_url']; + $r[0]['language'] = (($x[0]['account_language']) ? $x[0]['account_language'] : 'en'); + $r[0]['birthyear'] = ((intval(substr($p[0]['dob'],0,4))) ? intval(substr($p[0]['dob'],0,4)) : ''); + $r[0]['birthmonth'] = ((intval(substr($p[0]['dob'],5,2))) ? intval(substr($p[0]['dob'],5,2)) : ''); + $r[0]['birthday'] = ((intval(substr($p[0]['dob'],8,2))) ? intval(substr($p[0]['dob'],8,2)) : ''); + $r[0]['birthdate'] = (($r[0]['birthyear'] && $r[0]['birthmonth'] && $r[0]['birthday']) ? $p[0]['dob'] : ''); + $r[0]['gender'] = $gender; + + return $r[0]; + + /* + * if(isset($_POST['login'],$_POST['password'])) { + * $login = mysql_real_escape_string($_POST['login']); + * $password = sha1($_POST['password']); + * $q = mysql_query("SELECT * FROM Users WHERE login = '$login' AND password = '$password'"); + * if($data = mysql_fetch_assoc($q)) { + * return $data; + * } + * if($handle) { + * echo 'Wrong login/password.'; + * } + * } + * if($handle) { + * ?> + *
+ * + * Login:
+ * Password:
+ * + *
+ * 'firstName', + 'namePerson/last' => 'lastName', + 'namePerson/friendly' => 'channel_address', + 'namePerson' => 'namePerson', + 'contact/internet/email' => 'email', + 'contact/email' => 'email', + 'media/image/aspect11' => 'pphoto', + 'media/image' => 'pphoto', + 'media/image/default' => 'pphoto', + 'media/image/16x16' => 'pphoto16', + 'media/image/32x32' => 'pphoto32', + 'media/image/48x48' => 'pphoto48', + 'media/image/64x64' => 'pphoto64', + 'media/image/80x80' => 'pphoto80', + 'media/image/128x128' => 'pphoto128', + 'timezone' => 'timezone', + 'contact/web/default' => 'url', + 'language/pref' => 'language', + 'birthDate/birthYear' => 'birthyear', + 'birthDate/birthMonth' => 'birthmonth', + 'birthDate/birthday' => 'birthday', + 'birthDate' => 'birthdate', + 'gender' => 'gender', + ); + + function setup($identity, $realm, $assoc_handle, $attributes) { + global $attrMap; + + // logger('identity: ' . $identity); + // logger('realm: ' . $realm); + // logger('assoc_handle: ' . $assoc_handle); + // logger('attributes: ' . print_r($attributes,true)); + + $data = \Zotlabs\Module\Id::getUserData($assoc_handle); + + + /** @FIXME this needs to be a template with localised strings */ + + $o .= '
' + . '' + . '' + . '' + . "$realm wishes to authenticate you."; + if($attributes['required'] || $attributes['optional']) { + $o .= " It also requests following information (required fields marked with *):" + . '
    '; + + foreach($attributes['required'] as $attr) { + if(isset($this->attrMap[$attr])) { + $o .= '
  • ' + . ' ' + . $this->attrMap[$attr] . ' *
  • '; + } + } + + foreach($attributes['optional'] as $attr) { + if(isset($this->attrMap[$attr])) { + $o .= '
  • ' + . ' ' + . $this->attrMap[$attr] . '
  • '; + } + } + $o .= '
'; + } + $o .= '
' + . ' ' + . ' ' + . ' ' + . '
'; + + \App::$page['content'] .= $o; + } + + function checkid($realm, &$attributes) { + + logger('checkid: ' . $realm); + logger('checkid attrs: ' . print_r($attributes,true)); + + if(isset($_POST['cancel'])) { + $this->cancel(); + } + + $data = \Zotlabs\Module\Id::getUserData(); + if(! $data) { + return false; + } + + $q = get_pconfig(local_channel(), 'openid', $realm); + + $attrs = array(); + if($q) { + $attrs = $q; + } elseif(isset($_POST['attributes'])) { + $attrs = array_keys($_POST['attributes']); + } elseif(!isset($_POST['once']) && !isset($_POST['always'])) { + return false; + } + + $attributes = array(); + foreach($attrs as $attr) { + if(isset($this->attrFieldMap[$attr])) { + $attributes[$attr] = $data[$this->attrFieldMap[$attr]]; + } + } + + if(isset($_POST['always'])) { + set_pconfig(local_channel(),'openid',$realm,array_keys($attributes)); + } + + return z_root() . '/id/' . $data['channel_address']; + } + + function assoc_handle() { + logger('assoc_handle'); + $channel = \App::get_channel(); + + return z_root() . '/channel/' . $channel['channel_address']; + } + + function setAssoc($handle, $data) { + logger('setAssoc'); + $channel = channelx_by_nick(basename($handle)); + if($channel) + set_pconfig($channel['channel_id'],'openid','associate',$data); + } + + function getAssoc($handle) { + logger('getAssoc: ' . $handle); + + $channel = channelx_by_nick(basename($handle)); + if($channel) + return get_pconfig($channel['channel_id'], 'openid', 'associate'); + + return false; + } + + function delAssoc($handle) { + logger('delAssoc'); + $channel = channelx_by_nick(basename($handle)); + if($channel) + return del_pconfig($channel['channel_id'], 'openid', 'associate'); + } + } + diff --git a/Zotlabs/Module/Import.php b/Zotlabs/Module/Import.php index d27f013b9..e34f5e49e 100644 --- a/Zotlabs/Module/Import.php +++ b/Zotlabs/Module/Import.php @@ -8,7 +8,6 @@ namespace Zotlabs\Module; require_once('include/zot.php'); require_once('include/channel.php'); require_once('include/import.php'); -require_once('include/perm_upgrade.php'); @@ -340,8 +339,6 @@ class Import extends \Zotlabs\Web\Controller { $abooks = $data['abook']; if($abooks) { foreach($abooks as $abook) { - - $abook_copy = $abook; $abconfig = null; if(array_key_exists('abconfig',$abook) && is_array($abook['abconfig']) && count($abook['abconfig'])) @@ -350,10 +347,6 @@ class Import extends \Zotlabs\Web\Controller { unset($abook['abook_id']); unset($abook['abook_rating']); unset($abook['abook_rating_text']); - unset($abook['abconfig']); - unset($abook['abook_their_perms']); - unset($abook['abook_my_perms']); - $abook['abook_account'] = $account_id; $abook['abook_channel'] = $channel['channel_id']; if(! array_key_exists('abook_blocked',$abook)) { @@ -392,8 +385,6 @@ class Import extends \Zotlabs\Web\Controller { $friends ++; if(intval($abook['abook_feed'])) $feeds ++; - - translate_abook_perms_inbound($channel,$abook_copy); if($abconfig) { // @fixme does not handle sync of del_abconfig diff --git a/Zotlabs/Module/Item.php b/Zotlabs/Module/Item.php index 2d0c1ba02..b54099d74 100644 --- a/Zotlabs/Module/Item.php +++ b/Zotlabs/Module/Item.php @@ -318,11 +318,9 @@ class Item extends \Zotlabs\Web\Controller { } $acl = new \Zotlabs\Access\AccessList($channel); - - $view_policy = \Zotlabs\Access\PermissionLimits::Get($channel['channel_id'],'view_stream'); - $comment_policy = \Zotlabs\Access\PermissionLimits::Get($channel['channel_id'],'post_comments'); - $public_policy = ((x($_REQUEST,'public_policy')) ? escape_tags($_REQUEST['public_policy']) : map_scope($view_policy,true)); + + $public_policy = ((x($_REQUEST,'public_policy')) ? escape_tags($_REQUEST['public_policy']) : map_scope($channel['channel_r_stream'],true)); if($webpage) $public_policy = ''; if($public_policy) @@ -530,11 +528,11 @@ class Item extends \Zotlabs\Web\Controller { if((! $parent) && (get_pconfig($profile_uid,'system','tagifonlyrecip')) && (substr_count($str_contact_allow,'<') == 1) && ($str_group_allow == '') && ($str_contact_deny == '') && ($str_group_deny == '')) { - $x = q("select abook_id, abconfig.v from abook left join abconfig on abook_xchan = abconfig.xchan and abook_channel = abconfig.chan and cat= 'their_perms' and abconfig.k = 'tag_deliver' and abconfig.v = 1 and abook_xchan = '%s' and abook_channel = %d limit 1", + $x = q("select abook_id, abook_their_perms from abook where abook_xchan = '%s' and abook_channel = %d limit 1", dbesc(str_replace(array('<','>'),array('',''),$str_contact_allow)), intval($profile_uid) ); - if($x) + if($x && ($x[0]['abook_their_perms'] & PERMS_W_TAGWALL)) $body .= "\n\n@group+" . $x[0]['abook_id'] . "\n"; } @@ -814,7 +812,7 @@ class Item extends \Zotlabs\Web\Controller { $datarray['layout_mid'] = $layout_mid; $datarray['public_policy'] = $public_policy; - $datarray['comment_policy'] = map_scope($comment_policy); + $datarray['comment_policy'] = map_scope($channel['channel_w_comment']); $datarray['term'] = $post_tags; $datarray['plink'] = $plink; $datarray['route'] = $route; diff --git a/Zotlabs/Module/Like.php b/Zotlabs/Module/Like.php index 170349509..1ca37d646 100644 --- a/Zotlabs/Module/Like.php +++ b/Zotlabs/Module/Like.php @@ -264,22 +264,23 @@ class Like extends \Zotlabs\Web\Controller { logger('like: no item ' . $item_id); killme(); } - - - xchan_query($r,true,(($r[0]['uid'] == local_channel()) ? 0 : local_channel())); - + + $item = $r[0]; - - $owner_uid = $r[0]['uid']; - $owner_aid = $r[0]['aid']; - - $can_comment = false; - if((array_key_exists('owner',$item)) && intval($item['owner']['abook_self'])) - $can_comment = perm_is_allowed($item['uid'],$observer['xchan_hash'],'post_comments'); - else - $can_comment = can_comment_on_post($observer['xchan_hash'],$item); - - if(! $can_comment) { + $owner_uid = $item['uid']; + $owner_aid = $item['aid']; + + + $sys = get_sys_channel(); + + + // if this is a "discover" item, (item['uid'] is the sys channel), + // fallback to the item comment policy, which should've been + // respected when generating the conversation thread. + // Even if the activity is rejected by the item owner, it should still get attached + // to the local discover conversation on this site. + + if(($owner_uid != $sys['channel_id']) && (! perm_is_allowed($owner_uid,$observer['xchan_hash'],'post_comments'))) { notice( t('Permission denied') . EOL); killme(); } diff --git a/Zotlabs/Module/Mail.php b/Zotlabs/Module/Mail.php index 043c28078..aae7585c4 100644 --- a/Zotlabs/Module/Mail.php +++ b/Zotlabs/Module/Mail.php @@ -57,6 +57,8 @@ class Mail extends \Zotlabs\Web\Controller { $their_perms = 0; + $global_perms = get_perms(); + if($j['permissions']['data']) { $permissions = crypto_unencapsulate($j['permissions'],$channel['channel_prvkey']); if($permissions) @@ -66,7 +68,13 @@ class Mail extends \Zotlabs\Web\Controller { else $permissions = $j['permissions']; - if(! ($permissions['post_mail'])) { + foreach($permissions as $k => $v) { + if($v) { + $their_perms = $their_perms | intval($global_perms[$k][1]); + } + } + + if(! ($their_perms & PERMS_W_MAIL)) { notice( t('Selected channel has private message restrictions. Send failed.')); // reported issue: let's still save the message and continue. We'll just tell them // that nothing useful is likely to happen. They might have spent hours on it. @@ -112,7 +120,7 @@ class Mail extends \Zotlabs\Web\Controller { } - function get() { + function get() { $o = ''; nav_set_selected('messages'); diff --git a/Zotlabs/Module/Manage.php b/Zotlabs/Module/Manage.php index 8f815d6d4..4ca044c4a 100644 --- a/Zotlabs/Module/Manage.php +++ b/Zotlabs/Module/Manage.php @@ -143,9 +143,9 @@ class Manage extends \Zotlabs\Web\Controller { $create = array( 'new_channel', t('Create a new channel'), t('Create New')); $delegates = q("select * from abook left join xchan on abook_xchan = xchan_hash where - abook_channel = %d and abook_xchan in ( select xchan from abconfig where chan = %d and cat = 'their_perms' and k = 'delegate' and v = 1 )", + abook_channel = %d and (abook_their_perms & %d) > 0", intval(local_channel()), - intval(local_channel()) + intval(PERMS_A_DELEGATE) ); if($delegates) { diff --git a/Zotlabs/Module/Openid.php b/Zotlabs/Module/Openid.php new file mode 100644 index 000000000..8cbc6d2fd --- /dev/null +++ b/Zotlabs/Module/Openid.php @@ -0,0 +1,198 @@ +validate()) { + + logger('openid: validate'); + + $authid = normalise_openid($_REQUEST['openid_identity']); + + if(! strlen($authid)) { + logger( t('OpenID protocol error. No ID returned.') . EOL); + goaway(z_root()); + } + + $x = match_openid($authid); + if($x) { + + $r = q("select * from channel where channel_id = %d limit 1", + intval($x) + ); + if($r) { + $y = q("select * from account where account_id = %d limit 1", + intval($r[0]['channel_account_id']) + ); + if($y) { + foreach($y as $record) { + if(($record['account_flags'] == ACCOUNT_OK) || ($record['account_flags'] == ACCOUNT_UNVERIFIED)) { + logger('mod_openid: openid success for ' . $x[0]['channel_name']); + $_SESSION['uid'] = $r[0]['channel_id']; + $_SESSION['account_id'] = $r[0]['channel_account_id']; + $_SESSION['authenticated'] = true; + authenticate_success($record,$r[0],true,true,true,true); + goaway(z_root()); + } + } + } + } + } + + // Successful OpenID login - but we can't match it to an existing account. + // See if they've got an xchan + + $r = q("select * from xconfig left join xchan on xchan_hash = xconfig.xchan where cat = 'system' and k = 'openid' and v = '%s' limit 1", + dbesc($authid) + ); + + if($r) { + $_SESSION['authenticated'] = 1; + $_SESSION['visitor_id'] = $r[0]['xchan_hash']; + $_SESSION['my_url'] = $r[0]['xchan_url']; + $_SESSION['my_address'] = $r[0]['xchan_addr']; + $arr = array('xchan' => $r[0], 'session' => $_SESSION); + call_hooks('magic_auth_openid_success',$arr); + \App::set_observer($r[0]); + require_once('include/security.php'); + \App::set_groups(init_groups_visitor($_SESSION['visitor_id'])); + info(sprintf( t('Welcome %s. Remote authentication successful.'),$r[0]['xchan_name'])); + logger('mod_openid: remote auth success from ' . $r[0]['xchan_addr']); + if($_SESSION['return_url']) + goaway($_SESSION['return_url']); + goaway(z_root()); + } + + // no xchan... + // create one. + // We should probably probe the openid url and figure out if they have any kind of social presence we might be able to + // scrape some identifying info from. + + $name = $authid; + $url = trim($_REQUEST['openid_identity'],'/'); + if(strpos($url,'http') === false) + $url = 'https://' . $url; + $pphoto = z_root() . '/' . get_default_profile_photo(); + $parsed = @parse_url($url); + if($parsed) { + $host = $parsed['host']; + } + + $attr = $openid->getAttributes(); + + if(is_array($attr) && count($attr)) { + foreach($attr as $k => $v) { + if($k === 'namePerson/friendly') + $nick = notags(trim($v)); + if($k === 'namePerson/first') + $first = notags(trim($v)); + if($k === 'namePerson') + $name = notags(trim($v)); + if($k === 'contact/email') + $addr = notags(trim($v)); + if($k === 'media/image/aspect11') + $photosq = trim($v); + if($k === 'media/image/default') + $photo_other = trim($v); + } + } + if(! $nick) { + if($first) + $nick = $first; + else + $nick = $name; + } + + require_once('library/urlify/URLify.php'); + $x = strtolower(\URLify::transliterate($nick)); + if($nick & $host) + $addr = $nick . '@' . $host; + $network = 'unknown'; + + if($photosq) + $pphoto = $photosq; + elseif($photo_other) + $pphoto = $photo_other; + + $mimetype = guess_image_type($pphoto); + + $x = q("insert into xchan ( xchan_hash, xchan_guid, xchan_guid_sig, xchan_pubkey, xchan_photo_mimetype, + xchan_photo_l, xchan_addr, xchan_url, xchan_connurl, xchan_follow, xchan_connpage, xchan_name, xchan_network, xchan_photo_date, + xchan_name_date, xchan_hidden) + values ( '%s', '%s', '%s', '%s' , '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', 1) ", + dbesc($url), + dbesc(''), + dbesc(''), + dbesc(''), + dbesc($mimetype), + dbesc($pphoto), + dbesc($addr), + dbesc($url), + dbesc(''), + dbesc(''), + dbesc(''), + dbesc($name), + dbesc($network), + dbesc(datetime_convert()), + dbesc(datetime_convert()) + ); + if($x) { + $r = q("select * from xchan where xchan_hash = '%s' limit 1", + dbesc($url) + ); + if($r) { + + $photos = import_xchan_photo($pphoto,$url); + if($photos) { + $z = q("update xchan set xchan_photo_date = '%s', xchan_photo_l = '%s', xchan_photo_m = '%s', + xchan_photo_s = '%s', xchan_photo_mimetype = '%s' where xchan_hash = '%s'", + dbesc(datetime_convert()), + dbesc($photos[0]), + dbesc($photos[1]), + dbesc($photos[2]), + dbesc($photos[3]), + dbesc($url) + ); + } + + set_xconfig($url,'system','openid',$authid); + $_SESSION['authenticated'] = 1; + $_SESSION['visitor_id'] = $r[0]['xchan_hash']; + $_SESSION['my_url'] = $r[0]['xchan_url']; + $_SESSION['my_address'] = $r[0]['xchan_addr']; + $arr = array('xchan' => $r[0], 'session' => $_SESSION); + call_hooks('magic_auth_openid_success',$arr); + \App::set_observer($r[0]); + info(sprintf( t('Welcome %s. Remote authentication successful.'),$r[0]['xchan_name'])); + logger('mod_openid: remote auth success from ' . $r[0]['xchan_addr']); + if($_SESSION['return_url']) + goaway($_SESSION['return_url']); + goaway(z_root()); + } + } + + } + } + notice( t('Login failed.') . EOL); + goaway(z_root()); + // NOTREACHED + } + +} diff --git a/Zotlabs/Module/Probe.php b/Zotlabs/Module/Probe.php index 7fc0e8ff5..dda792131 100644 --- a/Zotlabs/Module/Probe.php +++ b/Zotlabs/Module/Probe.php @@ -23,6 +23,8 @@ class Probe extends \Zotlabs\Web\Controller { $j = \Zotlabs\Zot\Finger::run($addr,$channel,false); + // $res = zot_finger($addr,$channel,false); + $o .= '
';
 			if(! $j['success']) {
 				$o .= sprintf( t('Fetching URL returns error: %1$s'),$res['error'] . "\r\n\r\n");
diff --git a/Zotlabs/Module/Profiles.php b/Zotlabs/Module/Profiles.php
index 4b05182c2..899c79b15 100644
--- a/Zotlabs/Module/Profiles.php
+++ b/Zotlabs/Module/Profiles.php
@@ -708,7 +708,7 @@ class Profiles extends \Zotlabs\Web\Controller {
 				'$profile_id'   => $r[0]['id'],
 				'$profile_name' => array('profile_name', t('Profile name'), $r[0]['profile_name'], t('Required'), '*'),
 				'$is_default'   => $is_default,
-				'$default'      => t('This is your default profile.') . EOL . translate_scope(map_scope(\Zotlabs\Access\PermissionLimits::Get($channel['channel_id'],'view_profile'))),
+				'$default'      => t('This is your default profile.') . EOL . translate_scope(map_scope($channel['channel_r_profile'])),
 				'$advanced'     => $advanced,
 				'$name'         => array('name', t('Your full name'), $r[0]['fullname'], t('Required'), '*'),
 				'$pdesc'        => array('pdesc', t('Title/Description'), $r[0]['pdesc']),
@@ -767,7 +767,7 @@ class Profiles extends \Zotlabs\Web\Controller {
 						'$alt' => t('Profile Image'),
 						'$profile_name' => $rr['profile_name'],
 						'$visible' => (($rr['is_default']) 
-							? '' . translate_scope(map_scope(\Zotlabs\Access\PermissionLimits::Get($channel['channel_id'],'view_profile'))) . '' 
+							? '' . translate_scope(map_scope($channel['channel_r_profile'])) . '' 
 							: '' . t('Edit visibility') . '')
 					));
 				}
diff --git a/Zotlabs/Module/Ratingsearch.php b/Zotlabs/Module/Ratingsearch.php
index dcbfd6a9b..5f463b378 100644
--- a/Zotlabs/Module/Ratingsearch.php
+++ b/Zotlabs/Module/Ratingsearch.php
@@ -58,9 +58,7 @@ class Ratingsearch extends \Zotlabs\Web\Controller {
 		$ret['success'] = true;
 	
 		$r = q("select * from xlink left join xchan on xlink_xchan = xchan_hash 
-			where xlink_link = '%s' and xlink_rating != 0 and xlink_static = 1 
-			and xchan_hidden = 0 and xchan_orphan = 0 and xchan_deleted = 0 
-			order by xchan_name asc",
+			where xlink_link = '%s' and xlink_rating != 0 and xlink_static = 1 order by xchan_name asc",
 			dbesc($target)
 		);
 	
diff --git a/Zotlabs/Module/Rmagic.php b/Zotlabs/Module/Rmagic.php
index 9252d1f1d..26b0c46a6 100644
--- a/Zotlabs/Module/Rmagic.php
+++ b/Zotlabs/Module/Rmagic.php
@@ -2,6 +2,7 @@
 namespace Zotlabs\Module;
 
 
+
 class Rmagic extends \Zotlabs\Web\Controller {
 
 	function init() {
@@ -31,6 +32,18 @@ class Rmagic extends \Zotlabs\Web\Controller {
 			$arr = array('address' => $address);
 			call_hooks('reverse_magic_auth', $arr);		
 	
+			try {
+				require_once('library/openid/openid.php');
+				$openid = new \LightOpenID(z_root());
+				$openid->identity = $address;
+				$openid->returnUrl = z_root() . '/openid'; 
+				$openid->required = array('namePerson/friendly', 'namePerson');
+				$openid->optional = array('namePerson/first','media/image/aspect11','media/image/default');
+				goaway($openid->authUrl());
+			} catch (\Exception $e) {
+				notice( t('We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID.').'

'. t('The error message was:').' '.$e->getMessage()); + } + // if they're still here... notice( t('Authentication failed.') . EOL); return; diff --git a/Zotlabs/Module/Settings.php b/Zotlabs/Module/Settings.php index af3a25c60..b1258e049 100644 --- a/Zotlabs/Module/Settings.php +++ b/Zotlabs/Module/Settings.php @@ -21,7 +21,10 @@ class Settings extends \Zotlabs\Web\Controller { // We are setting these values - don't use the argc(), argv() functions here \App::$argc = 2; \App::$argv[] = 'channel'; - } + } + + + } @@ -35,7 +38,7 @@ class Settings extends \Zotlabs\Web\Controller { $channel = \App::get_channel(); - // logger('mod_settings: ' . print_r($_REQUEST,true)); + logger('mod_settings: ' . print_r($_REQUEST,true)); if((argc() > 1) && (argv(1) === 'oauth') && x($_POST,'remove')){ @@ -360,10 +363,10 @@ class Settings extends \Zotlabs\Web\Controller { intval(local_channel()) ); - $global_perms = \Zotlabs\Access\Permissions::Perms(); + $global_perms = get_perms(); foreach($global_perms as $k => $v) { - \Zotlabs\Access\PermissionLimits::Set(local_channel(),$k,intval($_POST[$k])); + $set_perms .= ', ' . $v[0] . ' = ' . intval($_POST[$k]) . ' '; } $acl = new \Zotlabs\Access\AccessList($channel); $acl->set_from_array($_POST); @@ -379,7 +382,7 @@ class Settings extends \Zotlabs\Web\Controller { ); } else { - $role_permissions = \Zotlabs\Access\PermissionRoles::role_perms($_POST['permissions_role']); + $role_permissions = get_role_perms($_POST['permissions_role']); if(! $role_permissions) { notice('Permissions category could not be found.'); return; @@ -419,24 +422,19 @@ class Settings extends \Zotlabs\Web\Controller { ); } - $x = \Zotlabs\Access\Permissions::FilledPerms($role_permissions['perms_connect']); - foreach($x as $k => $v) { - set_abconfig(local_channel(),$channel['channel_hash'],'my_perms',$k, $v); - if($role_permissions['perms_auto']) { - set_pconfig(local_channel(),'autoperms',$k,$v); + $r = q("update abook set abook_my_perms = %d where abook_channel = %d and abook_self = 1", + intval((array_key_exists('perms_accept',$role_permissions)) ? $role_permissions['perms_accept'] : 0), + intval(local_channel()) + ); + set_pconfig(local_channel(),'system','autoperms',(($role_permissions['perms_auto']) ? intval($role_permissions['perms_accept']) : 0)); + + foreach($role_permissions as $p => $v) { + if(strpos($p,'channel_') !== false) { + $set_perms .= ', ' . $p . ' = ' . intval($v) . ' '; } - else { - del_pconfig(local_channel(),'autoperms',$k); + if($p === 'directory_publish') { + $publish = intval($v); } - } - - if($role_permissions['limits']) { - foreach($role_permissions['limits'] as $k => $v) { - \Zotlabs\Access\PermissionLimits::Set(local_channel(),$k,$v); - } - } - if(array_key_exists('directory_publish',$role_permissions)) { - $publish = intval($role_permissions['directory_publish']); } } @@ -965,7 +963,11 @@ class Settings extends \Zotlabs\Web\Controller { return $o; } - + + + + + if(argv(1) === 'channel') { require_once('include/acl_selectors.php'); @@ -982,8 +984,9 @@ class Settings extends \Zotlabs\Web\Controller { $channel = \App::get_channel(); - $global_perms = \Zotlabs\Access\Permissions::Perms(); - + + $global_perms = get_perms(); + $permiss = array(); $perm_opts = array( @@ -997,18 +1000,19 @@ class Settings extends \Zotlabs\Web\Controller { array( t('Anybody on the internet'), PERMS_PUBLIC) ); - $limits = \Zotlabs\Access\PermissionLimits::Get(local_channel()); foreach($global_perms as $k => $perm) { $options = array(); foreach($perm_opts as $opt) { + if((! $perm[2]) && $opt[1] == PERMS_PUBLIC) + continue; $options[$opt[1]] = $opt[0]; } - $permiss[] = array($k,$perm,$limits[$k],'',$options); + $permiss[] = array($k,$perm[3],$channel[$perm[0]],$perm[4],$options); } - //logger('permiss: ' . print_r($permiss,true)); + // logger('permiss: ' . print_r($permiss,true)); diff --git a/Zotlabs/Storage/BasicAuth.php b/Zotlabs/Storage/BasicAuth.php index 995976dcd..2325a614b 100644 --- a/Zotlabs/Storage/BasicAuth.php +++ b/Zotlabs/Storage/BasicAuth.php @@ -219,7 +219,7 @@ class BasicAuth extends DAV\Auth\Backend\AbstractBasic { } /** - * @brief Sets the timezone from the channel in BasicAuth. + * @brief Sets the timezone from the channel in RedBasicAuth. * * Set in mod/cloud.php if the channel has a timezone set. * diff --git a/Zotlabs/Storage/Browser.php b/Zotlabs/Storage/Browser.php index 93c55bd4c..713d75108 100644 --- a/Zotlabs/Storage/Browser.php +++ b/Zotlabs/Storage/Browser.php @@ -274,22 +274,6 @@ class Browser extends DAV\Browser\Plugin { // SimpleCollection, we won't need to show the panel either. if (get_class($node) === 'Sabre\\DAV\\SimpleCollection') return; - require_once('include/acl_selectors.php'); - - $aclselect = null; - $lockstate = ''; - - if($this->auth-owner_id) { - $channel = channelx_by_n($this->auth->owner_id); - if($channel) { - $acl = new \Zotlabs\Access\AccessList($channel); - $channel_acl = $acl->get(); - $lockstate = (($acl->is_private()) ? 'lock' : 'unlock'); - - $aclselect = ((local_channel() == $this->auth->owner_id) ? populate_acl($channel_acl,false, \Zotlabs\Lib\PermissionDescription::fromGlobalPermission('view_storage')) : ''); - - } - } // Storage and quota for the account (all channels of the owner of this directory)! $limit = engr_units_to_bytes(service_class_fetch($owner, 'attach_upload_limit')); @@ -309,6 +293,7 @@ class Browser extends DAV\Browser\Plugin { userReadableSize($limit), round($used / $limit, 1) * 100); } + // prepare quota for template $quota = array(); $quota['used'] = $used; @@ -321,12 +306,7 @@ class Browser extends DAV\Browser\Plugin { '$folder_submit' => t('Create'), '$upload_header' => t('Upload file'), '$upload_submit' => t('Upload'), - '$quota' => $quota, - '$channick' => $this->auth->owner_nick, - '$aclselect' => $aclselect, - '$lockstate' => $lockstate, - '$return_url' => \App::$cmd, - '$dragdroptext' => t('Drop files here to immediately upload') + '$quota' => $quota )); } diff --git a/Zotlabs/Web/Router.php b/Zotlabs/Web/Router.php index 4ba2a450d..f9290ac30 100644 --- a/Zotlabs/Web/Router.php +++ b/Zotlabs/Web/Router.php @@ -152,7 +152,6 @@ class Router { // pretend this is a module so it will initialise the theme \App::$module = '404'; \App::$module_loaded = true; - \App::$error = true; } } } diff --git a/Zotlabs/Web/WebServer.php b/Zotlabs/Web/WebServer.php index 5bb0e08e8..d4f3cb9ea 100644 --- a/Zotlabs/Web/WebServer.php +++ b/Zotlabs/Web/WebServer.php @@ -124,7 +124,7 @@ class WebServer { // now that we've been through the module content, see if the page reported // a permission problem and if so, a 403 response would seem to be in order. - if(is_array($_SESSION['sysmsg']) && stristr(implode("", $_SESSION['sysmsg']), t('Permission denied'))) { + if(stristr(implode("", $_SESSION['sysmsg']), t('Permission denied'))) { header($_SERVER['SERVER_PROTOCOL'] . ' 403 ' . t('Permission denied.')); } diff --git a/boot.php b/boot.php index a6cc23c9f..7974ce9ed 100755 --- a/boot.php +++ b/boot.php @@ -44,10 +44,10 @@ require_once('include/account.php'); define ( 'PLATFORM_NAME', 'hubzilla' ); -define ( 'STD_VERSION', '1.11' ); +define ( 'STD_VERSION', '1.10RC' ); define ( 'ZOT_REVISION', '1.1' ); -define ( 'DB_UPDATE_VERSION', 1181 ); +define ( 'DB_UPDATE_VERSION', 1180 ); /** @@ -765,7 +765,6 @@ class App { public static $pdl = null; // Comanche page description private static $perms = null; // observer permissions private static $widgets = array(); // widgets for this page - public static $config = array(); // config cache public static $session = null; public static $groups; @@ -775,6 +774,7 @@ class App { public static $plugins_admin; public static $module_loaded = false; public static $query_string; + public static $config; // config cache public static $page; public static $profile; public static $user; @@ -1551,9 +1551,6 @@ function check_config(&$a) { load_hooks(); - - check_for_new_perms(); - check_cron_broken(); } @@ -2443,67 +2440,6 @@ function cert_bad_email() { } -function check_for_new_perms() { - - $pregistered = get_config('system','perms'); - $pcurrent = array_keys(\Zotlabs\Access\Permissions::Perms()); - - if(! $pregistered) { - set_config('system','perms',$pcurrent); - return; - } - - $found_new_perm = false; - - foreach($pcurrent as $p) { - if(! in_array($p,$pregistered)) { - $found_new_perm = true; - // for all channels - $c = q("select channel_id from channel where true"); - if($c) { - foreach($c as $cc) { - // get the permission role - $r = q("select v from pconfig where uid = %d and cat = 'system' and k = 'permissions_role'", - intval($cc['uid']) - ); - if($r) { - // get a list of connections - $x = q("select abook_xchan from abook where abook_channel = %d and abook_self = 0", - intval($cc['uid']) - ); - // get the permissions role details - $rp = \Zotlabs\Access\PermissionRoles::role_perms($r[0]['v']); - if($rp) { - // set the channel limits if appropriate or 0 - if(array_key_exists('limits',$rp) && array_key_exists($p,$rp['limits'])) { - \Zotlabs\Access\PermissionLimits::Set($cc['uid'],$p,$rp['limits'][$p]); - } - else { - \Zotlabs\Access\PermissionLimits::Set($cc['uid'],$p,0); - } - - $set = ((array_key_exists('perms_connect',$rp) && array_key_exists($p,$rp['perms_connect'])) ? true : false); - // foreach connection set to the perms_connect value - if($x) { - foreach($x as $xx) { - set_abconfig($cc['uid'],$xx['abook_xchan'],'my_perms',$p,intval($set)); - } - } - } - } - } - } - } - } - - // We should probably call perms_refresh here, but this should get pushed in 24 hours and there is no urgency - if($found_new_perm) - set_config('system','perms',$pcurrent); - -} - - - /** * @brief Send warnings every 3-5 days if cron is not running. */ @@ -2513,7 +2449,6 @@ function check_cron_broken() { if((! $d) || ($d < datetime_convert('UTC','UTC','now - 4 hours'))) { Zotlabs\Daemon\Master::Summon(array('Cron')); - set_config('system','lastcron',datetime_convert()); } $t = get_config('system','lastcroncheck'); diff --git a/include/api.php b/include/api.php index f52b03240..df6aba957 100644 --- a/include/api.php +++ b/include/api.php @@ -72,7 +72,7 @@ require_once('include/api_auth.php'); * MAIN API ENTRY POINT * **************************/ - function api_call($a){ + function api_call(&$a){ GLOBAL $API, $called_api; // preset @@ -166,7 +166,7 @@ require_once('include/api_auth.php'); /** * RSS extra info */ - function api_rss_extra($a, $arr, $user_info){ + function api_rss_extra(&$a, $arr, $user_info){ if (is_null($user_info)) $user_info = api_get_user($a); $arr['$user'] = $user_info; $arr['$rss'] = array( @@ -186,7 +186,7 @@ require_once('include/api_auth.php'); * Returns user info array. */ - function api_get_user($a, $contact_id = null, $contact_xchan = null){ + function api_get_user(&$a, $contact_id = null, $contact_xchan = null){ global $called_api; $user = null; $extra_query = ""; @@ -282,8 +282,7 @@ require_once('include/api_auth.php'); intval($uinfo[0]['xchan_hash']) ); $countitms = $r[0]['count']; - - $following = ((get_abconfig($uinfo[0]['abook_channel'],$uinfo[0]['abook_xchan'],'my_perms','view_stream')) ? true : false ); + $following = (($uinfo[0]['abook_myperms'] & PERMS_R_STREAM) ? true : false ); } @@ -356,7 +355,7 @@ require_once('include/api_auth.php'); } - function api_client_register($a,$type) { + function api_client_register(&$a,$type) { $ret = array(); $key = random_string(16); @@ -389,7 +388,7 @@ require_once('include/api_auth.php'); - function api_item_get_user($a, $item) { + function api_item_get_user(&$a, $item) { // The author is our direct contact, in a conversation with us. @@ -473,7 +472,7 @@ require_once('include/api_auth.php'); * returns a 401 status code and an error message if not. * http://developer.twitter.com/doc/get/account/verify_credentials */ - function api_account_verify_credentials($a, $type){ + function api_account_verify_credentials(&$a, $type){ if (api_user()===false) return false; $user_info = api_get_user($a); @@ -483,7 +482,7 @@ require_once('include/api_auth.php'); api_register_func('api/account/verify_credentials','api_account_verify_credentials', true); - function api_account_logout($a, $type){ + function api_account_logout(&$a, $type){ require_once('include/auth.php'); App::$session->nuke(); return api_apply_template("user", $type, array('$user' => null)); @@ -507,7 +506,7 @@ require_once('include/api_auth.php'); * Red basic channel export */ - function api_export_basic($a, $type) { + function api_export_basic(&$a, $type) { if(api_user() === false) { logger('api_export_basic: no user'); return false; @@ -521,7 +520,7 @@ require_once('include/api_auth.php'); api_register_func('api/red/channel/export/basic','api_export_basic', true); - function api_channel_stream($a, $type) { + function api_channel_stream(&$a, $type) { if(api_user() === false) { logger('api_channel_stream: no user'); return false; @@ -537,7 +536,7 @@ require_once('include/api_auth.php'); } api_register_func('api/red/channel/stream','api_channel_stream', true); - function api_attach_list($a,$type) { + 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')); } @@ -547,7 +546,7 @@ require_once('include/api_auth.php'); - function api_file_meta($a,$type) { + function api_file_meta(&$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", @@ -565,7 +564,7 @@ require_once('include/api_auth.php'); api_register_func('api/red/filemeta', 'api_file_meta', true); - function api_file_data($a,$type) { + function api_file_data(&$a,$type) { if (api_user()===false) return false; if(! $_REQUEST['file_id']) return false; $start = (($_REQUEST['start']) ? intval($_REQUEST['start']) : 0); @@ -609,7 +608,7 @@ require_once('include/api_auth.php'); - function api_file_detail($a,$type) { + 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", @@ -633,18 +632,18 @@ require_once('include/api_auth.php'); api_register_func('api/red/file', 'api_file_detail', true); - function api_albums($a,$type) { + function api_albums(&$a,$type) { json_return_and_die(photos_albums_list(App::get_channel(),App::get_observer())); } api_register_func('api/red/albums','api_albums', true); - function api_photos($a,$type) { + function api_photos(&$a,$type) { $album = $_REQUEST['album']; json_return_and_die(photos_list_photos(App::get_channel(),App::get_observer(),$album)); } api_register_func('api/red/photos','api_photos', true); - function api_photo_detail($a,$type) { + function api_photo_detail(&$a,$type) { if (api_user()===false) return false; if(! $_REQUEST['photo_id']) return false; $scale = ((array_key_exists('scale',$_REQUEST)) ? intval($_REQUEST['scale']) : 0); @@ -686,7 +685,7 @@ require_once('include/api_auth.php'); api_register_func('api/red/photo', 'api_photo_detail', true); - function api_group_members($a,$type) { + function api_group_members(&$a,$type) { if(api_user() === false) return false; @@ -710,7 +709,7 @@ require_once('include/api_auth.php'); - function api_group($a,$type) { + function api_group(&$a,$type) { if(api_user() === false) return false; @@ -722,7 +721,7 @@ require_once('include/api_auth.php'); api_register_func('api/red/group','api_group', true); - function api_red_xchan($a,$type) { + function api_red_xchan(&$a,$type) { logger('api_xchan'); if(api_user() === false) @@ -740,7 +739,7 @@ require_once('include/api_auth.php'); api_register_func('api/red/xchan','api_red_xchan',true); - function api_statuses_mediap($a, $type) { + function api_statuses_mediap(&$a, $type) { if (api_user() === false) { logger('api_statuses_update: no user'); return false; @@ -786,7 +785,7 @@ require_once('include/api_auth.php'); } api_register_func('api/statuses/mediap','api_statuses_mediap', true); - function api_statuses_update($a, $type) { + function api_statuses_update(&$a, $type) { if (api_user() === false) { logger('api_statuses_update: no user'); return false; @@ -907,7 +906,7 @@ require_once('include/api_auth.php'); api_register_func('api/statuses/update','api_statuses_update', true); - function red_item_new($a, $type) { + function red_item_new(&$a, $type) { if (api_user() === false) { logger('api_red_item_new: no user'); @@ -941,7 +940,7 @@ require_once('include/api_auth.php'); api_register_func('api/red/item/new','red_item_new', true); - function red_item($a, $type) { + function red_item(&$a, $type) { if (api_user() === false) { logger('api_red_item_full: no user'); @@ -1042,7 +1041,7 @@ require_once('include/api_auth.php'); return $status_info; } - function api_status_show($a, $type){ + function api_status_show(&$a, $type){ $user_info = api_get_user($a); // get last public message @@ -1120,7 +1119,7 @@ require_once('include/api_auth.php'); // FIXME - this is essentially the same as api_status_show except for the template formatting at the end. Consolidate. - function api_users_show($a, $type){ + function api_users_show(&$a, $type){ $user_info = api_get_user($a); require_once('include/security.php'); @@ -1192,7 +1191,7 @@ require_once('include/api_auth.php'); * TODO: Add reply info */ - function api_statuses_home_timeline($a, $type){ + function api_statuses_home_timeline(&$a, $type){ if (api_user() === false) return false; @@ -1274,7 +1273,7 @@ require_once('include/api_auth.php'); api_register_func('api/statuses/home_timeline','api_statuses_home_timeline', true); api_register_func('api/statuses/friends_timeline','api_statuses_home_timeline', true); - function api_statuses_public_timeline($a, $type){ + function api_statuses_public_timeline(&$a, $type){ if (api_user()===false) return false; $user_info = api_get_user($a); @@ -1338,7 +1337,7 @@ require_once('include/api_auth.php'); * */ - function api_statuses_show($a, $type){ + function api_statuses_show(&$a, $type){ if (api_user()===false) return false; $user_info = api_get_user($a); @@ -1388,7 +1387,7 @@ require_once('include/api_auth.php'); /** * */ - function api_statuses_repeat($a, $type){ + function api_statuses_repeat(&$a, $type){ if (api_user()===false) return false; $user_info = api_get_user($a); @@ -1434,7 +1433,7 @@ require_once('include/api_auth.php'); * */ - function api_statuses_destroy($a, $type){ + function api_statuses_destroy(&$a, $type){ if (api_user()===false) return false; $user_info = api_get_user($a); @@ -1498,7 +1497,7 @@ require_once('include/api_auth.php'); */ - function api_statuses_mentions($a, $type){ + function api_statuses_mentions(&$a, $type){ if (api_user()===false) return false; $user_info = api_get_user($a); @@ -1565,7 +1564,7 @@ require_once('include/api_auth.php'); api_register_func('api/statuses/replies','api_statuses_mentions', true); - function api_statuses_user_timeline($a, $type){ + function api_statuses_user_timeline(&$a, $type){ if (api_user()===false) return false; $user_info = api_get_user($a); @@ -1649,7 +1648,7 @@ require_once('include/api_auth.php'); * * api v1 : https://web.archive.org/web/20131019055350/https://dev.twitter.com/docs/api/1/post/favorites/create/%3Aid */ - function api_favorites_create_destroy($a, $type){ + function api_favorites_create_destroy(&$a, $type){ logger('favorites_create_destroy'); @@ -1717,7 +1716,7 @@ require_once('include/api_auth.php'); - function api_favorites($a, $type){ + function api_favorites(&$a, $type){ if (api_user()===false) return false; @@ -1986,7 +1985,7 @@ require_once('include/api_auth.php'); } - function api_account_rate_limit_status($a,$type) { + function api_account_rate_limit_status(&$a,$type) { $hash = array( 'reset_time_in_seconds' => strtotime('now + 1 hour'), @@ -2002,7 +2001,7 @@ require_once('include/api_auth.php'); } api_register_func('api/account/rate_limit_status','api_account_rate_limit_status',true); - function api_help_test($a,$type) { + function api_help_test(&$a,$type) { if ($type == 'xml') $ok = "true"; @@ -2019,7 +2018,7 @@ require_once('include/api_auth.php'); * This function is deprecated by Twitter * returns: json, xml **/ - function api_statuses_f($a, $type, $qtype) { + function api_statuses_f(&$a, $type, $qtype) { if (api_user()===false) return false; $user_info = api_get_user($a); @@ -2040,7 +2039,6 @@ require_once('include/api_auth.php'); return false; } -// @fixme - update for hubzilla extensible perms using abconfig or find a better way to do it // For Red, the closest thing we can do to figure out if you're friends is if both of you are sending each other your streams. // This won't work if either of you send your stream to everybody on the network if($qtype == 'friends') @@ -2061,12 +2059,12 @@ require_once('include/api_auth.php'); return array('$users' => $ret); } - function api_statuses_friends($a, $type){ + function api_statuses_friends(&$a, $type){ $data = api_statuses_f($a,$type,"friends"); if ($data===false) return false; return api_apply_template("friends", $type, $data); } - function api_statuses_followers($a, $type){ + function api_statuses_followers(&$a, $type){ $data = api_statuses_f($a,$type,"followers"); if ($data===false) return false; return api_apply_template("friends", $type, $data); @@ -2079,7 +2077,7 @@ require_once('include/api_auth.php'); - function api_statusnet_config($a,$type) { + function api_statusnet_config(&$a,$type) { load_config('system'); @@ -2116,7 +2114,7 @@ require_once('include/api_auth.php'); api_register_func('api/friendica/config','api_statusnet_config',false); api_register_func('api/red/config','api_statusnet_config',false); - function api_statusnet_version($a,$type) { + function api_statusnet_version(&$a,$type) { // liar @@ -2134,7 +2132,7 @@ require_once('include/api_auth.php'); api_register_func('api/statusnet/version','api_statusnet_version',false); - function api_friendica_version($a,$type) { + function api_friendica_version(&$a,$type) { if($type === 'xml') { header("Content-type: application/xml"); @@ -2151,7 +2149,7 @@ require_once('include/api_auth.php'); api_register_func('api/red/version','api_friendica_version',false); - function api_ff_ids($a,$type,$qtype) { + function api_ff_ids(&$a,$type,$qtype) { if(! api_user()) return false; @@ -2187,17 +2185,17 @@ require_once('include/api_auth.php'); } } - function api_friends_ids($a,$type) { + function api_friends_ids(&$a,$type) { api_ff_ids($a,$type,'friends'); } - function api_followers_ids($a,$type) { + function api_followers_ids(&$a,$type) { api_ff_ids($a,$type,'followers'); } api_register_func('api/friends/ids','api_friends_ids',true); api_register_func('api/followers/ids','api_followers_ids',true); - function api_direct_messages_new($a, $type) { + function api_direct_messages_new(&$a, $type) { if (api_user()===false) return false; if (!x($_POST, "text") || !x($_POST,"screen_name")) return; @@ -2255,7 +2253,7 @@ require_once('include/api_auth.php'); } api_register_func('api/direct_messages/new','api_direct_messages_new',true); - function api_direct_messages_box($a, $type, $box) { + function api_direct_messages_box(&$a, $type, $box) { if (api_user()===false) return false; $user_info = api_get_user($a); @@ -2315,16 +2313,16 @@ require_once('include/api_auth.php'); } - function api_direct_messages_sentbox($a, $type){ + function api_direct_messages_sentbox(&$a, $type){ return api_direct_messages_box($a, $type, "sentbox"); } - function api_direct_messages_inbox($a, $type){ + function api_direct_messages_inbox(&$a, $type){ return api_direct_messages_box($a, $type, "inbox"); } - function api_direct_messages_all($a, $type){ + function api_direct_messages_all(&$a, $type){ return api_direct_messages_box($a, $type, "all"); } - function api_direct_messages_conversation($a, $type){ + function api_direct_messages_conversation(&$a, $type){ return api_direct_messages_box($a, $type, "conversation"); } api_register_func('api/direct_messages/conversation','api_direct_messages_conversation',true); @@ -2333,7 +2331,7 @@ require_once('include/api_auth.php'); api_register_func('api/direct_messages','api_direct_messages_inbox',true); - function api_oauth_request_token($a, $type){ + function api_oauth_request_token(&$a, $type){ try{ $oauth = new ZotOAuth1(); $req = OAuth1Request::from_request(); @@ -2348,7 +2346,7 @@ require_once('include/api_auth.php'); killme(); } - function api_oauth_access_token($a, $type){ + function api_oauth_access_token(&$a, $type){ try{ $oauth = new ZotOAuth1(); $req = OAuth1Request::from_request(); diff --git a/include/api_auth.php b/include/api_auth.php index e5cd7cab3..89882f821 100644 --- a/include/api_auth.php +++ b/include/api_auth.php @@ -64,8 +64,6 @@ function api_login(&$a){ } } - - if($record['account']) { authenticate_success($record['account']); diff --git a/include/attach.php b/include/attach.php index 7123d59fe..b3ddfee88 100644 --- a/include/attach.php +++ b/include/attach.php @@ -74,7 +74,6 @@ function z_mime_content_type($filename) { // 'webm' => 'audio/webm', 'mp4' => 'video/mp4', // 'mp4' => 'audio/mp4', - 'mkv' => 'video/x-matroska', // adobe 'pdf' => 'application/pdf', diff --git a/include/channel.php b/include/channel.php index 88dd818e6..8e0747f25 100644 --- a/include/channel.php +++ b/include/channel.php @@ -6,7 +6,6 @@ require_once('include/zot.php'); require_once('include/crypto.php'); require_once('include/menu.php'); -require_once('include/perm_upgrade.php'); /** * @brief Called when creating a new channel. @@ -226,26 +225,42 @@ function create_identity($arr) { if(array_key_exists('publish', $arr)) $publish = intval($arr['publish']); - $role_permissions = null; - - if(array_key_exists('permissions_role',$arr) && $arr['permissions_role']) { - $role_permissions = \Zotlabs\Access\PermissionRoles::role_perms($arr['permissions_role']); - } - - if($role_permissions && array_key_exists('directory_publish',$role_permissions)) - $publish = intval($role_permissions['directory_publish']); - $primary = true; if(array_key_exists('primary', $arr)) $primary = intval($arr['primary']); + $role_permissions = null; + $global_perms = get_perms(); + + if(array_key_exists('permissions_role',$arr) && $arr['permissions_role']) { + $role_permissions = get_role_perms($arr['permissions_role']); + + if($role_permissions) { + foreach($role_permissions as $p => $v) { + if(strpos($p,'channel_') !== false) { + $perms_keys .= ', ' . $p; + $perms_vals .= ', ' . intval($v); + } + if($p === 'directory_publish') + $publish = intval($v); + } + } + } + else { + $defperms = site_default_perms(); + foreach($defperms as $p => $v) { + $perms_keys .= ', ' . $global_perms[$p][0]; + $perms_vals .= ', ' . intval($v); + } + } + $expire = 0; $r = q("insert into channel ( channel_account_id, channel_primary, channel_name, channel_address, channel_guid, channel_guid_sig, - channel_hash, channel_prvkey, channel_pubkey, channel_pageflags, channel_system, channel_expire_days, channel_timezone ) - values ( %d, %d, '%s', '%s', '%s', '%s', '%s', '%s', '%s', %d, %d, %d, '%s' ) ", + channel_hash, channel_prvkey, channel_pubkey, channel_pageflags, channel_system, channel_expire_days, channel_timezone $perms_keys ) + values ( %d, %d, '%s', '%s', '%s', '%s', '%s', '%s', '%s', %d, %d, %d, '%s' $perms_vals ) ", intval($arr['account_id']), intval($primary), @@ -273,17 +288,6 @@ function create_identity($arr) { return $ret; } - if($role_permissions && array_key_exists('limits',$role_permissions)) - $perm_limits = $role_permissions['limits']; - else - $perm_limits = site_default_perms(); - - foreach($perm_limits as $p => $v) - \Zotlabs\Access\PermissionLimits::Set($r[0]['channel_id'],$p,$v); - - if($role_permissions && array_key_exists('perms_auto',$role_permissions)) - set_pconfig($r[0]['channel_id'],'system','autoperms',intval($role_permissions['perms_auto'])); - $ret['channel'] = $r[0]; if(intval($arr['account_id'])) @@ -347,29 +351,25 @@ function create_identity($arr) { ); if($role_permissions) { - $myperms = ((array_key_exists('perms_connect',$role_permissions)) ? $role_permissions['perms_connect'] : array()); - } - else { - $x = \Zotlabs\Access\PermissionRoles::role_perms('social'); - $myperms = $x['perms_connect']; + $myperms = ((array_key_exists('perms_accept',$role_permissions)) ? intval($role_permissions['perms_accept']) : 0); } + else + $myperms = PERMS_R_STREAM|PERMS_R_PROFILE|PERMS_R_PHOTOS|PERMS_R_ABOOK + |PERMS_W_STREAM|PERMS_W_WALL|PERMS_W_COMMENT|PERMS_W_MAIL|PERMS_W_CHAT + |PERMS_R_STORAGE|PERMS_R_PAGES|PERMS_W_LIKE; - $r = q("insert into abook ( abook_account, abook_channel, abook_xchan, abook_closeness, abook_created, abook_updated, abook_self ) - values ( %d, %d, '%s', %d, '%s', '%s', %d ) ", + $r = q("insert into abook ( abook_account, abook_channel, abook_xchan, abook_closeness, abook_created, abook_updated, abook_self, abook_my_perms ) + values ( %d, %d, '%s', %d, '%s', '%s', %d, %d ) ", intval($ret['channel']['channel_account_id']), intval($newuid), dbesc($hash), intval(0), dbesc(datetime_convert()), dbesc(datetime_convert()), - intval(1) + intval(1), + intval($myperms) ); - $x = \Zotlabs\Access\Permissions::FilledPerms($myperms); - foreach($x as $k => $v) { - set_abconfig($newuid,$hash,'my_perms',$k,$v); - } - if(intval($ret['channel']['channel_account_id'])) { // Save our permissions role so we can perhaps call it up and modify it later. @@ -378,21 +378,8 @@ function create_identity($arr) { set_pconfig($newuid,'system','permissions_role',$arr['permissions_role']); if(array_key_exists('online',$role_permissions)) set_pconfig($newuid,'system','hide_presence',1-intval($role_permissions['online'])); - if(array_key_exists('perms_auto',$role_permissions)) { - $autoperms = intval($role_permissions['perms_auto']); - set_pconfig($newuid,'system','autoperms',$autoperms); - if($autoperms) { - $x = \Zotlabs\Access\Permissions::FilledPerms($role_permissions['perms_connect']); - foreach($x as $k => $v) { - set_pconfig($newuid,'autoperms',$k,$v); - } - } - else { - $r = q("delete from pconfig where uid = %d and cat = 'autoperms'", - intval($newuid) - ); - } - } + if(array_key_exists('perms_auto',$role_permissions)) + set_pconfig($newuid,'system','autoperms',(($role_permissions['perms_auto']) ? $role_permissions['perms_accept'] : 0)); } // Create a group with yourself as a member. This allows somebody to use it @@ -510,8 +497,7 @@ function identity_basic_export($channel_id, $items = false) { intval($channel_id) ); if($r) { - translate_channel_perms_outbound($r[0]); - $ret['channel'] = $r[0]; + $ret['channel'] = $r[0]; $ret['relocate'] = [ 'channel_address' => $r[0]['channel_address'], 'url' => z_root()]; } @@ -533,7 +519,6 @@ function identity_basic_export($channel_id, $items = false) { $abconfig = load_abconfig($channel_id,$ret['abook'][$x]['abook_xchan']); if($abconfig) $ret['abook'][$x]['abconfig'] = $abconfig; - translate_abook_perms_outbound($ret['abook'][$x]); } stringify_array_elms($xchans); } @@ -1567,11 +1552,9 @@ function is_public_profile() { if(intval(get_config('system','block_public'))) return false; $channel = App::get_channel(); - if($channel) { - $perm = \Zotlabs\Access\PermissionLimits::Get($channel['channel_id'],'view_profile'); - if($perm == PERMS_PUBLIC) - return true; - } + if($channel && $channel['channel_r_profile'] == PERMS_PUBLIC) + return true; + return false; } @@ -1643,13 +1626,13 @@ function notifications_on($channel_id,$value) { function get_channel_default_perms($uid) { - $r = q("select abook_xchan from abook where abook_channel = %d and abook_self = 1 limit 1", + $r = q("select abook_my_perms from abook where abook_channel = %d and abook_self = 1 limit 1", intval($uid) ); if($r) - return load_abconfig($uid,$r[0]['abook_xchan'],'my_perms'); + return $r[0]['abook_my_perms']; - return array(); + return 0; } diff --git a/include/config.php b/include/config.php index 8c0469392..08810e298 100644 --- a/include/config.php +++ b/include/config.php @@ -97,6 +97,7 @@ function del_aconfig($account_id, $family, $key) { return Zlib\AConfig::Delete($account_id, $family, $key); } + function load_abconfig($chan, $xhash, $family = '') { return Zlib\AbConfig::Load($chan,$xhash,$family); } diff --git a/include/connections.php b/include/connections.php index 9f55820cc..ed4526a09 100644 --- a/include/connections.php +++ b/include/connections.php @@ -260,15 +260,15 @@ function channel_remove($channel_id, $local = true, $unset_session=false) { if(! $local) { - $r = q("update channel set channel_deleted = '%s', channel_removed = 1 where channel_id = %d", + $r = q("update channel set channel_deleted = '%s', channel_removed = 1, channel_r_stream = 0, channel_r_profile = 0, + channel_r_photos = 0, channel_r_abook = 0, channel_w_stream = 0, channel_w_wall = 0, channel_w_tagwall = 0, + channel_w_comment = 0, channel_w_mail = 0, channel_w_photos = 0, channel_w_chat = 0, channel_a_delegate = 0, + channel_r_storage = 0, channel_w_storage = 0, channel_r_pages = 0, channel_w_pages = 0, channel_a_republish = 0 + where channel_id = %d", dbesc(datetime_convert()), intval($channel_id) ); - q("delete from pconfig where uid = %d", - intval($channel_id) - ); - logger('deleting hublocs',LOGGER_DEBUG); $r = q("update hubloc set hubloc_deleted = 1 where hubloc_hash = '%s'", diff --git a/include/conversation.php b/include/conversation.php index 1efca37f3..957dbf8e9 100644 --- a/include/conversation.php +++ b/include/conversation.php @@ -99,7 +99,7 @@ function localize_item(&$item){ if(intval($item['item_thread_top'])) return; - $obj = json_decode($item['obj'],true); + $obj = json_decode_plus($item['obj']); if((! $obj) && ($item['obj'])) { logger('localize_item: failed to decode object: ' . print_r($item['obj'],true)); } @@ -186,7 +186,7 @@ function localize_item(&$item){ $Alink = $item['author']['xchan_url']; - $obj= json_decode($item['obj'],true); + $obj= json_decode_plus($item['obj']); $Blink = $Bphoto = ''; @@ -219,7 +219,7 @@ function localize_item(&$item){ $Aname = $item['author']['xchan_name']; $Alink = $item['author']['xchan_url']; - $obj= json_decode($item['obj'],true); + $obj= json_decode_plus($item['obj']); $Blink = $Bphoto = ''; diff --git a/include/follow.php b/include/follow.php index 5f63687f8..e5a74f85e 100644 --- a/include/follow.php +++ b/include/follow.php @@ -66,11 +66,12 @@ function new_contact($uid,$url,$channel,$interactive = false, $confirm = false) $role = get_pconfig($uid,'system','permissions_role'); if($role) { - $x = \Zotlabs\Access\PermissionRoles::role_perms($role); - if($x['perms_connect']) - $my_perms = $x['perms_connect']; + $x = get_role_perms($role); + if($x['perms_follow']) + $my_perms = $x['perms_follow']; } + if($is_red && $j) { logger('follow: ' . $url . ' ' . print_r($j,true), LOGGER_DEBUG); @@ -103,6 +104,10 @@ function new_contact($uid,$url,$channel,$interactive = false, $confirm = false) $xchan_hash = $x['hash']; + $their_perms = 0; + + $global_perms = get_perms(); + if( array_key_exists('permissions',$j) && array_key_exists('data',$j['permissions'])) { $permissions = crypto_unencapsulate(array( 'data' => $j['permissions']['data'], @@ -116,14 +121,16 @@ function new_contact($uid,$url,$channel,$interactive = false, $confirm = false) else $permissions = $j['permissions']; - if(is_array($permissions) && $permissions) { - foreach($permissions as $k => $v) { - set_abconfig($channel['channel_uid'],$xchan_hash,'their_perms',$k,intval($v)); + + foreach($permissions as $k => $v) { + if($v) { + $their_perms = $their_perms | intval($global_perms[$k][1]); } } } else { + $their_perms = 0; $xchan_hash = ''; $r = q("select * from xchan where xchan_hash = '%s' or xchan_url = '%s' limit 1", @@ -183,7 +190,6 @@ function new_contact($uid,$url,$channel,$interactive = false, $confirm = false) $result['message'] = t('Protocol disabled.'); return $result; } - $singleton = intval($x['singleton']); $aid = $channel['channel_account_id']; @@ -216,15 +222,6 @@ function new_contact($uid,$url,$channel,$interactive = false, $confirm = false) intval($uid) ); - if($is_http) { - - // Always set these "remote" permissions for feeds since we cannot interact with them - // to negotiate a suitable permission response - - set_abconfig($uid,$xchan_hash,'their_perms','view_stream',1); - set_abconfig($uid,$xchan_hash,'their_perms','republish',1); - } - if($r) { $abook_instance = $r[0]['abook_instance']; @@ -234,7 +231,8 @@ function new_contact($uid,$url,$channel,$interactive = false, $confirm = false) $abook_instance .= z_root(); } - $x = q("update abook set abook_instance = '%s' where abook_id = %d", + $x = q("update abook set abook_their_perms = %d, abook_instance = '%s' where abook_id = %d", + intval($their_perms), dbesc($abook_instance), intval($r[0]['abook_id']) ); @@ -244,13 +242,15 @@ function new_contact($uid,$url,$channel,$interactive = false, $confirm = false) if($closeness === false) $closeness = 80; - $r = q("insert into abook ( abook_account, abook_channel, abook_closeness, abook_xchan, abook_feed, abook_created, abook_updated, abook_instance ) - values( %d, %d, %d, '%s', %d, '%s', '%s', '%s' ) ", + $r = q("insert into abook ( abook_account, abook_channel, abook_closeness, abook_xchan, abook_feed, abook_their_perms, abook_my_perms, abook_created, abook_updated, abook_instance ) + values( %d, %d, %d, '%s', %d, %d, %d, '%s', '%s', '%s' ) ", intval($aid), intval($uid), intval($closeness), dbesc($xchan_hash), intval(($is_http) ? 1 : 0), + intval(($is_http) ? $their_perms|PERMS_R_STREAM|PERMS_A_REPUBLISH : $their_perms), + intval($my_perms), dbesc(datetime_convert()), dbesc(datetime_convert()), dbesc(($singleton) ? z_root() : '') @@ -260,16 +260,6 @@ function new_contact($uid,$url,$channel,$interactive = false, $confirm = false) if(! $r) logger('mod_follow: abook creation failed'); - $all_perms = \Zotlabs\Access\Permissions::Perms(); - if($all_perms) { - foreach($all_perms as $k => $v) { - if(in_array($k,$my_perms)) - set_abconfig($uid,$xchan_hash,'my_perms',$k,1); - else - set_abconfig($uid,$xchan_hash,'my_perms',$k,0); - } - } - $r = q("select abook.*, xchan.* from abook left join xchan on abook_xchan = xchan_hash where abook_xchan = '%s' and abook_channel = %d limit 1", dbesc($xchan_hash), diff --git a/include/import.php b/include/import.php index 42c902a0a..889b50eb1 100644 --- a/include/import.php +++ b/include/import.php @@ -1,7 +1,6 @@ $v) { - if(in_array($k,$disallowed)) - continue; - $clean[$k] = $v; - } - - if($clean) { - dbesc_array($clean); - - $r = dbq("INSERT INTO channel (`" - . implode("`, `", array_keys($clean)) - . "`) VALUES ('" - . implode("', '", array_values($clean)) - . "')" - ); - } + $r = dbq("INSERT INTO channel (`" + . implode("`, `", array_keys($channel)) + . "`) VALUES ('" + . implode("', '", array_values($channel)) + . "')" + ); if(! $r) { logger('mod_import: channel clone failed. ', print_r($channel,true)); @@ -107,14 +86,6 @@ function import_channel($channel, $account_id, $seize) { notice( t('Cloned channel not found. Import failed.') . EOL); return false; } - - // extract the permissions from the original imported array and use our new channel_id to set them - // These could be in the old channel permission stule or the new pconfig. We have a function to - // translate and store them no matter which they throw at us. - - $channel['channel_id'] = $r[0]['channel_id']; - translate_channel_perms_inbound($channel); - // reset $channel = $r[0]; diff --git a/include/items.php b/include/items.php index 178fb30d6..373090d41 100755 --- a/include/items.php +++ b/include/items.php @@ -183,7 +183,7 @@ function is_item_normal($item) { * This function examines the comment_policy attached to an item and decides if the current observer has * sufficient privileges to comment. This will normally be called on a remote site where perm_is_allowed() * will not be suitable because the post owner does not have a local channel_id. - * Generally we should look at the item - in particular the author['abook_flags'] and see if ABOOK_FLAG_SELF is set. + * Generally we should look at the item - in particular the author['book_flags'] and see if ABOOK_FLAG_SELF is set. * If it is, you should be able to use perm_is_allowed( ... 'post_comments'), and if it isn't you need to call * can_comment_on_post() * We also check the comments_closed date/time on the item if this is set. @@ -224,7 +224,8 @@ function can_comment_on_post($observer_xchan, $item) { case 'contacts': case 'authenticated': case '': - if(array_key_exists('owner',$item) && get_abconfig($item['uid'],$item['owner']['abook_xchan'],'their_perms','post_comments')) { + if(array_key_exists('owner',$item)) { + if(($item['owner']['abook_xchan']) && ($item['owner']['abook_their_perms'] & PERMS_W_COMMENT)) return true; } break; @@ -385,7 +386,7 @@ function post_activity_item($arr) { return $ret; } - $arr['public_policy'] = ((x($_REQUEST,'public_policy')) ? escape_tags($_REQUEST['public_policy']) : map_scope(\Zotlabs\Access\PermissionLimits::Get($channel['channel_id'],'view_stream'),true)); + $arr['public_policy'] = ((x($_REQUEST,'public_policy')) ? escape_tags($_REQUEST['public_policy']) : map_scope($channel['channel_r_stream'],true)); if($arr['public_policy']) $arr['item_private'] = 1; @@ -421,7 +422,7 @@ function post_activity_item($arr) { $arr['deny_cid'] = ((x($arr,'deny_cid')) ? $arr['deny_cid'] : $channel['channel_deny_cid']); $arr['deny_gid'] = ((x($arr,'deny_gid')) ? $arr['deny_gid'] : $channel['channel_deny_gid']); - $arr['comment_policy'] = map_scope(\Zotlabs\Access/PermissionLimits::Get($channel['channel_id'],'post_comments')); + $arr['comment_policy'] = map_scope($channel['channel_w_comment']); if ((! $arr['plink']) && (intval($arr['item_thread_top']))) { $arr['plink'] = z_root() . '/channel/' . $channel['channel_address'] . '/?f=&mid=' . $arr['mid']; @@ -970,12 +971,12 @@ function encode_item($item,$mirror = false) { // logger('encode_item: ' . print_r($item,true)); - $r = q("select channel_id from channel where channel_id = %d limit 1", + $r = q("select channel_r_stream, channel_w_comment from channel where channel_id = %d limit 1", intval($item['uid']) ); if($r) - $comment_scope = \Zotlabs\Access\PermissionLimits::Get($item['uid'],'post_comments'); + $comment_scope = $r[0]['channel_w_comment']; else $comment_scope = 0; @@ -989,9 +990,9 @@ function encode_item($item,$mirror = false) { if(array_key_exists('item_obscured',$item) && intval($item['item_obscured'])) { if($item['title']) - $item['title'] = crypto_unencapsulate(json_decode($item['title'],true),$key); + $item['title'] = crypto_unencapsulate(json_decode_plus($item['title']),$key); if($item['body']) - $item['body'] = crypto_unencapsulate(json_decode($item['body'],true),$key); + $item['body'] = crypto_unencapsulate(json_decode_plus($item['body']),$key); } // If we're trying to backup an item so that it's recoverable or for export/imprt, @@ -1061,11 +1062,11 @@ function encode_item($item,$mirror = false) { $x['owner'] = encode_item_xchan($item['owner']); $x['author'] = encode_item_xchan($item['author']); if($item['obj']) - $x['object'] = json_decode($item['obj'],true); + $x['object'] = json_decode_plus($item['obj']); if($item['target']) - $x['target'] = json_decode($item['target'],true); + $x['target'] = json_decode_plus($item['target']); if($item['attach']) - $x['attach'] = json_decode($item['attach'],true); + $x['attach'] = json_decode_plus($item['attach']); if($y = encode_item_flags($item)) $x['flags'] = $y; @@ -1381,7 +1382,7 @@ function encode_mail($item,$extended = false) { $x['to'] = encode_item_xchan($item['to']); if($item['attach']) - $x['attach'] = json_decode($item['attach'],true); + $x['attach'] = json_decode_plus($item['attach']); $x['flags'] = array(); @@ -2389,7 +2390,7 @@ function tag_deliver($uid, $item_id) { if(($item['obj_type'] == "") || ($item['obj_type'] !== ACTIVITY_OBJ_PERSON) || (! $item['obj'])) $poke_notify = false; - $obj = json_decode($item['obj'],true); + $obj = json_decode_plus($item['obj']); if($obj) { if($obj['id'] !== $u[0]['channel_hash']) $poke_notify = false; @@ -2426,14 +2427,14 @@ function tag_deliver($uid, $item_id) { if(($item['owner_xchan'] === $u[0]['channel_hash']) && (! get_pconfig($u[0]['channel_id'],'system','blocktags'))) { logger('tag_deliver: community tag recipient: ' . $u[0]['channel_name']); - $j_tgt = json_decode($item['target'],true); + $j_tgt = json_decode_plus($item['target']); if($j_tgt && $j_tgt['id']) { $p = q("select * from item where mid = '%s' and uid = %d limit 1", dbesc($j_tgt['id']), intval($u[0]['channel_id']) ); if($p) { - $j_obj = json_decode($item['obj'],true); + $j_obj = json_decode_plus($item['obj']); logger('tag_deliver: tag object: ' . print_r($j_obj,true), LOGGER_DATA); if($j_obj && $j_obj['id'] && $j_obj['title']) { if(is_array($j_obj['link'])) @@ -2518,7 +2519,7 @@ function tag_deliver($uid, $item_id) { if(intval($item['item_obscured'])) { $key = get_config('system','prvkey'); if($item['body']) - $body = crypto_unencapsulate(json_decode($item['body'],true),$key); + $body = crypto_unencapsulate(json_decode_plus($item['body']),$key); } else $body = $item['body']; @@ -2761,7 +2762,7 @@ function start_delivery_chain($channel, $item, $item_id, $parent) { $private = (($channel['channel_allow_cid'] || $channel['channel_allow_gid'] || $channel['channel_deny_cid'] || $channel['channel_deny_gid']) ? 1 : 0); - $new_public_policy = map_scope(\Zotlabs\Access\PermissionLimits::Get($channel['channel_id'],'view_stream'),true); + $new_public_policy = map_scope($channel['channel_r_stream'],true); if((! $private) && $new_public_policy) $private = 1; @@ -2806,7 +2807,7 @@ function start_delivery_chain($channel, $item, $item_id, $parent) { dbesc($channel['channel_deny_gid']), intval($private), dbesc($new_public_policy), - dbesc(map_scope(\Zotlabs\Access\PermissionLimits::Get($channel['channel_id'],'post_comments'))), + dbesc(map_scope($channel['channel_w_comment'])), dbesc($title), dbesc($body), intval($item_wall), @@ -2855,7 +2856,7 @@ function check_item_source($uid, $item) { if(! $x) return false; - if(! get_abconfig($uid,$item['owner_xchan'],'their_perms','republish')) + if(! ($x[0]['abook_their_perms'] & PERMS_A_REPUBLISH)) return false; if($item['item_private'] && (! intval($x[0]['abook_feed']))) diff --git a/include/oembed.php b/include/oembed.php index fe3a3c33c..fe068278e 100755 --- a/include/oembed.php +++ b/include/oembed.php @@ -215,17 +215,6 @@ function oembed_fetch_url($embedurl){ if($j->html != $orig) { logger('oembed html was purified. original: ' . $orig . ' purified: ' . $j->html, LOGGER_DEBUG, LOG_INFO); } - - $orig_len = trim(mb_strlen($orig)); - $new_len = trim(mb_strlen($j->html)); - if(! $new_len) - $j->type = 'error'; - elseif($orig_len) { - $ratio = $new_len / $orig_len; - if($ratio < 0.8) - $j->type = 'error'; - } - } } diff --git a/include/perm_upgrade.php b/include/perm_upgrade.php deleted file mode 100644 index 5be1ffbb2..000000000 --- a/include/perm_upgrade.php +++ /dev/null @@ -1,236 +0,0 @@ - $v) { - set_pconfig($channel['channel_id'],'autoperms',$k,$v); - } - } - } -} - - -function perm_abook_upgrade($abook) { - - $x = perms_int_to_array($abook['abook_their_perms']); - if($x) { - foreach($x as $k => $v) { - set_abconfig($abook['abook_channel'],$abook['abook_xchan'],'their_perms',$k, $v); - } - } - - $x = perms_int_to_array($abook['abook_my_perms']); - if($x) { - foreach($x as $k => $v) { - set_abconfig($abook['abook_channel'],$abook['abook_xchan'],'my_perms',$k, $v); - } - } -} - -function translate_channel_perms_outbound(&$channel) { - $r = q("select * from pconfig where uid = %d and cat = 'perm_limits' ", - intval($channel['channel_id']) - ); - - if($r) { - foreach($r as $rr) { - if($rr['k'] === 'view_stream') - $channel['channel_r_stream'] = $rr['v']; - if($rr['k'] === 'view_profile') - $channel['channel_r_profile'] = $rr['v']; - if($rr['k'] === 'view_contacts') - $channel['channel_r_abook'] = $rr['v']; - if($rr['k'] === 'view_storage') - $channel['channel_r_storage'] = $rr['v']; - if($rr['k'] === 'view_pages') - $channel['channel_r_pages'] = $rr['v']; - if($rr['k'] === 'send_stream') - $channel['channel_w_stream'] = $rr['v']; - if($rr['k'] === 'post_wall') - $channel['channel_w_wall'] = $rr['v']; - if($rr['k'] === 'post_comments') - $channel['channel_w_comment'] = $rr['v']; - if($rr['k'] === 'post_mail') - $channel['channel_w_mail'] = $rr['v']; - if($rr['k'] === 'post_like') - $channel['channel_w_like'] = $rr['v']; - if($rr['k'] === 'tag_deliver') - $channel['channel_w_tagwall'] = $rr['v']; - if($rr['k'] === 'chat') - $channel['channel_w_chat'] = $rr['v']; - if($rr['k'] === 'write_storage') - $channel['channel_w_storage'] = $rr['v']; - if($rr['k'] === 'write_pages') - $channel['channel_w_pages'] = $rr['v']; - if($rr['k'] === 'republish') - $channel['channel_a_republish'] = $rr['v']; - if($rr['k'] === 'delegate') - $channel['channel_a_delegate'] = $rr['v']; - - } - $channel['perm_limits'] = $r; - } -} - -function translate_channel_perms_inbound($channel) { - - if($channel['perm_limits']) { - foreach($channel['perm_limits'] as $p) { - set_pconfig($channel['channel_id'],'perm_limits',$p['k'],$p['v']); - } - } - else { - perm_limits_upgrade($channel); - } - -} - -function translate_abook_perms_outbound(&$abook) { - $my_perms = 0; - $their_perms = 0; - - if(array_key_exists('abconfig',$abook) && is_array($abook['abconfig']) && $abook['abconfig']) { - foreach($abook['abconfig'] as $p) { - if($p['cat'] === 'their_perms') { - if($p['k'] === 'view_stream' && intval($p['v'])) - $their_perms += PERMS_R_STREAM; - if($p['k'] === 'view_profile' && intval($p['v'])) - $their_perms += PERMS_R_PROFILE; - if($p['k'] === 'view_contacts' && intval($p['v'])) - $their_perms += PERMS_R_ABOOK; - if($p['k'] === 'view_storage' && intval($p['v'])) - $their_perms += PERMS_R_STORAGE; - if($p['k'] === 'view_pages' && intval($p['v'])) - $their_perms += PERMS_R_PAGES; - if($p['k'] === 'send_stream' && intval($p['v'])) - $their_perms += PERMS_W_STREAM; - if($p['k'] === 'post_wall' && intval($p['v'])) - $their_perms += PERMS_W_WALL; - if($p['k'] === 'post_comments' && intval($p['v'])) - $their_perms += PERMS_W_COMMENT; - if($p['k'] === 'post_mail' && intval($p['v'])) - $their_perms += PERMS_W_MAIL; - if($p['k'] === 'post_like' && intval($p['v'])) - $their_perms += PERMS_W_LIKE; - if($p['k'] === 'tag_deliver' && intval($p['v'])) - $their_perms += PERMS_W_TAGWALL; - if($p['k'] === 'chat' && intval($p['v'])) - $their_perms += PERMS_W_CHAT; - if($p['k'] === 'write_storage' && intval($p['v'])) - $their_perms += PERMS_W_STORAGE; - if($p['k'] === 'write_pages' && intval($p['v'])) - $their_perms += PERMS_W_PAGES; - if($p['k'] === 'republish' && intval($p['v'])) - $their_perms += PERMS_A_REPUBLISH; - if($p['k'] === 'delegate' && intval($p['v'])) - $their_perms += PERMS_A_DELEGATE; - } - if($p['cat'] === 'my_perms') { - if($p['k'] === 'view_stream' && intval($p['v'])) - $my_perms += PERMS_R_STREAM; - if($p['k'] === 'view_profile' && intval($p['v'])) - $my_perms += PERMS_R_PROFILE; - if($p['k'] === 'view_contacts' && intval($p['v'])) - $my_perms += PERMS_R_ABOOK; - if($p['k'] === 'view_storage' && intval($p['v'])) - $my_perms += PERMS_R_STORAGE; - if($p['k'] === 'view_pages' && intval($p['v'])) - $my_perms += PERMS_R_PAGES; - if($p['k'] === 'send_stream' && intval($p['v'])) - $my_perms += PERMS_W_STREAM; - if($p['k'] === 'post_wall' && intval($p['v'])) - $my_perms += PERMS_W_WALL; - if($p['k'] === 'post_comments' && intval($p['v'])) - $my_perms += PERMS_W_COMMENT; - if($p['k'] === 'post_mail' && intval($p['v'])) - $my_perms += PERMS_W_MAIL; - if($p['k'] === 'post_like' && intval($p['v'])) - $my_perms += PERMS_W_LIKE; - if($p['k'] === 'tag_deliver' && intval($p['v'])) - $my_perms += PERMS_W_TAGWALL; - if($p['k'] === 'chat' && intval($p['v'])) - $my_perms += PERMS_W_CHAT; - if($p['k'] === 'write_storage' && intval($p['v'])) - $my_perms += PERMS_W_STORAGE; - if($p['k'] === 'write_pages' && intval($p['v'])) - $my_perms += PERMS_W_PAGES; - if($p['k'] === 'republish' && intval($p['v'])) - $my_perms += PERMS_A_REPUBLISH; - if($p['k'] === 'delegate' && intval($p['v'])) - $my_perms += PERMS_A_DELEGATE; - } - } - - $abook['abook_their_perms'] = $their_perms; - $abook['abook_my_perms'] = $my_perms; - } -} - -function translate_abook_perms_inbound($channel,$abook) { - - $new_perms = false; - $abook['abook_channel'] = $channel['channel_id']; - - if(array_key_exists('abconfig',$abook) && is_array($abook['abconfig']) && $abook['abconfig']) { - foreach($abook['abconfig'] as $p) { - if($p['cat'] == 'their_perms' || $p['cat'] == 'my_perms') { - $new_perms = true; - break; - } - } - } - - if($new_perms == false) { - perm_abook_upgrade($abook); - } - -} - - - diff --git a/include/permissions.php b/include/permissions.php index 638bedb24..19242d29f 100644 --- a/include/permissions.php +++ b/include/permissions.php @@ -67,7 +67,7 @@ function get_all_perms($uid, $observer_xchan, $internal_use = true) { if($api) return get_all_api_perms($uid,$api); - $global_perms = \Zotlabs\Access\Permissions::Perms(); + $global_perms = get_perms(); // Save lots of individual lookups @@ -81,13 +81,11 @@ function get_all_perms($uid, $observer_xchan, $internal_use = true) { $ret = array(); - $abperms = (($uid && $observer_xchan) ? load_abconfig($uid,$observer_xchan,'my_perms') : array()); - foreach($global_perms as $perm_name => $permission) { // First find out what the channel owner declared permissions to be. - $channel_perm = \Zotlabs\Access\PermissionLimits::Get($uid,$perm_name); + $channel_perm = $permission[0]; if(! $channel_checked) { $r = q("select * from channel where channel_id = %d limit 1", @@ -107,7 +105,7 @@ function get_all_perms($uid, $observer_xchan, $internal_use = true) { // These take priority over all other settings. if($observer_xchan) { - if($channel_perm & PERMS_AUTHED) { + if($r[0][$channel_perm] & PERMS_AUTHED) { $ret[$perm_name] = true; continue; } @@ -138,10 +136,7 @@ function get_all_perms($uid, $observer_xchan, $internal_use = true) { // Check if this is a write permission and they are being ignored // This flag is only visible internally. - $blocked_anon_perms = \Zotlabs\Access\Permissions::BlockedAnonPerms(); - - - if(($x) && ($internal_use) && in_array($perm_name,$blocked_anon_perms) && intval($x[0]['abook_ignored'])) { + if(($x) && ($internal_use) && (! $global_perms[$perm_name][2]) && intval($x[0]['abook_ignored'])) { $ret[$perm_name] = false; continue; } @@ -159,7 +154,7 @@ function get_all_perms($uid, $observer_xchan, $internal_use = true) { // if you've moved elsewhere, you will only have read only access if(($observer_xchan) && ($r[0]['channel_hash'] === $observer_xchan)) { - if($r[0]['channel_moved'] && (in_array($perm_name,$blocked_anon_perms))) + if($r[0]['channel_moved'] && (! $permission[2])) $ret[$perm_name] = false; else $ret[$perm_name] = true; @@ -168,7 +163,7 @@ function get_all_perms($uid, $observer_xchan, $internal_use = true) { // Anybody at all (that wasn't blocked or ignored). They have permission. - if($channel_perm & PERMS_PUBLIC) { + if($r[0][$channel_perm] & PERMS_PUBLIC) { $ret[$perm_name] = true; continue; } @@ -183,7 +178,7 @@ function get_all_perms($uid, $observer_xchan, $internal_use = true) { // If we're still here, we have an observer, check the network. - if($channel_perm & PERMS_NETWORK) { + if($r[0][$channel_perm] & PERMS_NETWORK) { if(($x && $x[0]['xchan_network'] === 'zot') || ($y && $y[0]['xchan_network'] === 'zot')) { $ret[$perm_name] = true; continue; @@ -192,7 +187,7 @@ function get_all_perms($uid, $observer_xchan, $internal_use = true) { // If PERMS_SITE is specified, find out if they've got an account on this hub - if($channel_perm & PERMS_SITE) { + if($r[0][$channel_perm] & PERMS_SITE) { if(! $onsite_checked) { $c = q("select channel_hash from channel where channel_hash = '%s' limit 1", dbesc($observer_xchan) @@ -219,7 +214,7 @@ function get_all_perms($uid, $observer_xchan, $internal_use = true) { // They are in your address book, but haven't been approved - if($channel_perm & PERMS_PENDING) { + if($r[0][$channel_perm] & PERMS_PENDING) { $ret[$perm_name] = true; continue; } @@ -231,21 +226,16 @@ function get_all_perms($uid, $observer_xchan, $internal_use = true) { // They're a contact, so they have permission - if($channel_perm & PERMS_CONTACTS) { + if($r[0][$channel_perm] & PERMS_CONTACTS) { $ret[$perm_name] = true; continue; } // Permission granted to certain channels. Let's see if the observer is one of them - if($channel_perm & PERMS_SPECIFIC) { - if($abperms) { - foreach($abperms as $ab) { - if(($ab['cat'] == 'my_perms') && ($ab['k'] == $perm_name)) { - $ret[$perm_name] = (intval($ab['v']) ? true : false); - break; - } - } + if($r[0][$channel_perm] & PERMS_SPECIFIC) { + if(($x[0]['abook_my_perms'] & $global_perms[$perm_name][1])) { + $ret[$perm_name] = true; continue; } } @@ -294,23 +284,21 @@ function perm_is_allowed($uid, $observer_xchan, $permission) { if($arr['result']) return true; - $global_perms = \Zotlabs\Access\Permissions::Perms(); + $global_perms = get_perms(); // First find out what the channel owner declared permissions to be. - $channel_perm = \Zotlabs\Access\PermissionLimits::Get($uid,$permission); + $channel_perm = $global_perms[$permission][0]; - $r = q("select channel_pageflags, channel_moved, channel_hash from channel where channel_id = %d limit 1", + $r = q("select %s, channel_pageflags, channel_moved, channel_hash from channel where channel_id = %d limit 1", + dbesc($channel_perm), intval($uid) ); if(! $r) return false; - - $blocked_anon_perms = \Zotlabs\Access\Permissions::BlockedAnonPerms(); - if($observer_xchan) { - if($channel_perm & PERMS_AUTHED) + if($r[0][$channel_perm] & PERMS_AUTHED) return true; $x = q("select abook_my_perms, abook_blocked, abook_ignored, abook_pending, xchan_network from abook left join xchan on abook_xchan = xchan_hash @@ -324,7 +312,7 @@ function perm_is_allowed($uid, $observer_xchan, $permission) { if(($x) && intval($x[0]['abook_blocked'])) return false; - if(($x) && in_array($permission,$blocked_anon_perms) && intval($x[0]['abook_ignored'])) + if(($x) && (! $global_perms[$permission][2]) && intval($x[0]['abook_ignored'])) return false; if(! $x) { @@ -333,9 +321,7 @@ function perm_is_allowed($uid, $observer_xchan, $permission) { dbesc($observer_xchan) ); } - $abperms = load_abconfig($uid,$observer_xchan,'my_perms'); } - // system is blocked to anybody who is not authenticated @@ -347,13 +333,13 @@ function perm_is_allowed($uid, $observer_xchan, $permission) { // in which case you will have read_only access if($r[0]['channel_hash'] === $observer_xchan) { - if($r[0]['channel_moved'] && (in_array($permission,$blocked_anon_perms))) + if($r[0]['channel_moved'] && (! $global_perms[$permission][2])) return false; else return true; } - if($channel_perm & PERMS_PUBLIC) + if($r[0][$channel_perm] & PERMS_PUBLIC) return true; // If it's an unauthenticated observer, we only need to see if PERMS_PUBLIC is set @@ -364,14 +350,14 @@ function perm_is_allowed($uid, $observer_xchan, $permission) { // If we're still here, we have an observer, check the network. - if($channel_perm & PERMS_NETWORK) { + if($r[0][$channel_perm] & PERMS_NETWORK) { if (($x && $x[0]['xchan_network'] === 'zot') || ($y && $y[0]['xchan_network'] === 'zot')) return true; } // If PERMS_SITE is specified, find out if they've got an account on this hub - if($channel_perm & PERMS_SITE) { + if($r[0][$channel_perm] & PERMS_SITE) { $c = q("select channel_hash from channel where channel_hash = '%s' limit 1", dbesc($observer_xchan) ); @@ -390,7 +376,7 @@ function perm_is_allowed($uid, $observer_xchan, $permission) { // They are in your address book, but haven't been approved - if($channel_perm & PERMS_PENDING) { + if($r[0][$channel_perm] & PERMS_PENDING) { return true; } @@ -400,20 +386,15 @@ function perm_is_allowed($uid, $observer_xchan, $permission) { // They're a contact, so they have permission - if($channel_perm & PERMS_CONTACTS) { + if($r[0][$channel_perm] & PERMS_CONTACTS) { return true; } // Permission granted to certain channels. Let's see if the observer is one of them - if(($r) && ($channel_perm & PERMS_SPECIFIC)) { - if($abperms) { - foreach($abperms as $ab) { - if($ab['cat'] == 'my_perms' && $ab['k'] == $permission) { - return ((intval($ab['v'])) ? true : false); - } - } - } + if(($r) && $r[0][$channel_perm] & PERMS_SPECIFIC) { + if($x[0]['abook_my_perms'] & $global_perms[$permission][1]) + return true; } // No permissions allowed. @@ -579,28 +560,28 @@ function get_role_perms($role) { $ret['default_collection'] = false; $ret['directory_publish'] = true; $ret['online'] = true; - $ret['perms_connect'] = [ - 'view_stream', 'view_profile', 'view_contacts', 'view_storage', - 'view_pages', 'send_stream', 'post_wall', 'post_comments', - 'post_mail', 'chat', 'post_like', 'republish' ]; - $ret['limits'] = [ - 'view_stream' => PERMS_PUBLIC, - 'view_profile' => PERMS_PUBLIC, - 'view_contacts' => PERMS_PUBLIC, - 'view_storage' => PERMS_PUBLIC, - 'view_pages' => PERMS_PUBLIC, - 'send_stream' => PERMS_SPECIFIC, - 'post_wall' => PERMS_SPECIFIC, - 'post_comments' => PERMS_SPECIFIC, - 'post_mail' => PERMS_SPECIFIC, - 'post_like' => PERMS_SPECIFIC, - 'tag_deliver' => PERMS_SPECIFIC, - 'chat' => PERMS_SPECIFIC, - 'write_storage' => PERMS_SPECIFIC, - 'write_pages' => PERMS_SPECIFIC, - 'republish' => PERMS_SPECIFIC, - 'delegate' => PERMS_SPECIFIC - ]; + $ret['perms_follow'] = PERMS_R_STREAM|PERMS_R_PROFILE|PERMS_R_ABOOK + |PERMS_W_STREAM|PERMS_W_WALL|PERMS_W_COMMENT|PERMS_W_MAIL|PERMS_W_CHAT + |PERMS_R_STORAGE|PERMS_R_PAGES|PERMS_A_REPUBLISH|PERMS_W_LIKE; + $ret['perms_accept'] = PERMS_R_STREAM|PERMS_R_PROFILE|PERMS_R_ABOOK + |PERMS_W_STREAM|PERMS_W_WALL|PERMS_W_COMMENT|PERMS_W_MAIL|PERMS_W_CHAT + |PERMS_R_STORAGE|PERMS_R_PAGES|PERMS_A_REPUBLISH|PERMS_W_LIKE; + $ret['channel_r_stream'] = PERMS_PUBLIC; + $ret['channel_r_profile'] = PERMS_PUBLIC; + $ret['channel_r_abook'] = PERMS_PUBLIC; + $ret['channel_w_stream'] = PERMS_SPECIFIC; + $ret['channel_w_wall'] = PERMS_SPECIFIC; + $ret['channel_w_tagwall'] = PERMS_SPECIFIC; + $ret['channel_w_comment'] = PERMS_SPECIFIC; + $ret['channel_w_mail'] = PERMS_SPECIFIC; + $ret['channel_w_chat'] = PERMS_SPECIFIC; + $ret['channel_a_delegate'] = PERMS_SPECIFIC; + $ret['channel_r_storage'] = PERMS_PUBLIC; + $ret['channel_w_storage'] = PERMS_SPECIFIC; + $ret['channel_r_pages'] = PERMS_PUBLIC; + $ret['channel_w_pages'] = PERMS_SPECIFIC; + $ret['channel_a_republish'] = PERMS_SPECIFIC; + $ret['channel_w_like'] = PERMS_NETWORK; break; @@ -609,29 +590,28 @@ function get_role_perms($role) { $ret['default_collection'] = true; $ret['directory_publish'] = true; $ret['online'] = true; - $ret['perms_connect'] = [ - 'view_stream', 'view_profile', 'view_contacts', 'view_storage', - 'view_pages', 'send_stream', 'post_wall', 'post_comments', - 'post_mail', 'chat', 'post_like' ]; - $ret['limits'] = [ - 'view_stream' => PERMS_PUBLIC, - 'view_profile' => PERMS_PUBLIC, - 'view_contacts' => PERMS_PUBLIC, - 'view_storage' => PERMS_PUBLIC, - 'view_pages' => PERMS_PUBLIC, - 'send_stream' => PERMS_SPECIFIC, - 'post_wall' => PERMS_SPECIFIC, - 'post_comments' => PERMS_SPECIFIC, - 'post_mail' => PERMS_SPECIFIC, - 'post_like' => PERMS_SPECIFIC, - 'tag_deliver' => PERMS_SPECIFIC, - 'chat' => PERMS_SPECIFIC, - 'write_storage' => PERMS_SPECIFIC, - 'write_pages' => PERMS_SPECIFIC, - 'republish' => PERMS_SPECIFIC, - 'delegate' => PERMS_SPECIFIC - ]; - + $ret['perms_follow'] = PERMS_R_STREAM|PERMS_R_PROFILE|PERMS_R_ABOOK + |PERMS_W_STREAM|PERMS_W_WALL|PERMS_W_COMMENT|PERMS_W_MAIL|PERMS_W_CHAT + |PERMS_R_STORAGE|PERMS_R_PAGES|PERMS_W_LIKE; + $ret['perms_accept'] = PERMS_R_STREAM|PERMS_R_PROFILE|PERMS_R_ABOOK + |PERMS_W_STREAM|PERMS_W_WALL|PERMS_W_COMMENT|PERMS_W_MAIL|PERMS_W_CHAT + |PERMS_R_STORAGE|PERMS_R_PAGES|PERMS_W_LIKE; + $ret['channel_r_stream'] = PERMS_PUBLIC; + $ret['channel_r_profile'] = PERMS_PUBLIC; + $ret['channel_r_abook'] = PERMS_PUBLIC; + $ret['channel_w_stream'] = PERMS_SPECIFIC; + $ret['channel_w_wall'] = PERMS_SPECIFIC; + $ret['channel_w_tagwall'] = PERMS_SPECIFIC; + $ret['channel_w_comment'] = PERMS_SPECIFIC; + $ret['channel_w_mail'] = PERMS_SPECIFIC; + $ret['channel_w_chat'] = PERMS_SPECIFIC; + $ret['channel_a_delegate'] = PERMS_SPECIFIC; + $ret['channel_r_storage'] = PERMS_PUBLIC; + $ret['channel_w_storage'] = PERMS_SPECIFIC; + $ret['channel_r_pages'] = PERMS_PUBLIC; + $ret['channel_w_pages'] = PERMS_SPECIFIC; + $ret['channel_a_republish'] = PERMS_SPECIFIC; + $ret['channel_w_like'] = PERMS_SPECIFIC; break; @@ -640,28 +620,28 @@ function get_role_perms($role) { $ret['default_collection'] = true; $ret['directory_publish'] = false; $ret['online'] = false; - $ret['perms_connect'] = [ - 'view_stream', 'view_profile', 'view_contacts', 'view_storage', - 'view_pages', 'send_stream', 'post_wall', 'post_comments', - 'post_mail', 'post_like' ]; - $ret['limits'] = [ - 'view_stream' => PERMS_PUBLIC, - 'view_profile' => PERMS_PUBLIC, - 'view_contacts' => PERMS_SPECIFIC, - 'view_storage' => PERMS_SPECIFIC, - 'view_pages' => PERMS_PUBLIC, - 'send_stream' => PERMS_SPECIFIC, - 'post_wall' => PERMS_SPECIFIC, - 'post_comments' => PERMS_SPECIFIC, - 'post_mail' => PERMS_SPECIFIC, - 'post_like' => PERMS_SPECIFIC, - 'tag_deliver' => PERMS_SPECIFIC, - 'chat' => PERMS_SPECIFIC, - 'write_storage' => PERMS_SPECIFIC, - 'write_pages' => PERMS_SPECIFIC, - 'republish' => PERMS_SPECIFIC, - 'delegate' => PERMS_SPECIFIC - ]; + $ret['perms_follow'] = PERMS_R_STREAM|PERMS_R_PROFILE|PERMS_R_ABOOK + |PERMS_W_STREAM|PERMS_W_WALL|PERMS_W_COMMENT|PERMS_W_MAIL|PERMS_W_CHAT + |PERMS_R_STORAGE|PERMS_R_PAGES|PERMS_W_LIKE; + $ret['perms_accept'] = PERMS_R_STREAM|PERMS_R_PROFILE|PERMS_R_ABOOK + |PERMS_W_STREAM|PERMS_W_WALL|PERMS_W_COMMENT|PERMS_W_MAIL|PERMS_W_CHAT + |PERMS_R_STORAGE|PERMS_R_PAGES|PERMS_W_LIKE; + $ret['channel_r_stream'] = PERMS_PUBLIC; + $ret['channel_r_profile'] = PERMS_PUBLIC; + $ret['channel_r_abook'] = PERMS_SPECIFIC; + $ret['channel_w_stream'] = PERMS_SPECIFIC; + $ret['channel_w_wall'] = PERMS_SPECIFIC; + $ret['channel_w_tagwall'] = PERMS_SPECIFIC; + $ret['channel_w_comment'] = PERMS_SPECIFIC; + $ret['channel_w_mail'] = PERMS_SPECIFIC; + $ret['channel_w_chat'] = PERMS_SPECIFIC; + $ret['channel_a_delegate'] = PERMS_SPECIFIC; + $ret['channel_r_storage'] = PERMS_SPECIFIC; + $ret['channel_w_storage'] = PERMS_SPECIFIC; + $ret['channel_r_pages'] = PERMS_PUBLIC; + $ret['channel_w_pages'] = PERMS_SPECIFIC; + $ret['channel_a_republish'] = PERMS_SPECIFIC; + $ret['channel_w_like'] = PERMS_SPECIFIC; break; @@ -670,28 +650,28 @@ function get_role_perms($role) { $ret['default_collection'] = false; $ret['directory_publish'] = true; $ret['online'] = false; - $ret['perms_connect'] = [ - 'view_stream', 'view_profile', 'view_contacts', 'view_storage', - 'view_pages', 'post_wall', 'post_comments', 'tag_deliver', - 'post_mail', 'post_like' , 'republish', 'chat' ]; - $ret['limits'] = [ - 'view_stream' => PERMS_PUBLIC, - 'view_profile' => PERMS_PUBLIC, - 'view_contacts' => PERMS_PUBLIC, - 'view_storage' => PERMS_PUBLIC, - 'view_pages' => PERMS_PUBLIC, - 'send_stream' => PERMS_SPECIFIC, - 'post_wall' => PERMS_SPECIFIC, - 'post_comments' => PERMS_SPECIFIC, - 'post_mail' => PERMS_SPECIFIC, - 'post_like' => PERMS_SPECIFIC, - 'tag_deliver' => PERMS_SPECIFIC, - 'chat' => PERMS_SPECIFIC, - 'write_storage' => PERMS_SPECIFIC, - 'write_pages' => PERMS_SPECIFIC, - 'republish' => PERMS_SPECIFIC, - 'delegate' => PERMS_SPECIFIC - ]; + $ret['perms_follow'] = PERMS_R_STREAM|PERMS_R_PROFILE|PERMS_R_ABOOK + |PERMS_W_WALL|PERMS_W_COMMENT|PERMS_W_MAIL|PERMS_W_CHAT + |PERMS_R_STORAGE|PERMS_R_PAGES|PERMS_A_REPUBLISH|PERMS_W_LIKE|PERMS_W_TAGWALL; + $ret['perms_accept'] = PERMS_R_STREAM|PERMS_R_PROFILE|PERMS_R_ABOOK + |PERMS_W_WALL|PERMS_W_COMMENT|PERMS_W_MAIL|PERMS_W_CHAT + |PERMS_R_STORAGE|PERMS_R_PAGES|PERMS_A_REPUBLISH|PERMS_W_LIKE|PERMS_W_TAGWALL; + $ret['channel_r_stream'] = PERMS_PUBLIC; + $ret['channel_r_profile'] = PERMS_PUBLIC; + $ret['channel_r_abook'] = PERMS_PUBLIC; + $ret['channel_w_stream'] = PERMS_SPECIFIC; + $ret['channel_w_wall'] = PERMS_SPECIFIC; + $ret['channel_w_tagwall'] = PERMS_SPECIFIC; + $ret['channel_w_comment'] = PERMS_SPECIFIC; + $ret['channel_w_mail'] = PERMS_SPECIFIC; + $ret['channel_w_chat'] = PERMS_SPECIFIC; + $ret['channel_a_delegate'] = PERMS_SPECIFIC; + $ret['channel_r_storage'] = PERMS_PUBLIC; + $ret['channel_w_storage'] = PERMS_SPECIFIC; + $ret['channel_r_pages'] = PERMS_PUBLIC; + $ret['channel_w_pages'] = PERMS_SPECIFIC; + $ret['channel_a_republish'] = PERMS_SPECIFIC; + $ret['channel_w_like'] = PERMS_NETWORK; break; @@ -700,28 +680,28 @@ function get_role_perms($role) { $ret['default_collection'] = true; $ret['directory_publish'] = true; $ret['online'] = false; - $ret['perms_connect'] = [ - 'view_stream', 'view_profile', 'view_contacts', 'view_storage', - 'view_pages', 'post_wall', 'post_comments', 'tag_deliver', - 'post_mail', 'post_like' , 'chat' ]; - $ret['limits'] = [ - 'view_stream' => PERMS_PUBLIC, - 'view_profile' => PERMS_PUBLIC, - 'view_contacts' => PERMS_PUBLIC, - 'view_storage' => PERMS_PUBLIC, - 'view_pages' => PERMS_PUBLIC, - 'send_stream' => PERMS_SPECIFIC, - 'post_wall' => PERMS_SPECIFIC, - 'post_comments' => PERMS_SPECIFIC, - 'post_mail' => PERMS_SPECIFIC, - 'post_like' => PERMS_SPECIFIC, - 'tag_deliver' => PERMS_SPECIFIC, - 'chat' => PERMS_SPECIFIC, - 'write_storage' => PERMS_SPECIFIC, - 'write_pages' => PERMS_SPECIFIC, - 'republish' => PERMS_SPECIFIC, - 'delegate' => PERMS_SPECIFIC - ]; + $ret['perms_follow'] = PERMS_R_STREAM|PERMS_R_PROFILE|PERMS_R_ABOOK + |PERMS_W_STREAM|PERMS_W_WALL|PERMS_W_COMMENT|PERMS_W_MAIL|PERMS_W_CHAT + |PERMS_R_STORAGE|PERMS_R_PAGES|PERMS_W_LIKE|PERMS_W_TAGWALL; + $ret['perms_accept'] = PERMS_R_STREAM|PERMS_R_PROFILE|PERMS_R_ABOOK + |PERMS_W_STREAM|PERMS_W_WALL|PERMS_W_COMMENT|PERMS_W_MAIL|PERMS_W_CHAT + |PERMS_R_STORAGE|PERMS_R_PAGES|PERMS_W_LIKE|PERMS_W_TAGWALL; + $ret['channel_r_stream'] = PERMS_PUBLIC; + $ret['channel_r_profile'] = PERMS_PUBLIC; + $ret['channel_r_abook'] = PERMS_PUBLIC; + $ret['channel_w_stream'] = PERMS_SPECIFIC; + $ret['channel_w_wall'] = PERMS_SPECIFIC; + $ret['channel_w_tagwall'] = PERMS_SPECIFIC; + $ret['channel_w_comment'] = PERMS_SPECIFIC; + $ret['channel_w_mail'] = PERMS_SPECIFIC; + $ret['channel_w_chat'] = PERMS_SPECIFIC; + $ret['channel_a_delegate'] = PERMS_SPECIFIC; + $ret['channel_r_storage'] = PERMS_PUBLIC; + $ret['channel_w_storage'] = PERMS_SPECIFIC; + $ret['channel_r_pages'] = PERMS_PUBLIC; + $ret['channel_w_pages'] = PERMS_SPECIFIC; + $ret['channel_a_republish'] = PERMS_SPECIFIC; + $ret['channel_w_like'] = PERMS_SPECIFIC; break; @@ -730,29 +710,28 @@ function get_role_perms($role) { $ret['default_collection'] = true; $ret['directory_publish'] = false; $ret['online'] = false; - - $ret['perms_connect'] = [ - 'view_stream', 'view_profile', 'view_contacts', 'view_storage', - 'view_pages', 'post_wall', 'post_comments', - 'post_mail', 'post_like' , 'chat' ]; - $ret['limits'] = [ - 'view_stream' => PERMS_PUBLIC, - 'view_profile' => PERMS_SPECIFIC, - 'view_contacts' => PERMS_SPECIFIC, - 'view_storage' => PERMS_SPECIFIC, - 'view_pages' => PERMS_SPECIFIC, - 'send_stream' => PERMS_SPECIFIC, - 'post_wall' => PERMS_SPECIFIC, - 'post_comments' => PERMS_SPECIFIC, - 'post_mail' => PERMS_SPECIFIC, - 'post_like' => PERMS_SPECIFIC, - 'tag_deliver' => PERMS_SPECIFIC, - 'chat' => PERMS_SPECIFIC, - 'write_storage' => PERMS_SPECIFIC, - 'write_pages' => PERMS_SPECIFIC, - 'republish' => PERMS_SPECIFIC, - 'delegate' => PERMS_SPECIFIC - ]; + $ret['perms_follow'] = PERMS_R_STREAM|PERMS_R_PROFILE|PERMS_R_ABOOK + |PERMS_W_STREAM|PERMS_W_WALL|PERMS_W_COMMENT|PERMS_W_MAIL|PERMS_W_CHAT + |PERMS_R_STORAGE|PERMS_R_PAGES|PERMS_W_LIKE; + $ret['perms_accept'] = PERMS_R_STREAM|PERMS_R_PROFILEPERMS_R_ABOOK + |PERMS_W_STREAM|PERMS_W_WALL|PERMS_W_COMMENT|PERMS_W_MAIL|PERMS_W_CHAT + |PERMS_R_STORAGE|PERMS_R_PAGES|PERMS_W_LIKE; + $ret['channel_r_stream'] = PERMS_PUBLIC; + $ret['channel_r_profile'] = PERMS_SPECIFIC; + $ret['channel_r_abook'] = PERMS_SPECIFIC; + $ret['channel_w_stream'] = PERMS_SPECIFIC; + $ret['channel_w_wall'] = PERMS_SPECIFIC; + $ret['channel_w_tagwall'] = PERMS_SPECIFIC; + $ret['channel_w_comment'] = PERMS_SPECIFIC; + $ret['channel_w_mail'] = PERMS_SPECIFIC; + $ret['channel_w_chat'] = PERMS_SPECIFIC; + $ret['channel_a_delegate'] = PERMS_SPECIFIC; + $ret['channel_r_storage'] = PERMS_SPECIFIC; + $ret['channel_w_storage'] = PERMS_SPECIFIC; + $ret['channel_r_pages'] = PERMS_SPECIFIC; + $ret['channel_w_pages'] = PERMS_SPECIFIC; + $ret['channel_a_republish'] = PERMS_SPECIFIC; + $ret['channel_w_like'] = PERMS_SPECIFIC; break; @@ -761,29 +740,28 @@ function get_role_perms($role) { $ret['default_collection'] = false; $ret['directory_publish'] = true; $ret['online'] = false; - - $ret['perms_connect'] = [ - 'view_stream', 'view_profile', 'view_contacts', 'view_storage', - 'view_pages', 'send_stream', 'post_wall', 'post_comments', - 'post_mail', 'post_like' , 'republish' ]; - $ret['limits'] = [ - 'view_stream' => PERMS_PUBLIC, - 'view_profile' => PERMS_PUBLIC, - 'view_contacts' => PERMS_PUBLIC, - 'view_storage' => PERMS_PUBLIC, - 'view_pages' => PERMS_PUBLIC, - 'send_stream' => PERMS_SPECIFIC, - 'post_wall' => PERMS_SPECIFIC, - 'post_comments' => PERMS_SPECIFIC, - 'post_mail' => PERMS_SPECIFIC, - 'post_like' => PERMS_SPECIFIC, - 'tag_deliver' => PERMS_SPECIFIC, - 'chat' => PERMS_SPECIFIC, - 'write_storage' => PERMS_SPECIFIC, - 'write_pages' => PERMS_SPECIFIC, - 'republish' => PERMS_SPECIFIC, - 'delegate' => PERMS_SPECIFIC - ]; + $ret['perms_follow'] = PERMS_R_STREAM|PERMS_R_PROFILE|PERMS_R_ABOOK + |PERMS_W_STREAM|PERMS_W_WALL|PERMS_W_COMMENT|PERMS_W_MAIL + |PERMS_R_STORAGE|PERMS_R_PAGES|PERMS_A_REPUBLISH|PERMS_W_LIKE; + $ret['perms_accept'] = PERMS_R_STREAM|PERMS_R_PROFILE|PERMS_R_ABOOK + |PERMS_W_STREAM|PERMS_W_WALL|PERMS_W_COMMENT|PERMS_W_MAIL + |PERMS_R_STORAGE|PERMS_R_PAGES|PERMS_A_REPUBLISH|PERMS_W_LIKE; + $ret['channel_r_stream'] = PERMS_PUBLIC; + $ret['channel_r_profile'] = PERMS_PUBLIC; + $ret['channel_r_abook'] = PERMS_PUBLIC; + $ret['channel_w_stream'] = PERMS_SPECIFIC; + $ret['channel_w_wall'] = PERMS_SPECIFIC; + $ret['channel_w_tagwall'] = PERMS_SPECIFIC; + $ret['channel_w_comment'] = PERMS_SPECIFIC; + $ret['channel_w_mail'] = PERMS_SPECIFIC; + $ret['channel_w_chat'] = PERMS_SPECIFIC; + $ret['channel_a_delegate'] = PERMS_SPECIFIC; + $ret['channel_r_storage'] = PERMS_PUBLIC; + $ret['channel_w_storage'] = PERMS_SPECIFIC; + $ret['channel_r_pages'] = PERMS_PUBLIC; + $ret['channel_w_pages'] = PERMS_SPECIFIC; + $ret['channel_a_republish'] = PERMS_NETWORK; + $ret['channel_w_like'] = PERMS_NETWORK; break; @@ -792,28 +770,28 @@ function get_role_perms($role) { $ret['default_collection'] = true; $ret['directory_publish'] = false; $ret['online'] = false; - $ret['perms_connect'] = [ - 'view_stream', 'view_profile', 'view_contacts', 'view_storage', - 'view_pages', 'send_stream', 'post_wall', 'post_comments', - 'post_mail', 'post_like' , 'republish' ]; - $ret['limits'] = [ - 'view_stream' => PERMS_PUBLIC, - 'view_profile' => PERMS_PUBLIC, - 'view_contacts' => PERMS_PUBLIC, - 'view_storage' => PERMS_PUBLIC, - 'view_pages' => PERMS_PUBLIC, - 'send_stream' => PERMS_SPECIFIC, - 'post_wall' => PERMS_SPECIFIC, - 'post_comments' => PERMS_SPECIFIC, - 'post_mail' => PERMS_SPECIFIC, - 'post_like' => PERMS_SPECIFIC, - 'tag_deliver' => PERMS_SPECIFIC, - 'chat' => PERMS_SPECIFIC, - 'write_storage' => PERMS_SPECIFIC, - 'write_pages' => PERMS_SPECIFIC, - 'republish' => PERMS_SPECIFIC, - 'delegate' => PERMS_SPECIFIC - ]; + $ret['perms_follow'] = PERMS_R_STREAM|PERMS_R_PROFILE|PERMS_R_ABOOK + |PERMS_W_STREAM|PERMS_W_WALL|PERMS_W_COMMENT|PERMS_W_MAIL + |PERMS_R_STORAGE|PERMS_R_PAGES|PERMS_W_LIKE; + $ret['perms_accept'] = PERMS_R_STREAM|PERMS_R_PROFILE|PERMS_R_ABOOK + |PERMS_W_STREAM|PERMS_W_WALL|PERMS_W_COMMENT|PERMS_W_MAIL + |PERMS_R_STORAGE|PERMS_R_PAGES|PERMS_W_LIKE; + $ret['channel_r_stream'] = PERMS_PUBLIC; + $ret['channel_r_profile'] = PERMS_PUBLIC; + $ret['channel_r_abook'] = PERMS_PUBLIC; + $ret['channel_w_stream'] = PERMS_SPECIFIC; + $ret['channel_w_wall'] = PERMS_SPECIFIC; + $ret['channel_w_tagwall'] = PERMS_SPECIFIC; + $ret['channel_w_comment'] = PERMS_SPECIFIC; + $ret['channel_w_mail'] = PERMS_SPECIFIC; + $ret['channel_w_chat'] = PERMS_SPECIFIC; + $ret['channel_a_delegate'] = PERMS_SPECIFIC; + $ret['channel_r_storage'] = PERMS_PUBLIC; + $ret['channel_w_storage'] = PERMS_SPECIFIC; + $ret['channel_r_pages'] = PERMS_PUBLIC; + $ret['channel_w_pages'] = PERMS_SPECIFIC; + $ret['channel_a_republish'] = PERMS_SPECIFIC; + $ret['channel_w_like'] = PERMS_NETWORK; break; @@ -822,29 +800,26 @@ function get_role_perms($role) { $ret['default_collection'] = false; $ret['directory_publish'] = true; $ret['online'] = false; - - $ret['perms_connect'] = [ - 'view_stream', 'view_profile', 'view_contacts', 'view_storage', - 'view_pages', 'post_like' , 'republish' ]; - - $ret['limits'] = [ - 'view_stream' => PERMS_PUBLIC, - 'view_profile' => PERMS_PUBLIC, - 'view_contacts' => PERMS_PUBLIC, - 'view_storage' => PERMS_PUBLIC, - 'view_pages' => PERMS_PUBLIC, - 'send_stream' => PERMS_SPECIFIC, - 'post_wall' => PERMS_SPECIFIC, - 'post_comments' => PERMS_SPECIFIC, - 'post_mail' => PERMS_SPECIFIC, - 'post_like' => PERMS_SPECIFIC, - 'tag_deliver' => PERMS_SPECIFIC, - 'chat' => PERMS_SPECIFIC, - 'write_storage' => PERMS_SPECIFIC, - 'write_pages' => PERMS_SPECIFIC, - 'republish' => PERMS_SPECIFIC, - 'delegate' => PERMS_SPECIFIC - ]; + $ret['perms_follow'] = PERMS_R_STREAM|PERMS_R_PROFILE|PERMS_R_ABOOK + |PERMS_R_STORAGE|PERMS_R_PAGES|PERMS_A_REPUBLISH|PERMS_W_LIKE; + $ret['perms_accept'] = PERMS_R_STREAM|PERMS_R_PROFILE|PERMS_R_ABOOK + |PERMS_R_STORAGE|PERMS_R_PAGES|PERMS_A_REPUBLISH|PERMS_W_LIKE; + $ret['channel_r_stream'] = PERMS_PUBLIC; + $ret['channel_r_profile'] = PERMS_PUBLIC; + $ret['channel_r_abook'] = PERMS_PUBLIC; + $ret['channel_w_stream'] = PERMS_SPECIFIC; + $ret['channel_w_wall'] = PERMS_SPECIFIC; + $ret['channel_w_tagwall'] = PERMS_SPECIFIC; + $ret['channel_w_comment'] = PERMS_SPECIFIC; + $ret['channel_w_mail'] = PERMS_SPECIFIC; + $ret['channel_w_chat'] = PERMS_SPECIFIC; + $ret['channel_a_delegate'] = PERMS_SPECIFIC; + $ret['channel_r_storage'] = PERMS_PUBLIC; + $ret['channel_w_storage'] = PERMS_SPECIFIC; + $ret['channel_r_pages'] = PERMS_PUBLIC; + $ret['channel_w_pages'] = PERMS_SPECIFIC; + $ret['channel_a_republish'] = PERMS_SPECIFIC; + $ret['channel_w_like'] = PERMS_NETWORK; break; @@ -853,30 +828,28 @@ function get_role_perms($role) { $ret['default_collection'] = false; $ret['directory_publish'] = true; $ret['online'] = false; - - $ret['perms_connect'] = [ - 'view_stream', 'view_profile', 'view_contacts', 'view_storage', - 'view_pages', 'write_storage', 'write_pages', 'post_wall', 'post_comments', 'tag_deliver', - 'post_mail', 'post_like' , 'republish', 'chat' ]; - $ret['limits'] = [ - 'view_stream' => PERMS_PUBLIC, - 'view_profile' => PERMS_PUBLIC, - 'view_contacts' => PERMS_PUBLIC, - 'view_storage' => PERMS_PUBLIC, - 'view_pages' => PERMS_PUBLIC, - 'send_stream' => PERMS_SPECIFIC, - 'post_wall' => PERMS_SPECIFIC, - 'post_comments' => PERMS_SPECIFIC, - 'post_mail' => PERMS_SPECIFIC, - 'post_like' => PERMS_SPECIFIC, - 'tag_deliver' => PERMS_SPECIFIC, - 'chat' => PERMS_SPECIFIC, - 'write_storage' => PERMS_SPECIFIC, - 'write_pages' => PERMS_SPECIFIC, - 'republish' => PERMS_SPECIFIC, - 'delegate' => PERMS_SPECIFIC - ]; - + $ret['perms_follow'] = PERMS_R_STREAM|PERMS_R_PROFILE|PERMS_R_ABOOK + |PERMS_W_STREAM|PERMS_W_WALL|PERMS_W_COMMENT|PERMS_W_MAIL|PERMS_W_CHAT + |PERMS_R_STORAGE|PERMS_W_STORAGE|PERMS_R_PAGES|PERMS_A_REPUBLISH|PERMS_W_LIKE|PERMS_W_TAGWALL; + $ret['perms_accept'] = PERMS_R_STREAM|PERMS_R_PROFILE|PERMS_R_ABOOK + |PERMS_W_STREAM|PERMS_W_WALL|PERMS_W_COMMENT|PERMS_W_MAIL|PERMS_W_CHAT + |PERMS_R_STORAGE|PERMS_W_STORAGE|PERMS_R_PAGES|PERMS_A_REPUBLISH|PERMS_W_LIKE|PERMS_W_TAGWALL; + $ret['channel_r_stream'] = PERMS_PUBLIC; + $ret['channel_r_profile'] = PERMS_PUBLIC; + $ret['channel_r_abook'] = PERMS_PUBLIC; + $ret['channel_w_stream'] = PERMS_SPECIFIC; + $ret['channel_w_wall'] = PERMS_SPECIFIC; + $ret['channel_w_tagwall'] = PERMS_SPECIFIC; + $ret['channel_w_comment'] = PERMS_SPECIFIC; + $ret['channel_w_mail'] = PERMS_SPECIFIC; + $ret['channel_w_chat'] = PERMS_SPECIFIC; + $ret['channel_a_delegate'] = PERMS_SPECIFIC; + $ret['channel_r_storage'] = PERMS_PUBLIC; + $ret['channel_w_storage'] = PERMS_SPECIFIC; + $ret['channel_r_pages'] = PERMS_PUBLIC; + $ret['channel_w_pages'] = PERMS_SPECIFIC; + $ret['channel_a_republish'] = PERMS_SPECIFIC; + $ret['channel_w_like'] = PERMS_NETWORK; break; diff --git a/include/photos.php b/include/photos.php index d14c12d84..c70478146 100644 --- a/include/photos.php +++ b/include/photos.php @@ -412,7 +412,7 @@ function photo_upload($channel, $observer, $args) { // in the photos pages - using the photos permissions instead. We need the public policy to keep the photo // linked item from leaking into the feed when somebody has a channel with read_stream restrictions. - $arr['public_policy'] = map_scope(\Zotlabs\Access\PermissionLimits::Get($channel['channel_id'],'view_stream'),true); + $arr['public_policy'] = map_scope($channel['channel_r_stream'],true); if($arr['public_policy']) $arr['item_private'] = 1; diff --git a/include/security.php b/include/security.php index c67a1b400..2107ed819 100644 --- a/include/security.php +++ b/include/security.php @@ -128,7 +128,6 @@ function atoken_xchan($atoken) { * * @return bool|array false or channel record of the new channel */ - function change_channel($change_channel) { $ret = false; @@ -478,19 +477,14 @@ function stream_perms_api_uids($perms = NULL, $limit = 0, $rand = 0 ) { $random_sql = (($rand) ? " ORDER BY " . db_getfunc('RAND') . " " : ''); if(local_channel()) $ret[] = local_channel(); - $x = q("select uid from pconfig where cat = 'perm_limits' and k = 'view_stream' and ( v & %d ) > 0 ", - intval($perms) + $r = q("select channel_id from channel where channel_r_stream > 0 and ( channel_r_stream & %d )>0 and ( channel_pageflags & %d ) = 0 and channel_system = 0 and channel_removed = 0 $random_sql $limit_sql ", + intval($perms), + intval(PAGE_ADULT|PAGE_CENSORED) ); - if($x) { - $ids = ids_to_querystr($x,'uid'); - $r = q("select channel_id from channel where channel_id in ( $ids ) and ( channel_pageflags & %d ) = 0 and channel_system = 0 and channel_removed = 0 $random_sql $limit_sql ", - intval(PAGE_ADULT|PAGE_CENSORED) - ); - if($r) { - foreach($r as $rr) - if(! in_array($rr['channel_id'], $ret)) - $ret[] = $rr['channel_id']; - } + if($r) { + foreach($r as $rr) + if(! in_array($rr['channel_id'], $ret)) + $ret[] = $rr['channel_id']; } $str = ''; @@ -516,21 +510,16 @@ function stream_perms_xchans($perms = NULL ) { if(local_channel()) $ret[] = get_observer_hash(); - $x = q("select uid from pconfig where cat = 'perm_limits' and k = 'view_stream' and ( v & %d ) > 0 ", - intval($perms) + $r = q("select channel_hash from channel where channel_r_stream > 0 and (channel_r_stream & %d)>0 and not (channel_pageflags & %d)>0 and channel_system = 0 and channel_removed = 0 ", + intval($perms), + intval(PAGE_ADULT|PAGE_CENSORED) ); - if($x) { - $ids = ids_to_querystr($x,'uid'); - $r = q("select channel_hash from channel where channel_id in ( $ids ) and ( channel_pageflags & %d ) = 0 and channel_system = 0 and channel_removed = 0 ", - intval(PAGE_ADULT|PAGE_CENSORED) - ); - - if($r) { - foreach($r as $rr) - if(! in_array($rr['channel_hash'], $ret)) - $ret[] = $rr['channel_hash']; - } + if($r) { + foreach($r as $rr) + if(! in_array($rr['channel_hash'], $ret)) + $ret[] = $rr['channel_hash']; } + $str = ''; if($ret) { foreach($ret as $rr) { diff --git a/include/text.php b/include/text.php index 1eec2ba0a..d4d151f2e 100644 --- a/include/text.php +++ b/include/text.php @@ -1284,9 +1284,9 @@ function unobscure(&$item) { if(array_key_exists('item_obscured',$item) && intval($item['item_obscured'])) { $key = get_config('system','prvkey'); if($item['title']) - $item['title'] = crypto_unencapsulate(json_decode($item['title'],true),$key); + $item['title'] = crypto_unencapsulate(json_decode_plus($item['title']),$key); if($item['body']) - $item['body'] = crypto_unencapsulate(json_decode($item['body'],true),$key); + $item['body'] = crypto_unencapsulate(json_decode_plus($item['body']),$key); if(get_config('system','item_cache')) { q("update item set title = '%s', body = '%s', item_obscured = 0 where id = %d", dbesc($item['title']), @@ -1309,7 +1309,7 @@ function unobscure_mail(&$item) { function theme_attachments(&$item) { - $arr = json_decode($item['attach'],true); + $arr = json_decode_plus($item['attach']); if(is_array($arr) && count($arr)) { $attaches = array(); foreach($arr as $r) { @@ -2212,12 +2212,20 @@ function jindent($json) { return $result; } + +function json_decode_plus($s) { + $x = json_decode($s,true); + if(! $x) + $x = json_decode(str_replace(array('\\"','\\\\'),array('"','\\'),$s),true); + + return $x; +} + /** * @brief Creates navigation menu for webpage, layout, blocks, menu sites. * * @return string */ - function design_tools() { $channel = App::get_channel(); @@ -2608,33 +2616,32 @@ function getIconFromType($type) { 'application/octet-stream' => 'fa-file-o', //Text 'text/plain' => 'fa-file-text-o', - 'application/msword' => 'fa-file-word-o', - 'application/pdf' => 'fa-file-pdf-o', - 'application/vnd.oasis.opendocument.text' => 'fa-file-word-o', + 'application/msword' => 'fa-file-text-o', + 'application/pdf' => 'fa-file-text-o', + 'application/vnd.oasis.opendocument.text' => 'fa-file-text-o', 'application/epub+zip' => 'fa-book', //Spreadsheet - 'application/vnd.oasis.opendocument.spreadsheet' => 'fa-file-excel-o', - 'application/vnd.ms-excel' => 'fa-file-excel-o', + 'application/vnd.oasis.opendocument.spreadsheet' => 'fa-table', + 'application/vnd.ms-excel' => 'fa-table', //Image 'image/jpeg' => 'fa-picture-o', 'image/png' => 'fa-picture-o', 'image/gif' => 'fa-picture-o', 'image/svg+xml' => 'fa-picture-o', //Archive - 'application/zip' => 'fa-file-archive-o', - 'application/x-rar-compressed' => 'fa-file-archive-o', + 'application/zip' => 'fa-archive', + 'application/x-rar-compressed' => 'fa-archive', //Audio - 'audio/mpeg' => 'fa-file-audio-o', - 'audio/wav' => 'fa-file-audio-o', - 'application/ogg' => 'fa-file-audio-o', - 'audio/ogg' => 'fa-file-audio-o', - 'audio/webm' => 'fa-file-audio-o', - 'audio/mp4' => 'fa-file-audio-o', + 'audio/mpeg' => 'fa-music', + 'audio/wav' => 'fa-music', + 'application/ogg' => 'fa-music', + 'audio/ogg' => 'fa-music', + 'audio/webm' => 'fa-music', + 'audio/mp4' => 'fa-music', //Video - 'video/quicktime' => 'fa-file-video-o', - 'video/webm' => 'fa-file-video-o', - 'video/mp4' => 'fa-file-video-o', - 'video/x-matroska' => 'fa-file-video-o' + 'video/quicktime' => 'fa-film', + 'video/webm' => 'fa-film', + 'video/mp4' => 'fa-film' ); $iconFromType = 'fa-file-o'; diff --git a/include/widgets.php b/include/widgets.php index 3516e82da..da73657f5 100644 --- a/include/widgets.php +++ b/include/widgets.php @@ -1356,14 +1356,9 @@ function widget_forums($arr) { $perms_sql = item_permissions_sql(local_channel()) . item_normal(); - /** - * We used to try and find public forums with custom permissions by checking to see if - * send_stream was false and tag_deliver was true. However with the newer extensible - * permissions infrastructure this makes for a very complicated query. Now we're only - * checking channels that report themselves specifically as pubforums - */ - - $r1 = q("select abook_id, xchan_hash, xchan_name, xchan_url, xchan_photo_s from abook left join xchan on abook_xchan = xchan_hash where xchan_pubforum = 1 and xchan_deleted = 0 and abook_channel = %d order by xchan_name $limit ", + $r1 = q("select abook_id, xchan_hash, xchan_name, xchan_url, xchan_photo_s from abook left join xchan on abook_xchan = xchan_hash where ( xchan_pubforum = 1 or ((abook_their_perms & %d ) != 0 and (abook_their_perms & %d ) = 0) ) and xchan_deleted = 0 and abook_channel = %d order by xchan_name $limit ", + intval(PERMS_W_TAGWALL), + intval(PERMS_W_STREAM), intval(local_channel()) ); if(! $r1) diff --git a/include/zot.php b/include/zot.php index 73d9ef950..45347ef22 100644 --- a/include/zot.php +++ b/include/zot.php @@ -12,7 +12,6 @@ require_once('include/crypto.php'); require_once('include/items.php'); require_once('include/hubloc.php'); require_once('include/queue_fn.php'); -require_once('include/perm_upgrade.php'); /** @@ -389,7 +388,10 @@ function zot_refresh($them, $channel = null, $force = false) { if(! $x['success']) return false; + $their_perms = 0; + if($channel) { + $global_perms = get_perms(); if($j['permissions']['data']) { $permissions = crypto_unencapsulate(array( 'data' => $j['permissions']['data'], @@ -406,10 +408,15 @@ function zot_refresh($them, $channel = null, $force = false) { $connected_set = false; if($permissions && is_array($permissions)) { - $old_read_stream_perm = get_abconfig($channel['channel_id'],$x['hash'],'their_perms','view_stream'); - foreach($permissions as $k => $v) { - set_abconfig($channel['channel_id'],$x['hash'],'their_perms',$k,$v); + // The connected permission means you are in their address book + if($k === 'connected') { + $connected_set = intval($v); + continue; + } + if(($v) && (array_key_exists($k,$global_perms))) { + $their_perms = $their_perms | intval($global_perms[$k][1]); + } } } @@ -436,19 +443,36 @@ function zot_refresh($them, $channel = null, $force = false) { if(substr($r[0]['abook_dob'],5) == substr($next_birthday,5)) $next_birthday = $r[0]['abook_dob']; - $y = q("update abook set abook_dob = '%s' + $current_abook_connected = (intval($r[0]['abook_unconnected']) ? 0 : 1); + + $y = q("update abook set abook_their_perms = %d, abook_dob = '%s' where abook_xchan = '%s' and abook_channel = %d and abook_self = 0 ", + intval($their_perms), dbescdate($next_birthday), dbesc($x['hash']), intval($channel['channel_id']) ); +// if(($connected_set === 0 || $connected_set === 1) && ($connected_set !== $current_abook_unconnected)) { + + // if they are in your address book but you aren't in theirs, and/or this does not + // match your current connected state setting, toggle it. + /** @FIXME uncoverted to postgres */ + /** @FIXME when this was enabled, all contacts became unconnected. Currently disabled intentionally */ +// $y1 = q("update abook set abook_unconnected = 1 +// where abook_xchan = '%s' and abook_channel = %d +// and abook_self = 0 limit 1", +// dbesc($x['hash']), +// intval($channel['channel_id']) +// ); +// } + if(! $y) logger('abook update failed'); else { // if we were just granted read stream permission and didn't have it before, try to pull in some posts - if((! $old_read_stream_perm) && (intval($permissions['view_stream']))) + if((! ($r[0]['abook_their_perms'] & PERMS_R_STREAM)) && ($their_perms & PERMS_R_STREAM)) Zotlabs\Daemon\Master::Summon(array('Onepoll',$r[0]['abook_id'])); } } @@ -456,29 +480,15 @@ function zot_refresh($them, $channel = null, $force = false) { // new connection - $my_perms = null; - $role = get_pconfig($channel['channel_id'],'system','permissions_role'); if($role) { - $xx = \Zotlabs\Access\PermissionRoles::role_perms($role); - if($xx['perms_auto']) { - $default_perms = $xx['perms_connect']; - $my_perms = \Zotlabs\Access\Permissions::FilledPerms($default_perms); - } + $xx = get_role_perms($role); + if($xx['perms_auto']) + $default_perms = $xx['perms_accept']; } + if(! $default_perms) + $default_perms = intval(get_pconfig($channel['channel_id'],'system','autoperms')); - if(! $my_perms) { - $m = \Zotlabs\Access\Permissions::FilledAutoperms($channel['channel_id']); - if($m) { - $my_perms = $m; - } - } - - if($my_perms) { - foreach($my_perms as $k => $v) { - set_abconfig($channel['channel_id'],$x['hash'],'my_perms',$k,$v); - } - } // Keep original perms to check if we need to notify them $previous_perms = get_all_perms($channel['channel_id'],$x['hash']); @@ -488,11 +498,13 @@ function zot_refresh($them, $channel = null, $force = false) { if($closeness === false) $closeness = 80; - $y = q("insert into abook ( abook_account, abook_channel, abook_closeness, abook_xchan, abook_created, abook_updated, abook_dob, abook_pending ) values ( %d, %d, %d, '%s', '%s', '%s', '%s', %d )", + $y = q("insert into abook ( abook_account, abook_channel, abook_closeness, abook_xchan, abook_their_perms, abook_my_perms, abook_created, abook_updated, abook_dob, abook_pending ) values ( %d, %d, %d, '%s', %d, %d, '%s', '%s', '%s', %d )", intval($channel['channel_account_id']), intval($channel['channel_id']), intval($closeness), dbesc($x['hash']), + intval($their_perms), + intval($default_perms), dbesc(datetime_convert()), dbesc(datetime_convert()), dbesc($next_birthday), @@ -511,7 +523,7 @@ function zot_refresh($them, $channel = null, $force = false) { ); if($new_connection) { - if(! \Zotlabs\Access\Permissions::PermsCompare($new_perms,$previous_perms)) + if($new_perms != $previous_perms) Zotlabs\Daemon\Master::Summon(array('Notifier','permission_create',$new_connection[0]['abook_id'])); Zotlabs\Lib\Enotify::submit(array( 'type' => NOTIFY_INTRO, @@ -520,9 +532,9 @@ function zot_refresh($them, $channel = null, $force = false) { 'link' => z_root() . '/connedit/' . $new_connection[0]['abook_id'], )); - if(intval($permissions['view_stream'])) { - if(intval(get_pconfig($channel['channel_id'],'perm_limits','send_stream') & PERMS_PENDING) - || (! intval($new_connection[0]['abook_pending']))) + if($their_perms & PERMS_R_STREAM) { + if(($channel['channel_w_stream'] & PERMS_PENDING) + || (! intval($new_connection[0]['abook_pending'])) ) Zotlabs\Daemon\Master::Summon(array('Onepoll',$new_connection[0]['abook_id'])); } @@ -1359,8 +1371,8 @@ function public_recips($msg) { if($msg['message']['type'] === 'activity') { if(! get_config('system','disable_discover_tab')) $include_sys = true; - $perm = 'send_stream'; - + $col = 'channel_w_stream'; + $field = PERMS_W_STREAM; if(array_key_exists('flags',$msg['message']) && in_array('thread_parent', $msg['message']['flags'])) { // check mention recipient permissions on top level posts only $check_mentions = true; @@ -1392,30 +1404,65 @@ function public_recips($msg) { // contains the tag. we'll solve that further below. if($msg['notify']['sender']['guid_sig'] != $msg['message']['owner']['guid_sig']) { - $perm = 'post_comments'; + $col = 'channel_w_comment'; + $field = PERMS_W_COMMENT; } } } - elseif($msg['message']['type'] === 'mail') - $perm = 'post_mail'; - - $r = array(); - - $c = q("select channel_id, channel_hash from channel where channel_removed = 0"); - if($c) { - foreach($c as $cc) { - if(perm_is_allowed($cc['channel_id'],$msg['notify']['sender']['hash'],$perm)) { - $r[] = [ 'hash' => $cc['channel_hash'] ]; - } - } + elseif($msg['message']['type'] === 'mail') { + $col = 'channel_w_mail'; + $field = PERMS_W_MAIL; } - // logger('message: ' . print_r($msg['message'],true)); + if(! $col) + return NULL; + + $col = dbesc($col); + + // First find those channels who are accepting posts from anybody, or at least + // something greater than just their connections. + + if($msg['notify']['sender']['url'] === z_root()) { + $sql = " where (( " . $col . " & " . intval(PERMS_NETWORK) . " ) > 0 + or ( " . $col . " & " . intval(PERMS_SITE) . " ) > 0 + or ( " . $col . " & " . intval(PERMS_PUBLIC) . ") > 0 + or ( " . $col . " & " . intval(PERMS_AUTHED) . ") > 0 ) "; + } else { + $sql = " where ( " . $col . " = " . intval(PERMS_NETWORK) . " + or " . $col . " = " . intval(PERMS_PUBLIC) . " + or " . $col . " = " . intval(PERMS_AUTHED) . " ) "; + } + + $r = q("select channel_hash as hash from channel $sql or channel_hash = '%s' + and channel_removed = 0 ", + dbesc($msg['notify']['sender']['hash']) + ); + + if(! $r) + $r = array(); + + // Now we have to get a bit dirty. Find every channel that has the sender in their connections (abook) + // and is allowing this sender at least at a high level. + + $x = q("select channel_hash as hash from channel left join abook on abook_channel = channel_id + where abook_xchan = '%s' and channel_removed = 0 + and (( " . $col . " = " . intval(PERMS_SPECIFIC) . " and ( abook_my_perms & " . intval($field) . " ) > 0 ) + OR " . $col . " = " . intval(PERMS_PENDING) . " + OR ( " . $col . " = " . intval(PERMS_CONTACTS) . " and abook_pending = 0 )) ", + dbesc($msg['notify']['sender']['hash']) + ); + + if(! $x) + $x = array(); + + $r = array_merge($r,$x); + + //logger('message: ' . print_r($msg['message'],true)); if($include_sys && array_key_exists('public_scope',$msg['message']) && $msg['message']['public_scope'] === 'public') { $sys = get_sys_channel(); if($sys) - $r[] = [ 'hash' => $sys['channel_hash'] ]; + $r[] = array('hash' => $sys['channel_hash']); } // look for any public mentions on this site @@ -1896,9 +1943,9 @@ function remove_community_tag($sender, $arr, $uid) { $i = $r[0]; if($i['target']) - $i['target'] = json_decode($i['target'],true); + $i['target'] = json_decode_plus($i['target']); if($i['object']) - $i['object'] = json_decode($i['object'],true); + $i['object'] = json_decode_plus($i['object']); if(! ($i['target'] && $i['object'])) { logger('remove_community_tag: no target/object'); @@ -2951,14 +2998,6 @@ function build_sync_packet($uid = 0, $packet = null, $groups_changed = false) { $channel = $r[0]; - translate_channel_perms_outbound($channel); - if($packet && array_key_exists('abook',$packet) && $packet['abook']) { - for($x = 0; $x < count($packet['abook']); $x ++) { - translate_abook_perms_outbound($packet['abook'][$x]); - } - } - - if(intval($channel['channel_removed'])) return; @@ -3082,8 +3121,7 @@ function process_channel_sync_delivery($sender, $arr, $deliveries) { require_once('include/import.php'); - /** @FIXME this will sync red structures (channel, pconfig and abook). - Eventually we need to make this application agnostic. */ + /** @FIXME this will sync red structures (channel, pconfig and abook). Eventually we need to make this application agnostic. */ $result = array(); @@ -3156,8 +3194,6 @@ function process_channel_sync_delivery($sender, $arr, $deliveries) { if(array_key_exists('channel',$arr) && is_array($arr['channel']) && count($arr['channel'])) { - translate_channel_perms_inbound($arr['channel']); - if(array_key_exists('channel_pageflags',$arr['channel']) && intval($arr['channel']['channel_pageflags'])) { // These flags cannot be sync'd. // remove the bits from the incoming flags. @@ -3171,15 +3207,7 @@ function process_channel_sync_delivery($sender, $arr, $deliveries) { } - $disallowed = [ - 'channel_id', 'channel_account_id', 'channel_primary', 'channel_prvkey', - 'channel_address', 'channel_notifyflags', 'channel_removed', 'channel_deleted', - 'channel_system', 'channel_r_stream', 'channel_r_profile', 'channel_r_abook', - 'channel_r_storage', 'channel_r_pages', 'channel_w_stream', 'channel_w_wall', - 'channel_w_comment', 'channel_w_mail', 'channel_w_like', 'channel_w_tagwall', - 'channel_w_chat', 'channel_w_storage', 'channel_w_pages', 'channel_a_republish', - 'channel_a_delegate' - ]; + $disallowed = array('channel_id','channel_account_id','channel_primary','channel_prvkey', 'channel_address', 'channel_notifyflags', 'channel_removed', 'channel_deleted', 'channel_system'); $clean = array(); foreach($arr['channel'] as $k => $v) { @@ -3215,8 +3243,6 @@ function process_channel_sync_delivery($sender, $arr, $deliveries) { foreach($arr['abook'] as $abook) { - - $abconfig = null; if(array_key_exists('abconfig',$abook) && is_array($abook['abconfig']) && count($abook['abconfig'])) @@ -3311,12 +3337,6 @@ function process_channel_sync_delivery($sender, $arr, $deliveries) { } } - // This will set abconfig vars if the sender is using old-style fixed permissions - // using the raw abook record as passed to us. New-style permissions will fall through - // and be set using abconfig - - translate_abook_perms_inbound($channel,$abook); - if($abconfig) { // @fixme does not handle sync of del_abconfig foreach($abconfig as $abc) { @@ -3782,21 +3802,11 @@ function zotinfo($arr) { } else { // check if it has characteristics of a public forum based on custom permissions. - $t = q("select * from abconfig where abconfig.cat = 'my_perms' and abconfig.chan = %d and abconfig.xchan = '%s' and abconfig.k in ('tag_deliver', 'send_stream') ", - intval($e['channel_id']), - intval($e['channel_hash']) + $t = q("select abook_my_perms from abook where abook_channel = %d and abook_self = 1 limit 1", + intval($e['channel_id']) ); - $ch = 0; - if($t) { - foreach($t as $tt) { - if($tt['k'] == 'tag_deliver' && $tt['v'] == 1) - $ch ++; - if($tt['k'] == 'send_stream' && $tt['v'] == 0) - $ch ++; - } - if($ch == 2) - $public_forum = true; - } + if(($t) && (($t[0]['abook_my_perms'] & PERMS_W_TAGWALL) && (! ($t[0]['abook_my_perms'] & PERMS_W_STREAM)))) + $public_forum = true; } diff --git a/install/schema_mysql.sql b/install/schema_mysql.sql index 5e5b9d5be..5335c231e 100644 --- a/install/schema_mysql.sql +++ b/install/schema_mysql.sql @@ -920,7 +920,6 @@ CREATE TABLE IF NOT EXISTS `pconfig` ( UNIQUE KEY `access` (`uid`,`cat`,`k`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; - CREATE TABLE IF NOT EXISTS `photo` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `aid` int(10) unsigned NOT NULL DEFAULT '0', diff --git a/install/schema_postgres.sql b/install/schema_postgres.sql index 44711c190..1a770d4ff 100644 --- a/install/schema_postgres.sql +++ b/install/schema_postgres.sql @@ -903,7 +903,6 @@ CREATE TABLE "pconfig" ( PRIMARY KEY ("id"), UNIQUE ("uid","cat","k") ); - CREATE TABLE "photo" ( "id" serial NOT NULL, "aid" bigint NOT NULL DEFAULT '0', diff --git a/install/update.php b/install/update.php index 3d0e5b00d..f2d97430b 100644 --- a/install/update.php +++ b/install/update.php @@ -1,6 +1,6 @@ -``` - -Or, using Webpack or Browserify: - -```javascript -require('readmore-js'); + ``` @@ -55,23 +49,17 @@ $('article').readmore({ * `startOpen: false` do not immediately truncate, start in the fully opened position * `beforeToggle: function() {}` called after a more or less link is clicked, but *before* the block is collapsed or expanded * `afterToggle: function() {}` called *after* the block is collapsed or expanded -* `blockProcessed: function() {}` called once per block during initilization after Readmore.js has processed the block. If the element has a `max-height` CSS property, Readmore.js will use that value rather than the value of the `collapsedHeight` option. ### The callbacks: -The `beforeToggle` and `afterToggle` callbacks both receive the same arguments: `trigger`, `element`, and `expanded`. +The callback functions, `beforeToggle` and `afterToggle`, both receive the same arguments: `trigger`, `element`, and `expanded`. * `trigger`: the "Read more" or "Close" element that was clicked * `element`: the block that is being collapsed or expanded * `expanded`: Boolean; `true` means the block is expanded -The `blockProcessed` callback receives `element` and `collapsable`. - -* `element`: the block that has just been processed -* `collapsable`: Boolean; `false` means the block was shorter than the specified minimum `collapsedHeight`--the block will not have a "Read more" link - #### Callback example: Here's an example of how you could use the `afterToggle` callback to scroll back to the top of a block when the "Close" link is clicked. @@ -178,6 +166,6 @@ $ npm install Which will install the necessary development dependencies. Then, to build the minified script: ``` -$ npm run build +$ gulp compress ``` diff --git a/library/readmore.js/hubzilla-custom-fix-webkit-browsers.patch b/library/readmore.js/hubzilla-custom-fix-webkit-browsers.patch deleted file mode 100644 index fd3146152..000000000 --- a/library/readmore.js/hubzilla-custom-fix-webkit-browsers.patch +++ /dev/null @@ -1,13 +0,0 @@ -diff --git a/library/readmore.js/readmore.js b/library/readmore.js/readmore.js -index 34a624e..51222ce 100644 ---- a/library/readmore.js/readmore.js -+++ b/library/readmore.js/readmore.js -@@ -246,7 +246,7 @@ - collapsedHeight = $element.data('collapsedHeight'); - - if ($element.height() <= collapsedHeight) { -- newHeight = $element.data('expandedHeight') + 'px'; -+ newHeight = 100 + '%'; - newLink = 'lessLink'; - expanded = true; - } diff --git a/library/readmore.js/readmore.js b/library/readmore.js/readmore.js index 51222ced0..fb5a0e0f9 100644 --- a/library/readmore.js/readmore.js +++ b/library/readmore.js/readmore.js @@ -37,9 +37,8 @@ startOpen: false, // callbacks - blockProcessed: function() {}, - beforeToggle: function() {}, - afterToggle: function() {} + beforeToggle: function(){}, + afterToggle: function(){} }, cssEmbedded = {}, uniqueIdCounter = 0; @@ -188,9 +187,6 @@ if (current.outerHeight(true) <= collapsedHeight + heightMargin) { // The block is shorter than the limit, so there's no need to truncate it. - if (this.options.blockProcessed && typeof this.options.blockProcessed === 'function') { - this.options.blockProcessed(current, false); - } return true; } else { @@ -210,7 +206,7 @@ }; })(this)) .attr({ - 'data-readmore-toggle': id, + 'data-readmore-toggle': '', 'aria-controls': id })); @@ -219,10 +215,6 @@ height: collapsedHeight }); } - - if (this.options.blockProcessed && typeof this.options.blockProcessed === 'function') { - this.options.blockProcessed(current, true); - } } }, @@ -232,11 +224,11 @@ } if (! trigger) { - trigger = $('[aria-controls="' + this.element.id + '"]')[0]; + trigger = $('[aria-controls="' + _this.element.id + '"]')[0]; } if (! element) { - element = this.element; + element = _this.element; } var $element = $(element), @@ -258,18 +250,14 @@ // Fire beforeToggle callback // Since we determined the new "expanded" state above we're now out of sync // with our true current state, so we need to flip the value of `expanded` - if (this.options.beforeToggle && typeof this.options.beforeToggle === 'function') { - this.options.beforeToggle(trigger, $element, ! expanded); - } + this.options.beforeToggle(trigger, $element, ! expanded); $element.css({'height': newHeight}); // Fire afterToggle callback $element.on('transitionend', (function(_this) { return function() { - if (_this.options.afterToggle && typeof _this.options.afterToggle === 'function') { - _this.options.afterToggle(trigger, $element, expanded); - } + _this.options.afterToggle(trigger, $element, expanded); $(this).attr({ 'aria-expanded': expanded @@ -284,7 +272,7 @@ }; })(this)) .attr({ - 'data-readmore-toggle': $element.attr('id'), + 'data-readmore-toggle': '', 'aria-controls': $element.attr('id') })); }, diff --git a/util/hmessages.po b/util/hmessages.po index 5dd687799..b076aadf8 100644 --- a/util/hmessages.po +++ b/util/hmessages.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-07-22 00:02-0700\n" +"POT-Creation-Date: 2016-07-15 00:02-0700\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,156 +17,11 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: ../../Zotlabs/Access/PermissionRoles.php:182 -#: ../../include/permissions.php:904 -msgid "Social Networking" -msgstr "" - -#: ../../Zotlabs/Access/PermissionRoles.php:183 -#: ../../include/permissions.php:904 -msgid "Social - Mostly Public" -msgstr "" - -#: ../../Zotlabs/Access/PermissionRoles.php:184 -#: ../../include/permissions.php:904 -msgid "Social - Restricted" -msgstr "" - -#: ../../Zotlabs/Access/PermissionRoles.php:185 -#: ../../include/permissions.php:904 -msgid "Social - Private" -msgstr "" - -#: ../../Zotlabs/Access/PermissionRoles.php:188 -#: ../../include/permissions.php:905 -msgid "Community Forum" -msgstr "" - -#: ../../Zotlabs/Access/PermissionRoles.php:189 -#: ../../include/permissions.php:905 -msgid "Forum - Mostly Public" -msgstr "" - -#: ../../Zotlabs/Access/PermissionRoles.php:190 -#: ../../include/permissions.php:905 -msgid "Forum - Restricted" -msgstr "" - -#: ../../Zotlabs/Access/PermissionRoles.php:191 -#: ../../include/permissions.php:905 -msgid "Forum - Private" -msgstr "" - -#: ../../Zotlabs/Access/PermissionRoles.php:194 -#: ../../include/permissions.php:906 -msgid "Feed Republish" -msgstr "" - -#: ../../Zotlabs/Access/PermissionRoles.php:195 -#: ../../include/permissions.php:906 -msgid "Feed - Mostly Public" -msgstr "" - -#: ../../Zotlabs/Access/PermissionRoles.php:196 -#: ../../include/permissions.php:906 -msgid "Feed - Restricted" -msgstr "" - -#: ../../Zotlabs/Access/PermissionRoles.php:199 -#: ../../include/permissions.php:907 -msgid "Special Purpose" -msgstr "" - -#: ../../Zotlabs/Access/PermissionRoles.php:200 -#: ../../include/permissions.php:907 -msgid "Special - Celebrity/Soapbox" -msgstr "" - -#: ../../Zotlabs/Access/PermissionRoles.php:201 -#: ../../include/permissions.php:907 -msgid "Special - Group Repository" -msgstr "" - -#: ../../Zotlabs/Access/PermissionRoles.php:204 ../../include/selectors.php:49 -#: ../../include/selectors.php:66 ../../include/selectors.php:104 -#: ../../include/selectors.php:140 ../../include/permissions.php:908 -msgid "Other" -msgstr "" - -#: ../../Zotlabs/Access/PermissionRoles.php:205 -#: ../../include/permissions.php:908 -msgid "Custom/Expert Mode" -msgstr "" - -#: ../../Zotlabs/Access/Permissions.php:30 -msgid "Can view my channel stream and posts" -msgstr "" - -#: ../../Zotlabs/Access/Permissions.php:31 ../../include/permissions.php:33 -msgid "Can send me their channel stream and posts" -msgstr "" - -#: ../../Zotlabs/Access/Permissions.php:32 ../../include/permissions.php:27 -msgid "Can view my default channel profile" -msgstr "" - -#: ../../Zotlabs/Access/Permissions.php:33 ../../include/permissions.php:28 -msgid "Can view my connections" -msgstr "" - -#: ../../Zotlabs/Access/Permissions.php:34 ../../include/permissions.php:29 -msgid "Can view my file storage and photos" -msgstr "" - -#: ../../Zotlabs/Access/Permissions.php:35 -msgid "Can upload/modify my file storage and photos" -msgstr "" - -#: ../../Zotlabs/Access/Permissions.php:36 -msgid "Can view my channel webpages" -msgstr "" - -#: ../../Zotlabs/Access/Permissions.php:37 -msgid "Can create/edit my channel webpages" -msgstr "" - -#: ../../Zotlabs/Access/Permissions.php:38 -msgid "Can post on my channel (wall) page" -msgstr "" - -#: ../../Zotlabs/Access/Permissions.php:39 ../../include/permissions.php:35 -msgid "Can comment on or like my posts" -msgstr "" - -#: ../../Zotlabs/Access/Permissions.php:40 ../../include/permissions.php:36 -msgid "Can send me private mail messages" -msgstr "" - -#: ../../Zotlabs/Access/Permissions.php:41 -msgid "Can like/dislike profiles and profile things" -msgstr "" - -#: ../../Zotlabs/Access/Permissions.php:42 -msgid "Can forward to all my channel connections via @+ mentions in posts" -msgstr "" - -#: ../../Zotlabs/Access/Permissions.php:43 -msgid "Can chat with me" -msgstr "" - -#: ../../Zotlabs/Access/Permissions.php:44 ../../include/permissions.php:44 -msgid "Can source my public posts in derived channels" -msgstr "" - -#: ../../Zotlabs/Access/Permissions.php:45 -msgid "Can administer my channel" -msgstr "" - #: ../../Zotlabs/Storage/Browser.php:107 ../../Zotlabs/Storage/Browser.php:239 msgid "parent" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:131 ../../include/text.php:2605 +#: ../../Zotlabs/Storage/Browser.php:131 ../../include/text.php:2613 msgid "Collection" msgstr "" @@ -193,8 +48,8 @@ msgstr "" #: ../../Zotlabs/Storage/Browser.php:164 ../../Zotlabs/Module/Photos.php:796 #: ../../Zotlabs/Module/Photos.php:1241 #: ../../Zotlabs/Module/Embedphotos.php:147 ../../Zotlabs/Lib/Apps.php:490 -#: ../../Zotlabs/Lib/Apps.php:565 ../../include/conversation.php:1035 -#: ../../include/widgets.php:1599 +#: ../../Zotlabs/Lib/Apps.php:565 ../../include/widgets.php:1594 +#: ../../include/conversation.php:1035 msgid "Unknown" msgstr "" @@ -223,13 +78,13 @@ msgstr "" #: ../../Zotlabs/Module/Cover_photo.php:357 #: ../../Zotlabs/Module/Photos.php:823 ../../Zotlabs/Module/Photos.php:1362 #: ../../Zotlabs/Module/Profile_photo.php:390 -#: ../../Zotlabs/Module/Embedphotos.php:159 ../../include/widgets.php:1612 +#: ../../Zotlabs/Module/Embedphotos.php:159 ../../include/widgets.php:1607 msgid "Upload" msgstr "" #: ../../Zotlabs/Storage/Browser.php:235 ../../Zotlabs/Module/Chat.php:247 -#: ../../Zotlabs/Module/Admin.php:1223 ../../Zotlabs/Module/Settings.php:646 -#: ../../Zotlabs/Module/Settings.php:672 +#: ../../Zotlabs/Module/Admin.php:1223 ../../Zotlabs/Module/Settings.php:627 +#: ../../Zotlabs/Module/Settings.php:653 #: ../../Zotlabs/Module/Sharedwithme.php:99 msgid "Name" msgstr "" @@ -256,22 +111,22 @@ msgstr "" #: ../../Zotlabs/Module/Layouts.php:192 ../../Zotlabs/Module/Menu.php:112 #: ../../Zotlabs/Module/Admin.php:2113 ../../Zotlabs/Module/Blocks.php:160 #: ../../Zotlabs/Module/Editblock.php:109 -#: ../../Zotlabs/Module/Settings.php:706 ../../Zotlabs/Module/Thing.php:260 +#: ../../Zotlabs/Module/Settings.php:687 ../../Zotlabs/Module/Thing.php:260 #: ../../Zotlabs/Module/Webpages.php:194 ../../Zotlabs/Lib/Apps.php:341 #: ../../Zotlabs/Lib/ThreadItem.php:106 ../../include/page_widgets.php:9 -#: ../../include/page_widgets.php:39 ../../include/channel.php:976 -#: ../../include/channel.php:980 ../../include/menu.php:108 +#: ../../include/page_widgets.php:39 ../../include/channel.php:961 +#: ../../include/channel.php:965 ../../include/menu.php:108 msgid "Edit" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:241 ../../Zotlabs/Module/Connedit.php:602 +#: ../../Zotlabs/Storage/Browser.php:241 ../../Zotlabs/Module/Connedit.php:578 #: ../../Zotlabs/Module/Connections.php:263 #: ../../Zotlabs/Module/Editlayout.php:137 #: ../../Zotlabs/Module/Editwebpage.php:169 ../../Zotlabs/Module/Group.php:177 #: ../../Zotlabs/Module/Photos.php:1171 ../../Zotlabs/Module/Admin.php:1039 #: ../../Zotlabs/Module/Admin.php:1213 ../../Zotlabs/Module/Admin.php:2114 #: ../../Zotlabs/Module/Blocks.php:162 ../../Zotlabs/Module/Editblock.php:134 -#: ../../Zotlabs/Module/Settings.php:707 ../../Zotlabs/Module/Thing.php:261 +#: ../../Zotlabs/Module/Settings.php:688 ../../Zotlabs/Module/Thing.php:261 #: ../../Zotlabs/Module/Webpages.php:196 ../../Zotlabs/Lib/Apps.php:342 #: ../../Zotlabs/Lib/ThreadItem.php:126 ../../include/conversation.php:660 msgid "Delete" @@ -301,15 +156,15 @@ msgstr "" #: ../../Zotlabs/Web/WebServer.php:127 ../../Zotlabs/Module/Dreport.php:10 #: ../../Zotlabs/Module/Dreport.php:66 ../../Zotlabs/Module/Group.php:72 -#: ../../Zotlabs/Module/Like.php:283 ../../Zotlabs/Module/Import_items.php:114 +#: ../../Zotlabs/Module/Like.php:284 ../../Zotlabs/Module/Import_items.php:114 #: ../../Zotlabs/Module/Profperm.php:28 ../../Zotlabs/Module/Subthread.php:62 -#: ../../include/items.php:384 +#: ../../include/items.php:385 msgid "Permission denied" msgstr "" #: ../../Zotlabs/Web/WebServer.php:128 ../../Zotlabs/Web/Router.php:65 #: ../../Zotlabs/Module/Achievements.php:34 -#: ../../Zotlabs/Module/Connedit.php:390 ../../Zotlabs/Module/Id.php:76 +#: ../../Zotlabs/Module/Connedit.php:366 ../../Zotlabs/Module/Id.php:76 #: ../../Zotlabs/Module/Authtest.php:16 ../../Zotlabs/Module/Events.php:264 #: ../../Zotlabs/Module/Bookmarks.php:61 ../../Zotlabs/Module/Editpost.php:17 #: ../../Zotlabs/Module/Page.php:35 ../../Zotlabs/Module/Page.php:91 @@ -330,10 +185,10 @@ msgstr "" #: ../../Zotlabs/Module/Layouts.php:71 ../../Zotlabs/Module/Layouts.php:78 #: ../../Zotlabs/Module/Layouts.php:89 ../../Zotlabs/Module/Like.php:181 #: ../../Zotlabs/Module/Profiles.php:203 ../../Zotlabs/Module/Profiles.php:601 -#: ../../Zotlabs/Module/Item.php:213 ../../Zotlabs/Module/Item.php:221 -#: ../../Zotlabs/Module/Item.php:1071 ../../Zotlabs/Module/Photos.php:73 +#: ../../Zotlabs/Module/Item.php:211 ../../Zotlabs/Module/Item.php:219 +#: ../../Zotlabs/Module/Item.php:1067 ../../Zotlabs/Module/Photos.php:73 #: ../../Zotlabs/Module/Invite.php:17 ../../Zotlabs/Module/Invite.php:91 -#: ../../Zotlabs/Module/Locs.php:87 ../../Zotlabs/Module/Mail.php:121 +#: ../../Zotlabs/Module/Locs.php:87 ../../Zotlabs/Module/Mail.php:129 #: ../../Zotlabs/Module/Manage.php:10 ../../Zotlabs/Module/Menu.php:78 #: ../../Zotlabs/Module/Message.php:18 ../../Zotlabs/Module/Mood.php:116 #: ../../Zotlabs/Module/Network.php:15 ../../Zotlabs/Module/Channel.php:104 @@ -350,7 +205,7 @@ msgstr "" #: ../../Zotlabs/Module/Common.php:39 ../../Zotlabs/Module/Register.php:77 #: ../../Zotlabs/Module/Regmod.php:21 #: ../../Zotlabs/Module/Service_limits.php:11 -#: ../../Zotlabs/Module/Settings.php:626 ../../Zotlabs/Module/Setup.php:215 +#: ../../Zotlabs/Module/Settings.php:607 ../../Zotlabs/Module/Setup.php:215 #: ../../Zotlabs/Module/Sharedwithme.php:11 ../../Zotlabs/Module/Thing.php:274 #: ../../Zotlabs/Module/Thing.php:294 ../../Zotlabs/Module/Thing.php:331 #: ../../Zotlabs/Module/Sources.php:74 ../../Zotlabs/Module/Suggest.php:30 @@ -359,13 +214,13 @@ msgstr "" #: ../../Zotlabs/Module/Viewconnections.php:33 #: ../../Zotlabs/Module/Viewsrc.php:18 ../../Zotlabs/Module/Api.php:13 #: ../../Zotlabs/Module/Api.php:18 ../../Zotlabs/Lib/Chatroom.php:137 -#: ../../include/photos.php:27 ../../include/attach.php:141 -#: ../../include/attach.php:189 ../../include/attach.php:252 -#: ../../include/attach.php:266 ../../include/attach.php:273 -#: ../../include/attach.php:338 ../../include/attach.php:352 -#: ../../include/attach.php:359 ../../include/attach.php:439 -#: ../../include/attach.php:901 ../../include/attach.php:972 -#: ../../include/attach.php:1124 ../../include/items.php:3448 +#: ../../include/photos.php:27 ../../include/items.php:3449 +#: ../../include/attach.php:141 ../../include/attach.php:189 +#: ../../include/attach.php:252 ../../include/attach.php:266 +#: ../../include/attach.php:273 ../../include/attach.php:338 +#: ../../include/attach.php:352 ../../include/attach.php:359 +#: ../../include/attach.php:439 ../../include/attach.php:901 +#: ../../include/attach.php:972 ../../include/attach.php:1124 msgid "Permission denied." msgstr "" @@ -397,7 +252,7 @@ msgstr "" #: ../../Zotlabs/Module/Filestorage.php:59 ../../Zotlabs/Module/Layouts.php:31 #: ../../Zotlabs/Module/Profile.php:20 ../../Zotlabs/Module/Blocks.php:33 #: ../../Zotlabs/Module/Editblock.php:31 ../../Zotlabs/Module/Webpages.php:33 -#: ../../include/channel.php:876 +#: ../../include/channel.php:861 msgid "Requested profile is not available." msgstr "" @@ -421,19 +276,19 @@ msgstr "" msgid "Could not locate selected profile." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:248 +#: ../../Zotlabs/Module/Connedit.php:227 msgid "Connection updated." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:250 +#: ../../Zotlabs/Module/Connedit.php:229 msgid "Failed to update connection record." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:300 +#: ../../Zotlabs/Module/Connedit.php:276 msgid "is now connected to" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:403 ../../Zotlabs/Module/Connedit.php:685 +#: ../../Zotlabs/Module/Connedit.php:379 ../../Zotlabs/Module/Connedit.php:660 #: ../../Zotlabs/Module/Events.php:458 ../../Zotlabs/Module/Events.php:459 #: ../../Zotlabs/Module/Events.php:468 #: ../../Zotlabs/Module/Filestorage.php:156 @@ -442,15 +297,15 @@ msgstr "" #: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 #: ../../Zotlabs/Module/Mitem.php:158 ../../Zotlabs/Module/Mitem.php:159 #: ../../Zotlabs/Module/Mitem.php:232 ../../Zotlabs/Module/Mitem.php:233 -#: ../../Zotlabs/Module/Admin.php:459 ../../Zotlabs/Module/Removeme.php:63 -#: ../../Zotlabs/Module/Settings.php:635 ../../Zotlabs/Module/Api.php:89 +#: ../../Zotlabs/Module/Admin.php:459 ../../Zotlabs/Module/Removeme.php:61 +#: ../../Zotlabs/Module/Settings.php:616 ../../Zotlabs/Module/Api.php:89 #: ../../include/dir_fns.php:143 ../../include/dir_fns.php:144 #: ../../include/dir_fns.php:145 ../../view/theme/redbasic/php/config.php:105 #: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1708 msgid "No" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:403 ../../Zotlabs/Module/Events.php:458 +#: ../../Zotlabs/Module/Connedit.php:379 ../../Zotlabs/Module/Events.php:458 #: ../../Zotlabs/Module/Events.php:459 ../../Zotlabs/Module/Events.php:468 #: ../../Zotlabs/Module/Filestorage.php:156 #: ../../Zotlabs/Module/Filestorage.php:164 @@ -458,285 +313,285 @@ msgstr "" #: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 #: ../../Zotlabs/Module/Mitem.php:158 ../../Zotlabs/Module/Mitem.php:159 #: ../../Zotlabs/Module/Mitem.php:232 ../../Zotlabs/Module/Mitem.php:233 -#: ../../Zotlabs/Module/Admin.php:461 ../../Zotlabs/Module/Removeme.php:63 -#: ../../Zotlabs/Module/Settings.php:635 ../../Zotlabs/Module/Api.php:88 +#: ../../Zotlabs/Module/Admin.php:461 ../../Zotlabs/Module/Removeme.php:61 +#: ../../Zotlabs/Module/Settings.php:616 ../../Zotlabs/Module/Api.php:88 #: ../../include/dir_fns.php:143 ../../include/dir_fns.php:144 #: ../../include/dir_fns.php:145 ../../view/theme/redbasic/php/config.php:105 #: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1708 msgid "Yes" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:435 +#: ../../Zotlabs/Module/Connedit.php:411 msgid "Could not access address book record." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:455 +#: ../../Zotlabs/Module/Connedit.php:431 msgid "Refresh failed - channel is currently unavailable." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:470 ../../Zotlabs/Module/Connedit.php:479 -#: ../../Zotlabs/Module/Connedit.php:488 ../../Zotlabs/Module/Connedit.php:497 -#: ../../Zotlabs/Module/Connedit.php:510 +#: ../../Zotlabs/Module/Connedit.php:446 ../../Zotlabs/Module/Connedit.php:455 +#: ../../Zotlabs/Module/Connedit.php:464 ../../Zotlabs/Module/Connedit.php:473 +#: ../../Zotlabs/Module/Connedit.php:486 msgid "Unable to set address book parameters." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:533 +#: ../../Zotlabs/Module/Connedit.php:509 msgid "Connection has been removed." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:549 ../../Zotlabs/Lib/Apps.php:221 +#: ../../Zotlabs/Module/Connedit.php:525 ../../Zotlabs/Lib/Apps.php:221 #: ../../include/nav.php:86 ../../include/conversation.php:957 msgid "View Profile" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:552 +#: ../../Zotlabs/Module/Connedit.php:528 #, php-format msgid "View %s's profile" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:556 +#: ../../Zotlabs/Module/Connedit.php:532 msgid "Refresh Permissions" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:559 +#: ../../Zotlabs/Module/Connedit.php:535 msgid "Fetch updated permissions" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:563 +#: ../../Zotlabs/Module/Connedit.php:539 msgid "Recent Activity" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:566 +#: ../../Zotlabs/Module/Connedit.php:542 msgid "View recent posts and comments" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:570 ../../Zotlabs/Module/Admin.php:1041 +#: ../../Zotlabs/Module/Connedit.php:546 ../../Zotlabs/Module/Admin.php:1041 msgid "Unblock" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:570 ../../Zotlabs/Module/Admin.php:1040 +#: ../../Zotlabs/Module/Connedit.php:546 ../../Zotlabs/Module/Admin.php:1040 msgid "Block" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:573 +#: ../../Zotlabs/Module/Connedit.php:549 msgid "Block (or Unblock) all communications with this connection" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:574 +#: ../../Zotlabs/Module/Connedit.php:550 msgid "This connection is blocked!" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:578 +#: ../../Zotlabs/Module/Connedit.php:554 msgid "Unignore" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:578 +#: ../../Zotlabs/Module/Connedit.php:554 #: ../../Zotlabs/Module/Connections.php:277 #: ../../Zotlabs/Module/Notifications.php:55 msgid "Ignore" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:581 +#: ../../Zotlabs/Module/Connedit.php:557 msgid "Ignore (or Unignore) all inbound communications from this connection" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:582 +#: ../../Zotlabs/Module/Connedit.php:558 msgid "This connection is ignored!" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:586 +#: ../../Zotlabs/Module/Connedit.php:562 msgid "Unarchive" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:586 +#: ../../Zotlabs/Module/Connedit.php:562 msgid "Archive" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:589 +#: ../../Zotlabs/Module/Connedit.php:565 msgid "" "Archive (or Unarchive) this connection - mark channel dead but keep content" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:590 +#: ../../Zotlabs/Module/Connedit.php:566 msgid "This connection is archived!" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:594 +#: ../../Zotlabs/Module/Connedit.php:570 msgid "Unhide" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:594 +#: ../../Zotlabs/Module/Connedit.php:570 msgid "Hide" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:597 +#: ../../Zotlabs/Module/Connedit.php:573 msgid "Hide or Unhide this connection from your other connections" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:598 +#: ../../Zotlabs/Module/Connedit.php:574 msgid "This connection is hidden!" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:605 +#: ../../Zotlabs/Module/Connedit.php:581 msgid "Delete this connection" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:620 ../../include/widgets.php:493 +#: ../../Zotlabs/Module/Connedit.php:596 ../../include/widgets.php:493 msgid "Me" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:621 ../../include/widgets.php:494 +#: ../../Zotlabs/Module/Connedit.php:597 ../../include/widgets.php:494 msgid "Family" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:622 ../../Zotlabs/Module/Settings.php:391 -#: ../../Zotlabs/Module/Settings.php:395 ../../Zotlabs/Module/Settings.php:396 -#: ../../Zotlabs/Module/Settings.php:399 ../../Zotlabs/Module/Settings.php:410 -#: ../../include/channel.php:402 ../../include/channel.php:403 -#: ../../include/channel.php:410 ../../include/selectors.php:123 -#: ../../include/widgets.php:495 +#: ../../Zotlabs/Module/Connedit.php:598 ../../Zotlabs/Module/Settings.php:377 +#: ../../Zotlabs/Module/Settings.php:381 ../../Zotlabs/Module/Settings.php:382 +#: ../../Zotlabs/Module/Settings.php:385 ../../Zotlabs/Module/Settings.php:396 +#: ../../include/widgets.php:495 ../../include/channel.php:389 +#: ../../include/channel.php:390 ../../include/channel.php:397 +#: ../../include/selectors.php:123 msgid "Friends" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:623 ../../include/widgets.php:496 +#: ../../Zotlabs/Module/Connedit.php:599 ../../include/widgets.php:496 msgid "Acquaintances" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:624 +#: ../../Zotlabs/Module/Connedit.php:600 #: ../../Zotlabs/Module/Connections.php:92 #: ../../Zotlabs/Module/Connections.php:107 ../../include/widgets.php:497 msgid "All" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:685 +#: ../../Zotlabs/Module/Connedit.php:660 msgid "Approve this connection" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:685 +#: ../../Zotlabs/Module/Connedit.php:660 msgid "Accept connection to allow communication" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:690 +#: ../../Zotlabs/Module/Connedit.php:665 msgid "Set Affinity" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:693 +#: ../../Zotlabs/Module/Connedit.php:668 msgid "Set Profile" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:696 +#: ../../Zotlabs/Module/Connedit.php:671 msgid "Set Affinity & Profile" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:745 +#: ../../Zotlabs/Module/Connedit.php:704 msgid "none" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:749 ../../include/widgets.php:623 +#: ../../Zotlabs/Module/Connedit.php:708 ../../include/widgets.php:623 msgid "Connection Default Permissions" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:749 ../../include/items.php:3935 +#: ../../Zotlabs/Module/Connedit.php:708 ../../include/items.php:3936 #, php-format msgid "Connection: %s" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:750 +#: ../../Zotlabs/Module/Connedit.php:709 msgid "Apply these permissions automatically" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:750 +#: ../../Zotlabs/Module/Connedit.php:709 msgid "Connection requests will be approved without your interaction" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:752 +#: ../../Zotlabs/Module/Connedit.php:711 msgid "This connection's primary address is" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:753 +#: ../../Zotlabs/Module/Connedit.php:712 msgid "Available locations:" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:757 +#: ../../Zotlabs/Module/Connedit.php:716 msgid "" "The permissions indicated on this page will be applied to all new " "connections." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:758 +#: ../../Zotlabs/Module/Connedit.php:717 msgid "Connection Tools" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:760 +#: ../../Zotlabs/Module/Connedit.php:719 msgid "Slide to adjust your degree of friendship" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:761 ../../Zotlabs/Module/Rate.php:159 +#: ../../Zotlabs/Module/Connedit.php:720 ../../Zotlabs/Module/Rate.php:159 #: ../../include/js_strings.php:20 msgid "Rating" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:762 +#: ../../Zotlabs/Module/Connedit.php:721 msgid "Slide to adjust your rating" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:763 ../../Zotlabs/Module/Connedit.php:768 +#: ../../Zotlabs/Module/Connedit.php:722 ../../Zotlabs/Module/Connedit.php:727 msgid "Optionally explain your rating" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:765 +#: ../../Zotlabs/Module/Connedit.php:724 msgid "Custom Filter" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:766 +#: ../../Zotlabs/Module/Connedit.php:725 msgid "Only import posts with this text" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:766 ../../Zotlabs/Module/Connedit.php:767 +#: ../../Zotlabs/Module/Connedit.php:725 ../../Zotlabs/Module/Connedit.php:726 msgid "" "words one per line or #tags or /patterns/ or lang=xx, leave blank to import " "all posts" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:767 +#: ../../Zotlabs/Module/Connedit.php:726 msgid "Do not import posts with this text" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:769 +#: ../../Zotlabs/Module/Connedit.php:728 msgid "This information is public!" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:774 +#: ../../Zotlabs/Module/Connedit.php:733 msgid "Connection Pending Approval" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:777 +#: ../../Zotlabs/Module/Connedit.php:736 msgid "inherited" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:778 ../../Zotlabs/Module/Connect.php:98 +#: ../../Zotlabs/Module/Connedit.php:737 ../../Zotlabs/Module/Connect.php:98 #: ../../Zotlabs/Module/Events.php:474 ../../Zotlabs/Module/Cal.php:338 #: ../../Zotlabs/Module/Chat.php:196 ../../Zotlabs/Module/Chat.php:238 #: ../../Zotlabs/Module/Group.php:85 ../../Zotlabs/Module/Appman.php:126 #: ../../Zotlabs/Module/Pdledit.php:66 #: ../../Zotlabs/Module/Filestorage.php:161 -#: ../../Zotlabs/Module/Profiles.php:687 ../../Zotlabs/Module/Import.php:560 +#: ../../Zotlabs/Module/Profiles.php:687 ../../Zotlabs/Module/Import.php:551 #: ../../Zotlabs/Module/Photos.php:675 ../../Zotlabs/Module/Photos.php:1050 #: ../../Zotlabs/Module/Photos.php:1090 ../../Zotlabs/Module/Photos.php:1208 #: ../../Zotlabs/Module/Import_items.php:122 #: ../../Zotlabs/Module/Invite.php:146 ../../Zotlabs/Module/Locs.php:121 -#: ../../Zotlabs/Module/Mail.php:370 ../../Zotlabs/Module/Mood.php:139 +#: ../../Zotlabs/Module/Mail.php:378 ../../Zotlabs/Module/Mood.php:139 #: ../../Zotlabs/Module/Mitem.php:235 ../../Zotlabs/Module/Admin.php:492 #: ../../Zotlabs/Module/Admin.php:688 ../../Zotlabs/Module/Admin.php:771 #: ../../Zotlabs/Module/Admin.php:1032 ../../Zotlabs/Module/Admin.php:1211 #: ../../Zotlabs/Module/Admin.php:1421 ../../Zotlabs/Module/Admin.php:1648 #: ../../Zotlabs/Module/Admin.php:1733 ../../Zotlabs/Module/Admin.php:2116 #: ../../Zotlabs/Module/Poke.php:186 ../../Zotlabs/Module/Pconfig.php:107 -#: ../../Zotlabs/Module/Rate.php:170 ../../Zotlabs/Module/Settings.php:644 -#: ../../Zotlabs/Module/Settings.php:757 ../../Zotlabs/Module/Settings.php:806 -#: ../../Zotlabs/Module/Settings.php:832 ../../Zotlabs/Module/Settings.php:855 -#: ../../Zotlabs/Module/Settings.php:943 -#: ../../Zotlabs/Module/Settings.php:1129 ../../Zotlabs/Module/Setup.php:312 +#: ../../Zotlabs/Module/Rate.php:170 ../../Zotlabs/Module/Settings.php:625 +#: ../../Zotlabs/Module/Settings.php:738 ../../Zotlabs/Module/Settings.php:779 +#: ../../Zotlabs/Module/Settings.php:805 ../../Zotlabs/Module/Settings.php:828 +#: ../../Zotlabs/Module/Settings.php:916 +#: ../../Zotlabs/Module/Settings.php:1108 ../../Zotlabs/Module/Setup.php:312 #: ../../Zotlabs/Module/Setup.php:353 ../../Zotlabs/Module/Thing.php:316 #: ../../Zotlabs/Module/Thing.php:362 ../../Zotlabs/Module/Sources.php:114 #: ../../Zotlabs/Module/Sources.php:149 ../../Zotlabs/Module/Xchan.php:15 @@ -745,33 +600,33 @@ msgstr "" msgid "Submit" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:779 +#: ../../Zotlabs/Module/Connedit.php:738 #, php-format msgid "" "Please choose the profile you would like to display to %s when viewing your " "profile securely." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:781 +#: ../../Zotlabs/Module/Connedit.php:740 msgid "Their Settings" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:782 +#: ../../Zotlabs/Module/Connedit.php:741 msgid "My Settings" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:784 +#: ../../Zotlabs/Module/Connedit.php:743 msgid "Individual Permissions" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:785 +#: ../../Zotlabs/Module/Connedit.php:744 msgid "" "Some permissions may be inherited from your channel's privacy settings, which have higher priority than " "individual settings. You can not change those settings here." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:786 +#: ../../Zotlabs/Module/Connedit.php:745 msgid "" "Some permissions may be inherited from your channel's privacy settings, which have higher priority than " @@ -779,7 +634,7 @@ msgid "" "any impact unless the inherited setting changes." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:787 +#: ../../Zotlabs/Module/Connedit.php:746 msgid "Last update:" msgstr "" @@ -793,7 +648,7 @@ msgstr "" #: ../../Zotlabs/Module/Display.php:40 ../../Zotlabs/Module/Filestorage.php:32 #: ../../Zotlabs/Module/Admin.php:164 ../../Zotlabs/Module/Admin.php:1255 #: ../../Zotlabs/Module/Admin.php:1561 ../../Zotlabs/Module/Thing.php:89 -#: ../../Zotlabs/Module/Viewsrc.php:24 ../../include/items.php:3369 +#: ../../Zotlabs/Module/Viewsrc.php:24 ../../include/items.php:3370 msgid "Item not found." msgstr "" @@ -815,7 +670,7 @@ msgstr "" #: ../../Zotlabs/Module/Id.php:17 ../../Zotlabs/Module/Id.php:18 #: ../../Zotlabs/Module/Admin.php:1035 ../../Zotlabs/Module/Admin.php:1047 -#: ../../include/network.php:2203 +#: ../../include/network.php:2203 ../../boot.php:1706 msgid "Email" msgstr "" @@ -913,11 +768,11 @@ msgstr "" msgid "Homepage: " msgstr "" -#: ../../Zotlabs/Module/Directory.php:306 ../../include/channel.php:1223 +#: ../../Zotlabs/Module/Directory.php:306 ../../include/channel.php:1208 msgid "Age:" msgstr "" -#: ../../Zotlabs/Module/Directory.php:311 ../../include/channel.php:1066 +#: ../../Zotlabs/Module/Directory.php:311 ../../include/channel.php:1051 #: ../../include/event.php:52 ../../include/event.php:84 #: ../../include/bb2diaspora.php:507 msgid "Location:" @@ -927,18 +782,18 @@ msgstr "" msgid "Description:" msgstr "" -#: ../../Zotlabs/Module/Directory.php:322 ../../include/channel.php:1239 +#: ../../Zotlabs/Module/Directory.php:322 ../../include/channel.php:1224 msgid "Hometown:" msgstr "" -#: ../../Zotlabs/Module/Directory.php:324 ../../include/channel.php:1247 +#: ../../Zotlabs/Module/Directory.php:324 ../../include/channel.php:1232 msgid "About:" msgstr "" #: ../../Zotlabs/Module/Directory.php:325 ../../Zotlabs/Module/Match.php:68 -#: ../../Zotlabs/Module/Suggest.php:56 ../../include/channel.php:1051 -#: ../../include/connections.php:78 ../../include/conversation.php:959 -#: ../../include/widgets.php:147 ../../include/widgets.php:184 +#: ../../Zotlabs/Module/Suggest.php:56 ../../include/widgets.php:147 +#: ../../include/widgets.php:184 ../../include/channel.php:1036 +#: ../../include/conversation.php:959 ../../include/connections.php:78 msgid "Connect" msgstr "" @@ -1082,9 +937,9 @@ msgstr "" msgid "Event not found." msgstr "" -#: ../../Zotlabs/Module/Events.php:253 ../../Zotlabs/Module/Like.php:372 -#: ../../Zotlabs/Module/Tagger.php:51 ../../include/conversation.php:123 -#: ../../include/text.php:1924 ../../include/event.php:951 +#: ../../Zotlabs/Module/Events.php:253 ../../Zotlabs/Module/Like.php:373 +#: ../../Zotlabs/Module/Tagger.php:51 ../../include/event.php:949 +#: ../../include/conversation.php:123 ../../include/text.php:1924 msgid "event" msgstr "" @@ -1289,8 +1144,8 @@ msgid "Photos" msgstr "" #: ../../Zotlabs/Module/Fbrowser.php:66 ../../Zotlabs/Module/Fbrowser.php:88 -#: ../../Zotlabs/Module/Admin.php:1406 ../../Zotlabs/Module/Settings.php:645 -#: ../../Zotlabs/Module/Settings.php:671 ../../Zotlabs/Module/Tagrm.php:15 +#: ../../Zotlabs/Module/Admin.php:1406 ../../Zotlabs/Module/Settings.php:626 +#: ../../Zotlabs/Module/Settings.php:652 ../../Zotlabs/Module/Tagrm.php:15 #: ../../Zotlabs/Module/Tagrm.php:138 ../../Zotlabs/Module/Wiki.php:166 #: ../../Zotlabs/Module/Wiki.php:202 ../../include/conversation.php:1235 #: ../../include/conversation.php:1274 @@ -1326,8 +1181,8 @@ msgstr "" #: ../../Zotlabs/Module/Filer.php:53 ../../Zotlabs/Module/Admin.php:2033 #: ../../Zotlabs/Module/Admin.php:2053 ../../Zotlabs/Module/Rbmark.php:32 -#: ../../Zotlabs/Module/Rbmark.php:104 ../../include/text.php:926 -#: ../../include/text.php:938 ../../include/widgets.php:201 +#: ../../Zotlabs/Module/Rbmark.php:104 ../../include/widgets.php:201 +#: ../../include/text.php:926 ../../include/text.php:938 msgid "Save" msgstr "" @@ -1451,8 +1306,8 @@ msgstr "" #: ../../Zotlabs/Module/Connections.php:306 ../../Zotlabs/Module/Search.php:44 #: ../../Zotlabs/Lib/Apps.php:230 ../../include/nav.php:167 -#: ../../include/text.php:925 ../../include/text.php:937 -#: ../../include/acl_selectors.php:274 +#: ../../include/acl_selectors.php:274 ../../include/text.php:925 +#: ../../include/text.php:937 msgid "Search" msgstr "" @@ -1494,30 +1349,30 @@ msgstr "" msgid "Unable to process image." msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:233 ../../include/items.php:4283 +#: ../../Zotlabs/Module/Cover_photo.php:233 ../../include/items.php:4284 msgid "female" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:234 ../../include/items.php:4284 +#: ../../Zotlabs/Module/Cover_photo.php:234 ../../include/items.php:4285 #, php-format msgid "%1$s updated her %2$s" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:235 ../../include/items.php:4285 +#: ../../Zotlabs/Module/Cover_photo.php:235 ../../include/items.php:4286 msgid "male" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:236 ../../include/items.php:4286 +#: ../../Zotlabs/Module/Cover_photo.php:236 ../../include/items.php:4287 #, php-format msgid "%1$s updated his %2$s" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:238 ../../include/items.php:4288 +#: ../../Zotlabs/Module/Cover_photo.php:238 ../../include/items.php:4289 #, php-format msgid "%1$s updated their %2$s" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:240 ../../include/channel.php:1726 +#: ../../Zotlabs/Module/Cover_photo.php:240 ../../include/channel.php:1708 msgid "cover photo" msgstr "" @@ -1544,7 +1399,7 @@ msgstr "" #: ../../Zotlabs/Module/Cover_photo.php:361 #: ../../Zotlabs/Module/Profile_photo.php:396 -#: ../../Zotlabs/Module/Settings.php:1080 +#: ../../Zotlabs/Module/Settings.php:1059 msgid "or" msgstr "" @@ -1644,19 +1499,19 @@ msgstr "" msgid "Bookmark this room" msgstr "" -#: ../../Zotlabs/Module/Chat.php:205 ../../Zotlabs/Module/Mail.php:197 -#: ../../Zotlabs/Module/Mail.php:306 ../../include/conversation.php:1181 +#: ../../Zotlabs/Module/Chat.php:205 ../../Zotlabs/Module/Mail.php:205 +#: ../../Zotlabs/Module/Mail.php:314 ../../include/conversation.php:1181 msgid "Please enter a link URL:" msgstr "" -#: ../../Zotlabs/Module/Chat.php:206 ../../Zotlabs/Module/Mail.php:250 -#: ../../Zotlabs/Module/Mail.php:375 ../../Zotlabs/Lib/ThreadItem.php:722 +#: ../../Zotlabs/Module/Chat.php:206 ../../Zotlabs/Module/Mail.php:258 +#: ../../Zotlabs/Module/Mail.php:383 ../../Zotlabs/Lib/ThreadItem.php:722 #: ../../include/conversation.php:1271 msgid "Encrypt text" msgstr "" #: ../../Zotlabs/Module/Chat.php:207 ../../Zotlabs/Module/Editwebpage.php:146 -#: ../../Zotlabs/Module/Mail.php:244 ../../Zotlabs/Module/Mail.php:369 +#: ../../Zotlabs/Module/Mail.php:252 ../../Zotlabs/Module/Mail.php:377 #: ../../Zotlabs/Module/Editblock.php:111 ../../include/conversation.php:1146 msgid "Insert web link" msgstr "" @@ -1802,7 +1657,7 @@ msgid "Could not create privacy group." msgstr "" #: ../../Zotlabs/Module/Group.php:42 ../../Zotlabs/Module/Group.php:141 -#: ../../include/items.php:3902 +#: ../../include/items.php:3903 msgid "Privacy group not found." msgstr "" @@ -1949,11 +1804,11 @@ msgstr "" msgid "Activate the Firefox $Projectname provider" msgstr "" -#: ../../Zotlabs/Module/Acl.php:312 +#: ../../Zotlabs/Module/Acl.php:288 msgid "network" msgstr "" -#: ../../Zotlabs/Module/Acl.php:322 +#: ../../Zotlabs/Module/Acl.php:298 msgid "RSS" msgstr "" @@ -2001,7 +1856,7 @@ msgstr "" msgid "Notify your contacts about this file" msgstr "" -#: ../../Zotlabs/Module/Layouts.php:183 ../../include/text.php:2240 +#: ../../Zotlabs/Module/Layouts.php:183 ../../include/text.php:2248 msgid "Layouts" msgstr "" @@ -2070,62 +1925,62 @@ msgstr "" msgid "Previous action reversed." msgstr "" -#: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87 +#: ../../Zotlabs/Module/Like.php:371 ../../Zotlabs/Module/Subthread.php:87 #: ../../Zotlabs/Module/Tagger.php:47 ../../include/conversation.php:120 #: ../../include/text.php:1921 msgid "photo" msgstr "" -#: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87 +#: ../../Zotlabs/Module/Like.php:371 ../../Zotlabs/Module/Subthread.php:87 #: ../../include/conversation.php:148 ../../include/text.php:1927 msgid "status" msgstr "" -#: ../../Zotlabs/Module/Like.php:419 ../../include/conversation.php:164 +#: ../../Zotlabs/Module/Like.php:420 ../../include/conversation.php:164 #, php-format msgid "%1$s likes %2$s's %3$s" msgstr "" -#: ../../Zotlabs/Module/Like.php:421 ../../include/conversation.php:167 +#: ../../Zotlabs/Module/Like.php:422 ../../include/conversation.php:167 #, php-format msgid "%1$s doesn't like %2$s's %3$s" msgstr "" -#: ../../Zotlabs/Module/Like.php:423 +#: ../../Zotlabs/Module/Like.php:424 #, php-format msgid "%1$s agrees with %2$s's %3$s" msgstr "" -#: ../../Zotlabs/Module/Like.php:425 +#: ../../Zotlabs/Module/Like.php:426 #, php-format msgid "%1$s doesn't agree with %2$s's %3$s" msgstr "" -#: ../../Zotlabs/Module/Like.php:427 +#: ../../Zotlabs/Module/Like.php:428 #, php-format msgid "%1$s abstains from a decision on %2$s's %3$s" msgstr "" -#: ../../Zotlabs/Module/Like.php:429 +#: ../../Zotlabs/Module/Like.php:430 #, php-format msgid "%1$s is attending %2$s's %3$s" msgstr "" -#: ../../Zotlabs/Module/Like.php:431 +#: ../../Zotlabs/Module/Like.php:432 #, php-format msgid "%1$s is not attending %2$s's %3$s" msgstr "" -#: ../../Zotlabs/Module/Like.php:433 +#: ../../Zotlabs/Module/Like.php:434 #, php-format msgid "%1$s may attend %2$s's %3$s" msgstr "" -#: ../../Zotlabs/Module/Like.php:536 +#: ../../Zotlabs/Module/Like.php:537 msgid "Action completed." msgstr "" -#: ../../Zotlabs/Module/Like.php:537 +#: ../../Zotlabs/Module/Like.php:538 msgid "Thank you." msgstr "" @@ -2220,7 +2075,7 @@ msgid "View this profile" msgstr "" #: ../../Zotlabs/Module/Profiles.php:689 ../../Zotlabs/Module/Profiles.php:771 -#: ../../include/channel.php:998 +#: ../../include/channel.php:983 msgid "Edit visibility" msgstr "" @@ -2232,7 +2087,7 @@ msgstr "" msgid "Change cover photo" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:692 ../../include/channel.php:969 +#: ../../Zotlabs/Module/Profiles.php:692 ../../include/channel.php:954 msgid "Change profile photo" msgstr "" @@ -2252,8 +2107,8 @@ msgstr "" msgid "Add profile things" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:697 ../../include/conversation.php:1541 -#: ../../include/widgets.php:105 +#: ../../Zotlabs/Module/Profiles.php:697 ../../include/widgets.php:105 +#: ../../include/conversation.php:1541 msgid "Personal" msgstr "" @@ -2393,89 +2248,89 @@ msgstr "" msgid "My other channels" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:767 ../../include/channel.php:994 +#: ../../Zotlabs/Module/Profiles.php:767 ../../include/channel.php:979 msgid "Profile Image" msgstr "" #: ../../Zotlabs/Module/Profiles.php:777 ../../include/nav.php:88 -#: ../../include/channel.php:976 +#: ../../include/channel.php:961 msgid "Edit Profiles" msgstr "" -#: ../../Zotlabs/Module/Import.php:33 +#: ../../Zotlabs/Module/Import.php:32 #, php-format msgid "Your service plan only allows %d channels." msgstr "" -#: ../../Zotlabs/Module/Import.php:71 ../../Zotlabs/Module/Import_items.php:42 +#: ../../Zotlabs/Module/Import.php:70 ../../Zotlabs/Module/Import_items.php:42 msgid "Nothing to import." msgstr "" -#: ../../Zotlabs/Module/Import.php:95 ../../Zotlabs/Module/Import_items.php:66 +#: ../../Zotlabs/Module/Import.php:94 ../../Zotlabs/Module/Import_items.php:66 msgid "Unable to download data from old server" msgstr "" -#: ../../Zotlabs/Module/Import.php:101 +#: ../../Zotlabs/Module/Import.php:100 #: ../../Zotlabs/Module/Import_items.php:72 msgid "Imported file is empty." msgstr "" -#: ../../Zotlabs/Module/Import.php:123 +#: ../../Zotlabs/Module/Import.php:122 #: ../../Zotlabs/Module/Import_items.php:88 #, php-format msgid "Warning: Database versions differ by %1$d updates." msgstr "" -#: ../../Zotlabs/Module/Import.php:153 ../../include/import.php:107 +#: ../../Zotlabs/Module/Import.php:152 ../../include/import.php:86 msgid "Cloned channel not found. Import failed." msgstr "" -#: ../../Zotlabs/Module/Import.php:163 +#: ../../Zotlabs/Module/Import.php:162 msgid "No channel. Import failed." msgstr "" -#: ../../Zotlabs/Module/Import.php:520 +#: ../../Zotlabs/Module/Import.php:511 #: ../../include/Import/import_diaspora.php:142 msgid "Import completed." msgstr "" -#: ../../Zotlabs/Module/Import.php:542 +#: ../../Zotlabs/Module/Import.php:533 msgid "You must be logged in to use this feature." msgstr "" -#: ../../Zotlabs/Module/Import.php:547 +#: ../../Zotlabs/Module/Import.php:538 msgid "Import Channel" msgstr "" -#: ../../Zotlabs/Module/Import.php:548 +#: ../../Zotlabs/Module/Import.php:539 msgid "" "Use this form to import an existing channel from a different server/hub. You " "may retrieve the channel identity from the old server/hub via the network or " "provide an export file." msgstr "" -#: ../../Zotlabs/Module/Import.php:549 +#: ../../Zotlabs/Module/Import.php:540 #: ../../Zotlabs/Module/Import_items.php:121 msgid "File to Upload" msgstr "" -#: ../../Zotlabs/Module/Import.php:550 +#: ../../Zotlabs/Module/Import.php:541 msgid "Or provide the old server/hub details" msgstr "" -#: ../../Zotlabs/Module/Import.php:551 +#: ../../Zotlabs/Module/Import.php:542 msgid "Your old identity address (xyz@example.com)" msgstr "" -#: ../../Zotlabs/Module/Import.php:552 +#: ../../Zotlabs/Module/Import.php:543 msgid "Your old login email address" msgstr "" -#: ../../Zotlabs/Module/Import.php:553 +#: ../../Zotlabs/Module/Import.php:544 msgid "Your old login password" msgstr "" -#: ../../Zotlabs/Module/Import.php:554 +#: ../../Zotlabs/Module/Import.php:545 msgid "" "For either option, please choose whether to make this hub your new primary " "address, or whether your old location should continue this role. You will be " @@ -2483,27 +2338,27 @@ msgid "" "location for files, photos, and media." msgstr "" -#: ../../Zotlabs/Module/Import.php:555 +#: ../../Zotlabs/Module/Import.php:546 msgid "Make this hub my primary location" msgstr "" -#: ../../Zotlabs/Module/Import.php:556 +#: ../../Zotlabs/Module/Import.php:547 msgid "" "Import existing posts if possible (experimental - limited by available memory" msgstr "" -#: ../../Zotlabs/Module/Import.php:557 +#: ../../Zotlabs/Module/Import.php:548 msgid "" "This process may take several minutes to complete. Please submit the form " "only once and leave this page open until finished." msgstr "" -#: ../../Zotlabs/Module/Home.php:74 ../../Zotlabs/Module/Home.php:82 +#: ../../Zotlabs/Module/Home.php:61 ../../Zotlabs/Module/Home.php:69 #: ../../Zotlabs/Module/Siteinfo.php:48 msgid "$Projectname" msgstr "" -#: ../../Zotlabs/Module/Home.php:92 +#: ../../Zotlabs/Module/Home.php:79 #, php-format msgid "Welcome to %s" msgstr "" @@ -2512,32 +2367,32 @@ msgstr "" msgid "Unable to locate original post." msgstr "" -#: ../../Zotlabs/Module/Item.php:432 +#: ../../Zotlabs/Module/Item.php:428 msgid "Empty post discarded." msgstr "" -#: ../../Zotlabs/Module/Item.php:472 +#: ../../Zotlabs/Module/Item.php:468 msgid "Executable content type not permitted to this channel." msgstr "" -#: ../../Zotlabs/Module/Item.php:856 +#: ../../Zotlabs/Module/Item.php:852 msgid "Duplicate post suppressed." msgstr "" -#: ../../Zotlabs/Module/Item.php:989 +#: ../../Zotlabs/Module/Item.php:985 msgid "System error. Post not saved." msgstr "" -#: ../../Zotlabs/Module/Item.php:1242 +#: ../../Zotlabs/Module/Item.php:1238 msgid "Unable to obtain post information from database." msgstr "" -#: ../../Zotlabs/Module/Item.php:1249 +#: ../../Zotlabs/Module/Item.php:1245 #, php-format msgid "You have reached your limit of %1$.0f top level posts." msgstr "" -#: ../../Zotlabs/Module/Item.php:1256 +#: ../../Zotlabs/Module/Item.php:1252 #, php-format msgid "You have reached your limit of %1$.0f webpages." msgstr "" @@ -2632,12 +2487,12 @@ msgid "Show Oldest First" msgstr "" #: ../../Zotlabs/Module/Photos.php:790 ../../Zotlabs/Module/Photos.php:1329 -#: ../../Zotlabs/Module/Embedphotos.php:141 ../../include/widgets.php:1593 +#: ../../Zotlabs/Module/Embedphotos.php:141 ../../include/widgets.php:1588 msgid "View Photo" msgstr "" #: ../../Zotlabs/Module/Photos.php:821 -#: ../../Zotlabs/Module/Embedphotos.php:157 ../../include/widgets.php:1610 +#: ../../Zotlabs/Module/Embedphotos.php:157 ../../include/widgets.php:1605 msgid "Edit Album" msgstr "" @@ -2776,7 +2631,7 @@ msgid "View all" msgstr "" #: ../../Zotlabs/Module/Photos.php:1128 ../../Zotlabs/Lib/ThreadItem.php:185 -#: ../../include/taxonomy.php:403 ../../include/channel.php:1198 +#: ../../include/taxonomy.php:403 ../../include/channel.php:1183 #: ../../include/conversation.php:1762 msgctxt "noun" msgid "Like" @@ -2828,11 +2683,11 @@ msgstr "" msgid "Recent Photos" msgstr "" -#: ../../Zotlabs/Module/Lockview.php:75 +#: ../../Zotlabs/Module/Lockview.php:61 msgid "Remote privacy information not available." msgstr "" -#: ../../Zotlabs/Module/Lockview.php:96 +#: ../../Zotlabs/Module/Lockview.php:82 msgid "Visible to:" msgstr "" @@ -2889,7 +2744,7 @@ msgstr "" msgid "Enter email addresses, one per line:" msgstr "" -#: ../../Zotlabs/Module/Invite.php:135 ../../Zotlabs/Module/Mail.php:241 +#: ../../Zotlabs/Module/Invite.php:135 ../../Zotlabs/Module/Mail.php:249 msgid "Your message:" msgstr "" @@ -2985,87 +2840,87 @@ msgstr "" msgid "Cannot verify requested channel." msgstr "" -#: ../../Zotlabs/Module/Mail.php:70 +#: ../../Zotlabs/Module/Mail.php:78 msgid "Selected channel has private message restrictions. Send failed." msgstr "" -#: ../../Zotlabs/Module/Mail.php:135 +#: ../../Zotlabs/Module/Mail.php:143 msgid "Messages" msgstr "" -#: ../../Zotlabs/Module/Mail.php:170 +#: ../../Zotlabs/Module/Mail.php:178 msgid "Message recalled." msgstr "" -#: ../../Zotlabs/Module/Mail.php:183 +#: ../../Zotlabs/Module/Mail.php:191 msgid "Conversation removed." msgstr "" -#: ../../Zotlabs/Module/Mail.php:198 ../../Zotlabs/Module/Mail.php:307 +#: ../../Zotlabs/Module/Mail.php:206 ../../Zotlabs/Module/Mail.php:315 msgid "Expires YYYY-MM-DD HH:MM" msgstr "" -#: ../../Zotlabs/Module/Mail.php:226 +#: ../../Zotlabs/Module/Mail.php:234 msgid "Requested channel is not in this network" msgstr "" -#: ../../Zotlabs/Module/Mail.php:234 +#: ../../Zotlabs/Module/Mail.php:242 msgid "Send Private Message" msgstr "" -#: ../../Zotlabs/Module/Mail.php:235 ../../Zotlabs/Module/Mail.php:360 +#: ../../Zotlabs/Module/Mail.php:243 ../../Zotlabs/Module/Mail.php:368 msgid "To:" msgstr "" -#: ../../Zotlabs/Module/Mail.php:238 ../../Zotlabs/Module/Mail.php:362 +#: ../../Zotlabs/Module/Mail.php:246 ../../Zotlabs/Module/Mail.php:370 msgid "Subject:" msgstr "" -#: ../../Zotlabs/Module/Mail.php:243 ../../Zotlabs/Module/Mail.php:368 +#: ../../Zotlabs/Module/Mail.php:251 ../../Zotlabs/Module/Mail.php:376 #: ../../include/conversation.php:1231 msgid "Attach file" msgstr "" -#: ../../Zotlabs/Module/Mail.php:245 +#: ../../Zotlabs/Module/Mail.php:253 msgid "Send" msgstr "" -#: ../../Zotlabs/Module/Mail.php:248 ../../Zotlabs/Module/Mail.php:373 +#: ../../Zotlabs/Module/Mail.php:256 ../../Zotlabs/Module/Mail.php:381 #: ../../include/conversation.php:1266 msgid "Set expiration date" msgstr "" -#: ../../Zotlabs/Module/Mail.php:332 +#: ../../Zotlabs/Module/Mail.php:340 msgid "Delete message" msgstr "" -#: ../../Zotlabs/Module/Mail.php:333 +#: ../../Zotlabs/Module/Mail.php:341 msgid "Delivery report" msgstr "" -#: ../../Zotlabs/Module/Mail.php:334 +#: ../../Zotlabs/Module/Mail.php:342 msgid "Recall message" msgstr "" -#: ../../Zotlabs/Module/Mail.php:336 +#: ../../Zotlabs/Module/Mail.php:344 msgid "Message has been recalled." msgstr "" -#: ../../Zotlabs/Module/Mail.php:353 +#: ../../Zotlabs/Module/Mail.php:361 msgid "Delete Conversation" msgstr "" -#: ../../Zotlabs/Module/Mail.php:355 +#: ../../Zotlabs/Module/Mail.php:363 msgid "" "No secure communications available. You may be able to " "respond from the sender's profile page." msgstr "" -#: ../../Zotlabs/Module/Mail.php:359 +#: ../../Zotlabs/Module/Mail.php:367 msgid "Send Reply" msgstr "" -#: ../../Zotlabs/Module/Mail.php:364 +#: ../../Zotlabs/Module/Mail.php:372 #, php-format msgid "Your message for %s (%s):" msgstr "" @@ -3151,7 +3006,7 @@ msgstr "" msgid "Submit and proceed" msgstr "" -#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2239 +#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2247 msgid "Menus" msgstr "" @@ -3382,7 +3237,7 @@ msgid "Menu Item Permissions" msgstr "" #: ../../Zotlabs/Module/Mitem.php:154 ../../Zotlabs/Module/Mitem.php:227 -#: ../../Zotlabs/Module/Settings.php:1163 +#: ../../Zotlabs/Module/Settings.php:1142 msgid "(click to open/close)" msgstr "" @@ -3567,11 +3422,11 @@ msgstr "" msgid "Site settings updated." msgstr "" -#: ../../Zotlabs/Module/Admin.php:400 ../../include/text.php:2829 +#: ../../Zotlabs/Module/Admin.php:400 ../../include/text.php:2837 msgid "Default" msgstr "" -#: ../../Zotlabs/Module/Admin.php:410 ../../Zotlabs/Module/Settings.php:899 +#: ../../Zotlabs/Module/Admin.php:410 ../../Zotlabs/Module/Settings.php:872 msgid "mobile" msgstr "" @@ -3603,7 +3458,7 @@ msgstr "" msgid "My site offers free accounts with optional paid upgrades" msgstr "" -#: ../../Zotlabs/Module/Admin.php:491 ../../include/widgets.php:1476 +#: ../../Zotlabs/Module/Admin.php:491 ../../include/widgets.php:1471 msgid "Site" msgstr "" @@ -3890,12 +3745,12 @@ msgid "0 for no expiration of imported content" msgstr "" #: ../../Zotlabs/Module/Admin.php:677 ../../Zotlabs/Module/Admin.php:678 -#: ../../Zotlabs/Module/Settings.php:823 +#: ../../Zotlabs/Module/Settings.php:796 msgid "Off" msgstr "" #: ../../Zotlabs/Module/Admin.php:677 ../../Zotlabs/Module/Admin.php:678 -#: ../../Zotlabs/Module/Settings.php:823 +#: ../../Zotlabs/Module/Settings.php:796 msgid "On" msgstr "" @@ -3952,7 +3807,7 @@ msgid "" "embedded content from that site is explicitly blocked." msgstr "" -#: ../../Zotlabs/Module/Admin.php:756 ../../include/widgets.php:1479 +#: ../../Zotlabs/Module/Admin.php:756 ../../include/widgets.php:1474 msgid "Security" msgstr "" @@ -4119,7 +3974,7 @@ msgid "Account '%s' unblocked" msgstr "" #: ../../Zotlabs/Module/Admin.php:1031 ../../Zotlabs/Module/Admin.php:1044 -#: ../../include/widgets.php:1477 +#: ../../include/widgets.php:1472 msgid "Accounts" msgstr "" @@ -4225,7 +4080,7 @@ msgstr "" msgid "Channel '%s' code disallowed" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1210 ../../include/widgets.php:1478 +#: ../../Zotlabs/Module/Admin.php:1210 ../../include/widgets.php:1473 msgid "Channels" msgstr "" @@ -4284,7 +4139,7 @@ msgid "Enable" msgstr "" #: ../../Zotlabs/Module/Admin.php:1330 ../../Zotlabs/Module/Admin.php:1420 -#: ../../include/widgets.php:1481 +#: ../../include/widgets.php:1476 msgid "Plugins" msgstr "" @@ -4293,8 +4148,8 @@ msgid "Toggle" msgstr "" #: ../../Zotlabs/Module/Admin.php:1332 ../../Zotlabs/Module/Admin.php:1615 -#: ../../Zotlabs/Lib/Apps.php:216 ../../include/nav.php:210 -#: ../../include/widgets.php:647 +#: ../../Zotlabs/Lib/Apps.php:216 ../../include/widgets.php:647 +#: ../../include/nav.php:210 msgid "Settings" msgstr "" @@ -4366,8 +4221,8 @@ msgstr "" msgid "Install a New Plugin Repository" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1435 ../../Zotlabs/Module/Settings.php:72 -#: ../../Zotlabs/Module/Settings.php:670 ../../Zotlabs/Lib/Apps.php:334 +#: ../../Zotlabs/Module/Admin.php:1435 ../../Zotlabs/Module/Settings.php:75 +#: ../../Zotlabs/Module/Settings.php:651 ../../Zotlabs/Lib/Apps.php:334 msgid "Update" msgstr "" @@ -4384,7 +4239,7 @@ msgid "Screenshot" msgstr "" #: ../../Zotlabs/Module/Admin.php:1613 ../../Zotlabs/Module/Admin.php:1647 -#: ../../include/widgets.php:1482 +#: ../../include/widgets.php:1477 msgid "Themes" msgstr "" @@ -4400,8 +4255,8 @@ msgstr "" msgid "Log settings updated." msgstr "" -#: ../../Zotlabs/Module/Admin.php:1732 ../../include/widgets.php:1503 -#: ../../include/widgets.php:1513 +#: ../../Zotlabs/Module/Admin.php:1732 ../../include/widgets.php:1498 +#: ../../include/widgets.php:1508 msgid "Logs" msgstr "" @@ -4467,7 +4322,7 @@ msgstr "" msgid "Edit Profile Field" msgstr "" -#: ../../Zotlabs/Module/Admin.php:2106 ../../include/widgets.php:1484 +#: ../../Zotlabs/Module/Admin.php:2106 ../../include/widgets.php:1479 msgid "Profile Fields" msgstr "" @@ -4624,7 +4479,7 @@ msgstr "" msgid "OpenID protocol error. No ID returned." msgstr "" -#: ../../Zotlabs/Module/Openid.php:193 ../../include/auth.php:285 +#: ../../Zotlabs/Module/Openid.php:193 ../../include/auth.php:252 msgid "Login failed." msgstr "" @@ -4636,7 +4491,7 @@ msgstr "" msgid "Profile Visibility Editor" msgstr "" -#: ../../Zotlabs/Module/Profperm.php:117 ../../include/channel.php:1290 +#: ../../Zotlabs/Module/Profperm.php:117 ../../include/channel.php:1275 msgid "Profile" msgstr "" @@ -4663,7 +4518,7 @@ msgid "" "to correctly use this feature." msgstr "" -#: ../../Zotlabs/Module/Probe.php:28 ../../Zotlabs/Module/Probe.php:32 +#: ../../Zotlabs/Module/Probe.php:30 ../../Zotlabs/Module/Probe.php:34 #, php-format msgid "Fetching URL returns error: %1$s" msgstr "" @@ -4809,7 +4664,7 @@ msgstr "" msgid "Block Name" msgstr "" -#: ../../Zotlabs/Module/Blocks.php:154 ../../include/text.php:2238 +#: ../../Zotlabs/Module/Blocks.php:154 ../../include/text.php:2246 msgid "Blocks" msgstr "" @@ -4850,8 +4705,8 @@ msgstr "" msgid "Description: " msgstr "" -#: ../../Zotlabs/Module/Apps.php:47 ../../include/nav.php:165 -#: ../../include/widgets.php:102 +#: ../../Zotlabs/Module/Apps.php:47 ../../include/widgets.php:102 +#: ../../include/nav.php:165 msgid "Apps" msgstr "" @@ -4992,79 +4847,79 @@ msgstr "" msgid "Please login." msgstr "" -#: ../../Zotlabs/Module/Removeaccount.php:35 +#: ../../Zotlabs/Module/Removeaccount.php:34 msgid "" "Account removals are not allowed within 48 hours of changing the account " "password." msgstr "" -#: ../../Zotlabs/Module/Removeaccount.php:57 +#: ../../Zotlabs/Module/Removeaccount.php:56 msgid "Remove This Account" msgstr "" -#: ../../Zotlabs/Module/Removeaccount.php:58 -#: ../../Zotlabs/Module/Removeme.php:61 +#: ../../Zotlabs/Module/Removeaccount.php:57 +#: ../../Zotlabs/Module/Removeme.php:59 msgid "WARNING: " msgstr "" -#: ../../Zotlabs/Module/Removeaccount.php:58 +#: ../../Zotlabs/Module/Removeaccount.php:57 msgid "" "This account and all its channels will be completely removed from the " "network. " msgstr "" -#: ../../Zotlabs/Module/Removeaccount.php:58 -#: ../../Zotlabs/Module/Removeme.php:61 +#: ../../Zotlabs/Module/Removeaccount.php:57 +#: ../../Zotlabs/Module/Removeme.php:59 msgid "This action is permanent and can not be undone!" msgstr "" -#: ../../Zotlabs/Module/Removeaccount.php:59 -#: ../../Zotlabs/Module/Removeme.php:62 +#: ../../Zotlabs/Module/Removeaccount.php:58 +#: ../../Zotlabs/Module/Removeme.php:60 msgid "Please enter your password for verification:" msgstr "" -#: ../../Zotlabs/Module/Removeaccount.php:60 +#: ../../Zotlabs/Module/Removeaccount.php:59 msgid "" "Remove this account, all its channels and all its channel clones from the " "network" msgstr "" -#: ../../Zotlabs/Module/Removeaccount.php:60 +#: ../../Zotlabs/Module/Removeaccount.php:59 msgid "" "By default only the instances of the channels located on this hub will be " "removed from the network" msgstr "" -#: ../../Zotlabs/Module/Removeaccount.php:61 -#: ../../Zotlabs/Module/Settings.php:759 +#: ../../Zotlabs/Module/Removeaccount.php:60 +#: ../../Zotlabs/Module/Settings.php:740 msgid "Remove Account" msgstr "" -#: ../../Zotlabs/Module/Removeme.php:35 +#: ../../Zotlabs/Module/Removeme.php:33 msgid "" "Channel removals are not allowed within 48 hours of changing the account " "password." msgstr "" -#: ../../Zotlabs/Module/Removeme.php:60 +#: ../../Zotlabs/Module/Removeme.php:58 msgid "Remove This Channel" msgstr "" -#: ../../Zotlabs/Module/Removeme.php:61 +#: ../../Zotlabs/Module/Removeme.php:59 msgid "This channel will be completely removed from the network. " msgstr "" -#: ../../Zotlabs/Module/Removeme.php:63 +#: ../../Zotlabs/Module/Removeme.php:61 msgid "Remove this channel and all its clones from the network" msgstr "" -#: ../../Zotlabs/Module/Removeme.php:63 +#: ../../Zotlabs/Module/Removeme.php:61 msgid "" "By default only the instance of the channel located on this hub will be " "removed from the network" msgstr "" -#: ../../Zotlabs/Module/Removeme.php:64 ../../Zotlabs/Module/Settings.php:1219 +#: ../../Zotlabs/Module/Removeme.php:62 ../../Zotlabs/Module/Settings.php:1198 msgid "Remove Channel" msgstr "" @@ -5140,651 +4995,628 @@ msgstr "" msgid "No service class restrictions found." msgstr "" -#: ../../Zotlabs/Module/Settings.php:64 +#: ../../Zotlabs/Module/Settings.php:67 msgid "Name is required" msgstr "" -#: ../../Zotlabs/Module/Settings.php:68 +#: ../../Zotlabs/Module/Settings.php:71 msgid "Key and Secret are required" msgstr "" -#: ../../Zotlabs/Module/Settings.php:138 -#, php-format -msgid "This channel is limited to %d tokens" -msgstr "" - -#: ../../Zotlabs/Module/Settings.php:144 -msgid "Name and Password are required." -msgstr "" - -#: ../../Zotlabs/Module/Settings.php:168 +#: ../../Zotlabs/Module/Settings.php:154 msgid "Token saved." msgstr "" -#: ../../Zotlabs/Module/Settings.php:274 +#: ../../Zotlabs/Module/Settings.php:260 msgid "Not valid email." msgstr "" -#: ../../Zotlabs/Module/Settings.php:277 +#: ../../Zotlabs/Module/Settings.php:263 msgid "Protected email address. Cannot change to that email." msgstr "" -#: ../../Zotlabs/Module/Settings.php:286 +#: ../../Zotlabs/Module/Settings.php:272 msgid "System failure storing new email. Please try again." msgstr "" -#: ../../Zotlabs/Module/Settings.php:303 +#: ../../Zotlabs/Module/Settings.php:289 msgid "Password verification failed." msgstr "" -#: ../../Zotlabs/Module/Settings.php:310 +#: ../../Zotlabs/Module/Settings.php:296 msgid "Passwords do not match. Password unchanged." msgstr "" -#: ../../Zotlabs/Module/Settings.php:314 +#: ../../Zotlabs/Module/Settings.php:300 msgid "Empty passwords are not allowed. Password unchanged." msgstr "" -#: ../../Zotlabs/Module/Settings.php:328 +#: ../../Zotlabs/Module/Settings.php:314 msgid "Password changed." msgstr "" -#: ../../Zotlabs/Module/Settings.php:330 +#: ../../Zotlabs/Module/Settings.php:316 msgid "Password update failed. Please try again." msgstr "" -#: ../../Zotlabs/Module/Settings.php:579 +#: ../../Zotlabs/Module/Settings.php:560 msgid "Settings updated." msgstr "" -#: ../../Zotlabs/Module/Settings.php:643 ../../Zotlabs/Module/Settings.php:669 -#: ../../Zotlabs/Module/Settings.php:705 +#: ../../Zotlabs/Module/Settings.php:624 ../../Zotlabs/Module/Settings.php:650 +#: ../../Zotlabs/Module/Settings.php:686 msgid "Add application" msgstr "" -#: ../../Zotlabs/Module/Settings.php:646 +#: ../../Zotlabs/Module/Settings.php:627 msgid "Name of application" msgstr "" -#: ../../Zotlabs/Module/Settings.php:647 ../../Zotlabs/Module/Settings.php:673 +#: ../../Zotlabs/Module/Settings.php:628 ../../Zotlabs/Module/Settings.php:654 msgid "Consumer Key" msgstr "" -#: ../../Zotlabs/Module/Settings.php:647 ../../Zotlabs/Module/Settings.php:648 +#: ../../Zotlabs/Module/Settings.php:628 ../../Zotlabs/Module/Settings.php:629 msgid "Automatically generated - change if desired. Max length 20" msgstr "" -#: ../../Zotlabs/Module/Settings.php:648 ../../Zotlabs/Module/Settings.php:674 +#: ../../Zotlabs/Module/Settings.php:629 ../../Zotlabs/Module/Settings.php:655 msgid "Consumer Secret" msgstr "" -#: ../../Zotlabs/Module/Settings.php:649 ../../Zotlabs/Module/Settings.php:675 +#: ../../Zotlabs/Module/Settings.php:630 ../../Zotlabs/Module/Settings.php:656 msgid "Redirect" msgstr "" -#: ../../Zotlabs/Module/Settings.php:649 +#: ../../Zotlabs/Module/Settings.php:630 msgid "" "Redirect URI - leave blank unless your application specifically requires this" msgstr "" -#: ../../Zotlabs/Module/Settings.php:650 ../../Zotlabs/Module/Settings.php:676 +#: ../../Zotlabs/Module/Settings.php:631 ../../Zotlabs/Module/Settings.php:657 msgid "Icon url" msgstr "" -#: ../../Zotlabs/Module/Settings.php:650 ../../Zotlabs/Module/Sources.php:112 +#: ../../Zotlabs/Module/Settings.php:631 ../../Zotlabs/Module/Sources.php:112 #: ../../Zotlabs/Module/Sources.php:147 msgid "Optional" msgstr "" -#: ../../Zotlabs/Module/Settings.php:661 +#: ../../Zotlabs/Module/Settings.php:642 msgid "Application not found." msgstr "" -#: ../../Zotlabs/Module/Settings.php:704 +#: ../../Zotlabs/Module/Settings.php:685 msgid "Connected Apps" msgstr "" -#: ../../Zotlabs/Module/Settings.php:708 +#: ../../Zotlabs/Module/Settings.php:689 msgid "Client key starts with" msgstr "" -#: ../../Zotlabs/Module/Settings.php:709 +#: ../../Zotlabs/Module/Settings.php:690 msgid "No name" msgstr "" -#: ../../Zotlabs/Module/Settings.php:710 +#: ../../Zotlabs/Module/Settings.php:691 msgid "Remove authorization" msgstr "" -#: ../../Zotlabs/Module/Settings.php:723 +#: ../../Zotlabs/Module/Settings.php:704 msgid "No feature settings configured" msgstr "" -#: ../../Zotlabs/Module/Settings.php:730 +#: ../../Zotlabs/Module/Settings.php:711 msgid "Feature/Addon Settings" msgstr "" -#: ../../Zotlabs/Module/Settings.php:753 +#: ../../Zotlabs/Module/Settings.php:734 msgid "Account Settings" msgstr "" -#: ../../Zotlabs/Module/Settings.php:754 +#: ../../Zotlabs/Module/Settings.php:735 msgid "Current Password" msgstr "" -#: ../../Zotlabs/Module/Settings.php:755 +#: ../../Zotlabs/Module/Settings.php:736 msgid "Enter New Password" msgstr "" -#: ../../Zotlabs/Module/Settings.php:756 +#: ../../Zotlabs/Module/Settings.php:737 msgid "Confirm New Password" msgstr "" -#: ../../Zotlabs/Module/Settings.php:756 +#: ../../Zotlabs/Module/Settings.php:737 msgid "Leave password fields blank unless changing" msgstr "" -#: ../../Zotlabs/Module/Settings.php:758 -#: ../../Zotlabs/Module/Settings.php:1136 +#: ../../Zotlabs/Module/Settings.php:739 +#: ../../Zotlabs/Module/Settings.php:1115 msgid "Email Address:" msgstr "" -#: ../../Zotlabs/Module/Settings.php:760 +#: ../../Zotlabs/Module/Settings.php:741 msgid "Remove this account including all its channels" msgstr "" -#: ../../Zotlabs/Module/Settings.php:789 -msgid "" -"Use this form to create temporary access identifiers to share things with " -"non-members. These identities may be used in Access Control Lists and " -"visitors may login using these credentials to access the private content." -msgstr "" - -#: ../../Zotlabs/Module/Settings.php:791 -msgid "" -"You may also provide dropbox style access links to friends and " -"associates by adding the Login Password to any specific site URL as shown. " -"Examples:" -msgstr "" - -#: ../../Zotlabs/Module/Settings.php:796 ../../include/widgets.php:614 +#: ../../Zotlabs/Module/Settings.php:773 ../../include/widgets.php:614 msgid "Guest Access Tokens" msgstr "" -#: ../../Zotlabs/Module/Settings.php:803 +#: ../../Zotlabs/Module/Settings.php:776 msgid "Login Name" msgstr "" -#: ../../Zotlabs/Module/Settings.php:804 +#: ../../Zotlabs/Module/Settings.php:777 msgid "Login Password" msgstr "" -#: ../../Zotlabs/Module/Settings.php:805 +#: ../../Zotlabs/Module/Settings.php:778 msgid "Expires (yyyy-mm-dd)" msgstr "" -#: ../../Zotlabs/Module/Settings.php:830 +#: ../../Zotlabs/Module/Settings.php:803 msgid "Additional Features" msgstr "" -#: ../../Zotlabs/Module/Settings.php:854 +#: ../../Zotlabs/Module/Settings.php:827 msgid "Connector Settings" msgstr "" -#: ../../Zotlabs/Module/Settings.php:893 +#: ../../Zotlabs/Module/Settings.php:866 msgid "No special theme for mobile devices" msgstr "" -#: ../../Zotlabs/Module/Settings.php:896 +#: ../../Zotlabs/Module/Settings.php:869 #, php-format msgid "%s - (Experimental)" msgstr "" -#: ../../Zotlabs/Module/Settings.php:938 +#: ../../Zotlabs/Module/Settings.php:911 msgid "Display Settings" msgstr "" -#: ../../Zotlabs/Module/Settings.php:939 +#: ../../Zotlabs/Module/Settings.php:912 msgid "Theme Settings" msgstr "" -#: ../../Zotlabs/Module/Settings.php:940 +#: ../../Zotlabs/Module/Settings.php:913 msgid "Custom Theme Settings" msgstr "" -#: ../../Zotlabs/Module/Settings.php:941 +#: ../../Zotlabs/Module/Settings.php:914 msgid "Content Settings" msgstr "" -#: ../../Zotlabs/Module/Settings.php:947 +#: ../../Zotlabs/Module/Settings.php:920 msgid "Display Theme:" msgstr "" -#: ../../Zotlabs/Module/Settings.php:948 +#: ../../Zotlabs/Module/Settings.php:921 msgid "Mobile Theme:" msgstr "" -#: ../../Zotlabs/Module/Settings.php:949 +#: ../../Zotlabs/Module/Settings.php:922 msgid "Preload images before rendering the page" msgstr "" -#: ../../Zotlabs/Module/Settings.php:949 +#: ../../Zotlabs/Module/Settings.php:922 msgid "" "The subjective page load time will be longer but the page will be ready when " "displayed" msgstr "" -#: ../../Zotlabs/Module/Settings.php:950 +#: ../../Zotlabs/Module/Settings.php:923 msgid "Enable user zoom on mobile devices" msgstr "" -#: ../../Zotlabs/Module/Settings.php:951 +#: ../../Zotlabs/Module/Settings.php:924 msgid "Update browser every xx seconds" msgstr "" -#: ../../Zotlabs/Module/Settings.php:951 +#: ../../Zotlabs/Module/Settings.php:924 msgid "Minimum of 10 seconds, no maximum" msgstr "" -#: ../../Zotlabs/Module/Settings.php:952 +#: ../../Zotlabs/Module/Settings.php:925 msgid "Maximum number of conversations to load at any time:" msgstr "" -#: ../../Zotlabs/Module/Settings.php:952 +#: ../../Zotlabs/Module/Settings.php:925 msgid "Maximum of 100 items" msgstr "" -#: ../../Zotlabs/Module/Settings.php:953 +#: ../../Zotlabs/Module/Settings.php:926 msgid "Show emoticons (smilies) as images" msgstr "" -#: ../../Zotlabs/Module/Settings.php:954 +#: ../../Zotlabs/Module/Settings.php:927 msgid "Link post titles to source" msgstr "" -#: ../../Zotlabs/Module/Settings.php:955 +#: ../../Zotlabs/Module/Settings.php:928 msgid "System Page Layout Editor - (advanced)" msgstr "" -#: ../../Zotlabs/Module/Settings.php:958 +#: ../../Zotlabs/Module/Settings.php:931 msgid "Use blog/list mode on channel page" msgstr "" -#: ../../Zotlabs/Module/Settings.php:958 ../../Zotlabs/Module/Settings.php:959 +#: ../../Zotlabs/Module/Settings.php:931 ../../Zotlabs/Module/Settings.php:932 msgid "(comments displayed separately)" msgstr "" -#: ../../Zotlabs/Module/Settings.php:959 +#: ../../Zotlabs/Module/Settings.php:932 msgid "Use blog/list mode on grid page" msgstr "" -#: ../../Zotlabs/Module/Settings.php:960 +#: ../../Zotlabs/Module/Settings.php:933 msgid "Channel page max height of content (in pixels)" msgstr "" -#: ../../Zotlabs/Module/Settings.php:960 ../../Zotlabs/Module/Settings.php:961 +#: ../../Zotlabs/Module/Settings.php:933 ../../Zotlabs/Module/Settings.php:934 msgid "click to expand content exceeding this height" msgstr "" -#: ../../Zotlabs/Module/Settings.php:961 +#: ../../Zotlabs/Module/Settings.php:934 msgid "Grid page max height of content (in pixels)" msgstr "" -#: ../../Zotlabs/Module/Settings.php:990 +#: ../../Zotlabs/Module/Settings.php:968 msgid "Nobody except yourself" msgstr "" -#: ../../Zotlabs/Module/Settings.php:991 +#: ../../Zotlabs/Module/Settings.php:969 msgid "Only those you specifically allow" msgstr "" -#: ../../Zotlabs/Module/Settings.php:992 +#: ../../Zotlabs/Module/Settings.php:970 msgid "Approved connections" msgstr "" -#: ../../Zotlabs/Module/Settings.php:993 +#: ../../Zotlabs/Module/Settings.php:971 msgid "Any connections" msgstr "" -#: ../../Zotlabs/Module/Settings.php:994 +#: ../../Zotlabs/Module/Settings.php:972 msgid "Anybody on this website" msgstr "" -#: ../../Zotlabs/Module/Settings.php:995 +#: ../../Zotlabs/Module/Settings.php:973 msgid "Anybody in this network" msgstr "" -#: ../../Zotlabs/Module/Settings.php:996 +#: ../../Zotlabs/Module/Settings.php:974 msgid "Anybody authenticated" msgstr "" -#: ../../Zotlabs/Module/Settings.php:997 +#: ../../Zotlabs/Module/Settings.php:975 msgid "Anybody on the internet" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1071 +#: ../../Zotlabs/Module/Settings.php:1050 msgid "Publish your default profile in the network directory" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1076 +#: ../../Zotlabs/Module/Settings.php:1055 msgid "Allow us to suggest you as a potential friend to new members?" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1085 +#: ../../Zotlabs/Module/Settings.php:1064 msgid "Your channel address is" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1127 +#: ../../Zotlabs/Module/Settings.php:1106 msgid "Channel Settings" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1134 +#: ../../Zotlabs/Module/Settings.php:1113 msgid "Basic Settings" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1135 ../../include/channel.php:1180 +#: ../../Zotlabs/Module/Settings.php:1114 ../../include/channel.php:1165 msgid "Full Name:" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1137 +#: ../../Zotlabs/Module/Settings.php:1116 msgid "Your Timezone:" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1138 +#: ../../Zotlabs/Module/Settings.php:1117 msgid "Default Post Location:" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1138 +#: ../../Zotlabs/Module/Settings.php:1117 msgid "Geographical location to display on your posts" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1139 +#: ../../Zotlabs/Module/Settings.php:1118 msgid "Use Browser Location:" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1141 +#: ../../Zotlabs/Module/Settings.php:1120 msgid "Adult Content" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1141 +#: ../../Zotlabs/Module/Settings.php:1120 msgid "" "This channel frequently or regularly publishes adult content. (Please tag " "any adult material and/or nudity with #NSFW)" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1143 +#: ../../Zotlabs/Module/Settings.php:1122 msgid "Security and Privacy Settings" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1146 +#: ../../Zotlabs/Module/Settings.php:1125 msgid "Your permissions are already configured. Click to view/adjust" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1148 +#: ../../Zotlabs/Module/Settings.php:1127 msgid "Hide my online presence" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1148 +#: ../../Zotlabs/Module/Settings.php:1127 msgid "Prevents displaying in your profile that you are online" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1150 +#: ../../Zotlabs/Module/Settings.php:1129 msgid "Simple Privacy Settings:" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1151 +#: ../../Zotlabs/Module/Settings.php:1130 msgid "" "Very Public - extremely permissive (should be used with caution)" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1152 +#: ../../Zotlabs/Module/Settings.php:1131 msgid "" "Typical - default public, privacy when desired (similar to social " "network permissions but with improved privacy)" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1153 +#: ../../Zotlabs/Module/Settings.php:1132 msgid "Private - default private, never open or public" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1154 +#: ../../Zotlabs/Module/Settings.php:1133 msgid "Blocked - default blocked to/from everybody" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1156 +#: ../../Zotlabs/Module/Settings.php:1135 msgid "Allow others to tag your posts" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1156 +#: ../../Zotlabs/Module/Settings.php:1135 msgid "" "Often used by the community to retro-actively flag inappropriate content" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1158 +#: ../../Zotlabs/Module/Settings.php:1137 msgid "Advanced Privacy Settings" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1160 +#: ../../Zotlabs/Module/Settings.php:1139 msgid "Expire other channel content after this many days" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1160 +#: ../../Zotlabs/Module/Settings.php:1139 msgid "0 or blank to use the website limit." msgstr "" -#: ../../Zotlabs/Module/Settings.php:1160 +#: ../../Zotlabs/Module/Settings.php:1139 #, php-format msgid "This website expires after %d days." msgstr "" -#: ../../Zotlabs/Module/Settings.php:1160 +#: ../../Zotlabs/Module/Settings.php:1139 msgid "This website does not expire imported content." msgstr "" -#: ../../Zotlabs/Module/Settings.php:1160 +#: ../../Zotlabs/Module/Settings.php:1139 msgid "The website limit takes precedence if lower than your limit." msgstr "" -#: ../../Zotlabs/Module/Settings.php:1161 +#: ../../Zotlabs/Module/Settings.php:1140 msgid "Maximum Friend Requests/Day:" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1161 +#: ../../Zotlabs/Module/Settings.php:1140 msgid "May reduce spam activity" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1162 +#: ../../Zotlabs/Module/Settings.php:1141 msgid "Default Post and Publish Permissions" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1164 +#: ../../Zotlabs/Module/Settings.php:1143 msgid "Use my default audience setting for the type of object published" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1167 +#: ../../Zotlabs/Module/Settings.php:1146 msgid "Channel permissions category:" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1173 +#: ../../Zotlabs/Module/Settings.php:1152 msgid "Maximum private messages per day from unknown people:" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1173 +#: ../../Zotlabs/Module/Settings.php:1152 msgid "Useful to reduce spamming" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1176 +#: ../../Zotlabs/Module/Settings.php:1155 msgid "Notification Settings" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1177 +#: ../../Zotlabs/Module/Settings.php:1156 msgid "By default post a status message when:" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1178 +#: ../../Zotlabs/Module/Settings.php:1157 msgid "accepting a friend request" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1179 +#: ../../Zotlabs/Module/Settings.php:1158 msgid "joining a forum/community" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1180 +#: ../../Zotlabs/Module/Settings.php:1159 msgid "making an interesting profile change" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1181 +#: ../../Zotlabs/Module/Settings.php:1160 msgid "Send a notification email when:" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1182 +#: ../../Zotlabs/Module/Settings.php:1161 msgid "You receive a connection request" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1183 +#: ../../Zotlabs/Module/Settings.php:1162 msgid "Your connections are confirmed" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1184 +#: ../../Zotlabs/Module/Settings.php:1163 msgid "Someone writes on your profile wall" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1185 +#: ../../Zotlabs/Module/Settings.php:1164 msgid "Someone writes a followup comment" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1186 +#: ../../Zotlabs/Module/Settings.php:1165 msgid "You receive a private message" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1187 +#: ../../Zotlabs/Module/Settings.php:1166 msgid "You receive a friend suggestion" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1188 +#: ../../Zotlabs/Module/Settings.php:1167 msgid "You are tagged in a post" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1189 +#: ../../Zotlabs/Module/Settings.php:1168 msgid "You are poked/prodded/etc. in a post" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1192 +#: ../../Zotlabs/Module/Settings.php:1171 msgid "Show visual notifications including:" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1194 +#: ../../Zotlabs/Module/Settings.php:1173 msgid "Unseen grid activity" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1195 +#: ../../Zotlabs/Module/Settings.php:1174 msgid "Unseen channel activity" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1196 +#: ../../Zotlabs/Module/Settings.php:1175 msgid "Unseen private messages" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1196 -#: ../../Zotlabs/Module/Settings.php:1201 -#: ../../Zotlabs/Module/Settings.php:1202 -#: ../../Zotlabs/Module/Settings.php:1203 +#: ../../Zotlabs/Module/Settings.php:1175 +#: ../../Zotlabs/Module/Settings.php:1180 +#: ../../Zotlabs/Module/Settings.php:1181 +#: ../../Zotlabs/Module/Settings.php:1182 msgid "Recommended" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1197 +#: ../../Zotlabs/Module/Settings.php:1176 msgid "Upcoming events" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1198 +#: ../../Zotlabs/Module/Settings.php:1177 msgid "Events today" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1199 +#: ../../Zotlabs/Module/Settings.php:1178 msgid "Upcoming birthdays" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1199 +#: ../../Zotlabs/Module/Settings.php:1178 msgid "Not available in all themes" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1200 +#: ../../Zotlabs/Module/Settings.php:1179 msgid "System (personal) notifications" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1201 +#: ../../Zotlabs/Module/Settings.php:1180 msgid "System info messages" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1202 +#: ../../Zotlabs/Module/Settings.php:1181 msgid "System critical alerts" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1203 +#: ../../Zotlabs/Module/Settings.php:1182 msgid "New connections" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1204 +#: ../../Zotlabs/Module/Settings.php:1183 msgid "System Registrations" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1205 +#: ../../Zotlabs/Module/Settings.php:1184 msgid "" "Also show new wall posts, private messages and connections under Notices" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1207 +#: ../../Zotlabs/Module/Settings.php:1186 msgid "Notify me of events this many days in advance" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1207 +#: ../../Zotlabs/Module/Settings.php:1186 msgid "Must be greater than 0" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1209 +#: ../../Zotlabs/Module/Settings.php:1188 msgid "Advanced Account/Page Type Settings" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1210 +#: ../../Zotlabs/Module/Settings.php:1189 msgid "Change the behaviour of this account for special situations" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1213 +#: ../../Zotlabs/Module/Settings.php:1192 msgid "" "Please enable expert mode (in Settings > " "Additional features) to adjust!" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1214 +#: ../../Zotlabs/Module/Settings.php:1193 msgid "Miscellaneous Settings" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1215 +#: ../../Zotlabs/Module/Settings.php:1194 msgid "Default photo upload folder" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1215 -#: ../../Zotlabs/Module/Settings.php:1216 +#: ../../Zotlabs/Module/Settings.php:1194 +#: ../../Zotlabs/Module/Settings.php:1195 msgid "%Y - current year, %m - current month" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1216 +#: ../../Zotlabs/Module/Settings.php:1195 msgid "Default file upload folder" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1218 +#: ../../Zotlabs/Module/Settings.php:1197 msgid "Personal menu to display in your channel pages" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1220 +#: ../../Zotlabs/Module/Settings.php:1199 msgid "Remove this channel." msgstr "" -#: ../../Zotlabs/Module/Settings.php:1221 +#: ../../Zotlabs/Module/Settings.php:1200 msgid "Firefox Share $Projectname provider" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1222 +#: ../../Zotlabs/Module/Settings.php:1201 msgid "Start calendar week on monday" msgstr "" @@ -6303,8 +6135,8 @@ msgstr "" msgid "*" msgstr "" -#: ../../Zotlabs/Module/Sources.php:96 ../../include/features.php:72 -#: ../../include/widgets.php:639 +#: ../../Zotlabs/Module/Sources.php:96 ../../include/widgets.php:639 +#: ../../include/features.php:72 msgid "Channel Sources" msgstr "" @@ -6841,7 +6673,7 @@ msgstr "" msgid "Invite" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:235 ../../include/widgets.php:1480 +#: ../../Zotlabs/Lib/Apps.php:235 ../../include/widgets.php:1475 msgid "Features" msgstr "" @@ -7034,61 +6866,61 @@ msgstr "" msgid "Visible to your default audience" msgstr "" -#: ../../Zotlabs/Lib/PermissionDescription.php:106 +#: ../../Zotlabs/Lib/PermissionDescription.php:115 #: ../../include/acl_selectors.php:266 msgid "Only me" msgstr "" -#: ../../Zotlabs/Lib/PermissionDescription.php:107 +#: ../../Zotlabs/Lib/PermissionDescription.php:116 msgid "Public" msgstr "" -#: ../../Zotlabs/Lib/PermissionDescription.php:108 +#: ../../Zotlabs/Lib/PermissionDescription.php:117 msgid "Anybody in the $Projectname network" msgstr "" -#: ../../Zotlabs/Lib/PermissionDescription.php:109 +#: ../../Zotlabs/Lib/PermissionDescription.php:118 #, php-format msgid "Any account on %s" msgstr "" -#: ../../Zotlabs/Lib/PermissionDescription.php:110 +#: ../../Zotlabs/Lib/PermissionDescription.php:119 msgid "Any of my connections" msgstr "" -#: ../../Zotlabs/Lib/PermissionDescription.php:111 +#: ../../Zotlabs/Lib/PermissionDescription.php:120 msgid "Only connections I specifically allow" msgstr "" -#: ../../Zotlabs/Lib/PermissionDescription.php:112 +#: ../../Zotlabs/Lib/PermissionDescription.php:121 msgid "Anybody authenticated (could include visitors from other networks)" msgstr "" -#: ../../Zotlabs/Lib/PermissionDescription.php:113 +#: ../../Zotlabs/Lib/PermissionDescription.php:122 msgid "Any connections including those who haven't yet been approved" msgstr "" -#: ../../Zotlabs/Lib/PermissionDescription.php:152 +#: ../../Zotlabs/Lib/PermissionDescription.php:161 msgid "" "This is your default setting for the audience of your normal stream, and " "posts." msgstr "" -#: ../../Zotlabs/Lib/PermissionDescription.php:153 +#: ../../Zotlabs/Lib/PermissionDescription.php:162 msgid "" "This is your default setting for who can view your default channel profile" msgstr "" -#: ../../Zotlabs/Lib/PermissionDescription.php:154 +#: ../../Zotlabs/Lib/PermissionDescription.php:163 msgid "This is your default setting for who can view your connections" msgstr "" -#: ../../Zotlabs/Lib/PermissionDescription.php:155 +#: ../../Zotlabs/Lib/PermissionDescription.php:164 msgid "" "This is your default setting for who can view your file storage and photos" msgstr "" -#: ../../Zotlabs/Lib/PermissionDescription.php:156 +#: ../../Zotlabs/Lib/PermissionDescription.php:165 msgid "This is your default setting for the audience of your webpages" msgstr "" @@ -7096,7 +6928,7 @@ msgstr "" msgid "No username found in import file." msgstr "" -#: ../../include/Import/import_diaspora.php:41 ../../include/import.php:51 +#: ../../include/Import/import_diaspora.php:41 ../../include/import.php:50 msgid "Unable to create a unique channel address. Import failed." msgstr "" @@ -7105,35 +6937,262 @@ msgstr "" msgid "Cannot locate DNS info for database server '%s'" msgstr "" -#: ../../include/photos.php:114 +#: ../../include/widgets.php:46 ../../include/widgets.php:429 +#: ../../include/taxonomy.php:188 ../../include/taxonomy.php:270 +#: ../../include/contact_widgets.php:91 +msgid "Categories" +msgstr "" + +#: ../../include/widgets.php:103 +msgid "System" +msgstr "" + +#: ../../include/widgets.php:106 +msgid "New App" +msgstr "" + +#: ../../include/widgets.php:154 +msgid "Suggestions" +msgstr "" + +#: ../../include/widgets.php:155 +msgid "See more..." +msgstr "" + +#: ../../include/widgets.php:175 #, php-format -msgid "Image exceeds website size limit of %lu bytes" +msgid "You have %1$.0f of %2$.0f allowed connections." msgstr "" -#: ../../include/photos.php:121 -msgid "Image file is empty." +#: ../../include/widgets.php:181 +msgid "Add New Connection" msgstr "" -#: ../../include/photos.php:259 -msgid "Photo storage failed." +#: ../../include/widgets.php:182 +msgid "Enter channel address" msgstr "" -#: ../../include/photos.php:299 -msgid "a new photo" +#: ../../include/widgets.php:183 +msgid "Examples: bob@example.com, https://example.com/barbara" msgstr "" -#: ../../include/photos.php:303 -#, php-format -msgctxt "photo_upload" -msgid "%1$s posted %2$s to %3$s" +#: ../../include/widgets.php:199 +msgid "Notes" msgstr "" -#: ../../include/photos.php:506 ../../include/conversation.php:1650 -msgid "Photo Albums" +#: ../../include/widgets.php:273 +msgid "Remove term" msgstr "" -#: ../../include/photos.php:510 -msgid "Upload New Photos" +#: ../../include/widgets.php:281 ../../include/features.php:85 +msgid "Saved Searches" +msgstr "" + +#: ../../include/widgets.php:282 ../../include/group.php:316 +msgid "add" +msgstr "" + +#: ../../include/widgets.php:310 ../../include/features.php:99 +#: ../../include/contact_widgets.php:53 +msgid "Saved Folders" +msgstr "" + +#: ../../include/widgets.php:313 ../../include/widgets.php:432 +#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:94 +msgid "Everything" +msgstr "" + +#: ../../include/widgets.php:354 +msgid "Archives" +msgstr "" + +#: ../../include/widgets.php:516 +msgid "Refresh" +msgstr "" + +#: ../../include/widgets.php:556 +msgid "Account settings" +msgstr "" + +#: ../../include/widgets.php:562 +msgid "Channel settings" +msgstr "" + +#: ../../include/widgets.php:571 +msgid "Additional features" +msgstr "" + +#: ../../include/widgets.php:578 +msgid "Feature/Addon settings" +msgstr "" + +#: ../../include/widgets.php:584 +msgid "Display settings" +msgstr "" + +#: ../../include/widgets.php:591 +msgid "Manage locations" +msgstr "" + +#: ../../include/widgets.php:600 +msgid "Export channel" +msgstr "" + +#: ../../include/widgets.php:607 +msgid "Connected apps" +msgstr "" + +#: ../../include/widgets.php:631 +msgid "Premium Channel Settings" +msgstr "" + +#: ../../include/widgets.php:660 +msgid "Private Mail Menu" +msgstr "" + +#: ../../include/widgets.php:662 +msgid "Combined View" +msgstr "" + +#: ../../include/widgets.php:667 ../../include/nav.php:198 +msgid "Inbox" +msgstr "" + +#: ../../include/widgets.php:672 ../../include/nav.php:199 +msgid "Outbox" +msgstr "" + +#: ../../include/widgets.php:677 ../../include/nav.php:200 +msgid "New Message" +msgstr "" + +#: ../../include/widgets.php:694 ../../include/widgets.php:706 +msgid "Conversations" +msgstr "" + +#: ../../include/widgets.php:698 +msgid "Received Messages" +msgstr "" + +#: ../../include/widgets.php:702 +msgid "Sent Messages" +msgstr "" + +#: ../../include/widgets.php:716 +msgid "No messages." +msgstr "" + +#: ../../include/widgets.php:734 +msgid "Delete conversation" +msgstr "" + +#: ../../include/widgets.php:760 +msgid "Events Tools" +msgstr "" + +#: ../../include/widgets.php:761 +msgid "Export Calendar" +msgstr "" + +#: ../../include/widgets.php:762 +msgid "Import Calendar" +msgstr "" + +#: ../../include/widgets.php:836 ../../include/conversation.php:1677 +#: ../../include/conversation.php:1680 +msgid "Chatrooms" +msgstr "" + +#: ../../include/widgets.php:840 +msgid "Overview" +msgstr "" + +#: ../../include/widgets.php:847 +msgid "Chat Members" +msgstr "" + +#: ../../include/widgets.php:869 +msgid "Wiki List" +msgstr "" + +#: ../../include/widgets.php:907 +msgid "Wiki Pages" +msgstr "" + +#: ../../include/widgets.php:942 +msgid "Bookmarked Chatrooms" +msgstr "" + +#: ../../include/widgets.php:965 +msgid "Suggested Chatrooms" +msgstr "" + +#: ../../include/widgets.php:1111 ../../include/widgets.php:1223 +msgid "photo/image" +msgstr "" + +#: ../../include/widgets.php:1166 +msgid "Click to show more" +msgstr "" + +#: ../../include/widgets.php:1317 +msgid "Rating Tools" +msgstr "" + +#: ../../include/widgets.php:1321 ../../include/widgets.php:1323 +msgid "Rate Me" +msgstr "" + +#: ../../include/widgets.php:1326 +msgid "View Ratings" +msgstr "" + +#: ../../include/widgets.php:1405 +msgid "Forums" +msgstr "" + +#: ../../include/widgets.php:1434 +msgid "Tasks" +msgstr "" + +#: ../../include/widgets.php:1443 +msgid "Documentation" +msgstr "" + +#: ../../include/widgets.php:1445 +msgid "Project/Site Information" +msgstr "" + +#: ../../include/widgets.php:1446 +msgid "For Members" +msgstr "" + +#: ../../include/widgets.php:1447 +msgid "For Administrators" +msgstr "" + +#: ../../include/widgets.php:1448 +msgid "For Developers" +msgstr "" + +#: ../../include/widgets.php:1472 ../../include/widgets.php:1510 +msgid "Member registrations waiting for confirmation" +msgstr "" + +#: ../../include/widgets.php:1478 +msgid "Inspect queue" +msgstr "" + +#: ../../include/widgets.php:1480 +msgid "DB updates" +msgstr "" + +#: ../../include/widgets.php:1505 ../../include/nav.php:218 +msgid "Admin" +msgstr "" + +#: ../../include/widgets.php:1506 +msgid "Plugin Features" msgstr "" #: ../../include/nav.php:82 ../../include/nav.php:115 ../../boot.php:1703 @@ -7160,7 +7219,7 @@ msgstr "" msgid "Manage/Edit profiles" msgstr "" -#: ../../include/nav.php:90 ../../include/channel.php:980 +#: ../../include/nav.php:90 ../../include/channel.php:965 msgid "Edit Profile" msgstr "" @@ -7277,18 +7336,6 @@ msgstr "" msgid "Mark all private messages seen" msgstr "" -#: ../../include/nav.php:198 ../../include/widgets.php:667 -msgid "Inbox" -msgstr "" - -#: ../../include/nav.php:199 ../../include/widgets.php:672 -msgid "Outbox" -msgstr "" - -#: ../../include/nav.php:200 ../../include/widgets.php:677 -msgid "New Message" -msgstr "" - #: ../../include/nav.php:203 msgid "Event Calendar" msgstr "" @@ -7309,10 +7356,6 @@ msgstr "" msgid "Account/Channel Settings" msgstr "" -#: ../../include/nav.php:218 ../../include/widgets.php:1510 -msgid "Admin" -msgstr "" - #: ../../include/nav.php:218 msgid "Site Setup and Configuration" msgstr "" @@ -7382,6 +7425,14 @@ msgstr "" msgid "MySpace" msgstr "" +#: ../../include/oembed.php:325 +msgid "Embedded content" +msgstr "" + +#: ../../include/oembed.php:334 +msgid "Embedding disabled" +msgstr "" + #: ../../include/page_widgets.php:7 msgid "New Page" msgstr "" @@ -7390,10 +7441,35 @@ msgstr "" msgid "Title" msgstr "" -#: ../../include/taxonomy.php:188 ../../include/taxonomy.php:270 -#: ../../include/widgets.php:46 ../../include/widgets.php:429 -#: ../../include/contact_widgets.php:91 -msgid "Categories" +#: ../../include/photos.php:114 +#, php-format +msgid "Image exceeds website size limit of %lu bytes" +msgstr "" + +#: ../../include/photos.php:121 +msgid "Image file is empty." +msgstr "" + +#: ../../include/photos.php:259 +msgid "Photo storage failed." +msgstr "" + +#: ../../include/photos.php:299 +msgid "a new photo" +msgstr "" + +#: ../../include/photos.php:303 +#, php-format +msgctxt "photo_upload" +msgid "%1$s posted %2$s to %3$s" +msgstr "" + +#: ../../include/photos.php:506 ../../include/conversation.php:1650 +msgid "Photo Albums" +msgstr "" + +#: ../../include/photos.php:510 +msgid "Upload New Photos" msgstr "" #: ../../include/taxonomy.php:228 ../../include/taxonomy.php:249 @@ -7428,171 +7504,561 @@ msgstr "" msgid "dislikes" msgstr "" -#: ../../include/channel.php:33 +#: ../../include/follow.php:27 +msgid "Channel is blocked on this site." +msgstr "" + +#: ../../include/follow.php:32 +msgid "Channel location missing." +msgstr "" + +#: ../../include/follow.php:81 +msgid "Response from remote channel was incomplete." +msgstr "" + +#: ../../include/follow.php:98 +msgid "Channel was deleted and no longer exists." +msgstr "" + +#: ../../include/follow.php:154 ../../include/follow.php:190 +msgid "Protocol disabled." +msgstr "" + +#: ../../include/follow.php:178 +msgid "Channel discovery failed." +msgstr "" + +#: ../../include/follow.php:216 +msgid "Cannot connect to yourself." +msgstr "" + +#: ../../include/channel.php:32 msgid "Unable to obtain identity information from database" msgstr "" -#: ../../include/channel.php:67 +#: ../../include/channel.php:66 msgid "Empty name" msgstr "" -#: ../../include/channel.php:70 +#: ../../include/channel.php:69 msgid "Name too long" msgstr "" -#: ../../include/channel.php:181 +#: ../../include/channel.php:180 msgid "No account identifier" msgstr "" -#: ../../include/channel.php:193 +#: ../../include/channel.php:192 msgid "Nickname is required." msgstr "" -#: ../../include/channel.php:207 +#: ../../include/channel.php:206 msgid "Reserved nickname. Please choose another." msgstr "" -#: ../../include/channel.php:212 +#: ../../include/channel.php:211 msgid "" "Nickname has unsupported characters or is already being used on this site." msgstr "" -#: ../../include/channel.php:272 +#: ../../include/channel.php:287 msgid "Unable to retrieve created identity" msgstr "" -#: ../../include/channel.php:341 +#: ../../include/channel.php:345 msgid "Default Profile" msgstr "" -#: ../../include/channel.php:830 +#: ../../include/channel.php:815 msgid "Requested channel is not available." msgstr "" -#: ../../include/channel.php:977 +#: ../../include/channel.php:962 msgid "Create New Profile" msgstr "" -#: ../../include/channel.php:997 +#: ../../include/channel.php:982 msgid "Visible to everybody" msgstr "" -#: ../../include/channel.php:1070 ../../include/channel.php:1182 +#: ../../include/channel.php:1055 ../../include/channel.php:1167 msgid "Gender:" msgstr "" -#: ../../include/channel.php:1071 ../../include/channel.php:1226 +#: ../../include/channel.php:1056 ../../include/channel.php:1211 msgid "Status:" msgstr "" -#: ../../include/channel.php:1072 ../../include/channel.php:1237 +#: ../../include/channel.php:1057 ../../include/channel.php:1222 msgid "Homepage:" msgstr "" -#: ../../include/channel.php:1073 +#: ../../include/channel.php:1058 msgid "Online Now" msgstr "" -#: ../../include/channel.php:1187 +#: ../../include/channel.php:1172 msgid "Like this channel" msgstr "" -#: ../../include/channel.php:1211 +#: ../../include/channel.php:1196 msgid "j F, Y" msgstr "" -#: ../../include/channel.php:1212 +#: ../../include/channel.php:1197 msgid "j F" msgstr "" -#: ../../include/channel.php:1219 +#: ../../include/channel.php:1204 msgid "Birthday:" msgstr "" -#: ../../include/channel.php:1232 +#: ../../include/channel.php:1217 #, php-format msgid "for %1$d %2$s" msgstr "" -#: ../../include/channel.php:1235 +#: ../../include/channel.php:1220 msgid "Sexual Preference:" msgstr "" -#: ../../include/channel.php:1241 +#: ../../include/channel.php:1226 msgid "Tags:" msgstr "" -#: ../../include/channel.php:1243 +#: ../../include/channel.php:1228 msgid "Political Views:" msgstr "" -#: ../../include/channel.php:1245 +#: ../../include/channel.php:1230 msgid "Religion:" msgstr "" -#: ../../include/channel.php:1249 +#: ../../include/channel.php:1234 msgid "Hobbies/Interests:" msgstr "" -#: ../../include/channel.php:1251 +#: ../../include/channel.php:1236 msgid "Likes:" msgstr "" -#: ../../include/channel.php:1253 +#: ../../include/channel.php:1238 msgid "Dislikes:" msgstr "" -#: ../../include/channel.php:1255 +#: ../../include/channel.php:1240 msgid "Contact information and Social Networks:" msgstr "" -#: ../../include/channel.php:1257 +#: ../../include/channel.php:1242 msgid "My other channels:" msgstr "" -#: ../../include/channel.php:1259 +#: ../../include/channel.php:1244 msgid "Musical interests:" msgstr "" -#: ../../include/channel.php:1261 +#: ../../include/channel.php:1246 msgid "Books, literature:" msgstr "" -#: ../../include/channel.php:1263 +#: ../../include/channel.php:1248 msgid "Television:" msgstr "" -#: ../../include/channel.php:1265 +#: ../../include/channel.php:1250 msgid "Film/dance/culture/entertainment:" msgstr "" -#: ../../include/channel.php:1267 +#: ../../include/channel.php:1252 msgid "Love/Romance:" msgstr "" -#: ../../include/channel.php:1269 +#: ../../include/channel.php:1254 msgid "Work/employment:" msgstr "" -#: ../../include/channel.php:1271 +#: ../../include/channel.php:1256 msgid "School/education:" msgstr "" -#: ../../include/channel.php:1292 +#: ../../include/channel.php:1277 msgid "Like this thing" msgstr "" -#: ../../include/connections.php:95 -msgid "New window" +#: ../../include/selectors.php:30 +msgid "Frequently" msgstr "" -#: ../../include/connections.php:96 -msgid "Open the selected location in a different window or browser tab" +#: ../../include/selectors.php:31 +msgid "Hourly" msgstr "" -#: ../../include/connections.php:214 +#: ../../include/selectors.php:32 +msgid "Twice daily" +msgstr "" + +#: ../../include/selectors.php:33 +msgid "Daily" +msgstr "" + +#: ../../include/selectors.php:34 +msgid "Weekly" +msgstr "" + +#: ../../include/selectors.php:35 +msgid "Monthly" +msgstr "" + +#: ../../include/selectors.php:49 +msgid "Currently Male" +msgstr "" + +#: ../../include/selectors.php:49 +msgid "Currently Female" +msgstr "" + +#: ../../include/selectors.php:49 +msgid "Mostly Male" +msgstr "" + +#: ../../include/selectors.php:49 +msgid "Mostly Female" +msgstr "" + +#: ../../include/selectors.php:49 +msgid "Transgender" +msgstr "" + +#: ../../include/selectors.php:49 +msgid "Intersex" +msgstr "" + +#: ../../include/selectors.php:49 +msgid "Transsexual" +msgstr "" + +#: ../../include/selectors.php:49 +msgid "Hermaphrodite" +msgstr "" + +#: ../../include/selectors.php:49 +msgid "Neuter" +msgstr "" + +#: ../../include/selectors.php:49 +msgid "Non-specific" +msgstr "" + +#: ../../include/selectors.php:49 ../../include/selectors.php:66 +#: ../../include/selectors.php:104 ../../include/selectors.php:140 +#: ../../include/permissions.php:881 +msgid "Other" +msgstr "" + +#: ../../include/selectors.php:49 +msgid "Undecided" +msgstr "" + +#: ../../include/selectors.php:85 ../../include/selectors.php:104 +msgid "Males" +msgstr "" + +#: ../../include/selectors.php:85 ../../include/selectors.php:104 +msgid "Females" +msgstr "" + +#: ../../include/selectors.php:85 +msgid "Gay" +msgstr "" + +#: ../../include/selectors.php:85 +msgid "Lesbian" +msgstr "" + +#: ../../include/selectors.php:85 +msgid "No Preference" +msgstr "" + +#: ../../include/selectors.php:85 +msgid "Bisexual" +msgstr "" + +#: ../../include/selectors.php:85 +msgid "Autosexual" +msgstr "" + +#: ../../include/selectors.php:85 +msgid "Abstinent" +msgstr "" + +#: ../../include/selectors.php:85 +msgid "Virgin" +msgstr "" + +#: ../../include/selectors.php:85 +msgid "Deviant" +msgstr "" + +#: ../../include/selectors.php:85 +msgid "Fetish" +msgstr "" + +#: ../../include/selectors.php:85 +msgid "Oodles" +msgstr "" + +#: ../../include/selectors.php:85 +msgid "Nonsexual" +msgstr "" + +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Single" +msgstr "" + +#: ../../include/selectors.php:123 +msgid "Lonely" +msgstr "" + +#: ../../include/selectors.php:123 +msgid "Available" +msgstr "" + +#: ../../include/selectors.php:123 +msgid "Unavailable" +msgstr "" + +#: ../../include/selectors.php:123 +msgid "Has crush" +msgstr "" + +#: ../../include/selectors.php:123 +msgid "Infatuated" +msgstr "" + +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Dating" +msgstr "" + +#: ../../include/selectors.php:123 +msgid "Unfaithful" +msgstr "" + +#: ../../include/selectors.php:123 +msgid "Sex Addict" +msgstr "" + +#: ../../include/selectors.php:123 +msgid "Friends/Benefits" +msgstr "" + +#: ../../include/selectors.php:123 +msgid "Casual" +msgstr "" + +#: ../../include/selectors.php:123 +msgid "Engaged" +msgstr "" + +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Married" +msgstr "" + +#: ../../include/selectors.php:123 +msgid "Imaginarily married" +msgstr "" + +#: ../../include/selectors.php:123 +msgid "Partners" +msgstr "" + +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Cohabiting" +msgstr "" + +#: ../../include/selectors.php:123 +msgid "Common law" +msgstr "" + +#: ../../include/selectors.php:123 +msgid "Happy" +msgstr "" + +#: ../../include/selectors.php:123 +msgid "Not looking" +msgstr "" + +#: ../../include/selectors.php:123 +msgid "Swinger" +msgstr "" + +#: ../../include/selectors.php:123 +msgid "Betrayed" +msgstr "" + +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Separated" +msgstr "" + +#: ../../include/selectors.php:123 +msgid "Unstable" +msgstr "" + +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Divorced" +msgstr "" + +#: ../../include/selectors.php:123 +msgid "Imaginarily divorced" +msgstr "" + +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Widowed" +msgstr "" + +#: ../../include/selectors.php:123 +msgid "Uncertain" +msgstr "" + +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "It's complicated" +msgstr "" + +#: ../../include/selectors.php:123 +msgid "Don't care" +msgstr "" + +#: ../../include/selectors.php:123 +msgid "Ask me" +msgstr "" + +#: ../../include/event.php:22 ../../include/event.php:69 +#: ../../include/bb2diaspora.php:485 +msgid "l F d, Y \\@ g:i A" +msgstr "" + +#: ../../include/event.php:30 ../../include/event.php:73 +#: ../../include/bb2diaspora.php:491 +msgid "Starts:" +msgstr "" + +#: ../../include/event.php:40 ../../include/event.php:77 +#: ../../include/bb2diaspora.php:499 +msgid "Finishes:" +msgstr "" + +#: ../../include/event.php:812 +msgid "This event has been added to your calendar." +msgstr "" + +#: ../../include/event.php:1012 +msgid "Not specified" +msgstr "" + +#: ../../include/event.php:1013 +msgid "Needs Action" +msgstr "" + +#: ../../include/event.php:1014 +msgid "Completed" +msgstr "" + +#: ../../include/event.php:1015 +msgid "In Process" +msgstr "" + +#: ../../include/event.php:1016 +msgid "Cancelled" +msgstr "" + +#: ../../include/bookmarks.php:35 #, php-format -msgid "User '%s' deleted" +msgid "%1$s's bookmarks" +msgstr "" + +#: ../../include/datetime.php:135 +msgid "Birthday" +msgstr "" + +#: ../../include/datetime.php:137 +msgid "Age: " +msgstr "" + +#: ../../include/datetime.php:139 +msgid "YYYY-MM-DD or MM-DD" +msgstr "" + +#: ../../include/datetime.php:272 ../../boot.php:2486 +msgid "never" +msgstr "" + +#: ../../include/datetime.php:278 +msgid "less than a second ago" +msgstr "" + +#: ../../include/datetime.php:296 +#, php-format +msgctxt "e.g. 22 hours ago, 1 minute ago" +msgid "%1$d %2$s ago" +msgstr "" + +#: ../../include/datetime.php:307 +msgctxt "relative_date" +msgid "year" +msgid_plural "years" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/datetime.php:310 +msgctxt "relative_date" +msgid "month" +msgid_plural "months" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/datetime.php:313 +msgctxt "relative_date" +msgid "week" +msgid_plural "weeks" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/datetime.php:316 +msgctxt "relative_date" +msgid "day" +msgid_plural "days" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/datetime.php:319 +msgctxt "relative_date" +msgid "hour" +msgid_plural "hours" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/datetime.php:322 +msgctxt "relative_date" +msgid "minute" +msgid_plural "minutes" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/datetime.php:325 +msgctxt "relative_date" +msgid "second" +msgid_plural "seconds" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/datetime.php:562 +#, php-format +msgid "%1$s's birthday" +msgstr "" + +#: ../../include/datetime.php:563 +#, php-format +msgid "Happy Birthday %1$s" msgstr "" #: ../../include/conversation.php:204 @@ -7804,11 +8270,6 @@ msgstr "" msgid "Files and Storage" msgstr "" -#: ../../include/conversation.php:1677 ../../include/conversation.php:1680 -#: ../../include/widgets.php:836 -msgid "Chatrooms" -msgstr "" - #: ../../include/conversation.php:1693 msgid "Saved Bookmarks" msgstr "" @@ -7859,613 +8320,71 @@ msgid_plural "Abstains" msgstr[0] "" msgstr[1] "" -#: ../../include/import.php:30 -msgid "" -"Cannot create a duplicate channel identifier on this system. Import failed." +#: ../../include/items.php:898 ../../include/items.php:943 +msgid "(Unknown)" msgstr "" -#: ../../include/import.php:97 -msgid "Channel clone failed. Import failed." +#: ../../include/items.php:1142 +msgid "Visible to anybody on the internet." msgstr "" -#: ../../include/selectors.php:30 -msgid "Frequently" +#: ../../include/items.php:1144 +msgid "Visible to you only." msgstr "" -#: ../../include/selectors.php:31 -msgid "Hourly" +#: ../../include/items.php:1146 +msgid "Visible to anybody in this network." msgstr "" -#: ../../include/selectors.php:32 -msgid "Twice daily" +#: ../../include/items.php:1148 +msgid "Visible to anybody authenticated." msgstr "" -#: ../../include/selectors.php:33 -msgid "Daily" -msgstr "" - -#: ../../include/selectors.php:34 -msgid "Weekly" -msgstr "" - -#: ../../include/selectors.php:35 -msgid "Monthly" -msgstr "" - -#: ../../include/selectors.php:49 -msgid "Currently Male" -msgstr "" - -#: ../../include/selectors.php:49 -msgid "Currently Female" -msgstr "" - -#: ../../include/selectors.php:49 -msgid "Mostly Male" -msgstr "" - -#: ../../include/selectors.php:49 -msgid "Mostly Female" -msgstr "" - -#: ../../include/selectors.php:49 -msgid "Transgender" -msgstr "" - -#: ../../include/selectors.php:49 -msgid "Intersex" -msgstr "" - -#: ../../include/selectors.php:49 -msgid "Transsexual" -msgstr "" - -#: ../../include/selectors.php:49 -msgid "Hermaphrodite" -msgstr "" - -#: ../../include/selectors.php:49 -msgid "Neuter" -msgstr "" - -#: ../../include/selectors.php:49 -msgid "Non-specific" -msgstr "" - -#: ../../include/selectors.php:49 -msgid "Undecided" -msgstr "" - -#: ../../include/selectors.php:85 ../../include/selectors.php:104 -msgid "Males" -msgstr "" - -#: ../../include/selectors.php:85 ../../include/selectors.php:104 -msgid "Females" -msgstr "" - -#: ../../include/selectors.php:85 -msgid "Gay" -msgstr "" - -#: ../../include/selectors.php:85 -msgid "Lesbian" -msgstr "" - -#: ../../include/selectors.php:85 -msgid "No Preference" -msgstr "" - -#: ../../include/selectors.php:85 -msgid "Bisexual" -msgstr "" - -#: ../../include/selectors.php:85 -msgid "Autosexual" -msgstr "" - -#: ../../include/selectors.php:85 -msgid "Abstinent" -msgstr "" - -#: ../../include/selectors.php:85 -msgid "Virgin" -msgstr "" - -#: ../../include/selectors.php:85 -msgid "Deviant" -msgstr "" - -#: ../../include/selectors.php:85 -msgid "Fetish" -msgstr "" - -#: ../../include/selectors.php:85 -msgid "Oodles" -msgstr "" - -#: ../../include/selectors.php:85 -msgid "Nonsexual" -msgstr "" - -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Single" -msgstr "" - -#: ../../include/selectors.php:123 -msgid "Lonely" -msgstr "" - -#: ../../include/selectors.php:123 -msgid "Available" -msgstr "" - -#: ../../include/selectors.php:123 -msgid "Unavailable" -msgstr "" - -#: ../../include/selectors.php:123 -msgid "Has crush" -msgstr "" - -#: ../../include/selectors.php:123 -msgid "Infatuated" -msgstr "" - -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Dating" -msgstr "" - -#: ../../include/selectors.php:123 -msgid "Unfaithful" -msgstr "" - -#: ../../include/selectors.php:123 -msgid "Sex Addict" -msgstr "" - -#: ../../include/selectors.php:123 -msgid "Friends/Benefits" -msgstr "" - -#: ../../include/selectors.php:123 -msgid "Casual" -msgstr "" - -#: ../../include/selectors.php:123 -msgid "Engaged" -msgstr "" - -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Married" -msgstr "" - -#: ../../include/selectors.php:123 -msgid "Imaginarily married" -msgstr "" - -#: ../../include/selectors.php:123 -msgid "Partners" -msgstr "" - -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Cohabiting" -msgstr "" - -#: ../../include/selectors.php:123 -msgid "Common law" -msgstr "" - -#: ../../include/selectors.php:123 -msgid "Happy" -msgstr "" - -#: ../../include/selectors.php:123 -msgid "Not looking" -msgstr "" - -#: ../../include/selectors.php:123 -msgid "Swinger" -msgstr "" - -#: ../../include/selectors.php:123 -msgid "Betrayed" -msgstr "" - -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Separated" -msgstr "" - -#: ../../include/selectors.php:123 -msgid "Unstable" -msgstr "" - -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Divorced" -msgstr "" - -#: ../../include/selectors.php:123 -msgid "Imaginarily divorced" -msgstr "" - -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Widowed" -msgstr "" - -#: ../../include/selectors.php:123 -msgid "Uncertain" -msgstr "" - -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "It's complicated" -msgstr "" - -#: ../../include/selectors.php:123 -msgid "Don't care" -msgstr "" - -#: ../../include/selectors.php:123 -msgid "Ask me" -msgstr "" - -#: ../../include/bookmarks.php:35 +#: ../../include/items.php:1150 #, php-format -msgid "%1$s's bookmarks" +msgid "Visible to anybody on %s." msgstr "" -#: ../../include/security.php:109 -msgid "guest:" +#: ../../include/items.php:1152 +msgid "Visible to all connections." msgstr "" -#: ../../include/security.php:427 -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." +#: ../../include/items.php:1154 +msgid "Visible to approved connections." msgstr "" -#: ../../include/text.php:404 -msgid "prev" +#: ../../include/items.php:1156 +msgid "Visible to specific connections." msgstr "" -#: ../../include/text.php:406 -msgid "first" +#: ../../include/items.php:3919 +msgid "Privacy group is empty." msgstr "" -#: ../../include/text.php:435 -msgid "last" -msgstr "" - -#: ../../include/text.php:438 -msgid "next" -msgstr "" - -#: ../../include/text.php:448 -msgid "older" -msgstr "" - -#: ../../include/text.php:450 -msgid "newer" -msgstr "" - -#: ../../include/text.php:843 -msgid "No connections" -msgstr "" - -#: ../../include/text.php:868 +#: ../../include/items.php:3926 #, php-format -msgid "View all %s connections" +msgid "Privacy group: %s" msgstr "" -#: ../../include/text.php:1013 ../../include/text.php:1018 -msgid "poke" +#: ../../include/items.php:3938 +msgid "Connection not found." msgstr "" -#: ../../include/text.php:1019 -msgid "ping" +#: ../../include/items.php:4291 +msgid "profile photo" msgstr "" -#: ../../include/text.php:1019 -msgid "pinged" +#: ../../include/connections.php:95 +msgid "New window" msgstr "" -#: ../../include/text.php:1020 -msgid "prod" +#: ../../include/connections.php:96 +msgid "Open the selected location in a different window or browser tab" msgstr "" -#: ../../include/text.php:1020 -msgid "prodded" -msgstr "" - -#: ../../include/text.php:1021 -msgid "slap" -msgstr "" - -#: ../../include/text.php:1021 -msgid "slapped" -msgstr "" - -#: ../../include/text.php:1022 -msgid "finger" -msgstr "" - -#: ../../include/text.php:1022 -msgid "fingered" -msgstr "" - -#: ../../include/text.php:1023 -msgid "rebuff" -msgstr "" - -#: ../../include/text.php:1023 -msgid "rebuffed" -msgstr "" - -#: ../../include/text.php:1035 -msgid "happy" -msgstr "" - -#: ../../include/text.php:1036 -msgid "sad" -msgstr "" - -#: ../../include/text.php:1037 -msgid "mellow" -msgstr "" - -#: ../../include/text.php:1038 -msgid "tired" -msgstr "" - -#: ../../include/text.php:1039 -msgid "perky" -msgstr "" - -#: ../../include/text.php:1040 -msgid "angry" -msgstr "" - -#: ../../include/text.php:1041 -msgid "stupefied" -msgstr "" - -#: ../../include/text.php:1042 -msgid "puzzled" -msgstr "" - -#: ../../include/text.php:1043 -msgid "interested" -msgstr "" - -#: ../../include/text.php:1044 -msgid "bitter" -msgstr "" - -#: ../../include/text.php:1045 -msgid "cheerful" -msgstr "" - -#: ../../include/text.php:1046 -msgid "alive" -msgstr "" - -#: ../../include/text.php:1047 -msgid "annoyed" -msgstr "" - -#: ../../include/text.php:1048 -msgid "anxious" -msgstr "" - -#: ../../include/text.php:1049 -msgid "cranky" -msgstr "" - -#: ../../include/text.php:1050 -msgid "disturbed" -msgstr "" - -#: ../../include/text.php:1051 -msgid "frustrated" -msgstr "" - -#: ../../include/text.php:1052 -msgid "depressed" -msgstr "" - -#: ../../include/text.php:1053 -msgid "motivated" -msgstr "" - -#: ../../include/text.php:1054 -msgid "relaxed" -msgstr "" - -#: ../../include/text.php:1055 -msgid "surprised" -msgstr "" - -#: ../../include/text.php:1237 ../../include/js_strings.php:70 -msgid "Monday" -msgstr "" - -#: ../../include/text.php:1237 ../../include/js_strings.php:71 -msgid "Tuesday" -msgstr "" - -#: ../../include/text.php:1237 ../../include/js_strings.php:72 -msgid "Wednesday" -msgstr "" - -#: ../../include/text.php:1237 ../../include/js_strings.php:73 -msgid "Thursday" -msgstr "" - -#: ../../include/text.php:1237 ../../include/js_strings.php:74 -msgid "Friday" -msgstr "" - -#: ../../include/text.php:1237 ../../include/js_strings.php:75 -msgid "Saturday" -msgstr "" - -#: ../../include/text.php:1237 ../../include/js_strings.php:69 -msgid "Sunday" -msgstr "" - -#: ../../include/text.php:1241 ../../include/js_strings.php:45 -msgid "January" -msgstr "" - -#: ../../include/text.php:1241 ../../include/js_strings.php:46 -msgid "February" -msgstr "" - -#: ../../include/text.php:1241 ../../include/js_strings.php:47 -msgid "March" -msgstr "" - -#: ../../include/text.php:1241 ../../include/js_strings.php:48 -msgid "April" -msgstr "" - -#: ../../include/text.php:1241 -msgid "May" -msgstr "" - -#: ../../include/text.php:1241 ../../include/js_strings.php:50 -msgid "June" -msgstr "" - -#: ../../include/text.php:1241 ../../include/js_strings.php:51 -msgid "July" -msgstr "" - -#: ../../include/text.php:1241 ../../include/js_strings.php:52 -msgid "August" -msgstr "" - -#: ../../include/text.php:1241 ../../include/js_strings.php:53 -msgid "September" -msgstr "" - -#: ../../include/text.php:1241 ../../include/js_strings.php:54 -msgid "October" -msgstr "" - -#: ../../include/text.php:1241 ../../include/js_strings.php:55 -msgid "November" -msgstr "" - -#: ../../include/text.php:1241 ../../include/js_strings.php:56 -msgid "December" -msgstr "" - -#: ../../include/text.php:1318 ../../include/text.php:1322 -msgid "Unknown Attachment" -msgstr "" - -#: ../../include/text.php:1324 -msgid "unknown" -msgstr "" - -#: ../../include/text.php:1360 -msgid "remove category" -msgstr "" - -#: ../../include/text.php:1437 -msgid "remove from file" -msgstr "" - -#: ../../include/text.php:1734 ../../include/text.php:1805 -msgid "default" -msgstr "" - -#: ../../include/text.php:1742 -msgid "Page layout" -msgstr "" - -#: ../../include/text.php:1742 -msgid "You can create your own with the layouts tool" -msgstr "" - -#: ../../include/text.php:1784 -msgid "Page content type" -msgstr "" - -#: ../../include/text.php:1817 -msgid "Select an alternate language" -msgstr "" - -#: ../../include/text.php:1934 -msgid "activity" -msgstr "" - -#: ../../include/text.php:2235 -msgid "Design Tools" -msgstr "" - -#: ../../include/text.php:2241 -msgid "Pages" -msgstr "" - -#: ../../include/auth.php:147 -msgid "Logged out." -msgstr "" - -#: ../../include/auth.php:274 -msgid "Failed authentication" -msgstr "" - -#: ../../include/permissions.php:26 -msgid "Can view my normal stream and posts" -msgstr "" - -#: ../../include/permissions.php:30 -msgid "Can view my webpages" -msgstr "" - -#: ../../include/permissions.php:34 -msgid "Can post on my channel page (\"wall\")" -msgstr "" - -#: ../../include/permissions.php:37 -msgid "Can like/dislike stuff" -msgstr "" - -#: ../../include/permissions.php:37 -msgid "Profiles and things other than posts/comments" -msgstr "" - -#: ../../include/permissions.php:39 -msgid "Can forward to all my channel contacts via post @mentions" -msgstr "" - -#: ../../include/permissions.php:39 -msgid "Advanced - useful for creating group forum channels" -msgstr "" - -#: ../../include/permissions.php:40 -msgid "Can chat with me (when available)" -msgstr "" - -#: ../../include/permissions.php:41 -msgid "Can write to my file storage and photos" -msgstr "" - -#: ../../include/permissions.php:42 -msgid "Can edit my webpages" -msgstr "" - -#: ../../include/permissions.php:44 -msgid "Somewhat advanced - very useful in open communities" -msgstr "" - -#: ../../include/permissions.php:46 -msgid "Can administer my channel resources" -msgstr "" - -#: ../../include/permissions.php:46 -msgid "Extremely advanced. Leave this alone unless you know what you are doing" +#: ../../include/connections.php:214 +#, php-format +msgid "User '%s' deleted" msgstr "" #: ../../include/features.php:48 @@ -8659,10 +8578,6 @@ msgstr "" msgid "Enable management and selection of privacy groups" msgstr "" -#: ../../include/features.php:85 ../../include/widgets.php:281 -msgid "Saved Searches" -msgstr "" - #: ../../include/features.php:85 msgid "Save search terms for re-use" msgstr "" @@ -8731,11 +8646,6 @@ msgstr "" msgid "Add emoji reaction ability to posts" msgstr "" -#: ../../include/features.php:99 ../../include/widgets.php:310 -#: ../../include/contact_widgets.php:53 -msgid "Saved Folders" -msgstr "" - #: ../../include/features.php:99 msgid "Ability to file posts under folders" msgstr "" @@ -8791,47 +8701,144 @@ msgstr "" msgid "Channels not in any privacy group" msgstr "" -#: ../../include/group.php:316 ../../include/widgets.php:282 -msgid "add" +#: ../../include/permissions.php:26 +msgid "Can view my normal stream and posts" msgstr "" -#: ../../include/event.php:22 ../../include/event.php:69 -#: ../../include/bb2diaspora.php:485 -msgid "l F d, Y \\@ g:i A" +#: ../../include/permissions.php:27 +msgid "Can view my default channel profile" msgstr "" -#: ../../include/event.php:30 ../../include/event.php:73 -#: ../../include/bb2diaspora.php:491 -msgid "Starts:" +#: ../../include/permissions.php:28 +msgid "Can view my connections" msgstr "" -#: ../../include/event.php:40 ../../include/event.php:77 -#: ../../include/bb2diaspora.php:499 -msgid "Finishes:" +#: ../../include/permissions.php:29 +msgid "Can view my file storage and photos" msgstr "" -#: ../../include/event.php:814 -msgid "This event has been added to your calendar." +#: ../../include/permissions.php:30 +msgid "Can view my webpages" msgstr "" -#: ../../include/event.php:1014 -msgid "Not specified" +#: ../../include/permissions.php:33 +msgid "Can send me their channel stream and posts" msgstr "" -#: ../../include/event.php:1015 -msgid "Needs Action" +#: ../../include/permissions.php:34 +msgid "Can post on my channel page (\"wall\")" msgstr "" -#: ../../include/event.php:1016 -msgid "Completed" +#: ../../include/permissions.php:35 +msgid "Can comment on or like my posts" msgstr "" -#: ../../include/event.php:1017 -msgid "In Process" +#: ../../include/permissions.php:36 +msgid "Can send me private mail messages" msgstr "" -#: ../../include/event.php:1018 -msgid "Cancelled" +#: ../../include/permissions.php:37 +msgid "Can like/dislike stuff" +msgstr "" + +#: ../../include/permissions.php:37 +msgid "Profiles and things other than posts/comments" +msgstr "" + +#: ../../include/permissions.php:39 +msgid "Can forward to all my channel contacts via post @mentions" +msgstr "" + +#: ../../include/permissions.php:39 +msgid "Advanced - useful for creating group forum channels" +msgstr "" + +#: ../../include/permissions.php:40 +msgid "Can chat with me (when available)" +msgstr "" + +#: ../../include/permissions.php:41 +msgid "Can write to my file storage and photos" +msgstr "" + +#: ../../include/permissions.php:42 +msgid "Can edit my webpages" +msgstr "" + +#: ../../include/permissions.php:44 +msgid "Can source my public posts in derived channels" +msgstr "" + +#: ../../include/permissions.php:44 +msgid "Somewhat advanced - very useful in open communities" +msgstr "" + +#: ../../include/permissions.php:46 +msgid "Can administer my channel resources" +msgstr "" + +#: ../../include/permissions.php:46 +msgid "Extremely advanced. Leave this alone unless you know what you are doing" +msgstr "" + +#: ../../include/permissions.php:877 +msgid "Social Networking" +msgstr "" + +#: ../../include/permissions.php:877 +msgid "Social - Mostly Public" +msgstr "" + +#: ../../include/permissions.php:877 +msgid "Social - Restricted" +msgstr "" + +#: ../../include/permissions.php:877 +msgid "Social - Private" +msgstr "" + +#: ../../include/permissions.php:878 +msgid "Community Forum" +msgstr "" + +#: ../../include/permissions.php:878 +msgid "Forum - Mostly Public" +msgstr "" + +#: ../../include/permissions.php:878 +msgid "Forum - Restricted" +msgstr "" + +#: ../../include/permissions.php:878 +msgid "Forum - Private" +msgstr "" + +#: ../../include/permissions.php:879 +msgid "Feed Republish" +msgstr "" + +#: ../../include/permissions.php:879 +msgid "Feed - Mostly Public" +msgstr "" + +#: ../../include/permissions.php:879 +msgid "Feed - Restricted" +msgstr "" + +#: ../../include/permissions.php:880 +msgid "Special Purpose" +msgstr "" + +#: ../../include/permissions.php:880 +msgid "Special - Celebrity/Soapbox" +msgstr "" + +#: ../../include/permissions.php:880 +msgid "Special - Group Repository" +msgstr "" + +#: ../../include/permissions.php:881 +msgid "Custom/Expert Mode" msgstr "" #: ../../include/account.php:28 @@ -8902,32 +8909,8 @@ msgstr "" msgid "This action is not available under your subscription plan." msgstr "" -#: ../../include/follow.php:27 -msgid "Channel is blocked on this site." -msgstr "" - -#: ../../include/follow.php:32 -msgid "Channel location missing." -msgstr "" - -#: ../../include/follow.php:80 -msgid "Response from remote channel was incomplete." -msgstr "" - -#: ../../include/follow.php:97 -msgid "Channel was deleted and no longer exists." -msgstr "" - -#: ../../include/follow.php:147 ../../include/follow.php:183 -msgid "Protocol disabled." -msgstr "" - -#: ../../include/follow.php:171 -msgid "Channel discovery failed." -msgstr "" - -#: ../../include/follow.php:210 -msgid "Cannot connect to yourself." +#: ../../include/api.php:1326 +msgid "Public Timeline" msgstr "" #: ../../include/attach.php:247 ../../include/attach.php:333 @@ -9039,284 +9022,21 @@ msgstr "" msgid "$1 wrote:" msgstr "" -#: ../../include/items.php:897 ../../include/items.php:942 -msgid "(Unknown)" +#: ../../include/import.php:29 +msgid "" +"Cannot create a duplicate channel identifier on this system. Import failed." msgstr "" -#: ../../include/items.php:1141 -msgid "Visible to anybody on the internet." +#: ../../include/import.php:76 +msgid "Channel clone failed. Import failed." msgstr "" -#: ../../include/items.php:1143 -msgid "Visible to you only." +#: ../../include/auth.php:116 +msgid "Logged out." msgstr "" -#: ../../include/items.php:1145 -msgid "Visible to anybody in this network." -msgstr "" - -#: ../../include/items.php:1147 -msgid "Visible to anybody authenticated." -msgstr "" - -#: ../../include/items.php:1149 -#, php-format -msgid "Visible to anybody on %s." -msgstr "" - -#: ../../include/items.php:1151 -msgid "Visible to all connections." -msgstr "" - -#: ../../include/items.php:1153 -msgid "Visible to approved connections." -msgstr "" - -#: ../../include/items.php:1155 -msgid "Visible to specific connections." -msgstr "" - -#: ../../include/items.php:3918 -msgid "Privacy group is empty." -msgstr "" - -#: ../../include/items.php:3925 -#, php-format -msgid "Privacy group: %s" -msgstr "" - -#: ../../include/items.php:3937 -msgid "Connection not found." -msgstr "" - -#: ../../include/items.php:4290 -msgid "profile photo" -msgstr "" - -#: ../../include/oembed.php:336 -msgid "Embedded content" -msgstr "" - -#: ../../include/oembed.php:345 -msgid "Embedding disabled" -msgstr "" - -#: ../../include/widgets.php:103 -msgid "System" -msgstr "" - -#: ../../include/widgets.php:106 -msgid "New App" -msgstr "" - -#: ../../include/widgets.php:154 -msgid "Suggestions" -msgstr "" - -#: ../../include/widgets.php:155 -msgid "See more..." -msgstr "" - -#: ../../include/widgets.php:175 -#, php-format -msgid "You have %1$.0f of %2$.0f allowed connections." -msgstr "" - -#: ../../include/widgets.php:181 -msgid "Add New Connection" -msgstr "" - -#: ../../include/widgets.php:182 -msgid "Enter channel address" -msgstr "" - -#: ../../include/widgets.php:183 -msgid "Examples: bob@example.com, https://example.com/barbara" -msgstr "" - -#: ../../include/widgets.php:199 -msgid "Notes" -msgstr "" - -#: ../../include/widgets.php:273 -msgid "Remove term" -msgstr "" - -#: ../../include/widgets.php:313 ../../include/widgets.php:432 -#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:94 -msgid "Everything" -msgstr "" - -#: ../../include/widgets.php:354 -msgid "Archives" -msgstr "" - -#: ../../include/widgets.php:516 -msgid "Refresh" -msgstr "" - -#: ../../include/widgets.php:556 -msgid "Account settings" -msgstr "" - -#: ../../include/widgets.php:562 -msgid "Channel settings" -msgstr "" - -#: ../../include/widgets.php:571 -msgid "Additional features" -msgstr "" - -#: ../../include/widgets.php:578 -msgid "Feature/Addon settings" -msgstr "" - -#: ../../include/widgets.php:584 -msgid "Display settings" -msgstr "" - -#: ../../include/widgets.php:591 -msgid "Manage locations" -msgstr "" - -#: ../../include/widgets.php:600 -msgid "Export channel" -msgstr "" - -#: ../../include/widgets.php:607 -msgid "Connected apps" -msgstr "" - -#: ../../include/widgets.php:631 -msgid "Premium Channel Settings" -msgstr "" - -#: ../../include/widgets.php:660 -msgid "Private Mail Menu" -msgstr "" - -#: ../../include/widgets.php:662 -msgid "Combined View" -msgstr "" - -#: ../../include/widgets.php:694 ../../include/widgets.php:706 -msgid "Conversations" -msgstr "" - -#: ../../include/widgets.php:698 -msgid "Received Messages" -msgstr "" - -#: ../../include/widgets.php:702 -msgid "Sent Messages" -msgstr "" - -#: ../../include/widgets.php:716 -msgid "No messages." -msgstr "" - -#: ../../include/widgets.php:734 -msgid "Delete conversation" -msgstr "" - -#: ../../include/widgets.php:760 -msgid "Events Tools" -msgstr "" - -#: ../../include/widgets.php:761 -msgid "Export Calendar" -msgstr "" - -#: ../../include/widgets.php:762 -msgid "Import Calendar" -msgstr "" - -#: ../../include/widgets.php:840 -msgid "Overview" -msgstr "" - -#: ../../include/widgets.php:847 -msgid "Chat Members" -msgstr "" - -#: ../../include/widgets.php:869 -msgid "Wiki List" -msgstr "" - -#: ../../include/widgets.php:907 -msgid "Wiki Pages" -msgstr "" - -#: ../../include/widgets.php:942 -msgid "Bookmarked Chatrooms" -msgstr "" - -#: ../../include/widgets.php:965 -msgid "Suggested Chatrooms" -msgstr "" - -#: ../../include/widgets.php:1111 ../../include/widgets.php:1223 -msgid "photo/image" -msgstr "" - -#: ../../include/widgets.php:1166 -msgid "Click to show more" -msgstr "" - -#: ../../include/widgets.php:1317 -msgid "Rating Tools" -msgstr "" - -#: ../../include/widgets.php:1321 ../../include/widgets.php:1323 -msgid "Rate Me" -msgstr "" - -#: ../../include/widgets.php:1326 -msgid "View Ratings" -msgstr "" - -#: ../../include/widgets.php:1410 -msgid "Forums" -msgstr "" - -#: ../../include/widgets.php:1439 -msgid "Tasks" -msgstr "" - -#: ../../include/widgets.php:1448 -msgid "Documentation" -msgstr "" - -#: ../../include/widgets.php:1450 -msgid "Project/Site Information" -msgstr "" - -#: ../../include/widgets.php:1451 -msgid "For Members" -msgstr "" - -#: ../../include/widgets.php:1452 -msgid "For Administrators" -msgstr "" - -#: ../../include/widgets.php:1453 -msgid "For Developers" -msgstr "" - -#: ../../include/widgets.php:1477 ../../include/widgets.php:1515 -msgid "Member registrations waiting for confirmation" -msgstr "" - -#: ../../include/widgets.php:1483 -msgid "Inspect queue" -msgstr "" - -#: ../../include/widgets.php:1485 -msgid "DB updates" -msgstr "" - -#: ../../include/widgets.php:1511 -msgid "Plugin Features" +#: ../../include/auth.php:237 +msgid "Failed authentication" msgstr "" #: ../../include/activities.php:41 @@ -9342,6 +9062,23 @@ msgstr "" msgid "%1$s has an updated %2$s, changing %3$s." msgstr "" +#: ../../include/zot.php:709 +msgid "Invalid data packet" +msgstr "" + +#: ../../include/zot.php:725 +msgid "Unable to verify channel signature" +msgstr "" + +#: ../../include/zot.php:2373 +#, php-format +msgid "Unable to verify site signature for %s" +msgstr "" + +#: ../../include/zot.php:3723 +msgid "invalid target signature" +msgstr "" + #: ../../include/bb2diaspora.php:398 msgid "Attachments:" msgstr "" @@ -9490,11 +9227,55 @@ msgstr "" msgid "timeago.numbers" msgstr "" +#: ../../include/js_strings.php:45 ../../include/text.php:1241 +msgid "January" +msgstr "" + +#: ../../include/js_strings.php:46 ../../include/text.php:1241 +msgid "February" +msgstr "" + +#: ../../include/js_strings.php:47 ../../include/text.php:1241 +msgid "March" +msgstr "" + +#: ../../include/js_strings.php:48 ../../include/text.php:1241 +msgid "April" +msgstr "" + #: ../../include/js_strings.php:49 msgctxt "long" msgid "May" msgstr "" +#: ../../include/js_strings.php:50 ../../include/text.php:1241 +msgid "June" +msgstr "" + +#: ../../include/js_strings.php:51 ../../include/text.php:1241 +msgid "July" +msgstr "" + +#: ../../include/js_strings.php:52 ../../include/text.php:1241 +msgid "August" +msgstr "" + +#: ../../include/js_strings.php:53 ../../include/text.php:1241 +msgid "September" +msgstr "" + +#: ../../include/js_strings.php:54 ../../include/text.php:1241 +msgid "October" +msgstr "" + +#: ../../include/js_strings.php:55 ../../include/text.php:1241 +msgid "November" +msgstr "" + +#: ../../include/js_strings.php:56 ../../include/text.php:1241 +msgid "December" +msgstr "" + #: ../../include/js_strings.php:57 msgid "Jan" msgstr "" @@ -9544,6 +9325,34 @@ msgstr "" msgid "Dec" msgstr "" +#: ../../include/js_strings.php:69 ../../include/text.php:1237 +msgid "Sunday" +msgstr "" + +#: ../../include/js_strings.php:70 ../../include/text.php:1237 +msgid "Monday" +msgstr "" + +#: ../../include/js_strings.php:71 ../../include/text.php:1237 +msgid "Tuesday" +msgstr "" + +#: ../../include/js_strings.php:72 ../../include/text.php:1237 +msgid "Wednesday" +msgstr "" + +#: ../../include/js_strings.php:73 ../../include/text.php:1237 +msgid "Thursday" +msgstr "" + +#: ../../include/js_strings.php:74 ../../include/text.php:1237 +msgid "Friday" +msgstr "" + +#: ../../include/js_strings.php:75 ../../include/text.php:1237 +msgid "Saturday" +msgstr "" + #: ../../include/js_strings.php:76 msgid "Sun" msgstr "" @@ -9708,110 +9517,227 @@ msgid "" "permissions set who is allowed to view the post." msgstr "" -#: ../../include/datetime.php:135 -msgid "Birthday" +#: ../../include/security.php:108 +msgid "guest:" msgstr "" -#: ../../include/datetime.php:137 -msgid "Age: " +#: ../../include/security.php:425 +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/datetime.php:139 -msgid "YYYY-MM-DD or MM-DD" +#: ../../include/text.php:404 +msgid "prev" msgstr "" -#: ../../include/datetime.php:272 ../../boot.php:2479 -msgid "never" +#: ../../include/text.php:406 +msgid "first" msgstr "" -#: ../../include/datetime.php:278 -msgid "less than a second ago" +#: ../../include/text.php:435 +msgid "last" msgstr "" -#: ../../include/datetime.php:296 +#: ../../include/text.php:438 +msgid "next" +msgstr "" + +#: ../../include/text.php:448 +msgid "older" +msgstr "" + +#: ../../include/text.php:450 +msgid "newer" +msgstr "" + +#: ../../include/text.php:843 +msgid "No connections" +msgstr "" + +#: ../../include/text.php:868 #, php-format -msgctxt "e.g. 22 hours ago, 1 minute ago" -msgid "%1$d %2$s ago" +msgid "View all %s connections" msgstr "" -#: ../../include/datetime.php:307 -msgctxt "relative_date" -msgid "year" -msgid_plural "years" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/datetime.php:310 -msgctxt "relative_date" -msgid "month" -msgid_plural "months" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/datetime.php:313 -msgctxt "relative_date" -msgid "week" -msgid_plural "weeks" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/datetime.php:316 -msgctxt "relative_date" -msgid "day" -msgid_plural "days" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/datetime.php:319 -msgctxt "relative_date" -msgid "hour" -msgid_plural "hours" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/datetime.php:322 -msgctxt "relative_date" -msgid "minute" -msgid_plural "minutes" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/datetime.php:325 -msgctxt "relative_date" -msgid "second" -msgid_plural "seconds" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/datetime.php:562 -#, php-format -msgid "%1$s's birthday" +#: ../../include/text.php:1013 ../../include/text.php:1018 +msgid "poke" msgstr "" -#: ../../include/datetime.php:563 -#, php-format -msgid "Happy Birthday %1$s" +#: ../../include/text.php:1019 +msgid "ping" msgstr "" -#: ../../include/api.php:1327 -msgid "Public Timeline" +#: ../../include/text.php:1019 +msgid "pinged" msgstr "" -#: ../../include/zot.php:697 -msgid "Invalid data packet" +#: ../../include/text.php:1020 +msgid "prod" msgstr "" -#: ../../include/zot.php:713 -msgid "Unable to verify channel signature" +#: ../../include/text.php:1020 +msgid "prodded" msgstr "" -#: ../../include/zot.php:2326 -#, php-format -msgid "Unable to verify site signature for %s" +#: ../../include/text.php:1021 +msgid "slap" msgstr "" -#: ../../include/zot.php:3703 -msgid "invalid target signature" +#: ../../include/text.php:1021 +msgid "slapped" +msgstr "" + +#: ../../include/text.php:1022 +msgid "finger" +msgstr "" + +#: ../../include/text.php:1022 +msgid "fingered" +msgstr "" + +#: ../../include/text.php:1023 +msgid "rebuff" +msgstr "" + +#: ../../include/text.php:1023 +msgid "rebuffed" +msgstr "" + +#: ../../include/text.php:1035 +msgid "happy" +msgstr "" + +#: ../../include/text.php:1036 +msgid "sad" +msgstr "" + +#: ../../include/text.php:1037 +msgid "mellow" +msgstr "" + +#: ../../include/text.php:1038 +msgid "tired" +msgstr "" + +#: ../../include/text.php:1039 +msgid "perky" +msgstr "" + +#: ../../include/text.php:1040 +msgid "angry" +msgstr "" + +#: ../../include/text.php:1041 +msgid "stupefied" +msgstr "" + +#: ../../include/text.php:1042 +msgid "puzzled" +msgstr "" + +#: ../../include/text.php:1043 +msgid "interested" +msgstr "" + +#: ../../include/text.php:1044 +msgid "bitter" +msgstr "" + +#: ../../include/text.php:1045 +msgid "cheerful" +msgstr "" + +#: ../../include/text.php:1046 +msgid "alive" +msgstr "" + +#: ../../include/text.php:1047 +msgid "annoyed" +msgstr "" + +#: ../../include/text.php:1048 +msgid "anxious" +msgstr "" + +#: ../../include/text.php:1049 +msgid "cranky" +msgstr "" + +#: ../../include/text.php:1050 +msgid "disturbed" +msgstr "" + +#: ../../include/text.php:1051 +msgid "frustrated" +msgstr "" + +#: ../../include/text.php:1052 +msgid "depressed" +msgstr "" + +#: ../../include/text.php:1053 +msgid "motivated" +msgstr "" + +#: ../../include/text.php:1054 +msgid "relaxed" +msgstr "" + +#: ../../include/text.php:1055 +msgid "surprised" +msgstr "" + +#: ../../include/text.php:1241 +msgid "May" +msgstr "" + +#: ../../include/text.php:1318 ../../include/text.php:1322 +msgid "Unknown Attachment" +msgstr "" + +#: ../../include/text.php:1324 +msgid "unknown" +msgstr "" + +#: ../../include/text.php:1360 +msgid "remove category" +msgstr "" + +#: ../../include/text.php:1437 +msgid "remove from file" +msgstr "" + +#: ../../include/text.php:1734 ../../include/text.php:1805 +msgid "default" +msgstr "" + +#: ../../include/text.php:1742 +msgid "Page layout" +msgstr "" + +#: ../../include/text.php:1742 +msgid "You can create your own with the layouts tool" +msgstr "" + +#: ../../include/text.php:1784 +msgid "Page content type" +msgstr "" + +#: ../../include/text.php:1817 +msgid "Select an alternate language" +msgstr "" + +#: ../../include/text.php:1934 +msgid "activity" +msgstr "" + +#: ../../include/text.php:2243 +msgid "Design Tools" +msgstr "" + +#: ../../include/text.php:2249 +msgid "Pages" msgstr "" #: ../../view/theme/redbasic/php/config.php:82 @@ -9976,10 +9902,6 @@ msgid "" "Create an account to access services and applications within the Hubzilla" msgstr "" -#: ../../boot.php:1706 -msgid "Login/Email" -msgstr "" - #: ../../boot.php:1707 msgid "Password" msgstr "" @@ -10005,11 +9927,11 @@ msgstr "" msgid "[hubzilla] Website SSL error for %s" msgstr "" -#: ../../boot.php:2478 +#: ../../boot.php:2485 msgid "Cron/Scheduled tasks not running." msgstr "" -#: ../../boot.php:2482 +#: ../../boot.php:2489 #, php-format msgid "[hubzilla] Cron tasks not running on %s" msgstr "" diff --git a/util/po2php.php b/util/po2php.php index 50941c062..a72a65ba1 100644 --- a/util/po2php.php +++ b/util/po2php.php @@ -1,5 +1,6 @@ getHeader('Content-Type'); list($contentType) = explode(';', $contentType); if ($contentType !== 'application/x-www-form-urlencoded' && @@ -179,7 +179,7 @@ class Plugin extends DAV\ServerPlugin { if ($this->server->emit('onBrowserPostAction', [$uri, $postVars['sabreAction'], $postVars])) { - switch ($postVars['sabreAction']) { + switch ($postVars['sabreAction']) { case 'mkcol' : if (isset($postVars['name']) && trim($postVars['name'])) { @@ -221,7 +221,7 @@ class Plugin extends DAV\ServerPlugin { if ($_FILES) $file = current($_FILES); else break; - + list(, $newName) = URLUtil::splitPath(trim($file['name'])); if (isset($postVars['name']) && trim($postVars['name'])) $newName = trim($postVars['name']); diff --git a/view/ca/hmessages.po b/view/ca/hmessages.po index 2eda76a7a..ecb96b8f8 100644 --- a/view/ca/hmessages.po +++ b/view/ca/hmessages.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: Redmatrix\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-07-22 00:02-0700\n" -"PO-Revision-Date: 2016-07-25 08:54+0000\n" +"POT-Creation-Date: 2016-06-10 00:02-0700\n" +"PO-Revision-Date: 2016-06-10 09:14+0000\n" "Last-Translator: fabrixxm \n" "Language-Team: Catalan (Spain) (http://www.transifex.com/Friendica/red-matrix/language/ca_ES/)\n" "MIME-Version: 1.0\n" @@ -21,156 +21,11 @@ msgstr "" "Language: ca_ES\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ../../Zotlabs/Access/PermissionRoles.php:182 -#: ../../include/permissions.php:904 -msgid "Social Networking" -msgstr "Xarxes Socials" - -#: ../../Zotlabs/Access/PermissionRoles.php:183 -#: ../../include/permissions.php:904 -msgid "Social - Mostly Public" -msgstr "Social - Principalment Públic" - -#: ../../Zotlabs/Access/PermissionRoles.php:184 -#: ../../include/permissions.php:904 -msgid "Social - Restricted" -msgstr "Social - Restingit" - -#: ../../Zotlabs/Access/PermissionRoles.php:185 -#: ../../include/permissions.php:904 -msgid "Social - Private" -msgstr "Social - Privat" - -#: ../../Zotlabs/Access/PermissionRoles.php:188 -#: ../../include/permissions.php:905 -msgid "Community Forum" -msgstr "Foro de Comunitat" - -#: ../../Zotlabs/Access/PermissionRoles.php:189 -#: ../../include/permissions.php:905 -msgid "Forum - Mostly Public" -msgstr "Fòrum - Principalment Públic" - -#: ../../Zotlabs/Access/PermissionRoles.php:190 -#: ../../include/permissions.php:905 -msgid "Forum - Restricted" -msgstr "Fòrum - Restringit" - -#: ../../Zotlabs/Access/PermissionRoles.php:191 -#: ../../include/permissions.php:905 -msgid "Forum - Private" -msgstr "Fòrum - Privat" - -#: ../../Zotlabs/Access/PermissionRoles.php:194 -#: ../../include/permissions.php:906 -msgid "Feed Republish" -msgstr "Republicador" - -#: ../../Zotlabs/Access/PermissionRoles.php:195 -#: ../../include/permissions.php:906 -msgid "Feed - Mostly Public" -msgstr "Realimentador - Públic Principalment" - -#: ../../Zotlabs/Access/PermissionRoles.php:196 -#: ../../include/permissions.php:906 -msgid "Feed - Restricted" -msgstr "Retroalimentador - Restringit" - -#: ../../Zotlabs/Access/PermissionRoles.php:199 -#: ../../include/permissions.php:907 -msgid "Special Purpose" -msgstr "Objectiu Especial" - -#: ../../Zotlabs/Access/PermissionRoles.php:200 -#: ../../include/permissions.php:907 -msgid "Special - Celebrity/Soapbox" -msgstr "Espacial - Celebritat/Plataforma" - -#: ../../Zotlabs/Access/PermissionRoles.php:201 -#: ../../include/permissions.php:907 -msgid "Special - Group Repository" -msgstr "Especial - Repositori d'un Grup" - -#: ../../Zotlabs/Access/PermissionRoles.php:204 ../../include/selectors.php:49 -#: ../../include/selectors.php:66 ../../include/selectors.php:104 -#: ../../include/selectors.php:140 ../../include/permissions.php:908 -msgid "Other" -msgstr "Altres" - -#: ../../Zotlabs/Access/PermissionRoles.php:205 -#: ../../include/permissions.php:908 -msgid "Custom/Expert Mode" -msgstr "Personalitzat/Manera Experta" - -#: ../../Zotlabs/Access/Permissions.php:30 -msgid "Can view my channel stream and posts" -msgstr "" - -#: ../../Zotlabs/Access/Permissions.php:31 ../../include/permissions.php:33 -msgid "Can send me their channel stream and posts" -msgstr "Pot enviar-me el flux i entrades del seu canal" - -#: ../../Zotlabs/Access/Permissions.php:32 ../../include/permissions.php:27 -msgid "Can view my default channel profile" -msgstr "Pot veure el meu perfil del canal per defecte" - -#: ../../Zotlabs/Access/Permissions.php:33 ../../include/permissions.php:28 -msgid "Can view my connections" -msgstr "Pot veure les meves connexions" - -#: ../../Zotlabs/Access/Permissions.php:34 ../../include/permissions.php:29 -msgid "Can view my file storage and photos" -msgstr "Pot veure al meu magatzem d'arxius i fotos" - -#: ../../Zotlabs/Access/Permissions.php:35 -msgid "Can upload/modify my file storage and photos" -msgstr "" - -#: ../../Zotlabs/Access/Permissions.php:36 -msgid "Can view my channel webpages" -msgstr "" - -#: ../../Zotlabs/Access/Permissions.php:37 -msgid "Can create/edit my channel webpages" -msgstr "" - -#: ../../Zotlabs/Access/Permissions.php:38 -msgid "Can post on my channel (wall) page" -msgstr "" - -#: ../../Zotlabs/Access/Permissions.php:39 ../../include/permissions.php:35 -msgid "Can comment on or like my posts" -msgstr "Pot fer comentaris o dir si agrada en les meves entrades" - -#: ../../Zotlabs/Access/Permissions.php:40 ../../include/permissions.php:36 -msgid "Can send me private mail messages" -msgstr "Pot enviar-me un missatge de correu privat" - -#: ../../Zotlabs/Access/Permissions.php:41 -msgid "Can like/dislike profiles and profile things" -msgstr "" - -#: ../../Zotlabs/Access/Permissions.php:42 -msgid "Can forward to all my channel connections via @+ mentions in posts" -msgstr "" - -#: ../../Zotlabs/Access/Permissions.php:43 -msgid "Can chat with me" -msgstr "" - -#: ../../Zotlabs/Access/Permissions.php:44 ../../include/permissions.php:44 -msgid "Can source my public posts in derived channels" -msgstr "Pot mostrar l'origen de les meves entrades públiques en altres canals" - -#: ../../Zotlabs/Access/Permissions.php:45 -msgid "Can administer my channel" -msgstr "" - #: ../../Zotlabs/Storage/Browser.php:107 ../../Zotlabs/Storage/Browser.php:239 msgid "parent" -msgstr "amunt" +msgstr "pare" -#: ../../Zotlabs/Storage/Browser.php:131 ../../include/text.php:2605 +#: ../../Zotlabs/Storage/Browser.php:131 ../../include/text.php:2620 msgid "Collection" msgstr "Col·lecció" @@ -194,17 +49,16 @@ msgstr "Programació de la bústia d'entrada" msgid "Schedule Outbox" msgstr "Programació de la bústia de sortida" -#: ../../Zotlabs/Storage/Browser.php:164 ../../Zotlabs/Module/Photos.php:796 -#: ../../Zotlabs/Module/Photos.php:1241 -#: ../../Zotlabs/Module/Embedphotos.php:147 ../../Zotlabs/Lib/Apps.php:490 -#: ../../Zotlabs/Lib/Apps.php:565 ../../include/conversation.php:1035 -#: ../../include/widgets.php:1599 +#: ../../Zotlabs/Storage/Browser.php:164 ../../Zotlabs/Module/Photos.php:798 +#: ../../Zotlabs/Module/Photos.php:1243 ../../Zotlabs/Lib/Apps.php:486 +#: ../../Zotlabs/Lib/Apps.php:561 ../../include/widgets.php:1505 +#: ../../include/conversation.php:1032 msgid "Unknown" msgstr "Desconegut" #: ../../Zotlabs/Storage/Browser.php:226 ../../Zotlabs/Module/Fbrowser.php:85 -#: ../../Zotlabs/Lib/Apps.php:217 ../../include/nav.php:93 -#: ../../include/conversation.php:1654 +#: ../../Zotlabs/Lib/Apps.php:216 ../../include/nav.php:93 +#: ../../include/conversation.php:1639 msgid "Files" msgstr "Arxius" @@ -217,23 +71,22 @@ msgid "Shared" msgstr "Compartit" #: ../../Zotlabs/Storage/Browser.php:230 ../../Zotlabs/Storage/Browser.php:306 -#: ../../Zotlabs/Module/Layouts.php:184 ../../Zotlabs/Module/Menu.php:118 -#: ../../Zotlabs/Module/New_channel.php:142 -#: ../../Zotlabs/Module/Blocks.php:159 ../../Zotlabs/Module/Webpages.php:193 +#: ../../Zotlabs/Module/Blocks.php:156 ../../Zotlabs/Module/Layouts.php:182 +#: ../../Zotlabs/Module/Menu.php:118 ../../Zotlabs/Module/New_channel.php:142 +#: ../../Zotlabs/Module/Webpages.php:186 msgid "Create" msgstr "Crear" #: ../../Zotlabs/Storage/Browser.php:231 ../../Zotlabs/Storage/Browser.php:308 #: ../../Zotlabs/Module/Cover_photo.php:357 -#: ../../Zotlabs/Module/Photos.php:823 ../../Zotlabs/Module/Photos.php:1362 -#: ../../Zotlabs/Module/Profile_photo.php:390 -#: ../../Zotlabs/Module/Embedphotos.php:159 ../../include/widgets.php:1612 +#: ../../Zotlabs/Module/Photos.php:825 ../../Zotlabs/Module/Photos.php:1364 +#: ../../Zotlabs/Module/Profile_photo.php:368 ../../include/widgets.php:1518 msgid "Upload" msgstr "Pujar" #: ../../Zotlabs/Storage/Browser.php:235 ../../Zotlabs/Module/Chat.php:247 -#: ../../Zotlabs/Module/Admin.php:1223 ../../Zotlabs/Module/Settings.php:646 -#: ../../Zotlabs/Module/Settings.php:672 +#: ../../Zotlabs/Module/Admin.php:1223 ../../Zotlabs/Module/Settings.php:592 +#: ../../Zotlabs/Module/Settings.php:618 #: ../../Zotlabs/Module/Sharedwithme.php:99 msgid "Name" msgstr "Nom" @@ -243,7 +96,7 @@ msgid "Type" msgstr "Tipus" #: ../../Zotlabs/Storage/Browser.php:237 -#: ../../Zotlabs/Module/Sharedwithme.php:101 ../../include/text.php:1324 +#: ../../Zotlabs/Module/Sharedwithme.php:101 ../../include/text.php:1344 msgid "Size" msgstr "Mida" @@ -252,32 +105,34 @@ msgstr "Mida" msgid "Last Modified" msgstr "Últim Modificat" -#: ../../Zotlabs/Storage/Browser.php:240 ../../Zotlabs/Module/Editpost.php:84 +#: ../../Zotlabs/Storage/Browser.php:240 ../../Zotlabs/Module/Blocks.php:157 +#: ../../Zotlabs/Module/Editblock.php:109 #: ../../Zotlabs/Module/Connections.php:290 #: ../../Zotlabs/Module/Connections.php:310 -#: ../../Zotlabs/Module/Editlayout.php:114 -#: ../../Zotlabs/Module/Editwebpage.php:145 -#: ../../Zotlabs/Module/Layouts.php:192 ../../Zotlabs/Module/Menu.php:112 -#: ../../Zotlabs/Module/Admin.php:2113 ../../Zotlabs/Module/Blocks.php:160 -#: ../../Zotlabs/Module/Editblock.php:109 -#: ../../Zotlabs/Module/Settings.php:706 ../../Zotlabs/Module/Thing.php:260 -#: ../../Zotlabs/Module/Webpages.php:194 ../../Zotlabs/Lib/Apps.php:341 -#: ../../Zotlabs/Lib/ThreadItem.php:106 ../../include/page_widgets.php:9 -#: ../../include/page_widgets.php:39 ../../include/channel.php:976 -#: ../../include/channel.php:980 ../../include/menu.php:108 +#: ../../Zotlabs/Module/Editpost.php:84 +#: ../../Zotlabs/Module/Editlayout.php:113 +#: ../../Zotlabs/Module/Editwebpage.php:146 +#: ../../Zotlabs/Module/Layouts.php:190 ../../Zotlabs/Module/Menu.php:112 +#: ../../Zotlabs/Module/Admin.php:2113 ../../Zotlabs/Module/Settings.php:652 +#: ../../Zotlabs/Module/Thing.php:260 ../../Zotlabs/Module/Webpages.php:187 +#: ../../Zotlabs/Lib/Apps.php:337 ../../Zotlabs/Lib/ThreadItem.php:106 +#: ../../include/channel.php:937 ../../include/channel.php:941 +#: ../../include/menu.php:108 ../../include/page_widgets.php:8 +#: ../../include/page_widgets.php:36 msgid "Edit" msgstr "Edita" -#: ../../Zotlabs/Storage/Browser.php:241 ../../Zotlabs/Module/Connedit.php:602 +#: ../../Zotlabs/Storage/Browser.php:241 ../../Zotlabs/Module/Blocks.php:159 +#: ../../Zotlabs/Module/Connedit.php:572 +#: ../../Zotlabs/Module/Editblock.php:134 #: ../../Zotlabs/Module/Connections.php:263 -#: ../../Zotlabs/Module/Editlayout.php:137 -#: ../../Zotlabs/Module/Editwebpage.php:169 ../../Zotlabs/Module/Group.php:177 -#: ../../Zotlabs/Module/Photos.php:1171 ../../Zotlabs/Module/Admin.php:1039 +#: ../../Zotlabs/Module/Editlayout.php:136 +#: ../../Zotlabs/Module/Editwebpage.php:170 ../../Zotlabs/Module/Group.php:177 +#: ../../Zotlabs/Module/Photos.php:1173 ../../Zotlabs/Module/Admin.php:1039 #: ../../Zotlabs/Module/Admin.php:1213 ../../Zotlabs/Module/Admin.php:2114 -#: ../../Zotlabs/Module/Blocks.php:162 ../../Zotlabs/Module/Editblock.php:134 -#: ../../Zotlabs/Module/Settings.php:707 ../../Zotlabs/Module/Thing.php:261 -#: ../../Zotlabs/Module/Webpages.php:196 ../../Zotlabs/Lib/Apps.php:342 -#: ../../Zotlabs/Lib/ThreadItem.php:126 ../../include/conversation.php:660 +#: ../../Zotlabs/Module/Settings.php:653 ../../Zotlabs/Module/Thing.php:261 +#: ../../Zotlabs/Module/Webpages.php:189 ../../Zotlabs/Lib/Apps.php:338 +#: ../../Zotlabs/Lib/ThreadItem.php:126 ../../include/conversation.php:657 msgid "Delete" msgstr "Esborra" @@ -303,73 +158,74 @@ msgstr "Crea una nova carpeta" msgid "Upload file" msgstr "Puja arxiu" -#: ../../Zotlabs/Web/WebServer.php:127 ../../Zotlabs/Module/Dreport.php:10 -#: ../../Zotlabs/Module/Dreport.php:66 ../../Zotlabs/Module/Group.php:72 -#: ../../Zotlabs/Module/Like.php:283 ../../Zotlabs/Module/Import_items.php:114 +#: ../../Zotlabs/Web/WebServer.php:120 ../../Zotlabs/Module/Dreport.php:10 +#: ../../Zotlabs/Module/Dreport.php:49 ../../Zotlabs/Module/Group.php:72 +#: ../../Zotlabs/Module/Like.php:284 ../../Zotlabs/Module/Import_items.php:112 #: ../../Zotlabs/Module/Profperm.php:28 ../../Zotlabs/Module/Subthread.php:62 -#: ../../include/items.php:384 +#: ../../include/items.php:385 msgid "Permission denied" msgstr "Permís denegat" -#: ../../Zotlabs/Web/WebServer.php:128 ../../Zotlabs/Web/Router.php:65 -#: ../../Zotlabs/Module/Achievements.php:34 -#: ../../Zotlabs/Module/Connedit.php:390 ../../Zotlabs/Module/Id.php:76 -#: ../../Zotlabs/Module/Authtest.php:16 ../../Zotlabs/Module/Events.php:264 -#: ../../Zotlabs/Module/Bookmarks.php:61 ../../Zotlabs/Module/Editpost.php:17 -#: ../../Zotlabs/Module/Page.php:35 ../../Zotlabs/Module/Page.php:91 -#: ../../Zotlabs/Module/Connections.php:33 +#: ../../Zotlabs/Web/WebServer.php:121 ../../Zotlabs/Web/Router.php:65 +#: ../../Zotlabs/Module/Achievements.php:34 ../../Zotlabs/Module/Blocks.php:73 +#: ../../Zotlabs/Module/Blocks.php:80 ../../Zotlabs/Module/Channel.php:105 +#: ../../Zotlabs/Module/Channel.php:226 ../../Zotlabs/Module/Channel.php:267 +#: ../../Zotlabs/Module/Chat.php:100 ../../Zotlabs/Module/Chat.php:105 +#: ../../Zotlabs/Module/Authtest.php:16 ../../Zotlabs/Module/Block.php:26 +#: ../../Zotlabs/Module/Block.php:76 ../../Zotlabs/Module/Bookmarks.php:61 +#: ../../Zotlabs/Module/Connedit.php:366 ../../Zotlabs/Module/Editblock.php:67 +#: ../../Zotlabs/Module/Common.php:39 ../../Zotlabs/Module/Connections.php:33 #: ../../Zotlabs/Module/Cover_photo.php:277 -#: ../../Zotlabs/Module/Cover_photo.php:290 ../../Zotlabs/Module/Chat.php:100 -#: ../../Zotlabs/Module/Chat.php:105 ../../Zotlabs/Module/Editlayout.php:67 +#: ../../Zotlabs/Module/Cover_photo.php:290 +#: ../../Zotlabs/Module/Editpost.php:17 ../../Zotlabs/Module/Events.php:265 +#: ../../Zotlabs/Module/Editlayout.php:67 #: ../../Zotlabs/Module/Editlayout.php:90 -#: ../../Zotlabs/Module/Editwebpage.php:68 -#: ../../Zotlabs/Module/Editwebpage.php:89 -#: ../../Zotlabs/Module/Editwebpage.php:104 -#: ../../Zotlabs/Module/Editwebpage.php:126 ../../Zotlabs/Module/Group.php:13 -#: ../../Zotlabs/Module/Appman.php:75 ../../Zotlabs/Module/Pdledit.php:26 -#: ../../Zotlabs/Module/Filestorage.php:23 -#: ../../Zotlabs/Module/Filestorage.php:78 -#: ../../Zotlabs/Module/Filestorage.php:93 -#: ../../Zotlabs/Module/Filestorage.php:120 +#: ../../Zotlabs/Module/Editwebpage.php:69 +#: ../../Zotlabs/Module/Editwebpage.php:90 +#: ../../Zotlabs/Module/Editwebpage.php:105 +#: ../../Zotlabs/Module/Editwebpage.php:127 ../../Zotlabs/Module/Group.php:13 +#: ../../Zotlabs/Module/Api.php:13 ../../Zotlabs/Module/Api.php:18 +#: ../../Zotlabs/Module/Filestorage.php:24 +#: ../../Zotlabs/Module/Filestorage.php:79 +#: ../../Zotlabs/Module/Filestorage.php:94 +#: ../../Zotlabs/Module/Filestorage.php:121 ../../Zotlabs/Module/Item.php:210 +#: ../../Zotlabs/Module/Item.php:218 ../../Zotlabs/Module/Item.php:1070 #: ../../Zotlabs/Module/Layouts.php:71 ../../Zotlabs/Module/Layouts.php:78 -#: ../../Zotlabs/Module/Layouts.php:89 ../../Zotlabs/Module/Like.php:181 -#: ../../Zotlabs/Module/Profiles.php:203 ../../Zotlabs/Module/Profiles.php:601 -#: ../../Zotlabs/Module/Item.php:213 ../../Zotlabs/Module/Item.php:221 -#: ../../Zotlabs/Module/Item.php:1071 ../../Zotlabs/Module/Photos.php:73 -#: ../../Zotlabs/Module/Invite.php:17 ../../Zotlabs/Module/Invite.php:91 -#: ../../Zotlabs/Module/Locs.php:87 ../../Zotlabs/Module/Mail.php:121 -#: ../../Zotlabs/Module/Manage.php:10 ../../Zotlabs/Module/Menu.php:78 -#: ../../Zotlabs/Module/Message.php:18 ../../Zotlabs/Module/Mood.php:116 -#: ../../Zotlabs/Module/Network.php:15 ../../Zotlabs/Module/Channel.php:104 -#: ../../Zotlabs/Module/Channel.php:225 ../../Zotlabs/Module/Channel.php:266 +#: ../../Zotlabs/Module/Layouts.php:89 ../../Zotlabs/Module/Id.php:76 +#: ../../Zotlabs/Module/Like.php:181 ../../Zotlabs/Module/Invite.php:17 +#: ../../Zotlabs/Module/Invite.php:91 ../../Zotlabs/Module/Locs.php:87 +#: ../../Zotlabs/Module/Mail.php:129 ../../Zotlabs/Module/Manage.php:10 +#: ../../Zotlabs/Module/Menu.php:78 ../../Zotlabs/Module/Message.php:18 +#: ../../Zotlabs/Module/Mood.php:116 ../../Zotlabs/Module/Network.php:17 #: ../../Zotlabs/Module/Mitem.php:115 ../../Zotlabs/Module/New_channel.php:77 #: ../../Zotlabs/Module/New_channel.php:104 -#: ../../Zotlabs/Module/Notifications.php:70 ../../Zotlabs/Module/Poke.php:137 -#: ../../Zotlabs/Module/Profile.php:68 ../../Zotlabs/Module/Profile.php:76 -#: ../../Zotlabs/Module/Block.php:26 ../../Zotlabs/Module/Block.php:76 -#: ../../Zotlabs/Module/Profile_photo.php:265 -#: ../../Zotlabs/Module/Profile_photo.php:278 -#: ../../Zotlabs/Module/Blocks.php:73 ../../Zotlabs/Module/Blocks.php:80 -#: ../../Zotlabs/Module/Rate.php:113 ../../Zotlabs/Module/Editblock.php:67 -#: ../../Zotlabs/Module/Common.php:39 ../../Zotlabs/Module/Register.php:77 -#: ../../Zotlabs/Module/Regmod.php:21 +#: ../../Zotlabs/Module/Notifications.php:70 +#: ../../Zotlabs/Module/Photos.php:75 ../../Zotlabs/Module/Page.php:35 +#: ../../Zotlabs/Module/Page.php:90 ../../Zotlabs/Module/Pdledit.php:26 +#: ../../Zotlabs/Module/Poke.php:137 ../../Zotlabs/Module/Profile.php:68 +#: ../../Zotlabs/Module/Profile.php:76 ../../Zotlabs/Module/Profiles.php:203 +#: ../../Zotlabs/Module/Profiles.php:601 +#: ../../Zotlabs/Module/Profile_photo.php:256 +#: ../../Zotlabs/Module/Profile_photo.php:269 +#: ../../Zotlabs/Module/Rate.php:113 ../../Zotlabs/Module/Appman.php:75 +#: ../../Zotlabs/Module/Register.php:77 ../../Zotlabs/Module/Regmod.php:21 #: ../../Zotlabs/Module/Service_limits.php:11 -#: ../../Zotlabs/Module/Settings.php:626 ../../Zotlabs/Module/Setup.php:215 -#: ../../Zotlabs/Module/Sharedwithme.php:11 ../../Zotlabs/Module/Thing.php:274 -#: ../../Zotlabs/Module/Thing.php:294 ../../Zotlabs/Module/Thing.php:331 +#: ../../Zotlabs/Module/Settings.php:572 ../../Zotlabs/Module/Setup.php:215 +#: ../../Zotlabs/Module/Sharedwithme.php:11 #: ../../Zotlabs/Module/Sources.php:74 ../../Zotlabs/Module/Suggest.php:30 -#: ../../Zotlabs/Module/Webpages.php:73 -#: ../../Zotlabs/Module/Viewconnections.php:28 -#: ../../Zotlabs/Module/Viewconnections.php:33 -#: ../../Zotlabs/Module/Viewsrc.php:18 ../../Zotlabs/Module/Api.php:13 -#: ../../Zotlabs/Module/Api.php:18 ../../Zotlabs/Lib/Chatroom.php:137 -#: ../../include/photos.php:27 ../../include/attach.php:141 -#: ../../include/attach.php:189 ../../include/attach.php:252 -#: ../../include/attach.php:266 ../../include/attach.php:273 -#: ../../include/attach.php:338 ../../include/attach.php:352 -#: ../../include/attach.php:359 ../../include/attach.php:439 -#: ../../include/attach.php:901 ../../include/attach.php:972 -#: ../../include/attach.php:1124 ../../include/items.php:3448 +#: ../../Zotlabs/Module/Thing.php:274 ../../Zotlabs/Module/Thing.php:294 +#: ../../Zotlabs/Module/Thing.php:331 +#: ../../Zotlabs/Module/Viewconnections.php:25 +#: ../../Zotlabs/Module/Viewconnections.php:30 +#: ../../Zotlabs/Module/Viewsrc.php:18 ../../Zotlabs/Module/Webpages.php:74 +#: ../../Zotlabs/Lib/Chatroom.php:137 ../../include/items.php:3438 +#: ../../include/attach.php:141 ../../include/attach.php:189 +#: ../../include/attach.php:252 ../../include/attach.php:266 +#: ../../include/attach.php:273 ../../include/attach.php:338 +#: ../../include/attach.php:352 ../../include/attach.php:359 +#: ../../include/attach.php:437 ../../include/attach.php:895 +#: ../../include/attach.php:966 ../../include/attach.php:1118 +#: ../../include/photos.php:27 msgid "Permission denied." msgstr "Permís denegat." @@ -377,9 +233,9 @@ msgstr "Permís denegat." msgid "Not Found" msgstr "No s'ha pogut trobar la pàgina" -#: ../../Zotlabs/Web/Router.php:149 ../../Zotlabs/Module/Display.php:118 -#: ../../Zotlabs/Module/Page.php:94 ../../Zotlabs/Module/Help.php:97 -#: ../../Zotlabs/Module/Block.php:79 +#: ../../Zotlabs/Web/Router.php:149 ../../Zotlabs/Module/Block.php:79 +#: ../../Zotlabs/Module/Display.php:117 ../../Zotlabs/Module/Help.php:97 +#: ../../Zotlabs/Module/Page.php:93 msgid "Page not found." msgstr "Pàgina no trobada." @@ -395,13 +251,13 @@ msgstr "Autenticació remota bloquejada. Ha iniciat sessió en aquest lloc a niv msgid "Welcome %s. Remote authentication successful." msgstr "Benvingut %s. Autenticació remota reeixida." -#: ../../Zotlabs/Module/Achievements.php:15 -#: ../../Zotlabs/Module/Connect.php:17 ../../Zotlabs/Module/Editlayout.php:31 -#: ../../Zotlabs/Module/Editwebpage.php:32 ../../Zotlabs/Module/Hcard.php:12 -#: ../../Zotlabs/Module/Filestorage.php:59 ../../Zotlabs/Module/Layouts.php:31 -#: ../../Zotlabs/Module/Profile.php:20 ../../Zotlabs/Module/Blocks.php:33 -#: ../../Zotlabs/Module/Editblock.php:31 ../../Zotlabs/Module/Webpages.php:33 -#: ../../include/channel.php:876 +#: ../../Zotlabs/Module/Achievements.php:15 ../../Zotlabs/Module/Blocks.php:33 +#: ../../Zotlabs/Module/Connect.php:17 ../../Zotlabs/Module/Editblock.php:31 +#: ../../Zotlabs/Module/Editlayout.php:31 +#: ../../Zotlabs/Module/Editwebpage.php:33 +#: ../../Zotlabs/Module/Filestorage.php:60 ../../Zotlabs/Module/Hcard.php:12 +#: ../../Zotlabs/Module/Layouts.php:31 ../../Zotlabs/Module/Profile.php:20 +#: ../../Zotlabs/Module/Webpages.php:34 ../../include/channel.php:837 msgid "Requested profile is not available." msgstr "El perfil demanat no està disponible." @@ -409,6 +265,229 @@ msgstr "El perfil demanat no està disponible." msgid "Some blurb about what to do when you're new here" msgstr "Algunes propostes sobre el que cal fer quan ets nou aquí" +#: ../../Zotlabs/Module/Blocks.php:97 ../../Zotlabs/Module/Blocks.php:152 +#: ../../Zotlabs/Module/Editblock.php:108 +msgid "Block Name" +msgstr "Nom del Bloc" + +#: ../../Zotlabs/Module/Blocks.php:151 ../../include/text.php:2265 +msgid "Blocks" +msgstr "Bloc" + +#: ../../Zotlabs/Module/Blocks.php:153 +msgid "Block Title" +msgstr "Títol del bloc" + +#: ../../Zotlabs/Module/Blocks.php:154 ../../Zotlabs/Module/Layouts.php:188 +#: ../../Zotlabs/Module/Menu.php:114 ../../Zotlabs/Module/Webpages.php:198 +#: ../../include/page_widgets.php:44 +msgid "Created" +msgstr "Creat" + +#: ../../Zotlabs/Module/Blocks.php:155 ../../Zotlabs/Module/Layouts.php:189 +#: ../../Zotlabs/Module/Menu.php:115 ../../Zotlabs/Module/Webpages.php:199 +#: ../../include/page_widgets.php:45 +msgid "Edited" +msgstr "Editat" + +#: ../../Zotlabs/Module/Blocks.php:158 ../../Zotlabs/Module/Layouts.php:191 +#: ../../Zotlabs/Module/Photos.php:1072 ../../Zotlabs/Module/Webpages.php:188 +#: ../../include/conversation.php:1208 +msgid "Share" +msgstr "Compartir" + +#: ../../Zotlabs/Module/Blocks.php:163 ../../Zotlabs/Module/Layouts.php:195 +#: ../../Zotlabs/Module/Pubsites.php:47 ../../Zotlabs/Module/Webpages.php:193 +#: ../../include/page_widgets.php:39 +msgid "View" +msgstr "Mostra" + +#: ../../Zotlabs/Module/Cal.php:62 ../../Zotlabs/Module/Block.php:43 +#: ../../Zotlabs/Module/Page.php:56 ../../Zotlabs/Module/Wall_upload.php:33 +msgid "Channel not found." +msgstr "Canal no trobat." + +#: ../../Zotlabs/Module/Cal.php:69 +msgid "Permissions denied." +msgstr "Permís denegat." + +#: ../../Zotlabs/Module/Cal.php:259 ../../Zotlabs/Module/Events.php:588 +msgid "l, F j" +msgstr "l, F j" + +#: ../../Zotlabs/Module/Cal.php:308 ../../Zotlabs/Module/Events.php:637 +#: ../../include/text.php:1732 +msgid "Link to Source" +msgstr "Enllaç a la Font" + +#: ../../Zotlabs/Module/Cal.php:331 ../../Zotlabs/Module/Events.php:665 +msgid "Edit Event" +msgstr "Editar l'Esdeveniment" + +#: ../../Zotlabs/Module/Cal.php:331 ../../Zotlabs/Module/Events.php:665 +msgid "Create Event" +msgstr "Crear Esdeveniment" + +#: ../../Zotlabs/Module/Cal.php:332 ../../Zotlabs/Module/Cal.php:339 +#: ../../Zotlabs/Module/Events.php:666 ../../Zotlabs/Module/Events.php:673 +#: ../../Zotlabs/Module/Photos.php:949 +msgid "Previous" +msgstr "Anterior" + +#: ../../Zotlabs/Module/Cal.php:333 ../../Zotlabs/Module/Cal.php:340 +#: ../../Zotlabs/Module/Events.php:667 ../../Zotlabs/Module/Events.php:674 +#: ../../Zotlabs/Module/Photos.php:958 ../../Zotlabs/Module/Setup.php:267 +msgid "Next" +msgstr "Pròxim" + +#: ../../Zotlabs/Module/Cal.php:334 ../../Zotlabs/Module/Events.php:668 +#: ../../include/widgets.php:755 +msgid "Export" +msgstr "Exporta" + +#: ../../Zotlabs/Module/Cal.php:337 ../../Zotlabs/Module/Events.php:671 +#: ../../include/widgets.php:756 +msgid "Import" +msgstr "Importar" + +#: ../../Zotlabs/Module/Cal.php:338 ../../Zotlabs/Module/Chat.php:196 +#: ../../Zotlabs/Module/Chat.php:238 ../../Zotlabs/Module/Connect.php:98 +#: ../../Zotlabs/Module/Connedit.php:731 ../../Zotlabs/Module/Events.php:475 +#: ../../Zotlabs/Module/Events.php:672 ../../Zotlabs/Module/Group.php:85 +#: ../../Zotlabs/Module/Filestorage.php:162 +#: ../../Zotlabs/Module/Import.php:550 +#: ../../Zotlabs/Module/Import_items.php:120 +#: ../../Zotlabs/Module/Invite.php:146 ../../Zotlabs/Module/Locs.php:121 +#: ../../Zotlabs/Module/Mail.php:378 ../../Zotlabs/Module/Mood.php:139 +#: ../../Zotlabs/Module/Mitem.php:235 ../../Zotlabs/Module/Photos.php:677 +#: ../../Zotlabs/Module/Photos.php:1052 ../../Zotlabs/Module/Photos.php:1092 +#: ../../Zotlabs/Module/Photos.php:1210 ../../Zotlabs/Module/Pconfig.php:107 +#: ../../Zotlabs/Module/Pdledit.php:66 ../../Zotlabs/Module/Poke.php:186 +#: ../../Zotlabs/Module/Profiles.php:687 ../../Zotlabs/Module/Rate.php:170 +#: ../../Zotlabs/Module/Admin.php:492 ../../Zotlabs/Module/Admin.php:688 +#: ../../Zotlabs/Module/Admin.php:771 ../../Zotlabs/Module/Admin.php:1032 +#: ../../Zotlabs/Module/Admin.php:1211 ../../Zotlabs/Module/Admin.php:1421 +#: ../../Zotlabs/Module/Admin.php:1648 ../../Zotlabs/Module/Admin.php:1733 +#: ../../Zotlabs/Module/Admin.php:2116 ../../Zotlabs/Module/Appman.php:126 +#: ../../Zotlabs/Module/Settings.php:590 ../../Zotlabs/Module/Settings.php:703 +#: ../../Zotlabs/Module/Settings.php:731 ../../Zotlabs/Module/Settings.php:754 +#: ../../Zotlabs/Module/Settings.php:842 +#: ../../Zotlabs/Module/Settings.php:1034 ../../Zotlabs/Module/Setup.php:312 +#: ../../Zotlabs/Module/Setup.php:353 ../../Zotlabs/Module/Sources.php:114 +#: ../../Zotlabs/Module/Sources.php:149 ../../Zotlabs/Module/Thing.php:316 +#: ../../Zotlabs/Module/Thing.php:362 ../../Zotlabs/Module/Xchan.php:15 +#: ../../Zotlabs/Lib/ThreadItem.php:710 ../../include/widgets.php:757 +#: ../../include/widgets.php:769 ../../include/js_strings.php:22 +#: ../../view/theme/redbasic/php/config.php:99 +msgid "Submit" +msgstr "Enviar" + +#: ../../Zotlabs/Module/Cal.php:341 ../../Zotlabs/Module/Events.php:675 +msgid "Today" +msgstr "Avui" + +#: ../../Zotlabs/Module/Channel.php:29 ../../Zotlabs/Module/Chat.php:25 +msgid "You must be logged in to see this page." +msgstr "Has d'estar identificat per a veure aquesta pàgina." + +#: ../../Zotlabs/Module/Channel.php:41 +msgid "Posts and comments" +msgstr "Entrades i comentaris" + +#: ../../Zotlabs/Module/Channel.php:42 +msgid "Only posts" +msgstr "Només entrades" + +#: ../../Zotlabs/Module/Channel.php:102 +msgid "Insufficient permissions. Request redirected to profile page." +msgstr "Permisos insuficients. Petició redirigida a la pàgina del perfil." + +#: ../../Zotlabs/Module/Chat.php:181 +msgid "Room not found" +msgstr "No s'ha trobat la sala" + +#: ../../Zotlabs/Module/Chat.php:197 +msgid "Leave Room" +msgstr "Abandona la sala" + +#: ../../Zotlabs/Module/Chat.php:198 +msgid "Delete Room" +msgstr "Esborra Sala" + +#: ../../Zotlabs/Module/Chat.php:199 +msgid "I am away right now" +msgstr "Absent" + +#: ../../Zotlabs/Module/Chat.php:200 +msgid "I am online" +msgstr "Estic connectat/da" + +#: ../../Zotlabs/Module/Chat.php:202 +msgid "Bookmark this room" +msgstr "Fes favorit aquest xat" + +#: ../../Zotlabs/Module/Chat.php:205 ../../Zotlabs/Module/Mail.php:205 +#: ../../Zotlabs/Module/Mail.php:314 ../../include/conversation.php:1176 +msgid "Please enter a link URL:" +msgstr "Si us plau entra l'enllaç URL:" + +#: ../../Zotlabs/Module/Chat.php:206 ../../Zotlabs/Module/Mail.php:258 +#: ../../Zotlabs/Module/Mail.php:383 ../../Zotlabs/Lib/ThreadItem.php:722 +#: ../../include/conversation.php:1256 +msgid "Encrypt text" +msgstr "Text encriptat" + +#: ../../Zotlabs/Module/Chat.php:207 ../../Zotlabs/Module/Editblock.php:111 +#: ../../Zotlabs/Module/Editwebpage.php:147 ../../Zotlabs/Module/Mail.php:252 +#: ../../Zotlabs/Module/Mail.php:377 ../../include/conversation.php:1143 +msgid "Insert web link" +msgstr "Insereix enllaç web" + +#: ../../Zotlabs/Module/Chat.php:218 +msgid "Feature disabled." +msgstr "Funcionalitat desactivada." + +#: ../../Zotlabs/Module/Chat.php:232 +msgid "New Chatroom" +msgstr "Nova sala per a Xerrar" + +#: ../../Zotlabs/Module/Chat.php:233 +msgid "Chatroom name" +msgstr "Nom de la sala de xat" + +#: ../../Zotlabs/Module/Chat.php:234 +msgid "Expiration of chats (minutes)" +msgstr "Expiració dels chats (minuts)" + +#: ../../Zotlabs/Module/Chat.php:235 ../../Zotlabs/Module/Filestorage.php:153 +#: ../../Zotlabs/Module/Photos.php:671 ../../Zotlabs/Module/Photos.php:1045 +#: ../../Zotlabs/Module/Thing.php:313 ../../Zotlabs/Module/Thing.php:359 +#: ../../include/acl_selectors.php:283 +msgid "Permissions" +msgstr "Permisos " + +#: ../../Zotlabs/Module/Chat.php:246 +#, php-format +msgid "%1$s's Chatrooms" +msgstr "%1$s de Xats" + +#: ../../Zotlabs/Module/Chat.php:251 +msgid "No chatrooms available" +msgstr "No hi ha sales de xat disponibles" + +#: ../../Zotlabs/Module/Chat.php:252 ../../Zotlabs/Module/Manage.php:143 +#: ../../Zotlabs/Module/Profiles.php:778 +msgid "Create New" +msgstr "Crear Nou" + +#: ../../Zotlabs/Module/Chat.php:255 +msgid "Expiration" +msgstr "Expiració" + +#: ../../Zotlabs/Module/Chat.php:256 +msgid "min" +msgstr "min" + #: ../../Zotlabs/Module/Chatsvc.php:117 msgid "Away" msgstr "Absent" @@ -417,6 +496,65 @@ msgstr "Absent" msgid "Online" msgstr "En connexió" +#: ../../Zotlabs/Module/Block.php:31 ../../Zotlabs/Module/Page.php:40 +msgid "Invalid item." +msgstr "Article invàlid." + +#: ../../Zotlabs/Module/Bookmarks.php:53 +msgid "Bookmark added" +msgstr "Favorit afegit" + +#: ../../Zotlabs/Module/Bookmarks.php:75 +msgid "My Bookmarks" +msgstr "Els Meus Favorits" + +#: ../../Zotlabs/Module/Bookmarks.php:86 +msgid "My Connections Bookmarks" +msgstr "Les connexions dels meus Favorits" + +#: ../../Zotlabs/Module/Connect.php:61 ../../Zotlabs/Module/Connect.php:109 +msgid "Continue" +msgstr "Continua" + +#: ../../Zotlabs/Module/Connect.php:90 +msgid "Premium Channel Setup" +msgstr "Configuració de Canals Premium" + +#: ../../Zotlabs/Module/Connect.php:92 +msgid "Enable premium channel connection restrictions" +msgstr "Habilita les restriccions de connexió del canal premium" + +#: ../../Zotlabs/Module/Connect.php:93 +msgid "" +"Please enter your restrictions or conditions, such as paypal receipt, usage " +"guidelines, etc." +msgstr "Si us plau, introdueixi les restriccions o condicions, com ara el rebut de PayPal, les pautes d'ús, etc." + +#: ../../Zotlabs/Module/Connect.php:95 ../../Zotlabs/Module/Connect.php:115 +msgid "" +"This channel may require additional steps or acknowledgement of the " +"following conditions prior to connecting:" +msgstr "Aquest canal pot requerir passos addicionals o reconeixement de les següents condicions abans de connectar:" + +#: ../../Zotlabs/Module/Connect.php:96 +msgid "" +"Potential connections will then see the following text before proceeding:" +msgstr "Connexions potencials veuran el següent text abans de continuar:" + +#: ../../Zotlabs/Module/Connect.php:97 ../../Zotlabs/Module/Connect.php:118 +msgid "" +"By continuing, I certify that I have complied with any instructions provided" +" on this page." +msgstr "En continuar, certifico que he complert amb totes les instruccions proporcionades en aquesta pàgina." + +#: ../../Zotlabs/Module/Connect.php:106 +msgid "(No specific instructions have been provided by the channel owner.)" +msgstr "(No s'han proporcionat instruccions específiques pel propietari del canal.)" + +#: ../../Zotlabs/Module/Connect.php:114 +msgid "Restricted or Premium Channel" +msgstr "Canal Restringit o Premium" + #: ../../Zotlabs/Module/Connedit.php:80 msgid "Could not access contact record." msgstr "No s'ha pogut accedir al llibre de contactes." @@ -425,350 +563,317 @@ msgstr "No s'ha pogut accedir al llibre de contactes." msgid "Could not locate selected profile." msgstr "No s'ha trobat el perfil indicat." -#: ../../Zotlabs/Module/Connedit.php:248 +#: ../../Zotlabs/Module/Connedit.php:227 msgid "Connection updated." msgstr "S'ha actualitzat la connexió." -#: ../../Zotlabs/Module/Connedit.php:250 +#: ../../Zotlabs/Module/Connedit.php:229 msgid "Failed to update connection record." msgstr "No s'ha pogut actualitzar el registre de connexió." -#: ../../Zotlabs/Module/Connedit.php:300 +#: ../../Zotlabs/Module/Connedit.php:276 msgid "is now connected to" msgstr "Ara està conectat amb" -#: ../../Zotlabs/Module/Connedit.php:403 ../../Zotlabs/Module/Connedit.php:685 -#: ../../Zotlabs/Module/Events.php:458 ../../Zotlabs/Module/Events.php:459 -#: ../../Zotlabs/Module/Events.php:468 -#: ../../Zotlabs/Module/Filestorage.php:156 -#: ../../Zotlabs/Module/Filestorage.php:164 -#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Photos.php:664 -#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 -#: ../../Zotlabs/Module/Mitem.php:158 ../../Zotlabs/Module/Mitem.php:159 -#: ../../Zotlabs/Module/Mitem.php:232 ../../Zotlabs/Module/Mitem.php:233 -#: ../../Zotlabs/Module/Admin.php:459 ../../Zotlabs/Module/Removeme.php:63 -#: ../../Zotlabs/Module/Settings.php:635 ../../Zotlabs/Module/Api.php:89 +#: ../../Zotlabs/Module/Connedit.php:379 ../../Zotlabs/Module/Connedit.php:654 +#: ../../Zotlabs/Module/Events.php:459 ../../Zotlabs/Module/Events.php:460 +#: ../../Zotlabs/Module/Events.php:469 ../../Zotlabs/Module/Api.php:89 +#: ../../Zotlabs/Module/Filestorage.php:157 +#: ../../Zotlabs/Module/Filestorage.php:165 ../../Zotlabs/Module/Menu.php:100 +#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Mitem.php:158 +#: ../../Zotlabs/Module/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:232 +#: ../../Zotlabs/Module/Mitem.php:233 ../../Zotlabs/Module/Photos.php:666 +#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Admin.php:459 +#: ../../Zotlabs/Module/Removeme.php:61 ../../Zotlabs/Module/Settings.php:581 #: ../../include/dir_fns.php:143 ../../include/dir_fns.php:144 #: ../../include/dir_fns.php:145 ../../view/theme/redbasic/php/config.php:105 -#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1708 +#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1707 msgid "No" msgstr "No" -#: ../../Zotlabs/Module/Connedit.php:403 ../../Zotlabs/Module/Events.php:458 -#: ../../Zotlabs/Module/Events.php:459 ../../Zotlabs/Module/Events.php:468 -#: ../../Zotlabs/Module/Filestorage.php:156 -#: ../../Zotlabs/Module/Filestorage.php:164 -#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Photos.php:664 -#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 -#: ../../Zotlabs/Module/Mitem.php:158 ../../Zotlabs/Module/Mitem.php:159 -#: ../../Zotlabs/Module/Mitem.php:232 ../../Zotlabs/Module/Mitem.php:233 -#: ../../Zotlabs/Module/Admin.php:461 ../../Zotlabs/Module/Removeme.php:63 -#: ../../Zotlabs/Module/Settings.php:635 ../../Zotlabs/Module/Api.php:88 +#: ../../Zotlabs/Module/Connedit.php:379 ../../Zotlabs/Module/Events.php:459 +#: ../../Zotlabs/Module/Events.php:460 ../../Zotlabs/Module/Events.php:469 +#: ../../Zotlabs/Module/Api.php:88 ../../Zotlabs/Module/Filestorage.php:157 +#: ../../Zotlabs/Module/Filestorage.php:165 ../../Zotlabs/Module/Menu.php:100 +#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Mitem.php:158 +#: ../../Zotlabs/Module/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:232 +#: ../../Zotlabs/Module/Mitem.php:233 ../../Zotlabs/Module/Photos.php:666 +#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Admin.php:461 +#: ../../Zotlabs/Module/Removeme.php:61 ../../Zotlabs/Module/Settings.php:581 #: ../../include/dir_fns.php:143 ../../include/dir_fns.php:144 #: ../../include/dir_fns.php:145 ../../view/theme/redbasic/php/config.php:105 -#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1708 +#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1707 msgid "Yes" msgstr "Sí" -#: ../../Zotlabs/Module/Connedit.php:435 +#: ../../Zotlabs/Module/Connedit.php:411 msgid "Could not access address book record." msgstr "No puc accedir al registre del contacte" -#: ../../Zotlabs/Module/Connedit.php:455 +#: ../../Zotlabs/Module/Connedit.php:425 msgid "Refresh failed - channel is currently unavailable." msgstr "Ha fallat la recàrrega - el canal es actualment inaccesible." -#: ../../Zotlabs/Module/Connedit.php:470 ../../Zotlabs/Module/Connedit.php:479 -#: ../../Zotlabs/Module/Connedit.php:488 ../../Zotlabs/Module/Connedit.php:497 -#: ../../Zotlabs/Module/Connedit.php:510 +#: ../../Zotlabs/Module/Connedit.php:440 ../../Zotlabs/Module/Connedit.php:449 +#: ../../Zotlabs/Module/Connedit.php:458 ../../Zotlabs/Module/Connedit.php:467 +#: ../../Zotlabs/Module/Connedit.php:480 msgid "Unable to set address book parameters." msgstr "No es poden ajustar els paràmetres dels contactes." -#: ../../Zotlabs/Module/Connedit.php:533 +#: ../../Zotlabs/Module/Connedit.php:503 msgid "Connection has been removed." msgstr "S'han eliminat les conexions." -#: ../../Zotlabs/Module/Connedit.php:549 ../../Zotlabs/Lib/Apps.php:221 -#: ../../include/nav.php:86 ../../include/conversation.php:957 +#: ../../Zotlabs/Module/Connedit.php:519 ../../Zotlabs/Lib/Apps.php:219 +#: ../../include/nav.php:86 ../../include/conversation.php:954 msgid "View Profile" msgstr "Veure Perfil" -#: ../../Zotlabs/Module/Connedit.php:552 +#: ../../Zotlabs/Module/Connedit.php:522 #, php-format msgid "View %s's profile" msgstr "Mostra el perfil de %s" -#: ../../Zotlabs/Module/Connedit.php:556 +#: ../../Zotlabs/Module/Connedit.php:526 msgid "Refresh Permissions" msgstr "Recarrega els Permissos" -#: ../../Zotlabs/Module/Connedit.php:559 +#: ../../Zotlabs/Module/Connedit.php:529 msgid "Fetch updated permissions" msgstr "Obté els permisos actualitzats" -#: ../../Zotlabs/Module/Connedit.php:563 +#: ../../Zotlabs/Module/Connedit.php:533 msgid "Recent Activity" msgstr "Activitat Recent" -#: ../../Zotlabs/Module/Connedit.php:566 +#: ../../Zotlabs/Module/Connedit.php:536 msgid "View recent posts and comments" msgstr "Mostra les entrades i comentaris recents" -#: ../../Zotlabs/Module/Connedit.php:570 ../../Zotlabs/Module/Admin.php:1041 +#: ../../Zotlabs/Module/Connedit.php:540 ../../Zotlabs/Module/Admin.php:1041 msgid "Unblock" msgstr "Desbloquejat" -#: ../../Zotlabs/Module/Connedit.php:570 ../../Zotlabs/Module/Admin.php:1040 +#: ../../Zotlabs/Module/Connedit.php:540 ../../Zotlabs/Module/Admin.php:1040 msgid "Block" msgstr "Bloquejat" -#: ../../Zotlabs/Module/Connedit.php:573 +#: ../../Zotlabs/Module/Connedit.php:543 msgid "Block (or Unblock) all communications with this connection" msgstr "Boqueja (o Desbloqueja) les comunicacions amb aquesta connexió" -#: ../../Zotlabs/Module/Connedit.php:574 +#: ../../Zotlabs/Module/Connedit.php:544 msgid "This connection is blocked!" msgstr "Aquesta connexió està bloquejada!" -#: ../../Zotlabs/Module/Connedit.php:578 +#: ../../Zotlabs/Module/Connedit.php:548 msgid "Unignore" msgstr "Inhabilita" -#: ../../Zotlabs/Module/Connedit.php:578 +#: ../../Zotlabs/Module/Connedit.php:548 #: ../../Zotlabs/Module/Connections.php:277 #: ../../Zotlabs/Module/Notifications.php:55 msgid "Ignore" msgstr "Ignora" -#: ../../Zotlabs/Module/Connedit.php:581 +#: ../../Zotlabs/Module/Connedit.php:551 msgid "Ignore (or Unignore) all inbound communications from this connection" msgstr "Ignora (o Considera) les communicacions entrants d'aquesta connexió" -#: ../../Zotlabs/Module/Connedit.php:582 +#: ../../Zotlabs/Module/Connedit.php:552 msgid "This connection is ignored!" msgstr "Aquesta connexió es ignorada!" -#: ../../Zotlabs/Module/Connedit.php:586 +#: ../../Zotlabs/Module/Connedit.php:556 msgid "Unarchive" msgstr "Desarxiva" -#: ../../Zotlabs/Module/Connedit.php:586 +#: ../../Zotlabs/Module/Connedit.php:556 msgid "Archive" msgstr "Arxiva" -#: ../../Zotlabs/Module/Connedit.php:589 +#: ../../Zotlabs/Module/Connedit.php:559 msgid "" "Archive (or Unarchive) this connection - mark channel dead but keep content" msgstr "Arxiva (o Desarxiva) aquesta connexió - Marca el canal com a mort pero manté el contingut " -#: ../../Zotlabs/Module/Connedit.php:590 +#: ../../Zotlabs/Module/Connedit.php:560 msgid "This connection is archived!" msgstr "Aquesta connexió està arxivada!" -#: ../../Zotlabs/Module/Connedit.php:594 +#: ../../Zotlabs/Module/Connedit.php:564 msgid "Unhide" msgstr "Mostra" -#: ../../Zotlabs/Module/Connedit.php:594 +#: ../../Zotlabs/Module/Connedit.php:564 msgid "Hide" msgstr "Amaga" -#: ../../Zotlabs/Module/Connedit.php:597 +#: ../../Zotlabs/Module/Connedit.php:567 msgid "Hide or Unhide this connection from your other connections" msgstr "Amaga (o Mostra) aquesta connexió de les altres connexions teves" -#: ../../Zotlabs/Module/Connedit.php:598 +#: ../../Zotlabs/Module/Connedit.php:568 msgid "This connection is hidden!" msgstr "Aquesta connexió està amagada!" -#: ../../Zotlabs/Module/Connedit.php:605 +#: ../../Zotlabs/Module/Connedit.php:575 msgid "Delete this connection" msgstr "Elimina aquesta connexió" -#: ../../Zotlabs/Module/Connedit.php:620 ../../include/widgets.php:493 +#: ../../Zotlabs/Module/Connedit.php:590 ../../include/widgets.php:493 msgid "Me" msgstr "Jo" -#: ../../Zotlabs/Module/Connedit.php:621 ../../include/widgets.php:494 +#: ../../Zotlabs/Module/Connedit.php:591 ../../include/widgets.php:494 msgid "Family" msgstr "Família" -#: ../../Zotlabs/Module/Connedit.php:622 ../../Zotlabs/Module/Settings.php:391 -#: ../../Zotlabs/Module/Settings.php:395 ../../Zotlabs/Module/Settings.php:396 -#: ../../Zotlabs/Module/Settings.php:399 ../../Zotlabs/Module/Settings.php:410 -#: ../../include/channel.php:402 ../../include/channel.php:403 -#: ../../include/channel.php:410 ../../include/selectors.php:123 -#: ../../include/widgets.php:495 +#: ../../Zotlabs/Module/Connedit.php:592 ../../Zotlabs/Module/Settings.php:342 +#: ../../Zotlabs/Module/Settings.php:346 ../../Zotlabs/Module/Settings.php:347 +#: ../../Zotlabs/Module/Settings.php:350 ../../Zotlabs/Module/Settings.php:361 +#: ../../include/widgets.php:495 ../../include/selectors.php:123 +#: ../../include/channel.php:389 ../../include/channel.php:390 +#: ../../include/channel.php:397 msgid "Friends" msgstr "Amics" -#: ../../Zotlabs/Module/Connedit.php:623 ../../include/widgets.php:496 +#: ../../Zotlabs/Module/Connedit.php:593 ../../include/widgets.php:496 msgid "Acquaintances" msgstr "Coneguts" -#: ../../Zotlabs/Module/Connedit.php:624 +#: ../../Zotlabs/Module/Connedit.php:594 #: ../../Zotlabs/Module/Connections.php:92 #: ../../Zotlabs/Module/Connections.php:107 ../../include/widgets.php:497 msgid "All" msgstr "Tots" -#: ../../Zotlabs/Module/Connedit.php:685 +#: ../../Zotlabs/Module/Connedit.php:654 msgid "Approve this connection" msgstr "Apccepta aquesta connexió" -#: ../../Zotlabs/Module/Connedit.php:685 +#: ../../Zotlabs/Module/Connedit.php:654 msgid "Accept connection to allow communication" msgstr "Accepta la connexió per permetre la comunicació" -#: ../../Zotlabs/Module/Connedit.php:690 +#: ../../Zotlabs/Module/Connedit.php:659 msgid "Set Affinity" msgstr "Ajusta l'Afinitat" -#: ../../Zotlabs/Module/Connedit.php:693 +#: ../../Zotlabs/Module/Connedit.php:662 msgid "Set Profile" msgstr "Ajusta el Perfil" -#: ../../Zotlabs/Module/Connedit.php:696 +#: ../../Zotlabs/Module/Connedit.php:665 msgid "Set Affinity & Profile" msgstr "Ajusta Afinitat i Perfil" -#: ../../Zotlabs/Module/Connedit.php:745 +#: ../../Zotlabs/Module/Connedit.php:698 msgid "none" msgstr "res" -#: ../../Zotlabs/Module/Connedit.php:749 ../../include/widgets.php:623 +#: ../../Zotlabs/Module/Connedit.php:702 ../../include/widgets.php:614 msgid "Connection Default Permissions" msgstr "Permisos per Defecte de la Connexió" -#: ../../Zotlabs/Module/Connedit.php:749 ../../include/items.php:3935 +#: ../../Zotlabs/Module/Connedit.php:702 ../../include/items.php:3926 #, php-format msgid "Connection: %s" msgstr "Connexió: %s" -#: ../../Zotlabs/Module/Connedit.php:750 +#: ../../Zotlabs/Module/Connedit.php:703 msgid "Apply these permissions automatically" msgstr "Aplica aquests permissos automaticament" -#: ../../Zotlabs/Module/Connedit.php:750 +#: ../../Zotlabs/Module/Connedit.php:703 msgid "Connection requests will be approved without your interaction" msgstr "Les peticions de connexió seran aprovades sense la teva interacció" -#: ../../Zotlabs/Module/Connedit.php:752 +#: ../../Zotlabs/Module/Connedit.php:705 msgid "This connection's primary address is" msgstr "La primera adreça d'aqueste connexió es" -#: ../../Zotlabs/Module/Connedit.php:753 +#: ../../Zotlabs/Module/Connedit.php:706 msgid "Available locations:" msgstr "Localització disponible:" -#: ../../Zotlabs/Module/Connedit.php:757 +#: ../../Zotlabs/Module/Connedit.php:710 msgid "" "The permissions indicated on this page will be applied to all new " "connections." msgstr "Els permisos indicats en aquesta pàgina seran aplicats a totes les noves connexions." -#: ../../Zotlabs/Module/Connedit.php:758 +#: ../../Zotlabs/Module/Connedit.php:711 msgid "Connection Tools" msgstr "Eines de Connexió" -#: ../../Zotlabs/Module/Connedit.php:760 +#: ../../Zotlabs/Module/Connedit.php:713 msgid "Slide to adjust your degree of friendship" msgstr "Llisca per ajustar el nivell d'amistat" -#: ../../Zotlabs/Module/Connedit.php:761 ../../Zotlabs/Module/Rate.php:159 +#: ../../Zotlabs/Module/Connedit.php:714 ../../Zotlabs/Module/Rate.php:159 #: ../../include/js_strings.php:20 msgid "Rating" msgstr "Valora" -#: ../../Zotlabs/Module/Connedit.php:762 +#: ../../Zotlabs/Module/Connedit.php:715 msgid "Slide to adjust your rating" msgstr "Llisca per ajustar la valoració" -#: ../../Zotlabs/Module/Connedit.php:763 ../../Zotlabs/Module/Connedit.php:768 +#: ../../Zotlabs/Module/Connedit.php:716 ../../Zotlabs/Module/Connedit.php:721 msgid "Optionally explain your rating" msgstr "Opcionalment pots explicar la teva valoració" -#: ../../Zotlabs/Module/Connedit.php:765 +#: ../../Zotlabs/Module/Connedit.php:718 msgid "Custom Filter" msgstr "Filtre a mida" -#: ../../Zotlabs/Module/Connedit.php:766 +#: ../../Zotlabs/Module/Connedit.php:719 msgid "Only import posts with this text" msgstr "Importa exclusivament entrades amb aquest text" -#: ../../Zotlabs/Module/Connedit.php:766 ../../Zotlabs/Module/Connedit.php:767 +#: ../../Zotlabs/Module/Connedit.php:719 ../../Zotlabs/Module/Connedit.php:720 msgid "" "words one per line or #tags or /patterns/ or lang=xx, leave blank to import " "all posts" msgstr "paraules una per línia o #etiquetes o /patrons/ o idioma=xx, deixar en blanc per importar totes les entrades" -#: ../../Zotlabs/Module/Connedit.php:767 +#: ../../Zotlabs/Module/Connedit.php:720 msgid "Do not import posts with this text" msgstr "No importar entrades amb aquest text" -#: ../../Zotlabs/Module/Connedit.php:769 +#: ../../Zotlabs/Module/Connedit.php:722 msgid "This information is public!" msgstr "Aquesta informació es pública!" -#: ../../Zotlabs/Module/Connedit.php:774 +#: ../../Zotlabs/Module/Connedit.php:727 msgid "Connection Pending Approval" msgstr "Connexió Pendent d'Aprovació" -#: ../../Zotlabs/Module/Connedit.php:777 +#: ../../Zotlabs/Module/Connedit.php:730 msgid "inherited" msgstr "heretat" -#: ../../Zotlabs/Module/Connedit.php:778 ../../Zotlabs/Module/Connect.php:98 -#: ../../Zotlabs/Module/Events.php:474 ../../Zotlabs/Module/Cal.php:338 -#: ../../Zotlabs/Module/Chat.php:196 ../../Zotlabs/Module/Chat.php:238 -#: ../../Zotlabs/Module/Group.php:85 ../../Zotlabs/Module/Appman.php:126 -#: ../../Zotlabs/Module/Pdledit.php:66 -#: ../../Zotlabs/Module/Filestorage.php:161 -#: ../../Zotlabs/Module/Profiles.php:687 ../../Zotlabs/Module/Import.php:560 -#: ../../Zotlabs/Module/Photos.php:675 ../../Zotlabs/Module/Photos.php:1050 -#: ../../Zotlabs/Module/Photos.php:1090 ../../Zotlabs/Module/Photos.php:1208 -#: ../../Zotlabs/Module/Import_items.php:122 -#: ../../Zotlabs/Module/Invite.php:146 ../../Zotlabs/Module/Locs.php:121 -#: ../../Zotlabs/Module/Mail.php:370 ../../Zotlabs/Module/Mood.php:139 -#: ../../Zotlabs/Module/Mitem.php:235 ../../Zotlabs/Module/Admin.php:492 -#: ../../Zotlabs/Module/Admin.php:688 ../../Zotlabs/Module/Admin.php:771 -#: ../../Zotlabs/Module/Admin.php:1032 ../../Zotlabs/Module/Admin.php:1211 -#: ../../Zotlabs/Module/Admin.php:1421 ../../Zotlabs/Module/Admin.php:1648 -#: ../../Zotlabs/Module/Admin.php:1733 ../../Zotlabs/Module/Admin.php:2116 -#: ../../Zotlabs/Module/Poke.php:186 ../../Zotlabs/Module/Pconfig.php:107 -#: ../../Zotlabs/Module/Rate.php:170 ../../Zotlabs/Module/Settings.php:644 -#: ../../Zotlabs/Module/Settings.php:757 ../../Zotlabs/Module/Settings.php:806 -#: ../../Zotlabs/Module/Settings.php:832 ../../Zotlabs/Module/Settings.php:855 -#: ../../Zotlabs/Module/Settings.php:943 -#: ../../Zotlabs/Module/Settings.php:1129 ../../Zotlabs/Module/Setup.php:312 -#: ../../Zotlabs/Module/Setup.php:353 ../../Zotlabs/Module/Thing.php:316 -#: ../../Zotlabs/Module/Thing.php:362 ../../Zotlabs/Module/Sources.php:114 -#: ../../Zotlabs/Module/Sources.php:149 ../../Zotlabs/Module/Xchan.php:15 -#: ../../Zotlabs/Lib/ThreadItem.php:710 ../../include/widgets.php:763 -#: ../../include/js_strings.php:22 ../../view/theme/redbasic/php/config.php:99 -msgid "Submit" -msgstr "Enviar" - -#: ../../Zotlabs/Module/Connedit.php:779 +#: ../../Zotlabs/Module/Connedit.php:732 #, php-format msgid "" "Please choose the profile you would like to display to %s when viewing your " "profile securely." msgstr "Tria el perfil que vols mostrar a %s quan es vegi el perfil segur." -#: ../../Zotlabs/Module/Connedit.php:781 +#: ../../Zotlabs/Module/Connedit.php:734 msgid "Their Settings" msgstr "Els seus Ajustos" -#: ../../Zotlabs/Module/Connedit.php:782 +#: ../../Zotlabs/Module/Connedit.php:735 msgid "My Settings" msgstr "Els Meus Ajustos" -#: ../../Zotlabs/Module/Connedit.php:784 +#: ../../Zotlabs/Module/Connedit.php:737 msgid "Individual Permissions" msgstr "Permisos Individuals" -#: ../../Zotlabs/Module/Connedit.php:785 +#: ../../Zotlabs/Module/Connedit.php:738 msgid "" "Some permissions may be inherited from your channel's privacy settings, which have higher " @@ -776,7 +881,7 @@ msgid "" " settings here." msgstr "Alguns permisos poden ser heretats dels teus canals ajustos de privacitat, Els quals tenen més prioritat que els ajustos individuals. No pots canviar aquests ajustos aquí." -#: ../../Zotlabs/Module/Connedit.php:786 +#: ../../Zotlabs/Module/Connedit.php:739 msgid "" "Some permissions may be inherited from your channel's privacy settings, which have higher " @@ -784,121 +889,17 @@ msgid "" "they wont have any impact unless the inherited setting changes." msgstr "Alguns permisos poden ser heretats dels teus canals ajustos de privacitat, Els quals tenen més prioritat que els ajustos individuals. Pots canviar aquests ajustos aquí pero no tindran cap impacte fins que no canviis els ajustos heretats." -#: ../../Zotlabs/Module/Connedit.php:787 +#: ../../Zotlabs/Module/Connedit.php:740 msgid "Last update:" msgstr "Darrera actualització:" -#: ../../Zotlabs/Module/Display.php:17 ../../Zotlabs/Module/Directory.php:63 -#: ../../Zotlabs/Module/Photos.php:520 ../../Zotlabs/Module/Ratings.php:86 +#: ../../Zotlabs/Module/Directory.php:63 ../../Zotlabs/Module/Display.php:17 +#: ../../Zotlabs/Module/Photos.php:522 ../../Zotlabs/Module/Ratings.php:86 #: ../../Zotlabs/Module/Search.php:17 -#: ../../Zotlabs/Module/Viewconnections.php:23 +#: ../../Zotlabs/Module/Viewconnections.php:20 msgid "Public access denied." msgstr "Accés públic denegat." -#: ../../Zotlabs/Module/Display.php:40 ../../Zotlabs/Module/Filestorage.php:32 -#: ../../Zotlabs/Module/Admin.php:164 ../../Zotlabs/Module/Admin.php:1255 -#: ../../Zotlabs/Module/Admin.php:1561 ../../Zotlabs/Module/Thing.php:89 -#: ../../Zotlabs/Module/Viewsrc.php:24 ../../include/items.php:3369 -msgid "Item not found." -msgstr "Element no trobat." - -#: ../../Zotlabs/Module/Id.php:13 -msgid "First Name" -msgstr "Nom" - -#: ../../Zotlabs/Module/Id.php:14 -msgid "Last Name" -msgstr "Cognoms" - -#: ../../Zotlabs/Module/Id.php:15 -msgid "Nickname" -msgstr "Àlies" - -#: ../../Zotlabs/Module/Id.php:16 -msgid "Full Name" -msgstr "Nom Sencer" - -#: ../../Zotlabs/Module/Id.php:17 ../../Zotlabs/Module/Id.php:18 -#: ../../Zotlabs/Module/Admin.php:1035 ../../Zotlabs/Module/Admin.php:1047 -#: ../../include/network.php:2203 -msgid "Email" -msgstr "Correu electrónic" - -#: ../../Zotlabs/Module/Id.php:19 ../../Zotlabs/Module/Id.php:20 -#: ../../Zotlabs/Module/Id.php:21 ../../Zotlabs/Lib/Apps.php:238 -msgid "Profile Photo" -msgstr "Foto del Perfil" - -#: ../../Zotlabs/Module/Id.php:22 -msgid "Profile Photo 16px" -msgstr "Foto del Perfil 16px" - -#: ../../Zotlabs/Module/Id.php:23 -msgid "Profile Photo 32px" -msgstr "Foto del Perfil 32px" - -#: ../../Zotlabs/Module/Id.php:24 -msgid "Profile Photo 48px" -msgstr "Foto del Perfil 48px" - -#: ../../Zotlabs/Module/Id.php:25 -msgid "Profile Photo 64px" -msgstr "Foto del Perfil 64px" - -#: ../../Zotlabs/Module/Id.php:26 -msgid "Profile Photo 80px" -msgstr "Foto del Perfil 80px" - -#: ../../Zotlabs/Module/Id.php:27 -msgid "Profile Photo 128px" -msgstr "Foto del Perfil 128px" - -#: ../../Zotlabs/Module/Id.php:28 -msgid "Timezone" -msgstr "Zona horària" - -#: ../../Zotlabs/Module/Id.php:29 ../../Zotlabs/Module/Profiles.php:731 -msgid "Homepage URL" -msgstr "URL de la pàgina d'inici" - -#: ../../Zotlabs/Module/Id.php:30 ../../Zotlabs/Lib/Apps.php:236 -msgid "Language" -msgstr "Idioma" - -#: ../../Zotlabs/Module/Id.php:31 -msgid "Birth Year" -msgstr "Any de Naixement" - -#: ../../Zotlabs/Module/Id.php:32 -msgid "Birth Month" -msgstr "Mes de Naixement" - -#: ../../Zotlabs/Module/Id.php:33 -msgid "Birth Day" -msgstr "Dia de Naixement" - -#: ../../Zotlabs/Module/Id.php:34 -msgid "Birthdate" -msgstr "Aniversari" - -#: ../../Zotlabs/Module/Id.php:35 ../../Zotlabs/Module/Profiles.php:454 -msgid "Gender" -msgstr "Gènere" - -#: ../../Zotlabs/Module/Id.php:108 ../../include/selectors.php:49 -#: ../../include/selectors.php:66 -msgid "Male" -msgstr "Masculí" - -#: ../../Zotlabs/Module/Id.php:110 ../../include/selectors.php:49 -#: ../../include/selectors.php:66 -msgid "Female" -msgstr "Femení" - -#: ../../Zotlabs/Module/Follow.php:34 -msgid "Channel added." -msgstr "S'ha afegit el canal." - #: ../../Zotlabs/Module/Directory.php:243 #, php-format msgid "%d rating" @@ -918,12 +919,12 @@ msgstr "Estatus:" msgid "Homepage: " msgstr "Pàgina Personal:" -#: ../../Zotlabs/Module/Directory.php:306 ../../include/channel.php:1223 +#: ../../Zotlabs/Module/Directory.php:306 ../../include/channel.php:1183 msgid "Age:" msgstr "Edat:" -#: ../../Zotlabs/Module/Directory.php:311 ../../include/channel.php:1066 -#: ../../include/event.php:52 ../../include/event.php:84 +#: ../../Zotlabs/Module/Directory.php:311 ../../include/event.php:52 +#: ../../include/event.php:84 ../../include/channel.php:1027 #: ../../include/bb2diaspora.php:507 msgid "Location:" msgstr "Localització:" @@ -932,18 +933,18 @@ msgstr "Localització:" msgid "Description:" msgstr "Descripció:" -#: ../../Zotlabs/Module/Directory.php:322 ../../include/channel.php:1239 +#: ../../Zotlabs/Module/Directory.php:322 ../../include/channel.php:1199 msgid "Hometown:" msgstr "Ciutat Natal:" -#: ../../Zotlabs/Module/Directory.php:324 ../../include/channel.php:1247 +#: ../../Zotlabs/Module/Directory.php:324 ../../include/channel.php:1207 msgid "About:" msgstr "Sobre:" #: ../../Zotlabs/Module/Directory.php:325 ../../Zotlabs/Module/Match.php:68 -#: ../../Zotlabs/Module/Suggest.php:56 ../../include/channel.php:1051 -#: ../../include/connections.php:78 ../../include/conversation.php:959 -#: ../../include/widgets.php:147 ../../include/widgets.php:184 +#: ../../Zotlabs/Module/Suggest.php:56 ../../include/widgets.php:147 +#: ../../include/widgets.php:184 ../../include/connections.php:78 +#: ../../include/conversation.php:956 ../../include/channel.php:1012 msgid "Connect" msgstr "Connecta " @@ -1019,322 +1020,38 @@ msgstr "De més Antic a més Nou" msgid "No entries (some entries may be hidden)." msgstr "Sense entrades (algunes podrien estar amagades)." -#: ../../Zotlabs/Module/Connect.php:61 ../../Zotlabs/Module/Connect.php:109 -msgid "Continue" -msgstr "Continua" +#: ../../Zotlabs/Module/Display.php:40 ../../Zotlabs/Module/Filestorage.php:33 +#: ../../Zotlabs/Module/Admin.php:164 ../../Zotlabs/Module/Admin.php:1255 +#: ../../Zotlabs/Module/Admin.php:1561 ../../Zotlabs/Module/Thing.php:89 +#: ../../Zotlabs/Module/Viewsrc.php:24 ../../include/items.php:3359 +msgid "Item not found." +msgstr "Element no trobat." -#: ../../Zotlabs/Module/Connect.php:90 -msgid "Premium Channel Setup" -msgstr "Configuració de Canals Premium" - -#: ../../Zotlabs/Module/Connect.php:92 -msgid "Enable premium channel connection restrictions" -msgstr "Habilita les restriccions de connexió del canal premium" - -#: ../../Zotlabs/Module/Connect.php:93 -msgid "" -"Please enter your restrictions or conditions, such as paypal receipt, usage " -"guidelines, etc." -msgstr "Si us plau, introdueixi les restriccions o condicions, com ara el rebut de PayPal, les pautes d'ús, etc." - -#: ../../Zotlabs/Module/Connect.php:95 ../../Zotlabs/Module/Connect.php:115 -msgid "" -"This channel may require additional steps or acknowledgement of the " -"following conditions prior to connecting:" -msgstr "Aquest canal pot requerir passos addicionals o reconeixement de les següents condicions abans de connectar:" - -#: ../../Zotlabs/Module/Connect.php:96 -msgid "" -"Potential connections will then see the following text before proceeding:" -msgstr "Connexions potencials veuran el següent text abans de continuar:" - -#: ../../Zotlabs/Module/Connect.php:97 ../../Zotlabs/Module/Connect.php:118 -msgid "" -"By continuing, I certify that I have complied with any instructions provided" -" on this page." -msgstr "En continuar, certifico que he complert amb totes les instruccions proporcionades en aquesta pàgina." - -#: ../../Zotlabs/Module/Connect.php:106 -msgid "(No specific instructions have been provided by the channel owner.)" -msgstr "(No s'han proporcionat instruccions específiques pel propietari del canal.)" - -#: ../../Zotlabs/Module/Connect.php:114 -msgid "Restricted or Premium Channel" -msgstr "Canal Restringit o Premium" - -#: ../../Zotlabs/Module/Events.php:25 -msgid "Calendar entries imported." -msgstr "Entrades de Calendari importades." - -#: ../../Zotlabs/Module/Events.php:27 -msgid "No calendar entries found." -msgstr "No es troben entrades decalendari." - -#: ../../Zotlabs/Module/Events.php:104 -msgid "Event can not end before it has started." -msgstr "L'esdeveniment ha de començar abans d'acabar." - -#: ../../Zotlabs/Module/Events.php:106 ../../Zotlabs/Module/Events.php:115 -#: ../../Zotlabs/Module/Events.php:135 -msgid "Unable to generate preview." -msgstr "No s'ha pogut generar la vista prèvia." - -#: ../../Zotlabs/Module/Events.php:113 -msgid "Event title and start time are required." -msgstr "Cal indicar l'inici i el final de l'esdeveniment." - -#: ../../Zotlabs/Module/Events.php:133 ../../Zotlabs/Module/Events.php:258 -msgid "Event not found." -msgstr "No s'ha trobat l'esdeveniment." - -#: ../../Zotlabs/Module/Events.php:253 ../../Zotlabs/Module/Like.php:372 -#: ../../Zotlabs/Module/Tagger.php:51 ../../include/conversation.php:123 -#: ../../include/text.php:1924 ../../include/event.php:951 -msgid "event" -msgstr "succés" - -#: ../../Zotlabs/Module/Events.php:448 -msgid "Edit event title" -msgstr "Edita el títol d'esdeveniment" - -#: ../../Zotlabs/Module/Events.php:448 -msgid "Event title" -msgstr "Títol esdeveniment" - -#: ../../Zotlabs/Module/Events.php:448 ../../Zotlabs/Module/Events.php:453 -#: ../../Zotlabs/Module/Appman.php:115 ../../Zotlabs/Module/Appman.php:116 -#: ../../Zotlabs/Module/Profiles.php:709 ../../Zotlabs/Module/Profiles.php:713 -#: ../../include/datetime.php:245 -msgid "Required" -msgstr "Requerit" - -#: ../../Zotlabs/Module/Events.php:450 -msgid "Categories (comma-separated list)" -msgstr "Categories (llista separada per comes)" - -#: ../../Zotlabs/Module/Events.php:451 -msgid "Edit Category" -msgstr "Editar Categoria" - -#: ../../Zotlabs/Module/Events.php:451 -msgid "Category" -msgstr "Categoria" - -#: ../../Zotlabs/Module/Events.php:454 -msgid "Edit start date and time" -msgstr "Editar data i hora d'inici" - -#: ../../Zotlabs/Module/Events.php:454 -msgid "Start date and time" -msgstr "Data i hora d'inici" - -#: ../../Zotlabs/Module/Events.php:455 ../../Zotlabs/Module/Events.php:458 -msgid "Finish date and time are not known or not relevant" -msgstr "L'ora de finalització no es coneix o es irrelevant." - -#: ../../Zotlabs/Module/Events.php:457 -msgid "Edit finish date and time" -msgstr "Editar la data i hora de finalització" - -#: ../../Zotlabs/Module/Events.php:457 -msgid "Finish date and time" -msgstr "Data i hora de finalització" - -#: ../../Zotlabs/Module/Events.php:459 ../../Zotlabs/Module/Events.php:460 -msgid "Adjust for viewer timezone" -msgstr "Ajusta a la zona horària del visitant." - -#: ../../Zotlabs/Module/Events.php:459 -msgid "" -"Important for events that happen in a particular place. Not practical for " -"global holidays." -msgstr "És important per esdeveniments locals, però pels globals no és pràctic." - -#: ../../Zotlabs/Module/Events.php:461 -msgid "Edit Description" -msgstr "Editar la Descripció" - -#: ../../Zotlabs/Module/Events.php:461 ../../Zotlabs/Module/Appman.php:117 -#: ../../Zotlabs/Module/Rbmark.php:101 -msgid "Description" -msgstr "Descripció" - -#: ../../Zotlabs/Module/Events.php:463 -msgid "Edit Location" -msgstr "Editar la localització" - -#: ../../Zotlabs/Module/Events.php:463 ../../Zotlabs/Module/Profiles.php:477 -#: ../../Zotlabs/Module/Profiles.php:698 ../../Zotlabs/Module/Locs.php:117 -#: ../../Zotlabs/Module/Pubsites.php:41 ../../include/js_strings.php:25 -msgid "Location" -msgstr "Localització" - -#: ../../Zotlabs/Module/Events.php:466 ../../Zotlabs/Module/Events.php:468 -msgid "Share this event" -msgstr "Comparteix aquest esdeveniment" - -#: ../../Zotlabs/Module/Events.php:469 ../../Zotlabs/Module/Photos.php:1091 -#: ../../Zotlabs/Module/Webpages.php:201 ../../Zotlabs/Lib/ThreadItem.php:719 -#: ../../include/page_widgets.php:43 ../../include/conversation.php:1198 -msgid "Preview" -msgstr "Avanç" - -#: ../../Zotlabs/Module/Events.php:470 ../../include/conversation.php:1247 -msgid "Permission settings" -msgstr "Ajustos de permisos" - -#: ../../Zotlabs/Module/Events.php:475 -msgid "Advanced Options" -msgstr "Opcions Avançades" - -#: ../../Zotlabs/Module/Events.php:587 ../../Zotlabs/Module/Cal.php:259 -msgid "l, F j" -msgstr "l, j \\d\\e/\\d' F" - -#: ../../Zotlabs/Module/Events.php:609 -msgid "Edit event" -msgstr "Edita l'esdeveniment" - -#: ../../Zotlabs/Module/Events.php:611 -msgid "Delete event" -msgstr "Esborra l'esdeveniment" - -#: ../../Zotlabs/Module/Events.php:636 ../../Zotlabs/Module/Cal.php:308 -#: ../../include/text.php:1712 -msgid "Link to Source" -msgstr "Enllaç a la Font" - -#: ../../Zotlabs/Module/Events.php:645 -msgid "calendar" -msgstr "calendari" - -#: ../../Zotlabs/Module/Events.php:664 ../../Zotlabs/Module/Cal.php:331 -msgid "Edit Event" -msgstr "Editar l'Esdeveniment" - -#: ../../Zotlabs/Module/Events.php:664 ../../Zotlabs/Module/Cal.php:331 -msgid "Create Event" -msgstr "Crear Esdeveniment" - -#: ../../Zotlabs/Module/Events.php:665 ../../Zotlabs/Module/Events.php:674 -#: ../../Zotlabs/Module/Cal.php:332 ../../Zotlabs/Module/Cal.php:339 -#: ../../Zotlabs/Module/Photos.php:947 -msgid "Previous" -msgstr "Anterior" - -#: ../../Zotlabs/Module/Events.php:666 ../../Zotlabs/Module/Events.php:675 -#: ../../Zotlabs/Module/Cal.php:333 ../../Zotlabs/Module/Cal.php:340 -#: ../../Zotlabs/Module/Photos.php:956 ../../Zotlabs/Module/Setup.php:267 -msgid "Next" -msgstr "Pròxim" - -#: ../../Zotlabs/Module/Events.php:667 ../../Zotlabs/Module/Cal.php:334 -msgid "Export" -msgstr "Exporta" - -#: ../../Zotlabs/Module/Events.php:670 ../../Zotlabs/Module/Layouts.php:197 -#: ../../Zotlabs/Module/Pubsites.php:47 ../../Zotlabs/Module/Blocks.php:166 -#: ../../Zotlabs/Module/Webpages.php:200 ../../include/page_widgets.php:42 -msgid "View" -msgstr "Mostra" - -#: ../../Zotlabs/Module/Events.php:671 -msgid "Month" -msgstr "" - -#: ../../Zotlabs/Module/Events.php:672 -msgid "Week" -msgstr "" - -#: ../../Zotlabs/Module/Events.php:673 -msgid "Day" -msgstr "" - -#: ../../Zotlabs/Module/Events.php:676 ../../Zotlabs/Module/Cal.php:341 -msgid "Today" -msgstr "Avui" - -#: ../../Zotlabs/Module/Events.php:707 -msgid "Event removed" -msgstr "S'ha eliminat l'esdeveniment" - -#: ../../Zotlabs/Module/Events.php:710 -msgid "Failed to remove event" -msgstr "No s'ha pogut esborrar l'esdeveniment" - -#: ../../Zotlabs/Module/Bookmarks.php:53 -msgid "Bookmark added" -msgstr "Favorit afegit" - -#: ../../Zotlabs/Module/Bookmarks.php:75 -msgid "My Bookmarks" -msgstr "Els Meus Favorits" - -#: ../../Zotlabs/Module/Bookmarks.php:86 -msgid "My Connections Bookmarks" -msgstr "Les connexions dels meus Favorits" - -#: ../../Zotlabs/Module/Editpost.php:24 ../../Zotlabs/Module/Editlayout.php:79 -#: ../../Zotlabs/Module/Editwebpage.php:80 #: ../../Zotlabs/Module/Editblock.php:79 ../../Zotlabs/Module/Editblock.php:95 +#: ../../Zotlabs/Module/Editpost.php:24 ../../Zotlabs/Module/Editlayout.php:79 +#: ../../Zotlabs/Module/Editwebpage.php:81 msgid "Item not found" msgstr "No s'ha trobat l'element" -#: ../../Zotlabs/Module/Editpost.php:35 -msgid "Item is not editable" -msgstr "Article no editable" +#: ../../Zotlabs/Module/Editblock.php:124 ../../include/conversation.php:1228 +msgid "Title (optional)" +msgstr "Títol (opcional)" -#: ../../Zotlabs/Module/Editpost.php:106 ../../Zotlabs/Module/Rpost.php:134 -msgid "Edit post" -msgstr "Modifica l'entrada" +#: ../../Zotlabs/Module/Editblock.php:133 +msgid "Edit Block" +msgstr "Editar Bloc" -#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:222 -#: ../../include/nav.php:92 ../../include/conversation.php:1647 -msgid "Photos" -msgstr "Fotos" +#: ../../Zotlabs/Module/Common.php:14 +msgid "No channel." +msgstr "No s'ha trobat el canal" -#: ../../Zotlabs/Module/Fbrowser.php:66 ../../Zotlabs/Module/Fbrowser.php:88 -#: ../../Zotlabs/Module/Admin.php:1406 ../../Zotlabs/Module/Settings.php:645 -#: ../../Zotlabs/Module/Settings.php:671 ../../Zotlabs/Module/Tagrm.php:15 -#: ../../Zotlabs/Module/Tagrm.php:138 ../../Zotlabs/Module/Wiki.php:166 -#: ../../Zotlabs/Module/Wiki.php:202 ../../include/conversation.php:1235 -#: ../../include/conversation.php:1274 -msgid "Cancel" -msgstr "Cancel·la" +#: ../../Zotlabs/Module/Common.php:43 +msgid "Common connections" +msgstr "Connexions en comú" -#: ../../Zotlabs/Module/Page.php:40 ../../Zotlabs/Module/Block.php:31 -msgid "Invalid item." -msgstr "Article invàlid." - -#: ../../Zotlabs/Module/Page.php:56 ../../Zotlabs/Module/Cal.php:62 -#: ../../Zotlabs/Module/Block.php:43 ../../Zotlabs/Module/Wall_upload.php:33 -msgid "Channel not found." -msgstr "Canal no trobat." - -#: ../../Zotlabs/Module/Page.php:131 -msgid "" -"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod " -"tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam," -" quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo " -"consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse " -"cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat " -"non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." -msgstr "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." - -#: ../../Zotlabs/Module/Filer.php:52 -msgid "Save to Folder:" -msgstr "Guardar en la Carpeta" - -#: ../../Zotlabs/Module/Filer.php:52 -msgid "- select -" -msgstr "- selecciona -" - -#: ../../Zotlabs/Module/Filer.php:53 ../../Zotlabs/Module/Admin.php:2033 -#: ../../Zotlabs/Module/Admin.php:2053 ../../Zotlabs/Module/Rbmark.php:32 -#: ../../Zotlabs/Module/Rbmark.php:104 ../../include/text.php:926 -#: ../../include/text.php:938 ../../include/widgets.php:201 -msgid "Save" -msgstr "Guardar" +#: ../../Zotlabs/Module/Common.php:48 +msgid "No connections in common." +msgstr "No hi ha connexions en comú." #: ../../Zotlabs/Module/Connections.php:56 #: ../../Zotlabs/Module/Connections.php:161 @@ -1362,7 +1079,7 @@ msgstr "Arxivades" #: ../../Zotlabs/Module/Connections.php:76 #: ../../Zotlabs/Module/Connections.php:86 ../../Zotlabs/Module/Menu.php:116 -#: ../../include/conversation.php:1550 +#: ../../include/conversation.php:1535 msgid "New" msgstr "Nou" @@ -1449,15 +1166,15 @@ msgstr "Ignorar connexió" msgid "Recent activity" msgstr "Activitat recent" -#: ../../Zotlabs/Module/Connections.php:302 ../../Zotlabs/Lib/Apps.php:209 -#: ../../include/nav.php:188 ../../include/text.php:855 +#: ../../Zotlabs/Module/Connections.php:302 ../../Zotlabs/Lib/Apps.php:208 +#: ../../include/text.php:875 ../../include/nav.php:186 msgid "Connections" msgstr "Connexions" #: ../../Zotlabs/Module/Connections.php:306 ../../Zotlabs/Module/Search.php:44 -#: ../../Zotlabs/Lib/Apps.php:230 ../../include/nav.php:167 -#: ../../include/text.php:925 ../../include/text.php:937 -#: ../../include/acl_selectors.php:274 +#: ../../Zotlabs/Lib/Apps.php:228 ../../include/text.php:945 +#: ../../include/text.php:957 ../../include/nav.php:165 +#: ../../include/acl_selectors.php:276 msgid "Search" msgstr "Cerca" @@ -1470,7 +1187,7 @@ msgid "Connections search" msgstr "Cerca connexions" #: ../../Zotlabs/Module/Cover_photo.php:58 -#: ../../Zotlabs/Module/Profile_photo.php:61 +#: ../../Zotlabs/Module/Profile_photo.php:79 msgid "Image uploaded but image cropping failed." msgstr "S'ha pujat la imatge però no s'ha pogut retallar." @@ -1480,66 +1197,66 @@ msgid "Cover Photos" msgstr "Fotos de Portada" #: ../../Zotlabs/Module/Cover_photo.php:154 -#: ../../Zotlabs/Module/Profile_photo.php:135 +#: ../../Zotlabs/Module/Profile_photo.php:133 msgid "Image resize failed." msgstr "No s'ha pogut escalar la imatge." #: ../../Zotlabs/Module/Cover_photo.php:168 -#: ../../Zotlabs/Module/Profile_photo.php:196 ../../include/photos.php:148 +#: ../../Zotlabs/Module/Profile_photo.php:192 ../../include/photos.php:144 msgid "Unable to process image" msgstr "incapaç de processar la imatge" #: ../../Zotlabs/Module/Cover_photo.php:192 -#: ../../Zotlabs/Module/Profile_photo.php:223 +#: ../../Zotlabs/Module/Profile_photo.php:217 msgid "Image upload failed." msgstr "La pujada de la imatge va fracassar." #: ../../Zotlabs/Module/Cover_photo.php:210 -#: ../../Zotlabs/Module/Profile_photo.php:242 +#: ../../Zotlabs/Module/Profile_photo.php:236 msgid "Unable to process image." msgstr "Incapaç de processar l'imatge." -#: ../../Zotlabs/Module/Cover_photo.php:233 ../../include/items.php:4283 +#: ../../Zotlabs/Module/Cover_photo.php:233 ../../include/items.php:4270 msgid "female" msgstr "femení" -#: ../../Zotlabs/Module/Cover_photo.php:234 ../../include/items.php:4284 +#: ../../Zotlabs/Module/Cover_photo.php:234 ../../include/items.php:4271 #, php-format msgid "%1$s updated her %2$s" msgstr "%1$s actualitzà el seu %2$s" -#: ../../Zotlabs/Module/Cover_photo.php:235 ../../include/items.php:4285 +#: ../../Zotlabs/Module/Cover_photo.php:235 ../../include/items.php:4272 msgid "male" msgstr "masculí" -#: ../../Zotlabs/Module/Cover_photo.php:236 ../../include/items.php:4286 +#: ../../Zotlabs/Module/Cover_photo.php:236 ../../include/items.php:4273 #, php-format msgid "%1$s updated his %2$s" msgstr "%1$s actualitzà el seu %2$s" -#: ../../Zotlabs/Module/Cover_photo.php:238 ../../include/items.php:4288 +#: ../../Zotlabs/Module/Cover_photo.php:238 ../../include/items.php:4275 #, php-format msgid "%1$s updated their %2$s" msgstr "%1$s actualitzà els seus %2$s" -#: ../../Zotlabs/Module/Cover_photo.php:240 ../../include/channel.php:1726 +#: ../../Zotlabs/Module/Cover_photo.php:240 ../../include/channel.php:1661 msgid "cover photo" msgstr "Foto de la portada" #: ../../Zotlabs/Module/Cover_photo.php:303 #: ../../Zotlabs/Module/Cover_photo.php:318 -#: ../../Zotlabs/Module/Profile_photo.php:300 -#: ../../Zotlabs/Module/Profile_photo.php:341 +#: ../../Zotlabs/Module/Profile_photo.php:283 +#: ../../Zotlabs/Module/Profile_photo.php:324 msgid "Photo not available." msgstr "Foto no disponible." #: ../../Zotlabs/Module/Cover_photo.php:354 -#: ../../Zotlabs/Module/Profile_photo.php:387 +#: ../../Zotlabs/Module/Profile_photo.php:365 msgid "Upload File:" msgstr "Puja Arxiu:" #: ../../Zotlabs/Module/Cover_photo.php:355 -#: ../../Zotlabs/Module/Profile_photo.php:388 +#: ../../Zotlabs/Module/Profile_photo.php:366 msgid "Select a profile:" msgstr "Tria un perfil:" @@ -1548,69 +1265,200 @@ msgid "Upload Cover Photo" msgstr "Puja Foto de Portada" #: ../../Zotlabs/Module/Cover_photo.php:361 -#: ../../Zotlabs/Module/Profile_photo.php:396 -#: ../../Zotlabs/Module/Settings.php:1080 +#: ../../Zotlabs/Module/Profile_photo.php:374 +#: ../../Zotlabs/Module/Settings.php:985 msgid "or" msgstr "o" #: ../../Zotlabs/Module/Cover_photo.php:361 -#: ../../Zotlabs/Module/Profile_photo.php:396 +#: ../../Zotlabs/Module/Profile_photo.php:374 msgid "skip this step" msgstr "salta aquest pas" #: ../../Zotlabs/Module/Cover_photo.php:361 -#: ../../Zotlabs/Module/Profile_photo.php:396 +#: ../../Zotlabs/Module/Profile_photo.php:374 msgid "select a photo from your photo albums" msgstr "tria una foto del teu àlbum de fotos" #: ../../Zotlabs/Module/Cover_photo.php:377 -#: ../../Zotlabs/Module/Profile_photo.php:415 +#: ../../Zotlabs/Module/Profile_photo.php:390 msgid "Crop Image" msgstr "Retalla Imatge" #: ../../Zotlabs/Module/Cover_photo.php:378 -#: ../../Zotlabs/Module/Profile_photo.php:416 +#: ../../Zotlabs/Module/Profile_photo.php:391 msgid "Please adjust the image cropping for optimum viewing." msgstr "Si us plau, retalla la imatge per a una optima visualització" #: ../../Zotlabs/Module/Cover_photo.php:380 -#: ../../Zotlabs/Module/Profile_photo.php:418 +#: ../../Zotlabs/Module/Profile_photo.php:393 msgid "Done Editing" msgstr "Edició Feta" -#: ../../Zotlabs/Module/Impel.php:41 ../../include/bbcode.php:192 -msgid "webpage" -msgstr "pàgina web" +#: ../../Zotlabs/Module/Editpost.php:35 +msgid "Item is not editable" +msgstr "Article no editable" -#: ../../Zotlabs/Module/Impel.php:46 ../../include/bbcode.php:198 -msgid "block" -msgstr "bloc" +#: ../../Zotlabs/Module/Editpost.php:106 ../../Zotlabs/Module/Rpost.php:135 +msgid "Edit post" +msgstr "Modifica l'entrada" -#: ../../Zotlabs/Module/Impel.php:51 ../../include/bbcode.php:195 -msgid "layout" -msgstr "disposició" +#: ../../Zotlabs/Module/Events.php:26 +msgid "Calendar entries imported." +msgstr "Entrades de Calendari importades." -#: ../../Zotlabs/Module/Impel.php:58 ../../include/bbcode.php:201 -msgid "menu" -msgstr "menú" +#: ../../Zotlabs/Module/Events.php:28 +msgid "No calendar entries found." +msgstr "No es troben entrades decalendari." -#: ../../Zotlabs/Module/Impel.php:187 -#, php-format -msgid "%s element installed" -msgstr "%s element instal·lat" +#: ../../Zotlabs/Module/Events.php:105 +msgid "Event can not end before it has started." +msgstr "L'esdeveniment ha de començar abans d'acabar." -#: ../../Zotlabs/Module/Impel.php:190 -#, php-format -msgid "%s element installation failed" -msgstr "%s instal·lació d'element va fallar" +#: ../../Zotlabs/Module/Events.php:107 ../../Zotlabs/Module/Events.php:116 +#: ../../Zotlabs/Module/Events.php:136 +msgid "Unable to generate preview." +msgstr "No s'ha pogut generar la vista prèvia." -#: ../../Zotlabs/Module/Cal.php:69 -msgid "Permissions denied." -msgstr "Permís denegat." +#: ../../Zotlabs/Module/Events.php:114 +msgid "Event title and start time are required." +msgstr "Cal indicar l'inici i el final de l'esdeveniment." -#: ../../Zotlabs/Module/Cal.php:337 -msgid "Import" -msgstr "Importar" +#: ../../Zotlabs/Module/Events.php:134 ../../Zotlabs/Module/Events.php:259 +msgid "Event not found." +msgstr "No s'ha trobat l'esdeveniment." + +#: ../../Zotlabs/Module/Events.php:254 ../../Zotlabs/Module/Like.php:373 +#: ../../Zotlabs/Module/Tagger.php:51 ../../include/event.php:949 +#: ../../include/text.php:1943 ../../include/conversation.php:123 +msgid "event" +msgstr "succés" + +#: ../../Zotlabs/Module/Events.php:449 +msgid "Edit event title" +msgstr "Edita el títol d'esdeveniment" + +#: ../../Zotlabs/Module/Events.php:449 +msgid "Event title" +msgstr "Títol esdeveniment" + +#: ../../Zotlabs/Module/Events.php:449 ../../Zotlabs/Module/Events.php:454 +#: ../../Zotlabs/Module/Profiles.php:709 ../../Zotlabs/Module/Profiles.php:713 +#: ../../Zotlabs/Module/Appman.php:115 ../../Zotlabs/Module/Appman.php:116 +#: ../../include/datetime.php:245 +msgid "Required" +msgstr "Requerit" + +#: ../../Zotlabs/Module/Events.php:451 +msgid "Categories (comma-separated list)" +msgstr "Categories (llista separada per comes)" + +#: ../../Zotlabs/Module/Events.php:452 +msgid "Edit Category" +msgstr "Editar Categoria" + +#: ../../Zotlabs/Module/Events.php:452 +msgid "Category" +msgstr "Categoria" + +#: ../../Zotlabs/Module/Events.php:455 +msgid "Edit start date and time" +msgstr "Editar data i hora d'inici" + +#: ../../Zotlabs/Module/Events.php:455 +msgid "Start date and time" +msgstr "Data i hora d'inici" + +#: ../../Zotlabs/Module/Events.php:456 ../../Zotlabs/Module/Events.php:459 +msgid "Finish date and time are not known or not relevant" +msgstr "L'ora de finalització no es coneix o es irrelevant." + +#: ../../Zotlabs/Module/Events.php:458 +msgid "Edit finish date and time" +msgstr "Editar la data i hora de finalització" + +#: ../../Zotlabs/Module/Events.php:458 +msgid "Finish date and time" +msgstr "Data i hora de finalització" + +#: ../../Zotlabs/Module/Events.php:460 ../../Zotlabs/Module/Events.php:461 +msgid "Adjust for viewer timezone" +msgstr "Ajusta a la zona horària del visitant." + +#: ../../Zotlabs/Module/Events.php:460 +msgid "" +"Important for events that happen in a particular place. Not practical for " +"global holidays." +msgstr "És important per esdeveniments locals, però pels globals no és pràctic." + +#: ../../Zotlabs/Module/Events.php:462 +msgid "Edit Description" +msgstr "Editar la Descripció" + +#: ../../Zotlabs/Module/Events.php:462 ../../Zotlabs/Module/Appman.php:117 +#: ../../Zotlabs/Module/Rbmark.php:101 +msgid "Description" +msgstr "Descripció" + +#: ../../Zotlabs/Module/Events.php:464 +msgid "Edit Location" +msgstr "Editar la localització" + +#: ../../Zotlabs/Module/Events.php:464 ../../Zotlabs/Module/Locs.php:117 +#: ../../Zotlabs/Module/Profiles.php:477 ../../Zotlabs/Module/Profiles.php:698 +#: ../../Zotlabs/Module/Pubsites.php:41 ../../include/js_strings.php:25 +msgid "Location" +msgstr "Localització" + +#: ../../Zotlabs/Module/Events.php:467 ../../Zotlabs/Module/Events.php:469 +msgid "Share this event" +msgstr "Comparteix aquest esdeveniment" + +#: ../../Zotlabs/Module/Events.php:470 ../../Zotlabs/Module/Photos.php:1093 +#: ../../Zotlabs/Module/Webpages.php:194 ../../Zotlabs/Lib/ThreadItem.php:719 +#: ../../include/conversation.php:1187 ../../include/page_widgets.php:40 +msgid "Preview" +msgstr "Avanç" + +#: ../../Zotlabs/Module/Events.php:471 ../../include/conversation.php:1232 +msgid "Permission settings" +msgstr "Ajustos de permisos" + +#: ../../Zotlabs/Module/Events.php:476 +msgid "Advanced Options" +msgstr "Opcions Avançades" + +#: ../../Zotlabs/Module/Events.php:610 +msgid "Edit event" +msgstr "Edita l'esdeveniment" + +#: ../../Zotlabs/Module/Events.php:612 +msgid "Delete event" +msgstr "Esborra l'esdeveniment" + +#: ../../Zotlabs/Module/Events.php:646 +msgid "calendar" +msgstr "calendari" + +#: ../../Zotlabs/Module/Events.php:706 +msgid "Event removed" +msgstr "S'ha eliminat l'esdeveniment" + +#: ../../Zotlabs/Module/Events.php:709 +msgid "Failed to remove event" +msgstr "No s'ha pogut esborrar l'esdeveniment" + +#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:220 +#: ../../include/nav.php:92 ../../include/conversation.php:1632 +msgid "Photos" +msgstr "Fotos" + +#: ../../Zotlabs/Module/Fbrowser.php:66 ../../Zotlabs/Module/Fbrowser.php:88 +#: ../../Zotlabs/Module/Admin.php:1406 ../../Zotlabs/Module/Settings.php:591 +#: ../../Zotlabs/Module/Settings.php:617 ../../Zotlabs/Module/Tagrm.php:15 +#: ../../Zotlabs/Module/Tagrm.php:138 ../../include/conversation.php:1259 +msgid "Cancel" +msgstr "Cancel·la" #: ../../Zotlabs/Module/Dirsearch.php:25 ../../Zotlabs/Module/Regdir.php:49 msgid "This site is not a directory server" @@ -1620,184 +1468,112 @@ msgstr "Aquest lloc web no és un servidor de directori" msgid "This directory server requires an access token" msgstr "Aquest servidor de directori requereix un token de accès" -#: ../../Zotlabs/Module/Chat.php:25 ../../Zotlabs/Module/Channel.php:28 -#: ../../Zotlabs/Module/Wiki.php:20 -msgid "You must be logged in to see this page." -msgstr "Has d'estar identificat per a veure aquesta pàgina." +#: ../../Zotlabs/Module/Filer.php:52 +msgid "Save to Folder:" +msgstr "Guardar en la Carpeta" -#: ../../Zotlabs/Module/Chat.php:181 -msgid "Room not found" -msgstr "No s'ha trobat la sala" +#: ../../Zotlabs/Module/Filer.php:52 +msgid "- select -" +msgstr "- selecciona -" -#: ../../Zotlabs/Module/Chat.php:197 -msgid "Leave Room" -msgstr "Abandona la sala" +#: ../../Zotlabs/Module/Filer.php:53 ../../Zotlabs/Module/Admin.php:2033 +#: ../../Zotlabs/Module/Admin.php:2053 ../../Zotlabs/Module/Rbmark.php:32 +#: ../../Zotlabs/Module/Rbmark.php:104 ../../include/text.php:946 +#: ../../include/text.php:958 ../../include/widgets.php:201 +msgid "Save" +msgstr "Guardar" -#: ../../Zotlabs/Module/Chat.php:198 -msgid "Delete Room" -msgstr "Esborra Sala" - -#: ../../Zotlabs/Module/Chat.php:199 -msgid "I am away right now" -msgstr "Absent" - -#: ../../Zotlabs/Module/Chat.php:200 -msgid "I am online" -msgstr "Estic connectat/da" - -#: ../../Zotlabs/Module/Chat.php:202 -msgid "Bookmark this room" -msgstr "Fes favorit aquest xat" - -#: ../../Zotlabs/Module/Chat.php:205 ../../Zotlabs/Module/Mail.php:197 -#: ../../Zotlabs/Module/Mail.php:306 ../../include/conversation.php:1181 -msgid "Please enter a link URL:" -msgstr "Si us plau entra l'enllaç URL:" - -#: ../../Zotlabs/Module/Chat.php:206 ../../Zotlabs/Module/Mail.php:250 -#: ../../Zotlabs/Module/Mail.php:375 ../../Zotlabs/Lib/ThreadItem.php:722 -#: ../../include/conversation.php:1271 -msgid "Encrypt text" -msgstr "Text encriptat" - -#: ../../Zotlabs/Module/Chat.php:207 ../../Zotlabs/Module/Editwebpage.php:146 -#: ../../Zotlabs/Module/Mail.php:244 ../../Zotlabs/Module/Mail.php:369 -#: ../../Zotlabs/Module/Editblock.php:111 ../../include/conversation.php:1146 -msgid "Insert web link" -msgstr "Insereix enllaç web" - -#: ../../Zotlabs/Module/Chat.php:218 -msgid "Feature disabled." -msgstr "Funcionalitat desactivada." - -#: ../../Zotlabs/Module/Chat.php:232 -msgid "New Chatroom" -msgstr "Nova sala per a Xerrar" - -#: ../../Zotlabs/Module/Chat.php:233 -msgid "Chatroom name" -msgstr "Nom de la sala de xat" - -#: ../../Zotlabs/Module/Chat.php:234 -msgid "Expiration of chats (minutes)" -msgstr "Expiració dels chats (minuts)" - -#: ../../Zotlabs/Module/Chat.php:235 ../../Zotlabs/Module/Filestorage.php:152 -#: ../../Zotlabs/Module/Photos.php:669 ../../Zotlabs/Module/Photos.php:1043 -#: ../../Zotlabs/Module/Thing.php:313 ../../Zotlabs/Module/Thing.php:359 -#: ../../include/acl_selectors.php:281 -msgid "Permissions" -msgstr "Permisos " - -#: ../../Zotlabs/Module/Chat.php:246 -#, php-format -msgid "%1$s's Chatrooms" -msgstr "%1$s de Xats" - -#: ../../Zotlabs/Module/Chat.php:251 -msgid "No chatrooms available" -msgstr "No hi ha sales de xat disponibles" - -#: ../../Zotlabs/Module/Chat.php:252 ../../Zotlabs/Module/Profiles.php:778 -#: ../../Zotlabs/Module/Manage.php:143 -msgid "Create New" -msgstr "Crear Nou" - -#: ../../Zotlabs/Module/Chat.php:255 -msgid "Expiration" -msgstr "Expiració" - -#: ../../Zotlabs/Module/Chat.php:256 -msgid "min" -msgstr "min" - -#: ../../Zotlabs/Module/Dreport.php:44 +#: ../../Zotlabs/Module/Dreport.php:27 msgid "Invalid message" msgstr "Missatge invàlid." -#: ../../Zotlabs/Module/Dreport.php:76 +#: ../../Zotlabs/Module/Dreport.php:59 msgid "no results" msgstr "sense resultats" -#: ../../Zotlabs/Module/Dreport.php:91 -msgid "channel sync processed" -msgstr "sincronització del canal processada" - -#: ../../Zotlabs/Module/Dreport.php:95 -msgid "queued" -msgstr "Posat en cua" - -#: ../../Zotlabs/Module/Dreport.php:99 -msgid "posted" -msgstr "enviat" - -#: ../../Zotlabs/Module/Dreport.php:103 -msgid "accepted for delivery" -msgstr "acceptat per entregar" - -#: ../../Zotlabs/Module/Dreport.php:107 -msgid "updated" -msgstr "actualitzat" - -#: ../../Zotlabs/Module/Dreport.php:110 -msgid "update ignored" -msgstr "actualització ignorada" - -#: ../../Zotlabs/Module/Dreport.php:113 -msgid "permission denied" -msgstr "permís denegat" - -#: ../../Zotlabs/Module/Dreport.php:117 -msgid "recipient not found" -msgstr "Contenidor no trobat" - -#: ../../Zotlabs/Module/Dreport.php:120 -msgid "mail recalled" -msgstr "Recupera el correu" - -#: ../../Zotlabs/Module/Dreport.php:123 -msgid "duplicate mail received" -msgstr "rebut correu duplicat" - -#: ../../Zotlabs/Module/Dreport.php:126 -msgid "mail delivered" -msgstr "correu entregat" - -#: ../../Zotlabs/Module/Dreport.php:146 +#: ../../Zotlabs/Module/Dreport.php:64 #, php-format msgid "Delivery report for %1$s" msgstr "Informe de lliurament per %1$s" -#: ../../Zotlabs/Module/Dreport.php:149 -msgid "Options" -msgstr "" +#: ../../Zotlabs/Module/Dreport.php:78 +msgid "channel sync processed" +msgstr "sincronització del canal processada" -#: ../../Zotlabs/Module/Dreport.php:150 -msgid "Redeliver" -msgstr "" +#: ../../Zotlabs/Module/Dreport.php:82 +msgid "queued" +msgstr "Posat en cua" -#: ../../Zotlabs/Module/Editlayout.php:127 -#: ../../Zotlabs/Module/Layouts.php:128 ../../Zotlabs/Module/Layouts.php:188 +#: ../../Zotlabs/Module/Dreport.php:86 +msgid "posted" +msgstr "enviat" + +#: ../../Zotlabs/Module/Dreport.php:90 +msgid "accepted for delivery" +msgstr "acceptat per entregar" + +#: ../../Zotlabs/Module/Dreport.php:94 +msgid "updated" +msgstr "actualitzat" + +#: ../../Zotlabs/Module/Dreport.php:97 +msgid "update ignored" +msgstr "actualització ignorada" + +#: ../../Zotlabs/Module/Dreport.php:100 +msgid "permission denied" +msgstr "permís denegat" + +#: ../../Zotlabs/Module/Dreport.php:104 +msgid "recipient not found" +msgstr "Contenidor no trobat" + +#: ../../Zotlabs/Module/Dreport.php:107 +msgid "mail recalled" +msgstr "Recupera el correu" + +#: ../../Zotlabs/Module/Dreport.php:110 +msgid "duplicate mail received" +msgstr "rebut correu duplicat" + +#: ../../Zotlabs/Module/Dreport.php:113 +msgid "mail delivered" +msgstr "correu entregat" + +#: ../../Zotlabs/Module/Editlayout.php:126 +#: ../../Zotlabs/Module/Layouts.php:127 ../../Zotlabs/Module/Layouts.php:186 msgid "Layout Name" msgstr "Nom del Format Gràfic" -#: ../../Zotlabs/Module/Editlayout.php:128 -#: ../../Zotlabs/Module/Layouts.php:131 +#: ../../Zotlabs/Module/Editlayout.php:127 +#: ../../Zotlabs/Module/Layouts.php:130 msgid "Layout Description (Optional)" msgstr "Descripció del Format (Opcional)" -#: ../../Zotlabs/Module/Editlayout.php:136 +#: ../../Zotlabs/Module/Editlayout.php:135 msgid "Edit Layout" msgstr "Edita Format Gràfic" -#: ../../Zotlabs/Module/Editwebpage.php:142 +#: ../../Zotlabs/Module/Editwebpage.php:143 msgid "Page link" msgstr "Enllaç de la pàgina" -#: ../../Zotlabs/Module/Editwebpage.php:168 +#: ../../Zotlabs/Module/Editwebpage.php:169 msgid "Edit Webpage" msgstr "Edita la Pàgina Web" +#: ../../Zotlabs/Module/Follow.php:34 +msgid "Channel added." +msgstr "S'ha afegit el canal." + +#: ../../Zotlabs/Module/Acl.php:227 +msgid "network" +msgstr "xarxa" + +#: ../../Zotlabs/Module/Acl.php:237 +msgid "RSS" +msgstr "RSS" + #: ../../Zotlabs/Module/Group.php:24 msgid "Privacy group created." msgstr "Creat grup privat." @@ -1807,7 +1583,7 @@ msgid "Could not create privacy group." msgstr "No es pot crear el grup privat." #: ../../Zotlabs/Module/Group.php:42 ../../Zotlabs/Module/Group.php:141 -#: ../../include/items.php:3902 +#: ../../include/items.php:3893 msgid "Privacy group not found." msgstr "No es troben grups privats." @@ -1851,57 +1627,31 @@ msgstr "Tots els Canals Connectats" msgid "Click on a channel to add or remove." msgstr "Clic sobre el canal per afegir o esborrar." -#: ../../Zotlabs/Module/Appman.php:37 ../../Zotlabs/Module/Appman.php:53 -msgid "App installed." -msgstr "Aplicació instal·lada." +#: ../../Zotlabs/Module/Ffsapi.php:12 +msgid "Share content from Firefox to $Projectname" +msgstr "Compartir contingut des de Firefox a $Projectname" -#: ../../Zotlabs/Module/Appman.php:46 -msgid "Malformed app." -msgstr "Aplicació amb errors" +#: ../../Zotlabs/Module/Ffsapi.php:15 +msgid "Activate the Firefox $Projectname provider" +msgstr "Activar el proveïdor de $Projectname a Firefox" -#: ../../Zotlabs/Module/Appman.php:104 -msgid "Embed code" -msgstr "Codi embegut" +#: ../../Zotlabs/Module/Api.php:61 ../../Zotlabs/Module/Api.php:85 +msgid "Authorize application connection" +msgstr "Autoritza la connexió de l'aplicació" -#: ../../Zotlabs/Module/Appman.php:110 ../../include/widgets.php:107 -msgid "Edit App" -msgstr "Edita l'Aplicació" +#: ../../Zotlabs/Module/Api.php:62 +msgid "Return to your app and insert this Securty Code:" +msgstr "Torna a la teva aplicació i insereix aquest Codi de Seguretat:" -#: ../../Zotlabs/Module/Appman.php:110 -msgid "Create App" -msgstr "Crea l'Aplicació" +#: ../../Zotlabs/Module/Api.php:72 +msgid "Please login to continue." +msgstr "Si et plau, identifica't per continuar." -#: ../../Zotlabs/Module/Appman.php:115 -msgid "Name of app" -msgstr "Nom de l'Aplicació" - -#: ../../Zotlabs/Module/Appman.php:116 -msgid "Location (URL) of app" -msgstr "Ubicació (URL) de l'aplicació" - -#: ../../Zotlabs/Module/Appman.php:118 -msgid "Photo icon URL" -msgstr "Foto icona URL" - -#: ../../Zotlabs/Module/Appman.php:118 -msgid "80 x 80 pixels - optional" -msgstr "80 x 80 pixels - opcional" - -#: ../../Zotlabs/Module/Appman.php:119 -msgid "Categories (optional, comma separated list)" -msgstr "Categories (opcional, lista separada per comes)" - -#: ../../Zotlabs/Module/Appman.php:120 -msgid "Version ID" -msgstr "Versió ID" - -#: ../../Zotlabs/Module/Appman.php:121 -msgid "Price of app" -msgstr "Preu de l'aplicació" - -#: ../../Zotlabs/Module/Appman.php:122 -msgid "Location (URL) to purchase app" -msgstr "Ubicació (URL) per comprar l'aplicació" +#: ../../Zotlabs/Module/Api.php:87 +msgid "" +"Do you want to authorize this application to access your posts and contacts," +" and/or create new posts for you?" +msgstr "Vols autoritzar a aquesta aplicació l'accés a les teves entrades i contactes i/o a crear noves entrades com si fos tu mateix." #: ../../Zotlabs/Module/Help.php:26 msgid "Documentation Search" @@ -1913,8 +1663,8 @@ msgid "Help:" msgstr "Ajuda:" #: ../../Zotlabs/Module/Help.php:85 ../../Zotlabs/Module/Help.php:90 -#: ../../Zotlabs/Module/Layouts.php:185 ../../Zotlabs/Lib/Apps.php:225 -#: ../../include/nav.php:161 +#: ../../Zotlabs/Module/Layouts.php:183 ../../Zotlabs/Lib/Apps.php:223 +#: ../../include/nav.php:159 msgid "Help" msgstr "Ajuda" @@ -1922,124 +1672,335 @@ msgstr "Ajuda" msgid "$Projectname Documentation" msgstr "$Projectname Documentació" +#: ../../Zotlabs/Module/Filestorage.php:88 +msgid "Permission Denied." +msgstr "Permisos Denegats." + +#: ../../Zotlabs/Module/Filestorage.php:104 +msgid "File not found." +msgstr "Arxiu no torbat." + +#: ../../Zotlabs/Module/Filestorage.php:147 +msgid "Edit file permissions" +msgstr "Edita els permisos d'arxiu" + +#: ../../Zotlabs/Module/Filestorage.php:156 +msgid "Set/edit permissions" +msgstr "Canvia/edita permisos" + +#: ../../Zotlabs/Module/Filestorage.php:157 +msgid "Include all files and sub folders" +msgstr "Inclou tots als arxius i subdirectoris" + +#: ../../Zotlabs/Module/Filestorage.php:158 +msgid "Return to file list" +msgstr "Tornar al llistat d'arxius" + +#: ../../Zotlabs/Module/Filestorage.php:160 +msgid "Copy/paste this code to attach file to a post" +msgstr "Copia/enganxa aquest codi per a adjuntar un arxiu a l'entrada" + +#: ../../Zotlabs/Module/Filestorage.php:161 +msgid "Copy/paste this URL to link file from a web page" +msgstr "Copia/enganxa aquesta URL per a enllaçar l'arxiu d'una pàgina web" + +#: ../../Zotlabs/Module/Filestorage.php:163 +msgid "Share this file" +msgstr "Comparteix l'arxiu" + +#: ../../Zotlabs/Module/Filestorage.php:164 +msgid "Show URL to this file" +msgstr "Mostra la URL d'aquest arxiu" + +#: ../../Zotlabs/Module/Filestorage.php:165 +msgid "Notify your contacts about this file" +msgstr "Notifica als teus contactes aquest arxiu" + +#: ../../Zotlabs/Module/Apps.php:47 ../../include/widgets.php:102 +#: ../../include/nav.php:163 +msgid "Apps" +msgstr "Aplicatius" + #: ../../Zotlabs/Module/Attach.php:13 msgid "Item not available." msgstr "Article no disponible." -#: ../../Zotlabs/Module/Pdledit.php:18 -msgid "Layout updated." -msgstr "S'ha actualitzat la disposició." +#: ../../Zotlabs/Module/Import.php:32 +#, php-format +msgid "Your service plan only allows %d channels." +msgstr "El teu paquet de serveis només admet %d canals." -#: ../../Zotlabs/Module/Pdledit.php:34 ../../Zotlabs/Module/Pdledit.php:61 -msgid "Edit System Page Description" -msgstr "Editor del Sistema de Descripció de Pàgines" +#: ../../Zotlabs/Module/Import.php:70 ../../Zotlabs/Module/Import_items.php:42 +msgid "Nothing to import." +msgstr "No hi ha res a importar." -#: ../../Zotlabs/Module/Pdledit.php:56 -msgid "Layout not found." -msgstr "No s'ha trobat cap disposició de pàgina." +#: ../../Zotlabs/Module/Import.php:94 ../../Zotlabs/Module/Import_items.php:66 +msgid "Unable to download data from old server" +msgstr "No s'han pogut descarregar les dades del servidor antic" -#: ../../Zotlabs/Module/Pdledit.php:62 -msgid "Module Name:" -msgstr "Nom del mòdul:" +#: ../../Zotlabs/Module/Import.php:100 +#: ../../Zotlabs/Module/Import_items.php:72 +msgid "Imported file is empty." +msgstr "El fitxer importat està buit." -#: ../../Zotlabs/Module/Pdledit.php:63 -msgid "Layout Help" -msgstr "Ajuda per la disposició de pàgina" +#: ../../Zotlabs/Module/Import.php:122 +#: ../../Zotlabs/Module/Import_items.php:86 +#, php-format +msgid "Warning: Database versions differ by %1$d updates." +msgstr "Atenció: Les versions de la Base de Dades difereixen en %1$d actualitzacions." -#: ../../Zotlabs/Module/Ffsapi.php:12 -msgid "Share content from Firefox to $Projectname" -msgstr "Compartir contingut des de Firefox a $Projectname" +#: ../../Zotlabs/Module/Import.php:150 ../../include/import.php:86 +msgid "Cloned channel not found. Import failed." +msgstr "No s'ha pogut importar el canal perquè el canal clonat no s'ha trobat." -#: ../../Zotlabs/Module/Ffsapi.php:15 -msgid "Activate the Firefox $Projectname provider" -msgstr "Activar el proveïdor de $Projectname a Firefox" +#: ../../Zotlabs/Module/Import.php:160 +msgid "No channel. Import failed." +msgstr "Sense canal. No s'ha pogut importar." -#: ../../Zotlabs/Module/Acl.php:312 -msgid "network" -msgstr "xarxa" +#: ../../Zotlabs/Module/Import.php:510 +#: ../../include/Import/import_diaspora.php:142 +msgid "Import completed." +msgstr "S'ha completat la importació." -#: ../../Zotlabs/Module/Acl.php:322 -msgid "RSS" -msgstr "RSS" +#: ../../Zotlabs/Module/Import.php:532 +msgid "You must be logged in to use this feature." +msgstr "Has d'estar registrat per fer servir aquesta funcionalitat." -#: ../../Zotlabs/Module/Filestorage.php:87 -msgid "Permission Denied." -msgstr "Permisos Denegats." +#: ../../Zotlabs/Module/Import.php:537 +msgid "Import Channel" +msgstr "Importa un canal" -#: ../../Zotlabs/Module/Filestorage.php:103 -msgid "File not found." -msgstr "Arxiu no torbat." +#: ../../Zotlabs/Module/Import.php:538 +msgid "" +"Use this form to import an existing channel from a different server/hub. You" +" may retrieve the channel identity from the old server/hub via the network " +"or provide an export file." +msgstr "Empra aquest formulari per importar un canal existent en un altre servidor/concentrador. Pots recuperar el canal des de l'antic servidor/concentrador via la xarxa o mitjançant un fitxer d'exportació" -#: ../../Zotlabs/Module/Filestorage.php:146 -msgid "Edit file permissions" -msgstr "Edita els permisos d'arxiu" +#: ../../Zotlabs/Module/Import.php:539 +#: ../../Zotlabs/Module/Import_items.php:119 +msgid "File to Upload" +msgstr "Fitxer a pujar" -#: ../../Zotlabs/Module/Filestorage.php:155 -msgid "Set/edit permissions" -msgstr "Canvia/edita permisos" +#: ../../Zotlabs/Module/Import.php:540 +msgid "Or provide the old server/hub details" +msgstr "O proveeix els detalls de l'antic servidor/node" -#: ../../Zotlabs/Module/Filestorage.php:156 -msgid "Include all files and sub folders" -msgstr "Inclou tots als arxius i subdirectoris" +#: ../../Zotlabs/Module/Import.php:541 +msgid "Your old identity address (xyz@example.com)" +msgstr "La teva adreça de canal antiga. El format és canal@exemple.org" -#: ../../Zotlabs/Module/Filestorage.php:157 -msgid "Return to file list" -msgstr "Tornar al llistat d'arxius" +#: ../../Zotlabs/Module/Import.php:542 +msgid "Your old login email address" +msgstr "La teva adreça de correu electrònic antiga" -#: ../../Zotlabs/Module/Filestorage.php:159 -msgid "Copy/paste this code to attach file to a post" -msgstr "Copia/enganxa aquest codi per a adjuntar un arxiu a l'entrada" +#: ../../Zotlabs/Module/Import.php:543 +msgid "Your old login password" +msgstr "La teva contrasenya antiga" -#: ../../Zotlabs/Module/Filestorage.php:160 -msgid "Copy/paste this URL to link file from a web page" -msgstr "Copia/enganxa aquesta URL per a enllaçar l'arxiu d'una pàgina web" +#: ../../Zotlabs/Module/Import.php:544 +msgid "" +"For either option, please choose whether to make this hub your new primary " +"address, or whether your old location should continue this role. You will be" +" able to post from either location, but only one can be marked as the " +"primary location for files, photos, and media." +msgstr "Per a qualsevol de les opcions, escull si vols fer primària l'adreça d'aquest node o mantenir l'anterior com a primària. Podràs penjar entrades des de totes dues adreces, però per als fitxers, imatges i altres en cal una de primària." -#: ../../Zotlabs/Module/Filestorage.php:162 -msgid "Share this file" -msgstr "Comparteix l'arxiu" +#: ../../Zotlabs/Module/Import.php:545 +msgid "Make this hub my primary location" +msgstr "Fes d'aquest node la meva ubicació primària" -#: ../../Zotlabs/Module/Filestorage.php:163 -msgid "Show URL to this file" -msgstr "Mostra la URL d'aquest arxiu" +#: ../../Zotlabs/Module/Import.php:546 +msgid "" +"Import existing posts if possible (experimental - limited by available " +"memory" +msgstr "Importa les entrades existents si es possible (experimental - limitat per la memòria disponible" -#: ../../Zotlabs/Module/Filestorage.php:164 -msgid "Notify your contacts about this file" -msgstr "Notifica als teus contactes aquest arxiu" +#: ../../Zotlabs/Module/Import.php:547 +msgid "" +"This process may take several minutes to complete. Please submit the form " +"only once and leave this page open until finished." +msgstr "Aquest procès pot trigar minuts en completar. Si et plau envia el formulari només una vegada i manté aquesta pàgina oberta fins que finalitzi." -#: ../../Zotlabs/Module/Layouts.php:183 ../../include/text.php:2240 +#: ../../Zotlabs/Module/Item.php:178 +msgid "Unable to locate original post." +msgstr "No s'ha pogut trobar l'entrada original." + +#: ../../Zotlabs/Module/Item.php:427 +msgid "Empty post discarded." +msgstr "S'ha descartat l'entrada perquè no té contingut." + +#: ../../Zotlabs/Module/Item.php:467 +msgid "Executable content type not permitted to this channel." +msgstr "No està permès el contingut de tipus executable en aquest canal." + +#: ../../Zotlabs/Module/Item.php:847 +msgid "Duplicate post suppressed." +msgstr "Publicació duplicada s'ha suprimit." + +#: ../../Zotlabs/Module/Item.php:977 +msgid "System error. Post not saved." +msgstr "Hi ha hagut un error del sistema. L'entrada no s'ha desat." + +#: ../../Zotlabs/Module/Item.php:1241 +msgid "Unable to obtain post information from database." +msgstr "No s'ha pogut obtenir informació de l'entrada a la base de dades." + +#: ../../Zotlabs/Module/Item.php:1248 +#, php-format +msgid "You have reached your limit of %1$.0f top level posts." +msgstr "Has assolit el teu límit de %1$.0f entrades (descomptant comentaris)." + +#: ../../Zotlabs/Module/Item.php:1255 +#, php-format +msgid "You have reached your limit of %1$.0f webpages." +msgstr "Has assolit el teu limit de %1$.0f pàgines web." + +#: ../../Zotlabs/Module/Layouts.php:181 ../../include/text.php:2267 msgid "Layouts" msgstr "Format Gràfic" -#: ../../Zotlabs/Module/Layouts.php:185 +#: ../../Zotlabs/Module/Layouts.php:183 msgid "Comanche page description language help" msgstr "Pgina d'ajuda del llenguatge Comanche" -#: ../../Zotlabs/Module/Layouts.php:189 +#: ../../Zotlabs/Module/Layouts.php:187 msgid "Layout Description" msgstr "Descripció del Disseny de la Pàgina" -#: ../../Zotlabs/Module/Layouts.php:190 ../../Zotlabs/Module/Menu.php:114 -#: ../../Zotlabs/Module/Blocks.php:157 ../../Zotlabs/Module/Webpages.php:205 -#: ../../include/page_widgets.php:47 -msgid "Created" -msgstr "Creat" - -#: ../../Zotlabs/Module/Layouts.php:191 ../../Zotlabs/Module/Menu.php:115 -#: ../../Zotlabs/Module/Blocks.php:158 ../../Zotlabs/Module/Webpages.php:206 -#: ../../include/page_widgets.php:48 -msgid "Edited" -msgstr "Editat" - -#: ../../Zotlabs/Module/Layouts.php:193 ../../Zotlabs/Module/Photos.php:1070 -#: ../../Zotlabs/Module/Blocks.php:161 ../../Zotlabs/Module/Webpages.php:195 -#: ../../include/conversation.php:1219 -msgid "Share" -msgstr "Compartir" - -#: ../../Zotlabs/Module/Layouts.php:194 +#: ../../Zotlabs/Module/Layouts.php:192 msgid "Download PDL file" msgstr "Descarrega l'arxiu PDL" +#: ../../Zotlabs/Module/Home.php:61 ../../Zotlabs/Module/Home.php:69 +#: ../../Zotlabs/Module/Siteinfo.php:65 +msgid "$Projectname" +msgstr "$Projectname" + +#: ../../Zotlabs/Module/Home.php:79 +#, php-format +msgid "Welcome to %s" +msgstr "Benvingut a %s" + +#: ../../Zotlabs/Module/Id.php:13 +msgid "First Name" +msgstr "Nom" + +#: ../../Zotlabs/Module/Id.php:14 +msgid "Last Name" +msgstr "Cognoms" + +#: ../../Zotlabs/Module/Id.php:15 +msgid "Nickname" +msgstr "Àlies" + +#: ../../Zotlabs/Module/Id.php:16 +msgid "Full Name" +msgstr "Nom Sencer" + +#: ../../Zotlabs/Module/Id.php:17 ../../Zotlabs/Module/Id.php:18 +#: ../../Zotlabs/Module/Admin.php:1035 ../../Zotlabs/Module/Admin.php:1047 +#: ../../include/network.php:2151 ../../boot.php:1705 +msgid "Email" +msgstr "Correu electrónic" + +#: ../../Zotlabs/Module/Id.php:19 ../../Zotlabs/Module/Id.php:20 +#: ../../Zotlabs/Module/Id.php:21 ../../Zotlabs/Lib/Apps.php:236 +msgid "Profile Photo" +msgstr "Foto del Perfil" + +#: ../../Zotlabs/Module/Id.php:22 +msgid "Profile Photo 16px" +msgstr "Foto del Perfil 16px" + +#: ../../Zotlabs/Module/Id.php:23 +msgid "Profile Photo 32px" +msgstr "Foto del Perfil 32px" + +#: ../../Zotlabs/Module/Id.php:24 +msgid "Profile Photo 48px" +msgstr "Foto del Perfil 48px" + +#: ../../Zotlabs/Module/Id.php:25 +msgid "Profile Photo 64px" +msgstr "Foto del Perfil 64px" + +#: ../../Zotlabs/Module/Id.php:26 +msgid "Profile Photo 80px" +msgstr "Foto del Perfil 80px" + +#: ../../Zotlabs/Module/Id.php:27 +msgid "Profile Photo 128px" +msgstr "Foto del Perfil 128px" + +#: ../../Zotlabs/Module/Id.php:28 +msgid "Timezone" +msgstr "Zona horària" + +#: ../../Zotlabs/Module/Id.php:29 ../../Zotlabs/Module/Profiles.php:731 +msgid "Homepage URL" +msgstr "URL de la pàgina d'inici" + +#: ../../Zotlabs/Module/Id.php:30 ../../Zotlabs/Lib/Apps.php:234 +msgid "Language" +msgstr "Idioma" + +#: ../../Zotlabs/Module/Id.php:31 +msgid "Birth Year" +msgstr "Any de Naixement" + +#: ../../Zotlabs/Module/Id.php:32 +msgid "Birth Month" +msgstr "Mes de Naixement" + +#: ../../Zotlabs/Module/Id.php:33 +msgid "Birth Day" +msgstr "Dia de Naixement" + +#: ../../Zotlabs/Module/Id.php:34 +msgid "Birthdate" +msgstr "Aniversari" + +#: ../../Zotlabs/Module/Id.php:35 ../../Zotlabs/Module/Profiles.php:454 +msgid "Gender" +msgstr "Gènere" + +#: ../../Zotlabs/Module/Id.php:108 ../../include/selectors.php:49 +#: ../../include/selectors.php:66 +msgid "Male" +msgstr "Masculí" + +#: ../../Zotlabs/Module/Id.php:110 ../../include/selectors.php:49 +#: ../../include/selectors.php:66 +msgid "Female" +msgstr "Femení" + +#: ../../Zotlabs/Module/Impel.php:41 ../../include/bbcode.php:192 +msgid "webpage" +msgstr "pàgina web" + +#: ../../Zotlabs/Module/Impel.php:46 ../../include/bbcode.php:198 +msgid "block" +msgstr "bloc" + +#: ../../Zotlabs/Module/Impel.php:51 ../../include/bbcode.php:195 +msgid "layout" +msgstr "disposició" + +#: ../../Zotlabs/Module/Impel.php:58 ../../include/bbcode.php:201 +msgid "menu" +msgstr "menú" + +#: ../../Zotlabs/Module/Impel.php:196 +#, php-format +msgid "%s element installed" +msgstr "%s element instal·lat" + +#: ../../Zotlabs/Module/Impel.php:199 +#, php-format +msgid "%s element installation failed" +msgstr "%s instal·lació d'element va fallar" + #: ../../Zotlabs/Module/Like.php:19 msgid "Like/Dislike" msgstr "M'agrada / No m'agrada" @@ -2075,65 +2036,1180 @@ msgstr "El canal està inactiu." msgid "Previous action reversed." msgstr "S'ha desfet l'acció anterior." -#: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87 -#: ../../Zotlabs/Module/Tagger.php:47 ../../include/conversation.php:120 -#: ../../include/text.php:1921 +#: ../../Zotlabs/Module/Like.php:371 ../../Zotlabs/Module/Subthread.php:87 +#: ../../Zotlabs/Module/Tagger.php:47 ../../include/text.php:1940 +#: ../../include/conversation.php:120 msgid "photo" msgstr "foto" -#: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87 -#: ../../include/conversation.php:148 ../../include/text.php:1927 +#: ../../Zotlabs/Module/Like.php:371 ../../Zotlabs/Module/Subthread.php:87 +#: ../../include/text.php:1946 ../../include/conversation.php:148 msgid "status" msgstr "estat" -#: ../../Zotlabs/Module/Like.php:419 ../../include/conversation.php:164 +#: ../../Zotlabs/Module/Like.php:420 ../../include/conversation.php:164 #, php-format msgid "%1$s likes %2$s's %3$s" msgstr "%1$s agrada %2$s de %3$s" -#: ../../Zotlabs/Module/Like.php:421 ../../include/conversation.php:167 +#: ../../Zotlabs/Module/Like.php:422 ../../include/conversation.php:167 #, php-format msgid "%1$s doesn't like %2$s's %3$s" msgstr "%1$s no agrada %2$s de %3$s" -#: ../../Zotlabs/Module/Like.php:423 +#: ../../Zotlabs/Module/Like.php:424 #, php-format msgid "%1$s agrees with %2$s's %3$s" msgstr "%1$s està d'acord amb %3$s de %2$s" -#: ../../Zotlabs/Module/Like.php:425 +#: ../../Zotlabs/Module/Like.php:426 #, php-format msgid "%1$s doesn't agree with %2$s's %3$s" msgstr "%1$s no està d'acord amb %3$s de %2$s" -#: ../../Zotlabs/Module/Like.php:427 +#: ../../Zotlabs/Module/Like.php:428 #, php-format msgid "%1$s abstains from a decision on %2$s's %3$s" msgstr "%1$s s'abstén en %3$s de %2$s" -#: ../../Zotlabs/Module/Like.php:429 +#: ../../Zotlabs/Module/Like.php:430 #, php-format msgid "%1$s is attending %2$s's %3$s" msgstr "%1$s assistirà a %3$s de %2$s" -#: ../../Zotlabs/Module/Like.php:431 +#: ../../Zotlabs/Module/Like.php:432 #, php-format msgid "%1$s is not attending %2$s's %3$s" msgstr "%1$s no assistirà a %3$s de %2$s" -#: ../../Zotlabs/Module/Like.php:433 +#: ../../Zotlabs/Module/Like.php:434 #, php-format msgid "%1$s may attend %2$s's %3$s" msgstr "%1$s potser assistirà a %3$s de %2$s" -#: ../../Zotlabs/Module/Like.php:536 +#: ../../Zotlabs/Module/Like.php:537 msgid "Action completed." msgstr "S'ha completat l'acció." -#: ../../Zotlabs/Module/Like.php:537 +#: ../../Zotlabs/Module/Like.php:538 msgid "Thank you." msgstr "Gràcies." +#: ../../Zotlabs/Module/Import_items.php:102 +msgid "Import completed" +msgstr "S'ha completat la importació" + +#: ../../Zotlabs/Module/Import_items.php:117 +msgid "Import Items" +msgstr "Importa Articles" + +#: ../../Zotlabs/Module/Import_items.php:118 +msgid "" +"Use this form to import existing posts and content from an export file." +msgstr "Empra aquest formulari per importar entrades existents i contingut d'un arxiu d'exportació." + +#: ../../Zotlabs/Module/Invite.php:29 +msgid "Total invitation limit exceeded." +msgstr "El límit total invitacions s'ha superat." + +#: ../../Zotlabs/Module/Invite.php:53 +#, php-format +msgid "%s : Not a valid email address." +msgstr "%s: adreça de correu electrònic no vàlida." + +#: ../../Zotlabs/Module/Invite.php:63 +msgid "Please join us on $Projectname" +msgstr "Si us plau uneix-te a nosaltres a $Projectname." + +#: ../../Zotlabs/Module/Invite.php:74 +msgid "Invitation limit exceeded. Please contact your site administrator." +msgstr "Límit d'invitacions excedit. Si us plau, poseu-vos en contacte amb l'administrador del lloc." + +#: ../../Zotlabs/Module/Invite.php:79 +#, php-format +msgid "%s : Message delivery failed." +msgstr "%s : Entrega del Missatge fallida." + +#: ../../Zotlabs/Module/Invite.php:83 +#, php-format +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "%d missatge enviat." +msgstr[1] "%d missatges enviats." + +#: ../../Zotlabs/Module/Invite.php:102 +msgid "You have no more invitations available" +msgstr "No té més invitacions disponibles" + +#: ../../Zotlabs/Module/Invite.php:133 +msgid "Send invitations" +msgstr "Enviar invitacions" + +#: ../../Zotlabs/Module/Invite.php:134 +msgid "Enter email addresses, one per line:" +msgstr "Introduïu les adreces de correu electrònic, una per línia:" + +#: ../../Zotlabs/Module/Invite.php:135 ../../Zotlabs/Module/Mail.php:249 +msgid "Your message:" +msgstr "El teu missatge:" + +#: ../../Zotlabs/Module/Invite.php:136 +msgid "Please join my community on $Projectname." +msgstr "Si us plau uneix-te la meva comunitat en $Projectname." + +#: ../../Zotlabs/Module/Invite.php:138 +msgid "You will need to supply this invitation code:" +msgstr "Hauràs de facilitar aquest codi d'invitació:" + +#: ../../Zotlabs/Module/Invite.php:139 +msgid "" +"1. Register at any $Projectname location (they are all inter-connected)" +msgstr "1. Pots registrar-te a qualsevol node de $Projectname (estàn tots interconnectats)" + +#: ../../Zotlabs/Module/Invite.php:141 +msgid "2. Enter my $Projectname network address into the site searchbar." +msgstr "2. Escriu la meva adreça de xarxa al $Projectname, a la barra de cerca del lloc." + +#: ../../Zotlabs/Module/Invite.php:142 +msgid "or visit" +msgstr "o visitar" + +#: ../../Zotlabs/Module/Invite.php:144 +msgid "3. Click [Connect]" +msgstr "3. Clicar [Conectar]" + +#: ../../Zotlabs/Module/Lockview.php:61 +msgid "Remote privacy information not available." +msgstr "informació privada remota no disponible." + +#: ../../Zotlabs/Module/Lockview.php:82 +msgid "Visible to:" +msgstr "Visible per:" + +#: ../../Zotlabs/Module/Locs.php:25 ../../Zotlabs/Module/Locs.php:54 +msgid "Location not found." +msgstr "Situació que no es troba." + +#: ../../Zotlabs/Module/Locs.php:62 +msgid "Location lookup failed." +msgstr "Ha fallat la cerca d'ubicació." + +#: ../../Zotlabs/Module/Locs.php:66 +msgid "" +"Please select another location to become primary before removing the primary" +" location." +msgstr "Seleccioneu una altra ubicació per esdevenir primària abans de retirar la ubicació principal." + +#: ../../Zotlabs/Module/Locs.php:95 +msgid "Syncing locations" +msgstr "Sincronitza ubicacions" + +#: ../../Zotlabs/Module/Locs.php:105 +msgid "No locations found." +msgstr "No es troben els llocs." + +#: ../../Zotlabs/Module/Locs.php:116 +msgid "Manage Channel Locations" +msgstr "Gestionar Ubicacions de Canal" + +#: ../../Zotlabs/Module/Locs.php:118 ../../Zotlabs/Module/Profiles.php:470 +#: ../../Zotlabs/Module/Admin.php:1224 +msgid "Address" +msgstr "Adreça" + +#: ../../Zotlabs/Module/Locs.php:119 +msgid "Primary" +msgstr "Primari" + +#: ../../Zotlabs/Module/Locs.php:120 ../../Zotlabs/Module/Menu.php:113 +msgid "Drop" +msgstr "Menysprea" + +#: ../../Zotlabs/Module/Locs.php:122 +msgid "Sync Now" +msgstr "Sincronitza Ara" + +#: ../../Zotlabs/Module/Locs.php:123 +msgid "Please wait several minutes between consecutive operations." +msgstr "Si us plau espera diversos minuts entre operacions consecutives." + +#: ../../Zotlabs/Module/Locs.php:124 +msgid "" +"When possible, drop a location by logging into that website/hub and removing" +" your channel." +msgstr "Quan sigui possible, per desapareixer d'un lloc, accedeix a aquest lloc web/node i elimina el teu canal." + +#: ../../Zotlabs/Module/Locs.php:125 +msgid "Use this form to drop the location if the hub is no longer operating." +msgstr "Empra aquest formulari per desapareixer del lloc si el node ja no està operatiu." + +#: ../../Zotlabs/Module/Magic.php:71 +msgid "Hub not found." +msgstr "Node no trobat." + +#: ../../Zotlabs/Module/Mail.php:38 +msgid "Unable to lookup recipient." +msgstr "Incapaç de trobar el destinatari." + +#: ../../Zotlabs/Module/Mail.php:45 +msgid "Unable to communicate with requested channel." +msgstr "Incapaç de comunicar amb el canal demanat." + +#: ../../Zotlabs/Module/Mail.php:52 +msgid "Cannot verify requested channel." +msgstr "No puc verificar el canal demanat." + +#: ../../Zotlabs/Module/Mail.php:78 +msgid "Selected channel has private message restrictions. Send failed." +msgstr "El canal seleccionat te restriccions sobre els missatges privats. L'enviament ha fallat." + +#: ../../Zotlabs/Module/Mail.php:143 +msgid "Messages" +msgstr "Missatges" + +#: ../../Zotlabs/Module/Mail.php:178 +msgid "Message recalled." +msgstr "Recupera el missatge." + +#: ../../Zotlabs/Module/Mail.php:191 +msgid "Conversation removed." +msgstr "Conversació eliminada." + +#: ../../Zotlabs/Module/Mail.php:206 ../../Zotlabs/Module/Mail.php:315 +msgid "Expires YYYY-MM-DD HH:MM" +msgstr "Expira YYYY-MM-DD HH:MM" + +#: ../../Zotlabs/Module/Mail.php:234 +msgid "Requested channel is not in this network" +msgstr "El canal demanat no hi es en questa xarxa" + +#: ../../Zotlabs/Module/Mail.php:242 +msgid "Send Private Message" +msgstr "Envia Missatge Privat" + +#: ../../Zotlabs/Module/Mail.php:243 ../../Zotlabs/Module/Mail.php:368 +msgid "To:" +msgstr "Per:" + +#: ../../Zotlabs/Module/Mail.php:246 ../../Zotlabs/Module/Mail.php:370 +msgid "Subject:" +msgstr "Assumpte:" + +#: ../../Zotlabs/Module/Mail.php:251 ../../Zotlabs/Module/Mail.php:376 +#: ../../include/conversation.php:1220 +msgid "Attach file" +msgstr "Adjunta arxiu" + +#: ../../Zotlabs/Module/Mail.php:253 +msgid "Send" +msgstr "Envia" + +#: ../../Zotlabs/Module/Mail.php:256 ../../Zotlabs/Module/Mail.php:381 +#: ../../include/conversation.php:1251 +msgid "Set expiration date" +msgstr "Ajusta la data d'expiració" + +#: ../../Zotlabs/Module/Mail.php:340 +msgid "Delete message" +msgstr "Elimina el missatge" + +#: ../../Zotlabs/Module/Mail.php:341 +msgid "Delivery report" +msgstr "Informe d'entrega" + +#: ../../Zotlabs/Module/Mail.php:342 +msgid "Recall message" +msgstr "Recupera el missatge" + +#: ../../Zotlabs/Module/Mail.php:344 +msgid "Message has been recalled." +msgstr "El missatge s'ha recuperat." + +#: ../../Zotlabs/Module/Mail.php:361 +msgid "Delete Conversation" +msgstr "Conversació esborrada" + +#: ../../Zotlabs/Module/Mail.php:363 +msgid "" +"No secure communications available. You may be able to " +"respond from the sender's profile page." +msgstr "Comunicació segura no disponible. Pots respondre des de la pàgina de perfil del remitent." + +#: ../../Zotlabs/Module/Mail.php:367 +msgid "Send Reply" +msgstr "Envia Resposta" + +#: ../../Zotlabs/Module/Mail.php:372 +#, php-format +msgid "Your message for %s (%s):" +msgstr "El teu missatge per %s (%s):" + +#: ../../Zotlabs/Module/Manage.php:136 +#: ../../Zotlabs/Module/New_channel.php:121 +#, php-format +msgid "You have created %1$.0f of %2$.0f allowed channels." +msgstr "Has creat %1$.0f de %2$.0f canals permesos." + +#: ../../Zotlabs/Module/Manage.php:143 +msgid "Create a new channel" +msgstr "Crear un nou canal" + +#: ../../Zotlabs/Module/Manage.php:164 ../../Zotlabs/Lib/Apps.php:213 +#: ../../include/nav.php:206 +msgid "Channel Manager" +msgstr "Gestor de Canals" + +#: ../../Zotlabs/Module/Manage.php:165 +msgid "Current Channel" +msgstr "Canal Actual" + +#: ../../Zotlabs/Module/Manage.php:167 +msgid "Switch to one of your channels by selecting it." +msgstr "Canviar a un altre dels teus canals seleccionant-ho." + +#: ../../Zotlabs/Module/Manage.php:168 +msgid "Default Channel" +msgstr "Canal per Defecte" + +#: ../../Zotlabs/Module/Manage.php:169 +msgid "Make Default" +msgstr "Estableix com a Predeterminat" + +#: ../../Zotlabs/Module/Manage.php:172 +#, php-format +msgid "%d new messages" +msgstr "%d missatges nous" + +#: ../../Zotlabs/Module/Manage.php:173 +#, php-format +msgid "%d new introductions" +msgstr "%d noves presentacions" + +#: ../../Zotlabs/Module/Manage.php:175 +msgid "Delegated Channel" +msgstr "Canal Delegat" + +#: ../../Zotlabs/Module/Lostpass.php:19 +msgid "No valid account found." +msgstr "No es troba un compte vàlid." + +#: ../../Zotlabs/Module/Lostpass.php:33 +msgid "Password reset request issued. Check your email." +msgstr "Sol·licitud de restabliment de contrasenya emesa. Consulta el teu correu electrònic." + +#: ../../Zotlabs/Module/Lostpass.php:39 ../../Zotlabs/Module/Lostpass.php:107 +#, php-format +msgid "Site Member (%s)" +msgstr "Lloc d'Usuari (%s)" + +#: ../../Zotlabs/Module/Lostpass.php:44 +#, php-format +msgid "Password reset requested at %s" +msgstr "S'ha soŀlicitat restablir la contrasenya al hub %s" + +#: ../../Zotlabs/Module/Lostpass.php:67 +msgid "" +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." +msgstr "Ha fallat el restabliment de contrasenya perquè la no s'ha pogut verificar soŀlicitud. Pot ser que ja ho hàgiu soŀlicitat abans." + +#: ../../Zotlabs/Module/Lostpass.php:90 ../../boot.php:1711 +msgid "Password Reset" +msgstr "Restabliment de contrasenya" + +#: ../../Zotlabs/Module/Lostpass.php:91 +msgid "Your password has been reset as requested." +msgstr "S'ha restablert la vostra contrasenya." + +#: ../../Zotlabs/Module/Lostpass.php:92 +msgid "Your new password is" +msgstr "La nova contrasenya és" + +#: ../../Zotlabs/Module/Lostpass.php:93 +msgid "Save or copy your new password - and then" +msgstr "Desa o copia la nova contrasenya, i després" + +#: ../../Zotlabs/Module/Lostpass.php:94 +msgid "click here to login" +msgstr "fes clic aquí per iniciar sessió" + +#: ../../Zotlabs/Module/Lostpass.php:95 +msgid "" +"Your password may be changed from the Settings page after " +"successful login." +msgstr "Pots canviar la contrasenya a la pàgina Paràmetres, un cop iniciada la sessió." + +#: ../../Zotlabs/Module/Lostpass.php:112 +#, php-format +msgid "Your password has changed at %s" +msgstr "La teva contrasenya a %s ha canviat" + +#: ../../Zotlabs/Module/Lostpass.php:127 +msgid "Forgot your Password?" +msgstr "No recordes la contrasenya?" + +#: ../../Zotlabs/Module/Lostpass.php:128 +msgid "" +"Enter your email address and submit to have your password reset. Then check " +"your email for further instructions." +msgstr "Escriu la teva adreça de correu electrònic i envia per restablir la contrasenya. Després revisa el seu correu electrònic per obtenir més instruccions." + +#: ../../Zotlabs/Module/Lostpass.php:129 +msgid "Email Address" +msgstr "Adreça electrònica" + +#: ../../Zotlabs/Module/Lostpass.php:130 +msgid "Reset" +msgstr "Reajustar" + +#: ../../Zotlabs/Module/Menu.php:49 +msgid "Unable to update menu." +msgstr "No s'ha pogut actualitzar el menú." + +#: ../../Zotlabs/Module/Menu.php:60 +msgid "Unable to create menu." +msgstr "No s'ha pogut crear el menú." + +#: ../../Zotlabs/Module/Menu.php:98 ../../Zotlabs/Module/Menu.php:110 +msgid "Menu Name" +msgstr "Nom del menú" + +#: ../../Zotlabs/Module/Menu.php:98 +msgid "Unique name (not visible on webpage) - required" +msgstr "Nom únic (no visible a la pàgina web) - requerit" + +#: ../../Zotlabs/Module/Menu.php:99 ../../Zotlabs/Module/Menu.php:111 +msgid "Menu Title" +msgstr "Títol del menú" + +#: ../../Zotlabs/Module/Menu.php:99 +msgid "Visible on webpage - leave empty for no title" +msgstr "Visible a la pàgina web - deixar buit per a no posar títol" + +#: ../../Zotlabs/Module/Menu.php:100 +msgid "Allow Bookmarks" +msgstr "Permetre Marcadors" + +#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 +msgid "Menu may be used to store saved bookmarks" +msgstr "El menú es pot emprar per a guardar marcadors" + +#: ../../Zotlabs/Module/Menu.php:101 ../../Zotlabs/Module/Menu.php:159 +msgid "Submit and proceed" +msgstr "Envia i procedeix" + +#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2266 +msgid "Menus" +msgstr "Menús" + +#: ../../Zotlabs/Module/Menu.php:117 +msgid "Bookmarks allowed" +msgstr "Marcadors permesos" + +#: ../../Zotlabs/Module/Menu.php:119 +msgid "Delete this menu" +msgstr "Esborra el menú" + +#: ../../Zotlabs/Module/Menu.php:120 ../../Zotlabs/Module/Menu.php:154 +msgid "Edit menu contents" +msgstr "Edita el contingut del menú" + +#: ../../Zotlabs/Module/Menu.php:121 +msgid "Edit this menu" +msgstr "Edita el menú" + +#: ../../Zotlabs/Module/Menu.php:136 +msgid "Menu could not be deleted." +msgstr "El menu no es pot esborrar." + +#: ../../Zotlabs/Module/Menu.php:144 ../../Zotlabs/Module/Mitem.php:28 +msgid "Menu not found." +msgstr "Menú no trobat." + +#: ../../Zotlabs/Module/Menu.php:149 +msgid "Edit Menu" +msgstr "Edita Menú" + +#: ../../Zotlabs/Module/Menu.php:153 +msgid "Add or remove entries to this menu" +msgstr "Afegeix o esborra entrades a aquest menú" + +#: ../../Zotlabs/Module/Menu.php:155 +msgid "Menu name" +msgstr "Nom del Menú" + +#: ../../Zotlabs/Module/Menu.php:155 +msgid "Must be unique, only seen by you" +msgstr "Ha de ser únic, nomes vist per tú" + +#: ../../Zotlabs/Module/Menu.php:156 +msgid "Menu title" +msgstr "Títol del menú" + +#: ../../Zotlabs/Module/Menu.php:156 +msgid "Menu title as seen by others" +msgstr "Títol del menú vist pels altres" + +#: ../../Zotlabs/Module/Menu.php:157 +msgid "Allow bookmarks" +msgstr "Marcadors permesos" + +#: ../../Zotlabs/Module/Menu.php:166 ../../Zotlabs/Module/Mitem.php:120 +#: ../../Zotlabs/Module/Xchan.php:41 +msgid "Not found." +msgstr "No trobat." + +#: ../../Zotlabs/Module/Mood.php:67 ../../include/conversation.php:260 +#, php-format +msgctxt "mood" +msgid "%1$s is %2$s" +msgstr "%1$s es %2$s" + +#: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Lib/Apps.php:225 +msgid "Mood" +msgstr "Ànim" + +#: ../../Zotlabs/Module/Mood.php:136 +msgid "Set your current mood and tell your friends" +msgstr "Estableix el teu estat d'ànim actual i digues-li als teus amics" + +#: ../../Zotlabs/Module/Match.php:26 +msgid "Profile Match" +msgstr "Perfils compatibles" + +#: ../../Zotlabs/Module/Match.php:35 +msgid "No keywords to match. Please add keywords to your default profile." +msgstr "No tens paraules clau al perfil principal per poder cercar perfils semblants." + +#: ../../Zotlabs/Module/Match.php:67 +msgid "is interested in:" +msgstr "té interès en:" + +#: ../../Zotlabs/Module/Match.php:74 +msgid "No matches" +msgstr "No s'han trobat perfils compatibles" + +#: ../../Zotlabs/Module/Network.php:96 +msgid "No such group" +msgstr "No existeix el grup" + +#: ../../Zotlabs/Module/Network.php:136 +msgid "No such channel" +msgstr "No existeix el canal" + +#: ../../Zotlabs/Module/Network.php:141 +msgid "forum" +msgstr "fòrum" + +#: ../../Zotlabs/Module/Network.php:153 +msgid "Search Results For:" +msgstr "Cerca resultats per:" + +#: ../../Zotlabs/Module/Network.php:217 +msgid "Privacy group is empty" +msgstr "el grup privat està vuit" + +#: ../../Zotlabs/Module/Network.php:226 +msgid "Privacy group: " +msgstr "Grup privat:" + +#: ../../Zotlabs/Module/Network.php:252 +msgid "Invalid connection." +msgstr "La connexió és invàlida." + +#: ../../Zotlabs/Module/Notify.php:57 +#: ../../Zotlabs/Module/Notifications.php:98 +msgid "No more system notifications." +msgstr "No hi ha més notificacions del sistema." + +#: ../../Zotlabs/Module/Notify.php:61 +#: ../../Zotlabs/Module/Notifications.php:102 +msgid "System Notifications" +msgstr "Notificacions del sistema" + +#: ../../Zotlabs/Module/Mitem.php:52 +msgid "Unable to create element." +msgstr "Incapaç de crear l'element." + +#: ../../Zotlabs/Module/Mitem.php:76 +msgid "Unable to update menu element." +msgstr "Incapaç d'actualitzar un element del menú." + +#: ../../Zotlabs/Module/Mitem.php:92 +msgid "Unable to add menu element." +msgstr "Incapaç d'afegir l'element del menú." + +#: ../../Zotlabs/Module/Mitem.php:153 ../../Zotlabs/Module/Mitem.php:226 +msgid "Menu Item Permissions" +msgstr "Permisos de l'Article del Menú" + +#: ../../Zotlabs/Module/Mitem.php:154 ../../Zotlabs/Module/Mitem.php:227 +#: ../../Zotlabs/Module/Settings.php:1068 +msgid "(click to open/close)" +msgstr "(clica per obrir/tancar)" + +#: ../../Zotlabs/Module/Mitem.php:156 ../../Zotlabs/Module/Mitem.php:172 +msgid "Link Name" +msgstr "Nom de l'Enllaç" + +#: ../../Zotlabs/Module/Mitem.php:157 ../../Zotlabs/Module/Mitem.php:231 +msgid "Link or Submenu Target" +msgstr "Enllaç o Submenú Objectiu" + +#: ../../Zotlabs/Module/Mitem.php:157 +msgid "Enter URL of the link or select a menu name to create a submenu" +msgstr "Entra la URL de l'enlla´o tria un nom de menú per crear un submenú" + +#: ../../Zotlabs/Module/Mitem.php:158 ../../Zotlabs/Module/Mitem.php:232 +msgid "Use magic-auth if available" +msgstr "Empra magic-auth si esta disponible" + +#: ../../Zotlabs/Module/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:233 +msgid "Open link in new window" +msgstr "Obrir l'enllaç en una nova finestra" + +#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:234 +msgid "Order in list" +msgstr "Ordre per llista" + +#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:234 +msgid "Higher numbers will sink to bottom of listing" +msgstr "Els números més alts aniràn al fons de la llista" + +#: ../../Zotlabs/Module/Mitem.php:161 +msgid "Submit and finish" +msgstr "Envia i termina" + +#: ../../Zotlabs/Module/Mitem.php:162 +msgid "Submit and continue" +msgstr "Envia i continua" + +#: ../../Zotlabs/Module/Mitem.php:170 +msgid "Menu:" +msgstr "Menú:" + +#: ../../Zotlabs/Module/Mitem.php:173 +msgid "Link Target" +msgstr "Enllaç Objectiu" + +#: ../../Zotlabs/Module/Mitem.php:176 +msgid "Edit menu" +msgstr "Edita menú" + +#: ../../Zotlabs/Module/Mitem.php:179 +msgid "Edit element" +msgstr "Edita element" + +#: ../../Zotlabs/Module/Mitem.php:180 +msgid "Drop element" +msgstr "Deixa anar element" + +#: ../../Zotlabs/Module/Mitem.php:181 +msgid "New element" +msgstr "Nou element" + +#: ../../Zotlabs/Module/Mitem.php:182 +msgid "Edit this menu container" +msgstr "Edita aquest contenidor de menú" + +#: ../../Zotlabs/Module/Mitem.php:183 +msgid "Add menu element" +msgstr "Afegeix element de menú" + +#: ../../Zotlabs/Module/Mitem.php:184 +msgid "Delete this menu item" +msgstr "Esborra aquest article del menú" + +#: ../../Zotlabs/Module/Mitem.php:185 +msgid "Edit this menu item" +msgstr "Edita aquest article del menú" + +#: ../../Zotlabs/Module/Mitem.php:202 +msgid "Menu item not found." +msgstr "Article del menú no trobat." + +#: ../../Zotlabs/Module/Mitem.php:215 +msgid "Menu item deleted." +msgstr "Article del menú eliminat." + +#: ../../Zotlabs/Module/Mitem.php:217 +msgid "Menu item could not be deleted." +msgstr "Article del menú no es pot eliminar." + +#: ../../Zotlabs/Module/Mitem.php:224 +msgid "Edit Menu Element" +msgstr "Editar Element del Menú" + +#: ../../Zotlabs/Module/Mitem.php:230 +msgid "Link text" +msgstr "Enllaç de text" + +#: ../../Zotlabs/Module/New_channel.php:128 +#: ../../Zotlabs/Module/Register.php:231 +msgid "Name or caption" +msgstr "Nom o llegenda" + +#: ../../Zotlabs/Module/New_channel.php:128 +#: ../../Zotlabs/Module/Register.php:231 +msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\"" +msgstr "Exemples: \"Pep Gomila\", \"Manel i els seus Cavalls\", \"Fútbol\", \"Grup d'Aviadors\"" + +#: ../../Zotlabs/Module/New_channel.php:130 +#: ../../Zotlabs/Module/Register.php:233 +msgid "Choose a short nickname" +msgstr "Tria un àlies curt" + +#: ../../Zotlabs/Module/New_channel.php:130 +#: ../../Zotlabs/Module/Register.php:233 +#, php-format +msgid "" +"Your nickname will be used to create an easy to remember channel address " +"e.g. nickname%s" +msgstr "El teu àlies serà emprat per crear un nom fàcil per recordar l'adreça del canal p.e. àlies%s" + +#: ../../Zotlabs/Module/New_channel.php:132 +#: ../../Zotlabs/Module/Register.php:235 +msgid "Channel role and privacy" +msgstr "Funció i privacitat del canal" + +#: ../../Zotlabs/Module/New_channel.php:132 +#: ../../Zotlabs/Module/Register.php:235 +msgid "Select a channel role with your privacy requirements." +msgstr "Tria una funció pel canal amb els teus requisits de privacitat." + +#: ../../Zotlabs/Module/New_channel.php:132 +#: ../../Zotlabs/Module/Register.php:235 +msgid "Read more about roles" +msgstr "Llegix més sobre els rols" + +#: ../../Zotlabs/Module/New_channel.php:135 +msgid "Create Channel" +msgstr "Crea un Canal" + +#: ../../Zotlabs/Module/New_channel.php:136 +msgid "" +"A channel is your identity on this network. It can represent a person, a " +"blog, or a forum to name a few. Channels can make connections with other " +"channels to share information with highly detailed permissions." +msgstr "Un canal es la tva identitat en aquesta xarxa. Pot representar una persona, un bloc, o un fòrum per anomenar alguns. Els canals poden connectar-se amb altres canals per compartir informació amb permisos molt detallats." + +#: ../../Zotlabs/Module/New_channel.php:137 +msgid "" +"or import an existing channel from another location." +msgstr "o importa un canal existent des d'un altre ubicació." + +#: ../../Zotlabs/Module/Notifications.php:30 +msgid "Invalid request identifier." +msgstr "Sol·licitud d'identificació invàlida." + +#: ../../Zotlabs/Module/Notifications.php:39 +msgid "Discard" +msgstr "Descarta" + +#: ../../Zotlabs/Module/Notifications.php:103 ../../include/nav.php:191 +msgid "Mark all system notifications seen" +msgstr "Marca totes les notificacions vistes" + +#: ../../Zotlabs/Module/Photos.php:84 +msgid "Page owner information could not be retrieved." +msgstr "La informació del propietari de la pàgina no va poder ser recuperada" + +#: ../../Zotlabs/Module/Photos.php:99 ../../Zotlabs/Module/Photos.php:743 +#: ../../Zotlabs/Module/Profile_photo.php:114 +#: ../../Zotlabs/Module/Profile_photo.php:206 +#: ../../Zotlabs/Module/Profile_photo.php:294 +#: ../../include/photo/photo_driver.php:718 +msgid "Profile Photos" +msgstr "Fotos del Perfil" + +#: ../../Zotlabs/Module/Photos.php:105 ../../Zotlabs/Module/Photos.php:149 +msgid "Album not found." +msgstr "Àlbum no trobat" + +#: ../../Zotlabs/Module/Photos.php:132 +msgid "Delete Album" +msgstr "Esborra Àlbum" + +#: ../../Zotlabs/Module/Photos.php:153 +msgid "" +"Multiple storage folders exist with this album name, but within different " +"directories. Please remove the desired folder or folders using the Files " +"manager" +msgstr "Existeixen moltes carpetes de emmagatzemament amb aquest nom d'àlbum, però en diferents directoris. Si us plau esborra la carpeta o carpetes amb el gestor d'arxius." + +#: ../../Zotlabs/Module/Photos.php:210 ../../Zotlabs/Module/Photos.php:1053 +msgid "Delete Photo" +msgstr "Esborra Foto" + +#: ../../Zotlabs/Module/Photos.php:533 +msgid "No photos selected" +msgstr "No has seleccionat fotos" + +#: ../../Zotlabs/Module/Photos.php:582 +msgid "Access to this item is restricted." +msgstr "L'accés a aquest element esta restringit." + +#: ../../Zotlabs/Module/Photos.php:621 +#, php-format +msgid "%1$.2f MB of %2$.2f MB photo storage used." +msgstr "S'estan fent servir %1$.2f MB de %2$.2f MB de l'espai per a imatges." + +#: ../../Zotlabs/Module/Photos.php:624 +#, php-format +msgid "%1$.2f MB photo storage used." +msgstr "S'estan fent servir %1$.2f MB de l'espai per a imatges." + +#: ../../Zotlabs/Module/Photos.php:660 +msgid "Upload Photos" +msgstr "Puja imatges" + +#: ../../Zotlabs/Module/Photos.php:664 +msgid "Enter an album name" +msgstr "Escriu el nom del àlbum" + +#: ../../Zotlabs/Module/Photos.php:665 +msgid "or select an existing album (doubleclick)" +msgstr "o bé fes doble clic a un d'existent" + +#: ../../Zotlabs/Module/Photos.php:666 +msgid "Create a status post for this upload" +msgstr "Genera una entrada a partir de la pujada" + +#: ../../Zotlabs/Module/Photos.php:667 +msgid "Caption (optional):" +msgstr "Subtítol (opcional):" + +#: ../../Zotlabs/Module/Photos.php:668 +msgid "Description (optional):" +msgstr "Descripció (opcional):" + +#: ../../Zotlabs/Module/Photos.php:695 +msgid "Album name could not be decoded" +msgstr "No s'ha pogut descodificar el nom de l'àlbum" + +#: ../../Zotlabs/Module/Photos.php:743 +msgid "Contact Photos" +msgstr "Imatges de contactes" + +#: ../../Zotlabs/Module/Photos.php:766 +msgid "Show Newest First" +msgstr "Ordena de més nou a més antic" + +#: ../../Zotlabs/Module/Photos.php:768 +msgid "Show Oldest First" +msgstr "Ordena de més antic a més nou" + +#: ../../Zotlabs/Module/Photos.php:792 ../../Zotlabs/Module/Photos.php:1331 +#: ../../include/widgets.php:1499 +msgid "View Photo" +msgstr "Mostra la imatge" + +#: ../../Zotlabs/Module/Photos.php:823 ../../include/widgets.php:1516 +msgid "Edit Album" +msgstr "Modifica l'àlbum" + +#: ../../Zotlabs/Module/Photos.php:870 +msgid "Permission denied. Access to this item may be restricted." +msgstr "S'ha denegat el permís. Pot ser que l'accés estigui restringit." + +#: ../../Zotlabs/Module/Photos.php:872 +msgid "Photo not available" +msgstr "La imatge no està disponible" + +#: ../../Zotlabs/Module/Photos.php:930 +msgid "Use as profile photo" +msgstr "Fes-la imatge de perfil" + +#: ../../Zotlabs/Module/Photos.php:931 +msgid "Use as cover photo" +msgstr "Emprar com a foto de portada" + +#: ../../Zotlabs/Module/Photos.php:938 +msgid "Private Photo" +msgstr "Imatge privada" + +#: ../../Zotlabs/Module/Photos.php:953 +msgid "View Full Size" +msgstr "Mostra a mida completa" + +#: ../../Zotlabs/Module/Photos.php:998 ../../Zotlabs/Module/Admin.php:1437 +#: ../../Zotlabs/Module/Tagrm.php:137 +msgid "Remove" +msgstr "Esborra" + +#: ../../Zotlabs/Module/Photos.php:1032 +msgid "Edit photo" +msgstr "Modifica la imatge" + +#: ../../Zotlabs/Module/Photos.php:1034 +msgid "Rotate CW (right)" +msgstr "Tomba cap a la dreta" + +#: ../../Zotlabs/Module/Photos.php:1035 +msgid "Rotate CCW (left)" +msgstr "Tomba cap a l'esquerra" + +#: ../../Zotlabs/Module/Photos.php:1038 +msgid "Enter a new album name" +msgstr "Escriu el nom del nou àlbum" + +#: ../../Zotlabs/Module/Photos.php:1039 +msgid "or select an existing one (doubleclick)" +msgstr "o bé fes doble clic a un d'existent" + +#: ../../Zotlabs/Module/Photos.php:1042 +msgid "Caption" +msgstr "Llegenda" + +#: ../../Zotlabs/Module/Photos.php:1044 +msgid "Add a Tag" +msgstr "Afegeix una etiqueta" + +#: ../../Zotlabs/Module/Photos.php:1048 +msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" +msgstr "Exemple: @joan, @Paula_Peris, @mar@exemple.org" + +#: ../../Zotlabs/Module/Photos.php:1051 +msgid "Flag as adult in album view" +msgstr "Marca com a contingut adult" + +#: ../../Zotlabs/Module/Photos.php:1070 ../../Zotlabs/Lib/ThreadItem.php:261 +msgid "I like this (toggle)" +msgstr "M'agrada això (canvia)" + +#: ../../Zotlabs/Module/Photos.php:1071 ../../Zotlabs/Lib/ThreadItem.php:262 +msgid "I don't like this (toggle)" +msgstr "No m'agrada això (canvia)" + +#: ../../Zotlabs/Module/Photos.php:1073 ../../Zotlabs/Lib/ThreadItem.php:397 +#: ../../include/conversation.php:740 +msgid "Please wait" +msgstr "Si us plau, espera" + +#: ../../Zotlabs/Module/Photos.php:1089 ../../Zotlabs/Module/Photos.php:1207 +#: ../../Zotlabs/Lib/ThreadItem.php:707 +msgid "This is you" +msgstr "Ets tú" + +#: ../../Zotlabs/Module/Photos.php:1091 ../../Zotlabs/Module/Photos.php:1209 +#: ../../Zotlabs/Lib/ThreadItem.php:709 ../../include/js_strings.php:6 +msgid "Comment" +msgstr "Comentari" + +#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:574 +msgctxt "title" +msgid "Likes" +msgstr "Agrada" + +#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:574 +msgctxt "title" +msgid "Dislikes" +msgstr "Desagrada" + +#: ../../Zotlabs/Module/Photos.php:1108 ../../include/conversation.php:575 +msgctxt "title" +msgid "Agree" +msgstr "Acord" + +#: ../../Zotlabs/Module/Photos.php:1108 ../../include/conversation.php:575 +msgctxt "title" +msgid "Disagree" +msgstr "Desacord" + +#: ../../Zotlabs/Module/Photos.php:1108 ../../include/conversation.php:575 +msgctxt "title" +msgid "Abstain" +msgstr "Abstenirse" + +#: ../../Zotlabs/Module/Photos.php:1109 ../../include/conversation.php:576 +msgctxt "title" +msgid "Attending" +msgstr "Assistint" + +#: ../../Zotlabs/Module/Photos.php:1109 ../../include/conversation.php:576 +msgctxt "title" +msgid "Not attending" +msgstr "Desassistint" + +#: ../../Zotlabs/Module/Photos.php:1109 ../../include/conversation.php:576 +msgctxt "title" +msgid "Might attend" +msgstr "Podrien assistir" + +#: ../../Zotlabs/Module/Photos.php:1126 ../../Zotlabs/Module/Photos.php:1138 +#: ../../Zotlabs/Lib/ThreadItem.php:181 ../../Zotlabs/Lib/ThreadItem.php:193 +#: ../../include/conversation.php:1717 +msgid "View all" +msgstr "Veure tot" + +#: ../../Zotlabs/Module/Photos.php:1130 ../../Zotlabs/Lib/ThreadItem.php:185 +#: ../../include/taxonomy.php:403 ../../include/conversation.php:1741 +#: ../../include/channel.php:1158 +msgctxt "noun" +msgid "Like" +msgid_plural "Likes" +msgstr[0] "Agrada" +msgstr[1] "Agraden" + +#: ../../Zotlabs/Module/Photos.php:1135 ../../Zotlabs/Lib/ThreadItem.php:190 +#: ../../include/conversation.php:1744 +msgctxt "noun" +msgid "Dislike" +msgid_plural "Dislikes" +msgstr[0] "Desagrada" +msgstr[1] "Desagrada" + +#: ../../Zotlabs/Module/Photos.php:1235 +msgid "Photo Tools" +msgstr "Eines per Fotos" + +#: ../../Zotlabs/Module/Photos.php:1244 +msgid "In This Photo:" +msgstr "Hi apareixen:" + +#: ../../Zotlabs/Module/Photos.php:1249 +msgid "Map" +msgstr "Mapa" + +#: ../../Zotlabs/Module/Photos.php:1257 ../../Zotlabs/Lib/ThreadItem.php:386 +msgctxt "noun" +msgid "Likes" +msgstr "Agrada" + +#: ../../Zotlabs/Module/Photos.php:1258 ../../Zotlabs/Lib/ThreadItem.php:387 +msgctxt "noun" +msgid "Dislikes" +msgstr "Desagrada" + +#: ../../Zotlabs/Module/Photos.php:1263 ../../Zotlabs/Lib/ThreadItem.php:392 +#: ../../include/acl_selectors.php:285 +msgid "Close" +msgstr "Tanca" + +#: ../../Zotlabs/Module/Photos.php:1337 +msgid "View Album" +msgstr "Mostra'n l'àlbum" + +#: ../../Zotlabs/Module/Photos.php:1348 ../../Zotlabs/Module/Photos.php:1361 +#: ../../Zotlabs/Module/Photos.php:1362 +msgid "Recent Photos" +msgstr "Imatges recents" + +#: ../../Zotlabs/Module/Ping.php:265 +msgid "sent you a private message" +msgstr "Se t'ha enviat un missatge privat" + +#: ../../Zotlabs/Module/Ping.php:313 +msgid "added your channel" +msgstr "el teu canal s'ha afegit" + +#: ../../Zotlabs/Module/Ping.php:323 +msgid "g A l F d" +msgstr "g A l F d" + +#: ../../Zotlabs/Module/Ping.php:346 +msgid "[today]" +msgstr "[avui]" + +#: ../../Zotlabs/Module/Ping.php:355 +msgid "posted an event" +msgstr "enviat un esdeveniment" + +#: ../../Zotlabs/Module/Oexchange.php:27 +msgid "Unable to find your hub." +msgstr "No es possible trobar el node" + +#: ../../Zotlabs/Module/Oexchange.php:41 +msgid "Post successful." +msgstr "Entrada realitzada amb èxit. " + +#: ../../Zotlabs/Module/Openid.php:30 +msgid "OpenID protocol error. No ID returned." +msgstr "Error del protocol OpenID. No ha retornat ID" + +#: ../../Zotlabs/Module/Openid.php:193 ../../include/auth.php:226 +msgid "Login failed." +msgstr "Identificació fallida." + +#: ../../Zotlabs/Module/Page.php:133 +msgid "" +"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod " +"tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam," +" quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo " +"consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse " +"cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat " +"non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." +msgstr "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." + +#: ../../Zotlabs/Module/Pconfig.php:26 ../../Zotlabs/Module/Pconfig.php:59 +msgid "This setting requires special processing and editing has been blocked." +msgstr "Aquest ajust requereix un procés espedial i l'edició esta bloquejada." + +#: ../../Zotlabs/Module/Pconfig.php:48 +msgid "Configuration Editor" +msgstr "Editor de Configuració" + +#: ../../Zotlabs/Module/Pconfig.php:49 +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 "atenció: Realitzar segons quins ajustos pot fer el canal inoperable. Deixa aquesta pàgina si no estas segur i tens suficients coneixements sobre l'ús correcte d'aquesta característica." + +#: ../../Zotlabs/Module/Pdledit.php:18 +msgid "Layout updated." +msgstr "S'ha actualitzat la disposició." + +#: ../../Zotlabs/Module/Pdledit.php:34 ../../Zotlabs/Module/Pdledit.php:61 +msgid "Edit System Page Description" +msgstr "Editor del Sistema de Descripció de Pàgines" + +#: ../../Zotlabs/Module/Pdledit.php:56 +msgid "Layout not found." +msgstr "No s'ha trobat cap disposició de pàgina." + +#: ../../Zotlabs/Module/Pdledit.php:62 +msgid "Module Name:" +msgstr "Nom del mòdul:" + +#: ../../Zotlabs/Module/Pdledit.php:63 +msgid "Layout Help" +msgstr "Ajuda per la disposició de pàgina" + +#: ../../Zotlabs/Module/Poke.php:168 ../../Zotlabs/Lib/Apps.php:226 +#: ../../include/conversation.php:960 +msgid "Poke" +msgstr "Esperonar" + +#: ../../Zotlabs/Module/Poke.php:169 +msgid "Poke somebody" +msgstr "Emprenyar algú" + +#: ../../Zotlabs/Module/Poke.php:172 +msgid "Poke/Prod" +msgstr "Esperonat/Picat" + +#: ../../Zotlabs/Module/Poke.php:173 +msgid "Poke, prod or do other things to somebody" +msgstr "emprenyar, picar o fer altres coses a algú" + +#: ../../Zotlabs/Module/Poke.php:180 +msgid "Recipient" +msgstr "Destinatari" + +#: ../../Zotlabs/Module/Poke.php:181 +msgid "Choose what you wish to do to recipient" +msgstr "Tria que vols fer amb el destinatari" + +#: ../../Zotlabs/Module/Poke.php:184 ../../Zotlabs/Module/Poke.php:185 +msgid "Make this post private" +msgstr "Fer aquesta entrada privada" + +#: ../../Zotlabs/Module/Probe.php:30 ../../Zotlabs/Module/Probe.php:34 +#, php-format +msgid "Fetching URL returns error: %1$s" +msgstr "URL sol·licitada retorna error: %1$s" + #: ../../Zotlabs/Module/Profiles.php:24 ../../Zotlabs/Module/Profiles.php:189 #: ../../Zotlabs/Module/Profiles.php:246 ../../Zotlabs/Module/Profiles.php:625 msgid "Profile not found." @@ -2203,11 +3279,6 @@ msgstr "Pàgina Personal" msgid "Interests" msgstr "Interessos" -#: ../../Zotlabs/Module/Profiles.php:470 ../../Zotlabs/Module/Locs.php:118 -#: ../../Zotlabs/Module/Admin.php:1224 -msgid "Address" -msgstr "Adreça" - #: ../../Zotlabs/Module/Profiles.php:560 msgid "Profile updated." msgstr "Perfil actualitzat." @@ -2225,7 +3296,7 @@ msgid "View this profile" msgstr "Veure aquest perfil" #: ../../Zotlabs/Module/Profiles.php:689 ../../Zotlabs/Module/Profiles.php:771 -#: ../../include/channel.php:998 +#: ../../include/channel.php:959 msgid "Edit visibility" msgstr "Editar visibilitat" @@ -2237,7 +3308,7 @@ msgstr "Eines per Perfils" msgid "Change cover photo" msgstr "Canviar la foto de portada" -#: ../../Zotlabs/Module/Profiles.php:692 ../../include/channel.php:969 +#: ../../Zotlabs/Module/Profiles.php:692 ../../include/channel.php:930 msgid "Change profile photo" msgstr "Canviar la foto del perfil" @@ -2257,8 +3328,8 @@ msgstr "Elimina aquest perfil" msgid "Add profile things" msgstr "Afegeix coses al perfil" -#: ../../Zotlabs/Module/Profiles.php:697 ../../include/conversation.php:1541 -#: ../../include/widgets.php:105 +#: ../../Zotlabs/Module/Profiles.php:697 ../../include/widgets.php:105 +#: ../../include/conversation.php:1526 msgid "Personal" msgstr "Personal" @@ -2398,1097 +3469,119 @@ msgstr "Informació de contacte i xarxes socials" msgid "My other channels" msgstr "Els meus altres canals" -#: ../../Zotlabs/Module/Profiles.php:767 ../../include/channel.php:994 +#: ../../Zotlabs/Module/Profiles.php:767 ../../include/channel.php:955 msgid "Profile Image" msgstr "Imatge del Perfil" #: ../../Zotlabs/Module/Profiles.php:777 ../../include/nav.php:88 -#: ../../include/channel.php:976 +#: ../../include/channel.php:937 msgid "Edit Profiles" msgstr "Editar Perfils" -#: ../../Zotlabs/Module/Import.php:33 -#, php-format -msgid "Your service plan only allows %d channels." -msgstr "El teu paquet de serveis només admet %d canals." - -#: ../../Zotlabs/Module/Import.php:71 ../../Zotlabs/Module/Import_items.php:42 -msgid "Nothing to import." -msgstr "No hi ha res a importar." - -#: ../../Zotlabs/Module/Import.php:95 ../../Zotlabs/Module/Import_items.php:66 -msgid "Unable to download data from old server" -msgstr "No s'han pogut descarregar les dades del servidor antic" - -#: ../../Zotlabs/Module/Import.php:101 -#: ../../Zotlabs/Module/Import_items.php:72 -msgid "Imported file is empty." -msgstr "El fitxer importat està buit." - -#: ../../Zotlabs/Module/Import.php:123 -#: ../../Zotlabs/Module/Import_items.php:88 -#, php-format -msgid "Warning: Database versions differ by %1$d updates." -msgstr "Atenció: Les versions de la Base de Dades difereixen en %1$d actualitzacions." - -#: ../../Zotlabs/Module/Import.php:153 ../../include/import.php:107 -msgid "Cloned channel not found. Import failed." -msgstr "No s'ha pogut importar el canal perquè el canal clonat no s'ha trobat." - -#: ../../Zotlabs/Module/Import.php:163 -msgid "No channel. Import failed." -msgstr "Sense canal. No s'ha pogut importar." - -#: ../../Zotlabs/Module/Import.php:520 -#: ../../include/Import/import_diaspora.php:142 -msgid "Import completed." -msgstr "S'ha completat la importació." - -#: ../../Zotlabs/Module/Import.php:542 -msgid "You must be logged in to use this feature." -msgstr "Has d'estar registrat per fer servir aquesta funcionalitat." - -#: ../../Zotlabs/Module/Import.php:547 -msgid "Import Channel" -msgstr "Importa un canal" - -#: ../../Zotlabs/Module/Import.php:548 +#: ../../Zotlabs/Module/Profile_photo.php:179 msgid "" -"Use this form to import an existing channel from a different server/hub. You" -" may retrieve the channel identity from the old server/hub via the network " -"or provide an export file." -msgstr "Empra aquest formulari per importar un canal existent en un altre servidor/concentrador. Pots recuperar el canal des de l'antic servidor/concentrador via la xarxa o mitjançant un fitxer d'exportació" +"Shift-reload the page or clear browser cache if the new photo does not " +"display immediately." +msgstr "Refresca la memòria cau del navegador si la foto no s'actualitza immediatament. Dreceres: «Ctrl+F5» i «Ctrl+Maj+R»" -#: ../../Zotlabs/Module/Import.php:549 -#: ../../Zotlabs/Module/Import_items.php:121 -msgid "File to Upload" -msgstr "Fitxer a pujar" +#: ../../Zotlabs/Module/Profile_photo.php:367 +msgid "Upload Profile Photo" +msgstr "Puja una Foto pel Perfil" -#: ../../Zotlabs/Module/Import.php:550 -msgid "Or provide the old server/hub details" -msgstr "O proveeix els detalls de l'antic servidor/node" +#: ../../Zotlabs/Module/Profperm.php:34 ../../Zotlabs/Module/Profperm.php:63 +msgid "Invalid profile identifier." +msgstr "Identificador invàlid de perfil." -#: ../../Zotlabs/Module/Import.php:551 -msgid "Your old identity address (xyz@example.com)" -msgstr "La teva adreça de canal antiga. El format és canal@exemple.org" +#: ../../Zotlabs/Module/Profperm.php:115 +msgid "Profile Visibility Editor" +msgstr "Perfil del Editor de Visibilitat" -#: ../../Zotlabs/Module/Import.php:552 -msgid "Your old login email address" -msgstr "La teva adreça de correu electrònic antiga" +#: ../../Zotlabs/Module/Profperm.php:117 ../../include/channel.php:1249 +msgid "Profile" +msgstr "Perfil" -#: ../../Zotlabs/Module/Import.php:553 -msgid "Your old login password" -msgstr "La teva contrasenya antiga" +#: ../../Zotlabs/Module/Profperm.php:119 +msgid "Click on a contact to add or remove." +msgstr "Clica sobre el contacte per afegir o esborrar." -#: ../../Zotlabs/Module/Import.php:554 +#: ../../Zotlabs/Module/Profperm.php:128 +msgid "Visible To" +msgstr "Visible per" + +#: ../../Zotlabs/Module/Pubsites.php:22 ../../include/widgets.php:1270 +msgid "Public Hubs" +msgstr "Nodes Públics" + +#: ../../Zotlabs/Module/Pubsites.php:25 msgid "" -"For either option, please choose whether to make this hub your new primary " -"address, or whether your old location should continue this role. You will be" -" able to post from either location, but only one can be marked as the " -"primary location for files, photos, and media." -msgstr "Per a qualsevol de les opcions, escull si vols fer primària l'adreça d'aquest node o mantenir l'anterior com a primària. Podràs penjar entrades des de totes dues adreces, però per als fitxers, imatges i altres en cal una de primària." +"The listed hubs allow public registration for the $Projectname network. All " +"hubs in the network are interlinked so membership on any of them conveys " +"membership in the network as a whole. Some hubs may require subscription or " +"provide tiered service plans. The hub itself may provide " +"additional details." +msgstr "Els nodes llistats permeten registrar usuaris de la xarxa $Projectname. Com que tots els nodes estan enllaçats entre ells, la identitat és vàlida a tota la xarxa. Alguns nodes poden demanar subscripció o oferir serveis addicional de pagament. Per a més detalls, proveu de seguir els enllaços dels proveïdors." -#: ../../Zotlabs/Module/Import.php:555 -msgid "Make this hub my primary location" -msgstr "Fes d'aquest node la meva ubicació primària" +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Hub URL" +msgstr "URL del Node" -#: ../../Zotlabs/Module/Import.php:556 -msgid "" -"Import existing posts if possible (experimental - limited by available " -"memory" -msgstr "Importa les entrades existents si es possible (experimental - limitat per la memòria disponible" +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Access Type" +msgstr "Tipus d'accés" -#: ../../Zotlabs/Module/Import.php:557 -msgid "" -"This process may take several minutes to complete. Please submit the form " -"only once and leave this page open until finished." -msgstr "Aquest procès pot trigar minuts en completar. Si et plau envia el formulari només una vegada i manté aquesta pàgina oberta fins que finalitzi." +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Registration Policy" +msgstr "Condicions de registre" -#: ../../Zotlabs/Module/Home.php:74 ../../Zotlabs/Module/Home.php:82 -#: ../../Zotlabs/Module/Siteinfo.php:48 -msgid "$Projectname" -msgstr "$Projectname" +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Stats" +msgstr "Estadístiques" -#: ../../Zotlabs/Module/Home.php:92 +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Software" +msgstr "Programari" + +#: ../../Zotlabs/Module/Pubsites.php:31 ../../Zotlabs/Module/Ratings.php:103 +#: ../../include/conversation.php:959 +msgid "Ratings" +msgstr "Valoracions" + +#: ../../Zotlabs/Module/Pubsites.php:38 +msgid "Rate" +msgstr "Puntua" + +#: ../../Zotlabs/Module/Rate.php:160 +msgid "Website:" +msgstr "Lloc web:" + +#: ../../Zotlabs/Module/Rate.php:163 #, php-format -msgid "Welcome to %s" -msgstr "Benvingut a %s" +msgid "Remote Channel [%s] (not yet known on this site)" +msgstr "Canal Remot [%s] (encara no es coneix en aquest lloc)" -#: ../../Zotlabs/Module/Item.php:179 -msgid "Unable to locate original post." -msgstr "No s'ha pogut trobar l'entrada original." +#: ../../Zotlabs/Module/Rate.php:164 +msgid "Rating (this information is public)" +msgstr "Valoració (aquesta informació és pública)" -#: ../../Zotlabs/Module/Item.php:432 -msgid "Empty post discarded." -msgstr "S'ha descartat l'entrada perquè no té contingut." +#: ../../Zotlabs/Module/Rate.php:165 +msgid "Optionally explain your rating (this information is public)" +msgstr "Opcionalment pots explicar la teva qualificació (aquesta informació és pública)" -#: ../../Zotlabs/Module/Item.php:472 -msgid "Executable content type not permitted to this channel." -msgstr "No està permès el contingut de tipus executable en aquest canal." +#: ../../Zotlabs/Module/Ratings.php:73 +msgid "No ratings" +msgstr "No valorat" -#: ../../Zotlabs/Module/Item.php:856 -msgid "Duplicate post suppressed." -msgstr "Publicació duplicada s'ha suprimit." +#: ../../Zotlabs/Module/Ratings.php:104 +msgid "Rating: " +msgstr "Valoració:" -#: ../../Zotlabs/Module/Item.php:989 -msgid "System error. Post not saved." -msgstr "Hi ha hagut un error del sistema. L'entrada no s'ha desat." +#: ../../Zotlabs/Module/Ratings.php:105 +msgid "Website: " +msgstr "Lloc web:" -#: ../../Zotlabs/Module/Item.php:1242 -msgid "Unable to obtain post information from database." -msgstr "No s'ha pogut obtenir informació de l'entrada a la base de dades." - -#: ../../Zotlabs/Module/Item.php:1249 -#, php-format -msgid "You have reached your limit of %1$.0f top level posts." -msgstr "Has assolit el teu límit de %1$.0f entrades (descomptant comentaris)." - -#: ../../Zotlabs/Module/Item.php:1256 -#, php-format -msgid "You have reached your limit of %1$.0f webpages." -msgstr "Has assolit el teu limit de %1$.0f pàgines web." - -#: ../../Zotlabs/Module/Photos.php:82 -msgid "Page owner information could not be retrieved." -msgstr "La informació del propietari de la pàgina no va poder ser recuperada" - -#: ../../Zotlabs/Module/Photos.php:97 ../../Zotlabs/Module/Photos.php:741 -#: ../../Zotlabs/Module/Profile_photo.php:115 -#: ../../Zotlabs/Module/Profile_photo.php:212 -#: ../../Zotlabs/Module/Profile_photo.php:311 -#: ../../include/photo/photo_driver.php:718 -msgid "Profile Photos" -msgstr "Fotos del Perfil" - -#: ../../Zotlabs/Module/Photos.php:103 ../../Zotlabs/Module/Photos.php:147 -msgid "Album not found." -msgstr "Àlbum no trobat" - -#: ../../Zotlabs/Module/Photos.php:130 -msgid "Delete Album" -msgstr "Esborra Àlbum" - -#: ../../Zotlabs/Module/Photos.php:151 -msgid "" -"Multiple storage folders exist with this album name, but within different " -"directories. Please remove the desired folder or folders using the Files " -"manager" -msgstr "Existeixen moltes carpetes de emmagatzemament amb aquest nom d'àlbum, però en diferents directoris. Si us plau esborra la carpeta o carpetes amb el gestor d'arxius." - -#: ../../Zotlabs/Module/Photos.php:208 ../../Zotlabs/Module/Photos.php:1051 -msgid "Delete Photo" -msgstr "Esborra Foto" - -#: ../../Zotlabs/Module/Photos.php:531 -msgid "No photos selected" -msgstr "No has seleccionat fotos" - -#: ../../Zotlabs/Module/Photos.php:580 -msgid "Access to this item is restricted." -msgstr "L'accés a aquest element esta restringit." - -#: ../../Zotlabs/Module/Photos.php:619 -#, php-format -msgid "%1$.2f MB of %2$.2f MB photo storage used." -msgstr "S'estan fent servir %1$.2f MB de %2$.2f MB de l'espai per a imatges." - -#: ../../Zotlabs/Module/Photos.php:622 -#, php-format -msgid "%1$.2f MB photo storage used." -msgstr "S'estan fent servir %1$.2f MB de l'espai per a imatges." - -#: ../../Zotlabs/Module/Photos.php:658 -msgid "Upload Photos" -msgstr "Puja imatges" - -#: ../../Zotlabs/Module/Photos.php:662 -msgid "Enter an album name" -msgstr "Escriu el nom del àlbum" - -#: ../../Zotlabs/Module/Photos.php:663 -msgid "or select an existing album (doubleclick)" -msgstr "o bé fes doble clic a un d'existent" - -#: ../../Zotlabs/Module/Photos.php:664 -msgid "Create a status post for this upload" -msgstr "Genera una entrada a partir de la pujada" - -#: ../../Zotlabs/Module/Photos.php:665 -msgid "Caption (optional):" -msgstr "Subtítol (opcional):" - -#: ../../Zotlabs/Module/Photos.php:666 -msgid "Description (optional):" -msgstr "Descripció (opcional):" - -#: ../../Zotlabs/Module/Photos.php:693 -msgid "Album name could not be decoded" -msgstr "No s'ha pogut descodificar el nom de l'àlbum" - -#: ../../Zotlabs/Module/Photos.php:741 -msgid "Contact Photos" -msgstr "Imatges de contactes" - -#: ../../Zotlabs/Module/Photos.php:764 -msgid "Show Newest First" -msgstr "Ordena de més nou a més antic" - -#: ../../Zotlabs/Module/Photos.php:766 -msgid "Show Oldest First" -msgstr "Ordena de més antic a més nou" - -#: ../../Zotlabs/Module/Photos.php:790 ../../Zotlabs/Module/Photos.php:1329 -#: ../../Zotlabs/Module/Embedphotos.php:141 ../../include/widgets.php:1593 -msgid "View Photo" -msgstr "Mostra la imatge" - -#: ../../Zotlabs/Module/Photos.php:821 -#: ../../Zotlabs/Module/Embedphotos.php:157 ../../include/widgets.php:1610 -msgid "Edit Album" -msgstr "Modifica l'àlbum" - -#: ../../Zotlabs/Module/Photos.php:868 -msgid "Permission denied. Access to this item may be restricted." -msgstr "S'ha denegat el permís. Pot ser que l'accés estigui restringit." - -#: ../../Zotlabs/Module/Photos.php:870 -msgid "Photo not available" -msgstr "La imatge no està disponible" - -#: ../../Zotlabs/Module/Photos.php:928 -msgid "Use as profile photo" -msgstr "Fes-la imatge de perfil" - -#: ../../Zotlabs/Module/Photos.php:929 -msgid "Use as cover photo" -msgstr "Emprar com a foto de portada" - -#: ../../Zotlabs/Module/Photos.php:936 -msgid "Private Photo" -msgstr "Imatge privada" - -#: ../../Zotlabs/Module/Photos.php:951 -msgid "View Full Size" -msgstr "Mostra a mida completa" - -#: ../../Zotlabs/Module/Photos.php:996 ../../Zotlabs/Module/Admin.php:1437 -#: ../../Zotlabs/Module/Tagrm.php:137 -msgid "Remove" -msgstr "Esborra" - -#: ../../Zotlabs/Module/Photos.php:1030 -msgid "Edit photo" -msgstr "Modifica la imatge" - -#: ../../Zotlabs/Module/Photos.php:1032 -msgid "Rotate CW (right)" -msgstr "Tomba cap a la dreta" - -#: ../../Zotlabs/Module/Photos.php:1033 -msgid "Rotate CCW (left)" -msgstr "Tomba cap a l'esquerra" - -#: ../../Zotlabs/Module/Photos.php:1036 -msgid "Enter a new album name" -msgstr "Escriu el nom del nou àlbum" - -#: ../../Zotlabs/Module/Photos.php:1037 -msgid "or select an existing one (doubleclick)" -msgstr "o bé fes doble clic a un d'existent" - -#: ../../Zotlabs/Module/Photos.php:1040 -msgid "Caption" -msgstr "Llegenda" - -#: ../../Zotlabs/Module/Photos.php:1042 -msgid "Add a Tag" -msgstr "Afegeix una etiqueta" - -#: ../../Zotlabs/Module/Photos.php:1046 -msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" -msgstr "Exemple: @joan, @Paula_Peris, @mar@exemple.org" - -#: ../../Zotlabs/Module/Photos.php:1049 -msgid "Flag as adult in album view" -msgstr "Marca com a contingut adult" - -#: ../../Zotlabs/Module/Photos.php:1068 ../../Zotlabs/Lib/ThreadItem.php:261 -msgid "I like this (toggle)" -msgstr "M'agrada això (canvia)" - -#: ../../Zotlabs/Module/Photos.php:1069 ../../Zotlabs/Lib/ThreadItem.php:262 -msgid "I don't like this (toggle)" -msgstr "No m'agrada això (canvia)" - -#: ../../Zotlabs/Module/Photos.php:1071 ../../Zotlabs/Lib/ThreadItem.php:397 -#: ../../include/conversation.php:743 -msgid "Please wait" -msgstr "Si us plau, espera" - -#: ../../Zotlabs/Module/Photos.php:1087 ../../Zotlabs/Module/Photos.php:1205 -#: ../../Zotlabs/Lib/ThreadItem.php:707 -msgid "This is you" -msgstr "Ets tú" - -#: ../../Zotlabs/Module/Photos.php:1089 ../../Zotlabs/Module/Photos.php:1207 -#: ../../Zotlabs/Lib/ThreadItem.php:709 ../../include/js_strings.php:6 -msgid "Comment" -msgstr "Comentari" - -#: ../../Zotlabs/Module/Photos.php:1105 ../../include/conversation.php:577 -msgctxt "title" -msgid "Likes" -msgstr "Agrada" - -#: ../../Zotlabs/Module/Photos.php:1105 ../../include/conversation.php:577 -msgctxt "title" -msgid "Dislikes" -msgstr "Desagrada" - -#: ../../Zotlabs/Module/Photos.php:1106 ../../include/conversation.php:578 -msgctxt "title" -msgid "Agree" -msgstr "Acord" - -#: ../../Zotlabs/Module/Photos.php:1106 ../../include/conversation.php:578 -msgctxt "title" -msgid "Disagree" -msgstr "Desacord" - -#: ../../Zotlabs/Module/Photos.php:1106 ../../include/conversation.php:578 -msgctxt "title" -msgid "Abstain" -msgstr "Abstenirse" - -#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:579 -msgctxt "title" -msgid "Attending" -msgstr "Assistint" - -#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:579 -msgctxt "title" -msgid "Not attending" -msgstr "Desassistint" - -#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:579 -msgctxt "title" -msgid "Might attend" -msgstr "Podrien assistir" - -#: ../../Zotlabs/Module/Photos.php:1124 ../../Zotlabs/Module/Photos.php:1136 -#: ../../Zotlabs/Lib/ThreadItem.php:181 ../../Zotlabs/Lib/ThreadItem.php:193 -#: ../../include/conversation.php:1738 -msgid "View all" -msgstr "Veure tot" - -#: ../../Zotlabs/Module/Photos.php:1128 ../../Zotlabs/Lib/ThreadItem.php:185 -#: ../../include/taxonomy.php:403 ../../include/channel.php:1198 -#: ../../include/conversation.php:1762 -msgctxt "noun" -msgid "Like" -msgid_plural "Likes" -msgstr[0] "Agrada" -msgstr[1] "Agraden" - -#: ../../Zotlabs/Module/Photos.php:1133 ../../Zotlabs/Lib/ThreadItem.php:190 -#: ../../include/conversation.php:1765 -msgctxt "noun" -msgid "Dislike" -msgid_plural "Dislikes" -msgstr[0] "Desagrada" -msgstr[1] "Desagrada" - -#: ../../Zotlabs/Module/Photos.php:1233 -msgid "Photo Tools" -msgstr "Eines per Fotos" - -#: ../../Zotlabs/Module/Photos.php:1242 -msgid "In This Photo:" -msgstr "Hi apareixen:" - -#: ../../Zotlabs/Module/Photos.php:1247 -msgid "Map" -msgstr "Mapa" - -#: ../../Zotlabs/Module/Photos.php:1255 ../../Zotlabs/Lib/ThreadItem.php:386 -msgctxt "noun" -msgid "Likes" -msgstr "Agrada" - -#: ../../Zotlabs/Module/Photos.php:1256 ../../Zotlabs/Lib/ThreadItem.php:387 -msgctxt "noun" -msgid "Dislikes" -msgstr "Desagrada" - -#: ../../Zotlabs/Module/Photos.php:1261 ../../Zotlabs/Lib/ThreadItem.php:392 -#: ../../include/acl_selectors.php:283 -msgid "Close" -msgstr "Tanca" - -#: ../../Zotlabs/Module/Photos.php:1335 -msgid "View Album" -msgstr "Mostra'n l'àlbum" - -#: ../../Zotlabs/Module/Photos.php:1346 ../../Zotlabs/Module/Photos.php:1359 -#: ../../Zotlabs/Module/Photos.php:1360 -msgid "Recent Photos" -msgstr "Imatges recents" - -#: ../../Zotlabs/Module/Lockview.php:75 -msgid "Remote privacy information not available." -msgstr "informació privada remota no disponible." - -#: ../../Zotlabs/Module/Lockview.php:96 -msgid "Visible to:" -msgstr "Visible per:" - -#: ../../Zotlabs/Module/Import_items.php:104 -msgid "Import completed" -msgstr "S'ha completat la importació" - -#: ../../Zotlabs/Module/Import_items.php:119 -msgid "Import Items" -msgstr "Importa Articles" - -#: ../../Zotlabs/Module/Import_items.php:120 -msgid "" -"Use this form to import existing posts and content from an export file." -msgstr "Empra aquest formulari per importar entrades existents i contingut d'un arxiu d'exportació." - -#: ../../Zotlabs/Module/Invite.php:29 -msgid "Total invitation limit exceeded." -msgstr "El límit total invitacions s'ha superat." - -#: ../../Zotlabs/Module/Invite.php:53 -#, php-format -msgid "%s : Not a valid email address." -msgstr "%s: adreça de correu electrònic no vàlida." - -#: ../../Zotlabs/Module/Invite.php:63 -msgid "Please join us on $Projectname" -msgstr "Si us plau uneix-te a nosaltres a $Projectname." - -#: ../../Zotlabs/Module/Invite.php:74 -msgid "Invitation limit exceeded. Please contact your site administrator." -msgstr "Límit d'invitacions excedit. Si us plau, poseu-vos en contacte amb l'administrador del lloc." - -#: ../../Zotlabs/Module/Invite.php:79 -#, php-format -msgid "%s : Message delivery failed." -msgstr "%s : Entrega del Missatge fallida." - -#: ../../Zotlabs/Module/Invite.php:83 -#, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "%d missatge enviat." -msgstr[1] "%d missatges enviats." - -#: ../../Zotlabs/Module/Invite.php:102 -msgid "You have no more invitations available" -msgstr "No té més invitacions disponibles" - -#: ../../Zotlabs/Module/Invite.php:133 -msgid "Send invitations" -msgstr "Enviar invitacions" - -#: ../../Zotlabs/Module/Invite.php:134 -msgid "Enter email addresses, one per line:" -msgstr "Introduïu les adreces de correu electrònic, una per línia:" - -#: ../../Zotlabs/Module/Invite.php:135 ../../Zotlabs/Module/Mail.php:241 -msgid "Your message:" -msgstr "El teu missatge:" - -#: ../../Zotlabs/Module/Invite.php:136 -msgid "Please join my community on $Projectname." -msgstr "Si us plau uneix-te la meva comunitat en $Projectname." - -#: ../../Zotlabs/Module/Invite.php:138 -msgid "You will need to supply this invitation code:" -msgstr "Hauràs de facilitar aquest codi d'invitació:" - -#: ../../Zotlabs/Module/Invite.php:139 -msgid "" -"1. Register at any $Projectname location (they are all inter-connected)" -msgstr "1. Pots registrar-te a qualsevol node de $Projectname (estàn tots interconnectats)" - -#: ../../Zotlabs/Module/Invite.php:141 -msgid "2. Enter my $Projectname network address into the site searchbar." -msgstr "2. Escriu la meva adreça de xarxa al $Projectname, a la barra de cerca del lloc." - -#: ../../Zotlabs/Module/Invite.php:142 -msgid "or visit" -msgstr "o visitar" - -#: ../../Zotlabs/Module/Invite.php:144 -msgid "3. Click [Connect]" -msgstr "3. Clicar [Conectar]" - -#: ../../Zotlabs/Module/Locs.php:25 ../../Zotlabs/Module/Locs.php:54 -msgid "Location not found." -msgstr "Situació que no es troba." - -#: ../../Zotlabs/Module/Locs.php:62 -msgid "Location lookup failed." -msgstr "Ha fallat la cerca d'ubicació." - -#: ../../Zotlabs/Module/Locs.php:66 -msgid "" -"Please select another location to become primary before removing the primary" -" location." -msgstr "Seleccioneu una altra ubicació per esdevenir primària abans de retirar la ubicació principal." - -#: ../../Zotlabs/Module/Locs.php:95 -msgid "Syncing locations" -msgstr "Sincronitza ubicacions" - -#: ../../Zotlabs/Module/Locs.php:105 -msgid "No locations found." -msgstr "No es troben els llocs." - -#: ../../Zotlabs/Module/Locs.php:116 -msgid "Manage Channel Locations" -msgstr "Gestionar Ubicacions de Canal" - -#: ../../Zotlabs/Module/Locs.php:119 -msgid "Primary" -msgstr "Primari" - -#: ../../Zotlabs/Module/Locs.php:120 ../../Zotlabs/Module/Menu.php:113 -msgid "Drop" -msgstr "Menysprea" - -#: ../../Zotlabs/Module/Locs.php:122 -msgid "Sync Now" -msgstr "Sincronitza Ara" - -#: ../../Zotlabs/Module/Locs.php:123 -msgid "Please wait several minutes between consecutive operations." -msgstr "Si us plau espera diversos minuts entre operacions consecutives." - -#: ../../Zotlabs/Module/Locs.php:124 -msgid "" -"When possible, drop a location by logging into that website/hub and removing" -" your channel." -msgstr "Quan sigui possible, per desapareixer d'un lloc, accedeix a aquest lloc web/node i elimina el teu canal." - -#: ../../Zotlabs/Module/Locs.php:125 -msgid "Use this form to drop the location if the hub is no longer operating." -msgstr "Empra aquest formulari per desapareixer del lloc si el node ja no està operatiu." - -#: ../../Zotlabs/Module/Magic.php:71 -msgid "Hub not found." -msgstr "Node no trobat." - -#: ../../Zotlabs/Module/Mail.php:38 -msgid "Unable to lookup recipient." -msgstr "Incapaç de trobar el destinatari." - -#: ../../Zotlabs/Module/Mail.php:45 -msgid "Unable to communicate with requested channel." -msgstr "Incapaç de comunicar amb el canal demanat." - -#: ../../Zotlabs/Module/Mail.php:52 -msgid "Cannot verify requested channel." -msgstr "No puc verificar el canal demanat." - -#: ../../Zotlabs/Module/Mail.php:70 -msgid "Selected channel has private message restrictions. Send failed." -msgstr "El canal seleccionat te restriccions sobre els missatges privats. L'enviament ha fallat." - -#: ../../Zotlabs/Module/Mail.php:135 -msgid "Messages" -msgstr "Missatges" - -#: ../../Zotlabs/Module/Mail.php:170 -msgid "Message recalled." -msgstr "Recupera el missatge." - -#: ../../Zotlabs/Module/Mail.php:183 -msgid "Conversation removed." -msgstr "Conversació eliminada." - -#: ../../Zotlabs/Module/Mail.php:198 ../../Zotlabs/Module/Mail.php:307 -msgid "Expires YYYY-MM-DD HH:MM" -msgstr "Expira YYYY-MM-DD HH:MM" - -#: ../../Zotlabs/Module/Mail.php:226 -msgid "Requested channel is not in this network" -msgstr "El canal demanat no hi es en questa xarxa" - -#: ../../Zotlabs/Module/Mail.php:234 -msgid "Send Private Message" -msgstr "Envia Missatge Privat" - -#: ../../Zotlabs/Module/Mail.php:235 ../../Zotlabs/Module/Mail.php:360 -msgid "To:" -msgstr "Per:" - -#: ../../Zotlabs/Module/Mail.php:238 ../../Zotlabs/Module/Mail.php:362 -msgid "Subject:" -msgstr "Assumpte:" - -#: ../../Zotlabs/Module/Mail.php:243 ../../Zotlabs/Module/Mail.php:368 -#: ../../include/conversation.php:1231 -msgid "Attach file" -msgstr "Adjunta arxiu" - -#: ../../Zotlabs/Module/Mail.php:245 -msgid "Send" -msgstr "Envia" - -#: ../../Zotlabs/Module/Mail.php:248 ../../Zotlabs/Module/Mail.php:373 -#: ../../include/conversation.php:1266 -msgid "Set expiration date" -msgstr "Ajusta la data d'expiració" - -#: ../../Zotlabs/Module/Mail.php:332 -msgid "Delete message" -msgstr "Elimina el missatge" - -#: ../../Zotlabs/Module/Mail.php:333 -msgid "Delivery report" -msgstr "Informe d'entrega" - -#: ../../Zotlabs/Module/Mail.php:334 -msgid "Recall message" -msgstr "Recupera el missatge" - -#: ../../Zotlabs/Module/Mail.php:336 -msgid "Message has been recalled." -msgstr "El missatge s'ha recuperat." - -#: ../../Zotlabs/Module/Mail.php:353 -msgid "Delete Conversation" -msgstr "Conversació esborrada" - -#: ../../Zotlabs/Module/Mail.php:355 -msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." -msgstr "Comunicació segura no disponible. Pots respondre des de la pàgina de perfil del remitent." - -#: ../../Zotlabs/Module/Mail.php:359 -msgid "Send Reply" -msgstr "Envia Resposta" - -#: ../../Zotlabs/Module/Mail.php:364 -#, php-format -msgid "Your message for %s (%s):" -msgstr "El teu missatge per %s (%s):" - -#: ../../Zotlabs/Module/Manage.php:136 -#: ../../Zotlabs/Module/New_channel.php:121 -#, php-format -msgid "You have created %1$.0f of %2$.0f allowed channels." -msgstr "Has creat %1$.0f de %2$.0f canals permesos." - -#: ../../Zotlabs/Module/Manage.php:143 -msgid "Create a new channel" -msgstr "Crear un nou canal" - -#: ../../Zotlabs/Module/Manage.php:164 ../../Zotlabs/Lib/Apps.php:214 -#: ../../include/nav.php:208 -msgid "Channel Manager" -msgstr "Gestor de Canals" - -#: ../../Zotlabs/Module/Manage.php:165 -msgid "Current Channel" -msgstr "Canal Actual" - -#: ../../Zotlabs/Module/Manage.php:167 -msgid "Switch to one of your channels by selecting it." -msgstr "Canviar a un altre dels teus canals seleccionant-ho." - -#: ../../Zotlabs/Module/Manage.php:168 -msgid "Default Channel" -msgstr "Canal per Defecte" - -#: ../../Zotlabs/Module/Manage.php:169 -msgid "Make Default" -msgstr "Estableix com a Predeterminat" - -#: ../../Zotlabs/Module/Manage.php:172 -#, php-format -msgid "%d new messages" -msgstr "%d missatges nous" - -#: ../../Zotlabs/Module/Manage.php:173 -#, php-format -msgid "%d new introductions" -msgstr "%d noves presentacions" - -#: ../../Zotlabs/Module/Manage.php:175 -msgid "Delegated Channel" -msgstr "Canal Delegat" - -#: ../../Zotlabs/Module/Menu.php:49 -msgid "Unable to update menu." -msgstr "No s'ha pogut actualitzar el menú." - -#: ../../Zotlabs/Module/Menu.php:60 -msgid "Unable to create menu." -msgstr "No s'ha pogut crear el menú." - -#: ../../Zotlabs/Module/Menu.php:98 ../../Zotlabs/Module/Menu.php:110 -msgid "Menu Name" -msgstr "Nom del menú" - -#: ../../Zotlabs/Module/Menu.php:98 -msgid "Unique name (not visible on webpage) - required" -msgstr "Nom únic (no visible a la pàgina web) - requerit" - -#: ../../Zotlabs/Module/Menu.php:99 ../../Zotlabs/Module/Menu.php:111 -msgid "Menu Title" -msgstr "Títol del menú" - -#: ../../Zotlabs/Module/Menu.php:99 -msgid "Visible on webpage - leave empty for no title" -msgstr "Visible a la pàgina web - deixar buit per a no posar títol" - -#: ../../Zotlabs/Module/Menu.php:100 -msgid "Allow Bookmarks" -msgstr "Permetre Marcadors" - -#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 -msgid "Menu may be used to store saved bookmarks" -msgstr "El menú es pot emprar per a guardar marcadors" - -#: ../../Zotlabs/Module/Menu.php:101 ../../Zotlabs/Module/Menu.php:159 -msgid "Submit and proceed" -msgstr "Envia i procedeix" - -#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2239 -msgid "Menus" -msgstr "Menús" - -#: ../../Zotlabs/Module/Menu.php:117 -msgid "Bookmarks allowed" -msgstr "Marcadors permesos" - -#: ../../Zotlabs/Module/Menu.php:119 -msgid "Delete this menu" -msgstr "Esborra el menú" - -#: ../../Zotlabs/Module/Menu.php:120 ../../Zotlabs/Module/Menu.php:154 -msgid "Edit menu contents" -msgstr "Edita el contingut del menú" - -#: ../../Zotlabs/Module/Menu.php:121 -msgid "Edit this menu" -msgstr "Edita el menú" - -#: ../../Zotlabs/Module/Menu.php:136 -msgid "Menu could not be deleted." -msgstr "El menu no es pot esborrar." - -#: ../../Zotlabs/Module/Menu.php:144 ../../Zotlabs/Module/Mitem.php:28 -msgid "Menu not found." -msgstr "Menú no trobat." - -#: ../../Zotlabs/Module/Menu.php:149 -msgid "Edit Menu" -msgstr "Edita Menú" - -#: ../../Zotlabs/Module/Menu.php:153 -msgid "Add or remove entries to this menu" -msgstr "Afegeix o esborra entrades a aquest menú" - -#: ../../Zotlabs/Module/Menu.php:155 -msgid "Menu name" -msgstr "Nom del Menú" - -#: ../../Zotlabs/Module/Menu.php:155 -msgid "Must be unique, only seen by you" -msgstr "Ha de ser únic, nomes vist per tú" - -#: ../../Zotlabs/Module/Menu.php:156 -msgid "Menu title" -msgstr "Títol del menú" - -#: ../../Zotlabs/Module/Menu.php:156 -msgid "Menu title as seen by others" -msgstr "Títol del menú vist pels altres" - -#: ../../Zotlabs/Module/Menu.php:157 -msgid "Allow bookmarks" -msgstr "Marcadors permesos" - -#: ../../Zotlabs/Module/Menu.php:166 ../../Zotlabs/Module/Mitem.php:120 -#: ../../Zotlabs/Module/Xchan.php:41 -msgid "Not found." -msgstr "No trobat." - -#: ../../Zotlabs/Module/Lostpass.php:19 -msgid "No valid account found." -msgstr "No es troba un compte vàlid." - -#: ../../Zotlabs/Module/Lostpass.php:33 -msgid "Password reset request issued. Check your email." -msgstr "Sol·licitud de restabliment de contrasenya emesa. Consulta el teu correu electrònic." - -#: ../../Zotlabs/Module/Lostpass.php:39 ../../Zotlabs/Module/Lostpass.php:107 -#, php-format -msgid "Site Member (%s)" -msgstr "Lloc d'Usuari (%s)" - -#: ../../Zotlabs/Module/Lostpass.php:44 -#, php-format -msgid "Password reset requested at %s" -msgstr "S'ha soŀlicitat restablir la contrasenya al hub %s" - -#: ../../Zotlabs/Module/Lostpass.php:67 -msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." -msgstr "Ha fallat el restabliment de contrasenya perquè la no s'ha pogut verificar soŀlicitud. Pot ser que ja ho hàgiu soŀlicitat abans." - -#: ../../Zotlabs/Module/Lostpass.php:90 ../../boot.php:1712 -msgid "Password Reset" -msgstr "Restabliment de contrasenya" - -#: ../../Zotlabs/Module/Lostpass.php:91 -msgid "Your password has been reset as requested." -msgstr "S'ha restablert la vostra contrasenya." - -#: ../../Zotlabs/Module/Lostpass.php:92 -msgid "Your new password is" -msgstr "La nova contrasenya és" - -#: ../../Zotlabs/Module/Lostpass.php:93 -msgid "Save or copy your new password - and then" -msgstr "Desa o copia la nova contrasenya, i després" - -#: ../../Zotlabs/Module/Lostpass.php:94 -msgid "click here to login" -msgstr "fes clic aquí per iniciar sessió" - -#: ../../Zotlabs/Module/Lostpass.php:95 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." -msgstr "Pots canviar la contrasenya a la pàgina Paràmetres, un cop iniciada la sessió." - -#: ../../Zotlabs/Module/Lostpass.php:112 -#, php-format -msgid "Your password has changed at %s" -msgstr "La teva contrasenya a %s ha canviat" - -#: ../../Zotlabs/Module/Lostpass.php:127 -msgid "Forgot your Password?" -msgstr "No recordes la contrasenya?" - -#: ../../Zotlabs/Module/Lostpass.php:128 -msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." -msgstr "Escriu la teva adreça de correu electrònic i envia per restablir la contrasenya. Després revisa el seu correu electrònic per obtenir més instruccions." - -#: ../../Zotlabs/Module/Lostpass.php:129 -msgid "Email Address" -msgstr "Adreça electrònica" - -#: ../../Zotlabs/Module/Lostpass.php:130 -msgid "Reset" -msgstr "Reajustar" - -#: ../../Zotlabs/Module/Mood.php:67 ../../include/conversation.php:260 -#, php-format -msgctxt "mood" -msgid "%1$s is %2$s" -msgstr "%1$s es %2$s" - -#: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Lib/Apps.php:227 -msgid "Mood" -msgstr "Ànim" - -#: ../../Zotlabs/Module/Mood.php:136 -msgid "Set your current mood and tell your friends" -msgstr "Estableix el teu estat d'ànim actual i digues-li als teus amics" - -#: ../../Zotlabs/Module/Network.php:94 -msgid "No such group" -msgstr "No existeix el grup" - -#: ../../Zotlabs/Module/Network.php:134 -msgid "No such channel" -msgstr "No existeix el canal" - -#: ../../Zotlabs/Module/Network.php:139 -msgid "forum" -msgstr "fòrum" - -#: ../../Zotlabs/Module/Network.php:151 -msgid "Search Results For:" -msgstr "Cerca resultats per:" - -#: ../../Zotlabs/Module/Network.php:215 -msgid "Privacy group is empty" -msgstr "el grup privat està vuit" - -#: ../../Zotlabs/Module/Network.php:224 -msgid "Privacy group: " -msgstr "Grup privat:" - -#: ../../Zotlabs/Module/Network.php:250 -msgid "Invalid connection." -msgstr "La connexió és invàlida." - -#: ../../Zotlabs/Module/Notify.php:57 -#: ../../Zotlabs/Module/Notifications.php:98 -msgid "No more system notifications." -msgstr "No hi ha més notificacions del sistema." - -#: ../../Zotlabs/Module/Notify.php:61 -#: ../../Zotlabs/Module/Notifications.php:102 -msgid "System Notifications" -msgstr "Notificacions del sistema" - -#: ../../Zotlabs/Module/Match.php:26 -msgid "Profile Match" -msgstr "Perfils compatibles" - -#: ../../Zotlabs/Module/Match.php:35 -msgid "No keywords to match. Please add keywords to your default profile." -msgstr "No tens paraules clau al perfil principal per poder cercar perfils semblants." - -#: ../../Zotlabs/Module/Match.php:67 -msgid "is interested in:" -msgstr "té interès en:" - -#: ../../Zotlabs/Module/Match.php:74 -msgid "No matches" -msgstr "No s'han trobat perfils compatibles" - -#: ../../Zotlabs/Module/Channel.php:40 -msgid "Posts and comments" -msgstr "Entrades i comentaris" - -#: ../../Zotlabs/Module/Channel.php:41 -msgid "Only posts" -msgstr "Només entrades" - -#: ../../Zotlabs/Module/Channel.php:101 -msgid "Insufficient permissions. Request redirected to profile page." -msgstr "Permisos insuficients. Petició redirigida a la pàgina del perfil." - -#: ../../Zotlabs/Module/Mitem.php:52 -msgid "Unable to create element." -msgstr "Incapaç de crear l'element." - -#: ../../Zotlabs/Module/Mitem.php:76 -msgid "Unable to update menu element." -msgstr "Incapaç d'actualitzar un element del menú." - -#: ../../Zotlabs/Module/Mitem.php:92 -msgid "Unable to add menu element." -msgstr "Incapaç d'afegir l'element del menú." - -#: ../../Zotlabs/Module/Mitem.php:153 ../../Zotlabs/Module/Mitem.php:226 -msgid "Menu Item Permissions" -msgstr "Permisos de l'Article del Menú" - -#: ../../Zotlabs/Module/Mitem.php:154 ../../Zotlabs/Module/Mitem.php:227 -#: ../../Zotlabs/Module/Settings.php:1163 -msgid "(click to open/close)" -msgstr "(clica per obrir/tancar)" - -#: ../../Zotlabs/Module/Mitem.php:156 ../../Zotlabs/Module/Mitem.php:172 -msgid "Link Name" -msgstr "Nom de l'Enllaç" - -#: ../../Zotlabs/Module/Mitem.php:157 ../../Zotlabs/Module/Mitem.php:231 -msgid "Link or Submenu Target" -msgstr "Enllaç o Submenú Objectiu" - -#: ../../Zotlabs/Module/Mitem.php:157 -msgid "Enter URL of the link or select a menu name to create a submenu" -msgstr "Entra la URL de l'enlla´o tria un nom de menú per crear un submenú" - -#: ../../Zotlabs/Module/Mitem.php:158 ../../Zotlabs/Module/Mitem.php:232 -msgid "Use magic-auth if available" -msgstr "Empra magic-auth si esta disponible" - -#: ../../Zotlabs/Module/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:233 -msgid "Open link in new window" -msgstr "Obrir l'enllaç en una nova finestra" - -#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:234 -msgid "Order in list" -msgstr "Ordre per llista" - -#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:234 -msgid "Higher numbers will sink to bottom of listing" -msgstr "Els números més alts aniràn al fons de la llista" - -#: ../../Zotlabs/Module/Mitem.php:161 -msgid "Submit and finish" -msgstr "Envia i termina" - -#: ../../Zotlabs/Module/Mitem.php:162 -msgid "Submit and continue" -msgstr "Envia i continua" - -#: ../../Zotlabs/Module/Mitem.php:170 -msgid "Menu:" -msgstr "Menú:" - -#: ../../Zotlabs/Module/Mitem.php:173 -msgid "Link Target" -msgstr "Enllaç Objectiu" - -#: ../../Zotlabs/Module/Mitem.php:176 -msgid "Edit menu" -msgstr "Edita menú" - -#: ../../Zotlabs/Module/Mitem.php:179 -msgid "Edit element" -msgstr "Edita element" - -#: ../../Zotlabs/Module/Mitem.php:180 -msgid "Drop element" -msgstr "Deixa anar element" - -#: ../../Zotlabs/Module/Mitem.php:181 -msgid "New element" -msgstr "Nou element" - -#: ../../Zotlabs/Module/Mitem.php:182 -msgid "Edit this menu container" -msgstr "Edita aquest contenidor de menú" - -#: ../../Zotlabs/Module/Mitem.php:183 -msgid "Add menu element" -msgstr "Afegeix element de menú" - -#: ../../Zotlabs/Module/Mitem.php:184 -msgid "Delete this menu item" -msgstr "Esborra aquest article del menú" - -#: ../../Zotlabs/Module/Mitem.php:185 -msgid "Edit this menu item" -msgstr "Edita aquest article del menú" - -#: ../../Zotlabs/Module/Mitem.php:202 -msgid "Menu item not found." -msgstr "Article del menú no trobat." - -#: ../../Zotlabs/Module/Mitem.php:215 -msgid "Menu item deleted." -msgstr "Article del menú eliminat." - -#: ../../Zotlabs/Module/Mitem.php:217 -msgid "Menu item could not be deleted." -msgstr "Article del menú no es pot eliminar." - -#: ../../Zotlabs/Module/Mitem.php:224 -msgid "Edit Menu Element" -msgstr "Editar Element del Menú" - -#: ../../Zotlabs/Module/Mitem.php:230 -msgid "Link text" -msgstr "Enllaç de text" +#: ../../Zotlabs/Module/Ratings.php:107 +msgid "Description: " +msgstr "Descripció:" #: ../../Zotlabs/Module/Admin.php:77 msgid "Theme settings updated." @@ -3549,7 +3642,7 @@ msgstr "Comptes registrades" #: ../../Zotlabs/Module/Admin.php:246 ../../Zotlabs/Module/Admin.php:715 msgid "Pending registrations" -msgstr "Comptes pendents d'inscripció" +msgstr "Comptes pendents de registre" #: ../../Zotlabs/Module/Admin.php:247 msgid "Registered channels" @@ -3575,11 +3668,11 @@ msgstr "Versió (desenvolupament) del repositori" msgid "Site settings updated." msgstr "Ajustos del Lloc actualitzats" -#: ../../Zotlabs/Module/Admin.php:400 ../../include/text.php:2829 +#: ../../Zotlabs/Module/Admin.php:400 ../../include/text.php:2841 msgid "Default" msgstr "Predeterminat" -#: ../../Zotlabs/Module/Admin.php:410 ../../Zotlabs/Module/Settings.php:899 +#: ../../Zotlabs/Module/Admin.php:410 ../../Zotlabs/Module/Settings.php:798 msgid "mobile" msgstr "mòbil" @@ -3611,13 +3704,13 @@ msgstr "El meu lloc te lliure accés" msgid "My site offers free accounts with optional paid upgrades" msgstr "El meu lloc te comptes gratis amb opció de millores per pagament" -#: ../../Zotlabs/Module/Admin.php:491 ../../include/widgets.php:1476 +#: ../../Zotlabs/Module/Admin.php:491 ../../include/widgets.php:1382 msgid "Site" msgstr "Lloc" #: ../../Zotlabs/Module/Admin.php:493 ../../Zotlabs/Module/Register.php:245 msgid "Registration" -msgstr "Inscripcions" +msgstr "Registre" #: ../../Zotlabs/Module/Admin.php:494 msgid "File upload" @@ -3691,7 +3784,7 @@ msgstr "Mida màxima en bytes d'imatges pujades. Per defecte es 0, el que vol di #: ../../Zotlabs/Module/Admin.php:509 msgid "Does this site allow new member registration?" -msgstr "Permet aquest lloc l'inscripció de nous membres?" +msgstr "Permet aquest lloc registre de nous membres?" #: ../../Zotlabs/Module/Admin.php:510 msgid "Invitation only" @@ -3701,7 +3794,7 @@ msgstr "Només per invitació" msgid "" "Only allow new member registrations with an invitation code. Above register " "policy must be set to Yes." -msgstr "Només permet inscriure nous membres amb codi d'invitació. A més la política de registre s'ha d'establir a Sí." +msgstr "Només permet registre de nos membres amb codi d'invitació. A més la política de registre s'ha d'establir a Sí." #: ../../Zotlabs/Module/Admin.php:511 msgid "Which best describes the types of account offered by this hub?" @@ -3709,11 +3802,11 @@ msgstr "Que es es que millor descriu la mena de comptes oferits per aquest conce #: ../../Zotlabs/Module/Admin.php:512 msgid "Register text" -msgstr "Text d'inscripció" +msgstr "text de registre" #: ../../Zotlabs/Module/Admin.php:512 msgid "Will be displayed prominently on the registration page." -msgstr "Es mostrarà preminentment a la pàgina d'inscripció" +msgstr "Es mostrarà preminentment a la pàgina de registre" #: ../../Zotlabs/Module/Admin.php:513 msgid "Site homepage to show visitors (default: login box)" @@ -3899,12 +3992,12 @@ msgid "0 for no expiration of imported content" msgstr "0 vol dir sense temps d'expiració pel contingut importat" #: ../../Zotlabs/Module/Admin.php:677 ../../Zotlabs/Module/Admin.php:678 -#: ../../Zotlabs/Module/Settings.php:823 +#: ../../Zotlabs/Module/Settings.php:722 msgid "Off" msgstr "Apagat" #: ../../Zotlabs/Module/Admin.php:677 ../../Zotlabs/Module/Admin.php:678 -#: ../../Zotlabs/Module/Settings.php:823 +#: ../../Zotlabs/Module/Settings.php:722 msgid "On" msgstr "Funcionant" @@ -3961,7 +4054,7 @@ msgid "" "embedded content from that site is explicitly blocked." msgstr "Tota la resta de contingut embegut seà filtrat, excepte contingut embegut d'aquest lloc que està blocat explícitament." -#: ../../Zotlabs/Module/Admin.php:756 ../../include/widgets.php:1479 +#: ../../Zotlabs/Module/Admin.php:756 ../../include/widgets.php:1385 msgid "Security" msgstr "Seguretat" @@ -4129,7 +4222,7 @@ msgid "Account '%s' unblocked" msgstr "S'ha desbloquejat el compte '%s'" #: ../../Zotlabs/Module/Admin.php:1031 ../../Zotlabs/Module/Admin.php:1044 -#: ../../include/widgets.php:1477 +#: ../../include/widgets.php:1383 msgid "Accounts" msgstr "Comptes" @@ -4139,7 +4232,7 @@ msgstr "Sel·leciona-ho tot" #: ../../Zotlabs/Module/Admin.php:1034 msgid "Registrations waiting for confirm" -msgstr "Inscripcions esperant confirmació" +msgstr "" #: ../../Zotlabs/Module/Admin.php:1035 msgid "Request date" @@ -4159,7 +4252,7 @@ msgstr "Tots els Canals" #: ../../Zotlabs/Module/Admin.php:1049 msgid "Register date" -msgstr "Data d'inscripció" +msgstr "Data de registre" #: ../../Zotlabs/Module/Admin.php:1050 msgid "Last login" @@ -4235,7 +4328,7 @@ msgstr "Canal '%s' permet codi" msgid "Channel '%s' code disallowed" msgstr "Canal '%s' no permet codi" -#: ../../Zotlabs/Module/Admin.php:1210 ../../include/widgets.php:1478 +#: ../../Zotlabs/Module/Admin.php:1210 ../../include/widgets.php:1384 msgid "Channels" msgstr "Canals" @@ -4255,7 +4348,7 @@ msgstr "Permet Codi" msgid "Disallow Code" msgstr "No Permet Codi" -#: ../../Zotlabs/Module/Admin.php:1218 ../../include/conversation.php:1626 +#: ../../Zotlabs/Module/Admin.php:1218 ../../include/conversation.php:1611 msgid "Channel" msgstr "Canal" @@ -4294,7 +4387,7 @@ msgid "Enable" msgstr "Activat" #: ../../Zotlabs/Module/Admin.php:1330 ../../Zotlabs/Module/Admin.php:1420 -#: ../../include/widgets.php:1481 +#: ../../include/widgets.php:1387 msgid "Plugins" msgstr "Plugins" @@ -4303,8 +4396,8 @@ msgid "Toggle" msgstr "Commutar" #: ../../Zotlabs/Module/Admin.php:1332 ../../Zotlabs/Module/Admin.php:1615 -#: ../../Zotlabs/Lib/Apps.php:216 ../../include/nav.php:210 -#: ../../include/widgets.php:647 +#: ../../Zotlabs/Lib/Apps.php:215 ../../include/widgets.php:638 +#: ../../include/nav.php:208 msgid "Settings" msgstr "Ajustos" @@ -4360,7 +4453,7 @@ msgstr "Descarrega el Repositori de Plugins" msgid "Install new repo" msgstr "Instal·la un nou repositori " -#: ../../Zotlabs/Module/Admin.php:1405 ../../Zotlabs/Lib/Apps.php:334 +#: ../../Zotlabs/Module/Admin.php:1405 ../../Zotlabs/Lib/Apps.php:330 msgid "Install" msgstr "Instal·lar" @@ -4376,8 +4469,8 @@ msgstr "Repositori de Plugins Instal·lat" msgid "Install a New Plugin Repository" msgstr "Instal·la un Nou Repositori de Plugins" -#: ../../Zotlabs/Module/Admin.php:1435 ../../Zotlabs/Module/Settings.php:72 -#: ../../Zotlabs/Module/Settings.php:670 ../../Zotlabs/Lib/Apps.php:334 +#: ../../Zotlabs/Module/Admin.php:1435 ../../Zotlabs/Module/Settings.php:77 +#: ../../Zotlabs/Module/Settings.php:616 ../../Zotlabs/Lib/Apps.php:330 msgid "Update" msgstr "Actualització" @@ -4394,7 +4487,7 @@ msgid "Screenshot" msgstr "Copia de pantalla" #: ../../Zotlabs/Module/Admin.php:1613 ../../Zotlabs/Module/Admin.php:1647 -#: ../../include/widgets.php:1482 +#: ../../include/widgets.php:1388 msgid "Themes" msgstr "Temes" @@ -4410,8 +4503,8 @@ msgstr "[No soportat]" msgid "Log settings updated." msgstr "Registre d'ajustos actualitzat." -#: ../../Zotlabs/Module/Admin.php:1732 ../../include/widgets.php:1503 -#: ../../include/widgets.php:1513 +#: ../../Zotlabs/Module/Admin.php:1732 ../../include/widgets.php:1409 +#: ../../include/widgets.php:1419 msgid "Logs" msgstr "Logs" @@ -4431,7 +4524,7 @@ msgstr "Arxiu de registre" msgid "" "Must be writable by web server. Relative to your top-level webserver " "directory." -msgstr "Ha de ser escribible pel servidor web. Relatiu al directori de nivell superior del servidor web" +msgstr "" #: ../../Zotlabs/Module/Admin.php:1742 msgid "Log level" @@ -4477,7 +4570,7 @@ msgstr "No es troba la definició del camp" msgid "Edit Profile Field" msgstr "Camp d'Edició del Perfil" -#: ../../Zotlabs/Module/Admin.php:2106 ../../include/widgets.php:1484 +#: ../../Zotlabs/Module/Admin.php:2106 ../../include/widgets.php:1390 msgid "Profile Fields" msgstr "Camps del Perfil" @@ -4505,384 +4598,57 @@ msgstr "Camps Personalitzats" msgid "Create Custom Field" msgstr "Crear un Camp Personalitzat" -#: ../../Zotlabs/Module/New_channel.php:128 -#: ../../Zotlabs/Module/Register.php:231 -msgid "Name or caption" -msgstr "Nom o llegenda" +#: ../../Zotlabs/Module/Appman.php:37 ../../Zotlabs/Module/Appman.php:53 +msgid "App installed." +msgstr "Aplicació instal·lada." -#: ../../Zotlabs/Module/New_channel.php:128 -#: ../../Zotlabs/Module/Register.php:231 -msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\"" -msgstr "Exemples: \"Pep Gomila\", \"Manel i els seus Cavalls\", \"Fútbol\", \"Grup d'Aviadors\"" +#: ../../Zotlabs/Module/Appman.php:46 +msgid "Malformed app." +msgstr "Aplicació amb errors" -#: ../../Zotlabs/Module/New_channel.php:130 -#: ../../Zotlabs/Module/Register.php:233 -msgid "Choose a short nickname" -msgstr "Tria un àlies curt" +#: ../../Zotlabs/Module/Appman.php:104 +msgid "Embed code" +msgstr "Codi embegut" -#: ../../Zotlabs/Module/New_channel.php:130 -#: ../../Zotlabs/Module/Register.php:233 -#, php-format -msgid "" -"Your nickname will be used to create an easy to remember channel address " -"e.g. nickname%s" -msgstr "El teu àlies serà emprat per crear un nom fàcil per recordar l'adreça del canal p.e. àlies%s" +#: ../../Zotlabs/Module/Appman.php:110 ../../include/widgets.php:107 +msgid "Edit App" +msgstr "Edita l'Aplicació" -#: ../../Zotlabs/Module/New_channel.php:132 -#: ../../Zotlabs/Module/Register.php:235 -msgid "Channel role and privacy" -msgstr "Funció i privacitat del canal" +#: ../../Zotlabs/Module/Appman.php:110 +msgid "Create App" +msgstr "Crea l'Aplicació" -#: ../../Zotlabs/Module/New_channel.php:132 -#: ../../Zotlabs/Module/Register.php:235 -msgid "Select a channel role with your privacy requirements." -msgstr "Tria una funció pel canal amb els teus requisits de privacitat." +#: ../../Zotlabs/Module/Appman.php:115 +msgid "Name of app" +msgstr "Nom de l'Aplicació" -#: ../../Zotlabs/Module/New_channel.php:132 -#: ../../Zotlabs/Module/Register.php:235 -msgid "Read more about roles" -msgstr "Llegix més sobre els rols" +#: ../../Zotlabs/Module/Appman.php:116 +msgid "Location (URL) of app" +msgstr "Ubicació (URL) de l'aplicació" -#: ../../Zotlabs/Module/New_channel.php:135 -msgid "Create Channel" -msgstr "Crea un Canal" +#: ../../Zotlabs/Module/Appman.php:118 +msgid "Photo icon URL" +msgstr "Foto icona URL" -#: ../../Zotlabs/Module/New_channel.php:136 -msgid "" -"A channel is your identity on this network. It can represent a person, a " -"blog, or a forum to name a few. Channels can make connections with other " -"channels to share information with highly detailed permissions." -msgstr "Un canal es la tva identitat en aquesta xarxa. Pot representar una persona, un bloc, o un fòrum per anomenar alguns. Els canals poden connectar-se amb altres canals per compartir informació amb permisos molt detallats." +#: ../../Zotlabs/Module/Appman.php:118 +msgid "80 x 80 pixels - optional" +msgstr "80 x 80 pixels - opcional" -#: ../../Zotlabs/Module/New_channel.php:137 -msgid "" -"or import an existing channel from another location." -msgstr "o importa un canal existent des d'un altre ubicació." +#: ../../Zotlabs/Module/Appman.php:119 +msgid "Categories (optional, comma separated list)" +msgstr "Categories (opcional, lista separada per comes)" -#: ../../Zotlabs/Module/Ping.php:265 -msgid "sent you a private message" -msgstr "Se t'ha enviat un missatge privat" +#: ../../Zotlabs/Module/Appman.php:120 +msgid "Version ID" +msgstr "Versió ID" -#: ../../Zotlabs/Module/Ping.php:313 -msgid "added your channel" -msgstr "el teu canal s'ha afegit" +#: ../../Zotlabs/Module/Appman.php:121 +msgid "Price of app" +msgstr "Preu de l'aplicació" -#: ../../Zotlabs/Module/Ping.php:323 -msgid "g A l F d" -msgstr "g A l F d" - -#: ../../Zotlabs/Module/Ping.php:346 -msgid "[today]" -msgstr "[avui]" - -#: ../../Zotlabs/Module/Ping.php:355 -msgid "posted an event" -msgstr "enviat un esdeveniment" - -#: ../../Zotlabs/Module/Notifications.php:30 -msgid "Invalid request identifier." -msgstr "Sol·licitud d'identificació invàlida." - -#: ../../Zotlabs/Module/Notifications.php:39 -msgid "Discard" -msgstr "Descarta" - -#: ../../Zotlabs/Module/Notifications.php:103 ../../include/nav.php:193 -msgid "Mark all system notifications seen" -msgstr "Marca totes les notificacions vistes" - -#: ../../Zotlabs/Module/Poke.php:168 ../../Zotlabs/Lib/Apps.php:228 -#: ../../include/conversation.php:963 -msgid "Poke" -msgstr "Esperonar" - -#: ../../Zotlabs/Module/Poke.php:169 -msgid "Poke somebody" -msgstr "Emprenyar algú" - -#: ../../Zotlabs/Module/Poke.php:172 -msgid "Poke/Prod" -msgstr "Esperonat/Picat" - -#: ../../Zotlabs/Module/Poke.php:173 -msgid "Poke, prod or do other things to somebody" -msgstr "emprenyar, picar o fer altres coses a algú" - -#: ../../Zotlabs/Module/Poke.php:180 -msgid "Recipient" -msgstr "Destinatari" - -#: ../../Zotlabs/Module/Poke.php:181 -msgid "Choose what you wish to do to recipient" -msgstr "Tria que vols fer amb el destinatari" - -#: ../../Zotlabs/Module/Poke.php:184 ../../Zotlabs/Module/Poke.php:185 -msgid "Make this post private" -msgstr "Fer aquesta entrada privada" - -#: ../../Zotlabs/Module/Oexchange.php:27 -msgid "Unable to find your hub." -msgstr "No es possible trobar el node" - -#: ../../Zotlabs/Module/Oexchange.php:41 -msgid "Post successful." -msgstr "Entrada realitzada amb èxit. " - -#: ../../Zotlabs/Module/Openid.php:30 -msgid "OpenID protocol error. No ID returned." -msgstr "Error del protocol OpenID. No ha retornat ID" - -#: ../../Zotlabs/Module/Openid.php:193 ../../include/auth.php:285 -msgid "Login failed." -msgstr "Identificació fallida." - -#: ../../Zotlabs/Module/Profperm.php:34 ../../Zotlabs/Module/Profperm.php:63 -msgid "Invalid profile identifier." -msgstr "Identificador invàlid de perfil." - -#: ../../Zotlabs/Module/Profperm.php:115 -msgid "Profile Visibility Editor" -msgstr "Perfil del Editor de Visibilitat" - -#: ../../Zotlabs/Module/Profperm.php:117 ../../include/channel.php:1290 -msgid "Profile" -msgstr "Perfil" - -#: ../../Zotlabs/Module/Profperm.php:119 -msgid "Click on a contact to add or remove." -msgstr "Clica sobre el contacte per afegir o esborrar." - -#: ../../Zotlabs/Module/Profperm.php:128 -msgid "Visible To" -msgstr "Visible per" - -#: ../../Zotlabs/Module/Pconfig.php:26 ../../Zotlabs/Module/Pconfig.php:59 -msgid "This setting requires special processing and editing has been blocked." -msgstr "Aquest ajust requereix un procés espedial i l'edició esta bloquejada." - -#: ../../Zotlabs/Module/Pconfig.php:48 -msgid "Configuration Editor" -msgstr "Editor de Configuració" - -#: ../../Zotlabs/Module/Pconfig.php:49 -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 "atenció: Realitzar segons quins ajustos pot fer el canal inoperable. Deixa aquesta pàgina si no estas segur i tens suficients coneixements sobre l'ús correcte d'aquesta característica." - -#: ../../Zotlabs/Module/Probe.php:28 ../../Zotlabs/Module/Probe.php:32 -#, php-format -msgid "Fetching URL returns error: %1$s" -msgstr "URL sol·licitada retorna error: %1$s" - -#: ../../Zotlabs/Module/Siteinfo.php:19 -#, php-format -msgid "Version %s" -msgstr "Versió %s" - -#: ../../Zotlabs/Module/Siteinfo.php:34 -msgid "Installed plugins/addons/apps:" -msgstr "Plugins/addons/apps Instal·lats:" - -#: ../../Zotlabs/Module/Siteinfo.php:36 -msgid "No installed plugins/addons/apps" -msgstr "Plugins/addons/apps no instal·lats" - -#: ../../Zotlabs/Module/Siteinfo.php:49 -msgid "" -"This is a hub of $Projectname - a global cooperative network of " -"decentralized privacy enhanced websites." -msgstr "Aquest és un node de $Projectname, una xarxa cooperativa mundial de llocs web descentralitzats amb gran control de la privacitat." - -#: ../../Zotlabs/Module/Siteinfo.php:51 -msgid "Tag: " -msgstr "Etiqueta:" - -#: ../../Zotlabs/Module/Siteinfo.php:53 -msgid "Last background fetch: " -msgstr "Última actualització en rerefons:" - -#: ../../Zotlabs/Module/Siteinfo.php:55 -msgid "Current load average: " -msgstr "Càrrega actual mitja:" - -#: ../../Zotlabs/Module/Siteinfo.php:58 -msgid "Running at web location" -msgstr "Correguent en el lloc web" - -#: ../../Zotlabs/Module/Siteinfo.php:59 -msgid "" -"Please visit hubzilla.org to learn more " -"about $Projectname." -msgstr "Visita hubzilla.org per saber-ne més de $Projectname." - -#: ../../Zotlabs/Module/Siteinfo.php:60 -msgid "Bug reports and issues: please visit" -msgstr "Per informar d'errors o problemes ves a" - -#: ../../Zotlabs/Module/Siteinfo.php:62 -msgid "$projectname issues" -msgstr "$projectname qüestions" - -#: ../../Zotlabs/Module/Siteinfo.php:63 -msgid "" -"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot " -"com" -msgstr "Per suggerències, felicitacions i altres, envia'ns un mail a «redmatrix» [arroba] librelist [punt] com" - -#: ../../Zotlabs/Module/Siteinfo.php:65 -msgid "Site Administrators" -msgstr "Administradors del lloc" - -#: ../../Zotlabs/Module/Rmagic.php:44 -msgid "" -"We encountered a problem while logging in with the OpenID you provided. " -"Please check the correct spelling of the ID." -msgstr "Em trobat un problema durant l'inici de sessió amb el OpenID que has facilitat. verifica l'ortografia correcta de la ID." - -#: ../../Zotlabs/Module/Rmagic.php:44 -msgid "The error message was:" -msgstr "El missatge d'error fou:" - -#: ../../Zotlabs/Module/Rmagic.php:48 -msgid "Authentication failed." -msgstr "Ha fallat l'autentificació." - -#: ../../Zotlabs/Module/Rmagic.php:88 -msgid "Remote Authentication" -msgstr "Autentificació Remota" - -#: ../../Zotlabs/Module/Rmagic.php:89 -msgid "Enter your channel address (e.g. channel@example.com)" -msgstr "Introdueix la teva adreça del canal (eg canal@exemple.com)" - -#: ../../Zotlabs/Module/Rmagic.php:90 -msgid "Authenticate" -msgstr "Autentica't" - -#: ../../Zotlabs/Module/Pubsites.php:22 ../../include/widgets.php:1337 -msgid "Public Hubs" -msgstr "Nodes Públics" - -#: ../../Zotlabs/Module/Pubsites.php:25 -msgid "" -"The listed hubs allow public registration for the $Projectname network. All " -"hubs in the network are interlinked so membership on any of them conveys " -"membership in the network as a whole. Some hubs may require subscription or " -"provide tiered service plans. The hub itself may provide " -"additional details." -msgstr "Els nodes llistats permeten registrar usuaris de la xarxa $Projectname. Com que tots els nodes estan enllaçats entre ells, la identitat és vàlida a tota la xarxa. Alguns nodes poden demanar subscripció o oferir serveis addicional de pagament. Per a més detalls, proveu de seguir els enllaços dels proveïdors." - -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Hub URL" -msgstr "URL del Node" - -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Access Type" -msgstr "Tipus d'accés" - -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Registration Policy" -msgstr "Condicions d'inscripció" - -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Stats" -msgstr "Estadístiques" - -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Software" -msgstr "Programari" - -#: ../../Zotlabs/Module/Pubsites.php:31 ../../Zotlabs/Module/Ratings.php:103 -#: ../../include/conversation.php:962 -msgid "Ratings" -msgstr "Valoracions" - -#: ../../Zotlabs/Module/Pubsites.php:38 -msgid "Rate" -msgstr "Puntua" - -#: ../../Zotlabs/Module/Profile_photo.php:186 -msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." -msgstr "Refresca la memòria cau del navegador si la foto no s'actualitza immediatament. Dreceres: «Ctrl+F5» i «Ctrl+Maj+R»" - -#: ../../Zotlabs/Module/Profile_photo.php:389 -msgid "Upload Profile Photo" -msgstr "Puja una Foto pel Perfil" - -#: ../../Zotlabs/Module/Blocks.php:97 ../../Zotlabs/Module/Blocks.php:155 -#: ../../Zotlabs/Module/Editblock.php:108 -msgid "Block Name" -msgstr "Nom del Bloc" - -#: ../../Zotlabs/Module/Blocks.php:154 ../../include/text.php:2238 -msgid "Blocks" -msgstr "Bloc" - -#: ../../Zotlabs/Module/Blocks.php:156 -msgid "Block Title" -msgstr "Títol del bloc" - -#: ../../Zotlabs/Module/Rate.php:160 -msgid "Website:" -msgstr "Lloc web:" - -#: ../../Zotlabs/Module/Rate.php:163 -#, php-format -msgid "Remote Channel [%s] (not yet known on this site)" -msgstr "Canal Remot [%s] (encara no es coneix en aquest lloc)" - -#: ../../Zotlabs/Module/Rate.php:164 -msgid "Rating (this information is public)" -msgstr "Valoració (aquesta informació és pública)" - -#: ../../Zotlabs/Module/Rate.php:165 -msgid "Optionally explain your rating (this information is public)" -msgstr "Opcionalment pots explicar la teva qualificació (aquesta informació és pública)" - -#: ../../Zotlabs/Module/Ratings.php:73 -msgid "No ratings" -msgstr "No valorat" - -#: ../../Zotlabs/Module/Ratings.php:104 -msgid "Rating: " -msgstr "Valoració:" - -#: ../../Zotlabs/Module/Ratings.php:105 -msgid "Website: " -msgstr "Lloc web:" - -#: ../../Zotlabs/Module/Ratings.php:107 -msgid "Description: " -msgstr "Descripció:" - -#: ../../Zotlabs/Module/Apps.php:47 ../../include/nav.php:165 -#: ../../include/widgets.php:102 -msgid "Apps" -msgstr "Aplicatius" - -#: ../../Zotlabs/Module/Editblock.php:124 ../../include/conversation.php:1243 -msgid "Title (optional)" -msgstr "Títol (opcional)" - -#: ../../Zotlabs/Module/Editblock.php:133 -msgid "Edit Block" -msgstr "Editar Bloc" - -#: ../../Zotlabs/Module/Common.php:14 -msgid "No channel." -msgstr "No s'ha trobat el canal" - -#: ../../Zotlabs/Module/Common.php:43 -msgid "Common connections" -msgstr "Connexions en comú" - -#: ../../Zotlabs/Module/Common.php:48 -msgid "No connections in common." -msgstr "No hi ha connexions en comú." +#: ../../Zotlabs/Module/Appman.php:122 +msgid "Location (URL) to purchase app" +msgstr "Ubicació (URL) per comprar l'aplicació" #: ../../Zotlabs/Module/Rbmark.php:94 msgid "Select a bookmark folder" @@ -4902,12 +4668,12 @@ msgstr "O entra un nou nom de favorit" #: ../../Zotlabs/Module/Register.php:49 msgid "Maximum daily site registrations exceeded. Please try again tomorrow." -msgstr "Nombre màxim d'inscripcions diaris excedit. Si us plau, provau demà." +msgstr "Nombre màxim de registres diaris excedit. Si us plau, provau demà." #: ../../Zotlabs/Module/Register.php:55 msgid "" "Please indicate acceptance of the Terms of Service. Registration failed." -msgstr "L'inscripció ha fallat. Si et plau, indica que acceptes les Condicions del Servei." +msgstr "El registre ha fallat. Si et plau, indica que acceptes les Condicions del Servei." #: ../../Zotlabs/Module/Register.php:89 msgid "Passwords do not match." @@ -4921,29 +4687,29 @@ msgstr "Registrat amb èxit. Si et plau revisa el teu correu electrònic per a l #: ../../Zotlabs/Module/Register.php:137 msgid "Your registration is pending approval by the site owner." -msgstr "La teva inscripció esta pendent de validació pel propietari del lloc." +msgstr "El teu registre esta pendent de validació pel propietari del lloc." #: ../../Zotlabs/Module/Register.php:140 msgid "Your registration can not be processed." -msgstr "La teva inscripció no ha pogut ser processat. " +msgstr "El teu registre no ha pogut ser processat. " #: ../../Zotlabs/Module/Register.php:184 msgid "Registration on this hub is disabled." -msgstr "L'inscripció en aquest node està deshabilitat." +msgstr "El registre en aquest node està deshabilitat." #: ../../Zotlabs/Module/Register.php:193 msgid "Registration on this hub is by approval only." -msgstr "L'inscripció en aquest node es únicament per validació." +msgstr "El registre en aquest node es únicament per validació." #: ../../Zotlabs/Module/Register.php:194 msgid "Register at another affiliated hub." -msgstr "Inscripció en altre node afiliat" +msgstr "Registre en altre node afiliat" #: ../../Zotlabs/Module/Register.php:204 msgid "" "This site has exceeded the number of allowed daily account registrations. " "Please try again tomorrow." -msgstr "El lloc ha excedit el límit màxim diari de nous comptes/inscripció. Provau demà." +msgstr "El lloc ha excedit el límit màxim diari de nous comptes/registres. Provau demà." #: ../../Zotlabs/Module/Register.php:215 msgid "Terms of Service" @@ -4987,154 +4753,120 @@ msgstr "sí" msgid "Membership on this site is by invitation only." msgstr "La pertinença en aquest lloc es per invitació exclusivament." -#: ../../Zotlabs/Module/Register.php:262 ../../include/nav.php:149 -#: ../../boot.php:1686 +#: ../../Zotlabs/Module/Register.php:262 ../../include/nav.php:147 +#: ../../boot.php:1685 msgid "Register" -msgstr "Inscripció" +msgstr "Registre" -#: ../../Zotlabs/Module/Register.php:263 -msgid "" -"This site may require email verification after submitting this form. If you " -"are returned to a login page, please check your email for instructions." -msgstr "" +#: ../../Zotlabs/Module/Register.php:262 +msgid "Proceed to create your first channel" +msgstr "Comença a crear el teu primer canal" #: ../../Zotlabs/Module/Regmod.php:15 msgid "Please login." msgstr "Inicia Sessió." -#: ../../Zotlabs/Module/Removeaccount.php:35 +#: ../../Zotlabs/Module/Removeaccount.php:34 msgid "" "Account removals are not allowed within 48 hours of changing the account " "password." msgstr "L'esborrat de comptes no està permès fins que transcorren 48 hores des de l'últim canvi de contrasenya." -#: ../../Zotlabs/Module/Removeaccount.php:57 +#: ../../Zotlabs/Module/Removeaccount.php:56 msgid "Remove This Account" msgstr "Esborra el compte" -#: ../../Zotlabs/Module/Removeaccount.php:58 -#: ../../Zotlabs/Module/Removeme.php:61 +#: ../../Zotlabs/Module/Removeaccount.php:57 +#: ../../Zotlabs/Module/Removeme.php:59 msgid "WARNING: " msgstr "ALERTA:" -#: ../../Zotlabs/Module/Removeaccount.php:58 +#: ../../Zotlabs/Module/Removeaccount.php:57 msgid "" "This account and all its channels will be completely removed from the " "network. " msgstr "Aquest compte i tots els seus canals s'estan apunt d'esborrar totalment de la xarxa." -#: ../../Zotlabs/Module/Removeaccount.php:58 -#: ../../Zotlabs/Module/Removeme.php:61 +#: ../../Zotlabs/Module/Removeaccount.php:57 +#: ../../Zotlabs/Module/Removeme.php:59 msgid "This action is permanent and can not be undone!" msgstr "Aquesta acció és irreversible!" -#: ../../Zotlabs/Module/Removeaccount.php:59 -#: ../../Zotlabs/Module/Removeme.php:62 +#: ../../Zotlabs/Module/Removeaccount.php:58 +#: ../../Zotlabs/Module/Removeme.php:60 msgid "Please enter your password for verification:" msgstr "Aquesta acció requereix tornar a introduir la contrasenya:" -#: ../../Zotlabs/Module/Removeaccount.php:60 +#: ../../Zotlabs/Module/Removeaccount.php:59 msgid "" "Remove this account, all its channels and all its channel clones from the " "network" msgstr "Esborra de la xarxa aquest compte, tots els seus canals, i tots els seus canals clons." -#: ../../Zotlabs/Module/Removeaccount.php:60 +#: ../../Zotlabs/Module/Removeaccount.php:59 msgid "" "By default only the instances of the channels located on this hub will be " "removed from the network" msgstr "Per defecte, només les instancies dels canal ubicats en aquest node poden esser esborrades de la xarxa" -#: ../../Zotlabs/Module/Removeaccount.php:61 -#: ../../Zotlabs/Module/Settings.php:759 +#: ../../Zotlabs/Module/Removeaccount.php:60 +#: ../../Zotlabs/Module/Settings.php:705 msgid "Remove Account" msgstr "Esborra el Compte" -#: ../../Zotlabs/Module/Removeme.php:35 +#: ../../Zotlabs/Module/Removeme.php:33 msgid "" "Channel removals are not allowed within 48 hours of changing the account " "password." msgstr "L'esborrat de canals no està permès fins que transcorren 48 hores des de l'últim canvi de contrasenya." -#: ../../Zotlabs/Module/Removeme.php:60 +#: ../../Zotlabs/Module/Removeme.php:58 msgid "Remove This Channel" msgstr "Elimina Aquest Canal" -#: ../../Zotlabs/Module/Removeme.php:61 +#: ../../Zotlabs/Module/Removeme.php:59 msgid "This channel will be completely removed from the network. " msgstr "Aquest canal serà completament eliminat de la xarxa." -#: ../../Zotlabs/Module/Removeme.php:63 +#: ../../Zotlabs/Module/Removeme.php:61 msgid "Remove this channel and all its clones from the network" msgstr "Elimina aquest canal i els seus clons de la xarxa" -#: ../../Zotlabs/Module/Removeme.php:63 +#: ../../Zotlabs/Module/Removeme.php:61 msgid "" "By default only the instance of the channel located on this hub will be " "removed from the network" msgstr "Per defecte, només la instancia del canal ubicat en aquest node pot esser esborrat de la xarxa" -#: ../../Zotlabs/Module/Removeme.php:64 ../../Zotlabs/Module/Settings.php:1219 +#: ../../Zotlabs/Module/Removeme.php:62 ../../Zotlabs/Module/Settings.php:1124 msgid "Remove Channel" msgstr "Elimina el canal" -#: ../../Zotlabs/Module/Uexport.php:55 ../../Zotlabs/Module/Uexport.php:56 -msgid "Export Channel" -msgstr "Exportar Canal" - -#: ../../Zotlabs/Module/Uexport.php:57 +#: ../../Zotlabs/Module/Rmagic.php:44 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 "Exporta la informació bàsica del canal a un arxiu. Això actua com a còpia de recolzament de les teves connexions, permisos, perfil i dades bàsiques, les quals pots emprar per traslladar aquestes dades a una altre lloc/node, però no conté el contingut del canal." +"We encountered a problem while logging in with the OpenID you provided. " +"Please check the correct spelling of the ID." +msgstr "Em trobat un problema durant l'inici de sessió amb el OpenID que has facilitat. verifica l'ortografia correcta de la ID." -#: ../../Zotlabs/Module/Uexport.php:58 -msgid "Export Content" -msgstr "Exportar el Contingut" +#: ../../Zotlabs/Module/Rmagic.php:44 +msgid "The error message was:" +msgstr "El missatge d'error fou:" -#: ../../Zotlabs/Module/Uexport.php:59 -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 "Exporta la informació del canal i tot el contingut recent a un arxiu de recolzament JSON que por ser restaurat o importat en altre lloc/node. Això còpia totes les teves connexions, permisos, perfil i dades i mesos de entrades. L'arxiu pot ser MOLT gran. Si et plau, sigues pacient ja que pot trigar uns minuts a començar a baixar." +#: ../../Zotlabs/Module/Rmagic.php:48 +msgid "Authentication failed." +msgstr "Ha fallat l'autentificació." -#: ../../Zotlabs/Module/Uexport.php:60 -msgid "Export your posts from a given year." -msgstr "Exporta les teves entrades d'un any donat." +#: ../../Zotlabs/Module/Rmagic.php:88 +msgid "Remote Authentication" +msgstr "Autentificació Remota" -#: ../../Zotlabs/Module/Uexport.php:62 -msgid "" -"You may also export your posts and conversations for a particular year or " -"month. Adjust the date in your browser location bar to select other dates. " -"If the export fails (possibly due to memory exhaustion on your server hub), " -"please try again selecting a more limited date range." -msgstr "Pots també exportar les teves entrades i conversacions d'un any o un mes en particular. Ajusta la data a la barra de direccions del navegador per seleccionar altres dates. Si la exportació falla (possiblement degut al esgotament de la memòria del node servidor), si et plau, intenta de nou la selecció d'un rang de dates més limitat." +#: ../../Zotlabs/Module/Rmagic.php:89 +msgid "Enter your channel address (e.g. channel@example.com)" +msgstr "Introdueix la teva adreça del canal (eg canal@exemple.com)" -#: ../../Zotlabs/Module/Uexport.php:63 -#, php-format -msgid "" -"To select all posts for a given year, such as this year, visit %2$s" -msgstr "Per seleccionar tots els missatges per a un any determinat, com aquest any, visiteu %2$s" - -#: ../../Zotlabs/Module/Uexport.php:64 -#, php-format -msgid "" -"To select all posts for a given month, such as January of this year, visit " -"%2$s" -msgstr "Per seleccionar tots els missatges per a un mes determinat, com el de gener d'aquest any, visiteu %2$s" - -#: ../../Zotlabs/Module/Uexport.php:65 -#, php-format -msgid "" -"These content files may be imported or restored by visiting %2$s on any site containing your channel. For best results" -" please import or restore these in date order (oldest first)." -msgstr "Aquests arxius de contingut poden ser importats o restaurats per visitar %2$s en qualsevol lloc que conté el teu canal. Per obtenir els millors resultats si us plau, importar o restaurar aquests en ordre de data (la més antiga primer)." +#: ../../Zotlabs/Module/Rmagic.php:90 +msgid "Authenticate" +msgstr "Autentica't" #: ../../Zotlabs/Module/Search.php:216 #, php-format @@ -5150,652 +4882,609 @@ msgstr "Resultats de cerca per: %s" msgid "No service class restrictions found." msgstr "No s'han trobat restriccions de clase." -#: ../../Zotlabs/Module/Settings.php:64 +#: ../../Zotlabs/Module/Settings.php:69 msgid "Name is required" msgstr "Es requereix un Nom" -#: ../../Zotlabs/Module/Settings.php:68 +#: ../../Zotlabs/Module/Settings.php:73 msgid "Key and Secret are required" msgstr "Es requereix Clau (Key) i el Secret (Secret)" -#: ../../Zotlabs/Module/Settings.php:138 -#, php-format -msgid "This channel is limited to %d tokens" -msgstr "" - -#: ../../Zotlabs/Module/Settings.php:144 -msgid "Name and Password are required." -msgstr "" - -#: ../../Zotlabs/Module/Settings.php:168 -msgid "Token saved." -msgstr "" - -#: ../../Zotlabs/Module/Settings.php:274 +#: ../../Zotlabs/Module/Settings.php:225 msgid "Not valid email." msgstr "E-correu no vàlid." -#: ../../Zotlabs/Module/Settings.php:277 +#: ../../Zotlabs/Module/Settings.php:228 msgid "Protected email address. Cannot change to that email." msgstr "Adreça d'e-correu protegida. No es pot canviar a aquest e-correu." -#: ../../Zotlabs/Module/Settings.php:286 +#: ../../Zotlabs/Module/Settings.php:237 msgid "System failure storing new email. Please try again." msgstr "Fallada del sistema al guardar un nou correu. Si us plau, proba de nou." -#: ../../Zotlabs/Module/Settings.php:303 +#: ../../Zotlabs/Module/Settings.php:254 msgid "Password verification failed." msgstr "La verificació de la contrasenya ha fallat." -#: ../../Zotlabs/Module/Settings.php:310 +#: ../../Zotlabs/Module/Settings.php:261 msgid "Passwords do not match. Password unchanged." msgstr "Les contrasenyes no coincideixen. Contrasenya sense canvis." -#: ../../Zotlabs/Module/Settings.php:314 +#: ../../Zotlabs/Module/Settings.php:265 msgid "Empty passwords are not allowed. Password unchanged." msgstr "Les contrasenyes en blanc no estan permesas. Contrasenya sense canvis." -#: ../../Zotlabs/Module/Settings.php:328 +#: ../../Zotlabs/Module/Settings.php:279 msgid "Password changed." msgstr "Contrasenya canviada." -#: ../../Zotlabs/Module/Settings.php:330 +#: ../../Zotlabs/Module/Settings.php:281 msgid "Password update failed. Please try again." msgstr "L'actualització de la contrasenya va fallar. Si us plau, torneu a intentar-ho." -#: ../../Zotlabs/Module/Settings.php:579 +#: ../../Zotlabs/Module/Settings.php:525 msgid "Settings updated." msgstr "Ajustes actualizados." -#: ../../Zotlabs/Module/Settings.php:643 ../../Zotlabs/Module/Settings.php:669 -#: ../../Zotlabs/Module/Settings.php:705 +#: ../../Zotlabs/Module/Settings.php:589 ../../Zotlabs/Module/Settings.php:615 +#: ../../Zotlabs/Module/Settings.php:651 msgid "Add application" msgstr "Afegir aplicatiu" -#: ../../Zotlabs/Module/Settings.php:646 +#: ../../Zotlabs/Module/Settings.php:592 msgid "Name of application" msgstr "Nom de l'aplicatiu" -#: ../../Zotlabs/Module/Settings.php:647 ../../Zotlabs/Module/Settings.php:673 +#: ../../Zotlabs/Module/Settings.php:593 ../../Zotlabs/Module/Settings.php:619 msgid "Consumer Key" msgstr "Consumer Key" -#: ../../Zotlabs/Module/Settings.php:647 ../../Zotlabs/Module/Settings.php:648 +#: ../../Zotlabs/Module/Settings.php:593 ../../Zotlabs/Module/Settings.php:594 msgid "Automatically generated - change if desired. Max length 20" msgstr "Generat automàticament- Canvia-ho si ho vols. Max. longitud 20" -#: ../../Zotlabs/Module/Settings.php:648 ../../Zotlabs/Module/Settings.php:674 +#: ../../Zotlabs/Module/Settings.php:594 ../../Zotlabs/Module/Settings.php:620 msgid "Consumer Secret" msgstr "Consumer Secret" -#: ../../Zotlabs/Module/Settings.php:649 ../../Zotlabs/Module/Settings.php:675 +#: ../../Zotlabs/Module/Settings.php:595 ../../Zotlabs/Module/Settings.php:621 msgid "Redirect" msgstr "Redirecciona" -#: ../../Zotlabs/Module/Settings.php:649 +#: ../../Zotlabs/Module/Settings.php:595 msgid "" "Redirect URI - leave blank unless your application specifically requires " "this" msgstr "URI redirigida - No canviar excepte perquè el teu aplicatiu ho requereixi." -#: ../../Zotlabs/Module/Settings.php:650 ../../Zotlabs/Module/Settings.php:676 +#: ../../Zotlabs/Module/Settings.php:596 ../../Zotlabs/Module/Settings.php:622 msgid "Icon url" msgstr "Icona de url" -#: ../../Zotlabs/Module/Settings.php:650 ../../Zotlabs/Module/Sources.php:112 +#: ../../Zotlabs/Module/Settings.php:596 ../../Zotlabs/Module/Sources.php:112 #: ../../Zotlabs/Module/Sources.php:147 msgid "Optional" msgstr "Opcional" -#: ../../Zotlabs/Module/Settings.php:661 +#: ../../Zotlabs/Module/Settings.php:607 msgid "Application not found." msgstr "Aplicatiu no trobat." -#: ../../Zotlabs/Module/Settings.php:704 +#: ../../Zotlabs/Module/Settings.php:650 msgid "Connected Apps" msgstr "Aplicatius Conectats" -#: ../../Zotlabs/Module/Settings.php:708 +#: ../../Zotlabs/Module/Settings.php:654 msgid "Client key starts with" msgstr "La clau del client comença amb" -#: ../../Zotlabs/Module/Settings.php:709 +#: ../../Zotlabs/Module/Settings.php:655 msgid "No name" msgstr "Sin nombre" -#: ../../Zotlabs/Module/Settings.php:710 +#: ../../Zotlabs/Module/Settings.php:656 msgid "Remove authorization" msgstr "Elimina autorització" -#: ../../Zotlabs/Module/Settings.php:723 +#: ../../Zotlabs/Module/Settings.php:669 msgid "No feature settings configured" msgstr "No hi ha opcions de les funcions configurades" -#: ../../Zotlabs/Module/Settings.php:730 +#: ../../Zotlabs/Module/Settings.php:676 msgid "Feature/Addon Settings" msgstr "Ajustos de Complements" -#: ../../Zotlabs/Module/Settings.php:753 +#: ../../Zotlabs/Module/Settings.php:699 msgid "Account Settings" msgstr "Ajustos de Compte" -#: ../../Zotlabs/Module/Settings.php:754 +#: ../../Zotlabs/Module/Settings.php:700 msgid "Current Password" msgstr "Contrasenya Actual" -#: ../../Zotlabs/Module/Settings.php:755 +#: ../../Zotlabs/Module/Settings.php:701 msgid "Enter New Password" msgstr "Entra la Nova Contrasenya" -#: ../../Zotlabs/Module/Settings.php:756 +#: ../../Zotlabs/Module/Settings.php:702 msgid "Confirm New Password" msgstr "Confirma la Nova Contrasenya" -#: ../../Zotlabs/Module/Settings.php:756 +#: ../../Zotlabs/Module/Settings.php:702 msgid "Leave password fields blank unless changing" msgstr "Deixa els camps de contrasenya en blanc llevat que la vulguis canviar" -#: ../../Zotlabs/Module/Settings.php:758 -#: ../../Zotlabs/Module/Settings.php:1136 +#: ../../Zotlabs/Module/Settings.php:704 +#: ../../Zotlabs/Module/Settings.php:1041 msgid "Email Address:" msgstr "Adreça de E-Correu:" -#: ../../Zotlabs/Module/Settings.php:760 +#: ../../Zotlabs/Module/Settings.php:706 msgid "Remove this account including all its channels" msgstr "Esborra aquest compte inclosos tots els seus canals" -#: ../../Zotlabs/Module/Settings.php:789 -msgid "" -"Use this form to create temporary access identifiers to share things with " -"non-members. These identities may be used in Access Control Lists and " -"visitors may login using these credentials to access the private content." -msgstr "" - -#: ../../Zotlabs/Module/Settings.php:791 -msgid "" -"You may also provide dropbox style access links to friends and " -"associates by adding the Login Password to any specific site URL as shown. " -"Examples:" -msgstr "" - -#: ../../Zotlabs/Module/Settings.php:796 ../../include/widgets.php:614 -msgid "Guest Access Tokens" -msgstr "" - -#: ../../Zotlabs/Module/Settings.php:803 -msgid "Login Name" -msgstr "" - -#: ../../Zotlabs/Module/Settings.php:804 -msgid "Login Password" -msgstr "" - -#: ../../Zotlabs/Module/Settings.php:805 -msgid "Expires (yyyy-mm-dd)" -msgstr "" - -#: ../../Zotlabs/Module/Settings.php:830 +#: ../../Zotlabs/Module/Settings.php:729 msgid "Additional Features" msgstr "Característiques Addicionals" -#: ../../Zotlabs/Module/Settings.php:854 +#: ../../Zotlabs/Module/Settings.php:753 msgid "Connector Settings" msgstr "Ajustos de Connector" -#: ../../Zotlabs/Module/Settings.php:893 +#: ../../Zotlabs/Module/Settings.php:792 msgid "No special theme for mobile devices" msgstr "No emprar tema especial per aparells mòbils" -#: ../../Zotlabs/Module/Settings.php:896 +#: ../../Zotlabs/Module/Settings.php:795 #, php-format msgid "%s - (Experimental)" msgstr "%s - (Experimental)" -#: ../../Zotlabs/Module/Settings.php:938 +#: ../../Zotlabs/Module/Settings.php:837 msgid "Display Settings" msgstr "Ajustos de Pantalla" -#: ../../Zotlabs/Module/Settings.php:939 +#: ../../Zotlabs/Module/Settings.php:838 msgid "Theme Settings" msgstr "Ajustos de Tema" -#: ../../Zotlabs/Module/Settings.php:940 +#: ../../Zotlabs/Module/Settings.php:839 msgid "Custom Theme Settings" msgstr "Ajustos Personals de Tema" -#: ../../Zotlabs/Module/Settings.php:941 +#: ../../Zotlabs/Module/Settings.php:840 msgid "Content Settings" msgstr "Ajustos de Contingut" -#: ../../Zotlabs/Module/Settings.php:947 +#: ../../Zotlabs/Module/Settings.php:846 msgid "Display Theme:" msgstr "Ajustos de Tema:" -#: ../../Zotlabs/Module/Settings.php:948 +#: ../../Zotlabs/Module/Settings.php:847 msgid "Mobile Theme:" msgstr "Tema Mòbil:" -#: ../../Zotlabs/Module/Settings.php:949 +#: ../../Zotlabs/Module/Settings.php:848 msgid "Preload images before rendering the page" msgstr "Precarrega les imatges abans de dibuixar la pàgina" -#: ../../Zotlabs/Module/Settings.php:949 +#: ../../Zotlabs/Module/Settings.php:848 msgid "" "The subjective page load time will be longer but the page will be ready when" " displayed" msgstr "El temps subjectiu per carregar la pàgina pot ser llarg però la pàgina estarà preparada quan es mostri" -#: ../../Zotlabs/Module/Settings.php:950 +#: ../../Zotlabs/Module/Settings.php:849 msgid "Enable user zoom on mobile devices" msgstr "Zoom d'usuari en dispositius mòbils" -#: ../../Zotlabs/Module/Settings.php:951 +#: ../../Zotlabs/Module/Settings.php:850 msgid "Update browser every xx seconds" msgstr "Actualitza el navegador cada xx segons" -#: ../../Zotlabs/Module/Settings.php:951 +#: ../../Zotlabs/Module/Settings.php:850 msgid "Minimum of 10 seconds, no maximum" msgstr "Mínim de 10 segons, sense màxim" -#: ../../Zotlabs/Module/Settings.php:952 +#: ../../Zotlabs/Module/Settings.php:851 msgid "Maximum number of conversations to load at any time:" msgstr "Nombre màxim de conversacions a càrregar cada vegada" -#: ../../Zotlabs/Module/Settings.php:952 +#: ../../Zotlabs/Module/Settings.php:851 msgid "Maximum of 100 items" msgstr "Màxim de 100 elements" -#: ../../Zotlabs/Module/Settings.php:953 +#: ../../Zotlabs/Module/Settings.php:852 msgid "Show emoticons (smilies) as images" msgstr "Mostra emoticons (smilies) com a imatges" -#: ../../Zotlabs/Module/Settings.php:954 +#: ../../Zotlabs/Module/Settings.php:853 msgid "Link post titles to source" msgstr "Enllaça a l'origen els títols de l'entrada" -#: ../../Zotlabs/Module/Settings.php:955 +#: ../../Zotlabs/Module/Settings.php:854 msgid "System Page Layout Editor - (advanced)" msgstr "Editor de Disseny de la Pàgina del Sistema - (avançat)" -#: ../../Zotlabs/Module/Settings.php:958 +#: ../../Zotlabs/Module/Settings.php:857 msgid "Use blog/list mode on channel page" msgstr "Empra el mode blog/llista a la pàgina del canal" -#: ../../Zotlabs/Module/Settings.php:958 ../../Zotlabs/Module/Settings.php:959 +#: ../../Zotlabs/Module/Settings.php:857 ../../Zotlabs/Module/Settings.php:858 msgid "(comments displayed separately)" msgstr "(Observacions es mostren per separat)" -#: ../../Zotlabs/Module/Settings.php:959 +#: ../../Zotlabs/Module/Settings.php:858 msgid "Use blog/list mode on grid page" msgstr "Empra el mode de blog/llista a la pàgina de la malla" -#: ../../Zotlabs/Module/Settings.php:960 +#: ../../Zotlabs/Module/Settings.php:859 msgid "Channel page max height of content (in pixels)" msgstr "Alçada màxima de contingut (en píxels) de la pàgina de Canal" -#: ../../Zotlabs/Module/Settings.php:960 ../../Zotlabs/Module/Settings.php:961 +#: ../../Zotlabs/Module/Settings.php:859 ../../Zotlabs/Module/Settings.php:860 msgid "click to expand content exceeding this height" msgstr "Clic per expandir el contingut que excedeixi aquesta alçada" -#: ../../Zotlabs/Module/Settings.php:961 +#: ../../Zotlabs/Module/Settings.php:860 msgid "Grid page max height of content (in pixels)" msgstr "Alçada màxima dels continguts (en píxels) de la Pàgina de Malla " -#: ../../Zotlabs/Module/Settings.php:990 +#: ../../Zotlabs/Module/Settings.php:894 msgid "Nobody except yourself" msgstr "Ningú excepte tú" -#: ../../Zotlabs/Module/Settings.php:991 +#: ../../Zotlabs/Module/Settings.php:895 msgid "Only those you specifically allow" msgstr "Només allò que específicament permetis" -#: ../../Zotlabs/Module/Settings.php:992 +#: ../../Zotlabs/Module/Settings.php:896 msgid "Approved connections" msgstr "Connexions aprovades" -#: ../../Zotlabs/Module/Settings.php:993 +#: ../../Zotlabs/Module/Settings.php:897 msgid "Any connections" msgstr "Qualsevol connexió" -#: ../../Zotlabs/Module/Settings.php:994 +#: ../../Zotlabs/Module/Settings.php:898 msgid "Anybody on this website" msgstr "Qualsevol en aquest lloc" -#: ../../Zotlabs/Module/Settings.php:995 +#: ../../Zotlabs/Module/Settings.php:899 msgid "Anybody in this network" msgstr "Qualsevol en aquesta xarxa" -#: ../../Zotlabs/Module/Settings.php:996 +#: ../../Zotlabs/Module/Settings.php:900 msgid "Anybody authenticated" msgstr "Qualsevol autenticat" -#: ../../Zotlabs/Module/Settings.php:997 +#: ../../Zotlabs/Module/Settings.php:901 msgid "Anybody on the internet" msgstr "Qualsevol a internet" -#: ../../Zotlabs/Module/Settings.php:1071 +#: ../../Zotlabs/Module/Settings.php:976 msgid "Publish your default profile in the network directory" msgstr "Publica el teu perfil per defecte al directori de la xarxa" -#: ../../Zotlabs/Module/Settings.php:1076 +#: ../../Zotlabs/Module/Settings.php:981 msgid "Allow us to suggest you as a potential friend to new members?" msgstr "Ens permets suggerir-te com a potencial amic als nous membres?" -#: ../../Zotlabs/Module/Settings.php:1085 +#: ../../Zotlabs/Module/Settings.php:990 msgid "Your channel address is" msgstr "La teva adreça del canal es" -#: ../../Zotlabs/Module/Settings.php:1127 +#: ../../Zotlabs/Module/Settings.php:1032 msgid "Channel Settings" msgstr "Ajustos del Canal" -#: ../../Zotlabs/Module/Settings.php:1134 +#: ../../Zotlabs/Module/Settings.php:1039 msgid "Basic Settings" msgstr "Ajustos Bàsics" -#: ../../Zotlabs/Module/Settings.php:1135 ../../include/channel.php:1180 +#: ../../Zotlabs/Module/Settings.php:1040 ../../include/channel.php:1140 msgid "Full Name:" msgstr "Nom Complet:" -#: ../../Zotlabs/Module/Settings.php:1137 +#: ../../Zotlabs/Module/Settings.php:1042 msgid "Your Timezone:" msgstr "La teva Franja Horària" -#: ../../Zotlabs/Module/Settings.php:1138 +#: ../../Zotlabs/Module/Settings.php:1043 msgid "Default Post Location:" msgstr "Localització Predeterminada de les Entrades:" -#: ../../Zotlabs/Module/Settings.php:1138 +#: ../../Zotlabs/Module/Settings.php:1043 msgid "Geographical location to display on your posts" msgstr "Posició geogràfica a mostrar a les teves entrades" -#: ../../Zotlabs/Module/Settings.php:1139 +#: ../../Zotlabs/Module/Settings.php:1044 msgid "Use Browser Location:" msgstr "Empra la Localització del Navegador:" -#: ../../Zotlabs/Module/Settings.php:1141 +#: ../../Zotlabs/Module/Settings.php:1046 msgid "Adult Content" msgstr "Contingut per a Adults" -#: ../../Zotlabs/Module/Settings.php:1141 +#: ../../Zotlabs/Module/Settings.php:1046 msgid "" "This channel frequently or regularly publishes adult content. (Please tag " "any adult material and/or nudity with #NSFW)" msgstr "Aquest canal publica freqúentment o amb regularitat contingut per a adults. (Si us plau, etiqueti qualsevol material per a adults amb #NSFW)" -#: ../../Zotlabs/Module/Settings.php:1143 +#: ../../Zotlabs/Module/Settings.php:1048 msgid "Security and Privacy Settings" msgstr "Ajustos de Seguretat i Privacitat" -#: ../../Zotlabs/Module/Settings.php:1146 +#: ../../Zotlabs/Module/Settings.php:1051 msgid "Your permissions are already configured. Click to view/adjust" msgstr "Els teus permisos estan configurats. Clic per veure/ajustar" -#: ../../Zotlabs/Module/Settings.php:1148 +#: ../../Zotlabs/Module/Settings.php:1053 msgid "Hide my online presence" msgstr "Amaga la meva presencia en línia" -#: ../../Zotlabs/Module/Settings.php:1148 +#: ../../Zotlabs/Module/Settings.php:1053 msgid "Prevents displaying in your profile that you are online" msgstr "Evita mostrar en el teu perfil, que estàs en línia" -#: ../../Zotlabs/Module/Settings.php:1150 +#: ../../Zotlabs/Module/Settings.php:1055 msgid "Simple Privacy Settings:" msgstr "Ajustos simples de privacitat:" -#: ../../Zotlabs/Module/Settings.php:1151 +#: ../../Zotlabs/Module/Settings.php:1056 msgid "" "Very Public - extremely permissive (should be used with caution)" msgstr "Molt públic - extremadament permissiu (s'ha d'anar en compte)" -#: ../../Zotlabs/Module/Settings.php:1152 +#: ../../Zotlabs/Module/Settings.php:1057 msgid "" "Typical - default public, privacy when desired (similar to social " "network permissions but with improved privacy)" msgstr "Normal - públic per defecte, privat quan es desitgi (similar als permisos de xarxa social, però amb millor privacitat)" -#: ../../Zotlabs/Module/Settings.php:1153 +#: ../../Zotlabs/Module/Settings.php:1058 msgid "Private - default private, never open or public" msgstr "Privat - privat per defecte, mai públic o obert" -#: ../../Zotlabs/Module/Settings.php:1154 +#: ../../Zotlabs/Module/Settings.php:1059 msgid "Blocked - default blocked to/from everybody" msgstr "Bloquejat - tothom bloquejat per defecte" -#: ../../Zotlabs/Module/Settings.php:1156 +#: ../../Zotlabs/Module/Settings.php:1061 msgid "Allow others to tag your posts" msgstr "Permet a altres etiquetar les teves entrades" -#: ../../Zotlabs/Module/Settings.php:1156 +#: ../../Zotlabs/Module/Settings.php:1061 msgid "" "Often used by the community to retro-actively flag inappropriate content" msgstr "Sovint emprat per la comunitat per marcar retroactivament contingut inapropiat" -#: ../../Zotlabs/Module/Settings.php:1158 +#: ../../Zotlabs/Module/Settings.php:1063 msgid "Advanced Privacy Settings" msgstr "Ajustos avançats de privacitat" -#: ../../Zotlabs/Module/Settings.php:1160 +#: ../../Zotlabs/Module/Settings.php:1065 msgid "Expire other channel content after this many days" msgstr "El contingut d'altes canals caduca després d'aquests dies" -#: ../../Zotlabs/Module/Settings.php:1160 +#: ../../Zotlabs/Module/Settings.php:1065 msgid "0 or blank to use the website limit." msgstr "0 o en blanc per emprar el limit del lloc web." -#: ../../Zotlabs/Module/Settings.php:1160 +#: ../../Zotlabs/Module/Settings.php:1065 #, php-format msgid "This website expires after %d days." msgstr "Aquest lloc web expira després de %d dies." -#: ../../Zotlabs/Module/Settings.php:1160 +#: ../../Zotlabs/Module/Settings.php:1065 msgid "This website does not expire imported content." msgstr "A aquest lloc web no expira el contingut importat" -#: ../../Zotlabs/Module/Settings.php:1160 +#: ../../Zotlabs/Module/Settings.php:1065 msgid "The website limit takes precedence if lower than your limit." msgstr "El límit del lloc web pren la preferència si es inferior al teu límit." -#: ../../Zotlabs/Module/Settings.php:1161 +#: ../../Zotlabs/Module/Settings.php:1066 msgid "Maximum Friend Requests/Day:" msgstr "Nombre màxim de peticions d'amistat per dia" -#: ../../Zotlabs/Module/Settings.php:1161 +#: ../../Zotlabs/Module/Settings.php:1066 msgid "May reduce spam activity" msgstr "Pot reduir l'SPAM" -#: ../../Zotlabs/Module/Settings.php:1162 +#: ../../Zotlabs/Module/Settings.php:1067 msgid "Default Post and Publish Permissions" msgstr "Permisos de Entrades i Publicació per defecte" -#: ../../Zotlabs/Module/Settings.php:1164 +#: ../../Zotlabs/Module/Settings.php:1069 msgid "Use my default audience setting for the type of object published" msgstr "Empra els meus ajustos per defecte segons el tipus de entrada publicada" -#: ../../Zotlabs/Module/Settings.php:1167 +#: ../../Zotlabs/Module/Settings.php:1072 msgid "Channel permissions category:" msgstr "Categoria de permisos de canal:" -#: ../../Zotlabs/Module/Settings.php:1173 +#: ../../Zotlabs/Module/Settings.php:1078 msgid "Maximum private messages per day from unknown people:" msgstr "Nombre màxim de missatges privats de desconeguts al dia:" -#: ../../Zotlabs/Module/Settings.php:1173 +#: ../../Zotlabs/Module/Settings.php:1078 msgid "Useful to reduce spamming" msgstr "Útil per a reduir l'spam" -#: ../../Zotlabs/Module/Settings.php:1176 +#: ../../Zotlabs/Module/Settings.php:1081 msgid "Notification Settings" msgstr "Ajustos de notificacions" -#: ../../Zotlabs/Module/Settings.php:1177 +#: ../../Zotlabs/Module/Settings.php:1082 msgid "By default post a status message when:" msgstr "Per defecte envia un missatge d'estat quan:" -#: ../../Zotlabs/Module/Settings.php:1178 +#: ../../Zotlabs/Module/Settings.php:1083 msgid "accepting a friend request" msgstr "S'accepta una sol·licitud d'amistat" -#: ../../Zotlabs/Module/Settings.php:1179 +#: ../../Zotlabs/Module/Settings.php:1084 msgid "joining a forum/community" msgstr "Apuntar-se a un fòrum o comunitat" -#: ../../Zotlabs/Module/Settings.php:1180 +#: ../../Zotlabs/Module/Settings.php:1085 msgid "making an interesting profile change" msgstr "Faci un canvi interesant al perfil" -#: ../../Zotlabs/Module/Settings.php:1181 +#: ../../Zotlabs/Module/Settings.php:1086 msgid "Send a notification email when:" msgstr "Notifica per correu quan:" -#: ../../Zotlabs/Module/Settings.php:1182 +#: ../../Zotlabs/Module/Settings.php:1087 msgid "You receive a connection request" msgstr "Rebi una petició de connexió" -#: ../../Zotlabs/Module/Settings.php:1183 +#: ../../Zotlabs/Module/Settings.php:1088 msgid "Your connections are confirmed" msgstr "Es confirma una connexió" -#: ../../Zotlabs/Module/Settings.php:1184 +#: ../../Zotlabs/Module/Settings.php:1089 msgid "Someone writes on your profile wall" msgstr "Algú ha escrit al mur del teu perfil" -#: ../../Zotlabs/Module/Settings.php:1185 +#: ../../Zotlabs/Module/Settings.php:1090 msgid "Someone writes a followup comment" msgstr "Algú ha escrit un comentari de resposta" -#: ../../Zotlabs/Module/Settings.php:1186 +#: ../../Zotlabs/Module/Settings.php:1091 msgid "You receive a private message" msgstr "Rebi un missatge privat" -#: ../../Zotlabs/Module/Settings.php:1187 +#: ../../Zotlabs/Module/Settings.php:1092 msgid "You receive a friend suggestion" msgstr "Rebi una suggerència d'amistat" -#: ../../Zotlabs/Module/Settings.php:1188 +#: ../../Zotlabs/Module/Settings.php:1093 msgid "You are tagged in a post" msgstr "Estàs etiquetat a l'entrada" -#: ../../Zotlabs/Module/Settings.php:1189 +#: ../../Zotlabs/Module/Settings.php:1094 msgid "You are poked/prodded/etc. in a post" msgstr "S'enfoten/te piquen/etc. en una entrada" -#: ../../Zotlabs/Module/Settings.php:1192 +#: ../../Zotlabs/Module/Settings.php:1097 msgid "Show visual notifications including:" msgstr "Mostra notificacion visuals, com ara:" -#: ../../Zotlabs/Module/Settings.php:1194 +#: ../../Zotlabs/Module/Settings.php:1099 msgid "Unseen grid activity" msgstr "Activitat de malla no vista" -#: ../../Zotlabs/Module/Settings.php:1195 +#: ../../Zotlabs/Module/Settings.php:1100 msgid "Unseen channel activity" msgstr "Activitat no vista del canal" -#: ../../Zotlabs/Module/Settings.php:1196 +#: ../../Zotlabs/Module/Settings.php:1101 msgid "Unseen private messages" msgstr "Missatges privats no llegits" -#: ../../Zotlabs/Module/Settings.php:1196 -#: ../../Zotlabs/Module/Settings.php:1201 -#: ../../Zotlabs/Module/Settings.php:1202 -#: ../../Zotlabs/Module/Settings.php:1203 +#: ../../Zotlabs/Module/Settings.php:1101 +#: ../../Zotlabs/Module/Settings.php:1106 +#: ../../Zotlabs/Module/Settings.php:1107 +#: ../../Zotlabs/Module/Settings.php:1108 msgid "Recommended" msgstr "Recomanat" -#: ../../Zotlabs/Module/Settings.php:1197 +#: ../../Zotlabs/Module/Settings.php:1102 msgid "Upcoming events" msgstr "Esdeveniments propers" -#: ../../Zotlabs/Module/Settings.php:1198 +#: ../../Zotlabs/Module/Settings.php:1103 msgid "Events today" msgstr "Esdeveniments d'avui" -#: ../../Zotlabs/Module/Settings.php:1199 +#: ../../Zotlabs/Module/Settings.php:1104 msgid "Upcoming birthdays" msgstr "Aniversaris propers" -#: ../../Zotlabs/Module/Settings.php:1199 +#: ../../Zotlabs/Module/Settings.php:1104 msgid "Not available in all themes" msgstr "No està disponible en tots els temes" -#: ../../Zotlabs/Module/Settings.php:1200 +#: ../../Zotlabs/Module/Settings.php:1105 msgid "System (personal) notifications" msgstr "Notificacions (personals) del sistema" -#: ../../Zotlabs/Module/Settings.php:1201 +#: ../../Zotlabs/Module/Settings.php:1106 msgid "System info messages" msgstr "Missatges d'informació del sistema" -#: ../../Zotlabs/Module/Settings.php:1202 +#: ../../Zotlabs/Module/Settings.php:1107 msgid "System critical alerts" msgstr "Alertes crítiques del sistema" -#: ../../Zotlabs/Module/Settings.php:1203 +#: ../../Zotlabs/Module/Settings.php:1108 msgid "New connections" msgstr "Noves connexions" -#: ../../Zotlabs/Module/Settings.php:1204 +#: ../../Zotlabs/Module/Settings.php:1109 msgid "System Registrations" -msgstr "Inscripcions del Sistema" +msgstr "Registres del sistema" -#: ../../Zotlabs/Module/Settings.php:1205 +#: ../../Zotlabs/Module/Settings.php:1110 msgid "" "Also show new wall posts, private messages and connections under Notices" msgstr "Mostra també les entrades de mur noves, les entrades privades i les connexions a \"Notícies\"" -#: ../../Zotlabs/Module/Settings.php:1207 +#: ../../Zotlabs/Module/Settings.php:1112 msgid "Notify me of events this many days in advance" msgstr "Notifica'm dels esdeveniments amb aquests dies d'antelació" -#: ../../Zotlabs/Module/Settings.php:1207 +#: ../../Zotlabs/Module/Settings.php:1112 msgid "Must be greater than 0" msgstr "Ha de ser més gran que 0" -#: ../../Zotlabs/Module/Settings.php:1209 +#: ../../Zotlabs/Module/Settings.php:1114 msgid "Advanced Account/Page Type Settings" msgstr "Ajustos avançats de compte i tipus de pàgina" -#: ../../Zotlabs/Module/Settings.php:1210 +#: ../../Zotlabs/Module/Settings.php:1115 msgid "Change the behaviour of this account for special situations" msgstr "Modifica el comportament d'aquest compte en situacions especials" -#: ../../Zotlabs/Module/Settings.php:1213 +#: ../../Zotlabs/Module/Settings.php:1118 msgid "" "Please enable expert mode (in Settings > " "Additional features) to adjust!" msgstr "Activa el mode d'expert (a Ajustos > Més funcions)" -#: ../../Zotlabs/Module/Settings.php:1214 +#: ../../Zotlabs/Module/Settings.php:1119 msgid "Miscellaneous Settings" msgstr "Ajustos diversos" -#: ../../Zotlabs/Module/Settings.php:1215 +#: ../../Zotlabs/Module/Settings.php:1120 msgid "Default photo upload folder" msgstr "Carpeta per defecte de fotos pujades" -#: ../../Zotlabs/Module/Settings.php:1215 -#: ../../Zotlabs/Module/Settings.php:1216 +#: ../../Zotlabs/Module/Settings.php:1120 +#: ../../Zotlabs/Module/Settings.php:1121 msgid "%Y - current year, %m - current month" msgstr "%Y - any en curs, %m - mes corrent" -#: ../../Zotlabs/Module/Settings.php:1216 +#: ../../Zotlabs/Module/Settings.php:1121 msgid "Default file upload folder" msgstr "Carpeta per defecte d'arxius pujats" -#: ../../Zotlabs/Module/Settings.php:1218 +#: ../../Zotlabs/Module/Settings.php:1123 msgid "Personal menu to display in your channel pages" msgstr "Menú personal per mostrar en les teves pàgines de canal" -#: ../../Zotlabs/Module/Settings.php:1220 +#: ../../Zotlabs/Module/Settings.php:1125 msgid "Remove this channel." msgstr "Elimina aquest canal." -#: ../../Zotlabs/Module/Settings.php:1221 +#: ../../Zotlabs/Module/Settings.php:1126 msgid "Firefox Share $Projectname provider" msgstr "Firefox Share $Projectname provider" -#: ../../Zotlabs/Module/Settings.php:1222 +#: ../../Zotlabs/Module/Settings.php:1127 msgid "Start calendar week on monday" msgstr "Comença la setmana del calendari el dilluns" @@ -5828,7 +5517,7 @@ msgid "" msgstr "Podria ser necessari importar el fitxer \"install / schema_xxx.sql\" manualment utilitzant un client de base de dades." #: ../../Zotlabs/Module/Setup.php:204 ../../Zotlabs/Module/Setup.php:266 -#: ../../Zotlabs/Module/Setup.php:722 +#: ../../Zotlabs/Module/Setup.php:721 msgid "Please see the file \"install/INSTALL.txt\"." msgstr "Si us plau, consulteu el fitxer \"install / INSTALL.txt\"." @@ -6028,200 +5717,199 @@ msgid "mb_string PHP module" msgstr "mòdul PHP mb_string" #: ../../Zotlabs/Module/Setup.php:496 +msgid "mcrypt PHP module" +msgstr "mòdul PHP mcrypt" + +#: ../../Zotlabs/Module/Setup.php:497 msgid "xml PHP module" msgstr "Mòdul xml de PHP" -#: ../../Zotlabs/Module/Setup.php:500 ../../Zotlabs/Module/Setup.php:502 +#: ../../Zotlabs/Module/Setup.php:501 ../../Zotlabs/Module/Setup.php:503 msgid "Apache mod_rewrite module" msgstr "mòdul Apache mod_rewrite" -#: ../../Zotlabs/Module/Setup.php:500 +#: ../../Zotlabs/Module/Setup.php:501 msgid "" "Error: Apache webserver mod-rewrite module is required but not installed." msgstr "Error: el mòdul mod-rewrite del servidor web Apache es requereix i no està instal·lat." -#: ../../Zotlabs/Module/Setup.php:506 ../../Zotlabs/Module/Setup.php:509 +#: ../../Zotlabs/Module/Setup.php:507 ../../Zotlabs/Module/Setup.php:510 msgid "proc_open" msgstr "proc_open" -#: ../../Zotlabs/Module/Setup.php:506 +#: ../../Zotlabs/Module/Setup.php:507 msgid "" "Error: proc_open is required but is either not installed or has been " "disabled in php.ini" msgstr "Error: es requereix proc_open però o no està instal·lat o ha estat desactivat a php.ini" -#: ../../Zotlabs/Module/Setup.php:514 +#: ../../Zotlabs/Module/Setup.php:515 msgid "Error: libCURL PHP module required but not installed." msgstr "Error: el mòdul PHP libCURL es requereix però no està instal·lat." -#: ../../Zotlabs/Module/Setup.php:518 +#: ../../Zotlabs/Module/Setup.php:519 msgid "" "Error: GD graphics PHP module with JPEG support required but not installed." msgstr "Error: el mòdul PHP GD graphics amb support JPEG es requereix però no està instal·lat." -#: ../../Zotlabs/Module/Setup.php:522 +#: ../../Zotlabs/Module/Setup.php:523 msgid "Error: openssl PHP module required but not installed." msgstr "Error: el mòdul PHP openssl es requereix però no està instal·lat." -#: ../../Zotlabs/Module/Setup.php:526 +#: ../../Zotlabs/Module/Setup.php:527 msgid "" "Error: mysqli or postgres PHP module required but neither are installed." msgstr "Error: el mòdul PHO mysqli o postgres es requereix però no està instal·lat." -#: ../../Zotlabs/Module/Setup.php:530 +#: ../../Zotlabs/Module/Setup.php:531 msgid "Error: mb_string PHP module required but not installed." msgstr "Error: el mòdul PHP mb_string es requereix però no està instal·lat." -#: ../../Zotlabs/Module/Setup.php:534 +#: ../../Zotlabs/Module/Setup.php:535 +msgid "Error: mcrypt PHP module required but not installed." +msgstr "Error: el mòdul PHP mcrypt es requereix però no està instal·lat." + +#: ../../Zotlabs/Module/Setup.php:539 msgid "Error: xml PHP module required for DAV but not installed." msgstr "Error: el mòdul xml de PHP es requereix per DAV però no està instal·lat." -#: ../../Zotlabs/Module/Setup.php:552 +#: ../../Zotlabs/Module/Setup.php:557 msgid "" "The web installer needs to be able to create a file called \".htconfig.php\"" " in the top folder of your web server and it is unable to do so." msgstr "L'instaŀlador ha de poder crear i modificar un fitxer anomenat «.htconfig.php» a la carpeta arrel del servidor, però sembla que no ho pot fer." -#: ../../Zotlabs/Module/Setup.php:553 +#: ../../Zotlabs/Module/Setup.php:558 msgid "" "This is most often a permission setting, as the web server may not be able " "to write files in your folder - even if you can." msgstr "Això sol ser un problema de permisos. Per molt que el teu usuari pugui modificar-lo, és el del servidor web qui necessita els poders de modificació." -#: ../../Zotlabs/Module/Setup.php:554 +#: ../../Zotlabs/Module/Setup.php:559 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 "Al final d'aquest procés hauràs de desar un text a l'arxiu «.htconfig.php», que es troba a la carpeta arrel del servidor." -#: ../../Zotlabs/Module/Setup.php:555 +#: ../../Zotlabs/Module/Setup.php:560 msgid "" "You can alternatively skip this procedure and perform a manual installation." " Please see the file \"install/INSTALL.txt\" for instructions." msgstr "Aquest procés és opcional. Per a fer una instaŀlació manual consulta les instruccions a «install/INSTALL.txt\"." -#: ../../Zotlabs/Module/Setup.php:558 +#: ../../Zotlabs/Module/Setup.php:563 msgid ".htconfig.php is writable" msgstr "L'arxiu «.htconfig.php» es pot modificar" -#: ../../Zotlabs/Module/Setup.php:572 +#: ../../Zotlabs/Module/Setup.php:577 msgid "" "Red uses the Smarty3 template engine to render its web views. Smarty3 " "compiles templates to PHP to speed up rendering." msgstr "Red fa servir el motor de plantilles Smarty3 per a renderitzar les vistes més ràpidament." -#: ../../Zotlabs/Module/Setup.php:573 +#: ../../Zotlabs/Module/Setup.php:578 #, php-format msgid "" "In order to store these compiled templates, the web server needs to have " "write access to the directory %s under the top level web folder." msgstr "Per tal de guardar aquestes plantilles compilades, el servidor web necessita tenir premis d'escriptura en el directori %s sota la carpeta principal." -#: ../../Zotlabs/Module/Setup.php:574 ../../Zotlabs/Module/Setup.php:595 +#: ../../Zotlabs/Module/Setup.php:579 ../../Zotlabs/Module/Setup.php:600 msgid "" "Please ensure that the user that your web server runs as (e.g. www-data) has" " write access to this folder." msgstr "Comprova que l'usuari que executa el servidor (www-data en Apache) té permisos d'escriptura en aquesta carpeta." -#: ../../Zotlabs/Module/Setup.php:575 +#: ../../Zotlabs/Module/Setup.php:580 #, 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 "Nota: com a mesura de seguretat l'usuari del servidor web ha de tenir accés d'escriptura només a %s, i no a les plantilles (.tpl) que conté." -#: ../../Zotlabs/Module/Setup.php:578 +#: ../../Zotlabs/Module/Setup.php:583 #, php-format msgid "%s is writable" msgstr "Es pot escriure a %s" -#: ../../Zotlabs/Module/Setup.php:594 +#: ../../Zotlabs/Module/Setup.php:599 msgid "" -"This software 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 "" +"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 "Red fa servir la carpeta «store» per a desar els fitxers pujats. Per tant, el servidor web necessita tenir permís d'escriptura en aquesta carpeta, que està a l'arrel del servidor web." -#: ../../Zotlabs/Module/Setup.php:598 +#: ../../Zotlabs/Module/Setup.php:603 msgid "store is writable" msgstr "Es pot escriure al magatzem (store)" -#: ../../Zotlabs/Module/Setup.php:631 +#: ../../Zotlabs/Module/Setup.php:636 msgid "" "SSL certificate cannot be validated. Fix certificate or disable https access" " to this site." msgstr "El certificat SSL no s'ha pogut validar. Arregla-ho o deshabilita l'accés https a aquest lloc" -#: ../../Zotlabs/Module/Setup.php:632 +#: ../../Zotlabs/Module/Setup.php:637 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 "Si tens accès pet https al teu lloc web o permets connexions pel port TCP 443 (port https), Has d'emprar un certificat VÀLID. NO es poden emprar certificats AUTO-SIGNATS!" -#: ../../Zotlabs/Module/Setup.php:633 +#: ../../Zotlabs/Module/Setup.php:638 msgid "" "This restriction is incorporated because public posts from you may for " "example contain references to images on your own hub." msgstr "El motiu d'aquesta restricció és que les teves entrades públiques poden contenir referències a imatges del teu propi node." -#: ../../Zotlabs/Module/Setup.php:634 +#: ../../Zotlabs/Module/Setup.php:639 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." msgstr "Si el teu certificat no és reconegut, llavors el membres d'altres hubs, encara que tinguin certificats vàlids, rebran una advertència de seguretat en carregar contingut teu." -#: ../../Zotlabs/Module/Setup.php:635 +#: ../../Zotlabs/Module/Setup.php:640 msgid "" "This can cause usability issues elsewhere (not just on your own site) so we " "must insist on this requirement." msgstr "Per tant, com que perjudica la usabilitat més enllà del teu lloc, la restricció de tenir un certificat reconegut és molt important." -#: ../../Zotlabs/Module/Setup.php:636 +#: ../../Zotlabs/Module/Setup.php:641 msgid "" "Providers are available that issue free certificates which are browser-" "valid." msgstr "Hi ha autoritats de certificació reconegudes que ofereixen certificats gratuïts." -#: ../../Zotlabs/Module/Setup.php:638 -msgid "" -"If you are confident that the certificate is valid and signed by a trusted " -"authority, check to see if you have failed to install an intermediate cert. " -"These are not normally required by browsers, but are required for server-to-" -"server communications." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:641 +#: ../../Zotlabs/Module/Setup.php:643 msgid "SSL certificate validation" msgstr "Validació del certificat SSL" -#: ../../Zotlabs/Module/Setup.php:647 +#: ../../Zotlabs/Module/Setup.php:649 msgid "" "Url rewrite in .htaccess is not working. Check your server " "configuration.Test: " msgstr "No es poden reescriure les URL a «.htaccess». Comprova la configuració del servidor:" -#: ../../Zotlabs/Module/Setup.php:650 +#: ../../Zotlabs/Module/Setup.php:652 msgid "Url rewrite is working" msgstr "Es poden reescriure les URL a «.htaccess»" -#: ../../Zotlabs/Module/Setup.php:659 +#: ../../Zotlabs/Module/Setup.php:661 msgid "" "The database configuration file \".htconfig.php\" could not be written. " "Please use the enclosed text to create a configuration file in your web " "server root." msgstr "L'arxiu de configuracio de la base de dades «.htconfig.php» no s'ha pogut modificar. El pots crear tu a l'arrel del servidor web amb el text de la caixa com a contingut." -#: ../../Zotlabs/Module/Setup.php:683 +#: ../../Zotlabs/Module/Setup.php:685 msgid "Errors encountered creating database tables." msgstr "S'han produït errors mentre es creaven taules a la base de dades." -#: ../../Zotlabs/Module/Setup.php:720 +#: ../../Zotlabs/Module/Setup.php:719 msgid "

What next

" msgstr "

I ara què?

" -#: ../../Zotlabs/Module/Setup.php:721 +#: ../../Zotlabs/Module/Setup.php:720 msgid "" "IMPORTANT: You will need to [manually] setup a scheduled task for the " "poller." @@ -6243,62 +5931,64 @@ msgstr "Esborra tots els arxius" msgid "Remove this file" msgstr "Esborra l'arxiu" -#: ../../Zotlabs/Module/Thing.php:114 -msgid "Thing updated" -msgstr "S'ha actualitzat la cosa" - -#: ../../Zotlabs/Module/Thing.php:166 -msgid "Object store: failed" -msgstr "No s'ha pogut emmagatzemar l'objecte" - -#: ../../Zotlabs/Module/Thing.php:170 -msgid "Thing added" -msgstr "S'ha afegit la cosa" - -#: ../../Zotlabs/Module/Thing.php:196 +#: ../../Zotlabs/Module/Siteinfo.php:19 #, php-format -msgid "OBJ: %1$s %2$s %3$s" -msgstr "OBJ: %1$s %2$s %3$s" +msgid "Version %s" +msgstr "Versió %s" -#: ../../Zotlabs/Module/Thing.php:259 -msgid "Show Thing" -msgstr "Mostra la cosa" +#: ../../Zotlabs/Module/Siteinfo.php:40 +msgid "Installed plugins/addons/apps:" +msgstr "Plugins/addons/apps Instal·lats:" -#: ../../Zotlabs/Module/Thing.php:266 -msgid "item not found." -msgstr "no s'ha trobat l'element." +#: ../../Zotlabs/Module/Siteinfo.php:53 +msgid "No installed plugins/addons/apps" +msgstr "Plugins/addons/apps no instal·lats" -#: ../../Zotlabs/Module/Thing.php:299 -msgid "Edit Thing" -msgstr "Edita la cosa" +#: ../../Zotlabs/Module/Siteinfo.php:66 +msgid "" +"This is a hub of $Projectname - a global cooperative network of " +"decentralized privacy enhanced websites." +msgstr "Aquest és un node de $Projectname, una xarxa cooperativa mundial de llocs web descentralitzats amb gran control de la privacitat." -#: ../../Zotlabs/Module/Thing.php:301 ../../Zotlabs/Module/Thing.php:351 -msgid "Select a profile" -msgstr "Tria un perfil" +#: ../../Zotlabs/Module/Siteinfo.php:68 +msgid "Tag: " +msgstr "Etiqueta:" -#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:354 -msgid "Post an activity" -msgstr "Publica una activitat" +#: ../../Zotlabs/Module/Siteinfo.php:70 +msgid "Last background fetch: " +msgstr "Última actualització en rerefons:" -#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:354 -msgid "Only sends to viewers of the applicable profile" -msgstr "S'envia només a visitants del perfil corresponent" +#: ../../Zotlabs/Module/Siteinfo.php:72 +msgid "Current load average: " +msgstr "Càrrega actual mitja:" -#: ../../Zotlabs/Module/Thing.php:307 ../../Zotlabs/Module/Thing.php:356 -msgid "Name of thing e.g. something" -msgstr "Nom de la cosa. Exemple: patata" +#: ../../Zotlabs/Module/Siteinfo.php:75 +msgid "Running at web location" +msgstr "Correguent en el lloc web" -#: ../../Zotlabs/Module/Thing.php:309 ../../Zotlabs/Module/Thing.php:357 -msgid "URL of thing (optional)" -msgstr "Adreça URL de la cosa (opcional)" +#: ../../Zotlabs/Module/Siteinfo.php:76 +msgid "" +"Please visit hubzilla.org to learn more " +"about $Projectname." +msgstr "Visita hubzilla.org per saber-ne més de $Projectname." -#: ../../Zotlabs/Module/Thing.php:311 ../../Zotlabs/Module/Thing.php:358 -msgid "URL for photo of thing (optional)" -msgstr "Adreça URL de la foto d'una cosa (opcional)" +#: ../../Zotlabs/Module/Siteinfo.php:77 +msgid "Bug reports and issues: please visit" +msgstr "Per informar d'errors o problemes ves a" -#: ../../Zotlabs/Module/Thing.php:349 -msgid "Add Thing to your Profile" -msgstr "Afegeix una cosa al teu perfil" +#: ../../Zotlabs/Module/Siteinfo.php:79 +msgid "$projectname issues" +msgstr "$projectname qüestions" + +#: ../../Zotlabs/Module/Siteinfo.php:80 +msgid "" +"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot " +"com" +msgstr "Per suggerències, felicitacions i altres, envia'ns un mail a «redmatrix» [arroba] librelist [punt] com" + +#: ../../Zotlabs/Module/Siteinfo.php:82 +msgid "Site Administrators" +msgstr "Administradors del lloc" #: ../../Zotlabs/Module/Sources.php:37 msgid "Failed to create source. No channel selected." @@ -6316,8 +6006,8 @@ msgstr "Origen actualitzat." msgid "*" msgstr "*" -#: ../../Zotlabs/Module/Sources.php:96 ../../include/features.php:72 -#: ../../include/widgets.php:639 +#: ../../Zotlabs/Module/Sources.php:96 ../../include/widgets.php:630 +#: ../../include/features.php:71 msgid "Channel Sources" msgstr "Canal Origen" @@ -6393,12 +6083,12 @@ msgstr "No hi ha suggerencies. Si es un lloc nou, espera 24 hores i proba de nou msgid "Ignore/Hide" msgstr "Ignora/Amaga" -#: ../../Zotlabs/Module/Tagger.php:55 ../../include/bbcode.php:263 +#: ../../Zotlabs/Module/Tagger.php:55 ../../include/bbcode.php:256 msgid "post" msgstr "entrada" -#: ../../Zotlabs/Module/Tagger.php:57 ../../include/conversation.php:150 -#: ../../include/text.php:1929 +#: ../../Zotlabs/Module/Tagger.php:57 ../../include/text.php:1948 +#: ../../include/conversation.php:150 msgid "comment" msgstr "comentari" @@ -6419,110 +6109,131 @@ msgstr "Elimina l'etiqueta d'element" msgid "Select a tag to remove: " msgstr "Tria l'etiqueta a eliminar:" -#: ../../Zotlabs/Module/Webpages.php:191 ../../Zotlabs/Lib/Apps.php:218 -#: ../../include/nav.php:106 ../../include/conversation.php:1700 -msgid "Webpages" -msgstr "Pàgines web" +#: ../../Zotlabs/Module/Thing.php:114 +msgid "Thing updated" +msgstr "S'ha actualitzat la cosa" -#: ../../Zotlabs/Module/Webpages.php:202 ../../include/page_widgets.php:44 -msgid "Actions" -msgstr "Accions" +#: ../../Zotlabs/Module/Thing.php:166 +msgid "Object store: failed" +msgstr "No s'ha pogut emmagatzemar l'objecte" -#: ../../Zotlabs/Module/Webpages.php:203 ../../include/page_widgets.php:45 -msgid "Page Link" -msgstr "Enllaç a Pàgina" +#: ../../Zotlabs/Module/Thing.php:170 +msgid "Thing added" +msgstr "S'ha afegit la cosa" -#: ../../Zotlabs/Module/Webpages.php:204 -msgid "Page Title" -msgstr "Títol de la pàgina" +#: ../../Zotlabs/Module/Thing.php:196 +#, php-format +msgid "OBJ: %1$s %2$s %3$s" +msgstr "OBJ: %1$s %2$s %3$s" -#: ../../Zotlabs/Module/Wiki.php:34 -msgid "Not found" -msgstr "" +#: ../../Zotlabs/Module/Thing.php:259 +msgid "Show Thing" +msgstr "Mostra la cosa" -#: ../../Zotlabs/Module/Wiki.php:92 ../../Zotlabs/Lib/Apps.php:219 -#: ../../include/nav.php:108 ../../include/conversation.php:1710 -#: ../../include/conversation.php:1713 ../../include/features.php:55 -msgid "Wiki" -msgstr "Wiki" +#: ../../Zotlabs/Module/Thing.php:266 +msgid "item not found." +msgstr "no s'ha trobat l'element." -#: ../../Zotlabs/Module/Wiki.php:93 -msgid "Sandbox" -msgstr "Sandbox" +#: ../../Zotlabs/Module/Thing.php:299 +msgid "Edit Thing" +msgstr "Edita la cosa" -#: ../../Zotlabs/Module/Wiki.php:95 +#: ../../Zotlabs/Module/Thing.php:301 ../../Zotlabs/Module/Thing.php:351 +msgid "Select a profile" +msgstr "Tria un perfil" + +#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:354 +msgid "Post an activity" +msgstr "Publica una activitat" + +#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:354 +msgid "Only sends to viewers of the applicable profile" +msgstr "S'envia només a visitants del perfil corresponent" + +#: ../../Zotlabs/Module/Thing.php:307 ../../Zotlabs/Module/Thing.php:356 +msgid "Name of thing e.g. something" +msgstr "Nom de la cosa. Exemple: patata" + +#: ../../Zotlabs/Module/Thing.php:309 ../../Zotlabs/Module/Thing.php:357 +msgid "URL of thing (optional)" +msgstr "Adreça URL de la cosa (opcional)" + +#: ../../Zotlabs/Module/Thing.php:311 ../../Zotlabs/Module/Thing.php:358 +msgid "URL for photo of thing (optional)" +msgstr "Adreça URL de la foto d'una cosa (opcional)" + +#: ../../Zotlabs/Module/Thing.php:349 +msgid "Add Thing to your Profile" +msgstr "Afegeix una cosa al teu perfil" + +#: ../../Zotlabs/Module/Uexport.php:55 ../../Zotlabs/Module/Uexport.php:56 +msgid "Export Channel" +msgstr "Exportar Canal" + +#: ../../Zotlabs/Module/Uexport.php:57 msgid "" -"\"# Wiki Sandbox\\n\\nContent you **edit** and **preview** here *will not be" -" saved*.\"" -msgstr "" +"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 "Exporta la informació bàsica del canal a un arxiu. Això actua com a còpia de recolzament de les teves connexions, permisos, perfil i dades bàsiques, les quals pots emprar per traslladar aquestes dades a una altre lloc/node, però no conté el contingut del canal." -#: ../../Zotlabs/Module/Wiki.php:164 -msgid "Revision Comparison" -msgstr "Comparació de revisió" +#: ../../Zotlabs/Module/Uexport.php:58 +msgid "Export Content" +msgstr "Exportar el Contingut" -#: ../../Zotlabs/Module/Wiki.php:165 -msgid "Revert" -msgstr "Reverteix" +#: ../../Zotlabs/Module/Uexport.php:59 +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 "Exporta la informació del canal i tot el contingut recent a un arxiu de recolzament JSON que por ser restaurat o importat en altre lloc/node. Això còpia totes les teves connexions, permisos, perfil i dades i mesos de entrades. L'arxiu pot ser MOLT gran. Si et plau, sigues pacient ja que pot trigar uns minuts a començar a baixar." -#: ../../Zotlabs/Module/Wiki.php:192 -msgid "Enter the name of your new wiki:" -msgstr "Escriu el nom del teu nou wiki:" +#: ../../Zotlabs/Module/Uexport.php:60 +msgid "Export your posts from a given year." +msgstr "Exporta les teves entrades d'un any donat." -#: ../../Zotlabs/Module/Wiki.php:193 -msgid "Enter the name of the new page:" -msgstr "Escriu el nom de la teva nova pàgina:" +#: ../../Zotlabs/Module/Uexport.php:62 +msgid "" +"You may also export your posts and conversations for a particular year or " +"month. Adjust the date in your browser location bar to select other dates. " +"If the export fails (possibly due to memory exhaustion on your server hub), " +"please try again selecting a more limited date range." +msgstr "Pots també exportar les teves entrades i conversacions d'un any o un mes en particular. Ajusta la data a la barra de direccions del navegador per seleccionar altres dates. Si la exportació falla (possiblement degut al esgotament de la memòria del node servidor), si et plau, intenta de nou la selecció d'un rang de dates més limitat." -#: ../../Zotlabs/Module/Wiki.php:194 -msgid "Enter the new name:" -msgstr "Escriu el nou nom:" +#: ../../Zotlabs/Module/Uexport.php:63 +#, php-format +msgid "" +"To select all posts for a given year, such as this year, visit %2$s" +msgstr "Per seleccionar tots els missatges per a un any determinat, com aquest any, visiteu %2$s" -#: ../../Zotlabs/Module/Wiki.php:200 ../../include/conversation.php:1150 -msgid "Embed image from photo albums" -msgstr "Embeu una imatge dels àlbums de fotos" +#: ../../Zotlabs/Module/Uexport.php:64 +#, php-format +msgid "" +"To select all posts for a given month, such as January of this year, visit " +"%2$s" +msgstr "Per seleccionar tots els missatges per a un mes determinat, com el de gener d'aquest any, visiteu %2$s" -#: ../../Zotlabs/Module/Wiki.php:201 ../../include/conversation.php:1234 -msgid "Embed an image from your albums" -msgstr "Embeu una imatge dels teus àlbums" +#: ../../Zotlabs/Module/Uexport.php:65 +#, php-format +msgid "" +"These content files may be imported or restored by visiting %2$s on any site containing your channel. For best results" +" please import or restore these in date order (oldest first)." +msgstr "Aquests arxius de contingut poden ser importats o restaurats per visitar %2$s en qualsevol lloc que conté el teu canal. Per obtenir els millors resultats si us plau, importar o restaurar aquests en ordre de data (la més antiga primer)." -#: ../../Zotlabs/Module/Wiki.php:203 ../../include/conversation.php:1236 -#: ../../include/conversation.php:1273 -msgid "OK" -msgstr "OK" - -#: ../../Zotlabs/Module/Wiki.php:204 ../../include/conversation.php:1186 -msgid "Choose images to embed" -msgstr "Tria una imatge per a embeure-la" - -#: ../../Zotlabs/Module/Wiki.php:205 ../../include/conversation.php:1187 -msgid "Choose an album" -msgstr "Tria un àlbum" - -#: ../../Zotlabs/Module/Wiki.php:206 ../../include/conversation.php:1188 -msgid "Choose a different album..." -msgstr "Tria un àlbum diferent..." - -#: ../../Zotlabs/Module/Wiki.php:207 ../../include/conversation.php:1189 -msgid "Error getting album list" -msgstr "Ha ocorregut un error quan treia la llista de àlbums" - -#: ../../Zotlabs/Module/Wiki.php:208 ../../include/conversation.php:1190 -msgid "Error getting photo link" -msgstr "Ha ocorregut un error quan treia l'enllaç a la foto" - -#: ../../Zotlabs/Module/Wiki.php:209 ../../include/conversation.php:1191 -msgid "Error getting album" -msgstr "Ha ocorregut un error treient l'àlbum" - -#: ../../Zotlabs/Module/Viewconnections.php:65 +#: ../../Zotlabs/Module/Viewconnections.php:62 msgid "No connections." msgstr "Sense connexions." -#: ../../Zotlabs/Module/Viewconnections.php:78 +#: ../../Zotlabs/Module/Viewconnections.php:75 #, php-format msgid "Visit %s's profile [%s]" msgstr "Visita el perfil [%s] de %s" -#: ../../Zotlabs/Module/Viewconnections.php:107 +#: ../../Zotlabs/Module/Viewconnections.php:104 msgid "View Connections" msgstr "Veure Connexions" @@ -6530,23 +6241,22 @@ msgstr "Veure Connexions" msgid "Source of Item" msgstr "Origen de l'article" -#: ../../Zotlabs/Module/Api.php:61 ../../Zotlabs/Module/Api.php:85 -msgid "Authorize application connection" -msgstr "Autoritza la connexió de l'aplicació" +#: ../../Zotlabs/Module/Webpages.php:184 ../../Zotlabs/Lib/Apps.php:217 +#: ../../include/nav.php:106 ../../include/conversation.php:1685 +msgid "Webpages" +msgstr "Pàgines web" -#: ../../Zotlabs/Module/Api.php:62 -msgid "Return to your app and insert this Securty Code:" -msgstr "Torna a la teva aplicació i insereix aquest Codi de Seguretat:" +#: ../../Zotlabs/Module/Webpages.php:195 ../../include/page_widgets.php:41 +msgid "Actions" +msgstr "Accions" -#: ../../Zotlabs/Module/Api.php:72 -msgid "Please login to continue." -msgstr "Si et plau, identifica't per continuar." +#: ../../Zotlabs/Module/Webpages.php:196 ../../include/page_widgets.php:42 +msgid "Page Link" +msgstr "Enllaç a Pàgina" -#: ../../Zotlabs/Module/Api.php:87 -msgid "" -"Do you want to authorize this application to access your posts and contacts," -" and/or create new posts for you?" -msgstr "Vols autoritzar a aquesta aplicació l'accés a les teves entrades i contactes i/o a crear noves entrades com si fos tu mateix." +#: ../../Zotlabs/Module/Webpages.php:197 +msgid "Page Title" +msgstr "Títol de la pàgina" #: ../../Zotlabs/Module/Xchan.php:10 msgid "Xchan Lookup" @@ -6556,6 +6266,92 @@ msgstr "Cerca a xchan" msgid "Lookup xchan beginning with (or webbie): " msgstr "Cerca a xchan començant per (o webbie)" +#: ../../Zotlabs/Lib/Apps.php:204 +msgid "Site Admin" +msgstr "Administració" + +#: ../../Zotlabs/Lib/Apps.php:205 +msgid "Bug Report" +msgstr "Informe d'Errors" + +#: ../../Zotlabs/Lib/Apps.php:206 +msgid "View Bookmarks" +msgstr "Veure Marcadors" + +#: ../../Zotlabs/Lib/Apps.php:207 +msgid "My Chatrooms" +msgstr "Les meves Sales de Xat" + +#: ../../Zotlabs/Lib/Apps.php:209 +msgid "Firefox Share" +msgstr "Compartir amb Firefox" + +#: ../../Zotlabs/Lib/Apps.php:210 +msgid "Remote Diagnostics" +msgstr "Diagnòstics Remots" + +#: ../../Zotlabs/Lib/Apps.php:211 ../../include/features.php:89 +msgid "Suggest Channels" +msgstr "Suggerir Canals" + +#: ../../Zotlabs/Lib/Apps.php:212 ../../include/nav.php:110 +#: ../../boot.php:1703 +msgid "Login" +msgstr "Identifica't" + +#: ../../Zotlabs/Lib/Apps.php:214 ../../include/nav.php:179 +msgid "Grid" +msgstr "Malla" + +#: ../../Zotlabs/Lib/Apps.php:218 ../../include/nav.php:182 +msgid "Channel Home" +msgstr "Canal Personal" + +#: ../../Zotlabs/Lib/Apps.php:221 ../../include/nav.php:201 +#: ../../include/conversation.php:1649 ../../include/conversation.php:1652 +msgid "Events" +msgstr "Esdeveniments" + +#: ../../Zotlabs/Lib/Apps.php:222 ../../include/nav.php:167 +msgid "Directory" +msgstr "Directori" + +#: ../../Zotlabs/Lib/Apps.php:224 ../../include/nav.php:193 +msgid "Mail" +msgstr "Correu" + +#: ../../Zotlabs/Lib/Apps.php:227 ../../include/nav.php:96 +msgid "Chat" +msgstr "Xerrar" + +#: ../../Zotlabs/Lib/Apps.php:229 +msgid "Probe" +msgstr "Sondeig" + +#: ../../Zotlabs/Lib/Apps.php:230 +msgid "Suggest" +msgstr "Suggeriment" + +#: ../../Zotlabs/Lib/Apps.php:231 +msgid "Random Channel" +msgstr "Canal Aleatori" + +#: ../../Zotlabs/Lib/Apps.php:232 +msgid "Invite" +msgstr "Convida" + +#: ../../Zotlabs/Lib/Apps.php:233 ../../include/widgets.php:1386 +msgid "Features" +msgstr "Funcionalitats" + +#: ../../Zotlabs/Lib/Apps.php:235 +msgid "Post" +msgstr "Entrada" + +#: ../../Zotlabs/Lib/Apps.php:335 +msgid "Purchase" +msgstr "Compra" + #: ../../Zotlabs/Lib/Chatroom.php:27 msgid "Missing room name" msgstr "Perdut el nom de la sala" @@ -6576,19 +6372,19 @@ msgstr "Sala no trobada." msgid "Room is full" msgstr "La sala es plena" -#: ../../Zotlabs/Lib/Enotify.php:60 ../../include/network.php:1882 +#: ../../Zotlabs/Lib/Enotify.php:60 ../../include/network.php:1823 msgid "$Projectname Notification" msgstr "Notificació de $Projectname" -#: ../../Zotlabs/Lib/Enotify.php:61 ../../include/network.php:1883 +#: ../../Zotlabs/Lib/Enotify.php:61 ../../include/network.php:1824 msgid "$projectname" msgstr "$projectname" -#: ../../Zotlabs/Lib/Enotify.php:63 ../../include/network.php:1885 +#: ../../Zotlabs/Lib/Enotify.php:63 ../../include/network.php:1826 msgid "Thank You," msgstr "Gràcies," -#: ../../Zotlabs/Lib/Enotify.php:65 ../../include/network.php:1887 +#: ../../Zotlabs/Lib/Enotify.php:65 ../../include/network.php:1828 #, php-format msgid "%s Administrator" msgstr "%s Administrador" @@ -6781,97 +6577,11 @@ msgstr "Creada una nova entrada" msgid "commented on %s's post" msgstr "comentat a l'entrada de %s" -#: ../../Zotlabs/Lib/Apps.php:205 -msgid "Site Admin" -msgstr "Administració" - -#: ../../Zotlabs/Lib/Apps.php:206 -msgid "Bug Report" -msgstr "Informe d'Errors" - -#: ../../Zotlabs/Lib/Apps.php:207 -msgid "View Bookmarks" -msgstr "Veure Marcadors" - -#: ../../Zotlabs/Lib/Apps.php:208 -msgid "My Chatrooms" -msgstr "Les meves Sales de Xat" - -#: ../../Zotlabs/Lib/Apps.php:210 -msgid "Firefox Share" -msgstr "Compartir amb Firefox" - -#: ../../Zotlabs/Lib/Apps.php:211 -msgid "Remote Diagnostics" -msgstr "Diagnòstics Remots" - -#: ../../Zotlabs/Lib/Apps.php:212 ../../include/features.php:90 -msgid "Suggest Channels" -msgstr "Suggerir Canals" - -#: ../../Zotlabs/Lib/Apps.php:213 ../../include/nav.php:112 -#: ../../boot.php:1704 -msgid "Login" -msgstr "Identifica't" - -#: ../../Zotlabs/Lib/Apps.php:215 ../../include/nav.php:181 -msgid "Grid" -msgstr "Malla" - -#: ../../Zotlabs/Lib/Apps.php:220 ../../include/nav.php:184 -msgid "Channel Home" -msgstr "Canal Personal" - -#: ../../Zotlabs/Lib/Apps.php:223 ../../include/nav.php:203 -#: ../../include/conversation.php:1664 ../../include/conversation.php:1667 -msgid "Events" -msgstr "Esdeveniments" - -#: ../../Zotlabs/Lib/Apps.php:224 ../../include/nav.php:169 -msgid "Directory" -msgstr "Directori" - -#: ../../Zotlabs/Lib/Apps.php:226 ../../include/nav.php:195 -msgid "Mail" -msgstr "Correu" - -#: ../../Zotlabs/Lib/Apps.php:229 ../../include/nav.php:96 -msgid "Chat" -msgstr "Xerrar" - -#: ../../Zotlabs/Lib/Apps.php:231 -msgid "Probe" -msgstr "Sondeig" - -#: ../../Zotlabs/Lib/Apps.php:232 -msgid "Suggest" -msgstr "Suggeriment" - -#: ../../Zotlabs/Lib/Apps.php:233 -msgid "Random Channel" -msgstr "Canal Aleatori" - -#: ../../Zotlabs/Lib/Apps.php:234 -msgid "Invite" -msgstr "Convida" - -#: ../../Zotlabs/Lib/Apps.php:235 ../../include/widgets.php:1480 -msgid "Features" -msgstr "Funcionalitats" - -#: ../../Zotlabs/Lib/Apps.php:237 -msgid "Post" -msgstr "Entrada" - -#: ../../Zotlabs/Lib/Apps.php:339 -msgid "Purchase" -msgstr "Compra" - -#: ../../Zotlabs/Lib/ThreadItem.php:95 ../../include/conversation.php:667 +#: ../../Zotlabs/Lib/ThreadItem.php:95 ../../include/conversation.php:664 msgid "Private Message" msgstr "Missatge Privat" -#: ../../Zotlabs/Lib/ThreadItem.php:132 ../../include/conversation.php:659 +#: ../../Zotlabs/Lib/ThreadItem.php:132 ../../include/conversation.php:656 msgid "Select" msgstr "Selecciona" @@ -6919,11 +6629,11 @@ msgstr "Canvia el Estat de la Preferència" msgid "starred" msgstr "preferit" -#: ../../Zotlabs/Lib/ThreadItem.php:234 ../../include/conversation.php:674 +#: ../../Zotlabs/Lib/ThreadItem.php:234 ../../include/conversation.php:671 msgid "Message signature validated" msgstr "Validada la signatura del missatge" -#: ../../Zotlabs/Lib/ThreadItem.php:235 ../../include/conversation.php:675 +#: ../../Zotlabs/Lib/ThreadItem.php:235 ../../include/conversation.php:672 msgid "Message signature incorrect" msgstr "Signatura del missatge incorrecta" @@ -6979,17 +6689,17 @@ msgstr "Mur-a-Mur" msgid "via Wall-To-Wall:" msgstr "via Mur-a-Mur:" -#: ../../Zotlabs/Lib/ThreadItem.php:341 ../../include/conversation.php:722 +#: ../../Zotlabs/Lib/ThreadItem.php:341 ../../include/conversation.php:719 #, php-format msgid "from %s" msgstr "De %s" -#: ../../Zotlabs/Lib/ThreadItem.php:344 ../../include/conversation.php:725 +#: ../../Zotlabs/Lib/ThreadItem.php:344 ../../include/conversation.php:722 #, php-format msgid "last edited: %s" msgstr "últim editat: %s" -#: ../../Zotlabs/Lib/ThreadItem.php:345 ../../include/conversation.php:726 +#: ../../Zotlabs/Lib/ThreadItem.php:345 ../../include/conversation.php:723 #, php-format msgid "Expires: %s" msgstr "Expira: %s" @@ -7007,27 +6717,26 @@ msgid "Mark all seen" msgstr "Marca tot com ja vist" #: ../../Zotlabs/Lib/ThreadItem.php:421 ../../include/js_strings.php:7 -#, php-format -msgid "%s show all" -msgstr "" +msgid "[+] show all" +msgstr "[+] mostra tot" -#: ../../Zotlabs/Lib/ThreadItem.php:711 ../../include/conversation.php:1226 +#: ../../Zotlabs/Lib/ThreadItem.php:711 ../../include/conversation.php:1215 msgid "Bold" msgstr "Negreta" -#: ../../Zotlabs/Lib/ThreadItem.php:712 ../../include/conversation.php:1227 +#: ../../Zotlabs/Lib/ThreadItem.php:712 ../../include/conversation.php:1216 msgid "Italic" msgstr "Italica" -#: ../../Zotlabs/Lib/ThreadItem.php:713 ../../include/conversation.php:1228 +#: ../../Zotlabs/Lib/ThreadItem.php:713 ../../include/conversation.php:1217 msgid "Underline" msgstr "Subratllat" -#: ../../Zotlabs/Lib/ThreadItem.php:714 ../../include/conversation.php:1229 +#: ../../Zotlabs/Lib/ThreadItem.php:714 ../../include/conversation.php:1218 msgid "Quote" msgstr "Cometes" -#: ../../Zotlabs/Lib/ThreadItem.php:715 ../../include/conversation.php:1230 +#: ../../Zotlabs/Lib/ThreadItem.php:715 ../../include/conversation.php:1219 msgid "Code" msgstr "Codi" @@ -7043,74 +6752,11 @@ msgstr "Insereix Enllaç" msgid "Video" msgstr "Video" -#: ../../Zotlabs/Lib/PermissionDescription.php:31 -#: ../../include/acl_selectors.php:230 -msgid "Visible to your default audience" -msgstr "Visible per a la teva audiència " - -#: ../../Zotlabs/Lib/PermissionDescription.php:106 -#: ../../include/acl_selectors.php:266 -msgid "Only me" -msgstr "Només jo" - -#: ../../Zotlabs/Lib/PermissionDescription.php:107 -msgid "Public" -msgstr "Públic" - -#: ../../Zotlabs/Lib/PermissionDescription.php:108 -msgid "Anybody in the $Projectname network" -msgstr "Ningú a la xarxa $Projectname" - -#: ../../Zotlabs/Lib/PermissionDescription.php:109 -#, php-format -msgid "Any account on %s" -msgstr "Qualsevol compte a %s" - -#: ../../Zotlabs/Lib/PermissionDescription.php:110 -msgid "Any of my connections" -msgstr "Qualsevol de les meves connexions" - -#: ../../Zotlabs/Lib/PermissionDescription.php:111 -msgid "Only connections I specifically allow" -msgstr "Només les connexions que permeto específicament" - -#: ../../Zotlabs/Lib/PermissionDescription.php:112 -msgid "Anybody authenticated (could include visitors from other networks)" -msgstr "Qualsevol persona autenticada (podria incloure als usuaris d'altres xarxes)" - -#: ../../Zotlabs/Lib/PermissionDescription.php:113 -msgid "Any connections including those who haven't yet been approved" -msgstr "Qualsevol connexió incloent aquells que encara no han estat aprovats" - -#: ../../Zotlabs/Lib/PermissionDescription.php:152 -msgid "" -"This is your default setting for the audience of your normal stream, and " -"posts." -msgstr "Aquest és l'ajust per defecte per al públic del seu flux normal i entrades." - -#: ../../Zotlabs/Lib/PermissionDescription.php:153 -msgid "" -"This is your default setting for who can view your default channel profile" -msgstr "Aquesta és la configuració per defecte per a qui pugui veure el teu perfil per defecte del canal" - -#: ../../Zotlabs/Lib/PermissionDescription.php:154 -msgid "This is your default setting for who can view your connections" -msgstr "Aquesta és la configuració per defecte per a qui pugui veure les teves connexions" - -#: ../../Zotlabs/Lib/PermissionDescription.php:155 -msgid "" -"This is your default setting for who can view your file storage and photos" -msgstr "Aquesta és la configuració per defecte per a qui pugui veure els teus arxius i fotos" - -#: ../../Zotlabs/Lib/PermissionDescription.php:156 -msgid "This is your default setting for the audience of your webpages" -msgstr "Aquests son els ajustos per defecte de l'audiència de les teves pàgines web" - #: ../../include/Import/import_diaspora.php:16 msgid "No username found in import file." msgstr "No s'ha trobat nom d'usuari a l'arxiu d'importació." -#: ../../include/Import/import_diaspora.php:41 ../../include/import.php:51 +#: ../../include/Import/import_diaspora.php:41 ../../include/import.php:50 msgid "Unable to create a unique channel address. Import failed." msgstr "No s'ha pogut importar el canal perquè l'adreça única de canal no s'ha pogut crear." @@ -7119,291 +6765,6 @@ msgstr "No s'ha pogut importar el canal perquè l'adreça única de canal no s'h msgid "Cannot locate DNS info for database server '%s'" msgstr "No s'ha trobat informació de DNS pel servidor de base de dades '%s'" -#: ../../include/photos.php:114 -#, php-format -msgid "Image exceeds website size limit of %lu bytes" -msgstr "La imatge excedeix la mida limit pel lloc web en %lu bytes" - -#: ../../include/photos.php:121 -msgid "Image file is empty." -msgstr "El fitxer d'imatge esta buit." - -#: ../../include/photos.php:259 -msgid "Photo storage failed." -msgstr "Fracassà l'emmagatzematge de la Foto" - -#: ../../include/photos.php:299 -msgid "a new photo" -msgstr "Una foto nova" - -#: ../../include/photos.php:303 -#, php-format -msgctxt "photo_upload" -msgid "%1$s posted %2$s to %3$s" -msgstr "%1$s enviat %2$s a %3$s" - -#: ../../include/photos.php:506 ../../include/conversation.php:1650 -msgid "Photo Albums" -msgstr "Albums de Fotos" - -#: ../../include/photos.php:510 -msgid "Upload New Photos" -msgstr "Puja Noves Fotos" - -#: ../../include/nav.php:82 ../../include/nav.php:115 ../../boot.php:1703 -msgid "Logout" -msgstr "Desconectar" - -#: ../../include/nav.php:82 ../../include/nav.php:115 -msgid "End this session" -msgstr "Finalitza aquesta sessió" - -#: ../../include/nav.php:85 ../../include/nav.php:146 -msgid "Home" -msgstr "Inici" - -#: ../../include/nav.php:85 -msgid "Your posts and conversations" -msgstr "Les teves entrades i converses" - -#: ../../include/nav.php:86 -msgid "Your profile page" -msgstr "La teva pàgina de perfil" - -#: ../../include/nav.php:88 -msgid "Manage/Edit profiles" -msgstr "Gestiona/Edita perfils" - -#: ../../include/nav.php:90 ../../include/channel.php:980 -msgid "Edit Profile" -msgstr "Edita Perfil" - -#: ../../include/nav.php:90 -msgid "Edit your profile" -msgstr "Edita el teu perfil" - -#: ../../include/nav.php:92 -msgid "Your photos" -msgstr "Les Teves Fotos" - -#: ../../include/nav.php:93 -msgid "Your files" -msgstr "Els teus arxius" - -#: ../../include/nav.php:96 -msgid "Your chatrooms" -msgstr "Les teves sales de xerrar" - -#: ../../include/nav.php:102 ../../include/conversation.php:1690 -msgid "Bookmarks" -msgstr "Marcadors" - -#: ../../include/nav.php:102 -msgid "Your bookmarks" -msgstr "Els teus marcadors" - -#: ../../include/nav.php:106 -msgid "Your webpages" -msgstr "Les teves pàgines web" - -#: ../../include/nav.php:108 -msgid "Your wiki" -msgstr "" - -#: ../../include/nav.php:112 -msgid "Sign in" -msgstr "Signatura" - -#: ../../include/nav.php:129 -#, php-format -msgid "%s - click to logout" -msgstr "%s - click per desconectar" - -#: ../../include/nav.php:132 -msgid "Remote authentication" -msgstr "Autenticació remota" - -#: ../../include/nav.php:132 -msgid "Click to authenticate to your home hub" -msgstr "Clica per autentificar-te en el teu node" - -#: ../../include/nav.php:146 -msgid "Home Page" -msgstr "Pàgina Personal" - -#: ../../include/nav.php:149 -msgid "Create an account" -msgstr "Crear un compte" - -#: ../../include/nav.php:161 -msgid "Help and documentation" -msgstr "Ajuda i documentació" - -#: ../../include/nav.php:165 -msgid "Applications, utilities, links, games" -msgstr "Aplicacions, utilitats, enllaços, jocs" - -#: ../../include/nav.php:167 -msgid "Search site @name, #tag, ?docs, content" -msgstr "Cerca pel lloc @name, #tag, ?docs, contingut" - -#: ../../include/nav.php:169 -msgid "Channel Directory" -msgstr "Directori de Canals" - -#: ../../include/nav.php:181 -msgid "Your grid" -msgstr "La teva malla" - -#: ../../include/nav.php:182 -msgid "Mark all grid notifications seen" -msgstr "Marca totes les notificacions de la malla vistes" - -#: ../../include/nav.php:184 -msgid "Channel home" -msgstr "Canal personal" - -#: ../../include/nav.php:185 -msgid "Mark all channel notifications seen" -msgstr "Marca totes les notificacions de canal vistes" - -#: ../../include/nav.php:191 -msgid "Notices" -msgstr "Noticies" - -#: ../../include/nav.php:191 -msgid "Notifications" -msgstr "Notificacions" - -#: ../../include/nav.php:192 -msgid "See all notifications" -msgstr "Veure totes les Notificacions" - -#: ../../include/nav.php:195 -msgid "Private mail" -msgstr "Correu privat" - -#: ../../include/nav.php:196 -msgid "See all private messages" -msgstr "Veure tots els missatges privats" - -#: ../../include/nav.php:197 -msgid "Mark all private messages seen" -msgstr "Marcar tots els missatges privats vistos" - -#: ../../include/nav.php:198 ../../include/widgets.php:667 -msgid "Inbox" -msgstr "Safata d'entrada" - -#: ../../include/nav.php:199 ../../include/widgets.php:672 -msgid "Outbox" -msgstr "Safata de sortida" - -#: ../../include/nav.php:200 ../../include/widgets.php:677 -msgid "New Message" -msgstr "Nou Missatge" - -#: ../../include/nav.php:203 -msgid "Event Calendar" -msgstr "Calendari d'Events" - -#: ../../include/nav.php:204 -msgid "See all events" -msgstr "Veure tots els esdeveniments" - -#: ../../include/nav.php:205 -msgid "Mark all events seen" -msgstr "Marcar tots els esdeveniments vistos" - -#: ../../include/nav.php:208 -msgid "Manage Your Channels" -msgstr "Gestiona els Teus Canals" - -#: ../../include/nav.php:210 -msgid "Account/Channel Settings" -msgstr "Ajustos de Compte/Canal" - -#: ../../include/nav.php:218 ../../include/widgets.php:1510 -msgid "Admin" -msgstr "Admin" - -#: ../../include/nav.php:218 -msgid "Site Setup and Configuration" -msgstr "Ajustos i Configuració del Lloc" - -#: ../../include/nav.php:249 ../../include/conversation.php:854 -msgid "Loading..." -msgstr "Carregant..." - -#: ../../include/nav.php:254 -msgid "@name, #tag, ?doc, content" -msgstr "@nom, #etiqueta, ?doc, contingut" - -#: ../../include/nav.php:255 -msgid "Please wait..." -msgstr "Si us plau, espera......." - -#: ../../include/network.php:704 -msgid "view full size" -msgstr "Veure a mida competa" - -#: ../../include/network.php:1930 ../../include/account.php:317 -#: ../../include/account.php:344 ../../include/account.php:404 -msgid "Administrator" -msgstr "Administrador" - -#: ../../include/network.php:1944 -msgid "No Subject" -msgstr "Sense Assumpte" - -#: ../../include/network.php:2198 ../../include/network.php:2199 -msgid "Friendica" -msgstr "Friendica" - -#: ../../include/network.php:2200 -msgid "OStatus" -msgstr "OStatus" - -#: ../../include/network.php:2201 -msgid "GNU-Social" -msgstr "GNU-Social" - -#: ../../include/network.php:2202 -msgid "RSS/Atom" -msgstr "RSS/Atom" - -#: ../../include/network.php:2204 -msgid "Diaspora" -msgstr "Diaspora" - -#: ../../include/network.php:2205 -msgid "Facebook" -msgstr "Facebook" - -#: ../../include/network.php:2206 -msgid "Zot" -msgstr "Zot" - -#: ../../include/network.php:2207 -msgid "LinkedIn" -msgstr "LinkedIn" - -#: ../../include/network.php:2208 -msgid "XMPP/IM" -msgstr "XMPP/IM" - -#: ../../include/network.php:2209 -msgid "MySpace" -msgstr "MySpace" - -#: ../../include/page_widgets.php:7 -msgid "New Page" -msgstr "Pàgina Nova" - -#: ../../include/page_widgets.php:46 -msgid "Title" -msgstr "Títol" - #: ../../include/taxonomy.php:188 ../../include/taxonomy.php:270 #: ../../include/widgets.php:46 ../../include/widgets.php:429 #: ../../include/contact_widgets.php:91 @@ -7442,159 +6803,952 @@ msgstr "agrada" msgid "dislikes" msgstr "desagrada" -#: ../../include/channel.php:33 -msgid "Unable to obtain identity information from database" -msgstr "Incapaç de trobar l'informació d'identitat a la base de dades" +#: ../../include/event.php:22 ../../include/event.php:69 +#: ../../include/bb2diaspora.php:485 +msgid "l F d, Y \\@ g:i A" +msgstr "l F d, Y \\@ g:i A" -#: ../../include/channel.php:67 -msgid "Empty name" -msgstr "Nom buit" +#: ../../include/event.php:30 ../../include/event.php:73 +#: ../../include/bb2diaspora.php:491 +msgid "Starts:" +msgstr "Inicia:" -#: ../../include/channel.php:70 -msgid "Name too long" -msgstr "Nom massa llarg" +#: ../../include/event.php:40 ../../include/event.php:77 +#: ../../include/bb2diaspora.php:499 +msgid "Finishes:" +msgstr "Acaba:" -#: ../../include/channel.php:181 -msgid "No account identifier" -msgstr "Sense identificador de compte" +#: ../../include/event.php:812 +msgid "This event has been added to your calendar." +msgstr "Aquest succés ha estat afegit al teu calendari." -#: ../../include/channel.php:193 -msgid "Nickname is required." -msgstr "Alies/malnom es requerit." +#: ../../include/event.php:1012 +msgid "Not specified" +msgstr "Sense especificar" -#: ../../include/channel.php:207 -msgid "Reserved nickname. Please choose another." -msgstr "Àlies reservat. Tria un altre." +#: ../../include/event.php:1013 +msgid "Needs Action" +msgstr "Necessita una Acció" -#: ../../include/channel.php:212 +#: ../../include/event.php:1014 +msgid "Completed" +msgstr "Completat" + +#: ../../include/event.php:1015 +msgid "In Process" +msgstr "En Procès" + +#: ../../include/event.php:1016 +msgid "Cancelled" +msgstr "Cancel·lat" + +#: ../../include/import.php:29 msgid "" -"Nickname has unsupported characters or is already being used on this site." -msgstr "L'álies te caracters no soportats o ja esta en ús en aquest lloc" +"Cannot create a duplicate channel identifier on this system. Import failed." +msgstr "No s'ha pogut importar el canal perquè l'identificador del canal no s'ha pogut duplicar en aquest servidor." -#: ../../include/channel.php:272 -msgid "Unable to retrieve created identity" -msgstr "No es pot recuperar la identitat creada" +#: ../../include/import.php:76 +msgid "Channel clone failed. Import failed." +msgstr "No s'ha pogut importar el canal perquè el canal no s'ha pogut clonar." -#: ../../include/channel.php:341 -msgid "Default Profile" -msgstr "Perfil per Defecte" +#: ../../include/items.php:892 ../../include/items.php:937 +msgid "(Unknown)" +msgstr "(Desconegut)" -#: ../../include/channel.php:830 -msgid "Requested channel is not available." -msgstr "El canal demanat no està disponible." +#: ../../include/items.php:1136 +msgid "Visible to anybody on the internet." +msgstr "Visible per tothom a la Internet" -#: ../../include/channel.php:977 -msgid "Create New Profile" -msgstr "Crear un Perfil Nou" +#: ../../include/items.php:1138 +msgid "Visible to you only." +msgstr "Visible només per tú." -#: ../../include/channel.php:997 -msgid "Visible to everybody" -msgstr "Visible per tothom" +#: ../../include/items.php:1140 +msgid "Visible to anybody in this network." +msgstr "Visible per tothom en aquesta xarxa." -#: ../../include/channel.php:1070 ../../include/channel.php:1182 -msgid "Gender:" -msgstr "Gènere:" +#: ../../include/items.php:1142 +msgid "Visible to anybody authenticated." +msgstr "Visible per tothom autenticat." -#: ../../include/channel.php:1071 ../../include/channel.php:1226 -msgid "Status:" -msgstr "Estatus:" - -#: ../../include/channel.php:1072 ../../include/channel.php:1237 -msgid "Homepage:" -msgstr "Pàgina Personal:" - -#: ../../include/channel.php:1073 -msgid "Online Now" -msgstr "Ara en Linia" - -#: ../../include/channel.php:1187 -msgid "Like this channel" -msgstr "M'agrada aquest canal" - -#: ../../include/channel.php:1211 -msgid "j F, Y" -msgstr "j F, Y" - -#: ../../include/channel.php:1212 -msgid "j F" -msgstr "j F" - -#: ../../include/channel.php:1219 -msgid "Birthday:" -msgstr "Aniversari:" - -#: ../../include/channel.php:1232 +#: ../../include/items.php:1144 #, php-format -msgid "for %1$d %2$s" -msgstr "per %1$d %2$s" +msgid "Visible to anybody on %s." +msgstr "Visible per a tothom a %s." -#: ../../include/channel.php:1235 -msgid "Sexual Preference:" -msgstr "Preferència Sexual:" +#: ../../include/items.php:1146 +msgid "Visible to all connections." +msgstr "Visible per a totes les connexions." -#: ../../include/channel.php:1241 -msgid "Tags:" -msgstr "Etiquetes:" +#: ../../include/items.php:1148 +msgid "Visible to approved connections." +msgstr "Visible per a les connexions aprovades." -#: ../../include/channel.php:1243 -msgid "Political Views:" -msgstr "Idees Polítiques:" +#: ../../include/items.php:1150 +msgid "Visible to specific connections." +msgstr "Visible per a específiques connexions." -#: ../../include/channel.php:1245 -msgid "Religion:" -msgstr "Religió:" +#: ../../include/items.php:3909 +msgid "Privacy group is empty." +msgstr "El grup privat està vuit." -#: ../../include/channel.php:1249 -msgid "Hobbies/Interests:" -msgstr "Aficions/Interessos:" +#: ../../include/items.php:3916 +#, php-format +msgid "Privacy group: %s" +msgstr "Grup privat: %s" -#: ../../include/channel.php:1251 -msgid "Likes:" -msgstr "Agrada:" +#: ../../include/items.php:3928 +msgid "Connection not found." +msgstr "Connexió no trobada." -#: ../../include/channel.php:1253 -msgid "Dislikes:" -msgstr "Desagrada:" +#: ../../include/items.php:4277 +msgid "profile photo" +msgstr "foto del perfil" -#: ../../include/channel.php:1255 -msgid "Contact information and Social Networks:" -msgstr "Informació de contacte i Xarxes Socials:" +#: ../../include/message.php:20 +msgid "No recipient provided." +msgstr "No s'ha proporcionat bústia." -#: ../../include/channel.php:1257 -msgid "My other channels:" -msgstr "Els meus altres canals:" +#: ../../include/message.php:25 +msgid "[no subject]" +msgstr "[no subject]" -#: ../../include/channel.php:1259 -msgid "Musical interests:" -msgstr "Interessos Musicals:" +#: ../../include/message.php:45 +msgid "Unable to determine sender." +msgstr "incapaç de determinar el remitent" -#: ../../include/channel.php:1261 -msgid "Books, literature:" -msgstr "Llibres, literatura:" +#: ../../include/message.php:222 +msgid "Stored post could not be verified." +msgstr "L'entrada guardada no pot ser verificada" -#: ../../include/channel.php:1263 -msgid "Television:" -msgstr "Televisió:" +#: ../../include/text.php:428 +msgid "prev" +msgstr "prev" -#: ../../include/channel.php:1265 -msgid "Film/dance/culture/entertainment:" -msgstr "Películes/Dança/Cultura/Entreteniment:" +#: ../../include/text.php:430 +msgid "first" +msgstr "primer" -#: ../../include/channel.php:1267 -msgid "Love/Romance:" -msgstr "Amor/Romace:" +#: ../../include/text.php:459 +msgid "last" +msgstr "últim" -#: ../../include/channel.php:1269 -msgid "Work/employment:" -msgstr "Treball/feina:" +#: ../../include/text.php:462 +msgid "next" +msgstr "pròxim" -#: ../../include/channel.php:1271 -msgid "School/education:" -msgstr "Escola/educació:" +#: ../../include/text.php:472 +msgid "older" +msgstr "el més antic" -#: ../../include/channel.php:1292 -msgid "Like this thing" -msgstr "M'agrada això" +#: ../../include/text.php:474 +msgid "newer" +msgstr "El més nou" + +#: ../../include/text.php:863 +msgid "No connections" +msgstr "Sense Connexions" + +#: ../../include/text.php:888 +#, php-format +msgid "View all %s connections" +msgstr "Veure totes les connexions de %s" + +#: ../../include/text.php:1033 ../../include/text.php:1038 +msgid "poke" +msgstr "esperona" + +#: ../../include/text.php:1033 ../../include/text.php:1038 +#: ../../include/conversation.php:243 +msgid "poked" +msgstr "esperonat" + +#: ../../include/text.php:1039 +msgid "ping" +msgstr "coloca" + +#: ../../include/text.php:1039 +msgid "pinged" +msgstr "colocat" + +#: ../../include/text.php:1040 +msgid "prod" +msgstr "picar" + +#: ../../include/text.php:1040 +msgid "prodded" +msgstr "picat" + +#: ../../include/text.php:1041 +msgid "slap" +msgstr "bufetada" + +#: ../../include/text.php:1041 +msgid "slapped" +msgstr "bufetejat" + +#: ../../include/text.php:1042 +msgid "finger" +msgstr "senyal" + +#: ../../include/text.php:1042 +msgid "fingered" +msgstr "senyalat" + +#: ../../include/text.php:1043 +msgid "rebuff" +msgstr "menyspreu" + +#: ../../include/text.php:1043 +msgid "rebuffed" +msgstr "menyspreuat" + +#: ../../include/text.php:1055 +msgid "happy" +msgstr "feliç" + +#: ../../include/text.php:1056 +msgid "sad" +msgstr "trist" + +#: ../../include/text.php:1057 +msgid "mellow" +msgstr "melós" + +#: ../../include/text.php:1058 +msgid "tired" +msgstr "cansat" + +#: ../../include/text.php:1059 +msgid "perky" +msgstr "turgent" + +#: ../../include/text.php:1060 +msgid "angry" +msgstr "enfadat" + +#: ../../include/text.php:1061 +msgid "stupefied" +msgstr "estupefacte" + +#: ../../include/text.php:1062 +msgid "puzzled" +msgstr "perplexe" + +#: ../../include/text.php:1063 +msgid "interested" +msgstr "Interessat" + +#: ../../include/text.php:1064 +msgid "bitter" +msgstr "amargat" + +#: ../../include/text.php:1065 +msgid "cheerful" +msgstr "feliç" + +#: ../../include/text.php:1066 +msgid "alive" +msgstr "viu" + +#: ../../include/text.php:1067 +msgid "annoyed" +msgstr "molest" + +#: ../../include/text.php:1068 +msgid "anxious" +msgstr "ansiós" + +#: ../../include/text.php:1069 +msgid "cranky" +msgstr "malagaitós" + +#: ../../include/text.php:1070 +msgid "disturbed" +msgstr "transtornat" + +#: ../../include/text.php:1071 +msgid "frustrated" +msgstr "frustrat" + +#: ../../include/text.php:1072 +msgid "depressed" +msgstr "deprimit" + +#: ../../include/text.php:1073 +msgid "motivated" +msgstr "motivat" + +#: ../../include/text.php:1074 +msgid "relaxed" +msgstr "relaxat" + +#: ../../include/text.php:1075 +msgid "surprised" +msgstr "sorprès" + +#: ../../include/text.php:1257 ../../include/js_strings.php:70 +msgid "Monday" +msgstr "Dilluns" + +#: ../../include/text.php:1257 ../../include/js_strings.php:71 +msgid "Tuesday" +msgstr "Dimarts" + +#: ../../include/text.php:1257 ../../include/js_strings.php:72 +msgid "Wednesday" +msgstr "Dimecres" + +#: ../../include/text.php:1257 ../../include/js_strings.php:73 +msgid "Thursday" +msgstr "Dijous" + +#: ../../include/text.php:1257 ../../include/js_strings.php:74 +msgid "Friday" +msgstr "Divendres" + +#: ../../include/text.php:1257 ../../include/js_strings.php:75 +msgid "Saturday" +msgstr "Dissabte" + +#: ../../include/text.php:1257 ../../include/js_strings.php:69 +msgid "Sunday" +msgstr "Diumenge" + +#: ../../include/text.php:1261 ../../include/js_strings.php:45 +msgid "January" +msgstr "Gener" + +#: ../../include/text.php:1261 ../../include/js_strings.php:46 +msgid "February" +msgstr "Febrer" + +#: ../../include/text.php:1261 ../../include/js_strings.php:47 +msgid "March" +msgstr "Març" + +#: ../../include/text.php:1261 ../../include/js_strings.php:48 +msgid "April" +msgstr "Abril" + +#: ../../include/text.php:1261 +msgid "May" +msgstr "Maig" + +#: ../../include/text.php:1261 ../../include/js_strings.php:50 +msgid "June" +msgstr "Juny" + +#: ../../include/text.php:1261 ../../include/js_strings.php:51 +msgid "July" +msgstr "Juliol" + +#: ../../include/text.php:1261 ../../include/js_strings.php:52 +msgid "August" +msgstr "Agost" + +#: ../../include/text.php:1261 ../../include/js_strings.php:53 +msgid "September" +msgstr "Setembre" + +#: ../../include/text.php:1261 ../../include/js_strings.php:54 +msgid "October" +msgstr "Octubre" + +#: ../../include/text.php:1261 ../../include/js_strings.php:55 +msgid "November" +msgstr "Novembre" + +#: ../../include/text.php:1261 ../../include/js_strings.php:56 +msgid "December" +msgstr "Desembre" + +#: ../../include/text.php:1338 ../../include/text.php:1342 +msgid "Unknown Attachment" +msgstr "Adjunt Desconegut" + +#: ../../include/text.php:1344 +msgid "unknown" +msgstr "desconegut" + +#: ../../include/text.php:1380 +msgid "remove category" +msgstr "elimina categoria" + +#: ../../include/text.php:1457 +msgid "remove from file" +msgstr "elimina del arxiu" + +#: ../../include/text.php:1753 ../../include/text.php:1824 +msgid "default" +msgstr "per defecte" + +#: ../../include/text.php:1761 +msgid "Page layout" +msgstr "Format de la pàgina" + +#: ../../include/text.php:1761 +msgid "You can create your own with the layouts tool" +msgstr "Pots crear el teu propi amb l'editor de format de pàgina." + +#: ../../include/text.php:1803 +msgid "Page content type" +msgstr "Tipus de contingut de la pàgina" + +#: ../../include/text.php:1836 +msgid "Select an alternate language" +msgstr "Tria un idioma alternatiu" + +#: ../../include/text.php:1953 +msgid "activity" +msgstr "activitat" + +#: ../../include/text.php:2262 +msgid "Design Tools" +msgstr "Eines de disseny" + +#: ../../include/text.php:2268 +msgid "Pages" +msgstr "Pàgines" + +#: ../../include/widgets.php:103 +msgid "System" +msgstr "Sistema" + +#: ../../include/widgets.php:106 +msgid "New App" +msgstr "Nova App" + +#: ../../include/widgets.php:154 +msgid "Suggestions" +msgstr "Suggerencies" + +#: ../../include/widgets.php:155 +msgid "See more..." +msgstr "Veure més....." + +#: ../../include/widgets.php:175 +#, php-format +msgid "You have %1$.0f of %2$.0f allowed connections." +msgstr "Tens %1$.0f de %2$.0f connexions permeses." + +#: ../../include/widgets.php:181 +msgid "Add New Connection" +msgstr "Afegeix una Nova Connexió" + +#: ../../include/widgets.php:182 +msgid "Enter channel address" +msgstr "Introdueix l'adreça del canal" + +#: ../../include/widgets.php:183 +msgid "Examples: bob@example.com, https://example.com/barbara" +msgstr "Exemples: bob@example.com, https://exemple.com/barbara" + +#: ../../include/widgets.php:199 +msgid "Notes" +msgstr "Notes" + +#: ../../include/widgets.php:273 +msgid "Remove term" +msgstr "Plaç de remoció" + +#: ../../include/widgets.php:281 ../../include/features.php:84 +msgid "Saved Searches" +msgstr "Cerques Guardades" + +#: ../../include/widgets.php:282 ../../include/group.php:316 +msgid "add" +msgstr "afegeix" + +#: ../../include/widgets.php:310 ../../include/contact_widgets.php:53 +#: ../../include/features.php:98 +msgid "Saved Folders" +msgstr "Carpetes Guardades" + +#: ../../include/widgets.php:313 ../../include/widgets.php:432 +#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:94 +msgid "Everything" +msgstr "Tot" + +#: ../../include/widgets.php:354 +msgid "Archives" +msgstr "Arxius" + +#: ../../include/widgets.php:516 +msgid "Refresh" +msgstr "Refresc" + +#: ../../include/widgets.php:556 +msgid "Account settings" +msgstr "Ajustos de Compte" + +#: ../../include/widgets.php:562 +msgid "Channel settings" +msgstr "Ajustos de Canal" + +#: ../../include/widgets.php:571 +msgid "Additional features" +msgstr "Característiques addicionals" + +#: ../../include/widgets.php:578 +msgid "Feature/Addon settings" +msgstr "Ajustos de Complements" + +#: ../../include/widgets.php:584 +msgid "Display settings" +msgstr "Ajustos de pantalla" + +#: ../../include/widgets.php:591 +msgid "Manage locations" +msgstr "Gestiona ubicacions" + +#: ../../include/widgets.php:600 +msgid "Export channel" +msgstr "Exportat canal" + +#: ../../include/widgets.php:607 +msgid "Connected apps" +msgstr "Apps connectades" + +#: ../../include/widgets.php:622 +msgid "Premium Channel Settings" +msgstr "Ajustos Premium de Canal" + +#: ../../include/widgets.php:651 +msgid "Private Mail Menu" +msgstr "Menú de Correu Privat" + +#: ../../include/widgets.php:653 +msgid "Combined View" +msgstr "Vista Combinada" + +#: ../../include/widgets.php:658 ../../include/nav.php:196 +msgid "Inbox" +msgstr "Safata d'entrada" + +#: ../../include/widgets.php:663 ../../include/nav.php:197 +msgid "Outbox" +msgstr "Safata de sortida" + +#: ../../include/widgets.php:668 ../../include/nav.php:198 +msgid "New Message" +msgstr "Nou Missatge" + +#: ../../include/widgets.php:685 ../../include/widgets.php:697 +msgid "Conversations" +msgstr "Conversacions" + +#: ../../include/widgets.php:689 +msgid "Received Messages" +msgstr "Missatges Rebuts" + +#: ../../include/widgets.php:693 +msgid "Sent Messages" +msgstr "Missatges Enviats" + +#: ../../include/widgets.php:707 +msgid "No messages." +msgstr "Sense missatges." + +#: ../../include/widgets.php:725 +msgid "Delete conversation" +msgstr "Conversació esborrada" + +#: ../../include/widgets.php:751 +msgid "Events Menu" +msgstr "Menú d'Esdeveniments" + +#: ../../include/widgets.php:752 +msgid "Day View" +msgstr "Vista de Dia" + +#: ../../include/widgets.php:753 +msgid "Week View" +msgstr "Vista de Setmana" + +#: ../../include/widgets.php:754 +msgid "Month View" +msgstr "Vista de Mes" + +#: ../../include/widgets.php:766 +msgid "Events Tools" +msgstr "Eina d'Esdeveniments" + +#: ../../include/widgets.php:767 +msgid "Export Calendar" +msgstr "Exportar Calendari" + +#: ../../include/widgets.php:768 +msgid "Import Calendar" +msgstr "Importar Calendari" + +#: ../../include/widgets.php:842 ../../include/conversation.php:1662 +#: ../../include/conversation.php:1665 +msgid "Chatrooms" +msgstr "Sala per Xerrar" + +#: ../../include/widgets.php:846 +msgid "Overview" +msgstr "Visió General" + +#: ../../include/widgets.php:853 +msgid "Chat Members" +msgstr "Membres de la Sala de Xat" + +#: ../../include/widgets.php:876 +msgid "Bookmarked Chatrooms" +msgstr "Sales de Xat Favorites" + +#: ../../include/widgets.php:899 +msgid "Suggested Chatrooms" +msgstr "Sales de Xat Suggerides" + +#: ../../include/widgets.php:1044 ../../include/widgets.php:1156 +msgid "photo/image" +msgstr "foto/imatge" + +#: ../../include/widgets.php:1099 +msgid "Click to show more" +msgstr "Fes clic per veure més" + +#: ../../include/widgets.php:1250 +msgid "Rating Tools" +msgstr "Eines de Valoració" + +#: ../../include/widgets.php:1254 ../../include/widgets.php:1256 +msgid "Rate Me" +msgstr "Valora'm" + +#: ../../include/widgets.php:1259 +msgid "View Ratings" +msgstr "Veure Valoracions" + +#: ../../include/widgets.php:1316 +msgid "Forums" +msgstr "Forums" + +#: ../../include/widgets.php:1345 +msgid "Tasks" +msgstr "Tasques" + +#: ../../include/widgets.php:1354 +msgid "Documentation" +msgstr "Documentació" + +#: ../../include/widgets.php:1356 +msgid "Project/Site Information" +msgstr "Informació del Projecte/Lloc" + +#: ../../include/widgets.php:1357 +msgid "For Members" +msgstr "Per Membres" + +#: ../../include/widgets.php:1358 +msgid "For Administrators" +msgstr "Per Administradors" + +#: ../../include/widgets.php:1359 +msgid "For Developers" +msgstr "Per Desenvolupadors" + +#: ../../include/widgets.php:1383 ../../include/widgets.php:1421 +msgid "Member registrations waiting for confirmation" +msgstr "Una inscripció per a ser membre està esperant confirmació" + +#: ../../include/widgets.php:1389 +msgid "Inspect queue" +msgstr "Revisa cua" + +#: ../../include/widgets.php:1391 +msgid "DB updates" +msgstr "Actualitzacions de Base de Dades" + +#: ../../include/widgets.php:1416 ../../include/nav.php:216 +msgid "Admin" +msgstr "Admin" + +#: ../../include/widgets.php:1417 +msgid "Plugin Features" +msgstr "Característiques del Plugin" + +#: ../../include/follow.php:27 +msgid "Channel is blocked on this site." +msgstr "El canal està bloquejat en aquest lloc." + +#: ../../include/follow.php:32 +msgid "Channel location missing." +msgstr "Ubicació del canal perduda." + +#: ../../include/follow.php:81 +msgid "Response from remote channel was incomplete." +msgstr "La resposta del canal remot fou incompleta." + +#: ../../include/follow.php:98 +msgid "Channel was deleted and no longer exists." +msgstr "El canal fou esborrat i actualment no existeix." + +#: ../../include/follow.php:154 ../../include/follow.php:190 +msgid "Protocol disabled." +msgstr "Protocol desactivat." + +#: ../../include/follow.php:178 +msgid "Channel discovery failed." +msgstr "Descobriment de canal fallit." + +#: ../../include/follow.php:216 +msgid "Cannot connect to yourself." +msgstr "No pots connectar amb tu mateix." + +#: ../../include/bookmarks.php:35 +#, php-format +msgid "%1$s's bookmarks" +msgstr "%1$s de marcadors" + +#: ../../include/api.php:1336 +msgid "Public Timeline" +msgstr "Línia de Temps Pública" + +#: ../../include/bbcode.php:123 ../../include/bbcode.php:844 +#: ../../include/bbcode.php:847 ../../include/bbcode.php:852 +#: ../../include/bbcode.php:855 ../../include/bbcode.php:858 +#: ../../include/bbcode.php:861 ../../include/bbcode.php:866 +#: ../../include/bbcode.php:869 ../../include/bbcode.php:874 +#: ../../include/bbcode.php:877 ../../include/bbcode.php:880 +#: ../../include/bbcode.php:883 +msgid "Image/photo" +msgstr "Imatge/foto" + +#: ../../include/bbcode.php:162 ../../include/bbcode.php:894 +msgid "Encrypted content" +msgstr "Contingut encriptat" + +#: ../../include/bbcode.php:178 +#, php-format +msgid "Install %s element: " +msgstr "Instal·la l'element %s:" + +#: ../../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 "Aquesta entrada contè un element %s instal·lable, potser manques de permissos per instal·lar-lo en aquest lloc." + +#: ../../include/bbcode.php:254 +#, php-format +msgid "%1$s wrote the following %2$s %3$s" +msgstr "%1$s va escriure el següent %2$s %3$s" + +#: ../../include/bbcode.php:331 ../../include/bbcode.php:339 +msgid "Click to open/close" +msgstr "Clic per obrir/tancar" + +#: ../../include/bbcode.php:339 +msgid "spoiler" +msgstr "xafa guitarres" + +#: ../../include/bbcode.php:585 +msgid "Different viewers will see this text differently" +msgstr "Diferents observadors veuran aquest text de diferents formes" + +#: ../../include/bbcode.php:832 +msgid "$1 wrote:" +msgstr "$1 va escriure:" + +#: ../../include/dir_fns.php:141 +msgid "Directory Options" +msgstr "Opcions de Directori" + +#: ../../include/dir_fns.php:143 +msgid "Safe Mode" +msgstr "Manera Segura" + +#: ../../include/dir_fns.php:144 +msgid "Public Forums Only" +msgstr "Només Fòrums Públics" + +#: ../../include/dir_fns.php:145 +msgid "This Website Only" +msgstr "Només Aquest Lloc Web" + +#: ../../include/security.php:383 +msgid "" +"The form security token was not correct. This probably happened because the " +"form has been opened for too long (>3 hours) before submitting it." +msgstr "El formulario de la cadena de seguridad no era correcto. Esto probablemente ocurrió porque el formulario se ha abierto durante demasiado tiempo (> 3 horas) antes de enviarlo." + +#: ../../include/nav.php:82 ../../include/nav.php:113 ../../boot.php:1702 +msgid "Logout" +msgstr "Desconectar" + +#: ../../include/nav.php:82 ../../include/nav.php:113 +msgid "End this session" +msgstr "Finalitza aquesta sessió" + +#: ../../include/nav.php:85 ../../include/nav.php:144 +msgid "Home" +msgstr "Inici" + +#: ../../include/nav.php:85 +msgid "Your posts and conversations" +msgstr "Les teves entrades i converses" + +#: ../../include/nav.php:86 +msgid "Your profile page" +msgstr "La teva pàgina de perfil" + +#: ../../include/nav.php:88 +msgid "Manage/Edit profiles" +msgstr "Gestiona/Edita perfils" + +#: ../../include/nav.php:90 ../../include/channel.php:941 +msgid "Edit Profile" +msgstr "Edita Perfil" + +#: ../../include/nav.php:90 +msgid "Edit your profile" +msgstr "Edita el teu perfil" + +#: ../../include/nav.php:92 +msgid "Your photos" +msgstr "Les Teves Fotos" + +#: ../../include/nav.php:93 +msgid "Your files" +msgstr "Els teus arxius" + +#: ../../include/nav.php:96 +msgid "Your chatrooms" +msgstr "Les teves sales de xerrar" + +#: ../../include/nav.php:102 ../../include/conversation.php:1675 +msgid "Bookmarks" +msgstr "Marcadors" + +#: ../../include/nav.php:102 +msgid "Your bookmarks" +msgstr "Els teus marcadors" + +#: ../../include/nav.php:106 +msgid "Your webpages" +msgstr "Les teves pàgines web" + +#: ../../include/nav.php:110 +msgid "Sign in" +msgstr "Signatura" + +#: ../../include/nav.php:127 +#, php-format +msgid "%s - click to logout" +msgstr "%s - click per desconectar" + +#: ../../include/nav.php:130 +msgid "Remote authentication" +msgstr "Autenticació remota" + +#: ../../include/nav.php:130 +msgid "Click to authenticate to your home hub" +msgstr "Clica per autentificar-te en el teu node" + +#: ../../include/nav.php:144 +msgid "Home Page" +msgstr "Pàgina Personal" + +#: ../../include/nav.php:147 +msgid "Create an account" +msgstr "Crear un compte" + +#: ../../include/nav.php:159 +msgid "Help and documentation" +msgstr "Ajuda i documentació" + +#: ../../include/nav.php:163 +msgid "Applications, utilities, links, games" +msgstr "Aplicacions, utilitats, enllaços, jocs" + +#: ../../include/nav.php:165 +msgid "Search site @name, #tag, ?docs, content" +msgstr "Cerca pel lloc @name, #tag, ?docs, contingut" + +#: ../../include/nav.php:167 +msgid "Channel Directory" +msgstr "Directori de Canals" + +#: ../../include/nav.php:179 +msgid "Your grid" +msgstr "La teva malla" + +#: ../../include/nav.php:180 +msgid "Mark all grid notifications seen" +msgstr "Marca totes les notificacions de la malla vistes" + +#: ../../include/nav.php:182 +msgid "Channel home" +msgstr "Canal personal" + +#: ../../include/nav.php:183 +msgid "Mark all channel notifications seen" +msgstr "Marca totes les notificacions de canal vistes" + +#: ../../include/nav.php:189 +msgid "Notices" +msgstr "Noticies" + +#: ../../include/nav.php:189 +msgid "Notifications" +msgstr "Notificacions" + +#: ../../include/nav.php:190 +msgid "See all notifications" +msgstr "Veure totes les Notificacions" + +#: ../../include/nav.php:193 +msgid "Private mail" +msgstr "Correu privat" + +#: ../../include/nav.php:194 +msgid "See all private messages" +msgstr "Veure tots els missatges privats" + +#: ../../include/nav.php:195 +msgid "Mark all private messages seen" +msgstr "Marcar tots els missatges privats vistos" + +#: ../../include/nav.php:201 +msgid "Event Calendar" +msgstr "Calendari d'Events" + +#: ../../include/nav.php:202 +msgid "See all events" +msgstr "Veure tots els esdeveniments" + +#: ../../include/nav.php:203 +msgid "Mark all events seen" +msgstr "Marcar tots els esdeveniments vistos" + +#: ../../include/nav.php:206 +msgid "Manage Your Channels" +msgstr "Gestiona els Teus Canals" + +#: ../../include/nav.php:208 +msgid "Account/Channel Settings" +msgstr "Ajustos de Compte/Canal" + +#: ../../include/nav.php:216 +msgid "Site Setup and Configuration" +msgstr "Ajustos i Configuració del Lloc" + +#: ../../include/nav.php:247 ../../include/conversation.php:851 +msgid "Loading..." +msgstr "Carregant..." + +#: ../../include/nav.php:252 +msgid "@name, #tag, ?doc, content" +msgstr "@nom, #etiqueta, ?doc, contingut" + +#: ../../include/nav.php:253 +msgid "Please wait..." +msgstr "Si us plau, espera......." #: ../../include/connections.php:95 msgid "New window" @@ -7609,6 +7763,52 @@ msgstr "Obrir la localització seleccionada en un altre finestra o pestanya del msgid "User '%s' deleted" msgstr "usuari '%s' esborrat" +#: ../../include/contact_widgets.php:11 +#, php-format +msgid "%d invitation available" +msgid_plural "%d invitations available" +msgstr[0] "%d invitació disponible" +msgstr[1] "%d invitacions disponibles" + +#: ../../include/contact_widgets.php:19 +msgid "Find Channels" +msgstr "Troba Canals" + +#: ../../include/contact_widgets.php:20 +msgid "Enter name or interest" +msgstr "Entra un nom o interes" + +#: ../../include/contact_widgets.php:21 +msgid "Connect/Follow" +msgstr "Conecta/Segueix" + +#: ../../include/contact_widgets.php:22 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "Exemples: Lionel Messi, Futbolista" + +#: ../../include/contact_widgets.php:26 +msgid "Random Profile" +msgstr "Perfil Aleatori" + +#: ../../include/contact_widgets.php:27 +msgid "Invite Friends" +msgstr "Convida Amics" + +#: ../../include/contact_widgets.php:29 +msgid "Advanced example: name=fred and country=iceland" +msgstr "Exemple avançat: nom=pep i pais=eire" + +#: ../../include/contact_widgets.php:122 +#, php-format +msgid "%d connection in common" +msgid_plural "%d connections in common" +msgstr[0] "%d connexió en comú" +msgstr[1] "%d connexions en comú" + +#: ../../include/contact_widgets.php:127 +msgid "show more" +msgstr "mostrar més" + #: ../../include/conversation.php:204 #, php-format msgid "%1$s is now connected with %2$s" @@ -7619,269 +7819,258 @@ msgstr "%1$s esta ara connectat amb %2$s" msgid "%1$s poked %2$s" msgstr "%1$s a esperonat %2$s" -#: ../../include/conversation.php:243 ../../include/text.php:1013 -#: ../../include/text.php:1018 -msgid "poked" -msgstr "esperonat" - -#: ../../include/conversation.php:694 +#: ../../include/conversation.php:691 #, php-format msgid "View %s's profile @ %s" msgstr "Vista %s del perfil @ %s" -#: ../../include/conversation.php:713 +#: ../../include/conversation.php:710 msgid "Categories:" msgstr "Categories:" -#: ../../include/conversation.php:714 +#: ../../include/conversation.php:711 msgid "Filed under:" msgstr "Arxivar a:" -#: ../../include/conversation.php:741 +#: ../../include/conversation.php:738 msgid "View in context" msgstr "Veure en context" -#: ../../include/conversation.php:850 +#: ../../include/conversation.php:847 msgid "remove" msgstr "treu" -#: ../../include/conversation.php:855 +#: ../../include/conversation.php:852 msgid "Delete Selected Items" msgstr "Esborra els Articles Seleccionats" -#: ../../include/conversation.php:951 +#: ../../include/conversation.php:948 msgid "View Source" msgstr "Veure l'Origen" -#: ../../include/conversation.php:952 +#: ../../include/conversation.php:949 msgid "Follow Thread" msgstr "Segueix el Fil" -#: ../../include/conversation.php:953 +#: ../../include/conversation.php:950 msgid "Unfollow Thread" msgstr "Fil Abandonat" -#: ../../include/conversation.php:958 +#: ../../include/conversation.php:955 msgid "Activity/Posts" msgstr "Activitat/Entrades" -#: ../../include/conversation.php:960 +#: ../../include/conversation.php:957 msgid "Edit Connection" msgstr "Modifica la Connexió" -#: ../../include/conversation.php:961 +#: ../../include/conversation.php:958 msgid "Message" msgstr "Missatge" -#: ../../include/conversation.php:1078 +#: ../../include/conversation.php:1075 #, php-format msgid "%s likes this." msgstr "%s agrada això." -#: ../../include/conversation.php:1078 +#: ../../include/conversation.php:1075 #, php-format msgid "%s doesn't like this." msgstr "%s no agrada això." -#: ../../include/conversation.php:1082 +#: ../../include/conversation.php:1079 #, php-format msgid "%2$d people like this." msgid_plural "%2$d people like this." msgstr[0] "%2$d gent agrada això." msgstr[1] "%2$d gent agrada això." -#: ../../include/conversation.php:1084 +#: ../../include/conversation.php:1081 #, php-format msgid "%2$d people don't like this." msgid_plural "%2$d people don't like this." msgstr[0] "%2$d gent no agrada això." msgstr[1] "%2$d gent no agrada això." -#: ../../include/conversation.php:1090 +#: ../../include/conversation.php:1087 msgid "and" msgstr "i" -#: ../../include/conversation.php:1093 +#: ../../include/conversation.php:1090 #, php-format msgid ", and %d other people" msgid_plural ", and %d other people" msgstr[0] ", i %d altra gent" msgstr[1] ", i %d altra gent" -#: ../../include/conversation.php:1094 +#: ../../include/conversation.php:1091 #, php-format msgid "%s like this." msgstr "%s agrada això." -#: ../../include/conversation.php:1094 +#: ../../include/conversation.php:1091 #, php-format msgid "%s don't like this." msgstr "%s no agrada això." -#: ../../include/conversation.php:1133 +#: ../../include/conversation.php:1130 msgid "Set your location" msgstr "Ajusta la teva ubicació" -#: ../../include/conversation.php:1134 +#: ../../include/conversation.php:1131 msgid "Clear browser location" msgstr "Treu la localització del navegador" -#: ../../include/conversation.php:1182 +#: ../../include/conversation.php:1177 msgid "Tag term:" msgstr "Paraula de l'Etiqueta:" -#: ../../include/conversation.php:1183 +#: ../../include/conversation.php:1178 msgid "Where are you right now?" msgstr "On ets ara?" -#: ../../include/conversation.php:1221 +#: ../../include/conversation.php:1210 msgid "Page link name" msgstr "Nom de la pàgina enllaçada" -#: ../../include/conversation.php:1224 +#: ../../include/conversation.php:1213 msgid "Post as" msgstr "Envia com" -#: ../../include/conversation.php:1238 +#: ../../include/conversation.php:1223 msgid "Toggle voting" msgstr "Commutar votació" -#: ../../include/conversation.php:1246 +#: ../../include/conversation.php:1231 msgid "Categories (optional, comma-separated list)" msgstr "Categories (opcional, llista separada per comes)" -#: ../../include/conversation.php:1269 +#: ../../include/conversation.php:1254 msgid "Set publish date" msgstr "Ajusta la data de publicació" -#: ../../include/conversation.php:1518 +#: ../../include/conversation.php:1258 +msgid "OK" +msgstr "OK" + +#: ../../include/conversation.php:1503 msgid "Discover" msgstr "Descobrir" -#: ../../include/conversation.php:1521 +#: ../../include/conversation.php:1506 msgid "Imported public streams" msgstr "Importar fluxos públics" -#: ../../include/conversation.php:1526 +#: ../../include/conversation.php:1511 msgid "Commented Order" msgstr "Ordenar per Comentaris" -#: ../../include/conversation.php:1529 +#: ../../include/conversation.php:1514 msgid "Sort by Comment Date" msgstr "Ordenar per Data del Comentari" -#: ../../include/conversation.php:1533 +#: ../../include/conversation.php:1518 msgid "Posted Order" msgstr "Ordenar per Entrades" -#: ../../include/conversation.php:1536 +#: ../../include/conversation.php:1521 msgid "Sort by Post Date" msgstr "Ordenar per Data d' Entrada" -#: ../../include/conversation.php:1544 +#: ../../include/conversation.php:1529 msgid "Posts that mention or involve you" msgstr "Entrades que et mencionen o involucren" -#: ../../include/conversation.php:1553 +#: ../../include/conversation.php:1538 msgid "Activity Stream - by date" msgstr "Activitat del Flux - per data" -#: ../../include/conversation.php:1559 +#: ../../include/conversation.php:1544 msgid "Starred" msgstr "Preferit" -#: ../../include/conversation.php:1562 +#: ../../include/conversation.php:1547 msgid "Favourite Posts" msgstr "Entrades Favorites" -#: ../../include/conversation.php:1569 +#: ../../include/conversation.php:1554 msgid "Spam" msgstr "Spam" -#: ../../include/conversation.php:1572 +#: ../../include/conversation.php:1557 msgid "Posts flagged as SPAM" msgstr "Entrades marcades com a SPAM" -#: ../../include/conversation.php:1629 +#: ../../include/conversation.php:1614 msgid "Status Messages and Posts" msgstr "Estat dels Missatges i Entrades" -#: ../../include/conversation.php:1638 +#: ../../include/conversation.php:1623 msgid "About" msgstr "El Meu Perfil" -#: ../../include/conversation.php:1641 +#: ../../include/conversation.php:1626 msgid "Profile Details" msgstr "Detalls del Perfil" -#: ../../include/conversation.php:1657 +#: ../../include/conversation.php:1635 ../../include/photos.php:502 +msgid "Photo Albums" +msgstr "Albums de Fotos" + +#: ../../include/conversation.php:1642 msgid "Files and Storage" msgstr "Arxius i Emmagatzegament" -#: ../../include/conversation.php:1677 ../../include/conversation.php:1680 -#: ../../include/widgets.php:836 -msgid "Chatrooms" -msgstr "Sala per Xerrar" - -#: ../../include/conversation.php:1693 +#: ../../include/conversation.php:1678 msgid "Saved Bookmarks" msgstr "Marcadors Guardats" -#: ../../include/conversation.php:1703 +#: ../../include/conversation.php:1688 msgid "Manage Webpages" msgstr "Gestió de Pàgines Web" -#: ../../include/conversation.php:1768 +#: ../../include/conversation.php:1747 msgctxt "noun" msgid "Attending" msgid_plural "Attending" msgstr[0] "Assistint" msgstr[1] "Assistint" -#: ../../include/conversation.php:1771 +#: ../../include/conversation.php:1750 msgctxt "noun" msgid "Not Attending" msgid_plural "Not Attending" msgstr[0] "Desassistint" msgstr[1] "Desassistint" -#: ../../include/conversation.php:1774 +#: ../../include/conversation.php:1753 msgctxt "noun" msgid "Undecided" msgid_plural "Undecided" msgstr[0] "Indecís" msgstr[1] "Indecisos" -#: ../../include/conversation.php:1777 +#: ../../include/conversation.php:1756 msgctxt "noun" msgid "Agree" msgid_plural "Agrees" msgstr[0] "Acord" msgstr[1] "Acords" -#: ../../include/conversation.php:1780 +#: ../../include/conversation.php:1759 msgctxt "noun" msgid "Disagree" msgid_plural "Disagrees" msgstr[0] "Desacord" msgstr[1] "Desacords" -#: ../../include/conversation.php:1783 +#: ../../include/conversation.php:1762 msgctxt "noun" msgid "Abstain" msgid_plural "Abstains" msgstr[0] "Abstenirse" msgstr[1] "Abstenirse" -#: ../../include/import.php:30 -msgid "" -"Cannot create a duplicate channel identifier on this system. Import failed." -msgstr "No s'ha pogut importar el canal perquè l'identificador del canal no s'ha pogut duplicar en aquest servidor." - -#: ../../include/import.php:97 -msgid "Channel clone failed. Import failed." -msgstr "No s'ha pogut importar el canal perquè el canal no s'ha pogut clonar." - #: ../../include/selectors.php:30 msgid "Frequently" msgstr "Freqüentment" @@ -7946,6 +8135,12 @@ msgstr "Neutre" msgid "Non-specific" msgstr "Indefinit" +#: ../../include/selectors.php:49 ../../include/selectors.php:66 +#: ../../include/selectors.php:104 ../../include/selectors.php:140 +#: ../../include/permissions.php:881 +msgid "Other" +msgstr "Altres" + #: ../../include/selectors.php:49 msgid "Undecided" msgstr "Indecís" @@ -8122,366 +8317,361 @@ msgstr "No Et Fa Res" msgid "Ask me" msgstr "Pregunta" -#: ../../include/bookmarks.php:35 +#: ../../include/PermissionDescription.php:31 +#: ../../include/acl_selectors.php:232 +msgid "Visible to your default audience" +msgstr "Visible per a la teva audiència " + +#: ../../include/PermissionDescription.php:115 +#: ../../include/acl_selectors.php:268 +msgid "Only me" +msgstr "Només jo" + +#: ../../include/PermissionDescription.php:116 +msgid "Public" +msgstr "Públic" + +#: ../../include/PermissionDescription.php:117 +msgid "Anybody in the $Projectname network" +msgstr "Ningú a la xarxa $Projectname" + +#: ../../include/PermissionDescription.php:118 #, php-format -msgid "%1$s's bookmarks" -msgstr "%1$s de marcadors" +msgid "Any account on %s" +msgstr "Qualsevol compte a %s" -#: ../../include/security.php:109 -msgid "guest:" -msgstr "" +#: ../../include/PermissionDescription.php:119 +msgid "Any of my connections" +msgstr "Qualsevol de les meves connexions" -#: ../../include/security.php:427 +#: ../../include/PermissionDescription.php:120 +msgid "Only connections I specifically allow" +msgstr "Només les connexions que permeto específicament" + +#: ../../include/PermissionDescription.php:121 +msgid "Anybody authenticated (could include visitors from other networks)" +msgstr "Qualsevol persona autenticada (podria incloure als usuaris d'altres xarxes)" + +#: ../../include/PermissionDescription.php:122 +msgid "Any connections including those who haven't yet been approved" +msgstr "Qualsevol connexió incloent aquells que encara no han estat aprovats" + +#: ../../include/PermissionDescription.php:161 msgid "" -"The form security token was not correct. This probably happened because the " -"form has been opened for too long (>3 hours) before submitting it." -msgstr "El formulario de la cadena de seguridad no era correcto. Esto probablemente ocurrió porque el formulario se ha abierto durante demasiado tiempo (> 3 horas) antes de enviarlo." +"This is your default setting for the audience of your normal stream, and " +"posts." +msgstr "Aquest és l'ajust per defecte per al públic del seu flux normal i entrades." -#: ../../include/text.php:404 -msgid "prev" -msgstr "prev" +#: ../../include/PermissionDescription.php:162 +msgid "" +"This is your default setting for who can view your default channel profile" +msgstr "Aquesta és la configuració per defecte per a qui pugui veure el teu perfil per defecte del canal" -#: ../../include/text.php:406 -msgid "first" -msgstr "primer" +#: ../../include/PermissionDescription.php:163 +msgid "This is your default setting for who can view your connections" +msgstr "Aquesta és la configuració per defecte per a qui pugui veure les teves connexions" -#: ../../include/text.php:435 -msgid "last" -msgstr "últim" +#: ../../include/PermissionDescription.php:164 +msgid "" +"This is your default setting for who can view your file storage and photos" +msgstr "Aquesta és la configuració per defecte per a qui pugui veure els teus arxius i fotos" -#: ../../include/text.php:438 -msgid "next" -msgstr "pròxim" +#: ../../include/PermissionDescription.php:165 +msgid "This is your default setting for the audience of your webpages" +msgstr "Aquests son els ajustos per defecte de l'audiència de les teves pàgines web" -#: ../../include/text.php:448 -msgid "older" -msgstr "el més antic" +#: ../../include/account.php:28 +msgid "Not a valid email address" +msgstr "Adreça de correu electrònic no vàlida" -#: ../../include/text.php:450 -msgid "newer" -msgstr "El més nou" +#: ../../include/account.php:30 +msgid "Your email domain is not among those allowed on this site" +msgstr "El seu domini de correu electrònic no es troba entre els permesos en aquest lloc" -#: ../../include/text.php:843 -msgid "No connections" -msgstr "Sense Connexions" +#: ../../include/account.php:36 +msgid "Your email address is already registered at this site." +msgstr "La teva adreça de correu electrònic ja esta registrada en aquest lloc" -#: ../../include/text.php:868 +#: ../../include/account.php:68 +msgid "An invitation is required." +msgstr "Es requereix Invitació" + +#: ../../include/account.php:72 +msgid "Invitation could not be verified." +msgstr "L'invitació no ha pogut ser verificada" + +#: ../../include/account.php:122 +msgid "Please enter the required information." +msgstr "Entra la informació sol·licitada" + +#: ../../include/account.php:189 +msgid "Failed to store account information." +msgstr "Ha fallat guardar la informació del compte" + +#: ../../include/account.php:249 #, php-format -msgid "View all %s connections" -msgstr "Veure totes les connexions de %s" +msgid "Registration confirmation for %s" +msgstr "Registre confirmat per %s" + +#: ../../include/account.php:315 +#, php-format +msgid "Registration request at %s" +msgstr "Sol·licitud de registre a %s" + +#: ../../include/account.php:317 ../../include/account.php:344 +#: ../../include/account.php:404 ../../include/network.php:1871 +msgid "Administrator" +msgstr "Administrador" + +#: ../../include/account.php:339 +msgid "your registration password" +msgstr "la teva contrasenya registrada" + +#: ../../include/account.php:342 ../../include/account.php:402 +#, php-format +msgid "Registration details for %s" +msgstr "Detalls del registre per %s" + +#: ../../include/account.php:414 +msgid "Account approved." +msgstr "Compte aprovat." + +#: ../../include/account.php:454 +#, php-format +msgid "Registration revoked for %s" +msgstr "Registre revocat per %s" + +#: ../../include/account.php:506 +msgid "Account verified. Please login." +msgstr "Compte verificat. Si us plau, inicia sessió." + +#: ../../include/account.php:723 ../../include/account.php:725 +msgid "Click here to upgrade." +msgstr "Feu clic aquí per actualitzar." + +#: ../../include/account.php:731 +msgid "This action exceeds the limits set by your subscription plan." +msgstr "Aquesta acció és superior als límits establerts pel seu pla de subscripció." + +#: ../../include/account.php:736 +msgid "This action is not available under your subscription plan." +msgstr "Aquesta acció no està disponible en el seu pla de subscripció." + +#: ../../include/attach.php:247 ../../include/attach.php:333 +msgid "Item was not found." +msgstr "Article no trobat." + +#: ../../include/attach.php:497 +msgid "No source file." +msgstr "No hi ha arxiu d'origen." + +#: ../../include/attach.php:519 +msgid "Cannot locate file to replace" +msgstr "No trobo l'arxiu a reemplaçar" + +#: ../../include/attach.php:537 +msgid "Cannot locate file to revise/update" +msgstr "No trobo l'arxiu a revisar/actualitzar" + +#: ../../include/attach.php:672 +#, php-format +msgid "File exceeds size limit of %d" +msgstr "L'arxiu excedeix la mida limit de %d" + +#: ../../include/attach.php:686 +#, php-format +msgid "You have reached your limit of %1$.0f Mbytes attachment storage." +msgstr "Has arribat al teu límit de %1$.0f Mbytes de emagatzematge d'adjunts." + +#: ../../include/attach.php:842 +msgid "File upload failed. Possible system limit or action terminated." +msgstr "Pujada del arxiu fallida. Possible límit del sistema o acció interrompuda." + +#: ../../include/attach.php:855 +msgid "Stored file could not be verified. Upload failed." +msgstr "L'arxiu guardat no es pot verificar. Pujada fallida." + +#: ../../include/attach.php:909 ../../include/attach.php:925 +msgid "Path not available." +msgstr "Trajectòria no disponible" + +#: ../../include/attach.php:971 ../../include/attach.php:1123 +msgid "Empty pathname" +msgstr "Trajèctoria vuida." + +#: ../../include/attach.php:997 +msgid "duplicate filename or path" +msgstr "Nom o trajectòria duplicat" + +#: ../../include/attach.php:1019 +msgid "Path not found." +msgstr "Trajectòria no trobada." + +#: ../../include/attach.php:1077 +msgid "mkdir failed." +msgstr "mkdir va fracassar." + +#: ../../include/attach.php:1081 +msgid "database storage failed." +msgstr "Arxiu de base de dades va fallar." + +#: ../../include/attach.php:1129 +msgid "Empty path" +msgstr "Trajèctoria vuida" + +#: ../../include/channel.php:32 +msgid "Unable to obtain identity information from database" +msgstr "Incapaç de trobar l'informació d'identitat a la base de dades" -#: ../../include/text.php:1013 ../../include/text.php:1018 -msgid "poke" -msgstr "esperona" +#: ../../include/channel.php:66 +msgid "Empty name" +msgstr "Nom buit" -#: ../../include/text.php:1019 -msgid "ping" -msgstr "coloca" +#: ../../include/channel.php:69 +msgid "Name too long" +msgstr "Nom massa llarg" -#: ../../include/text.php:1019 -msgid "pinged" -msgstr "colocat" +#: ../../include/channel.php:180 +msgid "No account identifier" +msgstr "Sense identificador de compte" -#: ../../include/text.php:1020 -msgid "prod" -msgstr "picar" +#: ../../include/channel.php:192 +msgid "Nickname is required." +msgstr "Alies/malnom es requerit." -#: ../../include/text.php:1020 -msgid "prodded" -msgstr "picat" +#: ../../include/channel.php:206 +msgid "Reserved nickname. Please choose another." +msgstr "Àlies reservat. Tria un altre." -#: ../../include/text.php:1021 -msgid "slap" -msgstr "bufetada" - -#: ../../include/text.php:1021 -msgid "slapped" -msgstr "bufetejat" - -#: ../../include/text.php:1022 -msgid "finger" -msgstr "senyal" - -#: ../../include/text.php:1022 -msgid "fingered" -msgstr "senyalat" - -#: ../../include/text.php:1023 -msgid "rebuff" -msgstr "menyspreu" - -#: ../../include/text.php:1023 -msgid "rebuffed" -msgstr "menyspreuat" - -#: ../../include/text.php:1035 -msgid "happy" -msgstr "feliç" - -#: ../../include/text.php:1036 -msgid "sad" -msgstr "trist" - -#: ../../include/text.php:1037 -msgid "mellow" -msgstr "melós" - -#: ../../include/text.php:1038 -msgid "tired" -msgstr "cansat" - -#: ../../include/text.php:1039 -msgid "perky" -msgstr "turgent" - -#: ../../include/text.php:1040 -msgid "angry" -msgstr "enfadat" - -#: ../../include/text.php:1041 -msgid "stupefied" -msgstr "estupefacte" - -#: ../../include/text.php:1042 -msgid "puzzled" -msgstr "perplexe" - -#: ../../include/text.php:1043 -msgid "interested" -msgstr "Interessat" - -#: ../../include/text.php:1044 -msgid "bitter" -msgstr "amargat" - -#: ../../include/text.php:1045 -msgid "cheerful" -msgstr "feliç" - -#: ../../include/text.php:1046 -msgid "alive" -msgstr "viu" - -#: ../../include/text.php:1047 -msgid "annoyed" -msgstr "molest" - -#: ../../include/text.php:1048 -msgid "anxious" -msgstr "ansiós" - -#: ../../include/text.php:1049 -msgid "cranky" -msgstr "malagaitós" - -#: ../../include/text.php:1050 -msgid "disturbed" -msgstr "transtornat" - -#: ../../include/text.php:1051 -msgid "frustrated" -msgstr "frustrat" - -#: ../../include/text.php:1052 -msgid "depressed" -msgstr "deprimit" - -#: ../../include/text.php:1053 -msgid "motivated" -msgstr "motivat" - -#: ../../include/text.php:1054 -msgid "relaxed" -msgstr "relaxat" - -#: ../../include/text.php:1055 -msgid "surprised" -msgstr "sorprès" - -#: ../../include/text.php:1237 ../../include/js_strings.php:70 -msgid "Monday" -msgstr "Dilluns" - -#: ../../include/text.php:1237 ../../include/js_strings.php:71 -msgid "Tuesday" -msgstr "Dimarts" - -#: ../../include/text.php:1237 ../../include/js_strings.php:72 -msgid "Wednesday" -msgstr "Dimecres" - -#: ../../include/text.php:1237 ../../include/js_strings.php:73 -msgid "Thursday" -msgstr "Dijous" - -#: ../../include/text.php:1237 ../../include/js_strings.php:74 -msgid "Friday" -msgstr "Divendres" - -#: ../../include/text.php:1237 ../../include/js_strings.php:75 -msgid "Saturday" -msgstr "Dissabte" - -#: ../../include/text.php:1237 ../../include/js_strings.php:69 -msgid "Sunday" -msgstr "Diumenge" - -#: ../../include/text.php:1241 ../../include/js_strings.php:45 -msgid "January" -msgstr "Gener" - -#: ../../include/text.php:1241 ../../include/js_strings.php:46 -msgid "February" -msgstr "Febrer" - -#: ../../include/text.php:1241 ../../include/js_strings.php:47 -msgid "March" -msgstr "Març" - -#: ../../include/text.php:1241 ../../include/js_strings.php:48 -msgid "April" -msgstr "Abril" - -#: ../../include/text.php:1241 -msgid "May" -msgstr "Maig" - -#: ../../include/text.php:1241 ../../include/js_strings.php:50 -msgid "June" -msgstr "Juny" - -#: ../../include/text.php:1241 ../../include/js_strings.php:51 -msgid "July" -msgstr "Juliol" - -#: ../../include/text.php:1241 ../../include/js_strings.php:52 -msgid "August" -msgstr "Agost" - -#: ../../include/text.php:1241 ../../include/js_strings.php:53 -msgid "September" -msgstr "Setembre" - -#: ../../include/text.php:1241 ../../include/js_strings.php:54 -msgid "October" -msgstr "Octubre" - -#: ../../include/text.php:1241 ../../include/js_strings.php:55 -msgid "November" -msgstr "Novembre" - -#: ../../include/text.php:1241 ../../include/js_strings.php:56 -msgid "December" -msgstr "Desembre" - -#: ../../include/text.php:1318 ../../include/text.php:1322 -msgid "Unknown Attachment" -msgstr "Adjunt Desconegut" - -#: ../../include/text.php:1324 -msgid "unknown" -msgstr "desconegut" - -#: ../../include/text.php:1360 -msgid "remove category" -msgstr "elimina categoria" - -#: ../../include/text.php:1437 -msgid "remove from file" -msgstr "elimina del arxiu" - -#: ../../include/text.php:1734 ../../include/text.php:1805 -msgid "default" -msgstr "per defecte" - -#: ../../include/text.php:1742 -msgid "Page layout" -msgstr "Format de la pàgina" - -#: ../../include/text.php:1742 -msgid "You can create your own with the layouts tool" -msgstr "Pots crear el teu propi amb l'editor de format de pàgina." - -#: ../../include/text.php:1784 -msgid "Page content type" -msgstr "Tipus de contingut de la pàgina" - -#: ../../include/text.php:1817 -msgid "Select an alternate language" -msgstr "Tria un idioma alternatiu" - -#: ../../include/text.php:1934 -msgid "activity" -msgstr "activitat" - -#: ../../include/text.php:2235 -msgid "Design Tools" -msgstr "Eines de disseny" - -#: ../../include/text.php:2241 -msgid "Pages" -msgstr "Pàgines" - -#: ../../include/auth.php:147 -msgid "Logged out." -msgstr "Sortir." - -#: ../../include/auth.php:274 -msgid "Failed authentication" -msgstr "Autenticació fallida" - -#: ../../include/permissions.php:26 -msgid "Can view my normal stream and posts" -msgstr "Pot veure el flux i entrades normals" - -#: ../../include/permissions.php:30 -msgid "Can view my webpages" -msgstr "Pot veure les meves pàgines web" - -#: ../../include/permissions.php:34 -msgid "Can post on my channel page (\"wall\")" -msgstr "Pot fer entrades a la meva pàgina de canal (\"mur\")" - -#: ../../include/permissions.php:37 -msgid "Can like/dislike stuff" -msgstr "Pot dir si agrada/desagrada " - -#: ../../include/permissions.php:37 -msgid "Profiles and things other than posts/comments" -msgstr "Perfils i altres coses a més d'entrades/comentaris" - -#: ../../include/permissions.php:39 -msgid "Can forward to all my channel contacts via post @mentions" -msgstr "Ho pot enviar a tots els meus contactes del canal via entrades @mencions" - -#: ../../include/permissions.php:39 -msgid "Advanced - useful for creating group forum channels" -msgstr "Avançat - capaç de crear canals de grups de foro" - -#: ../../include/permissions.php:40 -msgid "Can chat with me (when available)" -msgstr "Pot xatejar amb mi (si estic disponible)" - -#: ../../include/permissions.php:41 -msgid "Can write to my file storage and photos" -msgstr "Pot escriure al meu magatzem d'arxius i fotos" - -#: ../../include/permissions.php:42 -msgid "Can edit my webpages" -msgstr "Pot editar les meves pàgines web" - -#: ../../include/permissions.php:44 -msgid "Somewhat advanced - very useful in open communities" -msgstr "Quelcom avançat - molt útil en comunitats obertes" - -#: ../../include/permissions.php:46 -msgid "Can administer my channel resources" -msgstr "Pot administrar els meus recursos del canal" - -#: ../../include/permissions.php:46 +#: ../../include/channel.php:211 msgid "" -"Extremely advanced. Leave this alone unless you know what you are doing" -msgstr "Extremadament avançat. No toquis res si no saps que estàs fent" +"Nickname has unsupported characters or is already being used on this site." +msgstr "L'álies te caracters no soportats o ja esta en ús en aquest lloc" + +#: ../../include/channel.php:287 +msgid "Unable to retrieve created identity" +msgstr "No es pot recuperar la identitat creada" + +#: ../../include/channel.php:345 +msgid "Default Profile" +msgstr "Perfil per Defecte" + +#: ../../include/channel.php:791 +msgid "Requested channel is not available." +msgstr "El canal demanat no està disponible." + +#: ../../include/channel.php:938 +msgid "Create New Profile" +msgstr "Crear un Perfil Nou" + +#: ../../include/channel.php:958 +msgid "Visible to everybody" +msgstr "Visible per tothom" + +#: ../../include/channel.php:1031 ../../include/channel.php:1142 +msgid "Gender:" +msgstr "Gènere:" + +#: ../../include/channel.php:1032 ../../include/channel.php:1186 +msgid "Status:" +msgstr "Estatus:" + +#: ../../include/channel.php:1033 ../../include/channel.php:1197 +msgid "Homepage:" +msgstr "Pàgina Personal:" + +#: ../../include/channel.php:1034 +msgid "Online Now" +msgstr "Ara en Linia" + +#: ../../include/channel.php:1147 +msgid "Like this channel" +msgstr "M'agrada aquest canal" + +#: ../../include/channel.php:1171 +msgid "j F, Y" +msgstr "j F, Y" + +#: ../../include/channel.php:1172 +msgid "j F" +msgstr "j F" + +#: ../../include/channel.php:1179 +msgid "Birthday:" +msgstr "Aniversari:" + +#: ../../include/channel.php:1192 +#, php-format +msgid "for %1$d %2$s" +msgstr "per %1$d %2$s" + +#: ../../include/channel.php:1195 +msgid "Sexual Preference:" +msgstr "Preferència Sexual:" + +#: ../../include/channel.php:1201 +msgid "Tags:" +msgstr "Etiquetes:" + +#: ../../include/channel.php:1203 +msgid "Political Views:" +msgstr "Idees Polítiques:" + +#: ../../include/channel.php:1205 +msgid "Religion:" +msgstr "Religió:" + +#: ../../include/channel.php:1209 +msgid "Hobbies/Interests:" +msgstr "Aficions/Interessos:" + +#: ../../include/channel.php:1211 +msgid "Likes:" +msgstr "Agrada:" + +#: ../../include/channel.php:1213 +msgid "Dislikes:" +msgstr "Desagrada:" + +#: ../../include/channel.php:1215 +msgid "Contact information and Social Networks:" +msgstr "Informació de contacte i Xarxes Socials:" + +#: ../../include/channel.php:1217 +msgid "My other channels:" +msgstr "Els meus altres canals:" + +#: ../../include/channel.php:1219 +msgid "Musical interests:" +msgstr "Interessos Musicals:" + +#: ../../include/channel.php:1221 +msgid "Books, literature:" +msgstr "Llibres, literatura:" + +#: ../../include/channel.php:1223 +msgid "Television:" +msgstr "Televisió:" + +#: ../../include/channel.php:1225 +msgid "Film/dance/culture/entertainment:" +msgstr "Películes/Dança/Cultura/Entreteniment:" + +#: ../../include/channel.php:1227 +msgid "Love/Romance:" +msgstr "Amor/Romace:" + +#: ../../include/channel.php:1229 +msgid "Work/employment:" +msgstr "Treball/feina:" + +#: ../../include/channel.php:1231 +msgid "School/education:" +msgstr "Escola/educació:" + +#: ../../include/channel.php:1251 +msgid "Like this thing" +msgstr "M'agrada això" #: ../../include/features.php:48 msgid "General Features" @@ -8528,257 +8718,378 @@ msgid "Provide managed web pages on your channel" msgstr "Proporcionar pàgines web gestionades al seu canal" #: ../../include/features.php:55 -msgid "Provide a wiki for your channel" -msgstr "" - -#: ../../include/features.php:56 msgid "Hide Rating" msgstr "Amaga la Valoració" -#: ../../include/features.php:56 +#: ../../include/features.php:55 msgid "" "Hide the rating buttons on your channel and profile pages. Note: People can " "still rate you somewhere else." msgstr "Amaga el botó de valoracions al teu canal i pàgines del perfil. Nota: Et poden continuar valorant en altres llocs." -#: ../../include/features.php:57 +#: ../../include/features.php:56 msgid "Private Notes" msgstr "Notes Privades" -#: ../../include/features.php:57 +#: ../../include/features.php:56 msgid "Enables a tool to store notes and reminders (note: not encrypted)" msgstr "Activa l'eina per guardar notes i recordatoris (nota:no està encriptat)" -#: ../../include/features.php:58 +#: ../../include/features.php:57 msgid "Navigation Channel Select" msgstr "Navegació pel Selector de Canals" -#: ../../include/features.php:58 +#: ../../include/features.php:57 msgid "Change channels directly from within the navigation dropdown menu" msgstr "Canvieu els canals directament des del menú desplegable de navegació" -#: ../../include/features.php:59 +#: ../../include/features.php:58 msgid "Photo Location" msgstr "Ubicació de la Foto" -#: ../../include/features.php:59 +#: ../../include/features.php:58 msgid "If location data is available on uploaded photos, link this to a map." msgstr "Si les dades d'ubicació estàn disponibles a les fotos pujades, vincular a un mapa." -#: ../../include/features.php:60 +#: ../../include/features.php:59 msgid "Access Controlled Chatrooms" msgstr "Accés Controlat a les Sales de Xat" -#: ../../include/features.php:60 +#: ../../include/features.php:59 msgid "Provide chatrooms and chat services with access control." msgstr "Proveeix sales de Xat i serveis de Xat amb control d'accés." -#: ../../include/features.php:61 +#: ../../include/features.php:60 msgid "Smart Birthdays" msgstr "Aniversaris Intel·ligents" -#: ../../include/features.php:61 +#: ../../include/features.php:60 msgid "" "Make birthday events timezone aware in case your friends are scattered " "across the planet." msgstr "Fes, conscients de la zona horària, els esdeveniments d'aniversari, en cas que els teus amics estiguin dispersos per tot el planeta." -#: ../../include/features.php:62 +#: ../../include/features.php:61 msgid "Expert Mode" msgstr "Manera Experta" -#: ../../include/features.php:62 +#: ../../include/features.php:61 msgid "Enable Expert Mode to provide advanced configuration options" msgstr "Activar Mode Expert per a proporcionar opcions avançades de configuració" -#: ../../include/features.php:63 +#: ../../include/features.php:62 msgid "Premium Channel" msgstr "Privilegis del Canal" -#: ../../include/features.php:63 +#: ../../include/features.php:62 msgid "" "Allows you to set restrictions and terms on those that connect with your " "channel" msgstr "Li permet establir restriccions i els termes en els quals es connecten amb el seu canal" -#: ../../include/features.php:68 +#: ../../include/features.php:67 msgid "Post Composition Features" msgstr "Característiques de Composició d'Entrades" -#: ../../include/features.php:71 +#: ../../include/features.php:70 msgid "Large Photos" msgstr "Grans Fotos" -#: ../../include/features.php:71 +#: ../../include/features.php:70 msgid "" "Include large (1024px) photo thumbnails in posts. If not enabled, use small " "(640px) photo thumbnails" msgstr "Inclou gran (1024px) foto de miniatura a les entrades. Si no està activat, empra petita (640px) foto de miniatura." -#: ../../include/features.php:72 +#: ../../include/features.php:71 msgid "Automatically import channel content from other channels or feeds" msgstr "Importa automàticament el contingut del canal des de altres canals o feeds" -#: ../../include/features.php:73 +#: ../../include/features.php:72 msgid "Even More Encryption" msgstr "Encara Més Encriptació" -#: ../../include/features.php:73 +#: ../../include/features.php:72 msgid "" "Allow optional encryption of content end-to-end with a shared secret key" msgstr "Permet l'encripció opcional del contingut extrem-a-extrem amb clau secreta compartida" -#: ../../include/features.php:74 +#: ../../include/features.php:73 msgid "Enable Voting Tools" msgstr "Habilitar Eines de Votació" -#: ../../include/features.php:74 +#: ../../include/features.php:73 msgid "Provide a class of post which others can vote on" msgstr "Proporcionar una classe d'entrada que altres puguin votar" -#: ../../include/features.php:75 +#: ../../include/features.php:74 msgid "Delayed Posting" msgstr "Retarda Publicació" -#: ../../include/features.php:75 +#: ../../include/features.php:74 msgid "Allow posts to be published at a later date" msgstr "Permet que les publicacions es publiquin en data posterior" -#: ../../include/features.php:76 +#: ../../include/features.php:75 msgid "Suppress Duplicate Posts/Comments" msgstr "Suprimeix Duplicats de Publicacions/Comentaris" -#: ../../include/features.php:76 +#: ../../include/features.php:75 msgid "" "Prevent posts with identical content to be published with less than two " "minutes in between submissions." msgstr "Evita que publicacions amb identic contingut siguin publicades amb menys de dos minuts entre entregues." -#: ../../include/features.php:82 +#: ../../include/features.php:81 msgid "Network and Stream Filtering" msgstr "Filtrat de Xarxa i Flux" -#: ../../include/features.php:83 +#: ../../include/features.php:82 msgid "Search by Date" msgstr "Cerca per Data" -#: ../../include/features.php:83 +#: ../../include/features.php:82 msgid "Ability to select posts by date ranges" msgstr "Capacitat per seleccionar entrades per rang de dates" -#: ../../include/features.php:84 ../../include/group.php:311 +#: ../../include/features.php:83 ../../include/group.php:311 msgid "Privacy Groups" msgstr "Grup Privat" -#: ../../include/features.php:84 +#: ../../include/features.php:83 msgid "Enable management and selection of privacy groups" msgstr "Habilita gestió i selecció de grups privats" -#: ../../include/features.php:85 ../../include/widgets.php:281 -msgid "Saved Searches" -msgstr "Cerques Guardades" - -#: ../../include/features.php:85 +#: ../../include/features.php:84 msgid "Save search terms for re-use" msgstr "Guardar els termin de la cerca per a re-usar" -#: ../../include/features.php:86 +#: ../../include/features.php:85 msgid "Network Personal Tab" msgstr "Pestanya Personal de Xarxa" -#: ../../include/features.php:86 +#: ../../include/features.php:85 msgid "Enable tab to display only Network posts that you've interacted on" msgstr "Activa la pestanya per mostrar només les entrades de xarxa en les que has intervingut" -#: ../../include/features.php:87 +#: ../../include/features.php:86 msgid "Network New Tab" msgstr "Pestanya Nou a la Xarxa" -#: ../../include/features.php:87 +#: ../../include/features.php:86 msgid "Enable tab to display all new Network activity" msgstr "Activa pestanya per mostrar tota l'activitat nova de la Xarxa" -#: ../../include/features.php:88 +#: ../../include/features.php:87 msgid "Affinity Tool" msgstr "Eina d'Afinitat" -#: ../../include/features.php:88 +#: ../../include/features.php:87 msgid "Filter stream activity by depth of relationships" msgstr "Filtre d'activitat del flux per importància de la relació" -#: ../../include/features.php:89 +#: ../../include/features.php:88 msgid "Connection Filtering" msgstr "Filtre de Connexió" -#: ../../include/features.php:89 +#: ../../include/features.php:88 msgid "Filter incoming posts from connections based on keywords/content" msgstr "Filtre de missatges d'entrada de conexions, basat en paraules clau/contingut " -#: ../../include/features.php:90 +#: ../../include/features.php:89 msgid "Show channel suggestions" msgstr "Mostra suggerencies de canals" -#: ../../include/features.php:95 +#: ../../include/features.php:94 msgid "Post/Comment Tools" msgstr "Eina d'Entrades/Comentaris" -#: ../../include/features.php:96 +#: ../../include/features.php:95 msgid "Community Tagging" msgstr "Etiquetat per la Comunitat" -#: ../../include/features.php:96 +#: ../../include/features.php:95 msgid "Ability to tag existing posts" msgstr "Capacitat d'etiquetar entrades existents" -#: ../../include/features.php:97 +#: ../../include/features.php:96 msgid "Post Categories" msgstr "Categories d'Entrades" -#: ../../include/features.php:97 +#: ../../include/features.php:96 msgid "Add categories to your posts" msgstr "Afegeix categoria a la teva entrada" -#: ../../include/features.php:98 +#: ../../include/features.php:97 msgid "Emoji Reactions" -msgstr "Reaccions dels Emoji" +msgstr "" + +#: ../../include/features.php:97 +msgid "Add emoji reaction ability to posts" +msgstr "" #: ../../include/features.php:98 -msgid "Add emoji reaction ability to posts" -msgstr "Afegeix un emoji habilitat per reaccionar a entrades" - -#: ../../include/features.php:99 ../../include/widgets.php:310 -#: ../../include/contact_widgets.php:53 -msgid "Saved Folders" -msgstr "Carpetes Guardades" - -#: ../../include/features.php:99 msgid "Ability to file posts under folders" msgstr "Capacitat de arxivar entrades en les carpetes" -#: ../../include/features.php:100 +#: ../../include/features.php:99 msgid "Dislike Posts" msgstr "No Agrada l'Entrada" -#: ../../include/features.php:100 +#: ../../include/features.php:99 msgid "Ability to dislike posts/comments" msgstr "Capacitat per marcar amb \"No Agrada\" les entrades/comentaris" -#: ../../include/features.php:101 +#: ../../include/features.php:100 msgid "Star Posts" msgstr "Entrades Excel·lents" -#: ../../include/features.php:101 +#: ../../include/features.php:100 msgid "Ability to mark special posts with a star indicator" msgstr "Capacitat per marcar entrades especials amb l'indicador d'excel·lencia" -#: ../../include/features.php:102 +#: ../../include/features.php:101 msgid "Tag Cloud" msgstr "Núvol d'Etiquetes." -#: ../../include/features.php:102 +#: ../../include/features.php:101 msgid "Provide a personal tag cloud on your channel page" msgstr "Proporcionar un núvol d'etiquetes personals a la teva pàgina de canal" +#: ../../include/oembed.php:324 +msgid "Embedded content" +msgstr "Contingut embegut" + +#: ../../include/oembed.php:333 +msgid "Embedding disabled" +msgstr "Incorporació desactivada" + +#: ../../include/acl_selectors.php:271 +msgid "Who can see this?" +msgstr "Qui pot veure això?" + +#: ../../include/acl_selectors.php:272 +msgid "Custom selection" +msgstr "Selecció a mida" + +#: ../../include/acl_selectors.php:273 +msgid "" +"Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit" +" the scope of \"Show\"." +msgstr "Selecciona \"Mostrar\" per permetre la visualització. \"No Mostrar\" et permet obviar i limitar l'abast de \"Mostrar\"." + +#: ../../include/acl_selectors.php:274 +msgid "Show" +msgstr "Mostra" + +#: ../../include/acl_selectors.php:275 +msgid "Don't show" +msgstr "No mostrar" + +#: ../../include/acl_selectors.php:281 +msgid "Other networks and post services" +msgstr "Altres xarxes i serveis de correu" + +#: ../../include/acl_selectors.php:311 +#, php-format +msgid "" +"Post permissions %s cannot be changed %s after a post is shared.
These" +" permissions set who is allowed to view the post." +msgstr "Els permisos d'entrada %s no poden esser canviats %s posteriorment a que una entrada ja està compartida.
Aquest ajust dels permisos indica qui pot veure l'entrada." + +#: ../../include/auth.php:105 +msgid "Logged out." +msgstr "Sortir." + +#: ../../include/auth.php:212 +msgid "Failed authentication" +msgstr "Autenticació fallida" + +#: ../../include/datetime.php:135 +msgid "Birthday" +msgstr "Aniversari" + +#: ../../include/datetime.php:137 +msgid "Age: " +msgstr "Edat:" + +#: ../../include/datetime.php:139 +msgid "YYYY-MM-DD or MM-DD" +msgstr "YYYY-MM-DD o MM-DD" + +#: ../../include/datetime.php:272 ../../boot.php:2470 +msgid "never" +msgstr "mai" + +#: ../../include/datetime.php:278 +msgid "less than a second ago" +msgstr "fa menys d'un segon" + +#: ../../include/datetime.php:296 +#, php-format +msgctxt "e.g. 22 hours ago, 1 minute ago" +msgid "%1$d %2$s ago" +msgstr "Fa %1$d %2$s" + +#: ../../include/datetime.php:307 +msgctxt "relative_date" +msgid "year" +msgid_plural "years" +msgstr[0] "any" +msgstr[1] "anys" + +#: ../../include/datetime.php:310 +msgctxt "relative_date" +msgid "month" +msgid_plural "months" +msgstr[0] "mes" +msgstr[1] "mesos " + +#: ../../include/datetime.php:313 +msgctxt "relative_date" +msgid "week" +msgid_plural "weeks" +msgstr[0] "setmana" +msgstr[1] "setmanes" + +#: ../../include/datetime.php:316 +msgctxt "relative_date" +msgid "day" +msgid_plural "days" +msgstr[0] "dia" +msgstr[1] "dies" + +#: ../../include/datetime.php:319 +msgctxt "relative_date" +msgid "hour" +msgid_plural "hours" +msgstr[0] "hora" +msgstr[1] "hores" + +#: ../../include/datetime.php:322 +msgctxt "relative_date" +msgid "minute" +msgid_plural "minutes" +msgstr[0] "minut" +msgstr[1] "minuts" + +#: ../../include/datetime.php:325 +msgctxt "relative_date" +msgid "second" +msgid_plural "seconds" +msgstr[0] "segon" +msgstr[1] "segons" + +#: ../../include/datetime.php:562 +#, php-format +msgid "%1$s's birthday" +msgstr "Aniversari de %1$s" + +#: ../../include/datetime.php:563 +#, php-format +msgid "Happy Birthday %1$s" +msgstr "Feliç Aniversari %1$s" + #: ../../include/group.php:26 msgid "" "A deleted group with this name was revived. Existing item permissions " @@ -8806,583 +9117,21 @@ msgstr "Afegir grup privat" msgid "Channels not in any privacy group" msgstr "Sense canals en grups privats" -#: ../../include/group.php:316 ../../include/widgets.php:282 -msgid "add" -msgstr "afegeix" - -#: ../../include/event.php:22 ../../include/event.php:69 -#: ../../include/bb2diaspora.php:485 -msgid "l F d, Y \\@ g:i A" -msgstr "l d \\d\\e/\\d' F de Y \\@ H:i T" - -#: ../../include/event.php:30 ../../include/event.php:73 -#: ../../include/bb2diaspora.php:491 -msgid "Starts:" -msgstr "Inicia:" - -#: ../../include/event.php:40 ../../include/event.php:77 -#: ../../include/bb2diaspora.php:499 -msgid "Finishes:" -msgstr "Acaba:" - -#: ../../include/event.php:814 -msgid "This event has been added to your calendar." -msgstr "Aquest succés ha estat afegit al teu calendari." - -#: ../../include/event.php:1014 -msgid "Not specified" -msgstr "Sense especificar" - -#: ../../include/event.php:1015 -msgid "Needs Action" -msgstr "Necessita una Acció" - -#: ../../include/event.php:1016 -msgid "Completed" -msgstr "Completat" - -#: ../../include/event.php:1017 -msgid "In Process" -msgstr "En Procès" - -#: ../../include/event.php:1018 -msgid "Cancelled" -msgstr "Cancel·lat" - -#: ../../include/account.php:28 -msgid "Not a valid email address" -msgstr "Adreça de correu electrònic no vàlida" - -#: ../../include/account.php:30 -msgid "Your email domain is not among those allowed on this site" -msgstr "El seu domini de correu electrònic no es troba entre els permesos en aquest lloc" - -#: ../../include/account.php:36 -msgid "Your email address is already registered at this site." -msgstr "La teva adreça de correu electrònic ja esta registrada en aquest lloc" - -#: ../../include/account.php:68 -msgid "An invitation is required." -msgstr "Es requereix Invitació" - -#: ../../include/account.php:72 -msgid "Invitation could not be verified." -msgstr "L'invitació no ha pogut ser verificada" - -#: ../../include/account.php:122 -msgid "Please enter the required information." -msgstr "Entra la informació sol·licitada" - -#: ../../include/account.php:189 -msgid "Failed to store account information." -msgstr "Ha fallat guardar la informació del compte" - -#: ../../include/account.php:249 -#, php-format -msgid "Registration confirmation for %s" -msgstr "Inscripció confirmada per %s" - -#: ../../include/account.php:315 -#, php-format -msgid "Registration request at %s" -msgstr "Sol·licitud d'inscripció a %s" - -#: ../../include/account.php:339 -msgid "your registration password" -msgstr "la teva contrasenya registrada" - -#: ../../include/account.php:342 ../../include/account.php:402 -#, php-format -msgid "Registration details for %s" -msgstr "Detalls de l'inscripció per %s" - -#: ../../include/account.php:414 -msgid "Account approved." -msgstr "Compte aprovat." - -#: ../../include/account.php:454 -#, php-format -msgid "Registration revoked for %s" -msgstr "Inscripció revocada per %s" - -#: ../../include/account.php:739 ../../include/account.php:741 -msgid "Click here to upgrade." -msgstr "Feu clic aquí per actualitzar." - -#: ../../include/account.php:747 -msgid "This action exceeds the limits set by your subscription plan." -msgstr "Aquesta acció és superior als límits establerts pel seu pla de subscripció." - -#: ../../include/account.php:752 -msgid "This action is not available under your subscription plan." -msgstr "Aquesta acció no està disponible en el seu pla de subscripció." - -#: ../../include/follow.php:27 -msgid "Channel is blocked on this site." -msgstr "El canal està bloquejat en aquest lloc." - -#: ../../include/follow.php:32 -msgid "Channel location missing." -msgstr "Ubicació del canal perduda." - -#: ../../include/follow.php:80 -msgid "Response from remote channel was incomplete." -msgstr "La resposta del canal remot fou incompleta." - -#: ../../include/follow.php:97 -msgid "Channel was deleted and no longer exists." -msgstr "El canal fou esborrat i actualment no existeix." - -#: ../../include/follow.php:147 ../../include/follow.php:183 -msgid "Protocol disabled." -msgstr "Protocol desactivat." - -#: ../../include/follow.php:171 -msgid "Channel discovery failed." -msgstr "Descobriment de canal fallit." - -#: ../../include/follow.php:210 -msgid "Cannot connect to yourself." -msgstr "No pots connectar amb tu mateix." - -#: ../../include/attach.php:247 ../../include/attach.php:333 -msgid "Item was not found." -msgstr "Article no trobat." - -#: ../../include/attach.php:499 -msgid "No source file." -msgstr "No hi ha arxiu d'origen." - -#: ../../include/attach.php:521 -msgid "Cannot locate file to replace" -msgstr "No trobo l'arxiu a reemplaçar" - -#: ../../include/attach.php:539 -msgid "Cannot locate file to revise/update" -msgstr "No trobo l'arxiu a revisar/actualitzar" - -#: ../../include/attach.php:674 -#, php-format -msgid "File exceeds size limit of %d" -msgstr "L'arxiu excedeix la mida limit de %d" - -#: ../../include/attach.php:688 -#, php-format -msgid "You have reached your limit of %1$.0f Mbytes attachment storage." -msgstr "Has arribat al teu límit de %1$.0f Mbytes de emagatzematge d'adjunts." - -#: ../../include/attach.php:846 -msgid "File upload failed. Possible system limit or action terminated." -msgstr "Pujada del arxiu fallida. Possible límit del sistema o acció interrompuda." - -#: ../../include/attach.php:859 -msgid "Stored file could not be verified. Upload failed." -msgstr "L'arxiu guardat no es pot verificar. Pujada fallida." - -#: ../../include/attach.php:915 ../../include/attach.php:931 -msgid "Path not available." -msgstr "Trajectòria no disponible" - -#: ../../include/attach.php:977 ../../include/attach.php:1129 -msgid "Empty pathname" -msgstr "Trajèctoria vuida." - -#: ../../include/attach.php:1003 -msgid "duplicate filename or path" -msgstr "Nom o trajectòria duplicat" - -#: ../../include/attach.php:1025 -msgid "Path not found." -msgstr "Trajectòria no trobada." - -#: ../../include/attach.php:1083 -msgid "mkdir failed." -msgstr "mkdir va fracassar." - -#: ../../include/attach.php:1087 -msgid "database storage failed." -msgstr "Arxiu de base de dades va fallar." - -#: ../../include/attach.php:1135 -msgid "Empty path" -msgstr "Trajèctoria vuida" - -#: ../../include/bbcode.php:123 ../../include/bbcode.php:878 -#: ../../include/bbcode.php:881 ../../include/bbcode.php:886 -#: ../../include/bbcode.php:889 ../../include/bbcode.php:892 -#: ../../include/bbcode.php:895 ../../include/bbcode.php:900 -#: ../../include/bbcode.php:903 ../../include/bbcode.php:908 -#: ../../include/bbcode.php:911 ../../include/bbcode.php:914 -#: ../../include/bbcode.php:917 -msgid "Image/photo" -msgstr "Imatge/foto" - -#: ../../include/bbcode.php:162 ../../include/bbcode.php:928 -msgid "Encrypted content" -msgstr "Contingut encriptat" - -#: ../../include/bbcode.php:178 -#, php-format -msgid "Install %s element: " -msgstr "Instal·la l'element %s:" - -#: ../../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 "Aquesta entrada contè un element %s instal·lable, potser manques de permissos per instal·lar-lo en aquest lloc." - -#: ../../include/bbcode.php:261 -#, php-format -msgid "%1$s wrote the following %2$s %3$s" -msgstr "%1$s va escriure el següent %2$s %3$s" - -#: ../../include/bbcode.php:338 ../../include/bbcode.php:346 -msgid "Click to open/close" -msgstr "Clic per obrir/tancar" - -#: ../../include/bbcode.php:346 -msgid "spoiler" -msgstr "xafa guitarres" - -#: ../../include/bbcode.php:619 -msgid "Different viewers will see this text differently" -msgstr "Diferents observadors veuran aquest text de diferents formes" - -#: ../../include/bbcode.php:866 -msgid "$1 wrote:" -msgstr "$1 va escriure:" - -#: ../../include/items.php:897 ../../include/items.php:942 -msgid "(Unknown)" -msgstr "(Desconegut)" - -#: ../../include/items.php:1141 -msgid "Visible to anybody on the internet." -msgstr "Visible per tothom a la Internet" - -#: ../../include/items.php:1143 -msgid "Visible to you only." -msgstr "Visible només per tú." - -#: ../../include/items.php:1145 -msgid "Visible to anybody in this network." -msgstr "Visible per tothom en aquesta xarxa." - -#: ../../include/items.php:1147 -msgid "Visible to anybody authenticated." -msgstr "Visible per tothom autenticat." - -#: ../../include/items.php:1149 -#, php-format -msgid "Visible to anybody on %s." -msgstr "Visible per a tothom a %s." - -#: ../../include/items.php:1151 -msgid "Visible to all connections." -msgstr "Visible per a totes les connexions." - -#: ../../include/items.php:1153 -msgid "Visible to approved connections." -msgstr "Visible per a les connexions aprovades." - -#: ../../include/items.php:1155 -msgid "Visible to specific connections." -msgstr "Visible per a específiques connexions." - -#: ../../include/items.php:3918 -msgid "Privacy group is empty." -msgstr "El grup privat està vuit." - -#: ../../include/items.php:3925 -#, php-format -msgid "Privacy group: %s" -msgstr "Grup privat: %s" - -#: ../../include/items.php:3937 -msgid "Connection not found." -msgstr "Connexió no trobada." - -#: ../../include/items.php:4290 -msgid "profile photo" -msgstr "foto del perfil" - -#: ../../include/oembed.php:336 -msgid "Embedded content" -msgstr "Contingut embegut" - -#: ../../include/oembed.php:345 -msgid "Embedding disabled" -msgstr "Incorporació desactivada" - -#: ../../include/widgets.php:103 -msgid "System" -msgstr "Sistema" - -#: ../../include/widgets.php:106 -msgid "New App" -msgstr "Nova App" - -#: ../../include/widgets.php:154 -msgid "Suggestions" -msgstr "Suggerencies" - -#: ../../include/widgets.php:155 -msgid "See more..." -msgstr "Veure més....." - -#: ../../include/widgets.php:175 -#, php-format -msgid "You have %1$.0f of %2$.0f allowed connections." -msgstr "Tens %1$.0f de %2$.0f connexions permeses." - -#: ../../include/widgets.php:181 -msgid "Add New Connection" -msgstr "Afegeix una Nova Connexió" - -#: ../../include/widgets.php:182 -msgid "Enter channel address" -msgstr "Introdueix l'adreça del canal" - -#: ../../include/widgets.php:183 -msgid "Examples: bob@example.com, https://example.com/barbara" -msgstr "Exemples: bob@example.com, https://exemple.com/barbara" - -#: ../../include/widgets.php:199 -msgid "Notes" -msgstr "Notes" - -#: ../../include/widgets.php:273 -msgid "Remove term" -msgstr "Plaç de remoció" - -#: ../../include/widgets.php:313 ../../include/widgets.php:432 -#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:94 -msgid "Everything" -msgstr "Tot" - -#: ../../include/widgets.php:354 -msgid "Archives" -msgstr "Arxius" - -#: ../../include/widgets.php:516 -msgid "Refresh" -msgstr "Refresc" - -#: ../../include/widgets.php:556 -msgid "Account settings" -msgstr "Ajustos de Compte" - -#: ../../include/widgets.php:562 -msgid "Channel settings" -msgstr "Ajustos de Canal" - -#: ../../include/widgets.php:571 -msgid "Additional features" -msgstr "Característiques addicionals" - -#: ../../include/widgets.php:578 -msgid "Feature/Addon settings" -msgstr "Ajustos de Complements" - -#: ../../include/widgets.php:584 -msgid "Display settings" -msgstr "Ajustos de pantalla" - -#: ../../include/widgets.php:591 -msgid "Manage locations" -msgstr "Gestiona ubicacions" - -#: ../../include/widgets.php:600 -msgid "Export channel" -msgstr "Exportat canal" - -#: ../../include/widgets.php:607 -msgid "Connected apps" -msgstr "Apps connectades" - -#: ../../include/widgets.php:631 -msgid "Premium Channel Settings" -msgstr "Ajustos Premium de Canal" - -#: ../../include/widgets.php:660 -msgid "Private Mail Menu" -msgstr "Menú de Correu Privat" - -#: ../../include/widgets.php:662 -msgid "Combined View" -msgstr "Vista Combinada" - -#: ../../include/widgets.php:694 ../../include/widgets.php:706 -msgid "Conversations" -msgstr "Conversacions" - -#: ../../include/widgets.php:698 -msgid "Received Messages" -msgstr "Missatges Rebuts" - -#: ../../include/widgets.php:702 -msgid "Sent Messages" -msgstr "Missatges Enviats" - -#: ../../include/widgets.php:716 -msgid "No messages." -msgstr "Sense missatges." - -#: ../../include/widgets.php:734 -msgid "Delete conversation" -msgstr "Conversació esborrada" - -#: ../../include/widgets.php:760 -msgid "Events Tools" -msgstr "Eina d'Esdeveniments" - -#: ../../include/widgets.php:761 -msgid "Export Calendar" -msgstr "Exportar Calendari" - -#: ../../include/widgets.php:762 -msgid "Import Calendar" -msgstr "Importar Calendari" - -#: ../../include/widgets.php:840 -msgid "Overview" -msgstr "Visió General" - -#: ../../include/widgets.php:847 -msgid "Chat Members" -msgstr "Membres de la Sala de Xat" - -#: ../../include/widgets.php:869 -msgid "Wiki List" -msgstr "Llista de Wikis" - -#: ../../include/widgets.php:907 -msgid "Wiki Pages" -msgstr "Pàgines de Wikis" - -#: ../../include/widgets.php:942 -msgid "Bookmarked Chatrooms" -msgstr "Sales de Xat Favorites" - -#: ../../include/widgets.php:965 -msgid "Suggested Chatrooms" -msgstr "Sales de Xat Suggerides" - -#: ../../include/widgets.php:1111 ../../include/widgets.php:1223 -msgid "photo/image" -msgstr "foto/imatge" - -#: ../../include/widgets.php:1166 -msgid "Click to show more" -msgstr "Fes clic per veure més" - -#: ../../include/widgets.php:1317 -msgid "Rating Tools" -msgstr "Eines de Valoració" - -#: ../../include/widgets.php:1321 ../../include/widgets.php:1323 -msgid "Rate Me" -msgstr "Valora'm" - -#: ../../include/widgets.php:1326 -msgid "View Ratings" -msgstr "Veure Valoracions" - -#: ../../include/widgets.php:1410 -msgid "Forums" -msgstr "Forums" - -#: ../../include/widgets.php:1439 -msgid "Tasks" -msgstr "Tasques" - -#: ../../include/widgets.php:1448 -msgid "Documentation" -msgstr "Documentació" - -#: ../../include/widgets.php:1450 -msgid "Project/Site Information" -msgstr "Informació del Projecte/Lloc" - -#: ../../include/widgets.php:1451 -msgid "For Members" -msgstr "Per Membres" - -#: ../../include/widgets.php:1452 -msgid "For Administrators" -msgstr "Per Administradors" - -#: ../../include/widgets.php:1453 -msgid "For Developers" -msgstr "Per Desenvolupadors" - -#: ../../include/widgets.php:1477 ../../include/widgets.php:1515 -msgid "Member registrations waiting for confirmation" -msgstr "Una inscripció per a ser membre està esperant confirmació" - -#: ../../include/widgets.php:1483 -msgid "Inspect queue" -msgstr "Revisa cua" - -#: ../../include/widgets.php:1485 -msgid "DB updates" -msgstr "Actualitzacions de Base de Dades" - -#: ../../include/widgets.php:1511 -msgid "Plugin Features" -msgstr "Característiques del Plugin" - -#: ../../include/activities.php:41 -msgid " and " -msgstr "i" - -#: ../../include/activities.php:49 -msgid "public profile" -msgstr "Perfil públic" - -#: ../../include/activities.php:58 -#, php-format -msgid "%1$s changed %2$s to “%3$s”" -msgstr "%1$s canviat %2$s a “%3$s”" - -#: ../../include/activities.php:59 -#, php-format -msgid "Visit %1$s's %2$s" -msgstr "Visita %1$s en %2$s" - -#: ../../include/activities.php:62 -#, php-format -msgid "%1$s has an updated %2$s, changing %3$s." -msgstr "%1$s Ha actualitzat %2$s, canviant %3$s." - -#: ../../include/bb2diaspora.php:398 -msgid "Attachments:" -msgstr "Adjuntat:" - -#: ../../include/bb2diaspora.php:487 -msgid "$Projectname event notification:" -msgstr "Notificació d'esdeveniment de $Projectname" - #: ../../include/js_strings.php:5 msgid "Delete this item?" msgstr "Esborrar aquest item?" #: ../../include/js_strings.php:8 -#, php-format -msgid "%s show less" -msgstr "" +msgid "[-] show less" +msgstr "[-] mostra menys" #: ../../include/js_strings.php:9 -#, php-format -msgid "%s expand" -msgstr "" +msgid "[+] expand" +msgstr "[+] expandeix" #: ../../include/js_strings.php:10 -#, php-format -msgid "%s collapse" -msgstr "" +msgid "[-] collapse" +msgstr "[-] colapsa" #: ../../include/js_strings.php:11 msgid "Password too short" @@ -9612,223 +9361,278 @@ msgctxt "calendar" msgid "All day" msgstr "Tot el dia" -#: ../../include/contact_widgets.php:11 +#: ../../include/network.php:657 +msgid "view full size" +msgstr "Veure a mida competa" + +#: ../../include/network.php:1885 +msgid "No Subject" +msgstr "Sense Assumpte" + +#: ../../include/network.php:2146 ../../include/network.php:2147 +msgid "Friendica" +msgstr "Friendica" + +#: ../../include/network.php:2148 +msgid "OStatus" +msgstr "OStatus" + +#: ../../include/network.php:2149 +msgid "GNU-Social" +msgstr "GNU-Social" + +#: ../../include/network.php:2150 +msgid "RSS/Atom" +msgstr "RSS/Atom" + +#: ../../include/network.php:2152 +msgid "Diaspora" +msgstr "Diaspora" + +#: ../../include/network.php:2153 +msgid "Facebook" +msgstr "Facebook" + +#: ../../include/network.php:2154 +msgid "Zot" +msgstr "Zot" + +#: ../../include/network.php:2155 +msgid "LinkedIn" +msgstr "LinkedIn" + +#: ../../include/network.php:2156 +msgid "XMPP/IM" +msgstr "XMPP/IM" + +#: ../../include/network.php:2157 +msgid "MySpace" +msgstr "MySpace" + +#: ../../include/photos.php:110 #, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "%d invitació disponible" -msgstr[1] "%d invitacions disponibles" +msgid "Image exceeds website size limit of %lu bytes" +msgstr "La imatge excedeix la mida limit pel lloc web en %lu bytes" -#: ../../include/contact_widgets.php:19 -msgid "Find Channels" -msgstr "Troba Canals" +#: ../../include/photos.php:117 +msgid "Image file is empty." +msgstr "El fitxer d'imatge esta buit." -#: ../../include/contact_widgets.php:20 -msgid "Enter name or interest" -msgstr "Entra un nom o interes" +#: ../../include/photos.php:255 +msgid "Photo storage failed." +msgstr "Fracassà l'emmagatzematge de la Foto" -#: ../../include/contact_widgets.php:21 -msgid "Connect/Follow" -msgstr "Conecta/Segueix" +#: ../../include/photos.php:295 +msgid "a new photo" +msgstr "Una foto nova" -#: ../../include/contact_widgets.php:22 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "Exemples: Lionel Messi, Futbolista" - -#: ../../include/contact_widgets.php:26 -msgid "Random Profile" -msgstr "Perfil Aleatori" - -#: ../../include/contact_widgets.php:27 -msgid "Invite Friends" -msgstr "Convida Amics" - -#: ../../include/contact_widgets.php:29 -msgid "Advanced example: name=fred and country=iceland" -msgstr "Exemple avançat: nom=pep i pais=eire" - -#: ../../include/contact_widgets.php:122 +#: ../../include/photos.php:299 #, php-format -msgid "%d connection in common" -msgid_plural "%d connections in common" -msgstr[0] "%d connexió en comú" -msgstr[1] "%d connexions en comú" +msgctxt "photo_upload" +msgid "%1$s posted %2$s to %3$s" +msgstr "%1$s enviat %2$s a %3$s" -#: ../../include/contact_widgets.php:127 -msgid "show more" -msgstr "mostrar més" +#: ../../include/photos.php:506 +msgid "Upload New Photos" +msgstr "Puja Noves Fotos" -#: ../../include/dir_fns.php:141 -msgid "Directory Options" -msgstr "Opcions de Directori" - -#: ../../include/dir_fns.php:143 -msgid "Safe Mode" -msgstr "Manera Segura" - -#: ../../include/dir_fns.php:144 -msgid "Public Forums Only" -msgstr "Només Fòrums Públics" - -#: ../../include/dir_fns.php:145 -msgid "This Website Only" -msgstr "Només Aquest Lloc Web" - -#: ../../include/message.php:20 -msgid "No recipient provided." -msgstr "No s'ha proporcionat bústia." - -#: ../../include/message.php:25 -msgid "[no subject]" -msgstr "[no subject]" - -#: ../../include/message.php:45 -msgid "Unable to determine sender." -msgstr "incapaç de determinar el remitent" - -#: ../../include/message.php:222 -msgid "Stored post could not be verified." -msgstr "L'entrada guardada no pot ser verificada" - -#: ../../include/acl_selectors.php:269 -msgid "Who can see this?" -msgstr "Qui pot veure això?" - -#: ../../include/acl_selectors.php:270 -msgid "Custom selection" -msgstr "Selecció a mida" - -#: ../../include/acl_selectors.php:271 -msgid "" -"Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit" -" the scope of \"Show\"." -msgstr "Selecciona \"Mostrar\" per permetre la visualització. \"No Mostrar\" et permet obviar i limitar l'abast de \"Mostrar\"." - -#: ../../include/acl_selectors.php:272 -msgid "Show" -msgstr "Mostra" - -#: ../../include/acl_selectors.php:273 -msgid "Don't show" -msgstr "No mostrar" - -#: ../../include/acl_selectors.php:279 -msgid "Other networks and post services" -msgstr "Altres xarxes i serveis de correu" - -#: ../../include/acl_selectors.php:309 -#, php-format -msgid "" -"Post permissions %s cannot be changed %s after a post is shared.
These" -" permissions set who is allowed to view the post." -msgstr "Els permisos d'entrada %s no poden esser canviats %s posteriorment a que una entrada ja està compartida.
Aquest ajust dels permisos indica qui pot veure l'entrada." - -#: ../../include/datetime.php:135 -msgid "Birthday" -msgstr "Aniversari" - -#: ../../include/datetime.php:137 -msgid "Age: " -msgstr "Edat:" - -#: ../../include/datetime.php:139 -msgid "YYYY-MM-DD or MM-DD" -msgstr "YYYY-MM-DD o MM-DD" - -#: ../../include/datetime.php:272 ../../boot.php:2479 -msgid "never" -msgstr "mai" - -#: ../../include/datetime.php:278 -msgid "less than a second ago" -msgstr "fa menys d'un segon" - -#: ../../include/datetime.php:296 -#, php-format -msgctxt "e.g. 22 hours ago, 1 minute ago" -msgid "%1$d %2$s ago" -msgstr "Fa %1$d %2$s" - -#: ../../include/datetime.php:307 -msgctxt "relative_date" -msgid "year" -msgid_plural "years" -msgstr[0] "any" -msgstr[1] "anys" - -#: ../../include/datetime.php:310 -msgctxt "relative_date" -msgid "month" -msgid_plural "months" -msgstr[0] "mes" -msgstr[1] "mesos " - -#: ../../include/datetime.php:313 -msgctxt "relative_date" -msgid "week" -msgid_plural "weeks" -msgstr[0] "setmana" -msgstr[1] "setmanes" - -#: ../../include/datetime.php:316 -msgctxt "relative_date" -msgid "day" -msgid_plural "days" -msgstr[0] "dia" -msgstr[1] "dies" - -#: ../../include/datetime.php:319 -msgctxt "relative_date" -msgid "hour" -msgid_plural "hours" -msgstr[0] "hora" -msgstr[1] "hores" - -#: ../../include/datetime.php:322 -msgctxt "relative_date" -msgid "minute" -msgid_plural "minutes" -msgstr[0] "minut" -msgstr[1] "minuts" - -#: ../../include/datetime.php:325 -msgctxt "relative_date" -msgid "second" -msgid_plural "seconds" -msgstr[0] "segon" -msgstr[1] "segons" - -#: ../../include/datetime.php:562 -#, php-format -msgid "%1$s's birthday" -msgstr "Aniversari de %1$s" - -#: ../../include/datetime.php:563 -#, php-format -msgid "Happy Birthday %1$s" -msgstr "Feliç Aniversari %1$s" - -#: ../../include/api.php:1327 -msgid "Public Timeline" -msgstr "Línia de Temps Pública" - -#: ../../include/zot.php:697 +#: ../../include/zot.php:699 msgid "Invalid data packet" msgstr "paquet de dades invàlid" -#: ../../include/zot.php:713 +#: ../../include/zot.php:715 msgid "Unable to verify channel signature" msgstr "No es pot verificar la signatura del canal" -#: ../../include/zot.php:2326 +#: ../../include/zot.php:2363 #, php-format msgid "Unable to verify site signature for %s" msgstr "No es pot verificar la signatura del lloc per %s" -#: ../../include/zot.php:3703 +#: ../../include/zot.php:3712 msgid "invalid target signature" msgstr "Signatura objectiu invàlida" +#: ../../include/page_widgets.php:6 +msgid "New Page" +msgstr "Pàgina Nova" + +#: ../../include/page_widgets.php:43 +msgid "Title" +msgstr "Títol" + +#: ../../include/permissions.php:26 +msgid "Can view my normal stream and posts" +msgstr "Pot veure el flux i entrades normals" + +#: ../../include/permissions.php:27 +msgid "Can view my default channel profile" +msgstr "Pot veure el meu perfil del canal per defecte" + +#: ../../include/permissions.php:28 +msgid "Can view my connections" +msgstr "Pot veure les meves connexions" + +#: ../../include/permissions.php:29 +msgid "Can view my file storage and photos" +msgstr "Pot veure al meu magatzem d'arxius i fotos" + +#: ../../include/permissions.php:30 +msgid "Can view my webpages" +msgstr "Pot veure les meves pàgines web" + +#: ../../include/permissions.php:33 +msgid "Can send me their channel stream and posts" +msgstr "Pot enviar-me el flux i entrades del seu canal" + +#: ../../include/permissions.php:34 +msgid "Can post on my channel page (\"wall\")" +msgstr "Pot fer entrades a la meva pàgina de canal (\"mur\")" + +#: ../../include/permissions.php:35 +msgid "Can comment on or like my posts" +msgstr "Pot fer comentaris o dir si agrada en les meves entrades" + +#: ../../include/permissions.php:36 +msgid "Can send me private mail messages" +msgstr "Pot enviar-me un missatge de correu privat" + +#: ../../include/permissions.php:37 +msgid "Can like/dislike stuff" +msgstr "Pot dir si agrada/desagrada " + +#: ../../include/permissions.php:37 +msgid "Profiles and things other than posts/comments" +msgstr "Perfils i altres coses a més d'entrades/comentaris" + +#: ../../include/permissions.php:39 +msgid "Can forward to all my channel contacts via post @mentions" +msgstr "Ho pot enviar a tots els meus contactes del canal via entrades @mencions" + +#: ../../include/permissions.php:39 +msgid "Advanced - useful for creating group forum channels" +msgstr "Avançat - capaç de crear canals de grups de foro" + +#: ../../include/permissions.php:40 +msgid "Can chat with me (when available)" +msgstr "Pot xatejar amb mi (si estic disponible)" + +#: ../../include/permissions.php:41 +msgid "Can write to my file storage and photos" +msgstr "Pot escriure al meu magatzem d'arxius i fotos" + +#: ../../include/permissions.php:42 +msgid "Can edit my webpages" +msgstr "Pot editar les meves pàgines web" + +#: ../../include/permissions.php:44 +msgid "Can source my public posts in derived channels" +msgstr "Pot mostrar l'origen de les meves entrades públiques en altres canals" + +#: ../../include/permissions.php:44 +msgid "Somewhat advanced - very useful in open communities" +msgstr "Quelcom avançat - molt útil en comunitats obertes" + +#: ../../include/permissions.php:46 +msgid "Can administer my channel resources" +msgstr "Pot administrar els meus recursos del canal" + +#: ../../include/permissions.php:46 +msgid "" +"Extremely advanced. Leave this alone unless you know what you are doing" +msgstr "Extremadament avançat. No toquis res si no saps que estàs fent" + +#: ../../include/permissions.php:877 +msgid "Social Networking" +msgstr "Xarxes Socials" + +#: ../../include/permissions.php:877 +msgid "Social - Mostly Public" +msgstr "Social - Principalment Públic" + +#: ../../include/permissions.php:877 +msgid "Social - Restricted" +msgstr "Social - Restingit" + +#: ../../include/permissions.php:877 +msgid "Social - Private" +msgstr "Social - Privat" + +#: ../../include/permissions.php:878 +msgid "Community Forum" +msgstr "Foro de Comunitat" + +#: ../../include/permissions.php:878 +msgid "Forum - Mostly Public" +msgstr "Fòrum - Principalment Públic" + +#: ../../include/permissions.php:878 +msgid "Forum - Restricted" +msgstr "Fòrum - Restringit" + +#: ../../include/permissions.php:878 +msgid "Forum - Private" +msgstr "Fòrum - Privat" + +#: ../../include/permissions.php:879 +msgid "Feed Republish" +msgstr "Republicador" + +#: ../../include/permissions.php:879 +msgid "Feed - Mostly Public" +msgstr "Realimentador - Públic Principalment" + +#: ../../include/permissions.php:879 +msgid "Feed - Restricted" +msgstr "Retroalimentador - Restringit" + +#: ../../include/permissions.php:880 +msgid "Special Purpose" +msgstr "Objectiu Especial" + +#: ../../include/permissions.php:880 +msgid "Special - Celebrity/Soapbox" +msgstr "Espacial - Celebritat/Plataforma" + +#: ../../include/permissions.php:880 +msgid "Special - Group Repository" +msgstr "Especial - Repositori d'un Grup" + +#: ../../include/permissions.php:881 +msgid "Custom/Expert Mode" +msgstr "Personalitzat/Manera Experta" + +#: ../../include/activities.php:41 +msgid " and " +msgstr "i" + +#: ../../include/activities.php:49 +msgid "public profile" +msgstr "Perfil públic" + +#: ../../include/activities.php:58 +#, php-format +msgid "%1$s changed %2$s to “%3$s”" +msgstr "%1$s canviat %2$s a “%3$s”" + +#: ../../include/activities.php:59 +#, php-format +msgid "Visit %1$s's %2$s" +msgstr "Visita %1$s en %2$s" + +#: ../../include/activities.php:62 +#, php-format +msgid "%1$s has an updated %2$s, changing %3$s." +msgstr "%1$s Ha actualitzat %2$s, canviant %3$s." + +#: ../../include/bb2diaspora.php:398 +msgid "Attachments:" +msgstr "Adjuntat:" + +#: ../../include/bb2diaspora.php:487 +msgid "$Projectname event notification:" +msgstr "Notificació d'esdeveniment de $Projectname" + #: ../../view/theme/redbasic/php/config.php:82 msgid "Focus (Hubzilla default)" msgstr "Focus (Hubzilla per defecte)" @@ -9965,66 +9769,62 @@ msgstr "Ajusta la mida de la foto del autor a la conversa" msgid "Set size of followup author photos" msgstr "Ajusta la mida del seguidor de les fotos de l'autor" -#: ../../boot.php:1163 +#: ../../boot.php:1162 #, php-format msgctxt "opensearch" msgid "Search %1$s (%2$s)" msgstr "Cerca %1$s(%2$s)" -#: ../../boot.php:1163 +#: ../../boot.php:1162 msgctxt "opensearch" msgid "$Projectname" msgstr "$Projectname" -#: ../../boot.php:1481 +#: ../../boot.php:1480 #, php-format msgid "Update %s failed. See error logs." msgstr "L'actualització %s ha fallat. Mira el registre d'errors." -#: ../../boot.php:1484 +#: ../../boot.php:1483 #, php-format msgid "Update Error at %s" msgstr "Error d'Actualització a %s" -#: ../../boot.php:1685 +#: ../../boot.php:1684 msgid "" "Create an account to access services and applications within the Hubzilla" msgstr "Crea un compte per accedir als serveis i aplicacions dins de Hubzilla" #: ../../boot.php:1706 -msgid "Login/Email" -msgstr "" - -#: ../../boot.php:1707 msgid "Password" msgstr "Contrasenya" -#: ../../boot.php:1708 +#: ../../boot.php:1707 msgid "Remember me" msgstr "Recorda'm" -#: ../../boot.php:1711 +#: ../../boot.php:1710 msgid "Forgot your password?" msgstr "Has perdut la Contrasenya?" -#: ../../boot.php:2277 +#: ../../boot.php:2276 msgid "toggle mobile" msgstr "canvia a format per a mòbils" -#: ../../boot.php:2432 +#: ../../boot.php:2425 msgid "Website SSL certificate is not valid. Please correct." msgstr "El certificat SSL és invalid, soluciona-ho, si us plau." -#: ../../boot.php:2435 +#: ../../boot.php:2428 #, php-format msgid "[hubzilla] Website SSL error for %s" msgstr "[hubzilla] Error de SSL per la web %s" -#: ../../boot.php:2478 +#: ../../boot.php:2469 msgid "Cron/Scheduled tasks not running." msgstr "No s'estan executant les tasques programades al cron." -#: ../../boot.php:2482 +#: ../../boot.php:2473 #, php-format msgid "[hubzilla] Cron tasks not running on %s" msgstr "[hubzilla] Les tasques de Cron no rulen a %s" diff --git a/view/ca/hstrings.php b/view/ca/hstrings.php index d876aea80..7470f8c84 100644 --- a/view/ca/hstrings.php +++ b/view/ca/hstrings.php @@ -4,40 +4,8 @@ if(! function_exists("string_plural_select_ca")) { function string_plural_select_ca($n){ return ($n != 1);; }} -App::$rtl = 0; -App::$strings["Social Networking"] = "Xarxes Socials"; -App::$strings["Social - Mostly Public"] = "Social - Principalment Públic"; -App::$strings["Social - Restricted"] = "Social - Restingit"; -App::$strings["Social - Private"] = "Social - Privat"; -App::$strings["Community Forum"] = "Foro de Comunitat"; -App::$strings["Forum - Mostly Public"] = "Fòrum - Principalment Públic"; -App::$strings["Forum - Restricted"] = "Fòrum - Restringit"; -App::$strings["Forum - Private"] = "Fòrum - Privat"; -App::$strings["Feed Republish"] = "Republicador"; -App::$strings["Feed - Mostly Public"] = "Realimentador - Públic Principalment"; -App::$strings["Feed - Restricted"] = "Retroalimentador - Restringit"; -App::$strings["Special Purpose"] = "Objectiu Especial"; -App::$strings["Special - Celebrity/Soapbox"] = "Espacial - Celebritat/Plataforma"; -App::$strings["Special - Group Repository"] = "Especial - Repositori d'un Grup"; -App::$strings["Other"] = "Altres"; -App::$strings["Custom/Expert Mode"] = "Personalitzat/Manera Experta"; -App::$strings["Can view my channel stream and posts"] = ""; -App::$strings["Can send me their channel stream and posts"] = "Pot enviar-me el flux i entrades del seu canal"; -App::$strings["Can view my default channel profile"] = "Pot veure el meu perfil del canal per defecte"; -App::$strings["Can view my connections"] = "Pot veure les meves connexions"; -App::$strings["Can view my file storage and photos"] = "Pot veure al meu magatzem d'arxius i fotos"; -App::$strings["Can upload/modify my file storage and photos"] = ""; -App::$strings["Can view my channel webpages"] = ""; -App::$strings["Can create/edit my channel webpages"] = ""; -App::$strings["Can post on my channel (wall) page"] = ""; -App::$strings["Can comment on or like my posts"] = "Pot fer comentaris o dir si agrada en les meves entrades"; -App::$strings["Can send me private mail messages"] = "Pot enviar-me un missatge de correu privat"; -App::$strings["Can like/dislike profiles and profile things"] = ""; -App::$strings["Can forward to all my channel connections via @+ mentions in posts"] = ""; -App::$strings["Can chat with me"] = ""; -App::$strings["Can source my public posts in derived channels"] = "Pot mostrar l'origen de les meves entrades públiques en altres canals"; -App::$strings["Can administer my channel"] = ""; -App::$strings["parent"] = "amunt"; +; +App::$strings["parent"] = "pare"; App::$strings["Collection"] = "Col·lecció"; App::$strings["Principal"] = "Principal"; App::$strings["Addressbook"] = "Llista d'Adreçes"; @@ -69,8 +37,63 @@ App::$strings["Remote authentication blocked. You are logged into this site loca App::$strings["Welcome %s. Remote authentication successful."] = "Benvingut %s. Autenticació remota reeixida."; App::$strings["Requested profile is not available."] = "El perfil demanat no està disponible."; App::$strings["Some blurb about what to do when you're new here"] = "Algunes propostes sobre el que cal fer quan ets nou aquí"; +App::$strings["Block Name"] = "Nom del Bloc"; +App::$strings["Blocks"] = "Bloc"; +App::$strings["Block Title"] = "Títol del bloc"; +App::$strings["Created"] = "Creat"; +App::$strings["Edited"] = "Editat"; +App::$strings["Share"] = "Compartir"; +App::$strings["View"] = "Mostra"; +App::$strings["Channel not found."] = "Canal no trobat."; +App::$strings["Permissions denied."] = "Permís denegat."; +App::$strings["l, F j"] = "l, F j"; +App::$strings["Link to Source"] = "Enllaç a la Font"; +App::$strings["Edit Event"] = "Editar l'Esdeveniment"; +App::$strings["Create Event"] = "Crear Esdeveniment"; +App::$strings["Previous"] = "Anterior"; +App::$strings["Next"] = "Pròxim"; +App::$strings["Export"] = "Exporta"; +App::$strings["Import"] = "Importar"; +App::$strings["Submit"] = "Enviar"; +App::$strings["Today"] = "Avui"; +App::$strings["You must be logged in to see this page."] = "Has d'estar identificat per a veure aquesta pàgina."; +App::$strings["Posts and comments"] = "Entrades i comentaris"; +App::$strings["Only posts"] = "Només entrades"; +App::$strings["Insufficient permissions. Request redirected to profile page."] = "Permisos insuficients. Petició redirigida a la pàgina del perfil."; +App::$strings["Room not found"] = "No s'ha trobat la sala"; +App::$strings["Leave Room"] = "Abandona la sala"; +App::$strings["Delete Room"] = "Esborra Sala"; +App::$strings["I am away right now"] = "Absent"; +App::$strings["I am online"] = "Estic connectat/da"; +App::$strings["Bookmark this room"] = "Fes favorit aquest xat"; +App::$strings["Please enter a link URL:"] = "Si us plau entra l'enllaç URL:"; +App::$strings["Encrypt text"] = "Text encriptat"; +App::$strings["Insert web link"] = "Insereix enllaç web"; +App::$strings["Feature disabled."] = "Funcionalitat desactivada."; +App::$strings["New Chatroom"] = "Nova sala per a Xerrar"; +App::$strings["Chatroom name"] = "Nom de la sala de xat"; +App::$strings["Expiration of chats (minutes)"] = "Expiració dels chats (minuts)"; +App::$strings["Permissions"] = "Permisos "; +App::$strings["%1\$s's Chatrooms"] = "%1\$s de Xats"; +App::$strings["No chatrooms available"] = "No hi ha sales de xat disponibles"; +App::$strings["Create New"] = "Crear Nou"; +App::$strings["Expiration"] = "Expiració"; +App::$strings["min"] = "min"; App::$strings["Away"] = "Absent"; App::$strings["Online"] = "En connexió"; +App::$strings["Invalid item."] = "Article invàlid."; +App::$strings["Bookmark added"] = "Favorit afegit"; +App::$strings["My Bookmarks"] = "Els Meus Favorits"; +App::$strings["My Connections Bookmarks"] = "Les connexions dels meus Favorits"; +App::$strings["Continue"] = "Continua"; +App::$strings["Premium Channel Setup"] = "Configuració de Canals Premium"; +App::$strings["Enable premium channel connection restrictions"] = "Habilita les restriccions de connexió del canal premium"; +App::$strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = "Si us plau, introdueixi les restriccions o condicions, com ara el rebut de PayPal, les pautes d'ús, etc."; +App::$strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = "Aquest canal pot requerir passos addicionals o reconeixement de les següents condicions abans de connectar:"; +App::$strings["Potential connections will then see the following text before proceeding:"] = "Connexions potencials veuran el següent text abans de continuar:"; +App::$strings["By continuing, I certify that I have complied with any instructions provided on this page."] = "En continuar, certifico que he complert amb totes les instruccions proporcionades en aquesta pàgina."; +App::$strings["(No specific instructions have been provided by the channel owner.)"] = "(No s'han proporcionat instruccions específiques pel propietari del canal.)"; +App::$strings["Restricted or Premium Channel"] = "Canal Restringit o Premium"; App::$strings["Could not access contact record."] = "No s'ha pogut accedir al llibre de contactes."; App::$strings["Could not locate selected profile."] = "No s'ha trobat el perfil indicat."; App::$strings["Connection updated."] = "S'ha actualitzat la connexió."; @@ -135,7 +158,6 @@ App::$strings["Do not import posts with this text"] = "No importar entrades amb App::$strings["This information is public!"] = "Aquesta informació es pública!"; App::$strings["Connection Pending Approval"] = "Connexió Pendent d'Aprovació"; App::$strings["inherited"] = "heretat"; -App::$strings["Submit"] = "Enviar"; App::$strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Tria el perfil que vols mostrar a %s quan es vegi el perfil segur."; App::$strings["Their Settings"] = "Els seus Ajustos"; App::$strings["My Settings"] = "Els Meus Ajustos"; @@ -144,30 +166,6 @@ App::$strings["Some permissions may be inherited from your channel's privacy settings, which have higher priority than individual settings. You can change those settings here but they wont have any impact unless the inherited setting changes."] = "Alguns permisos poden ser heretats dels teus canals ajustos de privacitat, Els quals tenen més prioritat que els ajustos individuals. Pots canviar aquests ajustos aquí pero no tindran cap impacte fins que no canviis els ajustos heretats."; App::$strings["Last update:"] = "Darrera actualització:"; App::$strings["Public access denied."] = "Accés públic denegat."; -App::$strings["Item not found."] = "Element no trobat."; -App::$strings["First Name"] = "Nom"; -App::$strings["Last Name"] = "Cognoms"; -App::$strings["Nickname"] = "Àlies"; -App::$strings["Full Name"] = "Nom Sencer"; -App::$strings["Email"] = "Correu electrónic"; -App::$strings["Profile Photo"] = "Foto del Perfil"; -App::$strings["Profile Photo 16px"] = "Foto del Perfil 16px"; -App::$strings["Profile Photo 32px"] = "Foto del Perfil 32px"; -App::$strings["Profile Photo 48px"] = "Foto del Perfil 48px"; -App::$strings["Profile Photo 64px"] = "Foto del Perfil 64px"; -App::$strings["Profile Photo 80px"] = "Foto del Perfil 80px"; -App::$strings["Profile Photo 128px"] = "Foto del Perfil 128px"; -App::$strings["Timezone"] = "Zona horària"; -App::$strings["Homepage URL"] = "URL de la pàgina d'inici"; -App::$strings["Language"] = "Idioma"; -App::$strings["Birth Year"] = "Any de Naixement"; -App::$strings["Birth Month"] = "Mes de Naixement"; -App::$strings["Birth Day"] = "Dia de Naixement"; -App::$strings["Birthdate"] = "Aniversari"; -App::$strings["Gender"] = "Gènere"; -App::$strings["Male"] = "Masculí"; -App::$strings["Female"] = "Femení"; -App::$strings["Channel added."] = "S'ha afegit el canal."; App::$strings["%d rating"] = array( 0 => "%d valoració", 1 => "%d valoracions", @@ -198,74 +196,13 @@ App::$strings["Reverse Alphabetic"] = "Alfabètic Invers"; App::$strings["Newest to Oldest"] = "De més Nou a més Vell"; App::$strings["Oldest to Newest"] = "De més Antic a més Nou"; App::$strings["No entries (some entries may be hidden)."] = "Sense entrades (algunes podrien estar amagades)."; -App::$strings["Continue"] = "Continua"; -App::$strings["Premium Channel Setup"] = "Configuració de Canals Premium"; -App::$strings["Enable premium channel connection restrictions"] = "Habilita les restriccions de connexió del canal premium"; -App::$strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = "Si us plau, introdueixi les restriccions o condicions, com ara el rebut de PayPal, les pautes d'ús, etc."; -App::$strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = "Aquest canal pot requerir passos addicionals o reconeixement de les següents condicions abans de connectar:"; -App::$strings["Potential connections will then see the following text before proceeding:"] = "Connexions potencials veuran el següent text abans de continuar:"; -App::$strings["By continuing, I certify that I have complied with any instructions provided on this page."] = "En continuar, certifico que he complert amb totes les instruccions proporcionades en aquesta pàgina."; -App::$strings["(No specific instructions have been provided by the channel owner.)"] = "(No s'han proporcionat instruccions específiques pel propietari del canal.)"; -App::$strings["Restricted or Premium Channel"] = "Canal Restringit o Premium"; -App::$strings["Calendar entries imported."] = "Entrades de Calendari importades."; -App::$strings["No calendar entries found."] = "No es troben entrades decalendari."; -App::$strings["Event can not end before it has started."] = "L'esdeveniment ha de començar abans d'acabar."; -App::$strings["Unable to generate preview."] = "No s'ha pogut generar la vista prèvia."; -App::$strings["Event title and start time are required."] = "Cal indicar l'inici i el final de l'esdeveniment."; -App::$strings["Event not found."] = "No s'ha trobat l'esdeveniment."; -App::$strings["event"] = "succés"; -App::$strings["Edit event title"] = "Edita el títol d'esdeveniment"; -App::$strings["Event title"] = "Títol esdeveniment"; -App::$strings["Required"] = "Requerit"; -App::$strings["Categories (comma-separated list)"] = "Categories (llista separada per comes)"; -App::$strings["Edit Category"] = "Editar Categoria"; -App::$strings["Category"] = "Categoria"; -App::$strings["Edit start date and time"] = "Editar data i hora d'inici"; -App::$strings["Start date and time"] = "Data i hora d'inici"; -App::$strings["Finish date and time are not known or not relevant"] = "L'ora de finalització no es coneix o es irrelevant."; -App::$strings["Edit finish date and time"] = "Editar la data i hora de finalització"; -App::$strings["Finish date and time"] = "Data i hora de finalització"; -App::$strings["Adjust for viewer timezone"] = "Ajusta a la zona horària del visitant."; -App::$strings["Important for events that happen in a particular place. Not practical for global holidays."] = "És important per esdeveniments locals, però pels globals no és pràctic."; -App::$strings["Edit Description"] = "Editar la Descripció"; -App::$strings["Description"] = "Descripció"; -App::$strings["Edit Location"] = "Editar la localització"; -App::$strings["Location"] = "Localització"; -App::$strings["Share this event"] = "Comparteix aquest esdeveniment"; -App::$strings["Preview"] = "Avanç"; -App::$strings["Permission settings"] = "Ajustos de permisos"; -App::$strings["Advanced Options"] = "Opcions Avançades"; -App::$strings["l, F j"] = "l, j \\d\\e/\\d' F"; -App::$strings["Edit event"] = "Edita l'esdeveniment"; -App::$strings["Delete event"] = "Esborra l'esdeveniment"; -App::$strings["Link to Source"] = "Enllaç a la Font"; -App::$strings["calendar"] = "calendari"; -App::$strings["Edit Event"] = "Editar l'Esdeveniment"; -App::$strings["Create Event"] = "Crear Esdeveniment"; -App::$strings["Previous"] = "Anterior"; -App::$strings["Next"] = "Pròxim"; -App::$strings["Export"] = "Exporta"; -App::$strings["View"] = "Mostra"; -App::$strings["Month"] = ""; -App::$strings["Week"] = ""; -App::$strings["Day"] = ""; -App::$strings["Today"] = "Avui"; -App::$strings["Event removed"] = "S'ha eliminat l'esdeveniment"; -App::$strings["Failed to remove event"] = "No s'ha pogut esborrar l'esdeveniment"; -App::$strings["Bookmark added"] = "Favorit afegit"; -App::$strings["My Bookmarks"] = "Els Meus Favorits"; -App::$strings["My Connections Bookmarks"] = "Les connexions dels meus Favorits"; +App::$strings["Item not found."] = "Element no trobat."; App::$strings["Item not found"] = "No s'ha trobat l'element"; -App::$strings["Item is not editable"] = "Article no editable"; -App::$strings["Edit post"] = "Modifica l'entrada"; -App::$strings["Photos"] = "Fotos"; -App::$strings["Cancel"] = "Cancel·la"; -App::$strings["Invalid item."] = "Article invàlid."; -App::$strings["Channel not found."] = "Canal no trobat."; -App::$strings["Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."] = "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."; -App::$strings["Save to Folder:"] = "Guardar en la Carpeta"; -App::$strings["- select -"] = "- selecciona -"; -App::$strings["Save"] = "Guardar"; +App::$strings["Title (optional)"] = "Títol (opcional)"; +App::$strings["Edit Block"] = "Editar Bloc"; +App::$strings["No channel."] = "No s'ha trobat el canal"; +App::$strings["Common connections"] = "Connexions en comú"; +App::$strings["No connections in common."] = "No hi ha connexions en comú."; App::$strings["Blocked"] = "Bloquejades"; App::$strings["Ignored"] = "Ignorades"; App::$strings["Hidden"] = "Amagades"; @@ -317,38 +254,51 @@ App::$strings["select a photo from your photo albums"] = "tria una foto del teu App::$strings["Crop Image"] = "Retalla Imatge"; App::$strings["Please adjust the image cropping for optimum viewing."] = "Si us plau, retalla la imatge per a una optima visualització"; App::$strings["Done Editing"] = "Edició Feta"; -App::$strings["webpage"] = "pàgina web"; -App::$strings["block"] = "bloc"; -App::$strings["layout"] = "disposició"; -App::$strings["menu"] = "menú"; -App::$strings["%s element installed"] = "%s element instal·lat"; -App::$strings["%s element installation failed"] = "%s instal·lació d'element va fallar"; -App::$strings["Permissions denied."] = "Permís denegat."; -App::$strings["Import"] = "Importar"; +App::$strings["Item is not editable"] = "Article no editable"; +App::$strings["Edit post"] = "Modifica l'entrada"; +App::$strings["Calendar entries imported."] = "Entrades de Calendari importades."; +App::$strings["No calendar entries found."] = "No es troben entrades decalendari."; +App::$strings["Event can not end before it has started."] = "L'esdeveniment ha de començar abans d'acabar."; +App::$strings["Unable to generate preview."] = "No s'ha pogut generar la vista prèvia."; +App::$strings["Event title and start time are required."] = "Cal indicar l'inici i el final de l'esdeveniment."; +App::$strings["Event not found."] = "No s'ha trobat l'esdeveniment."; +App::$strings["event"] = "succés"; +App::$strings["Edit event title"] = "Edita el títol d'esdeveniment"; +App::$strings["Event title"] = "Títol esdeveniment"; +App::$strings["Required"] = "Requerit"; +App::$strings["Categories (comma-separated list)"] = "Categories (llista separada per comes)"; +App::$strings["Edit Category"] = "Editar Categoria"; +App::$strings["Category"] = "Categoria"; +App::$strings["Edit start date and time"] = "Editar data i hora d'inici"; +App::$strings["Start date and time"] = "Data i hora d'inici"; +App::$strings["Finish date and time are not known or not relevant"] = "L'ora de finalització no es coneix o es irrelevant."; +App::$strings["Edit finish date and time"] = "Editar la data i hora de finalització"; +App::$strings["Finish date and time"] = "Data i hora de finalització"; +App::$strings["Adjust for viewer timezone"] = "Ajusta a la zona horària del visitant."; +App::$strings["Important for events that happen in a particular place. Not practical for global holidays."] = "És important per esdeveniments locals, però pels globals no és pràctic."; +App::$strings["Edit Description"] = "Editar la Descripció"; +App::$strings["Description"] = "Descripció"; +App::$strings["Edit Location"] = "Editar la localització"; +App::$strings["Location"] = "Localització"; +App::$strings["Share this event"] = "Comparteix aquest esdeveniment"; +App::$strings["Preview"] = "Avanç"; +App::$strings["Permission settings"] = "Ajustos de permisos"; +App::$strings["Advanced Options"] = "Opcions Avançades"; +App::$strings["Edit event"] = "Edita l'esdeveniment"; +App::$strings["Delete event"] = "Esborra l'esdeveniment"; +App::$strings["calendar"] = "calendari"; +App::$strings["Event removed"] = "S'ha eliminat l'esdeveniment"; +App::$strings["Failed to remove event"] = "No s'ha pogut esborrar l'esdeveniment"; +App::$strings["Photos"] = "Fotos"; +App::$strings["Cancel"] = "Cancel·la"; App::$strings["This site is not a directory server"] = "Aquest lloc web no és un servidor de directori"; App::$strings["This directory server requires an access token"] = "Aquest servidor de directori requereix un token de accès"; -App::$strings["You must be logged in to see this page."] = "Has d'estar identificat per a veure aquesta pàgina."; -App::$strings["Room not found"] = "No s'ha trobat la sala"; -App::$strings["Leave Room"] = "Abandona la sala"; -App::$strings["Delete Room"] = "Esborra Sala"; -App::$strings["I am away right now"] = "Absent"; -App::$strings["I am online"] = "Estic connectat/da"; -App::$strings["Bookmark this room"] = "Fes favorit aquest xat"; -App::$strings["Please enter a link URL:"] = "Si us plau entra l'enllaç URL:"; -App::$strings["Encrypt text"] = "Text encriptat"; -App::$strings["Insert web link"] = "Insereix enllaç web"; -App::$strings["Feature disabled."] = "Funcionalitat desactivada."; -App::$strings["New Chatroom"] = "Nova sala per a Xerrar"; -App::$strings["Chatroom name"] = "Nom de la sala de xat"; -App::$strings["Expiration of chats (minutes)"] = "Expiració dels chats (minuts)"; -App::$strings["Permissions"] = "Permisos "; -App::$strings["%1\$s's Chatrooms"] = "%1\$s de Xats"; -App::$strings["No chatrooms available"] = "No hi ha sales de xat disponibles"; -App::$strings["Create New"] = "Crear Nou"; -App::$strings["Expiration"] = "Expiració"; -App::$strings["min"] = "min"; +App::$strings["Save to Folder:"] = "Guardar en la Carpeta"; +App::$strings["- select -"] = "- selecciona -"; +App::$strings["Save"] = "Guardar"; App::$strings["Invalid message"] = "Missatge invàlid."; App::$strings["no results"] = "sense resultats"; +App::$strings["Delivery report for %1\$s"] = "Informe de lliurament per %1\$s"; App::$strings["channel sync processed"] = "sincronització del canal processada"; App::$strings["queued"] = "Posat en cua"; App::$strings["posted"] = "enviat"; @@ -360,14 +310,14 @@ App::$strings["recipient not found"] = "Contenidor no trobat"; App::$strings["mail recalled"] = "Recupera el correu"; App::$strings["duplicate mail received"] = "rebut correu duplicat"; App::$strings["mail delivered"] = "correu entregat"; -App::$strings["Delivery report for %1\$s"] = "Informe de lliurament per %1\$s"; -App::$strings["Options"] = ""; -App::$strings["Redeliver"] = ""; App::$strings["Layout Name"] = "Nom del Format Gràfic"; App::$strings["Layout Description (Optional)"] = "Descripció del Format (Opcional)"; App::$strings["Edit Layout"] = "Edita Format Gràfic"; App::$strings["Page link"] = "Enllaç de la pàgina"; App::$strings["Edit Webpage"] = "Edita la Pàgina Web"; +App::$strings["Channel added."] = "S'ha afegit el canal."; +App::$strings["network"] = "xarxa"; +App::$strings["RSS"] = "RSS"; App::$strings["Privacy group created."] = "Creat grup privat."; App::$strings["Could not create privacy group."] = "No es pot crear el grup privat."; App::$strings["Privacy group not found."] = "No es troben grups privats."; @@ -381,33 +331,16 @@ App::$strings["Privacy group editor"] = "Editor del grup privat"; App::$strings["Members"] = "Membres"; App::$strings["All Connected Channels"] = "Tots els Canals Connectats"; App::$strings["Click on a channel to add or remove."] = "Clic sobre el canal per afegir o esborrar."; -App::$strings["App installed."] = "Aplicació instal·lada."; -App::$strings["Malformed app."] = "Aplicació amb errors"; -App::$strings["Embed code"] = "Codi embegut"; -App::$strings["Edit App"] = "Edita l'Aplicació"; -App::$strings["Create App"] = "Crea l'Aplicació"; -App::$strings["Name of app"] = "Nom de l'Aplicació"; -App::$strings["Location (URL) of app"] = "Ubicació (URL) de l'aplicació"; -App::$strings["Photo icon URL"] = "Foto icona URL"; -App::$strings["80 x 80 pixels - optional"] = "80 x 80 pixels - opcional"; -App::$strings["Categories (optional, comma separated list)"] = "Categories (opcional, lista separada per comes)"; -App::$strings["Version ID"] = "Versió ID"; -App::$strings["Price of app"] = "Preu de l'aplicació"; -App::$strings["Location (URL) to purchase app"] = "Ubicació (URL) per comprar l'aplicació"; +App::$strings["Share content from Firefox to \$Projectname"] = "Compartir contingut des de Firefox a \$Projectname"; +App::$strings["Activate the Firefox \$Projectname provider"] = "Activar el proveïdor de \$Projectname a Firefox"; +App::$strings["Authorize application connection"] = "Autoritza la connexió de l'aplicació"; +App::$strings["Return to your app and insert this Securty Code:"] = "Torna a la teva aplicació i insereix aquest Codi de Seguretat:"; +App::$strings["Please login to continue."] = "Si et plau, identifica't per continuar."; +App::$strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Vols autoritzar a aquesta aplicació l'accés a les teves entrades i contactes i/o a crear noves entrades com si fos tu mateix."; App::$strings["Documentation Search"] = "Cerca de Documentació"; App::$strings["Help:"] = "Ajuda:"; App::$strings["Help"] = "Ajuda"; App::$strings["\$Projectname Documentation"] = "\$Projectname Documentació"; -App::$strings["Item not available."] = "Article no disponible."; -App::$strings["Layout updated."] = "S'ha actualitzat la disposició."; -App::$strings["Edit System Page Description"] = "Editor del Sistema de Descripció de Pàgines"; -App::$strings["Layout not found."] = "No s'ha trobat cap disposició de pàgina."; -App::$strings["Module Name:"] = "Nom del mòdul:"; -App::$strings["Layout Help"] = "Ajuda per la disposició de pàgina"; -App::$strings["Share content from Firefox to \$Projectname"] = "Compartir contingut des de Firefox a \$Projectname"; -App::$strings["Activate the Firefox \$Projectname provider"] = "Activar el proveïdor de \$Projectname a Firefox"; -App::$strings["network"] = "xarxa"; -App::$strings["RSS"] = "RSS"; App::$strings["Permission Denied."] = "Permisos Denegats."; App::$strings["File not found."] = "Arxiu no torbat."; App::$strings["Edit file permissions"] = "Edita els permisos d'arxiu"; @@ -419,100 +352,8 @@ App::$strings["Copy/paste this URL to link file from a web page"] = "Copia/engan App::$strings["Share this file"] = "Comparteix l'arxiu"; App::$strings["Show URL to this file"] = "Mostra la URL d'aquest arxiu"; App::$strings["Notify your contacts about this file"] = "Notifica als teus contactes aquest arxiu"; -App::$strings["Layouts"] = "Format Gràfic"; -App::$strings["Comanche page description language help"] = "Pgina d'ajuda del llenguatge Comanche"; -App::$strings["Layout Description"] = "Descripció del Disseny de la Pàgina"; -App::$strings["Created"] = "Creat"; -App::$strings["Edited"] = "Editat"; -App::$strings["Share"] = "Compartir"; -App::$strings["Download PDL file"] = "Descarrega l'arxiu PDL"; -App::$strings["Like/Dislike"] = "M'agrada / No m'agrada"; -App::$strings["This action is restricted to members."] = "Aquesta acció està restringida als membres."; -App::$strings["Please login with your \$Projectname ID or register as a new \$Projectname member to continue."] = "Entra amb la teva identitat \$Projectname o registra't a \$Projectname per continuar."; -App::$strings["Invalid request."] = "Sol·licitud invàlida."; -App::$strings["channel"] = "canal"; -App::$strings["thing"] = "cosa"; -App::$strings["Channel unavailable."] = "El canal està inactiu."; -App::$strings["Previous action reversed."] = "S'ha desfet l'acció anterior."; -App::$strings["photo"] = "foto"; -App::$strings["status"] = "estat"; -App::$strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s agrada %2\$s de %3\$s"; -App::$strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s no agrada %2\$s de %3\$s"; -App::$strings["%1\$s agrees with %2\$s's %3\$s"] = "%1\$s està d'acord amb %3\$s de %2\$s"; -App::$strings["%1\$s doesn't agree with %2\$s's %3\$s"] = "%1\$s no està d'acord amb %3\$s de %2\$s"; -App::$strings["%1\$s abstains from a decision on %2\$s's %3\$s"] = "%1\$s s'abstén en %3\$s de %2\$s"; -App::$strings["%1\$s is attending %2\$s's %3\$s"] = "%1\$s assistirà a %3\$s de %2\$s"; -App::$strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$s no assistirà a %3\$s de %2\$s"; -App::$strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$s potser assistirà a %3\$s de %2\$s"; -App::$strings["Action completed."] = "S'ha completat l'acció."; -App::$strings["Thank you."] = "Gràcies."; -App::$strings["Profile not found."] = "Perfil no trobat."; -App::$strings["Profile deleted."] = "Perfil eliminat."; -App::$strings["Profile-"] = "Perfil-"; -App::$strings["New profile created."] = "Nou perfil creat."; -App::$strings["Profile unavailable to clone."] = "Perfil que no es pot clonar."; -App::$strings["Profile unavailable to export."] = "Perfil que no es pot exportar."; -App::$strings["Profile Name is required."] = "Es requereix el Nom del Perfil."; -App::$strings["Marital Status"] = "Estat Marital"; -App::$strings["Romantic Partner"] = "Company/a Romàntic"; -App::$strings["Likes"] = "Agrada"; -App::$strings["Dislikes"] = "Desagrada"; -App::$strings["Work/Employment"] = "Treball/Feina"; -App::$strings["Religion"] = "Religió"; -App::$strings["Political Views"] = "Idees Polítiques"; -App::$strings["Sexual Preference"] = "Preferència Sexual"; -App::$strings["Homepage"] = "Pàgina Personal"; -App::$strings["Interests"] = "Interessos"; -App::$strings["Address"] = "Adreça"; -App::$strings["Profile updated."] = "Perfil actualitzat."; -App::$strings["Hide your connections list from viewers of this profile"] = "Amaga dels curiosos la teva llista de connexions d'aquest perfil"; -App::$strings["Edit Profile Details"] = "Edita els Detalls del Perfil"; -App::$strings["View this profile"] = "Veure aquest perfil"; -App::$strings["Edit visibility"] = "Editar visibilitat"; -App::$strings["Profile Tools"] = "Eines per Perfils"; -App::$strings["Change cover photo"] = "Canviar la foto de portada"; -App::$strings["Change profile photo"] = "Canviar la foto del perfil"; -App::$strings["Create a new profile using these settings"] = "Crea un perfil nou amb aquests ajustos"; -App::$strings["Clone this profile"] = "Clonar aquest perfil"; -App::$strings["Delete this profile"] = "Elimina aquest perfil"; -App::$strings["Add profile things"] = "Afegeix coses al perfil"; -App::$strings["Personal"] = "Personal"; -App::$strings["Relation"] = "Relació"; -App::$strings["Miscellaneous"] = "Miscelania"; -App::$strings["Import profile from file"] = "Importa perfil des d'un arxiu"; -App::$strings["Export profile to file"] = "Exporta perfil a un arxiu"; -App::$strings["Your gender"] = "El teu gènere"; -App::$strings["Marital status"] = "Estat marital"; -App::$strings["Sexual preference"] = "Preferència sexual"; -App::$strings["Profile name"] = "Nom del perfil"; -App::$strings["This is your default profile."] = "Aquest es el teu perfil per defecte"; -App::$strings["Your full name"] = "El teu nom complet"; -App::$strings["Title/Description"] = "Títol/Descripció"; -App::$strings["Street address"] = "Carrer"; -App::$strings["Locality/City"] = "Població/Ciutat"; -App::$strings["Region/State"] = "Regió/Estat"; -App::$strings["Postal/Zip code"] = "Codi Postal"; -App::$strings["Country"] = "País"; -App::$strings["Who (if applicable)"] = "Qui (si es aplicable)"; -App::$strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Examples: cathy123, Cathy Williams, cathy@example.com"; -App::$strings["Since (date)"] = "Des de (data)"; -App::$strings["Tell us about yourself"] = "Quelcom sobre tu"; -App::$strings["Hometown"] = "Ciutat Natal"; -App::$strings["Political views"] = "Idees polítiques"; -App::$strings["Religious views"] = "Creences religioses"; -App::$strings["Keywords used in directory listings"] = "Paraules clau emprades en els llistats de directoris"; -App::$strings["Example: fishing photography software"] = "Exemple: software de fotografia submarina"; -App::$strings["Musical interests"] = "Interessos Musicals"; -App::$strings["Books, literature"] = "Llibres, literatura"; -App::$strings["Television"] = "Televisió"; -App::$strings["Film/Dance/Culture/Entertainment"] = "Pel·lícules/Dansa/Cultura/Entreteniment"; -App::$strings["Hobbies/Interests"] = "Aficions/Interessos"; -App::$strings["Love/Romance"] = "Amor/Romace"; -App::$strings["School/Education"] = "Escola/Educació"; -App::$strings["Contact information and social networks"] = "Informació de contacte i xarxes socials"; -App::$strings["My other channels"] = "Els meus altres canals"; -App::$strings["Profile Image"] = "Imatge del Perfil"; -App::$strings["Edit Profiles"] = "Editar Perfils"; +App::$strings["Apps"] = "Aplicatius"; +App::$strings["Item not available."] = "Article no disponible."; App::$strings["Your service plan only allows %d channels."] = "El teu paquet de serveis només admet %d canals."; App::$strings["Nothing to import."] = "No hi ha res a importar."; App::$strings["Unable to download data from old server"] = "No s'han pogut descarregar les dades del servidor antic"; @@ -533,8 +374,6 @@ App::$strings["For either option, please choose whether to make this hub your ne App::$strings["Make this hub my primary location"] = "Fes d'aquest node la meva ubicació primària"; App::$strings["Import existing posts if possible (experimental - limited by available memory"] = "Importa les entrades existents si es possible (experimental - limitat per la memòria disponible"; App::$strings["This process may take several minutes to complete. Please submit the form only once and leave this page open until finished."] = "Aquest procès pot trigar minuts en completar. Si et plau envia el formulari només una vegada i manté aquesta pàgina oberta fins que finalitzi."; -App::$strings["\$Projectname"] = "\$Projectname"; -App::$strings["Welcome to %s"] = "Benvingut a %s"; App::$strings["Unable to locate original post."] = "No s'ha pogut trobar l'entrada original."; App::$strings["Empty post discarded."] = "S'ha descartat l'entrada perquè no té contingut."; App::$strings["Executable content type not permitted to this channel."] = "No està permès el contingut de tipus executable en aquest canal."; @@ -543,6 +382,229 @@ App::$strings["System error. Post not saved."] = "Hi ha hagut un error del siste App::$strings["Unable to obtain post information from database."] = "No s'ha pogut obtenir informació de l'entrada a la base de dades."; App::$strings["You have reached your limit of %1$.0f top level posts."] = "Has assolit el teu límit de %1$.0f entrades (descomptant comentaris)."; App::$strings["You have reached your limit of %1$.0f webpages."] = "Has assolit el teu limit de %1$.0f pàgines web."; +App::$strings["Layouts"] = "Format Gràfic"; +App::$strings["Comanche page description language help"] = "Pgina d'ajuda del llenguatge Comanche"; +App::$strings["Layout Description"] = "Descripció del Disseny de la Pàgina"; +App::$strings["Download PDL file"] = "Descarrega l'arxiu PDL"; +App::$strings["\$Projectname"] = "\$Projectname"; +App::$strings["Welcome to %s"] = "Benvingut a %s"; +App::$strings["First Name"] = "Nom"; +App::$strings["Last Name"] = "Cognoms"; +App::$strings["Nickname"] = "Àlies"; +App::$strings["Full Name"] = "Nom Sencer"; +App::$strings["Email"] = "Correu electrónic"; +App::$strings["Profile Photo"] = "Foto del Perfil"; +App::$strings["Profile Photo 16px"] = "Foto del Perfil 16px"; +App::$strings["Profile Photo 32px"] = "Foto del Perfil 32px"; +App::$strings["Profile Photo 48px"] = "Foto del Perfil 48px"; +App::$strings["Profile Photo 64px"] = "Foto del Perfil 64px"; +App::$strings["Profile Photo 80px"] = "Foto del Perfil 80px"; +App::$strings["Profile Photo 128px"] = "Foto del Perfil 128px"; +App::$strings["Timezone"] = "Zona horària"; +App::$strings["Homepage URL"] = "URL de la pàgina d'inici"; +App::$strings["Language"] = "Idioma"; +App::$strings["Birth Year"] = "Any de Naixement"; +App::$strings["Birth Month"] = "Mes de Naixement"; +App::$strings["Birth Day"] = "Dia de Naixement"; +App::$strings["Birthdate"] = "Aniversari"; +App::$strings["Gender"] = "Gènere"; +App::$strings["Male"] = "Masculí"; +App::$strings["Female"] = "Femení"; +App::$strings["webpage"] = "pàgina web"; +App::$strings["block"] = "bloc"; +App::$strings["layout"] = "disposició"; +App::$strings["menu"] = "menú"; +App::$strings["%s element installed"] = "%s element instal·lat"; +App::$strings["%s element installation failed"] = "%s instal·lació d'element va fallar"; +App::$strings["Like/Dislike"] = "M'agrada / No m'agrada"; +App::$strings["This action is restricted to members."] = "Aquesta acció està restringida als membres."; +App::$strings["Please login with your \$Projectname ID or register as a new \$Projectname member to continue."] = "Entra amb la teva identitat \$Projectname o registra't a \$Projectname per continuar."; +App::$strings["Invalid request."] = "Sol·licitud invàlida."; +App::$strings["channel"] = "canal"; +App::$strings["thing"] = "cosa"; +App::$strings["Channel unavailable."] = "El canal està inactiu."; +App::$strings["Previous action reversed."] = "S'ha desfet l'acció anterior."; +App::$strings["photo"] = "foto"; +App::$strings["status"] = "estat"; +App::$strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s agrada %2\$s de %3\$s"; +App::$strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s no agrada %2\$s de %3\$s"; +App::$strings["%1\$s agrees with %2\$s's %3\$s"] = "%1\$s està d'acord amb %3\$s de %2\$s"; +App::$strings["%1\$s doesn't agree with %2\$s's %3\$s"] = "%1\$s no està d'acord amb %3\$s de %2\$s"; +App::$strings["%1\$s abstains from a decision on %2\$s's %3\$s"] = "%1\$s s'abstén en %3\$s de %2\$s"; +App::$strings["%1\$s is attending %2\$s's %3\$s"] = "%1\$s assistirà a %3\$s de %2\$s"; +App::$strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$s no assistirà a %3\$s de %2\$s"; +App::$strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$s potser assistirà a %3\$s de %2\$s"; +App::$strings["Action completed."] = "S'ha completat l'acció."; +App::$strings["Thank you."] = "Gràcies."; +App::$strings["Import completed"] = "S'ha completat la importació"; +App::$strings["Import Items"] = "Importa Articles"; +App::$strings["Use this form to import existing posts and content from an export file."] = "Empra aquest formulari per importar entrades existents i contingut d'un arxiu d'exportació."; +App::$strings["Total invitation limit exceeded."] = "El límit total invitacions s'ha superat."; +App::$strings["%s : Not a valid email address."] = "%s: adreça de correu electrònic no vàlida."; +App::$strings["Please join us on \$Projectname"] = "Si us plau uneix-te a nosaltres a \$Projectname."; +App::$strings["Invitation limit exceeded. Please contact your site administrator."] = "Límit d'invitacions excedit. Si us plau, poseu-vos en contacte amb l'administrador del lloc."; +App::$strings["%s : Message delivery failed."] = "%s : Entrega del Missatge fallida."; +App::$strings["%d message sent."] = array( + 0 => "%d missatge enviat.", + 1 => "%d missatges enviats.", +); +App::$strings["You have no more invitations available"] = "No té més invitacions disponibles"; +App::$strings["Send invitations"] = "Enviar invitacions"; +App::$strings["Enter email addresses, one per line:"] = "Introduïu les adreces de correu electrònic, una per línia:"; +App::$strings["Your message:"] = "El teu missatge:"; +App::$strings["Please join my community on \$Projectname."] = "Si us plau uneix-te la meva comunitat en \$Projectname."; +App::$strings["You will need to supply this invitation code:"] = "Hauràs de facilitar aquest codi d'invitació:"; +App::$strings["1. Register at any \$Projectname location (they are all inter-connected)"] = "1. Pots registrar-te a qualsevol node de \$Projectname (estàn tots interconnectats)"; +App::$strings["2. Enter my \$Projectname network address into the site searchbar."] = "2. Escriu la meva adreça de xarxa al \$Projectname, a la barra de cerca del lloc."; +App::$strings["or visit"] = "o visitar"; +App::$strings["3. Click [Connect]"] = "3. Clicar [Conectar]"; +App::$strings["Remote privacy information not available."] = "informació privada remota no disponible."; +App::$strings["Visible to:"] = "Visible per:"; +App::$strings["Location not found."] = "Situació que no es troba."; +App::$strings["Location lookup failed."] = "Ha fallat la cerca d'ubicació."; +App::$strings["Please select another location to become primary before removing the primary location."] = "Seleccioneu una altra ubicació per esdevenir primària abans de retirar la ubicació principal."; +App::$strings["Syncing locations"] = "Sincronitza ubicacions"; +App::$strings["No locations found."] = "No es troben els llocs."; +App::$strings["Manage Channel Locations"] = "Gestionar Ubicacions de Canal"; +App::$strings["Address"] = "Adreça"; +App::$strings["Primary"] = "Primari"; +App::$strings["Drop"] = "Menysprea"; +App::$strings["Sync Now"] = "Sincronitza Ara"; +App::$strings["Please wait several minutes between consecutive operations."] = "Si us plau espera diversos minuts entre operacions consecutives."; +App::$strings["When possible, drop a location by logging into that website/hub and removing your channel."] = "Quan sigui possible, per desapareixer d'un lloc, accedeix a aquest lloc web/node i elimina el teu canal."; +App::$strings["Use this form to drop the location if the hub is no longer operating."] = "Empra aquest formulari per desapareixer del lloc si el node ja no està operatiu."; +App::$strings["Hub not found."] = "Node no trobat."; +App::$strings["Unable to lookup recipient."] = "Incapaç de trobar el destinatari."; +App::$strings["Unable to communicate with requested channel."] = "Incapaç de comunicar amb el canal demanat."; +App::$strings["Cannot verify requested channel."] = "No puc verificar el canal demanat."; +App::$strings["Selected channel has private message restrictions. Send failed."] = "El canal seleccionat te restriccions sobre els missatges privats. L'enviament ha fallat."; +App::$strings["Messages"] = "Missatges"; +App::$strings["Message recalled."] = "Recupera el missatge."; +App::$strings["Conversation removed."] = "Conversació eliminada."; +App::$strings["Expires YYYY-MM-DD HH:MM"] = "Expira YYYY-MM-DD HH:MM"; +App::$strings["Requested channel is not in this network"] = "El canal demanat no hi es en questa xarxa"; +App::$strings["Send Private Message"] = "Envia Missatge Privat"; +App::$strings["To:"] = "Per:"; +App::$strings["Subject:"] = "Assumpte:"; +App::$strings["Attach file"] = "Adjunta arxiu"; +App::$strings["Send"] = "Envia"; +App::$strings["Set expiration date"] = "Ajusta la data d'expiració"; +App::$strings["Delete message"] = "Elimina el missatge"; +App::$strings["Delivery report"] = "Informe d'entrega"; +App::$strings["Recall message"] = "Recupera el missatge"; +App::$strings["Message has been recalled."] = "El missatge s'ha recuperat."; +App::$strings["Delete Conversation"] = "Conversació esborrada"; +App::$strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Comunicació segura no disponible. Pots respondre des de la pàgina de perfil del remitent."; +App::$strings["Send Reply"] = "Envia Resposta"; +App::$strings["Your message for %s (%s):"] = "El teu missatge per %s (%s):"; +App::$strings["You have created %1$.0f of %2$.0f allowed channels."] = "Has creat %1$.0f de %2$.0f canals permesos."; +App::$strings["Create a new channel"] = "Crear un nou canal"; +App::$strings["Channel Manager"] = "Gestor de Canals"; +App::$strings["Current Channel"] = "Canal Actual"; +App::$strings["Switch to one of your channels by selecting it."] = "Canviar a un altre dels teus canals seleccionant-ho."; +App::$strings["Default Channel"] = "Canal per Defecte"; +App::$strings["Make Default"] = "Estableix com a Predeterminat"; +App::$strings["%d new messages"] = "%d missatges nous"; +App::$strings["%d new introductions"] = "%d noves presentacions"; +App::$strings["Delegated Channel"] = "Canal Delegat"; +App::$strings["No valid account found."] = "No es troba un compte vàlid."; +App::$strings["Password reset request issued. Check your email."] = "Sol·licitud de restabliment de contrasenya emesa. Consulta el teu correu electrònic."; +App::$strings["Site Member (%s)"] = "Lloc d'Usuari (%s)"; +App::$strings["Password reset requested at %s"] = "S'ha soŀlicitat restablir la contrasenya al hub %s"; +App::$strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Ha fallat el restabliment de contrasenya perquè la no s'ha pogut verificar soŀlicitud. Pot ser que ja ho hàgiu soŀlicitat abans."; +App::$strings["Password Reset"] = "Restabliment de contrasenya"; +App::$strings["Your password has been reset as requested."] = "S'ha restablert la vostra contrasenya."; +App::$strings["Your new password is"] = "La nova contrasenya és"; +App::$strings["Save or copy your new password - and then"] = "Desa o copia la nova contrasenya, i després"; +App::$strings["click here to login"] = "fes clic aquí per iniciar sessió"; +App::$strings["Your password may be changed from the Settings page after successful login."] = "Pots canviar la contrasenya a la pàgina Paràmetres, un cop iniciada la sessió."; +App::$strings["Your password has changed at %s"] = "La teva contrasenya a %s ha canviat"; +App::$strings["Forgot your Password?"] = "No recordes la contrasenya?"; +App::$strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Escriu la teva adreça de correu electrònic i envia per restablir la contrasenya. Després revisa el seu correu electrònic per obtenir més instruccions."; +App::$strings["Email Address"] = "Adreça electrònica"; +App::$strings["Reset"] = "Reajustar"; +App::$strings["Unable to update menu."] = "No s'ha pogut actualitzar el menú."; +App::$strings["Unable to create menu."] = "No s'ha pogut crear el menú."; +App::$strings["Menu Name"] = "Nom del menú"; +App::$strings["Unique name (not visible on webpage) - required"] = "Nom únic (no visible a la pàgina web) - requerit"; +App::$strings["Menu Title"] = "Títol del menú"; +App::$strings["Visible on webpage - leave empty for no title"] = "Visible a la pàgina web - deixar buit per a no posar títol"; +App::$strings["Allow Bookmarks"] = "Permetre Marcadors"; +App::$strings["Menu may be used to store saved bookmarks"] = "El menú es pot emprar per a guardar marcadors"; +App::$strings["Submit and proceed"] = "Envia i procedeix"; +App::$strings["Menus"] = "Menús"; +App::$strings["Bookmarks allowed"] = "Marcadors permesos"; +App::$strings["Delete this menu"] = "Esborra el menú"; +App::$strings["Edit menu contents"] = "Edita el contingut del menú"; +App::$strings["Edit this menu"] = "Edita el menú"; +App::$strings["Menu could not be deleted."] = "El menu no es pot esborrar."; +App::$strings["Menu not found."] = "Menú no trobat."; +App::$strings["Edit Menu"] = "Edita Menú"; +App::$strings["Add or remove entries to this menu"] = "Afegeix o esborra entrades a aquest menú"; +App::$strings["Menu name"] = "Nom del Menú"; +App::$strings["Must be unique, only seen by you"] = "Ha de ser únic, nomes vist per tú"; +App::$strings["Menu title"] = "Títol del menú"; +App::$strings["Menu title as seen by others"] = "Títol del menú vist pels altres"; +App::$strings["Allow bookmarks"] = "Marcadors permesos"; +App::$strings["Not found."] = "No trobat."; +App::$strings["__ctx:mood__ %1\$s is %2\$s"] = "%1\$s es %2\$s"; +App::$strings["Mood"] = "Ànim"; +App::$strings["Set your current mood and tell your friends"] = "Estableix el teu estat d'ànim actual i digues-li als teus amics"; +App::$strings["Profile Match"] = "Perfils compatibles"; +App::$strings["No keywords to match. Please add keywords to your default profile."] = "No tens paraules clau al perfil principal per poder cercar perfils semblants."; +App::$strings["is interested in:"] = "té interès en:"; +App::$strings["No matches"] = "No s'han trobat perfils compatibles"; +App::$strings["No such group"] = "No existeix el grup"; +App::$strings["No such channel"] = "No existeix el canal"; +App::$strings["forum"] = "fòrum"; +App::$strings["Search Results For:"] = "Cerca resultats per:"; +App::$strings["Privacy group is empty"] = "el grup privat està vuit"; +App::$strings["Privacy group: "] = "Grup privat:"; +App::$strings["Invalid connection."] = "La connexió és invàlida."; +App::$strings["No more system notifications."] = "No hi ha més notificacions del sistema."; +App::$strings["System Notifications"] = "Notificacions del sistema"; +App::$strings["Unable to create element."] = "Incapaç de crear l'element."; +App::$strings["Unable to update menu element."] = "Incapaç d'actualitzar un element del menú."; +App::$strings["Unable to add menu element."] = "Incapaç d'afegir l'element del menú."; +App::$strings["Menu Item Permissions"] = "Permisos de l'Article del Menú"; +App::$strings["(click to open/close)"] = "(clica per obrir/tancar)"; +App::$strings["Link Name"] = "Nom de l'Enllaç"; +App::$strings["Link or Submenu Target"] = "Enllaç o Submenú Objectiu"; +App::$strings["Enter URL of the link or select a menu name to create a submenu"] = "Entra la URL de l'enlla´o tria un nom de menú per crear un submenú"; +App::$strings["Use magic-auth if available"] = "Empra magic-auth si esta disponible"; +App::$strings["Open link in new window"] = "Obrir l'enllaç en una nova finestra"; +App::$strings["Order in list"] = "Ordre per llista"; +App::$strings["Higher numbers will sink to bottom of listing"] = "Els números més alts aniràn al fons de la llista"; +App::$strings["Submit and finish"] = "Envia i termina"; +App::$strings["Submit and continue"] = "Envia i continua"; +App::$strings["Menu:"] = "Menú:"; +App::$strings["Link Target"] = "Enllaç Objectiu"; +App::$strings["Edit menu"] = "Edita menú"; +App::$strings["Edit element"] = "Edita element"; +App::$strings["Drop element"] = "Deixa anar element"; +App::$strings["New element"] = "Nou element"; +App::$strings["Edit this menu container"] = "Edita aquest contenidor de menú"; +App::$strings["Add menu element"] = "Afegeix element de menú"; +App::$strings["Delete this menu item"] = "Esborra aquest article del menú"; +App::$strings["Edit this menu item"] = "Edita aquest article del menú"; +App::$strings["Menu item not found."] = "Article del menú no trobat."; +App::$strings["Menu item deleted."] = "Article del menú eliminat."; +App::$strings["Menu item could not be deleted."] = "Article del menú no es pot eliminar."; +App::$strings["Edit Menu Element"] = "Editar Element del Menú"; +App::$strings["Link text"] = "Enllaç de text"; +App::$strings["Name or caption"] = "Nom o llegenda"; +App::$strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\""] = "Exemples: \"Pep Gomila\", \"Manel i els seus Cavalls\", \"Fútbol\", \"Grup d'Aviadors\""; +App::$strings["Choose a short nickname"] = "Tria un àlies curt"; +App::$strings["Your nickname will be used to create an easy to remember channel address e.g. nickname%s"] = "El teu àlies serà emprat per crear un nom fàcil per recordar l'adreça del canal p.e. àlies%s"; +App::$strings["Channel role and privacy"] = "Funció i privacitat del canal"; +App::$strings["Select a channel role with your privacy requirements."] = "Tria una funció pel canal amb els teus requisits de privacitat."; +App::$strings["Read more about roles"] = "Llegix més sobre els rols"; +App::$strings["Create Channel"] = "Crea un Canal"; +App::$strings["A channel is your identity on this network. It can represent a person, a blog, or a forum to name a few. Channels can make connections with other channels to share information with highly detailed permissions."] = "Un canal es la tva identitat en aquesta xarxa. Pot representar una persona, un bloc, o un fòrum per anomenar alguns. Els canals poden connectar-se amb altres canals per compartir informació amb permisos molt detallats."; +App::$strings["or import an existing channel from another location."] = "o importa un canal existent des d'un altre ubicació."; +App::$strings["Invalid request identifier."] = "Sol·licitud d'identificació invàlida."; +App::$strings["Discard"] = "Descarta"; +App::$strings["Mark all system notifications seen"] = "Marca totes les notificacions vistes"; App::$strings["Page owner information could not be retrieved."] = "La informació del propietari de la pàgina no va poder ser recuperada"; App::$strings["Profile Photos"] = "Fotos del Perfil"; App::$strings["Album not found."] = "Àlbum no trobat"; @@ -611,164 +673,122 @@ App::$strings["__ctx:noun__ Dislikes"] = "Desagrada"; App::$strings["Close"] = "Tanca"; App::$strings["View Album"] = "Mostra'n l'àlbum"; App::$strings["Recent Photos"] = "Imatges recents"; -App::$strings["Remote privacy information not available."] = "informació privada remota no disponible."; -App::$strings["Visible to:"] = "Visible per:"; -App::$strings["Import completed"] = "S'ha completat la importació"; -App::$strings["Import Items"] = "Importa Articles"; -App::$strings["Use this form to import existing posts and content from an export file."] = "Empra aquest formulari per importar entrades existents i contingut d'un arxiu d'exportació."; -App::$strings["Total invitation limit exceeded."] = "El límit total invitacions s'ha superat."; -App::$strings["%s : Not a valid email address."] = "%s: adreça de correu electrònic no vàlida."; -App::$strings["Please join us on \$Projectname"] = "Si us plau uneix-te a nosaltres a \$Projectname."; -App::$strings["Invitation limit exceeded. Please contact your site administrator."] = "Límit d'invitacions excedit. Si us plau, poseu-vos en contacte amb l'administrador del lloc."; -App::$strings["%s : Message delivery failed."] = "%s : Entrega del Missatge fallida."; -App::$strings["%d message sent."] = array( - 0 => "%d missatge enviat.", - 1 => "%d missatges enviats.", -); -App::$strings["You have no more invitations available"] = "No té més invitacions disponibles"; -App::$strings["Send invitations"] = "Enviar invitacions"; -App::$strings["Enter email addresses, one per line:"] = "Introduïu les adreces de correu electrònic, una per línia:"; -App::$strings["Your message:"] = "El teu missatge:"; -App::$strings["Please join my community on \$Projectname."] = "Si us plau uneix-te la meva comunitat en \$Projectname."; -App::$strings["You will need to supply this invitation code:"] = "Hauràs de facilitar aquest codi d'invitació:"; -App::$strings["1. Register at any \$Projectname location (they are all inter-connected)"] = "1. Pots registrar-te a qualsevol node de \$Projectname (estàn tots interconnectats)"; -App::$strings["2. Enter my \$Projectname network address into the site searchbar."] = "2. Escriu la meva adreça de xarxa al \$Projectname, a la barra de cerca del lloc."; -App::$strings["or visit"] = "o visitar"; -App::$strings["3. Click [Connect]"] = "3. Clicar [Conectar]"; -App::$strings["Location not found."] = "Situació que no es troba."; -App::$strings["Location lookup failed."] = "Ha fallat la cerca d'ubicació."; -App::$strings["Please select another location to become primary before removing the primary location."] = "Seleccioneu una altra ubicació per esdevenir primària abans de retirar la ubicació principal."; -App::$strings["Syncing locations"] = "Sincronitza ubicacions"; -App::$strings["No locations found."] = "No es troben els llocs."; -App::$strings["Manage Channel Locations"] = "Gestionar Ubicacions de Canal"; -App::$strings["Primary"] = "Primari"; -App::$strings["Drop"] = "Menysprea"; -App::$strings["Sync Now"] = "Sincronitza Ara"; -App::$strings["Please wait several minutes between consecutive operations."] = "Si us plau espera diversos minuts entre operacions consecutives."; -App::$strings["When possible, drop a location by logging into that website/hub and removing your channel."] = "Quan sigui possible, per desapareixer d'un lloc, accedeix a aquest lloc web/node i elimina el teu canal."; -App::$strings["Use this form to drop the location if the hub is no longer operating."] = "Empra aquest formulari per desapareixer del lloc si el node ja no està operatiu."; -App::$strings["Hub not found."] = "Node no trobat."; -App::$strings["Unable to lookup recipient."] = "Incapaç de trobar el destinatari."; -App::$strings["Unable to communicate with requested channel."] = "Incapaç de comunicar amb el canal demanat."; -App::$strings["Cannot verify requested channel."] = "No puc verificar el canal demanat."; -App::$strings["Selected channel has private message restrictions. Send failed."] = "El canal seleccionat te restriccions sobre els missatges privats. L'enviament ha fallat."; -App::$strings["Messages"] = "Missatges"; -App::$strings["Message recalled."] = "Recupera el missatge."; -App::$strings["Conversation removed."] = "Conversació eliminada."; -App::$strings["Expires YYYY-MM-DD HH:MM"] = "Expira YYYY-MM-DD HH:MM"; -App::$strings["Requested channel is not in this network"] = "El canal demanat no hi es en questa xarxa"; -App::$strings["Send Private Message"] = "Envia Missatge Privat"; -App::$strings["To:"] = "Per:"; -App::$strings["Subject:"] = "Assumpte:"; -App::$strings["Attach file"] = "Adjunta arxiu"; -App::$strings["Send"] = "Envia"; -App::$strings["Set expiration date"] = "Ajusta la data d'expiració"; -App::$strings["Delete message"] = "Elimina el missatge"; -App::$strings["Delivery report"] = "Informe d'entrega"; -App::$strings["Recall message"] = "Recupera el missatge"; -App::$strings["Message has been recalled."] = "El missatge s'ha recuperat."; -App::$strings["Delete Conversation"] = "Conversació esborrada"; -App::$strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Comunicació segura no disponible. Pots respondre des de la pàgina de perfil del remitent."; -App::$strings["Send Reply"] = "Envia Resposta"; -App::$strings["Your message for %s (%s):"] = "El teu missatge per %s (%s):"; -App::$strings["You have created %1$.0f of %2$.0f allowed channels."] = "Has creat %1$.0f de %2$.0f canals permesos."; -App::$strings["Create a new channel"] = "Crear un nou canal"; -App::$strings["Channel Manager"] = "Gestor de Canals"; -App::$strings["Current Channel"] = "Canal Actual"; -App::$strings["Switch to one of your channels by selecting it."] = "Canviar a un altre dels teus canals seleccionant-ho."; -App::$strings["Default Channel"] = "Canal per Defecte"; -App::$strings["Make Default"] = "Estableix com a Predeterminat"; -App::$strings["%d new messages"] = "%d missatges nous"; -App::$strings["%d new introductions"] = "%d noves presentacions"; -App::$strings["Delegated Channel"] = "Canal Delegat"; -App::$strings["Unable to update menu."] = "No s'ha pogut actualitzar el menú."; -App::$strings["Unable to create menu."] = "No s'ha pogut crear el menú."; -App::$strings["Menu Name"] = "Nom del menú"; -App::$strings["Unique name (not visible on webpage) - required"] = "Nom únic (no visible a la pàgina web) - requerit"; -App::$strings["Menu Title"] = "Títol del menú"; -App::$strings["Visible on webpage - leave empty for no title"] = "Visible a la pàgina web - deixar buit per a no posar títol"; -App::$strings["Allow Bookmarks"] = "Permetre Marcadors"; -App::$strings["Menu may be used to store saved bookmarks"] = "El menú es pot emprar per a guardar marcadors"; -App::$strings["Submit and proceed"] = "Envia i procedeix"; -App::$strings["Menus"] = "Menús"; -App::$strings["Bookmarks allowed"] = "Marcadors permesos"; -App::$strings["Delete this menu"] = "Esborra el menú"; -App::$strings["Edit menu contents"] = "Edita el contingut del menú"; -App::$strings["Edit this menu"] = "Edita el menú"; -App::$strings["Menu could not be deleted."] = "El menu no es pot esborrar."; -App::$strings["Menu not found."] = "Menú no trobat."; -App::$strings["Edit Menu"] = "Edita Menú"; -App::$strings["Add or remove entries to this menu"] = "Afegeix o esborra entrades a aquest menú"; -App::$strings["Menu name"] = "Nom del Menú"; -App::$strings["Must be unique, only seen by you"] = "Ha de ser únic, nomes vist per tú"; -App::$strings["Menu title"] = "Títol del menú"; -App::$strings["Menu title as seen by others"] = "Títol del menú vist pels altres"; -App::$strings["Allow bookmarks"] = "Marcadors permesos"; -App::$strings["Not found."] = "No trobat."; -App::$strings["No valid account found."] = "No es troba un compte vàlid."; -App::$strings["Password reset request issued. Check your email."] = "Sol·licitud de restabliment de contrasenya emesa. Consulta el teu correu electrònic."; -App::$strings["Site Member (%s)"] = "Lloc d'Usuari (%s)"; -App::$strings["Password reset requested at %s"] = "S'ha soŀlicitat restablir la contrasenya al hub %s"; -App::$strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Ha fallat el restabliment de contrasenya perquè la no s'ha pogut verificar soŀlicitud. Pot ser que ja ho hàgiu soŀlicitat abans."; -App::$strings["Password Reset"] = "Restabliment de contrasenya"; -App::$strings["Your password has been reset as requested."] = "S'ha restablert la vostra contrasenya."; -App::$strings["Your new password is"] = "La nova contrasenya és"; -App::$strings["Save or copy your new password - and then"] = "Desa o copia la nova contrasenya, i després"; -App::$strings["click here to login"] = "fes clic aquí per iniciar sessió"; -App::$strings["Your password may be changed from the Settings page after successful login."] = "Pots canviar la contrasenya a la pàgina Paràmetres, un cop iniciada la sessió."; -App::$strings["Your password has changed at %s"] = "La teva contrasenya a %s ha canviat"; -App::$strings["Forgot your Password?"] = "No recordes la contrasenya?"; -App::$strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Escriu la teva adreça de correu electrònic i envia per restablir la contrasenya. Després revisa el seu correu electrònic per obtenir més instruccions."; -App::$strings["Email Address"] = "Adreça electrònica"; -App::$strings["Reset"] = "Reajustar"; -App::$strings["__ctx:mood__ %1\$s is %2\$s"] = "%1\$s es %2\$s"; -App::$strings["Mood"] = "Ànim"; -App::$strings["Set your current mood and tell your friends"] = "Estableix el teu estat d'ànim actual i digues-li als teus amics"; -App::$strings["No such group"] = "No existeix el grup"; -App::$strings["No such channel"] = "No existeix el canal"; -App::$strings["forum"] = "fòrum"; -App::$strings["Search Results For:"] = "Cerca resultats per:"; -App::$strings["Privacy group is empty"] = "el grup privat està vuit"; -App::$strings["Privacy group: "] = "Grup privat:"; -App::$strings["Invalid connection."] = "La connexió és invàlida."; -App::$strings["No more system notifications."] = "No hi ha més notificacions del sistema."; -App::$strings["System Notifications"] = "Notificacions del sistema"; -App::$strings["Profile Match"] = "Perfils compatibles"; -App::$strings["No keywords to match. Please add keywords to your default profile."] = "No tens paraules clau al perfil principal per poder cercar perfils semblants."; -App::$strings["is interested in:"] = "té interès en:"; -App::$strings["No matches"] = "No s'han trobat perfils compatibles"; -App::$strings["Posts and comments"] = "Entrades i comentaris"; -App::$strings["Only posts"] = "Només entrades"; -App::$strings["Insufficient permissions. Request redirected to profile page."] = "Permisos insuficients. Petició redirigida a la pàgina del perfil."; -App::$strings["Unable to create element."] = "Incapaç de crear l'element."; -App::$strings["Unable to update menu element."] = "Incapaç d'actualitzar un element del menú."; -App::$strings["Unable to add menu element."] = "Incapaç d'afegir l'element del menú."; -App::$strings["Menu Item Permissions"] = "Permisos de l'Article del Menú"; -App::$strings["(click to open/close)"] = "(clica per obrir/tancar)"; -App::$strings["Link Name"] = "Nom de l'Enllaç"; -App::$strings["Link or Submenu Target"] = "Enllaç o Submenú Objectiu"; -App::$strings["Enter URL of the link or select a menu name to create a submenu"] = "Entra la URL de l'enlla´o tria un nom de menú per crear un submenú"; -App::$strings["Use magic-auth if available"] = "Empra magic-auth si esta disponible"; -App::$strings["Open link in new window"] = "Obrir l'enllaç en una nova finestra"; -App::$strings["Order in list"] = "Ordre per llista"; -App::$strings["Higher numbers will sink to bottom of listing"] = "Els números més alts aniràn al fons de la llista"; -App::$strings["Submit and finish"] = "Envia i termina"; -App::$strings["Submit and continue"] = "Envia i continua"; -App::$strings["Menu:"] = "Menú:"; -App::$strings["Link Target"] = "Enllaç Objectiu"; -App::$strings["Edit menu"] = "Edita menú"; -App::$strings["Edit element"] = "Edita element"; -App::$strings["Drop element"] = "Deixa anar element"; -App::$strings["New element"] = "Nou element"; -App::$strings["Edit this menu container"] = "Edita aquest contenidor de menú"; -App::$strings["Add menu element"] = "Afegeix element de menú"; -App::$strings["Delete this menu item"] = "Esborra aquest article del menú"; -App::$strings["Edit this menu item"] = "Edita aquest article del menú"; -App::$strings["Menu item not found."] = "Article del menú no trobat."; -App::$strings["Menu item deleted."] = "Article del menú eliminat."; -App::$strings["Menu item could not be deleted."] = "Article del menú no es pot eliminar."; -App::$strings["Edit Menu Element"] = "Editar Element del Menú"; -App::$strings["Link text"] = "Enllaç de text"; +App::$strings["sent you a private message"] = "Se t'ha enviat un missatge privat"; +App::$strings["added your channel"] = "el teu canal s'ha afegit"; +App::$strings["g A l F d"] = "g A l F d"; +App::$strings["[today]"] = "[avui]"; +App::$strings["posted an event"] = "enviat un esdeveniment"; +App::$strings["Unable to find your hub."] = "No es possible trobar el node"; +App::$strings["Post successful."] = "Entrada realitzada amb èxit. "; +App::$strings["OpenID protocol error. No ID returned."] = "Error del protocol OpenID. No ha retornat ID"; +App::$strings["Login failed."] = "Identificació fallida."; +App::$strings["Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."] = "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."; +App::$strings["This setting requires special processing and editing has been blocked."] = "Aquest ajust requereix un procés espedial i l'edició esta bloquejada."; +App::$strings["Configuration Editor"] = "Editor de Configuració"; +App::$strings["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."] = "atenció: Realitzar segons quins ajustos pot fer el canal inoperable. Deixa aquesta pàgina si no estas segur i tens suficients coneixements sobre l'ús correcte d'aquesta característica."; +App::$strings["Layout updated."] = "S'ha actualitzat la disposició."; +App::$strings["Edit System Page Description"] = "Editor del Sistema de Descripció de Pàgines"; +App::$strings["Layout not found."] = "No s'ha trobat cap disposició de pàgina."; +App::$strings["Module Name:"] = "Nom del mòdul:"; +App::$strings["Layout Help"] = "Ajuda per la disposició de pàgina"; +App::$strings["Poke"] = "Esperonar"; +App::$strings["Poke somebody"] = "Emprenyar algú"; +App::$strings["Poke/Prod"] = "Esperonat/Picat"; +App::$strings["Poke, prod or do other things to somebody"] = "emprenyar, picar o fer altres coses a algú"; +App::$strings["Recipient"] = "Destinatari"; +App::$strings["Choose what you wish to do to recipient"] = "Tria que vols fer amb el destinatari"; +App::$strings["Make this post private"] = "Fer aquesta entrada privada"; +App::$strings["Fetching URL returns error: %1\$s"] = "URL sol·licitada retorna error: %1\$s"; +App::$strings["Profile not found."] = "Perfil no trobat."; +App::$strings["Profile deleted."] = "Perfil eliminat."; +App::$strings["Profile-"] = "Perfil-"; +App::$strings["New profile created."] = "Nou perfil creat."; +App::$strings["Profile unavailable to clone."] = "Perfil que no es pot clonar."; +App::$strings["Profile unavailable to export."] = "Perfil que no es pot exportar."; +App::$strings["Profile Name is required."] = "Es requereix el Nom del Perfil."; +App::$strings["Marital Status"] = "Estat Marital"; +App::$strings["Romantic Partner"] = "Company/a Romàntic"; +App::$strings["Likes"] = "Agrada"; +App::$strings["Dislikes"] = "Desagrada"; +App::$strings["Work/Employment"] = "Treball/Feina"; +App::$strings["Religion"] = "Religió"; +App::$strings["Political Views"] = "Idees Polítiques"; +App::$strings["Sexual Preference"] = "Preferència Sexual"; +App::$strings["Homepage"] = "Pàgina Personal"; +App::$strings["Interests"] = "Interessos"; +App::$strings["Profile updated."] = "Perfil actualitzat."; +App::$strings["Hide your connections list from viewers of this profile"] = "Amaga dels curiosos la teva llista de connexions d'aquest perfil"; +App::$strings["Edit Profile Details"] = "Edita els Detalls del Perfil"; +App::$strings["View this profile"] = "Veure aquest perfil"; +App::$strings["Edit visibility"] = "Editar visibilitat"; +App::$strings["Profile Tools"] = "Eines per Perfils"; +App::$strings["Change cover photo"] = "Canviar la foto de portada"; +App::$strings["Change profile photo"] = "Canviar la foto del perfil"; +App::$strings["Create a new profile using these settings"] = "Crea un perfil nou amb aquests ajustos"; +App::$strings["Clone this profile"] = "Clonar aquest perfil"; +App::$strings["Delete this profile"] = "Elimina aquest perfil"; +App::$strings["Add profile things"] = "Afegeix coses al perfil"; +App::$strings["Personal"] = "Personal"; +App::$strings["Relation"] = "Relació"; +App::$strings["Miscellaneous"] = "Miscelania"; +App::$strings["Import profile from file"] = "Importa perfil des d'un arxiu"; +App::$strings["Export profile to file"] = "Exporta perfil a un arxiu"; +App::$strings["Your gender"] = "El teu gènere"; +App::$strings["Marital status"] = "Estat marital"; +App::$strings["Sexual preference"] = "Preferència sexual"; +App::$strings["Profile name"] = "Nom del perfil"; +App::$strings["This is your default profile."] = "Aquest es el teu perfil per defecte"; +App::$strings["Your full name"] = "El teu nom complet"; +App::$strings["Title/Description"] = "Títol/Descripció"; +App::$strings["Street address"] = "Carrer"; +App::$strings["Locality/City"] = "Població/Ciutat"; +App::$strings["Region/State"] = "Regió/Estat"; +App::$strings["Postal/Zip code"] = "Codi Postal"; +App::$strings["Country"] = "País"; +App::$strings["Who (if applicable)"] = "Qui (si es aplicable)"; +App::$strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Examples: cathy123, Cathy Williams, cathy@example.com"; +App::$strings["Since (date)"] = "Des de (data)"; +App::$strings["Tell us about yourself"] = "Quelcom sobre tu"; +App::$strings["Hometown"] = "Ciutat Natal"; +App::$strings["Political views"] = "Idees polítiques"; +App::$strings["Religious views"] = "Creences religioses"; +App::$strings["Keywords used in directory listings"] = "Paraules clau emprades en els llistats de directoris"; +App::$strings["Example: fishing photography software"] = "Exemple: software de fotografia submarina"; +App::$strings["Musical interests"] = "Interessos Musicals"; +App::$strings["Books, literature"] = "Llibres, literatura"; +App::$strings["Television"] = "Televisió"; +App::$strings["Film/Dance/Culture/Entertainment"] = "Pel·lícules/Dansa/Cultura/Entreteniment"; +App::$strings["Hobbies/Interests"] = "Aficions/Interessos"; +App::$strings["Love/Romance"] = "Amor/Romace"; +App::$strings["School/Education"] = "Escola/Educació"; +App::$strings["Contact information and social networks"] = "Informació de contacte i xarxes socials"; +App::$strings["My other channels"] = "Els meus altres canals"; +App::$strings["Profile Image"] = "Imatge del Perfil"; +App::$strings["Edit Profiles"] = "Editar Perfils"; +App::$strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Refresca la memòria cau del navegador si la foto no s'actualitza immediatament. Dreceres: «Ctrl+F5» i «Ctrl+Maj+R»"; +App::$strings["Upload Profile Photo"] = "Puja una Foto pel Perfil"; +App::$strings["Invalid profile identifier."] = "Identificador invàlid de perfil."; +App::$strings["Profile Visibility Editor"] = "Perfil del Editor de Visibilitat"; +App::$strings["Profile"] = "Perfil"; +App::$strings["Click on a contact to add or remove."] = "Clica sobre el contacte per afegir o esborrar."; +App::$strings["Visible To"] = "Visible per"; +App::$strings["Public Hubs"] = "Nodes Públics"; +App::$strings["The listed hubs allow public registration for the \$Projectname network. All hubs in the network are interlinked so membership on any of them conveys membership in the network as a whole. Some hubs may require subscription or provide tiered service plans. The hub itself may provide additional details."] = "Els nodes llistats permeten registrar usuaris de la xarxa \$Projectname. Com que tots els nodes estan enllaçats entre ells, la identitat és vàlida a tota la xarxa. Alguns nodes poden demanar subscripció o oferir serveis addicional de pagament. Per a més detalls, proveu de seguir els enllaços dels proveïdors."; +App::$strings["Hub URL"] = "URL del Node"; +App::$strings["Access Type"] = "Tipus d'accés"; +App::$strings["Registration Policy"] = "Condicions de registre"; +App::$strings["Stats"] = "Estadístiques"; +App::$strings["Software"] = "Programari"; +App::$strings["Ratings"] = "Valoracions"; +App::$strings["Rate"] = "Puntua"; +App::$strings["Website:"] = "Lloc web:"; +App::$strings["Remote Channel [%s] (not yet known on this site)"] = "Canal Remot [%s] (encara no es coneix en aquest lloc)"; +App::$strings["Rating (this information is public)"] = "Valoració (aquesta informació és pública)"; +App::$strings["Optionally explain your rating (this information is public)"] = "Opcionalment pots explicar la teva qualificació (aquesta informació és pública)"; +App::$strings["No ratings"] = "No valorat"; +App::$strings["Rating: "] = "Valoració:"; +App::$strings["Website: "] = "Lloc web:"; +App::$strings["Description: "] = "Descripció:"; App::$strings["Theme settings updated."] = "Ajustos de tema actualitzats."; App::$strings["# Accounts"] = "# Comptes"; App::$strings["# blocked accounts"] = "# comptes bloquejats"; @@ -782,7 +802,7 @@ App::$strings["Your software should be updated"] = "El teu programari cal que s' App::$strings["Administration"] = "Administració"; App::$strings["Summary"] = "Sumari"; App::$strings["Registered accounts"] = "Comptes registrades"; -App::$strings["Pending registrations"] = "Comptes pendents d'inscripció"; +App::$strings["Pending registrations"] = "Comptes pendents de registre"; App::$strings["Registered channels"] = "Canals registrats"; App::$strings["Active plugins"] = "Plugins actius"; App::$strings["Version"] = "Versió"; @@ -799,7 +819,7 @@ App::$strings["My site has paid access only"] = "El meu lloc te accès per pagam App::$strings["My site has free access only"] = "El meu lloc te lliure accés"; App::$strings["My site offers free accounts with optional paid upgrades"] = "El meu lloc te comptes gratis amb opció de millores per pagament"; App::$strings["Site"] = "Lloc"; -App::$strings["Registration"] = "Inscripcions"; +App::$strings["Registration"] = "Registre"; App::$strings["File upload"] = "Pujar arxiu"; App::$strings["Policies"] = "Polítiques"; App::$strings["Advanced"] = "Avançat"; @@ -816,12 +836,12 @@ App::$strings["Allow Feeds as Connections"] = "Permetre Retroalimentadors com Co App::$strings["(Heavy system resource usage)"] = "(Demana molts recursos del sistema)"; App::$strings["Maximum image size"] = "Mida màxima d'imatge"; App::$strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Mida màxima en bytes d'imatges pujades. Per defecte es 0, el que vol dir sense límits."; -App::$strings["Does this site allow new member registration?"] = "Permet aquest lloc l'inscripció de nous membres?"; +App::$strings["Does this site allow new member registration?"] = "Permet aquest lloc registre de nous membres?"; App::$strings["Invitation only"] = "Només per invitació"; -App::$strings["Only allow new member registrations with an invitation code. Above register policy must be set to Yes."] = "Només permet inscriure nous membres amb codi d'invitació. A més la política de registre s'ha d'establir a Sí."; +App::$strings["Only allow new member registrations with an invitation code. Above register policy must be set to Yes."] = "Només permet registre de nos membres amb codi d'invitació. A més la política de registre s'ha d'establir a Sí."; App::$strings["Which best describes the types of account offered by this hub?"] = "Que es es que millor descriu la mena de comptes oferits per aquest concentrador?"; -App::$strings["Register text"] = "Text d'inscripció"; -App::$strings["Will be displayed prominently on the registration page."] = "Es mostrarà preminentment a la pàgina d'inscripció"; +App::$strings["Register text"] = "text de registre"; +App::$strings["Will be displayed prominently on the registration page."] = "Es mostrarà preminentment a la pàgina de registre"; App::$strings["Site homepage to show visitors (default: login box)"] = "Pàgina d'inici a mostrar als visitants (per defecte: la pàgina d'identificació)"; App::$strings["example: 'public' to show public stream, 'page/sys/home' to show a system webpage called 'home' or 'include:home.html' to include a file."] = "exemple: 'públic' per a mostrar un flux públic, 'page/sys/home' per a mostrar una pàgina web dita 'home' o 'include:home.html' per a incloure un arxiu."; App::$strings["Preserve site homepage URL"] = "Preservar URL de la pàgina web"; @@ -918,12 +938,12 @@ App::$strings["Account '%s' blocked"] = "S'ha bloquejat el compte '%s'"; App::$strings["Account '%s' unblocked"] = "S'ha desbloquejat el compte '%s'"; App::$strings["Accounts"] = "Comptes"; App::$strings["select all"] = "Sel·leciona-ho tot"; -App::$strings["Registrations waiting for confirm"] = "Inscripcions esperant confirmació"; +App::$strings["Registrations waiting for confirm"] = ""; App::$strings["Request date"] = "Data de la petició"; App::$strings["No registrations."] = "Sense registracions."; App::$strings["Deny"] = "Denegat"; App::$strings["All Channels"] = "Tots els Canals"; -App::$strings["Register date"] = "Data d'inscripció"; +App::$strings["Register date"] = "Data de registre"; App::$strings["Last login"] = "Darrera identificació"; App::$strings["Expires"] = "Expira"; App::$strings["Service Class"] = "Classe de Servei"; @@ -992,7 +1012,7 @@ App::$strings["Logs"] = "Logs"; App::$strings["Clear"] = "Neteja"; App::$strings["Debugging"] = "Depurant"; App::$strings["Log file"] = "Arxiu de registre"; -App::$strings["Must be writable by web server. Relative to your top-level webserver directory."] = "Ha de ser escribible pel servidor web. Relatiu al directori de nivell superior del servidor web"; +App::$strings["Must be writable by web server. Relative to your top-level webserver directory."] = ""; App::$strings["Log level"] = "Nivell de registre"; App::$strings["New Profile Field"] = "Camp de Perfil Nou"; App::$strings["Field nickname"] = "Àlies de Camp"; @@ -1011,105 +1031,33 @@ App::$strings["(In addition to basic fields)"] = "( addicionalment als camps bà App::$strings["All available fields"] = "Tots els camps disponibles"; App::$strings["Custom Fields"] = "Camps Personalitzats"; App::$strings["Create Custom Field"] = "Crear un Camp Personalitzat"; -App::$strings["Name or caption"] = "Nom o llegenda"; -App::$strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\""] = "Exemples: \"Pep Gomila\", \"Manel i els seus Cavalls\", \"Fútbol\", \"Grup d'Aviadors\""; -App::$strings["Choose a short nickname"] = "Tria un àlies curt"; -App::$strings["Your nickname will be used to create an easy to remember channel address e.g. nickname%s"] = "El teu àlies serà emprat per crear un nom fàcil per recordar l'adreça del canal p.e. àlies%s"; -App::$strings["Channel role and privacy"] = "Funció i privacitat del canal"; -App::$strings["Select a channel role with your privacy requirements."] = "Tria una funció pel canal amb els teus requisits de privacitat."; -App::$strings["Read more about roles"] = "Llegix més sobre els rols"; -App::$strings["Create Channel"] = "Crea un Canal"; -App::$strings["A channel is your identity on this network. It can represent a person, a blog, or a forum to name a few. Channels can make connections with other channels to share information with highly detailed permissions."] = "Un canal es la tva identitat en aquesta xarxa. Pot representar una persona, un bloc, o un fòrum per anomenar alguns. Els canals poden connectar-se amb altres canals per compartir informació amb permisos molt detallats."; -App::$strings["or import an existing channel from another location."] = "o importa un canal existent des d'un altre ubicació."; -App::$strings["sent you a private message"] = "Se t'ha enviat un missatge privat"; -App::$strings["added your channel"] = "el teu canal s'ha afegit"; -App::$strings["g A l F d"] = "g A l F d"; -App::$strings["[today]"] = "[avui]"; -App::$strings["posted an event"] = "enviat un esdeveniment"; -App::$strings["Invalid request identifier."] = "Sol·licitud d'identificació invàlida."; -App::$strings["Discard"] = "Descarta"; -App::$strings["Mark all system notifications seen"] = "Marca totes les notificacions vistes"; -App::$strings["Poke"] = "Esperonar"; -App::$strings["Poke somebody"] = "Emprenyar algú"; -App::$strings["Poke/Prod"] = "Esperonat/Picat"; -App::$strings["Poke, prod or do other things to somebody"] = "emprenyar, picar o fer altres coses a algú"; -App::$strings["Recipient"] = "Destinatari"; -App::$strings["Choose what you wish to do to recipient"] = "Tria que vols fer amb el destinatari"; -App::$strings["Make this post private"] = "Fer aquesta entrada privada"; -App::$strings["Unable to find your hub."] = "No es possible trobar el node"; -App::$strings["Post successful."] = "Entrada realitzada amb èxit. "; -App::$strings["OpenID protocol error. No ID returned."] = "Error del protocol OpenID. No ha retornat ID"; -App::$strings["Login failed."] = "Identificació fallida."; -App::$strings["Invalid profile identifier."] = "Identificador invàlid de perfil."; -App::$strings["Profile Visibility Editor"] = "Perfil del Editor de Visibilitat"; -App::$strings["Profile"] = "Perfil"; -App::$strings["Click on a contact to add or remove."] = "Clica sobre el contacte per afegir o esborrar."; -App::$strings["Visible To"] = "Visible per"; -App::$strings["This setting requires special processing and editing has been blocked."] = "Aquest ajust requereix un procés espedial i l'edició esta bloquejada."; -App::$strings["Configuration Editor"] = "Editor de Configuració"; -App::$strings["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."] = "atenció: Realitzar segons quins ajustos pot fer el canal inoperable. Deixa aquesta pàgina si no estas segur i tens suficients coneixements sobre l'ús correcte d'aquesta característica."; -App::$strings["Fetching URL returns error: %1\$s"] = "URL sol·licitada retorna error: %1\$s"; -App::$strings["Version %s"] = "Versió %s"; -App::$strings["Installed plugins/addons/apps:"] = "Plugins/addons/apps Instal·lats:"; -App::$strings["No installed plugins/addons/apps"] = "Plugins/addons/apps no instal·lats"; -App::$strings["This is a hub of \$Projectname - a global cooperative network of decentralized privacy enhanced websites."] = "Aquest és un node de \$Projectname, una xarxa cooperativa mundial de llocs web descentralitzats amb gran control de la privacitat."; -App::$strings["Tag: "] = "Etiqueta:"; -App::$strings["Last background fetch: "] = "Última actualització en rerefons:"; -App::$strings["Current load average: "] = "Càrrega actual mitja:"; -App::$strings["Running at web location"] = "Correguent en el lloc web"; -App::$strings["Please visit hubzilla.org to learn more about \$Projectname."] = "Visita hubzilla.org per saber-ne més de \$Projectname."; -App::$strings["Bug reports and issues: please visit"] = "Per informar d'errors o problemes ves a"; -App::$strings["\$projectname issues"] = "\$projectname qüestions"; -App::$strings["Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com"] = "Per suggerències, felicitacions i altres, envia'ns un mail a «redmatrix» [arroba] librelist [punt] com"; -App::$strings["Site Administrators"] = "Administradors del lloc"; -App::$strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Em trobat un problema durant l'inici de sessió amb el OpenID que has facilitat. verifica l'ortografia correcta de la ID."; -App::$strings["The error message was:"] = "El missatge d'error fou:"; -App::$strings["Authentication failed."] = "Ha fallat l'autentificació."; -App::$strings["Remote Authentication"] = "Autentificació Remota"; -App::$strings["Enter your channel address (e.g. channel@example.com)"] = "Introdueix la teva adreça del canal (eg canal@exemple.com)"; -App::$strings["Authenticate"] = "Autentica't"; -App::$strings["Public Hubs"] = "Nodes Públics"; -App::$strings["The listed hubs allow public registration for the \$Projectname network. All hubs in the network are interlinked so membership on any of them conveys membership in the network as a whole. Some hubs may require subscription or provide tiered service plans. The hub itself may provide additional details."] = "Els nodes llistats permeten registrar usuaris de la xarxa \$Projectname. Com que tots els nodes estan enllaçats entre ells, la identitat és vàlida a tota la xarxa. Alguns nodes poden demanar subscripció o oferir serveis addicional de pagament. Per a més detalls, proveu de seguir els enllaços dels proveïdors."; -App::$strings["Hub URL"] = "URL del Node"; -App::$strings["Access Type"] = "Tipus d'accés"; -App::$strings["Registration Policy"] = "Condicions d'inscripció"; -App::$strings["Stats"] = "Estadístiques"; -App::$strings["Software"] = "Programari"; -App::$strings["Ratings"] = "Valoracions"; -App::$strings["Rate"] = "Puntua"; -App::$strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Refresca la memòria cau del navegador si la foto no s'actualitza immediatament. Dreceres: «Ctrl+F5» i «Ctrl+Maj+R»"; -App::$strings["Upload Profile Photo"] = "Puja una Foto pel Perfil"; -App::$strings["Block Name"] = "Nom del Bloc"; -App::$strings["Blocks"] = "Bloc"; -App::$strings["Block Title"] = "Títol del bloc"; -App::$strings["Website:"] = "Lloc web:"; -App::$strings["Remote Channel [%s] (not yet known on this site)"] = "Canal Remot [%s] (encara no es coneix en aquest lloc)"; -App::$strings["Rating (this information is public)"] = "Valoració (aquesta informació és pública)"; -App::$strings["Optionally explain your rating (this information is public)"] = "Opcionalment pots explicar la teva qualificació (aquesta informació és pública)"; -App::$strings["No ratings"] = "No valorat"; -App::$strings["Rating: "] = "Valoració:"; -App::$strings["Website: "] = "Lloc web:"; -App::$strings["Description: "] = "Descripció:"; -App::$strings["Apps"] = "Aplicatius"; -App::$strings["Title (optional)"] = "Títol (opcional)"; -App::$strings["Edit Block"] = "Editar Bloc"; -App::$strings["No channel."] = "No s'ha trobat el canal"; -App::$strings["Common connections"] = "Connexions en comú"; -App::$strings["No connections in common."] = "No hi ha connexions en comú."; +App::$strings["App installed."] = "Aplicació instal·lada."; +App::$strings["Malformed app."] = "Aplicació amb errors"; +App::$strings["Embed code"] = "Codi embegut"; +App::$strings["Edit App"] = "Edita l'Aplicació"; +App::$strings["Create App"] = "Crea l'Aplicació"; +App::$strings["Name of app"] = "Nom de l'Aplicació"; +App::$strings["Location (URL) of app"] = "Ubicació (URL) de l'aplicació"; +App::$strings["Photo icon URL"] = "Foto icona URL"; +App::$strings["80 x 80 pixels - optional"] = "80 x 80 pixels - opcional"; +App::$strings["Categories (optional, comma separated list)"] = "Categories (opcional, lista separada per comes)"; +App::$strings["Version ID"] = "Versió ID"; +App::$strings["Price of app"] = "Preu de l'aplicació"; +App::$strings["Location (URL) to purchase app"] = "Ubicació (URL) per comprar l'aplicació"; App::$strings["Select a bookmark folder"] = "Tria una carpeta d'interès"; App::$strings["Save Bookmark"] = "Guarda Favorits"; App::$strings["URL of bookmark"] = "URL de favorit"; App::$strings["Or enter new bookmark folder name"] = "O entra un nou nom de favorit"; -App::$strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = "Nombre màxim d'inscripcions diaris excedit. Si us plau, provau demà."; -App::$strings["Please indicate acceptance of the Terms of Service. Registration failed."] = "L'inscripció ha fallat. Si et plau, indica que acceptes les Condicions del Servei."; +App::$strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = "Nombre màxim de registres diaris excedit. Si us plau, provau demà."; +App::$strings["Please indicate acceptance of the Terms of Service. Registration failed."] = "El registre ha fallat. Si et plau, indica que acceptes les Condicions del Servei."; App::$strings["Passwords do not match."] = "Les contrasenyes no coincideixen."; App::$strings["Registration successful. Please check your email for validation instructions."] = "Registrat amb èxit. Si et plau revisa el teu correu electrònic per a les instruccions de validació."; -App::$strings["Your registration is pending approval by the site owner."] = "La teva inscripció esta pendent de validació pel propietari del lloc."; -App::$strings["Your registration can not be processed."] = "La teva inscripció no ha pogut ser processat. "; -App::$strings["Registration on this hub is disabled."] = "L'inscripció en aquest node està deshabilitat."; -App::$strings["Registration on this hub is by approval only."] = "L'inscripció en aquest node es únicament per validació."; -App::$strings["Register at another affiliated hub."] = "Inscripció en altre node afiliat"; -App::$strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "El lloc ha excedit el límit màxim diari de nous comptes/inscripció. Provau demà."; +App::$strings["Your registration is pending approval by the site owner."] = "El teu registre esta pendent de validació pel propietari del lloc."; +App::$strings["Your registration can not be processed."] = "El teu registre no ha pogut ser processat. "; +App::$strings["Registration on this hub is disabled."] = "El registre en aquest node està deshabilitat."; +App::$strings["Registration on this hub is by approval only."] = "El registre en aquest node es únicament per validació."; +App::$strings["Register at another affiliated hub."] = "Registre en altre node afiliat"; +App::$strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "El lloc ha excedit el límit màxim diari de nous comptes/registres. Provau demà."; App::$strings["Terms of Service"] = "Condicions del Servei"; App::$strings["I accept the %s for this website"] = "Accepto el %s per a aquest lloc web"; App::$strings["I am over 13 years of age and accept the %s for this website"] = "Tinc més de 13 anys i accepto les %s d'aquest lloc web"; @@ -1120,8 +1068,8 @@ App::$strings["Please enter your invitation code"] = "Si et plau, introdueix el App::$strings["no"] = "no"; App::$strings["yes"] = "sí"; App::$strings["Membership on this site is by invitation only."] = "La pertinença en aquest lloc es per invitació exclusivament."; -App::$strings["Register"] = "Inscripció"; -App::$strings["This site may require email verification after submitting this form. If you are returned to a login page, please check your email for instructions."] = ""; +App::$strings["Register"] = "Registre"; +App::$strings["Proceed to create your first channel"] = "Comença a crear el teu primer canal"; App::$strings["Please login."] = "Inicia Sessió."; App::$strings["Account removals are not allowed within 48 hours of changing the account password."] = "L'esborrat de comptes no està permès fins que transcorren 48 hores des de l'últim canvi de contrasenya."; App::$strings["Remove This Account"] = "Esborra el compte"; @@ -1138,23 +1086,17 @@ App::$strings["This channel will be completely removed from the network. "] = "A App::$strings["Remove this channel and all its clones from the network"] = "Elimina aquest canal i els seus clons de la xarxa"; App::$strings["By default only the instance of the channel located on this hub will be removed from the network"] = "Per defecte, només la instancia del canal ubicat en aquest node pot esser esborrat de la xarxa"; App::$strings["Remove Channel"] = "Elimina el canal"; -App::$strings["Export Channel"] = "Exportar Canal"; -App::$strings["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."] = "Exporta la informació bàsica del canal a un arxiu. Això actua com a còpia de recolzament de les teves connexions, permisos, perfil i dades bàsiques, les quals pots emprar per traslladar aquestes dades a una altre lloc/node, però no conté el contingut del canal."; -App::$strings["Export Content"] = "Exportar el Contingut"; -App::$strings["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."] = "Exporta la informació del canal i tot el contingut recent a un arxiu de recolzament JSON que por ser restaurat o importat en altre lloc/node. Això còpia totes les teves connexions, permisos, perfil i dades i mesos de entrades. L'arxiu pot ser MOLT gran. Si et plau, sigues pacient ja que pot trigar uns minuts a començar a baixar."; -App::$strings["Export your posts from a given year."] = "Exporta les teves entrades d'un any donat."; -App::$strings["You may also export your posts and conversations for a particular year or month. Adjust the date in your browser location bar to select other dates. If the export fails (possibly due to memory exhaustion on your server hub), please try again selecting a more limited date range."] = "Pots també exportar les teves entrades i conversacions d'un any o un mes en particular. Ajusta la data a la barra de direccions del navegador per seleccionar altres dates. Si la exportació falla (possiblement degut al esgotament de la memòria del node servidor), si et plau, intenta de nou la selecció d'un rang de dates més limitat."; -App::$strings["To select all posts for a given year, such as this year, visit %2\$s"] = "Per seleccionar tots els missatges per a un any determinat, com aquest any, visiteu %2\$s"; -App::$strings["To select all posts for a given month, such as January of this year, visit %2\$s"] = "Per seleccionar tots els missatges per a un mes determinat, com el de gener d'aquest any, visiteu %2\$s"; -App::$strings["These content files may be imported or restored by visiting %2\$s on any site containing your channel. For best results please import or restore these in date order (oldest first)."] = "Aquests arxius de contingut poden ser importats o restaurats per visitar %2\$s en qualsevol lloc que conté el teu canal. Per obtenir els millors resultats si us plau, importar o restaurar aquests en ordre de data (la més antiga primer)."; +App::$strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Em trobat un problema durant l'inici de sessió amb el OpenID que has facilitat. verifica l'ortografia correcta de la ID."; +App::$strings["The error message was:"] = "El missatge d'error fou:"; +App::$strings["Authentication failed."] = "Ha fallat l'autentificació."; +App::$strings["Remote Authentication"] = "Autentificació Remota"; +App::$strings["Enter your channel address (e.g. channel@example.com)"] = "Introdueix la teva adreça del canal (eg canal@exemple.com)"; +App::$strings["Authenticate"] = "Autentica't"; App::$strings["Items tagged with: %s"] = "Elements etiquetats amb: %s"; App::$strings["Search results for: %s"] = "Resultats de cerca per: %s"; App::$strings["No service class restrictions found."] = "No s'han trobat restriccions de clase."; App::$strings["Name is required"] = "Es requereix un Nom"; App::$strings["Key and Secret are required"] = "Es requereix Clau (Key) i el Secret (Secret)"; -App::$strings["This channel is limited to %d tokens"] = ""; -App::$strings["Name and Password are required."] = ""; -App::$strings["Token saved."] = ""; App::$strings["Not valid email."] = "E-correu no vàlid."; App::$strings["Protected email address. Cannot change to that email."] = "Adreça d'e-correu protegida. No es pot canviar a aquest e-correu."; App::$strings["System failure storing new email. Please try again."] = "Fallada del sistema al guardar un nou correu. Si us plau, proba de nou."; @@ -1187,12 +1129,6 @@ App::$strings["Confirm New Password"] = "Confirma la Nova Contrasenya"; App::$strings["Leave password fields blank unless changing"] = "Deixa els camps de contrasenya en blanc llevat que la vulguis canviar"; App::$strings["Email Address:"] = "Adreça de E-Correu:"; App::$strings["Remove this account including all its channels"] = "Esborra aquest compte inclosos tots els seus canals"; -App::$strings["Use this form to create temporary access identifiers to share things with non-members. These identities may be used in Access Control Lists and visitors may login using these credentials to access the private content."] = ""; -App::$strings["You may also provide dropbox style access links to friends and associates by adding the Login Password to any specific site URL as shown. Examples:"] = ""; -App::$strings["Guest Access Tokens"] = ""; -App::$strings["Login Name"] = ""; -App::$strings["Login Password"] = ""; -App::$strings["Expires (yyyy-mm-dd)"] = ""; App::$strings["Additional Features"] = "Característiques Addicionals"; App::$strings["Connector Settings"] = "Ajustos de Connector"; App::$strings["No special theme for mobile devices"] = "No emprar tema especial per aparells mòbils"; @@ -1290,7 +1226,7 @@ App::$strings["System (personal) notifications"] = "Notificacions (personals) de App::$strings["System info messages"] = "Missatges d'informació del sistema"; App::$strings["System critical alerts"] = "Alertes crítiques del sistema"; App::$strings["New connections"] = "Noves connexions"; -App::$strings["System Registrations"] = "Inscripcions del Sistema"; +App::$strings["System Registrations"] = "Registres del sistema"; App::$strings["Also show new wall posts, private messages and connections under Notices"] = "Mostra també les entrades de mur noves, les entrades privades i les connexions a \"Notícies\""; App::$strings["Notify me of events this many days in advance"] = "Notifica'm dels esdeveniments amb aquests dies d'antelació"; App::$strings["Must be greater than 0"] = "Ha de ser més gran que 0"; @@ -1355,6 +1291,7 @@ App::$strings["GD graphics PHP module"] = "mòdul PHP GD gràfics"; App::$strings["OpenSSL PHP module"] = "mòdul PHP OpenSSL"; App::$strings["mysqli or postgres PHP module"] = "mòdul PHP mysqli o postgres"; App::$strings["mb_string PHP module"] = "mòdul PHP mb_string"; +App::$strings["mcrypt PHP module"] = "mòdul PHP mcrypt"; App::$strings["xml PHP module"] = "Mòdul xml de PHP"; App::$strings["Apache mod_rewrite module"] = "mòdul Apache mod_rewrite"; App::$strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Error: el mòdul mod-rewrite del servidor web Apache es requereix i no està instal·lat."; @@ -1365,6 +1302,7 @@ App::$strings["Error: GD graphics PHP module with JPEG support required but not App::$strings["Error: openssl PHP module required but not installed."] = "Error: el mòdul PHP openssl es requereix però no està instal·lat."; App::$strings["Error: mysqli or postgres PHP module required but neither are installed."] = "Error: el mòdul PHO mysqli o postgres es requereix però no està instal·lat."; App::$strings["Error: mb_string PHP module required but not installed."] = "Error: el mòdul PHP mb_string es requereix però no està instal·lat."; +App::$strings["Error: mcrypt PHP module required but not installed."] = "Error: el mòdul PHP mcrypt es requereix però no està instal·lat."; App::$strings["Error: xml PHP module required for DAV but not installed."] = "Error: el mòdul xml de PHP es requereix per DAV però no està instal·lat."; App::$strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "L'instaŀlador ha de poder crear i modificar un fitxer anomenat «.htconfig.php» a la carpeta arrel del servidor, però sembla que no ho pot fer."; App::$strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "Això sol ser un problema de permisos. Per molt que el teu usuari pugui modificar-lo, és el del servidor web qui necessita els poders de modificació."; @@ -1376,7 +1314,7 @@ App::$strings["In order to store these compiled templates, the web server needs App::$strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Comprova que l'usuari que executa el servidor (www-data en Apache) té permisos d'escriptura en aquesta carpeta."; App::$strings["Note: as a security measure, you should give the web server write access to %s only--not the template files (.tpl) that it contains."] = "Nota: com a mesura de seguretat l'usuari del servidor web ha de tenir accés d'escriptura només a %s, i no a les plantilles (.tpl) que conté."; App::$strings["%s is writable"] = "Es pot escriure a %s"; -App::$strings["This software 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"] = ""; +App::$strings["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"] = "Red fa servir la carpeta «store» per a desar els fitxers pujats. Per tant, el servidor web necessita tenir permís d'escriptura en aquesta carpeta, que està a l'arrel del servidor web."; App::$strings["store is writable"] = "Es pot escriure al magatzem (store)"; App::$strings["SSL certificate cannot be validated. Fix certificate or disable https access to this site."] = "El certificat SSL no s'ha pogut validar. Arregla-ho o deshabilita l'accés https a aquest lloc"; App::$strings["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!"] = "Si tens accès pet https al teu lloc web o permets connexions pel port TCP 443 (port https), Has d'emprar un certificat VÀLID. NO es poden emprar certificats AUTO-SIGNATS!"; @@ -1384,7 +1322,6 @@ App::$strings["This restriction is incorporated because public posts from you ma App::$strings["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."] = "Si el teu certificat no és reconegut, llavors el membres d'altres hubs, encara que tinguin certificats vàlids, rebran una advertència de seguretat en carregar contingut teu."; App::$strings["This can cause usability issues elsewhere (not just on your own site) so we must insist on this requirement."] = "Per tant, com que perjudica la usabilitat més enllà del teu lloc, la restricció de tenir un certificat reconegut és molt important."; App::$strings["Providers are available that issue free certificates which are browser-valid."] = "Hi ha autoritats de certificació reconegudes que ofereixen certificats gratuïts."; -App::$strings["If you are confident that the certificate is valid and signed by a trusted authority, check to see if you have failed to install an intermediate cert. These are not normally required by browsers, but are required for server-to-server communications."] = ""; App::$strings["SSL certificate validation"] = "Validació del certificat SSL"; App::$strings["Url rewrite in .htaccess is not working. Check your server configuration.Test: "] = "No es poden reescriure les URL a «.htaccess». Comprova la configuració del servidor:"; App::$strings["Url rewrite is working"] = "Es poden reescriure les URL a «.htaccess»"; @@ -1396,20 +1333,19 @@ App::$strings["Files: shared with me"] = "Arxius: compartits amb jo"; App::$strings["NEW"] = "NOU"; App::$strings["Remove all files"] = "Esborra tots els arxius"; App::$strings["Remove this file"] = "Esborra l'arxiu"; -App::$strings["Thing updated"] = "S'ha actualitzat la cosa"; -App::$strings["Object store: failed"] = "No s'ha pogut emmagatzemar l'objecte"; -App::$strings["Thing added"] = "S'ha afegit la cosa"; -App::$strings["OBJ: %1\$s %2\$s %3\$s"] = "OBJ: %1\$s %2\$s %3\$s"; -App::$strings["Show Thing"] = "Mostra la cosa"; -App::$strings["item not found."] = "no s'ha trobat l'element."; -App::$strings["Edit Thing"] = "Edita la cosa"; -App::$strings["Select a profile"] = "Tria un perfil"; -App::$strings["Post an activity"] = "Publica una activitat"; -App::$strings["Only sends to viewers of the applicable profile"] = "S'envia només a visitants del perfil corresponent"; -App::$strings["Name of thing e.g. something"] = "Nom de la cosa. Exemple: patata"; -App::$strings["URL of thing (optional)"] = "Adreça URL de la cosa (opcional)"; -App::$strings["URL for photo of thing (optional)"] = "Adreça URL de la foto d'una cosa (opcional)"; -App::$strings["Add Thing to your Profile"] = "Afegeix una cosa al teu perfil"; +App::$strings["Version %s"] = "Versió %s"; +App::$strings["Installed plugins/addons/apps:"] = "Plugins/addons/apps Instal·lats:"; +App::$strings["No installed plugins/addons/apps"] = "Plugins/addons/apps no instal·lats"; +App::$strings["This is a hub of \$Projectname - a global cooperative network of decentralized privacy enhanced websites."] = "Aquest és un node de \$Projectname, una xarxa cooperativa mundial de llocs web descentralitzats amb gran control de la privacitat."; +App::$strings["Tag: "] = "Etiqueta:"; +App::$strings["Last background fetch: "] = "Última actualització en rerefons:"; +App::$strings["Current load average: "] = "Càrrega actual mitja:"; +App::$strings["Running at web location"] = "Correguent en el lloc web"; +App::$strings["Please visit hubzilla.org to learn more about \$Projectname."] = "Visita hubzilla.org per saber-ne més de \$Projectname."; +App::$strings["Bug reports and issues: please visit"] = "Per informar d'errors o problemes ves a"; +App::$strings["\$projectname issues"] = "\$projectname qüestions"; +App::$strings["Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com"] = "Per suggerències, felicitacions i altres, envia'ns un mail a «redmatrix» [arroba] librelist [punt] com"; +App::$strings["Site Administrators"] = "Administradors del lloc"; App::$strings["Failed to create source. No channel selected."] = "Error en crear l'origen. Cap canal seleccionat."; App::$strings["Source created."] = "Origen creat."; App::$strings["Source updated."] = "Origen actualitzat."; @@ -1437,38 +1373,60 @@ App::$strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s ha etiquetat %3\ App::$strings["Tag removed"] = "S'ha tret l'etiqueta"; App::$strings["Remove Item Tag"] = "Elimina l'etiqueta d'element"; App::$strings["Select a tag to remove: "] = "Tria l'etiqueta a eliminar:"; -App::$strings["Webpages"] = "Pàgines web"; -App::$strings["Actions"] = "Accions"; -App::$strings["Page Link"] = "Enllaç a Pàgina"; -App::$strings["Page Title"] = "Títol de la pàgina"; -App::$strings["Not found"] = ""; -App::$strings["Wiki"] = "Wiki"; -App::$strings["Sandbox"] = "Sandbox"; -App::$strings["\"# Wiki Sandbox\\n\\nContent you **edit** and **preview** here *will not be saved*.\""] = ""; -App::$strings["Revision Comparison"] = "Comparació de revisió"; -App::$strings["Revert"] = "Reverteix"; -App::$strings["Enter the name of your new wiki:"] = "Escriu el nom del teu nou wiki:"; -App::$strings["Enter the name of the new page:"] = "Escriu el nom de la teva nova pàgina:"; -App::$strings["Enter the new name:"] = "Escriu el nou nom:"; -App::$strings["Embed image from photo albums"] = "Embeu una imatge dels àlbums de fotos"; -App::$strings["Embed an image from your albums"] = "Embeu una imatge dels teus àlbums"; -App::$strings["OK"] = "OK"; -App::$strings["Choose images to embed"] = "Tria una imatge per a embeure-la"; -App::$strings["Choose an album"] = "Tria un àlbum"; -App::$strings["Choose a different album..."] = "Tria un àlbum diferent..."; -App::$strings["Error getting album list"] = "Ha ocorregut un error quan treia la llista de àlbums"; -App::$strings["Error getting photo link"] = "Ha ocorregut un error quan treia l'enllaç a la foto"; -App::$strings["Error getting album"] = "Ha ocorregut un error treient l'àlbum"; +App::$strings["Thing updated"] = "S'ha actualitzat la cosa"; +App::$strings["Object store: failed"] = "No s'ha pogut emmagatzemar l'objecte"; +App::$strings["Thing added"] = "S'ha afegit la cosa"; +App::$strings["OBJ: %1\$s %2\$s %3\$s"] = "OBJ: %1\$s %2\$s %3\$s"; +App::$strings["Show Thing"] = "Mostra la cosa"; +App::$strings["item not found."] = "no s'ha trobat l'element."; +App::$strings["Edit Thing"] = "Edita la cosa"; +App::$strings["Select a profile"] = "Tria un perfil"; +App::$strings["Post an activity"] = "Publica una activitat"; +App::$strings["Only sends to viewers of the applicable profile"] = "S'envia només a visitants del perfil corresponent"; +App::$strings["Name of thing e.g. something"] = "Nom de la cosa. Exemple: patata"; +App::$strings["URL of thing (optional)"] = "Adreça URL de la cosa (opcional)"; +App::$strings["URL for photo of thing (optional)"] = "Adreça URL de la foto d'una cosa (opcional)"; +App::$strings["Add Thing to your Profile"] = "Afegeix una cosa al teu perfil"; +App::$strings["Export Channel"] = "Exportar Canal"; +App::$strings["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."] = "Exporta la informació bàsica del canal a un arxiu. Això actua com a còpia de recolzament de les teves connexions, permisos, perfil i dades bàsiques, les quals pots emprar per traslladar aquestes dades a una altre lloc/node, però no conté el contingut del canal."; +App::$strings["Export Content"] = "Exportar el Contingut"; +App::$strings["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."] = "Exporta la informació del canal i tot el contingut recent a un arxiu de recolzament JSON que por ser restaurat o importat en altre lloc/node. Això còpia totes les teves connexions, permisos, perfil i dades i mesos de entrades. L'arxiu pot ser MOLT gran. Si et plau, sigues pacient ja que pot trigar uns minuts a començar a baixar."; +App::$strings["Export your posts from a given year."] = "Exporta les teves entrades d'un any donat."; +App::$strings["You may also export your posts and conversations for a particular year or month. Adjust the date in your browser location bar to select other dates. If the export fails (possibly due to memory exhaustion on your server hub), please try again selecting a more limited date range."] = "Pots també exportar les teves entrades i conversacions d'un any o un mes en particular. Ajusta la data a la barra de direccions del navegador per seleccionar altres dates. Si la exportació falla (possiblement degut al esgotament de la memòria del node servidor), si et plau, intenta de nou la selecció d'un rang de dates més limitat."; +App::$strings["To select all posts for a given year, such as this year, visit %2\$s"] = "Per seleccionar tots els missatges per a un any determinat, com aquest any, visiteu %2\$s"; +App::$strings["To select all posts for a given month, such as January of this year, visit %2\$s"] = "Per seleccionar tots els missatges per a un mes determinat, com el de gener d'aquest any, visiteu %2\$s"; +App::$strings["These content files may be imported or restored by visiting %2\$s on any site containing your channel. For best results please import or restore these in date order (oldest first)."] = "Aquests arxius de contingut poden ser importats o restaurats per visitar %2\$s en qualsevol lloc que conté el teu canal. Per obtenir els millors resultats si us plau, importar o restaurar aquests en ordre de data (la més antiga primer)."; App::$strings["No connections."] = "Sense connexions."; App::$strings["Visit %s's profile [%s]"] = "Visita el perfil [%s] de %s"; App::$strings["View Connections"] = "Veure Connexions"; App::$strings["Source of Item"] = "Origen de l'article"; -App::$strings["Authorize application connection"] = "Autoritza la connexió de l'aplicació"; -App::$strings["Return to your app and insert this Securty Code:"] = "Torna a la teva aplicació i insereix aquest Codi de Seguretat:"; -App::$strings["Please login to continue."] = "Si et plau, identifica't per continuar."; -App::$strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Vols autoritzar a aquesta aplicació l'accés a les teves entrades i contactes i/o a crear noves entrades com si fos tu mateix."; +App::$strings["Webpages"] = "Pàgines web"; +App::$strings["Actions"] = "Accions"; +App::$strings["Page Link"] = "Enllaç a Pàgina"; +App::$strings["Page Title"] = "Títol de la pàgina"; App::$strings["Xchan Lookup"] = "Cerca a xchan"; App::$strings["Lookup xchan beginning with (or webbie): "] = "Cerca a xchan començant per (o webbie)"; +App::$strings["Site Admin"] = "Administració"; +App::$strings["Bug Report"] = "Informe d'Errors"; +App::$strings["View Bookmarks"] = "Veure Marcadors"; +App::$strings["My Chatrooms"] = "Les meves Sales de Xat"; +App::$strings["Firefox Share"] = "Compartir amb Firefox"; +App::$strings["Remote Diagnostics"] = "Diagnòstics Remots"; +App::$strings["Suggest Channels"] = "Suggerir Canals"; +App::$strings["Login"] = "Identifica't"; +App::$strings["Grid"] = "Malla"; +App::$strings["Channel Home"] = "Canal Personal"; +App::$strings["Events"] = "Esdeveniments"; +App::$strings["Directory"] = "Directori"; +App::$strings["Mail"] = "Correu"; +App::$strings["Chat"] = "Xerrar"; +App::$strings["Probe"] = "Sondeig"; +App::$strings["Suggest"] = "Suggeriment"; +App::$strings["Random Channel"] = "Canal Aleatori"; +App::$strings["Invite"] = "Convida"; +App::$strings["Features"] = "Funcionalitats"; +App::$strings["Post"] = "Entrada"; +App::$strings["Purchase"] = "Compra"; App::$strings["Missing room name"] = "Perdut el nom de la sala"; App::$strings["Duplicate room name"] = "Nom de la sala duplicat"; App::$strings["Invalid room specifier."] = "Especificació de la sala invàlida."; @@ -1516,27 +1474,6 @@ App::$strings["Please visit %s to approve or reject the suggestion."] = "Per fav App::$strings["[Hubzilla:Notify]"] = "[Hubzilla:Notificació]"; App::$strings["created a new post"] = "Creada una nova entrada"; App::$strings["commented on %s's post"] = "comentat a l'entrada de %s"; -App::$strings["Site Admin"] = "Administració"; -App::$strings["Bug Report"] = "Informe d'Errors"; -App::$strings["View Bookmarks"] = "Veure Marcadors"; -App::$strings["My Chatrooms"] = "Les meves Sales de Xat"; -App::$strings["Firefox Share"] = "Compartir amb Firefox"; -App::$strings["Remote Diagnostics"] = "Diagnòstics Remots"; -App::$strings["Suggest Channels"] = "Suggerir Canals"; -App::$strings["Login"] = "Identifica't"; -App::$strings["Grid"] = "Malla"; -App::$strings["Channel Home"] = "Canal Personal"; -App::$strings["Events"] = "Esdeveniments"; -App::$strings["Directory"] = "Directori"; -App::$strings["Mail"] = "Correu"; -App::$strings["Chat"] = "Xerrar"; -App::$strings["Probe"] = "Sondeig"; -App::$strings["Suggest"] = "Suggeriment"; -App::$strings["Random Channel"] = "Canal Aleatori"; -App::$strings["Invite"] = "Convida"; -App::$strings["Features"] = "Funcionalitats"; -App::$strings["Post"] = "Entrada"; -App::$strings["Purchase"] = "Compra"; App::$strings["Private Message"] = "Missatge Privat"; App::$strings["Select"] = "Selecciona"; App::$strings["Save to Folder"] = "Guardar en la Carpeta"; @@ -1573,7 +1510,7 @@ App::$strings["Expires: %s"] = "Expira: %s"; App::$strings["Save Bookmarks"] = "Guarda Favorits"; App::$strings["Add to Calendar"] = "Afegeix al Calendari"; App::$strings["Mark all seen"] = "Marca tot com ja vist"; -App::$strings["%s show all"] = ""; +App::$strings["[+] show all"] = "[+] mostra tot"; App::$strings["Bold"] = "Negreta"; App::$strings["Italic"] = "Italica"; App::$strings["Underline"] = "Subratllat"; @@ -1582,93 +1519,9 @@ App::$strings["Code"] = "Codi"; App::$strings["Image"] = "Imatge"; App::$strings["Insert Link"] = "Insereix Enllaç"; App::$strings["Video"] = "Video"; -App::$strings["Visible to your default audience"] = "Visible per a la teva audiència "; -App::$strings["Only me"] = "Només jo"; -App::$strings["Public"] = "Públic"; -App::$strings["Anybody in the \$Projectname network"] = "Ningú a la xarxa \$Projectname"; -App::$strings["Any account on %s"] = "Qualsevol compte a %s"; -App::$strings["Any of my connections"] = "Qualsevol de les meves connexions"; -App::$strings["Only connections I specifically allow"] = "Només les connexions que permeto específicament"; -App::$strings["Anybody authenticated (could include visitors from other networks)"] = "Qualsevol persona autenticada (podria incloure als usuaris d'altres xarxes)"; -App::$strings["Any connections including those who haven't yet been approved"] = "Qualsevol connexió incloent aquells que encara no han estat aprovats"; -App::$strings["This is your default setting for the audience of your normal stream, and posts."] = "Aquest és l'ajust per defecte per al públic del seu flux normal i entrades."; -App::$strings["This is your default setting for who can view your default channel profile"] = "Aquesta és la configuració per defecte per a qui pugui veure el teu perfil per defecte del canal"; -App::$strings["This is your default setting for who can view your connections"] = "Aquesta és la configuració per defecte per a qui pugui veure les teves connexions"; -App::$strings["This is your default setting for who can view your file storage and photos"] = "Aquesta és la configuració per defecte per a qui pugui veure els teus arxius i fotos"; -App::$strings["This is your default setting for the audience of your webpages"] = "Aquests son els ajustos per defecte de l'audiència de les teves pàgines web"; App::$strings["No username found in import file."] = "No s'ha trobat nom d'usuari a l'arxiu d'importació."; App::$strings["Unable to create a unique channel address. Import failed."] = "No s'ha pogut importar el canal perquè l'adreça única de canal no s'ha pogut crear."; App::$strings["Cannot locate DNS info for database server '%s'"] = "No s'ha trobat informació de DNS pel servidor de base de dades '%s'"; -App::$strings["Image exceeds website size limit of %lu bytes"] = "La imatge excedeix la mida limit pel lloc web en %lu bytes"; -App::$strings["Image file is empty."] = "El fitxer d'imatge esta buit."; -App::$strings["Photo storage failed."] = "Fracassà l'emmagatzematge de la Foto"; -App::$strings["a new photo"] = "Una foto nova"; -App::$strings["__ctx:photo_upload__ %1\$s posted %2\$s to %3\$s"] = "%1\$s enviat %2\$s a %3\$s"; -App::$strings["Photo Albums"] = "Albums de Fotos"; -App::$strings["Upload New Photos"] = "Puja Noves Fotos"; -App::$strings["Logout"] = "Desconectar"; -App::$strings["End this session"] = "Finalitza aquesta sessió"; -App::$strings["Home"] = "Inici"; -App::$strings["Your posts and conversations"] = "Les teves entrades i converses"; -App::$strings["Your profile page"] = "La teva pàgina de perfil"; -App::$strings["Manage/Edit profiles"] = "Gestiona/Edita perfils"; -App::$strings["Edit Profile"] = "Edita Perfil"; -App::$strings["Edit your profile"] = "Edita el teu perfil"; -App::$strings["Your photos"] = "Les Teves Fotos"; -App::$strings["Your files"] = "Els teus arxius"; -App::$strings["Your chatrooms"] = "Les teves sales de xerrar"; -App::$strings["Bookmarks"] = "Marcadors"; -App::$strings["Your bookmarks"] = "Els teus marcadors"; -App::$strings["Your webpages"] = "Les teves pàgines web"; -App::$strings["Your wiki"] = ""; -App::$strings["Sign in"] = "Signatura"; -App::$strings["%s - click to logout"] = "%s - click per desconectar"; -App::$strings["Remote authentication"] = "Autenticació remota"; -App::$strings["Click to authenticate to your home hub"] = "Clica per autentificar-te en el teu node"; -App::$strings["Home Page"] = "Pàgina Personal"; -App::$strings["Create an account"] = "Crear un compte"; -App::$strings["Help and documentation"] = "Ajuda i documentació"; -App::$strings["Applications, utilities, links, games"] = "Aplicacions, utilitats, enllaços, jocs"; -App::$strings["Search site @name, #tag, ?docs, content"] = "Cerca pel lloc @name, #tag, ?docs, contingut"; -App::$strings["Channel Directory"] = "Directori de Canals"; -App::$strings["Your grid"] = "La teva malla"; -App::$strings["Mark all grid notifications seen"] = "Marca totes les notificacions de la malla vistes"; -App::$strings["Channel home"] = "Canal personal"; -App::$strings["Mark all channel notifications seen"] = "Marca totes les notificacions de canal vistes"; -App::$strings["Notices"] = "Noticies"; -App::$strings["Notifications"] = "Notificacions"; -App::$strings["See all notifications"] = "Veure totes les Notificacions"; -App::$strings["Private mail"] = "Correu privat"; -App::$strings["See all private messages"] = "Veure tots els missatges privats"; -App::$strings["Mark all private messages seen"] = "Marcar tots els missatges privats vistos"; -App::$strings["Inbox"] = "Safata d'entrada"; -App::$strings["Outbox"] = "Safata de sortida"; -App::$strings["New Message"] = "Nou Missatge"; -App::$strings["Event Calendar"] = "Calendari d'Events"; -App::$strings["See all events"] = "Veure tots els esdeveniments"; -App::$strings["Mark all events seen"] = "Marcar tots els esdeveniments vistos"; -App::$strings["Manage Your Channels"] = "Gestiona els Teus Canals"; -App::$strings["Account/Channel Settings"] = "Ajustos de Compte/Canal"; -App::$strings["Admin"] = "Admin"; -App::$strings["Site Setup and Configuration"] = "Ajustos i Configuració del Lloc"; -App::$strings["Loading..."] = "Carregant..."; -App::$strings["@name, #tag, ?doc, content"] = "@nom, #etiqueta, ?doc, contingut"; -App::$strings["Please wait..."] = "Si us plau, espera......."; -App::$strings["view full size"] = "Veure a mida competa"; -App::$strings["Administrator"] = "Administrador"; -App::$strings["No Subject"] = "Sense Assumpte"; -App::$strings["Friendica"] = "Friendica"; -App::$strings["OStatus"] = "OStatus"; -App::$strings["GNU-Social"] = "GNU-Social"; -App::$strings["RSS/Atom"] = "RSS/Atom"; -App::$strings["Diaspora"] = "Diaspora"; -App::$strings["Facebook"] = "Facebook"; -App::$strings["Zot"] = "Zot"; -App::$strings["LinkedIn"] = "LinkedIn"; -App::$strings["XMPP/IM"] = "XMPP/IM"; -App::$strings["MySpace"] = "MySpace"; -App::$strings["New Page"] = "Pàgina Nova"; -App::$strings["Title"] = "Títol"; App::$strings["Categories"] = "Categories"; App::$strings["Tags"] = "Etiquetes"; App::$strings["Keywords"] = "Paraules clau"; @@ -1678,196 +1531,34 @@ App::$strings["want"] = "vull"; App::$strings["wants"] = "vols"; App::$strings["likes"] = "agrada"; App::$strings["dislikes"] = "desagrada"; -App::$strings["Unable to obtain identity information from database"] = "Incapaç de trobar l'informació d'identitat a la base de dades"; -App::$strings["Empty name"] = "Nom buit"; -App::$strings["Name too long"] = "Nom massa llarg"; -App::$strings["No account identifier"] = "Sense identificador de compte"; -App::$strings["Nickname is required."] = "Alies/malnom es requerit."; -App::$strings["Reserved nickname. Please choose another."] = "Àlies reservat. Tria un altre."; -App::$strings["Nickname has unsupported characters or is already being used on this site."] = "L'álies te caracters no soportats o ja esta en ús en aquest lloc"; -App::$strings["Unable to retrieve created identity"] = "No es pot recuperar la identitat creada"; -App::$strings["Default Profile"] = "Perfil per Defecte"; -App::$strings["Requested channel is not available."] = "El canal demanat no està disponible."; -App::$strings["Create New Profile"] = "Crear un Perfil Nou"; -App::$strings["Visible to everybody"] = "Visible per tothom"; -App::$strings["Gender:"] = "Gènere:"; -App::$strings["Status:"] = "Estatus:"; -App::$strings["Homepage:"] = "Pàgina Personal:"; -App::$strings["Online Now"] = "Ara en Linia"; -App::$strings["Like this channel"] = "M'agrada aquest canal"; -App::$strings["j F, Y"] = "j F, Y"; -App::$strings["j F"] = "j F"; -App::$strings["Birthday:"] = "Aniversari:"; -App::$strings["for %1\$d %2\$s"] = "per %1\$d %2\$s"; -App::$strings["Sexual Preference:"] = "Preferència Sexual:"; -App::$strings["Tags:"] = "Etiquetes:"; -App::$strings["Political Views:"] = "Idees Polítiques:"; -App::$strings["Religion:"] = "Religió:"; -App::$strings["Hobbies/Interests:"] = "Aficions/Interessos:"; -App::$strings["Likes:"] = "Agrada:"; -App::$strings["Dislikes:"] = "Desagrada:"; -App::$strings["Contact information and Social Networks:"] = "Informació de contacte i Xarxes Socials:"; -App::$strings["My other channels:"] = "Els meus altres canals:"; -App::$strings["Musical interests:"] = "Interessos Musicals:"; -App::$strings["Books, literature:"] = "Llibres, literatura:"; -App::$strings["Television:"] = "Televisió:"; -App::$strings["Film/dance/culture/entertainment:"] = "Películes/Dança/Cultura/Entreteniment:"; -App::$strings["Love/Romance:"] = "Amor/Romace:"; -App::$strings["Work/employment:"] = "Treball/feina:"; -App::$strings["School/education:"] = "Escola/educació:"; -App::$strings["Like this thing"] = "M'agrada això"; -App::$strings["New window"] = "Nova finestra"; -App::$strings["Open the selected location in a different window or browser tab"] = "Obrir la localització seleccionada en un altre finestra o pestanya del navegador"; -App::$strings["User '%s' deleted"] = "usuari '%s' esborrat"; -App::$strings["%1\$s is now connected with %2\$s"] = "%1\$s esta ara connectat amb %2\$s"; -App::$strings["%1\$s poked %2\$s"] = "%1\$s a esperonat %2\$s"; -App::$strings["poked"] = "esperonat"; -App::$strings["View %s's profile @ %s"] = "Vista %s del perfil @ %s"; -App::$strings["Categories:"] = "Categories:"; -App::$strings["Filed under:"] = "Arxivar a:"; -App::$strings["View in context"] = "Veure en context"; -App::$strings["remove"] = "treu"; -App::$strings["Delete Selected Items"] = "Esborra els Articles Seleccionats"; -App::$strings["View Source"] = "Veure l'Origen"; -App::$strings["Follow Thread"] = "Segueix el Fil"; -App::$strings["Unfollow Thread"] = "Fil Abandonat"; -App::$strings["Activity/Posts"] = "Activitat/Entrades"; -App::$strings["Edit Connection"] = "Modifica la Connexió"; -App::$strings["Message"] = "Missatge"; -App::$strings["%s likes this."] = "%s agrada això."; -App::$strings["%s doesn't like this."] = "%s no agrada això."; -App::$strings["%2\$d people like this."] = array( - 0 => "%2\$d gent agrada això.", - 1 => "%2\$d gent agrada això.", -); -App::$strings["%2\$d people don't like this."] = array( - 0 => "%2\$d gent no agrada això.", - 1 => "%2\$d gent no agrada això.", -); -App::$strings["and"] = "i"; -App::$strings[", and %d other people"] = array( - 0 => ", i %d altra gent", - 1 => ", i %d altra gent", -); -App::$strings["%s like this."] = "%s agrada això."; -App::$strings["%s don't like this."] = "%s no agrada això."; -App::$strings["Set your location"] = "Ajusta la teva ubicació"; -App::$strings["Clear browser location"] = "Treu la localització del navegador"; -App::$strings["Tag term:"] = "Paraula de l'Etiqueta:"; -App::$strings["Where are you right now?"] = "On ets ara?"; -App::$strings["Page link name"] = "Nom de la pàgina enllaçada"; -App::$strings["Post as"] = "Envia com"; -App::$strings["Toggle voting"] = "Commutar votació"; -App::$strings["Categories (optional, comma-separated list)"] = "Categories (opcional, llista separada per comes)"; -App::$strings["Set publish date"] = "Ajusta la data de publicació"; -App::$strings["Discover"] = "Descobrir"; -App::$strings["Imported public streams"] = "Importar fluxos públics"; -App::$strings["Commented Order"] = "Ordenar per Comentaris"; -App::$strings["Sort by Comment Date"] = "Ordenar per Data del Comentari"; -App::$strings["Posted Order"] = "Ordenar per Entrades"; -App::$strings["Sort by Post Date"] = "Ordenar per Data d' Entrada"; -App::$strings["Posts that mention or involve you"] = "Entrades que et mencionen o involucren"; -App::$strings["Activity Stream - by date"] = "Activitat del Flux - per data"; -App::$strings["Starred"] = "Preferit"; -App::$strings["Favourite Posts"] = "Entrades Favorites"; -App::$strings["Spam"] = "Spam"; -App::$strings["Posts flagged as SPAM"] = "Entrades marcades com a SPAM"; -App::$strings["Status Messages and Posts"] = "Estat dels Missatges i Entrades"; -App::$strings["About"] = "El Meu Perfil"; -App::$strings["Profile Details"] = "Detalls del Perfil"; -App::$strings["Files and Storage"] = "Arxius i Emmagatzegament"; -App::$strings["Chatrooms"] = "Sala per Xerrar"; -App::$strings["Saved Bookmarks"] = "Marcadors Guardats"; -App::$strings["Manage Webpages"] = "Gestió de Pàgines Web"; -App::$strings["__ctx:noun__ Attending"] = array( - 0 => "Assistint", - 1 => "Assistint", -); -App::$strings["__ctx:noun__ Not Attending"] = array( - 0 => "Desassistint", - 1 => "Desassistint", -); -App::$strings["__ctx:noun__ Undecided"] = array( - 0 => "Indecís", - 1 => "Indecisos", -); -App::$strings["__ctx:noun__ Agree"] = array( - 0 => "Acord", - 1 => "Acords", -); -App::$strings["__ctx:noun__ Disagree"] = array( - 0 => "Desacord", - 1 => "Desacords", -); -App::$strings["__ctx:noun__ Abstain"] = array( - 0 => "Abstenirse", - 1 => "Abstenirse", -); +App::$strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A"; +App::$strings["Starts:"] = "Inicia:"; +App::$strings["Finishes:"] = "Acaba:"; +App::$strings["This event has been added to your calendar."] = "Aquest succés ha estat afegit al teu calendari."; +App::$strings["Not specified"] = "Sense especificar"; +App::$strings["Needs Action"] = "Necessita una Acció"; +App::$strings["Completed"] = "Completat"; +App::$strings["In Process"] = "En Procès"; +App::$strings["Cancelled"] = "Cancel·lat"; App::$strings["Cannot create a duplicate channel identifier on this system. Import failed."] = "No s'ha pogut importar el canal perquè l'identificador del canal no s'ha pogut duplicar en aquest servidor."; App::$strings["Channel clone failed. Import failed."] = "No s'ha pogut importar el canal perquè el canal no s'ha pogut clonar."; -App::$strings["Frequently"] = "Freqüentment"; -App::$strings["Hourly"] = "Horariament"; -App::$strings["Twice daily"] = "Dos vegades al dia"; -App::$strings["Daily"] = "Diariament"; -App::$strings["Weekly"] = "Setmanalment"; -App::$strings["Monthly"] = "Mensualment"; -App::$strings["Currently Male"] = "Actualment Masculí"; -App::$strings["Currently Female"] = "Actualment Femení"; -App::$strings["Mostly Male"] = "Més aviat Masculí"; -App::$strings["Mostly Female"] = "Més Aviat Femení"; -App::$strings["Transgender"] = "Canvi de Sexe"; -App::$strings["Intersex"] = "Intersexual"; -App::$strings["Transsexual"] = "Transsexual"; -App::$strings["Hermaphrodite"] = "Hermafrodita"; -App::$strings["Neuter"] = "Neutre"; -App::$strings["Non-specific"] = "Indefinit"; -App::$strings["Undecided"] = "Indecís"; -App::$strings["Males"] = "Homes"; -App::$strings["Females"] = "Dones"; -App::$strings["Gay"] = "Gay"; -App::$strings["Lesbian"] = "Lesbianes"; -App::$strings["No Preference"] = "Sense Preferències"; -App::$strings["Bisexual"] = "Bisexual"; -App::$strings["Autosexual"] = "Autosexual"; -App::$strings["Abstinent"] = "Abstinent"; -App::$strings["Virgin"] = "Verge"; -App::$strings["Deviant"] = "Desviat"; -App::$strings["Fetish"] = "Fetixiste"; -App::$strings["Oodles"] = "Orgies"; -App::$strings["Nonsexual"] = "Asexual"; -App::$strings["Single"] = "Solter"; -App::$strings["Lonely"] = "Solitari"; -App::$strings["Available"] = "Disponible"; -App::$strings["Unavailable"] = "No Disponible"; -App::$strings["Has crush"] = "Aplastat"; -App::$strings["Infatuated"] = "Encapritxat"; -App::$strings["Dating"] = "Promés"; -App::$strings["Unfaithful"] = "Infidel"; -App::$strings["Sex Addict"] = "Adicte al Sexe"; -App::$strings["Friends/Benefits"] = "Amics amb Beneficis"; -App::$strings["Casual"] = "Casual"; -App::$strings["Engaged"] = "Ocupat"; -App::$strings["Married"] = "Casat"; -App::$strings["Imaginarily married"] = "Casat Imaginàriament"; -App::$strings["Partners"] = "Parella"; -App::$strings["Cohabiting"] = "Cohabitant"; -App::$strings["Common law"] = "Tradició"; -App::$strings["Happy"] = "Feliç"; -App::$strings["Not looking"] = "No Cerco"; -App::$strings["Swinger"] = "Llibertí"; -App::$strings["Betrayed"] = "Traït"; -App::$strings["Separated"] = "Separat"; -App::$strings["Unstable"] = "Inestable"; -App::$strings["Divorced"] = "Divorciat"; -App::$strings["Imaginarily divorced"] = "Divorciat Imaginàriament"; -App::$strings["Widowed"] = "Vidu/ua"; -App::$strings["Uncertain"] = "Incert"; -App::$strings["It's complicated"] = "Es Complicat"; -App::$strings["Don't care"] = "No Et Fa Res"; -App::$strings["Ask me"] = "Pregunta"; -App::$strings["%1\$s's bookmarks"] = "%1\$s de marcadors"; -App::$strings["guest:"] = ""; -App::$strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "El formulario de la cadena de seguridad no era correcto. Esto probablemente ocurrió porque el formulario se ha abierto durante demasiado tiempo (> 3 horas) antes de enviarlo."; +App::$strings["(Unknown)"] = "(Desconegut)"; +App::$strings["Visible to anybody on the internet."] = "Visible per tothom a la Internet"; +App::$strings["Visible to you only."] = "Visible només per tú."; +App::$strings["Visible to anybody in this network."] = "Visible per tothom en aquesta xarxa."; +App::$strings["Visible to anybody authenticated."] = "Visible per tothom autenticat."; +App::$strings["Visible to anybody on %s."] = "Visible per a tothom a %s."; +App::$strings["Visible to all connections."] = "Visible per a totes les connexions."; +App::$strings["Visible to approved connections."] = "Visible per a les connexions aprovades."; +App::$strings["Visible to specific connections."] = "Visible per a específiques connexions."; +App::$strings["Privacy group is empty."] = "El grup privat està vuit."; +App::$strings["Privacy group: %s"] = "Grup privat: %s"; +App::$strings["Connection not found."] = "Connexió no trobada."; +App::$strings["profile photo"] = "foto del perfil"; +App::$strings["No recipient provided."] = "No s'ha proporcionat bústia."; +App::$strings["[no subject]"] = "[no subject]"; +App::$strings["Unable to determine sender."] = "incapaç de determinar el remitent"; +App::$strings["Stored post could not be verified."] = "L'entrada guardada no pot ser verificada"; App::$strings["prev"] = "prev"; App::$strings["first"] = "primer"; App::$strings["last"] = "últim"; @@ -1877,6 +1568,7 @@ App::$strings["newer"] = "El més nou"; App::$strings["No connections"] = "Sense Connexions"; App::$strings["View all %s connections"] = "Veure totes les connexions de %s"; App::$strings["poke"] = "esperona"; +App::$strings["poked"] = "esperonat"; App::$strings["ping"] = "coloca"; App::$strings["pinged"] = "colocat"; App::$strings["prod"] = "picar"; @@ -1939,21 +1631,385 @@ App::$strings["Select an alternate language"] = "Tria un idioma alternatiu"; App::$strings["activity"] = "activitat"; App::$strings["Design Tools"] = "Eines de disseny"; App::$strings["Pages"] = "Pàgines"; -App::$strings["Logged out."] = "Sortir."; -App::$strings["Failed authentication"] = "Autenticació fallida"; -App::$strings["Can view my normal stream and posts"] = "Pot veure el flux i entrades normals"; -App::$strings["Can view my webpages"] = "Pot veure les meves pàgines web"; -App::$strings["Can post on my channel page (\"wall\")"] = "Pot fer entrades a la meva pàgina de canal (\"mur\")"; -App::$strings["Can like/dislike stuff"] = "Pot dir si agrada/desagrada "; -App::$strings["Profiles and things other than posts/comments"] = "Perfils i altres coses a més d'entrades/comentaris"; -App::$strings["Can forward to all my channel contacts via post @mentions"] = "Ho pot enviar a tots els meus contactes del canal via entrades @mencions"; -App::$strings["Advanced - useful for creating group forum channels"] = "Avançat - capaç de crear canals de grups de foro"; -App::$strings["Can chat with me (when available)"] = "Pot xatejar amb mi (si estic disponible)"; -App::$strings["Can write to my file storage and photos"] = "Pot escriure al meu magatzem d'arxius i fotos"; -App::$strings["Can edit my webpages"] = "Pot editar les meves pàgines web"; -App::$strings["Somewhat advanced - very useful in open communities"] = "Quelcom avançat - molt útil en comunitats obertes"; -App::$strings["Can administer my channel resources"] = "Pot administrar els meus recursos del canal"; -App::$strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "Extremadament avançat. No toquis res si no saps que estàs fent"; +App::$strings["System"] = "Sistema"; +App::$strings["New App"] = "Nova App"; +App::$strings["Suggestions"] = "Suggerencies"; +App::$strings["See more..."] = "Veure més....."; +App::$strings["You have %1$.0f of %2$.0f allowed connections."] = "Tens %1$.0f de %2$.0f connexions permeses."; +App::$strings["Add New Connection"] = "Afegeix una Nova Connexió"; +App::$strings["Enter channel address"] = "Introdueix l'adreça del canal"; +App::$strings["Examples: bob@example.com, https://example.com/barbara"] = "Exemples: bob@example.com, https://exemple.com/barbara"; +App::$strings["Notes"] = "Notes"; +App::$strings["Remove term"] = "Plaç de remoció"; +App::$strings["Saved Searches"] = "Cerques Guardades"; +App::$strings["add"] = "afegeix"; +App::$strings["Saved Folders"] = "Carpetes Guardades"; +App::$strings["Everything"] = "Tot"; +App::$strings["Archives"] = "Arxius"; +App::$strings["Refresh"] = "Refresc"; +App::$strings["Account settings"] = "Ajustos de Compte"; +App::$strings["Channel settings"] = "Ajustos de Canal"; +App::$strings["Additional features"] = "Característiques addicionals"; +App::$strings["Feature/Addon settings"] = "Ajustos de Complements"; +App::$strings["Display settings"] = "Ajustos de pantalla"; +App::$strings["Manage locations"] = "Gestiona ubicacions"; +App::$strings["Export channel"] = "Exportat canal"; +App::$strings["Connected apps"] = "Apps connectades"; +App::$strings["Premium Channel Settings"] = "Ajustos Premium de Canal"; +App::$strings["Private Mail Menu"] = "Menú de Correu Privat"; +App::$strings["Combined View"] = "Vista Combinada"; +App::$strings["Inbox"] = "Safata d'entrada"; +App::$strings["Outbox"] = "Safata de sortida"; +App::$strings["New Message"] = "Nou Missatge"; +App::$strings["Conversations"] = "Conversacions"; +App::$strings["Received Messages"] = "Missatges Rebuts"; +App::$strings["Sent Messages"] = "Missatges Enviats"; +App::$strings["No messages."] = "Sense missatges."; +App::$strings["Delete conversation"] = "Conversació esborrada"; +App::$strings["Events Menu"] = "Menú d'Esdeveniments"; +App::$strings["Day View"] = "Vista de Dia"; +App::$strings["Week View"] = "Vista de Setmana"; +App::$strings["Month View"] = "Vista de Mes"; +App::$strings["Events Tools"] = "Eina d'Esdeveniments"; +App::$strings["Export Calendar"] = "Exportar Calendari"; +App::$strings["Import Calendar"] = "Importar Calendari"; +App::$strings["Chatrooms"] = "Sala per Xerrar"; +App::$strings["Overview"] = "Visió General"; +App::$strings["Chat Members"] = "Membres de la Sala de Xat"; +App::$strings["Bookmarked Chatrooms"] = "Sales de Xat Favorites"; +App::$strings["Suggested Chatrooms"] = "Sales de Xat Suggerides"; +App::$strings["photo/image"] = "foto/imatge"; +App::$strings["Click to show more"] = "Fes clic per veure més"; +App::$strings["Rating Tools"] = "Eines de Valoració"; +App::$strings["Rate Me"] = "Valora'm"; +App::$strings["View Ratings"] = "Veure Valoracions"; +App::$strings["Forums"] = "Forums"; +App::$strings["Tasks"] = "Tasques"; +App::$strings["Documentation"] = "Documentació"; +App::$strings["Project/Site Information"] = "Informació del Projecte/Lloc"; +App::$strings["For Members"] = "Per Membres"; +App::$strings["For Administrators"] = "Per Administradors"; +App::$strings["For Developers"] = "Per Desenvolupadors"; +App::$strings["Member registrations waiting for confirmation"] = "Una inscripció per a ser membre està esperant confirmació"; +App::$strings["Inspect queue"] = "Revisa cua"; +App::$strings["DB updates"] = "Actualitzacions de Base de Dades"; +App::$strings["Admin"] = "Admin"; +App::$strings["Plugin Features"] = "Característiques del Plugin"; +App::$strings["Channel is blocked on this site."] = "El canal està bloquejat en aquest lloc."; +App::$strings["Channel location missing."] = "Ubicació del canal perduda."; +App::$strings["Response from remote channel was incomplete."] = "La resposta del canal remot fou incompleta."; +App::$strings["Channel was deleted and no longer exists."] = "El canal fou esborrat i actualment no existeix."; +App::$strings["Protocol disabled."] = "Protocol desactivat."; +App::$strings["Channel discovery failed."] = "Descobriment de canal fallit."; +App::$strings["Cannot connect to yourself."] = "No pots connectar amb tu mateix."; +App::$strings["%1\$s's bookmarks"] = "%1\$s de marcadors"; +App::$strings["Public Timeline"] = "Línia de Temps Pública"; +App::$strings["Image/photo"] = "Imatge/foto"; +App::$strings["Encrypted content"] = "Contingut encriptat"; +App::$strings["Install %s element: "] = "Instal·la l'element %s:"; +App::$strings["This post contains an installable %s element, however you lack permissions to install it on this site."] = "Aquesta entrada contè un element %s instal·lable, potser manques de permissos per instal·lar-lo en aquest lloc."; +App::$strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s va escriure el següent %2\$s %3\$s"; +App::$strings["Click to open/close"] = "Clic per obrir/tancar"; +App::$strings["spoiler"] = "xafa guitarres"; +App::$strings["Different viewers will see this text differently"] = "Diferents observadors veuran aquest text de diferents formes"; +App::$strings["$1 wrote:"] = "$1 va escriure:"; +App::$strings["Directory Options"] = "Opcions de Directori"; +App::$strings["Safe Mode"] = "Manera Segura"; +App::$strings["Public Forums Only"] = "Només Fòrums Públics"; +App::$strings["This Website Only"] = "Només Aquest Lloc Web"; +App::$strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "El formulario de la cadena de seguridad no era correcto. Esto probablemente ocurrió porque el formulario se ha abierto durante demasiado tiempo (> 3 horas) antes de enviarlo."; +App::$strings["Logout"] = "Desconectar"; +App::$strings["End this session"] = "Finalitza aquesta sessió"; +App::$strings["Home"] = "Inici"; +App::$strings["Your posts and conversations"] = "Les teves entrades i converses"; +App::$strings["Your profile page"] = "La teva pàgina de perfil"; +App::$strings["Manage/Edit profiles"] = "Gestiona/Edita perfils"; +App::$strings["Edit Profile"] = "Edita Perfil"; +App::$strings["Edit your profile"] = "Edita el teu perfil"; +App::$strings["Your photos"] = "Les Teves Fotos"; +App::$strings["Your files"] = "Els teus arxius"; +App::$strings["Your chatrooms"] = "Les teves sales de xerrar"; +App::$strings["Bookmarks"] = "Marcadors"; +App::$strings["Your bookmarks"] = "Els teus marcadors"; +App::$strings["Your webpages"] = "Les teves pàgines web"; +App::$strings["Sign in"] = "Signatura"; +App::$strings["%s - click to logout"] = "%s - click per desconectar"; +App::$strings["Remote authentication"] = "Autenticació remota"; +App::$strings["Click to authenticate to your home hub"] = "Clica per autentificar-te en el teu node"; +App::$strings["Home Page"] = "Pàgina Personal"; +App::$strings["Create an account"] = "Crear un compte"; +App::$strings["Help and documentation"] = "Ajuda i documentació"; +App::$strings["Applications, utilities, links, games"] = "Aplicacions, utilitats, enllaços, jocs"; +App::$strings["Search site @name, #tag, ?docs, content"] = "Cerca pel lloc @name, #tag, ?docs, contingut"; +App::$strings["Channel Directory"] = "Directori de Canals"; +App::$strings["Your grid"] = "La teva malla"; +App::$strings["Mark all grid notifications seen"] = "Marca totes les notificacions de la malla vistes"; +App::$strings["Channel home"] = "Canal personal"; +App::$strings["Mark all channel notifications seen"] = "Marca totes les notificacions de canal vistes"; +App::$strings["Notices"] = "Noticies"; +App::$strings["Notifications"] = "Notificacions"; +App::$strings["See all notifications"] = "Veure totes les Notificacions"; +App::$strings["Private mail"] = "Correu privat"; +App::$strings["See all private messages"] = "Veure tots els missatges privats"; +App::$strings["Mark all private messages seen"] = "Marcar tots els missatges privats vistos"; +App::$strings["Event Calendar"] = "Calendari d'Events"; +App::$strings["See all events"] = "Veure tots els esdeveniments"; +App::$strings["Mark all events seen"] = "Marcar tots els esdeveniments vistos"; +App::$strings["Manage Your Channels"] = "Gestiona els Teus Canals"; +App::$strings["Account/Channel Settings"] = "Ajustos de Compte/Canal"; +App::$strings["Site Setup and Configuration"] = "Ajustos i Configuració del Lloc"; +App::$strings["Loading..."] = "Carregant..."; +App::$strings["@name, #tag, ?doc, content"] = "@nom, #etiqueta, ?doc, contingut"; +App::$strings["Please wait..."] = "Si us plau, espera......."; +App::$strings["New window"] = "Nova finestra"; +App::$strings["Open the selected location in a different window or browser tab"] = "Obrir la localització seleccionada en un altre finestra o pestanya del navegador"; +App::$strings["User '%s' deleted"] = "usuari '%s' esborrat"; +App::$strings["%d invitation available"] = array( + 0 => "%d invitació disponible", + 1 => "%d invitacions disponibles", +); +App::$strings["Find Channels"] = "Troba Canals"; +App::$strings["Enter name or interest"] = "Entra un nom o interes"; +App::$strings["Connect/Follow"] = "Conecta/Segueix"; +App::$strings["Examples: Robert Morgenstein, Fishing"] = "Exemples: Lionel Messi, Futbolista"; +App::$strings["Random Profile"] = "Perfil Aleatori"; +App::$strings["Invite Friends"] = "Convida Amics"; +App::$strings["Advanced example: name=fred and country=iceland"] = "Exemple avançat: nom=pep i pais=eire"; +App::$strings["%d connection in common"] = array( + 0 => "%d connexió en comú", + 1 => "%d connexions en comú", +); +App::$strings["show more"] = "mostrar més"; +App::$strings["%1\$s is now connected with %2\$s"] = "%1\$s esta ara connectat amb %2\$s"; +App::$strings["%1\$s poked %2\$s"] = "%1\$s a esperonat %2\$s"; +App::$strings["View %s's profile @ %s"] = "Vista %s del perfil @ %s"; +App::$strings["Categories:"] = "Categories:"; +App::$strings["Filed under:"] = "Arxivar a:"; +App::$strings["View in context"] = "Veure en context"; +App::$strings["remove"] = "treu"; +App::$strings["Delete Selected Items"] = "Esborra els Articles Seleccionats"; +App::$strings["View Source"] = "Veure l'Origen"; +App::$strings["Follow Thread"] = "Segueix el Fil"; +App::$strings["Unfollow Thread"] = "Fil Abandonat"; +App::$strings["Activity/Posts"] = "Activitat/Entrades"; +App::$strings["Edit Connection"] = "Modifica la Connexió"; +App::$strings["Message"] = "Missatge"; +App::$strings["%s likes this."] = "%s agrada això."; +App::$strings["%s doesn't like this."] = "%s no agrada això."; +App::$strings["%2\$d people like this."] = array( + 0 => "%2\$d gent agrada això.", + 1 => "%2\$d gent agrada això.", +); +App::$strings["%2\$d people don't like this."] = array( + 0 => "%2\$d gent no agrada això.", + 1 => "%2\$d gent no agrada això.", +); +App::$strings["and"] = "i"; +App::$strings[", and %d other people"] = array( + 0 => ", i %d altra gent", + 1 => ", i %d altra gent", +); +App::$strings["%s like this."] = "%s agrada això."; +App::$strings["%s don't like this."] = "%s no agrada això."; +App::$strings["Set your location"] = "Ajusta la teva ubicació"; +App::$strings["Clear browser location"] = "Treu la localització del navegador"; +App::$strings["Tag term:"] = "Paraula de l'Etiqueta:"; +App::$strings["Where are you right now?"] = "On ets ara?"; +App::$strings["Page link name"] = "Nom de la pàgina enllaçada"; +App::$strings["Post as"] = "Envia com"; +App::$strings["Toggle voting"] = "Commutar votació"; +App::$strings["Categories (optional, comma-separated list)"] = "Categories (opcional, llista separada per comes)"; +App::$strings["Set publish date"] = "Ajusta la data de publicació"; +App::$strings["OK"] = "OK"; +App::$strings["Discover"] = "Descobrir"; +App::$strings["Imported public streams"] = "Importar fluxos públics"; +App::$strings["Commented Order"] = "Ordenar per Comentaris"; +App::$strings["Sort by Comment Date"] = "Ordenar per Data del Comentari"; +App::$strings["Posted Order"] = "Ordenar per Entrades"; +App::$strings["Sort by Post Date"] = "Ordenar per Data d' Entrada"; +App::$strings["Posts that mention or involve you"] = "Entrades que et mencionen o involucren"; +App::$strings["Activity Stream - by date"] = "Activitat del Flux - per data"; +App::$strings["Starred"] = "Preferit"; +App::$strings["Favourite Posts"] = "Entrades Favorites"; +App::$strings["Spam"] = "Spam"; +App::$strings["Posts flagged as SPAM"] = "Entrades marcades com a SPAM"; +App::$strings["Status Messages and Posts"] = "Estat dels Missatges i Entrades"; +App::$strings["About"] = "El Meu Perfil"; +App::$strings["Profile Details"] = "Detalls del Perfil"; +App::$strings["Photo Albums"] = "Albums de Fotos"; +App::$strings["Files and Storage"] = "Arxius i Emmagatzegament"; +App::$strings["Saved Bookmarks"] = "Marcadors Guardats"; +App::$strings["Manage Webpages"] = "Gestió de Pàgines Web"; +App::$strings["__ctx:noun__ Attending"] = array( + 0 => "Assistint", + 1 => "Assistint", +); +App::$strings["__ctx:noun__ Not Attending"] = array( + 0 => "Desassistint", + 1 => "Desassistint", +); +App::$strings["__ctx:noun__ Undecided"] = array( + 0 => "Indecís", + 1 => "Indecisos", +); +App::$strings["__ctx:noun__ Agree"] = array( + 0 => "Acord", + 1 => "Acords", +); +App::$strings["__ctx:noun__ Disagree"] = array( + 0 => "Desacord", + 1 => "Desacords", +); +App::$strings["__ctx:noun__ Abstain"] = array( + 0 => "Abstenirse", + 1 => "Abstenirse", +); +App::$strings["Frequently"] = "Freqüentment"; +App::$strings["Hourly"] = "Horariament"; +App::$strings["Twice daily"] = "Dos vegades al dia"; +App::$strings["Daily"] = "Diariament"; +App::$strings["Weekly"] = "Setmanalment"; +App::$strings["Monthly"] = "Mensualment"; +App::$strings["Currently Male"] = "Actualment Masculí"; +App::$strings["Currently Female"] = "Actualment Femení"; +App::$strings["Mostly Male"] = "Més aviat Masculí"; +App::$strings["Mostly Female"] = "Més Aviat Femení"; +App::$strings["Transgender"] = "Canvi de Sexe"; +App::$strings["Intersex"] = "Intersexual"; +App::$strings["Transsexual"] = "Transsexual"; +App::$strings["Hermaphrodite"] = "Hermafrodita"; +App::$strings["Neuter"] = "Neutre"; +App::$strings["Non-specific"] = "Indefinit"; +App::$strings["Other"] = "Altres"; +App::$strings["Undecided"] = "Indecís"; +App::$strings["Males"] = "Homes"; +App::$strings["Females"] = "Dones"; +App::$strings["Gay"] = "Gay"; +App::$strings["Lesbian"] = "Lesbianes"; +App::$strings["No Preference"] = "Sense Preferències"; +App::$strings["Bisexual"] = "Bisexual"; +App::$strings["Autosexual"] = "Autosexual"; +App::$strings["Abstinent"] = "Abstinent"; +App::$strings["Virgin"] = "Verge"; +App::$strings["Deviant"] = "Desviat"; +App::$strings["Fetish"] = "Fetixiste"; +App::$strings["Oodles"] = "Orgies"; +App::$strings["Nonsexual"] = "Asexual"; +App::$strings["Single"] = "Solter"; +App::$strings["Lonely"] = "Solitari"; +App::$strings["Available"] = "Disponible"; +App::$strings["Unavailable"] = "No Disponible"; +App::$strings["Has crush"] = "Aplastat"; +App::$strings["Infatuated"] = "Encapritxat"; +App::$strings["Dating"] = "Promés"; +App::$strings["Unfaithful"] = "Infidel"; +App::$strings["Sex Addict"] = "Adicte al Sexe"; +App::$strings["Friends/Benefits"] = "Amics amb Beneficis"; +App::$strings["Casual"] = "Casual"; +App::$strings["Engaged"] = "Ocupat"; +App::$strings["Married"] = "Casat"; +App::$strings["Imaginarily married"] = "Casat Imaginàriament"; +App::$strings["Partners"] = "Parella"; +App::$strings["Cohabiting"] = "Cohabitant"; +App::$strings["Common law"] = "Tradició"; +App::$strings["Happy"] = "Feliç"; +App::$strings["Not looking"] = "No Cerco"; +App::$strings["Swinger"] = "Llibertí"; +App::$strings["Betrayed"] = "Traït"; +App::$strings["Separated"] = "Separat"; +App::$strings["Unstable"] = "Inestable"; +App::$strings["Divorced"] = "Divorciat"; +App::$strings["Imaginarily divorced"] = "Divorciat Imaginàriament"; +App::$strings["Widowed"] = "Vidu/ua"; +App::$strings["Uncertain"] = "Incert"; +App::$strings["It's complicated"] = "Es Complicat"; +App::$strings["Don't care"] = "No Et Fa Res"; +App::$strings["Ask me"] = "Pregunta"; +App::$strings["Visible to your default audience"] = "Visible per a la teva audiència "; +App::$strings["Only me"] = "Només jo"; +App::$strings["Public"] = "Públic"; +App::$strings["Anybody in the \$Projectname network"] = "Ningú a la xarxa \$Projectname"; +App::$strings["Any account on %s"] = "Qualsevol compte a %s"; +App::$strings["Any of my connections"] = "Qualsevol de les meves connexions"; +App::$strings["Only connections I specifically allow"] = "Només les connexions que permeto específicament"; +App::$strings["Anybody authenticated (could include visitors from other networks)"] = "Qualsevol persona autenticada (podria incloure als usuaris d'altres xarxes)"; +App::$strings["Any connections including those who haven't yet been approved"] = "Qualsevol connexió incloent aquells que encara no han estat aprovats"; +App::$strings["This is your default setting for the audience of your normal stream, and posts."] = "Aquest és l'ajust per defecte per al públic del seu flux normal i entrades."; +App::$strings["This is your default setting for who can view your default channel profile"] = "Aquesta és la configuració per defecte per a qui pugui veure el teu perfil per defecte del canal"; +App::$strings["This is your default setting for who can view your connections"] = "Aquesta és la configuració per defecte per a qui pugui veure les teves connexions"; +App::$strings["This is your default setting for who can view your file storage and photos"] = "Aquesta és la configuració per defecte per a qui pugui veure els teus arxius i fotos"; +App::$strings["This is your default setting for the audience of your webpages"] = "Aquests son els ajustos per defecte de l'audiència de les teves pàgines web"; +App::$strings["Not a valid email address"] = "Adreça de correu electrònic no vàlida"; +App::$strings["Your email domain is not among those allowed on this site"] = "El seu domini de correu electrònic no es troba entre els permesos en aquest lloc"; +App::$strings["Your email address is already registered at this site."] = "La teva adreça de correu electrònic ja esta registrada en aquest lloc"; +App::$strings["An invitation is required."] = "Es requereix Invitació"; +App::$strings["Invitation could not be verified."] = "L'invitació no ha pogut ser verificada"; +App::$strings["Please enter the required information."] = "Entra la informació sol·licitada"; +App::$strings["Failed to store account information."] = "Ha fallat guardar la informació del compte"; +App::$strings["Registration confirmation for %s"] = "Registre confirmat per %s"; +App::$strings["Registration request at %s"] = "Sol·licitud de registre a %s"; +App::$strings["Administrator"] = "Administrador"; +App::$strings["your registration password"] = "la teva contrasenya registrada"; +App::$strings["Registration details for %s"] = "Detalls del registre per %s"; +App::$strings["Account approved."] = "Compte aprovat."; +App::$strings["Registration revoked for %s"] = "Registre revocat per %s"; +App::$strings["Account verified. Please login."] = "Compte verificat. Si us plau, inicia sessió."; +App::$strings["Click here to upgrade."] = "Feu clic aquí per actualitzar."; +App::$strings["This action exceeds the limits set by your subscription plan."] = "Aquesta acció és superior als límits establerts pel seu pla de subscripció."; +App::$strings["This action is not available under your subscription plan."] = "Aquesta acció no està disponible en el seu pla de subscripció."; +App::$strings["Item was not found."] = "Article no trobat."; +App::$strings["No source file."] = "No hi ha arxiu d'origen."; +App::$strings["Cannot locate file to replace"] = "No trobo l'arxiu a reemplaçar"; +App::$strings["Cannot locate file to revise/update"] = "No trobo l'arxiu a revisar/actualitzar"; +App::$strings["File exceeds size limit of %d"] = "L'arxiu excedeix la mida limit de %d"; +App::$strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Has arribat al teu límit de %1$.0f Mbytes de emagatzematge d'adjunts."; +App::$strings["File upload failed. Possible system limit or action terminated."] = "Pujada del arxiu fallida. Possible límit del sistema o acció interrompuda."; +App::$strings["Stored file could not be verified. Upload failed."] = "L'arxiu guardat no es pot verificar. Pujada fallida."; +App::$strings["Path not available."] = "Trajectòria no disponible"; +App::$strings["Empty pathname"] = "Trajèctoria vuida."; +App::$strings["duplicate filename or path"] = "Nom o trajectòria duplicat"; +App::$strings["Path not found."] = "Trajectòria no trobada."; +App::$strings["mkdir failed."] = "mkdir va fracassar."; +App::$strings["database storage failed."] = "Arxiu de base de dades va fallar."; +App::$strings["Empty path"] = "Trajèctoria vuida"; +App::$strings["Unable to obtain identity information from database"] = "Incapaç de trobar l'informació d'identitat a la base de dades"; +App::$strings["Empty name"] = "Nom buit"; +App::$strings["Name too long"] = "Nom massa llarg"; +App::$strings["No account identifier"] = "Sense identificador de compte"; +App::$strings["Nickname is required."] = "Alies/malnom es requerit."; +App::$strings["Reserved nickname. Please choose another."] = "Àlies reservat. Tria un altre."; +App::$strings["Nickname has unsupported characters or is already being used on this site."] = "L'álies te caracters no soportats o ja esta en ús en aquest lloc"; +App::$strings["Unable to retrieve created identity"] = "No es pot recuperar la identitat creada"; +App::$strings["Default Profile"] = "Perfil per Defecte"; +App::$strings["Requested channel is not available."] = "El canal demanat no està disponible."; +App::$strings["Create New Profile"] = "Crear un Perfil Nou"; +App::$strings["Visible to everybody"] = "Visible per tothom"; +App::$strings["Gender:"] = "Gènere:"; +App::$strings["Status:"] = "Estatus:"; +App::$strings["Homepage:"] = "Pàgina Personal:"; +App::$strings["Online Now"] = "Ara en Linia"; +App::$strings["Like this channel"] = "M'agrada aquest canal"; +App::$strings["j F, Y"] = "j F, Y"; +App::$strings["j F"] = "j F"; +App::$strings["Birthday:"] = "Aniversari:"; +App::$strings["for %1\$d %2\$s"] = "per %1\$d %2\$s"; +App::$strings["Sexual Preference:"] = "Preferència Sexual:"; +App::$strings["Tags:"] = "Etiquetes:"; +App::$strings["Political Views:"] = "Idees Polítiques:"; +App::$strings["Religion:"] = "Religió:"; +App::$strings["Hobbies/Interests:"] = "Aficions/Interessos:"; +App::$strings["Likes:"] = "Agrada:"; +App::$strings["Dislikes:"] = "Desagrada:"; +App::$strings["Contact information and Social Networks:"] = "Informació de contacte i Xarxes Socials:"; +App::$strings["My other channels:"] = "Els meus altres canals:"; +App::$strings["Musical interests:"] = "Interessos Musicals:"; +App::$strings["Books, literature:"] = "Llibres, literatura:"; +App::$strings["Television:"] = "Televisió:"; +App::$strings["Film/dance/culture/entertainment:"] = "Películes/Dança/Cultura/Entreteniment:"; +App::$strings["Love/Romance:"] = "Amor/Romace:"; +App::$strings["Work/employment:"] = "Treball/feina:"; +App::$strings["School/education:"] = "Escola/educació:"; +App::$strings["Like this thing"] = "M'agrada això"; App::$strings["General Features"] = "Característiques Generals"; App::$strings["Content Expiration"] = "Expiració del Contingut"; App::$strings["Remove posts/comments and/or private messages at a future time"] = "eliminarà entrades/comentaris i/o missatges privats en un període determinat de temps."; @@ -1965,7 +2021,6 @@ App::$strings["Profile Import/Export"] = "Importar/Exportar Perfil"; App::$strings["Save and load profile details across sites/channels"] = "Guarda i carrega els detalls del perfil al llarg dels llocs/canals"; App::$strings["Web Pages"] = "Pàgines Web"; App::$strings["Provide managed web pages on your channel"] = "Proporcionar pàgines web gestionades al seu canal"; -App::$strings["Provide a wiki for your channel"] = ""; App::$strings["Hide Rating"] = "Amaga la Valoració"; App::$strings["Hide the rating buttons on your channel and profile pages. Note: People can still rate you somewhere else."] = "Amaga el botó de valoracions al teu canal i pàgines del perfil. Nota: Et poden continuar valorant en altres llocs."; App::$strings["Private Notes"] = "Notes Privades"; @@ -1999,7 +2054,6 @@ App::$strings["Search by Date"] = "Cerca per Data"; App::$strings["Ability to select posts by date ranges"] = "Capacitat per seleccionar entrades per rang de dates"; App::$strings["Privacy Groups"] = "Grup Privat"; App::$strings["Enable management and selection of privacy groups"] = "Habilita gestió i selecció de grups privats"; -App::$strings["Saved Searches"] = "Cerques Guardades"; App::$strings["Save search terms for re-use"] = "Guardar els termin de la cerca per a re-usar"; App::$strings["Network Personal Tab"] = "Pestanya Personal de Xarxa"; App::$strings["Enable tab to display only Network posts that you've interacted on"] = "Activa la pestanya per mostrar només les entrades de xarxa en les que has intervingut"; @@ -2015,9 +2069,8 @@ App::$strings["Community Tagging"] = "Etiquetat per la Comunitat"; App::$strings["Ability to tag existing posts"] = "Capacitat d'etiquetar entrades existents"; App::$strings["Post Categories"] = "Categories d'Entrades"; App::$strings["Add categories to your posts"] = "Afegeix categoria a la teva entrada"; -App::$strings["Emoji Reactions"] = "Reaccions dels Emoji"; -App::$strings["Add emoji reaction ability to posts"] = "Afegeix un emoji habilitat per reaccionar a entrades"; -App::$strings["Saved Folders"] = "Carpetes Guardades"; +App::$strings["Emoji Reactions"] = ""; +App::$strings["Add emoji reaction ability to posts"] = ""; App::$strings["Ability to file posts under folders"] = "Capacitat de arxivar entrades en les carpetes"; App::$strings["Dislike Posts"] = "No Agrada l'Entrada"; App::$strings["Ability to dislike posts/comments"] = "Capacitat per marcar amb \"No Agrada\" les entrades/comentaris"; @@ -2025,149 +2078,63 @@ App::$strings["Star Posts"] = "Entrades Excel·lents"; App::$strings["Ability to mark special posts with a star indicator"] = "Capacitat per marcar entrades especials amb l'indicador d'excel·lencia"; App::$strings["Tag Cloud"] = "Núvol d'Etiquetes."; App::$strings["Provide a personal tag cloud on your channel page"] = "Proporcionar un núvol d'etiquetes personals a la teva pàgina de canal"; +App::$strings["Embedded content"] = "Contingut embegut"; +App::$strings["Embedding disabled"] = "Incorporació desactivada"; +App::$strings["Who can see this?"] = "Qui pot veure això?"; +App::$strings["Custom selection"] = "Selecció a mida"; +App::$strings["Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit the scope of \"Show\"."] = "Selecciona \"Mostrar\" per permetre la visualització. \"No Mostrar\" et permet obviar i limitar l'abast de \"Mostrar\"."; +App::$strings["Show"] = "Mostra"; +App::$strings["Don't show"] = "No mostrar"; +App::$strings["Other networks and post services"] = "Altres xarxes i serveis de correu"; +App::$strings["Post permissions %s cannot be changed %s after a post is shared.
These permissions set who is allowed to view the post."] = "Els permisos d'entrada %s no poden esser canviats %s posteriorment a que una entrada ja està compartida.
Aquest ajust dels permisos indica qui pot veure l'entrada."; +App::$strings["Logged out."] = "Sortir."; +App::$strings["Failed authentication"] = "Autenticació fallida"; +App::$strings["Birthday"] = "Aniversari"; +App::$strings["Age: "] = "Edat:"; +App::$strings["YYYY-MM-DD or MM-DD"] = "YYYY-MM-DD o MM-DD"; +App::$strings["never"] = "mai"; +App::$strings["less than a second ago"] = "fa menys d'un segon"; +App::$strings["__ctx:e.g. 22 hours ago, 1 minute ago__ %1\$d %2\$s ago"] = "Fa %1\$d %2\$s"; +App::$strings["__ctx:relative_date__ year"] = array( + 0 => "any", + 1 => "anys", +); +App::$strings["__ctx:relative_date__ month"] = array( + 0 => "mes", + 1 => "mesos ", +); +App::$strings["__ctx:relative_date__ week"] = array( + 0 => "setmana", + 1 => "setmanes", +); +App::$strings["__ctx:relative_date__ day"] = array( + 0 => "dia", + 1 => "dies", +); +App::$strings["__ctx:relative_date__ hour"] = array( + 0 => "hora", + 1 => "hores", +); +App::$strings["__ctx:relative_date__ minute"] = array( + 0 => "minut", + 1 => "minuts", +); +App::$strings["__ctx:relative_date__ second"] = array( + 0 => "segon", + 1 => "segons", +); +App::$strings["%1\$s's birthday"] = "Aniversari de %1\$s"; +App::$strings["Happy Birthday %1\$s"] = "Feliç Aniversari %1\$s"; App::$strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Un grup esborrat amb aquest nom fou reviscolat. Els permisos dels items existents poden aplicar-se a aquest grup i qualsevol membre futur. Si no es això el que vols, si et plau, crea un altre grup amb un nom diferent."; App::$strings["Add new connections to this privacy group"] = "Afegir noves connexions a aquest grup privat"; App::$strings["edit"] = "edita"; App::$strings["Edit group"] = "Editar grup"; App::$strings["Add privacy group"] = "Afegir grup privat"; App::$strings["Channels not in any privacy group"] = "Sense canals en grups privats"; -App::$strings["add"] = "afegeix"; -App::$strings["l F d, Y \\@ g:i A"] = "l d \\d\\e/\\d' F de Y \\@ H:i T"; -App::$strings["Starts:"] = "Inicia:"; -App::$strings["Finishes:"] = "Acaba:"; -App::$strings["This event has been added to your calendar."] = "Aquest succés ha estat afegit al teu calendari."; -App::$strings["Not specified"] = "Sense especificar"; -App::$strings["Needs Action"] = "Necessita una Acció"; -App::$strings["Completed"] = "Completat"; -App::$strings["In Process"] = "En Procès"; -App::$strings["Cancelled"] = "Cancel·lat"; -App::$strings["Not a valid email address"] = "Adreça de correu electrònic no vàlida"; -App::$strings["Your email domain is not among those allowed on this site"] = "El seu domini de correu electrònic no es troba entre els permesos en aquest lloc"; -App::$strings["Your email address is already registered at this site."] = "La teva adreça de correu electrònic ja esta registrada en aquest lloc"; -App::$strings["An invitation is required."] = "Es requereix Invitació"; -App::$strings["Invitation could not be verified."] = "L'invitació no ha pogut ser verificada"; -App::$strings["Please enter the required information."] = "Entra la informació sol·licitada"; -App::$strings["Failed to store account information."] = "Ha fallat guardar la informació del compte"; -App::$strings["Registration confirmation for %s"] = "Inscripció confirmada per %s"; -App::$strings["Registration request at %s"] = "Sol·licitud d'inscripció a %s"; -App::$strings["your registration password"] = "la teva contrasenya registrada"; -App::$strings["Registration details for %s"] = "Detalls de l'inscripció per %s"; -App::$strings["Account approved."] = "Compte aprovat."; -App::$strings["Registration revoked for %s"] = "Inscripció revocada per %s"; -App::$strings["Click here to upgrade."] = "Feu clic aquí per actualitzar."; -App::$strings["This action exceeds the limits set by your subscription plan."] = "Aquesta acció és superior als límits establerts pel seu pla de subscripció."; -App::$strings["This action is not available under your subscription plan."] = "Aquesta acció no està disponible en el seu pla de subscripció."; -App::$strings["Channel is blocked on this site."] = "El canal està bloquejat en aquest lloc."; -App::$strings["Channel location missing."] = "Ubicació del canal perduda."; -App::$strings["Response from remote channel was incomplete."] = "La resposta del canal remot fou incompleta."; -App::$strings["Channel was deleted and no longer exists."] = "El canal fou esborrat i actualment no existeix."; -App::$strings["Protocol disabled."] = "Protocol desactivat."; -App::$strings["Channel discovery failed."] = "Descobriment de canal fallit."; -App::$strings["Cannot connect to yourself."] = "No pots connectar amb tu mateix."; -App::$strings["Item was not found."] = "Article no trobat."; -App::$strings["No source file."] = "No hi ha arxiu d'origen."; -App::$strings["Cannot locate file to replace"] = "No trobo l'arxiu a reemplaçar"; -App::$strings["Cannot locate file to revise/update"] = "No trobo l'arxiu a revisar/actualitzar"; -App::$strings["File exceeds size limit of %d"] = "L'arxiu excedeix la mida limit de %d"; -App::$strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Has arribat al teu límit de %1$.0f Mbytes de emagatzematge d'adjunts."; -App::$strings["File upload failed. Possible system limit or action terminated."] = "Pujada del arxiu fallida. Possible límit del sistema o acció interrompuda."; -App::$strings["Stored file could not be verified. Upload failed."] = "L'arxiu guardat no es pot verificar. Pujada fallida."; -App::$strings["Path not available."] = "Trajectòria no disponible"; -App::$strings["Empty pathname"] = "Trajèctoria vuida."; -App::$strings["duplicate filename or path"] = "Nom o trajectòria duplicat"; -App::$strings["Path not found."] = "Trajectòria no trobada."; -App::$strings["mkdir failed."] = "mkdir va fracassar."; -App::$strings["database storage failed."] = "Arxiu de base de dades va fallar."; -App::$strings["Empty path"] = "Trajèctoria vuida"; -App::$strings["Image/photo"] = "Imatge/foto"; -App::$strings["Encrypted content"] = "Contingut encriptat"; -App::$strings["Install %s element: "] = "Instal·la l'element %s:"; -App::$strings["This post contains an installable %s element, however you lack permissions to install it on this site."] = "Aquesta entrada contè un element %s instal·lable, potser manques de permissos per instal·lar-lo en aquest lloc."; -App::$strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s va escriure el següent %2\$s %3\$s"; -App::$strings["Click to open/close"] = "Clic per obrir/tancar"; -App::$strings["spoiler"] = "xafa guitarres"; -App::$strings["Different viewers will see this text differently"] = "Diferents observadors veuran aquest text de diferents formes"; -App::$strings["$1 wrote:"] = "$1 va escriure:"; -App::$strings["(Unknown)"] = "(Desconegut)"; -App::$strings["Visible to anybody on the internet."] = "Visible per tothom a la Internet"; -App::$strings["Visible to you only."] = "Visible només per tú."; -App::$strings["Visible to anybody in this network."] = "Visible per tothom en aquesta xarxa."; -App::$strings["Visible to anybody authenticated."] = "Visible per tothom autenticat."; -App::$strings["Visible to anybody on %s."] = "Visible per a tothom a %s."; -App::$strings["Visible to all connections."] = "Visible per a totes les connexions."; -App::$strings["Visible to approved connections."] = "Visible per a les connexions aprovades."; -App::$strings["Visible to specific connections."] = "Visible per a específiques connexions."; -App::$strings["Privacy group is empty."] = "El grup privat està vuit."; -App::$strings["Privacy group: %s"] = "Grup privat: %s"; -App::$strings["Connection not found."] = "Connexió no trobada."; -App::$strings["profile photo"] = "foto del perfil"; -App::$strings["Embedded content"] = "Contingut embegut"; -App::$strings["Embedding disabled"] = "Incorporació desactivada"; -App::$strings["System"] = "Sistema"; -App::$strings["New App"] = "Nova App"; -App::$strings["Suggestions"] = "Suggerencies"; -App::$strings["See more..."] = "Veure més....."; -App::$strings["You have %1$.0f of %2$.0f allowed connections."] = "Tens %1$.0f de %2$.0f connexions permeses."; -App::$strings["Add New Connection"] = "Afegeix una Nova Connexió"; -App::$strings["Enter channel address"] = "Introdueix l'adreça del canal"; -App::$strings["Examples: bob@example.com, https://example.com/barbara"] = "Exemples: bob@example.com, https://exemple.com/barbara"; -App::$strings["Notes"] = "Notes"; -App::$strings["Remove term"] = "Plaç de remoció"; -App::$strings["Everything"] = "Tot"; -App::$strings["Archives"] = "Arxius"; -App::$strings["Refresh"] = "Refresc"; -App::$strings["Account settings"] = "Ajustos de Compte"; -App::$strings["Channel settings"] = "Ajustos de Canal"; -App::$strings["Additional features"] = "Característiques addicionals"; -App::$strings["Feature/Addon settings"] = "Ajustos de Complements"; -App::$strings["Display settings"] = "Ajustos de pantalla"; -App::$strings["Manage locations"] = "Gestiona ubicacions"; -App::$strings["Export channel"] = "Exportat canal"; -App::$strings["Connected apps"] = "Apps connectades"; -App::$strings["Premium Channel Settings"] = "Ajustos Premium de Canal"; -App::$strings["Private Mail Menu"] = "Menú de Correu Privat"; -App::$strings["Combined View"] = "Vista Combinada"; -App::$strings["Conversations"] = "Conversacions"; -App::$strings["Received Messages"] = "Missatges Rebuts"; -App::$strings["Sent Messages"] = "Missatges Enviats"; -App::$strings["No messages."] = "Sense missatges."; -App::$strings["Delete conversation"] = "Conversació esborrada"; -App::$strings["Events Tools"] = "Eina d'Esdeveniments"; -App::$strings["Export Calendar"] = "Exportar Calendari"; -App::$strings["Import Calendar"] = "Importar Calendari"; -App::$strings["Overview"] = "Visió General"; -App::$strings["Chat Members"] = "Membres de la Sala de Xat"; -App::$strings["Wiki List"] = "Llista de Wikis"; -App::$strings["Wiki Pages"] = "Pàgines de Wikis"; -App::$strings["Bookmarked Chatrooms"] = "Sales de Xat Favorites"; -App::$strings["Suggested Chatrooms"] = "Sales de Xat Suggerides"; -App::$strings["photo/image"] = "foto/imatge"; -App::$strings["Click to show more"] = "Fes clic per veure més"; -App::$strings["Rating Tools"] = "Eines de Valoració"; -App::$strings["Rate Me"] = "Valora'm"; -App::$strings["View Ratings"] = "Veure Valoracions"; -App::$strings["Forums"] = "Forums"; -App::$strings["Tasks"] = "Tasques"; -App::$strings["Documentation"] = "Documentació"; -App::$strings["Project/Site Information"] = "Informació del Projecte/Lloc"; -App::$strings["For Members"] = "Per Membres"; -App::$strings["For Administrators"] = "Per Administradors"; -App::$strings["For Developers"] = "Per Desenvolupadors"; -App::$strings["Member registrations waiting for confirmation"] = "Una inscripció per a ser membre està esperant confirmació"; -App::$strings["Inspect queue"] = "Revisa cua"; -App::$strings["DB updates"] = "Actualitzacions de Base de Dades"; -App::$strings["Plugin Features"] = "Característiques del Plugin"; -App::$strings[" and "] = "i"; -App::$strings["public profile"] = "Perfil públic"; -App::$strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s canviat %2\$s a “%3\$s”"; -App::$strings["Visit %1\$s's %2\$s"] = "Visita %1\$s en %2\$s"; -App::$strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s Ha actualitzat %2\$s, canviant %3\$s."; -App::$strings["Attachments:"] = "Adjuntat:"; -App::$strings["\$Projectname event notification:"] = "Notificació d'esdeveniment de \$Projectname"; App::$strings["Delete this item?"] = "Esborrar aquest item?"; -App::$strings["%s show less"] = ""; -App::$strings["%s expand"] = ""; -App::$strings["%s collapse"] = ""; +App::$strings["[-] show less"] = "[-] mostra menys"; +App::$strings["[+] expand"] = "[+] expandeix"; +App::$strings["[-] collapse"] = "[-] colapsa"; App::$strings["Password too short"] = "Contrasenya massa curta"; App::$strings["Passwords do not match"] = "Les paraules de pas no coincideixen"; App::$strings["everybody"] = "tothom"; @@ -2222,78 +2189,72 @@ App::$strings["__ctx:calendar__ month"] = "mes"; App::$strings["__ctx:calendar__ week"] = "setmana"; App::$strings["__ctx:calendar__ day"] = "dia"; App::$strings["__ctx:calendar__ All day"] = "Tot el dia"; -App::$strings["%d invitation available"] = array( - 0 => "%d invitació disponible", - 1 => "%d invitacions disponibles", -); -App::$strings["Find Channels"] = "Troba Canals"; -App::$strings["Enter name or interest"] = "Entra un nom o interes"; -App::$strings["Connect/Follow"] = "Conecta/Segueix"; -App::$strings["Examples: Robert Morgenstein, Fishing"] = "Exemples: Lionel Messi, Futbolista"; -App::$strings["Random Profile"] = "Perfil Aleatori"; -App::$strings["Invite Friends"] = "Convida Amics"; -App::$strings["Advanced example: name=fred and country=iceland"] = "Exemple avançat: nom=pep i pais=eire"; -App::$strings["%d connection in common"] = array( - 0 => "%d connexió en comú", - 1 => "%d connexions en comú", -); -App::$strings["show more"] = "mostrar més"; -App::$strings["Directory Options"] = "Opcions de Directori"; -App::$strings["Safe Mode"] = "Manera Segura"; -App::$strings["Public Forums Only"] = "Només Fòrums Públics"; -App::$strings["This Website Only"] = "Només Aquest Lloc Web"; -App::$strings["No recipient provided."] = "No s'ha proporcionat bústia."; -App::$strings["[no subject]"] = "[no subject]"; -App::$strings["Unable to determine sender."] = "incapaç de determinar el remitent"; -App::$strings["Stored post could not be verified."] = "L'entrada guardada no pot ser verificada"; -App::$strings["Who can see this?"] = "Qui pot veure això?"; -App::$strings["Custom selection"] = "Selecció a mida"; -App::$strings["Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit the scope of \"Show\"."] = "Selecciona \"Mostrar\" per permetre la visualització. \"No Mostrar\" et permet obviar i limitar l'abast de \"Mostrar\"."; -App::$strings["Show"] = "Mostra"; -App::$strings["Don't show"] = "No mostrar"; -App::$strings["Other networks and post services"] = "Altres xarxes i serveis de correu"; -App::$strings["Post permissions %s cannot be changed %s after a post is shared.
These permissions set who is allowed to view the post."] = "Els permisos d'entrada %s no poden esser canviats %s posteriorment a que una entrada ja està compartida.
Aquest ajust dels permisos indica qui pot veure l'entrada."; -App::$strings["Birthday"] = "Aniversari"; -App::$strings["Age: "] = "Edat:"; -App::$strings["YYYY-MM-DD or MM-DD"] = "YYYY-MM-DD o MM-DD"; -App::$strings["never"] = "mai"; -App::$strings["less than a second ago"] = "fa menys d'un segon"; -App::$strings["__ctx:e.g. 22 hours ago, 1 minute ago__ %1\$d %2\$s ago"] = "Fa %1\$d %2\$s"; -App::$strings["__ctx:relative_date__ year"] = array( - 0 => "any", - 1 => "anys", -); -App::$strings["__ctx:relative_date__ month"] = array( - 0 => "mes", - 1 => "mesos ", -); -App::$strings["__ctx:relative_date__ week"] = array( - 0 => "setmana", - 1 => "setmanes", -); -App::$strings["__ctx:relative_date__ day"] = array( - 0 => "dia", - 1 => "dies", -); -App::$strings["__ctx:relative_date__ hour"] = array( - 0 => "hora", - 1 => "hores", -); -App::$strings["__ctx:relative_date__ minute"] = array( - 0 => "minut", - 1 => "minuts", -); -App::$strings["__ctx:relative_date__ second"] = array( - 0 => "segon", - 1 => "segons", -); -App::$strings["%1\$s's birthday"] = "Aniversari de %1\$s"; -App::$strings["Happy Birthday %1\$s"] = "Feliç Aniversari %1\$s"; -App::$strings["Public Timeline"] = "Línia de Temps Pública"; +App::$strings["view full size"] = "Veure a mida competa"; +App::$strings["No Subject"] = "Sense Assumpte"; +App::$strings["Friendica"] = "Friendica"; +App::$strings["OStatus"] = "OStatus"; +App::$strings["GNU-Social"] = "GNU-Social"; +App::$strings["RSS/Atom"] = "RSS/Atom"; +App::$strings["Diaspora"] = "Diaspora"; +App::$strings["Facebook"] = "Facebook"; +App::$strings["Zot"] = "Zot"; +App::$strings["LinkedIn"] = "LinkedIn"; +App::$strings["XMPP/IM"] = "XMPP/IM"; +App::$strings["MySpace"] = "MySpace"; +App::$strings["Image exceeds website size limit of %lu bytes"] = "La imatge excedeix la mida limit pel lloc web en %lu bytes"; +App::$strings["Image file is empty."] = "El fitxer d'imatge esta buit."; +App::$strings["Photo storage failed."] = "Fracassà l'emmagatzematge de la Foto"; +App::$strings["a new photo"] = "Una foto nova"; +App::$strings["__ctx:photo_upload__ %1\$s posted %2\$s to %3\$s"] = "%1\$s enviat %2\$s a %3\$s"; +App::$strings["Upload New Photos"] = "Puja Noves Fotos"; App::$strings["Invalid data packet"] = "paquet de dades invàlid"; App::$strings["Unable to verify channel signature"] = "No es pot verificar la signatura del canal"; App::$strings["Unable to verify site signature for %s"] = "No es pot verificar la signatura del lloc per %s"; App::$strings["invalid target signature"] = "Signatura objectiu invàlida"; +App::$strings["New Page"] = "Pàgina Nova"; +App::$strings["Title"] = "Títol"; +App::$strings["Can view my normal stream and posts"] = "Pot veure el flux i entrades normals"; +App::$strings["Can view my default channel profile"] = "Pot veure el meu perfil del canal per defecte"; +App::$strings["Can view my connections"] = "Pot veure les meves connexions"; +App::$strings["Can view my file storage and photos"] = "Pot veure al meu magatzem d'arxius i fotos"; +App::$strings["Can view my webpages"] = "Pot veure les meves pàgines web"; +App::$strings["Can send me their channel stream and posts"] = "Pot enviar-me el flux i entrades del seu canal"; +App::$strings["Can post on my channel page (\"wall\")"] = "Pot fer entrades a la meva pàgina de canal (\"mur\")"; +App::$strings["Can comment on or like my posts"] = "Pot fer comentaris o dir si agrada en les meves entrades"; +App::$strings["Can send me private mail messages"] = "Pot enviar-me un missatge de correu privat"; +App::$strings["Can like/dislike stuff"] = "Pot dir si agrada/desagrada "; +App::$strings["Profiles and things other than posts/comments"] = "Perfils i altres coses a més d'entrades/comentaris"; +App::$strings["Can forward to all my channel contacts via post @mentions"] = "Ho pot enviar a tots els meus contactes del canal via entrades @mencions"; +App::$strings["Advanced - useful for creating group forum channels"] = "Avançat - capaç de crear canals de grups de foro"; +App::$strings["Can chat with me (when available)"] = "Pot xatejar amb mi (si estic disponible)"; +App::$strings["Can write to my file storage and photos"] = "Pot escriure al meu magatzem d'arxius i fotos"; +App::$strings["Can edit my webpages"] = "Pot editar les meves pàgines web"; +App::$strings["Can source my public posts in derived channels"] = "Pot mostrar l'origen de les meves entrades públiques en altres canals"; +App::$strings["Somewhat advanced - very useful in open communities"] = "Quelcom avançat - molt útil en comunitats obertes"; +App::$strings["Can administer my channel resources"] = "Pot administrar els meus recursos del canal"; +App::$strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "Extremadament avançat. No toquis res si no saps que estàs fent"; +App::$strings["Social Networking"] = "Xarxes Socials"; +App::$strings["Social - Mostly Public"] = "Social - Principalment Públic"; +App::$strings["Social - Restricted"] = "Social - Restingit"; +App::$strings["Social - Private"] = "Social - Privat"; +App::$strings["Community Forum"] = "Foro de Comunitat"; +App::$strings["Forum - Mostly Public"] = "Fòrum - Principalment Públic"; +App::$strings["Forum - Restricted"] = "Fòrum - Restringit"; +App::$strings["Forum - Private"] = "Fòrum - Privat"; +App::$strings["Feed Republish"] = "Republicador"; +App::$strings["Feed - Mostly Public"] = "Realimentador - Públic Principalment"; +App::$strings["Feed - Restricted"] = "Retroalimentador - Restringit"; +App::$strings["Special Purpose"] = "Objectiu Especial"; +App::$strings["Special - Celebrity/Soapbox"] = "Espacial - Celebritat/Plataforma"; +App::$strings["Special - Group Repository"] = "Especial - Repositori d'un Grup"; +App::$strings["Custom/Expert Mode"] = "Personalitzat/Manera Experta"; +App::$strings[" and "] = "i"; +App::$strings["public profile"] = "Perfil públic"; +App::$strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s canviat %2\$s a “%3\$s”"; +App::$strings["Visit %1\$s's %2\$s"] = "Visita %1\$s en %2\$s"; +App::$strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s Ha actualitzat %2\$s, canviant %3\$s."; +App::$strings["Attachments:"] = "Adjuntat:"; +App::$strings["\$Projectname event notification:"] = "Notificació d'esdeveniment de \$Projectname"; App::$strings["Focus (Hubzilla default)"] = "Focus (Hubzilla per defecte)"; App::$strings["Theme settings"] = "Ajustos de tema"; App::$strings["Select scheme"] = "Tria esquema"; @@ -2333,7 +2294,6 @@ App::$strings["__ctx:opensearch__ \$Projectname"] = "\$Projectname"; App::$strings["Update %s failed. See error logs."] = "L'actualització %s ha fallat. Mira el registre d'errors."; App::$strings["Update Error at %s"] = "Error d'Actualització a %s"; App::$strings["Create an account to access services and applications within the Hubzilla"] = "Crea un compte per accedir als serveis i aplicacions dins de Hubzilla"; -App::$strings["Login/Email"] = ""; App::$strings["Password"] = "Contrasenya"; App::$strings["Remember me"] = "Recorda'm"; App::$strings["Forgot your password?"] = "Has perdut la Contrasenya?"; diff --git a/view/css/conversation.css b/view/css/conversation.css index d1adaf20f..68aa8bfbe 100644 --- a/view/css/conversation.css +++ b/view/css/conversation.css @@ -40,12 +40,6 @@ resize: vertical; } -#profile-jot-text.hover { - background-color: aliceblue; - opacity: 0.5; - box-shadow: inset 0 3px 4px #888; -} - .jot-attachment { border: 0px; padding: 10px; diff --git a/view/css/mod_cloud.css b/view/css/mod_cloud.css index 51c3709c1..ed07ceb6f 100644 --- a/view/css/mod_cloud.css +++ b/view/css/mod_cloud.css @@ -41,9 +41,3 @@ padding: 7px 10px; width: 100%; } - -#cloud-drag-area.hover { - background-color: aliceblue; - opacity: 0.5; - box-shadow: inset 0 0px 7px #5cb85c; -} diff --git a/view/de/hmessages.po b/view/de/hmessages.po index c160cd6bc..5c3b981ad 100644 --- a/view/de/hmessages.po +++ b/view/de/hmessages.po @@ -23,8 +23,8 @@ msgid "" msgstr "" "Project-Id-Version: Redmatrix\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-07-22 00:02-0700\n" -"PO-Revision-Date: 2016-07-28 09:16+0000\n" +"POT-Creation-Date: 2016-06-10 00:02-0700\n" +"PO-Revision-Date: 2016-06-15 09:43+0000\n" "Last-Translator: Phellmes \n" "Language-Team: German (http://www.transifex.com/Friendica/red-matrix/language/de/)\n" "MIME-Version: 1.0\n" @@ -33,156 +33,11 @@ msgstr "" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ../../Zotlabs/Access/PermissionRoles.php:182 -#: ../../include/permissions.php:904 -msgid "Social Networking" -msgstr "Soziales Netzwerk" - -#: ../../Zotlabs/Access/PermissionRoles.php:183 -#: ../../include/permissions.php:904 -msgid "Social - Mostly Public" -msgstr "Soziales Netzwerk - Weitgehend öffentlich" - -#: ../../Zotlabs/Access/PermissionRoles.php:184 -#: ../../include/permissions.php:904 -msgid "Social - Restricted" -msgstr "Soziales Netzwerk - Beschränkt" - -#: ../../Zotlabs/Access/PermissionRoles.php:185 -#: ../../include/permissions.php:904 -msgid "Social - Private" -msgstr "Soziales Netzwerk - Privat" - -#: ../../Zotlabs/Access/PermissionRoles.php:188 -#: ../../include/permissions.php:905 -msgid "Community Forum" -msgstr "Forum" - -#: ../../Zotlabs/Access/PermissionRoles.php:189 -#: ../../include/permissions.php:905 -msgid "Forum - Mostly Public" -msgstr "Forum - Weitgehend öffentlich" - -#: ../../Zotlabs/Access/PermissionRoles.php:190 -#: ../../include/permissions.php:905 -msgid "Forum - Restricted" -msgstr "Forum - Beschränkt" - -#: ../../Zotlabs/Access/PermissionRoles.php:191 -#: ../../include/permissions.php:905 -msgid "Forum - Private" -msgstr "Forum - Privat" - -#: ../../Zotlabs/Access/PermissionRoles.php:194 -#: ../../include/permissions.php:906 -msgid "Feed Republish" -msgstr "Teilen von Feeds" - -#: ../../Zotlabs/Access/PermissionRoles.php:195 -#: ../../include/permissions.php:906 -msgid "Feed - Mostly Public" -msgstr "Feeds - Weitgehend öffentlich" - -#: ../../Zotlabs/Access/PermissionRoles.php:196 -#: ../../include/permissions.php:906 -msgid "Feed - Restricted" -msgstr "Feeds - Beschränkt" - -#: ../../Zotlabs/Access/PermissionRoles.php:199 -#: ../../include/permissions.php:907 -msgid "Special Purpose" -msgstr "Für besondere Zwecke" - -#: ../../Zotlabs/Access/PermissionRoles.php:200 -#: ../../include/permissions.php:907 -msgid "Special - Celebrity/Soapbox" -msgstr "Speziell - Mitteilungs-Kanal (keine Kommentare)" - -#: ../../Zotlabs/Access/PermissionRoles.php:201 -#: ../../include/permissions.php:907 -msgid "Special - Group Repository" -msgstr "Speziell - Gruppenarchiv" - -#: ../../Zotlabs/Access/PermissionRoles.php:204 ../../include/selectors.php:49 -#: ../../include/selectors.php:66 ../../include/selectors.php:104 -#: ../../include/selectors.php:140 ../../include/permissions.php:908 -msgid "Other" -msgstr "Andere" - -#: ../../Zotlabs/Access/PermissionRoles.php:205 -#: ../../include/permissions.php:908 -msgid "Custom/Expert Mode" -msgstr "Benutzerdefiniert/Expertenmodus" - -#: ../../Zotlabs/Access/Permissions.php:30 -msgid "Can view my channel stream and posts" -msgstr "Kann meinen Kanal-Stream und meine Beiträge sehen" - -#: ../../Zotlabs/Access/Permissions.php:31 ../../include/permissions.php:33 -msgid "Can send me their channel stream and posts" -msgstr "Kann mir die Beiträge aus seinem/ihrem Kanal schicken" - -#: ../../Zotlabs/Access/Permissions.php:32 ../../include/permissions.php:27 -msgid "Can view my default channel profile" -msgstr "Kann mein Standardprofil sehen" - -#: ../../Zotlabs/Access/Permissions.php:33 ../../include/permissions.php:28 -msgid "Can view my connections" -msgstr "Kann meine Verbindungen sehen" - -#: ../../Zotlabs/Access/Permissions.php:34 ../../include/permissions.php:29 -msgid "Can view my file storage and photos" -msgstr "Kann meine Datei- und Bilderordner sehen" - -#: ../../Zotlabs/Access/Permissions.php:35 -msgid "Can upload/modify my file storage and photos" -msgstr "Kann in meine Datei- und Bilderordner hochladen/ändern" - -#: ../../Zotlabs/Access/Permissions.php:36 -msgid "Can view my channel webpages" -msgstr "Kann die Webseiten meines Kanals sehen" - -#: ../../Zotlabs/Access/Permissions.php:37 -msgid "Can create/edit my channel webpages" -msgstr "Kann Webseiten in meinem Kanal erstellen/ändern" - -#: ../../Zotlabs/Access/Permissions.php:38 -msgid "Can post on my channel (wall) page" -msgstr "Kann auf meiner Kanal-Seite (\"wall\") Beiträge veröffentlichen" - -#: ../../Zotlabs/Access/Permissions.php:39 ../../include/permissions.php:35 -msgid "Can comment on or like my posts" -msgstr "Darf meine Beiträge kommentieren und mögen/nicht mögen" - -#: ../../Zotlabs/Access/Permissions.php:40 ../../include/permissions.php:36 -msgid "Can send me private mail messages" -msgstr "Kann mir private Nachrichten schicken" - -#: ../../Zotlabs/Access/Permissions.php:41 -msgid "Can like/dislike profiles and profile things" -msgstr "Kann Profile und Profilsachen mögen/nicht mögen" - -#: ../../Zotlabs/Access/Permissions.php:42 -msgid "Can forward to all my channel connections via @+ mentions in posts" -msgstr "Kann an alle meine Verbindungen via @-Erwähnungen Nachrichten weiterleiten" - -#: ../../Zotlabs/Access/Permissions.php:43 -msgid "Can chat with me" -msgstr "Kann mit mir chatten" - -#: ../../Zotlabs/Access/Permissions.php:44 ../../include/permissions.php:44 -msgid "Can source my public posts in derived channels" -msgstr "Kann meine öffentlichen Beiträge als Quellen für Kanäle verwenden" - -#: ../../Zotlabs/Access/Permissions.php:45 -msgid "Can administer my channel" -msgstr "Kann meinen Kanal administrieren" - #: ../../Zotlabs/Storage/Browser.php:107 ../../Zotlabs/Storage/Browser.php:239 msgid "parent" msgstr "Übergeordnetes Verzeichnis" -#: ../../Zotlabs/Storage/Browser.php:131 ../../include/text.php:2605 +#: ../../Zotlabs/Storage/Browser.php:131 ../../include/text.php:2620 msgid "Collection" msgstr "Sammlung" @@ -206,17 +61,16 @@ msgstr "Posteingang für überwachte Kalender" msgid "Schedule Outbox" msgstr "Postausgang für überwachte Kalender" -#: ../../Zotlabs/Storage/Browser.php:164 ../../Zotlabs/Module/Photos.php:796 -#: ../../Zotlabs/Module/Photos.php:1241 -#: ../../Zotlabs/Module/Embedphotos.php:147 ../../Zotlabs/Lib/Apps.php:490 -#: ../../Zotlabs/Lib/Apps.php:565 ../../include/conversation.php:1035 -#: ../../include/widgets.php:1599 +#: ../../Zotlabs/Storage/Browser.php:164 ../../Zotlabs/Module/Photos.php:798 +#: ../../Zotlabs/Module/Photos.php:1243 ../../Zotlabs/Lib/Apps.php:486 +#: ../../Zotlabs/Lib/Apps.php:561 ../../include/widgets.php:1505 +#: ../../include/conversation.php:1032 msgid "Unknown" msgstr "Unbekannt" #: ../../Zotlabs/Storage/Browser.php:226 ../../Zotlabs/Module/Fbrowser.php:85 -#: ../../Zotlabs/Lib/Apps.php:217 ../../include/nav.php:93 -#: ../../include/conversation.php:1654 +#: ../../Zotlabs/Lib/Apps.php:216 ../../include/nav.php:93 +#: ../../include/conversation.php:1639 msgid "Files" msgstr "Dateien" @@ -229,23 +83,22 @@ msgid "Shared" msgstr "Geteilt" #: ../../Zotlabs/Storage/Browser.php:230 ../../Zotlabs/Storage/Browser.php:306 -#: ../../Zotlabs/Module/Layouts.php:184 ../../Zotlabs/Module/Menu.php:118 -#: ../../Zotlabs/Module/New_channel.php:142 -#: ../../Zotlabs/Module/Blocks.php:159 ../../Zotlabs/Module/Webpages.php:193 +#: ../../Zotlabs/Module/Blocks.php:156 ../../Zotlabs/Module/Layouts.php:182 +#: ../../Zotlabs/Module/Menu.php:118 ../../Zotlabs/Module/New_channel.php:142 +#: ../../Zotlabs/Module/Webpages.php:186 msgid "Create" msgstr "Erstelle" #: ../../Zotlabs/Storage/Browser.php:231 ../../Zotlabs/Storage/Browser.php:308 #: ../../Zotlabs/Module/Cover_photo.php:357 -#: ../../Zotlabs/Module/Photos.php:823 ../../Zotlabs/Module/Photos.php:1362 -#: ../../Zotlabs/Module/Profile_photo.php:390 -#: ../../Zotlabs/Module/Embedphotos.php:159 ../../include/widgets.php:1612 +#: ../../Zotlabs/Module/Photos.php:825 ../../Zotlabs/Module/Photos.php:1364 +#: ../../Zotlabs/Module/Profile_photo.php:368 ../../include/widgets.php:1518 msgid "Upload" msgstr "Hochladen" #: ../../Zotlabs/Storage/Browser.php:235 ../../Zotlabs/Module/Chat.php:247 -#: ../../Zotlabs/Module/Admin.php:1223 ../../Zotlabs/Module/Settings.php:646 -#: ../../Zotlabs/Module/Settings.php:672 +#: ../../Zotlabs/Module/Admin.php:1223 ../../Zotlabs/Module/Settings.php:592 +#: ../../Zotlabs/Module/Settings.php:618 #: ../../Zotlabs/Module/Sharedwithme.php:99 msgid "Name" msgstr "Name" @@ -255,7 +108,7 @@ msgid "Type" msgstr "Typ" #: ../../Zotlabs/Storage/Browser.php:237 -#: ../../Zotlabs/Module/Sharedwithme.php:101 ../../include/text.php:1324 +#: ../../Zotlabs/Module/Sharedwithme.php:101 ../../include/text.php:1344 msgid "Size" msgstr "Größe" @@ -264,32 +117,34 @@ msgstr "Größe" msgid "Last Modified" msgstr "Zuletzt geändert" -#: ../../Zotlabs/Storage/Browser.php:240 ../../Zotlabs/Module/Editpost.php:84 +#: ../../Zotlabs/Storage/Browser.php:240 ../../Zotlabs/Module/Blocks.php:157 +#: ../../Zotlabs/Module/Editblock.php:109 #: ../../Zotlabs/Module/Connections.php:290 #: ../../Zotlabs/Module/Connections.php:310 -#: ../../Zotlabs/Module/Editlayout.php:114 -#: ../../Zotlabs/Module/Editwebpage.php:145 -#: ../../Zotlabs/Module/Layouts.php:192 ../../Zotlabs/Module/Menu.php:112 -#: ../../Zotlabs/Module/Admin.php:2113 ../../Zotlabs/Module/Blocks.php:160 -#: ../../Zotlabs/Module/Editblock.php:109 -#: ../../Zotlabs/Module/Settings.php:706 ../../Zotlabs/Module/Thing.php:260 -#: ../../Zotlabs/Module/Webpages.php:194 ../../Zotlabs/Lib/Apps.php:341 -#: ../../Zotlabs/Lib/ThreadItem.php:106 ../../include/page_widgets.php:9 -#: ../../include/page_widgets.php:39 ../../include/channel.php:976 -#: ../../include/channel.php:980 ../../include/menu.php:108 +#: ../../Zotlabs/Module/Editpost.php:84 +#: ../../Zotlabs/Module/Editlayout.php:113 +#: ../../Zotlabs/Module/Editwebpage.php:146 +#: ../../Zotlabs/Module/Layouts.php:190 ../../Zotlabs/Module/Menu.php:112 +#: ../../Zotlabs/Module/Admin.php:2113 ../../Zotlabs/Module/Settings.php:652 +#: ../../Zotlabs/Module/Thing.php:260 ../../Zotlabs/Module/Webpages.php:187 +#: ../../Zotlabs/Lib/Apps.php:337 ../../Zotlabs/Lib/ThreadItem.php:106 +#: ../../include/channel.php:937 ../../include/channel.php:941 +#: ../../include/menu.php:108 ../../include/page_widgets.php:8 +#: ../../include/page_widgets.php:36 msgid "Edit" msgstr "Bearbeiten" -#: ../../Zotlabs/Storage/Browser.php:241 ../../Zotlabs/Module/Connedit.php:602 +#: ../../Zotlabs/Storage/Browser.php:241 ../../Zotlabs/Module/Blocks.php:159 +#: ../../Zotlabs/Module/Connedit.php:572 +#: ../../Zotlabs/Module/Editblock.php:134 #: ../../Zotlabs/Module/Connections.php:263 -#: ../../Zotlabs/Module/Editlayout.php:137 -#: ../../Zotlabs/Module/Editwebpage.php:169 ../../Zotlabs/Module/Group.php:177 -#: ../../Zotlabs/Module/Photos.php:1171 ../../Zotlabs/Module/Admin.php:1039 +#: ../../Zotlabs/Module/Editlayout.php:136 +#: ../../Zotlabs/Module/Editwebpage.php:170 ../../Zotlabs/Module/Group.php:177 +#: ../../Zotlabs/Module/Photos.php:1173 ../../Zotlabs/Module/Admin.php:1039 #: ../../Zotlabs/Module/Admin.php:1213 ../../Zotlabs/Module/Admin.php:2114 -#: ../../Zotlabs/Module/Blocks.php:162 ../../Zotlabs/Module/Editblock.php:134 -#: ../../Zotlabs/Module/Settings.php:707 ../../Zotlabs/Module/Thing.php:261 -#: ../../Zotlabs/Module/Webpages.php:196 ../../Zotlabs/Lib/Apps.php:342 -#: ../../Zotlabs/Lib/ThreadItem.php:126 ../../include/conversation.php:660 +#: ../../Zotlabs/Module/Settings.php:653 ../../Zotlabs/Module/Thing.php:261 +#: ../../Zotlabs/Module/Webpages.php:189 ../../Zotlabs/Lib/Apps.php:338 +#: ../../Zotlabs/Lib/ThreadItem.php:126 ../../include/conversation.php:657 msgid "Delete" msgstr "Löschen" @@ -315,73 +170,74 @@ msgstr "Neuen Ordner anlegen" msgid "Upload file" msgstr "Datei hochladen" -#: ../../Zotlabs/Web/WebServer.php:127 ../../Zotlabs/Module/Dreport.php:10 -#: ../../Zotlabs/Module/Dreport.php:66 ../../Zotlabs/Module/Group.php:72 -#: ../../Zotlabs/Module/Like.php:283 ../../Zotlabs/Module/Import_items.php:114 +#: ../../Zotlabs/Web/WebServer.php:120 ../../Zotlabs/Module/Dreport.php:10 +#: ../../Zotlabs/Module/Dreport.php:49 ../../Zotlabs/Module/Group.php:72 +#: ../../Zotlabs/Module/Like.php:284 ../../Zotlabs/Module/Import_items.php:112 #: ../../Zotlabs/Module/Profperm.php:28 ../../Zotlabs/Module/Subthread.php:62 -#: ../../include/items.php:384 +#: ../../include/items.php:385 msgid "Permission denied" msgstr "Keine Berechtigung" -#: ../../Zotlabs/Web/WebServer.php:128 ../../Zotlabs/Web/Router.php:65 -#: ../../Zotlabs/Module/Achievements.php:34 -#: ../../Zotlabs/Module/Connedit.php:390 ../../Zotlabs/Module/Id.php:76 -#: ../../Zotlabs/Module/Authtest.php:16 ../../Zotlabs/Module/Events.php:264 -#: ../../Zotlabs/Module/Bookmarks.php:61 ../../Zotlabs/Module/Editpost.php:17 -#: ../../Zotlabs/Module/Page.php:35 ../../Zotlabs/Module/Page.php:91 -#: ../../Zotlabs/Module/Connections.php:33 +#: ../../Zotlabs/Web/WebServer.php:121 ../../Zotlabs/Web/Router.php:65 +#: ../../Zotlabs/Module/Achievements.php:34 ../../Zotlabs/Module/Blocks.php:73 +#: ../../Zotlabs/Module/Blocks.php:80 ../../Zotlabs/Module/Channel.php:105 +#: ../../Zotlabs/Module/Channel.php:226 ../../Zotlabs/Module/Channel.php:267 +#: ../../Zotlabs/Module/Chat.php:100 ../../Zotlabs/Module/Chat.php:105 +#: ../../Zotlabs/Module/Authtest.php:16 ../../Zotlabs/Module/Block.php:26 +#: ../../Zotlabs/Module/Block.php:76 ../../Zotlabs/Module/Bookmarks.php:61 +#: ../../Zotlabs/Module/Connedit.php:366 ../../Zotlabs/Module/Editblock.php:67 +#: ../../Zotlabs/Module/Common.php:39 ../../Zotlabs/Module/Connections.php:33 #: ../../Zotlabs/Module/Cover_photo.php:277 -#: ../../Zotlabs/Module/Cover_photo.php:290 ../../Zotlabs/Module/Chat.php:100 -#: ../../Zotlabs/Module/Chat.php:105 ../../Zotlabs/Module/Editlayout.php:67 +#: ../../Zotlabs/Module/Cover_photo.php:290 +#: ../../Zotlabs/Module/Editpost.php:17 ../../Zotlabs/Module/Events.php:265 +#: ../../Zotlabs/Module/Editlayout.php:67 #: ../../Zotlabs/Module/Editlayout.php:90 -#: ../../Zotlabs/Module/Editwebpage.php:68 -#: ../../Zotlabs/Module/Editwebpage.php:89 -#: ../../Zotlabs/Module/Editwebpage.php:104 -#: ../../Zotlabs/Module/Editwebpage.php:126 ../../Zotlabs/Module/Group.php:13 -#: ../../Zotlabs/Module/Appman.php:75 ../../Zotlabs/Module/Pdledit.php:26 -#: ../../Zotlabs/Module/Filestorage.php:23 -#: ../../Zotlabs/Module/Filestorage.php:78 -#: ../../Zotlabs/Module/Filestorage.php:93 -#: ../../Zotlabs/Module/Filestorage.php:120 +#: ../../Zotlabs/Module/Editwebpage.php:69 +#: ../../Zotlabs/Module/Editwebpage.php:90 +#: ../../Zotlabs/Module/Editwebpage.php:105 +#: ../../Zotlabs/Module/Editwebpage.php:127 ../../Zotlabs/Module/Group.php:13 +#: ../../Zotlabs/Module/Api.php:13 ../../Zotlabs/Module/Api.php:18 +#: ../../Zotlabs/Module/Filestorage.php:24 +#: ../../Zotlabs/Module/Filestorage.php:79 +#: ../../Zotlabs/Module/Filestorage.php:94 +#: ../../Zotlabs/Module/Filestorage.php:121 ../../Zotlabs/Module/Item.php:210 +#: ../../Zotlabs/Module/Item.php:218 ../../Zotlabs/Module/Item.php:1070 #: ../../Zotlabs/Module/Layouts.php:71 ../../Zotlabs/Module/Layouts.php:78 -#: ../../Zotlabs/Module/Layouts.php:89 ../../Zotlabs/Module/Like.php:181 -#: ../../Zotlabs/Module/Profiles.php:203 ../../Zotlabs/Module/Profiles.php:601 -#: ../../Zotlabs/Module/Item.php:213 ../../Zotlabs/Module/Item.php:221 -#: ../../Zotlabs/Module/Item.php:1071 ../../Zotlabs/Module/Photos.php:73 -#: ../../Zotlabs/Module/Invite.php:17 ../../Zotlabs/Module/Invite.php:91 -#: ../../Zotlabs/Module/Locs.php:87 ../../Zotlabs/Module/Mail.php:121 -#: ../../Zotlabs/Module/Manage.php:10 ../../Zotlabs/Module/Menu.php:78 -#: ../../Zotlabs/Module/Message.php:18 ../../Zotlabs/Module/Mood.php:116 -#: ../../Zotlabs/Module/Network.php:15 ../../Zotlabs/Module/Channel.php:104 -#: ../../Zotlabs/Module/Channel.php:225 ../../Zotlabs/Module/Channel.php:266 +#: ../../Zotlabs/Module/Layouts.php:89 ../../Zotlabs/Module/Id.php:76 +#: ../../Zotlabs/Module/Like.php:181 ../../Zotlabs/Module/Invite.php:17 +#: ../../Zotlabs/Module/Invite.php:91 ../../Zotlabs/Module/Locs.php:87 +#: ../../Zotlabs/Module/Mail.php:129 ../../Zotlabs/Module/Manage.php:10 +#: ../../Zotlabs/Module/Menu.php:78 ../../Zotlabs/Module/Message.php:18 +#: ../../Zotlabs/Module/Mood.php:116 ../../Zotlabs/Module/Network.php:17 #: ../../Zotlabs/Module/Mitem.php:115 ../../Zotlabs/Module/New_channel.php:77 #: ../../Zotlabs/Module/New_channel.php:104 -#: ../../Zotlabs/Module/Notifications.php:70 ../../Zotlabs/Module/Poke.php:137 -#: ../../Zotlabs/Module/Profile.php:68 ../../Zotlabs/Module/Profile.php:76 -#: ../../Zotlabs/Module/Block.php:26 ../../Zotlabs/Module/Block.php:76 -#: ../../Zotlabs/Module/Profile_photo.php:265 -#: ../../Zotlabs/Module/Profile_photo.php:278 -#: ../../Zotlabs/Module/Blocks.php:73 ../../Zotlabs/Module/Blocks.php:80 -#: ../../Zotlabs/Module/Rate.php:113 ../../Zotlabs/Module/Editblock.php:67 -#: ../../Zotlabs/Module/Common.php:39 ../../Zotlabs/Module/Register.php:77 -#: ../../Zotlabs/Module/Regmod.php:21 +#: ../../Zotlabs/Module/Notifications.php:70 +#: ../../Zotlabs/Module/Photos.php:75 ../../Zotlabs/Module/Page.php:35 +#: ../../Zotlabs/Module/Page.php:90 ../../Zotlabs/Module/Pdledit.php:26 +#: ../../Zotlabs/Module/Poke.php:137 ../../Zotlabs/Module/Profile.php:68 +#: ../../Zotlabs/Module/Profile.php:76 ../../Zotlabs/Module/Profiles.php:203 +#: ../../Zotlabs/Module/Profiles.php:601 +#: ../../Zotlabs/Module/Profile_photo.php:256 +#: ../../Zotlabs/Module/Profile_photo.php:269 +#: ../../Zotlabs/Module/Rate.php:113 ../../Zotlabs/Module/Appman.php:75 +#: ../../Zotlabs/Module/Register.php:77 ../../Zotlabs/Module/Regmod.php:21 #: ../../Zotlabs/Module/Service_limits.php:11 -#: ../../Zotlabs/Module/Settings.php:626 ../../Zotlabs/Module/Setup.php:215 -#: ../../Zotlabs/Module/Sharedwithme.php:11 ../../Zotlabs/Module/Thing.php:274 -#: ../../Zotlabs/Module/Thing.php:294 ../../Zotlabs/Module/Thing.php:331 +#: ../../Zotlabs/Module/Settings.php:572 ../../Zotlabs/Module/Setup.php:215 +#: ../../Zotlabs/Module/Sharedwithme.php:11 #: ../../Zotlabs/Module/Sources.php:74 ../../Zotlabs/Module/Suggest.php:30 -#: ../../Zotlabs/Module/Webpages.php:73 -#: ../../Zotlabs/Module/Viewconnections.php:28 -#: ../../Zotlabs/Module/Viewconnections.php:33 -#: ../../Zotlabs/Module/Viewsrc.php:18 ../../Zotlabs/Module/Api.php:13 -#: ../../Zotlabs/Module/Api.php:18 ../../Zotlabs/Lib/Chatroom.php:137 -#: ../../include/photos.php:27 ../../include/attach.php:141 -#: ../../include/attach.php:189 ../../include/attach.php:252 -#: ../../include/attach.php:266 ../../include/attach.php:273 -#: ../../include/attach.php:338 ../../include/attach.php:352 -#: ../../include/attach.php:359 ../../include/attach.php:439 -#: ../../include/attach.php:901 ../../include/attach.php:972 -#: ../../include/attach.php:1124 ../../include/items.php:3448 +#: ../../Zotlabs/Module/Thing.php:274 ../../Zotlabs/Module/Thing.php:294 +#: ../../Zotlabs/Module/Thing.php:331 +#: ../../Zotlabs/Module/Viewconnections.php:25 +#: ../../Zotlabs/Module/Viewconnections.php:30 +#: ../../Zotlabs/Module/Viewsrc.php:18 ../../Zotlabs/Module/Webpages.php:74 +#: ../../Zotlabs/Lib/Chatroom.php:137 ../../include/items.php:3438 +#: ../../include/attach.php:141 ../../include/attach.php:189 +#: ../../include/attach.php:252 ../../include/attach.php:266 +#: ../../include/attach.php:273 ../../include/attach.php:338 +#: ../../include/attach.php:352 ../../include/attach.php:359 +#: ../../include/attach.php:437 ../../include/attach.php:895 +#: ../../include/attach.php:966 ../../include/attach.php:1118 +#: ../../include/photos.php:27 msgid "Permission denied." msgstr "Berechtigung verweigert." @@ -389,9 +245,9 @@ msgstr "Berechtigung verweigert." msgid "Not Found" msgstr "Nicht gefunden" -#: ../../Zotlabs/Web/Router.php:149 ../../Zotlabs/Module/Display.php:118 -#: ../../Zotlabs/Module/Page.php:94 ../../Zotlabs/Module/Help.php:97 -#: ../../Zotlabs/Module/Block.php:79 +#: ../../Zotlabs/Web/Router.php:149 ../../Zotlabs/Module/Block.php:79 +#: ../../Zotlabs/Module/Display.php:117 ../../Zotlabs/Module/Help.php:97 +#: ../../Zotlabs/Module/Page.php:93 msgid "Page not found." msgstr "Seite nicht gefunden." @@ -407,20 +263,243 @@ msgstr "Fern-Authentifizierung blockiert. Du bist lokal auf diesem Server angeme msgid "Welcome %s. Remote authentication successful." msgstr "Willkommen %s. Entfernte Authentifizierung erfolgreich." -#: ../../Zotlabs/Module/Achievements.php:15 -#: ../../Zotlabs/Module/Connect.php:17 ../../Zotlabs/Module/Editlayout.php:31 -#: ../../Zotlabs/Module/Editwebpage.php:32 ../../Zotlabs/Module/Hcard.php:12 -#: ../../Zotlabs/Module/Filestorage.php:59 ../../Zotlabs/Module/Layouts.php:31 -#: ../../Zotlabs/Module/Profile.php:20 ../../Zotlabs/Module/Blocks.php:33 -#: ../../Zotlabs/Module/Editblock.php:31 ../../Zotlabs/Module/Webpages.php:33 -#: ../../include/channel.php:876 +#: ../../Zotlabs/Module/Achievements.php:15 ../../Zotlabs/Module/Blocks.php:33 +#: ../../Zotlabs/Module/Connect.php:17 ../../Zotlabs/Module/Editblock.php:31 +#: ../../Zotlabs/Module/Editlayout.php:31 +#: ../../Zotlabs/Module/Editwebpage.php:33 +#: ../../Zotlabs/Module/Filestorage.php:60 ../../Zotlabs/Module/Hcard.php:12 +#: ../../Zotlabs/Module/Layouts.php:31 ../../Zotlabs/Module/Profile.php:20 +#: ../../Zotlabs/Module/Webpages.php:34 ../../include/channel.php:837 msgid "Requested profile is not available." -msgstr "Das angefragte Profil ist nicht verfügbar." +msgstr "Erwünschte Profil ist nicht verfügbar." #: ../../Zotlabs/Module/Achievements.php:38 msgid "Some blurb about what to do when you're new here" msgstr "Ein Hinweis, was man tun kann, wenn man neu hier ist" +#: ../../Zotlabs/Module/Blocks.php:97 ../../Zotlabs/Module/Blocks.php:152 +#: ../../Zotlabs/Module/Editblock.php:108 +msgid "Block Name" +msgstr "Block-Name" + +#: ../../Zotlabs/Module/Blocks.php:151 ../../include/text.php:2265 +msgid "Blocks" +msgstr "Blöcke" + +#: ../../Zotlabs/Module/Blocks.php:153 +msgid "Block Title" +msgstr "Titel des Blocks" + +#: ../../Zotlabs/Module/Blocks.php:154 ../../Zotlabs/Module/Layouts.php:188 +#: ../../Zotlabs/Module/Menu.php:114 ../../Zotlabs/Module/Webpages.php:198 +#: ../../include/page_widgets.php:44 +msgid "Created" +msgstr "Erstellt" + +#: ../../Zotlabs/Module/Blocks.php:155 ../../Zotlabs/Module/Layouts.php:189 +#: ../../Zotlabs/Module/Menu.php:115 ../../Zotlabs/Module/Webpages.php:199 +#: ../../include/page_widgets.php:45 +msgid "Edited" +msgstr "Geändert" + +#: ../../Zotlabs/Module/Blocks.php:158 ../../Zotlabs/Module/Layouts.php:191 +#: ../../Zotlabs/Module/Photos.php:1072 ../../Zotlabs/Module/Webpages.php:188 +#: ../../include/conversation.php:1208 +msgid "Share" +msgstr "Teilen" + +#: ../../Zotlabs/Module/Blocks.php:163 ../../Zotlabs/Module/Layouts.php:195 +#: ../../Zotlabs/Module/Pubsites.php:47 ../../Zotlabs/Module/Webpages.php:193 +#: ../../include/page_widgets.php:39 +msgid "View" +msgstr "Ansicht" + +#: ../../Zotlabs/Module/Cal.php:62 ../../Zotlabs/Module/Block.php:43 +#: ../../Zotlabs/Module/Page.php:56 ../../Zotlabs/Module/Wall_upload.php:33 +msgid "Channel not found." +msgstr "Kanal nicht gefunden." + +#: ../../Zotlabs/Module/Cal.php:69 +msgid "Permissions denied." +msgstr "Berechtigung verweigert." + +#: ../../Zotlabs/Module/Cal.php:259 ../../Zotlabs/Module/Events.php:588 +msgid "l, F j" +msgstr "l, j. F" + +#: ../../Zotlabs/Module/Cal.php:308 ../../Zotlabs/Module/Events.php:637 +#: ../../include/text.php:1732 +msgid "Link to Source" +msgstr "Link zur Quelle" + +#: ../../Zotlabs/Module/Cal.php:331 ../../Zotlabs/Module/Events.php:665 +msgid "Edit Event" +msgstr "Termin bearbeiten" + +#: ../../Zotlabs/Module/Cal.php:331 ../../Zotlabs/Module/Events.php:665 +msgid "Create Event" +msgstr "Termin anlegen" + +#: ../../Zotlabs/Module/Cal.php:332 ../../Zotlabs/Module/Cal.php:339 +#: ../../Zotlabs/Module/Events.php:666 ../../Zotlabs/Module/Events.php:673 +#: ../../Zotlabs/Module/Photos.php:949 +msgid "Previous" +msgstr "Voriges" + +#: ../../Zotlabs/Module/Cal.php:333 ../../Zotlabs/Module/Cal.php:340 +#: ../../Zotlabs/Module/Events.php:667 ../../Zotlabs/Module/Events.php:674 +#: ../../Zotlabs/Module/Photos.php:958 ../../Zotlabs/Module/Setup.php:267 +msgid "Next" +msgstr "Nächste" + +#: ../../Zotlabs/Module/Cal.php:334 ../../Zotlabs/Module/Events.php:668 +#: ../../include/widgets.php:755 +msgid "Export" +msgstr "Exportieren" + +#: ../../Zotlabs/Module/Cal.php:337 ../../Zotlabs/Module/Events.php:671 +#: ../../include/widgets.php:756 +msgid "Import" +msgstr "Import" + +#: ../../Zotlabs/Module/Cal.php:338 ../../Zotlabs/Module/Chat.php:196 +#: ../../Zotlabs/Module/Chat.php:238 ../../Zotlabs/Module/Connect.php:98 +#: ../../Zotlabs/Module/Connedit.php:731 ../../Zotlabs/Module/Events.php:475 +#: ../../Zotlabs/Module/Events.php:672 ../../Zotlabs/Module/Group.php:85 +#: ../../Zotlabs/Module/Filestorage.php:162 +#: ../../Zotlabs/Module/Import.php:550 +#: ../../Zotlabs/Module/Import_items.php:120 +#: ../../Zotlabs/Module/Invite.php:146 ../../Zotlabs/Module/Locs.php:121 +#: ../../Zotlabs/Module/Mail.php:378 ../../Zotlabs/Module/Mood.php:139 +#: ../../Zotlabs/Module/Mitem.php:235 ../../Zotlabs/Module/Photos.php:677 +#: ../../Zotlabs/Module/Photos.php:1052 ../../Zotlabs/Module/Photos.php:1092 +#: ../../Zotlabs/Module/Photos.php:1210 ../../Zotlabs/Module/Pconfig.php:107 +#: ../../Zotlabs/Module/Pdledit.php:66 ../../Zotlabs/Module/Poke.php:186 +#: ../../Zotlabs/Module/Profiles.php:687 ../../Zotlabs/Module/Rate.php:170 +#: ../../Zotlabs/Module/Admin.php:492 ../../Zotlabs/Module/Admin.php:688 +#: ../../Zotlabs/Module/Admin.php:771 ../../Zotlabs/Module/Admin.php:1032 +#: ../../Zotlabs/Module/Admin.php:1211 ../../Zotlabs/Module/Admin.php:1421 +#: ../../Zotlabs/Module/Admin.php:1648 ../../Zotlabs/Module/Admin.php:1733 +#: ../../Zotlabs/Module/Admin.php:2116 ../../Zotlabs/Module/Appman.php:126 +#: ../../Zotlabs/Module/Settings.php:590 ../../Zotlabs/Module/Settings.php:703 +#: ../../Zotlabs/Module/Settings.php:731 ../../Zotlabs/Module/Settings.php:754 +#: ../../Zotlabs/Module/Settings.php:842 +#: ../../Zotlabs/Module/Settings.php:1034 ../../Zotlabs/Module/Setup.php:312 +#: ../../Zotlabs/Module/Setup.php:353 ../../Zotlabs/Module/Sources.php:114 +#: ../../Zotlabs/Module/Sources.php:149 ../../Zotlabs/Module/Thing.php:316 +#: ../../Zotlabs/Module/Thing.php:362 ../../Zotlabs/Module/Xchan.php:15 +#: ../../Zotlabs/Lib/ThreadItem.php:710 ../../include/widgets.php:757 +#: ../../include/widgets.php:769 ../../include/js_strings.php:22 +#: ../../view/theme/redbasic/php/config.php:99 +msgid "Submit" +msgstr "Bestätigen" + +#: ../../Zotlabs/Module/Cal.php:341 ../../Zotlabs/Module/Events.php:675 +msgid "Today" +msgstr "Heute" + +#: ../../Zotlabs/Module/Channel.php:29 ../../Zotlabs/Module/Chat.php:25 +msgid "You must be logged in to see this page." +msgstr "Du musst angemeldet sein, um diese Seite betrachten zu können." + +#: ../../Zotlabs/Module/Channel.php:41 +msgid "Posts and comments" +msgstr "Beiträge und Kommentare" + +#: ../../Zotlabs/Module/Channel.php:42 +msgid "Only posts" +msgstr "Nur Beiträge" + +#: ../../Zotlabs/Module/Channel.php:102 +msgid "Insufficient permissions. Request redirected to profile page." +msgstr "Unzureichende Zugriffsrechte. Die Anfrage wurde zur Profil-Seite umgeleitet." + +#: ../../Zotlabs/Module/Chat.php:181 +msgid "Room not found" +msgstr "Chatraum nicht gefunden" + +#: ../../Zotlabs/Module/Chat.php:197 +msgid "Leave Room" +msgstr "Raum verlassen" + +#: ../../Zotlabs/Module/Chat.php:198 +msgid "Delete Room" +msgstr "Raum löschen" + +#: ../../Zotlabs/Module/Chat.php:199 +msgid "I am away right now" +msgstr "Ich bin gerade nicht da" + +#: ../../Zotlabs/Module/Chat.php:200 +msgid "I am online" +msgstr "Ich bin online" + +#: ../../Zotlabs/Module/Chat.php:202 +msgid "Bookmark this room" +msgstr "Lesezeichen für diesen Raum setzen" + +#: ../../Zotlabs/Module/Chat.php:205 ../../Zotlabs/Module/Mail.php:205 +#: ../../Zotlabs/Module/Mail.php:314 ../../include/conversation.php:1176 +msgid "Please enter a link URL:" +msgstr "Gib eine URL ein:" + +#: ../../Zotlabs/Module/Chat.php:206 ../../Zotlabs/Module/Mail.php:258 +#: ../../Zotlabs/Module/Mail.php:383 ../../Zotlabs/Lib/ThreadItem.php:722 +#: ../../include/conversation.php:1256 +msgid "Encrypt text" +msgstr "Text verschlüsseln" + +#: ../../Zotlabs/Module/Chat.php:207 ../../Zotlabs/Module/Editblock.php:111 +#: ../../Zotlabs/Module/Editwebpage.php:147 ../../Zotlabs/Module/Mail.php:252 +#: ../../Zotlabs/Module/Mail.php:377 ../../include/conversation.php:1143 +msgid "Insert web link" +msgstr "Link einfügen" + +#: ../../Zotlabs/Module/Chat.php:218 +msgid "Feature disabled." +msgstr "Funktion deaktiviert." + +#: ../../Zotlabs/Module/Chat.php:232 +msgid "New Chatroom" +msgstr "Neuer Chatraum" + +#: ../../Zotlabs/Module/Chat.php:233 +msgid "Chatroom name" +msgstr "Chatraumname" + +#: ../../Zotlabs/Module/Chat.php:234 +msgid "Expiration of chats (minutes)" +msgstr "Verfall von Chats (Minuten)" + +#: ../../Zotlabs/Module/Chat.php:235 ../../Zotlabs/Module/Filestorage.php:153 +#: ../../Zotlabs/Module/Photos.php:671 ../../Zotlabs/Module/Photos.php:1045 +#: ../../Zotlabs/Module/Thing.php:313 ../../Zotlabs/Module/Thing.php:359 +#: ../../include/acl_selectors.php:283 +msgid "Permissions" +msgstr "Berechtigungen" + +#: ../../Zotlabs/Module/Chat.php:246 +#, php-format +msgid "%1$s's Chatrooms" +msgstr "%1$ss Chaträume" + +#: ../../Zotlabs/Module/Chat.php:251 +msgid "No chatrooms available" +msgstr "Keine Chaträume verfügbar" + +#: ../../Zotlabs/Module/Chat.php:252 ../../Zotlabs/Module/Manage.php:143 +#: ../../Zotlabs/Module/Profiles.php:778 +msgid "Create New" +msgstr "Neu anlegen" + +#: ../../Zotlabs/Module/Chat.php:255 +msgid "Expiration" +msgstr "Verfall" + +#: ../../Zotlabs/Module/Chat.php:256 +msgid "min" +msgstr "min" + #: ../../Zotlabs/Module/Chatsvc.php:117 msgid "Away" msgstr "Abwesend" @@ -429,6 +508,65 @@ msgstr "Abwesend" msgid "Online" msgstr "Online" +#: ../../Zotlabs/Module/Block.php:31 ../../Zotlabs/Module/Page.php:40 +msgid "Invalid item." +msgstr "Ungültiges Element." + +#: ../../Zotlabs/Module/Bookmarks.php:53 +msgid "Bookmark added" +msgstr "Lesezeichen hinzugefügt" + +#: ../../Zotlabs/Module/Bookmarks.php:75 +msgid "My Bookmarks" +msgstr "Meine Lesezeichen" + +#: ../../Zotlabs/Module/Bookmarks.php:86 +msgid "My Connections Bookmarks" +msgstr "Lesezeichen meiner Kontakte" + +#: ../../Zotlabs/Module/Connect.php:61 ../../Zotlabs/Module/Connect.php:109 +msgid "Continue" +msgstr "Fortfahren" + +#: ../../Zotlabs/Module/Connect.php:90 +msgid "Premium Channel Setup" +msgstr "Premium-Kanal-Einrichtung" + +#: ../../Zotlabs/Module/Connect.php:92 +msgid "Enable premium channel connection restrictions" +msgstr "Einschränkungen für einen Premium-Kanal aktivieren" + +#: ../../Zotlabs/Module/Connect.php:93 +msgid "" +"Please enter your restrictions or conditions, such as paypal receipt, usage " +"guidelines, etc." +msgstr "Bitte gib Deine Nutzungsbedingungen ein, z.B. Paypal-Quittung, Richtlinien etc." + +#: ../../Zotlabs/Module/Connect.php:95 ../../Zotlabs/Module/Connect.php:115 +msgid "" +"This channel may require additional steps or acknowledgement of the " +"following conditions prior to connecting:" +msgstr "Unter Umständen sind weitere Schritte oder die Bestätigung der folgenden Bedingungen vor dem Verbinden mit diesem Kanal nötig." + +#: ../../Zotlabs/Module/Connect.php:96 +msgid "" +"Potential connections will then see the following text before proceeding:" +msgstr "Potentielle Kontakte werden den folgenden Text sehen, bevor fortgefahren wird:" + +#: ../../Zotlabs/Module/Connect.php:97 ../../Zotlabs/Module/Connect.php:118 +msgid "" +"By continuing, I certify that I have complied with any instructions provided" +" on this page." +msgstr "Indem ich fortfahre, bestätige ich die Erfüllung aller Anweisungen auf dieser Seite." + +#: ../../Zotlabs/Module/Connect.php:106 +msgid "(No specific instructions have been provided by the channel owner.)" +msgstr "(Der Kanal-Besitzer hat keine speziellen Anweisungen hinterlegt.)" + +#: ../../Zotlabs/Module/Connect.php:114 +msgid "Restricted or Premium Channel" +msgstr "Eingeschränkter oder Premium-Kanal" + #: ../../Zotlabs/Module/Connedit.php:80 msgid "Could not access contact record." msgstr "Konnte nicht auf den Kontakteintrag zugreifen." @@ -437,350 +575,317 @@ msgstr "Konnte nicht auf den Kontakteintrag zugreifen." msgid "Could not locate selected profile." msgstr "Gewähltes Profil nicht gefunden." -#: ../../Zotlabs/Module/Connedit.php:248 +#: ../../Zotlabs/Module/Connedit.php:227 msgid "Connection updated." msgstr "Verbindung aktualisiert." -#: ../../Zotlabs/Module/Connedit.php:250 +#: ../../Zotlabs/Module/Connedit.php:229 msgid "Failed to update connection record." msgstr "Konnte den Verbindungseintrag nicht aktualisieren." -#: ../../Zotlabs/Module/Connedit.php:300 +#: ../../Zotlabs/Module/Connedit.php:276 msgid "is now connected to" msgstr "ist jetzt verbunden mit" -#: ../../Zotlabs/Module/Connedit.php:403 ../../Zotlabs/Module/Connedit.php:685 -#: ../../Zotlabs/Module/Events.php:458 ../../Zotlabs/Module/Events.php:459 -#: ../../Zotlabs/Module/Events.php:468 -#: ../../Zotlabs/Module/Filestorage.php:156 -#: ../../Zotlabs/Module/Filestorage.php:164 -#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Photos.php:664 -#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 -#: ../../Zotlabs/Module/Mitem.php:158 ../../Zotlabs/Module/Mitem.php:159 -#: ../../Zotlabs/Module/Mitem.php:232 ../../Zotlabs/Module/Mitem.php:233 -#: ../../Zotlabs/Module/Admin.php:459 ../../Zotlabs/Module/Removeme.php:63 -#: ../../Zotlabs/Module/Settings.php:635 ../../Zotlabs/Module/Api.php:89 +#: ../../Zotlabs/Module/Connedit.php:379 ../../Zotlabs/Module/Connedit.php:654 +#: ../../Zotlabs/Module/Events.php:459 ../../Zotlabs/Module/Events.php:460 +#: ../../Zotlabs/Module/Events.php:469 ../../Zotlabs/Module/Api.php:89 +#: ../../Zotlabs/Module/Filestorage.php:157 +#: ../../Zotlabs/Module/Filestorage.php:165 ../../Zotlabs/Module/Menu.php:100 +#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Mitem.php:158 +#: ../../Zotlabs/Module/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:232 +#: ../../Zotlabs/Module/Mitem.php:233 ../../Zotlabs/Module/Photos.php:666 +#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Admin.php:459 +#: ../../Zotlabs/Module/Removeme.php:61 ../../Zotlabs/Module/Settings.php:581 #: ../../include/dir_fns.php:143 ../../include/dir_fns.php:144 #: ../../include/dir_fns.php:145 ../../view/theme/redbasic/php/config.php:105 -#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1708 +#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1707 msgid "No" msgstr "Nein" -#: ../../Zotlabs/Module/Connedit.php:403 ../../Zotlabs/Module/Events.php:458 -#: ../../Zotlabs/Module/Events.php:459 ../../Zotlabs/Module/Events.php:468 -#: ../../Zotlabs/Module/Filestorage.php:156 -#: ../../Zotlabs/Module/Filestorage.php:164 -#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Photos.php:664 -#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 -#: ../../Zotlabs/Module/Mitem.php:158 ../../Zotlabs/Module/Mitem.php:159 -#: ../../Zotlabs/Module/Mitem.php:232 ../../Zotlabs/Module/Mitem.php:233 -#: ../../Zotlabs/Module/Admin.php:461 ../../Zotlabs/Module/Removeme.php:63 -#: ../../Zotlabs/Module/Settings.php:635 ../../Zotlabs/Module/Api.php:88 +#: ../../Zotlabs/Module/Connedit.php:379 ../../Zotlabs/Module/Events.php:459 +#: ../../Zotlabs/Module/Events.php:460 ../../Zotlabs/Module/Events.php:469 +#: ../../Zotlabs/Module/Api.php:88 ../../Zotlabs/Module/Filestorage.php:157 +#: ../../Zotlabs/Module/Filestorage.php:165 ../../Zotlabs/Module/Menu.php:100 +#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Mitem.php:158 +#: ../../Zotlabs/Module/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:232 +#: ../../Zotlabs/Module/Mitem.php:233 ../../Zotlabs/Module/Photos.php:666 +#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Admin.php:461 +#: ../../Zotlabs/Module/Removeme.php:61 ../../Zotlabs/Module/Settings.php:581 #: ../../include/dir_fns.php:143 ../../include/dir_fns.php:144 #: ../../include/dir_fns.php:145 ../../view/theme/redbasic/php/config.php:105 -#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1708 +#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1707 msgid "Yes" msgstr "Ja" -#: ../../Zotlabs/Module/Connedit.php:435 +#: ../../Zotlabs/Module/Connedit.php:411 msgid "Could not access address book record." msgstr "Konnte nicht auf den Adressbuch-Eintrag zugreifen." -#: ../../Zotlabs/Module/Connedit.php:455 +#: ../../Zotlabs/Module/Connedit.php:425 msgid "Refresh failed - channel is currently unavailable." msgstr "Aktualisierung fehlgeschlagen – der Kanal ist im Moment nicht erreichbar." -#: ../../Zotlabs/Module/Connedit.php:470 ../../Zotlabs/Module/Connedit.php:479 -#: ../../Zotlabs/Module/Connedit.php:488 ../../Zotlabs/Module/Connedit.php:497 -#: ../../Zotlabs/Module/Connedit.php:510 +#: ../../Zotlabs/Module/Connedit.php:440 ../../Zotlabs/Module/Connedit.php:449 +#: ../../Zotlabs/Module/Connedit.php:458 ../../Zotlabs/Module/Connedit.php:467 +#: ../../Zotlabs/Module/Connedit.php:480 msgid "Unable to set address book parameters." msgstr "Konnte die Adressbuch-Parameter nicht setzen." -#: ../../Zotlabs/Module/Connedit.php:533 +#: ../../Zotlabs/Module/Connedit.php:503 msgid "Connection has been removed." msgstr "Verbindung wurde gelöscht." -#: ../../Zotlabs/Module/Connedit.php:549 ../../Zotlabs/Lib/Apps.php:221 -#: ../../include/nav.php:86 ../../include/conversation.php:957 +#: ../../Zotlabs/Module/Connedit.php:519 ../../Zotlabs/Lib/Apps.php:219 +#: ../../include/nav.php:86 ../../include/conversation.php:954 msgid "View Profile" msgstr "Profil ansehen" -#: ../../Zotlabs/Module/Connedit.php:552 +#: ../../Zotlabs/Module/Connedit.php:522 #, php-format msgid "View %s's profile" msgstr "%ss Profil ansehen" -#: ../../Zotlabs/Module/Connedit.php:556 +#: ../../Zotlabs/Module/Connedit.php:526 msgid "Refresh Permissions" msgstr "Zugriffsrechte neu laden" -#: ../../Zotlabs/Module/Connedit.php:559 +#: ../../Zotlabs/Module/Connedit.php:529 msgid "Fetch updated permissions" msgstr "Aktualisierte Zugriffsrechte abfragen" -#: ../../Zotlabs/Module/Connedit.php:563 +#: ../../Zotlabs/Module/Connedit.php:533 msgid "Recent Activity" msgstr "Kürzliche Aktivitäten" -#: ../../Zotlabs/Module/Connedit.php:566 +#: ../../Zotlabs/Module/Connedit.php:536 msgid "View recent posts and comments" msgstr "Betrachte die neuesten Beiträge und Kommentare" -#: ../../Zotlabs/Module/Connedit.php:570 ../../Zotlabs/Module/Admin.php:1041 +#: ../../Zotlabs/Module/Connedit.php:540 ../../Zotlabs/Module/Admin.php:1041 msgid "Unblock" msgstr "Freigeben" -#: ../../Zotlabs/Module/Connedit.php:570 ../../Zotlabs/Module/Admin.php:1040 +#: ../../Zotlabs/Module/Connedit.php:540 ../../Zotlabs/Module/Admin.php:1040 msgid "Block" msgstr "Blockieren" -#: ../../Zotlabs/Module/Connedit.php:573 +#: ../../Zotlabs/Module/Connedit.php:543 msgid "Block (or Unblock) all communications with this connection" msgstr "Jegliche Kommunikation mit dieser Verbindung blockieren/zulassen" -#: ../../Zotlabs/Module/Connedit.php:574 +#: ../../Zotlabs/Module/Connedit.php:544 msgid "This connection is blocked!" msgstr "Die Verbindung ist geblockt!" -#: ../../Zotlabs/Module/Connedit.php:578 +#: ../../Zotlabs/Module/Connedit.php:548 msgid "Unignore" msgstr "Nicht ignorieren" -#: ../../Zotlabs/Module/Connedit.php:578 +#: ../../Zotlabs/Module/Connedit.php:548 #: ../../Zotlabs/Module/Connections.php:277 #: ../../Zotlabs/Module/Notifications.php:55 msgid "Ignore" msgstr "Ignorieren" -#: ../../Zotlabs/Module/Connedit.php:581 +#: ../../Zotlabs/Module/Connedit.php:551 msgid "Ignore (or Unignore) all inbound communications from this connection" msgstr "Jegliche eingehende Kommunikation von dieser Verbindung ignorieren/zulassen" -#: ../../Zotlabs/Module/Connedit.php:582 +#: ../../Zotlabs/Module/Connedit.php:552 msgid "This connection is ignored!" msgstr "Die Verbindung wird ignoriert!" -#: ../../Zotlabs/Module/Connedit.php:586 +#: ../../Zotlabs/Module/Connedit.php:556 msgid "Unarchive" msgstr "Aus Archiv zurückholen" -#: ../../Zotlabs/Module/Connedit.php:586 +#: ../../Zotlabs/Module/Connedit.php:556 msgid "Archive" msgstr "Archivieren" -#: ../../Zotlabs/Module/Connedit.php:589 +#: ../../Zotlabs/Module/Connedit.php:559 msgid "" "Archive (or Unarchive) this connection - mark channel dead but keep content" msgstr "Verbindung archivieren/aus dem Archiv zurückholen (Archiv = Kanal als erloschen markieren, aber die Beiträge behalten)" -#: ../../Zotlabs/Module/Connedit.php:590 +#: ../../Zotlabs/Module/Connedit.php:560 msgid "This connection is archived!" msgstr "Die Verbindung ist archiviert!" -#: ../../Zotlabs/Module/Connedit.php:594 +#: ../../Zotlabs/Module/Connedit.php:564 msgid "Unhide" msgstr "Wieder sichtbar machen" -#: ../../Zotlabs/Module/Connedit.php:594 +#: ../../Zotlabs/Module/Connedit.php:564 msgid "Hide" msgstr "Verstecken" -#: ../../Zotlabs/Module/Connedit.php:597 +#: ../../Zotlabs/Module/Connedit.php:567 msgid "Hide or Unhide this connection from your other connections" msgstr "Diese Verbindung vor anderen Verbindungen verstecken/zeigen" -#: ../../Zotlabs/Module/Connedit.php:598 +#: ../../Zotlabs/Module/Connedit.php:568 msgid "This connection is hidden!" msgstr "Die Verbindung ist versteckt!" -#: ../../Zotlabs/Module/Connedit.php:605 +#: ../../Zotlabs/Module/Connedit.php:575 msgid "Delete this connection" msgstr "Verbindung löschen" -#: ../../Zotlabs/Module/Connedit.php:620 ../../include/widgets.php:493 +#: ../../Zotlabs/Module/Connedit.php:590 ../../include/widgets.php:493 msgid "Me" msgstr "Ich" -#: ../../Zotlabs/Module/Connedit.php:621 ../../include/widgets.php:494 +#: ../../Zotlabs/Module/Connedit.php:591 ../../include/widgets.php:494 msgid "Family" msgstr "Familie" -#: ../../Zotlabs/Module/Connedit.php:622 ../../Zotlabs/Module/Settings.php:391 -#: ../../Zotlabs/Module/Settings.php:395 ../../Zotlabs/Module/Settings.php:396 -#: ../../Zotlabs/Module/Settings.php:399 ../../Zotlabs/Module/Settings.php:410 -#: ../../include/channel.php:402 ../../include/channel.php:403 -#: ../../include/channel.php:410 ../../include/selectors.php:123 -#: ../../include/widgets.php:495 +#: ../../Zotlabs/Module/Connedit.php:592 ../../Zotlabs/Module/Settings.php:342 +#: ../../Zotlabs/Module/Settings.php:346 ../../Zotlabs/Module/Settings.php:347 +#: ../../Zotlabs/Module/Settings.php:350 ../../Zotlabs/Module/Settings.php:361 +#: ../../include/widgets.php:495 ../../include/selectors.php:123 +#: ../../include/channel.php:389 ../../include/channel.php:390 +#: ../../include/channel.php:397 msgid "Friends" msgstr "Freunde" -#: ../../Zotlabs/Module/Connedit.php:623 ../../include/widgets.php:496 +#: ../../Zotlabs/Module/Connedit.php:593 ../../include/widgets.php:496 msgid "Acquaintances" msgstr "Bekannte" -#: ../../Zotlabs/Module/Connedit.php:624 +#: ../../Zotlabs/Module/Connedit.php:594 #: ../../Zotlabs/Module/Connections.php:92 #: ../../Zotlabs/Module/Connections.php:107 ../../include/widgets.php:497 msgid "All" msgstr "Alle" -#: ../../Zotlabs/Module/Connedit.php:685 +#: ../../Zotlabs/Module/Connedit.php:654 msgid "Approve this connection" msgstr "Verbindung genehmigen" -#: ../../Zotlabs/Module/Connedit.php:685 +#: ../../Zotlabs/Module/Connedit.php:654 msgid "Accept connection to allow communication" msgstr "Akzeptiere die Verbindung, um Kommunikation zu ermöglichen" -#: ../../Zotlabs/Module/Connedit.php:690 +#: ../../Zotlabs/Module/Connedit.php:659 msgid "Set Affinity" msgstr "Beziehung festlegen" -#: ../../Zotlabs/Module/Connedit.php:693 +#: ../../Zotlabs/Module/Connedit.php:662 msgid "Set Profile" msgstr "Profil festlegen" -#: ../../Zotlabs/Module/Connedit.php:696 +#: ../../Zotlabs/Module/Connedit.php:665 msgid "Set Affinity & Profile" msgstr "Beziehung und Profile festlegen" -#: ../../Zotlabs/Module/Connedit.php:745 +#: ../../Zotlabs/Module/Connedit.php:698 msgid "none" msgstr "Keine" -#: ../../Zotlabs/Module/Connedit.php:749 ../../include/widgets.php:623 +#: ../../Zotlabs/Module/Connedit.php:702 ../../include/widgets.php:614 msgid "Connection Default Permissions" msgstr "Standardzugriffsrechte für neue Verbindungen:" -#: ../../Zotlabs/Module/Connedit.php:749 ../../include/items.php:3935 +#: ../../Zotlabs/Module/Connedit.php:702 ../../include/items.php:3926 #, php-format msgid "Connection: %s" msgstr "Verbindung: %s" -#: ../../Zotlabs/Module/Connedit.php:750 +#: ../../Zotlabs/Module/Connedit.php:703 msgid "Apply these permissions automatically" msgstr "Diese Berechtigungen automatisch anwenden" -#: ../../Zotlabs/Module/Connedit.php:750 +#: ../../Zotlabs/Module/Connedit.php:703 msgid "Connection requests will be approved without your interaction" msgstr "Verbindungsanfragen werden sofort bestätigt, ohne dass Deine aktive Zustimmung erforderlich ist." -#: ../../Zotlabs/Module/Connedit.php:752 +#: ../../Zotlabs/Module/Connedit.php:705 msgid "This connection's primary address is" msgstr "Die Hauptadresse der Verbindung ist" -#: ../../Zotlabs/Module/Connedit.php:753 +#: ../../Zotlabs/Module/Connedit.php:706 msgid "Available locations:" msgstr "Verfügbare Klone:" -#: ../../Zotlabs/Module/Connedit.php:757 +#: ../../Zotlabs/Module/Connedit.php:710 msgid "" "The permissions indicated on this page will be applied to all new " "connections." msgstr "Die auf dieser Seite angegebenen Berechtigungen werden auf alle neuen Verbindungen angewendet." -#: ../../Zotlabs/Module/Connedit.php:758 +#: ../../Zotlabs/Module/Connedit.php:711 msgid "Connection Tools" msgstr "Verbindungswerkzeuge" -#: ../../Zotlabs/Module/Connedit.php:760 +#: ../../Zotlabs/Module/Connedit.php:713 msgid "Slide to adjust your degree of friendship" msgstr "Verschieben, um den Grad der Freundschaft zu einzustellen" -#: ../../Zotlabs/Module/Connedit.php:761 ../../Zotlabs/Module/Rate.php:159 +#: ../../Zotlabs/Module/Connedit.php:714 ../../Zotlabs/Module/Rate.php:159 #: ../../include/js_strings.php:20 msgid "Rating" msgstr "Bewertung" -#: ../../Zotlabs/Module/Connedit.php:762 +#: ../../Zotlabs/Module/Connedit.php:715 msgid "Slide to adjust your rating" msgstr "Verschieben, um Deine Bewertung einzustellen" -#: ../../Zotlabs/Module/Connedit.php:763 ../../Zotlabs/Module/Connedit.php:768 +#: ../../Zotlabs/Module/Connedit.php:716 ../../Zotlabs/Module/Connedit.php:721 msgid "Optionally explain your rating" msgstr "Optional kannst Du Deine Bewertung begründen" -#: ../../Zotlabs/Module/Connedit.php:765 +#: ../../Zotlabs/Module/Connedit.php:718 msgid "Custom Filter" msgstr "Benutzerdefinierter Filter" -#: ../../Zotlabs/Module/Connedit.php:766 +#: ../../Zotlabs/Module/Connedit.php:719 msgid "Only import posts with this text" msgstr "Nur Beiträge mit diesem Text importieren" -#: ../../Zotlabs/Module/Connedit.php:766 ../../Zotlabs/Module/Connedit.php:767 +#: ../../Zotlabs/Module/Connedit.php:719 ../../Zotlabs/Module/Connedit.php:720 msgid "" "words one per line or #tags or /patterns/ or lang=xx, leave blank to import " "all posts" msgstr "Einzelne Wörter pro Zeile, #Tags oder /Reguläre Ausdrücke/. lang=xx (z.B. lang=de) ermöglicht Filterung nach Sprache. Leer lassen, um alle Beiträge zu importieren." -#: ../../Zotlabs/Module/Connedit.php:767 +#: ../../Zotlabs/Module/Connedit.php:720 msgid "Do not import posts with this text" msgstr "Beiträge mit diesem Text nicht importieren" -#: ../../Zotlabs/Module/Connedit.php:769 +#: ../../Zotlabs/Module/Connedit.php:722 msgid "This information is public!" msgstr "Diese Information ist öffentlich!" -#: ../../Zotlabs/Module/Connedit.php:774 +#: ../../Zotlabs/Module/Connedit.php:727 msgid "Connection Pending Approval" msgstr "Verbindung wartet auf Bestätigung" -#: ../../Zotlabs/Module/Connedit.php:777 +#: ../../Zotlabs/Module/Connedit.php:730 msgid "inherited" msgstr "geerbt" -#: ../../Zotlabs/Module/Connedit.php:778 ../../Zotlabs/Module/Connect.php:98 -#: ../../Zotlabs/Module/Events.php:474 ../../Zotlabs/Module/Cal.php:338 -#: ../../Zotlabs/Module/Chat.php:196 ../../Zotlabs/Module/Chat.php:238 -#: ../../Zotlabs/Module/Group.php:85 ../../Zotlabs/Module/Appman.php:126 -#: ../../Zotlabs/Module/Pdledit.php:66 -#: ../../Zotlabs/Module/Filestorage.php:161 -#: ../../Zotlabs/Module/Profiles.php:687 ../../Zotlabs/Module/Import.php:560 -#: ../../Zotlabs/Module/Photos.php:675 ../../Zotlabs/Module/Photos.php:1050 -#: ../../Zotlabs/Module/Photos.php:1090 ../../Zotlabs/Module/Photos.php:1208 -#: ../../Zotlabs/Module/Import_items.php:122 -#: ../../Zotlabs/Module/Invite.php:146 ../../Zotlabs/Module/Locs.php:121 -#: ../../Zotlabs/Module/Mail.php:370 ../../Zotlabs/Module/Mood.php:139 -#: ../../Zotlabs/Module/Mitem.php:235 ../../Zotlabs/Module/Admin.php:492 -#: ../../Zotlabs/Module/Admin.php:688 ../../Zotlabs/Module/Admin.php:771 -#: ../../Zotlabs/Module/Admin.php:1032 ../../Zotlabs/Module/Admin.php:1211 -#: ../../Zotlabs/Module/Admin.php:1421 ../../Zotlabs/Module/Admin.php:1648 -#: ../../Zotlabs/Module/Admin.php:1733 ../../Zotlabs/Module/Admin.php:2116 -#: ../../Zotlabs/Module/Poke.php:186 ../../Zotlabs/Module/Pconfig.php:107 -#: ../../Zotlabs/Module/Rate.php:170 ../../Zotlabs/Module/Settings.php:644 -#: ../../Zotlabs/Module/Settings.php:757 ../../Zotlabs/Module/Settings.php:806 -#: ../../Zotlabs/Module/Settings.php:832 ../../Zotlabs/Module/Settings.php:855 -#: ../../Zotlabs/Module/Settings.php:943 -#: ../../Zotlabs/Module/Settings.php:1129 ../../Zotlabs/Module/Setup.php:312 -#: ../../Zotlabs/Module/Setup.php:353 ../../Zotlabs/Module/Thing.php:316 -#: ../../Zotlabs/Module/Thing.php:362 ../../Zotlabs/Module/Sources.php:114 -#: ../../Zotlabs/Module/Sources.php:149 ../../Zotlabs/Module/Xchan.php:15 -#: ../../Zotlabs/Lib/ThreadItem.php:710 ../../include/widgets.php:763 -#: ../../include/js_strings.php:22 ../../view/theme/redbasic/php/config.php:99 -msgid "Submit" -msgstr "Bestätigen" - -#: ../../Zotlabs/Module/Connedit.php:779 +#: ../../Zotlabs/Module/Connedit.php:732 #, php-format msgid "" "Please choose the profile you would like to display to %s when viewing your " "profile securely." msgstr "Bitte wähle ein Profil, das wir %s zeigen sollen, wenn Deine Profilseite über eine verifizierte Verbindung aufgerufen wird." -#: ../../Zotlabs/Module/Connedit.php:781 +#: ../../Zotlabs/Module/Connedit.php:734 msgid "Their Settings" msgstr "Deren Einstellungen" -#: ../../Zotlabs/Module/Connedit.php:782 +#: ../../Zotlabs/Module/Connedit.php:735 msgid "My Settings" msgstr "Meine Einstellungen" -#: ../../Zotlabs/Module/Connedit.php:784 +#: ../../Zotlabs/Module/Connedit.php:737 msgid "Individual Permissions" msgstr "Individuelle Zugriffsrechte" -#: ../../Zotlabs/Module/Connedit.php:785 +#: ../../Zotlabs/Module/Connedit.php:738 msgid "" "Some permissions may be inherited from your channel's privacy settings, which have higher " @@ -788,7 +893,7 @@ msgid "" " settings here." msgstr "Einige Berechtigungen werden möglicherweise von den globalen Sicherheits- und Privatsphäre-Einstellungen dieses Kanals vererbt. Diese haben eine höhere Priorität als die Einstellungen an der Verbindung und können hier nicht verändert werden." -#: ../../Zotlabs/Module/Connedit.php:786 +#: ../../Zotlabs/Module/Connedit.php:739 msgid "" "Some permissions may be inherited from your channel's privacy settings, which have higher " @@ -796,121 +901,17 @@ msgid "" "they wont have any impact unless the inherited setting changes." msgstr "Einige Berechtigungen werden möglicherweise von den globalen Sicherheits- und Privatsphäre-Einstellungen dieses Kanals geerbt. Diese haben eine höhere Priorität als die Einstellungen an der Verbindung. Werden geerbte Einstellungen hier geändert, hat dies keine Auswirkungen." -#: ../../Zotlabs/Module/Connedit.php:787 +#: ../../Zotlabs/Module/Connedit.php:740 msgid "Last update:" msgstr "Letzte Aktualisierung:" -#: ../../Zotlabs/Module/Display.php:17 ../../Zotlabs/Module/Directory.php:63 -#: ../../Zotlabs/Module/Photos.php:520 ../../Zotlabs/Module/Ratings.php:86 +#: ../../Zotlabs/Module/Directory.php:63 ../../Zotlabs/Module/Display.php:17 +#: ../../Zotlabs/Module/Photos.php:522 ../../Zotlabs/Module/Ratings.php:86 #: ../../Zotlabs/Module/Search.php:17 -#: ../../Zotlabs/Module/Viewconnections.php:23 +#: ../../Zotlabs/Module/Viewconnections.php:20 msgid "Public access denied." msgstr "Öffentlichen Zugriff verweigert." -#: ../../Zotlabs/Module/Display.php:40 ../../Zotlabs/Module/Filestorage.php:32 -#: ../../Zotlabs/Module/Admin.php:164 ../../Zotlabs/Module/Admin.php:1255 -#: ../../Zotlabs/Module/Admin.php:1561 ../../Zotlabs/Module/Thing.php:89 -#: ../../Zotlabs/Module/Viewsrc.php:24 ../../include/items.php:3369 -msgid "Item not found." -msgstr "Element nicht gefunden." - -#: ../../Zotlabs/Module/Id.php:13 -msgid "First Name" -msgstr "Vorname" - -#: ../../Zotlabs/Module/Id.php:14 -msgid "Last Name" -msgstr "Nachname" - -#: ../../Zotlabs/Module/Id.php:15 -msgid "Nickname" -msgstr "Spitzname" - -#: ../../Zotlabs/Module/Id.php:16 -msgid "Full Name" -msgstr "Voller Name" - -#: ../../Zotlabs/Module/Id.php:17 ../../Zotlabs/Module/Id.php:18 -#: ../../Zotlabs/Module/Admin.php:1035 ../../Zotlabs/Module/Admin.php:1047 -#: ../../include/network.php:2203 -msgid "Email" -msgstr "E-Mail" - -#: ../../Zotlabs/Module/Id.php:19 ../../Zotlabs/Module/Id.php:20 -#: ../../Zotlabs/Module/Id.php:21 ../../Zotlabs/Lib/Apps.php:238 -msgid "Profile Photo" -msgstr "Profilfoto" - -#: ../../Zotlabs/Module/Id.php:22 -msgid "Profile Photo 16px" -msgstr "Profilfoto 16 px" - -#: ../../Zotlabs/Module/Id.php:23 -msgid "Profile Photo 32px" -msgstr "Profilfoto 32 px" - -#: ../../Zotlabs/Module/Id.php:24 -msgid "Profile Photo 48px" -msgstr "Profilfoto 48 px" - -#: ../../Zotlabs/Module/Id.php:25 -msgid "Profile Photo 64px" -msgstr "Profilfoto 64 px" - -#: ../../Zotlabs/Module/Id.php:26 -msgid "Profile Photo 80px" -msgstr "Profilfoto 80 px" - -#: ../../Zotlabs/Module/Id.php:27 -msgid "Profile Photo 128px" -msgstr "Profilfoto 128 px" - -#: ../../Zotlabs/Module/Id.php:28 -msgid "Timezone" -msgstr "Zeitzone" - -#: ../../Zotlabs/Module/Id.php:29 ../../Zotlabs/Module/Profiles.php:731 -msgid "Homepage URL" -msgstr "Homepage-URL" - -#: ../../Zotlabs/Module/Id.php:30 ../../Zotlabs/Lib/Apps.php:236 -msgid "Language" -msgstr "Sprache" - -#: ../../Zotlabs/Module/Id.php:31 -msgid "Birth Year" -msgstr "Geburtsjahr" - -#: ../../Zotlabs/Module/Id.php:32 -msgid "Birth Month" -msgstr "Geburtsmonat" - -#: ../../Zotlabs/Module/Id.php:33 -msgid "Birth Day" -msgstr "Geburtstag" - -#: ../../Zotlabs/Module/Id.php:34 -msgid "Birthdate" -msgstr "Geburtsdatum" - -#: ../../Zotlabs/Module/Id.php:35 ../../Zotlabs/Module/Profiles.php:454 -msgid "Gender" -msgstr "Geschlecht" - -#: ../../Zotlabs/Module/Id.php:108 ../../include/selectors.php:49 -#: ../../include/selectors.php:66 -msgid "Male" -msgstr "Männlich" - -#: ../../Zotlabs/Module/Id.php:110 ../../include/selectors.php:49 -#: ../../include/selectors.php:66 -msgid "Female" -msgstr "Weiblich" - -#: ../../Zotlabs/Module/Follow.php:34 -msgid "Channel added." -msgstr "Kanal hinzugefügt." - #: ../../Zotlabs/Module/Directory.php:243 #, php-format msgid "%d rating" @@ -930,12 +931,12 @@ msgstr "Status:" msgid "Homepage: " msgstr "Webseite:" -#: ../../Zotlabs/Module/Directory.php:306 ../../include/channel.php:1223 +#: ../../Zotlabs/Module/Directory.php:306 ../../include/channel.php:1183 msgid "Age:" msgstr "Alter:" -#: ../../Zotlabs/Module/Directory.php:311 ../../include/channel.php:1066 -#: ../../include/event.php:52 ../../include/event.php:84 +#: ../../Zotlabs/Module/Directory.php:311 ../../include/event.php:52 +#: ../../include/event.php:84 ../../include/channel.php:1027 #: ../../include/bb2diaspora.php:507 msgid "Location:" msgstr "Ort:" @@ -944,18 +945,18 @@ msgstr "Ort:" msgid "Description:" msgstr "Beschreibung:" -#: ../../Zotlabs/Module/Directory.php:322 ../../include/channel.php:1239 +#: ../../Zotlabs/Module/Directory.php:322 ../../include/channel.php:1199 msgid "Hometown:" msgstr "Heimatstadt:" -#: ../../Zotlabs/Module/Directory.php:324 ../../include/channel.php:1247 +#: ../../Zotlabs/Module/Directory.php:324 ../../include/channel.php:1207 msgid "About:" msgstr "Über:" #: ../../Zotlabs/Module/Directory.php:325 ../../Zotlabs/Module/Match.php:68 -#: ../../Zotlabs/Module/Suggest.php:56 ../../include/channel.php:1051 -#: ../../include/connections.php:78 ../../include/conversation.php:959 -#: ../../include/widgets.php:147 ../../include/widgets.php:184 +#: ../../Zotlabs/Module/Suggest.php:56 ../../include/widgets.php:147 +#: ../../include/widgets.php:184 ../../include/connections.php:78 +#: ../../include/conversation.php:956 ../../include/channel.php:1012 msgid "Connect" msgstr "Verbinden" @@ -1031,322 +1032,38 @@ msgstr "Älteste zuerst" msgid "No entries (some entries may be hidden)." msgstr "Keine Einträge gefunden (einige könnten versteckt sein)." -#: ../../Zotlabs/Module/Connect.php:61 ../../Zotlabs/Module/Connect.php:109 -msgid "Continue" -msgstr "Fortfahren" +#: ../../Zotlabs/Module/Display.php:40 ../../Zotlabs/Module/Filestorage.php:33 +#: ../../Zotlabs/Module/Admin.php:164 ../../Zotlabs/Module/Admin.php:1255 +#: ../../Zotlabs/Module/Admin.php:1561 ../../Zotlabs/Module/Thing.php:89 +#: ../../Zotlabs/Module/Viewsrc.php:24 ../../include/items.php:3359 +msgid "Item not found." +msgstr "Element nicht gefunden." -#: ../../Zotlabs/Module/Connect.php:90 -msgid "Premium Channel Setup" -msgstr "Premium-Kanal-Einrichtung" - -#: ../../Zotlabs/Module/Connect.php:92 -msgid "Enable premium channel connection restrictions" -msgstr "Einschränkungen für einen Premium-Kanal aktivieren" - -#: ../../Zotlabs/Module/Connect.php:93 -msgid "" -"Please enter your restrictions or conditions, such as paypal receipt, usage " -"guidelines, etc." -msgstr "Bitte gib Deine Nutzungsbedingungen ein, z.B. Paypal-Quittung, Richtlinien etc." - -#: ../../Zotlabs/Module/Connect.php:95 ../../Zotlabs/Module/Connect.php:115 -msgid "" -"This channel may require additional steps or acknowledgement of the " -"following conditions prior to connecting:" -msgstr "Unter Umständen sind weitere Schritte oder die Bestätigung der folgenden Bedingungen vor dem Verbinden mit diesem Kanal nötig." - -#: ../../Zotlabs/Module/Connect.php:96 -msgid "" -"Potential connections will then see the following text before proceeding:" -msgstr "Potentielle Kontakte werden den folgenden Text sehen, bevor fortgefahren wird:" - -#: ../../Zotlabs/Module/Connect.php:97 ../../Zotlabs/Module/Connect.php:118 -msgid "" -"By continuing, I certify that I have complied with any instructions provided" -" on this page." -msgstr "Indem ich fortfahre, bestätige ich die Erfüllung aller Anweisungen auf dieser Seite." - -#: ../../Zotlabs/Module/Connect.php:106 -msgid "(No specific instructions have been provided by the channel owner.)" -msgstr "(Der Kanal-Besitzer hat keine speziellen Anweisungen hinterlegt.)" - -#: ../../Zotlabs/Module/Connect.php:114 -msgid "Restricted or Premium Channel" -msgstr "Eingeschränkter oder Premium-Kanal" - -#: ../../Zotlabs/Module/Events.php:25 -msgid "Calendar entries imported." -msgstr "Kalendereinträge wurden importiert." - -#: ../../Zotlabs/Module/Events.php:27 -msgid "No calendar entries found." -msgstr "Keine Kalendereinträge gefunden." - -#: ../../Zotlabs/Module/Events.php:104 -msgid "Event can not end before it has started." -msgstr "Termin-Ende liegt vor dem Beginn." - -#: ../../Zotlabs/Module/Events.php:106 ../../Zotlabs/Module/Events.php:115 -#: ../../Zotlabs/Module/Events.php:135 -msgid "Unable to generate preview." -msgstr "Vorschau konnte nicht erzeugt werden." - -#: ../../Zotlabs/Module/Events.php:113 -msgid "Event title and start time are required." -msgstr "Titel und Startzeit des Termins sind erforderlich." - -#: ../../Zotlabs/Module/Events.php:133 ../../Zotlabs/Module/Events.php:258 -msgid "Event not found." -msgstr "Termin nicht gefunden." - -#: ../../Zotlabs/Module/Events.php:253 ../../Zotlabs/Module/Like.php:372 -#: ../../Zotlabs/Module/Tagger.php:51 ../../include/conversation.php:123 -#: ../../include/text.php:1924 ../../include/event.php:951 -msgid "event" -msgstr "Termin" - -#: ../../Zotlabs/Module/Events.php:448 -msgid "Edit event title" -msgstr "Termintitel bearbeiten" - -#: ../../Zotlabs/Module/Events.php:448 -msgid "Event title" -msgstr "Termintitel" - -#: ../../Zotlabs/Module/Events.php:448 ../../Zotlabs/Module/Events.php:453 -#: ../../Zotlabs/Module/Appman.php:115 ../../Zotlabs/Module/Appman.php:116 -#: ../../Zotlabs/Module/Profiles.php:709 ../../Zotlabs/Module/Profiles.php:713 -#: ../../include/datetime.php:245 -msgid "Required" -msgstr "Benötigt" - -#: ../../Zotlabs/Module/Events.php:450 -msgid "Categories (comma-separated list)" -msgstr "Kategorien (Kommagetrennte Liste)" - -#: ../../Zotlabs/Module/Events.php:451 -msgid "Edit Category" -msgstr "Kategorie bearbeiten" - -#: ../../Zotlabs/Module/Events.php:451 -msgid "Category" -msgstr "Kategorie" - -#: ../../Zotlabs/Module/Events.php:454 -msgid "Edit start date and time" -msgstr "Startdatum und -zeit bearbeiten" - -#: ../../Zotlabs/Module/Events.php:454 -msgid "Start date and time" -msgstr "Startdatum und -zeit" - -#: ../../Zotlabs/Module/Events.php:455 ../../Zotlabs/Module/Events.php:458 -msgid "Finish date and time are not known or not relevant" -msgstr "Enddatum und -zeit sind unbekannt oder irrelevant" - -#: ../../Zotlabs/Module/Events.php:457 -msgid "Edit finish date and time" -msgstr "Enddatum und -zeit bearbeiten" - -#: ../../Zotlabs/Module/Events.php:457 -msgid "Finish date and time" -msgstr "Enddatum und -zeit" - -#: ../../Zotlabs/Module/Events.php:459 ../../Zotlabs/Module/Events.php:460 -msgid "Adjust for viewer timezone" -msgstr "An die Zeitzone des Betrachters anpassen" - -#: ../../Zotlabs/Module/Events.php:459 -msgid "" -"Important for events that happen in a particular place. Not practical for " -"global holidays." -msgstr "Wichtig für Veranstaltungen die an bestimmten Orten stattfinden. Nicht sinnvoll für globale Feiertage / Ferien." - -#: ../../Zotlabs/Module/Events.php:461 -msgid "Edit Description" -msgstr "Beschreibung bearbeiten" - -#: ../../Zotlabs/Module/Events.php:461 ../../Zotlabs/Module/Appman.php:117 -#: ../../Zotlabs/Module/Rbmark.php:101 -msgid "Description" -msgstr "Beschreibung" - -#: ../../Zotlabs/Module/Events.php:463 -msgid "Edit Location" -msgstr "Ort bearbeiten" - -#: ../../Zotlabs/Module/Events.php:463 ../../Zotlabs/Module/Profiles.php:477 -#: ../../Zotlabs/Module/Profiles.php:698 ../../Zotlabs/Module/Locs.php:117 -#: ../../Zotlabs/Module/Pubsites.php:41 ../../include/js_strings.php:25 -msgid "Location" -msgstr "Ort" - -#: ../../Zotlabs/Module/Events.php:466 ../../Zotlabs/Module/Events.php:468 -msgid "Share this event" -msgstr "Den Termin teilen" - -#: ../../Zotlabs/Module/Events.php:469 ../../Zotlabs/Module/Photos.php:1091 -#: ../../Zotlabs/Module/Webpages.php:201 ../../Zotlabs/Lib/ThreadItem.php:719 -#: ../../include/page_widgets.php:43 ../../include/conversation.php:1198 -msgid "Preview" -msgstr "Vorschau" - -#: ../../Zotlabs/Module/Events.php:470 ../../include/conversation.php:1247 -msgid "Permission settings" -msgstr "Berechtigungs-Einstellungen" - -#: ../../Zotlabs/Module/Events.php:475 -msgid "Advanced Options" -msgstr "Weitere Optionen" - -#: ../../Zotlabs/Module/Events.php:587 ../../Zotlabs/Module/Cal.php:259 -msgid "l, F j" -msgstr "l, j. F" - -#: ../../Zotlabs/Module/Events.php:609 -msgid "Edit event" -msgstr "Termin bearbeiten" - -#: ../../Zotlabs/Module/Events.php:611 -msgid "Delete event" -msgstr "Termin löschen" - -#: ../../Zotlabs/Module/Events.php:636 ../../Zotlabs/Module/Cal.php:308 -#: ../../include/text.php:1712 -msgid "Link to Source" -msgstr "Link zur Quelle" - -#: ../../Zotlabs/Module/Events.php:645 -msgid "calendar" -msgstr "Kalender" - -#: ../../Zotlabs/Module/Events.php:664 ../../Zotlabs/Module/Cal.php:331 -msgid "Edit Event" -msgstr "Termin bearbeiten" - -#: ../../Zotlabs/Module/Events.php:664 ../../Zotlabs/Module/Cal.php:331 -msgid "Create Event" -msgstr "Termin anlegen" - -#: ../../Zotlabs/Module/Events.php:665 ../../Zotlabs/Module/Events.php:674 -#: ../../Zotlabs/Module/Cal.php:332 ../../Zotlabs/Module/Cal.php:339 -#: ../../Zotlabs/Module/Photos.php:947 -msgid "Previous" -msgstr "Voriges" - -#: ../../Zotlabs/Module/Events.php:666 ../../Zotlabs/Module/Events.php:675 -#: ../../Zotlabs/Module/Cal.php:333 ../../Zotlabs/Module/Cal.php:340 -#: ../../Zotlabs/Module/Photos.php:956 ../../Zotlabs/Module/Setup.php:267 -msgid "Next" -msgstr "Nächste" - -#: ../../Zotlabs/Module/Events.php:667 ../../Zotlabs/Module/Cal.php:334 -msgid "Export" -msgstr "Exportieren" - -#: ../../Zotlabs/Module/Events.php:670 ../../Zotlabs/Module/Layouts.php:197 -#: ../../Zotlabs/Module/Pubsites.php:47 ../../Zotlabs/Module/Blocks.php:166 -#: ../../Zotlabs/Module/Webpages.php:200 ../../include/page_widgets.php:42 -msgid "View" -msgstr "Ansicht" - -#: ../../Zotlabs/Module/Events.php:671 -msgid "Month" -msgstr "Monat" - -#: ../../Zotlabs/Module/Events.php:672 -msgid "Week" -msgstr "Woche" - -#: ../../Zotlabs/Module/Events.php:673 -msgid "Day" -msgstr "Tag" - -#: ../../Zotlabs/Module/Events.php:676 ../../Zotlabs/Module/Cal.php:341 -msgid "Today" -msgstr "Heute" - -#: ../../Zotlabs/Module/Events.php:707 -msgid "Event removed" -msgstr "Termin gelöscht" - -#: ../../Zotlabs/Module/Events.php:710 -msgid "Failed to remove event" -msgstr "Termin konnte nicht gelöscht werden" - -#: ../../Zotlabs/Module/Bookmarks.php:53 -msgid "Bookmark added" -msgstr "Lesezeichen hinzugefügt" - -#: ../../Zotlabs/Module/Bookmarks.php:75 -msgid "My Bookmarks" -msgstr "Meine Lesezeichen" - -#: ../../Zotlabs/Module/Bookmarks.php:86 -msgid "My Connections Bookmarks" -msgstr "Lesezeichen meiner Kontakte" - -#: ../../Zotlabs/Module/Editpost.php:24 ../../Zotlabs/Module/Editlayout.php:79 -#: ../../Zotlabs/Module/Editwebpage.php:80 #: ../../Zotlabs/Module/Editblock.php:79 ../../Zotlabs/Module/Editblock.php:95 +#: ../../Zotlabs/Module/Editpost.php:24 ../../Zotlabs/Module/Editlayout.php:79 +#: ../../Zotlabs/Module/Editwebpage.php:81 msgid "Item not found" msgstr "Element nicht gefunden" -#: ../../Zotlabs/Module/Editpost.php:35 -msgid "Item is not editable" -msgstr "Element kann nicht bearbeitet werden." +#: ../../Zotlabs/Module/Editblock.php:124 ../../include/conversation.php:1228 +msgid "Title (optional)" +msgstr "Titel (optional)" -#: ../../Zotlabs/Module/Editpost.php:106 ../../Zotlabs/Module/Rpost.php:134 -msgid "Edit post" -msgstr "Bearbeite Beitrag" +#: ../../Zotlabs/Module/Editblock.php:133 +msgid "Edit Block" +msgstr "Block bearbeiten" -#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:222 -#: ../../include/nav.php:92 ../../include/conversation.php:1647 -msgid "Photos" -msgstr "Fotos" +#: ../../Zotlabs/Module/Common.php:14 +msgid "No channel." +msgstr "Kein Kanal." -#: ../../Zotlabs/Module/Fbrowser.php:66 ../../Zotlabs/Module/Fbrowser.php:88 -#: ../../Zotlabs/Module/Admin.php:1406 ../../Zotlabs/Module/Settings.php:645 -#: ../../Zotlabs/Module/Settings.php:671 ../../Zotlabs/Module/Tagrm.php:15 -#: ../../Zotlabs/Module/Tagrm.php:138 ../../Zotlabs/Module/Wiki.php:166 -#: ../../Zotlabs/Module/Wiki.php:202 ../../include/conversation.php:1235 -#: ../../include/conversation.php:1274 -msgid "Cancel" -msgstr "Abbrechen" +#: ../../Zotlabs/Module/Common.php:43 +msgid "Common connections" +msgstr "Gemeinsame Verbindungen" -#: ../../Zotlabs/Module/Page.php:40 ../../Zotlabs/Module/Block.php:31 -msgid "Invalid item." -msgstr "Ungültiges Element." - -#: ../../Zotlabs/Module/Page.php:56 ../../Zotlabs/Module/Cal.php:62 -#: ../../Zotlabs/Module/Block.php:43 ../../Zotlabs/Module/Wall_upload.php:33 -msgid "Channel not found." -msgstr "Kanal nicht gefunden." - -#: ../../Zotlabs/Module/Page.php:131 -msgid "" -"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod " -"tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam," -" quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo " -"consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse " -"cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat " -"non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." -msgstr "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." - -#: ../../Zotlabs/Module/Filer.php:52 -msgid "Save to Folder:" -msgstr "Speichern in Ordner:" - -#: ../../Zotlabs/Module/Filer.php:52 -msgid "- select -" -msgstr "– auswählen –" - -#: ../../Zotlabs/Module/Filer.php:53 ../../Zotlabs/Module/Admin.php:2033 -#: ../../Zotlabs/Module/Admin.php:2053 ../../Zotlabs/Module/Rbmark.php:32 -#: ../../Zotlabs/Module/Rbmark.php:104 ../../include/text.php:926 -#: ../../include/text.php:938 ../../include/widgets.php:201 -msgid "Save" -msgstr "Speichern" +#: ../../Zotlabs/Module/Common.php:48 +msgid "No connections in common." +msgstr "Keine gemeinsamen Verbindungen." #: ../../Zotlabs/Module/Connections.php:56 #: ../../Zotlabs/Module/Connections.php:161 @@ -1374,7 +1091,7 @@ msgstr "Archiviert" #: ../../Zotlabs/Module/Connections.php:76 #: ../../Zotlabs/Module/Connections.php:86 ../../Zotlabs/Module/Menu.php:116 -#: ../../include/conversation.php:1550 +#: ../../include/conversation.php:1535 msgid "New" msgstr "Neu" @@ -1461,15 +1178,15 @@ msgstr "Verbindung ignorieren" msgid "Recent activity" msgstr "Kürzliche Aktivitäten" -#: ../../Zotlabs/Module/Connections.php:302 ../../Zotlabs/Lib/Apps.php:209 -#: ../../include/nav.php:188 ../../include/text.php:855 +#: ../../Zotlabs/Module/Connections.php:302 ../../Zotlabs/Lib/Apps.php:208 +#: ../../include/text.php:875 ../../include/nav.php:186 msgid "Connections" msgstr "Verbindungen" #: ../../Zotlabs/Module/Connections.php:306 ../../Zotlabs/Module/Search.php:44 -#: ../../Zotlabs/Lib/Apps.php:230 ../../include/nav.php:167 -#: ../../include/text.php:925 ../../include/text.php:937 -#: ../../include/acl_selectors.php:274 +#: ../../Zotlabs/Lib/Apps.php:228 ../../include/text.php:945 +#: ../../include/text.php:957 ../../include/nav.php:165 +#: ../../include/acl_selectors.php:276 msgid "Search" msgstr "Suche" @@ -1482,7 +1199,7 @@ msgid "Connections search" msgstr "Verbindung suchen" #: ../../Zotlabs/Module/Cover_photo.php:58 -#: ../../Zotlabs/Module/Profile_photo.php:61 +#: ../../Zotlabs/Module/Profile_photo.php:79 msgid "Image uploaded but image cropping failed." msgstr "Bild hochgeladen, aber das Zurechtschneiden schlug fehl." @@ -1492,66 +1209,66 @@ msgid "Cover Photos" msgstr "Cover Foto" #: ../../Zotlabs/Module/Cover_photo.php:154 -#: ../../Zotlabs/Module/Profile_photo.php:135 +#: ../../Zotlabs/Module/Profile_photo.php:133 msgid "Image resize failed." msgstr "Bild-Anpassung fehlgeschlagen." #: ../../Zotlabs/Module/Cover_photo.php:168 -#: ../../Zotlabs/Module/Profile_photo.php:196 ../../include/photos.php:148 +#: ../../Zotlabs/Module/Profile_photo.php:192 ../../include/photos.php:144 msgid "Unable to process image" msgstr "Kann Bild nicht verarbeiten" #: ../../Zotlabs/Module/Cover_photo.php:192 -#: ../../Zotlabs/Module/Profile_photo.php:223 +#: ../../Zotlabs/Module/Profile_photo.php:217 msgid "Image upload failed." msgstr "Hochladen des Bilds fehlgeschlagen." #: ../../Zotlabs/Module/Cover_photo.php:210 -#: ../../Zotlabs/Module/Profile_photo.php:242 +#: ../../Zotlabs/Module/Profile_photo.php:236 msgid "Unable to process image." msgstr "Kann Bild nicht verarbeiten." -#: ../../Zotlabs/Module/Cover_photo.php:233 ../../include/items.php:4283 +#: ../../Zotlabs/Module/Cover_photo.php:233 ../../include/items.php:4270 msgid "female" msgstr "weiblich" -#: ../../Zotlabs/Module/Cover_photo.php:234 ../../include/items.php:4284 +#: ../../Zotlabs/Module/Cover_photo.php:234 ../../include/items.php:4271 #, php-format msgid "%1$s updated her %2$s" msgstr "%1$s hat ihr %2$s aktualisiert" -#: ../../Zotlabs/Module/Cover_photo.php:235 ../../include/items.php:4285 +#: ../../Zotlabs/Module/Cover_photo.php:235 ../../include/items.php:4272 msgid "male" msgstr "männlich" -#: ../../Zotlabs/Module/Cover_photo.php:236 ../../include/items.php:4286 +#: ../../Zotlabs/Module/Cover_photo.php:236 ../../include/items.php:4273 #, php-format msgid "%1$s updated his %2$s" msgstr "%1$s hat sein %2$s aktualisiert" -#: ../../Zotlabs/Module/Cover_photo.php:238 ../../include/items.php:4288 +#: ../../Zotlabs/Module/Cover_photo.php:238 ../../include/items.php:4275 #, php-format msgid "%1$s updated their %2$s" msgstr "%1$s hat sein/ihr %2$s aktualisiert" -#: ../../Zotlabs/Module/Cover_photo.php:240 ../../include/channel.php:1726 +#: ../../Zotlabs/Module/Cover_photo.php:240 ../../include/channel.php:1661 msgid "cover photo" msgstr "Cover Foto" #: ../../Zotlabs/Module/Cover_photo.php:303 #: ../../Zotlabs/Module/Cover_photo.php:318 -#: ../../Zotlabs/Module/Profile_photo.php:300 -#: ../../Zotlabs/Module/Profile_photo.php:341 +#: ../../Zotlabs/Module/Profile_photo.php:283 +#: ../../Zotlabs/Module/Profile_photo.php:324 msgid "Photo not available." msgstr "Foto nicht verfügbar." #: ../../Zotlabs/Module/Cover_photo.php:354 -#: ../../Zotlabs/Module/Profile_photo.php:387 +#: ../../Zotlabs/Module/Profile_photo.php:365 msgid "Upload File:" msgstr "Datei hochladen:" #: ../../Zotlabs/Module/Cover_photo.php:355 -#: ../../Zotlabs/Module/Profile_photo.php:388 +#: ../../Zotlabs/Module/Profile_photo.php:366 msgid "Select a profile:" msgstr "Wähle ein Profil:" @@ -1560,69 +1277,200 @@ msgid "Upload Cover Photo" msgstr "Cover Foto hochladen" #: ../../Zotlabs/Module/Cover_photo.php:361 -#: ../../Zotlabs/Module/Profile_photo.php:396 -#: ../../Zotlabs/Module/Settings.php:1080 +#: ../../Zotlabs/Module/Profile_photo.php:374 +#: ../../Zotlabs/Module/Settings.php:985 msgid "or" msgstr "oder" #: ../../Zotlabs/Module/Cover_photo.php:361 -#: ../../Zotlabs/Module/Profile_photo.php:396 +#: ../../Zotlabs/Module/Profile_photo.php:374 msgid "skip this step" msgstr "diesen Schritt überspringen" #: ../../Zotlabs/Module/Cover_photo.php:361 -#: ../../Zotlabs/Module/Profile_photo.php:396 +#: ../../Zotlabs/Module/Profile_photo.php:374 msgid "select a photo from your photo albums" msgstr "ein Foto aus meinen Fotoalben" #: ../../Zotlabs/Module/Cover_photo.php:377 -#: ../../Zotlabs/Module/Profile_photo.php:415 +#: ../../Zotlabs/Module/Profile_photo.php:390 msgid "Crop Image" msgstr "Bild zuschneiden" #: ../../Zotlabs/Module/Cover_photo.php:378 -#: ../../Zotlabs/Module/Profile_photo.php:416 +#: ../../Zotlabs/Module/Profile_photo.php:391 msgid "Please adjust the image cropping for optimum viewing." msgstr "Bitte schneide das Bild für eine optimale Anzeige passend zu." #: ../../Zotlabs/Module/Cover_photo.php:380 -#: ../../Zotlabs/Module/Profile_photo.php:418 +#: ../../Zotlabs/Module/Profile_photo.php:393 msgid "Done Editing" msgstr "Bearbeitung fertigstellen" -#: ../../Zotlabs/Module/Impel.php:41 ../../include/bbcode.php:192 -msgid "webpage" -msgstr "Webseite" +#: ../../Zotlabs/Module/Editpost.php:35 +msgid "Item is not editable" +msgstr "Element kann nicht bearbeitet werden." -#: ../../Zotlabs/Module/Impel.php:46 ../../include/bbcode.php:198 -msgid "block" -msgstr "Block" +#: ../../Zotlabs/Module/Editpost.php:106 ../../Zotlabs/Module/Rpost.php:135 +msgid "Edit post" +msgstr "Bearbeite Beitrag" -#: ../../Zotlabs/Module/Impel.php:51 ../../include/bbcode.php:195 -msgid "layout" -msgstr "Layout" +#: ../../Zotlabs/Module/Events.php:26 +msgid "Calendar entries imported." +msgstr "Kalendereinträge wurden importiert." -#: ../../Zotlabs/Module/Impel.php:58 ../../include/bbcode.php:201 -msgid "menu" -msgstr "Menü" +#: ../../Zotlabs/Module/Events.php:28 +msgid "No calendar entries found." +msgstr "Keine Kalendereinträge gefunden." -#: ../../Zotlabs/Module/Impel.php:187 -#, php-format -msgid "%s element installed" -msgstr "Element für %s installiert" +#: ../../Zotlabs/Module/Events.php:105 +msgid "Event can not end before it has started." +msgstr "Termin-Ende liegt vor dem Beginn." -#: ../../Zotlabs/Module/Impel.php:190 -#, php-format -msgid "%s element installation failed" -msgstr "Installation des Elements %s fehlgeschlagen" +#: ../../Zotlabs/Module/Events.php:107 ../../Zotlabs/Module/Events.php:116 +#: ../../Zotlabs/Module/Events.php:136 +msgid "Unable to generate preview." +msgstr "Vorschau konnte nicht erzeugt werden." -#: ../../Zotlabs/Module/Cal.php:69 -msgid "Permissions denied." -msgstr "Berechtigung verweigert." +#: ../../Zotlabs/Module/Events.php:114 +msgid "Event title and start time are required." +msgstr "Titel und Startzeit des Termins sind erforderlich." -#: ../../Zotlabs/Module/Cal.php:337 -msgid "Import" -msgstr "Import" +#: ../../Zotlabs/Module/Events.php:134 ../../Zotlabs/Module/Events.php:259 +msgid "Event not found." +msgstr "Termin nicht gefunden." + +#: ../../Zotlabs/Module/Events.php:254 ../../Zotlabs/Module/Like.php:373 +#: ../../Zotlabs/Module/Tagger.php:51 ../../include/event.php:949 +#: ../../include/text.php:1943 ../../include/conversation.php:123 +msgid "event" +msgstr "Termin" + +#: ../../Zotlabs/Module/Events.php:449 +msgid "Edit event title" +msgstr "Termintitel bearbeiten" + +#: ../../Zotlabs/Module/Events.php:449 +msgid "Event title" +msgstr "Termintitel" + +#: ../../Zotlabs/Module/Events.php:449 ../../Zotlabs/Module/Events.php:454 +#: ../../Zotlabs/Module/Profiles.php:709 ../../Zotlabs/Module/Profiles.php:713 +#: ../../Zotlabs/Module/Appman.php:115 ../../Zotlabs/Module/Appman.php:116 +#: ../../include/datetime.php:245 +msgid "Required" +msgstr "Benötigt" + +#: ../../Zotlabs/Module/Events.php:451 +msgid "Categories (comma-separated list)" +msgstr "Kategorien (Kommagetrennte Liste)" + +#: ../../Zotlabs/Module/Events.php:452 +msgid "Edit Category" +msgstr "Kategorie bearbeiten" + +#: ../../Zotlabs/Module/Events.php:452 +msgid "Category" +msgstr "Kategorie" + +#: ../../Zotlabs/Module/Events.php:455 +msgid "Edit start date and time" +msgstr "Startdatum und -zeit bearbeiten" + +#: ../../Zotlabs/Module/Events.php:455 +msgid "Start date and time" +msgstr "Startdatum und -zeit" + +#: ../../Zotlabs/Module/Events.php:456 ../../Zotlabs/Module/Events.php:459 +msgid "Finish date and time are not known or not relevant" +msgstr "Enddatum und -zeit sind unbekannt oder irrelevant" + +#: ../../Zotlabs/Module/Events.php:458 +msgid "Edit finish date and time" +msgstr "Enddatum und -zeit bearbeiten" + +#: ../../Zotlabs/Module/Events.php:458 +msgid "Finish date and time" +msgstr "Enddatum und -zeit" + +#: ../../Zotlabs/Module/Events.php:460 ../../Zotlabs/Module/Events.php:461 +msgid "Adjust for viewer timezone" +msgstr "An die Zeitzone des Betrachters anpassen" + +#: ../../Zotlabs/Module/Events.php:460 +msgid "" +"Important for events that happen in a particular place. Not practical for " +"global holidays." +msgstr "Wichtig für Veranstaltungen die an bestimmten Orten stattfinden. Nicht sinnvoll für globale Feiertage / Ferien." + +#: ../../Zotlabs/Module/Events.php:462 +msgid "Edit Description" +msgstr "Beschreibung bearbeiten" + +#: ../../Zotlabs/Module/Events.php:462 ../../Zotlabs/Module/Appman.php:117 +#: ../../Zotlabs/Module/Rbmark.php:101 +msgid "Description" +msgstr "Beschreibung" + +#: ../../Zotlabs/Module/Events.php:464 +msgid "Edit Location" +msgstr "Ort bearbeiten" + +#: ../../Zotlabs/Module/Events.php:464 ../../Zotlabs/Module/Locs.php:117 +#: ../../Zotlabs/Module/Profiles.php:477 ../../Zotlabs/Module/Profiles.php:698 +#: ../../Zotlabs/Module/Pubsites.php:41 ../../include/js_strings.php:25 +msgid "Location" +msgstr "Ort" + +#: ../../Zotlabs/Module/Events.php:467 ../../Zotlabs/Module/Events.php:469 +msgid "Share this event" +msgstr "Den Termin teilen" + +#: ../../Zotlabs/Module/Events.php:470 ../../Zotlabs/Module/Photos.php:1093 +#: ../../Zotlabs/Module/Webpages.php:194 ../../Zotlabs/Lib/ThreadItem.php:719 +#: ../../include/conversation.php:1187 ../../include/page_widgets.php:40 +msgid "Preview" +msgstr "Vorschau" + +#: ../../Zotlabs/Module/Events.php:471 ../../include/conversation.php:1232 +msgid "Permission settings" +msgstr "Berechtigungs-Einstellungen" + +#: ../../Zotlabs/Module/Events.php:476 +msgid "Advanced Options" +msgstr "Weitere Optionen" + +#: ../../Zotlabs/Module/Events.php:610 +msgid "Edit event" +msgstr "Termin bearbeiten" + +#: ../../Zotlabs/Module/Events.php:612 +msgid "Delete event" +msgstr "Termin löschen" + +#: ../../Zotlabs/Module/Events.php:646 +msgid "calendar" +msgstr "Kalender" + +#: ../../Zotlabs/Module/Events.php:706 +msgid "Event removed" +msgstr "Termin gelöscht" + +#: ../../Zotlabs/Module/Events.php:709 +msgid "Failed to remove event" +msgstr "Termin konnte nicht gelöscht werden" + +#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:220 +#: ../../include/nav.php:92 ../../include/conversation.php:1632 +msgid "Photos" +msgstr "Fotos" + +#: ../../Zotlabs/Module/Fbrowser.php:66 ../../Zotlabs/Module/Fbrowser.php:88 +#: ../../Zotlabs/Module/Admin.php:1406 ../../Zotlabs/Module/Settings.php:591 +#: ../../Zotlabs/Module/Settings.php:617 ../../Zotlabs/Module/Tagrm.php:15 +#: ../../Zotlabs/Module/Tagrm.php:138 ../../include/conversation.php:1259 +msgid "Cancel" +msgstr "Abbrechen" #: ../../Zotlabs/Module/Dirsearch.php:25 ../../Zotlabs/Module/Regdir.php:49 msgid "This site is not a directory server" @@ -1632,184 +1480,112 @@ msgstr "Diese Webseite ist kein Verzeichnisserver" msgid "This directory server requires an access token" msgstr "Dieser Verzeichnisserver benötigt einen Zugriffstoken" -#: ../../Zotlabs/Module/Chat.php:25 ../../Zotlabs/Module/Channel.php:28 -#: ../../Zotlabs/Module/Wiki.php:20 -msgid "You must be logged in to see this page." -msgstr "Du musst angemeldet sein, um diese Seite betrachten zu können." +#: ../../Zotlabs/Module/Filer.php:52 +msgid "Save to Folder:" +msgstr "Speichern in Ordner:" -#: ../../Zotlabs/Module/Chat.php:181 -msgid "Room not found" -msgstr "Chatraum nicht gefunden" +#: ../../Zotlabs/Module/Filer.php:52 +msgid "- select -" +msgstr "– auswählen –" -#: ../../Zotlabs/Module/Chat.php:197 -msgid "Leave Room" -msgstr "Raum verlassen" +#: ../../Zotlabs/Module/Filer.php:53 ../../Zotlabs/Module/Admin.php:2033 +#: ../../Zotlabs/Module/Admin.php:2053 ../../Zotlabs/Module/Rbmark.php:32 +#: ../../Zotlabs/Module/Rbmark.php:104 ../../include/text.php:946 +#: ../../include/text.php:958 ../../include/widgets.php:201 +msgid "Save" +msgstr "Speichern" -#: ../../Zotlabs/Module/Chat.php:198 -msgid "Delete Room" -msgstr "Raum löschen" - -#: ../../Zotlabs/Module/Chat.php:199 -msgid "I am away right now" -msgstr "Ich bin gerade nicht da" - -#: ../../Zotlabs/Module/Chat.php:200 -msgid "I am online" -msgstr "Ich bin online" - -#: ../../Zotlabs/Module/Chat.php:202 -msgid "Bookmark this room" -msgstr "Lesezeichen für diesen Raum setzen" - -#: ../../Zotlabs/Module/Chat.php:205 ../../Zotlabs/Module/Mail.php:197 -#: ../../Zotlabs/Module/Mail.php:306 ../../include/conversation.php:1181 -msgid "Please enter a link URL:" -msgstr "Gib eine URL ein:" - -#: ../../Zotlabs/Module/Chat.php:206 ../../Zotlabs/Module/Mail.php:250 -#: ../../Zotlabs/Module/Mail.php:375 ../../Zotlabs/Lib/ThreadItem.php:722 -#: ../../include/conversation.php:1271 -msgid "Encrypt text" -msgstr "Text verschlüsseln" - -#: ../../Zotlabs/Module/Chat.php:207 ../../Zotlabs/Module/Editwebpage.php:146 -#: ../../Zotlabs/Module/Mail.php:244 ../../Zotlabs/Module/Mail.php:369 -#: ../../Zotlabs/Module/Editblock.php:111 ../../include/conversation.php:1146 -msgid "Insert web link" -msgstr "Link einfügen" - -#: ../../Zotlabs/Module/Chat.php:218 -msgid "Feature disabled." -msgstr "Funktion deaktiviert." - -#: ../../Zotlabs/Module/Chat.php:232 -msgid "New Chatroom" -msgstr "Neuer Chatraum" - -#: ../../Zotlabs/Module/Chat.php:233 -msgid "Chatroom name" -msgstr "Chatraumname" - -#: ../../Zotlabs/Module/Chat.php:234 -msgid "Expiration of chats (minutes)" -msgstr "Verfall von Chats (Minuten)" - -#: ../../Zotlabs/Module/Chat.php:235 ../../Zotlabs/Module/Filestorage.php:152 -#: ../../Zotlabs/Module/Photos.php:669 ../../Zotlabs/Module/Photos.php:1043 -#: ../../Zotlabs/Module/Thing.php:313 ../../Zotlabs/Module/Thing.php:359 -#: ../../include/acl_selectors.php:281 -msgid "Permissions" -msgstr "Berechtigungen" - -#: ../../Zotlabs/Module/Chat.php:246 -#, php-format -msgid "%1$s's Chatrooms" -msgstr "%1$ss Chaträume" - -#: ../../Zotlabs/Module/Chat.php:251 -msgid "No chatrooms available" -msgstr "Keine Chaträume verfügbar" - -#: ../../Zotlabs/Module/Chat.php:252 ../../Zotlabs/Module/Profiles.php:778 -#: ../../Zotlabs/Module/Manage.php:143 -msgid "Create New" -msgstr "Neu anlegen" - -#: ../../Zotlabs/Module/Chat.php:255 -msgid "Expiration" -msgstr "Verfall" - -#: ../../Zotlabs/Module/Chat.php:256 -msgid "min" -msgstr "min" - -#: ../../Zotlabs/Module/Dreport.php:44 +#: ../../Zotlabs/Module/Dreport.php:27 msgid "Invalid message" msgstr "Ungültige Beitrags-ID (mid)" -#: ../../Zotlabs/Module/Dreport.php:76 +#: ../../Zotlabs/Module/Dreport.php:59 msgid "no results" msgstr "keine Ergebnisse" -#: ../../Zotlabs/Module/Dreport.php:91 -msgid "channel sync processed" -msgstr "Kanal-Sync verarbeitet" - -#: ../../Zotlabs/Module/Dreport.php:95 -msgid "queued" -msgstr "zur Warteschlange hinzugefügt" - -#: ../../Zotlabs/Module/Dreport.php:99 -msgid "posted" -msgstr "zugestellt" - -#: ../../Zotlabs/Module/Dreport.php:103 -msgid "accepted for delivery" -msgstr "für Zustellung akzeptiert" - -#: ../../Zotlabs/Module/Dreport.php:107 -msgid "updated" -msgstr "aktualisiert" - -#: ../../Zotlabs/Module/Dreport.php:110 -msgid "update ignored" -msgstr "Aktualisierung ignoriert" - -#: ../../Zotlabs/Module/Dreport.php:113 -msgid "permission denied" -msgstr "Zugriff verweigert" - -#: ../../Zotlabs/Module/Dreport.php:117 -msgid "recipient not found" -msgstr "Empfänger nicht gefunden." - -#: ../../Zotlabs/Module/Dreport.php:120 -msgid "mail recalled" -msgstr "Mail widerrufen" - -#: ../../Zotlabs/Module/Dreport.php:123 -msgid "duplicate mail received" -msgstr "Doppelte Mail erhalten" - -#: ../../Zotlabs/Module/Dreport.php:126 -msgid "mail delivered" -msgstr "Mail zugestellt" - -#: ../../Zotlabs/Module/Dreport.php:146 +#: ../../Zotlabs/Module/Dreport.php:64 #, php-format msgid "Delivery report for %1$s" msgstr "Zustellungsbericht für %1$s" -#: ../../Zotlabs/Module/Dreport.php:149 -msgid "Options" -msgstr "Optionen" +#: ../../Zotlabs/Module/Dreport.php:78 +msgid "channel sync processed" +msgstr "Kanal-Sync verarbeitet" -#: ../../Zotlabs/Module/Dreport.php:150 -msgid "Redeliver" -msgstr "Erneut zustellen" +#: ../../Zotlabs/Module/Dreport.php:82 +msgid "queued" +msgstr "zur Warteschlange hinzugefügt" -#: ../../Zotlabs/Module/Editlayout.php:127 -#: ../../Zotlabs/Module/Layouts.php:128 ../../Zotlabs/Module/Layouts.php:188 +#: ../../Zotlabs/Module/Dreport.php:86 +msgid "posted" +msgstr "zugestellt" + +#: ../../Zotlabs/Module/Dreport.php:90 +msgid "accepted for delivery" +msgstr "für Zustellung akzeptiert" + +#: ../../Zotlabs/Module/Dreport.php:94 +msgid "updated" +msgstr "aktualisiert" + +#: ../../Zotlabs/Module/Dreport.php:97 +msgid "update ignored" +msgstr "Aktualisierung ignoriert" + +#: ../../Zotlabs/Module/Dreport.php:100 +msgid "permission denied" +msgstr "Zugriff verweigert" + +#: ../../Zotlabs/Module/Dreport.php:104 +msgid "recipient not found" +msgstr "Empfänger nicht gefunden." + +#: ../../Zotlabs/Module/Dreport.php:107 +msgid "mail recalled" +msgstr "Mail widerrufen" + +#: ../../Zotlabs/Module/Dreport.php:110 +msgid "duplicate mail received" +msgstr "Doppelte Mail erhalten" + +#: ../../Zotlabs/Module/Dreport.php:113 +msgid "mail delivered" +msgstr "Mail zugestellt" + +#: ../../Zotlabs/Module/Editlayout.php:126 +#: ../../Zotlabs/Module/Layouts.php:127 ../../Zotlabs/Module/Layouts.php:186 msgid "Layout Name" msgstr "Layout-Name" -#: ../../Zotlabs/Module/Editlayout.php:128 -#: ../../Zotlabs/Module/Layouts.php:131 +#: ../../Zotlabs/Module/Editlayout.php:127 +#: ../../Zotlabs/Module/Layouts.php:130 msgid "Layout Description (Optional)" msgstr "Layout-Beschreibung (optional)" -#: ../../Zotlabs/Module/Editlayout.php:136 +#: ../../Zotlabs/Module/Editlayout.php:135 msgid "Edit Layout" msgstr "Layout bearbeiten" -#: ../../Zotlabs/Module/Editwebpage.php:142 +#: ../../Zotlabs/Module/Editwebpage.php:143 msgid "Page link" msgstr "Seiten-Link" -#: ../../Zotlabs/Module/Editwebpage.php:168 +#: ../../Zotlabs/Module/Editwebpage.php:169 msgid "Edit Webpage" msgstr "Webseite bearbeiten" +#: ../../Zotlabs/Module/Follow.php:34 +msgid "Channel added." +msgstr "Kanal hinzugefügt." + +#: ../../Zotlabs/Module/Acl.php:227 +msgid "network" +msgstr "Netzwerk" + +#: ../../Zotlabs/Module/Acl.php:237 +msgid "RSS" +msgstr "RSS" + #: ../../Zotlabs/Module/Group.php:24 msgid "Privacy group created." msgstr "Gruppe wurde erstellt." @@ -1819,7 +1595,7 @@ msgid "Could not create privacy group." msgstr "Gruppe konnte nicht erstellt werden." #: ../../Zotlabs/Module/Group.php:42 ../../Zotlabs/Module/Group.php:141 -#: ../../include/items.php:3902 +#: ../../include/items.php:3893 msgid "Privacy group not found." msgstr "Gruppe nicht gefunden." @@ -1863,57 +1639,31 @@ msgstr "Alle verbundenen Kanäle" msgid "Click on a channel to add or remove." msgstr "Wähle einen Kanal zum hinzufügen oder entfernen aus." -#: ../../Zotlabs/Module/Appman.php:37 ../../Zotlabs/Module/Appman.php:53 -msgid "App installed." -msgstr "App installiert." +#: ../../Zotlabs/Module/Ffsapi.php:12 +msgid "Share content from Firefox to $Projectname" +msgstr "Inhalte von Firefox nach $Projectname teilen" -#: ../../Zotlabs/Module/Appman.php:46 -msgid "Malformed app." -msgstr "Fehlerhafte App." +#: ../../Zotlabs/Module/Ffsapi.php:15 +msgid "Activate the Firefox $Projectname provider" +msgstr "Aktiviert den $Projectname-Provider für firefox" -#: ../../Zotlabs/Module/Appman.php:104 -msgid "Embed code" -msgstr "Code einbetten" +#: ../../Zotlabs/Module/Api.php:61 ../../Zotlabs/Module/Api.php:85 +msgid "Authorize application connection" +msgstr "Zugriff für die Anwendung autorisieren" -#: ../../Zotlabs/Module/Appman.php:110 ../../include/widgets.php:107 -msgid "Edit App" -msgstr "App bearbeiten" +#: ../../Zotlabs/Module/Api.php:62 +msgid "Return to your app and insert this Securty Code:" +msgstr "Trage folgenden Sicherheitscode in der Anwendung ein:" -#: ../../Zotlabs/Module/Appman.php:110 -msgid "Create App" -msgstr "App erstellen" +#: ../../Zotlabs/Module/Api.php:72 +msgid "Please login to continue." +msgstr "Zum Weitermachen, bitte einloggen." -#: ../../Zotlabs/Module/Appman.php:115 -msgid "Name of app" -msgstr "Name der App" - -#: ../../Zotlabs/Module/Appman.php:116 -msgid "Location (URL) of app" -msgstr "Ort (URL) der App" - -#: ../../Zotlabs/Module/Appman.php:118 -msgid "Photo icon URL" -msgstr "URL zum Icon" - -#: ../../Zotlabs/Module/Appman.php:118 -msgid "80 x 80 pixels - optional" -msgstr "80 x 80 Pixel – optional" - -#: ../../Zotlabs/Module/Appman.php:119 -msgid "Categories (optional, comma separated list)" -msgstr "Kategorien (optional, kommagetrennte Liste)" - -#: ../../Zotlabs/Module/Appman.php:120 -msgid "Version ID" -msgstr "Versions-ID" - -#: ../../Zotlabs/Module/Appman.php:121 -msgid "Price of app" -msgstr "Preis der App" - -#: ../../Zotlabs/Module/Appman.php:122 -msgid "Location (URL) to purchase app" -msgstr "Ort (URL), um die App zu kaufen" +#: ../../Zotlabs/Module/Api.php:87 +msgid "" +"Do you want to authorize this application to access your posts and contacts," +" and/or create new posts for you?" +msgstr "Möchtest Du dieser Anwendung erlauben, Deine Nachrichten und Kontakte abzurufen und/oder neue Nachrichten für Dich zu erstellen?" #: ../../Zotlabs/Module/Help.php:26 msgid "Documentation Search" @@ -1925,8 +1675,8 @@ msgid "Help:" msgstr "Hilfe:" #: ../../Zotlabs/Module/Help.php:85 ../../Zotlabs/Module/Help.php:90 -#: ../../Zotlabs/Module/Layouts.php:185 ../../Zotlabs/Lib/Apps.php:225 -#: ../../include/nav.php:161 +#: ../../Zotlabs/Module/Layouts.php:183 ../../Zotlabs/Lib/Apps.php:223 +#: ../../include/nav.php:159 msgid "Help" msgstr "Hilfe" @@ -1934,124 +1684,335 @@ msgstr "Hilfe" msgid "$Projectname Documentation" msgstr "$Projectname-Dokumentation" +#: ../../Zotlabs/Module/Filestorage.php:88 +msgid "Permission Denied." +msgstr "Zugriff verweigert." + +#: ../../Zotlabs/Module/Filestorage.php:104 +msgid "File not found." +msgstr "Datei nicht gefunden." + +#: ../../Zotlabs/Module/Filestorage.php:147 +msgid "Edit file permissions" +msgstr "Dateiberechtigungen bearbeiten" + +#: ../../Zotlabs/Module/Filestorage.php:156 +msgid "Set/edit permissions" +msgstr "Berechtigungen setzen/ändern" + +#: ../../Zotlabs/Module/Filestorage.php:157 +msgid "Include all files and sub folders" +msgstr "Alle Dateien und Unterverzeichnisse einbinden" + +#: ../../Zotlabs/Module/Filestorage.php:158 +msgid "Return to file list" +msgstr "Zurück zur Dateiliste" + +#: ../../Zotlabs/Module/Filestorage.php:160 +msgid "Copy/paste this code to attach file to a post" +msgstr "Diesen Code kopieren und einfügen, um die Datei an einen Beitrag anzuhängen" + +#: ../../Zotlabs/Module/Filestorage.php:161 +msgid "Copy/paste this URL to link file from a web page" +msgstr "Diese URL verwenden, um von einer Webseite aus auf die Datei zu verlinken" + +#: ../../Zotlabs/Module/Filestorage.php:163 +msgid "Share this file" +msgstr "Diese Datei freigeben" + +#: ../../Zotlabs/Module/Filestorage.php:164 +msgid "Show URL to this file" +msgstr "URL zu dieser Datei anzeigen" + +#: ../../Zotlabs/Module/Filestorage.php:165 +msgid "Notify your contacts about this file" +msgstr "Meine Kontakte über diese Datei benachrichtigen" + +#: ../../Zotlabs/Module/Apps.php:47 ../../include/widgets.php:102 +#: ../../include/nav.php:163 +msgid "Apps" +msgstr "Apps" + #: ../../Zotlabs/Module/Attach.php:13 msgid "Item not available." msgstr "Element nicht verfügbar." -#: ../../Zotlabs/Module/Pdledit.php:18 -msgid "Layout updated." -msgstr "Layout aktualisiert." +#: ../../Zotlabs/Module/Import.php:32 +#, php-format +msgid "Your service plan only allows %d channels." +msgstr "Dein Vertrag erlaubt nur %d Kanäle." -#: ../../Zotlabs/Module/Pdledit.php:34 ../../Zotlabs/Module/Pdledit.php:61 -msgid "Edit System Page Description" -msgstr "Systemseitenbeschreibung bearbeiten" +#: ../../Zotlabs/Module/Import.php:70 ../../Zotlabs/Module/Import_items.php:42 +msgid "Nothing to import." +msgstr "Nichts zu importieren." -#: ../../Zotlabs/Module/Pdledit.php:56 -msgid "Layout not found." -msgstr "Layout nicht gefunden." +#: ../../Zotlabs/Module/Import.php:94 ../../Zotlabs/Module/Import_items.php:66 +msgid "Unable to download data from old server" +msgstr "Daten können vom alten Server nicht heruntergeladen werden" -#: ../../Zotlabs/Module/Pdledit.php:62 -msgid "Module Name:" -msgstr "Modulname:" +#: ../../Zotlabs/Module/Import.php:100 +#: ../../Zotlabs/Module/Import_items.php:72 +msgid "Imported file is empty." +msgstr "Die importierte Datei ist leer." -#: ../../Zotlabs/Module/Pdledit.php:63 -msgid "Layout Help" -msgstr "Layout-Hilfe" +#: ../../Zotlabs/Module/Import.php:122 +#: ../../Zotlabs/Module/Import_items.php:86 +#, php-format +msgid "Warning: Database versions differ by %1$d updates." +msgstr "Achtung: Datenbankversionen unterscheiden sich um %1$d Aktualisierungen." -#: ../../Zotlabs/Module/Ffsapi.php:12 -msgid "Share content from Firefox to $Projectname" -msgstr "Inhalte von Firefox nach $Projectname teilen" +#: ../../Zotlabs/Module/Import.php:150 ../../include/import.php:86 +msgid "Cloned channel not found. Import failed." +msgstr "Geklonter Kanal nicht gefunden. Import fehlgeschlagen." -#: ../../Zotlabs/Module/Ffsapi.php:15 -msgid "Activate the Firefox $Projectname provider" -msgstr "Aktiviert den $Projectname-Provider für firefox" +#: ../../Zotlabs/Module/Import.php:160 +msgid "No channel. Import failed." +msgstr "Kein Kanal. Import fehlgeschlagen." -#: ../../Zotlabs/Module/Acl.php:312 -msgid "network" -msgstr "Netzwerk" +#: ../../Zotlabs/Module/Import.php:510 +#: ../../include/Import/import_diaspora.php:142 +msgid "Import completed." +msgstr "Import abgeschlossen." -#: ../../Zotlabs/Module/Acl.php:322 -msgid "RSS" -msgstr "RSS" +#: ../../Zotlabs/Module/Import.php:532 +msgid "You must be logged in to use this feature." +msgstr "Du musst angemeldet sein um diese Funktion zu nutzen." -#: ../../Zotlabs/Module/Filestorage.php:87 -msgid "Permission Denied." -msgstr "Zugriff verweigert." +#: ../../Zotlabs/Module/Import.php:537 +msgid "Import Channel" +msgstr "Kanal importieren" -#: ../../Zotlabs/Module/Filestorage.php:103 -msgid "File not found." -msgstr "Datei nicht gefunden." +#: ../../Zotlabs/Module/Import.php:538 +msgid "" +"Use this form to import an existing channel from a different server/hub. You" +" may retrieve the channel identity from the old server/hub via the network " +"or provide an export file." +msgstr "Verwende dieses Formular, um einen existierenden Kanal von einem anderen Hub zu importieren. Du kannst den Kanal direkt vom bisherigen Hub über das Netzwerk oder aus einer exportierten Sicherheitskopie importieren." -#: ../../Zotlabs/Module/Filestorage.php:146 -msgid "Edit file permissions" -msgstr "Dateiberechtigungen bearbeiten" +#: ../../Zotlabs/Module/Import.php:539 +#: ../../Zotlabs/Module/Import_items.php:119 +msgid "File to Upload" +msgstr "Hochzuladende Datei:" -#: ../../Zotlabs/Module/Filestorage.php:155 -msgid "Set/edit permissions" -msgstr "Berechtigungen setzen/ändern" +#: ../../Zotlabs/Module/Import.php:540 +msgid "Or provide the old server/hub details" +msgstr "Oder gib die Details Deines bisherigen $Projectname-Hubs ein" -#: ../../Zotlabs/Module/Filestorage.php:156 -msgid "Include all files and sub folders" -msgstr "Alle Dateien und Unterverzeichnisse einbinden" +#: ../../Zotlabs/Module/Import.php:541 +msgid "Your old identity address (xyz@example.com)" +msgstr "Bisherige Kanal-Adresse (xyz@example.com)" -#: ../../Zotlabs/Module/Filestorage.php:157 -msgid "Return to file list" -msgstr "Zurück zur Dateiliste" +#: ../../Zotlabs/Module/Import.php:542 +msgid "Your old login email address" +msgstr "Deine alte Login-E-Mail-Adresse" -#: ../../Zotlabs/Module/Filestorage.php:159 -msgid "Copy/paste this code to attach file to a post" -msgstr "Diesen Code kopieren und einfügen, um die Datei an einen Beitrag anzuhängen" +#: ../../Zotlabs/Module/Import.php:543 +msgid "Your old login password" +msgstr "Dein altes Passwort" -#: ../../Zotlabs/Module/Filestorage.php:160 -msgid "Copy/paste this URL to link file from a web page" -msgstr "Diese URL verwenden, um von einer Webseite aus auf die Datei zu verlinken" +#: ../../Zotlabs/Module/Import.php:544 +msgid "" +"For either option, please choose whether to make this hub your new primary " +"address, or whether your old location should continue this role. You will be" +" able to post from either location, but only one can be marked as the " +"primary location for files, photos, and media." +msgstr "Egal, welche Option Du wählst – bitte lege fest, ob dieser Server die neue primäre Adresse dieses Kanals sein soll, oder ob der bisherige $Projectname-Hub diese Rolle weiterhin wahrnimmt. Du kannst von beiden Servern aus posten, aber nur einer kann der primäre Ort Deiner Dateien, Fotos und Medien sein." -#: ../../Zotlabs/Module/Filestorage.php:162 -msgid "Share this file" -msgstr "Diese Datei freigeben" +#: ../../Zotlabs/Module/Import.php:545 +msgid "Make this hub my primary location" +msgstr "Dieser $Pojectname-Hub ist mein primärer Hub." -#: ../../Zotlabs/Module/Filestorage.php:163 -msgid "Show URL to this file" -msgstr "URL zu dieser Datei anzeigen" +#: ../../Zotlabs/Module/Import.php:546 +msgid "" +"Import existing posts if possible (experimental - limited by available " +"memory" +msgstr "Importiere bestehende Beiträge falls möglich (experimentell - begrenzt durch zur Verfügung stehenden Speicher" -#: ../../Zotlabs/Module/Filestorage.php:164 -msgid "Notify your contacts about this file" -msgstr "Meine Kontakte über diese Datei benachrichtigen" +#: ../../Zotlabs/Module/Import.php:547 +msgid "" +"This process may take several minutes to complete. Please submit the form " +"only once and leave this page open until finished." +msgstr "Dieser Vorgang kann einige Minuten dauern. Bitte sende das Formular nur einmal ab und lasse diese Seite bis zur Fertigstellung offen." -#: ../../Zotlabs/Module/Layouts.php:183 ../../include/text.php:2240 +#: ../../Zotlabs/Module/Item.php:178 +msgid "Unable to locate original post." +msgstr "Originalbeitrag nicht gefunden." + +#: ../../Zotlabs/Module/Item.php:427 +msgid "Empty post discarded." +msgstr "Leeren Beitrag verworfen." + +#: ../../Zotlabs/Module/Item.php:467 +msgid "Executable content type not permitted to this channel." +msgstr "Ausführbarer Content-Typ ist für diesen Kanal nicht freigegeben." + +#: ../../Zotlabs/Module/Item.php:847 +msgid "Duplicate post suppressed." +msgstr "Doppelter Beitrag unterdrückt." + +#: ../../Zotlabs/Module/Item.php:977 +msgid "System error. Post not saved." +msgstr "Systemfehler. Beitrag nicht gespeichert." + +#: ../../Zotlabs/Module/Item.php:1241 +msgid "Unable to obtain post information from database." +msgstr "Beitragsinformationen können nicht aus der Datenbank abgerufen werden." + +#: ../../Zotlabs/Module/Item.php:1248 +#, php-format +msgid "You have reached your limit of %1$.0f top level posts." +msgstr "Du hast die maximale Anzahl von %1$.0f Beiträgen erreicht." + +#: ../../Zotlabs/Module/Item.php:1255 +#, php-format +msgid "You have reached your limit of %1$.0f webpages." +msgstr "Du hast die maximale Anzahl von %1$.0f Webseiten erreicht." + +#: ../../Zotlabs/Module/Layouts.php:181 ../../include/text.php:2267 msgid "Layouts" msgstr "Layouts" -#: ../../Zotlabs/Module/Layouts.php:185 +#: ../../Zotlabs/Module/Layouts.php:183 msgid "Comanche page description language help" msgstr "Hilfe zur Comanche-Seitenbeschreibungssprache" -#: ../../Zotlabs/Module/Layouts.php:189 +#: ../../Zotlabs/Module/Layouts.php:187 msgid "Layout Description" msgstr "Layout-Beschreibung" -#: ../../Zotlabs/Module/Layouts.php:190 ../../Zotlabs/Module/Menu.php:114 -#: ../../Zotlabs/Module/Blocks.php:157 ../../Zotlabs/Module/Webpages.php:205 -#: ../../include/page_widgets.php:47 -msgid "Created" -msgstr "Erstellt" - -#: ../../Zotlabs/Module/Layouts.php:191 ../../Zotlabs/Module/Menu.php:115 -#: ../../Zotlabs/Module/Blocks.php:158 ../../Zotlabs/Module/Webpages.php:206 -#: ../../include/page_widgets.php:48 -msgid "Edited" -msgstr "Geändert" - -#: ../../Zotlabs/Module/Layouts.php:193 ../../Zotlabs/Module/Photos.php:1070 -#: ../../Zotlabs/Module/Blocks.php:161 ../../Zotlabs/Module/Webpages.php:195 -#: ../../include/conversation.php:1219 -msgid "Share" -msgstr "Teilen" - -#: ../../Zotlabs/Module/Layouts.php:194 +#: ../../Zotlabs/Module/Layouts.php:192 msgid "Download PDL file" msgstr "PDL-Datei herunterladen" +#: ../../Zotlabs/Module/Home.php:61 ../../Zotlabs/Module/Home.php:69 +#: ../../Zotlabs/Module/Siteinfo.php:65 +msgid "$Projectname" +msgstr "$Projectname" + +#: ../../Zotlabs/Module/Home.php:79 +#, php-format +msgid "Welcome to %s" +msgstr "Willkommen auf %s" + +#: ../../Zotlabs/Module/Id.php:13 +msgid "First Name" +msgstr "Vorname" + +#: ../../Zotlabs/Module/Id.php:14 +msgid "Last Name" +msgstr "Nachname" + +#: ../../Zotlabs/Module/Id.php:15 +msgid "Nickname" +msgstr "Spitzname" + +#: ../../Zotlabs/Module/Id.php:16 +msgid "Full Name" +msgstr "Voller Name" + +#: ../../Zotlabs/Module/Id.php:17 ../../Zotlabs/Module/Id.php:18 +#: ../../Zotlabs/Module/Admin.php:1035 ../../Zotlabs/Module/Admin.php:1047 +#: ../../include/network.php:2151 ../../boot.php:1705 +msgid "Email" +msgstr "E-Mail" + +#: ../../Zotlabs/Module/Id.php:19 ../../Zotlabs/Module/Id.php:20 +#: ../../Zotlabs/Module/Id.php:21 ../../Zotlabs/Lib/Apps.php:236 +msgid "Profile Photo" +msgstr "Profilfoto" + +#: ../../Zotlabs/Module/Id.php:22 +msgid "Profile Photo 16px" +msgstr "Profilfoto 16 px" + +#: ../../Zotlabs/Module/Id.php:23 +msgid "Profile Photo 32px" +msgstr "Profilfoto 32 px" + +#: ../../Zotlabs/Module/Id.php:24 +msgid "Profile Photo 48px" +msgstr "Profilfoto 48 px" + +#: ../../Zotlabs/Module/Id.php:25 +msgid "Profile Photo 64px" +msgstr "Profilfoto 64 px" + +#: ../../Zotlabs/Module/Id.php:26 +msgid "Profile Photo 80px" +msgstr "Profilfoto 80 px" + +#: ../../Zotlabs/Module/Id.php:27 +msgid "Profile Photo 128px" +msgstr "Profilfoto 128 px" + +#: ../../Zotlabs/Module/Id.php:28 +msgid "Timezone" +msgstr "Zeitzone" + +#: ../../Zotlabs/Module/Id.php:29 ../../Zotlabs/Module/Profiles.php:731 +msgid "Homepage URL" +msgstr "Homepage-URL" + +#: ../../Zotlabs/Module/Id.php:30 ../../Zotlabs/Lib/Apps.php:234 +msgid "Language" +msgstr "Sprache" + +#: ../../Zotlabs/Module/Id.php:31 +msgid "Birth Year" +msgstr "Geburtsjahr" + +#: ../../Zotlabs/Module/Id.php:32 +msgid "Birth Month" +msgstr "Geburtsmonat" + +#: ../../Zotlabs/Module/Id.php:33 +msgid "Birth Day" +msgstr "Geburtstag" + +#: ../../Zotlabs/Module/Id.php:34 +msgid "Birthdate" +msgstr "Geburtsdatum" + +#: ../../Zotlabs/Module/Id.php:35 ../../Zotlabs/Module/Profiles.php:454 +msgid "Gender" +msgstr "Geschlecht" + +#: ../../Zotlabs/Module/Id.php:108 ../../include/selectors.php:49 +#: ../../include/selectors.php:66 +msgid "Male" +msgstr "Männlich" + +#: ../../Zotlabs/Module/Id.php:110 ../../include/selectors.php:49 +#: ../../include/selectors.php:66 +msgid "Female" +msgstr "Weiblich" + +#: ../../Zotlabs/Module/Impel.php:41 ../../include/bbcode.php:192 +msgid "webpage" +msgstr "Webseite" + +#: ../../Zotlabs/Module/Impel.php:46 ../../include/bbcode.php:198 +msgid "block" +msgstr "Block" + +#: ../../Zotlabs/Module/Impel.php:51 ../../include/bbcode.php:195 +msgid "layout" +msgstr "Layout" + +#: ../../Zotlabs/Module/Impel.php:58 ../../include/bbcode.php:201 +msgid "menu" +msgstr "Menü" + +#: ../../Zotlabs/Module/Impel.php:196 +#, php-format +msgid "%s element installed" +msgstr "Element für %s installiert" + +#: ../../Zotlabs/Module/Impel.php:199 +#, php-format +msgid "%s element installation failed" +msgstr "Installation des Elements %s fehlgeschlagen" + #: ../../Zotlabs/Module/Like.php:19 msgid "Like/Dislike" msgstr "Mögen/Nicht mögen" @@ -2087,65 +2048,1180 @@ msgstr "Kanal nicht vorhanden." msgid "Previous action reversed." msgstr "Die vorherige Aktion wurde rückgängig gemacht." -#: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87 -#: ../../Zotlabs/Module/Tagger.php:47 ../../include/conversation.php:120 -#: ../../include/text.php:1921 +#: ../../Zotlabs/Module/Like.php:371 ../../Zotlabs/Module/Subthread.php:87 +#: ../../Zotlabs/Module/Tagger.php:47 ../../include/text.php:1940 +#: ../../include/conversation.php:120 msgid "photo" msgstr "Foto" -#: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87 -#: ../../include/conversation.php:148 ../../include/text.php:1927 +#: ../../Zotlabs/Module/Like.php:371 ../../Zotlabs/Module/Subthread.php:87 +#: ../../include/text.php:1946 ../../include/conversation.php:148 msgid "status" msgstr "Status" -#: ../../Zotlabs/Module/Like.php:419 ../../include/conversation.php:164 +#: ../../Zotlabs/Module/Like.php:420 ../../include/conversation.php:164 #, php-format msgid "%1$s likes %2$s's %3$s" msgstr "%1$s gefällt %2$ss %3$s" -#: ../../Zotlabs/Module/Like.php:421 ../../include/conversation.php:167 +#: ../../Zotlabs/Module/Like.php:422 ../../include/conversation.php:167 #, php-format msgid "%1$s doesn't like %2$s's %3$s" msgstr "%1$s gefällt %2$ss %3$s nicht" -#: ../../Zotlabs/Module/Like.php:423 +#: ../../Zotlabs/Module/Like.php:424 #, php-format msgid "%1$s agrees with %2$s's %3$s" msgstr "%1$s stimmt %2$ss %3$s zu" -#: ../../Zotlabs/Module/Like.php:425 +#: ../../Zotlabs/Module/Like.php:426 #, php-format msgid "%1$s doesn't agree with %2$s's %3$s" msgstr "%1$s lehnt %2$ss %3$s ab" -#: ../../Zotlabs/Module/Like.php:427 +#: ../../Zotlabs/Module/Like.php:428 #, php-format msgid "%1$s abstains from a decision on %2$s's %3$s" msgstr "%1$s enthält sich zu %2$ss %3$s" -#: ../../Zotlabs/Module/Like.php:429 +#: ../../Zotlabs/Module/Like.php:430 #, php-format msgid "%1$s is attending %2$s's %3$s" msgstr "%1$s nimmt an %2$ss %3$s teil" -#: ../../Zotlabs/Module/Like.php:431 +#: ../../Zotlabs/Module/Like.php:432 #, php-format msgid "%1$s is not attending %2$s's %3$s" msgstr "%1$s nimmt an %2$ss %3$s nicht teil" -#: ../../Zotlabs/Module/Like.php:433 +#: ../../Zotlabs/Module/Like.php:434 #, php-format msgid "%1$s may attend %2$s's %3$s" msgstr "%1$s nimmt vielleicht an %2$ss %3$s teil" -#: ../../Zotlabs/Module/Like.php:536 +#: ../../Zotlabs/Module/Like.php:537 msgid "Action completed." msgstr "Aktion durchgeführt." -#: ../../Zotlabs/Module/Like.php:537 +#: ../../Zotlabs/Module/Like.php:538 msgid "Thank you." msgstr "Vielen Dank." +#: ../../Zotlabs/Module/Import_items.php:102 +msgid "Import completed" +msgstr "Import abgeschlossen" + +#: ../../Zotlabs/Module/Import_items.php:117 +msgid "Import Items" +msgstr "Beiträge importieren" + +#: ../../Zotlabs/Module/Import_items.php:118 +msgid "" +"Use this form to import existing posts and content from an export file." +msgstr "Mit diesem Formular kannst Du existierende Beiträge und Inhalte aus einer Sicherungsdatei importieren." + +#: ../../Zotlabs/Module/Invite.php:29 +msgid "Total invitation limit exceeded." +msgstr "Einladungslimit überschritten." + +#: ../../Zotlabs/Module/Invite.php:53 +#, php-format +msgid "%s : Not a valid email address." +msgstr "%s : Keine gültige Email Adresse." + +#: ../../Zotlabs/Module/Invite.php:63 +msgid "Please join us on $Projectname" +msgstr "Schließe Dich uns auf $Projectname an!" + +#: ../../Zotlabs/Module/Invite.php:74 +msgid "Invitation limit exceeded. Please contact your site administrator." +msgstr "Einladungslimit überschritten. Bitte kontaktiere den Administrator Deines $Projectname-Servers." + +#: ../../Zotlabs/Module/Invite.php:79 +#, php-format +msgid "%s : Message delivery failed." +msgstr "%s : Nachricht konnte nicht zugestellt werden." + +#: ../../Zotlabs/Module/Invite.php:83 +#, php-format +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "%d Nachricht gesendet." +msgstr[1] "%d Nachrichten gesendet." + +#: ../../Zotlabs/Module/Invite.php:102 +msgid "You have no more invitations available" +msgstr "Du hast keine weiteren verfügbare Einladungen" + +#: ../../Zotlabs/Module/Invite.php:133 +msgid "Send invitations" +msgstr "Einladungen senden" + +#: ../../Zotlabs/Module/Invite.php:134 +msgid "Enter email addresses, one per line:" +msgstr "Email-Adressen eintragen, eine pro Zeile:" + +#: ../../Zotlabs/Module/Invite.php:135 ../../Zotlabs/Module/Mail.php:249 +msgid "Your message:" +msgstr "Deine Nachricht:" + +#: ../../Zotlabs/Module/Invite.php:136 +msgid "Please join my community on $Projectname." +msgstr "Schließe Dich uns auf $Projectname an!" + +#: ../../Zotlabs/Module/Invite.php:138 +msgid "You will need to supply this invitation code:" +msgstr "Bitte verwende bei der Registrierung den folgenden Einladungscode:" + +#: ../../Zotlabs/Module/Invite.php:139 +msgid "" +"1. Register at any $Projectname location (they are all inter-connected)" +msgstr "1. Registriere Dich auf einem beliebigen $Projectname-Hub (sie sind alle miteinander verbunden)" + +#: ../../Zotlabs/Module/Invite.php:141 +msgid "2. Enter my $Projectname network address into the site searchbar." +msgstr "2. Gib meine $Projectname-Adresse im Suchfeld ein." + +#: ../../Zotlabs/Module/Invite.php:142 +msgid "or visit" +msgstr "oder besuche" + +#: ../../Zotlabs/Module/Invite.php:144 +msgid "3. Click [Connect]" +msgstr "3. Klicke auf [Verbinden]" + +#: ../../Zotlabs/Module/Lockview.php:61 +msgid "Remote privacy information not available." +msgstr "Privatsphäre-Einstellungen anderer Nutzer sind nicht verfügbar." + +#: ../../Zotlabs/Module/Lockview.php:82 +msgid "Visible to:" +msgstr "Sichtbar für:" + +#: ../../Zotlabs/Module/Locs.php:25 ../../Zotlabs/Module/Locs.php:54 +msgid "Location not found." +msgstr "Klon nicht gefunden." + +#: ../../Zotlabs/Module/Locs.php:62 +msgid "Location lookup failed." +msgstr "Nachschlagen des Kanal-Ortes fehlgeschlagen" + +#: ../../Zotlabs/Module/Locs.php:66 +msgid "" +"Please select another location to become primary before removing the primary" +" location." +msgstr "Bitte mache einen anderen Kanal-Ort zum primären Ort, bevor Du den primären Ort löschst." + +#: ../../Zotlabs/Module/Locs.php:95 +msgid "Syncing locations" +msgstr "Synchronisiere Klone" + +#: ../../Zotlabs/Module/Locs.php:105 +msgid "No locations found." +msgstr "Keine Klon-Adressen gefunden." + +#: ../../Zotlabs/Module/Locs.php:116 +msgid "Manage Channel Locations" +msgstr "Klon-Adressen verwalten" + +#: ../../Zotlabs/Module/Locs.php:118 ../../Zotlabs/Module/Profiles.php:470 +#: ../../Zotlabs/Module/Admin.php:1224 +msgid "Address" +msgstr "Adresse" + +#: ../../Zotlabs/Module/Locs.php:119 +msgid "Primary" +msgstr "Primär" + +#: ../../Zotlabs/Module/Locs.php:120 ../../Zotlabs/Module/Menu.php:113 +msgid "Drop" +msgstr "Löschen" + +#: ../../Zotlabs/Module/Locs.php:122 +msgid "Sync Now" +msgstr "Jetzt synchronisieren" + +#: ../../Zotlabs/Module/Locs.php:123 +msgid "Please wait several minutes between consecutive operations." +msgstr "Bitte warte mehrere Minuten zwischen dem Ausführen zweier Operationen!" + +#: ../../Zotlabs/Module/Locs.php:124 +msgid "" +"When possible, drop a location by logging into that website/hub and removing" +" your channel." +msgstr "Wenn möglich, lösche einen Klon, indem Du Dich auf dem jeweiligen Hub einloggst und den Kanal dort löschst." + +#: ../../Zotlabs/Module/Locs.php:125 +msgid "Use this form to drop the location if the hub is no longer operating." +msgstr "Benutze dieses Formular zum Löschen eines Klons, wenn es den Hub nicht mehr gibt." + +#: ../../Zotlabs/Module/Magic.php:71 +msgid "Hub not found." +msgstr "Server nicht gefunden." + +#: ../../Zotlabs/Module/Mail.php:38 +msgid "Unable to lookup recipient." +msgstr "Konnte den Empfänger nicht finden." + +#: ../../Zotlabs/Module/Mail.php:45 +msgid "Unable to communicate with requested channel." +msgstr "Die Kommunikation mit dem ausgewählten Kanal ist fehlgeschlagen." + +#: ../../Zotlabs/Module/Mail.php:52 +msgid "Cannot verify requested channel." +msgstr "Verifizierung des angeforderten Kanals fehlgeschlagen." + +#: ../../Zotlabs/Module/Mail.php:78 +msgid "Selected channel has private message restrictions. Send failed." +msgstr "Der ausgewählte Kanal hat Einschränkungen bzgl. privater Nachrichten. Senden fehlgeschlagen." + +#: ../../Zotlabs/Module/Mail.php:143 +msgid "Messages" +msgstr "Nachrichten" + +#: ../../Zotlabs/Module/Mail.php:178 +msgid "Message recalled." +msgstr "Nachricht widerrufen." + +#: ../../Zotlabs/Module/Mail.php:191 +msgid "Conversation removed." +msgstr "Unterhaltung gelöscht." + +#: ../../Zotlabs/Module/Mail.php:206 ../../Zotlabs/Module/Mail.php:315 +msgid "Expires YYYY-MM-DD HH:MM" +msgstr "Verfällt YYYY-MM-DD HH;MM" + +#: ../../Zotlabs/Module/Mail.php:234 +msgid "Requested channel is not in this network" +msgstr "Angeforderter Kanal ist nicht in diesem Netzwerk." + +#: ../../Zotlabs/Module/Mail.php:242 +msgid "Send Private Message" +msgstr "Private Nachricht senden" + +#: ../../Zotlabs/Module/Mail.php:243 ../../Zotlabs/Module/Mail.php:368 +msgid "To:" +msgstr "An:" + +#: ../../Zotlabs/Module/Mail.php:246 ../../Zotlabs/Module/Mail.php:370 +msgid "Subject:" +msgstr "Betreff:" + +#: ../../Zotlabs/Module/Mail.php:251 ../../Zotlabs/Module/Mail.php:376 +#: ../../include/conversation.php:1220 +msgid "Attach file" +msgstr "Datei anhängen" + +#: ../../Zotlabs/Module/Mail.php:253 +msgid "Send" +msgstr "Absenden" + +#: ../../Zotlabs/Module/Mail.php:256 ../../Zotlabs/Module/Mail.php:381 +#: ../../include/conversation.php:1251 +msgid "Set expiration date" +msgstr "Verfallsdatum" + +#: ../../Zotlabs/Module/Mail.php:340 +msgid "Delete message" +msgstr "Nachricht löschen" + +#: ../../Zotlabs/Module/Mail.php:341 +msgid "Delivery report" +msgstr "Zustellungsbericht" + +#: ../../Zotlabs/Module/Mail.php:342 +msgid "Recall message" +msgstr "Nachricht widerrufen" + +#: ../../Zotlabs/Module/Mail.php:344 +msgid "Message has been recalled." +msgstr "Die Nachricht wurde widerrufen." + +#: ../../Zotlabs/Module/Mail.php:361 +msgid "Delete Conversation" +msgstr "Unterhaltung löschen" + +#: ../../Zotlabs/Module/Mail.php:363 +msgid "" +"No secure communications available. You may be able to " +"respond from the sender's profile page." +msgstr "Keine sichere Kommunikation verfügbar. Eventuell kannst Du auf der Profilseite des Absenders antworten." + +#: ../../Zotlabs/Module/Mail.php:367 +msgid "Send Reply" +msgstr "Antwort senden" + +#: ../../Zotlabs/Module/Mail.php:372 +#, php-format +msgid "Your message for %s (%s):" +msgstr "Deine Nachricht für %s (%s):" + +#: ../../Zotlabs/Module/Manage.php:136 +#: ../../Zotlabs/Module/New_channel.php:121 +#, php-format +msgid "You have created %1$.0f of %2$.0f allowed channels." +msgstr "Du hast %1$.0f von maximal %2$.0f erlaubten Kanälen eingerichtet." + +#: ../../Zotlabs/Module/Manage.php:143 +msgid "Create a new channel" +msgstr "Neuen Kanal anlegen" + +#: ../../Zotlabs/Module/Manage.php:164 ../../Zotlabs/Lib/Apps.php:213 +#: ../../include/nav.php:206 +msgid "Channel Manager" +msgstr "Kanal-Manager" + +#: ../../Zotlabs/Module/Manage.php:165 +msgid "Current Channel" +msgstr "Aktueller Kanal" + +#: ../../Zotlabs/Module/Manage.php:167 +msgid "Switch to one of your channels by selecting it." +msgstr "Wechsle zu einem Deiner Kanäle, indem Du auf ihn klickst." + +#: ../../Zotlabs/Module/Manage.php:168 +msgid "Default Channel" +msgstr "Standard Kanal" + +#: ../../Zotlabs/Module/Manage.php:169 +msgid "Make Default" +msgstr "Zum Standard machen" + +#: ../../Zotlabs/Module/Manage.php:172 +#, php-format +msgid "%d new messages" +msgstr "%d neue Nachrichten" + +#: ../../Zotlabs/Module/Manage.php:173 +#, php-format +msgid "%d new introductions" +msgstr "%d neue Vorstellungen" + +#: ../../Zotlabs/Module/Manage.php:175 +msgid "Delegated Channel" +msgstr "Delegierte Kanäle" + +#: ../../Zotlabs/Module/Lostpass.php:19 +msgid "No valid account found." +msgstr "Kein gültiges Konto gefunden." + +#: ../../Zotlabs/Module/Lostpass.php:33 +msgid "Password reset request issued. Check your email." +msgstr "Zurücksetzen des Passworts eingeleitet. Schau in Deine E-Mails." + +#: ../../Zotlabs/Module/Lostpass.php:39 ../../Zotlabs/Module/Lostpass.php:107 +#, php-format +msgid "Site Member (%s)" +msgstr "Nutzer (%s)" + +#: ../../Zotlabs/Module/Lostpass.php:44 +#, php-format +msgid "Password reset requested at %s" +msgstr "Passwort-Rücksetzung auf %s angefordert" + +#: ../../Zotlabs/Module/Lostpass.php:67 +msgid "" +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." +msgstr "Die Anfrage konnte nicht verifiziert werden. (Vielleicht hast Du schon einmal auf den Link in der E-Mail geklickt?) Passwort-Rücksetzung fehlgeschlagen." + +#: ../../Zotlabs/Module/Lostpass.php:90 ../../boot.php:1711 +msgid "Password Reset" +msgstr "Zurücksetzen des Kennworts" + +#: ../../Zotlabs/Module/Lostpass.php:91 +msgid "Your password has been reset as requested." +msgstr "Dein Passwort wurde wie angefordert neu erstellt." + +#: ../../Zotlabs/Module/Lostpass.php:92 +msgid "Your new password is" +msgstr "Dein neues Passwort lautet" + +#: ../../Zotlabs/Module/Lostpass.php:93 +msgid "Save or copy your new password - and then" +msgstr "Speichere oder kopiere Dein neues Passwort – und dann" + +#: ../../Zotlabs/Module/Lostpass.php:94 +msgid "click here to login" +msgstr "Klicke hier, um dich anzumelden" + +#: ../../Zotlabs/Module/Lostpass.php:95 +msgid "" +"Your password may be changed from the Settings page after " +"successful login." +msgstr "Dein Passwort kann unter Einstellungen nach einer erfolgreichen Anmeldung geändert werden." + +#: ../../Zotlabs/Module/Lostpass.php:112 +#, php-format +msgid "Your password has changed at %s" +msgstr "Auf %s wurde Dein Passwort geändert" + +#: ../../Zotlabs/Module/Lostpass.php:127 +msgid "Forgot your Password?" +msgstr "Kennwort vergessen?" + +#: ../../Zotlabs/Module/Lostpass.php:128 +msgid "" +"Enter your email address and submit to have your password reset. Then check " +"your email for further instructions." +msgstr "Gib Deine E-Mail-Adresse ein, um Dein Passwort zurücksetzen zu lassen. Du erhältst dann weitere Anweisungen per E-Mail." + +#: ../../Zotlabs/Module/Lostpass.php:129 +msgid "Email Address" +msgstr "E-Mail Adresse" + +#: ../../Zotlabs/Module/Lostpass.php:130 +msgid "Reset" +msgstr "Zurücksetzen" + +#: ../../Zotlabs/Module/Menu.php:49 +msgid "Unable to update menu." +msgstr "Kann Menü nicht aktualisieren." + +#: ../../Zotlabs/Module/Menu.php:60 +msgid "Unable to create menu." +msgstr "Kann Menü nicht erstellen." + +#: ../../Zotlabs/Module/Menu.php:98 ../../Zotlabs/Module/Menu.php:110 +msgid "Menu Name" +msgstr "Name des Menüs" + +#: ../../Zotlabs/Module/Menu.php:98 +msgid "Unique name (not visible on webpage) - required" +msgstr "Eindeutiger Name (nicht sichtbar auf der Webseite) – erforderlich" + +#: ../../Zotlabs/Module/Menu.php:99 ../../Zotlabs/Module/Menu.php:111 +msgid "Menu Title" +msgstr "Menütitel" + +#: ../../Zotlabs/Module/Menu.php:99 +msgid "Visible on webpage - leave empty for no title" +msgstr "Sichtbar auf der Webseite – für keinen Titel leer lassen" + +#: ../../Zotlabs/Module/Menu.php:100 +msgid "Allow Bookmarks" +msgstr "Lesezeichen erlauben" + +#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 +msgid "Menu may be used to store saved bookmarks" +msgstr "Im Menü können gespeicherte Lesezeichen abgelegt werden" + +#: ../../Zotlabs/Module/Menu.php:101 ../../Zotlabs/Module/Menu.php:159 +msgid "Submit and proceed" +msgstr "Absenden und fortfahren" + +#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2266 +msgid "Menus" +msgstr "Menüs" + +#: ../../Zotlabs/Module/Menu.php:117 +msgid "Bookmarks allowed" +msgstr "Lesezeichen erlaubt" + +#: ../../Zotlabs/Module/Menu.php:119 +msgid "Delete this menu" +msgstr "Lösche dieses Menü" + +#: ../../Zotlabs/Module/Menu.php:120 ../../Zotlabs/Module/Menu.php:154 +msgid "Edit menu contents" +msgstr "Bearbeite Menü Inhalte" + +#: ../../Zotlabs/Module/Menu.php:121 +msgid "Edit this menu" +msgstr "Dieses Menü bearbeiten" + +#: ../../Zotlabs/Module/Menu.php:136 +msgid "Menu could not be deleted." +msgstr "Menü konnte nicht gelöscht werden." + +#: ../../Zotlabs/Module/Menu.php:144 ../../Zotlabs/Module/Mitem.php:28 +msgid "Menu not found." +msgstr "Menü nicht gefunden" + +#: ../../Zotlabs/Module/Menu.php:149 +msgid "Edit Menu" +msgstr "Menü bearbeiten" + +#: ../../Zotlabs/Module/Menu.php:153 +msgid "Add or remove entries to this menu" +msgstr "Einträge zu diesem Menü hinzufügen oder entfernen" + +#: ../../Zotlabs/Module/Menu.php:155 +msgid "Menu name" +msgstr "Menü Name" + +#: ../../Zotlabs/Module/Menu.php:155 +msgid "Must be unique, only seen by you" +msgstr "Muss eindeutig sein, ist aber nur für Dich sichtbar" + +#: ../../Zotlabs/Module/Menu.php:156 +msgid "Menu title" +msgstr "Menü Titel" + +#: ../../Zotlabs/Module/Menu.php:156 +msgid "Menu title as seen by others" +msgstr "Menü Titel wie er von anderen gesehen wird" + +#: ../../Zotlabs/Module/Menu.php:157 +msgid "Allow bookmarks" +msgstr "Erlaube Lesezeichen" + +#: ../../Zotlabs/Module/Menu.php:166 ../../Zotlabs/Module/Mitem.php:120 +#: ../../Zotlabs/Module/Xchan.php:41 +msgid "Not found." +msgstr "Nicht gefunden." + +#: ../../Zotlabs/Module/Mood.php:67 ../../include/conversation.php:260 +#, php-format +msgctxt "mood" +msgid "%1$s is %2$s" +msgstr "%1$s ist %2$s" + +#: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Lib/Apps.php:225 +msgid "Mood" +msgstr "Laune" + +#: ../../Zotlabs/Module/Mood.php:136 +msgid "Set your current mood and tell your friends" +msgstr "Wähle Deine aktuelle Stimmung und teile sie mit Deinen Freunden" + +#: ../../Zotlabs/Module/Match.php:26 +msgid "Profile Match" +msgstr "Profil-Übereinstimmungen" + +#: ../../Zotlabs/Module/Match.php:35 +msgid "No keywords to match. Please add keywords to your default profile." +msgstr "Keine Schlüsselwörter für den Abgleich gefunden. Bitte füge Schlüsselwörter zu Deinem Standardprofil hinzu." + +#: ../../Zotlabs/Module/Match.php:67 +msgid "is interested in:" +msgstr "interessiert sich für:" + +#: ../../Zotlabs/Module/Match.php:74 +msgid "No matches" +msgstr "Keine Übereinstimmungen" + +#: ../../Zotlabs/Module/Network.php:96 +msgid "No such group" +msgstr "Gruppe nicht gefunden" + +#: ../../Zotlabs/Module/Network.php:136 +msgid "No such channel" +msgstr "Kanal nicht gefunden" + +#: ../../Zotlabs/Module/Network.php:141 +msgid "forum" +msgstr "Forum" + +#: ../../Zotlabs/Module/Network.php:153 +msgid "Search Results For:" +msgstr "Suchergebnisse für:" + +#: ../../Zotlabs/Module/Network.php:217 +msgid "Privacy group is empty" +msgstr "Gruppe ist leer" + +#: ../../Zotlabs/Module/Network.php:226 +msgid "Privacy group: " +msgstr "Gruppe:" + +#: ../../Zotlabs/Module/Network.php:252 +msgid "Invalid connection." +msgstr "Ungültige Verbindung." + +#: ../../Zotlabs/Module/Notify.php:57 +#: ../../Zotlabs/Module/Notifications.php:98 +msgid "No more system notifications." +msgstr "Keine System-Benachrichtigungen mehr." + +#: ../../Zotlabs/Module/Notify.php:61 +#: ../../Zotlabs/Module/Notifications.php:102 +msgid "System Notifications" +msgstr "System-Benachrichtigungen" + +#: ../../Zotlabs/Module/Mitem.php:52 +msgid "Unable to create element." +msgstr "Element konnte nicht erstellt werden." + +#: ../../Zotlabs/Module/Mitem.php:76 +msgid "Unable to update menu element." +msgstr "Kann Menü-Element nicht aktualisieren." + +#: ../../Zotlabs/Module/Mitem.php:92 +msgid "Unable to add menu element." +msgstr "Kann Menü-Bestandteil nicht hinzufügen." + +#: ../../Zotlabs/Module/Mitem.php:153 ../../Zotlabs/Module/Mitem.php:226 +msgid "Menu Item Permissions" +msgstr "Zugriffsrechte des Menü-Elements" + +#: ../../Zotlabs/Module/Mitem.php:154 ../../Zotlabs/Module/Mitem.php:227 +#: ../../Zotlabs/Module/Settings.php:1068 +msgid "(click to open/close)" +msgstr "(zum öffnen/schließen anklicken)" + +#: ../../Zotlabs/Module/Mitem.php:156 ../../Zotlabs/Module/Mitem.php:172 +msgid "Link Name" +msgstr "Name des Links" + +#: ../../Zotlabs/Module/Mitem.php:157 ../../Zotlabs/Module/Mitem.php:231 +msgid "Link or Submenu Target" +msgstr "Ziel des Links oder Untermenüs" + +#: ../../Zotlabs/Module/Mitem.php:157 +msgid "Enter URL of the link or select a menu name to create a submenu" +msgstr "URL des Links eingeben oder Menünamen wählen, um ein Untermenü anzulegen." + +#: ../../Zotlabs/Module/Mitem.php:158 ../../Zotlabs/Module/Mitem.php:232 +msgid "Use magic-auth if available" +msgstr "Magic-Auth verwenden, falls verfügbar" + +#: ../../Zotlabs/Module/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:233 +msgid "Open link in new window" +msgstr "Öffne Link in neuem Fenster" + +#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:234 +msgid "Order in list" +msgstr "Reihenfolge in der Liste" + +#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:234 +msgid "Higher numbers will sink to bottom of listing" +msgstr "Größere Nummern werden weiter unten in der Auflistung einsortiert" + +#: ../../Zotlabs/Module/Mitem.php:161 +msgid "Submit and finish" +msgstr "Absenden und fertigstellen" + +#: ../../Zotlabs/Module/Mitem.php:162 +msgid "Submit and continue" +msgstr "Absenden und fortfahren" + +#: ../../Zotlabs/Module/Mitem.php:170 +msgid "Menu:" +msgstr "Menü:" + +#: ../../Zotlabs/Module/Mitem.php:173 +msgid "Link Target" +msgstr "Ziel des Links" + +#: ../../Zotlabs/Module/Mitem.php:176 +msgid "Edit menu" +msgstr "Menü bearbeiten" + +#: ../../Zotlabs/Module/Mitem.php:179 +msgid "Edit element" +msgstr "Bestandteil bearbeiten" + +#: ../../Zotlabs/Module/Mitem.php:180 +msgid "Drop element" +msgstr "Bestandteil löschen" + +#: ../../Zotlabs/Module/Mitem.php:181 +msgid "New element" +msgstr "Neues Bestandteil" + +#: ../../Zotlabs/Module/Mitem.php:182 +msgid "Edit this menu container" +msgstr "Diesen Menü-Container bearbeiten" + +#: ../../Zotlabs/Module/Mitem.php:183 +msgid "Add menu element" +msgstr "Menüelement hinzufügen" + +#: ../../Zotlabs/Module/Mitem.php:184 +msgid "Delete this menu item" +msgstr "Lösche dieses Menü-Bestandteil" + +#: ../../Zotlabs/Module/Mitem.php:185 +msgid "Edit this menu item" +msgstr "Bearbeite dieses Menü-Bestandteil" + +#: ../../Zotlabs/Module/Mitem.php:202 +msgid "Menu item not found." +msgstr "Menü-Bestandteil nicht gefunden." + +#: ../../Zotlabs/Module/Mitem.php:215 +msgid "Menu item deleted." +msgstr "Menü-Bestandteil gelöscht." + +#: ../../Zotlabs/Module/Mitem.php:217 +msgid "Menu item could not be deleted." +msgstr "Menü-Bestandteil kann nicht gelöscht werden." + +#: ../../Zotlabs/Module/Mitem.php:224 +msgid "Edit Menu Element" +msgstr "Bearbeite Menü-Bestandteil" + +#: ../../Zotlabs/Module/Mitem.php:230 +msgid "Link text" +msgstr "Link Text" + +#: ../../Zotlabs/Module/New_channel.php:128 +#: ../../Zotlabs/Module/Register.php:231 +msgid "Name or caption" +msgstr "Name oder Titel" + +#: ../../Zotlabs/Module/New_channel.php:128 +#: ../../Zotlabs/Module/Register.php:231 +msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\"" +msgstr "Beispiele: „Horst Weidinger“, „Lisa und ihr Meerschweinchen“, „Fußball“, „Segelflieger-Forum“ " + +#: ../../Zotlabs/Module/New_channel.php:130 +#: ../../Zotlabs/Module/Register.php:233 +msgid "Choose a short nickname" +msgstr "Wähle einen kurzen Spitznamen" + +#: ../../Zotlabs/Module/New_channel.php:130 +#: ../../Zotlabs/Module/Register.php:233 +#, php-format +msgid "" +"Your nickname will be used to create an easy to remember channel address " +"e.g. nickname%s" +msgstr "Dein Spitzname wird verwendet, um eine leicht zu merkende Kanal-Adresse (ähnlich einer E-Mail-Adresse) zu erzeugen, die Du mit anderen austauschen kannst, z.B. nickname%s" + +#: ../../Zotlabs/Module/New_channel.php:132 +#: ../../Zotlabs/Module/Register.php:235 +msgid "Channel role and privacy" +msgstr "Kanaltyp und Privatspäre-Einstellungen" + +#: ../../Zotlabs/Module/New_channel.php:132 +#: ../../Zotlabs/Module/Register.php:235 +msgid "Select a channel role with your privacy requirements." +msgstr "Wähle einen passenden Kanaltyp mit den zugehörigen Voreinstellungen zur Privatsphäre." + +#: ../../Zotlabs/Module/New_channel.php:132 +#: ../../Zotlabs/Module/Register.php:235 +msgid "Read more about roles" +msgstr "Mehr Informationen über Rollen" + +#: ../../Zotlabs/Module/New_channel.php:135 +msgid "Create Channel" +msgstr "Einen neuen Kanal anlegen" + +#: ../../Zotlabs/Module/New_channel.php:136 +msgid "" +"A channel is your identity on this network. It can represent a person, a " +"blog, or a forum to name a few. Channels can make connections with other " +"channels to share information with highly detailed permissions." +msgstr "Ein Kanal ist Deine Identität in diesem Netzwerk. Er kann eine Person, ein Blog oder ein Forum repräsentieren, nur um ein paar Beispiele zu nennen. Kanäle können Verbindungen miteinander eingehen, um Informationen zu teilen, jeweils basierend auf sehr detaillierten Berechtigungseinstellungen." + +#: ../../Zotlabs/Module/New_channel.php:137 +msgid "" +"or import an existing channel from another location." +msgstr "oder importiere einen bestehenden Kanal von einem anderen Server." + +#: ../../Zotlabs/Module/Notifications.php:30 +msgid "Invalid request identifier." +msgstr "Ungültiger Anfrage-Identifikator." + +#: ../../Zotlabs/Module/Notifications.php:39 +msgid "Discard" +msgstr "Verwerfen" + +#: ../../Zotlabs/Module/Notifications.php:103 ../../include/nav.php:191 +msgid "Mark all system notifications seen" +msgstr "Markiere alle System-Benachrichtigungen als gesehen" + +#: ../../Zotlabs/Module/Photos.php:84 +msgid "Page owner information could not be retrieved." +msgstr "Informationen über den Besitzer der Seite konnten nicht gefunden werden." + +#: ../../Zotlabs/Module/Photos.php:99 ../../Zotlabs/Module/Photos.php:743 +#: ../../Zotlabs/Module/Profile_photo.php:114 +#: ../../Zotlabs/Module/Profile_photo.php:206 +#: ../../Zotlabs/Module/Profile_photo.php:294 +#: ../../include/photo/photo_driver.php:718 +msgid "Profile Photos" +msgstr "Profilfotos" + +#: ../../Zotlabs/Module/Photos.php:105 ../../Zotlabs/Module/Photos.php:149 +msgid "Album not found." +msgstr "Album nicht gefunden." + +#: ../../Zotlabs/Module/Photos.php:132 +msgid "Delete Album" +msgstr "Album löschen" + +#: ../../Zotlabs/Module/Photos.php:153 +msgid "" +"Multiple storage folders exist with this album name, but within different " +"directories. Please remove the desired folder or folders using the Files " +"manager" +msgstr "Mehrere Speicherordner mit diesem Albumnamen sind bereits vorhanden, aber in verschiedenen Verzeichnissen. Bitte entfernen Sie den oder die gewünschten Ordner mit dem Dateimanager" + +#: ../../Zotlabs/Module/Photos.php:210 ../../Zotlabs/Module/Photos.php:1053 +msgid "Delete Photo" +msgstr "Foto löschen" + +#: ../../Zotlabs/Module/Photos.php:533 +msgid "No photos selected" +msgstr "Keine Fotos ausgewählt" + +#: ../../Zotlabs/Module/Photos.php:582 +msgid "Access to this item is restricted." +msgstr "Der Zugriff auf dieses Foto ist eingeschränkt." + +#: ../../Zotlabs/Module/Photos.php:621 +#, php-format +msgid "%1$.2f MB of %2$.2f MB photo storage used." +msgstr "%1$.2f MB von %2$.2f MB Foto-Speicher belegt." + +#: ../../Zotlabs/Module/Photos.php:624 +#, php-format +msgid "%1$.2f MB photo storage used." +msgstr "%1$.2f MB Foto-Speicher belegt." + +#: ../../Zotlabs/Module/Photos.php:660 +msgid "Upload Photos" +msgstr "Fotos hochladen" + +#: ../../Zotlabs/Module/Photos.php:664 +msgid "Enter an album name" +msgstr "Namen für ein neues Album eingeben" + +#: ../../Zotlabs/Module/Photos.php:665 +msgid "or select an existing album (doubleclick)" +msgstr "oder ein bereits vorhandenes auswählen (Doppelklick)" + +#: ../../Zotlabs/Module/Photos.php:666 +msgid "Create a status post for this upload" +msgstr "Einen Statusbeitrag für diesen Upload erzeugen" + +#: ../../Zotlabs/Module/Photos.php:667 +msgid "Caption (optional):" +msgstr "Beschriftung (optional):" + +#: ../../Zotlabs/Module/Photos.php:668 +msgid "Description (optional):" +msgstr "Beschreibung (optional):" + +#: ../../Zotlabs/Module/Photos.php:695 +msgid "Album name could not be decoded" +msgstr "Albumname konnte nicht dekodiert werden" + +#: ../../Zotlabs/Module/Photos.php:743 +msgid "Contact Photos" +msgstr "Kontakt-Bilder" + +#: ../../Zotlabs/Module/Photos.php:766 +msgid "Show Newest First" +msgstr "Neueste zuerst anzeigen" + +#: ../../Zotlabs/Module/Photos.php:768 +msgid "Show Oldest First" +msgstr "Älteste zuerst anzeigen" + +#: ../../Zotlabs/Module/Photos.php:792 ../../Zotlabs/Module/Photos.php:1331 +#: ../../include/widgets.php:1499 +msgid "View Photo" +msgstr "Foto ansehen" + +#: ../../Zotlabs/Module/Photos.php:823 ../../include/widgets.php:1516 +msgid "Edit Album" +msgstr "Album bearbeiten" + +#: ../../Zotlabs/Module/Photos.php:870 +msgid "Permission denied. Access to this item may be restricted." +msgstr "Berechtigung verweigert. Der Zugriff ist wahrscheinlich eingeschränkt worden." + +#: ../../Zotlabs/Module/Photos.php:872 +msgid "Photo not available" +msgstr "Foto nicht verfügbar" + +#: ../../Zotlabs/Module/Photos.php:930 +msgid "Use as profile photo" +msgstr "Als Profilfoto verwenden" + +#: ../../Zotlabs/Module/Photos.php:931 +msgid "Use as cover photo" +msgstr "Als Titelbild verwenden" + +#: ../../Zotlabs/Module/Photos.php:938 +msgid "Private Photo" +msgstr "Privates Foto" + +#: ../../Zotlabs/Module/Photos.php:953 +msgid "View Full Size" +msgstr "In voller Größe anzeigen" + +#: ../../Zotlabs/Module/Photos.php:998 ../../Zotlabs/Module/Admin.php:1437 +#: ../../Zotlabs/Module/Tagrm.php:137 +msgid "Remove" +msgstr "Entfernen" + +#: ../../Zotlabs/Module/Photos.php:1032 +msgid "Edit photo" +msgstr "Foto bearbeiten" + +#: ../../Zotlabs/Module/Photos.php:1034 +msgid "Rotate CW (right)" +msgstr "Drehen im UZS (rechts)" + +#: ../../Zotlabs/Module/Photos.php:1035 +msgid "Rotate CCW (left)" +msgstr "Drehen gegen UZS (links)" + +#: ../../Zotlabs/Module/Photos.php:1038 +msgid "Enter a new album name" +msgstr "Gib einen Namen für ein neues Album ein" + +#: ../../Zotlabs/Module/Photos.php:1039 +msgid "or select an existing one (doubleclick)" +msgstr "oder wähle ein bereits vorhandenes aus (Doppelklick)" + +#: ../../Zotlabs/Module/Photos.php:1042 +msgid "Caption" +msgstr "Bildunterschrift" + +#: ../../Zotlabs/Module/Photos.php:1044 +msgid "Add a Tag" +msgstr "Schlagwort hinzufügen" + +#: ../../Zotlabs/Module/Photos.php:1048 +msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" +msgstr "Beispiele: @ben, @Karl_Prester, @lieschen@example.com" + +#: ../../Zotlabs/Module/Photos.php:1051 +msgid "Flag as adult in album view" +msgstr "In der Albumansicht als nicht jugendfrei markieren" + +#: ../../Zotlabs/Module/Photos.php:1070 ../../Zotlabs/Lib/ThreadItem.php:261 +msgid "I like this (toggle)" +msgstr "Mir gefällt das (Umschalter)" + +#: ../../Zotlabs/Module/Photos.php:1071 ../../Zotlabs/Lib/ThreadItem.php:262 +msgid "I don't like this (toggle)" +msgstr "Mir gefällt das nicht (Umschalter)" + +#: ../../Zotlabs/Module/Photos.php:1073 ../../Zotlabs/Lib/ThreadItem.php:397 +#: ../../include/conversation.php:740 +msgid "Please wait" +msgstr "Bitte warten" + +#: ../../Zotlabs/Module/Photos.php:1089 ../../Zotlabs/Module/Photos.php:1207 +#: ../../Zotlabs/Lib/ThreadItem.php:707 +msgid "This is you" +msgstr "Das bist Du" + +#: ../../Zotlabs/Module/Photos.php:1091 ../../Zotlabs/Module/Photos.php:1209 +#: ../../Zotlabs/Lib/ThreadItem.php:709 ../../include/js_strings.php:6 +msgid "Comment" +msgstr "Kommentar" + +#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:574 +msgctxt "title" +msgid "Likes" +msgstr "Gefällt mir" + +#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:574 +msgctxt "title" +msgid "Dislikes" +msgstr "Gefällt mir nicht" + +#: ../../Zotlabs/Module/Photos.php:1108 ../../include/conversation.php:575 +msgctxt "title" +msgid "Agree" +msgstr "Zustimmungen" + +#: ../../Zotlabs/Module/Photos.php:1108 ../../include/conversation.php:575 +msgctxt "title" +msgid "Disagree" +msgstr "Ablehnungen" + +#: ../../Zotlabs/Module/Photos.php:1108 ../../include/conversation.php:575 +msgctxt "title" +msgid "Abstain" +msgstr "Enthaltungen" + +#: ../../Zotlabs/Module/Photos.php:1109 ../../include/conversation.php:576 +msgctxt "title" +msgid "Attending" +msgstr "Zusagen" + +#: ../../Zotlabs/Module/Photos.php:1109 ../../include/conversation.php:576 +msgctxt "title" +msgid "Not attending" +msgstr "Absagen" + +#: ../../Zotlabs/Module/Photos.php:1109 ../../include/conversation.php:576 +msgctxt "title" +msgid "Might attend" +msgstr "Vielleicht" + +#: ../../Zotlabs/Module/Photos.php:1126 ../../Zotlabs/Module/Photos.php:1138 +#: ../../Zotlabs/Lib/ThreadItem.php:181 ../../Zotlabs/Lib/ThreadItem.php:193 +#: ../../include/conversation.php:1717 +msgid "View all" +msgstr "Alles anzeigen" + +#: ../../Zotlabs/Module/Photos.php:1130 ../../Zotlabs/Lib/ThreadItem.php:185 +#: ../../include/taxonomy.php:403 ../../include/conversation.php:1741 +#: ../../include/channel.php:1158 +msgctxt "noun" +msgid "Like" +msgid_plural "Likes" +msgstr[0] "Gefällt mir" +msgstr[1] "Gefällt mir" + +#: ../../Zotlabs/Module/Photos.php:1135 ../../Zotlabs/Lib/ThreadItem.php:190 +#: ../../include/conversation.php:1744 +msgctxt "noun" +msgid "Dislike" +msgid_plural "Dislikes" +msgstr[0] "Gefällt nicht" +msgstr[1] "Gefällt nicht" + +#: ../../Zotlabs/Module/Photos.php:1235 +msgid "Photo Tools" +msgstr "Fotowerkzeuge" + +#: ../../Zotlabs/Module/Photos.php:1244 +msgid "In This Photo:" +msgstr "Auf diesem Foto:" + +#: ../../Zotlabs/Module/Photos.php:1249 +msgid "Map" +msgstr "Karte" + +#: ../../Zotlabs/Module/Photos.php:1257 ../../Zotlabs/Lib/ThreadItem.php:386 +msgctxt "noun" +msgid "Likes" +msgstr "Gefällt mir" + +#: ../../Zotlabs/Module/Photos.php:1258 ../../Zotlabs/Lib/ThreadItem.php:387 +msgctxt "noun" +msgid "Dislikes" +msgstr "Gefällt nicht" + +#: ../../Zotlabs/Module/Photos.php:1263 ../../Zotlabs/Lib/ThreadItem.php:392 +#: ../../include/acl_selectors.php:285 +msgid "Close" +msgstr "Schließen" + +#: ../../Zotlabs/Module/Photos.php:1337 +msgid "View Album" +msgstr "Album ansehen" + +#: ../../Zotlabs/Module/Photos.php:1348 ../../Zotlabs/Module/Photos.php:1361 +#: ../../Zotlabs/Module/Photos.php:1362 +msgid "Recent Photos" +msgstr "Neueste Fotos" + +#: ../../Zotlabs/Module/Ping.php:265 +msgid "sent you a private message" +msgstr "hat Dir eine private Nachricht geschickt" + +#: ../../Zotlabs/Module/Ping.php:313 +msgid "added your channel" +msgstr "hat deinen Kanal hinzugefügt" + +#: ../../Zotlabs/Module/Ping.php:323 +msgid "g A l F d" +msgstr "l, d. F, G:i \\U\\h\\r" + +#: ../../Zotlabs/Module/Ping.php:346 +msgid "[today]" +msgstr "[Heute]" + +#: ../../Zotlabs/Module/Ping.php:355 +msgid "posted an event" +msgstr "hat einen Termin veröffentlicht" + +#: ../../Zotlabs/Module/Oexchange.php:27 +msgid "Unable to find your hub." +msgstr "Konnte Deinen Server nicht finden." + +#: ../../Zotlabs/Module/Oexchange.php:41 +msgid "Post successful." +msgstr "Veröffentlichung erfolgreich." + +#: ../../Zotlabs/Module/Openid.php:30 +msgid "OpenID protocol error. No ID returned." +msgstr "OpenID Protokollfehler. Keine ID zurückgegeben." + +#: ../../Zotlabs/Module/Openid.php:193 ../../include/auth.php:226 +msgid "Login failed." +msgstr "Login fehlgeschlagen." + +#: ../../Zotlabs/Module/Page.php:133 +msgid "" +"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod " +"tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam," +" quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo " +"consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse " +"cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat " +"non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." +msgstr "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." + +#: ../../Zotlabs/Module/Pconfig.php:26 ../../Zotlabs/Module/Pconfig.php:59 +msgid "This setting requires special processing and editing has been blocked." +msgstr "Diese Einstellung erfordert eine besondere Verarbeitung und ist blockiert." + +#: ../../Zotlabs/Module/Pconfig.php:48 +msgid "Configuration Editor" +msgstr "Konfigurationseditor" + +#: ../../Zotlabs/Module/Pconfig.php:49 +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 "Warnung: Einige Einstellungen können Deinen Kanal funktionsunfähig machen. Bitte verlasse diese Seite, es sei denn Du bist vertraut damit, wie dieses Feature korrekt verwendet wird." + +#: ../../Zotlabs/Module/Pdledit.php:18 +msgid "Layout updated." +msgstr "Layout aktualisiert." + +#: ../../Zotlabs/Module/Pdledit.php:34 ../../Zotlabs/Module/Pdledit.php:61 +msgid "Edit System Page Description" +msgstr "Systemseitenbeschreibung bearbeiten" + +#: ../../Zotlabs/Module/Pdledit.php:56 +msgid "Layout not found." +msgstr "Layout nicht gefunden." + +#: ../../Zotlabs/Module/Pdledit.php:62 +msgid "Module Name:" +msgstr "Modulname:" + +#: ../../Zotlabs/Module/Pdledit.php:63 +msgid "Layout Help" +msgstr "Layout-Hilfe" + +#: ../../Zotlabs/Module/Poke.php:168 ../../Zotlabs/Lib/Apps.php:226 +#: ../../include/conversation.php:960 +msgid "Poke" +msgstr "Anstupsen" + +#: ../../Zotlabs/Module/Poke.php:169 +msgid "Poke somebody" +msgstr "Jemanden anstupsen" + +#: ../../Zotlabs/Module/Poke.php:172 +msgid "Poke/Prod" +msgstr "Anstupsen/Knuffen" + +#: ../../Zotlabs/Module/Poke.php:173 +msgid "Poke, prod or do other things to somebody" +msgstr "Jemanden anstupsen, knuffen oder sonstiges" + +#: ../../Zotlabs/Module/Poke.php:180 +msgid "Recipient" +msgstr "Empfänger" + +#: ../../Zotlabs/Module/Poke.php:181 +msgid "Choose what you wish to do to recipient" +msgstr "Wähle, was Du mit dem/r Empfänger/in tun willst" + +#: ../../Zotlabs/Module/Poke.php:184 ../../Zotlabs/Module/Poke.php:185 +msgid "Make this post private" +msgstr "Diesen Beitrag privat machen" + +#: ../../Zotlabs/Module/Probe.php:30 ../../Zotlabs/Module/Probe.php:34 +#, php-format +msgid "Fetching URL returns error: %1$s" +msgstr "Abrufen der URL gab einen Fehler zurück: %1$s" + #: ../../Zotlabs/Module/Profiles.php:24 ../../Zotlabs/Module/Profiles.php:189 #: ../../Zotlabs/Module/Profiles.php:246 ../../Zotlabs/Module/Profiles.php:625 msgid "Profile not found." @@ -2215,11 +3291,6 @@ msgstr "Webseite" msgid "Interests" msgstr "Hobbys/Interessen" -#: ../../Zotlabs/Module/Profiles.php:470 ../../Zotlabs/Module/Locs.php:118 -#: ../../Zotlabs/Module/Admin.php:1224 -msgid "Address" -msgstr "Adresse" - #: ../../Zotlabs/Module/Profiles.php:560 msgid "Profile updated." msgstr "Profil aktualisiert." @@ -2237,7 +3308,7 @@ msgid "View this profile" msgstr "Dieses Profil ansehen" #: ../../Zotlabs/Module/Profiles.php:689 ../../Zotlabs/Module/Profiles.php:771 -#: ../../include/channel.php:998 +#: ../../include/channel.php:959 msgid "Edit visibility" msgstr "Sichtbarkeit bearbeiten" @@ -2249,7 +3320,7 @@ msgstr "Profilwerkzeuge" msgid "Change cover photo" msgstr "Titelbild ändern" -#: ../../Zotlabs/Module/Profiles.php:692 ../../include/channel.php:969 +#: ../../Zotlabs/Module/Profiles.php:692 ../../include/channel.php:930 msgid "Change profile photo" msgstr "Profilfoto ändern" @@ -2269,8 +3340,8 @@ msgstr "Dieses Profil löschen" msgid "Add profile things" msgstr "Sachen zum Profil hinzufügen" -#: ../../Zotlabs/Module/Profiles.php:697 ../../include/conversation.php:1541 -#: ../../include/widgets.php:105 +#: ../../Zotlabs/Module/Profiles.php:697 ../../include/widgets.php:105 +#: ../../include/conversation.php:1526 msgid "Personal" msgstr "Persönlich" @@ -2410,1097 +3481,119 @@ msgstr "Kontaktinformation und soziale Netzwerke" msgid "My other channels" msgstr "Meine anderen Kanäle" -#: ../../Zotlabs/Module/Profiles.php:767 ../../include/channel.php:994 +#: ../../Zotlabs/Module/Profiles.php:767 ../../include/channel.php:955 msgid "Profile Image" msgstr "Profilfoto:" #: ../../Zotlabs/Module/Profiles.php:777 ../../include/nav.php:88 -#: ../../include/channel.php:976 +#: ../../include/channel.php:937 msgid "Edit Profiles" msgstr "Profile bearbeiten" -#: ../../Zotlabs/Module/Import.php:33 -#, php-format -msgid "Your service plan only allows %d channels." -msgstr "Dein Vertrag erlaubt nur %d Kanäle." - -#: ../../Zotlabs/Module/Import.php:71 ../../Zotlabs/Module/Import_items.php:42 -msgid "Nothing to import." -msgstr "Nichts zu importieren." - -#: ../../Zotlabs/Module/Import.php:95 ../../Zotlabs/Module/Import_items.php:66 -msgid "Unable to download data from old server" -msgstr "Daten können vom alten Server nicht heruntergeladen werden" - -#: ../../Zotlabs/Module/Import.php:101 -#: ../../Zotlabs/Module/Import_items.php:72 -msgid "Imported file is empty." -msgstr "Die importierte Datei ist leer." - -#: ../../Zotlabs/Module/Import.php:123 -#: ../../Zotlabs/Module/Import_items.php:88 -#, php-format -msgid "Warning: Database versions differ by %1$d updates." -msgstr "Achtung: Datenbankversionen unterscheiden sich um %1$d Aktualisierungen." - -#: ../../Zotlabs/Module/Import.php:153 ../../include/import.php:107 -msgid "Cloned channel not found. Import failed." -msgstr "Geklonter Kanal nicht gefunden. Import fehlgeschlagen." - -#: ../../Zotlabs/Module/Import.php:163 -msgid "No channel. Import failed." -msgstr "Kein Kanal. Import fehlgeschlagen." - -#: ../../Zotlabs/Module/Import.php:520 -#: ../../include/Import/import_diaspora.php:142 -msgid "Import completed." -msgstr "Import abgeschlossen." - -#: ../../Zotlabs/Module/Import.php:542 -msgid "You must be logged in to use this feature." -msgstr "Du musst angemeldet sein um diese Funktion zu nutzen." - -#: ../../Zotlabs/Module/Import.php:547 -msgid "Import Channel" -msgstr "Kanal importieren" - -#: ../../Zotlabs/Module/Import.php:548 +#: ../../Zotlabs/Module/Profile_photo.php:179 msgid "" -"Use this form to import an existing channel from a different server/hub. You" -" may retrieve the channel identity from the old server/hub via the network " -"or provide an export file." -msgstr "Verwende dieses Formular, um einen existierenden Kanal von einem anderen Hub zu importieren. Du kannst den Kanal direkt vom bisherigen Hub über das Netzwerk oder aus einer exportierten Sicherheitskopie importieren." +"Shift-reload the page or clear browser cache if the new photo does not " +"display immediately." +msgstr "Leere den Browser Cache oder nutze Umschalten-Neu Laden, falls das neue Foto nicht sofort angezeigt wird." -#: ../../Zotlabs/Module/Import.php:549 -#: ../../Zotlabs/Module/Import_items.php:121 -msgid "File to Upload" -msgstr "Hochzuladende Datei:" +#: ../../Zotlabs/Module/Profile_photo.php:367 +msgid "Upload Profile Photo" +msgstr "Lade neues Profilfoto hoch" -#: ../../Zotlabs/Module/Import.php:550 -msgid "Or provide the old server/hub details" -msgstr "Oder gib die Details Deines bisherigen $Projectname-Hubs ein" +#: ../../Zotlabs/Module/Profperm.php:34 ../../Zotlabs/Module/Profperm.php:63 +msgid "Invalid profile identifier." +msgstr "Ungültiger Profil-Identifikator" -#: ../../Zotlabs/Module/Import.php:551 -msgid "Your old identity address (xyz@example.com)" -msgstr "Bisherige Kanal-Adresse (xyz@example.com)" +#: ../../Zotlabs/Module/Profperm.php:115 +msgid "Profile Visibility Editor" +msgstr "Profil-Sichtbarkeits-Editor" -#: ../../Zotlabs/Module/Import.php:552 -msgid "Your old login email address" -msgstr "Deine alte Login-E-Mail-Adresse" +#: ../../Zotlabs/Module/Profperm.php:117 ../../include/channel.php:1249 +msgid "Profile" +msgstr "Profil" -#: ../../Zotlabs/Module/Import.php:553 -msgid "Your old login password" -msgstr "Dein altes Passwort" +#: ../../Zotlabs/Module/Profperm.php:119 +msgid "Click on a contact to add or remove." +msgstr "Klicke auf einen Kontakt, um ihn hinzuzufügen oder zu entfernen." -#: ../../Zotlabs/Module/Import.php:554 +#: ../../Zotlabs/Module/Profperm.php:128 +msgid "Visible To" +msgstr "Sichtbar für" + +#: ../../Zotlabs/Module/Pubsites.php:22 ../../include/widgets.php:1270 +msgid "Public Hubs" +msgstr "Öffentliche Hubs" + +#: ../../Zotlabs/Module/Pubsites.php:25 msgid "" -"For either option, please choose whether to make this hub your new primary " -"address, or whether your old location should continue this role. You will be" -" able to post from either location, but only one can be marked as the " -"primary location for files, photos, and media." -msgstr "Egal, welche Option Du wählst – bitte lege fest, ob dieser Server die neue primäre Adresse dieses Kanals sein soll, oder ob der bisherige $Projectname-Hub diese Rolle weiterhin wahrnimmt. Du kannst von beiden Servern aus posten, aber nur einer kann der primäre Ort Deiner Dateien, Fotos und Medien sein." +"The listed hubs allow public registration for the $Projectname network. All " +"hubs in the network are interlinked so membership on any of them conveys " +"membership in the network as a whole. Some hubs may require subscription or " +"provide tiered service plans. The hub itself may provide " +"additional details." +msgstr "Die hier aufgeführten Hubs sind öffentlich und erlauben die Registrierung im $Projectname Netzwerk. Alle Hubs dieses Netzwerks sind miteinander verbunden, so dass die Mitgliedschaft auf einem Hub die Verbindung zu beliebigen Seiten und Kanälen auf anderen Hubs ermöglicht. Es könnte sein, dass einige dieser Hubs kostenpflichtig sind oder abgestufte, je nach Umfang kostenpflichtige Mitgliedschaften anbieten. Auf den Seiten der einzelnen Hubs könnten jeweils nähere Informationen dazu stehen." -#: ../../Zotlabs/Module/Import.php:555 -msgid "Make this hub my primary location" -msgstr "Dieser $Pojectname-Hub ist mein primärer Hub." +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Hub URL" +msgstr "Hub-URL" -#: ../../Zotlabs/Module/Import.php:556 -msgid "" -"Import existing posts if possible (experimental - limited by available " -"memory" -msgstr "Importiere bestehende Beiträge falls möglich (experimentell - begrenzt durch zur Verfügung stehenden Speicher" +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Access Type" +msgstr "Zugriffstyp" -#: ../../Zotlabs/Module/Import.php:557 -msgid "" -"This process may take several minutes to complete. Please submit the form " -"only once and leave this page open until finished." -msgstr "Dieser Vorgang kann einige Minuten dauern. Bitte sende das Formular nur einmal ab und lasse diese Seite bis zur Fertigstellung offen." +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Registration Policy" +msgstr "Registrierungsrichtlinien" -#: ../../Zotlabs/Module/Home.php:74 ../../Zotlabs/Module/Home.php:82 -#: ../../Zotlabs/Module/Siteinfo.php:48 -msgid "$Projectname" -msgstr "$Projectname" +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Stats" +msgstr "Statistiken" -#: ../../Zotlabs/Module/Home.php:92 +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Software" +msgstr "Software" + +#: ../../Zotlabs/Module/Pubsites.php:31 ../../Zotlabs/Module/Ratings.php:103 +#: ../../include/conversation.php:959 +msgid "Ratings" +msgstr "Bewertungen" + +#: ../../Zotlabs/Module/Pubsites.php:38 +msgid "Rate" +msgstr "Bewerten" + +#: ../../Zotlabs/Module/Rate.php:160 +msgid "Website:" +msgstr "Webseite:" + +#: ../../Zotlabs/Module/Rate.php:163 #, php-format -msgid "Welcome to %s" -msgstr "Willkommen auf %s" +msgid "Remote Channel [%s] (not yet known on this site)" +msgstr "Kanal [%s] (auf diesem Server noch unbekannt)" -#: ../../Zotlabs/Module/Item.php:179 -msgid "Unable to locate original post." -msgstr "Originalbeitrag nicht gefunden." +#: ../../Zotlabs/Module/Rate.php:164 +msgid "Rating (this information is public)" +msgstr "Bewertung (öffentlich sichtbar)" -#: ../../Zotlabs/Module/Item.php:432 -msgid "Empty post discarded." -msgstr "Leeren Beitrag verworfen." +#: ../../Zotlabs/Module/Rate.php:165 +msgid "Optionally explain your rating (this information is public)" +msgstr "Optional kannst du deine Bewertung erklären (öffentlich sichtbar)" -#: ../../Zotlabs/Module/Item.php:472 -msgid "Executable content type not permitted to this channel." -msgstr "Ausführbarer Content-Typ ist für diesen Kanal nicht freigegeben." +#: ../../Zotlabs/Module/Ratings.php:73 +msgid "No ratings" +msgstr "Keine Bewertungen" -#: ../../Zotlabs/Module/Item.php:856 -msgid "Duplicate post suppressed." -msgstr "Doppelter Beitrag unterdrückt." +#: ../../Zotlabs/Module/Ratings.php:104 +msgid "Rating: " +msgstr "Bewertung: " -#: ../../Zotlabs/Module/Item.php:989 -msgid "System error. Post not saved." -msgstr "Systemfehler. Beitrag nicht gespeichert." +#: ../../Zotlabs/Module/Ratings.php:105 +msgid "Website: " +msgstr "Webseite: " -#: ../../Zotlabs/Module/Item.php:1242 -msgid "Unable to obtain post information from database." -msgstr "Beitragsinformationen können nicht aus der Datenbank abgerufen werden." - -#: ../../Zotlabs/Module/Item.php:1249 -#, php-format -msgid "You have reached your limit of %1$.0f top level posts." -msgstr "Du hast die maximale Anzahl von %1$.0f Beiträgen erreicht." - -#: ../../Zotlabs/Module/Item.php:1256 -#, php-format -msgid "You have reached your limit of %1$.0f webpages." -msgstr "Du hast die maximale Anzahl von %1$.0f Webseiten erreicht." - -#: ../../Zotlabs/Module/Photos.php:82 -msgid "Page owner information could not be retrieved." -msgstr "Informationen über den Besitzer der Seite konnten nicht gefunden werden." - -#: ../../Zotlabs/Module/Photos.php:97 ../../Zotlabs/Module/Photos.php:741 -#: ../../Zotlabs/Module/Profile_photo.php:115 -#: ../../Zotlabs/Module/Profile_photo.php:212 -#: ../../Zotlabs/Module/Profile_photo.php:311 -#: ../../include/photo/photo_driver.php:718 -msgid "Profile Photos" -msgstr "Profilfotos" - -#: ../../Zotlabs/Module/Photos.php:103 ../../Zotlabs/Module/Photos.php:147 -msgid "Album not found." -msgstr "Album nicht gefunden." - -#: ../../Zotlabs/Module/Photos.php:130 -msgid "Delete Album" -msgstr "Album löschen" - -#: ../../Zotlabs/Module/Photos.php:151 -msgid "" -"Multiple storage folders exist with this album name, but within different " -"directories. Please remove the desired folder or folders using the Files " -"manager" -msgstr "Mehrere Speicherordner mit diesem Albumnamen sind bereits vorhanden, aber in verschiedenen Verzeichnissen. Bitte entfernen Sie den oder die gewünschten Ordner mit dem Dateimanager" - -#: ../../Zotlabs/Module/Photos.php:208 ../../Zotlabs/Module/Photos.php:1051 -msgid "Delete Photo" -msgstr "Foto löschen" - -#: ../../Zotlabs/Module/Photos.php:531 -msgid "No photos selected" -msgstr "Keine Fotos ausgewählt" - -#: ../../Zotlabs/Module/Photos.php:580 -msgid "Access to this item is restricted." -msgstr "Der Zugriff auf dieses Foto ist eingeschränkt." - -#: ../../Zotlabs/Module/Photos.php:619 -#, php-format -msgid "%1$.2f MB of %2$.2f MB photo storage used." -msgstr "%1$.2f MB von %2$.2f MB Foto-Speicher belegt." - -#: ../../Zotlabs/Module/Photos.php:622 -#, php-format -msgid "%1$.2f MB photo storage used." -msgstr "%1$.2f MB Foto-Speicher belegt." - -#: ../../Zotlabs/Module/Photos.php:658 -msgid "Upload Photos" -msgstr "Fotos hochladen" - -#: ../../Zotlabs/Module/Photos.php:662 -msgid "Enter an album name" -msgstr "Namen für ein neues Album eingeben" - -#: ../../Zotlabs/Module/Photos.php:663 -msgid "or select an existing album (doubleclick)" -msgstr "oder ein bereits vorhandenes auswählen (Doppelklick)" - -#: ../../Zotlabs/Module/Photos.php:664 -msgid "Create a status post for this upload" -msgstr "Einen Statusbeitrag für diesen Upload erzeugen" - -#: ../../Zotlabs/Module/Photos.php:665 -msgid "Caption (optional):" -msgstr "Beschriftung (optional):" - -#: ../../Zotlabs/Module/Photos.php:666 -msgid "Description (optional):" -msgstr "Beschreibung (optional):" - -#: ../../Zotlabs/Module/Photos.php:693 -msgid "Album name could not be decoded" -msgstr "Albumname konnte nicht dekodiert werden" - -#: ../../Zotlabs/Module/Photos.php:741 -msgid "Contact Photos" -msgstr "Kontakt-Bilder" - -#: ../../Zotlabs/Module/Photos.php:764 -msgid "Show Newest First" -msgstr "Neueste zuerst anzeigen" - -#: ../../Zotlabs/Module/Photos.php:766 -msgid "Show Oldest First" -msgstr "Älteste zuerst anzeigen" - -#: ../../Zotlabs/Module/Photos.php:790 ../../Zotlabs/Module/Photos.php:1329 -#: ../../Zotlabs/Module/Embedphotos.php:141 ../../include/widgets.php:1593 -msgid "View Photo" -msgstr "Foto ansehen" - -#: ../../Zotlabs/Module/Photos.php:821 -#: ../../Zotlabs/Module/Embedphotos.php:157 ../../include/widgets.php:1610 -msgid "Edit Album" -msgstr "Album bearbeiten" - -#: ../../Zotlabs/Module/Photos.php:868 -msgid "Permission denied. Access to this item may be restricted." -msgstr "Berechtigung verweigert. Der Zugriff ist wahrscheinlich eingeschränkt worden." - -#: ../../Zotlabs/Module/Photos.php:870 -msgid "Photo not available" -msgstr "Foto nicht verfügbar" - -#: ../../Zotlabs/Module/Photos.php:928 -msgid "Use as profile photo" -msgstr "Als Profilfoto verwenden" - -#: ../../Zotlabs/Module/Photos.php:929 -msgid "Use as cover photo" -msgstr "Als Titelbild verwenden" - -#: ../../Zotlabs/Module/Photos.php:936 -msgid "Private Photo" -msgstr "Privates Foto" - -#: ../../Zotlabs/Module/Photos.php:951 -msgid "View Full Size" -msgstr "In voller Größe anzeigen" - -#: ../../Zotlabs/Module/Photos.php:996 ../../Zotlabs/Module/Admin.php:1437 -#: ../../Zotlabs/Module/Tagrm.php:137 -msgid "Remove" -msgstr "Entfernen" - -#: ../../Zotlabs/Module/Photos.php:1030 -msgid "Edit photo" -msgstr "Foto bearbeiten" - -#: ../../Zotlabs/Module/Photos.php:1032 -msgid "Rotate CW (right)" -msgstr "Drehen im UZS (rechts)" - -#: ../../Zotlabs/Module/Photos.php:1033 -msgid "Rotate CCW (left)" -msgstr "Drehen gegen UZS (links)" - -#: ../../Zotlabs/Module/Photos.php:1036 -msgid "Enter a new album name" -msgstr "Gib einen Namen für ein neues Album ein" - -#: ../../Zotlabs/Module/Photos.php:1037 -msgid "or select an existing one (doubleclick)" -msgstr "oder wähle ein bereits vorhandenes aus (Doppelklick)" - -#: ../../Zotlabs/Module/Photos.php:1040 -msgid "Caption" -msgstr "Bildunterschrift" - -#: ../../Zotlabs/Module/Photos.php:1042 -msgid "Add a Tag" -msgstr "Schlagwort hinzufügen" - -#: ../../Zotlabs/Module/Photos.php:1046 -msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" -msgstr "Beispiele: @ben, @Karl_Prester, @lieschen@example.com" - -#: ../../Zotlabs/Module/Photos.php:1049 -msgid "Flag as adult in album view" -msgstr "In der Albumansicht als nicht jugendfrei markieren" - -#: ../../Zotlabs/Module/Photos.php:1068 ../../Zotlabs/Lib/ThreadItem.php:261 -msgid "I like this (toggle)" -msgstr "Mir gefällt das (Umschalter)" - -#: ../../Zotlabs/Module/Photos.php:1069 ../../Zotlabs/Lib/ThreadItem.php:262 -msgid "I don't like this (toggle)" -msgstr "Mir gefällt das nicht (Umschalter)" - -#: ../../Zotlabs/Module/Photos.php:1071 ../../Zotlabs/Lib/ThreadItem.php:397 -#: ../../include/conversation.php:743 -msgid "Please wait" -msgstr "Bitte warten" - -#: ../../Zotlabs/Module/Photos.php:1087 ../../Zotlabs/Module/Photos.php:1205 -#: ../../Zotlabs/Lib/ThreadItem.php:707 -msgid "This is you" -msgstr "Das bist Du" - -#: ../../Zotlabs/Module/Photos.php:1089 ../../Zotlabs/Module/Photos.php:1207 -#: ../../Zotlabs/Lib/ThreadItem.php:709 ../../include/js_strings.php:6 -msgid "Comment" -msgstr "Kommentar" - -#: ../../Zotlabs/Module/Photos.php:1105 ../../include/conversation.php:577 -msgctxt "title" -msgid "Likes" -msgstr "Gefällt mir" - -#: ../../Zotlabs/Module/Photos.php:1105 ../../include/conversation.php:577 -msgctxt "title" -msgid "Dislikes" -msgstr "Gefällt mir nicht" - -#: ../../Zotlabs/Module/Photos.php:1106 ../../include/conversation.php:578 -msgctxt "title" -msgid "Agree" -msgstr "Zustimmungen" - -#: ../../Zotlabs/Module/Photos.php:1106 ../../include/conversation.php:578 -msgctxt "title" -msgid "Disagree" -msgstr "Ablehnungen" - -#: ../../Zotlabs/Module/Photos.php:1106 ../../include/conversation.php:578 -msgctxt "title" -msgid "Abstain" -msgstr "Enthaltungen" - -#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:579 -msgctxt "title" -msgid "Attending" -msgstr "Zusagen" - -#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:579 -msgctxt "title" -msgid "Not attending" -msgstr "Absagen" - -#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:579 -msgctxt "title" -msgid "Might attend" -msgstr "Vielleicht" - -#: ../../Zotlabs/Module/Photos.php:1124 ../../Zotlabs/Module/Photos.php:1136 -#: ../../Zotlabs/Lib/ThreadItem.php:181 ../../Zotlabs/Lib/ThreadItem.php:193 -#: ../../include/conversation.php:1738 -msgid "View all" -msgstr "Alles anzeigen" - -#: ../../Zotlabs/Module/Photos.php:1128 ../../Zotlabs/Lib/ThreadItem.php:185 -#: ../../include/taxonomy.php:403 ../../include/channel.php:1198 -#: ../../include/conversation.php:1762 -msgctxt "noun" -msgid "Like" -msgid_plural "Likes" -msgstr[0] "Gefällt mir" -msgstr[1] "Gefällt mir" - -#: ../../Zotlabs/Module/Photos.php:1133 ../../Zotlabs/Lib/ThreadItem.php:190 -#: ../../include/conversation.php:1765 -msgctxt "noun" -msgid "Dislike" -msgid_plural "Dislikes" -msgstr[0] "Gefällt nicht" -msgstr[1] "Gefällt nicht" - -#: ../../Zotlabs/Module/Photos.php:1233 -msgid "Photo Tools" -msgstr "Fotowerkzeuge" - -#: ../../Zotlabs/Module/Photos.php:1242 -msgid "In This Photo:" -msgstr "Auf diesem Foto:" - -#: ../../Zotlabs/Module/Photos.php:1247 -msgid "Map" -msgstr "Karte" - -#: ../../Zotlabs/Module/Photos.php:1255 ../../Zotlabs/Lib/ThreadItem.php:386 -msgctxt "noun" -msgid "Likes" -msgstr "Gefällt mir" - -#: ../../Zotlabs/Module/Photos.php:1256 ../../Zotlabs/Lib/ThreadItem.php:387 -msgctxt "noun" -msgid "Dislikes" -msgstr "Gefällt nicht" - -#: ../../Zotlabs/Module/Photos.php:1261 ../../Zotlabs/Lib/ThreadItem.php:392 -#: ../../include/acl_selectors.php:283 -msgid "Close" -msgstr "Schließen" - -#: ../../Zotlabs/Module/Photos.php:1335 -msgid "View Album" -msgstr "Album ansehen" - -#: ../../Zotlabs/Module/Photos.php:1346 ../../Zotlabs/Module/Photos.php:1359 -#: ../../Zotlabs/Module/Photos.php:1360 -msgid "Recent Photos" -msgstr "Neueste Fotos" - -#: ../../Zotlabs/Module/Lockview.php:75 -msgid "Remote privacy information not available." -msgstr "Privatsphäre-Einstellungen anderer Nutzer sind nicht verfügbar." - -#: ../../Zotlabs/Module/Lockview.php:96 -msgid "Visible to:" -msgstr "Sichtbar für:" - -#: ../../Zotlabs/Module/Import_items.php:104 -msgid "Import completed" -msgstr "Import abgeschlossen" - -#: ../../Zotlabs/Module/Import_items.php:119 -msgid "Import Items" -msgstr "Beiträge importieren" - -#: ../../Zotlabs/Module/Import_items.php:120 -msgid "" -"Use this form to import existing posts and content from an export file." -msgstr "Mit diesem Formular kannst Du existierende Beiträge und Inhalte aus einer Sicherungsdatei importieren." - -#: ../../Zotlabs/Module/Invite.php:29 -msgid "Total invitation limit exceeded." -msgstr "Einladungslimit überschritten." - -#: ../../Zotlabs/Module/Invite.php:53 -#, php-format -msgid "%s : Not a valid email address." -msgstr "%s : Keine gültige Email Adresse." - -#: ../../Zotlabs/Module/Invite.php:63 -msgid "Please join us on $Projectname" -msgstr "Schließe Dich uns auf $Projectname an!" - -#: ../../Zotlabs/Module/Invite.php:74 -msgid "Invitation limit exceeded. Please contact your site administrator." -msgstr "Einladungslimit überschritten. Bitte kontaktiere den Administrator Deines $Projectname-Servers." - -#: ../../Zotlabs/Module/Invite.php:79 -#, php-format -msgid "%s : Message delivery failed." -msgstr "%s : Nachricht konnte nicht zugestellt werden." - -#: ../../Zotlabs/Module/Invite.php:83 -#, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "%d Nachricht gesendet." -msgstr[1] "%d Nachrichten gesendet." - -#: ../../Zotlabs/Module/Invite.php:102 -msgid "You have no more invitations available" -msgstr "Du hast keine weiteren verfügbare Einladungen" - -#: ../../Zotlabs/Module/Invite.php:133 -msgid "Send invitations" -msgstr "Einladungen senden" - -#: ../../Zotlabs/Module/Invite.php:134 -msgid "Enter email addresses, one per line:" -msgstr "Email-Adressen eintragen, eine pro Zeile:" - -#: ../../Zotlabs/Module/Invite.php:135 ../../Zotlabs/Module/Mail.php:241 -msgid "Your message:" -msgstr "Deine Nachricht:" - -#: ../../Zotlabs/Module/Invite.php:136 -msgid "Please join my community on $Projectname." -msgstr "Schließe Dich uns auf $Projectname an!" - -#: ../../Zotlabs/Module/Invite.php:138 -msgid "You will need to supply this invitation code:" -msgstr "Bitte verwende bei der Registrierung den folgenden Einladungscode:" - -#: ../../Zotlabs/Module/Invite.php:139 -msgid "" -"1. Register at any $Projectname location (they are all inter-connected)" -msgstr "1. Registriere Dich auf einem beliebigen $Projectname-Hub (sie sind alle miteinander verbunden)" - -#: ../../Zotlabs/Module/Invite.php:141 -msgid "2. Enter my $Projectname network address into the site searchbar." -msgstr "2. Gib meine $Projectname-Adresse im Suchfeld ein." - -#: ../../Zotlabs/Module/Invite.php:142 -msgid "or visit" -msgstr "oder besuche" - -#: ../../Zotlabs/Module/Invite.php:144 -msgid "3. Click [Connect]" -msgstr "3. Klicke auf [Verbinden]" - -#: ../../Zotlabs/Module/Locs.php:25 ../../Zotlabs/Module/Locs.php:54 -msgid "Location not found." -msgstr "Klon nicht gefunden." - -#: ../../Zotlabs/Module/Locs.php:62 -msgid "Location lookup failed." -msgstr "Nachschlagen des Kanal-Ortes fehlgeschlagen" - -#: ../../Zotlabs/Module/Locs.php:66 -msgid "" -"Please select another location to become primary before removing the primary" -" location." -msgstr "Bitte mache einen anderen Kanal-Ort zum primären Ort, bevor Du den primären Ort löschst." - -#: ../../Zotlabs/Module/Locs.php:95 -msgid "Syncing locations" -msgstr "Synchronisiere Klone" - -#: ../../Zotlabs/Module/Locs.php:105 -msgid "No locations found." -msgstr "Keine Klon-Adressen gefunden." - -#: ../../Zotlabs/Module/Locs.php:116 -msgid "Manage Channel Locations" -msgstr "Klon-Adressen verwalten" - -#: ../../Zotlabs/Module/Locs.php:119 -msgid "Primary" -msgstr "Primär" - -#: ../../Zotlabs/Module/Locs.php:120 ../../Zotlabs/Module/Menu.php:113 -msgid "Drop" -msgstr "Löschen" - -#: ../../Zotlabs/Module/Locs.php:122 -msgid "Sync Now" -msgstr "Jetzt synchronisieren" - -#: ../../Zotlabs/Module/Locs.php:123 -msgid "Please wait several minutes between consecutive operations." -msgstr "Bitte warte mehrere Minuten zwischen dem Ausführen zweier Operationen!" - -#: ../../Zotlabs/Module/Locs.php:124 -msgid "" -"When possible, drop a location by logging into that website/hub and removing" -" your channel." -msgstr "Wenn möglich, lösche einen Klon, indem Du Dich auf dem jeweiligen Hub einloggst und den Kanal dort löschst." - -#: ../../Zotlabs/Module/Locs.php:125 -msgid "Use this form to drop the location if the hub is no longer operating." -msgstr "Benutze dieses Formular zum Löschen eines Klons, wenn es den Hub nicht mehr gibt." - -#: ../../Zotlabs/Module/Magic.php:71 -msgid "Hub not found." -msgstr "Server nicht gefunden." - -#: ../../Zotlabs/Module/Mail.php:38 -msgid "Unable to lookup recipient." -msgstr "Konnte den Empfänger nicht finden." - -#: ../../Zotlabs/Module/Mail.php:45 -msgid "Unable to communicate with requested channel." -msgstr "Die Kommunikation mit dem ausgewählten Kanal ist fehlgeschlagen." - -#: ../../Zotlabs/Module/Mail.php:52 -msgid "Cannot verify requested channel." -msgstr "Verifizierung des angeforderten Kanals fehlgeschlagen." - -#: ../../Zotlabs/Module/Mail.php:70 -msgid "Selected channel has private message restrictions. Send failed." -msgstr "Der ausgewählte Kanal hat Einschränkungen bzgl. privater Nachrichten. Senden fehlgeschlagen." - -#: ../../Zotlabs/Module/Mail.php:135 -msgid "Messages" -msgstr "Nachrichten" - -#: ../../Zotlabs/Module/Mail.php:170 -msgid "Message recalled." -msgstr "Nachricht widerrufen." - -#: ../../Zotlabs/Module/Mail.php:183 -msgid "Conversation removed." -msgstr "Unterhaltung gelöscht." - -#: ../../Zotlabs/Module/Mail.php:198 ../../Zotlabs/Module/Mail.php:307 -msgid "Expires YYYY-MM-DD HH:MM" -msgstr "Verfällt YYYY-MM-DD HH;MM" - -#: ../../Zotlabs/Module/Mail.php:226 -msgid "Requested channel is not in this network" -msgstr "Angeforderter Kanal ist nicht in diesem Netzwerk." - -#: ../../Zotlabs/Module/Mail.php:234 -msgid "Send Private Message" -msgstr "Private Nachricht senden" - -#: ../../Zotlabs/Module/Mail.php:235 ../../Zotlabs/Module/Mail.php:360 -msgid "To:" -msgstr "An:" - -#: ../../Zotlabs/Module/Mail.php:238 ../../Zotlabs/Module/Mail.php:362 -msgid "Subject:" -msgstr "Betreff:" - -#: ../../Zotlabs/Module/Mail.php:243 ../../Zotlabs/Module/Mail.php:368 -#: ../../include/conversation.php:1231 -msgid "Attach file" -msgstr "Datei anhängen" - -#: ../../Zotlabs/Module/Mail.php:245 -msgid "Send" -msgstr "Absenden" - -#: ../../Zotlabs/Module/Mail.php:248 ../../Zotlabs/Module/Mail.php:373 -#: ../../include/conversation.php:1266 -msgid "Set expiration date" -msgstr "Verfallsdatum" - -#: ../../Zotlabs/Module/Mail.php:332 -msgid "Delete message" -msgstr "Nachricht löschen" - -#: ../../Zotlabs/Module/Mail.php:333 -msgid "Delivery report" -msgstr "Zustellungsbericht" - -#: ../../Zotlabs/Module/Mail.php:334 -msgid "Recall message" -msgstr "Nachricht widerrufen" - -#: ../../Zotlabs/Module/Mail.php:336 -msgid "Message has been recalled." -msgstr "Die Nachricht wurde widerrufen." - -#: ../../Zotlabs/Module/Mail.php:353 -msgid "Delete Conversation" -msgstr "Unterhaltung löschen" - -#: ../../Zotlabs/Module/Mail.php:355 -msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." -msgstr "Keine sichere Kommunikation verfügbar. Eventuell kannst Du auf der Profilseite des Absenders antworten." - -#: ../../Zotlabs/Module/Mail.php:359 -msgid "Send Reply" -msgstr "Antwort senden" - -#: ../../Zotlabs/Module/Mail.php:364 -#, php-format -msgid "Your message for %s (%s):" -msgstr "Deine Nachricht für %s (%s):" - -#: ../../Zotlabs/Module/Manage.php:136 -#: ../../Zotlabs/Module/New_channel.php:121 -#, php-format -msgid "You have created %1$.0f of %2$.0f allowed channels." -msgstr "Du hast %1$.0f von maximal %2$.0f erlaubten Kanälen eingerichtet." - -#: ../../Zotlabs/Module/Manage.php:143 -msgid "Create a new channel" -msgstr "Neuen Kanal anlegen" - -#: ../../Zotlabs/Module/Manage.php:164 ../../Zotlabs/Lib/Apps.php:214 -#: ../../include/nav.php:208 -msgid "Channel Manager" -msgstr "Kanal-Manager" - -#: ../../Zotlabs/Module/Manage.php:165 -msgid "Current Channel" -msgstr "Aktueller Kanal" - -#: ../../Zotlabs/Module/Manage.php:167 -msgid "Switch to one of your channels by selecting it." -msgstr "Wechsle zu einem Deiner Kanäle, indem Du auf ihn klickst." - -#: ../../Zotlabs/Module/Manage.php:168 -msgid "Default Channel" -msgstr "Standard Kanal" - -#: ../../Zotlabs/Module/Manage.php:169 -msgid "Make Default" -msgstr "Zum Standard machen" - -#: ../../Zotlabs/Module/Manage.php:172 -#, php-format -msgid "%d new messages" -msgstr "%d neue Nachrichten" - -#: ../../Zotlabs/Module/Manage.php:173 -#, php-format -msgid "%d new introductions" -msgstr "%d neue Vorstellungen" - -#: ../../Zotlabs/Module/Manage.php:175 -msgid "Delegated Channel" -msgstr "Delegierte Kanäle" - -#: ../../Zotlabs/Module/Menu.php:49 -msgid "Unable to update menu." -msgstr "Kann Menü nicht aktualisieren." - -#: ../../Zotlabs/Module/Menu.php:60 -msgid "Unable to create menu." -msgstr "Kann Menü nicht erstellen." - -#: ../../Zotlabs/Module/Menu.php:98 ../../Zotlabs/Module/Menu.php:110 -msgid "Menu Name" -msgstr "Name des Menüs" - -#: ../../Zotlabs/Module/Menu.php:98 -msgid "Unique name (not visible on webpage) - required" -msgstr "Eindeutiger Name (nicht sichtbar auf der Webseite) – erforderlich" - -#: ../../Zotlabs/Module/Menu.php:99 ../../Zotlabs/Module/Menu.php:111 -msgid "Menu Title" -msgstr "Menütitel" - -#: ../../Zotlabs/Module/Menu.php:99 -msgid "Visible on webpage - leave empty for no title" -msgstr "Sichtbar auf der Webseite – für keinen Titel leer lassen" - -#: ../../Zotlabs/Module/Menu.php:100 -msgid "Allow Bookmarks" -msgstr "Lesezeichen erlauben" - -#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 -msgid "Menu may be used to store saved bookmarks" -msgstr "Im Menü können gespeicherte Lesezeichen abgelegt werden" - -#: ../../Zotlabs/Module/Menu.php:101 ../../Zotlabs/Module/Menu.php:159 -msgid "Submit and proceed" -msgstr "Absenden und fortfahren" - -#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2239 -msgid "Menus" -msgstr "Menüs" - -#: ../../Zotlabs/Module/Menu.php:117 -msgid "Bookmarks allowed" -msgstr "Lesezeichen erlaubt" - -#: ../../Zotlabs/Module/Menu.php:119 -msgid "Delete this menu" -msgstr "Lösche dieses Menü" - -#: ../../Zotlabs/Module/Menu.php:120 ../../Zotlabs/Module/Menu.php:154 -msgid "Edit menu contents" -msgstr "Bearbeite Menü Inhalte" - -#: ../../Zotlabs/Module/Menu.php:121 -msgid "Edit this menu" -msgstr "Dieses Menü bearbeiten" - -#: ../../Zotlabs/Module/Menu.php:136 -msgid "Menu could not be deleted." -msgstr "Menü konnte nicht gelöscht werden." - -#: ../../Zotlabs/Module/Menu.php:144 ../../Zotlabs/Module/Mitem.php:28 -msgid "Menu not found." -msgstr "Menü nicht gefunden" - -#: ../../Zotlabs/Module/Menu.php:149 -msgid "Edit Menu" -msgstr "Menü bearbeiten" - -#: ../../Zotlabs/Module/Menu.php:153 -msgid "Add or remove entries to this menu" -msgstr "Einträge zu diesem Menü hinzufügen oder entfernen" - -#: ../../Zotlabs/Module/Menu.php:155 -msgid "Menu name" -msgstr "Menü Name" - -#: ../../Zotlabs/Module/Menu.php:155 -msgid "Must be unique, only seen by you" -msgstr "Muss eindeutig sein, ist aber nur für Dich sichtbar" - -#: ../../Zotlabs/Module/Menu.php:156 -msgid "Menu title" -msgstr "Menü Titel" - -#: ../../Zotlabs/Module/Menu.php:156 -msgid "Menu title as seen by others" -msgstr "Menü Titel wie er von anderen gesehen wird" - -#: ../../Zotlabs/Module/Menu.php:157 -msgid "Allow bookmarks" -msgstr "Erlaube Lesezeichen" - -#: ../../Zotlabs/Module/Menu.php:166 ../../Zotlabs/Module/Mitem.php:120 -#: ../../Zotlabs/Module/Xchan.php:41 -msgid "Not found." -msgstr "Nicht gefunden." - -#: ../../Zotlabs/Module/Lostpass.php:19 -msgid "No valid account found." -msgstr "Kein gültiges Konto gefunden." - -#: ../../Zotlabs/Module/Lostpass.php:33 -msgid "Password reset request issued. Check your email." -msgstr "Zurücksetzen des Passworts eingeleitet. Schau in Deine E-Mails." - -#: ../../Zotlabs/Module/Lostpass.php:39 ../../Zotlabs/Module/Lostpass.php:107 -#, php-format -msgid "Site Member (%s)" -msgstr "Nutzer (%s)" - -#: ../../Zotlabs/Module/Lostpass.php:44 -#, php-format -msgid "Password reset requested at %s" -msgstr "Passwort-Rücksetzung auf %s angefordert" - -#: ../../Zotlabs/Module/Lostpass.php:67 -msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." -msgstr "Die Anfrage konnte nicht verifiziert werden. (Vielleicht hast Du schon einmal auf den Link in der E-Mail geklickt?) Passwort-Rücksetzung fehlgeschlagen." - -#: ../../Zotlabs/Module/Lostpass.php:90 ../../boot.php:1712 -msgid "Password Reset" -msgstr "Zurücksetzen des Kennworts" - -#: ../../Zotlabs/Module/Lostpass.php:91 -msgid "Your password has been reset as requested." -msgstr "Dein Passwort wurde wie angefordert neu erstellt." - -#: ../../Zotlabs/Module/Lostpass.php:92 -msgid "Your new password is" -msgstr "Dein neues Passwort lautet" - -#: ../../Zotlabs/Module/Lostpass.php:93 -msgid "Save or copy your new password - and then" -msgstr "Speichere oder kopiere Dein neues Passwort – und dann" - -#: ../../Zotlabs/Module/Lostpass.php:94 -msgid "click here to login" -msgstr "Klicke hier, um dich anzumelden" - -#: ../../Zotlabs/Module/Lostpass.php:95 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." -msgstr "Dein Passwort kann unter Einstellungen nach einer erfolgreichen Anmeldung geändert werden." - -#: ../../Zotlabs/Module/Lostpass.php:112 -#, php-format -msgid "Your password has changed at %s" -msgstr "Auf %s wurde Dein Passwort geändert" - -#: ../../Zotlabs/Module/Lostpass.php:127 -msgid "Forgot your Password?" -msgstr "Kennwort vergessen?" - -#: ../../Zotlabs/Module/Lostpass.php:128 -msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." -msgstr "Gib Deine E-Mail-Adresse ein, um Dein Passwort zurücksetzen zu lassen. Du erhältst dann weitere Anweisungen per E-Mail." - -#: ../../Zotlabs/Module/Lostpass.php:129 -msgid "Email Address" -msgstr "E-Mail Adresse" - -#: ../../Zotlabs/Module/Lostpass.php:130 -msgid "Reset" -msgstr "Zurücksetzen" - -#: ../../Zotlabs/Module/Mood.php:67 ../../include/conversation.php:260 -#, php-format -msgctxt "mood" -msgid "%1$s is %2$s" -msgstr "%1$s ist %2$s" - -#: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Lib/Apps.php:227 -msgid "Mood" -msgstr "Laune" - -#: ../../Zotlabs/Module/Mood.php:136 -msgid "Set your current mood and tell your friends" -msgstr "Wähle Deine aktuelle Stimmung und teile sie mit Deinen Freunden" - -#: ../../Zotlabs/Module/Network.php:94 -msgid "No such group" -msgstr "Gruppe nicht gefunden" - -#: ../../Zotlabs/Module/Network.php:134 -msgid "No such channel" -msgstr "Kanal nicht gefunden" - -#: ../../Zotlabs/Module/Network.php:139 -msgid "forum" -msgstr "Forum" - -#: ../../Zotlabs/Module/Network.php:151 -msgid "Search Results For:" -msgstr "Suchergebnisse für:" - -#: ../../Zotlabs/Module/Network.php:215 -msgid "Privacy group is empty" -msgstr "Gruppe ist leer" - -#: ../../Zotlabs/Module/Network.php:224 -msgid "Privacy group: " -msgstr "Gruppe:" - -#: ../../Zotlabs/Module/Network.php:250 -msgid "Invalid connection." -msgstr "Ungültige Verbindung." - -#: ../../Zotlabs/Module/Notify.php:57 -#: ../../Zotlabs/Module/Notifications.php:98 -msgid "No more system notifications." -msgstr "Keine System-Benachrichtigungen mehr." - -#: ../../Zotlabs/Module/Notify.php:61 -#: ../../Zotlabs/Module/Notifications.php:102 -msgid "System Notifications" -msgstr "System-Benachrichtigungen" - -#: ../../Zotlabs/Module/Match.php:26 -msgid "Profile Match" -msgstr "Profil-Übereinstimmungen" - -#: ../../Zotlabs/Module/Match.php:35 -msgid "No keywords to match. Please add keywords to your default profile." -msgstr "Keine Schlüsselwörter für den Abgleich gefunden. Bitte füge Schlüsselwörter zu Deinem Standardprofil hinzu." - -#: ../../Zotlabs/Module/Match.php:67 -msgid "is interested in:" -msgstr "interessiert sich für:" - -#: ../../Zotlabs/Module/Match.php:74 -msgid "No matches" -msgstr "Keine Übereinstimmungen" - -#: ../../Zotlabs/Module/Channel.php:40 -msgid "Posts and comments" -msgstr "Beiträge und Kommentare" - -#: ../../Zotlabs/Module/Channel.php:41 -msgid "Only posts" -msgstr "Nur Beiträge" - -#: ../../Zotlabs/Module/Channel.php:101 -msgid "Insufficient permissions. Request redirected to profile page." -msgstr "Unzureichende Zugriffsrechte. Die Anfrage wurde zur Profil-Seite umgeleitet." - -#: ../../Zotlabs/Module/Mitem.php:52 -msgid "Unable to create element." -msgstr "Element konnte nicht erstellt werden." - -#: ../../Zotlabs/Module/Mitem.php:76 -msgid "Unable to update menu element." -msgstr "Kann Menü-Element nicht aktualisieren." - -#: ../../Zotlabs/Module/Mitem.php:92 -msgid "Unable to add menu element." -msgstr "Kann Menü-Bestandteil nicht hinzufügen." - -#: ../../Zotlabs/Module/Mitem.php:153 ../../Zotlabs/Module/Mitem.php:226 -msgid "Menu Item Permissions" -msgstr "Zugriffsrechte des Menü-Elements" - -#: ../../Zotlabs/Module/Mitem.php:154 ../../Zotlabs/Module/Mitem.php:227 -#: ../../Zotlabs/Module/Settings.php:1163 -msgid "(click to open/close)" -msgstr "(zum öffnen/schließen anklicken)" - -#: ../../Zotlabs/Module/Mitem.php:156 ../../Zotlabs/Module/Mitem.php:172 -msgid "Link Name" -msgstr "Name des Links" - -#: ../../Zotlabs/Module/Mitem.php:157 ../../Zotlabs/Module/Mitem.php:231 -msgid "Link or Submenu Target" -msgstr "Ziel des Links oder Untermenüs" - -#: ../../Zotlabs/Module/Mitem.php:157 -msgid "Enter URL of the link or select a menu name to create a submenu" -msgstr "URL des Links eingeben oder Menünamen wählen, um ein Untermenü anzulegen." - -#: ../../Zotlabs/Module/Mitem.php:158 ../../Zotlabs/Module/Mitem.php:232 -msgid "Use magic-auth if available" -msgstr "Magic-Auth verwenden, falls verfügbar" - -#: ../../Zotlabs/Module/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:233 -msgid "Open link in new window" -msgstr "Öffne Link in neuem Fenster" - -#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:234 -msgid "Order in list" -msgstr "Reihenfolge in der Liste" - -#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:234 -msgid "Higher numbers will sink to bottom of listing" -msgstr "Größere Nummern werden weiter unten in der Auflistung einsortiert" - -#: ../../Zotlabs/Module/Mitem.php:161 -msgid "Submit and finish" -msgstr "Absenden und fertigstellen" - -#: ../../Zotlabs/Module/Mitem.php:162 -msgid "Submit and continue" -msgstr "Absenden und fortfahren" - -#: ../../Zotlabs/Module/Mitem.php:170 -msgid "Menu:" -msgstr "Menü:" - -#: ../../Zotlabs/Module/Mitem.php:173 -msgid "Link Target" -msgstr "Ziel des Links" - -#: ../../Zotlabs/Module/Mitem.php:176 -msgid "Edit menu" -msgstr "Menü bearbeiten" - -#: ../../Zotlabs/Module/Mitem.php:179 -msgid "Edit element" -msgstr "Bestandteil bearbeiten" - -#: ../../Zotlabs/Module/Mitem.php:180 -msgid "Drop element" -msgstr "Bestandteil löschen" - -#: ../../Zotlabs/Module/Mitem.php:181 -msgid "New element" -msgstr "Neues Bestandteil" - -#: ../../Zotlabs/Module/Mitem.php:182 -msgid "Edit this menu container" -msgstr "Diesen Menü-Container bearbeiten" - -#: ../../Zotlabs/Module/Mitem.php:183 -msgid "Add menu element" -msgstr "Menüelement hinzufügen" - -#: ../../Zotlabs/Module/Mitem.php:184 -msgid "Delete this menu item" -msgstr "Lösche dieses Menü-Bestandteil" - -#: ../../Zotlabs/Module/Mitem.php:185 -msgid "Edit this menu item" -msgstr "Bearbeite dieses Menü-Bestandteil" - -#: ../../Zotlabs/Module/Mitem.php:202 -msgid "Menu item not found." -msgstr "Menü-Bestandteil nicht gefunden." - -#: ../../Zotlabs/Module/Mitem.php:215 -msgid "Menu item deleted." -msgstr "Menü-Bestandteil gelöscht." - -#: ../../Zotlabs/Module/Mitem.php:217 -msgid "Menu item could not be deleted." -msgstr "Menü-Bestandteil kann nicht gelöscht werden." - -#: ../../Zotlabs/Module/Mitem.php:224 -msgid "Edit Menu Element" -msgstr "Bearbeite Menü-Bestandteil" - -#: ../../Zotlabs/Module/Mitem.php:230 -msgid "Link text" -msgstr "Link Text" +#: ../../Zotlabs/Module/Ratings.php:107 +msgid "Description: " +msgstr "Beschreibung: " #: ../../Zotlabs/Module/Admin.php:77 msgid "Theme settings updated." @@ -3587,11 +3680,11 @@ msgstr "Repository-Version (dev)" msgid "Site settings updated." msgstr "Site-Einstellungen aktualisiert." -#: ../../Zotlabs/Module/Admin.php:400 ../../include/text.php:2829 +#: ../../Zotlabs/Module/Admin.php:400 ../../include/text.php:2841 msgid "Default" msgstr "Standard" -#: ../../Zotlabs/Module/Admin.php:410 ../../Zotlabs/Module/Settings.php:899 +#: ../../Zotlabs/Module/Admin.php:410 ../../Zotlabs/Module/Settings.php:798 msgid "mobile" msgstr "mobil" @@ -3623,7 +3716,7 @@ msgstr "Meine Seite hat nur freien Zugriff" msgid "My site offers free accounts with optional paid upgrades" msgstr "Mein Server bietet kostenlose Konten mit der Möglichkeit zu bezahlten Upgrades" -#: ../../Zotlabs/Module/Admin.php:491 ../../include/widgets.php:1476 +#: ../../Zotlabs/Module/Admin.php:491 ../../include/widgets.php:1382 msgid "Site" msgstr "Seite" @@ -3911,12 +4004,12 @@ msgid "0 for no expiration of imported content" msgstr "0 = keine Löschung importierter Inhalte" #: ../../Zotlabs/Module/Admin.php:677 ../../Zotlabs/Module/Admin.php:678 -#: ../../Zotlabs/Module/Settings.php:823 +#: ../../Zotlabs/Module/Settings.php:722 msgid "Off" msgstr "Aus" #: ../../Zotlabs/Module/Admin.php:677 ../../Zotlabs/Module/Admin.php:678 -#: ../../Zotlabs/Module/Settings.php:823 +#: ../../Zotlabs/Module/Settings.php:722 msgid "On" msgstr "An" @@ -3973,7 +4066,7 @@ msgid "" "embedded content from that site is explicitly blocked." msgstr "Alle anderen eingebetteten Inhalte werden gefiltert, es sei denn, eingebettete Inhalte von einer bestimmten Seite sind explizit blockiert." -#: ../../Zotlabs/Module/Admin.php:756 ../../include/widgets.php:1479 +#: ../../Zotlabs/Module/Admin.php:756 ../../include/widgets.php:1385 msgid "Security" msgstr "Sicherheit" @@ -4141,7 +4234,7 @@ msgid "Account '%s' unblocked" msgstr "Konto '%s' freigegeben" #: ../../Zotlabs/Module/Admin.php:1031 ../../Zotlabs/Module/Admin.php:1044 -#: ../../include/widgets.php:1477 +#: ../../include/widgets.php:1383 msgid "Accounts" msgstr "Konten" @@ -4247,7 +4340,7 @@ msgstr "Code für Kanal '%s' freigegeben" msgid "Channel '%s' code disallowed" msgstr "Code für Kanal '%s' gesperrt" -#: ../../Zotlabs/Module/Admin.php:1210 ../../include/widgets.php:1478 +#: ../../Zotlabs/Module/Admin.php:1210 ../../include/widgets.php:1384 msgid "Channels" msgstr "Kanäle" @@ -4267,7 +4360,7 @@ msgstr "Code erlauben" msgid "Disallow Code" msgstr "Code sperren" -#: ../../Zotlabs/Module/Admin.php:1218 ../../include/conversation.php:1626 +#: ../../Zotlabs/Module/Admin.php:1218 ../../include/conversation.php:1611 msgid "Channel" msgstr "Kanal" @@ -4306,7 +4399,7 @@ msgid "Enable" msgstr "Aktivieren" #: ../../Zotlabs/Module/Admin.php:1330 ../../Zotlabs/Module/Admin.php:1420 -#: ../../include/widgets.php:1481 +#: ../../include/widgets.php:1387 msgid "Plugins" msgstr "Plug-Ins" @@ -4315,8 +4408,8 @@ msgid "Toggle" msgstr "Umschalten" #: ../../Zotlabs/Module/Admin.php:1332 ../../Zotlabs/Module/Admin.php:1615 -#: ../../Zotlabs/Lib/Apps.php:216 ../../include/nav.php:210 -#: ../../include/widgets.php:647 +#: ../../Zotlabs/Lib/Apps.php:215 ../../include/widgets.php:638 +#: ../../include/nav.php:208 msgid "Settings" msgstr "Einstellungen" @@ -4372,7 +4465,7 @@ msgstr "Plugin-Repository herunterladen" msgid "Install new repo" msgstr "Neues Repository installieren" -#: ../../Zotlabs/Module/Admin.php:1405 ../../Zotlabs/Lib/Apps.php:334 +#: ../../Zotlabs/Module/Admin.php:1405 ../../Zotlabs/Lib/Apps.php:330 msgid "Install" msgstr "Installieren" @@ -4388,8 +4481,8 @@ msgstr "Installierte Plugin-Repositorien" msgid "Install a New Plugin Repository" msgstr "Ein neues Plugin-Repository installieren" -#: ../../Zotlabs/Module/Admin.php:1435 ../../Zotlabs/Module/Settings.php:72 -#: ../../Zotlabs/Module/Settings.php:670 ../../Zotlabs/Lib/Apps.php:334 +#: ../../Zotlabs/Module/Admin.php:1435 ../../Zotlabs/Module/Settings.php:77 +#: ../../Zotlabs/Module/Settings.php:616 ../../Zotlabs/Lib/Apps.php:330 msgid "Update" msgstr "Aktualisieren" @@ -4406,7 +4499,7 @@ msgid "Screenshot" msgstr "Bildschirmfoto" #: ../../Zotlabs/Module/Admin.php:1613 ../../Zotlabs/Module/Admin.php:1647 -#: ../../include/widgets.php:1482 +#: ../../include/widgets.php:1388 msgid "Themes" msgstr "Themes" @@ -4422,8 +4515,8 @@ msgstr "[Nicht unterstützt]" msgid "Log settings updated." msgstr "Protokoll-Einstellungen aktualisiert." -#: ../../Zotlabs/Module/Admin.php:1732 ../../include/widgets.php:1503 -#: ../../include/widgets.php:1513 +#: ../../Zotlabs/Module/Admin.php:1732 ../../include/widgets.php:1409 +#: ../../include/widgets.php:1419 msgid "Logs" msgstr "Protokolle" @@ -4489,7 +4582,7 @@ msgstr "Feld-Definition nicht gefunden" msgid "Edit Profile Field" msgstr "Profilfeld bearbeiten" -#: ../../Zotlabs/Module/Admin.php:2106 ../../include/widgets.php:1484 +#: ../../Zotlabs/Module/Admin.php:2106 ../../include/widgets.php:1390 msgid "Profile Fields" msgstr "Profil Felder" @@ -4517,384 +4610,57 @@ msgstr "Benutzerdefinierte Felder" msgid "Create Custom Field" msgstr "Erstelle benutzerdefiniertes Feld" -#: ../../Zotlabs/Module/New_channel.php:128 -#: ../../Zotlabs/Module/Register.php:231 -msgid "Name or caption" -msgstr "Name oder Titel" +#: ../../Zotlabs/Module/Appman.php:37 ../../Zotlabs/Module/Appman.php:53 +msgid "App installed." +msgstr "App installiert." -#: ../../Zotlabs/Module/New_channel.php:128 -#: ../../Zotlabs/Module/Register.php:231 -msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\"" -msgstr "Beispiele: „Horst Weidinger“, „Lisa und ihr Meerschweinchen“, „Fußball“, „Segelflieger-Forum“ " +#: ../../Zotlabs/Module/Appman.php:46 +msgid "Malformed app." +msgstr "Fehlerhafte App." -#: ../../Zotlabs/Module/New_channel.php:130 -#: ../../Zotlabs/Module/Register.php:233 -msgid "Choose a short nickname" -msgstr "Wähle einen kurzen Spitznamen" +#: ../../Zotlabs/Module/Appman.php:104 +msgid "Embed code" +msgstr "Code einbetten" -#: ../../Zotlabs/Module/New_channel.php:130 -#: ../../Zotlabs/Module/Register.php:233 -#, php-format -msgid "" -"Your nickname will be used to create an easy to remember channel address " -"e.g. nickname%s" -msgstr "Dein Spitzname wird verwendet, um eine leicht zu merkende Kanal-Adresse (ähnlich einer E-Mail-Adresse) zu erzeugen, die Du mit anderen austauschen kannst, z.B. nickname%s" +#: ../../Zotlabs/Module/Appman.php:110 ../../include/widgets.php:107 +msgid "Edit App" +msgstr "App bearbeiten" -#: ../../Zotlabs/Module/New_channel.php:132 -#: ../../Zotlabs/Module/Register.php:235 -msgid "Channel role and privacy" -msgstr "Kanaltyp und Privatspäre-Einstellungen" +#: ../../Zotlabs/Module/Appman.php:110 +msgid "Create App" +msgstr "App erstellen" -#: ../../Zotlabs/Module/New_channel.php:132 -#: ../../Zotlabs/Module/Register.php:235 -msgid "Select a channel role with your privacy requirements." -msgstr "Wähle einen passenden Kanaltyp mit den zugehörigen Voreinstellungen zur Privatsphäre." +#: ../../Zotlabs/Module/Appman.php:115 +msgid "Name of app" +msgstr "Name der App" -#: ../../Zotlabs/Module/New_channel.php:132 -#: ../../Zotlabs/Module/Register.php:235 -msgid "Read more about roles" -msgstr "Mehr Informationen über Rollen" +#: ../../Zotlabs/Module/Appman.php:116 +msgid "Location (URL) of app" +msgstr "Ort (URL) der App" -#: ../../Zotlabs/Module/New_channel.php:135 -msgid "Create Channel" -msgstr "Einen neuen Kanal anlegen" +#: ../../Zotlabs/Module/Appman.php:118 +msgid "Photo icon URL" +msgstr "URL zum Icon" -#: ../../Zotlabs/Module/New_channel.php:136 -msgid "" -"A channel is your identity on this network. It can represent a person, a " -"blog, or a forum to name a few. Channels can make connections with other " -"channels to share information with highly detailed permissions." -msgstr "Ein Kanal ist Deine Identität in diesem Netzwerk. Er kann eine Person, ein Blog oder ein Forum repräsentieren, nur um ein paar Beispiele zu nennen. Kanäle können Verbindungen miteinander eingehen, um Informationen zu teilen, jeweils basierend auf sehr detaillierten Berechtigungseinstellungen." +#: ../../Zotlabs/Module/Appman.php:118 +msgid "80 x 80 pixels - optional" +msgstr "80 x 80 Pixel – optional" -#: ../../Zotlabs/Module/New_channel.php:137 -msgid "" -"or import an existing channel from another location." -msgstr "oder importiere einen bestehenden Kanal von einem anderen Server." +#: ../../Zotlabs/Module/Appman.php:119 +msgid "Categories (optional, comma separated list)" +msgstr "Kategorien (optional, kommagetrennte Liste)" -#: ../../Zotlabs/Module/Ping.php:265 -msgid "sent you a private message" -msgstr "hat Dir eine private Nachricht geschickt" +#: ../../Zotlabs/Module/Appman.php:120 +msgid "Version ID" +msgstr "Versions-ID" -#: ../../Zotlabs/Module/Ping.php:313 -msgid "added your channel" -msgstr "hat deinen Kanal hinzugefügt" +#: ../../Zotlabs/Module/Appman.php:121 +msgid "Price of app" +msgstr "Preis der App" -#: ../../Zotlabs/Module/Ping.php:323 -msgid "g A l F d" -msgstr "l, d. F, G:i \\U\\h\\r" - -#: ../../Zotlabs/Module/Ping.php:346 -msgid "[today]" -msgstr "[Heute]" - -#: ../../Zotlabs/Module/Ping.php:355 -msgid "posted an event" -msgstr "hat einen Termin veröffentlicht" - -#: ../../Zotlabs/Module/Notifications.php:30 -msgid "Invalid request identifier." -msgstr "Ungültiger Anfrage-Identifikator." - -#: ../../Zotlabs/Module/Notifications.php:39 -msgid "Discard" -msgstr "Verwerfen" - -#: ../../Zotlabs/Module/Notifications.php:103 ../../include/nav.php:193 -msgid "Mark all system notifications seen" -msgstr "Markiere alle System-Benachrichtigungen als gesehen" - -#: ../../Zotlabs/Module/Poke.php:168 ../../Zotlabs/Lib/Apps.php:228 -#: ../../include/conversation.php:963 -msgid "Poke" -msgstr "Anstupsen" - -#: ../../Zotlabs/Module/Poke.php:169 -msgid "Poke somebody" -msgstr "Jemanden anstupsen" - -#: ../../Zotlabs/Module/Poke.php:172 -msgid "Poke/Prod" -msgstr "Anstupsen/Knuffen" - -#: ../../Zotlabs/Module/Poke.php:173 -msgid "Poke, prod or do other things to somebody" -msgstr "Jemanden anstupsen, knuffen oder sonstiges" - -#: ../../Zotlabs/Module/Poke.php:180 -msgid "Recipient" -msgstr "Empfänger" - -#: ../../Zotlabs/Module/Poke.php:181 -msgid "Choose what you wish to do to recipient" -msgstr "Wähle, was Du mit dem/r Empfänger/in tun willst" - -#: ../../Zotlabs/Module/Poke.php:184 ../../Zotlabs/Module/Poke.php:185 -msgid "Make this post private" -msgstr "Diesen Beitrag privat machen" - -#: ../../Zotlabs/Module/Oexchange.php:27 -msgid "Unable to find your hub." -msgstr "Konnte Deinen Server nicht finden." - -#: ../../Zotlabs/Module/Oexchange.php:41 -msgid "Post successful." -msgstr "Veröffentlichung erfolgreich." - -#: ../../Zotlabs/Module/Openid.php:30 -msgid "OpenID protocol error. No ID returned." -msgstr "OpenID Protokollfehler. Keine ID zurückgegeben." - -#: ../../Zotlabs/Module/Openid.php:193 ../../include/auth.php:285 -msgid "Login failed." -msgstr "Login fehlgeschlagen." - -#: ../../Zotlabs/Module/Profperm.php:34 ../../Zotlabs/Module/Profperm.php:63 -msgid "Invalid profile identifier." -msgstr "Ungültiger Profil-Identifikator" - -#: ../../Zotlabs/Module/Profperm.php:115 -msgid "Profile Visibility Editor" -msgstr "Profil-Sichtbarkeits-Editor" - -#: ../../Zotlabs/Module/Profperm.php:117 ../../include/channel.php:1290 -msgid "Profile" -msgstr "Profil" - -#: ../../Zotlabs/Module/Profperm.php:119 -msgid "Click on a contact to add or remove." -msgstr "Klicke auf einen Kontakt, um ihn hinzuzufügen oder zu entfernen." - -#: ../../Zotlabs/Module/Profperm.php:128 -msgid "Visible To" -msgstr "Sichtbar für" - -#: ../../Zotlabs/Module/Pconfig.php:26 ../../Zotlabs/Module/Pconfig.php:59 -msgid "This setting requires special processing and editing has been blocked." -msgstr "Diese Einstellung erfordert eine besondere Verarbeitung und ist blockiert." - -#: ../../Zotlabs/Module/Pconfig.php:48 -msgid "Configuration Editor" -msgstr "Konfigurationseditor" - -#: ../../Zotlabs/Module/Pconfig.php:49 -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 "Warnung: Einige Einstellungen können Deinen Kanal funktionsunfähig machen. Bitte verlasse diese Seite, es sei denn Du bist vertraut damit, wie dieses Feature korrekt verwendet wird." - -#: ../../Zotlabs/Module/Probe.php:28 ../../Zotlabs/Module/Probe.php:32 -#, php-format -msgid "Fetching URL returns error: %1$s" -msgstr "Abrufen der URL gab einen Fehler zurück: %1$s" - -#: ../../Zotlabs/Module/Siteinfo.php:19 -#, php-format -msgid "Version %s" -msgstr "Version %s" - -#: ../../Zotlabs/Module/Siteinfo.php:34 -msgid "Installed plugins/addons/apps:" -msgstr "Installierte Plugins/Addons/Apps" - -#: ../../Zotlabs/Module/Siteinfo.php:36 -msgid "No installed plugins/addons/apps" -msgstr "Keine installierten Plugins/Addons/Apps" - -#: ../../Zotlabs/Module/Siteinfo.php:49 -msgid "" -"This is a hub of $Projectname - a global cooperative network of " -"decentralized privacy enhanced websites." -msgstr "Dieser Hub ist Teil von $Projectname – ein globales, kooperatives Netzwerk aus dezentralen Websites, die Rücksicht auf Deine Privatsphäre nehmen." - -#: ../../Zotlabs/Module/Siteinfo.php:51 -msgid "Tag: " -msgstr "Schlagwort: " - -#: ../../Zotlabs/Module/Siteinfo.php:53 -msgid "Last background fetch: " -msgstr "Letzter Hintergrundabruf:" - -#: ../../Zotlabs/Module/Siteinfo.php:55 -msgid "Current load average: " -msgstr "Aktuelles Load Average:" - -#: ../../Zotlabs/Module/Siteinfo.php:58 -msgid "Running at web location" -msgstr "Erreichbar unter der Web-Adresse" - -#: ../../Zotlabs/Module/Siteinfo.php:59 -msgid "" -"Please visit hubzilla.org to learn more " -"about $Projectname." -msgstr "Bitte besuchen Sie hubzilla.org, um mehr über $Projectname zu erfahren." - -#: ../../Zotlabs/Module/Siteinfo.php:60 -msgid "Bug reports and issues: please visit" -msgstr "Probleme oder Fehler gefunden? Bitte besuche" - -#: ../../Zotlabs/Module/Siteinfo.php:62 -msgid "$projectname issues" -msgstr "$projectname-Bugtracker" - -#: ../../Zotlabs/Module/Siteinfo.php:63 -msgid "" -"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot " -"com" -msgstr "Vorschläge, Lob, usw.: E-Mail an 'redmatrix' at librelist - dot - com" - -#: ../../Zotlabs/Module/Siteinfo.php:65 -msgid "Site Administrators" -msgstr "Administratoren" - -#: ../../Zotlabs/Module/Rmagic.php:44 -msgid "" -"We encountered a problem while logging in with the OpenID you provided. " -"Please check the correct spelling of the ID." -msgstr "Wir haben ein Problem mit der OpenID festgestellt, mit der Du Dich anmelden wolltest. Bitte überprüfe sie noch einmal." - -#: ../../Zotlabs/Module/Rmagic.php:44 -msgid "The error message was:" -msgstr "Die Fehlermeldung war:" - -#: ../../Zotlabs/Module/Rmagic.php:48 -msgid "Authentication failed." -msgstr "Authentifizierung fehlgeschlagen." - -#: ../../Zotlabs/Module/Rmagic.php:88 -msgid "Remote Authentication" -msgstr "Entfernte Authentifizierung" - -#: ../../Zotlabs/Module/Rmagic.php:89 -msgid "Enter your channel address (e.g. channel@example.com)" -msgstr "Deine Kanal-Adresse (z. B. channel@example.com)" - -#: ../../Zotlabs/Module/Rmagic.php:90 -msgid "Authenticate" -msgstr "Authentifizieren" - -#: ../../Zotlabs/Module/Pubsites.php:22 ../../include/widgets.php:1337 -msgid "Public Hubs" -msgstr "Öffentliche Hubs" - -#: ../../Zotlabs/Module/Pubsites.php:25 -msgid "" -"The listed hubs allow public registration for the $Projectname network. All " -"hubs in the network are interlinked so membership on any of them conveys " -"membership in the network as a whole. Some hubs may require subscription or " -"provide tiered service plans. The hub itself may provide " -"additional details." -msgstr "Die hier aufgeführten Hubs sind öffentlich und erlauben die Registrierung im $Projectname Netzwerk. Alle Hubs dieses Netzwerks sind miteinander verbunden, so dass die Mitgliedschaft auf einem Hub die Verbindung zu beliebigen Seiten und Kanälen auf anderen Hubs ermöglicht. Es könnte sein, dass einige dieser Hubs kostenpflichtig sind oder abgestufte, je nach Umfang kostenpflichtige Mitgliedschaften anbieten. Auf den Seiten der einzelnen Hubs könnten jeweils nähere Informationen dazu stehen." - -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Hub URL" -msgstr "Hub-URL" - -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Access Type" -msgstr "Zugriffstyp" - -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Registration Policy" -msgstr "Registrierungsrichtlinien" - -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Stats" -msgstr "Statistiken" - -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Software" -msgstr "Software" - -#: ../../Zotlabs/Module/Pubsites.php:31 ../../Zotlabs/Module/Ratings.php:103 -#: ../../include/conversation.php:962 -msgid "Ratings" -msgstr "Bewertungen" - -#: ../../Zotlabs/Module/Pubsites.php:38 -msgid "Rate" -msgstr "Bewerten" - -#: ../../Zotlabs/Module/Profile_photo.php:186 -msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." -msgstr "Leere den Browser Cache oder nutze Umschalten-Neu Laden, falls das neue Foto nicht sofort angezeigt wird." - -#: ../../Zotlabs/Module/Profile_photo.php:389 -msgid "Upload Profile Photo" -msgstr "Lade neues Profilfoto hoch" - -#: ../../Zotlabs/Module/Blocks.php:97 ../../Zotlabs/Module/Blocks.php:155 -#: ../../Zotlabs/Module/Editblock.php:108 -msgid "Block Name" -msgstr "Block-Name" - -#: ../../Zotlabs/Module/Blocks.php:154 ../../include/text.php:2238 -msgid "Blocks" -msgstr "Blöcke" - -#: ../../Zotlabs/Module/Blocks.php:156 -msgid "Block Title" -msgstr "Titel des Blocks" - -#: ../../Zotlabs/Module/Rate.php:160 -msgid "Website:" -msgstr "Webseite:" - -#: ../../Zotlabs/Module/Rate.php:163 -#, php-format -msgid "Remote Channel [%s] (not yet known on this site)" -msgstr "Kanal [%s] (auf diesem Server noch unbekannt)" - -#: ../../Zotlabs/Module/Rate.php:164 -msgid "Rating (this information is public)" -msgstr "Bewertung (öffentlich sichtbar)" - -#: ../../Zotlabs/Module/Rate.php:165 -msgid "Optionally explain your rating (this information is public)" -msgstr "Optional kannst du deine Bewertung erklären (öffentlich sichtbar)" - -#: ../../Zotlabs/Module/Ratings.php:73 -msgid "No ratings" -msgstr "Keine Bewertungen" - -#: ../../Zotlabs/Module/Ratings.php:104 -msgid "Rating: " -msgstr "Bewertung: " - -#: ../../Zotlabs/Module/Ratings.php:105 -msgid "Website: " -msgstr "Webseite: " - -#: ../../Zotlabs/Module/Ratings.php:107 -msgid "Description: " -msgstr "Beschreibung: " - -#: ../../Zotlabs/Module/Apps.php:47 ../../include/nav.php:165 -#: ../../include/widgets.php:102 -msgid "Apps" -msgstr "Apps" - -#: ../../Zotlabs/Module/Editblock.php:124 ../../include/conversation.php:1243 -msgid "Title (optional)" -msgstr "Titel (optional)" - -#: ../../Zotlabs/Module/Editblock.php:133 -msgid "Edit Block" -msgstr "Block bearbeiten" - -#: ../../Zotlabs/Module/Common.php:14 -msgid "No channel." -msgstr "Kein Kanal." - -#: ../../Zotlabs/Module/Common.php:43 -msgid "Common connections" -msgstr "Gemeinsame Verbindungen" - -#: ../../Zotlabs/Module/Common.php:48 -msgid "No connections in common." -msgstr "Keine gemeinsamen Verbindungen." +#: ../../Zotlabs/Module/Appman.php:122 +msgid "Location (URL) to purchase app" +msgstr "Ort (URL), um die App zu kaufen" #: ../../Zotlabs/Module/Rbmark.php:94 msgid "Select a bookmark folder" @@ -4999,154 +4765,120 @@ msgstr "ja" msgid "Membership on this site is by invitation only." msgstr "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich." -#: ../../Zotlabs/Module/Register.php:262 ../../include/nav.php:149 -#: ../../boot.php:1686 +#: ../../Zotlabs/Module/Register.php:262 ../../include/nav.php:147 +#: ../../boot.php:1685 msgid "Register" msgstr "Registrieren" -#: ../../Zotlabs/Module/Register.php:263 -msgid "" -"This site may require email verification after submitting this form. If you " -"are returned to a login page, please check your email for instructions." -msgstr "Diese Seite verlangt möglicherweise eine Emailbestätigung nach dem Ansenden des Formulars. Wenn Du auf eine Login-Seite zurückgeleitet wirst, prüfe bitte auf neue Mail mit entsprechenden Hinweisen." +#: ../../Zotlabs/Module/Register.php:262 +msgid "Proceed to create your first channel" +msgstr "Fortfahren und Deinen ersten Kanal anlegen" #: ../../Zotlabs/Module/Regmod.php:15 msgid "Please login." msgstr "Bitte melde dich an." -#: ../../Zotlabs/Module/Removeaccount.php:35 +#: ../../Zotlabs/Module/Removeaccount.php:34 msgid "" "Account removals are not allowed within 48 hours of changing the account " "password." msgstr "Das Löschen von Konten innerhalb 48 Stunden nachdem deren Passwort geändert wurde ist nicht erlaubt." -#: ../../Zotlabs/Module/Removeaccount.php:57 +#: ../../Zotlabs/Module/Removeaccount.php:56 msgid "Remove This Account" msgstr "Dieses Konto löschen" -#: ../../Zotlabs/Module/Removeaccount.php:58 -#: ../../Zotlabs/Module/Removeme.php:61 +#: ../../Zotlabs/Module/Removeaccount.php:57 +#: ../../Zotlabs/Module/Removeme.php:59 msgid "WARNING: " msgstr "WARNUNG: " -#: ../../Zotlabs/Module/Removeaccount.php:58 +#: ../../Zotlabs/Module/Removeaccount.php:57 msgid "" "This account and all its channels will be completely removed from the " "network. " msgstr "Dieses Konto mit all seinen Kanälen wird vollständig aus dem Netzwerk gelöscht." -#: ../../Zotlabs/Module/Removeaccount.php:58 -#: ../../Zotlabs/Module/Removeme.php:61 +#: ../../Zotlabs/Module/Removeaccount.php:57 +#: ../../Zotlabs/Module/Removeme.php:59 msgid "This action is permanent and can not be undone!" msgstr "Dieser Schritt ist endgültig und kann nicht rückgängig gemacht werden!" -#: ../../Zotlabs/Module/Removeaccount.php:59 -#: ../../Zotlabs/Module/Removeme.php:62 +#: ../../Zotlabs/Module/Removeaccount.php:58 +#: ../../Zotlabs/Module/Removeme.php:60 msgid "Please enter your password for verification:" msgstr "Bitte gib zur Bestätigung Dein Passwort ein:" -#: ../../Zotlabs/Module/Removeaccount.php:60 +#: ../../Zotlabs/Module/Removeaccount.php:59 msgid "" "Remove this account, all its channels and all its channel clones from the " "network" msgstr "Dieses Konto, all seine Kanäle sowie alle Kanal-Klone aus dem Netzwerk löschen" -#: ../../Zotlabs/Module/Removeaccount.php:60 +#: ../../Zotlabs/Module/Removeaccount.php:59 msgid "" "By default only the instances of the channels located on this hub will be " "removed from the network" msgstr "Standardmäßig werden nur die Kanalklone auf diesem $Projectname-Hub aus dem Netzwerk entfernt" -#: ../../Zotlabs/Module/Removeaccount.php:61 -#: ../../Zotlabs/Module/Settings.php:759 +#: ../../Zotlabs/Module/Removeaccount.php:60 +#: ../../Zotlabs/Module/Settings.php:705 msgid "Remove Account" msgstr "Konto entfernen" -#: ../../Zotlabs/Module/Removeme.php:35 +#: ../../Zotlabs/Module/Removeme.php:33 msgid "" "Channel removals are not allowed within 48 hours of changing the account " "password." msgstr "Innerhalb von 48 Stunden nach einer Änderung des Passworts können keine Kanäle gelöscht werden." -#: ../../Zotlabs/Module/Removeme.php:60 +#: ../../Zotlabs/Module/Removeme.php:58 msgid "Remove This Channel" msgstr "Diesen Kanal löschen" -#: ../../Zotlabs/Module/Removeme.php:61 +#: ../../Zotlabs/Module/Removeme.php:59 msgid "This channel will be completely removed from the network. " msgstr "Dieser Kanal wird vollständig aus dem Netzwerk gelöscht." -#: ../../Zotlabs/Module/Removeme.php:63 +#: ../../Zotlabs/Module/Removeme.php:61 msgid "Remove this channel and all its clones from the network" msgstr "Lösche diesen Kanal und all seine Klone aus dem Netzwerk" -#: ../../Zotlabs/Module/Removeme.php:63 +#: ../../Zotlabs/Module/Removeme.php:61 msgid "" "By default only the instance of the channel located on this hub will be " "removed from the network" msgstr "Standardmäßig wird der Kanal nur auf diesem Server gelöscht, seine Klone verbleiben im Netzwerk" -#: ../../Zotlabs/Module/Removeme.php:64 ../../Zotlabs/Module/Settings.php:1219 +#: ../../Zotlabs/Module/Removeme.php:62 ../../Zotlabs/Module/Settings.php:1124 msgid "Remove Channel" msgstr "Kanal löschen" -#: ../../Zotlabs/Module/Uexport.php:55 ../../Zotlabs/Module/Uexport.php:56 -msgid "Export Channel" -msgstr "Kanal exportieren" - -#: ../../Zotlabs/Module/Uexport.php:57 +#: ../../Zotlabs/Module/Rmagic.php:44 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 "Exportiert die grundlegenden Kanal-Informationen in eine kleine Datei. Diese stellt eine Sicherung Deiner Verbindungen, Berechtigungen, Profile und Basisdaten bereit, die für den Import auf einem anderen Hub verwendet werden kann, aber nicht die Beiträge Deines Kanals enthält." +"We encountered a problem while logging in with the OpenID you provided. " +"Please check the correct spelling of the ID." +msgstr "Wir haben ein Problem mit der OpenID festgestellt, mit der Du Dich anmelden wolltest. Bitte überprüfe sie noch einmal." -#: ../../Zotlabs/Module/Uexport.php:58 -msgid "Export Content" -msgstr "Kanal und Inhalte exportieren" +#: ../../Zotlabs/Module/Rmagic.php:44 +msgid "The error message was:" +msgstr "Die Fehlermeldung war:" -#: ../../Zotlabs/Module/Uexport.php:59 -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 "Exportiert Deine Kanal-Informationen sowie alle zugehörigen Inhalte in eine JSON-Sicherungsdatei. Die sichert alle Verbindungen, Berechtigungen, Profildaten und Deine Beiträge aus mehreren Monaten. Diese Datei kann SEHR groß werden! Bitte habe ein wenig Geduld – es kann mehrere Minuten dauern, bis der Download startet." +#: ../../Zotlabs/Module/Rmagic.php:48 +msgid "Authentication failed." +msgstr "Authentifizierung fehlgeschlagen." -#: ../../Zotlabs/Module/Uexport.php:60 -msgid "Export your posts from a given year." -msgstr "Exportiert die Beiträge des angegebenen Jahres." +#: ../../Zotlabs/Module/Rmagic.php:88 +msgid "Remote Authentication" +msgstr "Entfernte Authentifizierung" -#: ../../Zotlabs/Module/Uexport.php:62 -msgid "" -"You may also export your posts and conversations for a particular year or " -"month. Adjust the date in your browser location bar to select other dates. " -"If the export fails (possibly due to memory exhaustion on your server hub), " -"please try again selecting a more limited date range." -msgstr "Du kannst auch die Beiträge und Konversationen eines bestimmten Jahres oder Monats exportieren. Ändere das Datum in der Adresszeile Deines Browsers, um andere Zeiträume zu wählen. Falls der Export fehlschlägt (vermutlich, weil auf diesem Hub nicht genügend Speicher zur Verfügung steht), versuche es noch einmal mit einer kleineren Zeitspanne." +#: ../../Zotlabs/Module/Rmagic.php:89 +msgid "Enter your channel address (e.g. channel@example.com)" +msgstr "Deine Kanal-Adresse (z. B. channel@example.com)" -#: ../../Zotlabs/Module/Uexport.php:63 -#, php-format -msgid "" -"To select all posts for a given year, such as this year, visit %2$s" -msgstr "Um alle Beiträge eines bestimmten Jahres, zum Beispiel dieses Jahres, auszuwählen, klicke %2$s." - -#: ../../Zotlabs/Module/Uexport.php:64 -#, php-format -msgid "" -"To select all posts for a given month, such as January of this year, visit " -"%2$s" -msgstr "Um alle Beiträge eines bestimmten Monats auszuwählen, zum Beispiel vom Januar diesen Jahres, klicke %2$s." - -#: ../../Zotlabs/Module/Uexport.php:65 -#, php-format -msgid "" -"These content files may be imported or restored by visiting %2$s on any site containing your channel. For best results" -" please import or restore these in date order (oldest first)." -msgstr "Diese Inhalts-Sicherungen können wiederhergestellt werden, indem Du %2$s auf jeglichem Hub besuchst, der diesen Kanal enthält. Das funktioniert am besten, wenn Du dabei die zeitliche Reihenfolge einhältst, also die Sicherungen für den ältesten Zeitraum zuerst importierst." +#: ../../Zotlabs/Module/Rmagic.php:90 +msgid "Authenticate" +msgstr "Authentifizieren" #: ../../Zotlabs/Module/Search.php:216 #, php-format @@ -5162,652 +4894,609 @@ msgstr "Suchergebnisse für: %s" msgid "No service class restrictions found." msgstr "Keine Dienstklassenbeschränkungen gefunden." -#: ../../Zotlabs/Module/Settings.php:64 +#: ../../Zotlabs/Module/Settings.php:69 msgid "Name is required" msgstr "Name ist erforderlich" -#: ../../Zotlabs/Module/Settings.php:68 +#: ../../Zotlabs/Module/Settings.php:73 msgid "Key and Secret are required" msgstr "Schlüssel und Geheimnis werden benötigt" -#: ../../Zotlabs/Module/Settings.php:138 -#, php-format -msgid "This channel is limited to %d tokens" -msgstr "Dieser Kanal ist auf %d Token begrenzt" - -#: ../../Zotlabs/Module/Settings.php:144 -msgid "Name and Password are required." -msgstr "Name und Passwort sind erforderlich." - -#: ../../Zotlabs/Module/Settings.php:168 -msgid "Token saved." -msgstr "Token gespeichert." - -#: ../../Zotlabs/Module/Settings.php:274 +#: ../../Zotlabs/Module/Settings.php:225 msgid "Not valid email." msgstr "Keine gültige E-Mail Adresse." -#: ../../Zotlabs/Module/Settings.php:277 +#: ../../Zotlabs/Module/Settings.php:228 msgid "Protected email address. Cannot change to that email." msgstr "Geschützte E-Mail Adresse. Diese kann nicht verändert werden." -#: ../../Zotlabs/Module/Settings.php:286 +#: ../../Zotlabs/Module/Settings.php:237 msgid "System failure storing new email. Please try again." msgstr "Systemfehler während des Speicherns der neuen Mail. Bitte versuche es noch einmal." -#: ../../Zotlabs/Module/Settings.php:303 +#: ../../Zotlabs/Module/Settings.php:254 msgid "Password verification failed." msgstr "Passwortüberprüfung fehlgeschlagen." -#: ../../Zotlabs/Module/Settings.php:310 +#: ../../Zotlabs/Module/Settings.php:261 msgid "Passwords do not match. Password unchanged." msgstr "Kennwörter stimmen nicht überein. Kennwort nicht verändert." -#: ../../Zotlabs/Module/Settings.php:314 +#: ../../Zotlabs/Module/Settings.php:265 msgid "Empty passwords are not allowed. Password unchanged." msgstr "Leere Kennwörter sind nicht erlaubt. Kennwort nicht verändert." -#: ../../Zotlabs/Module/Settings.php:328 +#: ../../Zotlabs/Module/Settings.php:279 msgid "Password changed." msgstr "Kennwort geändert." -#: ../../Zotlabs/Module/Settings.php:330 +#: ../../Zotlabs/Module/Settings.php:281 msgid "Password update failed. Please try again." msgstr "Kennwortänderung fehlgeschlagen. Bitte versuche es noch einmal." -#: ../../Zotlabs/Module/Settings.php:579 +#: ../../Zotlabs/Module/Settings.php:525 msgid "Settings updated." msgstr "Einstellungen aktualisiert." -#: ../../Zotlabs/Module/Settings.php:643 ../../Zotlabs/Module/Settings.php:669 -#: ../../Zotlabs/Module/Settings.php:705 +#: ../../Zotlabs/Module/Settings.php:589 ../../Zotlabs/Module/Settings.php:615 +#: ../../Zotlabs/Module/Settings.php:651 msgid "Add application" msgstr "Anwendung hinzufügen" -#: ../../Zotlabs/Module/Settings.php:646 +#: ../../Zotlabs/Module/Settings.php:592 msgid "Name of application" msgstr "Name der Anwendung" -#: ../../Zotlabs/Module/Settings.php:647 ../../Zotlabs/Module/Settings.php:673 +#: ../../Zotlabs/Module/Settings.php:593 ../../Zotlabs/Module/Settings.php:619 msgid "Consumer Key" msgstr "Consumer Key" -#: ../../Zotlabs/Module/Settings.php:647 ../../Zotlabs/Module/Settings.php:648 +#: ../../Zotlabs/Module/Settings.php:593 ../../Zotlabs/Module/Settings.php:594 msgid "Automatically generated - change if desired. Max length 20" msgstr "Automatisch erzeugt – ändern, falls erwünscht. Maximale Länge 20" -#: ../../Zotlabs/Module/Settings.php:648 ../../Zotlabs/Module/Settings.php:674 +#: ../../Zotlabs/Module/Settings.php:594 ../../Zotlabs/Module/Settings.php:620 msgid "Consumer Secret" msgstr "Consumer Secret" -#: ../../Zotlabs/Module/Settings.php:649 ../../Zotlabs/Module/Settings.php:675 +#: ../../Zotlabs/Module/Settings.php:595 ../../Zotlabs/Module/Settings.php:621 msgid "Redirect" msgstr "Umleitung" -#: ../../Zotlabs/Module/Settings.php:649 +#: ../../Zotlabs/Module/Settings.php:595 msgid "" "Redirect URI - leave blank unless your application specifically requires " "this" msgstr "Umleitungs-URl – lasse das leer, solange Deine Anwendung es nicht explizit erfordert" -#: ../../Zotlabs/Module/Settings.php:650 ../../Zotlabs/Module/Settings.php:676 +#: ../../Zotlabs/Module/Settings.php:596 ../../Zotlabs/Module/Settings.php:622 msgid "Icon url" msgstr "Symbol-URL" -#: ../../Zotlabs/Module/Settings.php:650 ../../Zotlabs/Module/Sources.php:112 +#: ../../Zotlabs/Module/Settings.php:596 ../../Zotlabs/Module/Sources.php:112 #: ../../Zotlabs/Module/Sources.php:147 msgid "Optional" msgstr "Optional" -#: ../../Zotlabs/Module/Settings.php:661 +#: ../../Zotlabs/Module/Settings.php:607 msgid "Application not found." msgstr "Die Anwendung wurde nicht gefunden." -#: ../../Zotlabs/Module/Settings.php:704 +#: ../../Zotlabs/Module/Settings.php:650 msgid "Connected Apps" msgstr "Verbundene Apps" -#: ../../Zotlabs/Module/Settings.php:708 +#: ../../Zotlabs/Module/Settings.php:654 msgid "Client key starts with" msgstr "Client Key beginnt mit" -#: ../../Zotlabs/Module/Settings.php:709 +#: ../../Zotlabs/Module/Settings.php:655 msgid "No name" msgstr "Kein Name" -#: ../../Zotlabs/Module/Settings.php:710 +#: ../../Zotlabs/Module/Settings.php:656 msgid "Remove authorization" msgstr "Authorisierung aufheben" -#: ../../Zotlabs/Module/Settings.php:723 +#: ../../Zotlabs/Module/Settings.php:669 msgid "No feature settings configured" msgstr "Keine Funktions-Einstellungen konfiguriert" -#: ../../Zotlabs/Module/Settings.php:730 +#: ../../Zotlabs/Module/Settings.php:676 msgid "Feature/Addon Settings" msgstr "Funktions-/Addon-Einstellungen" -#: ../../Zotlabs/Module/Settings.php:753 +#: ../../Zotlabs/Module/Settings.php:699 msgid "Account Settings" msgstr "Konto-Einstellungen" -#: ../../Zotlabs/Module/Settings.php:754 +#: ../../Zotlabs/Module/Settings.php:700 msgid "Current Password" msgstr "Aktuelles Passwort" -#: ../../Zotlabs/Module/Settings.php:755 +#: ../../Zotlabs/Module/Settings.php:701 msgid "Enter New Password" msgstr "Gib ein neues Passwort ein" -#: ../../Zotlabs/Module/Settings.php:756 +#: ../../Zotlabs/Module/Settings.php:702 msgid "Confirm New Password" msgstr "Bestätige das neue Passwort" -#: ../../Zotlabs/Module/Settings.php:756 +#: ../../Zotlabs/Module/Settings.php:702 msgid "Leave password fields blank unless changing" msgstr "Lasse die Passwort-Felder leer, außer Du möchtest das Passwort ändern" -#: ../../Zotlabs/Module/Settings.php:758 -#: ../../Zotlabs/Module/Settings.php:1136 +#: ../../Zotlabs/Module/Settings.php:704 +#: ../../Zotlabs/Module/Settings.php:1041 msgid "Email Address:" msgstr "Email Adresse:" -#: ../../Zotlabs/Module/Settings.php:760 +#: ../../Zotlabs/Module/Settings.php:706 msgid "Remove this account including all its channels" msgstr "Dieses Konto inklusive all seiner Kanäle löschen" -#: ../../Zotlabs/Module/Settings.php:789 -msgid "" -"Use this form to create temporary access identifiers to share things with " -"non-members. These identities may be used in Access Control Lists and " -"visitors may login using these credentials to access the private content." -msgstr "Mit diesem Formular kannst Du temporäre Zugangs-IDs anlegen, um Inhalte mit Nicht-Mitgliedern zu teilen. Die IDs können in Berechtigungslisten (ACLs) verwendet werden, und Besucher können sich damit einloggen, um auf private Inhalte zuzugreifen." - -#: ../../Zotlabs/Module/Settings.php:791 -msgid "" -"You may also provide dropbox style access links to friends and " -"associates by adding the Login Password to any specific site URL as shown. " -"Examples:" -msgstr "Du kannst auch Dropbox-ähnliche Zugriffslinks an Andere weitergeben, indem du das Login-Passwort an eine entsprechende URL anhängst wie nachfolgend gezeigt. Beispiele:" - -#: ../../Zotlabs/Module/Settings.php:796 ../../include/widgets.php:614 -msgid "Guest Access Tokens" -msgstr "Gastzugangstoken" - -#: ../../Zotlabs/Module/Settings.php:803 -msgid "Login Name" -msgstr "Anmeldename" - -#: ../../Zotlabs/Module/Settings.php:804 -msgid "Login Password" -msgstr "Anmeldepasswort" - -#: ../../Zotlabs/Module/Settings.php:805 -msgid "Expires (yyyy-mm-dd)" -msgstr "Läuft ab (jjjj-mm-tt)" - -#: ../../Zotlabs/Module/Settings.php:830 +#: ../../Zotlabs/Module/Settings.php:729 msgid "Additional Features" msgstr "Zusätzliche Funktionen" -#: ../../Zotlabs/Module/Settings.php:854 +#: ../../Zotlabs/Module/Settings.php:753 msgid "Connector Settings" msgstr "Connector-Einstellungen" -#: ../../Zotlabs/Module/Settings.php:893 +#: ../../Zotlabs/Module/Settings.php:792 msgid "No special theme for mobile devices" msgstr "Keine spezielle Theme für mobile Geräte" -#: ../../Zotlabs/Module/Settings.php:896 +#: ../../Zotlabs/Module/Settings.php:795 #, php-format msgid "%s - (Experimental)" msgstr "%s – (experimentell)" -#: ../../Zotlabs/Module/Settings.php:938 +#: ../../Zotlabs/Module/Settings.php:837 msgid "Display Settings" msgstr "Anzeige-Einstellungen" -#: ../../Zotlabs/Module/Settings.php:939 +#: ../../Zotlabs/Module/Settings.php:838 msgid "Theme Settings" msgstr "Theme-Einstellungen" -#: ../../Zotlabs/Module/Settings.php:940 +#: ../../Zotlabs/Module/Settings.php:839 msgid "Custom Theme Settings" msgstr "Benutzerdefinierte Theme-Einstellungen" -#: ../../Zotlabs/Module/Settings.php:941 +#: ../../Zotlabs/Module/Settings.php:840 msgid "Content Settings" msgstr "Inhaltseinstellungen" -#: ../../Zotlabs/Module/Settings.php:947 +#: ../../Zotlabs/Module/Settings.php:846 msgid "Display Theme:" msgstr "Anzeige-Theme:" -#: ../../Zotlabs/Module/Settings.php:948 +#: ../../Zotlabs/Module/Settings.php:847 msgid "Mobile Theme:" msgstr "Mobile Theme:" -#: ../../Zotlabs/Module/Settings.php:949 +#: ../../Zotlabs/Module/Settings.php:848 msgid "Preload images before rendering the page" msgstr "Bilder im voraus laden, bevor die Seite angezeigt wird" -#: ../../Zotlabs/Module/Settings.php:949 +#: ../../Zotlabs/Module/Settings.php:848 msgid "" "The subjective page load time will be longer but the page will be ready when" " displayed" msgstr "Die empfundene Ladezeit wird sich erhöhen, aber dafür ist das Layout stabil, sobald eine Seite angezeigt wird" -#: ../../Zotlabs/Module/Settings.php:950 +#: ../../Zotlabs/Module/Settings.php:849 msgid "Enable user zoom on mobile devices" msgstr "Zoom auf Mobilgeräten aktivieren" -#: ../../Zotlabs/Module/Settings.php:951 +#: ../../Zotlabs/Module/Settings.php:850 msgid "Update browser every xx seconds" msgstr "Browser alle xx Sekunden aktualisieren" -#: ../../Zotlabs/Module/Settings.php:951 +#: ../../Zotlabs/Module/Settings.php:850 msgid "Minimum of 10 seconds, no maximum" msgstr "Minimum 10 Sekunden, kein Maximum" -#: ../../Zotlabs/Module/Settings.php:952 +#: ../../Zotlabs/Module/Settings.php:851 msgid "Maximum number of conversations to load at any time:" msgstr "Maximale Anzahl von Unterhaltungen, die auf einmal geladen werden sollen:" -#: ../../Zotlabs/Module/Settings.php:952 +#: ../../Zotlabs/Module/Settings.php:851 msgid "Maximum of 100 items" msgstr "Maximum: 100 Beiträge" -#: ../../Zotlabs/Module/Settings.php:953 +#: ../../Zotlabs/Module/Settings.php:852 msgid "Show emoticons (smilies) as images" msgstr "Emoticons (Smilies) als Bilder anzeigen" -#: ../../Zotlabs/Module/Settings.php:954 +#: ../../Zotlabs/Module/Settings.php:853 msgid "Link post titles to source" msgstr "Beitragstitel zum Originalbeitrag verlinken" -#: ../../Zotlabs/Module/Settings.php:955 +#: ../../Zotlabs/Module/Settings.php:854 msgid "System Page Layout Editor - (advanced)" msgstr "System-Seitenlayout-Editor (für Experten)" -#: ../../Zotlabs/Module/Settings.php:958 +#: ../../Zotlabs/Module/Settings.php:857 msgid "Use blog/list mode on channel page" msgstr "Blog-/Listenmodus auf der Kanalseite verwenden" -#: ../../Zotlabs/Module/Settings.php:958 ../../Zotlabs/Module/Settings.php:959 +#: ../../Zotlabs/Module/Settings.php:857 ../../Zotlabs/Module/Settings.php:858 msgid "(comments displayed separately)" msgstr "(Kommentare werden separat angezeigt)" -#: ../../Zotlabs/Module/Settings.php:959 +#: ../../Zotlabs/Module/Settings.php:858 msgid "Use blog/list mode on grid page" msgstr "Blog-/Listenmodus auf der Netzwerkseite verwenden" -#: ../../Zotlabs/Module/Settings.php:960 +#: ../../Zotlabs/Module/Settings.php:859 msgid "Channel page max height of content (in pixels)" msgstr "Maximale Höhe von Beitragsblöcken auf der Kanalseite (in Pixeln)" -#: ../../Zotlabs/Module/Settings.php:960 ../../Zotlabs/Module/Settings.php:961 +#: ../../Zotlabs/Module/Settings.php:859 ../../Zotlabs/Module/Settings.php:860 msgid "click to expand content exceeding this height" msgstr "Blöcke, deren Inhalt diese Höhe überschreitet, können per Klick vergrößert werden." -#: ../../Zotlabs/Module/Settings.php:961 +#: ../../Zotlabs/Module/Settings.php:860 msgid "Grid page max height of content (in pixels)" msgstr "Maximale Höhe (in Pixel) des Inhalts der Netzwerkseite" -#: ../../Zotlabs/Module/Settings.php:990 +#: ../../Zotlabs/Module/Settings.php:894 msgid "Nobody except yourself" msgstr "Niemand außer Dir selbst" -#: ../../Zotlabs/Module/Settings.php:991 +#: ../../Zotlabs/Module/Settings.php:895 msgid "Only those you specifically allow" msgstr "Nur die, denen Du es explizit erlaubst" -#: ../../Zotlabs/Module/Settings.php:992 +#: ../../Zotlabs/Module/Settings.php:896 msgid "Approved connections" msgstr "Angenommene Verbindungen" -#: ../../Zotlabs/Module/Settings.php:993 +#: ../../Zotlabs/Module/Settings.php:897 msgid "Any connections" msgstr "Beliebige Verbindungen" -#: ../../Zotlabs/Module/Settings.php:994 +#: ../../Zotlabs/Module/Settings.php:898 msgid "Anybody on this website" msgstr "Jeder auf dieser Website" -#: ../../Zotlabs/Module/Settings.php:995 +#: ../../Zotlabs/Module/Settings.php:899 msgid "Anybody in this network" msgstr "Alle $Projectname-Mitglieder" -#: ../../Zotlabs/Module/Settings.php:996 +#: ../../Zotlabs/Module/Settings.php:900 msgid "Anybody authenticated" msgstr "Jeder authentifizierte" -#: ../../Zotlabs/Module/Settings.php:997 +#: ../../Zotlabs/Module/Settings.php:901 msgid "Anybody on the internet" msgstr "Jeder im Internet" -#: ../../Zotlabs/Module/Settings.php:1071 +#: ../../Zotlabs/Module/Settings.php:976 msgid "Publish your default profile in the network directory" msgstr "Standard-Profil im Netzwerk-Verzeichnis veröffentlichen" -#: ../../Zotlabs/Module/Settings.php:1076 +#: ../../Zotlabs/Module/Settings.php:981 msgid "Allow us to suggest you as a potential friend to new members?" msgstr "Dürfen wir Dich neuen Mitgliedern als potentiellen Kontakt vorschlagen?" -#: ../../Zotlabs/Module/Settings.php:1085 +#: ../../Zotlabs/Module/Settings.php:990 msgid "Your channel address is" msgstr "Deine Kanal-Adresse lautet" -#: ../../Zotlabs/Module/Settings.php:1127 +#: ../../Zotlabs/Module/Settings.php:1032 msgid "Channel Settings" msgstr "Kanal-Einstellungen" -#: ../../Zotlabs/Module/Settings.php:1134 +#: ../../Zotlabs/Module/Settings.php:1039 msgid "Basic Settings" msgstr "Grundeinstellungen" -#: ../../Zotlabs/Module/Settings.php:1135 ../../include/channel.php:1180 +#: ../../Zotlabs/Module/Settings.php:1040 ../../include/channel.php:1140 msgid "Full Name:" msgstr "Voller Name:" -#: ../../Zotlabs/Module/Settings.php:1137 +#: ../../Zotlabs/Module/Settings.php:1042 msgid "Your Timezone:" msgstr "Ihre Zeitzone:" -#: ../../Zotlabs/Module/Settings.php:1138 +#: ../../Zotlabs/Module/Settings.php:1043 msgid "Default Post Location:" msgstr "Standardstandort:" -#: ../../Zotlabs/Module/Settings.php:1138 +#: ../../Zotlabs/Module/Settings.php:1043 msgid "Geographical location to display on your posts" msgstr "Geografischer Ort, der bei Deinen Beiträgen angezeigt werden soll" -#: ../../Zotlabs/Module/Settings.php:1139 +#: ../../Zotlabs/Module/Settings.php:1044 msgid "Use Browser Location:" msgstr "Standort des Browsers verwenden:" -#: ../../Zotlabs/Module/Settings.php:1141 +#: ../../Zotlabs/Module/Settings.php:1046 msgid "Adult Content" msgstr "Nicht jugendfreie Inhalte" -#: ../../Zotlabs/Module/Settings.php:1141 +#: ../../Zotlabs/Module/Settings.php:1046 msgid "" "This channel frequently or regularly publishes adult content. (Please tag " "any adult material and/or nudity with #NSFW)" msgstr "Dieser Kanal veröffentlicht regelmäßig Inhalte, die für Minderjährige ungeeignet sind. (Bitte markiere solche Inhalte mit dem Schlagwort #NSFW)" -#: ../../Zotlabs/Module/Settings.php:1143 +#: ../../Zotlabs/Module/Settings.php:1048 msgid "Security and Privacy Settings" msgstr "Sicherheits- und Datenschutz-Einstellungen" -#: ../../Zotlabs/Module/Settings.php:1146 +#: ../../Zotlabs/Module/Settings.php:1051 msgid "Your permissions are already configured. Click to view/adjust" msgstr "Deine Zugriffsrechte sind schon konfiguriert. Klicke hier, um sie zu betrachten oder zu ändern" -#: ../../Zotlabs/Module/Settings.php:1148 +#: ../../Zotlabs/Module/Settings.php:1053 msgid "Hide my online presence" msgstr "Meine Online-Präsenz verbergen" -#: ../../Zotlabs/Module/Settings.php:1148 +#: ../../Zotlabs/Module/Settings.php:1053 msgid "Prevents displaying in your profile that you are online" msgstr "Verhindert die Anzeige Deines Online-Status in deinem Profil" -#: ../../Zotlabs/Module/Settings.php:1150 +#: ../../Zotlabs/Module/Settings.php:1055 msgid "Simple Privacy Settings:" msgstr "Einfache Privatsphäre-Einstellungen" -#: ../../Zotlabs/Module/Settings.php:1151 +#: ../../Zotlabs/Module/Settings.php:1056 msgid "" "Very Public - extremely permissive (should be used with caution)" msgstr "Komplett offen – extrem ungeschützt (mit großer Vorsicht verwenden!)" -#: ../../Zotlabs/Module/Settings.php:1152 +#: ../../Zotlabs/Module/Settings.php:1057 msgid "" "Typical - default public, privacy when desired (similar to social " "network permissions but with improved privacy)" msgstr "Typisch – Standard öffentlich, Privatsphäre, wo sie erwünscht ist (ähnlich den Einstellungen in sozialen Netzwerken, aber mit besser geschützter Privatsphäre)" -#: ../../Zotlabs/Module/Settings.php:1153 +#: ../../Zotlabs/Module/Settings.php:1058 msgid "Private - default private, never open or public" msgstr "Privat – Standard privat, nie offen oder öffentlich" -#: ../../Zotlabs/Module/Settings.php:1154 +#: ../../Zotlabs/Module/Settings.php:1059 msgid "Blocked - default blocked to/from everybody" msgstr "Blockiert – Alle standardmäßig blockiert" -#: ../../Zotlabs/Module/Settings.php:1156 +#: ../../Zotlabs/Module/Settings.php:1061 msgid "Allow others to tag your posts" msgstr "Erlaube anderen, Deine Beiträge zu verschlagworten" -#: ../../Zotlabs/Module/Settings.php:1156 +#: ../../Zotlabs/Module/Settings.php:1061 msgid "" "Often used by the community to retro-actively flag inappropriate content" msgstr "Wird oft von der Community genutzt um rückwirkend anstößigen Inhalt zu markieren" -#: ../../Zotlabs/Module/Settings.php:1158 +#: ../../Zotlabs/Module/Settings.php:1063 msgid "Advanced Privacy Settings" msgstr "Fortgeschrittene Privatsphäre-Einstellungen" -#: ../../Zotlabs/Module/Settings.php:1160 +#: ../../Zotlabs/Module/Settings.php:1065 msgid "Expire other channel content after this many days" msgstr "Den Inhalt anderer Kanäle nach dieser Anzahl Tage verfallen lassen" -#: ../../Zotlabs/Module/Settings.php:1160 +#: ../../Zotlabs/Module/Settings.php:1065 msgid "0 or blank to use the website limit." msgstr "0 oder leer lassen, um den voreingestellten Wert der Webseite zu verwenden." -#: ../../Zotlabs/Module/Settings.php:1160 +#: ../../Zotlabs/Module/Settings.php:1065 #, php-format msgid "This website expires after %d days." msgstr "Diese Webseite läuft nach %d Tagen ab." -#: ../../Zotlabs/Module/Settings.php:1160 +#: ../../Zotlabs/Module/Settings.php:1065 msgid "This website does not expire imported content." msgstr "Diese Webseite lässt importierte Inhalte nicht verfallen." -#: ../../Zotlabs/Module/Settings.php:1160 +#: ../../Zotlabs/Module/Settings.php:1065 msgid "The website limit takes precedence if lower than your limit." msgstr "Das Verfallslimit der Webseite hat Vorrang, wenn es niedriger als Deines hier ist." -#: ../../Zotlabs/Module/Settings.php:1161 +#: ../../Zotlabs/Module/Settings.php:1066 msgid "Maximum Friend Requests/Day:" msgstr "Maximale Kontaktanfragen pro Tag:" -#: ../../Zotlabs/Module/Settings.php:1161 +#: ../../Zotlabs/Module/Settings.php:1066 msgid "May reduce spam activity" msgstr "Kann die Spam-Aktivität verringern" -#: ../../Zotlabs/Module/Settings.php:1162 +#: ../../Zotlabs/Module/Settings.php:1067 msgid "Default Post and Publish Permissions" msgstr "Standard-Berechtigungen für Beiträge und andere Inhalte" -#: ../../Zotlabs/Module/Settings.php:1164 +#: ../../Zotlabs/Module/Settings.php:1069 msgid "Use my default audience setting for the type of object published" msgstr "Verwende Deine eingestellte Standard-Zielgruppe des jeweiligen Inhaltstyps" -#: ../../Zotlabs/Module/Settings.php:1167 +#: ../../Zotlabs/Module/Settings.php:1072 msgid "Channel permissions category:" msgstr "Zugriffsrechte-Kategorie des Kanals:" -#: ../../Zotlabs/Module/Settings.php:1173 +#: ../../Zotlabs/Module/Settings.php:1078 msgid "Maximum private messages per day from unknown people:" msgstr "Maximale Anzahl privater Nachrichten pro Tag von unbekannten Leuten:" -#: ../../Zotlabs/Module/Settings.php:1173 +#: ../../Zotlabs/Module/Settings.php:1078 msgid "Useful to reduce spamming" msgstr "Nützlich, um Spam zu verringern" -#: ../../Zotlabs/Module/Settings.php:1176 +#: ../../Zotlabs/Module/Settings.php:1081 msgid "Notification Settings" msgstr "Benachrichtigungs-Einstellungen" -#: ../../Zotlabs/Module/Settings.php:1177 +#: ../../Zotlabs/Module/Settings.php:1082 msgid "By default post a status message when:" msgstr "Sende standardmäßig Status-Nachrichten, wenn:" -#: ../../Zotlabs/Module/Settings.php:1178 +#: ../../Zotlabs/Module/Settings.php:1083 msgid "accepting a friend request" msgstr "Du eine Verbindungsanfrage annimmst" -#: ../../Zotlabs/Module/Settings.php:1179 +#: ../../Zotlabs/Module/Settings.php:1084 msgid "joining a forum/community" msgstr "Du einem Forum beitrittst" -#: ../../Zotlabs/Module/Settings.php:1180 +#: ../../Zotlabs/Module/Settings.php:1085 msgid "making an interesting profile change" msgstr "Du eine interessante Änderung an Deinem Profil vornimmst" -#: ../../Zotlabs/Module/Settings.php:1181 +#: ../../Zotlabs/Module/Settings.php:1086 msgid "Send a notification email when:" msgstr "Eine E-Mail-Benachrichtigung senden, wenn:" -#: ../../Zotlabs/Module/Settings.php:1182 +#: ../../Zotlabs/Module/Settings.php:1087 msgid "You receive a connection request" msgstr "Du eine Verbindungsanfrage erhältst" -#: ../../Zotlabs/Module/Settings.php:1183 +#: ../../Zotlabs/Module/Settings.php:1088 msgid "Your connections are confirmed" msgstr "Eine Verbindung bestätigt wurde" -#: ../../Zotlabs/Module/Settings.php:1184 +#: ../../Zotlabs/Module/Settings.php:1089 msgid "Someone writes on your profile wall" msgstr "Jemand auf Deine Pinnwand schreibt" -#: ../../Zotlabs/Module/Settings.php:1185 +#: ../../Zotlabs/Module/Settings.php:1090 msgid "Someone writes a followup comment" msgstr "Jemand einen Beitrag kommentiert" -#: ../../Zotlabs/Module/Settings.php:1186 +#: ../../Zotlabs/Module/Settings.php:1091 msgid "You receive a private message" msgstr "Du eine private Nachricht erhältst" -#: ../../Zotlabs/Module/Settings.php:1187 +#: ../../Zotlabs/Module/Settings.php:1092 msgid "You receive a friend suggestion" msgstr "Du einen Kontaktvorschlag erhältst" -#: ../../Zotlabs/Module/Settings.php:1188 +#: ../../Zotlabs/Module/Settings.php:1093 msgid "You are tagged in a post" msgstr "Du in einem Beitrag erwähnt wurdest" -#: ../../Zotlabs/Module/Settings.php:1189 +#: ../../Zotlabs/Module/Settings.php:1094 msgid "You are poked/prodded/etc. in a post" msgstr "Du in einem Beitrag angestupst/geknufft/o.ä. wurdest" -#: ../../Zotlabs/Module/Settings.php:1192 +#: ../../Zotlabs/Module/Settings.php:1097 msgid "Show visual notifications including:" msgstr "Visuelle Benachrichtigungen anzeigen für:" -#: ../../Zotlabs/Module/Settings.php:1194 +#: ../../Zotlabs/Module/Settings.php:1099 msgid "Unseen grid activity" msgstr "Ungesehene Netzwerk-Aktivität" -#: ../../Zotlabs/Module/Settings.php:1195 +#: ../../Zotlabs/Module/Settings.php:1100 msgid "Unseen channel activity" msgstr "Ungesehene Kanal-Aktivität" -#: ../../Zotlabs/Module/Settings.php:1196 +#: ../../Zotlabs/Module/Settings.php:1101 msgid "Unseen private messages" msgstr "Ungelesene persönliche Nachrichten" -#: ../../Zotlabs/Module/Settings.php:1196 -#: ../../Zotlabs/Module/Settings.php:1201 -#: ../../Zotlabs/Module/Settings.php:1202 -#: ../../Zotlabs/Module/Settings.php:1203 +#: ../../Zotlabs/Module/Settings.php:1101 +#: ../../Zotlabs/Module/Settings.php:1106 +#: ../../Zotlabs/Module/Settings.php:1107 +#: ../../Zotlabs/Module/Settings.php:1108 msgid "Recommended" msgstr "Empfohlen" -#: ../../Zotlabs/Module/Settings.php:1197 +#: ../../Zotlabs/Module/Settings.php:1102 msgid "Upcoming events" msgstr "Baldige Termine" -#: ../../Zotlabs/Module/Settings.php:1198 +#: ../../Zotlabs/Module/Settings.php:1103 msgid "Events today" msgstr "Heutige Termine" -#: ../../Zotlabs/Module/Settings.php:1199 +#: ../../Zotlabs/Module/Settings.php:1104 msgid "Upcoming birthdays" msgstr "Baldige Geburtstage" -#: ../../Zotlabs/Module/Settings.php:1199 +#: ../../Zotlabs/Module/Settings.php:1104 msgid "Not available in all themes" msgstr "Nicht in allen Themes verfügbar" -#: ../../Zotlabs/Module/Settings.php:1200 +#: ../../Zotlabs/Module/Settings.php:1105 msgid "System (personal) notifications" msgstr "System – (persönliche) Benachrichtigungen" -#: ../../Zotlabs/Module/Settings.php:1201 +#: ../../Zotlabs/Module/Settings.php:1106 msgid "System info messages" msgstr "System – Info-Nachrichten" -#: ../../Zotlabs/Module/Settings.php:1202 +#: ../../Zotlabs/Module/Settings.php:1107 msgid "System critical alerts" msgstr "System – kritische Warnungen" -#: ../../Zotlabs/Module/Settings.php:1203 +#: ../../Zotlabs/Module/Settings.php:1108 msgid "New connections" msgstr "Neue Verbindungen" -#: ../../Zotlabs/Module/Settings.php:1204 +#: ../../Zotlabs/Module/Settings.php:1109 msgid "System Registrations" msgstr "System – Registrierungen" -#: ../../Zotlabs/Module/Settings.php:1205 +#: ../../Zotlabs/Module/Settings.php:1110 msgid "" "Also show new wall posts, private messages and connections under Notices" msgstr "Neue Pinnwand-Nachrichten, private Nachrichten und Verbindungen unter Benachrichtigungen anzeigen" -#: ../../Zotlabs/Module/Settings.php:1207 +#: ../../Zotlabs/Module/Settings.php:1112 msgid "Notify me of events this many days in advance" msgstr "Benachrichtige mich zu Terminen so viele Tage im Voraus" -#: ../../Zotlabs/Module/Settings.php:1207 +#: ../../Zotlabs/Module/Settings.php:1112 msgid "Must be greater than 0" msgstr "Muss größer als 0 sein" -#: ../../Zotlabs/Module/Settings.php:1209 +#: ../../Zotlabs/Module/Settings.php:1114 msgid "Advanced Account/Page Type Settings" msgstr "Erweiterte Account- und Seitenart-Einstellungen" -#: ../../Zotlabs/Module/Settings.php:1210 +#: ../../Zotlabs/Module/Settings.php:1115 msgid "Change the behaviour of this account for special situations" msgstr "Ändere das Verhalten dieses Accounts unter speziellen Umständen" -#: ../../Zotlabs/Module/Settings.php:1213 +#: ../../Zotlabs/Module/Settings.php:1118 msgid "" "Please enable expert mode (in Settings > " "Additional features) to adjust!" msgstr "Aktiviere den Expertenmodus (unter Settings > Zusätzliche Funktionen), um hier Einstellungen vorzunehmen!" -#: ../../Zotlabs/Module/Settings.php:1214 +#: ../../Zotlabs/Module/Settings.php:1119 msgid "Miscellaneous Settings" msgstr "Sonstige Einstellungen" -#: ../../Zotlabs/Module/Settings.php:1215 +#: ../../Zotlabs/Module/Settings.php:1120 msgid "Default photo upload folder" msgstr "Voreingestellter Ordner für hochgeladene Fotos" -#: ../../Zotlabs/Module/Settings.php:1215 -#: ../../Zotlabs/Module/Settings.php:1216 +#: ../../Zotlabs/Module/Settings.php:1120 +#: ../../Zotlabs/Module/Settings.php:1121 msgid "%Y - current year, %m - current month" msgstr "%Y - aktuelles Jahr, %m - aktueller Monat" -#: ../../Zotlabs/Module/Settings.php:1216 +#: ../../Zotlabs/Module/Settings.php:1121 msgid "Default file upload folder" msgstr "Voreingestellter Ordner für hochgeladene Dateien" -#: ../../Zotlabs/Module/Settings.php:1218 +#: ../../Zotlabs/Module/Settings.php:1123 msgid "Personal menu to display in your channel pages" msgstr "Eigenes Menü zur Anzeige auf den Seiten deines Kanals" -#: ../../Zotlabs/Module/Settings.php:1220 +#: ../../Zotlabs/Module/Settings.php:1125 msgid "Remove this channel." msgstr "Diesen Kanal löschen" -#: ../../Zotlabs/Module/Settings.php:1221 +#: ../../Zotlabs/Module/Settings.php:1126 msgid "Firefox Share $Projectname provider" msgstr "$Projectname-Provider für Firefox Share" -#: ../../Zotlabs/Module/Settings.php:1222 +#: ../../Zotlabs/Module/Settings.php:1127 msgid "Start calendar week on monday" msgstr "Montag als erster Tag der Kalenderwoche" @@ -5840,7 +5529,7 @@ msgid "" msgstr "Möglicherweise musst Du die Datei install/schema_xxx.sql manuell mit Hilfe eines Datenkbank-Clients importieren." #: ../../Zotlabs/Module/Setup.php:204 ../../Zotlabs/Module/Setup.php:266 -#: ../../Zotlabs/Module/Setup.php:722 +#: ../../Zotlabs/Module/Setup.php:721 msgid "Please see the file \"install/INSTALL.txt\"." msgstr "Lies die Datei \"install/INSTALL.txt\"." @@ -6040,200 +5729,199 @@ msgid "mb_string PHP module" msgstr "mb_string-PHP-Modul" #: ../../Zotlabs/Module/Setup.php:496 +msgid "mcrypt PHP module" +msgstr "mcrypt-PHP-Modul" + +#: ../../Zotlabs/Module/Setup.php:497 msgid "xml PHP module" msgstr "xml-PHP-Modul" -#: ../../Zotlabs/Module/Setup.php:500 ../../Zotlabs/Module/Setup.php:502 +#: ../../Zotlabs/Module/Setup.php:501 ../../Zotlabs/Module/Setup.php:503 msgid "Apache mod_rewrite module" msgstr "Apache-mod_rewrite-Modul" -#: ../../Zotlabs/Module/Setup.php:500 +#: ../../Zotlabs/Module/Setup.php:501 msgid "" "Error: Apache webserver mod-rewrite module is required but not installed." msgstr "Fehler: Das Apache-Modul mod-rewrite wird benötigt, ist aber nicht installiert." -#: ../../Zotlabs/Module/Setup.php:506 ../../Zotlabs/Module/Setup.php:509 +#: ../../Zotlabs/Module/Setup.php:507 ../../Zotlabs/Module/Setup.php:510 msgid "proc_open" msgstr "proc_open" -#: ../../Zotlabs/Module/Setup.php:506 +#: ../../Zotlabs/Module/Setup.php:507 msgid "" "Error: proc_open is required but is either not installed or has been " "disabled in php.ini" msgstr "Fehler: proc_open wird benötigt, ist aber entweder nicht installiert oder wurde in der php.ini deaktiviert" -#: ../../Zotlabs/Module/Setup.php:514 +#: ../../Zotlabs/Module/Setup.php:515 msgid "Error: libCURL PHP module required but not installed." msgstr "Fehler: Das PHP-Modul libCURL wird benötigt, ist aber nicht installiert." -#: ../../Zotlabs/Module/Setup.php:518 +#: ../../Zotlabs/Module/Setup.php:519 msgid "" "Error: GD graphics PHP module with JPEG support required but not installed." msgstr "Fehler: Das PHP-Modul GD-Grafik mit JPEG-Unterstützung wird benötigt, ist aber nicht installiert." -#: ../../Zotlabs/Module/Setup.php:522 +#: ../../Zotlabs/Module/Setup.php:523 msgid "Error: openssl PHP module required but not installed." msgstr "Fehler: Das PHP-Modul openssl wird benötigt, ist aber nicht installiert." -#: ../../Zotlabs/Module/Setup.php:526 +#: ../../Zotlabs/Module/Setup.php:527 msgid "" "Error: mysqli or postgres PHP module required but neither are installed." msgstr "Fehler: Das mysqli oder postgres PHP-Modul ist erforderlich, aber keines von beiden ist installiert." -#: ../../Zotlabs/Module/Setup.php:530 +#: ../../Zotlabs/Module/Setup.php:531 msgid "Error: mb_string PHP module required but not installed." msgstr "Fehler: Das PHP-Modul mb_string wird benötigt, ist aber nicht installiert." -#: ../../Zotlabs/Module/Setup.php:534 +#: ../../Zotlabs/Module/Setup.php:535 +msgid "Error: mcrypt PHP module required but not installed." +msgstr "Fehler: Das PHP-Modul mcrypt wird benötigt, ist aber nicht installiert." + +#: ../../Zotlabs/Module/Setup.php:539 msgid "Error: xml PHP module required for DAV but not installed." msgstr "Fehler: Das xml-PHP-Modul wird für DAV benötigt, ist aber nicht installiert." -#: ../../Zotlabs/Module/Setup.php:552 +#: ../../Zotlabs/Module/Setup.php:557 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 "Der Installations-Assistent muss in der Lage sein, die Datei \".htconfig.php\" im Stammverzeichnis des Web-Servers anzulegen, ist er aber nicht." -#: ../../Zotlabs/Module/Setup.php:553 +#: ../../Zotlabs/Module/Setup.php:558 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 "Meist liegt das daran, dass der Nutzer, unter dem der Web-Server läuft, keine Schreibrechte in dem Verzeichnis hat – selbst wenn Du selbst das darfst." -#: ../../Zotlabs/Module/Setup.php:554 +#: ../../Zotlabs/Module/Setup.php:559 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 "Am Schluss dieses Vorgangs wird ein Text generiert, den Du unter dem Dateinamen .htconfig.php im Stammverzeichnis Deiner Hubzilla-Installation speichern musst." -#: ../../Zotlabs/Module/Setup.php:555 +#: ../../Zotlabs/Module/Setup.php:560 msgid "" "You can alternatively skip this procedure and perform a manual installation." " Please see the file \"install/INSTALL.txt\" for instructions." msgstr "Alternativ kannst Du diesen Schritt überspringen und die Installation manuell vornehmen. Lies dazu die Datei install/INSTALL.txt." -#: ../../Zotlabs/Module/Setup.php:558 +#: ../../Zotlabs/Module/Setup.php:563 msgid ".htconfig.php is writable" msgstr ".htconfig.php ist beschreibbar" -#: ../../Zotlabs/Module/Setup.php:572 +#: ../../Zotlabs/Module/Setup.php:577 msgid "" "Red uses the Smarty3 template engine to render its web views. Smarty3 " "compiles templates to PHP to speed up rendering." msgstr "$Projectname verwendet Smarty3 um Vorlagen für die Webdarstellung zu übersetzen. Smarty3 übersetzt diese Vorlagen nach PHP, um die Darstellung zu beschleunigen." -#: ../../Zotlabs/Module/Setup.php:573 +#: ../../Zotlabs/Module/Setup.php:578 #, php-format msgid "" "In order to store these compiled templates, the web server needs to have " "write access to the directory %s under the top level web folder." msgstr "Um diese kompilierten Vorlagen speichern zu können, braucht der Web-Server Schreibzugriff auf das Verzeichnis %s unterhalb des Hubzilla-Stammverzeichnisses." -#: ../../Zotlabs/Module/Setup.php:574 ../../Zotlabs/Module/Setup.php:595 +#: ../../Zotlabs/Module/Setup.php:579 ../../Zotlabs/Module/Setup.php:600 msgid "" "Please ensure that the user that your web server runs as (e.g. www-data) has" " write access to this folder." msgstr "Bitte stelle sicher, dass der Nutzer, unter dem der Web-Server läuft (z.B. www-data), Schreibzugriff auf dieses Verzeichnis hat." -#: ../../Zotlabs/Module/Setup.php:575 +#: ../../Zotlabs/Module/Setup.php:580 #, 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 "Hinweis: Aus Sicherheitsgründen sollte der Web-Server nur auf %s Schreibrechte haben, nicht auf die Template-Dateien (.tpl), die das Verzeichnis enthält." -#: ../../Zotlabs/Module/Setup.php:578 +#: ../../Zotlabs/Module/Setup.php:583 #, php-format msgid "%s is writable" msgstr "%s ist beschreibbar" -#: ../../Zotlabs/Module/Setup.php:594 +#: ../../Zotlabs/Module/Setup.php:599 msgid "" -"This software 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 "Diese Software benutzt das Verzeichnis store, um hochgeladene Dateien zu speichern. Der Web-Server benötigt Schreibrechte für dieses Verzeichnis direkt unterhalb des Hubzilla-Stammverzeichnisses" +"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 "$Projectname benutzt das Verzeichnis store, um hochgeladene Dateien zu speichern. Der Webserver benötigt Schreibrechte für dieses Verzeichnis direkt unterhalb des Red-Stammverzeichnisses" -#: ../../Zotlabs/Module/Setup.php:598 +#: ../../Zotlabs/Module/Setup.php:603 msgid "store is writable" msgstr "store ist schreibbar" -#: ../../Zotlabs/Module/Setup.php:631 +#: ../../Zotlabs/Module/Setup.php:636 msgid "" "SSL certificate cannot be validated. Fix certificate or disable https access" " to this site." msgstr "Das SSL-Zertifikat konnte nicht validiert werden. Korrigiere das Zertifikat oder deaktiviere den HTTPS-Zugriff auf diesen Server." -#: ../../Zotlabs/Module/Setup.php:632 +#: ../../Zotlabs/Module/Setup.php:637 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 "Wenn Du via HTTPS auf Deinen Server zugreifen möchtest, also Verbindungen über den Port 443 möglich sein sollen, ist ein SSL-Zertifikat einer Zertifizierungsstelle (CA) notwendig, das von den Browsern ohne Sicherheitsabfrage akzeptiert wird. Die Verwendung eines selbst signierten Zertifikates ist nicht möglich." -#: ../../Zotlabs/Module/Setup.php:633 +#: ../../Zotlabs/Module/Setup.php:638 msgid "" "This restriction is incorporated because public posts from you may for " "example contain references to images on your own hub." msgstr "Diese Einschränkung wurde eingebaut, weil Deine öffentlichen Beiträge zum Beispiel Verweise auf Bilder auf Deinem eigenen Hub enthalten können." -#: ../../Zotlabs/Module/Setup.php:634 +#: ../../Zotlabs/Module/Setup.php:639 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." msgstr "Wenn Dein Zertifikat nicht von jedem Browser akzeptiert wird, erhalten die Mitglieder anderer $Projectname-Hubs (die mit korrekten Zertifikaten ausgestattet sind) Sicherheits-Warnmeldungen, obwohl sie gar nicht direkt auf Deinem Server unterwegs sind (zum Beispiel, wenn ein Bild aus einem Deiner Beiträge angezeigt wird)." -#: ../../Zotlabs/Module/Setup.php:635 +#: ../../Zotlabs/Module/Setup.php:640 msgid "" "This can cause usability issues elsewhere (not just on your own site) so we " "must insist on this requirement." msgstr "Dies kann Probleme für andere Nutzer (nicht nur auf Deinem eigenen Server) verursachen, so dass wir auf dieser Forderung bestehen müssen." -#: ../../Zotlabs/Module/Setup.php:636 +#: ../../Zotlabs/Module/Setup.php:641 msgid "" "Providers are available that issue free certificates which are browser-" "valid." msgstr "Es gibt einige Zertifizierungsstellen (CAs), bei denen solche Zertifikate kostenlos zu haben sind." -#: ../../Zotlabs/Module/Setup.php:638 -msgid "" -"If you are confident that the certificate is valid and signed by a trusted " -"authority, check to see if you have failed to install an intermediate cert. " -"These are not normally required by browsers, but are required for server-to-" -"server communications." -msgstr "Wenn Du sicher bist, dass das Zertifikat gültig und von einer vertrauenswürdigen Zertifizierungsstelle signiert ist, prüfe auf ggf. noch zu installierende Zwischenzertifikate (intermediate). Diese werden nicht unbedingt von Browsern benötigt, aber sehr wohl für die Kommunikation zwischen Servern." - -#: ../../Zotlabs/Module/Setup.php:641 +#: ../../Zotlabs/Module/Setup.php:643 msgid "SSL certificate validation" msgstr "SSL Zertifikatverifizierung" -#: ../../Zotlabs/Module/Setup.php:647 +#: ../../Zotlabs/Module/Setup.php:649 msgid "" "Url rewrite in .htaccess is not working. Check your server " "configuration.Test: " msgstr "Das Umschreiben von URLs (rewrite) per .htaccess funktioniert nicht. Bitte prüfe die Server-Konfiguration. Test:" -#: ../../Zotlabs/Module/Setup.php:650 +#: ../../Zotlabs/Module/Setup.php:652 msgid "Url rewrite is working" msgstr "Url rewrite funktioniert" -#: ../../Zotlabs/Module/Setup.php:659 +#: ../../Zotlabs/Module/Setup.php:661 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 "Die Datenbank-Konfigurationsdatei „.htconfig.php“ konnte nicht geschrieben werden. Bitte verwende den unten angegebenen Text, um die Konfigurationsdatei im Stammverzeichnis des Webservers anzulegen." -#: ../../Zotlabs/Module/Setup.php:683 +#: ../../Zotlabs/Module/Setup.php:685 msgid "Errors encountered creating database tables." msgstr "Fehler beim Anlegen der Datenbank-Tabellen aufgetreten." -#: ../../Zotlabs/Module/Setup.php:720 +#: ../../Zotlabs/Module/Setup.php:719 msgid "

What next

" msgstr "

Was als Nächstes

" -#: ../../Zotlabs/Module/Setup.php:721 +#: ../../Zotlabs/Module/Setup.php:720 msgid "" "IMPORTANT: You will need to [manually] setup a scheduled task for the " "poller." @@ -6255,62 +5943,64 @@ msgstr "Alle Dateien löschen" msgid "Remove this file" msgstr "Diese Datei löschen" -#: ../../Zotlabs/Module/Thing.php:114 -msgid "Thing updated" -msgstr "Sache aktualisiert" - -#: ../../Zotlabs/Module/Thing.php:166 -msgid "Object store: failed" -msgstr "Speichern des Objekts fehlgeschlagen" - -#: ../../Zotlabs/Module/Thing.php:170 -msgid "Thing added" -msgstr "Sache hinzugefügt" - -#: ../../Zotlabs/Module/Thing.php:196 +#: ../../Zotlabs/Module/Siteinfo.php:19 #, php-format -msgid "OBJ: %1$s %2$s %3$s" -msgstr "OBJ: %1$s %2$s %3$s" +msgid "Version %s" +msgstr "Version %s" -#: ../../Zotlabs/Module/Thing.php:259 -msgid "Show Thing" -msgstr "Sache anzeigen" +#: ../../Zotlabs/Module/Siteinfo.php:40 +msgid "Installed plugins/addons/apps:" +msgstr "Installierte Plugins/Addons/Apps" -#: ../../Zotlabs/Module/Thing.php:266 -msgid "item not found." -msgstr "Eintrag nicht gefunden" +#: ../../Zotlabs/Module/Siteinfo.php:53 +msgid "No installed plugins/addons/apps" +msgstr "Keine installierten Plugins/Addons/Apps" -#: ../../Zotlabs/Module/Thing.php:299 -msgid "Edit Thing" -msgstr "Sache bearbeiten" +#: ../../Zotlabs/Module/Siteinfo.php:66 +msgid "" +"This is a hub of $Projectname - a global cooperative network of " +"decentralized privacy enhanced websites." +msgstr "Dieser Hub ist Teil von $Projectname – ein globales, kooperatives Netzwerk aus dezentralen Websites, die Rücksicht auf Deine Privatsphäre nehmen." -#: ../../Zotlabs/Module/Thing.php:301 ../../Zotlabs/Module/Thing.php:351 -msgid "Select a profile" -msgstr "Wähle ein Profil" +#: ../../Zotlabs/Module/Siteinfo.php:68 +msgid "Tag: " +msgstr "Schlagwort: " -#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:354 -msgid "Post an activity" -msgstr "Aktivitätsnachricht senden" +#: ../../Zotlabs/Module/Siteinfo.php:70 +msgid "Last background fetch: " +msgstr "Letzter Hintergrundabruf:" -#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:354 -msgid "Only sends to viewers of the applicable profile" -msgstr "Nur an Betrachter des ausgewählten Profils senden" +#: ../../Zotlabs/Module/Siteinfo.php:72 +msgid "Current load average: " +msgstr "Aktuelles Load Average:" -#: ../../Zotlabs/Module/Thing.php:307 ../../Zotlabs/Module/Thing.php:356 -msgid "Name of thing e.g. something" -msgstr "Name der Sache, z. B. irgendwas" +#: ../../Zotlabs/Module/Siteinfo.php:75 +msgid "Running at web location" +msgstr "Erreichbar unter der Web-Adresse" -#: ../../Zotlabs/Module/Thing.php:309 ../../Zotlabs/Module/Thing.php:357 -msgid "URL of thing (optional)" -msgstr "URL der Sache (optional)" +#: ../../Zotlabs/Module/Siteinfo.php:76 +msgid "" +"Please visit hubzilla.org to learn more " +"about $Projectname." +msgstr "Bitte besuchen Sie hubzilla.org, um mehr über $Projectname zu erfahren." -#: ../../Zotlabs/Module/Thing.php:311 ../../Zotlabs/Module/Thing.php:358 -msgid "URL for photo of thing (optional)" -msgstr "URL eines Fotos der Sache (optional)" +#: ../../Zotlabs/Module/Siteinfo.php:77 +msgid "Bug reports and issues: please visit" +msgstr "Probleme oder Fehler gefunden? Bitte besuche" -#: ../../Zotlabs/Module/Thing.php:349 -msgid "Add Thing to your Profile" -msgstr "Die Sache Deinem Profil hinzufügen" +#: ../../Zotlabs/Module/Siteinfo.php:79 +msgid "$projectname issues" +msgstr "$projectname-Bugtracker" + +#: ../../Zotlabs/Module/Siteinfo.php:80 +msgid "" +"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot " +"com" +msgstr "Vorschläge, Lob, usw.: E-Mail an 'redmatrix' at librelist - dot - com" + +#: ../../Zotlabs/Module/Siteinfo.php:82 +msgid "Site Administrators" +msgstr "Administratoren" #: ../../Zotlabs/Module/Sources.php:37 msgid "Failed to create source. No channel selected." @@ -6328,8 +6018,8 @@ msgstr "Quelle aktualisiert." msgid "*" msgstr "*" -#: ../../Zotlabs/Module/Sources.php:96 ../../include/features.php:72 -#: ../../include/widgets.php:639 +#: ../../Zotlabs/Module/Sources.php:96 ../../include/widgets.php:630 +#: ../../include/features.php:71 msgid "Channel Sources" msgstr "Kanal-Quellen" @@ -6405,12 +6095,12 @@ msgstr "Keine Vorschläge vorhanden. Wenn das ein neuer Server ist, versuche es msgid "Ignore/Hide" msgstr "Ignorieren/Verstecken" -#: ../../Zotlabs/Module/Tagger.php:55 ../../include/bbcode.php:263 +#: ../../Zotlabs/Module/Tagger.php:55 ../../include/bbcode.php:256 msgid "post" msgstr "Beitrag" -#: ../../Zotlabs/Module/Tagger.php:57 ../../include/conversation.php:150 -#: ../../include/text.php:1929 +#: ../../Zotlabs/Module/Tagger.php:57 ../../include/text.php:1948 +#: ../../include/conversation.php:150 msgid "comment" msgstr "Kommentar" @@ -6431,110 +6121,131 @@ msgstr "Schlagwort entfernen" msgid "Select a tag to remove: " msgstr "Schlagwort zum Entfernen auswählen:" -#: ../../Zotlabs/Module/Webpages.php:191 ../../Zotlabs/Lib/Apps.php:218 -#: ../../include/nav.php:106 ../../include/conversation.php:1700 -msgid "Webpages" -msgstr "Webseiten" +#: ../../Zotlabs/Module/Thing.php:114 +msgid "Thing updated" +msgstr "Sache aktualisiert" -#: ../../Zotlabs/Module/Webpages.php:202 ../../include/page_widgets.php:44 -msgid "Actions" -msgstr "Aktionen" +#: ../../Zotlabs/Module/Thing.php:166 +msgid "Object store: failed" +msgstr "Speichern des Objekts fehlgeschlagen" -#: ../../Zotlabs/Module/Webpages.php:203 ../../include/page_widgets.php:45 -msgid "Page Link" -msgstr "Seiten-Link" +#: ../../Zotlabs/Module/Thing.php:170 +msgid "Thing added" +msgstr "Sache hinzugefügt" -#: ../../Zotlabs/Module/Webpages.php:204 -msgid "Page Title" -msgstr "Seitentitel" +#: ../../Zotlabs/Module/Thing.php:196 +#, php-format +msgid "OBJ: %1$s %2$s %3$s" +msgstr "OBJ: %1$s %2$s %3$s" -#: ../../Zotlabs/Module/Wiki.php:34 -msgid "Not found" -msgstr "Nicht gefunden" +#: ../../Zotlabs/Module/Thing.php:259 +msgid "Show Thing" +msgstr "Sache anzeigen" -#: ../../Zotlabs/Module/Wiki.php:92 ../../Zotlabs/Lib/Apps.php:219 -#: ../../include/nav.php:108 ../../include/conversation.php:1710 -#: ../../include/conversation.php:1713 ../../include/features.php:55 -msgid "Wiki" -msgstr "Wiki" +#: ../../Zotlabs/Module/Thing.php:266 +msgid "item not found." +msgstr "Eintrag nicht gefunden" -#: ../../Zotlabs/Module/Wiki.php:93 -msgid "Sandbox" -msgstr "Sandbox" +#: ../../Zotlabs/Module/Thing.php:299 +msgid "Edit Thing" +msgstr "Sache bearbeiten" -#: ../../Zotlabs/Module/Wiki.php:95 +#: ../../Zotlabs/Module/Thing.php:301 ../../Zotlabs/Module/Thing.php:351 +msgid "Select a profile" +msgstr "Wähle ein Profil" + +#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:354 +msgid "Post an activity" +msgstr "Aktivitätsnachricht senden" + +#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:354 +msgid "Only sends to viewers of the applicable profile" +msgstr "Nur an Betrachter des ausgewählten Profils senden" + +#: ../../Zotlabs/Module/Thing.php:307 ../../Zotlabs/Module/Thing.php:356 +msgid "Name of thing e.g. something" +msgstr "Name der Sache, z. B. irgendwas" + +#: ../../Zotlabs/Module/Thing.php:309 ../../Zotlabs/Module/Thing.php:357 +msgid "URL of thing (optional)" +msgstr "URL der Sache (optional)" + +#: ../../Zotlabs/Module/Thing.php:311 ../../Zotlabs/Module/Thing.php:358 +msgid "URL for photo of thing (optional)" +msgstr "URL eines Fotos der Sache (optional)" + +#: ../../Zotlabs/Module/Thing.php:349 +msgid "Add Thing to your Profile" +msgstr "Die Sache Deinem Profil hinzufügen" + +#: ../../Zotlabs/Module/Uexport.php:55 ../../Zotlabs/Module/Uexport.php:56 +msgid "Export Channel" +msgstr "Kanal exportieren" + +#: ../../Zotlabs/Module/Uexport.php:57 msgid "" -"\"# Wiki Sandbox\\n\\nContent you **edit** and **preview** here *will not be" -" saved*.\"" -msgstr "\"# Wiki Sandkasten\\n\\nInhalte, die Du hier **veränderst** und **als Vorschau anzeigst**, *werden nicht gespeichert*.\"" +"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 "Exportiert die grundlegenden Kanal-Informationen in eine kleine Datei. Diese stellt eine Sicherung Deiner Verbindungen, Berechtigungen, Profile und Basisdaten bereit, die für den Import auf einem anderen Hub verwendet werden kann, aber nicht die Beiträge Deines Kanals enthält." -#: ../../Zotlabs/Module/Wiki.php:164 -msgid "Revision Comparison" -msgstr "Revisionsvergleich" +#: ../../Zotlabs/Module/Uexport.php:58 +msgid "Export Content" +msgstr "Kanal und Inhalte exportieren" -#: ../../Zotlabs/Module/Wiki.php:165 -msgid "Revert" -msgstr "Rückgängig machen" +#: ../../Zotlabs/Module/Uexport.php:59 +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 "Exportiert Deine Kanal-Informationen sowie alle zugehörigen Inhalte in eine JSON-Sicherungsdatei. Die sichert alle Verbindungen, Berechtigungen, Profildaten und Deine Beiträge aus mehreren Monaten. Diese Datei kann SEHR groß werden! Bitte habe ein wenig Geduld – es kann mehrere Minuten dauern, bis der Download startet." -#: ../../Zotlabs/Module/Wiki.php:192 -msgid "Enter the name of your new wiki:" -msgstr "Gib einen Namen für Dein neues Wiki ein:" +#: ../../Zotlabs/Module/Uexport.php:60 +msgid "Export your posts from a given year." +msgstr "Exportiert die Beiträge des angegebenen Jahres." -#: ../../Zotlabs/Module/Wiki.php:193 -msgid "Enter the name of the new page:" -msgstr "Geben Sie den Namen der neuen Seite ein:" +#: ../../Zotlabs/Module/Uexport.php:62 +msgid "" +"You may also export your posts and conversations for a particular year or " +"month. Adjust the date in your browser location bar to select other dates. " +"If the export fails (possibly due to memory exhaustion on your server hub), " +"please try again selecting a more limited date range." +msgstr "Du kannst auch die Beiträge und Konversationen eines bestimmten Jahres oder Monats exportieren. Ändere das Datum in der Adresszeile Deines Browsers, um andere Zeiträume zu wählen. Falls der Export fehlschlägt (vermutlich, weil auf diesem Hub nicht genügend Speicher zur Verfügung steht), versuche es noch einmal mit einer kleineren Zeitspanne." -#: ../../Zotlabs/Module/Wiki.php:194 -msgid "Enter the new name:" -msgstr "Geben Sie den neuen Namen ein:" +#: ../../Zotlabs/Module/Uexport.php:63 +#, php-format +msgid "" +"To select all posts for a given year, such as this year, visit %2$s" +msgstr "Um alle Beiträge eines bestimmten Jahres, zum Beispiel dieses Jahres, auszuwählen, klicke %2$s." -#: ../../Zotlabs/Module/Wiki.php:200 ../../include/conversation.php:1150 -msgid "Embed image from photo albums" -msgstr "Bild aus Fotoalben einbetten" +#: ../../Zotlabs/Module/Uexport.php:64 +#, php-format +msgid "" +"To select all posts for a given month, such as January of this year, visit " +"%2$s" +msgstr "Um alle Beiträge eines bestimmten Monats auszuwählen, zum Beispiel vom Januar diesen Jahres, klicke %2$s." -#: ../../Zotlabs/Module/Wiki.php:201 ../../include/conversation.php:1234 -msgid "Embed an image from your albums" -msgstr "Betten Sie ein Bild aus Ihren Alben ein" +#: ../../Zotlabs/Module/Uexport.php:65 +#, php-format +msgid "" +"These content files may be imported or restored by visiting %2$s on any site containing your channel. For best results" +" please import or restore these in date order (oldest first)." +msgstr "Diese Inhalts-Sicherungen können wiederhergestellt werden, indem Du %2$s auf jeglichem Hub besuchst, der diesen Kanal enthält. Das funktioniert am besten, wenn Du dabei die zeitliche Reihenfolge einhältst, also die Sicherungen für den ältesten Zeitraum zuerst importierst." -#: ../../Zotlabs/Module/Wiki.php:203 ../../include/conversation.php:1236 -#: ../../include/conversation.php:1273 -msgid "OK" -msgstr "Ok" - -#: ../../Zotlabs/Module/Wiki.php:204 ../../include/conversation.php:1186 -msgid "Choose images to embed" -msgstr "Wählen Sie Bilder zum Einbetten aus" - -#: ../../Zotlabs/Module/Wiki.php:205 ../../include/conversation.php:1187 -msgid "Choose an album" -msgstr "Wählen Sie ein Album aus" - -#: ../../Zotlabs/Module/Wiki.php:206 ../../include/conversation.php:1188 -msgid "Choose a different album..." -msgstr "Wählen Sie ein anderes Album aus..." - -#: ../../Zotlabs/Module/Wiki.php:207 ../../include/conversation.php:1189 -msgid "Error getting album list" -msgstr "Fehler beim Holen der Albenliste" - -#: ../../Zotlabs/Module/Wiki.php:208 ../../include/conversation.php:1190 -msgid "Error getting photo link" -msgstr "Fehler beim Holen des Fotolinks" - -#: ../../Zotlabs/Module/Wiki.php:209 ../../include/conversation.php:1191 -msgid "Error getting album" -msgstr "Fehler beim Holen des Albums" - -#: ../../Zotlabs/Module/Viewconnections.php:65 +#: ../../Zotlabs/Module/Viewconnections.php:62 msgid "No connections." msgstr "Keine Verbindungen." -#: ../../Zotlabs/Module/Viewconnections.php:78 +#: ../../Zotlabs/Module/Viewconnections.php:75 #, php-format msgid "Visit %s's profile [%s]" msgstr "%ss Profil [%s] besuchen" -#: ../../Zotlabs/Module/Viewconnections.php:107 +#: ../../Zotlabs/Module/Viewconnections.php:104 msgid "View Connections" msgstr "Verbindungen anzeigen" @@ -6542,23 +6253,22 @@ msgstr "Verbindungen anzeigen" msgid "Source of Item" msgstr "Quelle des Elements" -#: ../../Zotlabs/Module/Api.php:61 ../../Zotlabs/Module/Api.php:85 -msgid "Authorize application connection" -msgstr "Zugriff für die Anwendung autorisieren" +#: ../../Zotlabs/Module/Webpages.php:184 ../../Zotlabs/Lib/Apps.php:217 +#: ../../include/nav.php:106 ../../include/conversation.php:1685 +msgid "Webpages" +msgstr "Webseiten" -#: ../../Zotlabs/Module/Api.php:62 -msgid "Return to your app and insert this Securty Code:" -msgstr "Trage folgenden Sicherheitscode in der Anwendung ein:" +#: ../../Zotlabs/Module/Webpages.php:195 ../../include/page_widgets.php:41 +msgid "Actions" +msgstr "Aktionen" -#: ../../Zotlabs/Module/Api.php:72 -msgid "Please login to continue." -msgstr "Zum Weitermachen, bitte einloggen." +#: ../../Zotlabs/Module/Webpages.php:196 ../../include/page_widgets.php:42 +msgid "Page Link" +msgstr "Seiten-Link" -#: ../../Zotlabs/Module/Api.php:87 -msgid "" -"Do you want to authorize this application to access your posts and contacts," -" and/or create new posts for you?" -msgstr "Möchtest Du dieser Anwendung erlauben, Deine Nachrichten und Kontakte abzurufen und/oder neue Nachrichten für Dich zu erstellen?" +#: ../../Zotlabs/Module/Webpages.php:197 +msgid "Page Title" +msgstr "Seitentitel" #: ../../Zotlabs/Module/Xchan.php:10 msgid "Xchan Lookup" @@ -6568,6 +6278,92 @@ msgstr "Xchan-Suche" msgid "Lookup xchan beginning with (or webbie): " msgstr "Nach xchans oder Webbies (Kanal-Adressen) suchen, die wie folgt beginnen:" +#: ../../Zotlabs/Lib/Apps.php:204 +msgid "Site Admin" +msgstr "Hub-Administration" + +#: ../../Zotlabs/Lib/Apps.php:205 +msgid "Bug Report" +msgstr "Fehler-Rückmeldung" + +#: ../../Zotlabs/Lib/Apps.php:206 +msgid "View Bookmarks" +msgstr "Lesezeichen ansehen" + +#: ../../Zotlabs/Lib/Apps.php:207 +msgid "My Chatrooms" +msgstr "Meine Chaträume" + +#: ../../Zotlabs/Lib/Apps.php:209 +msgid "Firefox Share" +msgstr "Teilen-Knopf für Firefox" + +#: ../../Zotlabs/Lib/Apps.php:210 +msgid "Remote Diagnostics" +msgstr "Ferndiagnose" + +#: ../../Zotlabs/Lib/Apps.php:211 ../../include/features.php:89 +msgid "Suggest Channels" +msgstr "Kanäle vorschlagen" + +#: ../../Zotlabs/Lib/Apps.php:212 ../../include/nav.php:110 +#: ../../boot.php:1703 +msgid "Login" +msgstr "Anmelden" + +#: ../../Zotlabs/Lib/Apps.php:214 ../../include/nav.php:179 +msgid "Grid" +msgstr "Grid" + +#: ../../Zotlabs/Lib/Apps.php:218 ../../include/nav.php:182 +msgid "Channel Home" +msgstr "Mein Kanal" + +#: ../../Zotlabs/Lib/Apps.php:221 ../../include/nav.php:201 +#: ../../include/conversation.php:1649 ../../include/conversation.php:1652 +msgid "Events" +msgstr "Termine" + +#: ../../Zotlabs/Lib/Apps.php:222 ../../include/nav.php:167 +msgid "Directory" +msgstr "Verzeichnis" + +#: ../../Zotlabs/Lib/Apps.php:224 ../../include/nav.php:193 +msgid "Mail" +msgstr "Mail" + +#: ../../Zotlabs/Lib/Apps.php:227 ../../include/nav.php:96 +msgid "Chat" +msgstr "Chat" + +#: ../../Zotlabs/Lib/Apps.php:229 +msgid "Probe" +msgstr "Testen" + +#: ../../Zotlabs/Lib/Apps.php:230 +msgid "Suggest" +msgstr "Empfehlen" + +#: ../../Zotlabs/Lib/Apps.php:231 +msgid "Random Channel" +msgstr "Zufälliger Kanal" + +#: ../../Zotlabs/Lib/Apps.php:232 +msgid "Invite" +msgstr "Einladen" + +#: ../../Zotlabs/Lib/Apps.php:233 ../../include/widgets.php:1386 +msgid "Features" +msgstr "Funktionen" + +#: ../../Zotlabs/Lib/Apps.php:235 +msgid "Post" +msgstr "Beitrag schreiben" + +#: ../../Zotlabs/Lib/Apps.php:335 +msgid "Purchase" +msgstr "Kaufen" + #: ../../Zotlabs/Lib/Chatroom.php:27 msgid "Missing room name" msgstr "Der Chatraum hat keinen Namen" @@ -6588,19 +6384,19 @@ msgstr "Chatraum konnte nicht gefunden werden." msgid "Room is full" msgstr "Der Chatraum ist voll" -#: ../../Zotlabs/Lib/Enotify.php:60 ../../include/network.php:1882 +#: ../../Zotlabs/Lib/Enotify.php:60 ../../include/network.php:1823 msgid "$Projectname Notification" msgstr "$Projectname-Benachrichtigung" -#: ../../Zotlabs/Lib/Enotify.php:61 ../../include/network.php:1883 +#: ../../Zotlabs/Lib/Enotify.php:61 ../../include/network.php:1824 msgid "$projectname" msgstr "$projectname" -#: ../../Zotlabs/Lib/Enotify.php:63 ../../include/network.php:1885 +#: ../../Zotlabs/Lib/Enotify.php:63 ../../include/network.php:1826 msgid "Thank You," msgstr "Danke." -#: ../../Zotlabs/Lib/Enotify.php:65 ../../include/network.php:1887 +#: ../../Zotlabs/Lib/Enotify.php:65 ../../include/network.php:1828 #, php-format msgid "%s Administrator" msgstr "der Administrator von %s" @@ -6793,97 +6589,11 @@ msgstr "Neuer Beitrag wurde erzeugt" msgid "commented on %s's post" msgstr "hat %s's Beitrag kommentiert" -#: ../../Zotlabs/Lib/Apps.php:205 -msgid "Site Admin" -msgstr "Hub-Administration" - -#: ../../Zotlabs/Lib/Apps.php:206 -msgid "Bug Report" -msgstr "Fehler-Rückmeldung" - -#: ../../Zotlabs/Lib/Apps.php:207 -msgid "View Bookmarks" -msgstr "Lesezeichen ansehen" - -#: ../../Zotlabs/Lib/Apps.php:208 -msgid "My Chatrooms" -msgstr "Meine Chaträume" - -#: ../../Zotlabs/Lib/Apps.php:210 -msgid "Firefox Share" -msgstr "Teilen-Knopf für Firefox" - -#: ../../Zotlabs/Lib/Apps.php:211 -msgid "Remote Diagnostics" -msgstr "Ferndiagnose" - -#: ../../Zotlabs/Lib/Apps.php:212 ../../include/features.php:90 -msgid "Suggest Channels" -msgstr "Kanäle vorschlagen" - -#: ../../Zotlabs/Lib/Apps.php:213 ../../include/nav.php:112 -#: ../../boot.php:1704 -msgid "Login" -msgstr "Anmelden" - -#: ../../Zotlabs/Lib/Apps.php:215 ../../include/nav.php:181 -msgid "Grid" -msgstr "Grid" - -#: ../../Zotlabs/Lib/Apps.php:220 ../../include/nav.php:184 -msgid "Channel Home" -msgstr "Mein Kanal" - -#: ../../Zotlabs/Lib/Apps.php:223 ../../include/nav.php:203 -#: ../../include/conversation.php:1664 ../../include/conversation.php:1667 -msgid "Events" -msgstr "Termine" - -#: ../../Zotlabs/Lib/Apps.php:224 ../../include/nav.php:169 -msgid "Directory" -msgstr "Verzeichnis" - -#: ../../Zotlabs/Lib/Apps.php:226 ../../include/nav.php:195 -msgid "Mail" -msgstr "Mail" - -#: ../../Zotlabs/Lib/Apps.php:229 ../../include/nav.php:96 -msgid "Chat" -msgstr "Chat" - -#: ../../Zotlabs/Lib/Apps.php:231 -msgid "Probe" -msgstr "Testen" - -#: ../../Zotlabs/Lib/Apps.php:232 -msgid "Suggest" -msgstr "Empfehlen" - -#: ../../Zotlabs/Lib/Apps.php:233 -msgid "Random Channel" -msgstr "Zufälliger Kanal" - -#: ../../Zotlabs/Lib/Apps.php:234 -msgid "Invite" -msgstr "Einladen" - -#: ../../Zotlabs/Lib/Apps.php:235 ../../include/widgets.php:1480 -msgid "Features" -msgstr "Funktionen" - -#: ../../Zotlabs/Lib/Apps.php:237 -msgid "Post" -msgstr "Beitrag schreiben" - -#: ../../Zotlabs/Lib/Apps.php:339 -msgid "Purchase" -msgstr "Kaufen" - -#: ../../Zotlabs/Lib/ThreadItem.php:95 ../../include/conversation.php:667 +#: ../../Zotlabs/Lib/ThreadItem.php:95 ../../include/conversation.php:664 msgid "Private Message" msgstr "Private Nachricht" -#: ../../Zotlabs/Lib/ThreadItem.php:132 ../../include/conversation.php:659 +#: ../../Zotlabs/Lib/ThreadItem.php:132 ../../include/conversation.php:656 msgid "Select" msgstr "Auswählen" @@ -6931,11 +6641,11 @@ msgstr "Markierungsstatus (Stern) umschalten" msgid "starred" msgstr "markiert" -#: ../../Zotlabs/Lib/ThreadItem.php:234 ../../include/conversation.php:674 +#: ../../Zotlabs/Lib/ThreadItem.php:234 ../../include/conversation.php:671 msgid "Message signature validated" msgstr "Signatur überprüft" -#: ../../Zotlabs/Lib/ThreadItem.php:235 ../../include/conversation.php:675 +#: ../../Zotlabs/Lib/ThreadItem.php:235 ../../include/conversation.php:672 msgid "Message signature incorrect" msgstr "Signatur nicht korrekt" @@ -6991,17 +6701,17 @@ msgstr "Wall-to-Wall" msgid "via Wall-To-Wall:" msgstr "via Wall-To-Wall:" -#: ../../Zotlabs/Lib/ThreadItem.php:341 ../../include/conversation.php:722 +#: ../../Zotlabs/Lib/ThreadItem.php:341 ../../include/conversation.php:719 #, php-format msgid "from %s" msgstr "via %s" -#: ../../Zotlabs/Lib/ThreadItem.php:344 ../../include/conversation.php:725 +#: ../../Zotlabs/Lib/ThreadItem.php:344 ../../include/conversation.php:722 #, php-format msgid "last edited: %s" msgstr "zuletzt bearbeitet: %s" -#: ../../Zotlabs/Lib/ThreadItem.php:345 ../../include/conversation.php:726 +#: ../../Zotlabs/Lib/ThreadItem.php:345 ../../include/conversation.php:723 #, php-format msgid "Expires: %s" msgstr "Verfällt: %s" @@ -7019,27 +6729,26 @@ msgid "Mark all seen" msgstr "Alle als gelesen markieren" #: ../../Zotlabs/Lib/ThreadItem.php:421 ../../include/js_strings.php:7 -#, php-format -msgid "%s show all" -msgstr "%s mehr anzeigen" +msgid "[+] show all" +msgstr "[+] Alle anzeigen" -#: ../../Zotlabs/Lib/ThreadItem.php:711 ../../include/conversation.php:1226 +#: ../../Zotlabs/Lib/ThreadItem.php:711 ../../include/conversation.php:1215 msgid "Bold" msgstr "Fett" -#: ../../Zotlabs/Lib/ThreadItem.php:712 ../../include/conversation.php:1227 +#: ../../Zotlabs/Lib/ThreadItem.php:712 ../../include/conversation.php:1216 msgid "Italic" msgstr "Kursiv" -#: ../../Zotlabs/Lib/ThreadItem.php:713 ../../include/conversation.php:1228 +#: ../../Zotlabs/Lib/ThreadItem.php:713 ../../include/conversation.php:1217 msgid "Underline" msgstr "Unterstrichen" -#: ../../Zotlabs/Lib/ThreadItem.php:714 ../../include/conversation.php:1229 +#: ../../Zotlabs/Lib/ThreadItem.php:714 ../../include/conversation.php:1218 msgid "Quote" msgstr "Zitat" -#: ../../Zotlabs/Lib/ThreadItem.php:715 ../../include/conversation.php:1230 +#: ../../Zotlabs/Lib/ThreadItem.php:715 ../../include/conversation.php:1219 msgid "Code" msgstr "Code" @@ -7055,74 +6764,11 @@ msgstr "Link einfügen" msgid "Video" msgstr "Video" -#: ../../Zotlabs/Lib/PermissionDescription.php:31 -#: ../../include/acl_selectors.php:230 -msgid "Visible to your default audience" -msgstr "Standard-Sichtbarkeit gemäß Kanaleinstellungen" - -#: ../../Zotlabs/Lib/PermissionDescription.php:106 -#: ../../include/acl_selectors.php:266 -msgid "Only me" -msgstr "Nur ich" - -#: ../../Zotlabs/Lib/PermissionDescription.php:107 -msgid "Public" -msgstr "Öffentlich" - -#: ../../Zotlabs/Lib/PermissionDescription.php:108 -msgid "Anybody in the $Projectname network" -msgstr "Jeder innerhalb des $Projectname Netzwerks" - -#: ../../Zotlabs/Lib/PermissionDescription.php:109 -#, php-format -msgid "Any account on %s" -msgstr "Jedes Nutzerkonto auf %s" - -#: ../../Zotlabs/Lib/PermissionDescription.php:110 -msgid "Any of my connections" -msgstr "Alle meine Verbindungen" - -#: ../../Zotlabs/Lib/PermissionDescription.php:111 -msgid "Only connections I specifically allow" -msgstr "Nur Verbindungen, denen ich es explizit erlaube" - -#: ../../Zotlabs/Lib/PermissionDescription.php:112 -msgid "Anybody authenticated (could include visitors from other networks)" -msgstr "Jeder, der angemeldet ist (kann Besucher anderer Netzwerke beinhalten)" - -#: ../../Zotlabs/Lib/PermissionDescription.php:113 -msgid "Any connections including those who haven't yet been approved" -msgstr "Alle Verbindungen einschließlich der noch nicht bestätigten" - -#: ../../Zotlabs/Lib/PermissionDescription.php:152 -msgid "" -"This is your default setting for the audience of your normal stream, and " -"posts." -msgstr "Dies ist Deine Voreinstellung für die Sichtbarkeit Deiner normalen Beiträge (Stream)." - -#: ../../Zotlabs/Lib/PermissionDescription.php:153 -msgid "" -"This is your default setting for who can view your default channel profile" -msgstr "Dies ist Deine Voreinstellung für die Sichtbarkeit Deines Standard-Kanalprofils." - -#: ../../Zotlabs/Lib/PermissionDescription.php:154 -msgid "This is your default setting for who can view your connections" -msgstr "Dies ist Deine Voreinstellung für die Sichtbarkeit Deiner Verbindungen." - -#: ../../Zotlabs/Lib/PermissionDescription.php:155 -msgid "" -"This is your default setting for who can view your file storage and photos" -msgstr "Dies ist Deine Voreinstellung für die Sichtbarkeit Deiner Dateien und Fotos." - -#: ../../Zotlabs/Lib/PermissionDescription.php:156 -msgid "This is your default setting for the audience of your webpages" -msgstr "Dies ist Deine Voreinstellung für die Sichtbarkeit Deiner Webseiten." - #: ../../include/Import/import_diaspora.php:16 msgid "No username found in import file." msgstr "Kein Benutzername in der Importdatei gefunden." -#: ../../include/Import/import_diaspora.php:41 ../../include/import.php:51 +#: ../../include/Import/import_diaspora.php:41 ../../include/import.php:50 msgid "Unable to create a unique channel address. Import failed." msgstr "Es war nicht möglich, eine eindeutige Kanal-Adresse zu erzeugen. Der Import ist fehlgeschlagen." @@ -7131,291 +6777,6 @@ msgstr "Es war nicht möglich, eine eindeutige Kanal-Adresse zu erzeugen. Der Im msgid "Cannot locate DNS info for database server '%s'" msgstr "Kann die DNS-Informationen für den Datenbank-Server '%s' nicht finden" -#: ../../include/photos.php:114 -#, php-format -msgid "Image exceeds website size limit of %lu bytes" -msgstr "Bild überschreitet das Webseitenlimit von %lu Bytes" - -#: ../../include/photos.php:121 -msgid "Image file is empty." -msgstr "Bilddatei ist leer." - -#: ../../include/photos.php:259 -msgid "Photo storage failed." -msgstr "Fotospeicherung fehlgeschlagen." - -#: ../../include/photos.php:299 -msgid "a new photo" -msgstr "ein neues Foto" - -#: ../../include/photos.php:303 -#, php-format -msgctxt "photo_upload" -msgid "%1$s posted %2$s to %3$s" -msgstr "%1$s hat %2$s auf %3$s veröffentlicht" - -#: ../../include/photos.php:506 ../../include/conversation.php:1650 -msgid "Photo Albums" -msgstr "Fotoalben" - -#: ../../include/photos.php:510 -msgid "Upload New Photos" -msgstr "Neue Fotos hochladen" - -#: ../../include/nav.php:82 ../../include/nav.php:115 ../../boot.php:1703 -msgid "Logout" -msgstr "Abmelden" - -#: ../../include/nav.php:82 ../../include/nav.php:115 -msgid "End this session" -msgstr "Beende diese Sitzung" - -#: ../../include/nav.php:85 ../../include/nav.php:146 -msgid "Home" -msgstr "Home" - -#: ../../include/nav.php:85 -msgid "Your posts and conversations" -msgstr "Deine Beiträge und Unterhaltungen" - -#: ../../include/nav.php:86 -msgid "Your profile page" -msgstr "Deine Profilseite" - -#: ../../include/nav.php:88 -msgid "Manage/Edit profiles" -msgstr "Profile verwalten" - -#: ../../include/nav.php:90 ../../include/channel.php:980 -msgid "Edit Profile" -msgstr "Profile bearbeiten" - -#: ../../include/nav.php:90 -msgid "Edit your profile" -msgstr "Profil bearbeiten" - -#: ../../include/nav.php:92 -msgid "Your photos" -msgstr "Deine Bilder" - -#: ../../include/nav.php:93 -msgid "Your files" -msgstr "Deine Dateien" - -#: ../../include/nav.php:96 -msgid "Your chatrooms" -msgstr "Deine Chaträume" - -#: ../../include/nav.php:102 ../../include/conversation.php:1690 -msgid "Bookmarks" -msgstr "Lesezeichen" - -#: ../../include/nav.php:102 -msgid "Your bookmarks" -msgstr "Deine Lesezeichen" - -#: ../../include/nav.php:106 -msgid "Your webpages" -msgstr "Deine Webseiten" - -#: ../../include/nav.php:108 -msgid "Your wiki" -msgstr "Dein Wiki" - -#: ../../include/nav.php:112 -msgid "Sign in" -msgstr "Anmelden" - -#: ../../include/nav.php:129 -#, php-format -msgid "%s - click to logout" -msgstr "%s - Klick zum Abmelden" - -#: ../../include/nav.php:132 -msgid "Remote authentication" -msgstr "Über Konto auf anderem Server einloggen" - -#: ../../include/nav.php:132 -msgid "Click to authenticate to your home hub" -msgstr "Klicke, um Dich über Deinen Heimat-Server zu authentifizieren" - -#: ../../include/nav.php:146 -msgid "Home Page" -msgstr "Homepage" - -#: ../../include/nav.php:149 -msgid "Create an account" -msgstr "Erzeuge ein Konto" - -#: ../../include/nav.php:161 -msgid "Help and documentation" -msgstr "Hilfe und Dokumentation" - -#: ../../include/nav.php:165 -msgid "Applications, utilities, links, games" -msgstr "Anwendungen (Apps), Zubehör, Links, Spiele" - -#: ../../include/nav.php:167 -msgid "Search site @name, #tag, ?docs, content" -msgstr "Hub durchsuchen: @Name. #Schlagwort, ?Dokumentation, Inhalt" - -#: ../../include/nav.php:169 -msgid "Channel Directory" -msgstr "Kanal-Verzeichnis" - -#: ../../include/nav.php:181 -msgid "Your grid" -msgstr "Dein Grid" - -#: ../../include/nav.php:182 -msgid "Mark all grid notifications seen" -msgstr "Alle Grid-Benachrichtigungen als angesehen markieren" - -#: ../../include/nav.php:184 -msgid "Channel home" -msgstr "Mein Kanal" - -#: ../../include/nav.php:185 -msgid "Mark all channel notifications seen" -msgstr "Markiere alle Kanal-Benachrichtigungen als angesehen" - -#: ../../include/nav.php:191 -msgid "Notices" -msgstr "Benachrichtigungen" - -#: ../../include/nav.php:191 -msgid "Notifications" -msgstr "Benachrichtigungen" - -#: ../../include/nav.php:192 -msgid "See all notifications" -msgstr "Alle Benachrichtigungen ansehen" - -#: ../../include/nav.php:195 -msgid "Private mail" -msgstr "Persönliche Mail" - -#: ../../include/nav.php:196 -msgid "See all private messages" -msgstr "Alle persönlichen Nachrichten ansehen" - -#: ../../include/nav.php:197 -msgid "Mark all private messages seen" -msgstr "Markiere alle persönlichen Nachrichten als gesehen" - -#: ../../include/nav.php:198 ../../include/widgets.php:667 -msgid "Inbox" -msgstr "Eingang" - -#: ../../include/nav.php:199 ../../include/widgets.php:672 -msgid "Outbox" -msgstr "Ausgang" - -#: ../../include/nav.php:200 ../../include/widgets.php:677 -msgid "New Message" -msgstr "Neue Nachricht" - -#: ../../include/nav.php:203 -msgid "Event Calendar" -msgstr "Terminkalender" - -#: ../../include/nav.php:204 -msgid "See all events" -msgstr "Alle Termine ansehen" - -#: ../../include/nav.php:205 -msgid "Mark all events seen" -msgstr "Markiere alle Termine als gesehen" - -#: ../../include/nav.php:208 -msgid "Manage Your Channels" -msgstr "Verwalte Deine Kanäle" - -#: ../../include/nav.php:210 -msgid "Account/Channel Settings" -msgstr "Konto-/Kanal-Einstellungen" - -#: ../../include/nav.php:218 ../../include/widgets.php:1510 -msgid "Admin" -msgstr "Administration" - -#: ../../include/nav.php:218 -msgid "Site Setup and Configuration" -msgstr "Seiten-Einrichtung und -Konfiguration" - -#: ../../include/nav.php:249 ../../include/conversation.php:854 -msgid "Loading..." -msgstr "Lädt ..." - -#: ../../include/nav.php:254 -msgid "@name, #tag, ?doc, content" -msgstr "@Name, #Schlagwort, ?Dokumentation, Inhalt" - -#: ../../include/nav.php:255 -msgid "Please wait..." -msgstr "Bitte warten..." - -#: ../../include/network.php:704 -msgid "view full size" -msgstr "In Vollbildansicht anschauen" - -#: ../../include/network.php:1930 ../../include/account.php:317 -#: ../../include/account.php:344 ../../include/account.php:404 -msgid "Administrator" -msgstr "Administrator" - -#: ../../include/network.php:1944 -msgid "No Subject" -msgstr "Kein Betreff" - -#: ../../include/network.php:2198 ../../include/network.php:2199 -msgid "Friendica" -msgstr "Friendica" - -#: ../../include/network.php:2200 -msgid "OStatus" -msgstr "OStatus" - -#: ../../include/network.php:2201 -msgid "GNU-Social" -msgstr "GNU-Social" - -#: ../../include/network.php:2202 -msgid "RSS/Atom" -msgstr "RSS/Atom" - -#: ../../include/network.php:2204 -msgid "Diaspora" -msgstr "Diaspora" - -#: ../../include/network.php:2205 -msgid "Facebook" -msgstr "Facebook" - -#: ../../include/network.php:2206 -msgid "Zot" -msgstr "Zot!" - -#: ../../include/network.php:2207 -msgid "LinkedIn" -msgstr "LinkedIn" - -#: ../../include/network.php:2208 -msgid "XMPP/IM" -msgstr "XMPP/IM" - -#: ../../include/network.php:2209 -msgid "MySpace" -msgstr "MySpace" - -#: ../../include/page_widgets.php:7 -msgid "New Page" -msgstr "Neue Seite" - -#: ../../include/page_widgets.php:46 -msgid "Title" -msgstr "Titel" - #: ../../include/taxonomy.php:188 ../../include/taxonomy.php:270 #: ../../include/widgets.php:46 ../../include/widgets.php:429 #: ../../include/contact_widgets.php:91 @@ -7454,159 +6815,952 @@ msgstr "gefällt" msgid "dislikes" msgstr "missfällt" -#: ../../include/channel.php:33 -msgid "Unable to obtain identity information from database" -msgstr "Kann keine Identitäts-Informationen aus Datenbank beziehen" +#: ../../include/event.php:22 ../../include/event.php:69 +#: ../../include/bb2diaspora.php:485 +msgid "l F d, Y \\@ g:i A" +msgstr "l, d. F Y, H:i" -#: ../../include/channel.php:67 -msgid "Empty name" -msgstr "Namensfeld leer" +#: ../../include/event.php:30 ../../include/event.php:73 +#: ../../include/bb2diaspora.php:491 +msgid "Starts:" +msgstr "Beginnt:" -#: ../../include/channel.php:70 -msgid "Name too long" -msgstr "Name ist zu lang" +#: ../../include/event.php:40 ../../include/event.php:77 +#: ../../include/bb2diaspora.php:499 +msgid "Finishes:" +msgstr "Endet:" -#: ../../include/channel.php:181 -msgid "No account identifier" -msgstr "Keine Account-Kennung" +#: ../../include/event.php:812 +msgid "This event has been added to your calendar." +msgstr "Dieser Termin wurde zu Deinem Kalender hinzugefügt" -#: ../../include/channel.php:193 -msgid "Nickname is required." -msgstr "Spitzname ist erforderlich." +#: ../../include/event.php:1012 +msgid "Not specified" +msgstr "Keine Angabe" -#: ../../include/channel.php:207 -msgid "Reserved nickname. Please choose another." -msgstr "Reservierter Kurzname. Bitte wähle einen anderen." +#: ../../include/event.php:1013 +msgid "Needs Action" +msgstr "Aktion erforderlich" -#: ../../include/channel.php:212 +#: ../../include/event.php:1014 +msgid "Completed" +msgstr "Abgeschlossen" + +#: ../../include/event.php:1015 +msgid "In Process" +msgstr "In Bearbeitung" + +#: ../../include/event.php:1016 +msgid "Cancelled" +msgstr "gestrichen" + +#: ../../include/import.php:29 msgid "" -"Nickname has unsupported characters or is already being used on this site." -msgstr "Der Spitzname enthält nicht-unterstütze Zeichen oder wird bereits auf dieser Seite genutzt." +"Cannot create a duplicate channel identifier on this system. Import failed." +msgstr "Kann keinen doppelten Kanal-Identifikator auf diesem System erzeugen (Spitzname oder Hash schon belegt). Import fehlgeschlagen." -#: ../../include/channel.php:272 -msgid "Unable to retrieve created identity" -msgstr "Kann die erstellte Identität nicht empfangen" +#: ../../include/import.php:76 +msgid "Channel clone failed. Import failed." +msgstr "Klonen des Kanals fehlgeschlagen. Import fehlgeschlagen." -#: ../../include/channel.php:341 -msgid "Default Profile" -msgstr "Standard-Profil" +#: ../../include/items.php:892 ../../include/items.php:937 +msgid "(Unknown)" +msgstr "(Unbekannt)" -#: ../../include/channel.php:830 -msgid "Requested channel is not available." -msgstr "Angeforderte Kanal nicht verfügbar." +#: ../../include/items.php:1136 +msgid "Visible to anybody on the internet." +msgstr "Für jeden im Internet sichtbar." -#: ../../include/channel.php:977 -msgid "Create New Profile" -msgstr "Neues Profil erstellen" +#: ../../include/items.php:1138 +msgid "Visible to you only." +msgstr "Nur für Dich sichtbar." -#: ../../include/channel.php:997 -msgid "Visible to everybody" -msgstr "Für jeden sichtbar" +#: ../../include/items.php:1140 +msgid "Visible to anybody in this network." +msgstr "Für jedes $Projectname-Mitglied sichtbar." -#: ../../include/channel.php:1070 ../../include/channel.php:1182 -msgid "Gender:" -msgstr "Geschlecht:" +#: ../../include/items.php:1142 +msgid "Visible to anybody authenticated." +msgstr "Für jeden sichtbar, der angemeldet ist." -#: ../../include/channel.php:1071 ../../include/channel.php:1226 -msgid "Status:" -msgstr "Status:" - -#: ../../include/channel.php:1072 ../../include/channel.php:1237 -msgid "Homepage:" -msgstr "Homepage:" - -#: ../../include/channel.php:1073 -msgid "Online Now" -msgstr "gerade online" - -#: ../../include/channel.php:1187 -msgid "Like this channel" -msgstr "Dieser Kanal gefällt mir" - -#: ../../include/channel.php:1211 -msgid "j F, Y" -msgstr "j. F Y" - -#: ../../include/channel.php:1212 -msgid "j F" -msgstr "j. F" - -#: ../../include/channel.php:1219 -msgid "Birthday:" -msgstr "Geburtstag:" - -#: ../../include/channel.php:1232 +#: ../../include/items.php:1144 #, php-format -msgid "for %1$d %2$s" -msgstr "seit %1$d %2$s" +msgid "Visible to anybody on %s." +msgstr "Für jeden auf %s sichtbar." -#: ../../include/channel.php:1235 -msgid "Sexual Preference:" -msgstr "Sexuelle Orientierung:" +#: ../../include/items.php:1146 +msgid "Visible to all connections." +msgstr "Für alle Verbindungen sichtbar." -#: ../../include/channel.php:1241 -msgid "Tags:" -msgstr "Schlagworte:" +#: ../../include/items.php:1148 +msgid "Visible to approved connections." +msgstr "Nur für akzeptierte Verbindungen sichtbar." -#: ../../include/channel.php:1243 -msgid "Political Views:" -msgstr "Politische Ansichten:" +#: ../../include/items.php:1150 +msgid "Visible to specific connections." +msgstr "Sichtbar für bestimmte Verbindungen." -#: ../../include/channel.php:1245 -msgid "Religion:" -msgstr "Religion:" +#: ../../include/items.php:3909 +msgid "Privacy group is empty." +msgstr "Gruppe ist leer." -#: ../../include/channel.php:1249 -msgid "Hobbies/Interests:" -msgstr "Hobbys/Interessen:" +#: ../../include/items.php:3916 +#, php-format +msgid "Privacy group: %s" +msgstr "Gruppe: %s" -#: ../../include/channel.php:1251 -msgid "Likes:" -msgstr "Gefällt:" +#: ../../include/items.php:3928 +msgid "Connection not found." +msgstr "Die Verbindung wurde nicht gefunden." -#: ../../include/channel.php:1253 -msgid "Dislikes:" -msgstr "Gefällt nicht:" +#: ../../include/items.php:4277 +msgid "profile photo" +msgstr "Profilfoto" -#: ../../include/channel.php:1255 -msgid "Contact information and Social Networks:" -msgstr "Kontaktinformation und soziale Netzwerke:" +#: ../../include/message.php:20 +msgid "No recipient provided." +msgstr "Kein Empfänger angegeben" -#: ../../include/channel.php:1257 -msgid "My other channels:" -msgstr "Meine anderen Kanäle:" +#: ../../include/message.php:25 +msgid "[no subject]" +msgstr "[no subject]" -#: ../../include/channel.php:1259 -msgid "Musical interests:" -msgstr "Musikalische Interessen:" +#: ../../include/message.php:45 +msgid "Unable to determine sender." +msgstr "Kann Absender nicht bestimmen." -#: ../../include/channel.php:1261 -msgid "Books, literature:" -msgstr "Bücher, Literatur:" +#: ../../include/message.php:222 +msgid "Stored post could not be verified." +msgstr "Gespeicherter Beitrag konnten nicht überprüft werden." -#: ../../include/channel.php:1263 -msgid "Television:" -msgstr "Fernsehen:" +#: ../../include/text.php:428 +msgid "prev" +msgstr "vorherige" -#: ../../include/channel.php:1265 -msgid "Film/dance/culture/entertainment:" -msgstr "Film/Tanz/Kultur/Unterhaltung:" +#: ../../include/text.php:430 +msgid "first" +msgstr "erste" -#: ../../include/channel.php:1267 -msgid "Love/Romance:" -msgstr "Liebe/Romantik:" +#: ../../include/text.php:459 +msgid "last" +msgstr "letzte" -#: ../../include/channel.php:1269 -msgid "Work/employment:" -msgstr "Arbeit/Anstellung:" +#: ../../include/text.php:462 +msgid "next" +msgstr "nächste" -#: ../../include/channel.php:1271 -msgid "School/education:" -msgstr "Schule/Ausbildung:" +#: ../../include/text.php:472 +msgid "older" +msgstr "älter" -#: ../../include/channel.php:1292 -msgid "Like this thing" -msgstr "Gefällt mir" +#: ../../include/text.php:474 +msgid "newer" +msgstr "neuer" + +#: ../../include/text.php:863 +msgid "No connections" +msgstr "Keine Verbindungen" + +#: ../../include/text.php:888 +#, php-format +msgid "View all %s connections" +msgstr "Alle Verbindungen von %s anzeigen" + +#: ../../include/text.php:1033 ../../include/text.php:1038 +msgid "poke" +msgstr "anstupsen" + +#: ../../include/text.php:1033 ../../include/text.php:1038 +#: ../../include/conversation.php:243 +msgid "poked" +msgstr "stupste" + +#: ../../include/text.php:1039 +msgid "ping" +msgstr "anpingen" + +#: ../../include/text.php:1039 +msgid "pinged" +msgstr "pingte" + +#: ../../include/text.php:1040 +msgid "prod" +msgstr "knuffen" + +#: ../../include/text.php:1040 +msgid "prodded" +msgstr "knuffte" + +#: ../../include/text.php:1041 +msgid "slap" +msgstr "ohrfeigen" + +#: ../../include/text.php:1041 +msgid "slapped" +msgstr "ohrfeigte" + +#: ../../include/text.php:1042 +msgid "finger" +msgstr "befummeln" + +#: ../../include/text.php:1042 +msgid "fingered" +msgstr "befummelte" + +#: ../../include/text.php:1043 +msgid "rebuff" +msgstr "eine Abfuhr erteilen" + +#: ../../include/text.php:1043 +msgid "rebuffed" +msgstr "zurückgewiesen" + +#: ../../include/text.php:1055 +msgid "happy" +msgstr "glücklich" + +#: ../../include/text.php:1056 +msgid "sad" +msgstr "traurig" + +#: ../../include/text.php:1057 +msgid "mellow" +msgstr "sanft" + +#: ../../include/text.php:1058 +msgid "tired" +msgstr "müde" + +#: ../../include/text.php:1059 +msgid "perky" +msgstr "frech" + +#: ../../include/text.php:1060 +msgid "angry" +msgstr "sauer" + +#: ../../include/text.php:1061 +msgid "stupefied" +msgstr "verblüfft" + +#: ../../include/text.php:1062 +msgid "puzzled" +msgstr "verwirrt" + +#: ../../include/text.php:1063 +msgid "interested" +msgstr "interessiert" + +#: ../../include/text.php:1064 +msgid "bitter" +msgstr "verbittert" + +#: ../../include/text.php:1065 +msgid "cheerful" +msgstr "fröhlich" + +#: ../../include/text.php:1066 +msgid "alive" +msgstr "lebendig" + +#: ../../include/text.php:1067 +msgid "annoyed" +msgstr "verärgert" + +#: ../../include/text.php:1068 +msgid "anxious" +msgstr "unruhig" + +#: ../../include/text.php:1069 +msgid "cranky" +msgstr "schrullig" + +#: ../../include/text.php:1070 +msgid "disturbed" +msgstr "verstört" + +#: ../../include/text.php:1071 +msgid "frustrated" +msgstr "frustriert" + +#: ../../include/text.php:1072 +msgid "depressed" +msgstr "deprimiert" + +#: ../../include/text.php:1073 +msgid "motivated" +msgstr "motiviert" + +#: ../../include/text.php:1074 +msgid "relaxed" +msgstr "entspannt" + +#: ../../include/text.php:1075 +msgid "surprised" +msgstr "überrascht" + +#: ../../include/text.php:1257 ../../include/js_strings.php:70 +msgid "Monday" +msgstr "Montag" + +#: ../../include/text.php:1257 ../../include/js_strings.php:71 +msgid "Tuesday" +msgstr "Dienstag" + +#: ../../include/text.php:1257 ../../include/js_strings.php:72 +msgid "Wednesday" +msgstr "Mittwoch" + +#: ../../include/text.php:1257 ../../include/js_strings.php:73 +msgid "Thursday" +msgstr "Donnerstag" + +#: ../../include/text.php:1257 ../../include/js_strings.php:74 +msgid "Friday" +msgstr "Freitag" + +#: ../../include/text.php:1257 ../../include/js_strings.php:75 +msgid "Saturday" +msgstr "Samstag" + +#: ../../include/text.php:1257 ../../include/js_strings.php:69 +msgid "Sunday" +msgstr "Sonntag" + +#: ../../include/text.php:1261 ../../include/js_strings.php:45 +msgid "January" +msgstr "Januar" + +#: ../../include/text.php:1261 ../../include/js_strings.php:46 +msgid "February" +msgstr "Februar" + +#: ../../include/text.php:1261 ../../include/js_strings.php:47 +msgid "March" +msgstr "März" + +#: ../../include/text.php:1261 ../../include/js_strings.php:48 +msgid "April" +msgstr "April" + +#: ../../include/text.php:1261 +msgid "May" +msgstr "Mai" + +#: ../../include/text.php:1261 ../../include/js_strings.php:50 +msgid "June" +msgstr "Juni" + +#: ../../include/text.php:1261 ../../include/js_strings.php:51 +msgid "July" +msgstr "Juli" + +#: ../../include/text.php:1261 ../../include/js_strings.php:52 +msgid "August" +msgstr "August" + +#: ../../include/text.php:1261 ../../include/js_strings.php:53 +msgid "September" +msgstr "September" + +#: ../../include/text.php:1261 ../../include/js_strings.php:54 +msgid "October" +msgstr "Oktober" + +#: ../../include/text.php:1261 ../../include/js_strings.php:55 +msgid "November" +msgstr "November" + +#: ../../include/text.php:1261 ../../include/js_strings.php:56 +msgid "December" +msgstr "Dezember" + +#: ../../include/text.php:1338 ../../include/text.php:1342 +msgid "Unknown Attachment" +msgstr "Unbekannter Anhang" + +#: ../../include/text.php:1344 +msgid "unknown" +msgstr "unbekannt" + +#: ../../include/text.php:1380 +msgid "remove category" +msgstr "Kategorie entfernen" + +#: ../../include/text.php:1457 +msgid "remove from file" +msgstr "aus der Datei entfernen" + +#: ../../include/text.php:1753 ../../include/text.php:1824 +msgid "default" +msgstr "Standard" + +#: ../../include/text.php:1761 +msgid "Page layout" +msgstr "Seiten-Layout" + +#: ../../include/text.php:1761 +msgid "You can create your own with the layouts tool" +msgstr "Mit dem Gestaltungswerkzeug kannst Du Deine eigenen Layouts erstellen" + +#: ../../include/text.php:1803 +msgid "Page content type" +msgstr "Art des Seiteninhalts" + +#: ../../include/text.php:1836 +msgid "Select an alternate language" +msgstr "Wähle eine alternative Sprache" + +#: ../../include/text.php:1953 +msgid "activity" +msgstr "Aktivität" + +#: ../../include/text.php:2262 +msgid "Design Tools" +msgstr "Gestaltungswerkzeuge" + +#: ../../include/text.php:2268 +msgid "Pages" +msgstr "Seiten" + +#: ../../include/widgets.php:103 +msgid "System" +msgstr "System" + +#: ../../include/widgets.php:106 +msgid "New App" +msgstr "Neue App" + +#: ../../include/widgets.php:154 +msgid "Suggestions" +msgstr "Vorschläge" + +#: ../../include/widgets.php:155 +msgid "See more..." +msgstr "Mehr anzeigen …" + +#: ../../include/widgets.php:175 +#, php-format +msgid "You have %1$.0f of %2$.0f allowed connections." +msgstr "Du bist %1$.0f von maximal %2$.0f erlaubten Verbindungen eingegangen." + +#: ../../include/widgets.php:181 +msgid "Add New Connection" +msgstr "Neue Verbindung hinzufügen" + +#: ../../include/widgets.php:182 +msgid "Enter channel address" +msgstr "Adresse des Kanals eingeben" + +#: ../../include/widgets.php:183 +msgid "Examples: bob@example.com, https://example.com/barbara" +msgstr "Beispiele: bob@beispiel.com, http://beispiel.com/barbara" + +#: ../../include/widgets.php:199 +msgid "Notes" +msgstr "Notizen" + +#: ../../include/widgets.php:273 +msgid "Remove term" +msgstr "Eintrag löschen" + +#: ../../include/widgets.php:281 ../../include/features.php:84 +msgid "Saved Searches" +msgstr "Gespeicherte Suchanfragen" + +#: ../../include/widgets.php:282 ../../include/group.php:316 +msgid "add" +msgstr "hinzufügen" + +#: ../../include/widgets.php:310 ../../include/contact_widgets.php:53 +#: ../../include/features.php:98 +msgid "Saved Folders" +msgstr "Gespeicherte Ordner" + +#: ../../include/widgets.php:313 ../../include/widgets.php:432 +#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:94 +msgid "Everything" +msgstr "Alles" + +#: ../../include/widgets.php:354 +msgid "Archives" +msgstr "Archive" + +#: ../../include/widgets.php:516 +msgid "Refresh" +msgstr "Aktualisieren" + +#: ../../include/widgets.php:556 +msgid "Account settings" +msgstr "Konto-Einstellungen" + +#: ../../include/widgets.php:562 +msgid "Channel settings" +msgstr "Kanal-Einstellungen" + +#: ../../include/widgets.php:571 +msgid "Additional features" +msgstr "Zusätzliche Funktionen" + +#: ../../include/widgets.php:578 +msgid "Feature/Addon settings" +msgstr "Plugin-Einstellungen" + +#: ../../include/widgets.php:584 +msgid "Display settings" +msgstr "Anzeige-Einstellungen" + +#: ../../include/widgets.php:591 +msgid "Manage locations" +msgstr "Klon-Adressen verwalten" + +#: ../../include/widgets.php:600 +msgid "Export channel" +msgstr "Kanal exportieren" + +#: ../../include/widgets.php:607 +msgid "Connected apps" +msgstr "Verbundene Apps" + +#: ../../include/widgets.php:622 +msgid "Premium Channel Settings" +msgstr "Premium-Kanal-Einstellungen" + +#: ../../include/widgets.php:651 +msgid "Private Mail Menu" +msgstr "Private Nachrichten" + +#: ../../include/widgets.php:653 +msgid "Combined View" +msgstr "Kombinierte Anzeige" + +#: ../../include/widgets.php:658 ../../include/nav.php:196 +msgid "Inbox" +msgstr "Eingang" + +#: ../../include/widgets.php:663 ../../include/nav.php:197 +msgid "Outbox" +msgstr "Ausgang" + +#: ../../include/widgets.php:668 ../../include/nav.php:198 +msgid "New Message" +msgstr "Neue Nachricht" + +#: ../../include/widgets.php:685 ../../include/widgets.php:697 +msgid "Conversations" +msgstr "Konversationen" + +#: ../../include/widgets.php:689 +msgid "Received Messages" +msgstr "Erhaltene Nachrichten" + +#: ../../include/widgets.php:693 +msgid "Sent Messages" +msgstr "Gesendete Nachrichten" + +#: ../../include/widgets.php:707 +msgid "No messages." +msgstr "Keine Nachrichten." + +#: ../../include/widgets.php:725 +msgid "Delete conversation" +msgstr "Unterhaltung löschen" + +#: ../../include/widgets.php:751 +msgid "Events Menu" +msgstr "Kalendermenü" + +#: ../../include/widgets.php:752 +msgid "Day View" +msgstr "Tagesansicht" + +#: ../../include/widgets.php:753 +msgid "Week View" +msgstr "Wochenansicht" + +#: ../../include/widgets.php:754 +msgid "Month View" +msgstr "Monatsansicht" + +#: ../../include/widgets.php:766 +msgid "Events Tools" +msgstr "Kalenderwerkzeuge" + +#: ../../include/widgets.php:767 +msgid "Export Calendar" +msgstr "Kalender exportieren" + +#: ../../include/widgets.php:768 +msgid "Import Calendar" +msgstr "Kalender importieren" + +#: ../../include/widgets.php:842 ../../include/conversation.php:1662 +#: ../../include/conversation.php:1665 +msgid "Chatrooms" +msgstr "Chaträume" + +#: ../../include/widgets.php:846 +msgid "Overview" +msgstr "Übersicht" + +#: ../../include/widgets.php:853 +msgid "Chat Members" +msgstr "Chatmitglieder" + +#: ../../include/widgets.php:876 +msgid "Bookmarked Chatrooms" +msgstr "Gespeicherte Chatrooms" + +#: ../../include/widgets.php:899 +msgid "Suggested Chatrooms" +msgstr "Chatraum-Vorschläge" + +#: ../../include/widgets.php:1044 ../../include/widgets.php:1156 +msgid "photo/image" +msgstr "Foto/Bild" + +#: ../../include/widgets.php:1099 +msgid "Click to show more" +msgstr "Klick, um mehr anzuzeigen" + +#: ../../include/widgets.php:1250 +msgid "Rating Tools" +msgstr "Bewertungswerkzeuge" + +#: ../../include/widgets.php:1254 ../../include/widgets.php:1256 +msgid "Rate Me" +msgstr "Bewerte mich" + +#: ../../include/widgets.php:1259 +msgid "View Ratings" +msgstr "Bewertungen ansehen" + +#: ../../include/widgets.php:1316 +msgid "Forums" +msgstr "Foren" + +#: ../../include/widgets.php:1345 +msgid "Tasks" +msgstr "Aufgaben" + +#: ../../include/widgets.php:1354 +msgid "Documentation" +msgstr "Dokumentation" + +#: ../../include/widgets.php:1356 +msgid "Project/Site Information" +msgstr "Informationen über das Projekt und diesen Hub" + +#: ../../include/widgets.php:1357 +msgid "For Members" +msgstr "Für Mitglieder" + +#: ../../include/widgets.php:1358 +msgid "For Administrators" +msgstr "Für Administratoren" + +#: ../../include/widgets.php:1359 +msgid "For Developers" +msgstr "Für Entwickler" + +#: ../../include/widgets.php:1383 ../../include/widgets.php:1421 +msgid "Member registrations waiting for confirmation" +msgstr "Nutzer-Anmeldungen, die auf Bestätigung warten" + +#: ../../include/widgets.php:1389 +msgid "Inspect queue" +msgstr "Warteschlange kontrollieren" + +#: ../../include/widgets.php:1391 +msgid "DB updates" +msgstr "DB-Aktualisierungen" + +#: ../../include/widgets.php:1416 ../../include/nav.php:216 +msgid "Admin" +msgstr "Administration" + +#: ../../include/widgets.php:1417 +msgid "Plugin Features" +msgstr "Plug-In Funktionen" + +#: ../../include/follow.php:27 +msgid "Channel is blocked on this site." +msgstr "Der Kanal ist auf dieser Seite blockiert " + +#: ../../include/follow.php:32 +msgid "Channel location missing." +msgstr "Adresse des Kanals fehlt." + +#: ../../include/follow.php:81 +msgid "Response from remote channel was incomplete." +msgstr "Antwort des entfernten Kanals war unvollständig." + +#: ../../include/follow.php:98 +msgid "Channel was deleted and no longer exists." +msgstr "Kanal wurde gelöscht und existiert nicht mehr." + +#: ../../include/follow.php:154 ../../include/follow.php:190 +msgid "Protocol disabled." +msgstr "Protokoll deaktiviert." + +#: ../../include/follow.php:178 +msgid "Channel discovery failed." +msgstr "Kanalsuche fehlgeschlagen" + +#: ../../include/follow.php:216 +msgid "Cannot connect to yourself." +msgstr "Du kannst Dich nicht mit Dir selbst verbinden." + +#: ../../include/bookmarks.php:35 +#, php-format +msgid "%1$s's bookmarks" +msgstr "%1$ss Lesezeichen" + +#: ../../include/api.php:1336 +msgid "Public Timeline" +msgstr "Öffentliche Zeitleiste" + +#: ../../include/bbcode.php:123 ../../include/bbcode.php:844 +#: ../../include/bbcode.php:847 ../../include/bbcode.php:852 +#: ../../include/bbcode.php:855 ../../include/bbcode.php:858 +#: ../../include/bbcode.php:861 ../../include/bbcode.php:866 +#: ../../include/bbcode.php:869 ../../include/bbcode.php:874 +#: ../../include/bbcode.php:877 ../../include/bbcode.php:880 +#: ../../include/bbcode.php:883 +msgid "Image/photo" +msgstr "Bild/Foto" + +#: ../../include/bbcode.php:162 ../../include/bbcode.php:894 +msgid "Encrypted content" +msgstr "Verschlüsselter Inhalt" + +#: ../../include/bbcode.php:178 +#, php-format +msgid "Install %s element: " +msgstr "Element %s installieren: " + +#: ../../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 "Dieser Beitrag beinhaltet ein installierbares %s Element, aber Du hast nicht die nötigen Rechte, um es auf diesem Hub zu installieren." + +#: ../../include/bbcode.php:254 +#, php-format +msgid "%1$s wrote the following %2$s %3$s" +msgstr "%1$s schrieb den folgenden %2$s %3$s" + +#: ../../include/bbcode.php:331 ../../include/bbcode.php:339 +msgid "Click to open/close" +msgstr "Klicke zum Öffnen/Schließen" + +#: ../../include/bbcode.php:339 +msgid "spoiler" +msgstr "Spoiler" + +#: ../../include/bbcode.php:585 +msgid "Different viewers will see this text differently" +msgstr "Verschiedene Betrachter werden diesen Text unterschiedlich sehen" + +#: ../../include/bbcode.php:832 +msgid "$1 wrote:" +msgstr "$1 schrieb:" + +#: ../../include/dir_fns.php:141 +msgid "Directory Options" +msgstr "Verzeichnisoptionen" + +#: ../../include/dir_fns.php:143 +msgid "Safe Mode" +msgstr "Sicherer Modus" + +#: ../../include/dir_fns.php:144 +msgid "Public Forums Only" +msgstr "Nur öffentliche Foren" + +#: ../../include/dir_fns.php:145 +msgid "This Website Only" +msgstr "Nur dieser Hub" + +#: ../../include/security.php:383 +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 "Das Security-Token des Formulars war nicht korrekt. Das ist wahrscheinlich passiert, weil das Formular zu lange (>3 Stunden) offen war, bevor es abgeschickt wurde." + +#: ../../include/nav.php:82 ../../include/nav.php:113 ../../boot.php:1702 +msgid "Logout" +msgstr "Abmelden" + +#: ../../include/nav.php:82 ../../include/nav.php:113 +msgid "End this session" +msgstr "Beende diese Sitzung" + +#: ../../include/nav.php:85 ../../include/nav.php:144 +msgid "Home" +msgstr "Home" + +#: ../../include/nav.php:85 +msgid "Your posts and conversations" +msgstr "Deine Beiträge und Unterhaltungen" + +#: ../../include/nav.php:86 +msgid "Your profile page" +msgstr "Deine Profilseite" + +#: ../../include/nav.php:88 +msgid "Manage/Edit profiles" +msgstr "Profile verwalten" + +#: ../../include/nav.php:90 ../../include/channel.php:941 +msgid "Edit Profile" +msgstr "Profile bearbeiten" + +#: ../../include/nav.php:90 +msgid "Edit your profile" +msgstr "Profil bearbeiten" + +#: ../../include/nav.php:92 +msgid "Your photos" +msgstr "Deine Bilder" + +#: ../../include/nav.php:93 +msgid "Your files" +msgstr "Deine Dateien" + +#: ../../include/nav.php:96 +msgid "Your chatrooms" +msgstr "Deine Chaträume" + +#: ../../include/nav.php:102 ../../include/conversation.php:1675 +msgid "Bookmarks" +msgstr "Lesezeichen" + +#: ../../include/nav.php:102 +msgid "Your bookmarks" +msgstr "Deine Lesezeichen" + +#: ../../include/nav.php:106 +msgid "Your webpages" +msgstr "Deine Webseiten" + +#: ../../include/nav.php:110 +msgid "Sign in" +msgstr "Anmelden" + +#: ../../include/nav.php:127 +#, php-format +msgid "%s - click to logout" +msgstr "%s - Klick zum Abmelden" + +#: ../../include/nav.php:130 +msgid "Remote authentication" +msgstr "Über Konto auf anderem Server einloggen" + +#: ../../include/nav.php:130 +msgid "Click to authenticate to your home hub" +msgstr "Klicke, um Dich über Deinen Heimat-Server zu authentifizieren" + +#: ../../include/nav.php:144 +msgid "Home Page" +msgstr "Homepage" + +#: ../../include/nav.php:147 +msgid "Create an account" +msgstr "Erzeuge ein Konto" + +#: ../../include/nav.php:159 +msgid "Help and documentation" +msgstr "Hilfe und Dokumentation" + +#: ../../include/nav.php:163 +msgid "Applications, utilities, links, games" +msgstr "Anwendungen (Apps), Zubehör, Links, Spiele" + +#: ../../include/nav.php:165 +msgid "Search site @name, #tag, ?docs, content" +msgstr "Hub durchsuchen: @Name. #Schlagwort, ?Dokumentation, Inhalt" + +#: ../../include/nav.php:167 +msgid "Channel Directory" +msgstr "Kanal-Verzeichnis" + +#: ../../include/nav.php:179 +msgid "Your grid" +msgstr "Dein Grid" + +#: ../../include/nav.php:180 +msgid "Mark all grid notifications seen" +msgstr "Alle Grid-Benachrichtigungen als angesehen markieren" + +#: ../../include/nav.php:182 +msgid "Channel home" +msgstr "Mein Kanal" + +#: ../../include/nav.php:183 +msgid "Mark all channel notifications seen" +msgstr "Markiere alle Kanal-Benachrichtigungen als angesehen" + +#: ../../include/nav.php:189 +msgid "Notices" +msgstr "Benachrichtigungen" + +#: ../../include/nav.php:189 +msgid "Notifications" +msgstr "Benachrichtigungen" + +#: ../../include/nav.php:190 +msgid "See all notifications" +msgstr "Alle Benachrichtigungen ansehen" + +#: ../../include/nav.php:193 +msgid "Private mail" +msgstr "Persönliche Mail" + +#: ../../include/nav.php:194 +msgid "See all private messages" +msgstr "Alle persönlichen Nachrichten ansehen" + +#: ../../include/nav.php:195 +msgid "Mark all private messages seen" +msgstr "Markiere alle persönlichen Nachrichten als gesehen" + +#: ../../include/nav.php:201 +msgid "Event Calendar" +msgstr "Terminkalender" + +#: ../../include/nav.php:202 +msgid "See all events" +msgstr "Alle Termine ansehen" + +#: ../../include/nav.php:203 +msgid "Mark all events seen" +msgstr "Markiere alle Termine als gesehen" + +#: ../../include/nav.php:206 +msgid "Manage Your Channels" +msgstr "Verwalte Deine Kanäle" + +#: ../../include/nav.php:208 +msgid "Account/Channel Settings" +msgstr "Konto-/Kanal-Einstellungen" + +#: ../../include/nav.php:216 +msgid "Site Setup and Configuration" +msgstr "Seiten-Einrichtung und -Konfiguration" + +#: ../../include/nav.php:247 ../../include/conversation.php:851 +msgid "Loading..." +msgstr "Lädt ..." + +#: ../../include/nav.php:252 +msgid "@name, #tag, ?doc, content" +msgstr "@Name, #Schlagwort, ?Dokumentation, Inhalt" + +#: ../../include/nav.php:253 +msgid "Please wait..." +msgstr "Bitte warten..." #: ../../include/connections.php:95 msgid "New window" @@ -7621,6 +7775,52 @@ msgstr "Öffne die markierte Adresse in einem neuen Browserfenster oder Tab" msgid "User '%s' deleted" msgstr "Benutzer '%s' gelöscht" +#: ../../include/contact_widgets.php:11 +#, php-format +msgid "%d invitation available" +msgid_plural "%d invitations available" +msgstr[0] "%d Einladung verfügbar" +msgstr[1] "%d Einladungen verfügbar" + +#: ../../include/contact_widgets.php:19 +msgid "Find Channels" +msgstr "Finde Kanäle" + +#: ../../include/contact_widgets.php:20 +msgid "Enter name or interest" +msgstr "Name oder Interessen eingeben" + +#: ../../include/contact_widgets.php:21 +msgid "Connect/Follow" +msgstr "Verbinden/Folgen" + +#: ../../include/contact_widgets.php:22 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "Beispiele: Robert Morgenstein, Angeln" + +#: ../../include/contact_widgets.php:26 +msgid "Random Profile" +msgstr "Zufallsprofil" + +#: ../../include/contact_widgets.php:27 +msgid "Invite Friends" +msgstr "Lade Freunde ein" + +#: ../../include/contact_widgets.php:29 +msgid "Advanced example: name=fred and country=iceland" +msgstr "Fortgeschrittenes Beispiel: name=fred and country=iceland" + +#: ../../include/contact_widgets.php:122 +#, php-format +msgid "%d connection in common" +msgid_plural "%d connections in common" +msgstr[0] "%d gemeinsame Verbindung" +msgstr[1] "%d gemeinsame Verbindungen" + +#: ../../include/contact_widgets.php:127 +msgid "show more" +msgstr "mehr zeigen" + #: ../../include/conversation.php:204 #, php-format msgid "%1$s is now connected with %2$s" @@ -7631,269 +7831,258 @@ msgstr "%1$s ist jetzt mit %2$s verbunden" msgid "%1$s poked %2$s" msgstr "%1$s stupste %2$s an" -#: ../../include/conversation.php:243 ../../include/text.php:1013 -#: ../../include/text.php:1018 -msgid "poked" -msgstr "stupste" - -#: ../../include/conversation.php:694 +#: ../../include/conversation.php:691 #, php-format msgid "View %s's profile @ %s" msgstr "%ss Profil auf %s ansehen" -#: ../../include/conversation.php:713 +#: ../../include/conversation.php:710 msgid "Categories:" msgstr "Kategorien:" -#: ../../include/conversation.php:714 +#: ../../include/conversation.php:711 msgid "Filed under:" msgstr "Gespeichert unter:" -#: ../../include/conversation.php:741 +#: ../../include/conversation.php:738 msgid "View in context" msgstr "Im Zusammenhang anschauen" -#: ../../include/conversation.php:850 +#: ../../include/conversation.php:847 msgid "remove" msgstr "lösche" -#: ../../include/conversation.php:855 +#: ../../include/conversation.php:852 msgid "Delete Selected Items" msgstr "Lösche die ausgewählten Elemente" -#: ../../include/conversation.php:951 +#: ../../include/conversation.php:948 msgid "View Source" msgstr "Quelle anzeigen" -#: ../../include/conversation.php:952 +#: ../../include/conversation.php:949 msgid "Follow Thread" msgstr "Unterhaltung folgen" -#: ../../include/conversation.php:953 +#: ../../include/conversation.php:950 msgid "Unfollow Thread" msgstr "Unterhaltung nicht mehr folgen" -#: ../../include/conversation.php:958 +#: ../../include/conversation.php:955 msgid "Activity/Posts" msgstr "Aktivitäten/Beiträge" -#: ../../include/conversation.php:960 +#: ../../include/conversation.php:957 msgid "Edit Connection" msgstr "Verbindung bearbeiten" -#: ../../include/conversation.php:961 +#: ../../include/conversation.php:958 msgid "Message" msgstr "Nachricht" -#: ../../include/conversation.php:1078 +#: ../../include/conversation.php:1075 #, php-format msgid "%s likes this." msgstr "%s gefällt das." -#: ../../include/conversation.php:1078 +#: ../../include/conversation.php:1075 #, php-format msgid "%s doesn't like this." msgstr "%s gefällt das nicht." -#: ../../include/conversation.php:1082 +#: ../../include/conversation.php:1079 #, php-format msgid "%2$d people like this." msgid_plural "%2$d people like this." msgstr[0] "%2$d Person gefällt das." msgstr[1] "%2$d Leuten gefällt das." -#: ../../include/conversation.php:1084 +#: ../../include/conversation.php:1081 #, php-format msgid "%2$d people don't like this." msgid_plural "%2$d people don't like this." msgstr[0] "%2$d Person gefällt das nicht." msgstr[1] "%2$d Leuten gefällt das nicht." -#: ../../include/conversation.php:1090 +#: ../../include/conversation.php:1087 msgid "and" msgstr "und" -#: ../../include/conversation.php:1093 +#: ../../include/conversation.php:1090 #, php-format msgid ", and %d other people" msgid_plural ", and %d other people" msgstr[0] "" msgstr[1] ", und %d andere" -#: ../../include/conversation.php:1094 +#: ../../include/conversation.php:1091 #, php-format msgid "%s like this." msgstr "%s gefällt das." -#: ../../include/conversation.php:1094 +#: ../../include/conversation.php:1091 #, php-format msgid "%s don't like this." msgstr "%s gefällt das nicht." -#: ../../include/conversation.php:1133 +#: ../../include/conversation.php:1130 msgid "Set your location" msgstr "Standort" -#: ../../include/conversation.php:1134 +#: ../../include/conversation.php:1131 msgid "Clear browser location" msgstr "Browser-Standort löschen" -#: ../../include/conversation.php:1182 +#: ../../include/conversation.php:1177 msgid "Tag term:" msgstr "Schlagwort:" -#: ../../include/conversation.php:1183 +#: ../../include/conversation.php:1178 msgid "Where are you right now?" msgstr "Wo bist Du jetzt grade?" -#: ../../include/conversation.php:1221 +#: ../../include/conversation.php:1210 msgid "Page link name" msgstr "Link zur Seite" -#: ../../include/conversation.php:1224 +#: ../../include/conversation.php:1213 msgid "Post as" msgstr "Veröffentlichen als" -#: ../../include/conversation.php:1238 +#: ../../include/conversation.php:1223 msgid "Toggle voting" msgstr "Umfragewerkzeug aktivieren" -#: ../../include/conversation.php:1246 +#: ../../include/conversation.php:1231 msgid "Categories (optional, comma-separated list)" msgstr "Kategorien (optional, kommagetrennte Liste)" -#: ../../include/conversation.php:1269 +#: ../../include/conversation.php:1254 msgid "Set publish date" msgstr "Veröffentlichungsdatum festlegen" -#: ../../include/conversation.php:1518 +#: ../../include/conversation.php:1258 +msgid "OK" +msgstr "Ok" + +#: ../../include/conversation.php:1503 msgid "Discover" msgstr "Entdecken" -#: ../../include/conversation.php:1521 +#: ../../include/conversation.php:1506 msgid "Imported public streams" msgstr "Importierte öffentliche Beiträge" -#: ../../include/conversation.php:1526 +#: ../../include/conversation.php:1511 msgid "Commented Order" msgstr "Neueste Kommentare" -#: ../../include/conversation.php:1529 +#: ../../include/conversation.php:1514 msgid "Sort by Comment Date" msgstr "Nach Kommentardatum sortiert" -#: ../../include/conversation.php:1533 +#: ../../include/conversation.php:1518 msgid "Posted Order" msgstr "Neueste Beiträge" -#: ../../include/conversation.php:1536 +#: ../../include/conversation.php:1521 msgid "Sort by Post Date" msgstr "Nach Beitragsdatum sortiert" -#: ../../include/conversation.php:1544 +#: ../../include/conversation.php:1529 msgid "Posts that mention or involve you" msgstr "Beiträge mit Beteiligung Deinerseits" -#: ../../include/conversation.php:1553 +#: ../../include/conversation.php:1538 msgid "Activity Stream - by date" msgstr "Activity Stream – nach Datum sortiert" -#: ../../include/conversation.php:1559 +#: ../../include/conversation.php:1544 msgid "Starred" msgstr "Markiert" -#: ../../include/conversation.php:1562 +#: ../../include/conversation.php:1547 msgid "Favourite Posts" msgstr "Markierte Beiträge" -#: ../../include/conversation.php:1569 +#: ../../include/conversation.php:1554 msgid "Spam" msgstr "Spam" -#: ../../include/conversation.php:1572 +#: ../../include/conversation.php:1557 msgid "Posts flagged as SPAM" msgstr "Nachrichten, die als SPAM markiert wurden" -#: ../../include/conversation.php:1629 +#: ../../include/conversation.php:1614 msgid "Status Messages and Posts" msgstr "Statusnachrichten und Beiträge" -#: ../../include/conversation.php:1638 +#: ../../include/conversation.php:1623 msgid "About" msgstr "Über" -#: ../../include/conversation.php:1641 +#: ../../include/conversation.php:1626 msgid "Profile Details" msgstr "Profil-Details" -#: ../../include/conversation.php:1657 +#: ../../include/conversation.php:1635 ../../include/photos.php:502 +msgid "Photo Albums" +msgstr "Fotoalben" + +#: ../../include/conversation.php:1642 msgid "Files and Storage" msgstr "Dateien und Speicher" -#: ../../include/conversation.php:1677 ../../include/conversation.php:1680 -#: ../../include/widgets.php:836 -msgid "Chatrooms" -msgstr "Chaträume" - -#: ../../include/conversation.php:1693 +#: ../../include/conversation.php:1678 msgid "Saved Bookmarks" msgstr "Gespeicherte Lesezeichen" -#: ../../include/conversation.php:1703 +#: ../../include/conversation.php:1688 msgid "Manage Webpages" msgstr "Webseiten verwalten" -#: ../../include/conversation.php:1768 +#: ../../include/conversation.php:1747 msgctxt "noun" msgid "Attending" msgid_plural "Attending" msgstr[0] "Zusage" msgstr[1] "Zusagen" -#: ../../include/conversation.php:1771 +#: ../../include/conversation.php:1750 msgctxt "noun" msgid "Not Attending" msgid_plural "Not Attending" msgstr[0] "Absage" msgstr[1] "Absagen" -#: ../../include/conversation.php:1774 +#: ../../include/conversation.php:1753 msgctxt "noun" msgid "Undecided" msgid_plural "Undecided" msgstr[0] " Unentschlossen" msgstr[1] "Unentschlossene" -#: ../../include/conversation.php:1777 +#: ../../include/conversation.php:1756 msgctxt "noun" msgid "Agree" msgid_plural "Agrees" msgstr[0] "Zustimmung" msgstr[1] "Zustimmungen" -#: ../../include/conversation.php:1780 +#: ../../include/conversation.php:1759 msgctxt "noun" msgid "Disagree" msgid_plural "Disagrees" msgstr[0] "Ablehnung" msgstr[1] "Ablehnungen" -#: ../../include/conversation.php:1783 +#: ../../include/conversation.php:1762 msgctxt "noun" msgid "Abstain" msgid_plural "Abstains" msgstr[0] "Enthaltung" msgstr[1] "Enthaltungen" -#: ../../include/import.php:30 -msgid "" -"Cannot create a duplicate channel identifier on this system. Import failed." -msgstr "Kann keinen doppelten Kanal-Identifikator auf diesem System erzeugen (Spitzname oder Hash schon belegt). Import fehlgeschlagen." - -#: ../../include/import.php:97 -msgid "Channel clone failed. Import failed." -msgstr "Klonen des Kanals fehlgeschlagen. Import fehlgeschlagen." - #: ../../include/selectors.php:30 msgid "Frequently" msgstr "Häufig" @@ -7958,6 +8147,12 @@ msgstr "Geschlechtslos" msgid "Non-specific" msgstr "unklar" +#: ../../include/selectors.php:49 ../../include/selectors.php:66 +#: ../../include/selectors.php:104 ../../include/selectors.php:140 +#: ../../include/permissions.php:881 +msgid "Other" +msgstr "Andere" + #: ../../include/selectors.php:49 msgid "Undecided" msgstr "Unentschieden" @@ -8134,366 +8329,361 @@ msgstr "Interessiert mich nicht" msgid "Ask me" msgstr "Frag mich mal" -#: ../../include/bookmarks.php:35 +#: ../../include/PermissionDescription.php:31 +#: ../../include/acl_selectors.php:232 +msgid "Visible to your default audience" +msgstr "Standard-Sichtbarkeit gemäß Kanaleinstellungen" + +#: ../../include/PermissionDescription.php:115 +#: ../../include/acl_selectors.php:268 +msgid "Only me" +msgstr "Nur ich" + +#: ../../include/PermissionDescription.php:116 +msgid "Public" +msgstr "Öffentlich" + +#: ../../include/PermissionDescription.php:117 +msgid "Anybody in the $Projectname network" +msgstr "Jeder innerhalb des $Projectname Netzwerks" + +#: ../../include/PermissionDescription.php:118 #, php-format -msgid "%1$s's bookmarks" -msgstr "%1$ss Lesezeichen" +msgid "Any account on %s" +msgstr "Jedes Nutzerkonto auf %s" -#: ../../include/security.php:109 -msgid "guest:" -msgstr "Gast:" +#: ../../include/PermissionDescription.php:119 +msgid "Any of my connections" +msgstr "Alle meine Verbindungen" -#: ../../include/security.php:427 +#: ../../include/PermissionDescription.php:120 +msgid "Only connections I specifically allow" +msgstr "Nur Verbindungen, denen ich es explizit erlaube" + +#: ../../include/PermissionDescription.php:121 +msgid "Anybody authenticated (could include visitors from other networks)" +msgstr "Jeder, der angemeldet ist (kann Besucher anderer Netzwerke beinhalten)" + +#: ../../include/PermissionDescription.php:122 +msgid "Any connections including those who haven't yet been approved" +msgstr "Alle Verbindungen einschließlich der noch nicht bestätigten" + +#: ../../include/PermissionDescription.php:161 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 "Das Security-Token des Formulars war nicht korrekt. Das ist wahrscheinlich passiert, weil das Formular zu lange (>3 Stunden) offen war, bevor es abgeschickt wurde." +"This is your default setting for the audience of your normal stream, and " +"posts." +msgstr "Dies ist Deine Voreinstellung für die Sichtbarkeit Deiner normalen Beiträge (Stream)." -#: ../../include/text.php:404 -msgid "prev" -msgstr "vorherige" +#: ../../include/PermissionDescription.php:162 +msgid "" +"This is your default setting for who can view your default channel profile" +msgstr "Dies ist Deine Voreinstellung für die Sichtbarkeit Deines Standard-Kanalprofils." -#: ../../include/text.php:406 -msgid "first" -msgstr "erste" +#: ../../include/PermissionDescription.php:163 +msgid "This is your default setting for who can view your connections" +msgstr "Dies ist Deine Voreinstellung für die Sichtbarkeit Deiner Verbindungen." -#: ../../include/text.php:435 -msgid "last" -msgstr "letzte" +#: ../../include/PermissionDescription.php:164 +msgid "" +"This is your default setting for who can view your file storage and photos" +msgstr "Dies ist Deine Voreinstellung für die Sichtbarkeit Deiner Dateien und Fotos." -#: ../../include/text.php:438 -msgid "next" -msgstr "nächste" +#: ../../include/PermissionDescription.php:165 +msgid "This is your default setting for the audience of your webpages" +msgstr "Dies ist Deine Voreinstellung für die Sichtbarkeit Deiner Webseiten." -#: ../../include/text.php:448 -msgid "older" -msgstr "älter" +#: ../../include/account.php:28 +msgid "Not a valid email address" +msgstr "Ungültige E-Mail-Adresse" -#: ../../include/text.php:450 -msgid "newer" -msgstr "neuer" +#: ../../include/account.php:30 +msgid "Your email domain is not among those allowed on this site" +msgstr "Deine E-Mail-Adresse ist auf dieser Seite nicht erlaubt" -#: ../../include/text.php:843 -msgid "No connections" -msgstr "Keine Verbindungen" +#: ../../include/account.php:36 +msgid "Your email address is already registered at this site." +msgstr "Deine E-Mail-Adresse ist auf dieser Seite bereits registriert." -#: ../../include/text.php:868 +#: ../../include/account.php:68 +msgid "An invitation is required." +msgstr "Eine Einladung wird benötigt." + +#: ../../include/account.php:72 +msgid "Invitation could not be verified." +msgstr "Die Einladung konnte nicht bestätigt werden." + +#: ../../include/account.php:122 +msgid "Please enter the required information." +msgstr "Bitte gib die benötigten Informationen ein." + +#: ../../include/account.php:189 +msgid "Failed to store account information." +msgstr "Speichern der Nutzerkontodaten fehlgeschlagen." + +#: ../../include/account.php:249 #, php-format -msgid "View all %s connections" -msgstr "Alle Verbindungen von %s anzeigen" +msgid "Registration confirmation for %s" +msgstr "Registrierungsbestätigung für %s" + +#: ../../include/account.php:315 +#, php-format +msgid "Registration request at %s" +msgstr "Registrierungsanfrage auf %s" + +#: ../../include/account.php:317 ../../include/account.php:344 +#: ../../include/account.php:404 ../../include/network.php:1871 +msgid "Administrator" +msgstr "Administrator" + +#: ../../include/account.php:339 +msgid "your registration password" +msgstr "Dein Registrierungspasswort" + +#: ../../include/account.php:342 ../../include/account.php:402 +#, php-format +msgid "Registration details for %s" +msgstr "Registrierungsdetails für %s" + +#: ../../include/account.php:414 +msgid "Account approved." +msgstr "Nutzerkonto bestätigt." + +#: ../../include/account.php:454 +#, php-format +msgid "Registration revoked for %s" +msgstr "Registrierung für %s wurde widerrufen" + +#: ../../include/account.php:506 +msgid "Account verified. Please login." +msgstr "Nutzerkonto wurde bestätigt. Bitte melde Dich an!" + +#: ../../include/account.php:723 ../../include/account.php:725 +msgid "Click here to upgrade." +msgstr "Klicke hier, um das Upgrade durchzuführen." + +#: ../../include/account.php:731 +msgid "This action exceeds the limits set by your subscription plan." +msgstr "Diese Aktion überschreitet die Grenzen Ihres Abonnements." + +#: ../../include/account.php:736 +msgid "This action is not available under your subscription plan." +msgstr "Diese Aktion ist in Ihrem Abonnement nicht verfügbar." + +#: ../../include/attach.php:247 ../../include/attach.php:333 +msgid "Item was not found." +msgstr "Beitrag wurde nicht gefunden." + +#: ../../include/attach.php:497 +msgid "No source file." +msgstr "Keine Quelldatei." + +#: ../../include/attach.php:519 +msgid "Cannot locate file to replace" +msgstr "Kann Datei zum Ersetzen nicht finden" + +#: ../../include/attach.php:537 +msgid "Cannot locate file to revise/update" +msgstr "Kann Datei zum Prüfen/Aktualisieren nicht finden" + +#: ../../include/attach.php:672 +#, php-format +msgid "File exceeds size limit of %d" +msgstr "Datei überschreitet das Größen-Limit von %d" + +#: ../../include/attach.php:686 +#, php-format +msgid "You have reached your limit of %1$.0f Mbytes attachment storage." +msgstr "Die Größe Deiner Datei-Anhänge hat das Maximum von %1$.0f MByte erreicht." + +#: ../../include/attach.php:842 +msgid "File upload failed. Possible system limit or action terminated." +msgstr "Datei-Upload fehlgeschlagen. Mögliche Systembegrenzung oder abgebrochener Prozess." + +#: ../../include/attach.php:855 +msgid "Stored file could not be verified. Upload failed." +msgstr "Gespeichert Datei konnte nicht verifiziert werden. Upload abgebrochen." + +#: ../../include/attach.php:909 ../../include/attach.php:925 +msgid "Path not available." +msgstr "Pfad nicht verfügbar." + +#: ../../include/attach.php:971 ../../include/attach.php:1123 +msgid "Empty pathname" +msgstr "Leere Pfadangabe" + +#: ../../include/attach.php:997 +msgid "duplicate filename or path" +msgstr "doppelter Dateiname oder Pfad" + +#: ../../include/attach.php:1019 +msgid "Path not found." +msgstr "Pfad nicht gefunden." + +#: ../../include/attach.php:1077 +msgid "mkdir failed." +msgstr "mkdir fehlgeschlagen." + +#: ../../include/attach.php:1081 +msgid "database storage failed." +msgstr "Speichern in der Datenbank fehlgeschlagen." + +#: ../../include/attach.php:1129 +msgid "Empty path" +msgstr "Leere Pfadangabe" + +#: ../../include/channel.php:32 +msgid "Unable to obtain identity information from database" +msgstr "Kann keine Identitäts-Informationen aus Datenbank beziehen" -#: ../../include/text.php:1013 ../../include/text.php:1018 -msgid "poke" -msgstr "anstupsen" +#: ../../include/channel.php:66 +msgid "Empty name" +msgstr "Namensfeld leer" -#: ../../include/text.php:1019 -msgid "ping" -msgstr "anpingen" +#: ../../include/channel.php:69 +msgid "Name too long" +msgstr "Name ist zu lang" -#: ../../include/text.php:1019 -msgid "pinged" -msgstr "pingte" +#: ../../include/channel.php:180 +msgid "No account identifier" +msgstr "Keine Account-Kennung" -#: ../../include/text.php:1020 -msgid "prod" -msgstr "knuffen" +#: ../../include/channel.php:192 +msgid "Nickname is required." +msgstr "Spitzname ist erforderlich." -#: ../../include/text.php:1020 -msgid "prodded" -msgstr "knuffte" +#: ../../include/channel.php:206 +msgid "Reserved nickname. Please choose another." +msgstr "Reservierter Kurzname. Bitte wähle einen anderen." -#: ../../include/text.php:1021 -msgid "slap" -msgstr "ohrfeigen" - -#: ../../include/text.php:1021 -msgid "slapped" -msgstr "ohrfeigte" - -#: ../../include/text.php:1022 -msgid "finger" -msgstr "befummeln" - -#: ../../include/text.php:1022 -msgid "fingered" -msgstr "befummelte" - -#: ../../include/text.php:1023 -msgid "rebuff" -msgstr "eine Abfuhr erteilen" - -#: ../../include/text.php:1023 -msgid "rebuffed" -msgstr "zurückgewiesen" - -#: ../../include/text.php:1035 -msgid "happy" -msgstr "glücklich" - -#: ../../include/text.php:1036 -msgid "sad" -msgstr "traurig" - -#: ../../include/text.php:1037 -msgid "mellow" -msgstr "sanft" - -#: ../../include/text.php:1038 -msgid "tired" -msgstr "müde" - -#: ../../include/text.php:1039 -msgid "perky" -msgstr "frech" - -#: ../../include/text.php:1040 -msgid "angry" -msgstr "sauer" - -#: ../../include/text.php:1041 -msgid "stupefied" -msgstr "verblüfft" - -#: ../../include/text.php:1042 -msgid "puzzled" -msgstr "verwirrt" - -#: ../../include/text.php:1043 -msgid "interested" -msgstr "interessiert" - -#: ../../include/text.php:1044 -msgid "bitter" -msgstr "verbittert" - -#: ../../include/text.php:1045 -msgid "cheerful" -msgstr "fröhlich" - -#: ../../include/text.php:1046 -msgid "alive" -msgstr "lebendig" - -#: ../../include/text.php:1047 -msgid "annoyed" -msgstr "verärgert" - -#: ../../include/text.php:1048 -msgid "anxious" -msgstr "unruhig" - -#: ../../include/text.php:1049 -msgid "cranky" -msgstr "schrullig" - -#: ../../include/text.php:1050 -msgid "disturbed" -msgstr "verstört" - -#: ../../include/text.php:1051 -msgid "frustrated" -msgstr "frustriert" - -#: ../../include/text.php:1052 -msgid "depressed" -msgstr "deprimiert" - -#: ../../include/text.php:1053 -msgid "motivated" -msgstr "motiviert" - -#: ../../include/text.php:1054 -msgid "relaxed" -msgstr "entspannt" - -#: ../../include/text.php:1055 -msgid "surprised" -msgstr "überrascht" - -#: ../../include/text.php:1237 ../../include/js_strings.php:70 -msgid "Monday" -msgstr "Montag" - -#: ../../include/text.php:1237 ../../include/js_strings.php:71 -msgid "Tuesday" -msgstr "Dienstag" - -#: ../../include/text.php:1237 ../../include/js_strings.php:72 -msgid "Wednesday" -msgstr "Mittwoch" - -#: ../../include/text.php:1237 ../../include/js_strings.php:73 -msgid "Thursday" -msgstr "Donnerstag" - -#: ../../include/text.php:1237 ../../include/js_strings.php:74 -msgid "Friday" -msgstr "Freitag" - -#: ../../include/text.php:1237 ../../include/js_strings.php:75 -msgid "Saturday" -msgstr "Samstag" - -#: ../../include/text.php:1237 ../../include/js_strings.php:69 -msgid "Sunday" -msgstr "Sonntag" - -#: ../../include/text.php:1241 ../../include/js_strings.php:45 -msgid "January" -msgstr "Januar" - -#: ../../include/text.php:1241 ../../include/js_strings.php:46 -msgid "February" -msgstr "Februar" - -#: ../../include/text.php:1241 ../../include/js_strings.php:47 -msgid "March" -msgstr "März" - -#: ../../include/text.php:1241 ../../include/js_strings.php:48 -msgid "April" -msgstr "April" - -#: ../../include/text.php:1241 -msgid "May" -msgstr "Mai" - -#: ../../include/text.php:1241 ../../include/js_strings.php:50 -msgid "June" -msgstr "Juni" - -#: ../../include/text.php:1241 ../../include/js_strings.php:51 -msgid "July" -msgstr "Juli" - -#: ../../include/text.php:1241 ../../include/js_strings.php:52 -msgid "August" -msgstr "August" - -#: ../../include/text.php:1241 ../../include/js_strings.php:53 -msgid "September" -msgstr "September" - -#: ../../include/text.php:1241 ../../include/js_strings.php:54 -msgid "October" -msgstr "Oktober" - -#: ../../include/text.php:1241 ../../include/js_strings.php:55 -msgid "November" -msgstr "November" - -#: ../../include/text.php:1241 ../../include/js_strings.php:56 -msgid "December" -msgstr "Dezember" - -#: ../../include/text.php:1318 ../../include/text.php:1322 -msgid "Unknown Attachment" -msgstr "Unbekannter Anhang" - -#: ../../include/text.php:1324 -msgid "unknown" -msgstr "unbekannt" - -#: ../../include/text.php:1360 -msgid "remove category" -msgstr "Kategorie entfernen" - -#: ../../include/text.php:1437 -msgid "remove from file" -msgstr "aus der Datei entfernen" - -#: ../../include/text.php:1734 ../../include/text.php:1805 -msgid "default" -msgstr "Standard" - -#: ../../include/text.php:1742 -msgid "Page layout" -msgstr "Seiten-Layout" - -#: ../../include/text.php:1742 -msgid "You can create your own with the layouts tool" -msgstr "Mit dem Gestaltungswerkzeug kannst Du Deine eigenen Layouts erstellen" - -#: ../../include/text.php:1784 -msgid "Page content type" -msgstr "Art des Seiteninhalts" - -#: ../../include/text.php:1817 -msgid "Select an alternate language" -msgstr "Wähle eine alternative Sprache" - -#: ../../include/text.php:1934 -msgid "activity" -msgstr "Aktivität" - -#: ../../include/text.php:2235 -msgid "Design Tools" -msgstr "Gestaltungswerkzeuge" - -#: ../../include/text.php:2241 -msgid "Pages" -msgstr "Seiten" - -#: ../../include/auth.php:147 -msgid "Logged out." -msgstr "Ausgeloggt." - -#: ../../include/auth.php:274 -msgid "Failed authentication" -msgstr "Authentifizierung fehlgeschlagen" - -#: ../../include/permissions.php:26 -msgid "Can view my normal stream and posts" -msgstr "Kann meine normalen Beiträge sehen" - -#: ../../include/permissions.php:30 -msgid "Can view my webpages" -msgstr "Kann meine Webseiten sehen" - -#: ../../include/permissions.php:34 -msgid "Can post on my channel page (\"wall\")" -msgstr "Kann auf meiner Kanal-Seite (\"wall\") Beiträge veröffentlichen" - -#: ../../include/permissions.php:37 -msgid "Can like/dislike stuff" -msgstr "Kann andere Elemente mögen/nicht mögen" - -#: ../../include/permissions.php:37 -msgid "Profiles and things other than posts/comments" -msgstr "Profile und alles außer Beiträge und Kommentare" - -#: ../../include/permissions.php:39 -msgid "Can forward to all my channel contacts via post @mentions" -msgstr "Kann an alle meine Kontakte via @-Erwähnung Nachrichten weiterleiten" - -#: ../../include/permissions.php:39 -msgid "Advanced - useful for creating group forum channels" -msgstr "Fortgeschritten - sinnvoll, um Gruppen-Kanäle/-Foren zu erstellen" - -#: ../../include/permissions.php:40 -msgid "Can chat with me (when available)" -msgstr "Kann mit mir chatten (wenn verfügbar)" - -#: ../../include/permissions.php:41 -msgid "Can write to my file storage and photos" -msgstr "Kann in meine Datei- und Bilderordner schreiben" - -#: ../../include/permissions.php:42 -msgid "Can edit my webpages" -msgstr "Kann meine Webseiten bearbeiten" - -#: ../../include/permissions.php:44 -msgid "Somewhat advanced - very useful in open communities" -msgstr "Etwas fortgeschritten – sehr nützlich in offenen Gemeinschaften" - -#: ../../include/permissions.php:46 -msgid "Can administer my channel resources" -msgstr "Kann meine Kanäle administrieren" - -#: ../../include/permissions.php:46 +#: ../../include/channel.php:211 msgid "" -"Extremely advanced. Leave this alone unless you know what you are doing" -msgstr "Sehr fortgeschritten. Bearbeite das nur, wenn Du genau weißt, was Du tust" +"Nickname has unsupported characters or is already being used on this site." +msgstr "Der Spitzname enthält nicht-unterstütze Zeichen oder wird bereits auf dieser Seite genutzt." + +#: ../../include/channel.php:287 +msgid "Unable to retrieve created identity" +msgstr "Kann die erstellte Identität nicht empfangen" + +#: ../../include/channel.php:345 +msgid "Default Profile" +msgstr "Standard-Profil" + +#: ../../include/channel.php:791 +msgid "Requested channel is not available." +msgstr "Angeforderte Kanal nicht verfügbar." + +#: ../../include/channel.php:938 +msgid "Create New Profile" +msgstr "Neues Profil erstellen" + +#: ../../include/channel.php:958 +msgid "Visible to everybody" +msgstr "Für jeden sichtbar" + +#: ../../include/channel.php:1031 ../../include/channel.php:1142 +msgid "Gender:" +msgstr "Geschlecht:" + +#: ../../include/channel.php:1032 ../../include/channel.php:1186 +msgid "Status:" +msgstr "Status:" + +#: ../../include/channel.php:1033 ../../include/channel.php:1197 +msgid "Homepage:" +msgstr "Homepage:" + +#: ../../include/channel.php:1034 +msgid "Online Now" +msgstr "gerade online" + +#: ../../include/channel.php:1147 +msgid "Like this channel" +msgstr "Dieser Kanal gefällt mir" + +#: ../../include/channel.php:1171 +msgid "j F, Y" +msgstr "j. F Y" + +#: ../../include/channel.php:1172 +msgid "j F" +msgstr "j. F" + +#: ../../include/channel.php:1179 +msgid "Birthday:" +msgstr "Geburtstag:" + +#: ../../include/channel.php:1192 +#, php-format +msgid "for %1$d %2$s" +msgstr "seit %1$d %2$s" + +#: ../../include/channel.php:1195 +msgid "Sexual Preference:" +msgstr "Sexuelle Orientierung:" + +#: ../../include/channel.php:1201 +msgid "Tags:" +msgstr "Schlagworte:" + +#: ../../include/channel.php:1203 +msgid "Political Views:" +msgstr "Politische Ansichten:" + +#: ../../include/channel.php:1205 +msgid "Religion:" +msgstr "Religion:" + +#: ../../include/channel.php:1209 +msgid "Hobbies/Interests:" +msgstr "Hobbys/Interessen:" + +#: ../../include/channel.php:1211 +msgid "Likes:" +msgstr "Gefällt:" + +#: ../../include/channel.php:1213 +msgid "Dislikes:" +msgstr "Gefällt nicht:" + +#: ../../include/channel.php:1215 +msgid "Contact information and Social Networks:" +msgstr "Kontaktinformation und soziale Netzwerke:" + +#: ../../include/channel.php:1217 +msgid "My other channels:" +msgstr "Meine anderen Kanäle:" + +#: ../../include/channel.php:1219 +msgid "Musical interests:" +msgstr "Musikalische Interessen:" + +#: ../../include/channel.php:1221 +msgid "Books, literature:" +msgstr "Bücher, Literatur:" + +#: ../../include/channel.php:1223 +msgid "Television:" +msgstr "Fernsehen:" + +#: ../../include/channel.php:1225 +msgid "Film/dance/culture/entertainment:" +msgstr "Film/Tanz/Kultur/Unterhaltung:" + +#: ../../include/channel.php:1227 +msgid "Love/Romance:" +msgstr "Liebe/Romantik:" + +#: ../../include/channel.php:1229 +msgid "Work/employment:" +msgstr "Arbeit/Anstellung:" + +#: ../../include/channel.php:1231 +msgid "School/education:" +msgstr "Schule/Ausbildung:" + +#: ../../include/channel.php:1251 +msgid "Like this thing" +msgstr "Gefällt mir" #: ../../include/features.php:48 msgid "General Features" @@ -8540,257 +8730,378 @@ msgid "Provide managed web pages on your channel" msgstr "Ermöglicht das Erstellen von Webseiten in Deinem Kanal" #: ../../include/features.php:55 -msgid "Provide a wiki for your channel" -msgstr "Stelle ein Wiki in Deinem Kanal zur Verfügung" - -#: ../../include/features.php:56 msgid "Hide Rating" msgstr "Bewertung verbergen" -#: ../../include/features.php:56 +#: ../../include/features.php:55 msgid "" "Hide the rating buttons on your channel and profile pages. Note: People can " "still rate you somewhere else." msgstr "Verberge die Buttons zur Bewertung auf deiner Profil-Seite und deinem Kanal. Hinweis: Leute können dich weiterhin andernorts bewerten." -#: ../../include/features.php:57 +#: ../../include/features.php:56 msgid "Private Notes" msgstr "Private Notizen" -#: ../../include/features.php:57 +#: ../../include/features.php:56 msgid "Enables a tool to store notes and reminders (note: not encrypted)" msgstr "Aktiviert ein Werkzeug mit dem Notizen und Erinnerungen gespeichert werden können (Hinweis: nicht verschlüsselt)" -#: ../../include/features.php:58 +#: ../../include/features.php:57 msgid "Navigation Channel Select" msgstr "Kanal-Auswahl in der Navigationsleiste" -#: ../../include/features.php:58 +#: ../../include/features.php:57 msgid "Change channels directly from within the navigation dropdown menu" msgstr "Ermöglicht den direkten Wechsel zu anderen Kanälen über das Navigationsmenü" -#: ../../include/features.php:59 +#: ../../include/features.php:58 msgid "Photo Location" msgstr "Aufnahmeort" -#: ../../include/features.php:59 +#: ../../include/features.php:58 msgid "If location data is available on uploaded photos, link this to a map." msgstr "Verlinkt den Aufnahmeort von Fotos (falls verfügbar) auf einer Karte" -#: ../../include/features.php:60 +#: ../../include/features.php:59 msgid "Access Controlled Chatrooms" msgstr "Zugriffskontrollierte Chaträume" -#: ../../include/features.php:60 +#: ../../include/features.php:59 msgid "Provide chatrooms and chat services with access control." msgstr "Bieten Sie Chaträume und Chatdienste mit Zugriffskontrolle an." -#: ../../include/features.php:61 +#: ../../include/features.php:60 msgid "Smart Birthdays" msgstr "Smarte Geburtstage" -#: ../../include/features.php:61 +#: ../../include/features.php:60 msgid "" "Make birthday events timezone aware in case your friends are scattered " "across the planet." msgstr "Stellt für Geburtstage einen Zeitzonenbezug her, falls deine Freunde über den ganzen Planeten verstreut sind." -#: ../../include/features.php:62 +#: ../../include/features.php:61 msgid "Expert Mode" msgstr "Expertenmodus" -#: ../../include/features.php:62 +#: ../../include/features.php:61 msgid "Enable Expert Mode to provide advanced configuration options" msgstr "Aktiviert den Expertenmodus, der fortgeschrittene Konfigurationsoptionen zur Verfügung stellt" -#: ../../include/features.php:63 +#: ../../include/features.php:62 msgid "Premium Channel" msgstr "Premium-Kanal" -#: ../../include/features.php:63 +#: ../../include/features.php:62 msgid "" "Allows you to set restrictions and terms on those that connect with your " "channel" msgstr "Ermöglicht es, Einschränkungen und Bedingungen für Verbindungen dieses Kanals festzulegen" -#: ../../include/features.php:68 +#: ../../include/features.php:67 msgid "Post Composition Features" msgstr "Nachbearbeitungsfunktionen" -#: ../../include/features.php:71 +#: ../../include/features.php:70 msgid "Large Photos" msgstr "Große Fotos" -#: ../../include/features.php:71 +#: ../../include/features.php:70 msgid "" "Include large (1024px) photo thumbnails in posts. If not enabled, use small " "(640px) photo thumbnails" msgstr "Große Vorschaubilder (1024px) in Beiträgen anzeigen. Falls nicht aktiviert, werden kleine Vorschaubilder (640px) verwendet." -#: ../../include/features.php:72 +#: ../../include/features.php:71 msgid "Automatically import channel content from other channels or feeds" msgstr "Ermöglicht den automatischen Import von Inhalten für diesen Kanal von anderen Kanälen oder Feeds" -#: ../../include/features.php:73 +#: ../../include/features.php:72 msgid "Even More Encryption" msgstr "Noch mehr Verschlüsselung" -#: ../../include/features.php:73 +#: ../../include/features.php:72 msgid "" "Allow optional encryption of content end-to-end with a shared secret key" msgstr "Ermöglicht optional die zusätzliche Verschlüsselung von Inhalten (Ende-zu-Ende mit geteiltem Schlüssel)" -#: ../../include/features.php:74 +#: ../../include/features.php:73 msgid "Enable Voting Tools" msgstr "Umfragewerkzeuge aktivieren" -#: ../../include/features.php:74 +#: ../../include/features.php:73 msgid "Provide a class of post which others can vote on" msgstr "Aktiviert die Umfragewerkzeuge, um anderen die Möglichkeit zu geben, einem Beitrag zuzustimmen, ihn abzulehnen oder sich zu enthalten. (Muss im Beitrag selbst noch aktiviert werden.)" -#: ../../include/features.php:75 +#: ../../include/features.php:74 msgid "Delayed Posting" msgstr "Verzögertes Senden" -#: ../../include/features.php:75 +#: ../../include/features.php:74 msgid "Allow posts to be published at a later date" msgstr "Ermöglicht es, Beiträge zu einem späteren Zeitpunkt zu veröffentlichen" -#: ../../include/features.php:76 +#: ../../include/features.php:75 msgid "Suppress Duplicate Posts/Comments" msgstr "Doppelte Beiträge unterdrücken" -#: ../../include/features.php:76 +#: ../../include/features.php:75 msgid "" "Prevent posts with identical content to be published with less than two " "minutes in between submissions." msgstr "Verhindert, dass innerhalb von zwei Minuten Beiträge mit identischem Inhalt veröffentlicht werden." -#: ../../include/features.php:82 +#: ../../include/features.php:81 msgid "Network and Stream Filtering" msgstr "Netzwerk- und Stream-Filter" -#: ../../include/features.php:83 +#: ../../include/features.php:82 msgid "Search by Date" msgstr "Suche nach Datum" -#: ../../include/features.php:83 +#: ../../include/features.php:82 msgid "Ability to select posts by date ranges" msgstr "Möglichkeit, Beiträge nach Zeiträumen auszuwählen" -#: ../../include/features.php:84 ../../include/group.php:311 +#: ../../include/features.php:83 ../../include/group.php:311 msgid "Privacy Groups" msgstr "Gruppen" -#: ../../include/features.php:84 +#: ../../include/features.php:83 msgid "Enable management and selection of privacy groups" msgstr "Auswahl und Verwaltung von Gruppen für Kanäle aktivieren" -#: ../../include/features.php:85 ../../include/widgets.php:281 -msgid "Saved Searches" -msgstr "Gespeicherte Suchanfragen" - -#: ../../include/features.php:85 +#: ../../include/features.php:84 msgid "Save search terms for re-use" msgstr "Ermöglicht das Abspeichern von Suchbegriffen zur Wiederverwendung" -#: ../../include/features.php:86 +#: ../../include/features.php:85 msgid "Network Personal Tab" msgstr "Persönlicher Netzwerkreiter" -#: ../../include/features.php:86 +#: ../../include/features.php:85 msgid "Enable tab to display only Network posts that you've interacted on" msgstr "Aktiviert einen Reiter in der Grid-Ansicht, der nur Netzwerk-Beiträge anzeigt, mit denen Du interagiert hast" -#: ../../include/features.php:87 +#: ../../include/features.php:86 msgid "Network New Tab" msgstr "Netzwerkreiter Neu" -#: ../../include/features.php:87 +#: ../../include/features.php:86 msgid "Enable tab to display all new Network activity" msgstr "Aktiviert einen Reiter in der Grid-Ansicht, der alle neuen Netzwerkaktivitäten anzeigt" -#: ../../include/features.php:88 +#: ../../include/features.php:87 msgid "Affinity Tool" msgstr "Beziehungs-Tool" -#: ../../include/features.php:88 +#: ../../include/features.php:87 msgid "Filter stream activity by depth of relationships" msgstr "Aktiviert ein Werkzeug in der Grid-Ansicht, das den Stream nach Grad der Beziehung filtern kann" -#: ../../include/features.php:89 +#: ../../include/features.php:88 msgid "Connection Filtering" msgstr "Filter für Verbindungen" -#: ../../include/features.php:89 +#: ../../include/features.php:88 msgid "Filter incoming posts from connections based on keywords/content" msgstr "Ermöglicht die Filterung eingehender Beiträge anhand von Schlüsselwörtern (muss an der Verbindung konfiguriert werden)" -#: ../../include/features.php:90 +#: ../../include/features.php:89 msgid "Show channel suggestions" msgstr "Kanalvorschläge anzeigen" -#: ../../include/features.php:95 +#: ../../include/features.php:94 msgid "Post/Comment Tools" msgstr "Beitrag-/Kommentar-Tools" -#: ../../include/features.php:96 +#: ../../include/features.php:95 msgid "Community Tagging" msgstr "Gemeinschaftliches Verschlagworten" -#: ../../include/features.php:96 +#: ../../include/features.php:95 msgid "Ability to tag existing posts" msgstr "Ermöglicht das Verschlagworten existierender Beiträge" -#: ../../include/features.php:97 +#: ../../include/features.php:96 msgid "Post Categories" msgstr "Beitrags-Kategorien" -#: ../../include/features.php:97 +#: ../../include/features.php:96 msgid "Add categories to your posts" msgstr "Aktiviert Kategorien für Beiträge" -#: ../../include/features.php:98 +#: ../../include/features.php:97 msgid "Emoji Reactions" msgstr "Emoji Reaktionen" -#: ../../include/features.php:98 +#: ../../include/features.php:97 msgid "Add emoji reaction ability to posts" msgstr "Aktiviert Emoji-Reaktionen für Beiträge" -#: ../../include/features.php:99 ../../include/widgets.php:310 -#: ../../include/contact_widgets.php:53 -msgid "Saved Folders" -msgstr "Gespeicherte Ordner" - -#: ../../include/features.php:99 +#: ../../include/features.php:98 msgid "Ability to file posts under folders" msgstr "Möglichkeit, Beiträge in Verzeichnissen zu sammeln" -#: ../../include/features.php:100 +#: ../../include/features.php:99 msgid "Dislike Posts" msgstr "Gefällt-mir-nicht-Beiträge" -#: ../../include/features.php:100 +#: ../../include/features.php:99 msgid "Ability to dislike posts/comments" msgstr "Aktiviert die „Gefällt mir nicht“-Schaltfläche" -#: ../../include/features.php:101 +#: ../../include/features.php:100 msgid "Star Posts" msgstr "Beiträge mit Sternchen versehen" -#: ../../include/features.php:101 +#: ../../include/features.php:100 msgid "Ability to mark special posts with a star indicator" msgstr "Ermöglicht die lokale Markierung spezieller Beiträge mit einem Sternchen-Symbol" -#: ../../include/features.php:102 +#: ../../include/features.php:101 msgid "Tag Cloud" msgstr "Schlagwort-Wolke" -#: ../../include/features.php:102 +#: ../../include/features.php:101 msgid "Provide a personal tag cloud on your channel page" msgstr "Aktiviert die Anzeige einer Schlagwort-Wolke (Tag Cloud) auf Deiner Kanal-Seite" +#: ../../include/oembed.php:324 +msgid "Embedded content" +msgstr "Eingebetteter Inhalt" + +#: ../../include/oembed.php:333 +msgid "Embedding disabled" +msgstr "Einbetten ausgeschaltet" + +#: ../../include/acl_selectors.php:271 +msgid "Who can see this?" +msgstr "Wer kann das sehen?" + +#: ../../include/acl_selectors.php:272 +msgid "Custom selection" +msgstr "Benutzerdefinierte Auswahl" + +#: ../../include/acl_selectors.php:273 +msgid "" +"Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit" +" the scope of \"Show\"." +msgstr "Wähle \"Anzeigen\", um Betrachtung zuzulassen. \"Nicht anzeigen\" überstimmt und limitiert den Aktionsradius von \"Anzeigen\" für Ausnahmen." + +#: ../../include/acl_selectors.php:274 +msgid "Show" +msgstr "Anzeigen" + +#: ../../include/acl_selectors.php:275 +msgid "Don't show" +msgstr "Nicht anzeigen" + +#: ../../include/acl_selectors.php:281 +msgid "Other networks and post services" +msgstr "Andere Netzwerke und Platformen" + +#: ../../include/acl_selectors.php:311 +#, php-format +msgid "" +"Post permissions %s cannot be changed %s after a post is shared.
These" +" permissions set who is allowed to view the post." +msgstr "Beitragsberechtigungen %s können nicht geändert werden %s, nachdem der Beitrag gesendet wurde.
Diese Berechtigungen bestimmen, wer den Beitrag sehen kann." + +#: ../../include/auth.php:105 +msgid "Logged out." +msgstr "Ausgeloggt." + +#: ../../include/auth.php:212 +msgid "Failed authentication" +msgstr "Authentifizierung fehlgeschlagen" + +#: ../../include/datetime.php:135 +msgid "Birthday" +msgstr "Geburtstag" + +#: ../../include/datetime.php:137 +msgid "Age: " +msgstr "Alter:" + +#: ../../include/datetime.php:139 +msgid "YYYY-MM-DD or MM-DD" +msgstr "JJJJ-MM-TT oder MM-TT" + +#: ../../include/datetime.php:272 ../../boot.php:2470 +msgid "never" +msgstr "Nie" + +#: ../../include/datetime.php:278 +msgid "less than a second ago" +msgstr "Vor weniger als einer Sekunde" + +#: ../../include/datetime.php:296 +#, php-format +msgctxt "e.g. 22 hours ago, 1 minute ago" +msgid "%1$d %2$s ago" +msgstr "vor %1$d %2$s" + +#: ../../include/datetime.php:307 +msgctxt "relative_date" +msgid "year" +msgid_plural "years" +msgstr[0] "Jahr" +msgstr[1] "Jahre" + +#: ../../include/datetime.php:310 +msgctxt "relative_date" +msgid "month" +msgid_plural "months" +msgstr[0] "Monat" +msgstr[1] "Monate" + +#: ../../include/datetime.php:313 +msgctxt "relative_date" +msgid "week" +msgid_plural "weeks" +msgstr[0] "Woche" +msgstr[1] "Wochen" + +#: ../../include/datetime.php:316 +msgctxt "relative_date" +msgid "day" +msgid_plural "days" +msgstr[0] "Tag" +msgstr[1] "Tage" + +#: ../../include/datetime.php:319 +msgctxt "relative_date" +msgid "hour" +msgid_plural "hours" +msgstr[0] "Stunde" +msgstr[1] "Stunden" + +#: ../../include/datetime.php:322 +msgctxt "relative_date" +msgid "minute" +msgid_plural "minutes" +msgstr[0] "Minute" +msgstr[1] "Minuten" + +#: ../../include/datetime.php:325 +msgctxt "relative_date" +msgid "second" +msgid_plural "seconds" +msgstr[0] "Sekunde" +msgstr[1] "Sekunden" + +#: ../../include/datetime.php:562 +#, php-format +msgid "%1$s's birthday" +msgstr "%1$ss Geburtstag" + +#: ../../include/datetime.php:563 +#, php-format +msgid "Happy Birthday %1$s" +msgstr "Alles Gute zum Geburtstag, %1$s" + #: ../../include/group.php:26 msgid "" "A deleted group with this name was revived. Existing item permissions " @@ -8818,583 +9129,21 @@ msgstr "Gruppe hinzufügen" msgid "Channels not in any privacy group" msgstr "Kanäle, die in keiner Gruppe sind" -#: ../../include/group.php:316 ../../include/widgets.php:282 -msgid "add" -msgstr "hinzufügen" - -#: ../../include/event.php:22 ../../include/event.php:69 -#: ../../include/bb2diaspora.php:485 -msgid "l F d, Y \\@ g:i A" -msgstr "l, d. F Y, H:i" - -#: ../../include/event.php:30 ../../include/event.php:73 -#: ../../include/bb2diaspora.php:491 -msgid "Starts:" -msgstr "Beginnt:" - -#: ../../include/event.php:40 ../../include/event.php:77 -#: ../../include/bb2diaspora.php:499 -msgid "Finishes:" -msgstr "Endet:" - -#: ../../include/event.php:814 -msgid "This event has been added to your calendar." -msgstr "Dieser Termin wurde zu Deinem Kalender hinzugefügt" - -#: ../../include/event.php:1014 -msgid "Not specified" -msgstr "Keine Angabe" - -#: ../../include/event.php:1015 -msgid "Needs Action" -msgstr "Aktion erforderlich" - -#: ../../include/event.php:1016 -msgid "Completed" -msgstr "Abgeschlossen" - -#: ../../include/event.php:1017 -msgid "In Process" -msgstr "In Bearbeitung" - -#: ../../include/event.php:1018 -msgid "Cancelled" -msgstr "gestrichen" - -#: ../../include/account.php:28 -msgid "Not a valid email address" -msgstr "Ungültige E-Mail-Adresse" - -#: ../../include/account.php:30 -msgid "Your email domain is not among those allowed on this site" -msgstr "Deine E-Mail-Adresse ist auf dieser Seite nicht erlaubt" - -#: ../../include/account.php:36 -msgid "Your email address is already registered at this site." -msgstr "Deine E-Mail-Adresse ist auf dieser Seite bereits registriert." - -#: ../../include/account.php:68 -msgid "An invitation is required." -msgstr "Eine Einladung wird benötigt." - -#: ../../include/account.php:72 -msgid "Invitation could not be verified." -msgstr "Die Einladung konnte nicht bestätigt werden." - -#: ../../include/account.php:122 -msgid "Please enter the required information." -msgstr "Bitte gib die benötigten Informationen ein." - -#: ../../include/account.php:189 -msgid "Failed to store account information." -msgstr "Speichern der Nutzerkontodaten fehlgeschlagen." - -#: ../../include/account.php:249 -#, php-format -msgid "Registration confirmation for %s" -msgstr "Registrierungsbestätigung für %s" - -#: ../../include/account.php:315 -#, php-format -msgid "Registration request at %s" -msgstr "Registrierungsanfrage auf %s" - -#: ../../include/account.php:339 -msgid "your registration password" -msgstr "Dein Registrierungspasswort" - -#: ../../include/account.php:342 ../../include/account.php:402 -#, php-format -msgid "Registration details for %s" -msgstr "Registrierungsdetails für %s" - -#: ../../include/account.php:414 -msgid "Account approved." -msgstr "Nutzerkonto bestätigt." - -#: ../../include/account.php:454 -#, php-format -msgid "Registration revoked for %s" -msgstr "Registrierung für %s wurde widerrufen" - -#: ../../include/account.php:739 ../../include/account.php:741 -msgid "Click here to upgrade." -msgstr "Klicke hier, um das Upgrade durchzuführen." - -#: ../../include/account.php:747 -msgid "This action exceeds the limits set by your subscription plan." -msgstr "Diese Aktion überschreitet die Grenzen Ihres Abonnements." - -#: ../../include/account.php:752 -msgid "This action is not available under your subscription plan." -msgstr "Diese Aktion ist in Ihrem Abonnement nicht verfügbar." - -#: ../../include/follow.php:27 -msgid "Channel is blocked on this site." -msgstr "Der Kanal ist auf dieser Seite blockiert " - -#: ../../include/follow.php:32 -msgid "Channel location missing." -msgstr "Adresse des Kanals fehlt." - -#: ../../include/follow.php:80 -msgid "Response from remote channel was incomplete." -msgstr "Antwort des entfernten Kanals war unvollständig." - -#: ../../include/follow.php:97 -msgid "Channel was deleted and no longer exists." -msgstr "Kanal wurde gelöscht und existiert nicht mehr." - -#: ../../include/follow.php:147 ../../include/follow.php:183 -msgid "Protocol disabled." -msgstr "Protokoll deaktiviert." - -#: ../../include/follow.php:171 -msgid "Channel discovery failed." -msgstr "Kanalsuche fehlgeschlagen" - -#: ../../include/follow.php:210 -msgid "Cannot connect to yourself." -msgstr "Du kannst Dich nicht mit Dir selbst verbinden." - -#: ../../include/attach.php:247 ../../include/attach.php:333 -msgid "Item was not found." -msgstr "Beitrag wurde nicht gefunden." - -#: ../../include/attach.php:499 -msgid "No source file." -msgstr "Keine Quelldatei." - -#: ../../include/attach.php:521 -msgid "Cannot locate file to replace" -msgstr "Kann Datei zum Ersetzen nicht finden" - -#: ../../include/attach.php:539 -msgid "Cannot locate file to revise/update" -msgstr "Kann Datei zum Prüfen/Aktualisieren nicht finden" - -#: ../../include/attach.php:674 -#, php-format -msgid "File exceeds size limit of %d" -msgstr "Datei überschreitet das Größen-Limit von %d" - -#: ../../include/attach.php:688 -#, php-format -msgid "You have reached your limit of %1$.0f Mbytes attachment storage." -msgstr "Die Größe Deiner Datei-Anhänge hat das Maximum von %1$.0f MByte erreicht." - -#: ../../include/attach.php:846 -msgid "File upload failed. Possible system limit or action terminated." -msgstr "Datei-Upload fehlgeschlagen. Mögliche Systembegrenzung oder abgebrochener Prozess." - -#: ../../include/attach.php:859 -msgid "Stored file could not be verified. Upload failed." -msgstr "Gespeichert Datei konnte nicht verifiziert werden. Upload abgebrochen." - -#: ../../include/attach.php:915 ../../include/attach.php:931 -msgid "Path not available." -msgstr "Pfad nicht verfügbar." - -#: ../../include/attach.php:977 ../../include/attach.php:1129 -msgid "Empty pathname" -msgstr "Leere Pfadangabe" - -#: ../../include/attach.php:1003 -msgid "duplicate filename or path" -msgstr "doppelter Dateiname oder Pfad" - -#: ../../include/attach.php:1025 -msgid "Path not found." -msgstr "Pfad nicht gefunden." - -#: ../../include/attach.php:1083 -msgid "mkdir failed." -msgstr "mkdir fehlgeschlagen." - -#: ../../include/attach.php:1087 -msgid "database storage failed." -msgstr "Speichern in der Datenbank fehlgeschlagen." - -#: ../../include/attach.php:1135 -msgid "Empty path" -msgstr "Leere Pfadangabe" - -#: ../../include/bbcode.php:123 ../../include/bbcode.php:878 -#: ../../include/bbcode.php:881 ../../include/bbcode.php:886 -#: ../../include/bbcode.php:889 ../../include/bbcode.php:892 -#: ../../include/bbcode.php:895 ../../include/bbcode.php:900 -#: ../../include/bbcode.php:903 ../../include/bbcode.php:908 -#: ../../include/bbcode.php:911 ../../include/bbcode.php:914 -#: ../../include/bbcode.php:917 -msgid "Image/photo" -msgstr "Bild/Foto" - -#: ../../include/bbcode.php:162 ../../include/bbcode.php:928 -msgid "Encrypted content" -msgstr "Verschlüsselter Inhalt" - -#: ../../include/bbcode.php:178 -#, php-format -msgid "Install %s element: " -msgstr "Element %s installieren: " - -#: ../../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 "Dieser Beitrag beinhaltet ein installierbares %s Element, aber Du hast nicht die nötigen Rechte, um es auf diesem Hub zu installieren." - -#: ../../include/bbcode.php:261 -#, php-format -msgid "%1$s wrote the following %2$s %3$s" -msgstr "%1$s schrieb den folgenden %2$s %3$s" - -#: ../../include/bbcode.php:338 ../../include/bbcode.php:346 -msgid "Click to open/close" -msgstr "Klicke zum Öffnen/Schließen" - -#: ../../include/bbcode.php:346 -msgid "spoiler" -msgstr "Spoiler" - -#: ../../include/bbcode.php:619 -msgid "Different viewers will see this text differently" -msgstr "Verschiedene Betrachter werden diesen Text unterschiedlich sehen" - -#: ../../include/bbcode.php:866 -msgid "$1 wrote:" -msgstr "$1 schrieb:" - -#: ../../include/items.php:897 ../../include/items.php:942 -msgid "(Unknown)" -msgstr "(Unbekannt)" - -#: ../../include/items.php:1141 -msgid "Visible to anybody on the internet." -msgstr "Für jeden im Internet sichtbar." - -#: ../../include/items.php:1143 -msgid "Visible to you only." -msgstr "Nur für Dich sichtbar." - -#: ../../include/items.php:1145 -msgid "Visible to anybody in this network." -msgstr "Für jedes $Projectname-Mitglied sichtbar." - -#: ../../include/items.php:1147 -msgid "Visible to anybody authenticated." -msgstr "Für jeden sichtbar, der angemeldet ist." - -#: ../../include/items.php:1149 -#, php-format -msgid "Visible to anybody on %s." -msgstr "Für jeden auf %s sichtbar." - -#: ../../include/items.php:1151 -msgid "Visible to all connections." -msgstr "Für alle Verbindungen sichtbar." - -#: ../../include/items.php:1153 -msgid "Visible to approved connections." -msgstr "Nur für akzeptierte Verbindungen sichtbar." - -#: ../../include/items.php:1155 -msgid "Visible to specific connections." -msgstr "Sichtbar für bestimmte Verbindungen." - -#: ../../include/items.php:3918 -msgid "Privacy group is empty." -msgstr "Gruppe ist leer." - -#: ../../include/items.php:3925 -#, php-format -msgid "Privacy group: %s" -msgstr "Gruppe: %s" - -#: ../../include/items.php:3937 -msgid "Connection not found." -msgstr "Die Verbindung wurde nicht gefunden." - -#: ../../include/items.php:4290 -msgid "profile photo" -msgstr "Profilfoto" - -#: ../../include/oembed.php:336 -msgid "Embedded content" -msgstr "Eingebetteter Inhalt" - -#: ../../include/oembed.php:345 -msgid "Embedding disabled" -msgstr "Einbetten ausgeschaltet" - -#: ../../include/widgets.php:103 -msgid "System" -msgstr "System" - -#: ../../include/widgets.php:106 -msgid "New App" -msgstr "Neue App" - -#: ../../include/widgets.php:154 -msgid "Suggestions" -msgstr "Vorschläge" - -#: ../../include/widgets.php:155 -msgid "See more..." -msgstr "Mehr anzeigen …" - -#: ../../include/widgets.php:175 -#, php-format -msgid "You have %1$.0f of %2$.0f allowed connections." -msgstr "Du bist %1$.0f von maximal %2$.0f erlaubten Verbindungen eingegangen." - -#: ../../include/widgets.php:181 -msgid "Add New Connection" -msgstr "Neue Verbindung hinzufügen" - -#: ../../include/widgets.php:182 -msgid "Enter channel address" -msgstr "Adresse des Kanals eingeben" - -#: ../../include/widgets.php:183 -msgid "Examples: bob@example.com, https://example.com/barbara" -msgstr "Beispiele: bob@beispiel.com, http://beispiel.com/barbara" - -#: ../../include/widgets.php:199 -msgid "Notes" -msgstr "Notizen" - -#: ../../include/widgets.php:273 -msgid "Remove term" -msgstr "Eintrag löschen" - -#: ../../include/widgets.php:313 ../../include/widgets.php:432 -#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:94 -msgid "Everything" -msgstr "Alles" - -#: ../../include/widgets.php:354 -msgid "Archives" -msgstr "Archive" - -#: ../../include/widgets.php:516 -msgid "Refresh" -msgstr "Aktualisieren" - -#: ../../include/widgets.php:556 -msgid "Account settings" -msgstr "Konto-Einstellungen" - -#: ../../include/widgets.php:562 -msgid "Channel settings" -msgstr "Kanal-Einstellungen" - -#: ../../include/widgets.php:571 -msgid "Additional features" -msgstr "Zusätzliche Funktionen" - -#: ../../include/widgets.php:578 -msgid "Feature/Addon settings" -msgstr "Plugin-Einstellungen" - -#: ../../include/widgets.php:584 -msgid "Display settings" -msgstr "Anzeige-Einstellungen" - -#: ../../include/widgets.php:591 -msgid "Manage locations" -msgstr "Klon-Adressen verwalten" - -#: ../../include/widgets.php:600 -msgid "Export channel" -msgstr "Kanal exportieren" - -#: ../../include/widgets.php:607 -msgid "Connected apps" -msgstr "Verbundene Apps" - -#: ../../include/widgets.php:631 -msgid "Premium Channel Settings" -msgstr "Premium-Kanal-Einstellungen" - -#: ../../include/widgets.php:660 -msgid "Private Mail Menu" -msgstr "Private Nachrichten" - -#: ../../include/widgets.php:662 -msgid "Combined View" -msgstr "Kombinierte Anzeige" - -#: ../../include/widgets.php:694 ../../include/widgets.php:706 -msgid "Conversations" -msgstr "Konversationen" - -#: ../../include/widgets.php:698 -msgid "Received Messages" -msgstr "Erhaltene Nachrichten" - -#: ../../include/widgets.php:702 -msgid "Sent Messages" -msgstr "Gesendete Nachrichten" - -#: ../../include/widgets.php:716 -msgid "No messages." -msgstr "Keine Nachrichten." - -#: ../../include/widgets.php:734 -msgid "Delete conversation" -msgstr "Unterhaltung löschen" - -#: ../../include/widgets.php:760 -msgid "Events Tools" -msgstr "Kalenderwerkzeuge" - -#: ../../include/widgets.php:761 -msgid "Export Calendar" -msgstr "Kalender exportieren" - -#: ../../include/widgets.php:762 -msgid "Import Calendar" -msgstr "Kalender importieren" - -#: ../../include/widgets.php:840 -msgid "Overview" -msgstr "Übersicht" - -#: ../../include/widgets.php:847 -msgid "Chat Members" -msgstr "Chatmitglieder" - -#: ../../include/widgets.php:869 -msgid "Wiki List" -msgstr "Wikiliste" - -#: ../../include/widgets.php:907 -msgid "Wiki Pages" -msgstr "Wikiseiten" - -#: ../../include/widgets.php:942 -msgid "Bookmarked Chatrooms" -msgstr "Gespeicherte Chatrooms" - -#: ../../include/widgets.php:965 -msgid "Suggested Chatrooms" -msgstr "Chatraum-Vorschläge" - -#: ../../include/widgets.php:1111 ../../include/widgets.php:1223 -msgid "photo/image" -msgstr "Foto/Bild" - -#: ../../include/widgets.php:1166 -msgid "Click to show more" -msgstr "Klick, um mehr anzuzeigen" - -#: ../../include/widgets.php:1317 -msgid "Rating Tools" -msgstr "Bewertungswerkzeuge" - -#: ../../include/widgets.php:1321 ../../include/widgets.php:1323 -msgid "Rate Me" -msgstr "Bewerte mich" - -#: ../../include/widgets.php:1326 -msgid "View Ratings" -msgstr "Bewertungen ansehen" - -#: ../../include/widgets.php:1410 -msgid "Forums" -msgstr "Foren" - -#: ../../include/widgets.php:1439 -msgid "Tasks" -msgstr "Aufgaben" - -#: ../../include/widgets.php:1448 -msgid "Documentation" -msgstr "Dokumentation" - -#: ../../include/widgets.php:1450 -msgid "Project/Site Information" -msgstr "Informationen über das Projekt und diesen Hub" - -#: ../../include/widgets.php:1451 -msgid "For Members" -msgstr "Für Mitglieder" - -#: ../../include/widgets.php:1452 -msgid "For Administrators" -msgstr "Für Administratoren" - -#: ../../include/widgets.php:1453 -msgid "For Developers" -msgstr "Für Entwickler" - -#: ../../include/widgets.php:1477 ../../include/widgets.php:1515 -msgid "Member registrations waiting for confirmation" -msgstr "Nutzer-Anmeldungen, die auf Bestätigung warten" - -#: ../../include/widgets.php:1483 -msgid "Inspect queue" -msgstr "Warteschlange kontrollieren" - -#: ../../include/widgets.php:1485 -msgid "DB updates" -msgstr "DB-Aktualisierungen" - -#: ../../include/widgets.php:1511 -msgid "Plugin Features" -msgstr "Plug-In Funktionen" - -#: ../../include/activities.php:41 -msgid " and " -msgstr "und" - -#: ../../include/activities.php:49 -msgid "public profile" -msgstr "öffentliches Profil" - -#: ../../include/activities.php:58 -#, php-format -msgid "%1$s changed %2$s to “%3$s”" -msgstr "%1$s hat %2$s auf “%3$s” geändert" - -#: ../../include/activities.php:59 -#, php-format -msgid "Visit %1$s's %2$s" -msgstr "Besuche %1$s's %2$s" - -#: ../../include/activities.php:62 -#, php-format -msgid "%1$s has an updated %2$s, changing %3$s." -msgstr "%1$s hat ein aktualisiertes %2$s, %3$s wurde verändert." - -#: ../../include/bb2diaspora.php:398 -msgid "Attachments:" -msgstr "Anhänge:" - -#: ../../include/bb2diaspora.php:487 -msgid "$Projectname event notification:" -msgstr "$Projectname-Terminbenachrichtigung:" - #: ../../include/js_strings.php:5 msgid "Delete this item?" msgstr "Dieses Element löschen?" #: ../../include/js_strings.php:8 -#, php-format -msgid "%s show less" -msgstr "%s weniger anzeigen" +msgid "[-] show less" +msgstr "[-] Weniger anzeigen" #: ../../include/js_strings.php:9 -#, php-format -msgid "%s expand" -msgstr "%s aufklappen" +msgid "[+] expand" +msgstr "[+] aufklappen" #: ../../include/js_strings.php:10 -#, php-format -msgid "%s collapse" -msgstr "%s einklappen" +msgid "[-] collapse" +msgstr "[-] einklappen" #: ../../include/js_strings.php:11 msgid "Password too short" @@ -9624,223 +9373,278 @@ msgctxt "calendar" msgid "All day" msgstr "Ganztägig" -#: ../../include/contact_widgets.php:11 +#: ../../include/network.php:657 +msgid "view full size" +msgstr "In Vollbildansicht anschauen" + +#: ../../include/network.php:1885 +msgid "No Subject" +msgstr "Kein Betreff" + +#: ../../include/network.php:2146 ../../include/network.php:2147 +msgid "Friendica" +msgstr "Friendica" + +#: ../../include/network.php:2148 +msgid "OStatus" +msgstr "OStatus" + +#: ../../include/network.php:2149 +msgid "GNU-Social" +msgstr "GNU-Social" + +#: ../../include/network.php:2150 +msgid "RSS/Atom" +msgstr "RSS/Atom" + +#: ../../include/network.php:2152 +msgid "Diaspora" +msgstr "Diaspora" + +#: ../../include/network.php:2153 +msgid "Facebook" +msgstr "Facebook" + +#: ../../include/network.php:2154 +msgid "Zot" +msgstr "Zot!" + +#: ../../include/network.php:2155 +msgid "LinkedIn" +msgstr "LinkedIn" + +#: ../../include/network.php:2156 +msgid "XMPP/IM" +msgstr "XMPP/IM" + +#: ../../include/network.php:2157 +msgid "MySpace" +msgstr "MySpace" + +#: ../../include/photos.php:110 #, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "%d Einladung verfügbar" -msgstr[1] "%d Einladungen verfügbar" +msgid "Image exceeds website size limit of %lu bytes" +msgstr "Bild überschreitet das Webseitenlimit von %lu Bytes" -#: ../../include/contact_widgets.php:19 -msgid "Find Channels" -msgstr "Finde Kanäle" +#: ../../include/photos.php:117 +msgid "Image file is empty." +msgstr "Bilddatei ist leer." -#: ../../include/contact_widgets.php:20 -msgid "Enter name or interest" -msgstr "Name oder Interessen eingeben" +#: ../../include/photos.php:255 +msgid "Photo storage failed." +msgstr "Fotospeicherung fehlgeschlagen." -#: ../../include/contact_widgets.php:21 -msgid "Connect/Follow" -msgstr "Verbinden/Folgen" +#: ../../include/photos.php:295 +msgid "a new photo" +msgstr "ein neues Foto" -#: ../../include/contact_widgets.php:22 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "Beispiele: Robert Morgenstein, Angeln" - -#: ../../include/contact_widgets.php:26 -msgid "Random Profile" -msgstr "Zufallsprofil" - -#: ../../include/contact_widgets.php:27 -msgid "Invite Friends" -msgstr "Lade Freunde ein" - -#: ../../include/contact_widgets.php:29 -msgid "Advanced example: name=fred and country=iceland" -msgstr "Fortgeschrittenes Beispiel: name=fred and country=iceland" - -#: ../../include/contact_widgets.php:122 +#: ../../include/photos.php:299 #, php-format -msgid "%d connection in common" -msgid_plural "%d connections in common" -msgstr[0] "%d gemeinsame Verbindung" -msgstr[1] "%d gemeinsame Verbindungen" +msgctxt "photo_upload" +msgid "%1$s posted %2$s to %3$s" +msgstr "%1$s hat %2$s auf %3$s veröffentlicht" -#: ../../include/contact_widgets.php:127 -msgid "show more" -msgstr "mehr zeigen" +#: ../../include/photos.php:506 +msgid "Upload New Photos" +msgstr "Neue Fotos hochladen" -#: ../../include/dir_fns.php:141 -msgid "Directory Options" -msgstr "Verzeichnisoptionen" - -#: ../../include/dir_fns.php:143 -msgid "Safe Mode" -msgstr "Sicherer Modus" - -#: ../../include/dir_fns.php:144 -msgid "Public Forums Only" -msgstr "Nur öffentliche Foren" - -#: ../../include/dir_fns.php:145 -msgid "This Website Only" -msgstr "Nur dieser Hub" - -#: ../../include/message.php:20 -msgid "No recipient provided." -msgstr "Kein Empfänger angegeben" - -#: ../../include/message.php:25 -msgid "[no subject]" -msgstr "[no subject]" - -#: ../../include/message.php:45 -msgid "Unable to determine sender." -msgstr "Kann Absender nicht bestimmen." - -#: ../../include/message.php:222 -msgid "Stored post could not be verified." -msgstr "Gespeicherter Beitrag konnten nicht überprüft werden." - -#: ../../include/acl_selectors.php:269 -msgid "Who can see this?" -msgstr "Wer kann das sehen?" - -#: ../../include/acl_selectors.php:270 -msgid "Custom selection" -msgstr "Benutzerdefinierte Auswahl" - -#: ../../include/acl_selectors.php:271 -msgid "" -"Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit" -" the scope of \"Show\"." -msgstr "Wähle \"Anzeigen\", um Betrachtung zuzulassen. \"Nicht anzeigen\" überstimmt und limitiert den Aktionsradius von \"Anzeigen\" für Ausnahmen." - -#: ../../include/acl_selectors.php:272 -msgid "Show" -msgstr "Anzeigen" - -#: ../../include/acl_selectors.php:273 -msgid "Don't show" -msgstr "Nicht anzeigen" - -#: ../../include/acl_selectors.php:279 -msgid "Other networks and post services" -msgstr "Andere Netzwerke und Platformen" - -#: ../../include/acl_selectors.php:309 -#, php-format -msgid "" -"Post permissions %s cannot be changed %s after a post is shared.
These" -" permissions set who is allowed to view the post." -msgstr "Beitragsberechtigungen %s können nicht geändert werden %s, nachdem der Beitrag gesendet wurde.
Diese Berechtigungen bestimmen, wer den Beitrag sehen kann." - -#: ../../include/datetime.php:135 -msgid "Birthday" -msgstr "Geburtstag" - -#: ../../include/datetime.php:137 -msgid "Age: " -msgstr "Alter:" - -#: ../../include/datetime.php:139 -msgid "YYYY-MM-DD or MM-DD" -msgstr "JJJJ-MM-TT oder MM-TT" - -#: ../../include/datetime.php:272 ../../boot.php:2479 -msgid "never" -msgstr "Nie" - -#: ../../include/datetime.php:278 -msgid "less than a second ago" -msgstr "Vor weniger als einer Sekunde" - -#: ../../include/datetime.php:296 -#, php-format -msgctxt "e.g. 22 hours ago, 1 minute ago" -msgid "%1$d %2$s ago" -msgstr "vor %1$d %2$s" - -#: ../../include/datetime.php:307 -msgctxt "relative_date" -msgid "year" -msgid_plural "years" -msgstr[0] "Jahr" -msgstr[1] "Jahre" - -#: ../../include/datetime.php:310 -msgctxt "relative_date" -msgid "month" -msgid_plural "months" -msgstr[0] "Monat" -msgstr[1] "Monate" - -#: ../../include/datetime.php:313 -msgctxt "relative_date" -msgid "week" -msgid_plural "weeks" -msgstr[0] "Woche" -msgstr[1] "Wochen" - -#: ../../include/datetime.php:316 -msgctxt "relative_date" -msgid "day" -msgid_plural "days" -msgstr[0] "Tag" -msgstr[1] "Tage" - -#: ../../include/datetime.php:319 -msgctxt "relative_date" -msgid "hour" -msgid_plural "hours" -msgstr[0] "Stunde" -msgstr[1] "Stunden" - -#: ../../include/datetime.php:322 -msgctxt "relative_date" -msgid "minute" -msgid_plural "minutes" -msgstr[0] "Minute" -msgstr[1] "Minuten" - -#: ../../include/datetime.php:325 -msgctxt "relative_date" -msgid "second" -msgid_plural "seconds" -msgstr[0] "Sekunde" -msgstr[1] "Sekunden" - -#: ../../include/datetime.php:562 -#, php-format -msgid "%1$s's birthday" -msgstr "%1$ss Geburtstag" - -#: ../../include/datetime.php:563 -#, php-format -msgid "Happy Birthday %1$s" -msgstr "Alles Gute zum Geburtstag, %1$s" - -#: ../../include/api.php:1327 -msgid "Public Timeline" -msgstr "Öffentliche Zeitleiste" - -#: ../../include/zot.php:697 +#: ../../include/zot.php:699 msgid "Invalid data packet" msgstr "Ungültiges Datenpaket" -#: ../../include/zot.php:713 +#: ../../include/zot.php:715 msgid "Unable to verify channel signature" msgstr "Konnte die Signatur des Kanals nicht verifizieren" -#: ../../include/zot.php:2326 +#: ../../include/zot.php:2363 #, php-format msgid "Unable to verify site signature for %s" msgstr "Kann die Signatur der Seite von %s nicht verifizieren" -#: ../../include/zot.php:3703 +#: ../../include/zot.php:3712 msgid "invalid target signature" msgstr "Ungültige Signatur des Ziels" +#: ../../include/page_widgets.php:6 +msgid "New Page" +msgstr "Neue Seite" + +#: ../../include/page_widgets.php:43 +msgid "Title" +msgstr "Titel" + +#: ../../include/permissions.php:26 +msgid "Can view my normal stream and posts" +msgstr "Kann meine normalen Beiträge sehen" + +#: ../../include/permissions.php:27 +msgid "Can view my default channel profile" +msgstr "Kann mein Standardprofil sehen" + +#: ../../include/permissions.php:28 +msgid "Can view my connections" +msgstr "Kann meine Verbindungen sehen" + +#: ../../include/permissions.php:29 +msgid "Can view my file storage and photos" +msgstr "Kann meine Datei- und Bilderordner sehen" + +#: ../../include/permissions.php:30 +msgid "Can view my webpages" +msgstr "Kann meine Webseiten sehen" + +#: ../../include/permissions.php:33 +msgid "Can send me their channel stream and posts" +msgstr "Kann mir die Beiträge aus seinem/ihrem Kanal schicken" + +#: ../../include/permissions.php:34 +msgid "Can post on my channel page (\"wall\")" +msgstr "Kann auf meiner Kanal-Seite (\"wall\") Beiträge veröffentlichen" + +#: ../../include/permissions.php:35 +msgid "Can comment on or like my posts" +msgstr "Darf meine Beiträge kommentieren und mögen/nicht mögen" + +#: ../../include/permissions.php:36 +msgid "Can send me private mail messages" +msgstr "Kann mir private Nachrichten schicken" + +#: ../../include/permissions.php:37 +msgid "Can like/dislike stuff" +msgstr "Kann andere Elemente mögen/nicht mögen" + +#: ../../include/permissions.php:37 +msgid "Profiles and things other than posts/comments" +msgstr "Profile und alles außer Beiträge und Kommentare" + +#: ../../include/permissions.php:39 +msgid "Can forward to all my channel contacts via post @mentions" +msgstr "Kann an alle meine Kontakte via @-Erwähnung Nachrichten weiterleiten" + +#: ../../include/permissions.php:39 +msgid "Advanced - useful for creating group forum channels" +msgstr "Fortgeschritten - sinnvoll, um Gruppen-Kanäle/-Foren zu erstellen" + +#: ../../include/permissions.php:40 +msgid "Can chat with me (when available)" +msgstr "Kann mit mir chatten (wenn verfügbar)" + +#: ../../include/permissions.php:41 +msgid "Can write to my file storage and photos" +msgstr "Kann in meine Datei- und Bilderordner schreiben" + +#: ../../include/permissions.php:42 +msgid "Can edit my webpages" +msgstr "Kann meine Webseiten bearbeiten" + +#: ../../include/permissions.php:44 +msgid "Can source my public posts in derived channels" +msgstr "Kann meine öffentlichen Beiträge als Quellen für Kanäle verwenden" + +#: ../../include/permissions.php:44 +msgid "Somewhat advanced - very useful in open communities" +msgstr "Etwas fortgeschritten – sehr nützlich in offenen Gemeinschaften" + +#: ../../include/permissions.php:46 +msgid "Can administer my channel resources" +msgstr "Kann meine Kanäle administrieren" + +#: ../../include/permissions.php:46 +msgid "" +"Extremely advanced. Leave this alone unless you know what you are doing" +msgstr "Sehr fortgeschritten. Bearbeite das nur, wenn Du genau weißt, was Du tust" + +#: ../../include/permissions.php:877 +msgid "Social Networking" +msgstr "Soziales Netzwerk" + +#: ../../include/permissions.php:877 +msgid "Social - Mostly Public" +msgstr "Soziales Netzwerk - Weitgehend öffentlich" + +#: ../../include/permissions.php:877 +msgid "Social - Restricted" +msgstr "Soziales Netzwerk - Beschränkt" + +#: ../../include/permissions.php:877 +msgid "Social - Private" +msgstr "Soziales Netzwerk - Privat" + +#: ../../include/permissions.php:878 +msgid "Community Forum" +msgstr "Forum" + +#: ../../include/permissions.php:878 +msgid "Forum - Mostly Public" +msgstr "Forum - Weitgehend öffentlich" + +#: ../../include/permissions.php:878 +msgid "Forum - Restricted" +msgstr "Forum - Beschränkt" + +#: ../../include/permissions.php:878 +msgid "Forum - Private" +msgstr "Forum - Privat" + +#: ../../include/permissions.php:879 +msgid "Feed Republish" +msgstr "Teilen von Feeds" + +#: ../../include/permissions.php:879 +msgid "Feed - Mostly Public" +msgstr "Feeds - Weitgehend öffentlich" + +#: ../../include/permissions.php:879 +msgid "Feed - Restricted" +msgstr "Feeds - Beschränkt" + +#: ../../include/permissions.php:880 +msgid "Special Purpose" +msgstr "Für besondere Zwecke" + +#: ../../include/permissions.php:880 +msgid "Special - Celebrity/Soapbox" +msgstr "Speziell - Mitteilungs-Kanal (keine Kommentare)" + +#: ../../include/permissions.php:880 +msgid "Special - Group Repository" +msgstr "Speziell - Gruppenarchiv" + +#: ../../include/permissions.php:881 +msgid "Custom/Expert Mode" +msgstr "Benutzerdefiniert/Expertenmodus" + +#: ../../include/activities.php:41 +msgid " and " +msgstr "und" + +#: ../../include/activities.php:49 +msgid "public profile" +msgstr "öffentliches Profil" + +#: ../../include/activities.php:58 +#, php-format +msgid "%1$s changed %2$s to “%3$s”" +msgstr "%1$s hat %2$s auf “%3$s” geändert" + +#: ../../include/activities.php:59 +#, php-format +msgid "Visit %1$s's %2$s" +msgstr "Besuche %1$s's %2$s" + +#: ../../include/activities.php:62 +#, php-format +msgid "%1$s has an updated %2$s, changing %3$s." +msgstr "%1$s hat ein aktualisiertes %2$s, %3$s wurde verändert." + +#: ../../include/bb2diaspora.php:398 +msgid "Attachments:" +msgstr "Anhänge:" + +#: ../../include/bb2diaspora.php:487 +msgid "$Projectname event notification:" +msgstr "$Projectname-Terminbenachrichtigung:" + #: ../../view/theme/redbasic/php/config.php:82 msgid "Focus (Hubzilla default)" msgstr "Focus (Voreinstellung für Hubzilla)" @@ -9977,66 +9781,62 @@ msgstr "Größe der Avatare von Themenstartern" msgid "Set size of followup author photos" msgstr "Größe der Avatare von Kommentatoren" -#: ../../boot.php:1163 +#: ../../boot.php:1162 #, php-format msgctxt "opensearch" msgid "Search %1$s (%2$s)" msgstr "Suche %1$s (%2$s)" -#: ../../boot.php:1163 +#: ../../boot.php:1162 msgctxt "opensearch" msgid "$Projectname" msgstr "$Projectname" -#: ../../boot.php:1481 +#: ../../boot.php:1480 #, php-format msgid "Update %s failed. See error logs." msgstr "Aktualisierung %s fehlgeschlagen. Details in den Fehlerprotokollen." -#: ../../boot.php:1484 +#: ../../boot.php:1483 #, php-format msgid "Update Error at %s" msgstr "Aktualisierungsfehler auf %s" -#: ../../boot.php:1685 +#: ../../boot.php:1684 msgid "" "Create an account to access services and applications within the Hubzilla" msgstr "Erstelle ein Konto, um Anwendungen und Dienste innerhalb von Hubzilla nutzen zu können." #: ../../boot.php:1706 -msgid "Login/Email" -msgstr "Anmelden/E-Mail" - -#: ../../boot.php:1707 msgid "Password" msgstr "Kennwort" -#: ../../boot.php:1708 +#: ../../boot.php:1707 msgid "Remember me" msgstr "Angaben speichern" -#: ../../boot.php:1711 +#: ../../boot.php:1710 msgid "Forgot your password?" msgstr "Passwort vergessen?" -#: ../../boot.php:2277 +#: ../../boot.php:2276 msgid "toggle mobile" msgstr "auf/von mobile Ansicht wechseln" -#: ../../boot.php:2432 +#: ../../boot.php:2425 msgid "Website SSL certificate is not valid. Please correct." msgstr "Das SSL-Zertifikat der Website ist nicht gültig. Bitte beheben." -#: ../../boot.php:2435 +#: ../../boot.php:2428 #, php-format msgid "[hubzilla] Website SSL error for %s" msgstr "[hubzilla] Website-SSL-Fehler für %s" -#: ../../boot.php:2478 +#: ../../boot.php:2469 msgid "Cron/Scheduled tasks not running." msgstr "Cron-Aufgaben laufen nicht." -#: ../../boot.php:2482 +#: ../../boot.php:2473 #, php-format msgid "[hubzilla] Cron tasks not running on %s" msgstr "[hubzilla] Cron-Aufgaben für %s laufen nicht" diff --git a/view/de/hstrings.php b/view/de/hstrings.php index 6d6fd4ebe..eea433fac 100644 --- a/view/de/hstrings.php +++ b/view/de/hstrings.php @@ -4,39 +4,7 @@ if(! function_exists("string_plural_select_de")) { function string_plural_select_de($n){ return ($n != 1);; }} -App::$rtl = 0; -App::$strings["Social Networking"] = "Soziales Netzwerk"; -App::$strings["Social - Mostly Public"] = "Soziales Netzwerk - Weitgehend öffentlich"; -App::$strings["Social - Restricted"] = "Soziales Netzwerk - Beschränkt"; -App::$strings["Social - Private"] = "Soziales Netzwerk - Privat"; -App::$strings["Community Forum"] = "Forum"; -App::$strings["Forum - Mostly Public"] = "Forum - Weitgehend öffentlich"; -App::$strings["Forum - Restricted"] = "Forum - Beschränkt"; -App::$strings["Forum - Private"] = "Forum - Privat"; -App::$strings["Feed Republish"] = "Teilen von Feeds"; -App::$strings["Feed - Mostly Public"] = "Feeds - Weitgehend öffentlich"; -App::$strings["Feed - Restricted"] = "Feeds - Beschränkt"; -App::$strings["Special Purpose"] = "Für besondere Zwecke"; -App::$strings["Special - Celebrity/Soapbox"] = "Speziell - Mitteilungs-Kanal (keine Kommentare)"; -App::$strings["Special - Group Repository"] = "Speziell - Gruppenarchiv"; -App::$strings["Other"] = "Andere"; -App::$strings["Custom/Expert Mode"] = "Benutzerdefiniert/Expertenmodus"; -App::$strings["Can view my channel stream and posts"] = "Kann meinen Kanal-Stream und meine Beiträge sehen"; -App::$strings["Can send me their channel stream and posts"] = "Kann mir die Beiträge aus seinem/ihrem Kanal schicken"; -App::$strings["Can view my default channel profile"] = "Kann mein Standardprofil sehen"; -App::$strings["Can view my connections"] = "Kann meine Verbindungen sehen"; -App::$strings["Can view my file storage and photos"] = "Kann meine Datei- und Bilderordner sehen"; -App::$strings["Can upload/modify my file storage and photos"] = "Kann in meine Datei- und Bilderordner hochladen/ändern"; -App::$strings["Can view my channel webpages"] = "Kann die Webseiten meines Kanals sehen"; -App::$strings["Can create/edit my channel webpages"] = "Kann Webseiten in meinem Kanal erstellen/ändern"; -App::$strings["Can post on my channel (wall) page"] = "Kann auf meiner Kanal-Seite (\"wall\") Beiträge veröffentlichen"; -App::$strings["Can comment on or like my posts"] = "Darf meine Beiträge kommentieren und mögen/nicht mögen"; -App::$strings["Can send me private mail messages"] = "Kann mir private Nachrichten schicken"; -App::$strings["Can like/dislike profiles and profile things"] = "Kann Profile und Profilsachen mögen/nicht mögen"; -App::$strings["Can forward to all my channel connections via @+ mentions in posts"] = "Kann an alle meine Verbindungen via @-Erwähnungen Nachrichten weiterleiten"; -App::$strings["Can chat with me"] = "Kann mit mir chatten"; -App::$strings["Can source my public posts in derived channels"] = "Kann meine öffentlichen Beiträge als Quellen für Kanäle verwenden"; -App::$strings["Can administer my channel"] = "Kann meinen Kanal administrieren"; +; App::$strings["parent"] = "Übergeordnetes Verzeichnis"; App::$strings["Collection"] = "Sammlung"; App::$strings["Principal"] = "Prinzipal"; @@ -67,10 +35,65 @@ App::$strings["Not Found"] = "Nicht gefunden"; App::$strings["Page not found."] = "Seite nicht gefunden."; App::$strings["Remote authentication blocked. You are logged into this site locally. Please logout and retry."] = "Fern-Authentifizierung blockiert. Du bist lokal auf diesem Server angemeldet. Bitte melde Dich ab und versuche es erneut."; App::$strings["Welcome %s. Remote authentication successful."] = "Willkommen %s. Entfernte Authentifizierung erfolgreich."; -App::$strings["Requested profile is not available."] = "Das angefragte Profil ist nicht verfügbar."; +App::$strings["Requested profile is not available."] = "Erwünschte Profil ist nicht verfügbar."; App::$strings["Some blurb about what to do when you're new here"] = "Ein Hinweis, was man tun kann, wenn man neu hier ist"; +App::$strings["Block Name"] = "Block-Name"; +App::$strings["Blocks"] = "Blöcke"; +App::$strings["Block Title"] = "Titel des Blocks"; +App::$strings["Created"] = "Erstellt"; +App::$strings["Edited"] = "Geändert"; +App::$strings["Share"] = "Teilen"; +App::$strings["View"] = "Ansicht"; +App::$strings["Channel not found."] = "Kanal nicht gefunden."; +App::$strings["Permissions denied."] = "Berechtigung verweigert."; +App::$strings["l, F j"] = "l, j. F"; +App::$strings["Link to Source"] = "Link zur Quelle"; +App::$strings["Edit Event"] = "Termin bearbeiten"; +App::$strings["Create Event"] = "Termin anlegen"; +App::$strings["Previous"] = "Voriges"; +App::$strings["Next"] = "Nächste"; +App::$strings["Export"] = "Exportieren"; +App::$strings["Import"] = "Import"; +App::$strings["Submit"] = "Bestätigen"; +App::$strings["Today"] = "Heute"; +App::$strings["You must be logged in to see this page."] = "Du musst angemeldet sein, um diese Seite betrachten zu können."; +App::$strings["Posts and comments"] = "Beiträge und Kommentare"; +App::$strings["Only posts"] = "Nur Beiträge"; +App::$strings["Insufficient permissions. Request redirected to profile page."] = "Unzureichende Zugriffsrechte. Die Anfrage wurde zur Profil-Seite umgeleitet."; +App::$strings["Room not found"] = "Chatraum nicht gefunden"; +App::$strings["Leave Room"] = "Raum verlassen"; +App::$strings["Delete Room"] = "Raum löschen"; +App::$strings["I am away right now"] = "Ich bin gerade nicht da"; +App::$strings["I am online"] = "Ich bin online"; +App::$strings["Bookmark this room"] = "Lesezeichen für diesen Raum setzen"; +App::$strings["Please enter a link URL:"] = "Gib eine URL ein:"; +App::$strings["Encrypt text"] = "Text verschlüsseln"; +App::$strings["Insert web link"] = "Link einfügen"; +App::$strings["Feature disabled."] = "Funktion deaktiviert."; +App::$strings["New Chatroom"] = "Neuer Chatraum"; +App::$strings["Chatroom name"] = "Chatraumname"; +App::$strings["Expiration of chats (minutes)"] = "Verfall von Chats (Minuten)"; +App::$strings["Permissions"] = "Berechtigungen"; +App::$strings["%1\$s's Chatrooms"] = "%1\$ss Chaträume"; +App::$strings["No chatrooms available"] = "Keine Chaträume verfügbar"; +App::$strings["Create New"] = "Neu anlegen"; +App::$strings["Expiration"] = "Verfall"; +App::$strings["min"] = "min"; App::$strings["Away"] = "Abwesend"; App::$strings["Online"] = "Online"; +App::$strings["Invalid item."] = "Ungültiges Element."; +App::$strings["Bookmark added"] = "Lesezeichen hinzugefügt"; +App::$strings["My Bookmarks"] = "Meine Lesezeichen"; +App::$strings["My Connections Bookmarks"] = "Lesezeichen meiner Kontakte"; +App::$strings["Continue"] = "Fortfahren"; +App::$strings["Premium Channel Setup"] = "Premium-Kanal-Einrichtung"; +App::$strings["Enable premium channel connection restrictions"] = "Einschränkungen für einen Premium-Kanal aktivieren"; +App::$strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = "Bitte gib Deine Nutzungsbedingungen ein, z.B. Paypal-Quittung, Richtlinien etc."; +App::$strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = "Unter Umständen sind weitere Schritte oder die Bestätigung der folgenden Bedingungen vor dem Verbinden mit diesem Kanal nötig."; +App::$strings["Potential connections will then see the following text before proceeding:"] = "Potentielle Kontakte werden den folgenden Text sehen, bevor fortgefahren wird:"; +App::$strings["By continuing, I certify that I have complied with any instructions provided on this page."] = "Indem ich fortfahre, bestätige ich die Erfüllung aller Anweisungen auf dieser Seite."; +App::$strings["(No specific instructions have been provided by the channel owner.)"] = "(Der Kanal-Besitzer hat keine speziellen Anweisungen hinterlegt.)"; +App::$strings["Restricted or Premium Channel"] = "Eingeschränkter oder Premium-Kanal"; App::$strings["Could not access contact record."] = "Konnte nicht auf den Kontakteintrag zugreifen."; App::$strings["Could not locate selected profile."] = "Gewähltes Profil nicht gefunden."; App::$strings["Connection updated."] = "Verbindung aktualisiert."; @@ -135,7 +158,6 @@ App::$strings["Do not import posts with this text"] = "Beiträge mit diesem Text App::$strings["This information is public!"] = "Diese Information ist öffentlich!"; App::$strings["Connection Pending Approval"] = "Verbindung wartet auf Bestätigung"; App::$strings["inherited"] = "geerbt"; -App::$strings["Submit"] = "Bestätigen"; App::$strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Bitte wähle ein Profil, das wir %s zeigen sollen, wenn Deine Profilseite über eine verifizierte Verbindung aufgerufen wird."; App::$strings["Their Settings"] = "Deren Einstellungen"; App::$strings["My Settings"] = "Meine Einstellungen"; @@ -144,30 +166,6 @@ App::$strings["Some permissions may be inherited from your channel's privacy settings, which have higher priority than individual settings. You can change those settings here but they wont have any impact unless the inherited setting changes."] = "Einige Berechtigungen werden möglicherweise von den globalen Sicherheits- und Privatsphäre-Einstellungen dieses Kanals geerbt. Diese haben eine höhere Priorität als die Einstellungen an der Verbindung. Werden geerbte Einstellungen hier geändert, hat dies keine Auswirkungen."; App::$strings["Last update:"] = "Letzte Aktualisierung:"; App::$strings["Public access denied."] = "Öffentlichen Zugriff verweigert."; -App::$strings["Item not found."] = "Element nicht gefunden."; -App::$strings["First Name"] = "Vorname"; -App::$strings["Last Name"] = "Nachname"; -App::$strings["Nickname"] = "Spitzname"; -App::$strings["Full Name"] = "Voller Name"; -App::$strings["Email"] = "E-Mail"; -App::$strings["Profile Photo"] = "Profilfoto"; -App::$strings["Profile Photo 16px"] = "Profilfoto 16 px"; -App::$strings["Profile Photo 32px"] = "Profilfoto 32 px"; -App::$strings["Profile Photo 48px"] = "Profilfoto 48 px"; -App::$strings["Profile Photo 64px"] = "Profilfoto 64 px"; -App::$strings["Profile Photo 80px"] = "Profilfoto 80 px"; -App::$strings["Profile Photo 128px"] = "Profilfoto 128 px"; -App::$strings["Timezone"] = "Zeitzone"; -App::$strings["Homepage URL"] = "Homepage-URL"; -App::$strings["Language"] = "Sprache"; -App::$strings["Birth Year"] = "Geburtsjahr"; -App::$strings["Birth Month"] = "Geburtsmonat"; -App::$strings["Birth Day"] = "Geburtstag"; -App::$strings["Birthdate"] = "Geburtsdatum"; -App::$strings["Gender"] = "Geschlecht"; -App::$strings["Male"] = "Männlich"; -App::$strings["Female"] = "Weiblich"; -App::$strings["Channel added."] = "Kanal hinzugefügt."; App::$strings["%d rating"] = array( 0 => "%d Bewertung", 1 => "%d Bewertungen", @@ -198,74 +196,13 @@ App::$strings["Reverse Alphabetic"] = "Entgegengesetzt alphabetisch"; App::$strings["Newest to Oldest"] = "Neueste zuerst"; App::$strings["Oldest to Newest"] = "Älteste zuerst"; App::$strings["No entries (some entries may be hidden)."] = "Keine Einträge gefunden (einige könnten versteckt sein)."; -App::$strings["Continue"] = "Fortfahren"; -App::$strings["Premium Channel Setup"] = "Premium-Kanal-Einrichtung"; -App::$strings["Enable premium channel connection restrictions"] = "Einschränkungen für einen Premium-Kanal aktivieren"; -App::$strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = "Bitte gib Deine Nutzungsbedingungen ein, z.B. Paypal-Quittung, Richtlinien etc."; -App::$strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = "Unter Umständen sind weitere Schritte oder die Bestätigung der folgenden Bedingungen vor dem Verbinden mit diesem Kanal nötig."; -App::$strings["Potential connections will then see the following text before proceeding:"] = "Potentielle Kontakte werden den folgenden Text sehen, bevor fortgefahren wird:"; -App::$strings["By continuing, I certify that I have complied with any instructions provided on this page."] = "Indem ich fortfahre, bestätige ich die Erfüllung aller Anweisungen auf dieser Seite."; -App::$strings["(No specific instructions have been provided by the channel owner.)"] = "(Der Kanal-Besitzer hat keine speziellen Anweisungen hinterlegt.)"; -App::$strings["Restricted or Premium Channel"] = "Eingeschränkter oder Premium-Kanal"; -App::$strings["Calendar entries imported."] = "Kalendereinträge wurden importiert."; -App::$strings["No calendar entries found."] = "Keine Kalendereinträge gefunden."; -App::$strings["Event can not end before it has started."] = "Termin-Ende liegt vor dem Beginn."; -App::$strings["Unable to generate preview."] = "Vorschau konnte nicht erzeugt werden."; -App::$strings["Event title and start time are required."] = "Titel und Startzeit des Termins sind erforderlich."; -App::$strings["Event not found."] = "Termin nicht gefunden."; -App::$strings["event"] = "Termin"; -App::$strings["Edit event title"] = "Termintitel bearbeiten"; -App::$strings["Event title"] = "Termintitel"; -App::$strings["Required"] = "Benötigt"; -App::$strings["Categories (comma-separated list)"] = "Kategorien (Kommagetrennte Liste)"; -App::$strings["Edit Category"] = "Kategorie bearbeiten"; -App::$strings["Category"] = "Kategorie"; -App::$strings["Edit start date and time"] = "Startdatum und -zeit bearbeiten"; -App::$strings["Start date and time"] = "Startdatum und -zeit"; -App::$strings["Finish date and time are not known or not relevant"] = "Enddatum und -zeit sind unbekannt oder irrelevant"; -App::$strings["Edit finish date and time"] = "Enddatum und -zeit bearbeiten"; -App::$strings["Finish date and time"] = "Enddatum und -zeit"; -App::$strings["Adjust for viewer timezone"] = "An die Zeitzone des Betrachters anpassen"; -App::$strings["Important for events that happen in a particular place. Not practical for global holidays."] = "Wichtig für Veranstaltungen die an bestimmten Orten stattfinden. Nicht sinnvoll für globale Feiertage / Ferien."; -App::$strings["Edit Description"] = "Beschreibung bearbeiten"; -App::$strings["Description"] = "Beschreibung"; -App::$strings["Edit Location"] = "Ort bearbeiten"; -App::$strings["Location"] = "Ort"; -App::$strings["Share this event"] = "Den Termin teilen"; -App::$strings["Preview"] = "Vorschau"; -App::$strings["Permission settings"] = "Berechtigungs-Einstellungen"; -App::$strings["Advanced Options"] = "Weitere Optionen"; -App::$strings["l, F j"] = "l, j. F"; -App::$strings["Edit event"] = "Termin bearbeiten"; -App::$strings["Delete event"] = "Termin löschen"; -App::$strings["Link to Source"] = "Link zur Quelle"; -App::$strings["calendar"] = "Kalender"; -App::$strings["Edit Event"] = "Termin bearbeiten"; -App::$strings["Create Event"] = "Termin anlegen"; -App::$strings["Previous"] = "Voriges"; -App::$strings["Next"] = "Nächste"; -App::$strings["Export"] = "Exportieren"; -App::$strings["View"] = "Ansicht"; -App::$strings["Month"] = "Monat"; -App::$strings["Week"] = "Woche"; -App::$strings["Day"] = "Tag"; -App::$strings["Today"] = "Heute"; -App::$strings["Event removed"] = "Termin gelöscht"; -App::$strings["Failed to remove event"] = "Termin konnte nicht gelöscht werden"; -App::$strings["Bookmark added"] = "Lesezeichen hinzugefügt"; -App::$strings["My Bookmarks"] = "Meine Lesezeichen"; -App::$strings["My Connections Bookmarks"] = "Lesezeichen meiner Kontakte"; +App::$strings["Item not found."] = "Element nicht gefunden."; App::$strings["Item not found"] = "Element nicht gefunden"; -App::$strings["Item is not editable"] = "Element kann nicht bearbeitet werden."; -App::$strings["Edit post"] = "Bearbeite Beitrag"; -App::$strings["Photos"] = "Fotos"; -App::$strings["Cancel"] = "Abbrechen"; -App::$strings["Invalid item."] = "Ungültiges Element."; -App::$strings["Channel not found."] = "Kanal nicht gefunden."; -App::$strings["Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."] = "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."; -App::$strings["Save to Folder:"] = "Speichern in Ordner:"; -App::$strings["- select -"] = "– auswählen –"; -App::$strings["Save"] = "Speichern"; +App::$strings["Title (optional)"] = "Titel (optional)"; +App::$strings["Edit Block"] = "Block bearbeiten"; +App::$strings["No channel."] = "Kein Kanal."; +App::$strings["Common connections"] = "Gemeinsame Verbindungen"; +App::$strings["No connections in common."] = "Keine gemeinsamen Verbindungen."; App::$strings["Blocked"] = "Blockiert"; App::$strings["Ignored"] = "Ignoriert"; App::$strings["Hidden"] = "Versteckt"; @@ -317,38 +254,51 @@ App::$strings["select a photo from your photo albums"] = "ein Foto aus meinen Fo App::$strings["Crop Image"] = "Bild zuschneiden"; App::$strings["Please adjust the image cropping for optimum viewing."] = "Bitte schneide das Bild für eine optimale Anzeige passend zu."; App::$strings["Done Editing"] = "Bearbeitung fertigstellen"; -App::$strings["webpage"] = "Webseite"; -App::$strings["block"] = "Block"; -App::$strings["layout"] = "Layout"; -App::$strings["menu"] = "Menü"; -App::$strings["%s element installed"] = "Element für %s installiert"; -App::$strings["%s element installation failed"] = "Installation des Elements %s fehlgeschlagen"; -App::$strings["Permissions denied."] = "Berechtigung verweigert."; -App::$strings["Import"] = "Import"; +App::$strings["Item is not editable"] = "Element kann nicht bearbeitet werden."; +App::$strings["Edit post"] = "Bearbeite Beitrag"; +App::$strings["Calendar entries imported."] = "Kalendereinträge wurden importiert."; +App::$strings["No calendar entries found."] = "Keine Kalendereinträge gefunden."; +App::$strings["Event can not end before it has started."] = "Termin-Ende liegt vor dem Beginn."; +App::$strings["Unable to generate preview."] = "Vorschau konnte nicht erzeugt werden."; +App::$strings["Event title and start time are required."] = "Titel und Startzeit des Termins sind erforderlich."; +App::$strings["Event not found."] = "Termin nicht gefunden."; +App::$strings["event"] = "Termin"; +App::$strings["Edit event title"] = "Termintitel bearbeiten"; +App::$strings["Event title"] = "Termintitel"; +App::$strings["Required"] = "Benötigt"; +App::$strings["Categories (comma-separated list)"] = "Kategorien (Kommagetrennte Liste)"; +App::$strings["Edit Category"] = "Kategorie bearbeiten"; +App::$strings["Category"] = "Kategorie"; +App::$strings["Edit start date and time"] = "Startdatum und -zeit bearbeiten"; +App::$strings["Start date and time"] = "Startdatum und -zeit"; +App::$strings["Finish date and time are not known or not relevant"] = "Enddatum und -zeit sind unbekannt oder irrelevant"; +App::$strings["Edit finish date and time"] = "Enddatum und -zeit bearbeiten"; +App::$strings["Finish date and time"] = "Enddatum und -zeit"; +App::$strings["Adjust for viewer timezone"] = "An die Zeitzone des Betrachters anpassen"; +App::$strings["Important for events that happen in a particular place. Not practical for global holidays."] = "Wichtig für Veranstaltungen die an bestimmten Orten stattfinden. Nicht sinnvoll für globale Feiertage / Ferien."; +App::$strings["Edit Description"] = "Beschreibung bearbeiten"; +App::$strings["Description"] = "Beschreibung"; +App::$strings["Edit Location"] = "Ort bearbeiten"; +App::$strings["Location"] = "Ort"; +App::$strings["Share this event"] = "Den Termin teilen"; +App::$strings["Preview"] = "Vorschau"; +App::$strings["Permission settings"] = "Berechtigungs-Einstellungen"; +App::$strings["Advanced Options"] = "Weitere Optionen"; +App::$strings["Edit event"] = "Termin bearbeiten"; +App::$strings["Delete event"] = "Termin löschen"; +App::$strings["calendar"] = "Kalender"; +App::$strings["Event removed"] = "Termin gelöscht"; +App::$strings["Failed to remove event"] = "Termin konnte nicht gelöscht werden"; +App::$strings["Photos"] = "Fotos"; +App::$strings["Cancel"] = "Abbrechen"; App::$strings["This site is not a directory server"] = "Diese Webseite ist kein Verzeichnisserver"; App::$strings["This directory server requires an access token"] = "Dieser Verzeichnisserver benötigt einen Zugriffstoken"; -App::$strings["You must be logged in to see this page."] = "Du musst angemeldet sein, um diese Seite betrachten zu können."; -App::$strings["Room not found"] = "Chatraum nicht gefunden"; -App::$strings["Leave Room"] = "Raum verlassen"; -App::$strings["Delete Room"] = "Raum löschen"; -App::$strings["I am away right now"] = "Ich bin gerade nicht da"; -App::$strings["I am online"] = "Ich bin online"; -App::$strings["Bookmark this room"] = "Lesezeichen für diesen Raum setzen"; -App::$strings["Please enter a link URL:"] = "Gib eine URL ein:"; -App::$strings["Encrypt text"] = "Text verschlüsseln"; -App::$strings["Insert web link"] = "Link einfügen"; -App::$strings["Feature disabled."] = "Funktion deaktiviert."; -App::$strings["New Chatroom"] = "Neuer Chatraum"; -App::$strings["Chatroom name"] = "Chatraumname"; -App::$strings["Expiration of chats (minutes)"] = "Verfall von Chats (Minuten)"; -App::$strings["Permissions"] = "Berechtigungen"; -App::$strings["%1\$s's Chatrooms"] = "%1\$ss Chaträume"; -App::$strings["No chatrooms available"] = "Keine Chaträume verfügbar"; -App::$strings["Create New"] = "Neu anlegen"; -App::$strings["Expiration"] = "Verfall"; -App::$strings["min"] = "min"; +App::$strings["Save to Folder:"] = "Speichern in Ordner:"; +App::$strings["- select -"] = "– auswählen –"; +App::$strings["Save"] = "Speichern"; App::$strings["Invalid message"] = "Ungültige Beitrags-ID (mid)"; App::$strings["no results"] = "keine Ergebnisse"; +App::$strings["Delivery report for %1\$s"] = "Zustellungsbericht für %1\$s"; App::$strings["channel sync processed"] = "Kanal-Sync verarbeitet"; App::$strings["queued"] = "zur Warteschlange hinzugefügt"; App::$strings["posted"] = "zugestellt"; @@ -360,14 +310,14 @@ App::$strings["recipient not found"] = "Empfänger nicht gefunden."; App::$strings["mail recalled"] = "Mail widerrufen"; App::$strings["duplicate mail received"] = "Doppelte Mail erhalten"; App::$strings["mail delivered"] = "Mail zugestellt"; -App::$strings["Delivery report for %1\$s"] = "Zustellungsbericht für %1\$s"; -App::$strings["Options"] = "Optionen"; -App::$strings["Redeliver"] = "Erneut zustellen"; App::$strings["Layout Name"] = "Layout-Name"; App::$strings["Layout Description (Optional)"] = "Layout-Beschreibung (optional)"; App::$strings["Edit Layout"] = "Layout bearbeiten"; App::$strings["Page link"] = "Seiten-Link"; App::$strings["Edit Webpage"] = "Webseite bearbeiten"; +App::$strings["Channel added."] = "Kanal hinzugefügt."; +App::$strings["network"] = "Netzwerk"; +App::$strings["RSS"] = "RSS"; App::$strings["Privacy group created."] = "Gruppe wurde erstellt."; App::$strings["Could not create privacy group."] = "Gruppe konnte nicht erstellt werden."; App::$strings["Privacy group not found."] = "Gruppe nicht gefunden."; @@ -381,33 +331,16 @@ App::$strings["Privacy group editor"] = "Gruppeneditor"; App::$strings["Members"] = "Mitglieder"; App::$strings["All Connected Channels"] = "Alle verbundenen Kanäle"; App::$strings["Click on a channel to add or remove."] = "Wähle einen Kanal zum hinzufügen oder entfernen aus."; -App::$strings["App installed."] = "App installiert."; -App::$strings["Malformed app."] = "Fehlerhafte App."; -App::$strings["Embed code"] = "Code einbetten"; -App::$strings["Edit App"] = "App bearbeiten"; -App::$strings["Create App"] = "App erstellen"; -App::$strings["Name of app"] = "Name der App"; -App::$strings["Location (URL) of app"] = "Ort (URL) der App"; -App::$strings["Photo icon URL"] = "URL zum Icon"; -App::$strings["80 x 80 pixels - optional"] = "80 x 80 Pixel – optional"; -App::$strings["Categories (optional, comma separated list)"] = "Kategorien (optional, kommagetrennte Liste)"; -App::$strings["Version ID"] = "Versions-ID"; -App::$strings["Price of app"] = "Preis der App"; -App::$strings["Location (URL) to purchase app"] = "Ort (URL), um die App zu kaufen"; +App::$strings["Share content from Firefox to \$Projectname"] = "Inhalte von Firefox nach \$Projectname teilen"; +App::$strings["Activate the Firefox \$Projectname provider"] = "Aktiviert den \$Projectname-Provider für firefox"; +App::$strings["Authorize application connection"] = "Zugriff für die Anwendung autorisieren"; +App::$strings["Return to your app and insert this Securty Code:"] = "Trage folgenden Sicherheitscode in der Anwendung ein:"; +App::$strings["Please login to continue."] = "Zum Weitermachen, bitte einloggen."; +App::$strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Möchtest Du dieser Anwendung erlauben, Deine Nachrichten und Kontakte abzurufen und/oder neue Nachrichten für Dich zu erstellen?"; App::$strings["Documentation Search"] = "Suche in der Dokumentation"; App::$strings["Help:"] = "Hilfe:"; App::$strings["Help"] = "Hilfe"; App::$strings["\$Projectname Documentation"] = "\$Projectname-Dokumentation"; -App::$strings["Item not available."] = "Element nicht verfügbar."; -App::$strings["Layout updated."] = "Layout aktualisiert."; -App::$strings["Edit System Page Description"] = "Systemseitenbeschreibung bearbeiten"; -App::$strings["Layout not found."] = "Layout nicht gefunden."; -App::$strings["Module Name:"] = "Modulname:"; -App::$strings["Layout Help"] = "Layout-Hilfe"; -App::$strings["Share content from Firefox to \$Projectname"] = "Inhalte von Firefox nach \$Projectname teilen"; -App::$strings["Activate the Firefox \$Projectname provider"] = "Aktiviert den \$Projectname-Provider für firefox"; -App::$strings["network"] = "Netzwerk"; -App::$strings["RSS"] = "RSS"; App::$strings["Permission Denied."] = "Zugriff verweigert."; App::$strings["File not found."] = "Datei nicht gefunden."; App::$strings["Edit file permissions"] = "Dateiberechtigungen bearbeiten"; @@ -419,100 +352,8 @@ App::$strings["Copy/paste this URL to link file from a web page"] = "Diese URL v App::$strings["Share this file"] = "Diese Datei freigeben"; App::$strings["Show URL to this file"] = "URL zu dieser Datei anzeigen"; App::$strings["Notify your contacts about this file"] = "Meine Kontakte über diese Datei benachrichtigen"; -App::$strings["Layouts"] = "Layouts"; -App::$strings["Comanche page description language help"] = "Hilfe zur Comanche-Seitenbeschreibungssprache"; -App::$strings["Layout Description"] = "Layout-Beschreibung"; -App::$strings["Created"] = "Erstellt"; -App::$strings["Edited"] = "Geändert"; -App::$strings["Share"] = "Teilen"; -App::$strings["Download PDL file"] = "PDL-Datei herunterladen"; -App::$strings["Like/Dislike"] = "Mögen/Nicht mögen"; -App::$strings["This action is restricted to members."] = "Diese Aktion kann nur von Mitgliedern ausgeführt werden."; -App::$strings["Please login with your \$Projectname ID or register as a new \$Projectname member to continue."] = "Um fortzufahren melde Dich bitte mit Deiner \$Projectname-ID an oder registriere Dich als neues \$Projectname-Mitglied."; -App::$strings["Invalid request."] = "Ungültige Anfrage."; -App::$strings["channel"] = "Kanal"; -App::$strings["thing"] = "Sache"; -App::$strings["Channel unavailable."] = "Kanal nicht vorhanden."; -App::$strings["Previous action reversed."] = "Die vorherige Aktion wurde rückgängig gemacht."; -App::$strings["photo"] = "Foto"; -App::$strings["status"] = "Status"; -App::$strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s gefällt %2\$ss %3\$s"; -App::$strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s gefällt %2\$ss %3\$s nicht"; -App::$strings["%1\$s agrees with %2\$s's %3\$s"] = "%1\$s stimmt %2\$ss %3\$s zu"; -App::$strings["%1\$s doesn't agree with %2\$s's %3\$s"] = "%1\$s lehnt %2\$ss %3\$s ab"; -App::$strings["%1\$s abstains from a decision on %2\$s's %3\$s"] = "%1\$s enthält sich zu %2\$ss %3\$s"; -App::$strings["%1\$s is attending %2\$s's %3\$s"] = "%1\$s nimmt an %2\$ss %3\$s teil"; -App::$strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$s nimmt an %2\$ss %3\$s nicht teil"; -App::$strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$s nimmt vielleicht an %2\$ss %3\$s teil"; -App::$strings["Action completed."] = "Aktion durchgeführt."; -App::$strings["Thank you."] = "Vielen Dank."; -App::$strings["Profile not found."] = "Profil nicht gefunden."; -App::$strings["Profile deleted."] = "Profil gelöscht."; -App::$strings["Profile-"] = "Profil-"; -App::$strings["New profile created."] = "Neues Profil erstellt."; -App::$strings["Profile unavailable to clone."] = "Profil kann nicht geklont werden."; -App::$strings["Profile unavailable to export."] = "Dieses Profil kann nicht exportiert werden."; -App::$strings["Profile Name is required."] = "Profil-Name erforderlich."; -App::$strings["Marital Status"] = "Familienstand"; -App::$strings["Romantic Partner"] = "Romantische Partner"; -App::$strings["Likes"] = "Gefällt"; -App::$strings["Dislikes"] = "Gefällt nicht"; -App::$strings["Work/Employment"] = "Arbeit/Anstellung"; -App::$strings["Religion"] = "Religion"; -App::$strings["Political Views"] = "Politische Ansichten"; -App::$strings["Sexual Preference"] = "Sexuelle Orientierung"; -App::$strings["Homepage"] = "Webseite"; -App::$strings["Interests"] = "Hobbys/Interessen"; -App::$strings["Address"] = "Adresse"; -App::$strings["Profile updated."] = "Profil aktualisiert."; -App::$strings["Hide your connections list from viewers of this profile"] = "Deine Verbindungen vor Betrachtern dieses Profils verbergen"; -App::$strings["Edit Profile Details"] = "Bearbeite Profil-Details"; -App::$strings["View this profile"] = "Dieses Profil ansehen"; -App::$strings["Edit visibility"] = "Sichtbarkeit bearbeiten"; -App::$strings["Profile Tools"] = "Profilwerkzeuge"; -App::$strings["Change cover photo"] = "Titelbild ändern"; -App::$strings["Change profile photo"] = "Profilfoto ändern"; -App::$strings["Create a new profile using these settings"] = "Neues Profil anlegen und diese Einstellungen übernehmen"; -App::$strings["Clone this profile"] = "Dieses Profil klonen"; -App::$strings["Delete this profile"] = "Dieses Profil löschen"; -App::$strings["Add profile things"] = "Sachen zum Profil hinzufügen"; -App::$strings["Personal"] = "Persönlich"; -App::$strings["Relation"] = "Beziehung"; -App::$strings["Miscellaneous"] = "Verschiedenes"; -App::$strings["Import profile from file"] = "Profil aus einer Datei importieren"; -App::$strings["Export profile to file"] = "Profil in eine Datei exportieren"; -App::$strings["Your gender"] = "Dein Geschlecht"; -App::$strings["Marital status"] = "Familienstand"; -App::$strings["Sexual preference"] = "Sexuelle Orientierung"; -App::$strings["Profile name"] = "Profilname"; -App::$strings["This is your default profile."] = "Das ist Dein Standardprofil."; -App::$strings["Your full name"] = "Dein voller Name"; -App::$strings["Title/Description"] = "Titel/Beschreibung"; -App::$strings["Street address"] = "Straße und Hausnummer"; -App::$strings["Locality/City"] = "Wohnort"; -App::$strings["Region/State"] = "Region/Bundesstaat"; -App::$strings["Postal/Zip code"] = "Postleitzahl"; -App::$strings["Country"] = "Land"; -App::$strings["Who (if applicable)"] = "Wer (falls anwendbar)"; -App::$strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Beispiele: cathy123, Cathy Williams, cathy@example.com"; -App::$strings["Since (date)"] = "Seit (Datum)"; -App::$strings["Tell us about yourself"] = "Erzähle uns ein wenig von Dir"; -App::$strings["Hometown"] = "Heimatort"; -App::$strings["Political views"] = "Politische Ansichten"; -App::$strings["Religious views"] = "Religiöse Ansichten"; -App::$strings["Keywords used in directory listings"] = "Schlüsselwörter, die in Verzeichnis-Auflistungen verwendet werden"; -App::$strings["Example: fishing photography software"] = "Beispiel: Angeln Fotografie Software"; -App::$strings["Musical interests"] = "Musikalische Interessen"; -App::$strings["Books, literature"] = "Bücher, Literatur"; -App::$strings["Television"] = "Fernsehen"; -App::$strings["Film/Dance/Culture/Entertainment"] = "Film/Tanz/Kultur/Unterhaltung"; -App::$strings["Hobbies/Interests"] = "Hobbys/Interessen"; -App::$strings["Love/Romance"] = "Liebe/Romantik"; -App::$strings["School/Education"] = "Schule/Ausbildung"; -App::$strings["Contact information and social networks"] = "Kontaktinformation und soziale Netzwerke"; -App::$strings["My other channels"] = "Meine anderen Kanäle"; -App::$strings["Profile Image"] = "Profilfoto:"; -App::$strings["Edit Profiles"] = "Profile bearbeiten"; +App::$strings["Apps"] = "Apps"; +App::$strings["Item not available."] = "Element nicht verfügbar."; App::$strings["Your service plan only allows %d channels."] = "Dein Vertrag erlaubt nur %d Kanäle."; App::$strings["Nothing to import."] = "Nichts zu importieren."; App::$strings["Unable to download data from old server"] = "Daten können vom alten Server nicht heruntergeladen werden"; @@ -533,8 +374,6 @@ App::$strings["For either option, please choose whether to make this hub your ne App::$strings["Make this hub my primary location"] = "Dieser $Pojectname-Hub ist mein primärer Hub."; App::$strings["Import existing posts if possible (experimental - limited by available memory"] = "Importiere bestehende Beiträge falls möglich (experimentell - begrenzt durch zur Verfügung stehenden Speicher"; App::$strings["This process may take several minutes to complete. Please submit the form only once and leave this page open until finished."] = "Dieser Vorgang kann einige Minuten dauern. Bitte sende das Formular nur einmal ab und lasse diese Seite bis zur Fertigstellung offen."; -App::$strings["\$Projectname"] = "\$Projectname"; -App::$strings["Welcome to %s"] = "Willkommen auf %s"; App::$strings["Unable to locate original post."] = "Originalbeitrag nicht gefunden."; App::$strings["Empty post discarded."] = "Leeren Beitrag verworfen."; App::$strings["Executable content type not permitted to this channel."] = "Ausführbarer Content-Typ ist für diesen Kanal nicht freigegeben."; @@ -543,6 +382,229 @@ App::$strings["System error. Post not saved."] = "Systemfehler. Beitrag nicht ge App::$strings["Unable to obtain post information from database."] = "Beitragsinformationen können nicht aus der Datenbank abgerufen werden."; App::$strings["You have reached your limit of %1$.0f top level posts."] = "Du hast die maximale Anzahl von %1$.0f Beiträgen erreicht."; App::$strings["You have reached your limit of %1$.0f webpages."] = "Du hast die maximale Anzahl von %1$.0f Webseiten erreicht."; +App::$strings["Layouts"] = "Layouts"; +App::$strings["Comanche page description language help"] = "Hilfe zur Comanche-Seitenbeschreibungssprache"; +App::$strings["Layout Description"] = "Layout-Beschreibung"; +App::$strings["Download PDL file"] = "PDL-Datei herunterladen"; +App::$strings["\$Projectname"] = "\$Projectname"; +App::$strings["Welcome to %s"] = "Willkommen auf %s"; +App::$strings["First Name"] = "Vorname"; +App::$strings["Last Name"] = "Nachname"; +App::$strings["Nickname"] = "Spitzname"; +App::$strings["Full Name"] = "Voller Name"; +App::$strings["Email"] = "E-Mail"; +App::$strings["Profile Photo"] = "Profilfoto"; +App::$strings["Profile Photo 16px"] = "Profilfoto 16 px"; +App::$strings["Profile Photo 32px"] = "Profilfoto 32 px"; +App::$strings["Profile Photo 48px"] = "Profilfoto 48 px"; +App::$strings["Profile Photo 64px"] = "Profilfoto 64 px"; +App::$strings["Profile Photo 80px"] = "Profilfoto 80 px"; +App::$strings["Profile Photo 128px"] = "Profilfoto 128 px"; +App::$strings["Timezone"] = "Zeitzone"; +App::$strings["Homepage URL"] = "Homepage-URL"; +App::$strings["Language"] = "Sprache"; +App::$strings["Birth Year"] = "Geburtsjahr"; +App::$strings["Birth Month"] = "Geburtsmonat"; +App::$strings["Birth Day"] = "Geburtstag"; +App::$strings["Birthdate"] = "Geburtsdatum"; +App::$strings["Gender"] = "Geschlecht"; +App::$strings["Male"] = "Männlich"; +App::$strings["Female"] = "Weiblich"; +App::$strings["webpage"] = "Webseite"; +App::$strings["block"] = "Block"; +App::$strings["layout"] = "Layout"; +App::$strings["menu"] = "Menü"; +App::$strings["%s element installed"] = "Element für %s installiert"; +App::$strings["%s element installation failed"] = "Installation des Elements %s fehlgeschlagen"; +App::$strings["Like/Dislike"] = "Mögen/Nicht mögen"; +App::$strings["This action is restricted to members."] = "Diese Aktion kann nur von Mitgliedern ausgeführt werden."; +App::$strings["Please login with your \$Projectname ID or register as a new \$Projectname member to continue."] = "Um fortzufahren melde Dich bitte mit Deiner \$Projectname-ID an oder registriere Dich als neues \$Projectname-Mitglied."; +App::$strings["Invalid request."] = "Ungültige Anfrage."; +App::$strings["channel"] = "Kanal"; +App::$strings["thing"] = "Sache"; +App::$strings["Channel unavailable."] = "Kanal nicht vorhanden."; +App::$strings["Previous action reversed."] = "Die vorherige Aktion wurde rückgängig gemacht."; +App::$strings["photo"] = "Foto"; +App::$strings["status"] = "Status"; +App::$strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s gefällt %2\$ss %3\$s"; +App::$strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s gefällt %2\$ss %3\$s nicht"; +App::$strings["%1\$s agrees with %2\$s's %3\$s"] = "%1\$s stimmt %2\$ss %3\$s zu"; +App::$strings["%1\$s doesn't agree with %2\$s's %3\$s"] = "%1\$s lehnt %2\$ss %3\$s ab"; +App::$strings["%1\$s abstains from a decision on %2\$s's %3\$s"] = "%1\$s enthält sich zu %2\$ss %3\$s"; +App::$strings["%1\$s is attending %2\$s's %3\$s"] = "%1\$s nimmt an %2\$ss %3\$s teil"; +App::$strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$s nimmt an %2\$ss %3\$s nicht teil"; +App::$strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$s nimmt vielleicht an %2\$ss %3\$s teil"; +App::$strings["Action completed."] = "Aktion durchgeführt."; +App::$strings["Thank you."] = "Vielen Dank."; +App::$strings["Import completed"] = "Import abgeschlossen"; +App::$strings["Import Items"] = "Beiträge importieren"; +App::$strings["Use this form to import existing posts and content from an export file."] = "Mit diesem Formular kannst Du existierende Beiträge und Inhalte aus einer Sicherungsdatei importieren."; +App::$strings["Total invitation limit exceeded."] = "Einladungslimit überschritten."; +App::$strings["%s : Not a valid email address."] = "%s : Keine gültige Email Adresse."; +App::$strings["Please join us on \$Projectname"] = "Schließe Dich uns auf \$Projectname an!"; +App::$strings["Invitation limit exceeded. Please contact your site administrator."] = "Einladungslimit überschritten. Bitte kontaktiere den Administrator Deines \$Projectname-Servers."; +App::$strings["%s : Message delivery failed."] = "%s : Nachricht konnte nicht zugestellt werden."; +App::$strings["%d message sent."] = array( + 0 => "%d Nachricht gesendet.", + 1 => "%d Nachrichten gesendet.", +); +App::$strings["You have no more invitations available"] = "Du hast keine weiteren verfügbare Einladungen"; +App::$strings["Send invitations"] = "Einladungen senden"; +App::$strings["Enter email addresses, one per line:"] = "Email-Adressen eintragen, eine pro Zeile:"; +App::$strings["Your message:"] = "Deine Nachricht:"; +App::$strings["Please join my community on \$Projectname."] = "Schließe Dich uns auf \$Projectname an!"; +App::$strings["You will need to supply this invitation code:"] = "Bitte verwende bei der Registrierung den folgenden Einladungscode:"; +App::$strings["1. Register at any \$Projectname location (they are all inter-connected)"] = "1. Registriere Dich auf einem beliebigen \$Projectname-Hub (sie sind alle miteinander verbunden)"; +App::$strings["2. Enter my \$Projectname network address into the site searchbar."] = "2. Gib meine \$Projectname-Adresse im Suchfeld ein."; +App::$strings["or visit"] = "oder besuche"; +App::$strings["3. Click [Connect]"] = "3. Klicke auf [Verbinden]"; +App::$strings["Remote privacy information not available."] = "Privatsphäre-Einstellungen anderer Nutzer sind nicht verfügbar."; +App::$strings["Visible to:"] = "Sichtbar für:"; +App::$strings["Location not found."] = "Klon nicht gefunden."; +App::$strings["Location lookup failed."] = "Nachschlagen des Kanal-Ortes fehlgeschlagen"; +App::$strings["Please select another location to become primary before removing the primary location."] = "Bitte mache einen anderen Kanal-Ort zum primären Ort, bevor Du den primären Ort löschst."; +App::$strings["Syncing locations"] = "Synchronisiere Klone"; +App::$strings["No locations found."] = "Keine Klon-Adressen gefunden."; +App::$strings["Manage Channel Locations"] = "Klon-Adressen verwalten"; +App::$strings["Address"] = "Adresse"; +App::$strings["Primary"] = "Primär"; +App::$strings["Drop"] = "Löschen"; +App::$strings["Sync Now"] = "Jetzt synchronisieren"; +App::$strings["Please wait several minutes between consecutive operations."] = "Bitte warte mehrere Minuten zwischen dem Ausführen zweier Operationen!"; +App::$strings["When possible, drop a location by logging into that website/hub and removing your channel."] = "Wenn möglich, lösche einen Klon, indem Du Dich auf dem jeweiligen Hub einloggst und den Kanal dort löschst."; +App::$strings["Use this form to drop the location if the hub is no longer operating."] = "Benutze dieses Formular zum Löschen eines Klons, wenn es den Hub nicht mehr gibt."; +App::$strings["Hub not found."] = "Server nicht gefunden."; +App::$strings["Unable to lookup recipient."] = "Konnte den Empfänger nicht finden."; +App::$strings["Unable to communicate with requested channel."] = "Die Kommunikation mit dem ausgewählten Kanal ist fehlgeschlagen."; +App::$strings["Cannot verify requested channel."] = "Verifizierung des angeforderten Kanals fehlgeschlagen."; +App::$strings["Selected channel has private message restrictions. Send failed."] = "Der ausgewählte Kanal hat Einschränkungen bzgl. privater Nachrichten. Senden fehlgeschlagen."; +App::$strings["Messages"] = "Nachrichten"; +App::$strings["Message recalled."] = "Nachricht widerrufen."; +App::$strings["Conversation removed."] = "Unterhaltung gelöscht."; +App::$strings["Expires YYYY-MM-DD HH:MM"] = "Verfällt YYYY-MM-DD HH;MM"; +App::$strings["Requested channel is not in this network"] = "Angeforderter Kanal ist nicht in diesem Netzwerk."; +App::$strings["Send Private Message"] = "Private Nachricht senden"; +App::$strings["To:"] = "An:"; +App::$strings["Subject:"] = "Betreff:"; +App::$strings["Attach file"] = "Datei anhängen"; +App::$strings["Send"] = "Absenden"; +App::$strings["Set expiration date"] = "Verfallsdatum"; +App::$strings["Delete message"] = "Nachricht löschen"; +App::$strings["Delivery report"] = "Zustellungsbericht"; +App::$strings["Recall message"] = "Nachricht widerrufen"; +App::$strings["Message has been recalled."] = "Die Nachricht wurde widerrufen."; +App::$strings["Delete Conversation"] = "Unterhaltung löschen"; +App::$strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Keine sichere Kommunikation verfügbar. Eventuell kannst Du auf der Profilseite des Absenders antworten."; +App::$strings["Send Reply"] = "Antwort senden"; +App::$strings["Your message for %s (%s):"] = "Deine Nachricht für %s (%s):"; +App::$strings["You have created %1$.0f of %2$.0f allowed channels."] = "Du hast %1$.0f von maximal %2$.0f erlaubten Kanälen eingerichtet."; +App::$strings["Create a new channel"] = "Neuen Kanal anlegen"; +App::$strings["Channel Manager"] = "Kanal-Manager"; +App::$strings["Current Channel"] = "Aktueller Kanal"; +App::$strings["Switch to one of your channels by selecting it."] = "Wechsle zu einem Deiner Kanäle, indem Du auf ihn klickst."; +App::$strings["Default Channel"] = "Standard Kanal"; +App::$strings["Make Default"] = "Zum Standard machen"; +App::$strings["%d new messages"] = "%d neue Nachrichten"; +App::$strings["%d new introductions"] = "%d neue Vorstellungen"; +App::$strings["Delegated Channel"] = "Delegierte Kanäle"; +App::$strings["No valid account found."] = "Kein gültiges Konto gefunden."; +App::$strings["Password reset request issued. Check your email."] = "Zurücksetzen des Passworts eingeleitet. Schau in Deine E-Mails."; +App::$strings["Site Member (%s)"] = "Nutzer (%s)"; +App::$strings["Password reset requested at %s"] = "Passwort-Rücksetzung auf %s angefordert"; +App::$strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Die Anfrage konnte nicht verifiziert werden. (Vielleicht hast Du schon einmal auf den Link in der E-Mail geklickt?) Passwort-Rücksetzung fehlgeschlagen."; +App::$strings["Password Reset"] = "Zurücksetzen des Kennworts"; +App::$strings["Your password has been reset as requested."] = "Dein Passwort wurde wie angefordert neu erstellt."; +App::$strings["Your new password is"] = "Dein neues Passwort lautet"; +App::$strings["Save or copy your new password - and then"] = "Speichere oder kopiere Dein neues Passwort – und dann"; +App::$strings["click here to login"] = "Klicke hier, um dich anzumelden"; +App::$strings["Your password may be changed from the Settings page after successful login."] = "Dein Passwort kann unter Einstellungen nach einer erfolgreichen Anmeldung geändert werden."; +App::$strings["Your password has changed at %s"] = "Auf %s wurde Dein Passwort geändert"; +App::$strings["Forgot your Password?"] = "Kennwort vergessen?"; +App::$strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Gib Deine E-Mail-Adresse ein, um Dein Passwort zurücksetzen zu lassen. Du erhältst dann weitere Anweisungen per E-Mail."; +App::$strings["Email Address"] = "E-Mail Adresse"; +App::$strings["Reset"] = "Zurücksetzen"; +App::$strings["Unable to update menu."] = "Kann Menü nicht aktualisieren."; +App::$strings["Unable to create menu."] = "Kann Menü nicht erstellen."; +App::$strings["Menu Name"] = "Name des Menüs"; +App::$strings["Unique name (not visible on webpage) - required"] = "Eindeutiger Name (nicht sichtbar auf der Webseite) – erforderlich"; +App::$strings["Menu Title"] = "Menütitel"; +App::$strings["Visible on webpage - leave empty for no title"] = "Sichtbar auf der Webseite – für keinen Titel leer lassen"; +App::$strings["Allow Bookmarks"] = "Lesezeichen erlauben"; +App::$strings["Menu may be used to store saved bookmarks"] = "Im Menü können gespeicherte Lesezeichen abgelegt werden"; +App::$strings["Submit and proceed"] = "Absenden und fortfahren"; +App::$strings["Menus"] = "Menüs"; +App::$strings["Bookmarks allowed"] = "Lesezeichen erlaubt"; +App::$strings["Delete this menu"] = "Lösche dieses Menü"; +App::$strings["Edit menu contents"] = "Bearbeite Menü Inhalte"; +App::$strings["Edit this menu"] = "Dieses Menü bearbeiten"; +App::$strings["Menu could not be deleted."] = "Menü konnte nicht gelöscht werden."; +App::$strings["Menu not found."] = "Menü nicht gefunden"; +App::$strings["Edit Menu"] = "Menü bearbeiten"; +App::$strings["Add or remove entries to this menu"] = "Einträge zu diesem Menü hinzufügen oder entfernen"; +App::$strings["Menu name"] = "Menü Name"; +App::$strings["Must be unique, only seen by you"] = "Muss eindeutig sein, ist aber nur für Dich sichtbar"; +App::$strings["Menu title"] = "Menü Titel"; +App::$strings["Menu title as seen by others"] = "Menü Titel wie er von anderen gesehen wird"; +App::$strings["Allow bookmarks"] = "Erlaube Lesezeichen"; +App::$strings["Not found."] = "Nicht gefunden."; +App::$strings["__ctx:mood__ %1\$s is %2\$s"] = "%1\$s ist %2\$s"; +App::$strings["Mood"] = "Laune"; +App::$strings["Set your current mood and tell your friends"] = "Wähle Deine aktuelle Stimmung und teile sie mit Deinen Freunden"; +App::$strings["Profile Match"] = "Profil-Übereinstimmungen"; +App::$strings["No keywords to match. Please add keywords to your default profile."] = "Keine Schlüsselwörter für den Abgleich gefunden. Bitte füge Schlüsselwörter zu Deinem Standardprofil hinzu."; +App::$strings["is interested in:"] = "interessiert sich für:"; +App::$strings["No matches"] = "Keine Übereinstimmungen"; +App::$strings["No such group"] = "Gruppe nicht gefunden"; +App::$strings["No such channel"] = "Kanal nicht gefunden"; +App::$strings["forum"] = "Forum"; +App::$strings["Search Results For:"] = "Suchergebnisse für:"; +App::$strings["Privacy group is empty"] = "Gruppe ist leer"; +App::$strings["Privacy group: "] = "Gruppe:"; +App::$strings["Invalid connection."] = "Ungültige Verbindung."; +App::$strings["No more system notifications."] = "Keine System-Benachrichtigungen mehr."; +App::$strings["System Notifications"] = "System-Benachrichtigungen"; +App::$strings["Unable to create element."] = "Element konnte nicht erstellt werden."; +App::$strings["Unable to update menu element."] = "Kann Menü-Element nicht aktualisieren."; +App::$strings["Unable to add menu element."] = "Kann Menü-Bestandteil nicht hinzufügen."; +App::$strings["Menu Item Permissions"] = "Zugriffsrechte des Menü-Elements"; +App::$strings["(click to open/close)"] = "(zum öffnen/schließen anklicken)"; +App::$strings["Link Name"] = "Name des Links"; +App::$strings["Link or Submenu Target"] = "Ziel des Links oder Untermenüs"; +App::$strings["Enter URL of the link or select a menu name to create a submenu"] = "URL des Links eingeben oder Menünamen wählen, um ein Untermenü anzulegen."; +App::$strings["Use magic-auth if available"] = "Magic-Auth verwenden, falls verfügbar"; +App::$strings["Open link in new window"] = "Öffne Link in neuem Fenster"; +App::$strings["Order in list"] = "Reihenfolge in der Liste"; +App::$strings["Higher numbers will sink to bottom of listing"] = "Größere Nummern werden weiter unten in der Auflistung einsortiert"; +App::$strings["Submit and finish"] = "Absenden und fertigstellen"; +App::$strings["Submit and continue"] = "Absenden und fortfahren"; +App::$strings["Menu:"] = "Menü:"; +App::$strings["Link Target"] = "Ziel des Links"; +App::$strings["Edit menu"] = "Menü bearbeiten"; +App::$strings["Edit element"] = "Bestandteil bearbeiten"; +App::$strings["Drop element"] = "Bestandteil löschen"; +App::$strings["New element"] = "Neues Bestandteil"; +App::$strings["Edit this menu container"] = "Diesen Menü-Container bearbeiten"; +App::$strings["Add menu element"] = "Menüelement hinzufügen"; +App::$strings["Delete this menu item"] = "Lösche dieses Menü-Bestandteil"; +App::$strings["Edit this menu item"] = "Bearbeite dieses Menü-Bestandteil"; +App::$strings["Menu item not found."] = "Menü-Bestandteil nicht gefunden."; +App::$strings["Menu item deleted."] = "Menü-Bestandteil gelöscht."; +App::$strings["Menu item could not be deleted."] = "Menü-Bestandteil kann nicht gelöscht werden."; +App::$strings["Edit Menu Element"] = "Bearbeite Menü-Bestandteil"; +App::$strings["Link text"] = "Link Text"; +App::$strings["Name or caption"] = "Name oder Titel"; +App::$strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\""] = "Beispiele: „Horst Weidinger“, „Lisa und ihr Meerschweinchen“, „Fußball“, „Segelflieger-Forum“ "; +App::$strings["Choose a short nickname"] = "Wähle einen kurzen Spitznamen"; +App::$strings["Your nickname will be used to create an easy to remember channel address e.g. nickname%s"] = "Dein Spitzname wird verwendet, um eine leicht zu merkende Kanal-Adresse (ähnlich einer E-Mail-Adresse) zu erzeugen, die Du mit anderen austauschen kannst, z.B. nickname%s"; +App::$strings["Channel role and privacy"] = "Kanaltyp und Privatspäre-Einstellungen"; +App::$strings["Select a channel role with your privacy requirements."] = "Wähle einen passenden Kanaltyp mit den zugehörigen Voreinstellungen zur Privatsphäre."; +App::$strings["Read more about roles"] = "Mehr Informationen über Rollen"; +App::$strings["Create Channel"] = "Einen neuen Kanal anlegen"; +App::$strings["A channel is your identity on this network. It can represent a person, a blog, or a forum to name a few. Channels can make connections with other channels to share information with highly detailed permissions."] = "Ein Kanal ist Deine Identität in diesem Netzwerk. Er kann eine Person, ein Blog oder ein Forum repräsentieren, nur um ein paar Beispiele zu nennen. Kanäle können Verbindungen miteinander eingehen, um Informationen zu teilen, jeweils basierend auf sehr detaillierten Berechtigungseinstellungen."; +App::$strings["or import an existing channel from another location."] = "oder importiere einen bestehenden Kanal von einem anderen Server."; +App::$strings["Invalid request identifier."] = "Ungültiger Anfrage-Identifikator."; +App::$strings["Discard"] = "Verwerfen"; +App::$strings["Mark all system notifications seen"] = "Markiere alle System-Benachrichtigungen als gesehen"; App::$strings["Page owner information could not be retrieved."] = "Informationen über den Besitzer der Seite konnten nicht gefunden werden."; App::$strings["Profile Photos"] = "Profilfotos"; App::$strings["Album not found."] = "Album nicht gefunden."; @@ -611,164 +673,122 @@ App::$strings["__ctx:noun__ Dislikes"] = "Gefällt nicht"; App::$strings["Close"] = "Schließen"; App::$strings["View Album"] = "Album ansehen"; App::$strings["Recent Photos"] = "Neueste Fotos"; -App::$strings["Remote privacy information not available."] = "Privatsphäre-Einstellungen anderer Nutzer sind nicht verfügbar."; -App::$strings["Visible to:"] = "Sichtbar für:"; -App::$strings["Import completed"] = "Import abgeschlossen"; -App::$strings["Import Items"] = "Beiträge importieren"; -App::$strings["Use this form to import existing posts and content from an export file."] = "Mit diesem Formular kannst Du existierende Beiträge und Inhalte aus einer Sicherungsdatei importieren."; -App::$strings["Total invitation limit exceeded."] = "Einladungslimit überschritten."; -App::$strings["%s : Not a valid email address."] = "%s : Keine gültige Email Adresse."; -App::$strings["Please join us on \$Projectname"] = "Schließe Dich uns auf \$Projectname an!"; -App::$strings["Invitation limit exceeded. Please contact your site administrator."] = "Einladungslimit überschritten. Bitte kontaktiere den Administrator Deines \$Projectname-Servers."; -App::$strings["%s : Message delivery failed."] = "%s : Nachricht konnte nicht zugestellt werden."; -App::$strings["%d message sent."] = array( - 0 => "%d Nachricht gesendet.", - 1 => "%d Nachrichten gesendet.", -); -App::$strings["You have no more invitations available"] = "Du hast keine weiteren verfügbare Einladungen"; -App::$strings["Send invitations"] = "Einladungen senden"; -App::$strings["Enter email addresses, one per line:"] = "Email-Adressen eintragen, eine pro Zeile:"; -App::$strings["Your message:"] = "Deine Nachricht:"; -App::$strings["Please join my community on \$Projectname."] = "Schließe Dich uns auf \$Projectname an!"; -App::$strings["You will need to supply this invitation code:"] = "Bitte verwende bei der Registrierung den folgenden Einladungscode:"; -App::$strings["1. Register at any \$Projectname location (they are all inter-connected)"] = "1. Registriere Dich auf einem beliebigen \$Projectname-Hub (sie sind alle miteinander verbunden)"; -App::$strings["2. Enter my \$Projectname network address into the site searchbar."] = "2. Gib meine \$Projectname-Adresse im Suchfeld ein."; -App::$strings["or visit"] = "oder besuche"; -App::$strings["3. Click [Connect]"] = "3. Klicke auf [Verbinden]"; -App::$strings["Location not found."] = "Klon nicht gefunden."; -App::$strings["Location lookup failed."] = "Nachschlagen des Kanal-Ortes fehlgeschlagen"; -App::$strings["Please select another location to become primary before removing the primary location."] = "Bitte mache einen anderen Kanal-Ort zum primären Ort, bevor Du den primären Ort löschst."; -App::$strings["Syncing locations"] = "Synchronisiere Klone"; -App::$strings["No locations found."] = "Keine Klon-Adressen gefunden."; -App::$strings["Manage Channel Locations"] = "Klon-Adressen verwalten"; -App::$strings["Primary"] = "Primär"; -App::$strings["Drop"] = "Löschen"; -App::$strings["Sync Now"] = "Jetzt synchronisieren"; -App::$strings["Please wait several minutes between consecutive operations."] = "Bitte warte mehrere Minuten zwischen dem Ausführen zweier Operationen!"; -App::$strings["When possible, drop a location by logging into that website/hub and removing your channel."] = "Wenn möglich, lösche einen Klon, indem Du Dich auf dem jeweiligen Hub einloggst und den Kanal dort löschst."; -App::$strings["Use this form to drop the location if the hub is no longer operating."] = "Benutze dieses Formular zum Löschen eines Klons, wenn es den Hub nicht mehr gibt."; -App::$strings["Hub not found."] = "Server nicht gefunden."; -App::$strings["Unable to lookup recipient."] = "Konnte den Empfänger nicht finden."; -App::$strings["Unable to communicate with requested channel."] = "Die Kommunikation mit dem ausgewählten Kanal ist fehlgeschlagen."; -App::$strings["Cannot verify requested channel."] = "Verifizierung des angeforderten Kanals fehlgeschlagen."; -App::$strings["Selected channel has private message restrictions. Send failed."] = "Der ausgewählte Kanal hat Einschränkungen bzgl. privater Nachrichten. Senden fehlgeschlagen."; -App::$strings["Messages"] = "Nachrichten"; -App::$strings["Message recalled."] = "Nachricht widerrufen."; -App::$strings["Conversation removed."] = "Unterhaltung gelöscht."; -App::$strings["Expires YYYY-MM-DD HH:MM"] = "Verfällt YYYY-MM-DD HH;MM"; -App::$strings["Requested channel is not in this network"] = "Angeforderter Kanal ist nicht in diesem Netzwerk."; -App::$strings["Send Private Message"] = "Private Nachricht senden"; -App::$strings["To:"] = "An:"; -App::$strings["Subject:"] = "Betreff:"; -App::$strings["Attach file"] = "Datei anhängen"; -App::$strings["Send"] = "Absenden"; -App::$strings["Set expiration date"] = "Verfallsdatum"; -App::$strings["Delete message"] = "Nachricht löschen"; -App::$strings["Delivery report"] = "Zustellungsbericht"; -App::$strings["Recall message"] = "Nachricht widerrufen"; -App::$strings["Message has been recalled."] = "Die Nachricht wurde widerrufen."; -App::$strings["Delete Conversation"] = "Unterhaltung löschen"; -App::$strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Keine sichere Kommunikation verfügbar. Eventuell kannst Du auf der Profilseite des Absenders antworten."; -App::$strings["Send Reply"] = "Antwort senden"; -App::$strings["Your message for %s (%s):"] = "Deine Nachricht für %s (%s):"; -App::$strings["You have created %1$.0f of %2$.0f allowed channels."] = "Du hast %1$.0f von maximal %2$.0f erlaubten Kanälen eingerichtet."; -App::$strings["Create a new channel"] = "Neuen Kanal anlegen"; -App::$strings["Channel Manager"] = "Kanal-Manager"; -App::$strings["Current Channel"] = "Aktueller Kanal"; -App::$strings["Switch to one of your channels by selecting it."] = "Wechsle zu einem Deiner Kanäle, indem Du auf ihn klickst."; -App::$strings["Default Channel"] = "Standard Kanal"; -App::$strings["Make Default"] = "Zum Standard machen"; -App::$strings["%d new messages"] = "%d neue Nachrichten"; -App::$strings["%d new introductions"] = "%d neue Vorstellungen"; -App::$strings["Delegated Channel"] = "Delegierte Kanäle"; -App::$strings["Unable to update menu."] = "Kann Menü nicht aktualisieren."; -App::$strings["Unable to create menu."] = "Kann Menü nicht erstellen."; -App::$strings["Menu Name"] = "Name des Menüs"; -App::$strings["Unique name (not visible on webpage) - required"] = "Eindeutiger Name (nicht sichtbar auf der Webseite) – erforderlich"; -App::$strings["Menu Title"] = "Menütitel"; -App::$strings["Visible on webpage - leave empty for no title"] = "Sichtbar auf der Webseite – für keinen Titel leer lassen"; -App::$strings["Allow Bookmarks"] = "Lesezeichen erlauben"; -App::$strings["Menu may be used to store saved bookmarks"] = "Im Menü können gespeicherte Lesezeichen abgelegt werden"; -App::$strings["Submit and proceed"] = "Absenden und fortfahren"; -App::$strings["Menus"] = "Menüs"; -App::$strings["Bookmarks allowed"] = "Lesezeichen erlaubt"; -App::$strings["Delete this menu"] = "Lösche dieses Menü"; -App::$strings["Edit menu contents"] = "Bearbeite Menü Inhalte"; -App::$strings["Edit this menu"] = "Dieses Menü bearbeiten"; -App::$strings["Menu could not be deleted."] = "Menü konnte nicht gelöscht werden."; -App::$strings["Menu not found."] = "Menü nicht gefunden"; -App::$strings["Edit Menu"] = "Menü bearbeiten"; -App::$strings["Add or remove entries to this menu"] = "Einträge zu diesem Menü hinzufügen oder entfernen"; -App::$strings["Menu name"] = "Menü Name"; -App::$strings["Must be unique, only seen by you"] = "Muss eindeutig sein, ist aber nur für Dich sichtbar"; -App::$strings["Menu title"] = "Menü Titel"; -App::$strings["Menu title as seen by others"] = "Menü Titel wie er von anderen gesehen wird"; -App::$strings["Allow bookmarks"] = "Erlaube Lesezeichen"; -App::$strings["Not found."] = "Nicht gefunden."; -App::$strings["No valid account found."] = "Kein gültiges Konto gefunden."; -App::$strings["Password reset request issued. Check your email."] = "Zurücksetzen des Passworts eingeleitet. Schau in Deine E-Mails."; -App::$strings["Site Member (%s)"] = "Nutzer (%s)"; -App::$strings["Password reset requested at %s"] = "Passwort-Rücksetzung auf %s angefordert"; -App::$strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Die Anfrage konnte nicht verifiziert werden. (Vielleicht hast Du schon einmal auf den Link in der E-Mail geklickt?) Passwort-Rücksetzung fehlgeschlagen."; -App::$strings["Password Reset"] = "Zurücksetzen des Kennworts"; -App::$strings["Your password has been reset as requested."] = "Dein Passwort wurde wie angefordert neu erstellt."; -App::$strings["Your new password is"] = "Dein neues Passwort lautet"; -App::$strings["Save or copy your new password - and then"] = "Speichere oder kopiere Dein neues Passwort – und dann"; -App::$strings["click here to login"] = "Klicke hier, um dich anzumelden"; -App::$strings["Your password may be changed from the Settings page after successful login."] = "Dein Passwort kann unter Einstellungen nach einer erfolgreichen Anmeldung geändert werden."; -App::$strings["Your password has changed at %s"] = "Auf %s wurde Dein Passwort geändert"; -App::$strings["Forgot your Password?"] = "Kennwort vergessen?"; -App::$strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Gib Deine E-Mail-Adresse ein, um Dein Passwort zurücksetzen zu lassen. Du erhältst dann weitere Anweisungen per E-Mail."; -App::$strings["Email Address"] = "E-Mail Adresse"; -App::$strings["Reset"] = "Zurücksetzen"; -App::$strings["__ctx:mood__ %1\$s is %2\$s"] = "%1\$s ist %2\$s"; -App::$strings["Mood"] = "Laune"; -App::$strings["Set your current mood and tell your friends"] = "Wähle Deine aktuelle Stimmung und teile sie mit Deinen Freunden"; -App::$strings["No such group"] = "Gruppe nicht gefunden"; -App::$strings["No such channel"] = "Kanal nicht gefunden"; -App::$strings["forum"] = "Forum"; -App::$strings["Search Results For:"] = "Suchergebnisse für:"; -App::$strings["Privacy group is empty"] = "Gruppe ist leer"; -App::$strings["Privacy group: "] = "Gruppe:"; -App::$strings["Invalid connection."] = "Ungültige Verbindung."; -App::$strings["No more system notifications."] = "Keine System-Benachrichtigungen mehr."; -App::$strings["System Notifications"] = "System-Benachrichtigungen"; -App::$strings["Profile Match"] = "Profil-Übereinstimmungen"; -App::$strings["No keywords to match. Please add keywords to your default profile."] = "Keine Schlüsselwörter für den Abgleich gefunden. Bitte füge Schlüsselwörter zu Deinem Standardprofil hinzu."; -App::$strings["is interested in:"] = "interessiert sich für:"; -App::$strings["No matches"] = "Keine Übereinstimmungen"; -App::$strings["Posts and comments"] = "Beiträge und Kommentare"; -App::$strings["Only posts"] = "Nur Beiträge"; -App::$strings["Insufficient permissions. Request redirected to profile page."] = "Unzureichende Zugriffsrechte. Die Anfrage wurde zur Profil-Seite umgeleitet."; -App::$strings["Unable to create element."] = "Element konnte nicht erstellt werden."; -App::$strings["Unable to update menu element."] = "Kann Menü-Element nicht aktualisieren."; -App::$strings["Unable to add menu element."] = "Kann Menü-Bestandteil nicht hinzufügen."; -App::$strings["Menu Item Permissions"] = "Zugriffsrechte des Menü-Elements"; -App::$strings["(click to open/close)"] = "(zum öffnen/schließen anklicken)"; -App::$strings["Link Name"] = "Name des Links"; -App::$strings["Link or Submenu Target"] = "Ziel des Links oder Untermenüs"; -App::$strings["Enter URL of the link or select a menu name to create a submenu"] = "URL des Links eingeben oder Menünamen wählen, um ein Untermenü anzulegen."; -App::$strings["Use magic-auth if available"] = "Magic-Auth verwenden, falls verfügbar"; -App::$strings["Open link in new window"] = "Öffne Link in neuem Fenster"; -App::$strings["Order in list"] = "Reihenfolge in der Liste"; -App::$strings["Higher numbers will sink to bottom of listing"] = "Größere Nummern werden weiter unten in der Auflistung einsortiert"; -App::$strings["Submit and finish"] = "Absenden und fertigstellen"; -App::$strings["Submit and continue"] = "Absenden und fortfahren"; -App::$strings["Menu:"] = "Menü:"; -App::$strings["Link Target"] = "Ziel des Links"; -App::$strings["Edit menu"] = "Menü bearbeiten"; -App::$strings["Edit element"] = "Bestandteil bearbeiten"; -App::$strings["Drop element"] = "Bestandteil löschen"; -App::$strings["New element"] = "Neues Bestandteil"; -App::$strings["Edit this menu container"] = "Diesen Menü-Container bearbeiten"; -App::$strings["Add menu element"] = "Menüelement hinzufügen"; -App::$strings["Delete this menu item"] = "Lösche dieses Menü-Bestandteil"; -App::$strings["Edit this menu item"] = "Bearbeite dieses Menü-Bestandteil"; -App::$strings["Menu item not found."] = "Menü-Bestandteil nicht gefunden."; -App::$strings["Menu item deleted."] = "Menü-Bestandteil gelöscht."; -App::$strings["Menu item could not be deleted."] = "Menü-Bestandteil kann nicht gelöscht werden."; -App::$strings["Edit Menu Element"] = "Bearbeite Menü-Bestandteil"; -App::$strings["Link text"] = "Link Text"; +App::$strings["sent you a private message"] = "hat Dir eine private Nachricht geschickt"; +App::$strings["added your channel"] = "hat deinen Kanal hinzugefügt"; +App::$strings["g A l F d"] = "l, d. F, G:i \\U\\h\\r"; +App::$strings["[today]"] = "[Heute]"; +App::$strings["posted an event"] = "hat einen Termin veröffentlicht"; +App::$strings["Unable to find your hub."] = "Konnte Deinen Server nicht finden."; +App::$strings["Post successful."] = "Veröffentlichung erfolgreich."; +App::$strings["OpenID protocol error. No ID returned."] = "OpenID Protokollfehler. Keine ID zurückgegeben."; +App::$strings["Login failed."] = "Login fehlgeschlagen."; +App::$strings["Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."] = "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."; +App::$strings["This setting requires special processing and editing has been blocked."] = "Diese Einstellung erfordert eine besondere Verarbeitung und ist blockiert."; +App::$strings["Configuration Editor"] = "Konfigurationseditor"; +App::$strings["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."] = "Warnung: Einige Einstellungen können Deinen Kanal funktionsunfähig machen. Bitte verlasse diese Seite, es sei denn Du bist vertraut damit, wie dieses Feature korrekt verwendet wird."; +App::$strings["Layout updated."] = "Layout aktualisiert."; +App::$strings["Edit System Page Description"] = "Systemseitenbeschreibung bearbeiten"; +App::$strings["Layout not found."] = "Layout nicht gefunden."; +App::$strings["Module Name:"] = "Modulname:"; +App::$strings["Layout Help"] = "Layout-Hilfe"; +App::$strings["Poke"] = "Anstupsen"; +App::$strings["Poke somebody"] = "Jemanden anstupsen"; +App::$strings["Poke/Prod"] = "Anstupsen/Knuffen"; +App::$strings["Poke, prod or do other things to somebody"] = "Jemanden anstupsen, knuffen oder sonstiges"; +App::$strings["Recipient"] = "Empfänger"; +App::$strings["Choose what you wish to do to recipient"] = "Wähle, was Du mit dem/r Empfänger/in tun willst"; +App::$strings["Make this post private"] = "Diesen Beitrag privat machen"; +App::$strings["Fetching URL returns error: %1\$s"] = "Abrufen der URL gab einen Fehler zurück: %1\$s"; +App::$strings["Profile not found."] = "Profil nicht gefunden."; +App::$strings["Profile deleted."] = "Profil gelöscht."; +App::$strings["Profile-"] = "Profil-"; +App::$strings["New profile created."] = "Neues Profil erstellt."; +App::$strings["Profile unavailable to clone."] = "Profil kann nicht geklont werden."; +App::$strings["Profile unavailable to export."] = "Dieses Profil kann nicht exportiert werden."; +App::$strings["Profile Name is required."] = "Profil-Name erforderlich."; +App::$strings["Marital Status"] = "Familienstand"; +App::$strings["Romantic Partner"] = "Romantische Partner"; +App::$strings["Likes"] = "Gefällt"; +App::$strings["Dislikes"] = "Gefällt nicht"; +App::$strings["Work/Employment"] = "Arbeit/Anstellung"; +App::$strings["Religion"] = "Religion"; +App::$strings["Political Views"] = "Politische Ansichten"; +App::$strings["Sexual Preference"] = "Sexuelle Orientierung"; +App::$strings["Homepage"] = "Webseite"; +App::$strings["Interests"] = "Hobbys/Interessen"; +App::$strings["Profile updated."] = "Profil aktualisiert."; +App::$strings["Hide your connections list from viewers of this profile"] = "Deine Verbindungen vor Betrachtern dieses Profils verbergen"; +App::$strings["Edit Profile Details"] = "Bearbeite Profil-Details"; +App::$strings["View this profile"] = "Dieses Profil ansehen"; +App::$strings["Edit visibility"] = "Sichtbarkeit bearbeiten"; +App::$strings["Profile Tools"] = "Profilwerkzeuge"; +App::$strings["Change cover photo"] = "Titelbild ändern"; +App::$strings["Change profile photo"] = "Profilfoto ändern"; +App::$strings["Create a new profile using these settings"] = "Neues Profil anlegen und diese Einstellungen übernehmen"; +App::$strings["Clone this profile"] = "Dieses Profil klonen"; +App::$strings["Delete this profile"] = "Dieses Profil löschen"; +App::$strings["Add profile things"] = "Sachen zum Profil hinzufügen"; +App::$strings["Personal"] = "Persönlich"; +App::$strings["Relation"] = "Beziehung"; +App::$strings["Miscellaneous"] = "Verschiedenes"; +App::$strings["Import profile from file"] = "Profil aus einer Datei importieren"; +App::$strings["Export profile to file"] = "Profil in eine Datei exportieren"; +App::$strings["Your gender"] = "Dein Geschlecht"; +App::$strings["Marital status"] = "Familienstand"; +App::$strings["Sexual preference"] = "Sexuelle Orientierung"; +App::$strings["Profile name"] = "Profilname"; +App::$strings["This is your default profile."] = "Das ist Dein Standardprofil."; +App::$strings["Your full name"] = "Dein voller Name"; +App::$strings["Title/Description"] = "Titel/Beschreibung"; +App::$strings["Street address"] = "Straße und Hausnummer"; +App::$strings["Locality/City"] = "Wohnort"; +App::$strings["Region/State"] = "Region/Bundesstaat"; +App::$strings["Postal/Zip code"] = "Postleitzahl"; +App::$strings["Country"] = "Land"; +App::$strings["Who (if applicable)"] = "Wer (falls anwendbar)"; +App::$strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Beispiele: cathy123, Cathy Williams, cathy@example.com"; +App::$strings["Since (date)"] = "Seit (Datum)"; +App::$strings["Tell us about yourself"] = "Erzähle uns ein wenig von Dir"; +App::$strings["Hometown"] = "Heimatort"; +App::$strings["Political views"] = "Politische Ansichten"; +App::$strings["Religious views"] = "Religiöse Ansichten"; +App::$strings["Keywords used in directory listings"] = "Schlüsselwörter, die in Verzeichnis-Auflistungen verwendet werden"; +App::$strings["Example: fishing photography software"] = "Beispiel: Angeln Fotografie Software"; +App::$strings["Musical interests"] = "Musikalische Interessen"; +App::$strings["Books, literature"] = "Bücher, Literatur"; +App::$strings["Television"] = "Fernsehen"; +App::$strings["Film/Dance/Culture/Entertainment"] = "Film/Tanz/Kultur/Unterhaltung"; +App::$strings["Hobbies/Interests"] = "Hobbys/Interessen"; +App::$strings["Love/Romance"] = "Liebe/Romantik"; +App::$strings["School/Education"] = "Schule/Ausbildung"; +App::$strings["Contact information and social networks"] = "Kontaktinformation und soziale Netzwerke"; +App::$strings["My other channels"] = "Meine anderen Kanäle"; +App::$strings["Profile Image"] = "Profilfoto:"; +App::$strings["Edit Profiles"] = "Profile bearbeiten"; +App::$strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Leere den Browser Cache oder nutze Umschalten-Neu Laden, falls das neue Foto nicht sofort angezeigt wird."; +App::$strings["Upload Profile Photo"] = "Lade neues Profilfoto hoch"; +App::$strings["Invalid profile identifier."] = "Ungültiger Profil-Identifikator"; +App::$strings["Profile Visibility Editor"] = "Profil-Sichtbarkeits-Editor"; +App::$strings["Profile"] = "Profil"; +App::$strings["Click on a contact to add or remove."] = "Klicke auf einen Kontakt, um ihn hinzuzufügen oder zu entfernen."; +App::$strings["Visible To"] = "Sichtbar für"; +App::$strings["Public Hubs"] = "Öffentliche Hubs"; +App::$strings["The listed hubs allow public registration for the \$Projectname network. All hubs in the network are interlinked so membership on any of them conveys membership in the network as a whole. Some hubs may require subscription or provide tiered service plans. The hub itself may provide additional details."] = "Die hier aufgeführten Hubs sind öffentlich und erlauben die Registrierung im \$Projectname Netzwerk. Alle Hubs dieses Netzwerks sind miteinander verbunden, so dass die Mitgliedschaft auf einem Hub die Verbindung zu beliebigen Seiten und Kanälen auf anderen Hubs ermöglicht. Es könnte sein, dass einige dieser Hubs kostenpflichtig sind oder abgestufte, je nach Umfang kostenpflichtige Mitgliedschaften anbieten. Auf den Seiten der einzelnen Hubs könnten jeweils nähere Informationen dazu stehen."; +App::$strings["Hub URL"] = "Hub-URL"; +App::$strings["Access Type"] = "Zugriffstyp"; +App::$strings["Registration Policy"] = "Registrierungsrichtlinien"; +App::$strings["Stats"] = "Statistiken"; +App::$strings["Software"] = "Software"; +App::$strings["Ratings"] = "Bewertungen"; +App::$strings["Rate"] = "Bewerten"; +App::$strings["Website:"] = "Webseite:"; +App::$strings["Remote Channel [%s] (not yet known on this site)"] = "Kanal [%s] (auf diesem Server noch unbekannt)"; +App::$strings["Rating (this information is public)"] = "Bewertung (öffentlich sichtbar)"; +App::$strings["Optionally explain your rating (this information is public)"] = "Optional kannst du deine Bewertung erklären (öffentlich sichtbar)"; +App::$strings["No ratings"] = "Keine Bewertungen"; +App::$strings["Rating: "] = "Bewertung: "; +App::$strings["Website: "] = "Webseite: "; +App::$strings["Description: "] = "Beschreibung: "; App::$strings["Theme settings updated."] = "Theme-Einstellungen aktualisiert."; App::$strings["# Accounts"] = "Anzahl der Konten"; App::$strings["# blocked accounts"] = "Anzahl der blockierten Konten"; @@ -1011,91 +1031,19 @@ App::$strings["(In addition to basic fields)"] = "(zusätzlich zu notwendige Fel App::$strings["All available fields"] = "Alle verfügbaren Felder"; App::$strings["Custom Fields"] = "Benutzerdefinierte Felder"; App::$strings["Create Custom Field"] = "Erstelle benutzerdefiniertes Feld"; -App::$strings["Name or caption"] = "Name oder Titel"; -App::$strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\""] = "Beispiele: „Horst Weidinger“, „Lisa und ihr Meerschweinchen“, „Fußball“, „Segelflieger-Forum“ "; -App::$strings["Choose a short nickname"] = "Wähle einen kurzen Spitznamen"; -App::$strings["Your nickname will be used to create an easy to remember channel address e.g. nickname%s"] = "Dein Spitzname wird verwendet, um eine leicht zu merkende Kanal-Adresse (ähnlich einer E-Mail-Adresse) zu erzeugen, die Du mit anderen austauschen kannst, z.B. nickname%s"; -App::$strings["Channel role and privacy"] = "Kanaltyp und Privatspäre-Einstellungen"; -App::$strings["Select a channel role with your privacy requirements."] = "Wähle einen passenden Kanaltyp mit den zugehörigen Voreinstellungen zur Privatsphäre."; -App::$strings["Read more about roles"] = "Mehr Informationen über Rollen"; -App::$strings["Create Channel"] = "Einen neuen Kanal anlegen"; -App::$strings["A channel is your identity on this network. It can represent a person, a blog, or a forum to name a few. Channels can make connections with other channels to share information with highly detailed permissions."] = "Ein Kanal ist Deine Identität in diesem Netzwerk. Er kann eine Person, ein Blog oder ein Forum repräsentieren, nur um ein paar Beispiele zu nennen. Kanäle können Verbindungen miteinander eingehen, um Informationen zu teilen, jeweils basierend auf sehr detaillierten Berechtigungseinstellungen."; -App::$strings["or import an existing channel from another location."] = "oder importiere einen bestehenden Kanal von einem anderen Server."; -App::$strings["sent you a private message"] = "hat Dir eine private Nachricht geschickt"; -App::$strings["added your channel"] = "hat deinen Kanal hinzugefügt"; -App::$strings["g A l F d"] = "l, d. F, G:i \\U\\h\\r"; -App::$strings["[today]"] = "[Heute]"; -App::$strings["posted an event"] = "hat einen Termin veröffentlicht"; -App::$strings["Invalid request identifier."] = "Ungültiger Anfrage-Identifikator."; -App::$strings["Discard"] = "Verwerfen"; -App::$strings["Mark all system notifications seen"] = "Markiere alle System-Benachrichtigungen als gesehen"; -App::$strings["Poke"] = "Anstupsen"; -App::$strings["Poke somebody"] = "Jemanden anstupsen"; -App::$strings["Poke/Prod"] = "Anstupsen/Knuffen"; -App::$strings["Poke, prod or do other things to somebody"] = "Jemanden anstupsen, knuffen oder sonstiges"; -App::$strings["Recipient"] = "Empfänger"; -App::$strings["Choose what you wish to do to recipient"] = "Wähle, was Du mit dem/r Empfänger/in tun willst"; -App::$strings["Make this post private"] = "Diesen Beitrag privat machen"; -App::$strings["Unable to find your hub."] = "Konnte Deinen Server nicht finden."; -App::$strings["Post successful."] = "Veröffentlichung erfolgreich."; -App::$strings["OpenID protocol error. No ID returned."] = "OpenID Protokollfehler. Keine ID zurückgegeben."; -App::$strings["Login failed."] = "Login fehlgeschlagen."; -App::$strings["Invalid profile identifier."] = "Ungültiger Profil-Identifikator"; -App::$strings["Profile Visibility Editor"] = "Profil-Sichtbarkeits-Editor"; -App::$strings["Profile"] = "Profil"; -App::$strings["Click on a contact to add or remove."] = "Klicke auf einen Kontakt, um ihn hinzuzufügen oder zu entfernen."; -App::$strings["Visible To"] = "Sichtbar für"; -App::$strings["This setting requires special processing and editing has been blocked."] = "Diese Einstellung erfordert eine besondere Verarbeitung und ist blockiert."; -App::$strings["Configuration Editor"] = "Konfigurationseditor"; -App::$strings["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."] = "Warnung: Einige Einstellungen können Deinen Kanal funktionsunfähig machen. Bitte verlasse diese Seite, es sei denn Du bist vertraut damit, wie dieses Feature korrekt verwendet wird."; -App::$strings["Fetching URL returns error: %1\$s"] = "Abrufen der URL gab einen Fehler zurück: %1\$s"; -App::$strings["Version %s"] = "Version %s"; -App::$strings["Installed plugins/addons/apps:"] = "Installierte Plugins/Addons/Apps"; -App::$strings["No installed plugins/addons/apps"] = "Keine installierten Plugins/Addons/Apps"; -App::$strings["This is a hub of \$Projectname - a global cooperative network of decentralized privacy enhanced websites."] = "Dieser Hub ist Teil von \$Projectname – ein globales, kooperatives Netzwerk aus dezentralen Websites, die Rücksicht auf Deine Privatsphäre nehmen."; -App::$strings["Tag: "] = "Schlagwort: "; -App::$strings["Last background fetch: "] = "Letzter Hintergrundabruf:"; -App::$strings["Current load average: "] = "Aktuelles Load Average:"; -App::$strings["Running at web location"] = "Erreichbar unter der Web-Adresse"; -App::$strings["Please visit hubzilla.org to learn more about \$Projectname."] = "Bitte besuchen Sie hubzilla.org, um mehr über \$Projectname zu erfahren."; -App::$strings["Bug reports and issues: please visit"] = "Probleme oder Fehler gefunden? Bitte besuche"; -App::$strings["\$projectname issues"] = "\$projectname-Bugtracker"; -App::$strings["Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com"] = "Vorschläge, Lob, usw.: E-Mail an 'redmatrix' at librelist - dot - com"; -App::$strings["Site Administrators"] = "Administratoren"; -App::$strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Wir haben ein Problem mit der OpenID festgestellt, mit der Du Dich anmelden wolltest. Bitte überprüfe sie noch einmal."; -App::$strings["The error message was:"] = "Die Fehlermeldung war:"; -App::$strings["Authentication failed."] = "Authentifizierung fehlgeschlagen."; -App::$strings["Remote Authentication"] = "Entfernte Authentifizierung"; -App::$strings["Enter your channel address (e.g. channel@example.com)"] = "Deine Kanal-Adresse (z. B. channel@example.com)"; -App::$strings["Authenticate"] = "Authentifizieren"; -App::$strings["Public Hubs"] = "Öffentliche Hubs"; -App::$strings["The listed hubs allow public registration for the \$Projectname network. All hubs in the network are interlinked so membership on any of them conveys membership in the network as a whole. Some hubs may require subscription or provide tiered service plans. The hub itself may provide additional details."] = "Die hier aufgeführten Hubs sind öffentlich und erlauben die Registrierung im \$Projectname Netzwerk. Alle Hubs dieses Netzwerks sind miteinander verbunden, so dass die Mitgliedschaft auf einem Hub die Verbindung zu beliebigen Seiten und Kanälen auf anderen Hubs ermöglicht. Es könnte sein, dass einige dieser Hubs kostenpflichtig sind oder abgestufte, je nach Umfang kostenpflichtige Mitgliedschaften anbieten. Auf den Seiten der einzelnen Hubs könnten jeweils nähere Informationen dazu stehen."; -App::$strings["Hub URL"] = "Hub-URL"; -App::$strings["Access Type"] = "Zugriffstyp"; -App::$strings["Registration Policy"] = "Registrierungsrichtlinien"; -App::$strings["Stats"] = "Statistiken"; -App::$strings["Software"] = "Software"; -App::$strings["Ratings"] = "Bewertungen"; -App::$strings["Rate"] = "Bewerten"; -App::$strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Leere den Browser Cache oder nutze Umschalten-Neu Laden, falls das neue Foto nicht sofort angezeigt wird."; -App::$strings["Upload Profile Photo"] = "Lade neues Profilfoto hoch"; -App::$strings["Block Name"] = "Block-Name"; -App::$strings["Blocks"] = "Blöcke"; -App::$strings["Block Title"] = "Titel des Blocks"; -App::$strings["Website:"] = "Webseite:"; -App::$strings["Remote Channel [%s] (not yet known on this site)"] = "Kanal [%s] (auf diesem Server noch unbekannt)"; -App::$strings["Rating (this information is public)"] = "Bewertung (öffentlich sichtbar)"; -App::$strings["Optionally explain your rating (this information is public)"] = "Optional kannst du deine Bewertung erklären (öffentlich sichtbar)"; -App::$strings["No ratings"] = "Keine Bewertungen"; -App::$strings["Rating: "] = "Bewertung: "; -App::$strings["Website: "] = "Webseite: "; -App::$strings["Description: "] = "Beschreibung: "; -App::$strings["Apps"] = "Apps"; -App::$strings["Title (optional)"] = "Titel (optional)"; -App::$strings["Edit Block"] = "Block bearbeiten"; -App::$strings["No channel."] = "Kein Kanal."; -App::$strings["Common connections"] = "Gemeinsame Verbindungen"; -App::$strings["No connections in common."] = "Keine gemeinsamen Verbindungen."; +App::$strings["App installed."] = "App installiert."; +App::$strings["Malformed app."] = "Fehlerhafte App."; +App::$strings["Embed code"] = "Code einbetten"; +App::$strings["Edit App"] = "App bearbeiten"; +App::$strings["Create App"] = "App erstellen"; +App::$strings["Name of app"] = "Name der App"; +App::$strings["Location (URL) of app"] = "Ort (URL) der App"; +App::$strings["Photo icon URL"] = "URL zum Icon"; +App::$strings["80 x 80 pixels - optional"] = "80 x 80 Pixel – optional"; +App::$strings["Categories (optional, comma separated list)"] = "Kategorien (optional, kommagetrennte Liste)"; +App::$strings["Version ID"] = "Versions-ID"; +App::$strings["Price of app"] = "Preis der App"; +App::$strings["Location (URL) to purchase app"] = "Ort (URL), um die App zu kaufen"; App::$strings["Select a bookmark folder"] = "Lesezeichenordner wählen"; App::$strings["Save Bookmark"] = "Lesezeichen speichern"; App::$strings["URL of bookmark"] = "URL des Lesezeichens"; @@ -1121,7 +1069,7 @@ App::$strings["no"] = "nein"; App::$strings["yes"] = "ja"; App::$strings["Membership on this site is by invitation only."] = "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich."; App::$strings["Register"] = "Registrieren"; -App::$strings["This site may require email verification after submitting this form. If you are returned to a login page, please check your email for instructions."] = "Diese Seite verlangt möglicherweise eine Emailbestätigung nach dem Ansenden des Formulars. Wenn Du auf eine Login-Seite zurückgeleitet wirst, prüfe bitte auf neue Mail mit entsprechenden Hinweisen."; +App::$strings["Proceed to create your first channel"] = "Fortfahren und Deinen ersten Kanal anlegen"; App::$strings["Please login."] = "Bitte melde dich an."; App::$strings["Account removals are not allowed within 48 hours of changing the account password."] = "Das Löschen von Konten innerhalb 48 Stunden nachdem deren Passwort geändert wurde ist nicht erlaubt."; App::$strings["Remove This Account"] = "Dieses Konto löschen"; @@ -1138,23 +1086,17 @@ App::$strings["This channel will be completely removed from the network. "] = "D App::$strings["Remove this channel and all its clones from the network"] = "Lösche diesen Kanal und all seine Klone aus dem Netzwerk"; App::$strings["By default only the instance of the channel located on this hub will be removed from the network"] = "Standardmäßig wird der Kanal nur auf diesem Server gelöscht, seine Klone verbleiben im Netzwerk"; App::$strings["Remove Channel"] = "Kanal löschen"; -App::$strings["Export Channel"] = "Kanal exportieren"; -App::$strings["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."] = "Exportiert die grundlegenden Kanal-Informationen in eine kleine Datei. Diese stellt eine Sicherung Deiner Verbindungen, Berechtigungen, Profile und Basisdaten bereit, die für den Import auf einem anderen Hub verwendet werden kann, aber nicht die Beiträge Deines Kanals enthält."; -App::$strings["Export Content"] = "Kanal und Inhalte exportieren"; -App::$strings["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."] = "Exportiert Deine Kanal-Informationen sowie alle zugehörigen Inhalte in eine JSON-Sicherungsdatei. Die sichert alle Verbindungen, Berechtigungen, Profildaten und Deine Beiträge aus mehreren Monaten. Diese Datei kann SEHR groß werden! Bitte habe ein wenig Geduld – es kann mehrere Minuten dauern, bis der Download startet."; -App::$strings["Export your posts from a given year."] = "Exportiert die Beiträge des angegebenen Jahres."; -App::$strings["You may also export your posts and conversations for a particular year or month. Adjust the date in your browser location bar to select other dates. If the export fails (possibly due to memory exhaustion on your server hub), please try again selecting a more limited date range."] = "Du kannst auch die Beiträge und Konversationen eines bestimmten Jahres oder Monats exportieren. Ändere das Datum in der Adresszeile Deines Browsers, um andere Zeiträume zu wählen. Falls der Export fehlschlägt (vermutlich, weil auf diesem Hub nicht genügend Speicher zur Verfügung steht), versuche es noch einmal mit einer kleineren Zeitspanne."; -App::$strings["To select all posts for a given year, such as this year, visit %2\$s"] = "Um alle Beiträge eines bestimmten Jahres, zum Beispiel dieses Jahres, auszuwählen, klicke %2\$s."; -App::$strings["To select all posts for a given month, such as January of this year, visit %2\$s"] = "Um alle Beiträge eines bestimmten Monats auszuwählen, zum Beispiel vom Januar diesen Jahres, klicke %2\$s."; -App::$strings["These content files may be imported or restored by visiting %2\$s on any site containing your channel. For best results please import or restore these in date order (oldest first)."] = "Diese Inhalts-Sicherungen können wiederhergestellt werden, indem Du %2\$s auf jeglichem Hub besuchst, der diesen Kanal enthält. Das funktioniert am besten, wenn Du dabei die zeitliche Reihenfolge einhältst, also die Sicherungen für den ältesten Zeitraum zuerst importierst."; +App::$strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Wir haben ein Problem mit der OpenID festgestellt, mit der Du Dich anmelden wolltest. Bitte überprüfe sie noch einmal."; +App::$strings["The error message was:"] = "Die Fehlermeldung war:"; +App::$strings["Authentication failed."] = "Authentifizierung fehlgeschlagen."; +App::$strings["Remote Authentication"] = "Entfernte Authentifizierung"; +App::$strings["Enter your channel address (e.g. channel@example.com)"] = "Deine Kanal-Adresse (z. B. channel@example.com)"; +App::$strings["Authenticate"] = "Authentifizieren"; App::$strings["Items tagged with: %s"] = "Beiträge mit Schlagwort: %s"; App::$strings["Search results for: %s"] = "Suchergebnisse für: %s"; App::$strings["No service class restrictions found."] = "Keine Dienstklassenbeschränkungen gefunden."; App::$strings["Name is required"] = "Name ist erforderlich"; App::$strings["Key and Secret are required"] = "Schlüssel und Geheimnis werden benötigt"; -App::$strings["This channel is limited to %d tokens"] = "Dieser Kanal ist auf %d Token begrenzt"; -App::$strings["Name and Password are required."] = "Name und Passwort sind erforderlich."; -App::$strings["Token saved."] = "Token gespeichert."; App::$strings["Not valid email."] = "Keine gültige E-Mail Adresse."; App::$strings["Protected email address. Cannot change to that email."] = "Geschützte E-Mail Adresse. Diese kann nicht verändert werden."; App::$strings["System failure storing new email. Please try again."] = "Systemfehler während des Speicherns der neuen Mail. Bitte versuche es noch einmal."; @@ -1187,12 +1129,6 @@ App::$strings["Confirm New Password"] = "Bestätige das neue Passwort"; App::$strings["Leave password fields blank unless changing"] = "Lasse die Passwort-Felder leer, außer Du möchtest das Passwort ändern"; App::$strings["Email Address:"] = "Email Adresse:"; App::$strings["Remove this account including all its channels"] = "Dieses Konto inklusive all seiner Kanäle löschen"; -App::$strings["Use this form to create temporary access identifiers to share things with non-members. These identities may be used in Access Control Lists and visitors may login using these credentials to access the private content."] = "Mit diesem Formular kannst Du temporäre Zugangs-IDs anlegen, um Inhalte mit Nicht-Mitgliedern zu teilen. Die IDs können in Berechtigungslisten (ACLs) verwendet werden, und Besucher können sich damit einloggen, um auf private Inhalte zuzugreifen."; -App::$strings["You may also provide dropbox style access links to friends and associates by adding the Login Password to any specific site URL as shown. Examples:"] = "Du kannst auch Dropbox-ähnliche Zugriffslinks an Andere weitergeben, indem du das Login-Passwort an eine entsprechende URL anhängst wie nachfolgend gezeigt. Beispiele:"; -App::$strings["Guest Access Tokens"] = "Gastzugangstoken"; -App::$strings["Login Name"] = "Anmeldename"; -App::$strings["Login Password"] = "Anmeldepasswort"; -App::$strings["Expires (yyyy-mm-dd)"] = "Läuft ab (jjjj-mm-tt)"; App::$strings["Additional Features"] = "Zusätzliche Funktionen"; App::$strings["Connector Settings"] = "Connector-Einstellungen"; App::$strings["No special theme for mobile devices"] = "Keine spezielle Theme für mobile Geräte"; @@ -1355,6 +1291,7 @@ App::$strings["GD graphics PHP module"] = "GD-Grafik-PHP-Modul"; App::$strings["OpenSSL PHP module"] = "OpenSSL-PHP-Modul"; App::$strings["mysqli or postgres PHP module"] = "mysqli oder postgres PHP-Modul"; App::$strings["mb_string PHP module"] = "mb_string-PHP-Modul"; +App::$strings["mcrypt PHP module"] = "mcrypt-PHP-Modul"; App::$strings["xml PHP module"] = "xml-PHP-Modul"; App::$strings["Apache mod_rewrite module"] = "Apache-mod_rewrite-Modul"; App::$strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Fehler: Das Apache-Modul mod-rewrite wird benötigt, ist aber nicht installiert."; @@ -1365,6 +1302,7 @@ App::$strings["Error: GD graphics PHP module with JPEG support required but not App::$strings["Error: openssl PHP module required but not installed."] = "Fehler: Das PHP-Modul openssl wird benötigt, ist aber nicht installiert."; App::$strings["Error: mysqli or postgres PHP module required but neither are installed."] = "Fehler: Das mysqli oder postgres PHP-Modul ist erforderlich, aber keines von beiden ist installiert."; App::$strings["Error: mb_string PHP module required but not installed."] = "Fehler: Das PHP-Modul mb_string wird benötigt, ist aber nicht installiert."; +App::$strings["Error: mcrypt PHP module required but not installed."] = "Fehler: Das PHP-Modul mcrypt wird benötigt, ist aber nicht installiert."; App::$strings["Error: xml PHP module required for DAV but not installed."] = "Fehler: Das xml-PHP-Modul wird für DAV benötigt, ist aber nicht installiert."; App::$strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "Der Installations-Assistent muss in der Lage sein, die Datei \".htconfig.php\" im Stammverzeichnis des Web-Servers anzulegen, ist er aber nicht."; App::$strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "Meist liegt das daran, dass der Nutzer, unter dem der Web-Server läuft, keine Schreibrechte in dem Verzeichnis hat – selbst wenn Du selbst das darfst."; @@ -1376,7 +1314,7 @@ App::$strings["In order to store these compiled templates, the web server needs App::$strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Bitte stelle sicher, dass der Nutzer, unter dem der Web-Server läuft (z.B. www-data), Schreibzugriff auf dieses Verzeichnis hat."; App::$strings["Note: as a security measure, you should give the web server write access to %s only--not the template files (.tpl) that it contains."] = "Hinweis: Aus Sicherheitsgründen sollte der Web-Server nur auf %s Schreibrechte haben, nicht auf die Template-Dateien (.tpl), die das Verzeichnis enthält."; App::$strings["%s is writable"] = "%s ist beschreibbar"; -App::$strings["This software 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"] = "Diese Software benutzt das Verzeichnis store, um hochgeladene Dateien zu speichern. Der Web-Server benötigt Schreibrechte für dieses Verzeichnis direkt unterhalb des Hubzilla-Stammverzeichnisses"; +App::$strings["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"] = "\$Projectname benutzt das Verzeichnis store, um hochgeladene Dateien zu speichern. Der Webserver benötigt Schreibrechte für dieses Verzeichnis direkt unterhalb des Red-Stammverzeichnisses"; App::$strings["store is writable"] = "store ist schreibbar"; App::$strings["SSL certificate cannot be validated. Fix certificate or disable https access to this site."] = "Das SSL-Zertifikat konnte nicht validiert werden. Korrigiere das Zertifikat oder deaktiviere den HTTPS-Zugriff auf diesen Server."; App::$strings["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!"] = "Wenn Du via HTTPS auf Deinen Server zugreifen möchtest, also Verbindungen über den Port 443 möglich sein sollen, ist ein SSL-Zertifikat einer Zertifizierungsstelle (CA) notwendig, das von den Browsern ohne Sicherheitsabfrage akzeptiert wird. Die Verwendung eines selbst signierten Zertifikates ist nicht möglich."; @@ -1384,7 +1322,6 @@ App::$strings["This restriction is incorporated because public posts from you ma App::$strings["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."] = "Wenn Dein Zertifikat nicht von jedem Browser akzeptiert wird, erhalten die Mitglieder anderer \$Projectname-Hubs (die mit korrekten Zertifikaten ausgestattet sind) Sicherheits-Warnmeldungen, obwohl sie gar nicht direkt auf Deinem Server unterwegs sind (zum Beispiel, wenn ein Bild aus einem Deiner Beiträge angezeigt wird)."; App::$strings["This can cause usability issues elsewhere (not just on your own site) so we must insist on this requirement."] = "Dies kann Probleme für andere Nutzer (nicht nur auf Deinem eigenen Server) verursachen, so dass wir auf dieser Forderung bestehen müssen."; App::$strings["Providers are available that issue free certificates which are browser-valid."] = "Es gibt einige Zertifizierungsstellen (CAs), bei denen solche Zertifikate kostenlos zu haben sind."; -App::$strings["If you are confident that the certificate is valid and signed by a trusted authority, check to see if you have failed to install an intermediate cert. These are not normally required by browsers, but are required for server-to-server communications."] = "Wenn Du sicher bist, dass das Zertifikat gültig und von einer vertrauenswürdigen Zertifizierungsstelle signiert ist, prüfe auf ggf. noch zu installierende Zwischenzertifikate (intermediate). Diese werden nicht unbedingt von Browsern benötigt, aber sehr wohl für die Kommunikation zwischen Servern."; App::$strings["SSL certificate validation"] = "SSL Zertifikatverifizierung"; App::$strings["Url rewrite in .htaccess is not working. Check your server configuration.Test: "] = "Das Umschreiben von URLs (rewrite) per .htaccess funktioniert nicht. Bitte prüfe die Server-Konfiguration. Test:"; App::$strings["Url rewrite is working"] = "Url rewrite funktioniert"; @@ -1396,20 +1333,19 @@ App::$strings["Files: shared with me"] = "Dateien, die mit mir geteilt wurden"; App::$strings["NEW"] = "NEU"; App::$strings["Remove all files"] = "Alle Dateien löschen"; App::$strings["Remove this file"] = "Diese Datei löschen"; -App::$strings["Thing updated"] = "Sache aktualisiert"; -App::$strings["Object store: failed"] = "Speichern des Objekts fehlgeschlagen"; -App::$strings["Thing added"] = "Sache hinzugefügt"; -App::$strings["OBJ: %1\$s %2\$s %3\$s"] = "OBJ: %1\$s %2\$s %3\$s"; -App::$strings["Show Thing"] = "Sache anzeigen"; -App::$strings["item not found."] = "Eintrag nicht gefunden"; -App::$strings["Edit Thing"] = "Sache bearbeiten"; -App::$strings["Select a profile"] = "Wähle ein Profil"; -App::$strings["Post an activity"] = "Aktivitätsnachricht senden"; -App::$strings["Only sends to viewers of the applicable profile"] = "Nur an Betrachter des ausgewählten Profils senden"; -App::$strings["Name of thing e.g. something"] = "Name der Sache, z. B. irgendwas"; -App::$strings["URL of thing (optional)"] = "URL der Sache (optional)"; -App::$strings["URL for photo of thing (optional)"] = "URL eines Fotos der Sache (optional)"; -App::$strings["Add Thing to your Profile"] = "Die Sache Deinem Profil hinzufügen"; +App::$strings["Version %s"] = "Version %s"; +App::$strings["Installed plugins/addons/apps:"] = "Installierte Plugins/Addons/Apps"; +App::$strings["No installed plugins/addons/apps"] = "Keine installierten Plugins/Addons/Apps"; +App::$strings["This is a hub of \$Projectname - a global cooperative network of decentralized privacy enhanced websites."] = "Dieser Hub ist Teil von \$Projectname – ein globales, kooperatives Netzwerk aus dezentralen Websites, die Rücksicht auf Deine Privatsphäre nehmen."; +App::$strings["Tag: "] = "Schlagwort: "; +App::$strings["Last background fetch: "] = "Letzter Hintergrundabruf:"; +App::$strings["Current load average: "] = "Aktuelles Load Average:"; +App::$strings["Running at web location"] = "Erreichbar unter der Web-Adresse"; +App::$strings["Please visit hubzilla.org to learn more about \$Projectname."] = "Bitte besuchen Sie hubzilla.org, um mehr über \$Projectname zu erfahren."; +App::$strings["Bug reports and issues: please visit"] = "Probleme oder Fehler gefunden? Bitte besuche"; +App::$strings["\$projectname issues"] = "\$projectname-Bugtracker"; +App::$strings["Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com"] = "Vorschläge, Lob, usw.: E-Mail an 'redmatrix' at librelist - dot - com"; +App::$strings["Site Administrators"] = "Administratoren"; App::$strings["Failed to create source. No channel selected."] = "Konnte die Quelle nicht anlegen. Kein Kanal ausgewählt."; App::$strings["Source created."] = "Quelle erstellt."; App::$strings["Source updated."] = "Quelle aktualisiert."; @@ -1437,38 +1373,60 @@ App::$strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s hat %2\$ss %3\$s App::$strings["Tag removed"] = "Schlagwort entfernt"; App::$strings["Remove Item Tag"] = "Schlagwort entfernen"; App::$strings["Select a tag to remove: "] = "Schlagwort zum Entfernen auswählen:"; -App::$strings["Webpages"] = "Webseiten"; -App::$strings["Actions"] = "Aktionen"; -App::$strings["Page Link"] = "Seiten-Link"; -App::$strings["Page Title"] = "Seitentitel"; -App::$strings["Not found"] = "Nicht gefunden"; -App::$strings["Wiki"] = "Wiki"; -App::$strings["Sandbox"] = "Sandbox"; -App::$strings["\"# Wiki Sandbox\\n\\nContent you **edit** and **preview** here *will not be saved*.\""] = "\"# Wiki Sandkasten\\n\\nInhalte, die Du hier **veränderst** und **als Vorschau anzeigst**, *werden nicht gespeichert*.\""; -App::$strings["Revision Comparison"] = "Revisionsvergleich"; -App::$strings["Revert"] = "Rückgängig machen"; -App::$strings["Enter the name of your new wiki:"] = "Gib einen Namen für Dein neues Wiki ein:"; -App::$strings["Enter the name of the new page:"] = "Geben Sie den Namen der neuen Seite ein:"; -App::$strings["Enter the new name:"] = "Geben Sie den neuen Namen ein:"; -App::$strings["Embed image from photo albums"] = "Bild aus Fotoalben einbetten"; -App::$strings["Embed an image from your albums"] = "Betten Sie ein Bild aus Ihren Alben ein"; -App::$strings["OK"] = "Ok"; -App::$strings["Choose images to embed"] = "Wählen Sie Bilder zum Einbetten aus"; -App::$strings["Choose an album"] = "Wählen Sie ein Album aus"; -App::$strings["Choose a different album..."] = "Wählen Sie ein anderes Album aus..."; -App::$strings["Error getting album list"] = "Fehler beim Holen der Albenliste"; -App::$strings["Error getting photo link"] = "Fehler beim Holen des Fotolinks"; -App::$strings["Error getting album"] = "Fehler beim Holen des Albums"; +App::$strings["Thing updated"] = "Sache aktualisiert"; +App::$strings["Object store: failed"] = "Speichern des Objekts fehlgeschlagen"; +App::$strings["Thing added"] = "Sache hinzugefügt"; +App::$strings["OBJ: %1\$s %2\$s %3\$s"] = "OBJ: %1\$s %2\$s %3\$s"; +App::$strings["Show Thing"] = "Sache anzeigen"; +App::$strings["item not found."] = "Eintrag nicht gefunden"; +App::$strings["Edit Thing"] = "Sache bearbeiten"; +App::$strings["Select a profile"] = "Wähle ein Profil"; +App::$strings["Post an activity"] = "Aktivitätsnachricht senden"; +App::$strings["Only sends to viewers of the applicable profile"] = "Nur an Betrachter des ausgewählten Profils senden"; +App::$strings["Name of thing e.g. something"] = "Name der Sache, z. B. irgendwas"; +App::$strings["URL of thing (optional)"] = "URL der Sache (optional)"; +App::$strings["URL for photo of thing (optional)"] = "URL eines Fotos der Sache (optional)"; +App::$strings["Add Thing to your Profile"] = "Die Sache Deinem Profil hinzufügen"; +App::$strings["Export Channel"] = "Kanal exportieren"; +App::$strings["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."] = "Exportiert die grundlegenden Kanal-Informationen in eine kleine Datei. Diese stellt eine Sicherung Deiner Verbindungen, Berechtigungen, Profile und Basisdaten bereit, die für den Import auf einem anderen Hub verwendet werden kann, aber nicht die Beiträge Deines Kanals enthält."; +App::$strings["Export Content"] = "Kanal und Inhalte exportieren"; +App::$strings["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."] = "Exportiert Deine Kanal-Informationen sowie alle zugehörigen Inhalte in eine JSON-Sicherungsdatei. Die sichert alle Verbindungen, Berechtigungen, Profildaten und Deine Beiträge aus mehreren Monaten. Diese Datei kann SEHR groß werden! Bitte habe ein wenig Geduld – es kann mehrere Minuten dauern, bis der Download startet."; +App::$strings["Export your posts from a given year."] = "Exportiert die Beiträge des angegebenen Jahres."; +App::$strings["You may also export your posts and conversations for a particular year or month. Adjust the date in your browser location bar to select other dates. If the export fails (possibly due to memory exhaustion on your server hub), please try again selecting a more limited date range."] = "Du kannst auch die Beiträge und Konversationen eines bestimmten Jahres oder Monats exportieren. Ändere das Datum in der Adresszeile Deines Browsers, um andere Zeiträume zu wählen. Falls der Export fehlschlägt (vermutlich, weil auf diesem Hub nicht genügend Speicher zur Verfügung steht), versuche es noch einmal mit einer kleineren Zeitspanne."; +App::$strings["To select all posts for a given year, such as this year, visit %2\$s"] = "Um alle Beiträge eines bestimmten Jahres, zum Beispiel dieses Jahres, auszuwählen, klicke %2\$s."; +App::$strings["To select all posts for a given month, such as January of this year, visit %2\$s"] = "Um alle Beiträge eines bestimmten Monats auszuwählen, zum Beispiel vom Januar diesen Jahres, klicke %2\$s."; +App::$strings["These content files may be imported or restored by visiting %2\$s on any site containing your channel. For best results please import or restore these in date order (oldest first)."] = "Diese Inhalts-Sicherungen können wiederhergestellt werden, indem Du %2\$s auf jeglichem Hub besuchst, der diesen Kanal enthält. Das funktioniert am besten, wenn Du dabei die zeitliche Reihenfolge einhältst, also die Sicherungen für den ältesten Zeitraum zuerst importierst."; App::$strings["No connections."] = "Keine Verbindungen."; App::$strings["Visit %s's profile [%s]"] = "%ss Profil [%s] besuchen"; App::$strings["View Connections"] = "Verbindungen anzeigen"; App::$strings["Source of Item"] = "Quelle des Elements"; -App::$strings["Authorize application connection"] = "Zugriff für die Anwendung autorisieren"; -App::$strings["Return to your app and insert this Securty Code:"] = "Trage folgenden Sicherheitscode in der Anwendung ein:"; -App::$strings["Please login to continue."] = "Zum Weitermachen, bitte einloggen."; -App::$strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Möchtest Du dieser Anwendung erlauben, Deine Nachrichten und Kontakte abzurufen und/oder neue Nachrichten für Dich zu erstellen?"; +App::$strings["Webpages"] = "Webseiten"; +App::$strings["Actions"] = "Aktionen"; +App::$strings["Page Link"] = "Seiten-Link"; +App::$strings["Page Title"] = "Seitentitel"; App::$strings["Xchan Lookup"] = "Xchan-Suche"; App::$strings["Lookup xchan beginning with (or webbie): "] = "Nach xchans oder Webbies (Kanal-Adressen) suchen, die wie folgt beginnen:"; +App::$strings["Site Admin"] = "Hub-Administration"; +App::$strings["Bug Report"] = "Fehler-Rückmeldung"; +App::$strings["View Bookmarks"] = "Lesezeichen ansehen"; +App::$strings["My Chatrooms"] = "Meine Chaträume"; +App::$strings["Firefox Share"] = "Teilen-Knopf für Firefox"; +App::$strings["Remote Diagnostics"] = "Ferndiagnose"; +App::$strings["Suggest Channels"] = "Kanäle vorschlagen"; +App::$strings["Login"] = "Anmelden"; +App::$strings["Grid"] = "Grid"; +App::$strings["Channel Home"] = "Mein Kanal"; +App::$strings["Events"] = "Termine"; +App::$strings["Directory"] = "Verzeichnis"; +App::$strings["Mail"] = "Mail"; +App::$strings["Chat"] = "Chat"; +App::$strings["Probe"] = "Testen"; +App::$strings["Suggest"] = "Empfehlen"; +App::$strings["Random Channel"] = "Zufälliger Kanal"; +App::$strings["Invite"] = "Einladen"; +App::$strings["Features"] = "Funktionen"; +App::$strings["Post"] = "Beitrag schreiben"; +App::$strings["Purchase"] = "Kaufen"; App::$strings["Missing room name"] = "Der Chatraum hat keinen Namen"; App::$strings["Duplicate room name"] = "Name des Chatraums bereits vergeben"; App::$strings["Invalid room specifier."] = "Ungültiger Raumbezeichner."; @@ -1516,27 +1474,6 @@ App::$strings["Please visit %s to approve or reject the suggestion."] = "Bitte b App::$strings["[Hubzilla:Notify]"] = "[Hubzilla:Benachrichtigung]"; App::$strings["created a new post"] = "Neuer Beitrag wurde erzeugt"; App::$strings["commented on %s's post"] = "hat %s's Beitrag kommentiert"; -App::$strings["Site Admin"] = "Hub-Administration"; -App::$strings["Bug Report"] = "Fehler-Rückmeldung"; -App::$strings["View Bookmarks"] = "Lesezeichen ansehen"; -App::$strings["My Chatrooms"] = "Meine Chaträume"; -App::$strings["Firefox Share"] = "Teilen-Knopf für Firefox"; -App::$strings["Remote Diagnostics"] = "Ferndiagnose"; -App::$strings["Suggest Channels"] = "Kanäle vorschlagen"; -App::$strings["Login"] = "Anmelden"; -App::$strings["Grid"] = "Grid"; -App::$strings["Channel Home"] = "Mein Kanal"; -App::$strings["Events"] = "Termine"; -App::$strings["Directory"] = "Verzeichnis"; -App::$strings["Mail"] = "Mail"; -App::$strings["Chat"] = "Chat"; -App::$strings["Probe"] = "Testen"; -App::$strings["Suggest"] = "Empfehlen"; -App::$strings["Random Channel"] = "Zufälliger Kanal"; -App::$strings["Invite"] = "Einladen"; -App::$strings["Features"] = "Funktionen"; -App::$strings["Post"] = "Beitrag schreiben"; -App::$strings["Purchase"] = "Kaufen"; App::$strings["Private Message"] = "Private Nachricht"; App::$strings["Select"] = "Auswählen"; App::$strings["Save to Folder"] = "In Ordner speichern"; @@ -1573,7 +1510,7 @@ App::$strings["Expires: %s"] = "Verfällt: %s"; App::$strings["Save Bookmarks"] = "Favoriten speichern"; App::$strings["Add to Calendar"] = "Zum Kalender hinzufügen"; App::$strings["Mark all seen"] = "Alle als gelesen markieren"; -App::$strings["%s show all"] = "%s mehr anzeigen"; +App::$strings["[+] show all"] = "[+] Alle anzeigen"; App::$strings["Bold"] = "Fett"; App::$strings["Italic"] = "Kursiv"; App::$strings["Underline"] = "Unterstrichen"; @@ -1582,93 +1519,9 @@ App::$strings["Code"] = "Code"; App::$strings["Image"] = "Bild"; App::$strings["Insert Link"] = "Link einfügen"; App::$strings["Video"] = "Video"; -App::$strings["Visible to your default audience"] = "Standard-Sichtbarkeit gemäß Kanaleinstellungen"; -App::$strings["Only me"] = "Nur ich"; -App::$strings["Public"] = "Öffentlich"; -App::$strings["Anybody in the \$Projectname network"] = "Jeder innerhalb des \$Projectname Netzwerks"; -App::$strings["Any account on %s"] = "Jedes Nutzerkonto auf %s"; -App::$strings["Any of my connections"] = "Alle meine Verbindungen"; -App::$strings["Only connections I specifically allow"] = "Nur Verbindungen, denen ich es explizit erlaube"; -App::$strings["Anybody authenticated (could include visitors from other networks)"] = "Jeder, der angemeldet ist (kann Besucher anderer Netzwerke beinhalten)"; -App::$strings["Any connections including those who haven't yet been approved"] = "Alle Verbindungen einschließlich der noch nicht bestätigten"; -App::$strings["This is your default setting for the audience of your normal stream, and posts."] = "Dies ist Deine Voreinstellung für die Sichtbarkeit Deiner normalen Beiträge (Stream)."; -App::$strings["This is your default setting for who can view your default channel profile"] = "Dies ist Deine Voreinstellung für die Sichtbarkeit Deines Standard-Kanalprofils."; -App::$strings["This is your default setting for who can view your connections"] = "Dies ist Deine Voreinstellung für die Sichtbarkeit Deiner Verbindungen."; -App::$strings["This is your default setting for who can view your file storage and photos"] = "Dies ist Deine Voreinstellung für die Sichtbarkeit Deiner Dateien und Fotos."; -App::$strings["This is your default setting for the audience of your webpages"] = "Dies ist Deine Voreinstellung für die Sichtbarkeit Deiner Webseiten."; App::$strings["No username found in import file."] = "Kein Benutzername in der Importdatei gefunden."; App::$strings["Unable to create a unique channel address. Import failed."] = "Es war nicht möglich, eine eindeutige Kanal-Adresse zu erzeugen. Der Import ist fehlgeschlagen."; App::$strings["Cannot locate DNS info for database server '%s'"] = "Kann die DNS-Informationen für den Datenbank-Server '%s' nicht finden"; -App::$strings["Image exceeds website size limit of %lu bytes"] = "Bild überschreitet das Webseitenlimit von %lu Bytes"; -App::$strings["Image file is empty."] = "Bilddatei ist leer."; -App::$strings["Photo storage failed."] = "Fotospeicherung fehlgeschlagen."; -App::$strings["a new photo"] = "ein neues Foto"; -App::$strings["__ctx:photo_upload__ %1\$s posted %2\$s to %3\$s"] = "%1\$s hat %2\$s auf %3\$s veröffentlicht"; -App::$strings["Photo Albums"] = "Fotoalben"; -App::$strings["Upload New Photos"] = "Neue Fotos hochladen"; -App::$strings["Logout"] = "Abmelden"; -App::$strings["End this session"] = "Beende diese Sitzung"; -App::$strings["Home"] = "Home"; -App::$strings["Your posts and conversations"] = "Deine Beiträge und Unterhaltungen"; -App::$strings["Your profile page"] = "Deine Profilseite"; -App::$strings["Manage/Edit profiles"] = "Profile verwalten"; -App::$strings["Edit Profile"] = "Profile bearbeiten"; -App::$strings["Edit your profile"] = "Profil bearbeiten"; -App::$strings["Your photos"] = "Deine Bilder"; -App::$strings["Your files"] = "Deine Dateien"; -App::$strings["Your chatrooms"] = "Deine Chaträume"; -App::$strings["Bookmarks"] = "Lesezeichen"; -App::$strings["Your bookmarks"] = "Deine Lesezeichen"; -App::$strings["Your webpages"] = "Deine Webseiten"; -App::$strings["Your wiki"] = "Dein Wiki"; -App::$strings["Sign in"] = "Anmelden"; -App::$strings["%s - click to logout"] = "%s - Klick zum Abmelden"; -App::$strings["Remote authentication"] = "Über Konto auf anderem Server einloggen"; -App::$strings["Click to authenticate to your home hub"] = "Klicke, um Dich über Deinen Heimat-Server zu authentifizieren"; -App::$strings["Home Page"] = "Homepage"; -App::$strings["Create an account"] = "Erzeuge ein Konto"; -App::$strings["Help and documentation"] = "Hilfe und Dokumentation"; -App::$strings["Applications, utilities, links, games"] = "Anwendungen (Apps), Zubehör, Links, Spiele"; -App::$strings["Search site @name, #tag, ?docs, content"] = "Hub durchsuchen: @Name. #Schlagwort, ?Dokumentation, Inhalt"; -App::$strings["Channel Directory"] = "Kanal-Verzeichnis"; -App::$strings["Your grid"] = "Dein Grid"; -App::$strings["Mark all grid notifications seen"] = "Alle Grid-Benachrichtigungen als angesehen markieren"; -App::$strings["Channel home"] = "Mein Kanal"; -App::$strings["Mark all channel notifications seen"] = "Markiere alle Kanal-Benachrichtigungen als angesehen"; -App::$strings["Notices"] = "Benachrichtigungen"; -App::$strings["Notifications"] = "Benachrichtigungen"; -App::$strings["See all notifications"] = "Alle Benachrichtigungen ansehen"; -App::$strings["Private mail"] = "Persönliche Mail"; -App::$strings["See all private messages"] = "Alle persönlichen Nachrichten ansehen"; -App::$strings["Mark all private messages seen"] = "Markiere alle persönlichen Nachrichten als gesehen"; -App::$strings["Inbox"] = "Eingang"; -App::$strings["Outbox"] = "Ausgang"; -App::$strings["New Message"] = "Neue Nachricht"; -App::$strings["Event Calendar"] = "Terminkalender"; -App::$strings["See all events"] = "Alle Termine ansehen"; -App::$strings["Mark all events seen"] = "Markiere alle Termine als gesehen"; -App::$strings["Manage Your Channels"] = "Verwalte Deine Kanäle"; -App::$strings["Account/Channel Settings"] = "Konto-/Kanal-Einstellungen"; -App::$strings["Admin"] = "Administration"; -App::$strings["Site Setup and Configuration"] = "Seiten-Einrichtung und -Konfiguration"; -App::$strings["Loading..."] = "Lädt ..."; -App::$strings["@name, #tag, ?doc, content"] = "@Name, #Schlagwort, ?Dokumentation, Inhalt"; -App::$strings["Please wait..."] = "Bitte warten..."; -App::$strings["view full size"] = "In Vollbildansicht anschauen"; -App::$strings["Administrator"] = "Administrator"; -App::$strings["No Subject"] = "Kein Betreff"; -App::$strings["Friendica"] = "Friendica"; -App::$strings["OStatus"] = "OStatus"; -App::$strings["GNU-Social"] = "GNU-Social"; -App::$strings["RSS/Atom"] = "RSS/Atom"; -App::$strings["Diaspora"] = "Diaspora"; -App::$strings["Facebook"] = "Facebook"; -App::$strings["Zot"] = "Zot!"; -App::$strings["LinkedIn"] = "LinkedIn"; -App::$strings["XMPP/IM"] = "XMPP/IM"; -App::$strings["MySpace"] = "MySpace"; -App::$strings["New Page"] = "Neue Seite"; -App::$strings["Title"] = "Titel"; App::$strings["Categories"] = "Kategorien"; App::$strings["Tags"] = "Schlagwörter"; App::$strings["Keywords"] = "Schlüsselwörter"; @@ -1678,196 +1531,34 @@ App::$strings["want"] = "will"; App::$strings["wants"] = "will"; App::$strings["likes"] = "gefällt"; App::$strings["dislikes"] = "missfällt"; -App::$strings["Unable to obtain identity information from database"] = "Kann keine Identitäts-Informationen aus Datenbank beziehen"; -App::$strings["Empty name"] = "Namensfeld leer"; -App::$strings["Name too long"] = "Name ist zu lang"; -App::$strings["No account identifier"] = "Keine Account-Kennung"; -App::$strings["Nickname is required."] = "Spitzname ist erforderlich."; -App::$strings["Reserved nickname. Please choose another."] = "Reservierter Kurzname. Bitte wähle einen anderen."; -App::$strings["Nickname has unsupported characters or is already being used on this site."] = "Der Spitzname enthält nicht-unterstütze Zeichen oder wird bereits auf dieser Seite genutzt."; -App::$strings["Unable to retrieve created identity"] = "Kann die erstellte Identität nicht empfangen"; -App::$strings["Default Profile"] = "Standard-Profil"; -App::$strings["Requested channel is not available."] = "Angeforderte Kanal nicht verfügbar."; -App::$strings["Create New Profile"] = "Neues Profil erstellen"; -App::$strings["Visible to everybody"] = "Für jeden sichtbar"; -App::$strings["Gender:"] = "Geschlecht:"; -App::$strings["Status:"] = "Status:"; -App::$strings["Homepage:"] = "Homepage:"; -App::$strings["Online Now"] = "gerade online"; -App::$strings["Like this channel"] = "Dieser Kanal gefällt mir"; -App::$strings["j F, Y"] = "j. F Y"; -App::$strings["j F"] = "j. F"; -App::$strings["Birthday:"] = "Geburtstag:"; -App::$strings["for %1\$d %2\$s"] = "seit %1\$d %2\$s"; -App::$strings["Sexual Preference:"] = "Sexuelle Orientierung:"; -App::$strings["Tags:"] = "Schlagworte:"; -App::$strings["Political Views:"] = "Politische Ansichten:"; -App::$strings["Religion:"] = "Religion:"; -App::$strings["Hobbies/Interests:"] = "Hobbys/Interessen:"; -App::$strings["Likes:"] = "Gefällt:"; -App::$strings["Dislikes:"] = "Gefällt nicht:"; -App::$strings["Contact information and Social Networks:"] = "Kontaktinformation und soziale Netzwerke:"; -App::$strings["My other channels:"] = "Meine anderen Kanäle:"; -App::$strings["Musical interests:"] = "Musikalische Interessen:"; -App::$strings["Books, literature:"] = "Bücher, Literatur:"; -App::$strings["Television:"] = "Fernsehen:"; -App::$strings["Film/dance/culture/entertainment:"] = "Film/Tanz/Kultur/Unterhaltung:"; -App::$strings["Love/Romance:"] = "Liebe/Romantik:"; -App::$strings["Work/employment:"] = "Arbeit/Anstellung:"; -App::$strings["School/education:"] = "Schule/Ausbildung:"; -App::$strings["Like this thing"] = "Gefällt mir"; -App::$strings["New window"] = "Neues Fenster"; -App::$strings["Open the selected location in a different window or browser tab"] = "Öffne die markierte Adresse in einem neuen Browserfenster oder Tab"; -App::$strings["User '%s' deleted"] = "Benutzer '%s' gelöscht"; -App::$strings["%1\$s is now connected with %2\$s"] = "%1\$s ist jetzt mit %2\$s verbunden"; -App::$strings["%1\$s poked %2\$s"] = "%1\$s stupste %2\$s an"; -App::$strings["poked"] = "stupste"; -App::$strings["View %s's profile @ %s"] = "%ss Profil auf %s ansehen"; -App::$strings["Categories:"] = "Kategorien:"; -App::$strings["Filed under:"] = "Gespeichert unter:"; -App::$strings["View in context"] = "Im Zusammenhang anschauen"; -App::$strings["remove"] = "lösche"; -App::$strings["Delete Selected Items"] = "Lösche die ausgewählten Elemente"; -App::$strings["View Source"] = "Quelle anzeigen"; -App::$strings["Follow Thread"] = "Unterhaltung folgen"; -App::$strings["Unfollow Thread"] = "Unterhaltung nicht mehr folgen"; -App::$strings["Activity/Posts"] = "Aktivitäten/Beiträge"; -App::$strings["Edit Connection"] = "Verbindung bearbeiten"; -App::$strings["Message"] = "Nachricht"; -App::$strings["%s likes this."] = "%s gefällt das."; -App::$strings["%s doesn't like this."] = "%s gefällt das nicht."; -App::$strings["%2\$d people like this."] = array( - 0 => "%2\$d Person gefällt das.", - 1 => "%2\$d Leuten gefällt das.", -); -App::$strings["%2\$d people don't like this."] = array( - 0 => "%2\$d Person gefällt das nicht.", - 1 => "%2\$d Leuten gefällt das nicht.", -); -App::$strings["and"] = "und"; -App::$strings[", and %d other people"] = array( - 0 => "", - 1 => ", und %d andere", -); -App::$strings["%s like this."] = "%s gefällt das."; -App::$strings["%s don't like this."] = "%s gefällt das nicht."; -App::$strings["Set your location"] = "Standort"; -App::$strings["Clear browser location"] = "Browser-Standort löschen"; -App::$strings["Tag term:"] = "Schlagwort:"; -App::$strings["Where are you right now?"] = "Wo bist Du jetzt grade?"; -App::$strings["Page link name"] = "Link zur Seite"; -App::$strings["Post as"] = "Veröffentlichen als"; -App::$strings["Toggle voting"] = "Umfragewerkzeug aktivieren"; -App::$strings["Categories (optional, comma-separated list)"] = "Kategorien (optional, kommagetrennte Liste)"; -App::$strings["Set publish date"] = "Veröffentlichungsdatum festlegen"; -App::$strings["Discover"] = "Entdecken"; -App::$strings["Imported public streams"] = "Importierte öffentliche Beiträge"; -App::$strings["Commented Order"] = "Neueste Kommentare"; -App::$strings["Sort by Comment Date"] = "Nach Kommentardatum sortiert"; -App::$strings["Posted Order"] = "Neueste Beiträge"; -App::$strings["Sort by Post Date"] = "Nach Beitragsdatum sortiert"; -App::$strings["Posts that mention or involve you"] = "Beiträge mit Beteiligung Deinerseits"; -App::$strings["Activity Stream - by date"] = "Activity Stream – nach Datum sortiert"; -App::$strings["Starred"] = "Markiert"; -App::$strings["Favourite Posts"] = "Markierte Beiträge"; -App::$strings["Spam"] = "Spam"; -App::$strings["Posts flagged as SPAM"] = "Nachrichten, die als SPAM markiert wurden"; -App::$strings["Status Messages and Posts"] = "Statusnachrichten und Beiträge"; -App::$strings["About"] = "Über"; -App::$strings["Profile Details"] = "Profil-Details"; -App::$strings["Files and Storage"] = "Dateien und Speicher"; -App::$strings["Chatrooms"] = "Chaträume"; -App::$strings["Saved Bookmarks"] = "Gespeicherte Lesezeichen"; -App::$strings["Manage Webpages"] = "Webseiten verwalten"; -App::$strings["__ctx:noun__ Attending"] = array( - 0 => "Zusage", - 1 => "Zusagen", -); -App::$strings["__ctx:noun__ Not Attending"] = array( - 0 => "Absage", - 1 => "Absagen", -); -App::$strings["__ctx:noun__ Undecided"] = array( - 0 => " Unentschlossen", - 1 => "Unentschlossene", -); -App::$strings["__ctx:noun__ Agree"] = array( - 0 => "Zustimmung", - 1 => "Zustimmungen", -); -App::$strings["__ctx:noun__ Disagree"] = array( - 0 => "Ablehnung", - 1 => "Ablehnungen", -); -App::$strings["__ctx:noun__ Abstain"] = array( - 0 => "Enthaltung", - 1 => "Enthaltungen", -); +App::$strings["l F d, Y \\@ g:i A"] = "l, d. F Y, H:i"; +App::$strings["Starts:"] = "Beginnt:"; +App::$strings["Finishes:"] = "Endet:"; +App::$strings["This event has been added to your calendar."] = "Dieser Termin wurde zu Deinem Kalender hinzugefügt"; +App::$strings["Not specified"] = "Keine Angabe"; +App::$strings["Needs Action"] = "Aktion erforderlich"; +App::$strings["Completed"] = "Abgeschlossen"; +App::$strings["In Process"] = "In Bearbeitung"; +App::$strings["Cancelled"] = "gestrichen"; App::$strings["Cannot create a duplicate channel identifier on this system. Import failed."] = "Kann keinen doppelten Kanal-Identifikator auf diesem System erzeugen (Spitzname oder Hash schon belegt). Import fehlgeschlagen."; App::$strings["Channel clone failed. Import failed."] = "Klonen des Kanals fehlgeschlagen. Import fehlgeschlagen."; -App::$strings["Frequently"] = "Häufig"; -App::$strings["Hourly"] = "Stündlich"; -App::$strings["Twice daily"] = "Zwei Mal am Tag"; -App::$strings["Daily"] = "Täglich"; -App::$strings["Weekly"] = "Wöchentlich"; -App::$strings["Monthly"] = "Monatlich"; -App::$strings["Currently Male"] = "Momentan männlich"; -App::$strings["Currently Female"] = "Momentan weiblich"; -App::$strings["Mostly Male"] = "Größtenteils männlich"; -App::$strings["Mostly Female"] = "Größtenteils weiblich"; -App::$strings["Transgender"] = "Transsexuell"; -App::$strings["Intersex"] = "Zwischengeschlechtlich"; -App::$strings["Transsexual"] = "Transsexuell"; -App::$strings["Hermaphrodite"] = "Zwitter"; -App::$strings["Neuter"] = "Geschlechtslos"; -App::$strings["Non-specific"] = "unklar"; -App::$strings["Undecided"] = "Unentschieden"; -App::$strings["Males"] = "Männer"; -App::$strings["Females"] = "Frauen"; -App::$strings["Gay"] = "Schwul"; -App::$strings["Lesbian"] = "Lesbisch"; -App::$strings["No Preference"] = "Keine Bevorzugung"; -App::$strings["Bisexual"] = "Bisexuell"; -App::$strings["Autosexual"] = "Autosexuell"; -App::$strings["Abstinent"] = "Enthaltsam"; -App::$strings["Virgin"] = "Jungfräulich"; -App::$strings["Deviant"] = "Abweichend"; -App::$strings["Fetish"] = "Fetisch"; -App::$strings["Oodles"] = "Unmengen"; -App::$strings["Nonsexual"] = "Sexlos"; -App::$strings["Single"] = "Single"; -App::$strings["Lonely"] = "Einsam"; -App::$strings["Available"] = "Verfügbar"; -App::$strings["Unavailable"] = "Nicht verfügbar"; -App::$strings["Has crush"] = "Verguckt"; -App::$strings["Infatuated"] = "Verknallt"; -App::$strings["Dating"] = "Lerne gerade jemanden kennen"; -App::$strings["Unfaithful"] = "Treulos"; -App::$strings["Sex Addict"] = "Sexabhängig"; -App::$strings["Friends/Benefits"] = "Freunde/Begünstigte"; -App::$strings["Casual"] = "Lose"; -App::$strings["Engaged"] = "Verlobt"; -App::$strings["Married"] = "Verheiratet"; -App::$strings["Imaginarily married"] = "Gewissermaßen verheiratet"; -App::$strings["Partners"] = "Partner"; -App::$strings["Cohabiting"] = "Lebensgemeinschaft"; -App::$strings["Common law"] = "Informelle Ehe"; -App::$strings["Happy"] = "Glücklich"; -App::$strings["Not looking"] = "Nicht Ausschau haltend"; -App::$strings["Swinger"] = "Swinger"; -App::$strings["Betrayed"] = "Betrogen"; -App::$strings["Separated"] = "Getrennt"; -App::$strings["Unstable"] = "Labil"; -App::$strings["Divorced"] = "Geschieden"; -App::$strings["Imaginarily divorced"] = "Gewissermaßen geschieden"; -App::$strings["Widowed"] = "Verwitwet"; -App::$strings["Uncertain"] = "Ungewiss"; -App::$strings["It's complicated"] = "Es ist kompliziert"; -App::$strings["Don't care"] = "Interessiert mich nicht"; -App::$strings["Ask me"] = "Frag mich mal"; -App::$strings["%1\$s's bookmarks"] = "%1\$ss Lesezeichen"; -App::$strings["guest:"] = "Gast:"; -App::$strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "Das Security-Token des Formulars war nicht korrekt. Das ist wahrscheinlich passiert, weil das Formular zu lange (>3 Stunden) offen war, bevor es abgeschickt wurde."; +App::$strings["(Unknown)"] = "(Unbekannt)"; +App::$strings["Visible to anybody on the internet."] = "Für jeden im Internet sichtbar."; +App::$strings["Visible to you only."] = "Nur für Dich sichtbar."; +App::$strings["Visible to anybody in this network."] = "Für jedes \$Projectname-Mitglied sichtbar."; +App::$strings["Visible to anybody authenticated."] = "Für jeden sichtbar, der angemeldet ist."; +App::$strings["Visible to anybody on %s."] = "Für jeden auf %s sichtbar."; +App::$strings["Visible to all connections."] = "Für alle Verbindungen sichtbar."; +App::$strings["Visible to approved connections."] = "Nur für akzeptierte Verbindungen sichtbar."; +App::$strings["Visible to specific connections."] = "Sichtbar für bestimmte Verbindungen."; +App::$strings["Privacy group is empty."] = "Gruppe ist leer."; +App::$strings["Privacy group: %s"] = "Gruppe: %s"; +App::$strings["Connection not found."] = "Die Verbindung wurde nicht gefunden."; +App::$strings["profile photo"] = "Profilfoto"; +App::$strings["No recipient provided."] = "Kein Empfänger angegeben"; +App::$strings["[no subject]"] = "[no subject]"; +App::$strings["Unable to determine sender."] = "Kann Absender nicht bestimmen."; +App::$strings["Stored post could not be verified."] = "Gespeicherter Beitrag konnten nicht überprüft werden."; App::$strings["prev"] = "vorherige"; App::$strings["first"] = "erste"; App::$strings["last"] = "letzte"; @@ -1877,6 +1568,7 @@ App::$strings["newer"] = "neuer"; App::$strings["No connections"] = "Keine Verbindungen"; App::$strings["View all %s connections"] = "Alle Verbindungen von %s anzeigen"; App::$strings["poke"] = "anstupsen"; +App::$strings["poked"] = "stupste"; App::$strings["ping"] = "anpingen"; App::$strings["pinged"] = "pingte"; App::$strings["prod"] = "knuffen"; @@ -1939,21 +1631,385 @@ App::$strings["Select an alternate language"] = "Wähle eine alternative Sprache App::$strings["activity"] = "Aktivität"; App::$strings["Design Tools"] = "Gestaltungswerkzeuge"; App::$strings["Pages"] = "Seiten"; -App::$strings["Logged out."] = "Ausgeloggt."; -App::$strings["Failed authentication"] = "Authentifizierung fehlgeschlagen"; -App::$strings["Can view my normal stream and posts"] = "Kann meine normalen Beiträge sehen"; -App::$strings["Can view my webpages"] = "Kann meine Webseiten sehen"; -App::$strings["Can post on my channel page (\"wall\")"] = "Kann auf meiner Kanal-Seite (\"wall\") Beiträge veröffentlichen"; -App::$strings["Can like/dislike stuff"] = "Kann andere Elemente mögen/nicht mögen"; -App::$strings["Profiles and things other than posts/comments"] = "Profile und alles außer Beiträge und Kommentare"; -App::$strings["Can forward to all my channel contacts via post @mentions"] = "Kann an alle meine Kontakte via @-Erwähnung Nachrichten weiterleiten"; -App::$strings["Advanced - useful for creating group forum channels"] = "Fortgeschritten - sinnvoll, um Gruppen-Kanäle/-Foren zu erstellen"; -App::$strings["Can chat with me (when available)"] = "Kann mit mir chatten (wenn verfügbar)"; -App::$strings["Can write to my file storage and photos"] = "Kann in meine Datei- und Bilderordner schreiben"; -App::$strings["Can edit my webpages"] = "Kann meine Webseiten bearbeiten"; -App::$strings["Somewhat advanced - very useful in open communities"] = "Etwas fortgeschritten – sehr nützlich in offenen Gemeinschaften"; -App::$strings["Can administer my channel resources"] = "Kann meine Kanäle administrieren"; -App::$strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "Sehr fortgeschritten. Bearbeite das nur, wenn Du genau weißt, was Du tust"; +App::$strings["System"] = "System"; +App::$strings["New App"] = "Neue App"; +App::$strings["Suggestions"] = "Vorschläge"; +App::$strings["See more..."] = "Mehr anzeigen …"; +App::$strings["You have %1$.0f of %2$.0f allowed connections."] = "Du bist %1$.0f von maximal %2$.0f erlaubten Verbindungen eingegangen."; +App::$strings["Add New Connection"] = "Neue Verbindung hinzufügen"; +App::$strings["Enter channel address"] = "Adresse des Kanals eingeben"; +App::$strings["Examples: bob@example.com, https://example.com/barbara"] = "Beispiele: bob@beispiel.com, http://beispiel.com/barbara"; +App::$strings["Notes"] = "Notizen"; +App::$strings["Remove term"] = "Eintrag löschen"; +App::$strings["Saved Searches"] = "Gespeicherte Suchanfragen"; +App::$strings["add"] = "hinzufügen"; +App::$strings["Saved Folders"] = "Gespeicherte Ordner"; +App::$strings["Everything"] = "Alles"; +App::$strings["Archives"] = "Archive"; +App::$strings["Refresh"] = "Aktualisieren"; +App::$strings["Account settings"] = "Konto-Einstellungen"; +App::$strings["Channel settings"] = "Kanal-Einstellungen"; +App::$strings["Additional features"] = "Zusätzliche Funktionen"; +App::$strings["Feature/Addon settings"] = "Plugin-Einstellungen"; +App::$strings["Display settings"] = "Anzeige-Einstellungen"; +App::$strings["Manage locations"] = "Klon-Adressen verwalten"; +App::$strings["Export channel"] = "Kanal exportieren"; +App::$strings["Connected apps"] = "Verbundene Apps"; +App::$strings["Premium Channel Settings"] = "Premium-Kanal-Einstellungen"; +App::$strings["Private Mail Menu"] = "Private Nachrichten"; +App::$strings["Combined View"] = "Kombinierte Anzeige"; +App::$strings["Inbox"] = "Eingang"; +App::$strings["Outbox"] = "Ausgang"; +App::$strings["New Message"] = "Neue Nachricht"; +App::$strings["Conversations"] = "Konversationen"; +App::$strings["Received Messages"] = "Erhaltene Nachrichten"; +App::$strings["Sent Messages"] = "Gesendete Nachrichten"; +App::$strings["No messages."] = "Keine Nachrichten."; +App::$strings["Delete conversation"] = "Unterhaltung löschen"; +App::$strings["Events Menu"] = "Kalendermenü"; +App::$strings["Day View"] = "Tagesansicht"; +App::$strings["Week View"] = "Wochenansicht"; +App::$strings["Month View"] = "Monatsansicht"; +App::$strings["Events Tools"] = "Kalenderwerkzeuge"; +App::$strings["Export Calendar"] = "Kalender exportieren"; +App::$strings["Import Calendar"] = "Kalender importieren"; +App::$strings["Chatrooms"] = "Chaträume"; +App::$strings["Overview"] = "Übersicht"; +App::$strings["Chat Members"] = "Chatmitglieder"; +App::$strings["Bookmarked Chatrooms"] = "Gespeicherte Chatrooms"; +App::$strings["Suggested Chatrooms"] = "Chatraum-Vorschläge"; +App::$strings["photo/image"] = "Foto/Bild"; +App::$strings["Click to show more"] = "Klick, um mehr anzuzeigen"; +App::$strings["Rating Tools"] = "Bewertungswerkzeuge"; +App::$strings["Rate Me"] = "Bewerte mich"; +App::$strings["View Ratings"] = "Bewertungen ansehen"; +App::$strings["Forums"] = "Foren"; +App::$strings["Tasks"] = "Aufgaben"; +App::$strings["Documentation"] = "Dokumentation"; +App::$strings["Project/Site Information"] = "Informationen über das Projekt und diesen Hub"; +App::$strings["For Members"] = "Für Mitglieder"; +App::$strings["For Administrators"] = "Für Administratoren"; +App::$strings["For Developers"] = "Für Entwickler"; +App::$strings["Member registrations waiting for confirmation"] = "Nutzer-Anmeldungen, die auf Bestätigung warten"; +App::$strings["Inspect queue"] = "Warteschlange kontrollieren"; +App::$strings["DB updates"] = "DB-Aktualisierungen"; +App::$strings["Admin"] = "Administration"; +App::$strings["Plugin Features"] = "Plug-In Funktionen"; +App::$strings["Channel is blocked on this site."] = "Der Kanal ist auf dieser Seite blockiert "; +App::$strings["Channel location missing."] = "Adresse des Kanals fehlt."; +App::$strings["Response from remote channel was incomplete."] = "Antwort des entfernten Kanals war unvollständig."; +App::$strings["Channel was deleted and no longer exists."] = "Kanal wurde gelöscht und existiert nicht mehr."; +App::$strings["Protocol disabled."] = "Protokoll deaktiviert."; +App::$strings["Channel discovery failed."] = "Kanalsuche fehlgeschlagen"; +App::$strings["Cannot connect to yourself."] = "Du kannst Dich nicht mit Dir selbst verbinden."; +App::$strings["%1\$s's bookmarks"] = "%1\$ss Lesezeichen"; +App::$strings["Public Timeline"] = "Öffentliche Zeitleiste"; +App::$strings["Image/photo"] = "Bild/Foto"; +App::$strings["Encrypted content"] = "Verschlüsselter Inhalt"; +App::$strings["Install %s element: "] = "Element %s installieren: "; +App::$strings["This post contains an installable %s element, however you lack permissions to install it on this site."] = "Dieser Beitrag beinhaltet ein installierbares %s Element, aber Du hast nicht die nötigen Rechte, um es auf diesem Hub zu installieren."; +App::$strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s schrieb den folgenden %2\$s %3\$s"; +App::$strings["Click to open/close"] = "Klicke zum Öffnen/Schließen"; +App::$strings["spoiler"] = "Spoiler"; +App::$strings["Different viewers will see this text differently"] = "Verschiedene Betrachter werden diesen Text unterschiedlich sehen"; +App::$strings["$1 wrote:"] = "$1 schrieb:"; +App::$strings["Directory Options"] = "Verzeichnisoptionen"; +App::$strings["Safe Mode"] = "Sicherer Modus"; +App::$strings["Public Forums Only"] = "Nur öffentliche Foren"; +App::$strings["This Website Only"] = "Nur dieser Hub"; +App::$strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "Das Security-Token des Formulars war nicht korrekt. Das ist wahrscheinlich passiert, weil das Formular zu lange (>3 Stunden) offen war, bevor es abgeschickt wurde."; +App::$strings["Logout"] = "Abmelden"; +App::$strings["End this session"] = "Beende diese Sitzung"; +App::$strings["Home"] = "Home"; +App::$strings["Your posts and conversations"] = "Deine Beiträge und Unterhaltungen"; +App::$strings["Your profile page"] = "Deine Profilseite"; +App::$strings["Manage/Edit profiles"] = "Profile verwalten"; +App::$strings["Edit Profile"] = "Profile bearbeiten"; +App::$strings["Edit your profile"] = "Profil bearbeiten"; +App::$strings["Your photos"] = "Deine Bilder"; +App::$strings["Your files"] = "Deine Dateien"; +App::$strings["Your chatrooms"] = "Deine Chaträume"; +App::$strings["Bookmarks"] = "Lesezeichen"; +App::$strings["Your bookmarks"] = "Deine Lesezeichen"; +App::$strings["Your webpages"] = "Deine Webseiten"; +App::$strings["Sign in"] = "Anmelden"; +App::$strings["%s - click to logout"] = "%s - Klick zum Abmelden"; +App::$strings["Remote authentication"] = "Über Konto auf anderem Server einloggen"; +App::$strings["Click to authenticate to your home hub"] = "Klicke, um Dich über Deinen Heimat-Server zu authentifizieren"; +App::$strings["Home Page"] = "Homepage"; +App::$strings["Create an account"] = "Erzeuge ein Konto"; +App::$strings["Help and documentation"] = "Hilfe und Dokumentation"; +App::$strings["Applications, utilities, links, games"] = "Anwendungen (Apps), Zubehör, Links, Spiele"; +App::$strings["Search site @name, #tag, ?docs, content"] = "Hub durchsuchen: @Name. #Schlagwort, ?Dokumentation, Inhalt"; +App::$strings["Channel Directory"] = "Kanal-Verzeichnis"; +App::$strings["Your grid"] = "Dein Grid"; +App::$strings["Mark all grid notifications seen"] = "Alle Grid-Benachrichtigungen als angesehen markieren"; +App::$strings["Channel home"] = "Mein Kanal"; +App::$strings["Mark all channel notifications seen"] = "Markiere alle Kanal-Benachrichtigungen als angesehen"; +App::$strings["Notices"] = "Benachrichtigungen"; +App::$strings["Notifications"] = "Benachrichtigungen"; +App::$strings["See all notifications"] = "Alle Benachrichtigungen ansehen"; +App::$strings["Private mail"] = "Persönliche Mail"; +App::$strings["See all private messages"] = "Alle persönlichen Nachrichten ansehen"; +App::$strings["Mark all private messages seen"] = "Markiere alle persönlichen Nachrichten als gesehen"; +App::$strings["Event Calendar"] = "Terminkalender"; +App::$strings["See all events"] = "Alle Termine ansehen"; +App::$strings["Mark all events seen"] = "Markiere alle Termine als gesehen"; +App::$strings["Manage Your Channels"] = "Verwalte Deine Kanäle"; +App::$strings["Account/Channel Settings"] = "Konto-/Kanal-Einstellungen"; +App::$strings["Site Setup and Configuration"] = "Seiten-Einrichtung und -Konfiguration"; +App::$strings["Loading..."] = "Lädt ..."; +App::$strings["@name, #tag, ?doc, content"] = "@Name, #Schlagwort, ?Dokumentation, Inhalt"; +App::$strings["Please wait..."] = "Bitte warten..."; +App::$strings["New window"] = "Neues Fenster"; +App::$strings["Open the selected location in a different window or browser tab"] = "Öffne die markierte Adresse in einem neuen Browserfenster oder Tab"; +App::$strings["User '%s' deleted"] = "Benutzer '%s' gelöscht"; +App::$strings["%d invitation available"] = array( + 0 => "%d Einladung verfügbar", + 1 => "%d Einladungen verfügbar", +); +App::$strings["Find Channels"] = "Finde Kanäle"; +App::$strings["Enter name or interest"] = "Name oder Interessen eingeben"; +App::$strings["Connect/Follow"] = "Verbinden/Folgen"; +App::$strings["Examples: Robert Morgenstein, Fishing"] = "Beispiele: Robert Morgenstein, Angeln"; +App::$strings["Random Profile"] = "Zufallsprofil"; +App::$strings["Invite Friends"] = "Lade Freunde ein"; +App::$strings["Advanced example: name=fred and country=iceland"] = "Fortgeschrittenes Beispiel: name=fred and country=iceland"; +App::$strings["%d connection in common"] = array( + 0 => "%d gemeinsame Verbindung", + 1 => "%d gemeinsame Verbindungen", +); +App::$strings["show more"] = "mehr zeigen"; +App::$strings["%1\$s is now connected with %2\$s"] = "%1\$s ist jetzt mit %2\$s verbunden"; +App::$strings["%1\$s poked %2\$s"] = "%1\$s stupste %2\$s an"; +App::$strings["View %s's profile @ %s"] = "%ss Profil auf %s ansehen"; +App::$strings["Categories:"] = "Kategorien:"; +App::$strings["Filed under:"] = "Gespeichert unter:"; +App::$strings["View in context"] = "Im Zusammenhang anschauen"; +App::$strings["remove"] = "lösche"; +App::$strings["Delete Selected Items"] = "Lösche die ausgewählten Elemente"; +App::$strings["View Source"] = "Quelle anzeigen"; +App::$strings["Follow Thread"] = "Unterhaltung folgen"; +App::$strings["Unfollow Thread"] = "Unterhaltung nicht mehr folgen"; +App::$strings["Activity/Posts"] = "Aktivitäten/Beiträge"; +App::$strings["Edit Connection"] = "Verbindung bearbeiten"; +App::$strings["Message"] = "Nachricht"; +App::$strings["%s likes this."] = "%s gefällt das."; +App::$strings["%s doesn't like this."] = "%s gefällt das nicht."; +App::$strings["%2\$d people like this."] = array( + 0 => "%2\$d Person gefällt das.", + 1 => "%2\$d Leuten gefällt das.", +); +App::$strings["%2\$d people don't like this."] = array( + 0 => "%2\$d Person gefällt das nicht.", + 1 => "%2\$d Leuten gefällt das nicht.", +); +App::$strings["and"] = "und"; +App::$strings[", and %d other people"] = array( + 0 => "", + 1 => ", und %d andere", +); +App::$strings["%s like this."] = "%s gefällt das."; +App::$strings["%s don't like this."] = "%s gefällt das nicht."; +App::$strings["Set your location"] = "Standort"; +App::$strings["Clear browser location"] = "Browser-Standort löschen"; +App::$strings["Tag term:"] = "Schlagwort:"; +App::$strings["Where are you right now?"] = "Wo bist Du jetzt grade?"; +App::$strings["Page link name"] = "Link zur Seite"; +App::$strings["Post as"] = "Veröffentlichen als"; +App::$strings["Toggle voting"] = "Umfragewerkzeug aktivieren"; +App::$strings["Categories (optional, comma-separated list)"] = "Kategorien (optional, kommagetrennte Liste)"; +App::$strings["Set publish date"] = "Veröffentlichungsdatum festlegen"; +App::$strings["OK"] = "Ok"; +App::$strings["Discover"] = "Entdecken"; +App::$strings["Imported public streams"] = "Importierte öffentliche Beiträge"; +App::$strings["Commented Order"] = "Neueste Kommentare"; +App::$strings["Sort by Comment Date"] = "Nach Kommentardatum sortiert"; +App::$strings["Posted Order"] = "Neueste Beiträge"; +App::$strings["Sort by Post Date"] = "Nach Beitragsdatum sortiert"; +App::$strings["Posts that mention or involve you"] = "Beiträge mit Beteiligung Deinerseits"; +App::$strings["Activity Stream - by date"] = "Activity Stream – nach Datum sortiert"; +App::$strings["Starred"] = "Markiert"; +App::$strings["Favourite Posts"] = "Markierte Beiträge"; +App::$strings["Spam"] = "Spam"; +App::$strings["Posts flagged as SPAM"] = "Nachrichten, die als SPAM markiert wurden"; +App::$strings["Status Messages and Posts"] = "Statusnachrichten und Beiträge"; +App::$strings["About"] = "Über"; +App::$strings["Profile Details"] = "Profil-Details"; +App::$strings["Photo Albums"] = "Fotoalben"; +App::$strings["Files and Storage"] = "Dateien und Speicher"; +App::$strings["Saved Bookmarks"] = "Gespeicherte Lesezeichen"; +App::$strings["Manage Webpages"] = "Webseiten verwalten"; +App::$strings["__ctx:noun__ Attending"] = array( + 0 => "Zusage", + 1 => "Zusagen", +); +App::$strings["__ctx:noun__ Not Attending"] = array( + 0 => "Absage", + 1 => "Absagen", +); +App::$strings["__ctx:noun__ Undecided"] = array( + 0 => " Unentschlossen", + 1 => "Unentschlossene", +); +App::$strings["__ctx:noun__ Agree"] = array( + 0 => "Zustimmung", + 1 => "Zustimmungen", +); +App::$strings["__ctx:noun__ Disagree"] = array( + 0 => "Ablehnung", + 1 => "Ablehnungen", +); +App::$strings["__ctx:noun__ Abstain"] = array( + 0 => "Enthaltung", + 1 => "Enthaltungen", +); +App::$strings["Frequently"] = "Häufig"; +App::$strings["Hourly"] = "Stündlich"; +App::$strings["Twice daily"] = "Zwei Mal am Tag"; +App::$strings["Daily"] = "Täglich"; +App::$strings["Weekly"] = "Wöchentlich"; +App::$strings["Monthly"] = "Monatlich"; +App::$strings["Currently Male"] = "Momentan männlich"; +App::$strings["Currently Female"] = "Momentan weiblich"; +App::$strings["Mostly Male"] = "Größtenteils männlich"; +App::$strings["Mostly Female"] = "Größtenteils weiblich"; +App::$strings["Transgender"] = "Transsexuell"; +App::$strings["Intersex"] = "Zwischengeschlechtlich"; +App::$strings["Transsexual"] = "Transsexuell"; +App::$strings["Hermaphrodite"] = "Zwitter"; +App::$strings["Neuter"] = "Geschlechtslos"; +App::$strings["Non-specific"] = "unklar"; +App::$strings["Other"] = "Andere"; +App::$strings["Undecided"] = "Unentschieden"; +App::$strings["Males"] = "Männer"; +App::$strings["Females"] = "Frauen"; +App::$strings["Gay"] = "Schwul"; +App::$strings["Lesbian"] = "Lesbisch"; +App::$strings["No Preference"] = "Keine Bevorzugung"; +App::$strings["Bisexual"] = "Bisexuell"; +App::$strings["Autosexual"] = "Autosexuell"; +App::$strings["Abstinent"] = "Enthaltsam"; +App::$strings["Virgin"] = "Jungfräulich"; +App::$strings["Deviant"] = "Abweichend"; +App::$strings["Fetish"] = "Fetisch"; +App::$strings["Oodles"] = "Unmengen"; +App::$strings["Nonsexual"] = "Sexlos"; +App::$strings["Single"] = "Single"; +App::$strings["Lonely"] = "Einsam"; +App::$strings["Available"] = "Verfügbar"; +App::$strings["Unavailable"] = "Nicht verfügbar"; +App::$strings["Has crush"] = "Verguckt"; +App::$strings["Infatuated"] = "Verknallt"; +App::$strings["Dating"] = "Lerne gerade jemanden kennen"; +App::$strings["Unfaithful"] = "Treulos"; +App::$strings["Sex Addict"] = "Sexabhängig"; +App::$strings["Friends/Benefits"] = "Freunde/Begünstigte"; +App::$strings["Casual"] = "Lose"; +App::$strings["Engaged"] = "Verlobt"; +App::$strings["Married"] = "Verheiratet"; +App::$strings["Imaginarily married"] = "Gewissermaßen verheiratet"; +App::$strings["Partners"] = "Partner"; +App::$strings["Cohabiting"] = "Lebensgemeinschaft"; +App::$strings["Common law"] = "Informelle Ehe"; +App::$strings["Happy"] = "Glücklich"; +App::$strings["Not looking"] = "Nicht Ausschau haltend"; +App::$strings["Swinger"] = "Swinger"; +App::$strings["Betrayed"] = "Betrogen"; +App::$strings["Separated"] = "Getrennt"; +App::$strings["Unstable"] = "Labil"; +App::$strings["Divorced"] = "Geschieden"; +App::$strings["Imaginarily divorced"] = "Gewissermaßen geschieden"; +App::$strings["Widowed"] = "Verwitwet"; +App::$strings["Uncertain"] = "Ungewiss"; +App::$strings["It's complicated"] = "Es ist kompliziert"; +App::$strings["Don't care"] = "Interessiert mich nicht"; +App::$strings["Ask me"] = "Frag mich mal"; +App::$strings["Visible to your default audience"] = "Standard-Sichtbarkeit gemäß Kanaleinstellungen"; +App::$strings["Only me"] = "Nur ich"; +App::$strings["Public"] = "Öffentlich"; +App::$strings["Anybody in the \$Projectname network"] = "Jeder innerhalb des \$Projectname Netzwerks"; +App::$strings["Any account on %s"] = "Jedes Nutzerkonto auf %s"; +App::$strings["Any of my connections"] = "Alle meine Verbindungen"; +App::$strings["Only connections I specifically allow"] = "Nur Verbindungen, denen ich es explizit erlaube"; +App::$strings["Anybody authenticated (could include visitors from other networks)"] = "Jeder, der angemeldet ist (kann Besucher anderer Netzwerke beinhalten)"; +App::$strings["Any connections including those who haven't yet been approved"] = "Alle Verbindungen einschließlich der noch nicht bestätigten"; +App::$strings["This is your default setting for the audience of your normal stream, and posts."] = "Dies ist Deine Voreinstellung für die Sichtbarkeit Deiner normalen Beiträge (Stream)."; +App::$strings["This is your default setting for who can view your default channel profile"] = "Dies ist Deine Voreinstellung für die Sichtbarkeit Deines Standard-Kanalprofils."; +App::$strings["This is your default setting for who can view your connections"] = "Dies ist Deine Voreinstellung für die Sichtbarkeit Deiner Verbindungen."; +App::$strings["This is your default setting for who can view your file storage and photos"] = "Dies ist Deine Voreinstellung für die Sichtbarkeit Deiner Dateien und Fotos."; +App::$strings["This is your default setting for the audience of your webpages"] = "Dies ist Deine Voreinstellung für die Sichtbarkeit Deiner Webseiten."; +App::$strings["Not a valid email address"] = "Ungültige E-Mail-Adresse"; +App::$strings["Your email domain is not among those allowed on this site"] = "Deine E-Mail-Adresse ist auf dieser Seite nicht erlaubt"; +App::$strings["Your email address is already registered at this site."] = "Deine E-Mail-Adresse ist auf dieser Seite bereits registriert."; +App::$strings["An invitation is required."] = "Eine Einladung wird benötigt."; +App::$strings["Invitation could not be verified."] = "Die Einladung konnte nicht bestätigt werden."; +App::$strings["Please enter the required information."] = "Bitte gib die benötigten Informationen ein."; +App::$strings["Failed to store account information."] = "Speichern der Nutzerkontodaten fehlgeschlagen."; +App::$strings["Registration confirmation for %s"] = "Registrierungsbestätigung für %s"; +App::$strings["Registration request at %s"] = "Registrierungsanfrage auf %s"; +App::$strings["Administrator"] = "Administrator"; +App::$strings["your registration password"] = "Dein Registrierungspasswort"; +App::$strings["Registration details for %s"] = "Registrierungsdetails für %s"; +App::$strings["Account approved."] = "Nutzerkonto bestätigt."; +App::$strings["Registration revoked for %s"] = "Registrierung für %s wurde widerrufen"; +App::$strings["Account verified. Please login."] = "Nutzerkonto wurde bestätigt. Bitte melde Dich an!"; +App::$strings["Click here to upgrade."] = "Klicke hier, um das Upgrade durchzuführen."; +App::$strings["This action exceeds the limits set by your subscription plan."] = "Diese Aktion überschreitet die Grenzen Ihres Abonnements."; +App::$strings["This action is not available under your subscription plan."] = "Diese Aktion ist in Ihrem Abonnement nicht verfügbar."; +App::$strings["Item was not found."] = "Beitrag wurde nicht gefunden."; +App::$strings["No source file."] = "Keine Quelldatei."; +App::$strings["Cannot locate file to replace"] = "Kann Datei zum Ersetzen nicht finden"; +App::$strings["Cannot locate file to revise/update"] = "Kann Datei zum Prüfen/Aktualisieren nicht finden"; +App::$strings["File exceeds size limit of %d"] = "Datei überschreitet das Größen-Limit von %d"; +App::$strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Die Größe Deiner Datei-Anhänge hat das Maximum von %1$.0f MByte erreicht."; +App::$strings["File upload failed. Possible system limit or action terminated."] = "Datei-Upload fehlgeschlagen. Mögliche Systembegrenzung oder abgebrochener Prozess."; +App::$strings["Stored file could not be verified. Upload failed."] = "Gespeichert Datei konnte nicht verifiziert werden. Upload abgebrochen."; +App::$strings["Path not available."] = "Pfad nicht verfügbar."; +App::$strings["Empty pathname"] = "Leere Pfadangabe"; +App::$strings["duplicate filename or path"] = "doppelter Dateiname oder Pfad"; +App::$strings["Path not found."] = "Pfad nicht gefunden."; +App::$strings["mkdir failed."] = "mkdir fehlgeschlagen."; +App::$strings["database storage failed."] = "Speichern in der Datenbank fehlgeschlagen."; +App::$strings["Empty path"] = "Leere Pfadangabe"; +App::$strings["Unable to obtain identity information from database"] = "Kann keine Identitäts-Informationen aus Datenbank beziehen"; +App::$strings["Empty name"] = "Namensfeld leer"; +App::$strings["Name too long"] = "Name ist zu lang"; +App::$strings["No account identifier"] = "Keine Account-Kennung"; +App::$strings["Nickname is required."] = "Spitzname ist erforderlich."; +App::$strings["Reserved nickname. Please choose another."] = "Reservierter Kurzname. Bitte wähle einen anderen."; +App::$strings["Nickname has unsupported characters or is already being used on this site."] = "Der Spitzname enthält nicht-unterstütze Zeichen oder wird bereits auf dieser Seite genutzt."; +App::$strings["Unable to retrieve created identity"] = "Kann die erstellte Identität nicht empfangen"; +App::$strings["Default Profile"] = "Standard-Profil"; +App::$strings["Requested channel is not available."] = "Angeforderte Kanal nicht verfügbar."; +App::$strings["Create New Profile"] = "Neues Profil erstellen"; +App::$strings["Visible to everybody"] = "Für jeden sichtbar"; +App::$strings["Gender:"] = "Geschlecht:"; +App::$strings["Status:"] = "Status:"; +App::$strings["Homepage:"] = "Homepage:"; +App::$strings["Online Now"] = "gerade online"; +App::$strings["Like this channel"] = "Dieser Kanal gefällt mir"; +App::$strings["j F, Y"] = "j. F Y"; +App::$strings["j F"] = "j. F"; +App::$strings["Birthday:"] = "Geburtstag:"; +App::$strings["for %1\$d %2\$s"] = "seit %1\$d %2\$s"; +App::$strings["Sexual Preference:"] = "Sexuelle Orientierung:"; +App::$strings["Tags:"] = "Schlagworte:"; +App::$strings["Political Views:"] = "Politische Ansichten:"; +App::$strings["Religion:"] = "Religion:"; +App::$strings["Hobbies/Interests:"] = "Hobbys/Interessen:"; +App::$strings["Likes:"] = "Gefällt:"; +App::$strings["Dislikes:"] = "Gefällt nicht:"; +App::$strings["Contact information and Social Networks:"] = "Kontaktinformation und soziale Netzwerke:"; +App::$strings["My other channels:"] = "Meine anderen Kanäle:"; +App::$strings["Musical interests:"] = "Musikalische Interessen:"; +App::$strings["Books, literature:"] = "Bücher, Literatur:"; +App::$strings["Television:"] = "Fernsehen:"; +App::$strings["Film/dance/culture/entertainment:"] = "Film/Tanz/Kultur/Unterhaltung:"; +App::$strings["Love/Romance:"] = "Liebe/Romantik:"; +App::$strings["Work/employment:"] = "Arbeit/Anstellung:"; +App::$strings["School/education:"] = "Schule/Ausbildung:"; +App::$strings["Like this thing"] = "Gefällt mir"; App::$strings["General Features"] = "Allgemeine Funktionen"; App::$strings["Content Expiration"] = "Verfall von Inhalten"; App::$strings["Remove posts/comments and/or private messages at a future time"] = "Ermöglicht das automatische Löschen von Beiträgen, Kommentaren und/oder privaten Nachrichten zu einem zukünftigen Datum."; @@ -1965,7 +2021,6 @@ App::$strings["Profile Import/Export"] = "Profil-Import/Export"; App::$strings["Save and load profile details across sites/channels"] = "Ermöglicht das Speichern von Profilen, um sie in einen anderen Kanal zu importieren"; App::$strings["Web Pages"] = "Webseiten"; App::$strings["Provide managed web pages on your channel"] = "Ermöglicht das Erstellen von Webseiten in Deinem Kanal"; -App::$strings["Provide a wiki for your channel"] = "Stelle ein Wiki in Deinem Kanal zur Verfügung"; App::$strings["Hide Rating"] = "Bewertung verbergen"; App::$strings["Hide the rating buttons on your channel and profile pages. Note: People can still rate you somewhere else."] = "Verberge die Buttons zur Bewertung auf deiner Profil-Seite und deinem Kanal. Hinweis: Leute können dich weiterhin andernorts bewerten."; App::$strings["Private Notes"] = "Private Notizen"; @@ -1999,7 +2054,6 @@ App::$strings["Search by Date"] = "Suche nach Datum"; App::$strings["Ability to select posts by date ranges"] = "Möglichkeit, Beiträge nach Zeiträumen auszuwählen"; App::$strings["Privacy Groups"] = "Gruppen"; App::$strings["Enable management and selection of privacy groups"] = "Auswahl und Verwaltung von Gruppen für Kanäle aktivieren"; -App::$strings["Saved Searches"] = "Gespeicherte Suchanfragen"; App::$strings["Save search terms for re-use"] = "Ermöglicht das Abspeichern von Suchbegriffen zur Wiederverwendung"; App::$strings["Network Personal Tab"] = "Persönlicher Netzwerkreiter"; App::$strings["Enable tab to display only Network posts that you've interacted on"] = "Aktiviert einen Reiter in der Grid-Ansicht, der nur Netzwerk-Beiträge anzeigt, mit denen Du interagiert hast"; @@ -2017,7 +2071,6 @@ App::$strings["Post Categories"] = "Beitrags-Kategorien"; App::$strings["Add categories to your posts"] = "Aktiviert Kategorien für Beiträge"; App::$strings["Emoji Reactions"] = "Emoji Reaktionen"; App::$strings["Add emoji reaction ability to posts"] = "Aktiviert Emoji-Reaktionen für Beiträge"; -App::$strings["Saved Folders"] = "Gespeicherte Ordner"; App::$strings["Ability to file posts under folders"] = "Möglichkeit, Beiträge in Verzeichnissen zu sammeln"; App::$strings["Dislike Posts"] = "Gefällt-mir-nicht-Beiträge"; App::$strings["Ability to dislike posts/comments"] = "Aktiviert die „Gefällt mir nicht“-Schaltfläche"; @@ -2025,149 +2078,63 @@ App::$strings["Star Posts"] = "Beiträge mit Sternchen versehen"; App::$strings["Ability to mark special posts with a star indicator"] = "Ermöglicht die lokale Markierung spezieller Beiträge mit einem Sternchen-Symbol"; App::$strings["Tag Cloud"] = "Schlagwort-Wolke"; App::$strings["Provide a personal tag cloud on your channel page"] = "Aktiviert die Anzeige einer Schlagwort-Wolke (Tag Cloud) auf Deiner Kanal-Seite"; +App::$strings["Embedded content"] = "Eingebetteter Inhalt"; +App::$strings["Embedding disabled"] = "Einbetten ausgeschaltet"; +App::$strings["Who can see this?"] = "Wer kann das sehen?"; +App::$strings["Custom selection"] = "Benutzerdefinierte Auswahl"; +App::$strings["Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit the scope of \"Show\"."] = "Wähle \"Anzeigen\", um Betrachtung zuzulassen. \"Nicht anzeigen\" überstimmt und limitiert den Aktionsradius von \"Anzeigen\" für Ausnahmen."; +App::$strings["Show"] = "Anzeigen"; +App::$strings["Don't show"] = "Nicht anzeigen"; +App::$strings["Other networks and post services"] = "Andere Netzwerke und Platformen"; +App::$strings["Post permissions %s cannot be changed %s after a post is shared.
These permissions set who is allowed to view the post."] = "Beitragsberechtigungen %s können nicht geändert werden %s, nachdem der Beitrag gesendet wurde.
Diese Berechtigungen bestimmen, wer den Beitrag sehen kann."; +App::$strings["Logged out."] = "Ausgeloggt."; +App::$strings["Failed authentication"] = "Authentifizierung fehlgeschlagen"; +App::$strings["Birthday"] = "Geburtstag"; +App::$strings["Age: "] = "Alter:"; +App::$strings["YYYY-MM-DD or MM-DD"] = "JJJJ-MM-TT oder MM-TT"; +App::$strings["never"] = "Nie"; +App::$strings["less than a second ago"] = "Vor weniger als einer Sekunde"; +App::$strings["__ctx:e.g. 22 hours ago, 1 minute ago__ %1\$d %2\$s ago"] = "vor %1\$d %2\$s"; +App::$strings["__ctx:relative_date__ year"] = array( + 0 => "Jahr", + 1 => "Jahre", +); +App::$strings["__ctx:relative_date__ month"] = array( + 0 => "Monat", + 1 => "Monate", +); +App::$strings["__ctx:relative_date__ week"] = array( + 0 => "Woche", + 1 => "Wochen", +); +App::$strings["__ctx:relative_date__ day"] = array( + 0 => "Tag", + 1 => "Tage", +); +App::$strings["__ctx:relative_date__ hour"] = array( + 0 => "Stunde", + 1 => "Stunden", +); +App::$strings["__ctx:relative_date__ minute"] = array( + 0 => "Minute", + 1 => "Minuten", +); +App::$strings["__ctx:relative_date__ second"] = array( + 0 => "Sekunde", + 1 => "Sekunden", +); +App::$strings["%1\$s's birthday"] = "%1\$ss Geburtstag"; +App::$strings["Happy Birthday %1\$s"] = "Alles Gute zum Geburtstag, %1\$s"; App::$strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Es hat früher schon einmal eine Gruppe mit diesem Namen existiert, die gelöscht wurde. Es könnten von damals noch Elemente (Beiträge, Dateien etc.) vorhanden sein, die allen jetzigen und zukünftigen Mitgliedern dieser Gruppe den Zugriff erlauben. Wenn das nicht Deine Absicht ist, erstelle bitte eine neue Gruppe mit einem anderen Namen."; App::$strings["Add new connections to this privacy group"] = "Neue Verbindung zu dieser Gruppe hinzufügen"; App::$strings["edit"] = "Bearbeiten"; App::$strings["Edit group"] = "Gruppe ändern"; App::$strings["Add privacy group"] = "Gruppe hinzufügen"; App::$strings["Channels not in any privacy group"] = "Kanäle, die in keiner Gruppe sind"; -App::$strings["add"] = "hinzufügen"; -App::$strings["l F d, Y \\@ g:i A"] = "l, d. F Y, H:i"; -App::$strings["Starts:"] = "Beginnt:"; -App::$strings["Finishes:"] = "Endet:"; -App::$strings["This event has been added to your calendar."] = "Dieser Termin wurde zu Deinem Kalender hinzugefügt"; -App::$strings["Not specified"] = "Keine Angabe"; -App::$strings["Needs Action"] = "Aktion erforderlich"; -App::$strings["Completed"] = "Abgeschlossen"; -App::$strings["In Process"] = "In Bearbeitung"; -App::$strings["Cancelled"] = "gestrichen"; -App::$strings["Not a valid email address"] = "Ungültige E-Mail-Adresse"; -App::$strings["Your email domain is not among those allowed on this site"] = "Deine E-Mail-Adresse ist auf dieser Seite nicht erlaubt"; -App::$strings["Your email address is already registered at this site."] = "Deine E-Mail-Adresse ist auf dieser Seite bereits registriert."; -App::$strings["An invitation is required."] = "Eine Einladung wird benötigt."; -App::$strings["Invitation could not be verified."] = "Die Einladung konnte nicht bestätigt werden."; -App::$strings["Please enter the required information."] = "Bitte gib die benötigten Informationen ein."; -App::$strings["Failed to store account information."] = "Speichern der Nutzerkontodaten fehlgeschlagen."; -App::$strings["Registration confirmation for %s"] = "Registrierungsbestätigung für %s"; -App::$strings["Registration request at %s"] = "Registrierungsanfrage auf %s"; -App::$strings["your registration password"] = "Dein Registrierungspasswort"; -App::$strings["Registration details for %s"] = "Registrierungsdetails für %s"; -App::$strings["Account approved."] = "Nutzerkonto bestätigt."; -App::$strings["Registration revoked for %s"] = "Registrierung für %s wurde widerrufen"; -App::$strings["Click here to upgrade."] = "Klicke hier, um das Upgrade durchzuführen."; -App::$strings["This action exceeds the limits set by your subscription plan."] = "Diese Aktion überschreitet die Grenzen Ihres Abonnements."; -App::$strings["This action is not available under your subscription plan."] = "Diese Aktion ist in Ihrem Abonnement nicht verfügbar."; -App::$strings["Channel is blocked on this site."] = "Der Kanal ist auf dieser Seite blockiert "; -App::$strings["Channel location missing."] = "Adresse des Kanals fehlt."; -App::$strings["Response from remote channel was incomplete."] = "Antwort des entfernten Kanals war unvollständig."; -App::$strings["Channel was deleted and no longer exists."] = "Kanal wurde gelöscht und existiert nicht mehr."; -App::$strings["Protocol disabled."] = "Protokoll deaktiviert."; -App::$strings["Channel discovery failed."] = "Kanalsuche fehlgeschlagen"; -App::$strings["Cannot connect to yourself."] = "Du kannst Dich nicht mit Dir selbst verbinden."; -App::$strings["Item was not found."] = "Beitrag wurde nicht gefunden."; -App::$strings["No source file."] = "Keine Quelldatei."; -App::$strings["Cannot locate file to replace"] = "Kann Datei zum Ersetzen nicht finden"; -App::$strings["Cannot locate file to revise/update"] = "Kann Datei zum Prüfen/Aktualisieren nicht finden"; -App::$strings["File exceeds size limit of %d"] = "Datei überschreitet das Größen-Limit von %d"; -App::$strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Die Größe Deiner Datei-Anhänge hat das Maximum von %1$.0f MByte erreicht."; -App::$strings["File upload failed. Possible system limit or action terminated."] = "Datei-Upload fehlgeschlagen. Mögliche Systembegrenzung oder abgebrochener Prozess."; -App::$strings["Stored file could not be verified. Upload failed."] = "Gespeichert Datei konnte nicht verifiziert werden. Upload abgebrochen."; -App::$strings["Path not available."] = "Pfad nicht verfügbar."; -App::$strings["Empty pathname"] = "Leere Pfadangabe"; -App::$strings["duplicate filename or path"] = "doppelter Dateiname oder Pfad"; -App::$strings["Path not found."] = "Pfad nicht gefunden."; -App::$strings["mkdir failed."] = "mkdir fehlgeschlagen."; -App::$strings["database storage failed."] = "Speichern in der Datenbank fehlgeschlagen."; -App::$strings["Empty path"] = "Leere Pfadangabe"; -App::$strings["Image/photo"] = "Bild/Foto"; -App::$strings["Encrypted content"] = "Verschlüsselter Inhalt"; -App::$strings["Install %s element: "] = "Element %s installieren: "; -App::$strings["This post contains an installable %s element, however you lack permissions to install it on this site."] = "Dieser Beitrag beinhaltet ein installierbares %s Element, aber Du hast nicht die nötigen Rechte, um es auf diesem Hub zu installieren."; -App::$strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s schrieb den folgenden %2\$s %3\$s"; -App::$strings["Click to open/close"] = "Klicke zum Öffnen/Schließen"; -App::$strings["spoiler"] = "Spoiler"; -App::$strings["Different viewers will see this text differently"] = "Verschiedene Betrachter werden diesen Text unterschiedlich sehen"; -App::$strings["$1 wrote:"] = "$1 schrieb:"; -App::$strings["(Unknown)"] = "(Unbekannt)"; -App::$strings["Visible to anybody on the internet."] = "Für jeden im Internet sichtbar."; -App::$strings["Visible to you only."] = "Nur für Dich sichtbar."; -App::$strings["Visible to anybody in this network."] = "Für jedes \$Projectname-Mitglied sichtbar."; -App::$strings["Visible to anybody authenticated."] = "Für jeden sichtbar, der angemeldet ist."; -App::$strings["Visible to anybody on %s."] = "Für jeden auf %s sichtbar."; -App::$strings["Visible to all connections."] = "Für alle Verbindungen sichtbar."; -App::$strings["Visible to approved connections."] = "Nur für akzeptierte Verbindungen sichtbar."; -App::$strings["Visible to specific connections."] = "Sichtbar für bestimmte Verbindungen."; -App::$strings["Privacy group is empty."] = "Gruppe ist leer."; -App::$strings["Privacy group: %s"] = "Gruppe: %s"; -App::$strings["Connection not found."] = "Die Verbindung wurde nicht gefunden."; -App::$strings["profile photo"] = "Profilfoto"; -App::$strings["Embedded content"] = "Eingebetteter Inhalt"; -App::$strings["Embedding disabled"] = "Einbetten ausgeschaltet"; -App::$strings["System"] = "System"; -App::$strings["New App"] = "Neue App"; -App::$strings["Suggestions"] = "Vorschläge"; -App::$strings["See more..."] = "Mehr anzeigen …"; -App::$strings["You have %1$.0f of %2$.0f allowed connections."] = "Du bist %1$.0f von maximal %2$.0f erlaubten Verbindungen eingegangen."; -App::$strings["Add New Connection"] = "Neue Verbindung hinzufügen"; -App::$strings["Enter channel address"] = "Adresse des Kanals eingeben"; -App::$strings["Examples: bob@example.com, https://example.com/barbara"] = "Beispiele: bob@beispiel.com, http://beispiel.com/barbara"; -App::$strings["Notes"] = "Notizen"; -App::$strings["Remove term"] = "Eintrag löschen"; -App::$strings["Everything"] = "Alles"; -App::$strings["Archives"] = "Archive"; -App::$strings["Refresh"] = "Aktualisieren"; -App::$strings["Account settings"] = "Konto-Einstellungen"; -App::$strings["Channel settings"] = "Kanal-Einstellungen"; -App::$strings["Additional features"] = "Zusätzliche Funktionen"; -App::$strings["Feature/Addon settings"] = "Plugin-Einstellungen"; -App::$strings["Display settings"] = "Anzeige-Einstellungen"; -App::$strings["Manage locations"] = "Klon-Adressen verwalten"; -App::$strings["Export channel"] = "Kanal exportieren"; -App::$strings["Connected apps"] = "Verbundene Apps"; -App::$strings["Premium Channel Settings"] = "Premium-Kanal-Einstellungen"; -App::$strings["Private Mail Menu"] = "Private Nachrichten"; -App::$strings["Combined View"] = "Kombinierte Anzeige"; -App::$strings["Conversations"] = "Konversationen"; -App::$strings["Received Messages"] = "Erhaltene Nachrichten"; -App::$strings["Sent Messages"] = "Gesendete Nachrichten"; -App::$strings["No messages."] = "Keine Nachrichten."; -App::$strings["Delete conversation"] = "Unterhaltung löschen"; -App::$strings["Events Tools"] = "Kalenderwerkzeuge"; -App::$strings["Export Calendar"] = "Kalender exportieren"; -App::$strings["Import Calendar"] = "Kalender importieren"; -App::$strings["Overview"] = "Übersicht"; -App::$strings["Chat Members"] = "Chatmitglieder"; -App::$strings["Wiki List"] = "Wikiliste"; -App::$strings["Wiki Pages"] = "Wikiseiten"; -App::$strings["Bookmarked Chatrooms"] = "Gespeicherte Chatrooms"; -App::$strings["Suggested Chatrooms"] = "Chatraum-Vorschläge"; -App::$strings["photo/image"] = "Foto/Bild"; -App::$strings["Click to show more"] = "Klick, um mehr anzuzeigen"; -App::$strings["Rating Tools"] = "Bewertungswerkzeuge"; -App::$strings["Rate Me"] = "Bewerte mich"; -App::$strings["View Ratings"] = "Bewertungen ansehen"; -App::$strings["Forums"] = "Foren"; -App::$strings["Tasks"] = "Aufgaben"; -App::$strings["Documentation"] = "Dokumentation"; -App::$strings["Project/Site Information"] = "Informationen über das Projekt und diesen Hub"; -App::$strings["For Members"] = "Für Mitglieder"; -App::$strings["For Administrators"] = "Für Administratoren"; -App::$strings["For Developers"] = "Für Entwickler"; -App::$strings["Member registrations waiting for confirmation"] = "Nutzer-Anmeldungen, die auf Bestätigung warten"; -App::$strings["Inspect queue"] = "Warteschlange kontrollieren"; -App::$strings["DB updates"] = "DB-Aktualisierungen"; -App::$strings["Plugin Features"] = "Plug-In Funktionen"; -App::$strings[" and "] = "und"; -App::$strings["public profile"] = "öffentliches Profil"; -App::$strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s hat %2\$s auf “%3\$s” geändert"; -App::$strings["Visit %1\$s's %2\$s"] = "Besuche %1\$s's %2\$s"; -App::$strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s hat ein aktualisiertes %2\$s, %3\$s wurde verändert."; -App::$strings["Attachments:"] = "Anhänge:"; -App::$strings["\$Projectname event notification:"] = "\$Projectname-Terminbenachrichtigung:"; App::$strings["Delete this item?"] = "Dieses Element löschen?"; -App::$strings["%s show less"] = "%s weniger anzeigen"; -App::$strings["%s expand"] = "%s aufklappen"; -App::$strings["%s collapse"] = "%s einklappen"; +App::$strings["[-] show less"] = "[-] Weniger anzeigen"; +App::$strings["[+] expand"] = "[+] aufklappen"; +App::$strings["[-] collapse"] = "[-] einklappen"; App::$strings["Password too short"] = "Kennwort zu kurz"; App::$strings["Passwords do not match"] = "Kennwörter stimmen nicht überein"; App::$strings["everybody"] = "alle"; @@ -2222,78 +2189,72 @@ App::$strings["__ctx:calendar__ month"] = "Monat"; App::$strings["__ctx:calendar__ week"] = "Woche"; App::$strings["__ctx:calendar__ day"] = "Tag"; App::$strings["__ctx:calendar__ All day"] = "Ganztägig"; -App::$strings["%d invitation available"] = array( - 0 => "%d Einladung verfügbar", - 1 => "%d Einladungen verfügbar", -); -App::$strings["Find Channels"] = "Finde Kanäle"; -App::$strings["Enter name or interest"] = "Name oder Interessen eingeben"; -App::$strings["Connect/Follow"] = "Verbinden/Folgen"; -App::$strings["Examples: Robert Morgenstein, Fishing"] = "Beispiele: Robert Morgenstein, Angeln"; -App::$strings["Random Profile"] = "Zufallsprofil"; -App::$strings["Invite Friends"] = "Lade Freunde ein"; -App::$strings["Advanced example: name=fred and country=iceland"] = "Fortgeschrittenes Beispiel: name=fred and country=iceland"; -App::$strings["%d connection in common"] = array( - 0 => "%d gemeinsame Verbindung", - 1 => "%d gemeinsame Verbindungen", -); -App::$strings["show more"] = "mehr zeigen"; -App::$strings["Directory Options"] = "Verzeichnisoptionen"; -App::$strings["Safe Mode"] = "Sicherer Modus"; -App::$strings["Public Forums Only"] = "Nur öffentliche Foren"; -App::$strings["This Website Only"] = "Nur dieser Hub"; -App::$strings["No recipient provided."] = "Kein Empfänger angegeben"; -App::$strings["[no subject]"] = "[no subject]"; -App::$strings["Unable to determine sender."] = "Kann Absender nicht bestimmen."; -App::$strings["Stored post could not be verified."] = "Gespeicherter Beitrag konnten nicht überprüft werden."; -App::$strings["Who can see this?"] = "Wer kann das sehen?"; -App::$strings["Custom selection"] = "Benutzerdefinierte Auswahl"; -App::$strings["Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit the scope of \"Show\"."] = "Wähle \"Anzeigen\", um Betrachtung zuzulassen. \"Nicht anzeigen\" überstimmt und limitiert den Aktionsradius von \"Anzeigen\" für Ausnahmen."; -App::$strings["Show"] = "Anzeigen"; -App::$strings["Don't show"] = "Nicht anzeigen"; -App::$strings["Other networks and post services"] = "Andere Netzwerke und Platformen"; -App::$strings["Post permissions %s cannot be changed %s after a post is shared.
These permissions set who is allowed to view the post."] = "Beitragsberechtigungen %s können nicht geändert werden %s, nachdem der Beitrag gesendet wurde.
Diese Berechtigungen bestimmen, wer den Beitrag sehen kann."; -App::$strings["Birthday"] = "Geburtstag"; -App::$strings["Age: "] = "Alter:"; -App::$strings["YYYY-MM-DD or MM-DD"] = "JJJJ-MM-TT oder MM-TT"; -App::$strings["never"] = "Nie"; -App::$strings["less than a second ago"] = "Vor weniger als einer Sekunde"; -App::$strings["__ctx:e.g. 22 hours ago, 1 minute ago__ %1\$d %2\$s ago"] = "vor %1\$d %2\$s"; -App::$strings["__ctx:relative_date__ year"] = array( - 0 => "Jahr", - 1 => "Jahre", -); -App::$strings["__ctx:relative_date__ month"] = array( - 0 => "Monat", - 1 => "Monate", -); -App::$strings["__ctx:relative_date__ week"] = array( - 0 => "Woche", - 1 => "Wochen", -); -App::$strings["__ctx:relative_date__ day"] = array( - 0 => "Tag", - 1 => "Tage", -); -App::$strings["__ctx:relative_date__ hour"] = array( - 0 => "Stunde", - 1 => "Stunden", -); -App::$strings["__ctx:relative_date__ minute"] = array( - 0 => "Minute", - 1 => "Minuten", -); -App::$strings["__ctx:relative_date__ second"] = array( - 0 => "Sekunde", - 1 => "Sekunden", -); -App::$strings["%1\$s's birthday"] = "%1\$ss Geburtstag"; -App::$strings["Happy Birthday %1\$s"] = "Alles Gute zum Geburtstag, %1\$s"; -App::$strings["Public Timeline"] = "Öffentliche Zeitleiste"; +App::$strings["view full size"] = "In Vollbildansicht anschauen"; +App::$strings["No Subject"] = "Kein Betreff"; +App::$strings["Friendica"] = "Friendica"; +App::$strings["OStatus"] = "OStatus"; +App::$strings["GNU-Social"] = "GNU-Social"; +App::$strings["RSS/Atom"] = "RSS/Atom"; +App::$strings["Diaspora"] = "Diaspora"; +App::$strings["Facebook"] = "Facebook"; +App::$strings["Zot"] = "Zot!"; +App::$strings["LinkedIn"] = "LinkedIn"; +App::$strings["XMPP/IM"] = "XMPP/IM"; +App::$strings["MySpace"] = "MySpace"; +App::$strings["Image exceeds website size limit of %lu bytes"] = "Bild überschreitet das Webseitenlimit von %lu Bytes"; +App::$strings["Image file is empty."] = "Bilddatei ist leer."; +App::$strings["Photo storage failed."] = "Fotospeicherung fehlgeschlagen."; +App::$strings["a new photo"] = "ein neues Foto"; +App::$strings["__ctx:photo_upload__ %1\$s posted %2\$s to %3\$s"] = "%1\$s hat %2\$s auf %3\$s veröffentlicht"; +App::$strings["Upload New Photos"] = "Neue Fotos hochladen"; App::$strings["Invalid data packet"] = "Ungültiges Datenpaket"; App::$strings["Unable to verify channel signature"] = "Konnte die Signatur des Kanals nicht verifizieren"; App::$strings["Unable to verify site signature for %s"] = "Kann die Signatur der Seite von %s nicht verifizieren"; App::$strings["invalid target signature"] = "Ungültige Signatur des Ziels"; +App::$strings["New Page"] = "Neue Seite"; +App::$strings["Title"] = "Titel"; +App::$strings["Can view my normal stream and posts"] = "Kann meine normalen Beiträge sehen"; +App::$strings["Can view my default channel profile"] = "Kann mein Standardprofil sehen"; +App::$strings["Can view my connections"] = "Kann meine Verbindungen sehen"; +App::$strings["Can view my file storage and photos"] = "Kann meine Datei- und Bilderordner sehen"; +App::$strings["Can view my webpages"] = "Kann meine Webseiten sehen"; +App::$strings["Can send me their channel stream and posts"] = "Kann mir die Beiträge aus seinem/ihrem Kanal schicken"; +App::$strings["Can post on my channel page (\"wall\")"] = "Kann auf meiner Kanal-Seite (\"wall\") Beiträge veröffentlichen"; +App::$strings["Can comment on or like my posts"] = "Darf meine Beiträge kommentieren und mögen/nicht mögen"; +App::$strings["Can send me private mail messages"] = "Kann mir private Nachrichten schicken"; +App::$strings["Can like/dislike stuff"] = "Kann andere Elemente mögen/nicht mögen"; +App::$strings["Profiles and things other than posts/comments"] = "Profile und alles außer Beiträge und Kommentare"; +App::$strings["Can forward to all my channel contacts via post @mentions"] = "Kann an alle meine Kontakte via @-Erwähnung Nachrichten weiterleiten"; +App::$strings["Advanced - useful for creating group forum channels"] = "Fortgeschritten - sinnvoll, um Gruppen-Kanäle/-Foren zu erstellen"; +App::$strings["Can chat with me (when available)"] = "Kann mit mir chatten (wenn verfügbar)"; +App::$strings["Can write to my file storage and photos"] = "Kann in meine Datei- und Bilderordner schreiben"; +App::$strings["Can edit my webpages"] = "Kann meine Webseiten bearbeiten"; +App::$strings["Can source my public posts in derived channels"] = "Kann meine öffentlichen Beiträge als Quellen für Kanäle verwenden"; +App::$strings["Somewhat advanced - very useful in open communities"] = "Etwas fortgeschritten – sehr nützlich in offenen Gemeinschaften"; +App::$strings["Can administer my channel resources"] = "Kann meine Kanäle administrieren"; +App::$strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "Sehr fortgeschritten. Bearbeite das nur, wenn Du genau weißt, was Du tust"; +App::$strings["Social Networking"] = "Soziales Netzwerk"; +App::$strings["Social - Mostly Public"] = "Soziales Netzwerk - Weitgehend öffentlich"; +App::$strings["Social - Restricted"] = "Soziales Netzwerk - Beschränkt"; +App::$strings["Social - Private"] = "Soziales Netzwerk - Privat"; +App::$strings["Community Forum"] = "Forum"; +App::$strings["Forum - Mostly Public"] = "Forum - Weitgehend öffentlich"; +App::$strings["Forum - Restricted"] = "Forum - Beschränkt"; +App::$strings["Forum - Private"] = "Forum - Privat"; +App::$strings["Feed Republish"] = "Teilen von Feeds"; +App::$strings["Feed - Mostly Public"] = "Feeds - Weitgehend öffentlich"; +App::$strings["Feed - Restricted"] = "Feeds - Beschränkt"; +App::$strings["Special Purpose"] = "Für besondere Zwecke"; +App::$strings["Special - Celebrity/Soapbox"] = "Speziell - Mitteilungs-Kanal (keine Kommentare)"; +App::$strings["Special - Group Repository"] = "Speziell - Gruppenarchiv"; +App::$strings["Custom/Expert Mode"] = "Benutzerdefiniert/Expertenmodus"; +App::$strings[" and "] = "und"; +App::$strings["public profile"] = "öffentliches Profil"; +App::$strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s hat %2\$s auf “%3\$s” geändert"; +App::$strings["Visit %1\$s's %2\$s"] = "Besuche %1\$s's %2\$s"; +App::$strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s hat ein aktualisiertes %2\$s, %3\$s wurde verändert."; +App::$strings["Attachments:"] = "Anhänge:"; +App::$strings["\$Projectname event notification:"] = "\$Projectname-Terminbenachrichtigung:"; App::$strings["Focus (Hubzilla default)"] = "Focus (Voreinstellung für Hubzilla)"; App::$strings["Theme settings"] = "Theme-Einstellungen"; App::$strings["Select scheme"] = "Schema wählen"; @@ -2333,7 +2294,6 @@ App::$strings["__ctx:opensearch__ \$Projectname"] = "\$Projectname"; App::$strings["Update %s failed. See error logs."] = "Aktualisierung %s fehlgeschlagen. Details in den Fehlerprotokollen."; App::$strings["Update Error at %s"] = "Aktualisierungsfehler auf %s"; App::$strings["Create an account to access services and applications within the Hubzilla"] = "Erstelle ein Konto, um Anwendungen und Dienste innerhalb von Hubzilla nutzen zu können."; -App::$strings["Login/Email"] = "Anmelden/E-Mail"; App::$strings["Password"] = "Kennwort"; App::$strings["Remember me"] = "Angaben speichern"; App::$strings["Forgot your password?"] = "Passwort vergessen?"; diff --git a/view/es-es/hmessages.po b/view/es-es/hmessages.po index 8cad587d6..d7a918c55 100644 --- a/view/es-es/hmessages.po +++ b/view/es-es/hmessages.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: Redmatrix\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-07-22 00:02-0700\n" -"PO-Revision-Date: 2016-07-25 08:54+0000\n" -"Last-Translator: fabrixxm \n" +"POT-Creation-Date: 2016-06-10 00:02-0700\n" +"PO-Revision-Date: 2016-06-10 18:33+0000\n" +"Last-Translator: Manuel Jiménez Friaza \n" "Language-Team: Spanish (Spain) (http://www.transifex.com/Friendica/red-matrix/language/es_ES/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -23,156 +23,11 @@ msgstr "" "Language: es_ES\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ../../Zotlabs/Access/PermissionRoles.php:182 -#: ../../include/permissions.php:904 -msgid "Social Networking" -msgstr "Redes sociales" - -#: ../../Zotlabs/Access/PermissionRoles.php:183 -#: ../../include/permissions.php:904 -msgid "Social - Mostly Public" -msgstr "Social - Público en su mayor parte" - -#: ../../Zotlabs/Access/PermissionRoles.php:184 -#: ../../include/permissions.php:904 -msgid "Social - Restricted" -msgstr "Social - Restringido" - -#: ../../Zotlabs/Access/PermissionRoles.php:185 -#: ../../include/permissions.php:904 -msgid "Social - Private" -msgstr "Social - Privado" - -#: ../../Zotlabs/Access/PermissionRoles.php:188 -#: ../../include/permissions.php:905 -msgid "Community Forum" -msgstr "Foro de discusión" - -#: ../../Zotlabs/Access/PermissionRoles.php:189 -#: ../../include/permissions.php:905 -msgid "Forum - Mostly Public" -msgstr "Foro - Público en su mayor parte" - -#: ../../Zotlabs/Access/PermissionRoles.php:190 -#: ../../include/permissions.php:905 -msgid "Forum - Restricted" -msgstr "Foro - Restringido" - -#: ../../Zotlabs/Access/PermissionRoles.php:191 -#: ../../include/permissions.php:905 -msgid "Forum - Private" -msgstr "Foro - Privado" - -#: ../../Zotlabs/Access/PermissionRoles.php:194 -#: ../../include/permissions.php:906 -msgid "Feed Republish" -msgstr "Republicar un \"feed\"" - -#: ../../Zotlabs/Access/PermissionRoles.php:195 -#: ../../include/permissions.php:906 -msgid "Feed - Mostly Public" -msgstr "Feed - Público en su mayor parte" - -#: ../../Zotlabs/Access/PermissionRoles.php:196 -#: ../../include/permissions.php:906 -msgid "Feed - Restricted" -msgstr "Feed - Restringido" - -#: ../../Zotlabs/Access/PermissionRoles.php:199 -#: ../../include/permissions.php:907 -msgid "Special Purpose" -msgstr "Propósito especial" - -#: ../../Zotlabs/Access/PermissionRoles.php:200 -#: ../../include/permissions.php:907 -msgid "Special - Celebrity/Soapbox" -msgstr "Especial - Celebridad / Tribuna improvisada" - -#: ../../Zotlabs/Access/PermissionRoles.php:201 -#: ../../include/permissions.php:907 -msgid "Special - Group Repository" -msgstr "Especial - Repositorio de grupo" - -#: ../../Zotlabs/Access/PermissionRoles.php:204 ../../include/selectors.php:49 -#: ../../include/selectors.php:66 ../../include/selectors.php:104 -#: ../../include/selectors.php:140 ../../include/permissions.php:908 -msgid "Other" -msgstr "Otro" - -#: ../../Zotlabs/Access/PermissionRoles.php:205 -#: ../../include/permissions.php:908 -msgid "Custom/Expert Mode" -msgstr "Modo personalizado/experto" - -#: ../../Zotlabs/Access/Permissions.php:30 -msgid "Can view my channel stream and posts" -msgstr "" - -#: ../../Zotlabs/Access/Permissions.php:31 ../../include/permissions.php:33 -msgid "Can send me their channel stream and posts" -msgstr "Se me pueden enviar entradas y contenido de un canal" - -#: ../../Zotlabs/Access/Permissions.php:32 ../../include/permissions.php:27 -msgid "Can view my default channel profile" -msgstr "Puede verse mi perfil de canal predeterminado." - -#: ../../Zotlabs/Access/Permissions.php:33 ../../include/permissions.php:28 -msgid "Can view my connections" -msgstr "Pueden verse mis conexiones" - -#: ../../Zotlabs/Access/Permissions.php:34 ../../include/permissions.php:29 -msgid "Can view my file storage and photos" -msgstr "Pueden verse mi repositorio de ficheros y mis fotos" - -#: ../../Zotlabs/Access/Permissions.php:35 -msgid "Can upload/modify my file storage and photos" -msgstr "" - -#: ../../Zotlabs/Access/Permissions.php:36 -msgid "Can view my channel webpages" -msgstr "" - -#: ../../Zotlabs/Access/Permissions.php:37 -msgid "Can create/edit my channel webpages" -msgstr "" - -#: ../../Zotlabs/Access/Permissions.php:38 -msgid "Can post on my channel (wall) page" -msgstr "" - -#: ../../Zotlabs/Access/Permissions.php:39 ../../include/permissions.php:35 -msgid "Can comment on or like my posts" -msgstr "Pueden publicarse comentarios en mis publicaciones o marcar mis entradas con 'me gusta'." - -#: ../../Zotlabs/Access/Permissions.php:40 ../../include/permissions.php:36 -msgid "Can send me private mail messages" -msgstr "Se me pueden enviar mensajes privados" - -#: ../../Zotlabs/Access/Permissions.php:41 -msgid "Can like/dislike profiles and profile things" -msgstr "" - -#: ../../Zotlabs/Access/Permissions.php:42 -msgid "Can forward to all my channel connections via @+ mentions in posts" -msgstr "" - -#: ../../Zotlabs/Access/Permissions.php:43 -msgid "Can chat with me" -msgstr "" - -#: ../../Zotlabs/Access/Permissions.php:44 ../../include/permissions.php:44 -msgid "Can source my public posts in derived channels" -msgstr "Pueden utilizarse mis publicaciones públicas como origen de contenidos en canales derivados" - -#: ../../Zotlabs/Access/Permissions.php:45 -msgid "Can administer my channel" -msgstr "" - #: ../../Zotlabs/Storage/Browser.php:107 ../../Zotlabs/Storage/Browser.php:239 msgid "parent" msgstr "padre" -#: ../../Zotlabs/Storage/Browser.php:131 ../../include/text.php:2605 +#: ../../Zotlabs/Storage/Browser.php:131 ../../include/text.php:2620 msgid "Collection" msgstr "Colección" @@ -196,17 +51,16 @@ msgstr "Programar bandeja de entrada" msgid "Schedule Outbox" msgstr "Programar bandeja de salida" -#: ../../Zotlabs/Storage/Browser.php:164 ../../Zotlabs/Module/Photos.php:796 -#: ../../Zotlabs/Module/Photos.php:1241 -#: ../../Zotlabs/Module/Embedphotos.php:147 ../../Zotlabs/Lib/Apps.php:490 -#: ../../Zotlabs/Lib/Apps.php:565 ../../include/conversation.php:1035 -#: ../../include/widgets.php:1599 +#: ../../Zotlabs/Storage/Browser.php:164 ../../Zotlabs/Module/Photos.php:798 +#: ../../Zotlabs/Module/Photos.php:1243 ../../Zotlabs/Lib/Apps.php:486 +#: ../../Zotlabs/Lib/Apps.php:561 ../../include/widgets.php:1505 +#: ../../include/conversation.php:1032 msgid "Unknown" msgstr "Desconocido" #: ../../Zotlabs/Storage/Browser.php:226 ../../Zotlabs/Module/Fbrowser.php:85 -#: ../../Zotlabs/Lib/Apps.php:217 ../../include/nav.php:93 -#: ../../include/conversation.php:1654 +#: ../../Zotlabs/Lib/Apps.php:216 ../../include/nav.php:93 +#: ../../include/conversation.php:1639 msgid "Files" msgstr "Ficheros" @@ -219,23 +73,22 @@ msgid "Shared" msgstr "Compartido" #: ../../Zotlabs/Storage/Browser.php:230 ../../Zotlabs/Storage/Browser.php:306 -#: ../../Zotlabs/Module/Layouts.php:184 ../../Zotlabs/Module/Menu.php:118 -#: ../../Zotlabs/Module/New_channel.php:142 -#: ../../Zotlabs/Module/Blocks.php:159 ../../Zotlabs/Module/Webpages.php:193 +#: ../../Zotlabs/Module/Blocks.php:156 ../../Zotlabs/Module/Layouts.php:182 +#: ../../Zotlabs/Module/Menu.php:118 ../../Zotlabs/Module/New_channel.php:142 +#: ../../Zotlabs/Module/Webpages.php:186 msgid "Create" msgstr "Crear" #: ../../Zotlabs/Storage/Browser.php:231 ../../Zotlabs/Storage/Browser.php:308 #: ../../Zotlabs/Module/Cover_photo.php:357 -#: ../../Zotlabs/Module/Photos.php:823 ../../Zotlabs/Module/Photos.php:1362 -#: ../../Zotlabs/Module/Profile_photo.php:390 -#: ../../Zotlabs/Module/Embedphotos.php:159 ../../include/widgets.php:1612 +#: ../../Zotlabs/Module/Photos.php:825 ../../Zotlabs/Module/Photos.php:1364 +#: ../../Zotlabs/Module/Profile_photo.php:368 ../../include/widgets.php:1518 msgid "Upload" msgstr "Subir" #: ../../Zotlabs/Storage/Browser.php:235 ../../Zotlabs/Module/Chat.php:247 -#: ../../Zotlabs/Module/Admin.php:1223 ../../Zotlabs/Module/Settings.php:646 -#: ../../Zotlabs/Module/Settings.php:672 +#: ../../Zotlabs/Module/Admin.php:1223 ../../Zotlabs/Module/Settings.php:592 +#: ../../Zotlabs/Module/Settings.php:618 #: ../../Zotlabs/Module/Sharedwithme.php:99 msgid "Name" msgstr "Nombre" @@ -245,7 +98,7 @@ msgid "Type" msgstr "Tipo" #: ../../Zotlabs/Storage/Browser.php:237 -#: ../../Zotlabs/Module/Sharedwithme.php:101 ../../include/text.php:1324 +#: ../../Zotlabs/Module/Sharedwithme.php:101 ../../include/text.php:1344 msgid "Size" msgstr "Tamaño" @@ -254,32 +107,34 @@ msgstr "Tamaño" msgid "Last Modified" msgstr "Última modificación" -#: ../../Zotlabs/Storage/Browser.php:240 ../../Zotlabs/Module/Editpost.php:84 +#: ../../Zotlabs/Storage/Browser.php:240 ../../Zotlabs/Module/Blocks.php:157 +#: ../../Zotlabs/Module/Editblock.php:109 #: ../../Zotlabs/Module/Connections.php:290 #: ../../Zotlabs/Module/Connections.php:310 -#: ../../Zotlabs/Module/Editlayout.php:114 -#: ../../Zotlabs/Module/Editwebpage.php:145 -#: ../../Zotlabs/Module/Layouts.php:192 ../../Zotlabs/Module/Menu.php:112 -#: ../../Zotlabs/Module/Admin.php:2113 ../../Zotlabs/Module/Blocks.php:160 -#: ../../Zotlabs/Module/Editblock.php:109 -#: ../../Zotlabs/Module/Settings.php:706 ../../Zotlabs/Module/Thing.php:260 -#: ../../Zotlabs/Module/Webpages.php:194 ../../Zotlabs/Lib/Apps.php:341 -#: ../../Zotlabs/Lib/ThreadItem.php:106 ../../include/page_widgets.php:9 -#: ../../include/page_widgets.php:39 ../../include/channel.php:976 -#: ../../include/channel.php:980 ../../include/menu.php:108 +#: ../../Zotlabs/Module/Editpost.php:84 +#: ../../Zotlabs/Module/Editlayout.php:113 +#: ../../Zotlabs/Module/Editwebpage.php:146 +#: ../../Zotlabs/Module/Layouts.php:190 ../../Zotlabs/Module/Menu.php:112 +#: ../../Zotlabs/Module/Admin.php:2113 ../../Zotlabs/Module/Settings.php:652 +#: ../../Zotlabs/Module/Thing.php:260 ../../Zotlabs/Module/Webpages.php:187 +#: ../../Zotlabs/Lib/Apps.php:337 ../../Zotlabs/Lib/ThreadItem.php:106 +#: ../../include/channel.php:937 ../../include/channel.php:941 +#: ../../include/menu.php:108 ../../include/page_widgets.php:8 +#: ../../include/page_widgets.php:36 msgid "Edit" msgstr "Editar" -#: ../../Zotlabs/Storage/Browser.php:241 ../../Zotlabs/Module/Connedit.php:602 +#: ../../Zotlabs/Storage/Browser.php:241 ../../Zotlabs/Module/Blocks.php:159 +#: ../../Zotlabs/Module/Connedit.php:572 +#: ../../Zotlabs/Module/Editblock.php:134 #: ../../Zotlabs/Module/Connections.php:263 -#: ../../Zotlabs/Module/Editlayout.php:137 -#: ../../Zotlabs/Module/Editwebpage.php:169 ../../Zotlabs/Module/Group.php:177 -#: ../../Zotlabs/Module/Photos.php:1171 ../../Zotlabs/Module/Admin.php:1039 +#: ../../Zotlabs/Module/Editlayout.php:136 +#: ../../Zotlabs/Module/Editwebpage.php:170 ../../Zotlabs/Module/Group.php:177 +#: ../../Zotlabs/Module/Photos.php:1173 ../../Zotlabs/Module/Admin.php:1039 #: ../../Zotlabs/Module/Admin.php:1213 ../../Zotlabs/Module/Admin.php:2114 -#: ../../Zotlabs/Module/Blocks.php:162 ../../Zotlabs/Module/Editblock.php:134 -#: ../../Zotlabs/Module/Settings.php:707 ../../Zotlabs/Module/Thing.php:261 -#: ../../Zotlabs/Module/Webpages.php:196 ../../Zotlabs/Lib/Apps.php:342 -#: ../../Zotlabs/Lib/ThreadItem.php:126 ../../include/conversation.php:660 +#: ../../Zotlabs/Module/Settings.php:653 ../../Zotlabs/Module/Thing.php:261 +#: ../../Zotlabs/Module/Webpages.php:189 ../../Zotlabs/Lib/Apps.php:338 +#: ../../Zotlabs/Lib/ThreadItem.php:126 ../../include/conversation.php:657 msgid "Delete" msgstr "Eliminar" @@ -305,73 +160,74 @@ msgstr "Crear nueva carpeta" msgid "Upload file" msgstr "Subir fichero" -#: ../../Zotlabs/Web/WebServer.php:127 ../../Zotlabs/Module/Dreport.php:10 -#: ../../Zotlabs/Module/Dreport.php:66 ../../Zotlabs/Module/Group.php:72 -#: ../../Zotlabs/Module/Like.php:283 ../../Zotlabs/Module/Import_items.php:114 +#: ../../Zotlabs/Web/WebServer.php:120 ../../Zotlabs/Module/Dreport.php:10 +#: ../../Zotlabs/Module/Dreport.php:49 ../../Zotlabs/Module/Group.php:72 +#: ../../Zotlabs/Module/Like.php:284 ../../Zotlabs/Module/Import_items.php:112 #: ../../Zotlabs/Module/Profperm.php:28 ../../Zotlabs/Module/Subthread.php:62 -#: ../../include/items.php:384 +#: ../../include/items.php:385 msgid "Permission denied" msgstr "Permiso denegado" -#: ../../Zotlabs/Web/WebServer.php:128 ../../Zotlabs/Web/Router.php:65 -#: ../../Zotlabs/Module/Achievements.php:34 -#: ../../Zotlabs/Module/Connedit.php:390 ../../Zotlabs/Module/Id.php:76 -#: ../../Zotlabs/Module/Authtest.php:16 ../../Zotlabs/Module/Events.php:264 -#: ../../Zotlabs/Module/Bookmarks.php:61 ../../Zotlabs/Module/Editpost.php:17 -#: ../../Zotlabs/Module/Page.php:35 ../../Zotlabs/Module/Page.php:91 -#: ../../Zotlabs/Module/Connections.php:33 +#: ../../Zotlabs/Web/WebServer.php:121 ../../Zotlabs/Web/Router.php:65 +#: ../../Zotlabs/Module/Achievements.php:34 ../../Zotlabs/Module/Blocks.php:73 +#: ../../Zotlabs/Module/Blocks.php:80 ../../Zotlabs/Module/Channel.php:105 +#: ../../Zotlabs/Module/Channel.php:226 ../../Zotlabs/Module/Channel.php:267 +#: ../../Zotlabs/Module/Chat.php:100 ../../Zotlabs/Module/Chat.php:105 +#: ../../Zotlabs/Module/Authtest.php:16 ../../Zotlabs/Module/Block.php:26 +#: ../../Zotlabs/Module/Block.php:76 ../../Zotlabs/Module/Bookmarks.php:61 +#: ../../Zotlabs/Module/Connedit.php:366 ../../Zotlabs/Module/Editblock.php:67 +#: ../../Zotlabs/Module/Common.php:39 ../../Zotlabs/Module/Connections.php:33 #: ../../Zotlabs/Module/Cover_photo.php:277 -#: ../../Zotlabs/Module/Cover_photo.php:290 ../../Zotlabs/Module/Chat.php:100 -#: ../../Zotlabs/Module/Chat.php:105 ../../Zotlabs/Module/Editlayout.php:67 +#: ../../Zotlabs/Module/Cover_photo.php:290 +#: ../../Zotlabs/Module/Editpost.php:17 ../../Zotlabs/Module/Events.php:265 +#: ../../Zotlabs/Module/Editlayout.php:67 #: ../../Zotlabs/Module/Editlayout.php:90 -#: ../../Zotlabs/Module/Editwebpage.php:68 -#: ../../Zotlabs/Module/Editwebpage.php:89 -#: ../../Zotlabs/Module/Editwebpage.php:104 -#: ../../Zotlabs/Module/Editwebpage.php:126 ../../Zotlabs/Module/Group.php:13 -#: ../../Zotlabs/Module/Appman.php:75 ../../Zotlabs/Module/Pdledit.php:26 -#: ../../Zotlabs/Module/Filestorage.php:23 -#: ../../Zotlabs/Module/Filestorage.php:78 -#: ../../Zotlabs/Module/Filestorage.php:93 -#: ../../Zotlabs/Module/Filestorage.php:120 +#: ../../Zotlabs/Module/Editwebpage.php:69 +#: ../../Zotlabs/Module/Editwebpage.php:90 +#: ../../Zotlabs/Module/Editwebpage.php:105 +#: ../../Zotlabs/Module/Editwebpage.php:127 ../../Zotlabs/Module/Group.php:13 +#: ../../Zotlabs/Module/Api.php:13 ../../Zotlabs/Module/Api.php:18 +#: ../../Zotlabs/Module/Filestorage.php:24 +#: ../../Zotlabs/Module/Filestorage.php:79 +#: ../../Zotlabs/Module/Filestorage.php:94 +#: ../../Zotlabs/Module/Filestorage.php:121 ../../Zotlabs/Module/Item.php:210 +#: ../../Zotlabs/Module/Item.php:218 ../../Zotlabs/Module/Item.php:1070 #: ../../Zotlabs/Module/Layouts.php:71 ../../Zotlabs/Module/Layouts.php:78 -#: ../../Zotlabs/Module/Layouts.php:89 ../../Zotlabs/Module/Like.php:181 -#: ../../Zotlabs/Module/Profiles.php:203 ../../Zotlabs/Module/Profiles.php:601 -#: ../../Zotlabs/Module/Item.php:213 ../../Zotlabs/Module/Item.php:221 -#: ../../Zotlabs/Module/Item.php:1071 ../../Zotlabs/Module/Photos.php:73 -#: ../../Zotlabs/Module/Invite.php:17 ../../Zotlabs/Module/Invite.php:91 -#: ../../Zotlabs/Module/Locs.php:87 ../../Zotlabs/Module/Mail.php:121 -#: ../../Zotlabs/Module/Manage.php:10 ../../Zotlabs/Module/Menu.php:78 -#: ../../Zotlabs/Module/Message.php:18 ../../Zotlabs/Module/Mood.php:116 -#: ../../Zotlabs/Module/Network.php:15 ../../Zotlabs/Module/Channel.php:104 -#: ../../Zotlabs/Module/Channel.php:225 ../../Zotlabs/Module/Channel.php:266 +#: ../../Zotlabs/Module/Layouts.php:89 ../../Zotlabs/Module/Id.php:76 +#: ../../Zotlabs/Module/Like.php:181 ../../Zotlabs/Module/Invite.php:17 +#: ../../Zotlabs/Module/Invite.php:91 ../../Zotlabs/Module/Locs.php:87 +#: ../../Zotlabs/Module/Mail.php:129 ../../Zotlabs/Module/Manage.php:10 +#: ../../Zotlabs/Module/Menu.php:78 ../../Zotlabs/Module/Message.php:18 +#: ../../Zotlabs/Module/Mood.php:116 ../../Zotlabs/Module/Network.php:17 #: ../../Zotlabs/Module/Mitem.php:115 ../../Zotlabs/Module/New_channel.php:77 #: ../../Zotlabs/Module/New_channel.php:104 -#: ../../Zotlabs/Module/Notifications.php:70 ../../Zotlabs/Module/Poke.php:137 -#: ../../Zotlabs/Module/Profile.php:68 ../../Zotlabs/Module/Profile.php:76 -#: ../../Zotlabs/Module/Block.php:26 ../../Zotlabs/Module/Block.php:76 -#: ../../Zotlabs/Module/Profile_photo.php:265 -#: ../../Zotlabs/Module/Profile_photo.php:278 -#: ../../Zotlabs/Module/Blocks.php:73 ../../Zotlabs/Module/Blocks.php:80 -#: ../../Zotlabs/Module/Rate.php:113 ../../Zotlabs/Module/Editblock.php:67 -#: ../../Zotlabs/Module/Common.php:39 ../../Zotlabs/Module/Register.php:77 -#: ../../Zotlabs/Module/Regmod.php:21 +#: ../../Zotlabs/Module/Notifications.php:70 +#: ../../Zotlabs/Module/Photos.php:75 ../../Zotlabs/Module/Page.php:35 +#: ../../Zotlabs/Module/Page.php:90 ../../Zotlabs/Module/Pdledit.php:26 +#: ../../Zotlabs/Module/Poke.php:137 ../../Zotlabs/Module/Profile.php:68 +#: ../../Zotlabs/Module/Profile.php:76 ../../Zotlabs/Module/Profiles.php:203 +#: ../../Zotlabs/Module/Profiles.php:601 +#: ../../Zotlabs/Module/Profile_photo.php:256 +#: ../../Zotlabs/Module/Profile_photo.php:269 +#: ../../Zotlabs/Module/Rate.php:113 ../../Zotlabs/Module/Appman.php:75 +#: ../../Zotlabs/Module/Register.php:77 ../../Zotlabs/Module/Regmod.php:21 #: ../../Zotlabs/Module/Service_limits.php:11 -#: ../../Zotlabs/Module/Settings.php:626 ../../Zotlabs/Module/Setup.php:215 -#: ../../Zotlabs/Module/Sharedwithme.php:11 ../../Zotlabs/Module/Thing.php:274 -#: ../../Zotlabs/Module/Thing.php:294 ../../Zotlabs/Module/Thing.php:331 +#: ../../Zotlabs/Module/Settings.php:572 ../../Zotlabs/Module/Setup.php:215 +#: ../../Zotlabs/Module/Sharedwithme.php:11 #: ../../Zotlabs/Module/Sources.php:74 ../../Zotlabs/Module/Suggest.php:30 -#: ../../Zotlabs/Module/Webpages.php:73 -#: ../../Zotlabs/Module/Viewconnections.php:28 -#: ../../Zotlabs/Module/Viewconnections.php:33 -#: ../../Zotlabs/Module/Viewsrc.php:18 ../../Zotlabs/Module/Api.php:13 -#: ../../Zotlabs/Module/Api.php:18 ../../Zotlabs/Lib/Chatroom.php:137 -#: ../../include/photos.php:27 ../../include/attach.php:141 -#: ../../include/attach.php:189 ../../include/attach.php:252 -#: ../../include/attach.php:266 ../../include/attach.php:273 -#: ../../include/attach.php:338 ../../include/attach.php:352 -#: ../../include/attach.php:359 ../../include/attach.php:439 -#: ../../include/attach.php:901 ../../include/attach.php:972 -#: ../../include/attach.php:1124 ../../include/items.php:3448 +#: ../../Zotlabs/Module/Thing.php:274 ../../Zotlabs/Module/Thing.php:294 +#: ../../Zotlabs/Module/Thing.php:331 +#: ../../Zotlabs/Module/Viewconnections.php:25 +#: ../../Zotlabs/Module/Viewconnections.php:30 +#: ../../Zotlabs/Module/Viewsrc.php:18 ../../Zotlabs/Module/Webpages.php:74 +#: ../../Zotlabs/Lib/Chatroom.php:137 ../../include/items.php:3438 +#: ../../include/attach.php:141 ../../include/attach.php:189 +#: ../../include/attach.php:252 ../../include/attach.php:266 +#: ../../include/attach.php:273 ../../include/attach.php:338 +#: ../../include/attach.php:352 ../../include/attach.php:359 +#: ../../include/attach.php:437 ../../include/attach.php:895 +#: ../../include/attach.php:966 ../../include/attach.php:1118 +#: ../../include/photos.php:27 msgid "Permission denied." msgstr "Acceso denegado." @@ -379,9 +235,9 @@ msgstr "Acceso denegado." msgid "Not Found" msgstr "No encontrado" -#: ../../Zotlabs/Web/Router.php:149 ../../Zotlabs/Module/Display.php:118 -#: ../../Zotlabs/Module/Page.php:94 ../../Zotlabs/Module/Help.php:97 -#: ../../Zotlabs/Module/Block.php:79 +#: ../../Zotlabs/Web/Router.php:149 ../../Zotlabs/Module/Block.php:79 +#: ../../Zotlabs/Module/Display.php:117 ../../Zotlabs/Module/Help.php:97 +#: ../../Zotlabs/Module/Page.php:93 msgid "Page not found." msgstr "Página no encontrada." @@ -397,13 +253,13 @@ msgstr "La autenticación desde su servidor está bloqueada. Ha iniciado sesión msgid "Welcome %s. Remote authentication successful." msgstr "Bienvenido %s. La identificación desde su servidor se ha llevado a cabo correctamente." -#: ../../Zotlabs/Module/Achievements.php:15 -#: ../../Zotlabs/Module/Connect.php:17 ../../Zotlabs/Module/Editlayout.php:31 -#: ../../Zotlabs/Module/Editwebpage.php:32 ../../Zotlabs/Module/Hcard.php:12 -#: ../../Zotlabs/Module/Filestorage.php:59 ../../Zotlabs/Module/Layouts.php:31 -#: ../../Zotlabs/Module/Profile.php:20 ../../Zotlabs/Module/Blocks.php:33 -#: ../../Zotlabs/Module/Editblock.php:31 ../../Zotlabs/Module/Webpages.php:33 -#: ../../include/channel.php:876 +#: ../../Zotlabs/Module/Achievements.php:15 ../../Zotlabs/Module/Blocks.php:33 +#: ../../Zotlabs/Module/Connect.php:17 ../../Zotlabs/Module/Editblock.php:31 +#: ../../Zotlabs/Module/Editlayout.php:31 +#: ../../Zotlabs/Module/Editwebpage.php:33 +#: ../../Zotlabs/Module/Filestorage.php:60 ../../Zotlabs/Module/Hcard.php:12 +#: ../../Zotlabs/Module/Layouts.php:31 ../../Zotlabs/Module/Profile.php:20 +#: ../../Zotlabs/Module/Webpages.php:34 ../../include/channel.php:837 msgid "Requested profile is not available." msgstr "El perfil solicitado no está disponible." @@ -411,6 +267,229 @@ msgstr "El perfil solicitado no está disponible." msgid "Some blurb about what to do when you're new here" msgstr "Algunas propuestas para el nuevo usuario sobre qué se puede hacer aquí" +#: ../../Zotlabs/Module/Blocks.php:97 ../../Zotlabs/Module/Blocks.php:152 +#: ../../Zotlabs/Module/Editblock.php:108 +msgid "Block Name" +msgstr "Nombre del bloque" + +#: ../../Zotlabs/Module/Blocks.php:151 ../../include/text.php:2265 +msgid "Blocks" +msgstr "Bloques" + +#: ../../Zotlabs/Module/Blocks.php:153 +msgid "Block Title" +msgstr "Título del bloque" + +#: ../../Zotlabs/Module/Blocks.php:154 ../../Zotlabs/Module/Layouts.php:188 +#: ../../Zotlabs/Module/Menu.php:114 ../../Zotlabs/Module/Webpages.php:198 +#: ../../include/page_widgets.php:44 +msgid "Created" +msgstr "Creado" + +#: ../../Zotlabs/Module/Blocks.php:155 ../../Zotlabs/Module/Layouts.php:189 +#: ../../Zotlabs/Module/Menu.php:115 ../../Zotlabs/Module/Webpages.php:199 +#: ../../include/page_widgets.php:45 +msgid "Edited" +msgstr "Editado" + +#: ../../Zotlabs/Module/Blocks.php:158 ../../Zotlabs/Module/Layouts.php:191 +#: ../../Zotlabs/Module/Photos.php:1072 ../../Zotlabs/Module/Webpages.php:188 +#: ../../include/conversation.php:1208 +msgid "Share" +msgstr "Compartir" + +#: ../../Zotlabs/Module/Blocks.php:163 ../../Zotlabs/Module/Layouts.php:195 +#: ../../Zotlabs/Module/Pubsites.php:47 ../../Zotlabs/Module/Webpages.php:193 +#: ../../include/page_widgets.php:39 +msgid "View" +msgstr "Ver" + +#: ../../Zotlabs/Module/Cal.php:62 ../../Zotlabs/Module/Block.php:43 +#: ../../Zotlabs/Module/Page.php:56 ../../Zotlabs/Module/Wall_upload.php:33 +msgid "Channel not found." +msgstr "Canal no encontrado." + +#: ../../Zotlabs/Module/Cal.php:69 +msgid "Permissions denied." +msgstr "Permisos denegados." + +#: ../../Zotlabs/Module/Cal.php:259 ../../Zotlabs/Module/Events.php:588 +msgid "l, F j" +msgstr "l j F" + +#: ../../Zotlabs/Module/Cal.php:308 ../../Zotlabs/Module/Events.php:637 +#: ../../include/text.php:1732 +msgid "Link to Source" +msgstr "Enlazar con la entrada en su ubicación original" + +#: ../../Zotlabs/Module/Cal.php:331 ../../Zotlabs/Module/Events.php:665 +msgid "Edit Event" +msgstr "Editar el evento" + +#: ../../Zotlabs/Module/Cal.php:331 ../../Zotlabs/Module/Events.php:665 +msgid "Create Event" +msgstr "Crear un evento" + +#: ../../Zotlabs/Module/Cal.php:332 ../../Zotlabs/Module/Cal.php:339 +#: ../../Zotlabs/Module/Events.php:666 ../../Zotlabs/Module/Events.php:673 +#: ../../Zotlabs/Module/Photos.php:949 +msgid "Previous" +msgstr "Anterior" + +#: ../../Zotlabs/Module/Cal.php:333 ../../Zotlabs/Module/Cal.php:340 +#: ../../Zotlabs/Module/Events.php:667 ../../Zotlabs/Module/Events.php:674 +#: ../../Zotlabs/Module/Photos.php:958 ../../Zotlabs/Module/Setup.php:267 +msgid "Next" +msgstr "Siguiente" + +#: ../../Zotlabs/Module/Cal.php:334 ../../Zotlabs/Module/Events.php:668 +#: ../../include/widgets.php:755 +msgid "Export" +msgstr "Exportar" + +#: ../../Zotlabs/Module/Cal.php:337 ../../Zotlabs/Module/Events.php:671 +#: ../../include/widgets.php:756 +msgid "Import" +msgstr "Importar" + +#: ../../Zotlabs/Module/Cal.php:338 ../../Zotlabs/Module/Chat.php:196 +#: ../../Zotlabs/Module/Chat.php:238 ../../Zotlabs/Module/Connect.php:98 +#: ../../Zotlabs/Module/Connedit.php:731 ../../Zotlabs/Module/Events.php:475 +#: ../../Zotlabs/Module/Events.php:672 ../../Zotlabs/Module/Group.php:85 +#: ../../Zotlabs/Module/Filestorage.php:162 +#: ../../Zotlabs/Module/Import.php:550 +#: ../../Zotlabs/Module/Import_items.php:120 +#: ../../Zotlabs/Module/Invite.php:146 ../../Zotlabs/Module/Locs.php:121 +#: ../../Zotlabs/Module/Mail.php:378 ../../Zotlabs/Module/Mood.php:139 +#: ../../Zotlabs/Module/Mitem.php:235 ../../Zotlabs/Module/Photos.php:677 +#: ../../Zotlabs/Module/Photos.php:1052 ../../Zotlabs/Module/Photos.php:1092 +#: ../../Zotlabs/Module/Photos.php:1210 ../../Zotlabs/Module/Pconfig.php:107 +#: ../../Zotlabs/Module/Pdledit.php:66 ../../Zotlabs/Module/Poke.php:186 +#: ../../Zotlabs/Module/Profiles.php:687 ../../Zotlabs/Module/Rate.php:170 +#: ../../Zotlabs/Module/Admin.php:492 ../../Zotlabs/Module/Admin.php:688 +#: ../../Zotlabs/Module/Admin.php:771 ../../Zotlabs/Module/Admin.php:1032 +#: ../../Zotlabs/Module/Admin.php:1211 ../../Zotlabs/Module/Admin.php:1421 +#: ../../Zotlabs/Module/Admin.php:1648 ../../Zotlabs/Module/Admin.php:1733 +#: ../../Zotlabs/Module/Admin.php:2116 ../../Zotlabs/Module/Appman.php:126 +#: ../../Zotlabs/Module/Settings.php:590 ../../Zotlabs/Module/Settings.php:703 +#: ../../Zotlabs/Module/Settings.php:731 ../../Zotlabs/Module/Settings.php:754 +#: ../../Zotlabs/Module/Settings.php:842 +#: ../../Zotlabs/Module/Settings.php:1034 ../../Zotlabs/Module/Setup.php:312 +#: ../../Zotlabs/Module/Setup.php:353 ../../Zotlabs/Module/Sources.php:114 +#: ../../Zotlabs/Module/Sources.php:149 ../../Zotlabs/Module/Thing.php:316 +#: ../../Zotlabs/Module/Thing.php:362 ../../Zotlabs/Module/Xchan.php:15 +#: ../../Zotlabs/Lib/ThreadItem.php:710 ../../include/widgets.php:757 +#: ../../include/widgets.php:769 ../../include/js_strings.php:22 +#: ../../view/theme/redbasic/php/config.php:99 +msgid "Submit" +msgstr "Enviar" + +#: ../../Zotlabs/Module/Cal.php:341 ../../Zotlabs/Module/Events.php:675 +msgid "Today" +msgstr "Hoy" + +#: ../../Zotlabs/Module/Channel.php:29 ../../Zotlabs/Module/Chat.php:25 +msgid "You must be logged in to see this page." +msgstr "Debe haber iniciado sesión para poder ver esta página." + +#: ../../Zotlabs/Module/Channel.php:41 +msgid "Posts and comments" +msgstr "Publicaciones y comentarios" + +#: ../../Zotlabs/Module/Channel.php:42 +msgid "Only posts" +msgstr "Solo publicaciones" + +#: ../../Zotlabs/Module/Channel.php:102 +msgid "Insufficient permissions. Request redirected to profile page." +msgstr "Permisos insuficientes. Petición redirigida a la página del perfil." + +#: ../../Zotlabs/Module/Chat.php:181 +msgid "Room not found" +msgstr "Sala no encontrada" + +#: ../../Zotlabs/Module/Chat.php:197 +msgid "Leave Room" +msgstr "Abandonar la sala" + +#: ../../Zotlabs/Module/Chat.php:198 +msgid "Delete Room" +msgstr "Eliminar esta sala" + +#: ../../Zotlabs/Module/Chat.php:199 +msgid "I am away right now" +msgstr "Estoy ausente momentáneamente" + +#: ../../Zotlabs/Module/Chat.php:200 +msgid "I am online" +msgstr "Estoy conectado/a" + +#: ../../Zotlabs/Module/Chat.php:202 +msgid "Bookmark this room" +msgstr "Añadir esta sala a Marcadores" + +#: ../../Zotlabs/Module/Chat.php:205 ../../Zotlabs/Module/Mail.php:205 +#: ../../Zotlabs/Module/Mail.php:314 ../../include/conversation.php:1176 +msgid "Please enter a link URL:" +msgstr "Por favor, introduzca la dirección del enlace:" + +#: ../../Zotlabs/Module/Chat.php:206 ../../Zotlabs/Module/Mail.php:258 +#: ../../Zotlabs/Module/Mail.php:383 ../../Zotlabs/Lib/ThreadItem.php:722 +#: ../../include/conversation.php:1256 +msgid "Encrypt text" +msgstr "Cifrar texto" + +#: ../../Zotlabs/Module/Chat.php:207 ../../Zotlabs/Module/Editblock.php:111 +#: ../../Zotlabs/Module/Editwebpage.php:147 ../../Zotlabs/Module/Mail.php:252 +#: ../../Zotlabs/Module/Mail.php:377 ../../include/conversation.php:1143 +msgid "Insert web link" +msgstr "Insertar enlace web" + +#: ../../Zotlabs/Module/Chat.php:218 +msgid "Feature disabled." +msgstr "Funcionalidad deshabilitada." + +#: ../../Zotlabs/Module/Chat.php:232 +msgid "New Chatroom" +msgstr "Nueva sala de chat" + +#: ../../Zotlabs/Module/Chat.php:233 +msgid "Chatroom name" +msgstr "Nombre de la sala de chat" + +#: ../../Zotlabs/Module/Chat.php:234 +msgid "Expiration of chats (minutes)" +msgstr "Caducidad de los mensajes en los chats (en minutos)" + +#: ../../Zotlabs/Module/Chat.php:235 ../../Zotlabs/Module/Filestorage.php:153 +#: ../../Zotlabs/Module/Photos.php:671 ../../Zotlabs/Module/Photos.php:1045 +#: ../../Zotlabs/Module/Thing.php:313 ../../Zotlabs/Module/Thing.php:359 +#: ../../include/acl_selectors.php:283 +msgid "Permissions" +msgstr "Permisos" + +#: ../../Zotlabs/Module/Chat.php:246 +#, php-format +msgid "%1$s's Chatrooms" +msgstr "Salas de chat de %1$s" + +#: ../../Zotlabs/Module/Chat.php:251 +msgid "No chatrooms available" +msgstr "No hay salas de chat disponibles" + +#: ../../Zotlabs/Module/Chat.php:252 ../../Zotlabs/Module/Manage.php:143 +#: ../../Zotlabs/Module/Profiles.php:778 +msgid "Create New" +msgstr "Crear" + +#: ../../Zotlabs/Module/Chat.php:255 +msgid "Expiration" +msgstr "Caducidad" + +#: ../../Zotlabs/Module/Chat.php:256 +msgid "min" +msgstr "min" + #: ../../Zotlabs/Module/Chatsvc.php:117 msgid "Away" msgstr "Ausente" @@ -419,6 +498,65 @@ msgstr "Ausente" msgid "Online" msgstr "Conectado/a" +#: ../../Zotlabs/Module/Block.php:31 ../../Zotlabs/Module/Page.php:40 +msgid "Invalid item." +msgstr "Elemento no válido." + +#: ../../Zotlabs/Module/Bookmarks.php:53 +msgid "Bookmark added" +msgstr "Marcador añadido" + +#: ../../Zotlabs/Module/Bookmarks.php:75 +msgid "My Bookmarks" +msgstr "Mis marcadores" + +#: ../../Zotlabs/Module/Bookmarks.php:86 +msgid "My Connections Bookmarks" +msgstr "Marcadores de mis conexiones" + +#: ../../Zotlabs/Module/Connect.php:61 ../../Zotlabs/Module/Connect.php:109 +msgid "Continue" +msgstr "Continuar" + +#: ../../Zotlabs/Module/Connect.php:90 +msgid "Premium Channel Setup" +msgstr "Configuración del canal premium" + +#: ../../Zotlabs/Module/Connect.php:92 +msgid "Enable premium channel connection restrictions" +msgstr "Habilitar restricciones de conexión del canal premium" + +#: ../../Zotlabs/Module/Connect.php:93 +msgid "" +"Please enter your restrictions or conditions, such as paypal receipt, usage " +"guidelines, etc." +msgstr "Por favor introduzca sus restricciones o condiciones, como recibo de paypal, normas de uso, etc." + +#: ../../Zotlabs/Module/Connect.php:95 ../../Zotlabs/Module/Connect.php:115 +msgid "" +"This channel may require additional steps or acknowledgement of the " +"following conditions prior to connecting:" +msgstr "Este canal puede requerir antes de conectar unos pasos adicionales o el conocimiento de las siguientes condiciones:" + +#: ../../Zotlabs/Module/Connect.php:96 +msgid "" +"Potential connections will then see the following text before proceeding:" +msgstr "Las posibles conexiones verán, por tanto, el siguiente texto antes de proceder:" + +#: ../../Zotlabs/Module/Connect.php:97 ../../Zotlabs/Module/Connect.php:118 +msgid "" +"By continuing, I certify that I have complied with any instructions provided" +" on this page." +msgstr "Al continuar, certifico que he cumplido con todas las instrucciones proporcionadas en esta página." + +#: ../../Zotlabs/Module/Connect.php:106 +msgid "(No specific instructions have been provided by the channel owner.)" +msgstr "(No ha sido proporcionada ninguna instrucción específica por el propietario del canal.)" + +#: ../../Zotlabs/Module/Connect.php:114 +msgid "Restricted or Premium Channel" +msgstr "Canal premium o restringido" + #: ../../Zotlabs/Module/Connedit.php:80 msgid "Could not access contact record." msgstr "No se ha podido acceder al registro de contacto." @@ -427,350 +565,317 @@ msgstr "No se ha podido acceder al registro de contacto." msgid "Could not locate selected profile." msgstr "No se ha podido localizar el perfil seleccionado." -#: ../../Zotlabs/Module/Connedit.php:248 +#: ../../Zotlabs/Module/Connedit.php:227 msgid "Connection updated." msgstr "Conexión actualizada." -#: ../../Zotlabs/Module/Connedit.php:250 +#: ../../Zotlabs/Module/Connedit.php:229 msgid "Failed to update connection record." msgstr "Error al actualizar el registro de la conexión." -#: ../../Zotlabs/Module/Connedit.php:300 +#: ../../Zotlabs/Module/Connedit.php:276 msgid "is now connected to" msgstr "ahora está conectado/a" -#: ../../Zotlabs/Module/Connedit.php:403 ../../Zotlabs/Module/Connedit.php:685 -#: ../../Zotlabs/Module/Events.php:458 ../../Zotlabs/Module/Events.php:459 -#: ../../Zotlabs/Module/Events.php:468 -#: ../../Zotlabs/Module/Filestorage.php:156 -#: ../../Zotlabs/Module/Filestorage.php:164 -#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Photos.php:664 -#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 -#: ../../Zotlabs/Module/Mitem.php:158 ../../Zotlabs/Module/Mitem.php:159 -#: ../../Zotlabs/Module/Mitem.php:232 ../../Zotlabs/Module/Mitem.php:233 -#: ../../Zotlabs/Module/Admin.php:459 ../../Zotlabs/Module/Removeme.php:63 -#: ../../Zotlabs/Module/Settings.php:635 ../../Zotlabs/Module/Api.php:89 +#: ../../Zotlabs/Module/Connedit.php:379 ../../Zotlabs/Module/Connedit.php:654 +#: ../../Zotlabs/Module/Events.php:459 ../../Zotlabs/Module/Events.php:460 +#: ../../Zotlabs/Module/Events.php:469 ../../Zotlabs/Module/Api.php:89 +#: ../../Zotlabs/Module/Filestorage.php:157 +#: ../../Zotlabs/Module/Filestorage.php:165 ../../Zotlabs/Module/Menu.php:100 +#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Mitem.php:158 +#: ../../Zotlabs/Module/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:232 +#: ../../Zotlabs/Module/Mitem.php:233 ../../Zotlabs/Module/Photos.php:666 +#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Admin.php:459 +#: ../../Zotlabs/Module/Removeme.php:61 ../../Zotlabs/Module/Settings.php:581 #: ../../include/dir_fns.php:143 ../../include/dir_fns.php:144 #: ../../include/dir_fns.php:145 ../../view/theme/redbasic/php/config.php:105 -#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1708 +#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1707 msgid "No" msgstr "No" -#: ../../Zotlabs/Module/Connedit.php:403 ../../Zotlabs/Module/Events.php:458 -#: ../../Zotlabs/Module/Events.php:459 ../../Zotlabs/Module/Events.php:468 -#: ../../Zotlabs/Module/Filestorage.php:156 -#: ../../Zotlabs/Module/Filestorage.php:164 -#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Photos.php:664 -#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 -#: ../../Zotlabs/Module/Mitem.php:158 ../../Zotlabs/Module/Mitem.php:159 -#: ../../Zotlabs/Module/Mitem.php:232 ../../Zotlabs/Module/Mitem.php:233 -#: ../../Zotlabs/Module/Admin.php:461 ../../Zotlabs/Module/Removeme.php:63 -#: ../../Zotlabs/Module/Settings.php:635 ../../Zotlabs/Module/Api.php:88 +#: ../../Zotlabs/Module/Connedit.php:379 ../../Zotlabs/Module/Events.php:459 +#: ../../Zotlabs/Module/Events.php:460 ../../Zotlabs/Module/Events.php:469 +#: ../../Zotlabs/Module/Api.php:88 ../../Zotlabs/Module/Filestorage.php:157 +#: ../../Zotlabs/Module/Filestorage.php:165 ../../Zotlabs/Module/Menu.php:100 +#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Mitem.php:158 +#: ../../Zotlabs/Module/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:232 +#: ../../Zotlabs/Module/Mitem.php:233 ../../Zotlabs/Module/Photos.php:666 +#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Admin.php:461 +#: ../../Zotlabs/Module/Removeme.php:61 ../../Zotlabs/Module/Settings.php:581 #: ../../include/dir_fns.php:143 ../../include/dir_fns.php:144 #: ../../include/dir_fns.php:145 ../../view/theme/redbasic/php/config.php:105 -#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1708 +#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1707 msgid "Yes" msgstr "Sí" -#: ../../Zotlabs/Module/Connedit.php:435 +#: ../../Zotlabs/Module/Connedit.php:411 msgid "Could not access address book record." msgstr "No se pudo acceder al registro en su libreta de direcciones." -#: ../../Zotlabs/Module/Connedit.php:455 +#: ../../Zotlabs/Module/Connedit.php:425 msgid "Refresh failed - channel is currently unavailable." msgstr "Recarga fallida - no se puede encontrar el canal en este momento." -#: ../../Zotlabs/Module/Connedit.php:470 ../../Zotlabs/Module/Connedit.php:479 -#: ../../Zotlabs/Module/Connedit.php:488 ../../Zotlabs/Module/Connedit.php:497 -#: ../../Zotlabs/Module/Connedit.php:510 +#: ../../Zotlabs/Module/Connedit.php:440 ../../Zotlabs/Module/Connedit.php:449 +#: ../../Zotlabs/Module/Connedit.php:458 ../../Zotlabs/Module/Connedit.php:467 +#: ../../Zotlabs/Module/Connedit.php:480 msgid "Unable to set address book parameters." msgstr "No ha sido posible establecer los parámetros de la libreta de direcciones." -#: ../../Zotlabs/Module/Connedit.php:533 +#: ../../Zotlabs/Module/Connedit.php:503 msgid "Connection has been removed." msgstr "La conexión ha sido eliminada." -#: ../../Zotlabs/Module/Connedit.php:549 ../../Zotlabs/Lib/Apps.php:221 -#: ../../include/nav.php:86 ../../include/conversation.php:957 +#: ../../Zotlabs/Module/Connedit.php:519 ../../Zotlabs/Lib/Apps.php:219 +#: ../../include/nav.php:86 ../../include/conversation.php:954 msgid "View Profile" msgstr "Ver el perfil" -#: ../../Zotlabs/Module/Connedit.php:552 +#: ../../Zotlabs/Module/Connedit.php:522 #, php-format msgid "View %s's profile" msgstr "Ver el perfil de %s" -#: ../../Zotlabs/Module/Connedit.php:556 +#: ../../Zotlabs/Module/Connedit.php:526 msgid "Refresh Permissions" msgstr "Recargar los permisos" -#: ../../Zotlabs/Module/Connedit.php:559 +#: ../../Zotlabs/Module/Connedit.php:529 msgid "Fetch updated permissions" msgstr "Obtener los permisos actualizados" -#: ../../Zotlabs/Module/Connedit.php:563 +#: ../../Zotlabs/Module/Connedit.php:533 msgid "Recent Activity" msgstr "Actividad reciente" -#: ../../Zotlabs/Module/Connedit.php:566 +#: ../../Zotlabs/Module/Connedit.php:536 msgid "View recent posts and comments" msgstr "Ver publicaciones y comentarios recientes" -#: ../../Zotlabs/Module/Connedit.php:570 ../../Zotlabs/Module/Admin.php:1041 +#: ../../Zotlabs/Module/Connedit.php:540 ../../Zotlabs/Module/Admin.php:1041 msgid "Unblock" msgstr "Desbloquear" -#: ../../Zotlabs/Module/Connedit.php:570 ../../Zotlabs/Module/Admin.php:1040 +#: ../../Zotlabs/Module/Connedit.php:540 ../../Zotlabs/Module/Admin.php:1040 msgid "Block" msgstr "Bloquear" -#: ../../Zotlabs/Module/Connedit.php:573 +#: ../../Zotlabs/Module/Connedit.php:543 msgid "Block (or Unblock) all communications with this connection" msgstr "Bloquear (o desbloquear) todas las comunicaciones con esta conexión" -#: ../../Zotlabs/Module/Connedit.php:574 +#: ../../Zotlabs/Module/Connedit.php:544 msgid "This connection is blocked!" msgstr "¡Esta conexión está bloqueada!" -#: ../../Zotlabs/Module/Connedit.php:578 +#: ../../Zotlabs/Module/Connedit.php:548 msgid "Unignore" msgstr "Dejar de ignorar" -#: ../../Zotlabs/Module/Connedit.php:578 +#: ../../Zotlabs/Module/Connedit.php:548 #: ../../Zotlabs/Module/Connections.php:277 #: ../../Zotlabs/Module/Notifications.php:55 msgid "Ignore" msgstr "Ignorar" -#: ../../Zotlabs/Module/Connedit.php:581 +#: ../../Zotlabs/Module/Connedit.php:551 msgid "Ignore (or Unignore) all inbound communications from this connection" msgstr "Ignorar (o dejar de ignorar) todas las comunicaciones entrantes de esta conexión" -#: ../../Zotlabs/Module/Connedit.php:582 +#: ../../Zotlabs/Module/Connedit.php:552 msgid "This connection is ignored!" msgstr "¡Esta conexión es ignorada!" -#: ../../Zotlabs/Module/Connedit.php:586 +#: ../../Zotlabs/Module/Connedit.php:556 msgid "Unarchive" msgstr "Desarchivar" -#: ../../Zotlabs/Module/Connedit.php:586 +#: ../../Zotlabs/Module/Connedit.php:556 msgid "Archive" msgstr "Archivar" -#: ../../Zotlabs/Module/Connedit.php:589 +#: ../../Zotlabs/Module/Connedit.php:559 msgid "" "Archive (or Unarchive) this connection - mark channel dead but keep content" msgstr "Archiva (o desarchiva) esta conexión - marca el canal como muerto aunque mantiene sus contenidos" -#: ../../Zotlabs/Module/Connedit.php:590 +#: ../../Zotlabs/Module/Connedit.php:560 msgid "This connection is archived!" msgstr "¡Esta conexión esta archivada!" -#: ../../Zotlabs/Module/Connedit.php:594 +#: ../../Zotlabs/Module/Connedit.php:564 msgid "Unhide" msgstr "Mostrar" -#: ../../Zotlabs/Module/Connedit.php:594 +#: ../../Zotlabs/Module/Connedit.php:564 msgid "Hide" msgstr "Ocultar" -#: ../../Zotlabs/Module/Connedit.php:597 +#: ../../Zotlabs/Module/Connedit.php:567 msgid "Hide or Unhide this connection from your other connections" msgstr "Ocultar o mostrar esta conexión a sus otras conexiones" -#: ../../Zotlabs/Module/Connedit.php:598 +#: ../../Zotlabs/Module/Connedit.php:568 msgid "This connection is hidden!" msgstr "¡Esta conexión está oculta!" -#: ../../Zotlabs/Module/Connedit.php:605 +#: ../../Zotlabs/Module/Connedit.php:575 msgid "Delete this connection" msgstr "Eliminar esta conexión" -#: ../../Zotlabs/Module/Connedit.php:620 ../../include/widgets.php:493 +#: ../../Zotlabs/Module/Connedit.php:590 ../../include/widgets.php:493 msgid "Me" msgstr "Yo" -#: ../../Zotlabs/Module/Connedit.php:621 ../../include/widgets.php:494 +#: ../../Zotlabs/Module/Connedit.php:591 ../../include/widgets.php:494 msgid "Family" msgstr "Familia" -#: ../../Zotlabs/Module/Connedit.php:622 ../../Zotlabs/Module/Settings.php:391 -#: ../../Zotlabs/Module/Settings.php:395 ../../Zotlabs/Module/Settings.php:396 -#: ../../Zotlabs/Module/Settings.php:399 ../../Zotlabs/Module/Settings.php:410 -#: ../../include/channel.php:402 ../../include/channel.php:403 -#: ../../include/channel.php:410 ../../include/selectors.php:123 -#: ../../include/widgets.php:495 +#: ../../Zotlabs/Module/Connedit.php:592 ../../Zotlabs/Module/Settings.php:342 +#: ../../Zotlabs/Module/Settings.php:346 ../../Zotlabs/Module/Settings.php:347 +#: ../../Zotlabs/Module/Settings.php:350 ../../Zotlabs/Module/Settings.php:361 +#: ../../include/widgets.php:495 ../../include/selectors.php:123 +#: ../../include/channel.php:389 ../../include/channel.php:390 +#: ../../include/channel.php:397 msgid "Friends" msgstr "Amigos/as" -#: ../../Zotlabs/Module/Connedit.php:623 ../../include/widgets.php:496 +#: ../../Zotlabs/Module/Connedit.php:593 ../../include/widgets.php:496 msgid "Acquaintances" msgstr "Conocidos/as" -#: ../../Zotlabs/Module/Connedit.php:624 +#: ../../Zotlabs/Module/Connedit.php:594 #: ../../Zotlabs/Module/Connections.php:92 #: ../../Zotlabs/Module/Connections.php:107 ../../include/widgets.php:497 msgid "All" msgstr "Todos/as" -#: ../../Zotlabs/Module/Connedit.php:685 +#: ../../Zotlabs/Module/Connedit.php:654 msgid "Approve this connection" msgstr "Aprobar esta conexión" -#: ../../Zotlabs/Module/Connedit.php:685 +#: ../../Zotlabs/Module/Connedit.php:654 msgid "Accept connection to allow communication" msgstr "Aceptar la conexión para permitir la comunicación" -#: ../../Zotlabs/Module/Connedit.php:690 +#: ../../Zotlabs/Module/Connedit.php:659 msgid "Set Affinity" msgstr "Ajustar la afinidad" -#: ../../Zotlabs/Module/Connedit.php:693 +#: ../../Zotlabs/Module/Connedit.php:662 msgid "Set Profile" msgstr "Ajustar el perfil" -#: ../../Zotlabs/Module/Connedit.php:696 +#: ../../Zotlabs/Module/Connedit.php:665 msgid "Set Affinity & Profile" msgstr "Ajustar la afinidad y el perfil" -#: ../../Zotlabs/Module/Connedit.php:745 +#: ../../Zotlabs/Module/Connedit.php:698 msgid "none" msgstr "-" -#: ../../Zotlabs/Module/Connedit.php:749 ../../include/widgets.php:623 +#: ../../Zotlabs/Module/Connedit.php:702 ../../include/widgets.php:614 msgid "Connection Default Permissions" msgstr "Permisos predeterminados de conexión" -#: ../../Zotlabs/Module/Connedit.php:749 ../../include/items.php:3935 +#: ../../Zotlabs/Module/Connedit.php:702 ../../include/items.php:3926 #, php-format msgid "Connection: %s" msgstr "Conexión: %s" -#: ../../Zotlabs/Module/Connedit.php:750 +#: ../../Zotlabs/Module/Connedit.php:703 msgid "Apply these permissions automatically" msgstr "Aplicar estos permisos automaticamente" -#: ../../Zotlabs/Module/Connedit.php:750 +#: ../../Zotlabs/Module/Connedit.php:703 msgid "Connection requests will be approved without your interaction" msgstr "Las solicitudes de conexión serán aprobadas sin su intervención" -#: ../../Zotlabs/Module/Connedit.php:752 +#: ../../Zotlabs/Module/Connedit.php:705 msgid "This connection's primary address is" msgstr "La dirección primaria de esta conexión es" -#: ../../Zotlabs/Module/Connedit.php:753 +#: ../../Zotlabs/Module/Connedit.php:706 msgid "Available locations:" msgstr "Ubicaciones disponibles:" -#: ../../Zotlabs/Module/Connedit.php:757 +#: ../../Zotlabs/Module/Connedit.php:710 msgid "" "The permissions indicated on this page will be applied to all new " "connections." msgstr "Los permisos indicados en esta página serán aplicados en todas las nuevas conexiones." -#: ../../Zotlabs/Module/Connedit.php:758 +#: ../../Zotlabs/Module/Connedit.php:711 msgid "Connection Tools" msgstr "Gestión de las conexiones" -#: ../../Zotlabs/Module/Connedit.php:760 +#: ../../Zotlabs/Module/Connedit.php:713 msgid "Slide to adjust your degree of friendship" msgstr "Deslizar para ajustar el grado de amistad" -#: ../../Zotlabs/Module/Connedit.php:761 ../../Zotlabs/Module/Rate.php:159 +#: ../../Zotlabs/Module/Connedit.php:714 ../../Zotlabs/Module/Rate.php:159 #: ../../include/js_strings.php:20 msgid "Rating" msgstr "Valoración" -#: ../../Zotlabs/Module/Connedit.php:762 +#: ../../Zotlabs/Module/Connedit.php:715 msgid "Slide to adjust your rating" msgstr "Deslizar para ajustar su valoración" -#: ../../Zotlabs/Module/Connedit.php:763 ../../Zotlabs/Module/Connedit.php:768 +#: ../../Zotlabs/Module/Connedit.php:716 ../../Zotlabs/Module/Connedit.php:721 msgid "Optionally explain your rating" msgstr "Opcionalmente, puede explicar su valoración" -#: ../../Zotlabs/Module/Connedit.php:765 +#: ../../Zotlabs/Module/Connedit.php:718 msgid "Custom Filter" msgstr "Filtro personalizado" -#: ../../Zotlabs/Module/Connedit.php:766 +#: ../../Zotlabs/Module/Connedit.php:719 msgid "Only import posts with this text" msgstr "Importar solo entradas que contengan este texto" -#: ../../Zotlabs/Module/Connedit.php:766 ../../Zotlabs/Module/Connedit.php:767 +#: ../../Zotlabs/Module/Connedit.php:719 ../../Zotlabs/Module/Connedit.php:720 msgid "" "words one per line or #tags or /patterns/ or lang=xx, leave blank to import " "all posts" msgstr "Una sola opción por línea: palabras, #etiquetas, /patrones/ o lang=xx. Dejar en blanco para importarlo todo" -#: ../../Zotlabs/Module/Connedit.php:767 +#: ../../Zotlabs/Module/Connedit.php:720 msgid "Do not import posts with this text" msgstr "No importar entradas que contengan este texto" -#: ../../Zotlabs/Module/Connedit.php:769 +#: ../../Zotlabs/Module/Connedit.php:722 msgid "This information is public!" msgstr "¡Esta información es pública!" -#: ../../Zotlabs/Module/Connedit.php:774 +#: ../../Zotlabs/Module/Connedit.php:727 msgid "Connection Pending Approval" msgstr "Conexión pendiente de aprobación" -#: ../../Zotlabs/Module/Connedit.php:777 +#: ../../Zotlabs/Module/Connedit.php:730 msgid "inherited" msgstr "heredado" -#: ../../Zotlabs/Module/Connedit.php:778 ../../Zotlabs/Module/Connect.php:98 -#: ../../Zotlabs/Module/Events.php:474 ../../Zotlabs/Module/Cal.php:338 -#: ../../Zotlabs/Module/Chat.php:196 ../../Zotlabs/Module/Chat.php:238 -#: ../../Zotlabs/Module/Group.php:85 ../../Zotlabs/Module/Appman.php:126 -#: ../../Zotlabs/Module/Pdledit.php:66 -#: ../../Zotlabs/Module/Filestorage.php:161 -#: ../../Zotlabs/Module/Profiles.php:687 ../../Zotlabs/Module/Import.php:560 -#: ../../Zotlabs/Module/Photos.php:675 ../../Zotlabs/Module/Photos.php:1050 -#: ../../Zotlabs/Module/Photos.php:1090 ../../Zotlabs/Module/Photos.php:1208 -#: ../../Zotlabs/Module/Import_items.php:122 -#: ../../Zotlabs/Module/Invite.php:146 ../../Zotlabs/Module/Locs.php:121 -#: ../../Zotlabs/Module/Mail.php:370 ../../Zotlabs/Module/Mood.php:139 -#: ../../Zotlabs/Module/Mitem.php:235 ../../Zotlabs/Module/Admin.php:492 -#: ../../Zotlabs/Module/Admin.php:688 ../../Zotlabs/Module/Admin.php:771 -#: ../../Zotlabs/Module/Admin.php:1032 ../../Zotlabs/Module/Admin.php:1211 -#: ../../Zotlabs/Module/Admin.php:1421 ../../Zotlabs/Module/Admin.php:1648 -#: ../../Zotlabs/Module/Admin.php:1733 ../../Zotlabs/Module/Admin.php:2116 -#: ../../Zotlabs/Module/Poke.php:186 ../../Zotlabs/Module/Pconfig.php:107 -#: ../../Zotlabs/Module/Rate.php:170 ../../Zotlabs/Module/Settings.php:644 -#: ../../Zotlabs/Module/Settings.php:757 ../../Zotlabs/Module/Settings.php:806 -#: ../../Zotlabs/Module/Settings.php:832 ../../Zotlabs/Module/Settings.php:855 -#: ../../Zotlabs/Module/Settings.php:943 -#: ../../Zotlabs/Module/Settings.php:1129 ../../Zotlabs/Module/Setup.php:312 -#: ../../Zotlabs/Module/Setup.php:353 ../../Zotlabs/Module/Thing.php:316 -#: ../../Zotlabs/Module/Thing.php:362 ../../Zotlabs/Module/Sources.php:114 -#: ../../Zotlabs/Module/Sources.php:149 ../../Zotlabs/Module/Xchan.php:15 -#: ../../Zotlabs/Lib/ThreadItem.php:710 ../../include/widgets.php:763 -#: ../../include/js_strings.php:22 ../../view/theme/redbasic/php/config.php:99 -msgid "Submit" -msgstr "Enviar" - -#: ../../Zotlabs/Module/Connedit.php:779 +#: ../../Zotlabs/Module/Connedit.php:732 #, php-format msgid "" "Please choose the profile you would like to display to %s when viewing your " "profile securely." msgstr "Por favor, escoja el perfil que quiere mostrar a %s cuando esté viendo su perfil de forma segura." -#: ../../Zotlabs/Module/Connedit.php:781 +#: ../../Zotlabs/Module/Connedit.php:734 msgid "Their Settings" msgstr "Sus ajustes" -#: ../../Zotlabs/Module/Connedit.php:782 +#: ../../Zotlabs/Module/Connedit.php:735 msgid "My Settings" msgstr "Mis ajustes" -#: ../../Zotlabs/Module/Connedit.php:784 +#: ../../Zotlabs/Module/Connedit.php:737 msgid "Individual Permissions" msgstr "Permisos individuales" -#: ../../Zotlabs/Module/Connedit.php:785 +#: ../../Zotlabs/Module/Connedit.php:738 msgid "" "Some permissions may be inherited from your channel's privacy settings, which have higher " @@ -778,7 +883,7 @@ msgid "" " settings here." msgstr "Algunos permisos pueden ser heredados de los ajustes de privacidad de sus canales, los cuales tienen una prioridad más alta que los ajustes individuales. No puede cambiar estos ajustes aquí." -#: ../../Zotlabs/Module/Connedit.php:786 +#: ../../Zotlabs/Module/Connedit.php:739 msgid "" "Some permissions may be inherited from your channel's privacy settings, which have higher " @@ -786,121 +891,17 @@ msgid "" "they wont have any impact unless the inherited setting changes." msgstr "Algunos permisos pueden ser heredados de los ajustes de privacidad de sus canales, los cuales tienen una prioridad más alta que los ajustes individuales. Puede cambiar estos ajustes aquí, pero no tendrán ningún consecuencia hasta que cambie los ajustes heredados." -#: ../../Zotlabs/Module/Connedit.php:787 +#: ../../Zotlabs/Module/Connedit.php:740 msgid "Last update:" msgstr "Última actualización:" -#: ../../Zotlabs/Module/Display.php:17 ../../Zotlabs/Module/Directory.php:63 -#: ../../Zotlabs/Module/Photos.php:520 ../../Zotlabs/Module/Ratings.php:86 +#: ../../Zotlabs/Module/Directory.php:63 ../../Zotlabs/Module/Display.php:17 +#: ../../Zotlabs/Module/Photos.php:522 ../../Zotlabs/Module/Ratings.php:86 #: ../../Zotlabs/Module/Search.php:17 -#: ../../Zotlabs/Module/Viewconnections.php:23 +#: ../../Zotlabs/Module/Viewconnections.php:20 msgid "Public access denied." msgstr "Acceso público denegado." -#: ../../Zotlabs/Module/Display.php:40 ../../Zotlabs/Module/Filestorage.php:32 -#: ../../Zotlabs/Module/Admin.php:164 ../../Zotlabs/Module/Admin.php:1255 -#: ../../Zotlabs/Module/Admin.php:1561 ../../Zotlabs/Module/Thing.php:89 -#: ../../Zotlabs/Module/Viewsrc.php:24 ../../include/items.php:3369 -msgid "Item not found." -msgstr "Elemento no encontrado." - -#: ../../Zotlabs/Module/Id.php:13 -msgid "First Name" -msgstr "Nombre" - -#: ../../Zotlabs/Module/Id.php:14 -msgid "Last Name" -msgstr "Apellido" - -#: ../../Zotlabs/Module/Id.php:15 -msgid "Nickname" -msgstr "Sobrenombre o Alias" - -#: ../../Zotlabs/Module/Id.php:16 -msgid "Full Name" -msgstr "Nombre completo" - -#: ../../Zotlabs/Module/Id.php:17 ../../Zotlabs/Module/Id.php:18 -#: ../../Zotlabs/Module/Admin.php:1035 ../../Zotlabs/Module/Admin.php:1047 -#: ../../include/network.php:2203 -msgid "Email" -msgstr "Correo electrónico" - -#: ../../Zotlabs/Module/Id.php:19 ../../Zotlabs/Module/Id.php:20 -#: ../../Zotlabs/Module/Id.php:21 ../../Zotlabs/Lib/Apps.php:238 -msgid "Profile Photo" -msgstr "Foto del perfil" - -#: ../../Zotlabs/Module/Id.php:22 -msgid "Profile Photo 16px" -msgstr "Foto del perfil 16px" - -#: ../../Zotlabs/Module/Id.php:23 -msgid "Profile Photo 32px" -msgstr "Foto del perfil 32px" - -#: ../../Zotlabs/Module/Id.php:24 -msgid "Profile Photo 48px" -msgstr "Foto del perfil 48px" - -#: ../../Zotlabs/Module/Id.php:25 -msgid "Profile Photo 64px" -msgstr "Foto del perfil 64px" - -#: ../../Zotlabs/Module/Id.php:26 -msgid "Profile Photo 80px" -msgstr "Foto del perfil 80px" - -#: ../../Zotlabs/Module/Id.php:27 -msgid "Profile Photo 128px" -msgstr "Foto del perfil 128px" - -#: ../../Zotlabs/Module/Id.php:28 -msgid "Timezone" -msgstr "Huso horario" - -#: ../../Zotlabs/Module/Id.php:29 ../../Zotlabs/Module/Profiles.php:731 -msgid "Homepage URL" -msgstr "Dirección de la página personal" - -#: ../../Zotlabs/Module/Id.php:30 ../../Zotlabs/Lib/Apps.php:236 -msgid "Language" -msgstr "Idioma" - -#: ../../Zotlabs/Module/Id.php:31 -msgid "Birth Year" -msgstr "Año de nacimiento" - -#: ../../Zotlabs/Module/Id.php:32 -msgid "Birth Month" -msgstr "Mes de nacimiento" - -#: ../../Zotlabs/Module/Id.php:33 -msgid "Birth Day" -msgstr "Día de nacimiento" - -#: ../../Zotlabs/Module/Id.php:34 -msgid "Birthdate" -msgstr "Fecha de nacimiento" - -#: ../../Zotlabs/Module/Id.php:35 ../../Zotlabs/Module/Profiles.php:454 -msgid "Gender" -msgstr "Género" - -#: ../../Zotlabs/Module/Id.php:108 ../../include/selectors.php:49 -#: ../../include/selectors.php:66 -msgid "Male" -msgstr "Hombre" - -#: ../../Zotlabs/Module/Id.php:110 ../../include/selectors.php:49 -#: ../../include/selectors.php:66 -msgid "Female" -msgstr "Mujer" - -#: ../../Zotlabs/Module/Follow.php:34 -msgid "Channel added." -msgstr "Canal añadido." - #: ../../Zotlabs/Module/Directory.php:243 #, php-format msgid "%d rating" @@ -920,12 +921,12 @@ msgstr "Estado:" msgid "Homepage: " msgstr "Página personal:" -#: ../../Zotlabs/Module/Directory.php:306 ../../include/channel.php:1223 +#: ../../Zotlabs/Module/Directory.php:306 ../../include/channel.php:1183 msgid "Age:" msgstr "Edad:" -#: ../../Zotlabs/Module/Directory.php:311 ../../include/channel.php:1066 -#: ../../include/event.php:52 ../../include/event.php:84 +#: ../../Zotlabs/Module/Directory.php:311 ../../include/event.php:52 +#: ../../include/event.php:84 ../../include/channel.php:1027 #: ../../include/bb2diaspora.php:507 msgid "Location:" msgstr "Ubicación:" @@ -934,18 +935,18 @@ msgstr "Ubicación:" msgid "Description:" msgstr "Descripción:" -#: ../../Zotlabs/Module/Directory.php:322 ../../include/channel.php:1239 +#: ../../Zotlabs/Module/Directory.php:322 ../../include/channel.php:1199 msgid "Hometown:" msgstr "Lugar de nacimiento:" -#: ../../Zotlabs/Module/Directory.php:324 ../../include/channel.php:1247 +#: ../../Zotlabs/Module/Directory.php:324 ../../include/channel.php:1207 msgid "About:" msgstr "Sobre mí:" #: ../../Zotlabs/Module/Directory.php:325 ../../Zotlabs/Module/Match.php:68 -#: ../../Zotlabs/Module/Suggest.php:56 ../../include/channel.php:1051 -#: ../../include/connections.php:78 ../../include/conversation.php:959 -#: ../../include/widgets.php:147 ../../include/widgets.php:184 +#: ../../Zotlabs/Module/Suggest.php:56 ../../include/widgets.php:147 +#: ../../include/widgets.php:184 ../../include/connections.php:78 +#: ../../include/conversation.php:956 ../../include/channel.php:1012 msgid "Connect" msgstr "Conectar" @@ -1021,322 +1022,38 @@ msgstr "De más antiguo a más nuevo" msgid "No entries (some entries may be hidden)." msgstr "Sin entradas (algunas entradas pueden estar ocultas)." -#: ../../Zotlabs/Module/Connect.php:61 ../../Zotlabs/Module/Connect.php:109 -msgid "Continue" -msgstr "Continuar" +#: ../../Zotlabs/Module/Display.php:40 ../../Zotlabs/Module/Filestorage.php:33 +#: ../../Zotlabs/Module/Admin.php:164 ../../Zotlabs/Module/Admin.php:1255 +#: ../../Zotlabs/Module/Admin.php:1561 ../../Zotlabs/Module/Thing.php:89 +#: ../../Zotlabs/Module/Viewsrc.php:24 ../../include/items.php:3359 +msgid "Item not found." +msgstr "Elemento no encontrado." -#: ../../Zotlabs/Module/Connect.php:90 -msgid "Premium Channel Setup" -msgstr "Configuración del canal premium" - -#: ../../Zotlabs/Module/Connect.php:92 -msgid "Enable premium channel connection restrictions" -msgstr "Habilitar restricciones de conexión del canal premium" - -#: ../../Zotlabs/Module/Connect.php:93 -msgid "" -"Please enter your restrictions or conditions, such as paypal receipt, usage " -"guidelines, etc." -msgstr "Por favor introduzca sus restricciones o condiciones, como recibo de paypal, normas de uso, etc." - -#: ../../Zotlabs/Module/Connect.php:95 ../../Zotlabs/Module/Connect.php:115 -msgid "" -"This channel may require additional steps or acknowledgement of the " -"following conditions prior to connecting:" -msgstr "Este canal puede requerir antes de conectar unos pasos adicionales o el conocimiento de las siguientes condiciones:" - -#: ../../Zotlabs/Module/Connect.php:96 -msgid "" -"Potential connections will then see the following text before proceeding:" -msgstr "Las posibles conexiones verán, por tanto, el siguiente texto antes de proceder:" - -#: ../../Zotlabs/Module/Connect.php:97 ../../Zotlabs/Module/Connect.php:118 -msgid "" -"By continuing, I certify that I have complied with any instructions provided" -" on this page." -msgstr "Al continuar, certifico que he cumplido con todas las instrucciones proporcionadas en esta página." - -#: ../../Zotlabs/Module/Connect.php:106 -msgid "(No specific instructions have been provided by the channel owner.)" -msgstr "(No ha sido proporcionada ninguna instrucción específica por el propietario del canal.)" - -#: ../../Zotlabs/Module/Connect.php:114 -msgid "Restricted or Premium Channel" -msgstr "Canal premium o restringido" - -#: ../../Zotlabs/Module/Events.php:25 -msgid "Calendar entries imported." -msgstr "Entradas de calendario importadas." - -#: ../../Zotlabs/Module/Events.php:27 -msgid "No calendar entries found." -msgstr "No se han encontrado entradas de calendario." - -#: ../../Zotlabs/Module/Events.php:104 -msgid "Event can not end before it has started." -msgstr "Un evento no puede terminar antes de que haya comenzado." - -#: ../../Zotlabs/Module/Events.php:106 ../../Zotlabs/Module/Events.php:115 -#: ../../Zotlabs/Module/Events.php:135 -msgid "Unable to generate preview." -msgstr "No se puede crear la vista previa." - -#: ../../Zotlabs/Module/Events.php:113 -msgid "Event title and start time are required." -msgstr "Se requieren el título del evento y su hora de inicio." - -#: ../../Zotlabs/Module/Events.php:133 ../../Zotlabs/Module/Events.php:258 -msgid "Event not found." -msgstr "Evento no encontrado." - -#: ../../Zotlabs/Module/Events.php:253 ../../Zotlabs/Module/Like.php:372 -#: ../../Zotlabs/Module/Tagger.php:51 ../../include/conversation.php:123 -#: ../../include/text.php:1924 ../../include/event.php:951 -msgid "event" -msgstr "evento" - -#: ../../Zotlabs/Module/Events.php:448 -msgid "Edit event title" -msgstr "Editar el título del evento" - -#: ../../Zotlabs/Module/Events.php:448 -msgid "Event title" -msgstr "Título del evento" - -#: ../../Zotlabs/Module/Events.php:448 ../../Zotlabs/Module/Events.php:453 -#: ../../Zotlabs/Module/Appman.php:115 ../../Zotlabs/Module/Appman.php:116 -#: ../../Zotlabs/Module/Profiles.php:709 ../../Zotlabs/Module/Profiles.php:713 -#: ../../include/datetime.php:245 -msgid "Required" -msgstr "Obligatorio" - -#: ../../Zotlabs/Module/Events.php:450 -msgid "Categories (comma-separated list)" -msgstr "Categorías (lista separada por comas)" - -#: ../../Zotlabs/Module/Events.php:451 -msgid "Edit Category" -msgstr "Editar la categoría" - -#: ../../Zotlabs/Module/Events.php:451 -msgid "Category" -msgstr "Categoría" - -#: ../../Zotlabs/Module/Events.php:454 -msgid "Edit start date and time" -msgstr "Modificar la fecha y hora de comienzo" - -#: ../../Zotlabs/Module/Events.php:454 -msgid "Start date and time" -msgstr "Fecha y hora de comienzo" - -#: ../../Zotlabs/Module/Events.php:455 ../../Zotlabs/Module/Events.php:458 -msgid "Finish date and time are not known or not relevant" -msgstr "La fecha y hora de terminación no se conocen o no son relevantes" - -#: ../../Zotlabs/Module/Events.php:457 -msgid "Edit finish date and time" -msgstr "Modificar la fecha y hora de terminación" - -#: ../../Zotlabs/Module/Events.php:457 -msgid "Finish date and time" -msgstr "Fecha y hora de terminación" - -#: ../../Zotlabs/Module/Events.php:459 ../../Zotlabs/Module/Events.php:460 -msgid "Adjust for viewer timezone" -msgstr "Ajustar para obtener el visor de los husos horarios" - -#: ../../Zotlabs/Module/Events.php:459 -msgid "" -"Important for events that happen in a particular place. Not practical for " -"global holidays." -msgstr "Importante para los eventos que suceden en un lugar determinado. No es práctico para los globales." - -#: ../../Zotlabs/Module/Events.php:461 -msgid "Edit Description" -msgstr "Editar la descripción" - -#: ../../Zotlabs/Module/Events.php:461 ../../Zotlabs/Module/Appman.php:117 -#: ../../Zotlabs/Module/Rbmark.php:101 -msgid "Description" -msgstr "Descripción" - -#: ../../Zotlabs/Module/Events.php:463 -msgid "Edit Location" -msgstr "Modificar la dirección" - -#: ../../Zotlabs/Module/Events.php:463 ../../Zotlabs/Module/Profiles.php:477 -#: ../../Zotlabs/Module/Profiles.php:698 ../../Zotlabs/Module/Locs.php:117 -#: ../../Zotlabs/Module/Pubsites.php:41 ../../include/js_strings.php:25 -msgid "Location" -msgstr "Ubicación" - -#: ../../Zotlabs/Module/Events.php:466 ../../Zotlabs/Module/Events.php:468 -msgid "Share this event" -msgstr "Compartir este evento" - -#: ../../Zotlabs/Module/Events.php:469 ../../Zotlabs/Module/Photos.php:1091 -#: ../../Zotlabs/Module/Webpages.php:201 ../../Zotlabs/Lib/ThreadItem.php:719 -#: ../../include/page_widgets.php:43 ../../include/conversation.php:1198 -msgid "Preview" -msgstr "Previsualizar" - -#: ../../Zotlabs/Module/Events.php:470 ../../include/conversation.php:1247 -msgid "Permission settings" -msgstr "Configuración de permisos" - -#: ../../Zotlabs/Module/Events.php:475 -msgid "Advanced Options" -msgstr "Opciones avanzadas" - -#: ../../Zotlabs/Module/Events.php:587 ../../Zotlabs/Module/Cal.php:259 -msgid "l, F j" -msgstr "l j F" - -#: ../../Zotlabs/Module/Events.php:609 -msgid "Edit event" -msgstr "Editar evento" - -#: ../../Zotlabs/Module/Events.php:611 -msgid "Delete event" -msgstr "Borrar evento" - -#: ../../Zotlabs/Module/Events.php:636 ../../Zotlabs/Module/Cal.php:308 -#: ../../include/text.php:1712 -msgid "Link to Source" -msgstr "Enlazar con la entrada en su ubicación original" - -#: ../../Zotlabs/Module/Events.php:645 -msgid "calendar" -msgstr "calendario" - -#: ../../Zotlabs/Module/Events.php:664 ../../Zotlabs/Module/Cal.php:331 -msgid "Edit Event" -msgstr "Editar el evento" - -#: ../../Zotlabs/Module/Events.php:664 ../../Zotlabs/Module/Cal.php:331 -msgid "Create Event" -msgstr "Crear un evento" - -#: ../../Zotlabs/Module/Events.php:665 ../../Zotlabs/Module/Events.php:674 -#: ../../Zotlabs/Module/Cal.php:332 ../../Zotlabs/Module/Cal.php:339 -#: ../../Zotlabs/Module/Photos.php:947 -msgid "Previous" -msgstr "Anterior" - -#: ../../Zotlabs/Module/Events.php:666 ../../Zotlabs/Module/Events.php:675 -#: ../../Zotlabs/Module/Cal.php:333 ../../Zotlabs/Module/Cal.php:340 -#: ../../Zotlabs/Module/Photos.php:956 ../../Zotlabs/Module/Setup.php:267 -msgid "Next" -msgstr "Siguiente" - -#: ../../Zotlabs/Module/Events.php:667 ../../Zotlabs/Module/Cal.php:334 -msgid "Export" -msgstr "Exportar" - -#: ../../Zotlabs/Module/Events.php:670 ../../Zotlabs/Module/Layouts.php:197 -#: ../../Zotlabs/Module/Pubsites.php:47 ../../Zotlabs/Module/Blocks.php:166 -#: ../../Zotlabs/Module/Webpages.php:200 ../../include/page_widgets.php:42 -msgid "View" -msgstr "Ver" - -#: ../../Zotlabs/Module/Events.php:671 -msgid "Month" -msgstr "" - -#: ../../Zotlabs/Module/Events.php:672 -msgid "Week" -msgstr "" - -#: ../../Zotlabs/Module/Events.php:673 -msgid "Day" -msgstr "" - -#: ../../Zotlabs/Module/Events.php:676 ../../Zotlabs/Module/Cal.php:341 -msgid "Today" -msgstr "Hoy" - -#: ../../Zotlabs/Module/Events.php:707 -msgid "Event removed" -msgstr "Evento borrado" - -#: ../../Zotlabs/Module/Events.php:710 -msgid "Failed to remove event" -msgstr "Error al eliminar el evento" - -#: ../../Zotlabs/Module/Bookmarks.php:53 -msgid "Bookmark added" -msgstr "Marcador añadido" - -#: ../../Zotlabs/Module/Bookmarks.php:75 -msgid "My Bookmarks" -msgstr "Mis marcadores" - -#: ../../Zotlabs/Module/Bookmarks.php:86 -msgid "My Connections Bookmarks" -msgstr "Marcadores de mis conexiones" - -#: ../../Zotlabs/Module/Editpost.php:24 ../../Zotlabs/Module/Editlayout.php:79 -#: ../../Zotlabs/Module/Editwebpage.php:80 #: ../../Zotlabs/Module/Editblock.php:79 ../../Zotlabs/Module/Editblock.php:95 +#: ../../Zotlabs/Module/Editpost.php:24 ../../Zotlabs/Module/Editlayout.php:79 +#: ../../Zotlabs/Module/Editwebpage.php:81 msgid "Item not found" msgstr "Elemento no encontrado" -#: ../../Zotlabs/Module/Editpost.php:35 -msgid "Item is not editable" -msgstr "El elemento no es editable" +#: ../../Zotlabs/Module/Editblock.php:124 ../../include/conversation.php:1228 +msgid "Title (optional)" +msgstr "Título (opcional)" -#: ../../Zotlabs/Module/Editpost.php:106 ../../Zotlabs/Module/Rpost.php:134 -msgid "Edit post" -msgstr "Editar la entrada" +#: ../../Zotlabs/Module/Editblock.php:133 +msgid "Edit Block" +msgstr "Modificar este bloque" -#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:222 -#: ../../include/nav.php:92 ../../include/conversation.php:1647 -msgid "Photos" -msgstr "Fotos" +#: ../../Zotlabs/Module/Common.php:14 +msgid "No channel." +msgstr "Ningún canal." -#: ../../Zotlabs/Module/Fbrowser.php:66 ../../Zotlabs/Module/Fbrowser.php:88 -#: ../../Zotlabs/Module/Admin.php:1406 ../../Zotlabs/Module/Settings.php:645 -#: ../../Zotlabs/Module/Settings.php:671 ../../Zotlabs/Module/Tagrm.php:15 -#: ../../Zotlabs/Module/Tagrm.php:138 ../../Zotlabs/Module/Wiki.php:166 -#: ../../Zotlabs/Module/Wiki.php:202 ../../include/conversation.php:1235 -#: ../../include/conversation.php:1274 -msgid "Cancel" -msgstr "Cancelar" +#: ../../Zotlabs/Module/Common.php:43 +msgid "Common connections" +msgstr "Conexiones comunes" -#: ../../Zotlabs/Module/Page.php:40 ../../Zotlabs/Module/Block.php:31 -msgid "Invalid item." -msgstr "Elemento no válido." - -#: ../../Zotlabs/Module/Page.php:56 ../../Zotlabs/Module/Cal.php:62 -#: ../../Zotlabs/Module/Block.php:43 ../../Zotlabs/Module/Wall_upload.php:33 -msgid "Channel not found." -msgstr "Canal no encontrado." - -#: ../../Zotlabs/Module/Page.php:131 -msgid "" -"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod " -"tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam," -" quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo " -"consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse " -"cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat " -"non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." -msgstr "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." - -#: ../../Zotlabs/Module/Filer.php:52 -msgid "Save to Folder:" -msgstr "Guardar en carpeta:" - -#: ../../Zotlabs/Module/Filer.php:52 -msgid "- select -" -msgstr "- seleccionar -" - -#: ../../Zotlabs/Module/Filer.php:53 ../../Zotlabs/Module/Admin.php:2033 -#: ../../Zotlabs/Module/Admin.php:2053 ../../Zotlabs/Module/Rbmark.php:32 -#: ../../Zotlabs/Module/Rbmark.php:104 ../../include/text.php:926 -#: ../../include/text.php:938 ../../include/widgets.php:201 -msgid "Save" -msgstr "Guardar" +#: ../../Zotlabs/Module/Common.php:48 +msgid "No connections in common." +msgstr "Ninguna conexión en común." #: ../../Zotlabs/Module/Connections.php:56 #: ../../Zotlabs/Module/Connections.php:161 @@ -1364,7 +1081,7 @@ msgstr "Archivadas" #: ../../Zotlabs/Module/Connections.php:76 #: ../../Zotlabs/Module/Connections.php:86 ../../Zotlabs/Module/Menu.php:116 -#: ../../include/conversation.php:1550 +#: ../../include/conversation.php:1535 msgid "New" msgstr "Nuevas" @@ -1451,15 +1168,15 @@ msgstr "Ignorar esta conexión" msgid "Recent activity" msgstr "Actividad reciente" -#: ../../Zotlabs/Module/Connections.php:302 ../../Zotlabs/Lib/Apps.php:209 -#: ../../include/nav.php:188 ../../include/text.php:855 +#: ../../Zotlabs/Module/Connections.php:302 ../../Zotlabs/Lib/Apps.php:208 +#: ../../include/text.php:875 ../../include/nav.php:186 msgid "Connections" msgstr "Conexiones" #: ../../Zotlabs/Module/Connections.php:306 ../../Zotlabs/Module/Search.php:44 -#: ../../Zotlabs/Lib/Apps.php:230 ../../include/nav.php:167 -#: ../../include/text.php:925 ../../include/text.php:937 -#: ../../include/acl_selectors.php:274 +#: ../../Zotlabs/Lib/Apps.php:228 ../../include/text.php:945 +#: ../../include/text.php:957 ../../include/nav.php:165 +#: ../../include/acl_selectors.php:276 msgid "Search" msgstr "Buscar" @@ -1472,7 +1189,7 @@ msgid "Connections search" msgstr "Buscar conexiones" #: ../../Zotlabs/Module/Cover_photo.php:58 -#: ../../Zotlabs/Module/Profile_photo.php:61 +#: ../../Zotlabs/Module/Profile_photo.php:79 msgid "Image uploaded but image cropping failed." msgstr "Imagen actualizada, pero el recorte de la imagen ha fallado. " @@ -1482,66 +1199,66 @@ msgid "Cover Photos" msgstr "Imágenes de portada del perfil" #: ../../Zotlabs/Module/Cover_photo.php:154 -#: ../../Zotlabs/Module/Profile_photo.php:135 +#: ../../Zotlabs/Module/Profile_photo.php:133 msgid "Image resize failed." msgstr "El ajuste del tamaño de la imagen ha fallado." #: ../../Zotlabs/Module/Cover_photo.php:168 -#: ../../Zotlabs/Module/Profile_photo.php:196 ../../include/photos.php:148 +#: ../../Zotlabs/Module/Profile_photo.php:192 ../../include/photos.php:144 msgid "Unable to process image" msgstr "No ha sido posible procesar la imagen" #: ../../Zotlabs/Module/Cover_photo.php:192 -#: ../../Zotlabs/Module/Profile_photo.php:223 +#: ../../Zotlabs/Module/Profile_photo.php:217 msgid "Image upload failed." msgstr "La carga de la imagen ha fallado." #: ../../Zotlabs/Module/Cover_photo.php:210 -#: ../../Zotlabs/Module/Profile_photo.php:242 +#: ../../Zotlabs/Module/Profile_photo.php:236 msgid "Unable to process image." msgstr "No ha sido posible procesar la imagen." -#: ../../Zotlabs/Module/Cover_photo.php:233 ../../include/items.php:4283 +#: ../../Zotlabs/Module/Cover_photo.php:233 ../../include/items.php:4270 msgid "female" msgstr "mujer" -#: ../../Zotlabs/Module/Cover_photo.php:234 ../../include/items.php:4284 +#: ../../Zotlabs/Module/Cover_photo.php:234 ../../include/items.php:4271 #, php-format msgid "%1$s updated her %2$s" msgstr "%1$s ha actualizado su %2$s" -#: ../../Zotlabs/Module/Cover_photo.php:235 ../../include/items.php:4285 +#: ../../Zotlabs/Module/Cover_photo.php:235 ../../include/items.php:4272 msgid "male" msgstr "hombre" -#: ../../Zotlabs/Module/Cover_photo.php:236 ../../include/items.php:4286 +#: ../../Zotlabs/Module/Cover_photo.php:236 ../../include/items.php:4273 #, php-format msgid "%1$s updated his %2$s" msgstr "%1$s ha actualizado su %2$s" -#: ../../Zotlabs/Module/Cover_photo.php:238 ../../include/items.php:4288 +#: ../../Zotlabs/Module/Cover_photo.php:238 ../../include/items.php:4275 #, php-format msgid "%1$s updated their %2$s" msgstr "%1$s ha actualizado su %2$s" -#: ../../Zotlabs/Module/Cover_photo.php:240 ../../include/channel.php:1726 +#: ../../Zotlabs/Module/Cover_photo.php:240 ../../include/channel.php:1661 msgid "cover photo" msgstr "Imagen de portada del perfil" #: ../../Zotlabs/Module/Cover_photo.php:303 #: ../../Zotlabs/Module/Cover_photo.php:318 -#: ../../Zotlabs/Module/Profile_photo.php:300 -#: ../../Zotlabs/Module/Profile_photo.php:341 +#: ../../Zotlabs/Module/Profile_photo.php:283 +#: ../../Zotlabs/Module/Profile_photo.php:324 msgid "Photo not available." msgstr "Foto no disponible." #: ../../Zotlabs/Module/Cover_photo.php:354 -#: ../../Zotlabs/Module/Profile_photo.php:387 +#: ../../Zotlabs/Module/Profile_photo.php:365 msgid "Upload File:" msgstr "Subir fichero:" #: ../../Zotlabs/Module/Cover_photo.php:355 -#: ../../Zotlabs/Module/Profile_photo.php:388 +#: ../../Zotlabs/Module/Profile_photo.php:366 msgid "Select a profile:" msgstr "Seleccionar un perfil:" @@ -1550,69 +1267,200 @@ msgid "Upload Cover Photo" msgstr "Subir imagen de portada del perfil" #: ../../Zotlabs/Module/Cover_photo.php:361 -#: ../../Zotlabs/Module/Profile_photo.php:396 -#: ../../Zotlabs/Module/Settings.php:1080 +#: ../../Zotlabs/Module/Profile_photo.php:374 +#: ../../Zotlabs/Module/Settings.php:985 msgid "or" msgstr "o" #: ../../Zotlabs/Module/Cover_photo.php:361 -#: ../../Zotlabs/Module/Profile_photo.php:396 +#: ../../Zotlabs/Module/Profile_photo.php:374 msgid "skip this step" msgstr "Omitir este paso" #: ../../Zotlabs/Module/Cover_photo.php:361 -#: ../../Zotlabs/Module/Profile_photo.php:396 +#: ../../Zotlabs/Module/Profile_photo.php:374 msgid "select a photo from your photo albums" msgstr "Seleccione una foto de sus álbumes de fotos" #: ../../Zotlabs/Module/Cover_photo.php:377 -#: ../../Zotlabs/Module/Profile_photo.php:415 +#: ../../Zotlabs/Module/Profile_photo.php:390 msgid "Crop Image" msgstr "Recortar imagen" #: ../../Zotlabs/Module/Cover_photo.php:378 -#: ../../Zotlabs/Module/Profile_photo.php:416 +#: ../../Zotlabs/Module/Profile_photo.php:391 msgid "Please adjust the image cropping for optimum viewing." msgstr "Por favor ajuste el recorte de la imagen para una visión óptima." #: ../../Zotlabs/Module/Cover_photo.php:380 -#: ../../Zotlabs/Module/Profile_photo.php:418 +#: ../../Zotlabs/Module/Profile_photo.php:393 msgid "Done Editing" msgstr "Edición completada" -#: ../../Zotlabs/Module/Impel.php:41 ../../include/bbcode.php:192 -msgid "webpage" -msgstr "página web" +#: ../../Zotlabs/Module/Editpost.php:35 +msgid "Item is not editable" +msgstr "El elemento no es editable" -#: ../../Zotlabs/Module/Impel.php:46 ../../include/bbcode.php:198 -msgid "block" -msgstr "bloque" +#: ../../Zotlabs/Module/Editpost.php:106 ../../Zotlabs/Module/Rpost.php:135 +msgid "Edit post" +msgstr "Editar la entrada" -#: ../../Zotlabs/Module/Impel.php:51 ../../include/bbcode.php:195 -msgid "layout" -msgstr "plantilla" +#: ../../Zotlabs/Module/Events.php:26 +msgid "Calendar entries imported." +msgstr "Entradas de calendario importadas." -#: ../../Zotlabs/Module/Impel.php:58 ../../include/bbcode.php:201 -msgid "menu" -msgstr "menú" +#: ../../Zotlabs/Module/Events.php:28 +msgid "No calendar entries found." +msgstr "No se han encontrado entradas de calendario." -#: ../../Zotlabs/Module/Impel.php:187 -#, php-format -msgid "%s element installed" -msgstr "%s elemento instalado" +#: ../../Zotlabs/Module/Events.php:105 +msgid "Event can not end before it has started." +msgstr "Un evento no puede terminar antes de que haya comenzado." -#: ../../Zotlabs/Module/Impel.php:190 -#, php-format -msgid "%s element installation failed" -msgstr "Elemento con instalación fallida: %s" +#: ../../Zotlabs/Module/Events.php:107 ../../Zotlabs/Module/Events.php:116 +#: ../../Zotlabs/Module/Events.php:136 +msgid "Unable to generate preview." +msgstr "No se puede crear la vista previa." -#: ../../Zotlabs/Module/Cal.php:69 -msgid "Permissions denied." -msgstr "Permisos denegados." +#: ../../Zotlabs/Module/Events.php:114 +msgid "Event title and start time are required." +msgstr "Se requieren el título del evento y su hora de inicio." -#: ../../Zotlabs/Module/Cal.php:337 -msgid "Import" -msgstr "Importar" +#: ../../Zotlabs/Module/Events.php:134 ../../Zotlabs/Module/Events.php:259 +msgid "Event not found." +msgstr "Evento no encontrado." + +#: ../../Zotlabs/Module/Events.php:254 ../../Zotlabs/Module/Like.php:373 +#: ../../Zotlabs/Module/Tagger.php:51 ../../include/event.php:949 +#: ../../include/text.php:1943 ../../include/conversation.php:123 +msgid "event" +msgstr "evento" + +#: ../../Zotlabs/Module/Events.php:449 +msgid "Edit event title" +msgstr "Editar el título del evento" + +#: ../../Zotlabs/Module/Events.php:449 +msgid "Event title" +msgstr "Título del evento" + +#: ../../Zotlabs/Module/Events.php:449 ../../Zotlabs/Module/Events.php:454 +#: ../../Zotlabs/Module/Profiles.php:709 ../../Zotlabs/Module/Profiles.php:713 +#: ../../Zotlabs/Module/Appman.php:115 ../../Zotlabs/Module/Appman.php:116 +#: ../../include/datetime.php:245 +msgid "Required" +msgstr "Obligatorio" + +#: ../../Zotlabs/Module/Events.php:451 +msgid "Categories (comma-separated list)" +msgstr "Categorías (lista separada por comas)" + +#: ../../Zotlabs/Module/Events.php:452 +msgid "Edit Category" +msgstr "Editar la categoría" + +#: ../../Zotlabs/Module/Events.php:452 +msgid "Category" +msgstr "Categoría" + +#: ../../Zotlabs/Module/Events.php:455 +msgid "Edit start date and time" +msgstr "Modificar la fecha y hora de comienzo" + +#: ../../Zotlabs/Module/Events.php:455 +msgid "Start date and time" +msgstr "Fecha y hora de comienzo" + +#: ../../Zotlabs/Module/Events.php:456 ../../Zotlabs/Module/Events.php:459 +msgid "Finish date and time are not known or not relevant" +msgstr "La fecha y hora de terminación no se conocen o no son relevantes" + +#: ../../Zotlabs/Module/Events.php:458 +msgid "Edit finish date and time" +msgstr "Modificar la fecha y hora de terminación" + +#: ../../Zotlabs/Module/Events.php:458 +msgid "Finish date and time" +msgstr "Fecha y hora de terminación" + +#: ../../Zotlabs/Module/Events.php:460 ../../Zotlabs/Module/Events.php:461 +msgid "Adjust for viewer timezone" +msgstr "Ajustar para obtener el visor de los husos horarios" + +#: ../../Zotlabs/Module/Events.php:460 +msgid "" +"Important for events that happen in a particular place. Not practical for " +"global holidays." +msgstr "Importante para los eventos que suceden en un lugar determinado. No es práctico para los globales." + +#: ../../Zotlabs/Module/Events.php:462 +msgid "Edit Description" +msgstr "Editar la descripción" + +#: ../../Zotlabs/Module/Events.php:462 ../../Zotlabs/Module/Appman.php:117 +#: ../../Zotlabs/Module/Rbmark.php:101 +msgid "Description" +msgstr "Descripción" + +#: ../../Zotlabs/Module/Events.php:464 +msgid "Edit Location" +msgstr "Modificar la dirección" + +#: ../../Zotlabs/Module/Events.php:464 ../../Zotlabs/Module/Locs.php:117 +#: ../../Zotlabs/Module/Profiles.php:477 ../../Zotlabs/Module/Profiles.php:698 +#: ../../Zotlabs/Module/Pubsites.php:41 ../../include/js_strings.php:25 +msgid "Location" +msgstr "Ubicación" + +#: ../../Zotlabs/Module/Events.php:467 ../../Zotlabs/Module/Events.php:469 +msgid "Share this event" +msgstr "Compartir este evento" + +#: ../../Zotlabs/Module/Events.php:470 ../../Zotlabs/Module/Photos.php:1093 +#: ../../Zotlabs/Module/Webpages.php:194 ../../Zotlabs/Lib/ThreadItem.php:719 +#: ../../include/conversation.php:1187 ../../include/page_widgets.php:40 +msgid "Preview" +msgstr "Previsualizar" + +#: ../../Zotlabs/Module/Events.php:471 ../../include/conversation.php:1232 +msgid "Permission settings" +msgstr "Configuración de permisos" + +#: ../../Zotlabs/Module/Events.php:476 +msgid "Advanced Options" +msgstr "Opciones avanzadas" + +#: ../../Zotlabs/Module/Events.php:610 +msgid "Edit event" +msgstr "Editar evento" + +#: ../../Zotlabs/Module/Events.php:612 +msgid "Delete event" +msgstr "Borrar evento" + +#: ../../Zotlabs/Module/Events.php:646 +msgid "calendar" +msgstr "calendario" + +#: ../../Zotlabs/Module/Events.php:706 +msgid "Event removed" +msgstr "Evento borrado" + +#: ../../Zotlabs/Module/Events.php:709 +msgid "Failed to remove event" +msgstr "Error al eliminar el evento" + +#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:220 +#: ../../include/nav.php:92 ../../include/conversation.php:1632 +msgid "Photos" +msgstr "Fotos" + +#: ../../Zotlabs/Module/Fbrowser.php:66 ../../Zotlabs/Module/Fbrowser.php:88 +#: ../../Zotlabs/Module/Admin.php:1406 ../../Zotlabs/Module/Settings.php:591 +#: ../../Zotlabs/Module/Settings.php:617 ../../Zotlabs/Module/Tagrm.php:15 +#: ../../Zotlabs/Module/Tagrm.php:138 ../../include/conversation.php:1259 +msgid "Cancel" +msgstr "Cancelar" #: ../../Zotlabs/Module/Dirsearch.php:25 ../../Zotlabs/Module/Regdir.php:49 msgid "This site is not a directory server" @@ -1622,184 +1470,112 @@ msgstr "Este sitio no es un servidor de directorio" msgid "This directory server requires an access token" msgstr "El servidor de este directorio necesita un \"token\" de acceso" -#: ../../Zotlabs/Module/Chat.php:25 ../../Zotlabs/Module/Channel.php:28 -#: ../../Zotlabs/Module/Wiki.php:20 -msgid "You must be logged in to see this page." -msgstr "Debe haber iniciado sesión para poder ver esta página." +#: ../../Zotlabs/Module/Filer.php:52 +msgid "Save to Folder:" +msgstr "Guardar en carpeta:" -#: ../../Zotlabs/Module/Chat.php:181 -msgid "Room not found" -msgstr "Sala no encontrada" +#: ../../Zotlabs/Module/Filer.php:52 +msgid "- select -" +msgstr "- seleccionar -" -#: ../../Zotlabs/Module/Chat.php:197 -msgid "Leave Room" -msgstr "Abandonar la sala" +#: ../../Zotlabs/Module/Filer.php:53 ../../Zotlabs/Module/Admin.php:2033 +#: ../../Zotlabs/Module/Admin.php:2053 ../../Zotlabs/Module/Rbmark.php:32 +#: ../../Zotlabs/Module/Rbmark.php:104 ../../include/text.php:946 +#: ../../include/text.php:958 ../../include/widgets.php:201 +msgid "Save" +msgstr "Guardar" -#: ../../Zotlabs/Module/Chat.php:198 -msgid "Delete Room" -msgstr "Eliminar esta sala" - -#: ../../Zotlabs/Module/Chat.php:199 -msgid "I am away right now" -msgstr "Estoy ausente momentáneamente" - -#: ../../Zotlabs/Module/Chat.php:200 -msgid "I am online" -msgstr "Estoy conectado/a" - -#: ../../Zotlabs/Module/Chat.php:202 -msgid "Bookmark this room" -msgstr "Añadir esta sala a Marcadores" - -#: ../../Zotlabs/Module/Chat.php:205 ../../Zotlabs/Module/Mail.php:197 -#: ../../Zotlabs/Module/Mail.php:306 ../../include/conversation.php:1181 -msgid "Please enter a link URL:" -msgstr "Por favor, introduzca la dirección del enlace:" - -#: ../../Zotlabs/Module/Chat.php:206 ../../Zotlabs/Module/Mail.php:250 -#: ../../Zotlabs/Module/Mail.php:375 ../../Zotlabs/Lib/ThreadItem.php:722 -#: ../../include/conversation.php:1271 -msgid "Encrypt text" -msgstr "Cifrar texto" - -#: ../../Zotlabs/Module/Chat.php:207 ../../Zotlabs/Module/Editwebpage.php:146 -#: ../../Zotlabs/Module/Mail.php:244 ../../Zotlabs/Module/Mail.php:369 -#: ../../Zotlabs/Module/Editblock.php:111 ../../include/conversation.php:1146 -msgid "Insert web link" -msgstr "Insertar enlace web" - -#: ../../Zotlabs/Module/Chat.php:218 -msgid "Feature disabled." -msgstr "Funcionalidad deshabilitada." - -#: ../../Zotlabs/Module/Chat.php:232 -msgid "New Chatroom" -msgstr "Nueva sala de chat" - -#: ../../Zotlabs/Module/Chat.php:233 -msgid "Chatroom name" -msgstr "Nombre de la sala de chat" - -#: ../../Zotlabs/Module/Chat.php:234 -msgid "Expiration of chats (minutes)" -msgstr "Caducidad de los mensajes en los chats (en minutos)" - -#: ../../Zotlabs/Module/Chat.php:235 ../../Zotlabs/Module/Filestorage.php:152 -#: ../../Zotlabs/Module/Photos.php:669 ../../Zotlabs/Module/Photos.php:1043 -#: ../../Zotlabs/Module/Thing.php:313 ../../Zotlabs/Module/Thing.php:359 -#: ../../include/acl_selectors.php:281 -msgid "Permissions" -msgstr "Permisos" - -#: ../../Zotlabs/Module/Chat.php:246 -#, php-format -msgid "%1$s's Chatrooms" -msgstr "Salas de chat de %1$s" - -#: ../../Zotlabs/Module/Chat.php:251 -msgid "No chatrooms available" -msgstr "No hay salas de chat disponibles" - -#: ../../Zotlabs/Module/Chat.php:252 ../../Zotlabs/Module/Profiles.php:778 -#: ../../Zotlabs/Module/Manage.php:143 -msgid "Create New" -msgstr "Crear" - -#: ../../Zotlabs/Module/Chat.php:255 -msgid "Expiration" -msgstr "Caducidad" - -#: ../../Zotlabs/Module/Chat.php:256 -msgid "min" -msgstr "min" - -#: ../../Zotlabs/Module/Dreport.php:44 +#: ../../Zotlabs/Module/Dreport.php:27 msgid "Invalid message" msgstr "Mensaje no válido" -#: ../../Zotlabs/Module/Dreport.php:76 +#: ../../Zotlabs/Module/Dreport.php:59 msgid "no results" msgstr "sin resultados" -#: ../../Zotlabs/Module/Dreport.php:91 -msgid "channel sync processed" -msgstr "se ha realizado la sincronización del canal" - -#: ../../Zotlabs/Module/Dreport.php:95 -msgid "queued" -msgstr "encolado" - -#: ../../Zotlabs/Module/Dreport.php:99 -msgid "posted" -msgstr "enviado" - -#: ../../Zotlabs/Module/Dreport.php:103 -msgid "accepted for delivery" -msgstr "aceptado para el envío" - -#: ../../Zotlabs/Module/Dreport.php:107 -msgid "updated" -msgstr "actualizado" - -#: ../../Zotlabs/Module/Dreport.php:110 -msgid "update ignored" -msgstr "actualización ignorada" - -#: ../../Zotlabs/Module/Dreport.php:113 -msgid "permission denied" -msgstr "permiso denegado" - -#: ../../Zotlabs/Module/Dreport.php:117 -msgid "recipient not found" -msgstr "destinatario no encontrado" - -#: ../../Zotlabs/Module/Dreport.php:120 -msgid "mail recalled" -msgstr "mensaje de correo revocado" - -#: ../../Zotlabs/Module/Dreport.php:123 -msgid "duplicate mail received" -msgstr "se ha recibido mensaje duplicado" - -#: ../../Zotlabs/Module/Dreport.php:126 -msgid "mail delivered" -msgstr "correo enviado" - -#: ../../Zotlabs/Module/Dreport.php:146 +#: ../../Zotlabs/Module/Dreport.php:64 #, php-format msgid "Delivery report for %1$s" msgstr "Informe de entrega para %1$s" -#: ../../Zotlabs/Module/Dreport.php:149 -msgid "Options" -msgstr "" +#: ../../Zotlabs/Module/Dreport.php:78 +msgid "channel sync processed" +msgstr "se ha realizado la sincronización del canal" -#: ../../Zotlabs/Module/Dreport.php:150 -msgid "Redeliver" -msgstr "" +#: ../../Zotlabs/Module/Dreport.php:82 +msgid "queued" +msgstr "encolado" -#: ../../Zotlabs/Module/Editlayout.php:127 -#: ../../Zotlabs/Module/Layouts.php:128 ../../Zotlabs/Module/Layouts.php:188 +#: ../../Zotlabs/Module/Dreport.php:86 +msgid "posted" +msgstr "enviado" + +#: ../../Zotlabs/Module/Dreport.php:90 +msgid "accepted for delivery" +msgstr "aceptado para el envío" + +#: ../../Zotlabs/Module/Dreport.php:94 +msgid "updated" +msgstr "actualizado" + +#: ../../Zotlabs/Module/Dreport.php:97 +msgid "update ignored" +msgstr "actualización ignorada" + +#: ../../Zotlabs/Module/Dreport.php:100 +msgid "permission denied" +msgstr "permiso denegado" + +#: ../../Zotlabs/Module/Dreport.php:104 +msgid "recipient not found" +msgstr "destinatario no encontrado" + +#: ../../Zotlabs/Module/Dreport.php:107 +msgid "mail recalled" +msgstr "mensaje de correo revocado" + +#: ../../Zotlabs/Module/Dreport.php:110 +msgid "duplicate mail received" +msgstr "se ha recibido mensaje duplicado" + +#: ../../Zotlabs/Module/Dreport.php:113 +msgid "mail delivered" +msgstr "correo enviado" + +#: ../../Zotlabs/Module/Editlayout.php:126 +#: ../../Zotlabs/Module/Layouts.php:127 ../../Zotlabs/Module/Layouts.php:186 msgid "Layout Name" msgstr "Nombre de la plantilla" -#: ../../Zotlabs/Module/Editlayout.php:128 -#: ../../Zotlabs/Module/Layouts.php:131 +#: ../../Zotlabs/Module/Editlayout.php:127 +#: ../../Zotlabs/Module/Layouts.php:130 msgid "Layout Description (Optional)" msgstr "Descripción de la plantilla (opcional)" -#: ../../Zotlabs/Module/Editlayout.php:136 +#: ../../Zotlabs/Module/Editlayout.php:135 msgid "Edit Layout" msgstr "Modificar la plantilla" -#: ../../Zotlabs/Module/Editwebpage.php:142 +#: ../../Zotlabs/Module/Editwebpage.php:143 msgid "Page link" msgstr "Enlace de la página" -#: ../../Zotlabs/Module/Editwebpage.php:168 +#: ../../Zotlabs/Module/Editwebpage.php:169 msgid "Edit Webpage" msgstr "Editar la página web" +#: ../../Zotlabs/Module/Follow.php:34 +msgid "Channel added." +msgstr "Canal añadido." + +#: ../../Zotlabs/Module/Acl.php:227 +msgid "network" +msgstr "red" + +#: ../../Zotlabs/Module/Acl.php:237 +msgid "RSS" +msgstr "RSS" + #: ../../Zotlabs/Module/Group.php:24 msgid "Privacy group created." msgstr "El grupo de canales ha sido creado." @@ -1809,7 +1585,7 @@ msgid "Could not create privacy group." msgstr "No se puede crear el grupo de canales" #: ../../Zotlabs/Module/Group.php:42 ../../Zotlabs/Module/Group.php:141 -#: ../../include/items.php:3902 +#: ../../include/items.php:3893 msgid "Privacy group not found." msgstr "Grupo de canales no encontrado." @@ -1853,57 +1629,31 @@ msgstr "Todos los canales conectados" msgid "Click on a channel to add or remove." msgstr "Haga clic en un canal para agregarlo o quitarlo." -#: ../../Zotlabs/Module/Appman.php:37 ../../Zotlabs/Module/Appman.php:53 -msgid "App installed." -msgstr "Aplicación instalada." +#: ../../Zotlabs/Module/Ffsapi.php:12 +msgid "Share content from Firefox to $Projectname" +msgstr "Compartir contenido desde Firefox a $Projectname" -#: ../../Zotlabs/Module/Appman.php:46 -msgid "Malformed app." -msgstr "Aplicación con errores" +#: ../../Zotlabs/Module/Ffsapi.php:15 +msgid "Activate the Firefox $Projectname provider" +msgstr "Servicio de compartición de Firefox: activar el proveedor $Projectname " -#: ../../Zotlabs/Module/Appman.php:104 -msgid "Embed code" -msgstr "Código incorporado" +#: ../../Zotlabs/Module/Api.php:61 ../../Zotlabs/Module/Api.php:85 +msgid "Authorize application connection" +msgstr "Autorizar una conexión de aplicación" -#: ../../Zotlabs/Module/Appman.php:110 ../../include/widgets.php:107 -msgid "Edit App" -msgstr "Modificar la aplicación" +#: ../../Zotlabs/Module/Api.php:62 +msgid "Return to your app and insert this Securty Code:" +msgstr "Volver a su aplicación e introducir este código de seguridad:" -#: ../../Zotlabs/Module/Appman.php:110 -msgid "Create App" -msgstr "Crear una aplicación" +#: ../../Zotlabs/Module/Api.php:72 +msgid "Please login to continue." +msgstr "Por favor inicie sesión para continuar." -#: ../../Zotlabs/Module/Appman.php:115 -msgid "Name of app" -msgstr "Nombre de la aplicación" - -#: ../../Zotlabs/Module/Appman.php:116 -msgid "Location (URL) of app" -msgstr "Dirección (URL) de la aplicación" - -#: ../../Zotlabs/Module/Appman.php:118 -msgid "Photo icon URL" -msgstr "Dirección del icono" - -#: ../../Zotlabs/Module/Appman.php:118 -msgid "80 x 80 pixels - optional" -msgstr "80 x 80 pixels - opcional" - -#: ../../Zotlabs/Module/Appman.php:119 -msgid "Categories (optional, comma separated list)" -msgstr "Categorías (opcional, lista separada por comas)" - -#: ../../Zotlabs/Module/Appman.php:120 -msgid "Version ID" -msgstr "Versión" - -#: ../../Zotlabs/Module/Appman.php:121 -msgid "Price of app" -msgstr "Precio de la aplicación" - -#: ../../Zotlabs/Module/Appman.php:122 -msgid "Location (URL) to purchase app" -msgstr "Dirección (URL) donde adquirir la aplicación" +#: ../../Zotlabs/Module/Api.php:87 +msgid "" +"Do you want to authorize this application to access your posts and contacts," +" and/or create new posts for you?" +msgstr "¿Desea autorizar a esta aplicación a acceder a sus publicaciones y contactos, y/o crear nuevas publicaciones por usted?" #: ../../Zotlabs/Module/Help.php:26 msgid "Documentation Search" @@ -1915,8 +1665,8 @@ msgid "Help:" msgstr "Ayuda:" #: ../../Zotlabs/Module/Help.php:85 ../../Zotlabs/Module/Help.php:90 -#: ../../Zotlabs/Module/Layouts.php:185 ../../Zotlabs/Lib/Apps.php:225 -#: ../../include/nav.php:161 +#: ../../Zotlabs/Module/Layouts.php:183 ../../Zotlabs/Lib/Apps.php:223 +#: ../../include/nav.php:159 msgid "Help" msgstr "Ayuda" @@ -1924,124 +1674,335 @@ msgstr "Ayuda" msgid "$Projectname Documentation" msgstr "Documentación de $Projectname" +#: ../../Zotlabs/Module/Filestorage.php:88 +msgid "Permission Denied." +msgstr "Permiso denegado" + +#: ../../Zotlabs/Module/Filestorage.php:104 +msgid "File not found." +msgstr "Fichero no encontrado." + +#: ../../Zotlabs/Module/Filestorage.php:147 +msgid "Edit file permissions" +msgstr "Modificar los permisos del fichero" + +#: ../../Zotlabs/Module/Filestorage.php:156 +msgid "Set/edit permissions" +msgstr "Establecer/editar los permisos" + +#: ../../Zotlabs/Module/Filestorage.php:157 +msgid "Include all files and sub folders" +msgstr "Incluir todos los ficheros y subcarpetas" + +#: ../../Zotlabs/Module/Filestorage.php:158 +msgid "Return to file list" +msgstr "Volver a la lista de ficheros" + +#: ../../Zotlabs/Module/Filestorage.php:160 +msgid "Copy/paste this code to attach file to a post" +msgstr "Copiar/pegar este código para adjuntar el fichero al envío" + +#: ../../Zotlabs/Module/Filestorage.php:161 +msgid "Copy/paste this URL to link file from a web page" +msgstr "Copiar/pegar esta dirección para enlazar el fichero desde una página web" + +#: ../../Zotlabs/Module/Filestorage.php:163 +msgid "Share this file" +msgstr "Compartir este fichero" + +#: ../../Zotlabs/Module/Filestorage.php:164 +msgid "Show URL to this file" +msgstr "Mostrar la dirección de este fichero" + +#: ../../Zotlabs/Module/Filestorage.php:165 +msgid "Notify your contacts about this file" +msgstr "Avisar a sus contactos sobre este fichero" + +#: ../../Zotlabs/Module/Apps.php:47 ../../include/widgets.php:102 +#: ../../include/nav.php:163 +msgid "Apps" +msgstr "Aplicaciones (apps)" + #: ../../Zotlabs/Module/Attach.php:13 msgid "Item not available." msgstr "Elemento no disponible" -#: ../../Zotlabs/Module/Pdledit.php:18 -msgid "Layout updated." -msgstr "Plantilla actualizada." +#: ../../Zotlabs/Module/Import.php:32 +#, php-format +msgid "Your service plan only allows %d channels." +msgstr "Su paquete de servicios solo permite %d canales." -#: ../../Zotlabs/Module/Pdledit.php:34 ../../Zotlabs/Module/Pdledit.php:61 -msgid "Edit System Page Description" -msgstr "Editor del Sistema de Descripción de Páginas" +#: ../../Zotlabs/Module/Import.php:70 ../../Zotlabs/Module/Import_items.php:42 +msgid "Nothing to import." +msgstr "No hay nada para importar." -#: ../../Zotlabs/Module/Pdledit.php:56 -msgid "Layout not found." -msgstr "Plantilla no encontrada" +#: ../../Zotlabs/Module/Import.php:94 ../../Zotlabs/Module/Import_items.php:66 +msgid "Unable to download data from old server" +msgstr "No se han podido descargar datos de su antiguo servidor" -#: ../../Zotlabs/Module/Pdledit.php:62 -msgid "Module Name:" -msgstr "Nombre del módulo:" +#: ../../Zotlabs/Module/Import.php:100 +#: ../../Zotlabs/Module/Import_items.php:72 +msgid "Imported file is empty." +msgstr "El fichero importado está vacío." -#: ../../Zotlabs/Module/Pdledit.php:63 -msgid "Layout Help" -msgstr "Ayuda para el diseño de plantillas de página" +#: ../../Zotlabs/Module/Import.php:122 +#: ../../Zotlabs/Module/Import_items.php:86 +#, php-format +msgid "Warning: Database versions differ by %1$d updates." +msgstr "Atención: Las versiones de la base de datos difieren en %1$d actualizaciones." -#: ../../Zotlabs/Module/Ffsapi.php:12 -msgid "Share content from Firefox to $Projectname" -msgstr "Compartir contenido desde Firefox a $Projectname" +#: ../../Zotlabs/Module/Import.php:150 ../../include/import.php:86 +msgid "Cloned channel not found. Import failed." +msgstr "No se ha podido importar el canal porque el canal clonado no se ha encontrado." -#: ../../Zotlabs/Module/Ffsapi.php:15 -msgid "Activate the Firefox $Projectname provider" -msgstr "Servicio de compartición de Firefox: activar el proveedor $Projectname " +#: ../../Zotlabs/Module/Import.php:160 +msgid "No channel. Import failed." +msgstr "No hay canal. La importación ha fallado" -#: ../../Zotlabs/Module/Acl.php:312 -msgid "network" -msgstr "red" +#: ../../Zotlabs/Module/Import.php:510 +#: ../../include/Import/import_diaspora.php:142 +msgid "Import completed." +msgstr "Importación completada." -#: ../../Zotlabs/Module/Acl.php:322 -msgid "RSS" -msgstr "RSS" +#: ../../Zotlabs/Module/Import.php:532 +msgid "You must be logged in to use this feature." +msgstr "Debe estar registrado para poder usar esta funcionalidad." -#: ../../Zotlabs/Module/Filestorage.php:87 -msgid "Permission Denied." -msgstr "Permiso denegado" +#: ../../Zotlabs/Module/Import.php:537 +msgid "Import Channel" +msgstr "Importar canal" -#: ../../Zotlabs/Module/Filestorage.php:103 -msgid "File not found." -msgstr "Fichero no encontrado." +#: ../../Zotlabs/Module/Import.php:538 +msgid "" +"Use this form to import an existing channel from a different server/hub. You" +" may retrieve the channel identity from the old server/hub via the network " +"or provide an export file." +msgstr "Emplee este formulario para importar un canal desde un servidor/hub diferente. Puede recuperar el canal desde el antiguo servidor/hub a través de la red o proporcionando un fichero de exportación." -#: ../../Zotlabs/Module/Filestorage.php:146 -msgid "Edit file permissions" -msgstr "Modificar los permisos del fichero" +#: ../../Zotlabs/Module/Import.php:539 +#: ../../Zotlabs/Module/Import_items.php:119 +msgid "File to Upload" +msgstr "Fichero para subir" -#: ../../Zotlabs/Module/Filestorage.php:155 -msgid "Set/edit permissions" -msgstr "Establecer/editar los permisos" +#: ../../Zotlabs/Module/Import.php:540 +msgid "Or provide the old server/hub details" +msgstr "O proporcione los detalles de su antiguo servidor/hub" -#: ../../Zotlabs/Module/Filestorage.php:156 -msgid "Include all files and sub folders" -msgstr "Incluir todos los ficheros y subcarpetas" +#: ../../Zotlabs/Module/Import.php:541 +msgid "Your old identity address (xyz@example.com)" +msgstr "Su identidad en el antiguo servidor (canal@ejemplo.com)" -#: ../../Zotlabs/Module/Filestorage.php:157 -msgid "Return to file list" -msgstr "Volver a la lista de ficheros" +#: ../../Zotlabs/Module/Import.php:542 +msgid "Your old login email address" +msgstr "Su antigua dirección de correo electrónico" -#: ../../Zotlabs/Module/Filestorage.php:159 -msgid "Copy/paste this code to attach file to a post" -msgstr "Copiar/pegar este código para adjuntar el fichero al envío" +#: ../../Zotlabs/Module/Import.php:543 +msgid "Your old login password" +msgstr "Su antigua contraseña" -#: ../../Zotlabs/Module/Filestorage.php:160 -msgid "Copy/paste this URL to link file from a web page" -msgstr "Copiar/pegar esta dirección para enlazar el fichero desde una página web" +#: ../../Zotlabs/Module/Import.php:544 +msgid "" +"For either option, please choose whether to make this hub your new primary " +"address, or whether your old location should continue this role. You will be" +" able to post from either location, but only one can be marked as the " +"primary location for files, photos, and media." +msgstr "Para cualquiera de las opciones, elija si hacer de este servidor su nueva dirección primaria, o si su antigua dirección debe continuar con este papel. Usted podrá publicar desde cualquier ubicación, pero sólo una puede estar marcada como la ubicación principal para los ficheros, fotos y otras imágenes o vídeos." -#: ../../Zotlabs/Module/Filestorage.php:162 -msgid "Share this file" -msgstr "Compartir este fichero" +#: ../../Zotlabs/Module/Import.php:545 +msgid "Make this hub my primary location" +msgstr "Convertir este servidor en mi ubicación primaria" -#: ../../Zotlabs/Module/Filestorage.php:163 -msgid "Show URL to this file" -msgstr "Mostrar la dirección de este fichero" +#: ../../Zotlabs/Module/Import.php:546 +msgid "" +"Import existing posts if possible (experimental - limited by available " +"memory" +msgstr "Importar el contenido publicado si es posible (experimental - limitado por la memoria disponible" -#: ../../Zotlabs/Module/Filestorage.php:164 -msgid "Notify your contacts about this file" -msgstr "Avisar a sus contactos sobre este fichero" +#: ../../Zotlabs/Module/Import.php:547 +msgid "" +"This process may take several minutes to complete. Please submit the form " +"only once and leave this page open until finished." +msgstr "Este proceso puede tardar varios minutos en completarse. Por favor envíe el formulario una sola vez y mantenga esta página abierta hasta que termine." -#: ../../Zotlabs/Module/Layouts.php:183 ../../include/text.php:2240 +#: ../../Zotlabs/Module/Item.php:178 +msgid "Unable to locate original post." +msgstr "No ha sido posible encontrar la entrada original." + +#: ../../Zotlabs/Module/Item.php:427 +msgid "Empty post discarded." +msgstr "La entrada vacía ha sido desechada." + +#: ../../Zotlabs/Module/Item.php:467 +msgid "Executable content type not permitted to this channel." +msgstr "Contenido de tipo ejecutable no permitido en este canal." + +#: ../../Zotlabs/Module/Item.php:847 +msgid "Duplicate post suppressed." +msgstr "Se ha suprimido la entrada duplicada." + +#: ../../Zotlabs/Module/Item.php:977 +msgid "System error. Post not saved." +msgstr "Error del sistema. La entrada no se ha podido salvar." + +#: ../../Zotlabs/Module/Item.php:1241 +msgid "Unable to obtain post information from database." +msgstr "No ha sido posible obtener información de la entrada en la base de datos." + +#: ../../Zotlabs/Module/Item.php:1248 +#, php-format +msgid "You have reached your limit of %1$.0f top level posts." +msgstr "Ha alcanzado su límite de %1$.0f entradas en la página principal." + +#: ../../Zotlabs/Module/Item.php:1255 +#, php-format +msgid "You have reached your limit of %1$.0f webpages." +msgstr "Ha alcanzado su límite de %1$.0f páginas web." + +#: ../../Zotlabs/Module/Layouts.php:181 ../../include/text.php:2267 msgid "Layouts" msgstr "Plantillas" -#: ../../Zotlabs/Module/Layouts.php:185 +#: ../../Zotlabs/Module/Layouts.php:183 msgid "Comanche page description language help" msgstr "Página de ayuda del lenguaje de descripción de páginas (PDL) Comanche" -#: ../../Zotlabs/Module/Layouts.php:189 +#: ../../Zotlabs/Module/Layouts.php:187 msgid "Layout Description" msgstr "Descripción de la plantilla" -#: ../../Zotlabs/Module/Layouts.php:190 ../../Zotlabs/Module/Menu.php:114 -#: ../../Zotlabs/Module/Blocks.php:157 ../../Zotlabs/Module/Webpages.php:205 -#: ../../include/page_widgets.php:47 -msgid "Created" -msgstr "Creado" - -#: ../../Zotlabs/Module/Layouts.php:191 ../../Zotlabs/Module/Menu.php:115 -#: ../../Zotlabs/Module/Blocks.php:158 ../../Zotlabs/Module/Webpages.php:206 -#: ../../include/page_widgets.php:48 -msgid "Edited" -msgstr "Editado" - -#: ../../Zotlabs/Module/Layouts.php:193 ../../Zotlabs/Module/Photos.php:1070 -#: ../../Zotlabs/Module/Blocks.php:161 ../../Zotlabs/Module/Webpages.php:195 -#: ../../include/conversation.php:1219 -msgid "Share" -msgstr "Compartir" - -#: ../../Zotlabs/Module/Layouts.php:194 +#: ../../Zotlabs/Module/Layouts.php:192 msgid "Download PDL file" msgstr "Descargar el fichero PDL" +#: ../../Zotlabs/Module/Home.php:61 ../../Zotlabs/Module/Home.php:69 +#: ../../Zotlabs/Module/Siteinfo.php:65 +msgid "$Projectname" +msgstr "$Projectname" + +#: ../../Zotlabs/Module/Home.php:79 +#, php-format +msgid "Welcome to %s" +msgstr "Bienvenido a %s" + +#: ../../Zotlabs/Module/Id.php:13 +msgid "First Name" +msgstr "Nombre" + +#: ../../Zotlabs/Module/Id.php:14 +msgid "Last Name" +msgstr "Apellido" + +#: ../../Zotlabs/Module/Id.php:15 +msgid "Nickname" +msgstr "Sobrenombre o Alias" + +#: ../../Zotlabs/Module/Id.php:16 +msgid "Full Name" +msgstr "Nombre completo" + +#: ../../Zotlabs/Module/Id.php:17 ../../Zotlabs/Module/Id.php:18 +#: ../../Zotlabs/Module/Admin.php:1035 ../../Zotlabs/Module/Admin.php:1047 +#: ../../include/network.php:2151 ../../boot.php:1705 +msgid "Email" +msgstr "Correo electrónico" + +#: ../../Zotlabs/Module/Id.php:19 ../../Zotlabs/Module/Id.php:20 +#: ../../Zotlabs/Module/Id.php:21 ../../Zotlabs/Lib/Apps.php:236 +msgid "Profile Photo" +msgstr "Foto del perfil" + +#: ../../Zotlabs/Module/Id.php:22 +msgid "Profile Photo 16px" +msgstr "Foto del perfil 16px" + +#: ../../Zotlabs/Module/Id.php:23 +msgid "Profile Photo 32px" +msgstr "Foto del perfil 32px" + +#: ../../Zotlabs/Module/Id.php:24 +msgid "Profile Photo 48px" +msgstr "Foto del perfil 48px" + +#: ../../Zotlabs/Module/Id.php:25 +msgid "Profile Photo 64px" +msgstr "Foto del perfil 64px" + +#: ../../Zotlabs/Module/Id.php:26 +msgid "Profile Photo 80px" +msgstr "Foto del perfil 80px" + +#: ../../Zotlabs/Module/Id.php:27 +msgid "Profile Photo 128px" +msgstr "Foto del perfil 128px" + +#: ../../Zotlabs/Module/Id.php:28 +msgid "Timezone" +msgstr "Huso horario" + +#: ../../Zotlabs/Module/Id.php:29 ../../Zotlabs/Module/Profiles.php:731 +msgid "Homepage URL" +msgstr "Dirección de la página personal" + +#: ../../Zotlabs/Module/Id.php:30 ../../Zotlabs/Lib/Apps.php:234 +msgid "Language" +msgstr "Idioma" + +#: ../../Zotlabs/Module/Id.php:31 +msgid "Birth Year" +msgstr "Año de nacimiento" + +#: ../../Zotlabs/Module/Id.php:32 +msgid "Birth Month" +msgstr "Mes de nacimiento" + +#: ../../Zotlabs/Module/Id.php:33 +msgid "Birth Day" +msgstr "Día de nacimiento" + +#: ../../Zotlabs/Module/Id.php:34 +msgid "Birthdate" +msgstr "Fecha de nacimiento" + +#: ../../Zotlabs/Module/Id.php:35 ../../Zotlabs/Module/Profiles.php:454 +msgid "Gender" +msgstr "Género" + +#: ../../Zotlabs/Module/Id.php:108 ../../include/selectors.php:49 +#: ../../include/selectors.php:66 +msgid "Male" +msgstr "Hombre" + +#: ../../Zotlabs/Module/Id.php:110 ../../include/selectors.php:49 +#: ../../include/selectors.php:66 +msgid "Female" +msgstr "Mujer" + +#: ../../Zotlabs/Module/Impel.php:41 ../../include/bbcode.php:192 +msgid "webpage" +msgstr "página web" + +#: ../../Zotlabs/Module/Impel.php:46 ../../include/bbcode.php:198 +msgid "block" +msgstr "bloque" + +#: ../../Zotlabs/Module/Impel.php:51 ../../include/bbcode.php:195 +msgid "layout" +msgstr "plantilla" + +#: ../../Zotlabs/Module/Impel.php:58 ../../include/bbcode.php:201 +msgid "menu" +msgstr "menú" + +#: ../../Zotlabs/Module/Impel.php:196 +#, php-format +msgid "%s element installed" +msgstr "%s elemento instalado" + +#: ../../Zotlabs/Module/Impel.php:199 +#, php-format +msgid "%s element installation failed" +msgstr "Elemento con instalación fallida: %s" + #: ../../Zotlabs/Module/Like.php:19 msgid "Like/Dislike" msgstr "Me gusta/No me gusta" @@ -2077,65 +2038,1180 @@ msgstr "Canal no disponible." msgid "Previous action reversed." msgstr "Acción anterior revocada." -#: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87 -#: ../../Zotlabs/Module/Tagger.php:47 ../../include/conversation.php:120 -#: ../../include/text.php:1921 +#: ../../Zotlabs/Module/Like.php:371 ../../Zotlabs/Module/Subthread.php:87 +#: ../../Zotlabs/Module/Tagger.php:47 ../../include/text.php:1940 +#: ../../include/conversation.php:120 msgid "photo" msgstr "foto" -#: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87 -#: ../../include/conversation.php:148 ../../include/text.php:1927 +#: ../../Zotlabs/Module/Like.php:371 ../../Zotlabs/Module/Subthread.php:87 +#: ../../include/text.php:1946 ../../include/conversation.php:148 msgid "status" msgstr "el mensaje de estado" -#: ../../Zotlabs/Module/Like.php:419 ../../include/conversation.php:164 +#: ../../Zotlabs/Module/Like.php:420 ../../include/conversation.php:164 #, php-format msgid "%1$s likes %2$s's %3$s" msgstr "A %1$s le gusta %3$s de %2$s" -#: ../../Zotlabs/Module/Like.php:421 ../../include/conversation.php:167 +#: ../../Zotlabs/Module/Like.php:422 ../../include/conversation.php:167 #, php-format msgid "%1$s doesn't like %2$s's %3$s" msgstr "A %1$s no le gusta %3$s de %2$s" -#: ../../Zotlabs/Module/Like.php:423 +#: ../../Zotlabs/Module/Like.php:424 #, php-format msgid "%1$s agrees with %2$s's %3$s" msgstr "%3$s de %2$s: %1$s está de acuerdo" -#: ../../Zotlabs/Module/Like.php:425 +#: ../../Zotlabs/Module/Like.php:426 #, php-format msgid "%1$s doesn't agree with %2$s's %3$s" msgstr "%3$s de %2$s: %1$s no está de acuerdo" -#: ../../Zotlabs/Module/Like.php:427 +#: ../../Zotlabs/Module/Like.php:428 #, php-format msgid "%1$s abstains from a decision on %2$s's %3$s" msgstr "%3$s de %2$s: %1$s se abstiene" -#: ../../Zotlabs/Module/Like.php:429 +#: ../../Zotlabs/Module/Like.php:430 #, php-format msgid "%1$s is attending %2$s's %3$s" msgstr "%3$s de %2$s: %1$s participa" -#: ../../Zotlabs/Module/Like.php:431 +#: ../../Zotlabs/Module/Like.php:432 #, php-format msgid "%1$s is not attending %2$s's %3$s" msgstr "%3$s de %2$s: %1$s no participa" -#: ../../Zotlabs/Module/Like.php:433 +#: ../../Zotlabs/Module/Like.php:434 #, php-format msgid "%1$s may attend %2$s's %3$s" msgstr "%3$s de %2$s: %1$s quizá participe" -#: ../../Zotlabs/Module/Like.php:536 +#: ../../Zotlabs/Module/Like.php:537 msgid "Action completed." msgstr "Acción completada." -#: ../../Zotlabs/Module/Like.php:537 +#: ../../Zotlabs/Module/Like.php:538 msgid "Thank you." msgstr "Gracias." +#: ../../Zotlabs/Module/Import_items.php:102 +msgid "Import completed" +msgstr "Importación completada" + +#: ../../Zotlabs/Module/Import_items.php:117 +msgid "Import Items" +msgstr "Importar elementos" + +#: ../../Zotlabs/Module/Import_items.php:118 +msgid "" +"Use this form to import existing posts and content from an export file." +msgstr "Utilice este formulario para importar entradas existentes y contenido desde un archivo de exportación." + +#: ../../Zotlabs/Module/Invite.php:29 +msgid "Total invitation limit exceeded." +msgstr "Se ha superado el límite máximo de invitaciones." + +#: ../../Zotlabs/Module/Invite.php:53 +#, php-format +msgid "%s : Not a valid email address." +msgstr "%s : No es una dirección de correo electrónico válida. " + +#: ../../Zotlabs/Module/Invite.php:63 +msgid "Please join us on $Projectname" +msgstr "Únase a nosotros en $Projectname" + +#: ../../Zotlabs/Module/Invite.php:74 +msgid "Invitation limit exceeded. Please contact your site administrator." +msgstr "Excedido el límite de invitaciones. Por favor, contacte con el Administrador de su sitio." + +#: ../../Zotlabs/Module/Invite.php:79 +#, php-format +msgid "%s : Message delivery failed." +msgstr "%s : Falló el envío del mensaje." + +#: ../../Zotlabs/Module/Invite.php:83 +#, php-format +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "%d mensajes enviados." +msgstr[1] "%d mensajes enviados." + +#: ../../Zotlabs/Module/Invite.php:102 +msgid "You have no more invitations available" +msgstr "No tiene más invitaciones disponibles" + +#: ../../Zotlabs/Module/Invite.php:133 +msgid "Send invitations" +msgstr "Enviar invitaciones" + +#: ../../Zotlabs/Module/Invite.php:134 +msgid "Enter email addresses, one per line:" +msgstr "Introduzca las direcciones de correo electrónico, una por línea:" + +#: ../../Zotlabs/Module/Invite.php:135 ../../Zotlabs/Module/Mail.php:249 +msgid "Your message:" +msgstr "Su mensaje:" + +#: ../../Zotlabs/Module/Invite.php:136 +msgid "Please join my community on $Projectname." +msgstr "Por favor, únase a mi comunidad en $Projectname." + +#: ../../Zotlabs/Module/Invite.php:138 +msgid "You will need to supply this invitation code:" +msgstr "Tendrá que suministrar este código de invitación:" + +#: ../../Zotlabs/Module/Invite.php:139 +msgid "" +"1. Register at any $Projectname location (they are all inter-connected)" +msgstr "1. Regístrese en cualquier sitio de $Projectname (están todos interconectados)" + +#: ../../Zotlabs/Module/Invite.php:141 +msgid "2. Enter my $Projectname network address into the site searchbar." +msgstr "2. Introduzca mi dirección $Projectname en la caja de búsqueda del sitio." + +#: ../../Zotlabs/Module/Invite.php:142 +msgid "or visit" +msgstr "o visitar" + +#: ../../Zotlabs/Module/Invite.php:144 +msgid "3. Click [Connect]" +msgstr "3. Pulse [conectar]" + +#: ../../Zotlabs/Module/Lockview.php:61 +msgid "Remote privacy information not available." +msgstr "La información privada remota no está disponible." + +#: ../../Zotlabs/Module/Lockview.php:82 +msgid "Visible to:" +msgstr "Visible para:" + +#: ../../Zotlabs/Module/Locs.php:25 ../../Zotlabs/Module/Locs.php:54 +msgid "Location not found." +msgstr "Dirección no encontrada." + +#: ../../Zotlabs/Module/Locs.php:62 +msgid "Location lookup failed." +msgstr "Ha fallado la búsqueda de la dirección." + +#: ../../Zotlabs/Module/Locs.php:66 +msgid "" +"Please select another location to become primary before removing the primary" +" location." +msgstr "Por favor, seleccione una copia de su canal (un clon) para convertirlo en primario antes de eliminar su canal principal." + +#: ../../Zotlabs/Module/Locs.php:95 +msgid "Syncing locations" +msgstr "Sincronización de ubicaciones" + +#: ../../Zotlabs/Module/Locs.php:105 +msgid "No locations found." +msgstr "No encontrada ninguna dirección." + +#: ../../Zotlabs/Module/Locs.php:116 +msgid "Manage Channel Locations" +msgstr "Gestionar las direcciones del canal" + +#: ../../Zotlabs/Module/Locs.php:118 ../../Zotlabs/Module/Profiles.php:470 +#: ../../Zotlabs/Module/Admin.php:1224 +msgid "Address" +msgstr "Dirección" + +#: ../../Zotlabs/Module/Locs.php:119 +msgid "Primary" +msgstr "Primario" + +#: ../../Zotlabs/Module/Locs.php:120 ../../Zotlabs/Module/Menu.php:113 +msgid "Drop" +msgstr "Eliminar" + +#: ../../Zotlabs/Module/Locs.php:122 +msgid "Sync Now" +msgstr "Sincronizar ahora" + +#: ../../Zotlabs/Module/Locs.php:123 +msgid "Please wait several minutes between consecutive operations." +msgstr "Por favor, espere algunos minutos entre operaciones consecutivas." + +#: ../../Zotlabs/Module/Locs.php:124 +msgid "" +"When possible, drop a location by logging into that website/hub and removing" +" your channel." +msgstr "Cuando sea posible, elimine una ubicación iniciando sesión en el sitio web o \"hub\" y borrando su canal." + +#: ../../Zotlabs/Module/Locs.php:125 +msgid "Use this form to drop the location if the hub is no longer operating." +msgstr "Utilice este formulario para eliminar la dirección si el \"hub\" no está funcionando desde hace tiempo." + +#: ../../Zotlabs/Module/Magic.php:71 +msgid "Hub not found." +msgstr "Servidor no encontrado" + +#: ../../Zotlabs/Module/Mail.php:38 +msgid "Unable to lookup recipient." +msgstr "Imposible asociar a un destinatario." + +#: ../../Zotlabs/Module/Mail.php:45 +msgid "Unable to communicate with requested channel." +msgstr "Imposible comunicar con el canal solicitado." + +#: ../../Zotlabs/Module/Mail.php:52 +msgid "Cannot verify requested channel." +msgstr "No se puede verificar el canal solicitado." + +#: ../../Zotlabs/Module/Mail.php:78 +msgid "Selected channel has private message restrictions. Send failed." +msgstr "El canal seleccionado tiene restricciones sobre los mensajes privados. El envío falló." + +#: ../../Zotlabs/Module/Mail.php:143 +msgid "Messages" +msgstr "Mensajes" + +#: ../../Zotlabs/Module/Mail.php:178 +msgid "Message recalled." +msgstr "Mensaje revocado." + +#: ../../Zotlabs/Module/Mail.php:191 +msgid "Conversation removed." +msgstr "Conversación eliminada." + +#: ../../Zotlabs/Module/Mail.php:206 ../../Zotlabs/Module/Mail.php:315 +msgid "Expires YYYY-MM-DD HH:MM" +msgstr "Caduca YYYY-MM-DD HH:MM" + +#: ../../Zotlabs/Module/Mail.php:234 +msgid "Requested channel is not in this network" +msgstr "El canal solicitado no existe en esta red" + +#: ../../Zotlabs/Module/Mail.php:242 +msgid "Send Private Message" +msgstr "Enviar un mensaje privado" + +#: ../../Zotlabs/Module/Mail.php:243 ../../Zotlabs/Module/Mail.php:368 +msgid "To:" +msgstr "Para:" + +#: ../../Zotlabs/Module/Mail.php:246 ../../Zotlabs/Module/Mail.php:370 +msgid "Subject:" +msgstr "Asunto:" + +#: ../../Zotlabs/Module/Mail.php:251 ../../Zotlabs/Module/Mail.php:376 +#: ../../include/conversation.php:1220 +msgid "Attach file" +msgstr "Adjuntar fichero" + +#: ../../Zotlabs/Module/Mail.php:253 +msgid "Send" +msgstr "Enviar" + +#: ../../Zotlabs/Module/Mail.php:256 ../../Zotlabs/Module/Mail.php:381 +#: ../../include/conversation.php:1251 +msgid "Set expiration date" +msgstr "Configurar fecha de caducidad" + +#: ../../Zotlabs/Module/Mail.php:340 +msgid "Delete message" +msgstr "Borrar mensaje" + +#: ../../Zotlabs/Module/Mail.php:341 +msgid "Delivery report" +msgstr "Informe de transmisión" + +#: ../../Zotlabs/Module/Mail.php:342 +msgid "Recall message" +msgstr "Revocar el mensaje" + +#: ../../Zotlabs/Module/Mail.php:344 +msgid "Message has been recalled." +msgstr "El mensaje ha sido revocado." + +#: ../../Zotlabs/Module/Mail.php:361 +msgid "Delete Conversation" +msgstr "Eliminar conversación" + +#: ../../Zotlabs/Module/Mail.php:363 +msgid "" +"No secure communications available. You may be able to " +"respond from the sender's profile page." +msgstr "Comunicación segura no disponible. Pero puede responder desde la página del perfil del remitente." + +#: ../../Zotlabs/Module/Mail.php:367 +msgid "Send Reply" +msgstr "Responder" + +#: ../../Zotlabs/Module/Mail.php:372 +#, php-format +msgid "Your message for %s (%s):" +msgstr "Su mensaje para %s (%s):" + +#: ../../Zotlabs/Module/Manage.php:136 +#: ../../Zotlabs/Module/New_channel.php:121 +#, php-format +msgid "You have created %1$.0f of %2$.0f allowed channels." +msgstr "Ha creado %1$.0f de %2$.0f canales permitidos." + +#: ../../Zotlabs/Module/Manage.php:143 +msgid "Create a new channel" +msgstr "Crear un nuevo canal" + +#: ../../Zotlabs/Module/Manage.php:164 ../../Zotlabs/Lib/Apps.php:213 +#: ../../include/nav.php:206 +msgid "Channel Manager" +msgstr "Administración de canales" + +#: ../../Zotlabs/Module/Manage.php:165 +msgid "Current Channel" +msgstr "Canal actual" + +#: ../../Zotlabs/Module/Manage.php:167 +msgid "Switch to one of your channels by selecting it." +msgstr "Cambiar a uno de sus canales seleccionándolo." + +#: ../../Zotlabs/Module/Manage.php:168 +msgid "Default Channel" +msgstr "Canal principal" + +#: ../../Zotlabs/Module/Manage.php:169 +msgid "Make Default" +msgstr "Convertir en predeterminado" + +#: ../../Zotlabs/Module/Manage.php:172 +#, php-format +msgid "%d new messages" +msgstr "%d mensajes nuevos" + +#: ../../Zotlabs/Module/Manage.php:173 +#, php-format +msgid "%d new introductions" +msgstr "%d nuevas isolicitudes de conexión" + +#: ../../Zotlabs/Module/Manage.php:175 +msgid "Delegated Channel" +msgstr "Canal delegado" + +#: ../../Zotlabs/Module/Lostpass.php:19 +msgid "No valid account found." +msgstr "No se ha encontrado una cuenta válida." + +#: ../../Zotlabs/Module/Lostpass.php:33 +msgid "Password reset request issued. Check your email." +msgstr "Se ha recibido una solicitud de restablecimiento de contraseña. Consulte su correo electrónico." + +#: ../../Zotlabs/Module/Lostpass.php:39 ../../Zotlabs/Module/Lostpass.php:107 +#, php-format +msgid "Site Member (%s)" +msgstr "Usuario del sitio (%s)" + +#: ../../Zotlabs/Module/Lostpass.php:44 +#, php-format +msgid "Password reset requested at %s" +msgstr "Se ha solicitado restablecer la contraseña en %s" + +#: ../../Zotlabs/Module/Lostpass.php:67 +msgid "" +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." +msgstr "La solicitud no ha podido ser verificada. (Puede que la haya enviado con anterioridad) El restablecimiento de la contraseña ha fallado." + +#: ../../Zotlabs/Module/Lostpass.php:90 ../../boot.php:1711 +msgid "Password Reset" +msgstr "Restablecer la contraseña" + +#: ../../Zotlabs/Module/Lostpass.php:91 +msgid "Your password has been reset as requested." +msgstr "Su contraseña ha sido restablecida según lo solicitó." + +#: ../../Zotlabs/Module/Lostpass.php:92 +msgid "Your new password is" +msgstr "Su nueva contraseña es" + +#: ../../Zotlabs/Module/Lostpass.php:93 +msgid "Save or copy your new password - and then" +msgstr "Guarde o copie su nueva contraseña - y después" + +#: ../../Zotlabs/Module/Lostpass.php:94 +msgid "click here to login" +msgstr "pulse aquí para conectarse" + +#: ../../Zotlabs/Module/Lostpass.php:95 +msgid "" +"Your password may be changed from the Settings page after " +"successful login." +msgstr "Puede cambiar la contraseña en la página Ajustes una vez iniciada la sesión." + +#: ../../Zotlabs/Module/Lostpass.php:112 +#, php-format +msgid "Your password has changed at %s" +msgstr "Su contraseña en %s ha sido cambiada" + +#: ../../Zotlabs/Module/Lostpass.php:127 +msgid "Forgot your Password?" +msgstr "¿Ha olvidado su contraseña?" + +#: ../../Zotlabs/Module/Lostpass.php:128 +msgid "" +"Enter your email address and submit to have your password reset. Then check " +"your email for further instructions." +msgstr "Introduzca y envíe su dirección de correo electrónico para el restablecimiento de su contraseña. Luego revise su correo para obtener más instrucciones." + +#: ../../Zotlabs/Module/Lostpass.php:129 +msgid "Email Address" +msgstr "Dirección de correo electrónico" + +#: ../../Zotlabs/Module/Lostpass.php:130 +msgid "Reset" +msgstr "Reiniciar" + +#: ../../Zotlabs/Module/Menu.php:49 +msgid "Unable to update menu." +msgstr "No se puede actualizar el menú." + +#: ../../Zotlabs/Module/Menu.php:60 +msgid "Unable to create menu." +msgstr "No se puede crear el menú." + +#: ../../Zotlabs/Module/Menu.php:98 ../../Zotlabs/Module/Menu.php:110 +msgid "Menu Name" +msgstr "Nombre del menú" + +#: ../../Zotlabs/Module/Menu.php:98 +msgid "Unique name (not visible on webpage) - required" +msgstr "Nombre único (no será visible en la página web) - requerido" + +#: ../../Zotlabs/Module/Menu.php:99 ../../Zotlabs/Module/Menu.php:111 +msgid "Menu Title" +msgstr "Título del menú" + +#: ../../Zotlabs/Module/Menu.php:99 +msgid "Visible on webpage - leave empty for no title" +msgstr "Visible en la página web - no ponga nada si no desea un título" + +#: ../../Zotlabs/Module/Menu.php:100 +msgid "Allow Bookmarks" +msgstr "Permitir marcadores" + +#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 +msgid "Menu may be used to store saved bookmarks" +msgstr "El menú se puede usar para guardar marcadores" + +#: ../../Zotlabs/Module/Menu.php:101 ../../Zotlabs/Module/Menu.php:159 +msgid "Submit and proceed" +msgstr "Enviar y proceder" + +#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2266 +msgid "Menus" +msgstr "Menús" + +#: ../../Zotlabs/Module/Menu.php:117 +msgid "Bookmarks allowed" +msgstr "Marcadores permitidos" + +#: ../../Zotlabs/Module/Menu.php:119 +msgid "Delete this menu" +msgstr "Borrar este menú" + +#: ../../Zotlabs/Module/Menu.php:120 ../../Zotlabs/Module/Menu.php:154 +msgid "Edit menu contents" +msgstr "Editar los contenidos del menú" + +#: ../../Zotlabs/Module/Menu.php:121 +msgid "Edit this menu" +msgstr "Modificar este menú" + +#: ../../Zotlabs/Module/Menu.php:136 +msgid "Menu could not be deleted." +msgstr "El menú no puede ser eliminado." + +#: ../../Zotlabs/Module/Menu.php:144 ../../Zotlabs/Module/Mitem.php:28 +msgid "Menu not found." +msgstr "Menú no encontrado" + +#: ../../Zotlabs/Module/Menu.php:149 +msgid "Edit Menu" +msgstr "Modificar el menú" + +#: ../../Zotlabs/Module/Menu.php:153 +msgid "Add or remove entries to this menu" +msgstr "Añadir o quitar entradas en este menú" + +#: ../../Zotlabs/Module/Menu.php:155 +msgid "Menu name" +msgstr "Nombre del menú" + +#: ../../Zotlabs/Module/Menu.php:155 +msgid "Must be unique, only seen by you" +msgstr "Debe ser único, solo será visible para usted" + +#: ../../Zotlabs/Module/Menu.php:156 +msgid "Menu title" +msgstr "Título del menú" + +#: ../../Zotlabs/Module/Menu.php:156 +msgid "Menu title as seen by others" +msgstr "El título del menú tal como será visto por los demás" + +#: ../../Zotlabs/Module/Menu.php:157 +msgid "Allow bookmarks" +msgstr "Permitir marcadores" + +#: ../../Zotlabs/Module/Menu.php:166 ../../Zotlabs/Module/Mitem.php:120 +#: ../../Zotlabs/Module/Xchan.php:41 +msgid "Not found." +msgstr "No encontrado." + +#: ../../Zotlabs/Module/Mood.php:67 ../../include/conversation.php:260 +#, php-format +msgctxt "mood" +msgid "%1$s is %2$s" +msgstr "%1$s está %2$s" + +#: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Lib/Apps.php:225 +msgid "Mood" +msgstr "Estado de ánimo" + +#: ../../Zotlabs/Module/Mood.php:136 +msgid "Set your current mood and tell your friends" +msgstr "Describir su estado de ánimo para comunicárselo a sus amigos" + +#: ../../Zotlabs/Module/Match.php:26 +msgid "Profile Match" +msgstr "Perfil compatible" + +#: ../../Zotlabs/Module/Match.php:35 +msgid "No keywords to match. Please add keywords to your default profile." +msgstr "No hay palabras clave en el perfil principal para poder encontrar perfiles compatibles. Por favor, añada palabras clave a su perfil principal." + +#: ../../Zotlabs/Module/Match.php:67 +msgid "is interested in:" +msgstr "está interesado en:" + +#: ../../Zotlabs/Module/Match.php:74 +msgid "No matches" +msgstr "No se han encontrado perfiles compatibles" + +#: ../../Zotlabs/Module/Network.php:96 +msgid "No such group" +msgstr "No se encuentra el grupo" + +#: ../../Zotlabs/Module/Network.php:136 +msgid "No such channel" +msgstr "No se encuentra el canal" + +#: ../../Zotlabs/Module/Network.php:141 +msgid "forum" +msgstr "foro" + +#: ../../Zotlabs/Module/Network.php:153 +msgid "Search Results For:" +msgstr "Buscar resultados para:" + +#: ../../Zotlabs/Module/Network.php:217 +msgid "Privacy group is empty" +msgstr "El grupo de canales está vacío" + +#: ../../Zotlabs/Module/Network.php:226 +msgid "Privacy group: " +msgstr "Grupo de canales: " + +#: ../../Zotlabs/Module/Network.php:252 +msgid "Invalid connection." +msgstr "Conexión no válida." + +#: ../../Zotlabs/Module/Notify.php:57 +#: ../../Zotlabs/Module/Notifications.php:98 +msgid "No more system notifications." +msgstr "No hay más notificaciones del sistema" + +#: ../../Zotlabs/Module/Notify.php:61 +#: ../../Zotlabs/Module/Notifications.php:102 +msgid "System Notifications" +msgstr "Notificaciones del sistema" + +#: ../../Zotlabs/Module/Mitem.php:52 +msgid "Unable to create element." +msgstr "Imposible crear el elemento." + +#: ../../Zotlabs/Module/Mitem.php:76 +msgid "Unable to update menu element." +msgstr "No es posible actualizar el elemento del menú." + +#: ../../Zotlabs/Module/Mitem.php:92 +msgid "Unable to add menu element." +msgstr "No es posible añadir el elemento al menú" + +#: ../../Zotlabs/Module/Mitem.php:153 ../../Zotlabs/Module/Mitem.php:226 +msgid "Menu Item Permissions" +msgstr "Permisos del elemento del menú" + +#: ../../Zotlabs/Module/Mitem.php:154 ../../Zotlabs/Module/Mitem.php:227 +#: ../../Zotlabs/Module/Settings.php:1068 +msgid "(click to open/close)" +msgstr "(pulsar para abrir o cerrar)" + +#: ../../Zotlabs/Module/Mitem.php:156 ../../Zotlabs/Module/Mitem.php:172 +msgid "Link Name" +msgstr "Nombre del enlace" + +#: ../../Zotlabs/Module/Mitem.php:157 ../../Zotlabs/Module/Mitem.php:231 +msgid "Link or Submenu Target" +msgstr "Destino del enlace o submenú" + +#: ../../Zotlabs/Module/Mitem.php:157 +msgid "Enter URL of the link or select a menu name to create a submenu" +msgstr "Introducir la dirección del enlace o seleccionar el nombre de un submenú" + +#: ../../Zotlabs/Module/Mitem.php:158 ../../Zotlabs/Module/Mitem.php:232 +msgid "Use magic-auth if available" +msgstr "Usar la autenticación mágica si está disponible" + +#: ../../Zotlabs/Module/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:233 +msgid "Open link in new window" +msgstr "Abrir el enlace en una nueva ventana" + +#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:234 +msgid "Order in list" +msgstr "Orden en la lista" + +#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:234 +msgid "Higher numbers will sink to bottom of listing" +msgstr "Los números más altos irán al final de la lista" + +#: ../../Zotlabs/Module/Mitem.php:161 +msgid "Submit and finish" +msgstr "Enviar y terminar" + +#: ../../Zotlabs/Module/Mitem.php:162 +msgid "Submit and continue" +msgstr "Enviar y continuar" + +#: ../../Zotlabs/Module/Mitem.php:170 +msgid "Menu:" +msgstr "Menú:" + +#: ../../Zotlabs/Module/Mitem.php:173 +msgid "Link Target" +msgstr "Destino del enlace" + +#: ../../Zotlabs/Module/Mitem.php:176 +msgid "Edit menu" +msgstr "Editar menú" + +#: ../../Zotlabs/Module/Mitem.php:179 +msgid "Edit element" +msgstr "Editar el elemento" + +#: ../../Zotlabs/Module/Mitem.php:180 +msgid "Drop element" +msgstr "Eliminar el elemento" + +#: ../../Zotlabs/Module/Mitem.php:181 +msgid "New element" +msgstr "Nuevo elemento" + +#: ../../Zotlabs/Module/Mitem.php:182 +msgid "Edit this menu container" +msgstr "Modificar el contenedor del menú" + +#: ../../Zotlabs/Module/Mitem.php:183 +msgid "Add menu element" +msgstr "Añadir un elemento al menú" + +#: ../../Zotlabs/Module/Mitem.php:184 +msgid "Delete this menu item" +msgstr "Eliminar este elemento del menú" + +#: ../../Zotlabs/Module/Mitem.php:185 +msgid "Edit this menu item" +msgstr "Modificar este elemento del menú" + +#: ../../Zotlabs/Module/Mitem.php:202 +msgid "Menu item not found." +msgstr "Este elemento del menú no se ha encontrado" + +#: ../../Zotlabs/Module/Mitem.php:215 +msgid "Menu item deleted." +msgstr "Este elemento del menú ha sido borrado" + +#: ../../Zotlabs/Module/Mitem.php:217 +msgid "Menu item could not be deleted." +msgstr "Este elemento del menú no puede ser borrado." + +#: ../../Zotlabs/Module/Mitem.php:224 +msgid "Edit Menu Element" +msgstr "Editar elemento del menú" + +#: ../../Zotlabs/Module/Mitem.php:230 +msgid "Link text" +msgstr "Texto del enlace" + +#: ../../Zotlabs/Module/New_channel.php:128 +#: ../../Zotlabs/Module/Register.php:231 +msgid "Name or caption" +msgstr "Nombre o descripción" + +#: ../../Zotlabs/Module/New_channel.php:128 +#: ../../Zotlabs/Module/Register.php:231 +msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\"" +msgstr "Ejemplos: \"Juan García\", \"Luisa y sus caballos\", \"Fútbol\", \"Grupo de aviación\"" + +#: ../../Zotlabs/Module/New_channel.php:130 +#: ../../Zotlabs/Module/Register.php:233 +msgid "Choose a short nickname" +msgstr "Elija un alias corto" + +#: ../../Zotlabs/Module/New_channel.php:130 +#: ../../Zotlabs/Module/Register.php:233 +#, php-format +msgid "" +"Your nickname will be used to create an easy to remember channel address " +"e.g. nickname%s" +msgstr "Su alias se usará para crear una dirección de canal fácil de recordar, p. ej.: alias%s" + +#: ../../Zotlabs/Module/New_channel.php:132 +#: ../../Zotlabs/Module/Register.php:235 +msgid "Channel role and privacy" +msgstr "Clase de canal y privacidad" + +#: ../../Zotlabs/Module/New_channel.php:132 +#: ../../Zotlabs/Module/Register.php:235 +msgid "Select a channel role with your privacy requirements." +msgstr "Seleccione un tipo de canal con sus requisitos de privacidad" + +#: ../../Zotlabs/Module/New_channel.php:132 +#: ../../Zotlabs/Module/Register.php:235 +msgid "Read more about roles" +msgstr "Leer más sobre los roles" + +#: ../../Zotlabs/Module/New_channel.php:135 +msgid "Create Channel" +msgstr "Crear un canal" + +#: ../../Zotlabs/Module/New_channel.php:136 +msgid "" +"A channel is your identity on this network. It can represent a person, a " +"blog, or a forum to name a few. Channels can make connections with other " +"channels to share information with highly detailed permissions." +msgstr "Un canal es su identidad en esta red. Puede representar a una persona, un blog o un foro, por nombrar unos pocos ejemplos. Los canales se pueden conectar con otros canales para compartir información con una gama de permisos extremadamente detallada." + +#: ../../Zotlabs/Module/New_channel.php:137 +msgid "" +"or import an existing channel from another location." +msgstr "O importar un canal existente desde otro lugar." + +#: ../../Zotlabs/Module/Notifications.php:30 +msgid "Invalid request identifier." +msgstr "Petición inválida del identificador." + +#: ../../Zotlabs/Module/Notifications.php:39 +msgid "Discard" +msgstr "Descartar" + +#: ../../Zotlabs/Module/Notifications.php:103 ../../include/nav.php:191 +msgid "Mark all system notifications seen" +msgstr "Marcar todas las notificaciones de sistema como leídas" + +#: ../../Zotlabs/Module/Photos.php:84 +msgid "Page owner information could not be retrieved." +msgstr "La información del propietario de la página no pudo ser recuperada." + +#: ../../Zotlabs/Module/Photos.php:99 ../../Zotlabs/Module/Photos.php:743 +#: ../../Zotlabs/Module/Profile_photo.php:114 +#: ../../Zotlabs/Module/Profile_photo.php:206 +#: ../../Zotlabs/Module/Profile_photo.php:294 +#: ../../include/photo/photo_driver.php:718 +msgid "Profile Photos" +msgstr "Fotos del perfil" + +#: ../../Zotlabs/Module/Photos.php:105 ../../Zotlabs/Module/Photos.php:149 +msgid "Album not found." +msgstr "Álbum no encontrado." + +#: ../../Zotlabs/Module/Photos.php:132 +msgid "Delete Album" +msgstr "Borrar álbum" + +#: ../../Zotlabs/Module/Photos.php:153 +msgid "" +"Multiple storage folders exist with this album name, but within different " +"directories. Please remove the desired folder or folders using the Files " +"manager" +msgstr "Hay varias carpetas con este nombre de álbum, pero dentro de diferentes directorios. Por favor, elimine la carpeta o carpetas que desee utilizando el administrador de ficheros" + +#: ../../Zotlabs/Module/Photos.php:210 ../../Zotlabs/Module/Photos.php:1053 +msgid "Delete Photo" +msgstr "Borrar foto" + +#: ../../Zotlabs/Module/Photos.php:533 +msgid "No photos selected" +msgstr "No hay fotos seleccionadas" + +#: ../../Zotlabs/Module/Photos.php:582 +msgid "Access to this item is restricted." +msgstr "El acceso a este elemento está restringido." + +#: ../../Zotlabs/Module/Photos.php:621 +#, php-format +msgid "%1$.2f MB of %2$.2f MB photo storage used." +msgstr "%1$.2f MB de %2$.2f MB de almacenamiento de fotos utilizado." + +#: ../../Zotlabs/Module/Photos.php:624 +#, php-format +msgid "%1$.2f MB photo storage used." +msgstr "%1$.2f MB de almacenamiento de fotos utilizado." + +#: ../../Zotlabs/Module/Photos.php:660 +msgid "Upload Photos" +msgstr "Subir fotos" + +#: ../../Zotlabs/Module/Photos.php:664 +msgid "Enter an album name" +msgstr "Introducir un nombre de álbum" + +#: ../../Zotlabs/Module/Photos.php:665 +msgid "or select an existing album (doubleclick)" +msgstr "o seleccionar uno existente (doble click)" + +#: ../../Zotlabs/Module/Photos.php:666 +msgid "Create a status post for this upload" +msgstr "Crear un mensaje de estado para esta subida" + +#: ../../Zotlabs/Module/Photos.php:667 +msgid "Caption (optional):" +msgstr "Título (opcional):" + +#: ../../Zotlabs/Module/Photos.php:668 +msgid "Description (optional):" +msgstr "Descripción (opcional):" + +#: ../../Zotlabs/Module/Photos.php:695 +msgid "Album name could not be decoded" +msgstr "El nombre del álbum no ha podido ser descifrado" + +#: ../../Zotlabs/Module/Photos.php:743 +msgid "Contact Photos" +msgstr "Fotos de contacto" + +#: ../../Zotlabs/Module/Photos.php:766 +msgid "Show Newest First" +msgstr "Mostrar lo más reciente primero" + +#: ../../Zotlabs/Module/Photos.php:768 +msgid "Show Oldest First" +msgstr "Mostrar lo más antiguo primero" + +#: ../../Zotlabs/Module/Photos.php:792 ../../Zotlabs/Module/Photos.php:1331 +#: ../../include/widgets.php:1499 +msgid "View Photo" +msgstr "Ver foto" + +#: ../../Zotlabs/Module/Photos.php:823 ../../include/widgets.php:1516 +msgid "Edit Album" +msgstr "Editar álbum" + +#: ../../Zotlabs/Module/Photos.php:870 +msgid "Permission denied. Access to this item may be restricted." +msgstr "Permiso denegado. El acceso a este elemento puede estar restringido." + +#: ../../Zotlabs/Module/Photos.php:872 +msgid "Photo not available" +msgstr "Foto no disponible" + +#: ../../Zotlabs/Module/Photos.php:930 +msgid "Use as profile photo" +msgstr "Usar como foto del perfil" + +#: ../../Zotlabs/Module/Photos.php:931 +msgid "Use as cover photo" +msgstr "Usar como imagen de portada del perfil" + +#: ../../Zotlabs/Module/Photos.php:938 +msgid "Private Photo" +msgstr "Foto privada" + +#: ../../Zotlabs/Module/Photos.php:953 +msgid "View Full Size" +msgstr "Ver tamaño completo" + +#: ../../Zotlabs/Module/Photos.php:998 ../../Zotlabs/Module/Admin.php:1437 +#: ../../Zotlabs/Module/Tagrm.php:137 +msgid "Remove" +msgstr "Eliminar" + +#: ../../Zotlabs/Module/Photos.php:1032 +msgid "Edit photo" +msgstr "Editar foto" + +#: ../../Zotlabs/Module/Photos.php:1034 +msgid "Rotate CW (right)" +msgstr "Girar CW (a la derecha)" + +#: ../../Zotlabs/Module/Photos.php:1035 +msgid "Rotate CCW (left)" +msgstr "Girar CCW (a la izquierda)" + +#: ../../Zotlabs/Module/Photos.php:1038 +msgid "Enter a new album name" +msgstr "Introducir un nuevo nombre de álbum" + +#: ../../Zotlabs/Module/Photos.php:1039 +msgid "or select an existing one (doubleclick)" +msgstr "o seleccionar uno (doble click) existente" + +#: ../../Zotlabs/Module/Photos.php:1042 +msgid "Caption" +msgstr "Título" + +#: ../../Zotlabs/Module/Photos.php:1044 +msgid "Add a Tag" +msgstr "Añadir una etiqueta" + +#: ../../Zotlabs/Module/Photos.php:1048 +msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" +msgstr "Ejemplos: @eva, @Carmen_Osuna, @jaime@ejemplo.com" + +#: ../../Zotlabs/Module/Photos.php:1051 +msgid "Flag as adult in album view" +msgstr "Marcar como \"solo para adultos\" en el álbum" + +#: ../../Zotlabs/Module/Photos.php:1070 ../../Zotlabs/Lib/ThreadItem.php:261 +msgid "I like this (toggle)" +msgstr "Me gusta (cambiar)" + +#: ../../Zotlabs/Module/Photos.php:1071 ../../Zotlabs/Lib/ThreadItem.php:262 +msgid "I don't like this (toggle)" +msgstr "No me gusta esto (cambiar)" + +#: ../../Zotlabs/Module/Photos.php:1073 ../../Zotlabs/Lib/ThreadItem.php:397 +#: ../../include/conversation.php:740 +msgid "Please wait" +msgstr "Espere por favor" + +#: ../../Zotlabs/Module/Photos.php:1089 ../../Zotlabs/Module/Photos.php:1207 +#: ../../Zotlabs/Lib/ThreadItem.php:707 +msgid "This is you" +msgstr "Este es usted" + +#: ../../Zotlabs/Module/Photos.php:1091 ../../Zotlabs/Module/Photos.php:1209 +#: ../../Zotlabs/Lib/ThreadItem.php:709 ../../include/js_strings.php:6 +msgid "Comment" +msgstr "Comentar" + +#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:574 +msgctxt "title" +msgid "Likes" +msgstr "Me gusta" + +#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:574 +msgctxt "title" +msgid "Dislikes" +msgstr "No me gusta" + +#: ../../Zotlabs/Module/Photos.php:1108 ../../include/conversation.php:575 +msgctxt "title" +msgid "Agree" +msgstr "De acuerdo" + +#: ../../Zotlabs/Module/Photos.php:1108 ../../include/conversation.php:575 +msgctxt "title" +msgid "Disagree" +msgstr "En desacuerdo" + +#: ../../Zotlabs/Module/Photos.php:1108 ../../include/conversation.php:575 +msgctxt "title" +msgid "Abstain" +msgstr "Abstención" + +#: ../../Zotlabs/Module/Photos.php:1109 ../../include/conversation.php:576 +msgctxt "title" +msgid "Attending" +msgstr "Participaré" + +#: ../../Zotlabs/Module/Photos.php:1109 ../../include/conversation.php:576 +msgctxt "title" +msgid "Not attending" +msgstr "No participaré" + +#: ../../Zotlabs/Module/Photos.php:1109 ../../include/conversation.php:576 +msgctxt "title" +msgid "Might attend" +msgstr "Quizá participe" + +#: ../../Zotlabs/Module/Photos.php:1126 ../../Zotlabs/Module/Photos.php:1138 +#: ../../Zotlabs/Lib/ThreadItem.php:181 ../../Zotlabs/Lib/ThreadItem.php:193 +#: ../../include/conversation.php:1717 +msgid "View all" +msgstr "Ver todo" + +#: ../../Zotlabs/Module/Photos.php:1130 ../../Zotlabs/Lib/ThreadItem.php:185 +#: ../../include/taxonomy.php:403 ../../include/conversation.php:1741 +#: ../../include/channel.php:1158 +msgctxt "noun" +msgid "Like" +msgid_plural "Likes" +msgstr[0] "Me gusta" +msgstr[1] "Me gusta" + +#: ../../Zotlabs/Module/Photos.php:1135 ../../Zotlabs/Lib/ThreadItem.php:190 +#: ../../include/conversation.php:1744 +msgctxt "noun" +msgid "Dislike" +msgid_plural "Dislikes" +msgstr[0] "No me gusta" +msgstr[1] "No me gusta" + +#: ../../Zotlabs/Module/Photos.php:1235 +msgid "Photo Tools" +msgstr "Gestión de las fotos" + +#: ../../Zotlabs/Module/Photos.php:1244 +msgid "In This Photo:" +msgstr "En esta foto:" + +#: ../../Zotlabs/Module/Photos.php:1249 +msgid "Map" +msgstr "Mapa" + +#: ../../Zotlabs/Module/Photos.php:1257 ../../Zotlabs/Lib/ThreadItem.php:386 +msgctxt "noun" +msgid "Likes" +msgstr "Me gusta" + +#: ../../Zotlabs/Module/Photos.php:1258 ../../Zotlabs/Lib/ThreadItem.php:387 +msgctxt "noun" +msgid "Dislikes" +msgstr "No me gusta" + +#: ../../Zotlabs/Module/Photos.php:1263 ../../Zotlabs/Lib/ThreadItem.php:392 +#: ../../include/acl_selectors.php:285 +msgid "Close" +msgstr "Cerrar" + +#: ../../Zotlabs/Module/Photos.php:1337 +msgid "View Album" +msgstr "Ver álbum" + +#: ../../Zotlabs/Module/Photos.php:1348 ../../Zotlabs/Module/Photos.php:1361 +#: ../../Zotlabs/Module/Photos.php:1362 +msgid "Recent Photos" +msgstr "Fotos recientes" + +#: ../../Zotlabs/Module/Ping.php:265 +msgid "sent you a private message" +msgstr "le ha enviado un mensaje privado" + +#: ../../Zotlabs/Module/Ping.php:313 +msgid "added your channel" +msgstr "añadió este canal a sus conexiones" + +#: ../../Zotlabs/Module/Ping.php:323 +msgid "g A l F d" +msgstr "g A l d F" + +#: ../../Zotlabs/Module/Ping.php:346 +msgid "[today]" +msgstr "[hoy]" + +#: ../../Zotlabs/Module/Ping.php:355 +msgid "posted an event" +msgstr "publicó un evento" + +#: ../../Zotlabs/Module/Oexchange.php:27 +msgid "Unable to find your hub." +msgstr "No se puede encontrar su servidor." + +#: ../../Zotlabs/Module/Oexchange.php:41 +msgid "Post successful." +msgstr "Enviado con éxito." + +#: ../../Zotlabs/Module/Openid.php:30 +msgid "OpenID protocol error. No ID returned." +msgstr "Error del protocolo OpenID. Ningún ID recibido como respuesta." + +#: ../../Zotlabs/Module/Openid.php:193 ../../include/auth.php:226 +msgid "Login failed." +msgstr "El acceso ha fallado." + +#: ../../Zotlabs/Module/Page.php:133 +msgid "" +"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod " +"tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam," +" quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo " +"consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse " +"cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat " +"non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." +msgstr "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." + +#: ../../Zotlabs/Module/Pconfig.php:26 ../../Zotlabs/Module/Pconfig.php:59 +msgid "This setting requires special processing and editing has been blocked." +msgstr "Este ajuste necesita de un proceso especial y la edición ha sido bloqueada." + +#: ../../Zotlabs/Module/Pconfig.php:48 +msgid "Configuration Editor" +msgstr "Editor de configuración" + +#: ../../Zotlabs/Module/Pconfig.php:49 +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 "Atención: El cambio de algunos ajustes puede volver inutilizable su canal. Por favor, abandone la página excepto que esté seguro y sepa cómo usar correctamente esta característica." + +#: ../../Zotlabs/Module/Pdledit.php:18 +msgid "Layout updated." +msgstr "Plantilla actualizada." + +#: ../../Zotlabs/Module/Pdledit.php:34 ../../Zotlabs/Module/Pdledit.php:61 +msgid "Edit System Page Description" +msgstr "Editor del Sistema de Descripción de Páginas" + +#: ../../Zotlabs/Module/Pdledit.php:56 +msgid "Layout not found." +msgstr "Plantilla no encontrada" + +#: ../../Zotlabs/Module/Pdledit.php:62 +msgid "Module Name:" +msgstr "Nombre del módulo:" + +#: ../../Zotlabs/Module/Pdledit.php:63 +msgid "Layout Help" +msgstr "Ayuda para el diseño de plantillas de página" + +#: ../../Zotlabs/Module/Poke.php:168 ../../Zotlabs/Lib/Apps.php:226 +#: ../../include/conversation.php:960 +msgid "Poke" +msgstr "Toques y otras cosas" + +#: ../../Zotlabs/Module/Poke.php:169 +msgid "Poke somebody" +msgstr "Dar un toque a alguien" + +#: ../../Zotlabs/Module/Poke.php:172 +msgid "Poke/Prod" +msgstr "Toque/Incitación" + +#: ../../Zotlabs/Module/Poke.php:173 +msgid "Poke, prod or do other things to somebody" +msgstr "Dar un toque, incitar o hacer otras cosas a alguien" + +#: ../../Zotlabs/Module/Poke.php:180 +msgid "Recipient" +msgstr "Destinatario" + +#: ../../Zotlabs/Module/Poke.php:181 +msgid "Choose what you wish to do to recipient" +msgstr "Elegir qué desea enviar al destinatario" + +#: ../../Zotlabs/Module/Poke.php:184 ../../Zotlabs/Module/Poke.php:185 +msgid "Make this post private" +msgstr "Convertir en privado este envío" + +#: ../../Zotlabs/Module/Probe.php:30 ../../Zotlabs/Module/Probe.php:34 +#, php-format +msgid "Fetching URL returns error: %1$s" +msgstr "Al intentar obtener la dirección, retorna el error: %1$s" + #: ../../Zotlabs/Module/Profiles.php:24 ../../Zotlabs/Module/Profiles.php:189 #: ../../Zotlabs/Module/Profiles.php:246 ../../Zotlabs/Module/Profiles.php:625 msgid "Profile not found." @@ -2205,11 +3281,6 @@ msgstr "Página personal" msgid "Interests" msgstr "Intereses" -#: ../../Zotlabs/Module/Profiles.php:470 ../../Zotlabs/Module/Locs.php:118 -#: ../../Zotlabs/Module/Admin.php:1224 -msgid "Address" -msgstr "Dirección" - #: ../../Zotlabs/Module/Profiles.php:560 msgid "Profile updated." msgstr "Perfil actualizado." @@ -2227,7 +3298,7 @@ msgid "View this profile" msgstr "Ver este perfil" #: ../../Zotlabs/Module/Profiles.php:689 ../../Zotlabs/Module/Profiles.php:771 -#: ../../include/channel.php:998 +#: ../../include/channel.php:959 msgid "Edit visibility" msgstr "Editar visibilidad" @@ -2239,7 +3310,7 @@ msgstr "Gestión del perfil" msgid "Change cover photo" msgstr "Cambiar la imagen de portada del perfil" -#: ../../Zotlabs/Module/Profiles.php:692 ../../include/channel.php:969 +#: ../../Zotlabs/Module/Profiles.php:692 ../../include/channel.php:930 msgid "Change profile photo" msgstr "Cambiar la foto del perfil" @@ -2259,8 +3330,8 @@ msgstr "Eliminar este perfil" msgid "Add profile things" msgstr "Añadir cosas al perfil" -#: ../../Zotlabs/Module/Profiles.php:697 ../../include/conversation.php:1541 -#: ../../include/widgets.php:105 +#: ../../Zotlabs/Module/Profiles.php:697 ../../include/widgets.php:105 +#: ../../include/conversation.php:1526 msgid "Personal" msgstr "Personales" @@ -2400,1097 +3471,119 @@ msgstr "Información de contacto y redes sociales" msgid "My other channels" msgstr "Mis otros canales" -#: ../../Zotlabs/Module/Profiles.php:767 ../../include/channel.php:994 +#: ../../Zotlabs/Module/Profiles.php:767 ../../include/channel.php:955 msgid "Profile Image" msgstr "Imagen del perfil" #: ../../Zotlabs/Module/Profiles.php:777 ../../include/nav.php:88 -#: ../../include/channel.php:976 +#: ../../include/channel.php:937 msgid "Edit Profiles" msgstr "Editar perfiles" -#: ../../Zotlabs/Module/Import.php:33 -#, php-format -msgid "Your service plan only allows %d channels." -msgstr "Su paquete de servicios solo permite %d canales." - -#: ../../Zotlabs/Module/Import.php:71 ../../Zotlabs/Module/Import_items.php:42 -msgid "Nothing to import." -msgstr "No hay nada para importar." - -#: ../../Zotlabs/Module/Import.php:95 ../../Zotlabs/Module/Import_items.php:66 -msgid "Unable to download data from old server" -msgstr "No se han podido descargar datos de su antiguo servidor" - -#: ../../Zotlabs/Module/Import.php:101 -#: ../../Zotlabs/Module/Import_items.php:72 -msgid "Imported file is empty." -msgstr "El fichero importado está vacío." - -#: ../../Zotlabs/Module/Import.php:123 -#: ../../Zotlabs/Module/Import_items.php:88 -#, php-format -msgid "Warning: Database versions differ by %1$d updates." -msgstr "Atención: Las versiones de la base de datos difieren en %1$d actualizaciones." - -#: ../../Zotlabs/Module/Import.php:153 ../../include/import.php:107 -msgid "Cloned channel not found. Import failed." -msgstr "No se ha podido importar el canal porque el canal clonado no se ha encontrado." - -#: ../../Zotlabs/Module/Import.php:163 -msgid "No channel. Import failed." -msgstr "No hay canal. La importación ha fallado" - -#: ../../Zotlabs/Module/Import.php:520 -#: ../../include/Import/import_diaspora.php:142 -msgid "Import completed." -msgstr "Importación completada." - -#: ../../Zotlabs/Module/Import.php:542 -msgid "You must be logged in to use this feature." -msgstr "Debe estar registrado para poder usar esta funcionalidad." - -#: ../../Zotlabs/Module/Import.php:547 -msgid "Import Channel" -msgstr "Importar canal" - -#: ../../Zotlabs/Module/Import.php:548 +#: ../../Zotlabs/Module/Profile_photo.php:179 msgid "" -"Use this form to import an existing channel from a different server/hub. You" -" may retrieve the channel identity from the old server/hub via the network " -"or provide an export file." -msgstr "Emplee este formulario para importar un canal desde un servidor/hub diferente. Puede recuperar el canal desde el antiguo servidor/hub a través de la red o proporcionando un fichero de exportación." +"Shift-reload the page or clear browser cache if the new photo does not " +"display immediately." +msgstr "Recargue la página o limpie el caché del navegador si la nueva foto no se muestra inmediatamente." -#: ../../Zotlabs/Module/Import.php:549 -#: ../../Zotlabs/Module/Import_items.php:121 -msgid "File to Upload" -msgstr "Fichero para subir" +#: ../../Zotlabs/Module/Profile_photo.php:367 +msgid "Upload Profile Photo" +msgstr "Subir foto de perfil" -#: ../../Zotlabs/Module/Import.php:550 -msgid "Or provide the old server/hub details" -msgstr "O proporcione los detalles de su antiguo servidor/hub" +#: ../../Zotlabs/Module/Profperm.php:34 ../../Zotlabs/Module/Profperm.php:63 +msgid "Invalid profile identifier." +msgstr "Identificador del perfil no válido" -#: ../../Zotlabs/Module/Import.php:551 -msgid "Your old identity address (xyz@example.com)" -msgstr "Su identidad en el antiguo servidor (canal@ejemplo.com)" +#: ../../Zotlabs/Module/Profperm.php:115 +msgid "Profile Visibility Editor" +msgstr "Editor de visibilidad del perfil" -#: ../../Zotlabs/Module/Import.php:552 -msgid "Your old login email address" -msgstr "Su antigua dirección de correo electrónico" +#: ../../Zotlabs/Module/Profperm.php:117 ../../include/channel.php:1249 +msgid "Profile" +msgstr "Perfil" -#: ../../Zotlabs/Module/Import.php:553 -msgid "Your old login password" -msgstr "Su antigua contraseña" +#: ../../Zotlabs/Module/Profperm.php:119 +msgid "Click on a contact to add or remove." +msgstr "Pulsar en un contacto para añadirlo o eliminarlo." -#: ../../Zotlabs/Module/Import.php:554 +#: ../../Zotlabs/Module/Profperm.php:128 +msgid "Visible To" +msgstr "Visible para" + +#: ../../Zotlabs/Module/Pubsites.php:22 ../../include/widgets.php:1270 +msgid "Public Hubs" +msgstr "Servidores públicos" + +#: ../../Zotlabs/Module/Pubsites.php:25 msgid "" -"For either option, please choose whether to make this hub your new primary " -"address, or whether your old location should continue this role. You will be" -" able to post from either location, but only one can be marked as the " -"primary location for files, photos, and media." -msgstr "Para cualquiera de las opciones, elija si hacer de este servidor su nueva dirección primaria, o si su antigua dirección debe continuar con este papel. Usted podrá publicar desde cualquier ubicación, pero sólo una puede estar marcada como la ubicación principal para los ficheros, fotos y otras imágenes o vídeos." +"The listed hubs allow public registration for the $Projectname network. All " +"hubs in the network are interlinked so membership on any of them conveys " +"membership in the network as a whole. Some hubs may require subscription or " +"provide tiered service plans. The hub itself may provide " +"additional details." +msgstr "Los sitios listados permiten el registro público en la red $Projectname. Todos los sitios de la red están vinculados entre sí, por lo que sus miembros, en ninguno de ellos, indican la pertenencia a la red en su conjunto. Algunos sitios pueden requerir suscripción o proporcionar planes de servicio por niveles. Los mismos hubs pueden proporcionar detalles adicionales." -#: ../../Zotlabs/Module/Import.php:555 -msgid "Make this hub my primary location" -msgstr "Convertir este servidor en mi ubicación primaria" +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Hub URL" +msgstr "Dirección del hub" -#: ../../Zotlabs/Module/Import.php:556 -msgid "" -"Import existing posts if possible (experimental - limited by available " -"memory" -msgstr "Importar el contenido publicado si es posible (experimental - limitado por la memoria disponible" +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Access Type" +msgstr "Tipo de acceso" -#: ../../Zotlabs/Module/Import.php:557 -msgid "" -"This process may take several minutes to complete. Please submit the form " -"only once and leave this page open until finished." -msgstr "Este proceso puede tardar varios minutos en completarse. Por favor envíe el formulario una sola vez y mantenga esta página abierta hasta que termine." +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Registration Policy" +msgstr "Normas de registro" -#: ../../Zotlabs/Module/Home.php:74 ../../Zotlabs/Module/Home.php:82 -#: ../../Zotlabs/Module/Siteinfo.php:48 -msgid "$Projectname" -msgstr "$Projectname" +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Stats" +msgstr "Estadísticas" -#: ../../Zotlabs/Module/Home.php:92 +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Software" +msgstr "Software" + +#: ../../Zotlabs/Module/Pubsites.php:31 ../../Zotlabs/Module/Ratings.php:103 +#: ../../include/conversation.php:959 +msgid "Ratings" +msgstr "Valoraciones" + +#: ../../Zotlabs/Module/Pubsites.php:38 +msgid "Rate" +msgstr "Valorar" + +#: ../../Zotlabs/Module/Rate.php:160 +msgid "Website:" +msgstr "Sitio web:" + +#: ../../Zotlabs/Module/Rate.php:163 #, php-format -msgid "Welcome to %s" -msgstr "Bienvenido a %s" +msgid "Remote Channel [%s] (not yet known on this site)" +msgstr "Canal remoto [%s] (aún no es conocido en este sitio)" -#: ../../Zotlabs/Module/Item.php:179 -msgid "Unable to locate original post." -msgstr "No ha sido posible encontrar la entrada original." +#: ../../Zotlabs/Module/Rate.php:164 +msgid "Rating (this information is public)" +msgstr "Valoración (esta información es pública)" -#: ../../Zotlabs/Module/Item.php:432 -msgid "Empty post discarded." -msgstr "La entrada vacía ha sido desechada." +#: ../../Zotlabs/Module/Rate.php:165 +msgid "Optionally explain your rating (this information is public)" +msgstr "Opcionalmente puede explicar su valoración (esta información es pública)" -#: ../../Zotlabs/Module/Item.php:472 -msgid "Executable content type not permitted to this channel." -msgstr "Contenido de tipo ejecutable no permitido en este canal." +#: ../../Zotlabs/Module/Ratings.php:73 +msgid "No ratings" +msgstr "Ninguna valoración" -#: ../../Zotlabs/Module/Item.php:856 -msgid "Duplicate post suppressed." -msgstr "Se ha suprimido la entrada duplicada." +#: ../../Zotlabs/Module/Ratings.php:104 +msgid "Rating: " +msgstr "Valoración:" -#: ../../Zotlabs/Module/Item.php:989 -msgid "System error. Post not saved." -msgstr "Error del sistema. La entrada no se ha podido salvar." +#: ../../Zotlabs/Module/Ratings.php:105 +msgid "Website: " +msgstr "Sitio web:" -#: ../../Zotlabs/Module/Item.php:1242 -msgid "Unable to obtain post information from database." -msgstr "No ha sido posible obtener información de la entrada en la base de datos." - -#: ../../Zotlabs/Module/Item.php:1249 -#, php-format -msgid "You have reached your limit of %1$.0f top level posts." -msgstr "Ha alcanzado su límite de %1$.0f entradas en la página principal." - -#: ../../Zotlabs/Module/Item.php:1256 -#, php-format -msgid "You have reached your limit of %1$.0f webpages." -msgstr "Ha alcanzado su límite de %1$.0f páginas web." - -#: ../../Zotlabs/Module/Photos.php:82 -msgid "Page owner information could not be retrieved." -msgstr "La información del propietario de la página no pudo ser recuperada." - -#: ../../Zotlabs/Module/Photos.php:97 ../../Zotlabs/Module/Photos.php:741 -#: ../../Zotlabs/Module/Profile_photo.php:115 -#: ../../Zotlabs/Module/Profile_photo.php:212 -#: ../../Zotlabs/Module/Profile_photo.php:311 -#: ../../include/photo/photo_driver.php:718 -msgid "Profile Photos" -msgstr "Fotos del perfil" - -#: ../../Zotlabs/Module/Photos.php:103 ../../Zotlabs/Module/Photos.php:147 -msgid "Album not found." -msgstr "Álbum no encontrado." - -#: ../../Zotlabs/Module/Photos.php:130 -msgid "Delete Album" -msgstr "Borrar álbum" - -#: ../../Zotlabs/Module/Photos.php:151 -msgid "" -"Multiple storage folders exist with this album name, but within different " -"directories. Please remove the desired folder or folders using the Files " -"manager" -msgstr "Hay varias carpetas con este nombre de álbum, pero dentro de diferentes directorios. Por favor, elimine la carpeta o carpetas que desee utilizando el administrador de ficheros" - -#: ../../Zotlabs/Module/Photos.php:208 ../../Zotlabs/Module/Photos.php:1051 -msgid "Delete Photo" -msgstr "Borrar foto" - -#: ../../Zotlabs/Module/Photos.php:531 -msgid "No photos selected" -msgstr "No hay fotos seleccionadas" - -#: ../../Zotlabs/Module/Photos.php:580 -msgid "Access to this item is restricted." -msgstr "El acceso a este elemento está restringido." - -#: ../../Zotlabs/Module/Photos.php:619 -#, php-format -msgid "%1$.2f MB of %2$.2f MB photo storage used." -msgstr "%1$.2f MB de %2$.2f MB de almacenamiento de fotos utilizado." - -#: ../../Zotlabs/Module/Photos.php:622 -#, php-format -msgid "%1$.2f MB photo storage used." -msgstr "%1$.2f MB de almacenamiento de fotos utilizado." - -#: ../../Zotlabs/Module/Photos.php:658 -msgid "Upload Photos" -msgstr "Subir fotos" - -#: ../../Zotlabs/Module/Photos.php:662 -msgid "Enter an album name" -msgstr "Introducir un nombre de álbum" - -#: ../../Zotlabs/Module/Photos.php:663 -msgid "or select an existing album (doubleclick)" -msgstr "o seleccionar uno existente (doble click)" - -#: ../../Zotlabs/Module/Photos.php:664 -msgid "Create a status post for this upload" -msgstr "Crear un mensaje de estado para esta subida" - -#: ../../Zotlabs/Module/Photos.php:665 -msgid "Caption (optional):" -msgstr "Título (opcional):" - -#: ../../Zotlabs/Module/Photos.php:666 -msgid "Description (optional):" -msgstr "Descripción (opcional):" - -#: ../../Zotlabs/Module/Photos.php:693 -msgid "Album name could not be decoded" -msgstr "El nombre del álbum no ha podido ser descifrado" - -#: ../../Zotlabs/Module/Photos.php:741 -msgid "Contact Photos" -msgstr "Fotos de contacto" - -#: ../../Zotlabs/Module/Photos.php:764 -msgid "Show Newest First" -msgstr "Mostrar lo más reciente primero" - -#: ../../Zotlabs/Module/Photos.php:766 -msgid "Show Oldest First" -msgstr "Mostrar lo más antiguo primero" - -#: ../../Zotlabs/Module/Photos.php:790 ../../Zotlabs/Module/Photos.php:1329 -#: ../../Zotlabs/Module/Embedphotos.php:141 ../../include/widgets.php:1593 -msgid "View Photo" -msgstr "Ver foto" - -#: ../../Zotlabs/Module/Photos.php:821 -#: ../../Zotlabs/Module/Embedphotos.php:157 ../../include/widgets.php:1610 -msgid "Edit Album" -msgstr "Editar álbum" - -#: ../../Zotlabs/Module/Photos.php:868 -msgid "Permission denied. Access to this item may be restricted." -msgstr "Permiso denegado. El acceso a este elemento puede estar restringido." - -#: ../../Zotlabs/Module/Photos.php:870 -msgid "Photo not available" -msgstr "Foto no disponible" - -#: ../../Zotlabs/Module/Photos.php:928 -msgid "Use as profile photo" -msgstr "Usar como foto del perfil" - -#: ../../Zotlabs/Module/Photos.php:929 -msgid "Use as cover photo" -msgstr "Usar como imagen de portada del perfil" - -#: ../../Zotlabs/Module/Photos.php:936 -msgid "Private Photo" -msgstr "Foto privada" - -#: ../../Zotlabs/Module/Photos.php:951 -msgid "View Full Size" -msgstr "Ver tamaño completo" - -#: ../../Zotlabs/Module/Photos.php:996 ../../Zotlabs/Module/Admin.php:1437 -#: ../../Zotlabs/Module/Tagrm.php:137 -msgid "Remove" -msgstr "Eliminar" - -#: ../../Zotlabs/Module/Photos.php:1030 -msgid "Edit photo" -msgstr "Editar foto" - -#: ../../Zotlabs/Module/Photos.php:1032 -msgid "Rotate CW (right)" -msgstr "Girar CW (a la derecha)" - -#: ../../Zotlabs/Module/Photos.php:1033 -msgid "Rotate CCW (left)" -msgstr "Girar CCW (a la izquierda)" - -#: ../../Zotlabs/Module/Photos.php:1036 -msgid "Enter a new album name" -msgstr "Introducir un nuevo nombre de álbum" - -#: ../../Zotlabs/Module/Photos.php:1037 -msgid "or select an existing one (doubleclick)" -msgstr "o seleccionar uno (doble click) existente" - -#: ../../Zotlabs/Module/Photos.php:1040 -msgid "Caption" -msgstr "Título" - -#: ../../Zotlabs/Module/Photos.php:1042 -msgid "Add a Tag" -msgstr "Añadir una etiqueta" - -#: ../../Zotlabs/Module/Photos.php:1046 -msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" -msgstr "Ejemplos: @eva, @Carmen_Osuna, @jaime@ejemplo.com" - -#: ../../Zotlabs/Module/Photos.php:1049 -msgid "Flag as adult in album view" -msgstr "Marcar como \"solo para adultos\" en el álbum" - -#: ../../Zotlabs/Module/Photos.php:1068 ../../Zotlabs/Lib/ThreadItem.php:261 -msgid "I like this (toggle)" -msgstr "Me gusta (cambiar)" - -#: ../../Zotlabs/Module/Photos.php:1069 ../../Zotlabs/Lib/ThreadItem.php:262 -msgid "I don't like this (toggle)" -msgstr "No me gusta esto (cambiar)" - -#: ../../Zotlabs/Module/Photos.php:1071 ../../Zotlabs/Lib/ThreadItem.php:397 -#: ../../include/conversation.php:743 -msgid "Please wait" -msgstr "Espere por favor" - -#: ../../Zotlabs/Module/Photos.php:1087 ../../Zotlabs/Module/Photos.php:1205 -#: ../../Zotlabs/Lib/ThreadItem.php:707 -msgid "This is you" -msgstr "Este es usted" - -#: ../../Zotlabs/Module/Photos.php:1089 ../../Zotlabs/Module/Photos.php:1207 -#: ../../Zotlabs/Lib/ThreadItem.php:709 ../../include/js_strings.php:6 -msgid "Comment" -msgstr "Comentar" - -#: ../../Zotlabs/Module/Photos.php:1105 ../../include/conversation.php:577 -msgctxt "title" -msgid "Likes" -msgstr "Me gusta" - -#: ../../Zotlabs/Module/Photos.php:1105 ../../include/conversation.php:577 -msgctxt "title" -msgid "Dislikes" -msgstr "No me gusta" - -#: ../../Zotlabs/Module/Photos.php:1106 ../../include/conversation.php:578 -msgctxt "title" -msgid "Agree" -msgstr "De acuerdo" - -#: ../../Zotlabs/Module/Photos.php:1106 ../../include/conversation.php:578 -msgctxt "title" -msgid "Disagree" -msgstr "En desacuerdo" - -#: ../../Zotlabs/Module/Photos.php:1106 ../../include/conversation.php:578 -msgctxt "title" -msgid "Abstain" -msgstr "Abstención" - -#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:579 -msgctxt "title" -msgid "Attending" -msgstr "Participaré" - -#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:579 -msgctxt "title" -msgid "Not attending" -msgstr "No participaré" - -#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:579 -msgctxt "title" -msgid "Might attend" -msgstr "Quizá participe" - -#: ../../Zotlabs/Module/Photos.php:1124 ../../Zotlabs/Module/Photos.php:1136 -#: ../../Zotlabs/Lib/ThreadItem.php:181 ../../Zotlabs/Lib/ThreadItem.php:193 -#: ../../include/conversation.php:1738 -msgid "View all" -msgstr "Ver todo" - -#: ../../Zotlabs/Module/Photos.php:1128 ../../Zotlabs/Lib/ThreadItem.php:185 -#: ../../include/taxonomy.php:403 ../../include/channel.php:1198 -#: ../../include/conversation.php:1762 -msgctxt "noun" -msgid "Like" -msgid_plural "Likes" -msgstr[0] "Me gusta" -msgstr[1] "Me gusta" - -#: ../../Zotlabs/Module/Photos.php:1133 ../../Zotlabs/Lib/ThreadItem.php:190 -#: ../../include/conversation.php:1765 -msgctxt "noun" -msgid "Dislike" -msgid_plural "Dislikes" -msgstr[0] "No me gusta" -msgstr[1] "No me gusta" - -#: ../../Zotlabs/Module/Photos.php:1233 -msgid "Photo Tools" -msgstr "Gestión de las fotos" - -#: ../../Zotlabs/Module/Photos.php:1242 -msgid "In This Photo:" -msgstr "En esta foto:" - -#: ../../Zotlabs/Module/Photos.php:1247 -msgid "Map" -msgstr "Mapa" - -#: ../../Zotlabs/Module/Photos.php:1255 ../../Zotlabs/Lib/ThreadItem.php:386 -msgctxt "noun" -msgid "Likes" -msgstr "Me gusta" - -#: ../../Zotlabs/Module/Photos.php:1256 ../../Zotlabs/Lib/ThreadItem.php:387 -msgctxt "noun" -msgid "Dislikes" -msgstr "No me gusta" - -#: ../../Zotlabs/Module/Photos.php:1261 ../../Zotlabs/Lib/ThreadItem.php:392 -#: ../../include/acl_selectors.php:283 -msgid "Close" -msgstr "Cerrar" - -#: ../../Zotlabs/Module/Photos.php:1335 -msgid "View Album" -msgstr "Ver álbum" - -#: ../../Zotlabs/Module/Photos.php:1346 ../../Zotlabs/Module/Photos.php:1359 -#: ../../Zotlabs/Module/Photos.php:1360 -msgid "Recent Photos" -msgstr "Fotos recientes" - -#: ../../Zotlabs/Module/Lockview.php:75 -msgid "Remote privacy information not available." -msgstr "La información privada remota no está disponible." - -#: ../../Zotlabs/Module/Lockview.php:96 -msgid "Visible to:" -msgstr "Visible para:" - -#: ../../Zotlabs/Module/Import_items.php:104 -msgid "Import completed" -msgstr "Importación completada" - -#: ../../Zotlabs/Module/Import_items.php:119 -msgid "Import Items" -msgstr "Importar elementos" - -#: ../../Zotlabs/Module/Import_items.php:120 -msgid "" -"Use this form to import existing posts and content from an export file." -msgstr "Utilice este formulario para importar entradas existentes y contenido desde un archivo de exportación." - -#: ../../Zotlabs/Module/Invite.php:29 -msgid "Total invitation limit exceeded." -msgstr "Se ha superado el límite máximo de invitaciones." - -#: ../../Zotlabs/Module/Invite.php:53 -#, php-format -msgid "%s : Not a valid email address." -msgstr "%s : No es una dirección de correo electrónico válida. " - -#: ../../Zotlabs/Module/Invite.php:63 -msgid "Please join us on $Projectname" -msgstr "Únase a nosotros en $Projectname" - -#: ../../Zotlabs/Module/Invite.php:74 -msgid "Invitation limit exceeded. Please contact your site administrator." -msgstr "Excedido el límite de invitaciones. Por favor, contacte con el Administrador de su sitio." - -#: ../../Zotlabs/Module/Invite.php:79 -#, php-format -msgid "%s : Message delivery failed." -msgstr "%s : Falló el envío del mensaje." - -#: ../../Zotlabs/Module/Invite.php:83 -#, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "%d mensajes enviados." -msgstr[1] "%d mensajes enviados." - -#: ../../Zotlabs/Module/Invite.php:102 -msgid "You have no more invitations available" -msgstr "No tiene más invitaciones disponibles" - -#: ../../Zotlabs/Module/Invite.php:133 -msgid "Send invitations" -msgstr "Enviar invitaciones" - -#: ../../Zotlabs/Module/Invite.php:134 -msgid "Enter email addresses, one per line:" -msgstr "Introduzca las direcciones de correo electrónico, una por línea:" - -#: ../../Zotlabs/Module/Invite.php:135 ../../Zotlabs/Module/Mail.php:241 -msgid "Your message:" -msgstr "Su mensaje:" - -#: ../../Zotlabs/Module/Invite.php:136 -msgid "Please join my community on $Projectname." -msgstr "Por favor, únase a mi comunidad en $Projectname." - -#: ../../Zotlabs/Module/Invite.php:138 -msgid "You will need to supply this invitation code:" -msgstr "Tendrá que suministrar este código de invitación:" - -#: ../../Zotlabs/Module/Invite.php:139 -msgid "" -"1. Register at any $Projectname location (they are all inter-connected)" -msgstr "1. Regístrese en cualquier sitio de $Projectname (están todos interconectados)" - -#: ../../Zotlabs/Module/Invite.php:141 -msgid "2. Enter my $Projectname network address into the site searchbar." -msgstr "2. Introduzca mi dirección $Projectname en la caja de búsqueda del sitio." - -#: ../../Zotlabs/Module/Invite.php:142 -msgid "or visit" -msgstr "o visitar" - -#: ../../Zotlabs/Module/Invite.php:144 -msgid "3. Click [Connect]" -msgstr "3. Pulse [conectar]" - -#: ../../Zotlabs/Module/Locs.php:25 ../../Zotlabs/Module/Locs.php:54 -msgid "Location not found." -msgstr "Dirección no encontrada." - -#: ../../Zotlabs/Module/Locs.php:62 -msgid "Location lookup failed." -msgstr "Ha fallado la búsqueda de la dirección." - -#: ../../Zotlabs/Module/Locs.php:66 -msgid "" -"Please select another location to become primary before removing the primary" -" location." -msgstr "Por favor, seleccione una copia de su canal (un clon) para convertirlo en primario antes de eliminar su canal principal." - -#: ../../Zotlabs/Module/Locs.php:95 -msgid "Syncing locations" -msgstr "Sincronización de ubicaciones" - -#: ../../Zotlabs/Module/Locs.php:105 -msgid "No locations found." -msgstr "No encontrada ninguna dirección." - -#: ../../Zotlabs/Module/Locs.php:116 -msgid "Manage Channel Locations" -msgstr "Gestionar las direcciones del canal" - -#: ../../Zotlabs/Module/Locs.php:119 -msgid "Primary" -msgstr "Primario" - -#: ../../Zotlabs/Module/Locs.php:120 ../../Zotlabs/Module/Menu.php:113 -msgid "Drop" -msgstr "Eliminar" - -#: ../../Zotlabs/Module/Locs.php:122 -msgid "Sync Now" -msgstr "Sincronizar ahora" - -#: ../../Zotlabs/Module/Locs.php:123 -msgid "Please wait several minutes between consecutive operations." -msgstr "Por favor, espere algunos minutos entre operaciones consecutivas." - -#: ../../Zotlabs/Module/Locs.php:124 -msgid "" -"When possible, drop a location by logging into that website/hub and removing" -" your channel." -msgstr "Cuando sea posible, elimine una ubicación iniciando sesión en el sitio web o \"hub\" y borrando su canal." - -#: ../../Zotlabs/Module/Locs.php:125 -msgid "Use this form to drop the location if the hub is no longer operating." -msgstr "Utilice este formulario para eliminar la dirección si el \"hub\" no está funcionando desde hace tiempo." - -#: ../../Zotlabs/Module/Magic.php:71 -msgid "Hub not found." -msgstr "Servidor no encontrado" - -#: ../../Zotlabs/Module/Mail.php:38 -msgid "Unable to lookup recipient." -msgstr "Imposible asociar a un destinatario." - -#: ../../Zotlabs/Module/Mail.php:45 -msgid "Unable to communicate with requested channel." -msgstr "Imposible comunicar con el canal solicitado." - -#: ../../Zotlabs/Module/Mail.php:52 -msgid "Cannot verify requested channel." -msgstr "No se puede verificar el canal solicitado." - -#: ../../Zotlabs/Module/Mail.php:70 -msgid "Selected channel has private message restrictions. Send failed." -msgstr "El canal seleccionado tiene restricciones sobre los mensajes privados. El envío falló." - -#: ../../Zotlabs/Module/Mail.php:135 -msgid "Messages" -msgstr "Mensajes" - -#: ../../Zotlabs/Module/Mail.php:170 -msgid "Message recalled." -msgstr "Mensaje revocado." - -#: ../../Zotlabs/Module/Mail.php:183 -msgid "Conversation removed." -msgstr "Conversación eliminada." - -#: ../../Zotlabs/Module/Mail.php:198 ../../Zotlabs/Module/Mail.php:307 -msgid "Expires YYYY-MM-DD HH:MM" -msgstr "Caduca YYYY-MM-DD HH:MM" - -#: ../../Zotlabs/Module/Mail.php:226 -msgid "Requested channel is not in this network" -msgstr "El canal solicitado no existe en esta red" - -#: ../../Zotlabs/Module/Mail.php:234 -msgid "Send Private Message" -msgstr "Enviar un mensaje privado" - -#: ../../Zotlabs/Module/Mail.php:235 ../../Zotlabs/Module/Mail.php:360 -msgid "To:" -msgstr "Para:" - -#: ../../Zotlabs/Module/Mail.php:238 ../../Zotlabs/Module/Mail.php:362 -msgid "Subject:" -msgstr "Asunto:" - -#: ../../Zotlabs/Module/Mail.php:243 ../../Zotlabs/Module/Mail.php:368 -#: ../../include/conversation.php:1231 -msgid "Attach file" -msgstr "Adjuntar fichero" - -#: ../../Zotlabs/Module/Mail.php:245 -msgid "Send" -msgstr "Enviar" - -#: ../../Zotlabs/Module/Mail.php:248 ../../Zotlabs/Module/Mail.php:373 -#: ../../include/conversation.php:1266 -msgid "Set expiration date" -msgstr "Configurar fecha de caducidad" - -#: ../../Zotlabs/Module/Mail.php:332 -msgid "Delete message" -msgstr "Borrar mensaje" - -#: ../../Zotlabs/Module/Mail.php:333 -msgid "Delivery report" -msgstr "Informe de transmisión" - -#: ../../Zotlabs/Module/Mail.php:334 -msgid "Recall message" -msgstr "Revocar el mensaje" - -#: ../../Zotlabs/Module/Mail.php:336 -msgid "Message has been recalled." -msgstr "El mensaje ha sido revocado." - -#: ../../Zotlabs/Module/Mail.php:353 -msgid "Delete Conversation" -msgstr "Eliminar conversación" - -#: ../../Zotlabs/Module/Mail.php:355 -msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." -msgstr "Comunicación segura no disponible. Pero puede responder desde la página del perfil del remitente." - -#: ../../Zotlabs/Module/Mail.php:359 -msgid "Send Reply" -msgstr "Responder" - -#: ../../Zotlabs/Module/Mail.php:364 -#, php-format -msgid "Your message for %s (%s):" -msgstr "Su mensaje para %s (%s):" - -#: ../../Zotlabs/Module/Manage.php:136 -#: ../../Zotlabs/Module/New_channel.php:121 -#, php-format -msgid "You have created %1$.0f of %2$.0f allowed channels." -msgstr "Ha creado %1$.0f de %2$.0f canales permitidos." - -#: ../../Zotlabs/Module/Manage.php:143 -msgid "Create a new channel" -msgstr "Crear un nuevo canal" - -#: ../../Zotlabs/Module/Manage.php:164 ../../Zotlabs/Lib/Apps.php:214 -#: ../../include/nav.php:208 -msgid "Channel Manager" -msgstr "Administración de canales" - -#: ../../Zotlabs/Module/Manage.php:165 -msgid "Current Channel" -msgstr "Canal actual" - -#: ../../Zotlabs/Module/Manage.php:167 -msgid "Switch to one of your channels by selecting it." -msgstr "Cambiar a uno de sus canales seleccionándolo." - -#: ../../Zotlabs/Module/Manage.php:168 -msgid "Default Channel" -msgstr "Canal principal" - -#: ../../Zotlabs/Module/Manage.php:169 -msgid "Make Default" -msgstr "Convertir en predeterminado" - -#: ../../Zotlabs/Module/Manage.php:172 -#, php-format -msgid "%d new messages" -msgstr "%d mensajes nuevos" - -#: ../../Zotlabs/Module/Manage.php:173 -#, php-format -msgid "%d new introductions" -msgstr "%d nuevas isolicitudes de conexión" - -#: ../../Zotlabs/Module/Manage.php:175 -msgid "Delegated Channel" -msgstr "Canal delegado" - -#: ../../Zotlabs/Module/Menu.php:49 -msgid "Unable to update menu." -msgstr "No se puede actualizar el menú." - -#: ../../Zotlabs/Module/Menu.php:60 -msgid "Unable to create menu." -msgstr "No se puede crear el menú." - -#: ../../Zotlabs/Module/Menu.php:98 ../../Zotlabs/Module/Menu.php:110 -msgid "Menu Name" -msgstr "Nombre del menú" - -#: ../../Zotlabs/Module/Menu.php:98 -msgid "Unique name (not visible on webpage) - required" -msgstr "Nombre único (no será visible en la página web) - requerido" - -#: ../../Zotlabs/Module/Menu.php:99 ../../Zotlabs/Module/Menu.php:111 -msgid "Menu Title" -msgstr "Título del menú" - -#: ../../Zotlabs/Module/Menu.php:99 -msgid "Visible on webpage - leave empty for no title" -msgstr "Visible en la página web - no ponga nada si no desea un título" - -#: ../../Zotlabs/Module/Menu.php:100 -msgid "Allow Bookmarks" -msgstr "Permitir marcadores" - -#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 -msgid "Menu may be used to store saved bookmarks" -msgstr "El menú se puede usar para guardar marcadores" - -#: ../../Zotlabs/Module/Menu.php:101 ../../Zotlabs/Module/Menu.php:159 -msgid "Submit and proceed" -msgstr "Enviar y proceder" - -#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2239 -msgid "Menus" -msgstr "Menús" - -#: ../../Zotlabs/Module/Menu.php:117 -msgid "Bookmarks allowed" -msgstr "Marcadores permitidos" - -#: ../../Zotlabs/Module/Menu.php:119 -msgid "Delete this menu" -msgstr "Borrar este menú" - -#: ../../Zotlabs/Module/Menu.php:120 ../../Zotlabs/Module/Menu.php:154 -msgid "Edit menu contents" -msgstr "Editar los contenidos del menú" - -#: ../../Zotlabs/Module/Menu.php:121 -msgid "Edit this menu" -msgstr "Modificar este menú" - -#: ../../Zotlabs/Module/Menu.php:136 -msgid "Menu could not be deleted." -msgstr "El menú no puede ser eliminado." - -#: ../../Zotlabs/Module/Menu.php:144 ../../Zotlabs/Module/Mitem.php:28 -msgid "Menu not found." -msgstr "Menú no encontrado" - -#: ../../Zotlabs/Module/Menu.php:149 -msgid "Edit Menu" -msgstr "Modificar el menú" - -#: ../../Zotlabs/Module/Menu.php:153 -msgid "Add or remove entries to this menu" -msgstr "Añadir o quitar entradas en este menú" - -#: ../../Zotlabs/Module/Menu.php:155 -msgid "Menu name" -msgstr "Nombre del menú" - -#: ../../Zotlabs/Module/Menu.php:155 -msgid "Must be unique, only seen by you" -msgstr "Debe ser único, solo será visible para usted" - -#: ../../Zotlabs/Module/Menu.php:156 -msgid "Menu title" -msgstr "Título del menú" - -#: ../../Zotlabs/Module/Menu.php:156 -msgid "Menu title as seen by others" -msgstr "El título del menú tal como será visto por los demás" - -#: ../../Zotlabs/Module/Menu.php:157 -msgid "Allow bookmarks" -msgstr "Permitir marcadores" - -#: ../../Zotlabs/Module/Menu.php:166 ../../Zotlabs/Module/Mitem.php:120 -#: ../../Zotlabs/Module/Xchan.php:41 -msgid "Not found." -msgstr "No encontrado." - -#: ../../Zotlabs/Module/Lostpass.php:19 -msgid "No valid account found." -msgstr "No se ha encontrado una cuenta válida." - -#: ../../Zotlabs/Module/Lostpass.php:33 -msgid "Password reset request issued. Check your email." -msgstr "Se ha recibido una solicitud de restablecimiento de contraseña. Consulte su correo electrónico." - -#: ../../Zotlabs/Module/Lostpass.php:39 ../../Zotlabs/Module/Lostpass.php:107 -#, php-format -msgid "Site Member (%s)" -msgstr "Usuario del sitio (%s)" - -#: ../../Zotlabs/Module/Lostpass.php:44 -#, php-format -msgid "Password reset requested at %s" -msgstr "Se ha solicitado restablecer la contraseña en %s" - -#: ../../Zotlabs/Module/Lostpass.php:67 -msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." -msgstr "La solicitud no ha podido ser verificada. (Puede que la haya enviado con anterioridad) El restablecimiento de la contraseña ha fallado." - -#: ../../Zotlabs/Module/Lostpass.php:90 ../../boot.php:1712 -msgid "Password Reset" -msgstr "Restablecer la contraseña" - -#: ../../Zotlabs/Module/Lostpass.php:91 -msgid "Your password has been reset as requested." -msgstr "Su contraseña ha sido restablecida según lo solicitó." - -#: ../../Zotlabs/Module/Lostpass.php:92 -msgid "Your new password is" -msgstr "Su nueva contraseña es" - -#: ../../Zotlabs/Module/Lostpass.php:93 -msgid "Save or copy your new password - and then" -msgstr "Guarde o copie su nueva contraseña - y después" - -#: ../../Zotlabs/Module/Lostpass.php:94 -msgid "click here to login" -msgstr "pulse aquí para conectarse" - -#: ../../Zotlabs/Module/Lostpass.php:95 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." -msgstr "Puede cambiar la contraseña en la página Ajustes una vez iniciada la sesión." - -#: ../../Zotlabs/Module/Lostpass.php:112 -#, php-format -msgid "Your password has changed at %s" -msgstr "Su contraseña en %s ha sido cambiada" - -#: ../../Zotlabs/Module/Lostpass.php:127 -msgid "Forgot your Password?" -msgstr "¿Ha olvidado su contraseña?" - -#: ../../Zotlabs/Module/Lostpass.php:128 -msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." -msgstr "Introduzca y envíe su dirección de correo electrónico para el restablecimiento de su contraseña. Luego revise su correo para obtener más instrucciones." - -#: ../../Zotlabs/Module/Lostpass.php:129 -msgid "Email Address" -msgstr "Dirección de correo electrónico" - -#: ../../Zotlabs/Module/Lostpass.php:130 -msgid "Reset" -msgstr "Reiniciar" - -#: ../../Zotlabs/Module/Mood.php:67 ../../include/conversation.php:260 -#, php-format -msgctxt "mood" -msgid "%1$s is %2$s" -msgstr "%1$s está %2$s" - -#: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Lib/Apps.php:227 -msgid "Mood" -msgstr "Estado de ánimo" - -#: ../../Zotlabs/Module/Mood.php:136 -msgid "Set your current mood and tell your friends" -msgstr "Describir su estado de ánimo para comunicárselo a sus amigos" - -#: ../../Zotlabs/Module/Network.php:94 -msgid "No such group" -msgstr "No se encuentra el grupo" - -#: ../../Zotlabs/Module/Network.php:134 -msgid "No such channel" -msgstr "No se encuentra el canal" - -#: ../../Zotlabs/Module/Network.php:139 -msgid "forum" -msgstr "foro" - -#: ../../Zotlabs/Module/Network.php:151 -msgid "Search Results For:" -msgstr "Buscar resultados para:" - -#: ../../Zotlabs/Module/Network.php:215 -msgid "Privacy group is empty" -msgstr "El grupo de canales está vacío" - -#: ../../Zotlabs/Module/Network.php:224 -msgid "Privacy group: " -msgstr "Grupo de canales: " - -#: ../../Zotlabs/Module/Network.php:250 -msgid "Invalid connection." -msgstr "Conexión no válida." - -#: ../../Zotlabs/Module/Notify.php:57 -#: ../../Zotlabs/Module/Notifications.php:98 -msgid "No more system notifications." -msgstr "No hay más notificaciones del sistema" - -#: ../../Zotlabs/Module/Notify.php:61 -#: ../../Zotlabs/Module/Notifications.php:102 -msgid "System Notifications" -msgstr "Notificaciones del sistema" - -#: ../../Zotlabs/Module/Match.php:26 -msgid "Profile Match" -msgstr "Perfil compatible" - -#: ../../Zotlabs/Module/Match.php:35 -msgid "No keywords to match. Please add keywords to your default profile." -msgstr "No hay palabras clave en el perfil principal para poder encontrar perfiles compatibles. Por favor, añada palabras clave a su perfil principal." - -#: ../../Zotlabs/Module/Match.php:67 -msgid "is interested in:" -msgstr "está interesado en:" - -#: ../../Zotlabs/Module/Match.php:74 -msgid "No matches" -msgstr "No se han encontrado perfiles compatibles" - -#: ../../Zotlabs/Module/Channel.php:40 -msgid "Posts and comments" -msgstr "Publicaciones y comentarios" - -#: ../../Zotlabs/Module/Channel.php:41 -msgid "Only posts" -msgstr "Solo publicaciones" - -#: ../../Zotlabs/Module/Channel.php:101 -msgid "Insufficient permissions. Request redirected to profile page." -msgstr "Permisos insuficientes. Petición redirigida a la página del perfil." - -#: ../../Zotlabs/Module/Mitem.php:52 -msgid "Unable to create element." -msgstr "Imposible crear el elemento." - -#: ../../Zotlabs/Module/Mitem.php:76 -msgid "Unable to update menu element." -msgstr "No es posible actualizar el elemento del menú." - -#: ../../Zotlabs/Module/Mitem.php:92 -msgid "Unable to add menu element." -msgstr "No es posible añadir el elemento al menú" - -#: ../../Zotlabs/Module/Mitem.php:153 ../../Zotlabs/Module/Mitem.php:226 -msgid "Menu Item Permissions" -msgstr "Permisos del elemento del menú" - -#: ../../Zotlabs/Module/Mitem.php:154 ../../Zotlabs/Module/Mitem.php:227 -#: ../../Zotlabs/Module/Settings.php:1163 -msgid "(click to open/close)" -msgstr "(pulsar para abrir o cerrar)" - -#: ../../Zotlabs/Module/Mitem.php:156 ../../Zotlabs/Module/Mitem.php:172 -msgid "Link Name" -msgstr "Nombre del enlace" - -#: ../../Zotlabs/Module/Mitem.php:157 ../../Zotlabs/Module/Mitem.php:231 -msgid "Link or Submenu Target" -msgstr "Destino del enlace o submenú" - -#: ../../Zotlabs/Module/Mitem.php:157 -msgid "Enter URL of the link or select a menu name to create a submenu" -msgstr "Introducir la dirección del enlace o seleccionar el nombre de un submenú" - -#: ../../Zotlabs/Module/Mitem.php:158 ../../Zotlabs/Module/Mitem.php:232 -msgid "Use magic-auth if available" -msgstr "Usar la autenticación mágica si está disponible" - -#: ../../Zotlabs/Module/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:233 -msgid "Open link in new window" -msgstr "Abrir el enlace en una nueva ventana" - -#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:234 -msgid "Order in list" -msgstr "Orden en la lista" - -#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:234 -msgid "Higher numbers will sink to bottom of listing" -msgstr "Los números más altos irán al final de la lista" - -#: ../../Zotlabs/Module/Mitem.php:161 -msgid "Submit and finish" -msgstr "Enviar y terminar" - -#: ../../Zotlabs/Module/Mitem.php:162 -msgid "Submit and continue" -msgstr "Enviar y continuar" - -#: ../../Zotlabs/Module/Mitem.php:170 -msgid "Menu:" -msgstr "Menú:" - -#: ../../Zotlabs/Module/Mitem.php:173 -msgid "Link Target" -msgstr "Destino del enlace" - -#: ../../Zotlabs/Module/Mitem.php:176 -msgid "Edit menu" -msgstr "Editar menú" - -#: ../../Zotlabs/Module/Mitem.php:179 -msgid "Edit element" -msgstr "Editar el elemento" - -#: ../../Zotlabs/Module/Mitem.php:180 -msgid "Drop element" -msgstr "Eliminar el elemento" - -#: ../../Zotlabs/Module/Mitem.php:181 -msgid "New element" -msgstr "Nuevo elemento" - -#: ../../Zotlabs/Module/Mitem.php:182 -msgid "Edit this menu container" -msgstr "Modificar el contenedor del menú" - -#: ../../Zotlabs/Module/Mitem.php:183 -msgid "Add menu element" -msgstr "Añadir un elemento al menú" - -#: ../../Zotlabs/Module/Mitem.php:184 -msgid "Delete this menu item" -msgstr "Eliminar este elemento del menú" - -#: ../../Zotlabs/Module/Mitem.php:185 -msgid "Edit this menu item" -msgstr "Modificar este elemento del menú" - -#: ../../Zotlabs/Module/Mitem.php:202 -msgid "Menu item not found." -msgstr "Este elemento del menú no se ha encontrado" - -#: ../../Zotlabs/Module/Mitem.php:215 -msgid "Menu item deleted." -msgstr "Este elemento del menú ha sido borrado" - -#: ../../Zotlabs/Module/Mitem.php:217 -msgid "Menu item could not be deleted." -msgstr "Este elemento del menú no puede ser borrado." - -#: ../../Zotlabs/Module/Mitem.php:224 -msgid "Edit Menu Element" -msgstr "Editar elemento del menú" - -#: ../../Zotlabs/Module/Mitem.php:230 -msgid "Link text" -msgstr "Texto del enlace" +#: ../../Zotlabs/Module/Ratings.php:107 +msgid "Description: " +msgstr "Descripción:" #: ../../Zotlabs/Module/Admin.php:77 msgid "Theme settings updated." @@ -3577,11 +3670,11 @@ msgstr "Versión del repositorio (dev)" msgid "Site settings updated." msgstr "Ajustes del sitio actualizados." -#: ../../Zotlabs/Module/Admin.php:400 ../../include/text.php:2829 +#: ../../Zotlabs/Module/Admin.php:400 ../../include/text.php:2841 msgid "Default" msgstr "Predeterminado" -#: ../../Zotlabs/Module/Admin.php:410 ../../Zotlabs/Module/Settings.php:899 +#: ../../Zotlabs/Module/Admin.php:410 ../../Zotlabs/Module/Settings.php:798 msgid "mobile" msgstr "móvil" @@ -3613,7 +3706,7 @@ msgstr "Mi sitio es un servicio gratuito" msgid "My site offers free accounts with optional paid upgrades" msgstr "Mi sitio ofrece cuentas gratuitas con opciones extra de pago" -#: ../../Zotlabs/Module/Admin.php:491 ../../include/widgets.php:1476 +#: ../../Zotlabs/Module/Admin.php:491 ../../include/widgets.php:1382 msgid "Site" msgstr "Sitio" @@ -3901,12 +3994,12 @@ msgid "0 for no expiration of imported content" msgstr "0 para que no caduque el contenido importado" #: ../../Zotlabs/Module/Admin.php:677 ../../Zotlabs/Module/Admin.php:678 -#: ../../Zotlabs/Module/Settings.php:823 +#: ../../Zotlabs/Module/Settings.php:722 msgid "Off" msgstr "Desactivado" #: ../../Zotlabs/Module/Admin.php:677 ../../Zotlabs/Module/Admin.php:678 -#: ../../Zotlabs/Module/Settings.php:823 +#: ../../Zotlabs/Module/Settings.php:722 msgid "On" msgstr "Activado" @@ -3963,7 +4056,7 @@ msgid "" "embedded content from that site is explicitly blocked." msgstr "El resto del contenido incrustado se filtrará, excepto si el contenido incorporado desde ese sitio está bloqueado de forma explícita." -#: ../../Zotlabs/Module/Admin.php:756 ../../include/widgets.php:1479 +#: ../../Zotlabs/Module/Admin.php:756 ../../include/widgets.php:1385 msgid "Security" msgstr "Seguridad" @@ -4131,7 +4224,7 @@ msgid "Account '%s' unblocked" msgstr "La cuenta '%s' ha sido desbloqueada" #: ../../Zotlabs/Module/Admin.php:1031 ../../Zotlabs/Module/Admin.php:1044 -#: ../../include/widgets.php:1477 +#: ../../include/widgets.php:1383 msgid "Accounts" msgstr "Cuentas" @@ -4237,7 +4330,7 @@ msgstr "Código permitido al canal '%s'" msgid "Channel '%s' code disallowed" msgstr "Código no permitido al canal '%s'" -#: ../../Zotlabs/Module/Admin.php:1210 ../../include/widgets.php:1478 +#: ../../Zotlabs/Module/Admin.php:1210 ../../include/widgets.php:1384 msgid "Channels" msgstr "Canales" @@ -4257,7 +4350,7 @@ msgstr "Permitir código" msgid "Disallow Code" msgstr "No permitir código" -#: ../../Zotlabs/Module/Admin.php:1218 ../../include/conversation.php:1626 +#: ../../Zotlabs/Module/Admin.php:1218 ../../include/conversation.php:1611 msgid "Channel" msgstr "Canal" @@ -4296,7 +4389,7 @@ msgid "Enable" msgstr "Activar" #: ../../Zotlabs/Module/Admin.php:1330 ../../Zotlabs/Module/Admin.php:1420 -#: ../../include/widgets.php:1481 +#: ../../include/widgets.php:1387 msgid "Plugins" msgstr "Extensiones (plugins)" @@ -4305,8 +4398,8 @@ msgid "Toggle" msgstr "Cambiar" #: ../../Zotlabs/Module/Admin.php:1332 ../../Zotlabs/Module/Admin.php:1615 -#: ../../Zotlabs/Lib/Apps.php:216 ../../include/nav.php:210 -#: ../../include/widgets.php:647 +#: ../../Zotlabs/Lib/Apps.php:215 ../../include/widgets.php:638 +#: ../../include/nav.php:208 msgid "Settings" msgstr "Ajustes" @@ -4362,7 +4455,7 @@ msgstr "Descargar el repositorio" msgid "Install new repo" msgstr "Instalar un nuevo repositorio" -#: ../../Zotlabs/Module/Admin.php:1405 ../../Zotlabs/Lib/Apps.php:334 +#: ../../Zotlabs/Module/Admin.php:1405 ../../Zotlabs/Lib/Apps.php:330 msgid "Install" msgstr "Instalar" @@ -4378,8 +4471,8 @@ msgstr "Repositorios de los plugins instalados" msgid "Install a New Plugin Repository" msgstr "Instalar un nuevo repositorio de plugins" -#: ../../Zotlabs/Module/Admin.php:1435 ../../Zotlabs/Module/Settings.php:72 -#: ../../Zotlabs/Module/Settings.php:670 ../../Zotlabs/Lib/Apps.php:334 +#: ../../Zotlabs/Module/Admin.php:1435 ../../Zotlabs/Module/Settings.php:77 +#: ../../Zotlabs/Module/Settings.php:616 ../../Zotlabs/Lib/Apps.php:330 msgid "Update" msgstr "Actualizar" @@ -4396,7 +4489,7 @@ msgid "Screenshot" msgstr "Instantánea de pantalla" #: ../../Zotlabs/Module/Admin.php:1613 ../../Zotlabs/Module/Admin.php:1647 -#: ../../include/widgets.php:1482 +#: ../../include/widgets.php:1388 msgid "Themes" msgstr "Temas" @@ -4412,8 +4505,8 @@ msgstr "[No soportado]" msgid "Log settings updated." msgstr "Actualizado el informe de configuraciones." -#: ../../Zotlabs/Module/Admin.php:1732 ../../include/widgets.php:1503 -#: ../../include/widgets.php:1513 +#: ../../Zotlabs/Module/Admin.php:1732 ../../include/widgets.php:1409 +#: ../../include/widgets.php:1419 msgid "Logs" msgstr "Informes" @@ -4479,7 +4572,7 @@ msgstr "Definición del campo no encontrada" msgid "Edit Profile Field" msgstr "Modificar el campo del perfil" -#: ../../Zotlabs/Module/Admin.php:2106 ../../include/widgets.php:1484 +#: ../../Zotlabs/Module/Admin.php:2106 ../../include/widgets.php:1390 msgid "Profile Fields" msgstr "Campos del perfil" @@ -4507,384 +4600,57 @@ msgstr "Campos personalizados" msgid "Create Custom Field" msgstr "Crear un campo personalizado" -#: ../../Zotlabs/Module/New_channel.php:128 -#: ../../Zotlabs/Module/Register.php:231 -msgid "Name or caption" -msgstr "Nombre o descripción" +#: ../../Zotlabs/Module/Appman.php:37 ../../Zotlabs/Module/Appman.php:53 +msgid "App installed." +msgstr "Aplicación instalada." -#: ../../Zotlabs/Module/New_channel.php:128 -#: ../../Zotlabs/Module/Register.php:231 -msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\"" -msgstr "Ejemplos: \"Juan García\", \"Luisa y sus caballos\", \"Fútbol\", \"Grupo de aviación\"" +#: ../../Zotlabs/Module/Appman.php:46 +msgid "Malformed app." +msgstr "Aplicación con errores" -#: ../../Zotlabs/Module/New_channel.php:130 -#: ../../Zotlabs/Module/Register.php:233 -msgid "Choose a short nickname" -msgstr "Elija un alias corto" +#: ../../Zotlabs/Module/Appman.php:104 +msgid "Embed code" +msgstr "Código incorporado" -#: ../../Zotlabs/Module/New_channel.php:130 -#: ../../Zotlabs/Module/Register.php:233 -#, php-format -msgid "" -"Your nickname will be used to create an easy to remember channel address " -"e.g. nickname%s" -msgstr "Su alias se usará para crear una dirección de canal fácil de recordar, p. ej.: alias%s" +#: ../../Zotlabs/Module/Appman.php:110 ../../include/widgets.php:107 +msgid "Edit App" +msgstr "Modificar la aplicación" -#: ../../Zotlabs/Module/New_channel.php:132 -#: ../../Zotlabs/Module/Register.php:235 -msgid "Channel role and privacy" -msgstr "Clase de canal y privacidad" +#: ../../Zotlabs/Module/Appman.php:110 +msgid "Create App" +msgstr "Crear una aplicación" -#: ../../Zotlabs/Module/New_channel.php:132 -#: ../../Zotlabs/Module/Register.php:235 -msgid "Select a channel role with your privacy requirements." -msgstr "Seleccione un tipo de canal con sus requisitos de privacidad" +#: ../../Zotlabs/Module/Appman.php:115 +msgid "Name of app" +msgstr "Nombre de la aplicación" -#: ../../Zotlabs/Module/New_channel.php:132 -#: ../../Zotlabs/Module/Register.php:235 -msgid "Read more about roles" -msgstr "Leer más sobre los roles" +#: ../../Zotlabs/Module/Appman.php:116 +msgid "Location (URL) of app" +msgstr "Dirección (URL) de la aplicación" -#: ../../Zotlabs/Module/New_channel.php:135 -msgid "Create Channel" -msgstr "Crear un canal" +#: ../../Zotlabs/Module/Appman.php:118 +msgid "Photo icon URL" +msgstr "Dirección del icono" -#: ../../Zotlabs/Module/New_channel.php:136 -msgid "" -"A channel is your identity on this network. It can represent a person, a " -"blog, or a forum to name a few. Channels can make connections with other " -"channels to share information with highly detailed permissions." -msgstr "Un canal es su identidad en esta red. Puede representar a una persona, un blog o un foro, por nombrar unos pocos ejemplos. Los canales se pueden conectar con otros canales para compartir información con una gama de permisos extremadamente detallada." +#: ../../Zotlabs/Module/Appman.php:118 +msgid "80 x 80 pixels - optional" +msgstr "80 x 80 pixels - opcional" -#: ../../Zotlabs/Module/New_channel.php:137 -msgid "" -"or import an existing channel from another location." -msgstr "O importar un canal existente desde otro lugar." +#: ../../Zotlabs/Module/Appman.php:119 +msgid "Categories (optional, comma separated list)" +msgstr "Categorías (opcional, lista separada por comas)" -#: ../../Zotlabs/Module/Ping.php:265 -msgid "sent you a private message" -msgstr "le ha enviado un mensaje privado" +#: ../../Zotlabs/Module/Appman.php:120 +msgid "Version ID" +msgstr "Versión" -#: ../../Zotlabs/Module/Ping.php:313 -msgid "added your channel" -msgstr "añadió este canal a sus conexiones" +#: ../../Zotlabs/Module/Appman.php:121 +msgid "Price of app" +msgstr "Precio de la aplicación" -#: ../../Zotlabs/Module/Ping.php:323 -msgid "g A l F d" -msgstr "g A l d F" - -#: ../../Zotlabs/Module/Ping.php:346 -msgid "[today]" -msgstr "[hoy]" - -#: ../../Zotlabs/Module/Ping.php:355 -msgid "posted an event" -msgstr "publicó un evento" - -#: ../../Zotlabs/Module/Notifications.php:30 -msgid "Invalid request identifier." -msgstr "Petición inválida del identificador." - -#: ../../Zotlabs/Module/Notifications.php:39 -msgid "Discard" -msgstr "Descartar" - -#: ../../Zotlabs/Module/Notifications.php:103 ../../include/nav.php:193 -msgid "Mark all system notifications seen" -msgstr "Marcar todas las notificaciones de sistema como leídas" - -#: ../../Zotlabs/Module/Poke.php:168 ../../Zotlabs/Lib/Apps.php:228 -#: ../../include/conversation.php:963 -msgid "Poke" -msgstr "Toques y otras cosas" - -#: ../../Zotlabs/Module/Poke.php:169 -msgid "Poke somebody" -msgstr "Dar un toque a alguien" - -#: ../../Zotlabs/Module/Poke.php:172 -msgid "Poke/Prod" -msgstr "Toque/Incitación" - -#: ../../Zotlabs/Module/Poke.php:173 -msgid "Poke, prod or do other things to somebody" -msgstr "Dar un toque, incitar o hacer otras cosas a alguien" - -#: ../../Zotlabs/Module/Poke.php:180 -msgid "Recipient" -msgstr "Destinatario" - -#: ../../Zotlabs/Module/Poke.php:181 -msgid "Choose what you wish to do to recipient" -msgstr "Elegir qué desea enviar al destinatario" - -#: ../../Zotlabs/Module/Poke.php:184 ../../Zotlabs/Module/Poke.php:185 -msgid "Make this post private" -msgstr "Convertir en privado este envío" - -#: ../../Zotlabs/Module/Oexchange.php:27 -msgid "Unable to find your hub." -msgstr "No se puede encontrar su servidor." - -#: ../../Zotlabs/Module/Oexchange.php:41 -msgid "Post successful." -msgstr "Enviado con éxito." - -#: ../../Zotlabs/Module/Openid.php:30 -msgid "OpenID protocol error. No ID returned." -msgstr "Error del protocolo OpenID. Ningún ID recibido como respuesta." - -#: ../../Zotlabs/Module/Openid.php:193 ../../include/auth.php:285 -msgid "Login failed." -msgstr "El acceso ha fallado." - -#: ../../Zotlabs/Module/Profperm.php:34 ../../Zotlabs/Module/Profperm.php:63 -msgid "Invalid profile identifier." -msgstr "Identificador del perfil no válido" - -#: ../../Zotlabs/Module/Profperm.php:115 -msgid "Profile Visibility Editor" -msgstr "Editor de visibilidad del perfil" - -#: ../../Zotlabs/Module/Profperm.php:117 ../../include/channel.php:1290 -msgid "Profile" -msgstr "Perfil" - -#: ../../Zotlabs/Module/Profperm.php:119 -msgid "Click on a contact to add or remove." -msgstr "Pulsar en un contacto para añadirlo o eliminarlo." - -#: ../../Zotlabs/Module/Profperm.php:128 -msgid "Visible To" -msgstr "Visible para" - -#: ../../Zotlabs/Module/Pconfig.php:26 ../../Zotlabs/Module/Pconfig.php:59 -msgid "This setting requires special processing and editing has been blocked." -msgstr "Este ajuste necesita de un proceso especial y la edición ha sido bloqueada." - -#: ../../Zotlabs/Module/Pconfig.php:48 -msgid "Configuration Editor" -msgstr "Editor de configuración" - -#: ../../Zotlabs/Module/Pconfig.php:49 -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 "Atención: El cambio de algunos ajustes puede volver inutilizable su canal. Por favor, abandone la página excepto que esté seguro y sepa cómo usar correctamente esta característica." - -#: ../../Zotlabs/Module/Probe.php:28 ../../Zotlabs/Module/Probe.php:32 -#, php-format -msgid "Fetching URL returns error: %1$s" -msgstr "Al intentar obtener la dirección, retorna el error: %1$s" - -#: ../../Zotlabs/Module/Siteinfo.php:19 -#, php-format -msgid "Version %s" -msgstr "Versión %s" - -#: ../../Zotlabs/Module/Siteinfo.php:34 -msgid "Installed plugins/addons/apps:" -msgstr "Extensiones (plugins), complementos o aplicaciones (apps) instaladas:" - -#: ../../Zotlabs/Module/Siteinfo.php:36 -msgid "No installed plugins/addons/apps" -msgstr "No hay instalada ninguna extensión (plugin), complemento o aplicación (app)" - -#: ../../Zotlabs/Module/Siteinfo.php:49 -msgid "" -"This is a hub of $Projectname - a global cooperative network of " -"decentralized privacy enhanced websites." -msgstr "Este es un sitio integrado en $Projectname - una red cooperativa mundial de sitios web descentralizados de privacidad mejorada." - -#: ../../Zotlabs/Module/Siteinfo.php:51 -msgid "Tag: " -msgstr "Etiqueta:" - -#: ../../Zotlabs/Module/Siteinfo.php:53 -msgid "Last background fetch: " -msgstr "Última actualización en segundo plano:" - -#: ../../Zotlabs/Module/Siteinfo.php:55 -msgid "Current load average: " -msgstr "Carga media actual:" - -#: ../../Zotlabs/Module/Siteinfo.php:58 -msgid "Running at web location" -msgstr "Corriendo en el sitio web" - -#: ../../Zotlabs/Module/Siteinfo.php:59 -msgid "" -"Please visit hubzilla.org to learn more " -"about $Projectname." -msgstr "Por favor, visite hubzilla.org para más información sobre $Projectname." - -#: ../../Zotlabs/Module/Siteinfo.php:60 -msgid "Bug reports and issues: please visit" -msgstr "Informes de errores e incidencias: por favor visite" - -#: ../../Zotlabs/Module/Siteinfo.php:62 -msgid "$projectname issues" -msgstr "Problemas en $projectname" - -#: ../../Zotlabs/Module/Siteinfo.php:63 -msgid "" -"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot " -"com" -msgstr "Sugerencias, elogios, etc - por favor, un correo electrónico a \"redmatrix\" en librelist - punto com" - -#: ../../Zotlabs/Module/Siteinfo.php:65 -msgid "Site Administrators" -msgstr "Administradores del sitio" - -#: ../../Zotlabs/Module/Rmagic.php:44 -msgid "" -"We encountered a problem while logging in with the OpenID you provided. " -"Please check the correct spelling of the ID." -msgstr "Encontramos un problema durante el inicio de sesión con la OpenID que proporcionó. Por favor, compruebe que la ID está correctamente escrita." - -#: ../../Zotlabs/Module/Rmagic.php:44 -msgid "The error message was:" -msgstr "El mensaje de error fue:" - -#: ../../Zotlabs/Module/Rmagic.php:48 -msgid "Authentication failed." -msgstr "Falló la autenticación." - -#: ../../Zotlabs/Module/Rmagic.php:88 -msgid "Remote Authentication" -msgstr "Acceso desde su servidor" - -#: ../../Zotlabs/Module/Rmagic.php:89 -msgid "Enter your channel address (e.g. channel@example.com)" -msgstr "Introduzca la dirección del canal (p.ej. canal@ejemplo.com)" - -#: ../../Zotlabs/Module/Rmagic.php:90 -msgid "Authenticate" -msgstr "Acceder" - -#: ../../Zotlabs/Module/Pubsites.php:22 ../../include/widgets.php:1337 -msgid "Public Hubs" -msgstr "Servidores públicos" - -#: ../../Zotlabs/Module/Pubsites.php:25 -msgid "" -"The listed hubs allow public registration for the $Projectname network. All " -"hubs in the network are interlinked so membership on any of them conveys " -"membership in the network as a whole. Some hubs may require subscription or " -"provide tiered service plans. The hub itself may provide " -"additional details." -msgstr "Los sitios listados permiten el registro público en la red $Projectname. Todos los sitios de la red están vinculados entre sí, por lo que sus miembros, en ninguno de ellos, indican la pertenencia a la red en su conjunto. Algunos sitios pueden requerir suscripción o proporcionar planes de servicio por niveles. Los mismos hubs pueden proporcionar detalles adicionales." - -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Hub URL" -msgstr "Dirección del hub" - -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Access Type" -msgstr "Tipo de acceso" - -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Registration Policy" -msgstr "Normas de registro" - -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Stats" -msgstr "Estadísticas" - -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Software" -msgstr "Software" - -#: ../../Zotlabs/Module/Pubsites.php:31 ../../Zotlabs/Module/Ratings.php:103 -#: ../../include/conversation.php:962 -msgid "Ratings" -msgstr "Valoraciones" - -#: ../../Zotlabs/Module/Pubsites.php:38 -msgid "Rate" -msgstr "Valorar" - -#: ../../Zotlabs/Module/Profile_photo.php:186 -msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." -msgstr "Recargue la página o limpie el caché del navegador si la nueva foto no se muestra inmediatamente." - -#: ../../Zotlabs/Module/Profile_photo.php:389 -msgid "Upload Profile Photo" -msgstr "Subir foto de perfil" - -#: ../../Zotlabs/Module/Blocks.php:97 ../../Zotlabs/Module/Blocks.php:155 -#: ../../Zotlabs/Module/Editblock.php:108 -msgid "Block Name" -msgstr "Nombre del bloque" - -#: ../../Zotlabs/Module/Blocks.php:154 ../../include/text.php:2238 -msgid "Blocks" -msgstr "Bloques" - -#: ../../Zotlabs/Module/Blocks.php:156 -msgid "Block Title" -msgstr "Título del bloque" - -#: ../../Zotlabs/Module/Rate.php:160 -msgid "Website:" -msgstr "Sitio web:" - -#: ../../Zotlabs/Module/Rate.php:163 -#, php-format -msgid "Remote Channel [%s] (not yet known on this site)" -msgstr "Canal remoto [%s] (aún no es conocido en este sitio)" - -#: ../../Zotlabs/Module/Rate.php:164 -msgid "Rating (this information is public)" -msgstr "Valoración (esta información es pública)" - -#: ../../Zotlabs/Module/Rate.php:165 -msgid "Optionally explain your rating (this information is public)" -msgstr "Opcionalmente puede explicar su valoración (esta información es pública)" - -#: ../../Zotlabs/Module/Ratings.php:73 -msgid "No ratings" -msgstr "Ninguna valoración" - -#: ../../Zotlabs/Module/Ratings.php:104 -msgid "Rating: " -msgstr "Valoración:" - -#: ../../Zotlabs/Module/Ratings.php:105 -msgid "Website: " -msgstr "Sitio web:" - -#: ../../Zotlabs/Module/Ratings.php:107 -msgid "Description: " -msgstr "Descripción:" - -#: ../../Zotlabs/Module/Apps.php:47 ../../include/nav.php:165 -#: ../../include/widgets.php:102 -msgid "Apps" -msgstr "Aplicaciones (apps)" - -#: ../../Zotlabs/Module/Editblock.php:124 ../../include/conversation.php:1243 -msgid "Title (optional)" -msgstr "Título (opcional)" - -#: ../../Zotlabs/Module/Editblock.php:133 -msgid "Edit Block" -msgstr "Modificar este bloque" - -#: ../../Zotlabs/Module/Common.php:14 -msgid "No channel." -msgstr "Ningún canal." - -#: ../../Zotlabs/Module/Common.php:43 -msgid "Common connections" -msgstr "Conexiones comunes" - -#: ../../Zotlabs/Module/Common.php:48 -msgid "No connections in common." -msgstr "Ninguna conexión en común." +#: ../../Zotlabs/Module/Appman.php:122 +msgid "Location (URL) to purchase app" +msgstr "Dirección (URL) donde adquirir la aplicación" #: ../../Zotlabs/Module/Rbmark.php:94 msgid "Select a bookmark folder" @@ -4989,154 +4755,120 @@ msgstr "sí" msgid "Membership on this site is by invitation only." msgstr "Para registrarse en este sitio es necesaria una invitación." -#: ../../Zotlabs/Module/Register.php:262 ../../include/nav.php:149 -#: ../../boot.php:1686 +#: ../../Zotlabs/Module/Register.php:262 ../../include/nav.php:147 +#: ../../boot.php:1685 msgid "Register" msgstr "Registrarse" -#: ../../Zotlabs/Module/Register.php:263 -msgid "" -"This site may require email verification after submitting this form. If you " -"are returned to a login page, please check your email for instructions." -msgstr "" +#: ../../Zotlabs/Module/Register.php:262 +msgid "Proceed to create your first channel" +msgstr "Crear su primer canal" #: ../../Zotlabs/Module/Regmod.php:15 msgid "Please login." msgstr "Por favor, inicie sesión." -#: ../../Zotlabs/Module/Removeaccount.php:35 +#: ../../Zotlabs/Module/Removeaccount.php:34 msgid "" "Account removals are not allowed within 48 hours of changing the account " "password." msgstr "La eliminación de cuentas no está permitida hasta después de que hayan transcurrido 48 horas desde el último cambio de contraseña." -#: ../../Zotlabs/Module/Removeaccount.php:57 +#: ../../Zotlabs/Module/Removeaccount.php:56 msgid "Remove This Account" msgstr "Eliminar esta cuenta" -#: ../../Zotlabs/Module/Removeaccount.php:58 -#: ../../Zotlabs/Module/Removeme.php:61 +#: ../../Zotlabs/Module/Removeaccount.php:57 +#: ../../Zotlabs/Module/Removeme.php:59 msgid "WARNING: " msgstr "ATENCIÓN:" -#: ../../Zotlabs/Module/Removeaccount.php:58 +#: ../../Zotlabs/Module/Removeaccount.php:57 msgid "" "This account and all its channels will be completely removed from the " "network. " msgstr "Esta cuenta y todos sus canales van a ser eliminados de la red." -#: ../../Zotlabs/Module/Removeaccount.php:58 -#: ../../Zotlabs/Module/Removeme.php:61 +#: ../../Zotlabs/Module/Removeaccount.php:57 +#: ../../Zotlabs/Module/Removeme.php:59 msgid "This action is permanent and can not be undone!" msgstr "¡Esta acción tiene carácter definitivo y no se puede deshacer!" -#: ../../Zotlabs/Module/Removeaccount.php:59 -#: ../../Zotlabs/Module/Removeme.php:62 +#: ../../Zotlabs/Module/Removeaccount.php:58 +#: ../../Zotlabs/Module/Removeme.php:60 msgid "Please enter your password for verification:" msgstr "Por favor, introduzca su contraseña para su verificación:" -#: ../../Zotlabs/Module/Removeaccount.php:60 +#: ../../Zotlabs/Module/Removeaccount.php:59 msgid "" "Remove this account, all its channels and all its channel clones from the " "network" msgstr "Remover esta cuenta, todos sus canales y clones de la red" -#: ../../Zotlabs/Module/Removeaccount.php:60 +#: ../../Zotlabs/Module/Removeaccount.php:59 msgid "" "By default only the instances of the channels located on this hub will be " "removed from the network" msgstr "Por defecto, solo las instancias de los canales ubicados en este servidor serán eliminados de la red" -#: ../../Zotlabs/Module/Removeaccount.php:61 -#: ../../Zotlabs/Module/Settings.php:759 +#: ../../Zotlabs/Module/Removeaccount.php:60 +#: ../../Zotlabs/Module/Settings.php:705 msgid "Remove Account" msgstr "Eliminar cuenta" -#: ../../Zotlabs/Module/Removeme.php:35 +#: ../../Zotlabs/Module/Removeme.php:33 msgid "" "Channel removals are not allowed within 48 hours of changing the account " "password." msgstr "La eliminación de canales no está permitida hasta pasadas 48 horas desde el último cambio de contraseña." -#: ../../Zotlabs/Module/Removeme.php:60 +#: ../../Zotlabs/Module/Removeme.php:58 msgid "Remove This Channel" msgstr "Eliminar este canal" -#: ../../Zotlabs/Module/Removeme.php:61 +#: ../../Zotlabs/Module/Removeme.php:59 msgid "This channel will be completely removed from the network. " msgstr "Este canal va a ser completamente eliminado de la red." -#: ../../Zotlabs/Module/Removeme.php:63 +#: ../../Zotlabs/Module/Removeme.php:61 msgid "Remove this channel and all its clones from the network" msgstr "Eliminar este canal y todos sus clones de la red" -#: ../../Zotlabs/Module/Removeme.php:63 +#: ../../Zotlabs/Module/Removeme.php:61 msgid "" "By default only the instance of the channel located on this hub will be " "removed from the network" msgstr "Por defecto, solo la instancia del canal alojado en este servidor será eliminado de la red" -#: ../../Zotlabs/Module/Removeme.php:64 ../../Zotlabs/Module/Settings.php:1219 +#: ../../Zotlabs/Module/Removeme.php:62 ../../Zotlabs/Module/Settings.php:1124 msgid "Remove Channel" msgstr "Eliminar el canal" -#: ../../Zotlabs/Module/Uexport.php:55 ../../Zotlabs/Module/Uexport.php:56 -msgid "Export Channel" -msgstr "Exportar el canal" - -#: ../../Zotlabs/Module/Uexport.php:57 +#: ../../Zotlabs/Module/Rmagic.php:44 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 "Exportar la información básica del canal a un fichero. Este equivale a una copia de seguridad de sus conexiones, el perfil y datos fundamentales, que puede usarse para importar sus datos a un nuevo servidor, pero no incluye su contenido." +"We encountered a problem while logging in with the OpenID you provided. " +"Please check the correct spelling of the ID." +msgstr "Encontramos un problema durante el inicio de sesión con la OpenID que proporcionó. Por favor, compruebe que la ID está correctamente escrita." -#: ../../Zotlabs/Module/Uexport.php:58 -msgid "Export Content" -msgstr "Exportar contenidos" +#: ../../Zotlabs/Module/Rmagic.php:44 +msgid "The error message was:" +msgstr "El mensaje de error fue:" -#: ../../Zotlabs/Module/Uexport.php:59 -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 "Exportar la información sobre su canal y el contenido reciente a un fichero de respaldo JSON, que puede ser restaurado o importado a otro servidor. Este fichero incluye todas sus conexiones, permisos, datos del perfil y publicaciones de varios meses. Puede llegar a ser MUY grande. Por favor, sea paciente, la descarga puede tardar varios minutos en comenzar." +#: ../../Zotlabs/Module/Rmagic.php:48 +msgid "Authentication failed." +msgstr "Falló la autenticación." -#: ../../Zotlabs/Module/Uexport.php:60 -msgid "Export your posts from a given year." -msgstr "Exporta sus publicaciones de un año dado." +#: ../../Zotlabs/Module/Rmagic.php:88 +msgid "Remote Authentication" +msgstr "Acceso desde su servidor" -#: ../../Zotlabs/Module/Uexport.php:62 -msgid "" -"You may also export your posts and conversations for a particular year or " -"month. Adjust the date in your browser location bar to select other dates. " -"If the export fails (possibly due to memory exhaustion on your server hub), " -"please try again selecting a more limited date range." -msgstr "También puede exportar sus mensajes y conversaciones durante un año o mes en particular. Ajuste la fecha en la barra de direcciones del navegador para seleccionar otras fechas. Si la exportación falla (posiblemente debido al agotamiento de la memoria del servidor hub), por favor, intente de nuevo la selección de un rango de fechas más pequeño." +#: ../../Zotlabs/Module/Rmagic.php:89 +msgid "Enter your channel address (e.g. channel@example.com)" +msgstr "Introduzca la dirección del canal (p.ej. canal@ejemplo.com)" -#: ../../Zotlabs/Module/Uexport.php:63 -#, php-format -msgid "" -"To select all posts for a given year, such as this year, visit %2$s" -msgstr "Para seleccionar todos los mensajes de un año determinado, como este año, visite %2$s" - -#: ../../Zotlabs/Module/Uexport.php:64 -#, php-format -msgid "" -"To select all posts for a given month, such as January of this year, visit " -"%2$s" -msgstr "Para seleccionar todos los mensajes de un mes determinado, como el de enero de este año, visite %2$s" - -#: ../../Zotlabs/Module/Uexport.php:65 -#, php-format -msgid "" -"These content files may be imported or restored by visiting %2$s on any site containing your channel. For best results" -" please import or restore these in date order (oldest first)." -msgstr "Estos ficheros pueden ser importados o restaurados visitando %2$s o cualquier sitio que contenga su canal. Para obtener los mejores resultados, por favor, importar o restaurar estos ficheros en orden de fecha (la más antigua primero)." +#: ../../Zotlabs/Module/Rmagic.php:90 +msgid "Authenticate" +msgstr "Acceder" #: ../../Zotlabs/Module/Search.php:216 #, php-format @@ -5152,652 +4884,609 @@ msgstr "Resultados de la búsqueda para: %s" msgid "No service class restrictions found." msgstr "No se han encontrado restricciones sobre esta clase de servicio." -#: ../../Zotlabs/Module/Settings.php:64 +#: ../../Zotlabs/Module/Settings.php:69 msgid "Name is required" msgstr "El nombre es obligatorio" -#: ../../Zotlabs/Module/Settings.php:68 +#: ../../Zotlabs/Module/Settings.php:73 msgid "Key and Secret are required" msgstr "\"Key\" y \"Secret\" son obligatorios" -#: ../../Zotlabs/Module/Settings.php:138 -#, php-format -msgid "This channel is limited to %d tokens" -msgstr "" - -#: ../../Zotlabs/Module/Settings.php:144 -msgid "Name and Password are required." -msgstr "" - -#: ../../Zotlabs/Module/Settings.php:168 -msgid "Token saved." -msgstr "" - -#: ../../Zotlabs/Module/Settings.php:274 +#: ../../Zotlabs/Module/Settings.php:225 msgid "Not valid email." msgstr "Correo electrónico no válido." -#: ../../Zotlabs/Module/Settings.php:277 +#: ../../Zotlabs/Module/Settings.php:228 msgid "Protected email address. Cannot change to that email." msgstr "Dirección de correo electrónico protegida. No se puede cambiar a ella." -#: ../../Zotlabs/Module/Settings.php:286 +#: ../../Zotlabs/Module/Settings.php:237 msgid "System failure storing new email. Please try again." msgstr "Fallo de sistema al guardar el nuevo correo electrónico. Por favor, inténtelo de nuevo." -#: ../../Zotlabs/Module/Settings.php:303 +#: ../../Zotlabs/Module/Settings.php:254 msgid "Password verification failed." msgstr "La comprobación de la contraseña ha fallado." -#: ../../Zotlabs/Module/Settings.php:310 +#: ../../Zotlabs/Module/Settings.php:261 msgid "Passwords do not match. Password unchanged." msgstr "Las contraseñas no coinciden. La contraseña no se ha cambiado." -#: ../../Zotlabs/Module/Settings.php:314 +#: ../../Zotlabs/Module/Settings.php:265 msgid "Empty passwords are not allowed. Password unchanged." msgstr "No se permiten contraseñas vacías. La contraseña no se ha cambiado." -#: ../../Zotlabs/Module/Settings.php:328 +#: ../../Zotlabs/Module/Settings.php:279 msgid "Password changed." msgstr "Contraseña cambiada." -#: ../../Zotlabs/Module/Settings.php:330 +#: ../../Zotlabs/Module/Settings.php:281 msgid "Password update failed. Please try again." msgstr "La actualización de la contraseña ha fallado. Por favor, inténtalo de nuevo." -#: ../../Zotlabs/Module/Settings.php:579 +#: ../../Zotlabs/Module/Settings.php:525 msgid "Settings updated." msgstr "Ajustes actualizados." -#: ../../Zotlabs/Module/Settings.php:643 ../../Zotlabs/Module/Settings.php:669 -#: ../../Zotlabs/Module/Settings.php:705 +#: ../../Zotlabs/Module/Settings.php:589 ../../Zotlabs/Module/Settings.php:615 +#: ../../Zotlabs/Module/Settings.php:651 msgid "Add application" msgstr "Añadir aplicación" -#: ../../Zotlabs/Module/Settings.php:646 +#: ../../Zotlabs/Module/Settings.php:592 msgid "Name of application" msgstr "Nombre de la aplicación" -#: ../../Zotlabs/Module/Settings.php:647 ../../Zotlabs/Module/Settings.php:673 +#: ../../Zotlabs/Module/Settings.php:593 ../../Zotlabs/Module/Settings.php:619 msgid "Consumer Key" msgstr "Consumer Key" -#: ../../Zotlabs/Module/Settings.php:647 ../../Zotlabs/Module/Settings.php:648 +#: ../../Zotlabs/Module/Settings.php:593 ../../Zotlabs/Module/Settings.php:594 msgid "Automatically generated - change if desired. Max length 20" msgstr "Generado automáticamente - si lo desea, cámbielo. Longitud máxima: 20" -#: ../../Zotlabs/Module/Settings.php:648 ../../Zotlabs/Module/Settings.php:674 +#: ../../Zotlabs/Module/Settings.php:594 ../../Zotlabs/Module/Settings.php:620 msgid "Consumer Secret" msgstr "Consumer Secret" -#: ../../Zotlabs/Module/Settings.php:649 ../../Zotlabs/Module/Settings.php:675 +#: ../../Zotlabs/Module/Settings.php:595 ../../Zotlabs/Module/Settings.php:621 msgid "Redirect" msgstr "Redirigir" -#: ../../Zotlabs/Module/Settings.php:649 +#: ../../Zotlabs/Module/Settings.php:595 msgid "" "Redirect URI - leave blank unless your application specifically requires " "this" msgstr "URI de redirección - dejar en blanco a menos que su aplicación específicamente lo requiera" -#: ../../Zotlabs/Module/Settings.php:650 ../../Zotlabs/Module/Settings.php:676 +#: ../../Zotlabs/Module/Settings.php:596 ../../Zotlabs/Module/Settings.php:622 msgid "Icon url" msgstr "Dirección del icono" -#: ../../Zotlabs/Module/Settings.php:650 ../../Zotlabs/Module/Sources.php:112 +#: ../../Zotlabs/Module/Settings.php:596 ../../Zotlabs/Module/Sources.php:112 #: ../../Zotlabs/Module/Sources.php:147 msgid "Optional" msgstr "Opcional" -#: ../../Zotlabs/Module/Settings.php:661 +#: ../../Zotlabs/Module/Settings.php:607 msgid "Application not found." msgstr "Aplicación no encontrada." -#: ../../Zotlabs/Module/Settings.php:704 +#: ../../Zotlabs/Module/Settings.php:650 msgid "Connected Apps" msgstr "Aplicaciones (apps) conectadas" -#: ../../Zotlabs/Module/Settings.php:708 +#: ../../Zotlabs/Module/Settings.php:654 msgid "Client key starts with" msgstr "La \"client key\" empieza por" -#: ../../Zotlabs/Module/Settings.php:709 +#: ../../Zotlabs/Module/Settings.php:655 msgid "No name" msgstr "Sin nombre" -#: ../../Zotlabs/Module/Settings.php:710 +#: ../../Zotlabs/Module/Settings.php:656 msgid "Remove authorization" msgstr "Eliminar autorización" -#: ../../Zotlabs/Module/Settings.php:723 +#: ../../Zotlabs/Module/Settings.php:669 msgid "No feature settings configured" msgstr "No se ha establecido la configuración de los complementos" -#: ../../Zotlabs/Module/Settings.php:730 +#: ../../Zotlabs/Module/Settings.php:676 msgid "Feature/Addon Settings" msgstr "Ajustes de los complementos" -#: ../../Zotlabs/Module/Settings.php:753 +#: ../../Zotlabs/Module/Settings.php:699 msgid "Account Settings" msgstr "Configuración de la cuenta" -#: ../../Zotlabs/Module/Settings.php:754 +#: ../../Zotlabs/Module/Settings.php:700 msgid "Current Password" msgstr "Contraseña actual" -#: ../../Zotlabs/Module/Settings.php:755 +#: ../../Zotlabs/Module/Settings.php:701 msgid "Enter New Password" msgstr "Escribir una nueva contraseña" -#: ../../Zotlabs/Module/Settings.php:756 +#: ../../Zotlabs/Module/Settings.php:702 msgid "Confirm New Password" msgstr "Confirmar la nueva contraseña" -#: ../../Zotlabs/Module/Settings.php:756 +#: ../../Zotlabs/Module/Settings.php:702 msgid "Leave password fields blank unless changing" msgstr "Dejar en blanco la contraseña a menos que desee cambiarla." -#: ../../Zotlabs/Module/Settings.php:758 -#: ../../Zotlabs/Module/Settings.php:1136 +#: ../../Zotlabs/Module/Settings.php:704 +#: ../../Zotlabs/Module/Settings.php:1041 msgid "Email Address:" msgstr "Dirección de correo electrónico:" -#: ../../Zotlabs/Module/Settings.php:760 +#: ../../Zotlabs/Module/Settings.php:706 msgid "Remove this account including all its channels" msgstr "Eliminar esta cuenta incluyendo todos sus canales" -#: ../../Zotlabs/Module/Settings.php:789 -msgid "" -"Use this form to create temporary access identifiers to share things with " -"non-members. These identities may be used in Access Control Lists and " -"visitors may login using these credentials to access the private content." -msgstr "" - -#: ../../Zotlabs/Module/Settings.php:791 -msgid "" -"You may also provide dropbox style access links to friends and " -"associates by adding the Login Password to any specific site URL as shown. " -"Examples:" -msgstr "" - -#: ../../Zotlabs/Module/Settings.php:796 ../../include/widgets.php:614 -msgid "Guest Access Tokens" -msgstr "" - -#: ../../Zotlabs/Module/Settings.php:803 -msgid "Login Name" -msgstr "" - -#: ../../Zotlabs/Module/Settings.php:804 -msgid "Login Password" -msgstr "" - -#: ../../Zotlabs/Module/Settings.php:805 -msgid "Expires (yyyy-mm-dd)" -msgstr "" - -#: ../../Zotlabs/Module/Settings.php:830 +#: ../../Zotlabs/Module/Settings.php:729 msgid "Additional Features" msgstr "Funcionalidades" -#: ../../Zotlabs/Module/Settings.php:854 +#: ../../Zotlabs/Module/Settings.php:753 msgid "Connector Settings" msgstr "Configuración del conector" -#: ../../Zotlabs/Module/Settings.php:893 +#: ../../Zotlabs/Module/Settings.php:792 msgid "No special theme for mobile devices" msgstr "Sin tema especial para dispositivos móviles" -#: ../../Zotlabs/Module/Settings.php:896 +#: ../../Zotlabs/Module/Settings.php:795 #, php-format msgid "%s - (Experimental)" msgstr "%s - (Experimental)" -#: ../../Zotlabs/Module/Settings.php:938 +#: ../../Zotlabs/Module/Settings.php:837 msgid "Display Settings" msgstr "Ajustes de visualización" -#: ../../Zotlabs/Module/Settings.php:939 +#: ../../Zotlabs/Module/Settings.php:838 msgid "Theme Settings" msgstr "Ajustes del tema" -#: ../../Zotlabs/Module/Settings.php:940 +#: ../../Zotlabs/Module/Settings.php:839 msgid "Custom Theme Settings" msgstr "Ajustes personalizados del tema" -#: ../../Zotlabs/Module/Settings.php:941 +#: ../../Zotlabs/Module/Settings.php:840 msgid "Content Settings" msgstr "Ajustes del contenido" -#: ../../Zotlabs/Module/Settings.php:947 +#: ../../Zotlabs/Module/Settings.php:846 msgid "Display Theme:" msgstr "Tema gráfico del perfil:" -#: ../../Zotlabs/Module/Settings.php:948 +#: ../../Zotlabs/Module/Settings.php:847 msgid "Mobile Theme:" msgstr "Tema para el móvil:" -#: ../../Zotlabs/Module/Settings.php:949 +#: ../../Zotlabs/Module/Settings.php:848 msgid "Preload images before rendering the page" msgstr "Carga previa de las imágenes antes de generar la página" -#: ../../Zotlabs/Module/Settings.php:949 +#: ../../Zotlabs/Module/Settings.php:848 msgid "" "The subjective page load time will be longer but the page will be ready when" " displayed" msgstr "El tiempo subjetivo de carga de la página será más largo, pero la página estará lista cuando se muestre." -#: ../../Zotlabs/Module/Settings.php:950 +#: ../../Zotlabs/Module/Settings.php:849 msgid "Enable user zoom on mobile devices" msgstr "Habilitar zoom de usuario en dispositivos móviles" -#: ../../Zotlabs/Module/Settings.php:951 +#: ../../Zotlabs/Module/Settings.php:850 msgid "Update browser every xx seconds" msgstr "Actualizar navegador cada xx segundos" -#: ../../Zotlabs/Module/Settings.php:951 +#: ../../Zotlabs/Module/Settings.php:850 msgid "Minimum of 10 seconds, no maximum" msgstr "Mínimo de 10 segundos, sin máximo" -#: ../../Zotlabs/Module/Settings.php:952 +#: ../../Zotlabs/Module/Settings.php:851 msgid "Maximum number of conversations to load at any time:" msgstr "Máximo número de conversaciones a cargar en cualquier momento:" -#: ../../Zotlabs/Module/Settings.php:952 +#: ../../Zotlabs/Module/Settings.php:851 msgid "Maximum of 100 items" msgstr "Máximo de 100 elementos" -#: ../../Zotlabs/Module/Settings.php:953 +#: ../../Zotlabs/Module/Settings.php:852 msgid "Show emoticons (smilies) as images" msgstr "Mostrar emoticonos (smilies) como imágenes" -#: ../../Zotlabs/Module/Settings.php:954 +#: ../../Zotlabs/Module/Settings.php:853 msgid "Link post titles to source" msgstr "Enlazar título de la publicación a la fuente original" -#: ../../Zotlabs/Module/Settings.php:955 +#: ../../Zotlabs/Module/Settings.php:854 msgid "System Page Layout Editor - (advanced)" msgstr "Editor de plantilla de página del sistema - (avanzado)" -#: ../../Zotlabs/Module/Settings.php:958 +#: ../../Zotlabs/Module/Settings.php:857 msgid "Use blog/list mode on channel page" msgstr "Usar modo blog/lista en la página de inicio del canal" -#: ../../Zotlabs/Module/Settings.php:958 ../../Zotlabs/Module/Settings.php:959 +#: ../../Zotlabs/Module/Settings.php:857 ../../Zotlabs/Module/Settings.php:858 msgid "(comments displayed separately)" msgstr "(comentarios mostrados de forma separada)" -#: ../../Zotlabs/Module/Settings.php:959 +#: ../../Zotlabs/Module/Settings.php:858 msgid "Use blog/list mode on grid page" msgstr "Mostrar mi red en modo blog" -#: ../../Zotlabs/Module/Settings.php:960 +#: ../../Zotlabs/Module/Settings.php:859 msgid "Channel page max height of content (in pixels)" msgstr "Altura máxima del contenido de la página del canal (en píxeles)" -#: ../../Zotlabs/Module/Settings.php:960 ../../Zotlabs/Module/Settings.php:961 +#: ../../Zotlabs/Module/Settings.php:859 ../../Zotlabs/Module/Settings.php:860 msgid "click to expand content exceeding this height" msgstr "Pulsar para expandir el contenido que exceda de esta altura" -#: ../../Zotlabs/Module/Settings.php:961 +#: ../../Zotlabs/Module/Settings.php:860 msgid "Grid page max height of content (in pixels)" msgstr "Altura máxima del contenido de mi red (en píxeles)" -#: ../../Zotlabs/Module/Settings.php:990 +#: ../../Zotlabs/Module/Settings.php:894 msgid "Nobody except yourself" msgstr "Nadie excepto usted" -#: ../../Zotlabs/Module/Settings.php:991 +#: ../../Zotlabs/Module/Settings.php:895 msgid "Only those you specifically allow" msgstr "Solo aquellos a los que usted permita explícitamente" -#: ../../Zotlabs/Module/Settings.php:992 +#: ../../Zotlabs/Module/Settings.php:896 msgid "Approved connections" msgstr "Conexiones aprobadas" -#: ../../Zotlabs/Module/Settings.php:993 +#: ../../Zotlabs/Module/Settings.php:897 msgid "Any connections" msgstr "Cualquier conexión" -#: ../../Zotlabs/Module/Settings.php:994 +#: ../../Zotlabs/Module/Settings.php:898 msgid "Anybody on this website" msgstr "Cualquiera en este sitio web" -#: ../../Zotlabs/Module/Settings.php:995 +#: ../../Zotlabs/Module/Settings.php:899 msgid "Anybody in this network" msgstr "Cualquiera en esta red" -#: ../../Zotlabs/Module/Settings.php:996 +#: ../../Zotlabs/Module/Settings.php:900 msgid "Anybody authenticated" msgstr "Cualquiera que esté autenticado" -#: ../../Zotlabs/Module/Settings.php:997 +#: ../../Zotlabs/Module/Settings.php:901 msgid "Anybody on the internet" msgstr "Cualquiera en internet" -#: ../../Zotlabs/Module/Settings.php:1071 +#: ../../Zotlabs/Module/Settings.php:976 msgid "Publish your default profile in the network directory" msgstr "Publicar su perfil principal en el directorio de la red" -#: ../../Zotlabs/Module/Settings.php:1076 +#: ../../Zotlabs/Module/Settings.php:981 msgid "Allow us to suggest you as a potential friend to new members?" msgstr "¿Nos permite sugerirle como amigo potencial a los nuevos miembros?" -#: ../../Zotlabs/Module/Settings.php:1085 +#: ../../Zotlabs/Module/Settings.php:990 msgid "Your channel address is" msgstr "Su dirección de canal es" -#: ../../Zotlabs/Module/Settings.php:1127 +#: ../../Zotlabs/Module/Settings.php:1032 msgid "Channel Settings" msgstr "Ajustes del canal" -#: ../../Zotlabs/Module/Settings.php:1134 +#: ../../Zotlabs/Module/Settings.php:1039 msgid "Basic Settings" msgstr "Configuración básica" -#: ../../Zotlabs/Module/Settings.php:1135 ../../include/channel.php:1180 +#: ../../Zotlabs/Module/Settings.php:1040 ../../include/channel.php:1140 msgid "Full Name:" msgstr "Nombre completo:" -#: ../../Zotlabs/Module/Settings.php:1137 +#: ../../Zotlabs/Module/Settings.php:1042 msgid "Your Timezone:" msgstr "Su huso horario:" -#: ../../Zotlabs/Module/Settings.php:1138 +#: ../../Zotlabs/Module/Settings.php:1043 msgid "Default Post Location:" msgstr "Localización geográfica predeterminada para sus publicaciones:" -#: ../../Zotlabs/Module/Settings.php:1138 +#: ../../Zotlabs/Module/Settings.php:1043 msgid "Geographical location to display on your posts" msgstr "Localización geográfica que debe mostrarse en sus publicaciones" -#: ../../Zotlabs/Module/Settings.php:1139 +#: ../../Zotlabs/Module/Settings.php:1044 msgid "Use Browser Location:" msgstr "Usar la localización geográfica del navegador:" -#: ../../Zotlabs/Module/Settings.php:1141 +#: ../../Zotlabs/Module/Settings.php:1046 msgid "Adult Content" msgstr "Contenido solo para adultos" -#: ../../Zotlabs/Module/Settings.php:1141 +#: ../../Zotlabs/Module/Settings.php:1046 msgid "" "This channel frequently or regularly publishes adult content. (Please tag " "any adult material and/or nudity with #NSFW)" msgstr "Este canal publica contenido solo para adultos con frecuencia o regularmente. (Por favor etiquete cualquier material para adultos con la etiqueta #NSFW)" -#: ../../Zotlabs/Module/Settings.php:1143 +#: ../../Zotlabs/Module/Settings.php:1048 msgid "Security and Privacy Settings" msgstr "Configuración de seguridad y privacidad" -#: ../../Zotlabs/Module/Settings.php:1146 +#: ../../Zotlabs/Module/Settings.php:1051 msgid "Your permissions are already configured. Click to view/adjust" msgstr "Sus permisos ya están configurados. Pulse para ver/ajustar" -#: ../../Zotlabs/Module/Settings.php:1148 +#: ../../Zotlabs/Module/Settings.php:1053 msgid "Hide my online presence" msgstr "Ocultar mi presencia en línea" -#: ../../Zotlabs/Module/Settings.php:1148 +#: ../../Zotlabs/Module/Settings.php:1053 msgid "Prevents displaying in your profile that you are online" msgstr "Evitar mostrar en su perfil que está en línea" -#: ../../Zotlabs/Module/Settings.php:1150 +#: ../../Zotlabs/Module/Settings.php:1055 msgid "Simple Privacy Settings:" msgstr "Configuración de privacidad sencilla:" -#: ../../Zotlabs/Module/Settings.php:1151 +#: ../../Zotlabs/Module/Settings.php:1056 msgid "" "Very Public - extremely permissive (should be used with caution)" msgstr "Muy Público - extremadamente permisivo (debería ser usado con precaución)" -#: ../../Zotlabs/Module/Settings.php:1152 +#: ../../Zotlabs/Module/Settings.php:1057 msgid "" "Typical - default public, privacy when desired (similar to social " "network permissions but with improved privacy)" msgstr "Típico - por defecto público, privado cuando se desee (similar a los permisos de una red social pero con privacidad mejorada)" -#: ../../Zotlabs/Module/Settings.php:1153 +#: ../../Zotlabs/Module/Settings.php:1058 msgid "Private - default private, never open or public" msgstr "Privado - por defecto, privado, nunca abierto o público" -#: ../../Zotlabs/Module/Settings.php:1154 +#: ../../Zotlabs/Module/Settings.php:1059 msgid "Blocked - default blocked to/from everybody" msgstr "Bloqueado - por defecto, bloqueado/a para cualquiera" -#: ../../Zotlabs/Module/Settings.php:1156 +#: ../../Zotlabs/Module/Settings.php:1061 msgid "Allow others to tag your posts" msgstr "Permitir a otros etiquetar sus publicaciones" -#: ../../Zotlabs/Module/Settings.php:1156 +#: ../../Zotlabs/Module/Settings.php:1061 msgid "" "Often used by the community to retro-actively flag inappropriate content" msgstr "A menudo usado por la comunidad para marcar contenido inapropiado de forma retroactiva." -#: ../../Zotlabs/Module/Settings.php:1158 +#: ../../Zotlabs/Module/Settings.php:1063 msgid "Advanced Privacy Settings" msgstr "Configuración de privacidad avanzada" -#: ../../Zotlabs/Module/Settings.php:1160 +#: ../../Zotlabs/Module/Settings.php:1065 msgid "Expire other channel content after this many days" msgstr "Caducar contenido de otros canales después de este número de días" -#: ../../Zotlabs/Module/Settings.php:1160 +#: ../../Zotlabs/Module/Settings.php:1065 msgid "0 or blank to use the website limit." msgstr "0 o en blanco para usar el límite del sitio web." -#: ../../Zotlabs/Module/Settings.php:1160 +#: ../../Zotlabs/Module/Settings.php:1065 #, php-format msgid "This website expires after %d days." msgstr "Este sitio web caduca después de %d días." -#: ../../Zotlabs/Module/Settings.php:1160 +#: ../../Zotlabs/Module/Settings.php:1065 msgid "This website does not expire imported content." msgstr "Este sitio web no caduca el contenido importado." -#: ../../Zotlabs/Module/Settings.php:1160 +#: ../../Zotlabs/Module/Settings.php:1065 msgid "The website limit takes precedence if lower than your limit." msgstr "El límite del sitio web tiene prioridad si es inferior a su propio límite." -#: ../../Zotlabs/Module/Settings.php:1161 +#: ../../Zotlabs/Module/Settings.php:1066 msgid "Maximum Friend Requests/Day:" msgstr "Máximo de solicitudes de amistad por día:" -#: ../../Zotlabs/Module/Settings.php:1161 +#: ../../Zotlabs/Module/Settings.php:1066 msgid "May reduce spam activity" msgstr "Podría reducir la actividad de spam" -#: ../../Zotlabs/Module/Settings.php:1162 +#: ../../Zotlabs/Module/Settings.php:1067 msgid "Default Post and Publish Permissions" msgstr "Permisos predeterminados de entradas y publicaciones" -#: ../../Zotlabs/Module/Settings.php:1164 +#: ../../Zotlabs/Module/Settings.php:1069 msgid "Use my default audience setting for the type of object published" msgstr "Usar los ajustes de mi audiencia predeterminada para el tipo de publicación" -#: ../../Zotlabs/Module/Settings.php:1167 +#: ../../Zotlabs/Module/Settings.php:1072 msgid "Channel permissions category:" msgstr "Categoría de permisos del canal:" -#: ../../Zotlabs/Module/Settings.php:1173 +#: ../../Zotlabs/Module/Settings.php:1078 msgid "Maximum private messages per day from unknown people:" msgstr "Máximo de mensajes privados por día de gente desconocida:" -#: ../../Zotlabs/Module/Settings.php:1173 +#: ../../Zotlabs/Module/Settings.php:1078 msgid "Useful to reduce spamming" msgstr "Útil para reducir el envío de correo no deseado" -#: ../../Zotlabs/Module/Settings.php:1176 +#: ../../Zotlabs/Module/Settings.php:1081 msgid "Notification Settings" msgstr "Configuración de las notificaciones" -#: ../../Zotlabs/Module/Settings.php:1177 +#: ../../Zotlabs/Module/Settings.php:1082 msgid "By default post a status message when:" msgstr "Por defecto, enviar un mensaje de estado cuando:" -#: ../../Zotlabs/Module/Settings.php:1178 +#: ../../Zotlabs/Module/Settings.php:1083 msgid "accepting a friend request" msgstr "Acepte una solicitud de amistad" -#: ../../Zotlabs/Module/Settings.php:1179 +#: ../../Zotlabs/Module/Settings.php:1084 msgid "joining a forum/community" msgstr "al unirse a un foro o comunidad" -#: ../../Zotlabs/Module/Settings.php:1180 +#: ../../Zotlabs/Module/Settings.php:1085 msgid "making an interesting profile change" msgstr "Realice un cambio interesante en su perfil" -#: ../../Zotlabs/Module/Settings.php:1181 +#: ../../Zotlabs/Module/Settings.php:1086 msgid "Send a notification email when:" msgstr "Enviar una notificación por correo electrónico cuando:" -#: ../../Zotlabs/Module/Settings.php:1182 +#: ../../Zotlabs/Module/Settings.php:1087 msgid "You receive a connection request" msgstr "Reciba una solicitud de conexión" -#: ../../Zotlabs/Module/Settings.php:1183 +#: ../../Zotlabs/Module/Settings.php:1088 msgid "Your connections are confirmed" msgstr "Sus conexiones hayan sido confirmadas" -#: ../../Zotlabs/Module/Settings.php:1184 +#: ../../Zotlabs/Module/Settings.php:1089 msgid "Someone writes on your profile wall" msgstr "Alguien escriba en la página de su perfil (\"muro\")" -#: ../../Zotlabs/Module/Settings.php:1185 +#: ../../Zotlabs/Module/Settings.php:1090 msgid "Someone writes a followup comment" msgstr "Alguien escriba un comentario sobre sus publicaciones" -#: ../../Zotlabs/Module/Settings.php:1186 +#: ../../Zotlabs/Module/Settings.php:1091 msgid "You receive a private message" msgstr "Reciba un mensaje privado" -#: ../../Zotlabs/Module/Settings.php:1187 +#: ../../Zotlabs/Module/Settings.php:1092 msgid "You receive a friend suggestion" msgstr "Reciba una sugerencia de amistad" -#: ../../Zotlabs/Module/Settings.php:1188 +#: ../../Zotlabs/Module/Settings.php:1093 msgid "You are tagged in a post" msgstr "Usted sea etiquetado en una publicación" -#: ../../Zotlabs/Module/Settings.php:1189 +#: ../../Zotlabs/Module/Settings.php:1094 msgid "You are poked/prodded/etc. in a post" msgstr "Reciba un toque o incitación en una publicación" -#: ../../Zotlabs/Module/Settings.php:1192 +#: ../../Zotlabs/Module/Settings.php:1097 msgid "Show visual notifications including:" msgstr "Mostrar notificaciones visuales que incluyan:" -#: ../../Zotlabs/Module/Settings.php:1194 +#: ../../Zotlabs/Module/Settings.php:1099 msgid "Unseen grid activity" msgstr "Nueva actividad en la red" -#: ../../Zotlabs/Module/Settings.php:1195 +#: ../../Zotlabs/Module/Settings.php:1100 msgid "Unseen channel activity" msgstr "Actividad no vista en el canal" -#: ../../Zotlabs/Module/Settings.php:1196 +#: ../../Zotlabs/Module/Settings.php:1101 msgid "Unseen private messages" msgstr "Mensajes privados no leídos" -#: ../../Zotlabs/Module/Settings.php:1196 -#: ../../Zotlabs/Module/Settings.php:1201 -#: ../../Zotlabs/Module/Settings.php:1202 -#: ../../Zotlabs/Module/Settings.php:1203 +#: ../../Zotlabs/Module/Settings.php:1101 +#: ../../Zotlabs/Module/Settings.php:1106 +#: ../../Zotlabs/Module/Settings.php:1107 +#: ../../Zotlabs/Module/Settings.php:1108 msgid "Recommended" msgstr "Recomendado" -#: ../../Zotlabs/Module/Settings.php:1197 +#: ../../Zotlabs/Module/Settings.php:1102 msgid "Upcoming events" msgstr "Próximos eventos" -#: ../../Zotlabs/Module/Settings.php:1198 +#: ../../Zotlabs/Module/Settings.php:1103 msgid "Events today" msgstr "Eventos de hoy" -#: ../../Zotlabs/Module/Settings.php:1199 +#: ../../Zotlabs/Module/Settings.php:1104 msgid "Upcoming birthdays" msgstr "Próximos cumpleaños" -#: ../../Zotlabs/Module/Settings.php:1199 +#: ../../Zotlabs/Module/Settings.php:1104 msgid "Not available in all themes" msgstr "No disponible en todos los temas" -#: ../../Zotlabs/Module/Settings.php:1200 +#: ../../Zotlabs/Module/Settings.php:1105 msgid "System (personal) notifications" msgstr "Notificaciones del sistema (personales)" -#: ../../Zotlabs/Module/Settings.php:1201 +#: ../../Zotlabs/Module/Settings.php:1106 msgid "System info messages" msgstr "Mensajes de información del sistema" -#: ../../Zotlabs/Module/Settings.php:1202 +#: ../../Zotlabs/Module/Settings.php:1107 msgid "System critical alerts" msgstr "Alertas críticas del sistema" -#: ../../Zotlabs/Module/Settings.php:1203 +#: ../../Zotlabs/Module/Settings.php:1108 msgid "New connections" msgstr "Nuevas conexiones" -#: ../../Zotlabs/Module/Settings.php:1204 +#: ../../Zotlabs/Module/Settings.php:1109 msgid "System Registrations" msgstr "Registros del sistema" -#: ../../Zotlabs/Module/Settings.php:1205 +#: ../../Zotlabs/Module/Settings.php:1110 msgid "" "Also show new wall posts, private messages and connections under Notices" msgstr "Mostrar también en Avisos las nuevas publicaciones, los mensajes privados y las conexiones" -#: ../../Zotlabs/Module/Settings.php:1207 +#: ../../Zotlabs/Module/Settings.php:1112 msgid "Notify me of events this many days in advance" msgstr "Avisarme de los eventos con algunos días de antelación" -#: ../../Zotlabs/Module/Settings.php:1207 +#: ../../Zotlabs/Module/Settings.php:1112 msgid "Must be greater than 0" msgstr "Debe ser mayor que 0" -#: ../../Zotlabs/Module/Settings.php:1209 +#: ../../Zotlabs/Module/Settings.php:1114 msgid "Advanced Account/Page Type Settings" msgstr "Ajustes avanzados de la cuenta y de los tipos de página" -#: ../../Zotlabs/Module/Settings.php:1210 +#: ../../Zotlabs/Module/Settings.php:1115 msgid "Change the behaviour of this account for special situations" msgstr "Cambiar el comportamiento de esta cuenta en situaciones especiales" -#: ../../Zotlabs/Module/Settings.php:1213 +#: ../../Zotlabs/Module/Settings.php:1118 msgid "" "Please enable expert mode (in Settings > " "Additional features) to adjust!" msgstr "¡Activar el modo de experto (en Ajustes > Funcionalidades) para realizar cambios!." -#: ../../Zotlabs/Module/Settings.php:1214 +#: ../../Zotlabs/Module/Settings.php:1119 msgid "Miscellaneous Settings" msgstr "Ajustes diversos" -#: ../../Zotlabs/Module/Settings.php:1215 +#: ../../Zotlabs/Module/Settings.php:1120 msgid "Default photo upload folder" msgstr "Carpeta por defecto de las fotos subidas" -#: ../../Zotlabs/Module/Settings.php:1215 -#: ../../Zotlabs/Module/Settings.php:1216 +#: ../../Zotlabs/Module/Settings.php:1120 +#: ../../Zotlabs/Module/Settings.php:1121 msgid "%Y - current year, %m - current month" msgstr "%Y - año en curso, %m - mes actual" -#: ../../Zotlabs/Module/Settings.php:1216 +#: ../../Zotlabs/Module/Settings.php:1121 msgid "Default file upload folder" msgstr "Carpeta por defecto de los archivos subidos" -#: ../../Zotlabs/Module/Settings.php:1218 +#: ../../Zotlabs/Module/Settings.php:1123 msgid "Personal menu to display in your channel pages" msgstr "Menú personal que debe mostrarse en las páginas de su canal" -#: ../../Zotlabs/Module/Settings.php:1220 +#: ../../Zotlabs/Module/Settings.php:1125 msgid "Remove this channel." msgstr "Eliminar este canal." -#: ../../Zotlabs/Module/Settings.php:1221 +#: ../../Zotlabs/Module/Settings.php:1126 msgid "Firefox Share $Projectname provider" msgstr "Servicio de compartición de Firefox: proveedor $Projectname" -#: ../../Zotlabs/Module/Settings.php:1222 +#: ../../Zotlabs/Module/Settings.php:1127 msgid "Start calendar week on monday" msgstr "Comenzar el calendario semanal por el lunes" @@ -5830,7 +5519,7 @@ msgid "" msgstr "Podría tener que importar manualmente el fichero \"install/schema_xxx.sql\" usando un cliente de base de datos." #: ../../Zotlabs/Module/Setup.php:204 ../../Zotlabs/Module/Setup.php:266 -#: ../../Zotlabs/Module/Setup.php:722 +#: ../../Zotlabs/Module/Setup.php:721 msgid "Please see the file \"install/INSTALL.txt\"." msgstr "Por favor, lea el fichero \"install/INSTALL.txt\"." @@ -6030,200 +5719,199 @@ msgid "mb_string PHP module" msgstr "módulo PHP mb_string" #: ../../Zotlabs/Module/Setup.php:496 +msgid "mcrypt PHP module" +msgstr "módulo PHP mcrypt " + +#: ../../Zotlabs/Module/Setup.php:497 msgid "xml PHP module" msgstr "módulo PHP xml" -#: ../../Zotlabs/Module/Setup.php:500 ../../Zotlabs/Module/Setup.php:502 +#: ../../Zotlabs/Module/Setup.php:501 ../../Zotlabs/Module/Setup.php:503 msgid "Apache mod_rewrite module" msgstr "módulo Apache mod_rewrite " -#: ../../Zotlabs/Module/Setup.php:500 +#: ../../Zotlabs/Module/Setup.php:501 msgid "" "Error: Apache webserver mod-rewrite module is required but not installed." msgstr "Error: se necesita el módulo del servidor web Apache mod-rewrite pero no está instalado." -#: ../../Zotlabs/Module/Setup.php:506 ../../Zotlabs/Module/Setup.php:509 +#: ../../Zotlabs/Module/Setup.php:507 ../../Zotlabs/Module/Setup.php:510 msgid "proc_open" msgstr "proc_open" -#: ../../Zotlabs/Module/Setup.php:506 +#: ../../Zotlabs/Module/Setup.php:507 msgid "" "Error: proc_open is required but is either not installed or has been " "disabled in php.ini" msgstr "Error: se necesita proc_open pero o no está instalado o ha sido desactivado en el fichero php.ini" -#: ../../Zotlabs/Module/Setup.php:514 +#: ../../Zotlabs/Module/Setup.php:515 msgid "Error: libCURL PHP module required but not installed." msgstr "Error: se necesita el módulo PHP libCURL pero no está instalado." -#: ../../Zotlabs/Module/Setup.php:518 +#: ../../Zotlabs/Module/Setup.php:519 msgid "" "Error: GD graphics PHP module with JPEG support required but not installed." msgstr "Error: el módulo PHP GD graphics es necesario, pero no está instalado." -#: ../../Zotlabs/Module/Setup.php:522 +#: ../../Zotlabs/Module/Setup.php:523 msgid "Error: openssl PHP module required but not installed." msgstr "Error: el módulo PHP openssl es necesario, pero no está instalado." -#: ../../Zotlabs/Module/Setup.php:526 +#: ../../Zotlabs/Module/Setup.php:527 msgid "" "Error: mysqli or postgres PHP module required but neither are installed." msgstr "Error: el módulo PHP mysqli o postgres es necesario pero ninguno de los dos está instalado." -#: ../../Zotlabs/Module/Setup.php:530 +#: ../../Zotlabs/Module/Setup.php:531 msgid "Error: mb_string PHP module required but not installed." msgstr "Error: el módulo PHP mb_string es necesario, pero no está instalado." -#: ../../Zotlabs/Module/Setup.php:534 +#: ../../Zotlabs/Module/Setup.php:535 +msgid "Error: mcrypt PHP module required but not installed." +msgstr "Error: el módulo PHP mcrypt es necesario, pero no está instalado." + +#: ../../Zotlabs/Module/Setup.php:539 msgid "Error: xml PHP module required for DAV but not installed." msgstr "Error: el módulo PHP xml es necesario para DAV, pero no está instalado." -#: ../../Zotlabs/Module/Setup.php:552 +#: ../../Zotlabs/Module/Setup.php:557 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 "El instalador web no ha podido crear un fichero llamado “.htconfig.php” en la carpeta base de su servidor." -#: ../../Zotlabs/Module/Setup.php:553 +#: ../../Zotlabs/Module/Setup.php:558 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 "Esto está generalmente ligado a un problema de permisos, a causa del cual el servidor web tiene prohibido modificar ficheros en su carpeta - incluso si usted mismo tiene esos permisos." -#: ../../Zotlabs/Module/Setup.php:554 +#: ../../Zotlabs/Module/Setup.php:559 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 "Al término de este procedimiento, podemos crear un fichero de texto para guardar con el nombre .htconfig.php en el directorio raíz de su instalación de Hubzilla." -#: ../../Zotlabs/Module/Setup.php:555 +#: ../../Zotlabs/Module/Setup.php:560 msgid "" "You can alternatively skip this procedure and perform a manual installation." " Please see the file \"install/INSTALL.txt\" for instructions." msgstr "Como alternativa, puede dejar este procedimiento e intentar realizar una instalación manual. Lea, por favor, el fichero\"install/INSTALL.txt\" para las instrucciones." -#: ../../Zotlabs/Module/Setup.php:558 +#: ../../Zotlabs/Module/Setup.php:563 msgid ".htconfig.php is writable" msgstr ".htconfig.php tiene permisos de escritura" -#: ../../Zotlabs/Module/Setup.php:572 +#: ../../Zotlabs/Module/Setup.php:577 msgid "" "Red uses the Smarty3 template engine to render its web views. Smarty3 " "compiles templates to PHP to speed up rendering." msgstr "Hubzilla hace uso del motor de plantillas Smarty3 para diseñar sus plantillas gráficas. Smarty3 es más rápido porque compila las plantillas de páginas directamente en PHP." -#: ../../Zotlabs/Module/Setup.php:573 +#: ../../Zotlabs/Module/Setup.php:578 #, php-format msgid "" "In order to store these compiled templates, the web server needs to have " "write access to the directory %s under the top level web folder." msgstr "Para poder guardar las plantillas compiladas, el servidor web necesita permisos para acceder al directorio %s en la carpeta web principal." -#: ../../Zotlabs/Module/Setup.php:574 ../../Zotlabs/Module/Setup.php:595 +#: ../../Zotlabs/Module/Setup.php:579 ../../Zotlabs/Module/Setup.php:600 msgid "" "Please ensure that the user that your web server runs as (e.g. www-data) has" " write access to this folder." msgstr "Por favor, asegúrese de que el servidor web está siendo ejecutado por un usuario que tenga permisos de escritura sobre esta carpeta (por ejemplo, www-data)." -#: ../../Zotlabs/Module/Setup.php:575 +#: ../../Zotlabs/Module/Setup.php:580 #, 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 "Nota: como medida de seguridad, debe dar al servidor web permisos de escritura solo sobre %s - no sobre el fichero de plantilla (.tpl) que contiene." -#: ../../Zotlabs/Module/Setup.php:578 +#: ../../Zotlabs/Module/Setup.php:583 #, php-format msgid "%s is writable" msgstr "%s tiene permisos de escritura" -#: ../../Zotlabs/Module/Setup.php:594 +#: ../../Zotlabs/Module/Setup.php:599 msgid "" -"This software 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 "" +"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 "Hubzilla guarda los ficheros descargados en la carpeta \"store\". El servidor web necesita tener permisos de escritura sobre esa carpeta, en el directorio de instalación." -#: ../../Zotlabs/Module/Setup.php:598 +#: ../../Zotlabs/Module/Setup.php:603 msgid "store is writable" msgstr "\"store\" tiene permisos de escritura" -#: ../../Zotlabs/Module/Setup.php:631 +#: ../../Zotlabs/Module/Setup.php:636 msgid "" "SSL certificate cannot be validated. Fix certificate or disable https access" " to this site." msgstr "El certificado SSL no ha podido ser validado. Corrija este problema o desactive el acceso https a este sitio." -#: ../../Zotlabs/Module/Setup.php:632 +#: ../../Zotlabs/Module/Setup.php:637 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 "Si su servidor soporta conexiones cifradas SSL o si permite conexiones al puerto TCP 443 (el puerto usado por el protocolo https), debe utilizar un certificado válido. No debe usar un certificado firmado por usted mismo." -#: ../../Zotlabs/Module/Setup.php:633 +#: ../../Zotlabs/Module/Setup.php:638 msgid "" "This restriction is incorporated because public posts from you may for " "example contain references to images on your own hub." msgstr "Se ha incorporado esta restricción para evitar que sus publicaciones públicas hagan referencia a imágenes en su propio servidor." -#: ../../Zotlabs/Module/Setup.php:634 +#: ../../Zotlabs/Module/Setup.php:639 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." msgstr "Si su certificado no ha sido reconocido, los miembros de otros sitios (con certificados válidos) recibirán mensajes de aviso en sus propios sitios web." -#: ../../Zotlabs/Module/Setup.php:635 +#: ../../Zotlabs/Module/Setup.php:640 msgid "" "This can cause usability issues elsewhere (not just on your own site) so we " "must insist on this requirement." msgstr "Por razones de compatibilidad (sobre el conjunto de la red, no solo sobre su propio sitio), debemos insistir en estos requisitos." -#: ../../Zotlabs/Module/Setup.php:636 +#: ../../Zotlabs/Module/Setup.php:641 msgid "" "Providers are available that issue free certificates which are browser-" "valid." msgstr "Existen varias Autoridades de Certificación que le pueden proporcionar certificados válidos." -#: ../../Zotlabs/Module/Setup.php:638 -msgid "" -"If you are confident that the certificate is valid and signed by a trusted " -"authority, check to see if you have failed to install an intermediate cert. " -"These are not normally required by browsers, but are required for server-to-" -"server communications." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:641 +#: ../../Zotlabs/Module/Setup.php:643 msgid "SSL certificate validation" msgstr "validación del certificado SSL" -#: ../../Zotlabs/Module/Setup.php:647 +#: ../../Zotlabs/Module/Setup.php:649 msgid "" "Url rewrite in .htaccess is not working. Check your server " "configuration.Test: " msgstr "No se pueden reescribir las direcciones web en .htaccess. Compruebe la configuración de su servidor:" -#: ../../Zotlabs/Module/Setup.php:650 +#: ../../Zotlabs/Module/Setup.php:652 msgid "Url rewrite is working" msgstr "La reescritura de las direcciones funciona correctamente" -#: ../../Zotlabs/Module/Setup.php:659 +#: ../../Zotlabs/Module/Setup.php:661 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 "El fichero de configuración de la base de datos .htconfig.php no se ha podido modificar. Por favor, copie el texto generado en un fichero con ese nombre en el directorio raíz de su servidor." -#: ../../Zotlabs/Module/Setup.php:683 +#: ../../Zotlabs/Module/Setup.php:685 msgid "Errors encountered creating database tables." msgstr "Se han encontrado errores al crear las tablas de la base de datos." -#: ../../Zotlabs/Module/Setup.php:720 +#: ../../Zotlabs/Module/Setup.php:719 msgid "

What next

" msgstr "

Siguiente paso

" -#: ../../Zotlabs/Module/Setup.php:721 +#: ../../Zotlabs/Module/Setup.php:720 msgid "" "IMPORTANT: You will need to [manually] setup a scheduled task for the " "poller." @@ -6245,62 +5933,64 @@ msgstr "Eliminar todos los ficheros" msgid "Remove this file" msgstr "Eliminar este fichero" -#: ../../Zotlabs/Module/Thing.php:114 -msgid "Thing updated" -msgstr "Elemento actualizado." - -#: ../../Zotlabs/Module/Thing.php:166 -msgid "Object store: failed" -msgstr "Guardar objeto: ha fallado" - -#: ../../Zotlabs/Module/Thing.php:170 -msgid "Thing added" -msgstr "Elemento añadido" - -#: ../../Zotlabs/Module/Thing.php:196 +#: ../../Zotlabs/Module/Siteinfo.php:19 #, php-format -msgid "OBJ: %1$s %2$s %3$s" -msgstr "OBJ: %1$s %2$s %3$s" +msgid "Version %s" +msgstr "Versión %s" -#: ../../Zotlabs/Module/Thing.php:259 -msgid "Show Thing" -msgstr "Mostrar elemento" +#: ../../Zotlabs/Module/Siteinfo.php:40 +msgid "Installed plugins/addons/apps:" +msgstr "Extensiones (plugins), complementos o aplicaciones (apps) instaladas:" -#: ../../Zotlabs/Module/Thing.php:266 -msgid "item not found." -msgstr "elemento no encontrado." +#: ../../Zotlabs/Module/Siteinfo.php:53 +msgid "No installed plugins/addons/apps" +msgstr "No hay instalada ninguna extensión (plugin), complemento o aplicación (app)" -#: ../../Zotlabs/Module/Thing.php:299 -msgid "Edit Thing" -msgstr "Editar elemento" +#: ../../Zotlabs/Module/Siteinfo.php:66 +msgid "" +"This is a hub of $Projectname - a global cooperative network of " +"decentralized privacy enhanced websites." +msgstr "Este es un sitio integrado en $Projectname - una red cooperativa mundial de sitios web descentralizados de privacidad mejorada." -#: ../../Zotlabs/Module/Thing.php:301 ../../Zotlabs/Module/Thing.php:351 -msgid "Select a profile" -msgstr "Seleccionar un perfil" +#: ../../Zotlabs/Module/Siteinfo.php:68 +msgid "Tag: " +msgstr "Etiqueta:" -#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:354 -msgid "Post an activity" -msgstr "Publicar una actividad" +#: ../../Zotlabs/Module/Siteinfo.php:70 +msgid "Last background fetch: " +msgstr "Última actualización en segundo plano:" -#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:354 -msgid "Only sends to viewers of the applicable profile" -msgstr "Sólo enviar a espectadores del perfil pertinente." +#: ../../Zotlabs/Module/Siteinfo.php:72 +msgid "Current load average: " +msgstr "Carga media actual:" -#: ../../Zotlabs/Module/Thing.php:307 ../../Zotlabs/Module/Thing.php:356 -msgid "Name of thing e.g. something" -msgstr "Nombre del elemento, p. ej.:. \"algo\"" +#: ../../Zotlabs/Module/Siteinfo.php:75 +msgid "Running at web location" +msgstr "Corriendo en el sitio web" -#: ../../Zotlabs/Module/Thing.php:309 ../../Zotlabs/Module/Thing.php:357 -msgid "URL of thing (optional)" -msgstr "Dirección del elemento (opcional)" +#: ../../Zotlabs/Module/Siteinfo.php:76 +msgid "" +"Please visit hubzilla.org to learn more " +"about $Projectname." +msgstr "Por favor, visite hubzilla.org para más información sobre $Projectname." -#: ../../Zotlabs/Module/Thing.php:311 ../../Zotlabs/Module/Thing.php:358 -msgid "URL for photo of thing (optional)" -msgstr "Dirección para la foto o elemento (opcional)" +#: ../../Zotlabs/Module/Siteinfo.php:77 +msgid "Bug reports and issues: please visit" +msgstr "Informes de errores e incidencias: por favor visite" -#: ../../Zotlabs/Module/Thing.php:349 -msgid "Add Thing to your Profile" -msgstr "Añadir alguna cosa a su perfil" +#: ../../Zotlabs/Module/Siteinfo.php:79 +msgid "$projectname issues" +msgstr "Problemas en $projectname" + +#: ../../Zotlabs/Module/Siteinfo.php:80 +msgid "" +"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot " +"com" +msgstr "Sugerencias, elogios, etc - por favor, un correo electrónico a \"redmatrix\" en librelist - punto com" + +#: ../../Zotlabs/Module/Siteinfo.php:82 +msgid "Site Administrators" +msgstr "Administradores del sitio" #: ../../Zotlabs/Module/Sources.php:37 msgid "Failed to create source. No channel selected." @@ -6318,8 +6008,8 @@ msgstr "Fuente actualizada." msgid "*" msgstr "*" -#: ../../Zotlabs/Module/Sources.php:96 ../../include/features.php:72 -#: ../../include/widgets.php:639 +#: ../../Zotlabs/Module/Sources.php:96 ../../include/widgets.php:630 +#: ../../include/features.php:71 msgid "Channel Sources" msgstr "Orígenes de los contenidos del canal" @@ -6395,12 +6085,12 @@ msgstr "No hay sugerencias disponibles. Si es un sitio nuevo, espere 24 horas y msgid "Ignore/Hide" msgstr "Ignorar/Ocultar" -#: ../../Zotlabs/Module/Tagger.php:55 ../../include/bbcode.php:263 +#: ../../Zotlabs/Module/Tagger.php:55 ../../include/bbcode.php:256 msgid "post" msgstr "la entrada" -#: ../../Zotlabs/Module/Tagger.php:57 ../../include/conversation.php:150 -#: ../../include/text.php:1929 +#: ../../Zotlabs/Module/Tagger.php:57 ../../include/text.php:1948 +#: ../../include/conversation.php:150 msgid "comment" msgstr "el comentario" @@ -6421,110 +6111,131 @@ msgstr "Eliminar etiqueta del elemento." msgid "Select a tag to remove: " msgstr "Seleccionar una etiqueta para eliminar:" -#: ../../Zotlabs/Module/Webpages.php:191 ../../Zotlabs/Lib/Apps.php:218 -#: ../../include/nav.php:106 ../../include/conversation.php:1700 -msgid "Webpages" -msgstr "Páginas web" +#: ../../Zotlabs/Module/Thing.php:114 +msgid "Thing updated" +msgstr "Elemento actualizado." -#: ../../Zotlabs/Module/Webpages.php:202 ../../include/page_widgets.php:44 -msgid "Actions" -msgstr "Acciones" +#: ../../Zotlabs/Module/Thing.php:166 +msgid "Object store: failed" +msgstr "Guardar objeto: ha fallado" -#: ../../Zotlabs/Module/Webpages.php:203 ../../include/page_widgets.php:45 -msgid "Page Link" -msgstr "Vínculo de la página" +#: ../../Zotlabs/Module/Thing.php:170 +msgid "Thing added" +msgstr "Elemento añadido" -#: ../../Zotlabs/Module/Webpages.php:204 -msgid "Page Title" -msgstr "Título de página" +#: ../../Zotlabs/Module/Thing.php:196 +#, php-format +msgid "OBJ: %1$s %2$s %3$s" +msgstr "OBJ: %1$s %2$s %3$s" -#: ../../Zotlabs/Module/Wiki.php:34 -msgid "Not found" -msgstr "" +#: ../../Zotlabs/Module/Thing.php:259 +msgid "Show Thing" +msgstr "Mostrar elemento" -#: ../../Zotlabs/Module/Wiki.php:92 ../../Zotlabs/Lib/Apps.php:219 -#: ../../include/nav.php:108 ../../include/conversation.php:1710 -#: ../../include/conversation.php:1713 ../../include/features.php:55 -msgid "Wiki" -msgstr "Wiki" +#: ../../Zotlabs/Module/Thing.php:266 +msgid "item not found." +msgstr "elemento no encontrado." -#: ../../Zotlabs/Module/Wiki.php:93 -msgid "Sandbox" -msgstr "Entorno de edición" +#: ../../Zotlabs/Module/Thing.php:299 +msgid "Edit Thing" +msgstr "Editar elemento" -#: ../../Zotlabs/Module/Wiki.php:95 +#: ../../Zotlabs/Module/Thing.php:301 ../../Zotlabs/Module/Thing.php:351 +msgid "Select a profile" +msgstr "Seleccionar un perfil" + +#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:354 +msgid "Post an activity" +msgstr "Publicar una actividad" + +#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:354 +msgid "Only sends to viewers of the applicable profile" +msgstr "Sólo enviar a espectadores del perfil pertinente." + +#: ../../Zotlabs/Module/Thing.php:307 ../../Zotlabs/Module/Thing.php:356 +msgid "Name of thing e.g. something" +msgstr "Nombre del elemento, p. ej.:. \"algo\"" + +#: ../../Zotlabs/Module/Thing.php:309 ../../Zotlabs/Module/Thing.php:357 +msgid "URL of thing (optional)" +msgstr "Dirección del elemento (opcional)" + +#: ../../Zotlabs/Module/Thing.php:311 ../../Zotlabs/Module/Thing.php:358 +msgid "URL for photo of thing (optional)" +msgstr "Dirección para la foto o elemento (opcional)" + +#: ../../Zotlabs/Module/Thing.php:349 +msgid "Add Thing to your Profile" +msgstr "Añadir alguna cosa a su perfil" + +#: ../../Zotlabs/Module/Uexport.php:55 ../../Zotlabs/Module/Uexport.php:56 +msgid "Export Channel" +msgstr "Exportar el canal" + +#: ../../Zotlabs/Module/Uexport.php:57 msgid "" -"\"# Wiki Sandbox\\n\\nContent you **edit** and **preview** here *will not be" -" saved*.\"" -msgstr "" +"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 "Exportar la información básica del canal a un fichero. Este equivale a una copia de seguridad de sus conexiones, el perfil y datos fundamentales, que puede usarse para importar sus datos a un nuevo servidor, pero no incluye su contenido." -#: ../../Zotlabs/Module/Wiki.php:164 -msgid "Revision Comparison" -msgstr "Comparación de revisiones" +#: ../../Zotlabs/Module/Uexport.php:58 +msgid "Export Content" +msgstr "Exportar contenidos" -#: ../../Zotlabs/Module/Wiki.php:165 -msgid "Revert" -msgstr "Revertir" +#: ../../Zotlabs/Module/Uexport.php:59 +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 "Exportar la información sobre su canal y el contenido reciente a un fichero de respaldo JSON, que puede ser restaurado o importado a otro servidor. Este fichero incluye todas sus conexiones, permisos, datos del perfil y publicaciones de varios meses. Puede llegar a ser MUY grande. Por favor, sea paciente, la descarga puede tardar varios minutos en comenzar." -#: ../../Zotlabs/Module/Wiki.php:192 -msgid "Enter the name of your new wiki:" -msgstr "Nombre de su nuevo wiki:" +#: ../../Zotlabs/Module/Uexport.php:60 +msgid "Export your posts from a given year." +msgstr "Exporta sus publicaciones de un año dado." -#: ../../Zotlabs/Module/Wiki.php:193 -msgid "Enter the name of the new page:" -msgstr "Nombre de la nueva página:" +#: ../../Zotlabs/Module/Uexport.php:62 +msgid "" +"You may also export your posts and conversations for a particular year or " +"month. Adjust the date in your browser location bar to select other dates. " +"If the export fails (possibly due to memory exhaustion on your server hub), " +"please try again selecting a more limited date range." +msgstr "También puede exportar sus mensajes y conversaciones durante un año o mes en particular. Ajuste la fecha en la barra de direcciones del navegador para seleccionar otras fechas. Si la exportación falla (posiblemente debido al agotamiento de la memoria del servidor hub), por favor, intente de nuevo la selección de un rango de fechas más pequeño." -#: ../../Zotlabs/Module/Wiki.php:194 -msgid "Enter the new name:" -msgstr "Nuevo nombre:" +#: ../../Zotlabs/Module/Uexport.php:63 +#, php-format +msgid "" +"To select all posts for a given year, such as this year, visit %2$s" +msgstr "Para seleccionar todos los mensajes de un año determinado, como este año, visite %2$s" -#: ../../Zotlabs/Module/Wiki.php:200 ../../include/conversation.php:1150 -msgid "Embed image from photo albums" -msgstr "Incluir una imagen de los álbumes de fotos" +#: ../../Zotlabs/Module/Uexport.php:64 +#, php-format +msgid "" +"To select all posts for a given month, such as January of this year, visit " +"%2$s" +msgstr "Para seleccionar todos los mensajes de un mes determinado, como el de enero de este año, visite %2$s" -#: ../../Zotlabs/Module/Wiki.php:201 ../../include/conversation.php:1234 -msgid "Embed an image from your albums" -msgstr "Incluir una imagen de sus álbumes" +#: ../../Zotlabs/Module/Uexport.php:65 +#, php-format +msgid "" +"These content files may be imported or restored by visiting %2$s on any site containing your channel. For best results" +" please import or restore these in date order (oldest first)." +msgstr "Estos ficheros pueden ser importados o restaurados visitando %2$s o cualquier sitio que contenga su canal. Para obtener los mejores resultados, por favor, importar o restaurar estos ficheros en orden de fecha (la más antigua primero)." -#: ../../Zotlabs/Module/Wiki.php:203 ../../include/conversation.php:1236 -#: ../../include/conversation.php:1273 -msgid "OK" -msgstr "OK" - -#: ../../Zotlabs/Module/Wiki.php:204 ../../include/conversation.php:1186 -msgid "Choose images to embed" -msgstr "Elegir imágenes para incluir" - -#: ../../Zotlabs/Module/Wiki.php:205 ../../include/conversation.php:1187 -msgid "Choose an album" -msgstr "Elegir un álbum" - -#: ../../Zotlabs/Module/Wiki.php:206 ../../include/conversation.php:1188 -msgid "Choose a different album..." -msgstr "Elegir un álbum diferente..." - -#: ../../Zotlabs/Module/Wiki.php:207 ../../include/conversation.php:1189 -msgid "Error getting album list" -msgstr "Error al obtener la lista de álbumes" - -#: ../../Zotlabs/Module/Wiki.php:208 ../../include/conversation.php:1190 -msgid "Error getting photo link" -msgstr "Error al obtener el enlace de la foto" - -#: ../../Zotlabs/Module/Wiki.php:209 ../../include/conversation.php:1191 -msgid "Error getting album" -msgstr "Error al obtener el álbum" - -#: ../../Zotlabs/Module/Viewconnections.php:65 +#: ../../Zotlabs/Module/Viewconnections.php:62 msgid "No connections." msgstr "Sin conexiones." -#: ../../Zotlabs/Module/Viewconnections.php:78 +#: ../../Zotlabs/Module/Viewconnections.php:75 #, php-format msgid "Visit %s's profile [%s]" msgstr "Visitar el perfil de %s [%s]" -#: ../../Zotlabs/Module/Viewconnections.php:107 +#: ../../Zotlabs/Module/Viewconnections.php:104 msgid "View Connections" msgstr "Ver conexiones" @@ -6532,23 +6243,22 @@ msgstr "Ver conexiones" msgid "Source of Item" msgstr "Origen del elemento" -#: ../../Zotlabs/Module/Api.php:61 ../../Zotlabs/Module/Api.php:85 -msgid "Authorize application connection" -msgstr "Autorizar una conexión de aplicación" +#: ../../Zotlabs/Module/Webpages.php:184 ../../Zotlabs/Lib/Apps.php:217 +#: ../../include/nav.php:106 ../../include/conversation.php:1685 +msgid "Webpages" +msgstr "Páginas web" -#: ../../Zotlabs/Module/Api.php:62 -msgid "Return to your app and insert this Securty Code:" -msgstr "Volver a su aplicación e introducir este código de seguridad:" +#: ../../Zotlabs/Module/Webpages.php:195 ../../include/page_widgets.php:41 +msgid "Actions" +msgstr "Acciones" -#: ../../Zotlabs/Module/Api.php:72 -msgid "Please login to continue." -msgstr "Por favor inicie sesión para continuar." +#: ../../Zotlabs/Module/Webpages.php:196 ../../include/page_widgets.php:42 +msgid "Page Link" +msgstr "Vínculo de la página" -#: ../../Zotlabs/Module/Api.php:87 -msgid "" -"Do you want to authorize this application to access your posts and contacts," -" and/or create new posts for you?" -msgstr "¿Desea autorizar a esta aplicación a acceder a sus publicaciones y contactos, y/o crear nuevas publicaciones por usted?" +#: ../../Zotlabs/Module/Webpages.php:197 +msgid "Page Title" +msgstr "Título de página" #: ../../Zotlabs/Module/Xchan.php:10 msgid "Xchan Lookup" @@ -6558,6 +6268,92 @@ msgstr "Búsqueda de canales" msgid "Lookup xchan beginning with (or webbie): " msgstr "Buscar un canal (o un \"webbie\") que comience por:" +#: ../../Zotlabs/Lib/Apps.php:204 +msgid "Site Admin" +msgstr "Administrador del sitio" + +#: ../../Zotlabs/Lib/Apps.php:205 +msgid "Bug Report" +msgstr "Informe de errores" + +#: ../../Zotlabs/Lib/Apps.php:206 +msgid "View Bookmarks" +msgstr "Ver los marcadores" + +#: ../../Zotlabs/Lib/Apps.php:207 +msgid "My Chatrooms" +msgstr "Mis salas de chat" + +#: ../../Zotlabs/Lib/Apps.php:209 +msgid "Firefox Share" +msgstr "Servicio de compartición de Firefox" + +#: ../../Zotlabs/Lib/Apps.php:210 +msgid "Remote Diagnostics" +msgstr "Diagnóstico remoto" + +#: ../../Zotlabs/Lib/Apps.php:211 ../../include/features.php:89 +msgid "Suggest Channels" +msgstr "Sugerir canales" + +#: ../../Zotlabs/Lib/Apps.php:212 ../../include/nav.php:110 +#: ../../boot.php:1703 +msgid "Login" +msgstr "Iniciar sesión" + +#: ../../Zotlabs/Lib/Apps.php:214 ../../include/nav.php:179 +msgid "Grid" +msgstr "Red" + +#: ../../Zotlabs/Lib/Apps.php:218 ../../include/nav.php:182 +msgid "Channel Home" +msgstr "Mi canal" + +#: ../../Zotlabs/Lib/Apps.php:221 ../../include/nav.php:201 +#: ../../include/conversation.php:1649 ../../include/conversation.php:1652 +msgid "Events" +msgstr "Eventos" + +#: ../../Zotlabs/Lib/Apps.php:222 ../../include/nav.php:167 +msgid "Directory" +msgstr "Directorio" + +#: ../../Zotlabs/Lib/Apps.php:224 ../../include/nav.php:193 +msgid "Mail" +msgstr "Correo" + +#: ../../Zotlabs/Lib/Apps.php:227 ../../include/nav.php:96 +msgid "Chat" +msgstr "Chat" + +#: ../../Zotlabs/Lib/Apps.php:229 +msgid "Probe" +msgstr "Probar" + +#: ../../Zotlabs/Lib/Apps.php:230 +msgid "Suggest" +msgstr "Sugerir" + +#: ../../Zotlabs/Lib/Apps.php:231 +msgid "Random Channel" +msgstr "Canal aleatorio" + +#: ../../Zotlabs/Lib/Apps.php:232 +msgid "Invite" +msgstr "Invitar" + +#: ../../Zotlabs/Lib/Apps.php:233 ../../include/widgets.php:1386 +msgid "Features" +msgstr "Funcionalidades" + +#: ../../Zotlabs/Lib/Apps.php:235 +msgid "Post" +msgstr "Publicación" + +#: ../../Zotlabs/Lib/Apps.php:335 +msgid "Purchase" +msgstr "Comprar" + #: ../../Zotlabs/Lib/Chatroom.php:27 msgid "Missing room name" msgstr "Sala de chat sin nombre" @@ -6578,19 +6374,19 @@ msgstr "Sala no encontrada." msgid "Room is full" msgstr "La sala está llena." -#: ../../Zotlabs/Lib/Enotify.php:60 ../../include/network.php:1882 +#: ../../Zotlabs/Lib/Enotify.php:60 ../../include/network.php:1823 msgid "$Projectname Notification" msgstr "Notificación de $Projectname" -#: ../../Zotlabs/Lib/Enotify.php:61 ../../include/network.php:1883 +#: ../../Zotlabs/Lib/Enotify.php:61 ../../include/network.php:1824 msgid "$projectname" msgstr "$projectname" -#: ../../Zotlabs/Lib/Enotify.php:63 ../../include/network.php:1885 +#: ../../Zotlabs/Lib/Enotify.php:63 ../../include/network.php:1826 msgid "Thank You," msgstr "Gracias," -#: ../../Zotlabs/Lib/Enotify.php:65 ../../include/network.php:1887 +#: ../../Zotlabs/Lib/Enotify.php:65 ../../include/network.php:1828 #, php-format msgid "%s Administrator" msgstr "%s Administrador" @@ -6783,97 +6579,11 @@ msgstr "ha creado una nueva entrada" msgid "commented on %s's post" msgstr "ha comentado la entrada de %s" -#: ../../Zotlabs/Lib/Apps.php:205 -msgid "Site Admin" -msgstr "Administrador del sitio" - -#: ../../Zotlabs/Lib/Apps.php:206 -msgid "Bug Report" -msgstr "Informe de errores" - -#: ../../Zotlabs/Lib/Apps.php:207 -msgid "View Bookmarks" -msgstr "Ver los marcadores" - -#: ../../Zotlabs/Lib/Apps.php:208 -msgid "My Chatrooms" -msgstr "Mis salas de chat" - -#: ../../Zotlabs/Lib/Apps.php:210 -msgid "Firefox Share" -msgstr "Servicio de compartición de Firefox" - -#: ../../Zotlabs/Lib/Apps.php:211 -msgid "Remote Diagnostics" -msgstr "Diagnóstico remoto" - -#: ../../Zotlabs/Lib/Apps.php:212 ../../include/features.php:90 -msgid "Suggest Channels" -msgstr "Sugerir canales" - -#: ../../Zotlabs/Lib/Apps.php:213 ../../include/nav.php:112 -#: ../../boot.php:1704 -msgid "Login" -msgstr "Iniciar sesión" - -#: ../../Zotlabs/Lib/Apps.php:215 ../../include/nav.php:181 -msgid "Grid" -msgstr "Red" - -#: ../../Zotlabs/Lib/Apps.php:220 ../../include/nav.php:184 -msgid "Channel Home" -msgstr "Mi canal" - -#: ../../Zotlabs/Lib/Apps.php:223 ../../include/nav.php:203 -#: ../../include/conversation.php:1664 ../../include/conversation.php:1667 -msgid "Events" -msgstr "Eventos" - -#: ../../Zotlabs/Lib/Apps.php:224 ../../include/nav.php:169 -msgid "Directory" -msgstr "Directorio" - -#: ../../Zotlabs/Lib/Apps.php:226 ../../include/nav.php:195 -msgid "Mail" -msgstr "Correo" - -#: ../../Zotlabs/Lib/Apps.php:229 ../../include/nav.php:96 -msgid "Chat" -msgstr "Chat" - -#: ../../Zotlabs/Lib/Apps.php:231 -msgid "Probe" -msgstr "Probar" - -#: ../../Zotlabs/Lib/Apps.php:232 -msgid "Suggest" -msgstr "Sugerir" - -#: ../../Zotlabs/Lib/Apps.php:233 -msgid "Random Channel" -msgstr "Canal aleatorio" - -#: ../../Zotlabs/Lib/Apps.php:234 -msgid "Invite" -msgstr "Invitar" - -#: ../../Zotlabs/Lib/Apps.php:235 ../../include/widgets.php:1480 -msgid "Features" -msgstr "Funcionalidades" - -#: ../../Zotlabs/Lib/Apps.php:237 -msgid "Post" -msgstr "Publicación" - -#: ../../Zotlabs/Lib/Apps.php:339 -msgid "Purchase" -msgstr "Comprar" - -#: ../../Zotlabs/Lib/ThreadItem.php:95 ../../include/conversation.php:667 +#: ../../Zotlabs/Lib/ThreadItem.php:95 ../../include/conversation.php:664 msgid "Private Message" msgstr "Mensaje Privado" -#: ../../Zotlabs/Lib/ThreadItem.php:132 ../../include/conversation.php:659 +#: ../../Zotlabs/Lib/ThreadItem.php:132 ../../include/conversation.php:656 msgid "Select" msgstr "Seleccionar" @@ -6921,11 +6631,11 @@ msgstr "Activar o desactivar el estado de entrada preferida" msgid "starred" msgstr "preferidas" -#: ../../Zotlabs/Lib/ThreadItem.php:234 ../../include/conversation.php:674 +#: ../../Zotlabs/Lib/ThreadItem.php:234 ../../include/conversation.php:671 msgid "Message signature validated" msgstr "Firma de mensaje validada" -#: ../../Zotlabs/Lib/ThreadItem.php:235 ../../include/conversation.php:675 +#: ../../Zotlabs/Lib/ThreadItem.php:235 ../../include/conversation.php:672 msgid "Message signature incorrect" msgstr "Firma de mensaje incorrecta" @@ -6981,17 +6691,17 @@ msgstr "De página del perfil a página del perfil (de \"muro\" a \"muro\")" msgid "via Wall-To-Wall:" msgstr "Mediante el procedimiento página del perfil a página del perfil (de \"muro\" a \"muro\")" -#: ../../Zotlabs/Lib/ThreadItem.php:341 ../../include/conversation.php:722 +#: ../../Zotlabs/Lib/ThreadItem.php:341 ../../include/conversation.php:719 #, php-format msgid "from %s" msgstr "desde %s" -#: ../../Zotlabs/Lib/ThreadItem.php:344 ../../include/conversation.php:725 +#: ../../Zotlabs/Lib/ThreadItem.php:344 ../../include/conversation.php:722 #, php-format msgid "last edited: %s" msgstr "último cambio: %s" -#: ../../Zotlabs/Lib/ThreadItem.php:345 ../../include/conversation.php:726 +#: ../../Zotlabs/Lib/ThreadItem.php:345 ../../include/conversation.php:723 #, php-format msgid "Expires: %s" msgstr "Caduca: %s" @@ -7009,27 +6719,26 @@ msgid "Mark all seen" msgstr "Marcar todo como visto" #: ../../Zotlabs/Lib/ThreadItem.php:421 ../../include/js_strings.php:7 -#, php-format -msgid "%s show all" -msgstr "" +msgid "[+] show all" +msgstr "[+] mostrar todo:" -#: ../../Zotlabs/Lib/ThreadItem.php:711 ../../include/conversation.php:1226 +#: ../../Zotlabs/Lib/ThreadItem.php:711 ../../include/conversation.php:1215 msgid "Bold" msgstr "Negrita" -#: ../../Zotlabs/Lib/ThreadItem.php:712 ../../include/conversation.php:1227 +#: ../../Zotlabs/Lib/ThreadItem.php:712 ../../include/conversation.php:1216 msgid "Italic" msgstr "Itálico " -#: ../../Zotlabs/Lib/ThreadItem.php:713 ../../include/conversation.php:1228 +#: ../../Zotlabs/Lib/ThreadItem.php:713 ../../include/conversation.php:1217 msgid "Underline" msgstr "Subrayar" -#: ../../Zotlabs/Lib/ThreadItem.php:714 ../../include/conversation.php:1229 +#: ../../Zotlabs/Lib/ThreadItem.php:714 ../../include/conversation.php:1218 msgid "Quote" msgstr "Citar" -#: ../../Zotlabs/Lib/ThreadItem.php:715 ../../include/conversation.php:1230 +#: ../../Zotlabs/Lib/ThreadItem.php:715 ../../include/conversation.php:1219 msgid "Code" msgstr "Código" @@ -7045,74 +6754,11 @@ msgstr "Insertar enlace" msgid "Video" msgstr "Vídeo" -#: ../../Zotlabs/Lib/PermissionDescription.php:31 -#: ../../include/acl_selectors.php:230 -msgid "Visible to your default audience" -msgstr "Visible para su público predeterminado." - -#: ../../Zotlabs/Lib/PermissionDescription.php:106 -#: ../../include/acl_selectors.php:266 -msgid "Only me" -msgstr "Sólo yo" - -#: ../../Zotlabs/Lib/PermissionDescription.php:107 -msgid "Public" -msgstr "Público" - -#: ../../Zotlabs/Lib/PermissionDescription.php:108 -msgid "Anybody in the $Projectname network" -msgstr "Cualquiera en la red $Projectname" - -#: ../../Zotlabs/Lib/PermissionDescription.php:109 -#, php-format -msgid "Any account on %s" -msgstr "Cualquier cuenta en %s" - -#: ../../Zotlabs/Lib/PermissionDescription.php:110 -msgid "Any of my connections" -msgstr "Cualquiera de mis conexiones" - -#: ../../Zotlabs/Lib/PermissionDescription.php:111 -msgid "Only connections I specifically allow" -msgstr "Sólo las conexiones que yo permita de forma explícita" - -#: ../../Zotlabs/Lib/PermissionDescription.php:112 -msgid "Anybody authenticated (could include visitors from other networks)" -msgstr "Cualquiera que esté autenticado (podría incluir a los visitantes de otras redes)" - -#: ../../Zotlabs/Lib/PermissionDescription.php:113 -msgid "Any connections including those who haven't yet been approved" -msgstr "Cualquier conexión incluyendo aquellas que aún no han sido aprobadas" - -#: ../../Zotlabs/Lib/PermissionDescription.php:152 -msgid "" -"This is your default setting for the audience of your normal stream, and " -"posts." -msgstr "Esta es la configuración predeterminada para su flujo (stream) habitual de publicaciones." - -#: ../../Zotlabs/Lib/PermissionDescription.php:153 -msgid "" -"This is your default setting for who can view your default channel profile" -msgstr "Esta es su configuración por defecto para establecer quién puede ver su perfil del canal predeterminado" - -#: ../../Zotlabs/Lib/PermissionDescription.php:154 -msgid "This is your default setting for who can view your connections" -msgstr "Este es su ajuste predeterminado para establecer quién puede ver sus conexiones" - -#: ../../Zotlabs/Lib/PermissionDescription.php:155 -msgid "" -"This is your default setting for who can view your file storage and photos" -msgstr "Este es su ajuste predeterminado para establecer quién puede ver su repositorio de ficheros y sus fotos" - -#: ../../Zotlabs/Lib/PermissionDescription.php:156 -msgid "This is your default setting for the audience of your webpages" -msgstr "Este es el ajuste predeterminado para establecer la audiencia de sus páginas web" - #: ../../include/Import/import_diaspora.php:16 msgid "No username found in import file." msgstr "No se ha encontrado el nombre de usuario en el fichero importado." -#: ../../include/Import/import_diaspora.php:41 ../../include/import.php:51 +#: ../../include/Import/import_diaspora.php:41 ../../include/import.php:50 msgid "Unable to create a unique channel address. Import failed." msgstr "No se ha podido crear una dirección de canal única. Ha fallado la importación." @@ -7121,291 +6767,6 @@ msgstr "No se ha podido crear una dirección de canal única. Ha fallado la impo msgid "Cannot locate DNS info for database server '%s'" msgstr "No se ha podido localizar información de DNS para el servidor de base de datos “%s”" -#: ../../include/photos.php:114 -#, php-format -msgid "Image exceeds website size limit of %lu bytes" -msgstr "La imagen excede el límite de %lu bytes del sitio" - -#: ../../include/photos.php:121 -msgid "Image file is empty." -msgstr "El fichero de imagen está vacío. " - -#: ../../include/photos.php:259 -msgid "Photo storage failed." -msgstr "La foto no ha podido ser guardada." - -#: ../../include/photos.php:299 -msgid "a new photo" -msgstr "una nueva foto" - -#: ../../include/photos.php:303 -#, php-format -msgctxt "photo_upload" -msgid "%1$s posted %2$s to %3$s" -msgstr "%1$s ha publicado %2$s en %3$s" - -#: ../../include/photos.php:506 ../../include/conversation.php:1650 -msgid "Photo Albums" -msgstr "Álbumes de fotos" - -#: ../../include/photos.php:510 -msgid "Upload New Photos" -msgstr "Subir nuevas fotos" - -#: ../../include/nav.php:82 ../../include/nav.php:115 ../../boot.php:1703 -msgid "Logout" -msgstr "Finalizar sesión" - -#: ../../include/nav.php:82 ../../include/nav.php:115 -msgid "End this session" -msgstr "Finalizar esta sesión" - -#: ../../include/nav.php:85 ../../include/nav.php:146 -msgid "Home" -msgstr "Inicio" - -#: ../../include/nav.php:85 -msgid "Your posts and conversations" -msgstr "Sus publicaciones y conversaciones" - -#: ../../include/nav.php:86 -msgid "Your profile page" -msgstr "Su página del perfil" - -#: ../../include/nav.php:88 -msgid "Manage/Edit profiles" -msgstr "Administrar/editar perfiles" - -#: ../../include/nav.php:90 ../../include/channel.php:980 -msgid "Edit Profile" -msgstr "Editar el perfil" - -#: ../../include/nav.php:90 -msgid "Edit your profile" -msgstr "Editar su perfil" - -#: ../../include/nav.php:92 -msgid "Your photos" -msgstr "Sus fotos" - -#: ../../include/nav.php:93 -msgid "Your files" -msgstr "Sus ficheros" - -#: ../../include/nav.php:96 -msgid "Your chatrooms" -msgstr "Sus salas de chat" - -#: ../../include/nav.php:102 ../../include/conversation.php:1690 -msgid "Bookmarks" -msgstr "Marcadores" - -#: ../../include/nav.php:102 -msgid "Your bookmarks" -msgstr "Sus marcadores" - -#: ../../include/nav.php:106 -msgid "Your webpages" -msgstr "Sus páginas web" - -#: ../../include/nav.php:108 -msgid "Your wiki" -msgstr "" - -#: ../../include/nav.php:112 -msgid "Sign in" -msgstr "Acceder" - -#: ../../include/nav.php:129 -#, php-format -msgid "%s - click to logout" -msgstr "%s - pulsar para finalizar sesión" - -#: ../../include/nav.php:132 -msgid "Remote authentication" -msgstr "Acceder desde su servidor" - -#: ../../include/nav.php:132 -msgid "Click to authenticate to your home hub" -msgstr "Pulsar para identificarse en su servidor de inicio" - -#: ../../include/nav.php:146 -msgid "Home Page" -msgstr "Página de inicio" - -#: ../../include/nav.php:149 -msgid "Create an account" -msgstr "Crear una cuenta" - -#: ../../include/nav.php:161 -msgid "Help and documentation" -msgstr "Ayuda y documentación" - -#: ../../include/nav.php:165 -msgid "Applications, utilities, links, games" -msgstr "Aplicaciones, utilidades, enlaces, juegos" - -#: ../../include/nav.php:167 -msgid "Search site @name, #tag, ?docs, content" -msgstr "Buscar en el sitio por @nombre, #etiqueta, ?ayuda o contenido" - -#: ../../include/nav.php:169 -msgid "Channel Directory" -msgstr "Directorio de canales" - -#: ../../include/nav.php:181 -msgid "Your grid" -msgstr "Mi red" - -#: ../../include/nav.php:182 -msgid "Mark all grid notifications seen" -msgstr "Marcar todas las notificaciones de la red como vistas" - -#: ../../include/nav.php:184 -msgid "Channel home" -msgstr "Mi canal" - -#: ../../include/nav.php:185 -msgid "Mark all channel notifications seen" -msgstr "Marcar todas las notificaciones del canal como leídas" - -#: ../../include/nav.php:191 -msgid "Notices" -msgstr "Avisos" - -#: ../../include/nav.php:191 -msgid "Notifications" -msgstr "Notificaciones" - -#: ../../include/nav.php:192 -msgid "See all notifications" -msgstr "Ver todas las notificaciones" - -#: ../../include/nav.php:195 -msgid "Private mail" -msgstr "Correo privado" - -#: ../../include/nav.php:196 -msgid "See all private messages" -msgstr "Ver todas los mensajes privados" - -#: ../../include/nav.php:197 -msgid "Mark all private messages seen" -msgstr "Marcar todos los mensajes privados como leídos" - -#: ../../include/nav.php:198 ../../include/widgets.php:667 -msgid "Inbox" -msgstr "Bandeja de entrada" - -#: ../../include/nav.php:199 ../../include/widgets.php:672 -msgid "Outbox" -msgstr "Bandeja de salida" - -#: ../../include/nav.php:200 ../../include/widgets.php:677 -msgid "New Message" -msgstr "Nuevo mensaje" - -#: ../../include/nav.php:203 -msgid "Event Calendar" -msgstr "Calendario de eventos" - -#: ../../include/nav.php:204 -msgid "See all events" -msgstr "Ver todos los eventos" - -#: ../../include/nav.php:205 -msgid "Mark all events seen" -msgstr "Marcar todos los eventos como leidos" - -#: ../../include/nav.php:208 -msgid "Manage Your Channels" -msgstr "Gestionar sus canales" - -#: ../../include/nav.php:210 -msgid "Account/Channel Settings" -msgstr "Ajustes de cuenta/canales" - -#: ../../include/nav.php:218 ../../include/widgets.php:1510 -msgid "Admin" -msgstr "Administrador" - -#: ../../include/nav.php:218 -msgid "Site Setup and Configuration" -msgstr "Ajustes y configuración del sitio" - -#: ../../include/nav.php:249 ../../include/conversation.php:854 -msgid "Loading..." -msgstr "Cargando..." - -#: ../../include/nav.php:254 -msgid "@name, #tag, ?doc, content" -msgstr "@nombre, #etiqueta, ?ayuda, contenido" - -#: ../../include/nav.php:255 -msgid "Please wait..." -msgstr "Espere por favor…" - -#: ../../include/network.php:704 -msgid "view full size" -msgstr "Ver en el tamaño original" - -#: ../../include/network.php:1930 ../../include/account.php:317 -#: ../../include/account.php:344 ../../include/account.php:404 -msgid "Administrator" -msgstr "Administrador" - -#: ../../include/network.php:1944 -msgid "No Subject" -msgstr "Sin asunto" - -#: ../../include/network.php:2198 ../../include/network.php:2199 -msgid "Friendica" -msgstr "Friendica" - -#: ../../include/network.php:2200 -msgid "OStatus" -msgstr "OStatus" - -#: ../../include/network.php:2201 -msgid "GNU-Social" -msgstr "GNU Social" - -#: ../../include/network.php:2202 -msgid "RSS/Atom" -msgstr "RSS/Atom" - -#: ../../include/network.php:2204 -msgid "Diaspora" -msgstr "Diaspora" - -#: ../../include/network.php:2205 -msgid "Facebook" -msgstr "Facebook" - -#: ../../include/network.php:2206 -msgid "Zot" -msgstr "Zot" - -#: ../../include/network.php:2207 -msgid "LinkedIn" -msgstr "LinkedIn" - -#: ../../include/network.php:2208 -msgid "XMPP/IM" -msgstr "XMPP/IM" - -#: ../../include/network.php:2209 -msgid "MySpace" -msgstr "MySpace" - -#: ../../include/page_widgets.php:7 -msgid "New Page" -msgstr "Nueva página" - -#: ../../include/page_widgets.php:46 -msgid "Title" -msgstr "Título" - #: ../../include/taxonomy.php:188 ../../include/taxonomy.php:270 #: ../../include/widgets.php:46 ../../include/widgets.php:429 #: ../../include/contact_widgets.php:91 @@ -7444,159 +6805,952 @@ msgstr "gusta de" msgid "dislikes" msgstr "no gusta de" -#: ../../include/channel.php:33 -msgid "Unable to obtain identity information from database" -msgstr "No ha sido posible obtener información sobre la identidad desde la base de datos" +#: ../../include/event.php:22 ../../include/event.php:69 +#: ../../include/bb2diaspora.php:485 +msgid "l F d, Y \\@ g:i A" +msgstr "l d de F, Y \\@ G:i" -#: ../../include/channel.php:67 -msgid "Empty name" -msgstr "Nombre vacío" +#: ../../include/event.php:30 ../../include/event.php:73 +#: ../../include/bb2diaspora.php:491 +msgid "Starts:" +msgstr "Comienza:" -#: ../../include/channel.php:70 -msgid "Name too long" -msgstr "Nombre demasiado largo" +#: ../../include/event.php:40 ../../include/event.php:77 +#: ../../include/bb2diaspora.php:499 +msgid "Finishes:" +msgstr "Finaliza:" -#: ../../include/channel.php:181 -msgid "No account identifier" -msgstr "Ningún identificador de la cuenta" +#: ../../include/event.php:812 +msgid "This event has been added to your calendar." +msgstr "Este evento ha sido añadido a su calendario." -#: ../../include/channel.php:193 -msgid "Nickname is required." -msgstr "Se requiere un sobrenombre (alias)." +#: ../../include/event.php:1012 +msgid "Not specified" +msgstr "Sin especificar" -#: ../../include/channel.php:207 -msgid "Reserved nickname. Please choose another." -msgstr "Sobrenombre en uso. Por favor, elija otro." +#: ../../include/event.php:1013 +msgid "Needs Action" +msgstr "Necesita de una intervención" -#: ../../include/channel.php:212 +#: ../../include/event.php:1014 +msgid "Completed" +msgstr "Completado/a" + +#: ../../include/event.php:1015 +msgid "In Process" +msgstr "En proceso" + +#: ../../include/event.php:1016 +msgid "Cancelled" +msgstr "Cancelado/a" + +#: ../../include/import.php:29 msgid "" -"Nickname has unsupported characters or is already being used on this site." -msgstr "El alias contiene caracteres no admitidos o está ya en uso por otros miembros de este sitio." +"Cannot create a duplicate channel identifier on this system. Import failed." +msgstr "No se ha podido crear un canal con un identificador que ya existe en este sistema. La importación ha fallado." -#: ../../include/channel.php:272 -msgid "Unable to retrieve created identity" -msgstr "No ha sido posible recuperar la identidad creada" +#: ../../include/import.php:76 +msgid "Channel clone failed. Import failed." +msgstr "La clonación del canal no ha salido bien. La importación ha fallado." -#: ../../include/channel.php:341 -msgid "Default Profile" -msgstr "Perfil principal" +#: ../../include/items.php:892 ../../include/items.php:937 +msgid "(Unknown)" +msgstr "(Desconocido)" -#: ../../include/channel.php:830 -msgid "Requested channel is not available." -msgstr "El canal solicitado no está disponible." +#: ../../include/items.php:1136 +msgid "Visible to anybody on the internet." +msgstr "Visible para cualquiera en internet." -#: ../../include/channel.php:977 -msgid "Create New Profile" -msgstr "Crear un nuevo perfil" +#: ../../include/items.php:1138 +msgid "Visible to you only." +msgstr "Visible sólo para usted." -#: ../../include/channel.php:997 -msgid "Visible to everybody" -msgstr "Visible para todos" +#: ../../include/items.php:1140 +msgid "Visible to anybody in this network." +msgstr "Visible para cualquiera en esta red." -#: ../../include/channel.php:1070 ../../include/channel.php:1182 -msgid "Gender:" -msgstr "Género:" +#: ../../include/items.php:1142 +msgid "Visible to anybody authenticated." +msgstr "Visible para cualquiera que esté autenticado." -#: ../../include/channel.php:1071 ../../include/channel.php:1226 -msgid "Status:" -msgstr "Estado:" - -#: ../../include/channel.php:1072 ../../include/channel.php:1237 -msgid "Homepage:" -msgstr "Página personal:" - -#: ../../include/channel.php:1073 -msgid "Online Now" -msgstr "Ahora en línea" - -#: ../../include/channel.php:1187 -msgid "Like this channel" -msgstr "Me gusta este canal" - -#: ../../include/channel.php:1211 -msgid "j F, Y" -msgstr "j F Y" - -#: ../../include/channel.php:1212 -msgid "j F" -msgstr "j F" - -#: ../../include/channel.php:1219 -msgid "Birthday:" -msgstr "Cumpleaños:" - -#: ../../include/channel.php:1232 +#: ../../include/items.php:1144 #, php-format -msgid "for %1$d %2$s" -msgstr "por %1$d %2$s" +msgid "Visible to anybody on %s." +msgstr "Visible para cualquiera en %s." -#: ../../include/channel.php:1235 -msgid "Sexual Preference:" -msgstr "Orientación sexual:" +#: ../../include/items.php:1146 +msgid "Visible to all connections." +msgstr "Visible para todas las conexiones." -#: ../../include/channel.php:1241 -msgid "Tags:" -msgstr "Etiquetas:" +#: ../../include/items.php:1148 +msgid "Visible to approved connections." +msgstr "Visible para las conexiones permitidas." -#: ../../include/channel.php:1243 -msgid "Political Views:" -msgstr "Posición política:" +#: ../../include/items.php:1150 +msgid "Visible to specific connections." +msgstr "Visible para conexiones específicas." -#: ../../include/channel.php:1245 -msgid "Religion:" -msgstr "Religión:" +#: ../../include/items.php:3909 +msgid "Privacy group is empty." +msgstr "El grupo de canales está vacío." -#: ../../include/channel.php:1249 -msgid "Hobbies/Interests:" -msgstr "Aficciones o intereses:" +#: ../../include/items.php:3916 +#, php-format +msgid "Privacy group: %s" +msgstr "Grupo de canales: %s" -#: ../../include/channel.php:1251 -msgid "Likes:" -msgstr "Me gusta:" +#: ../../include/items.php:3928 +msgid "Connection not found." +msgstr "Conexión no encontrada" -#: ../../include/channel.php:1253 -msgid "Dislikes:" -msgstr "No me gusta:" +#: ../../include/items.php:4277 +msgid "profile photo" +msgstr "foto del perfil" -#: ../../include/channel.php:1255 -msgid "Contact information and Social Networks:" -msgstr "Información de contacto y redes sociales:" +#: ../../include/message.php:20 +msgid "No recipient provided." +msgstr "No se ha especificado ningún destinatario." -#: ../../include/channel.php:1257 -msgid "My other channels:" -msgstr "Mis otros canales:" +#: ../../include/message.php:25 +msgid "[no subject]" +msgstr "[sin asunto]" -#: ../../include/channel.php:1259 -msgid "Musical interests:" -msgstr "Preferencias musicales:" +#: ../../include/message.php:45 +msgid "Unable to determine sender." +msgstr "No ha sido posible determinar el remitente. " -#: ../../include/channel.php:1261 -msgid "Books, literature:" -msgstr "Libros, literatura:" +#: ../../include/message.php:222 +msgid "Stored post could not be verified." +msgstr "No se han podido verificar las publicaciones guardadas." -#: ../../include/channel.php:1263 -msgid "Television:" -msgstr "Televisión:" +#: ../../include/text.php:428 +msgid "prev" +msgstr "anterior" -#: ../../include/channel.php:1265 -msgid "Film/dance/culture/entertainment:" -msgstr "Cine, danza, cultura, entretenimiento:" +#: ../../include/text.php:430 +msgid "first" +msgstr "primera" -#: ../../include/channel.php:1267 -msgid "Love/Romance:" -msgstr "Vida sentimental o amorosa:" +#: ../../include/text.php:459 +msgid "last" +msgstr "última" -#: ../../include/channel.php:1269 -msgid "Work/employment:" -msgstr "Trabajo:" +#: ../../include/text.php:462 +msgid "next" +msgstr "próxima" -#: ../../include/channel.php:1271 -msgid "School/education:" -msgstr "Estudios:" +#: ../../include/text.php:472 +msgid "older" +msgstr "más antiguas" -#: ../../include/channel.php:1292 -msgid "Like this thing" -msgstr "Me gusta esto" +#: ../../include/text.php:474 +msgid "newer" +msgstr "más recientes" + +#: ../../include/text.php:863 +msgid "No connections" +msgstr "Sin conexiones" + +#: ../../include/text.php:888 +#, php-format +msgid "View all %s connections" +msgstr "Ver todas las %s conexiones" + +#: ../../include/text.php:1033 ../../include/text.php:1038 +msgid "poke" +msgstr "un toque" + +#: ../../include/text.php:1033 ../../include/text.php:1038 +#: ../../include/conversation.php:243 +msgid "poked" +msgstr "ha dado un toque a" + +#: ../../include/text.php:1039 +msgid "ping" +msgstr "un \"ping\"" + +#: ../../include/text.php:1039 +msgid "pinged" +msgstr "ha enviado un \"ping\" a" + +#: ../../include/text.php:1040 +msgid "prod" +msgstr "una incitación " + +#: ../../include/text.php:1040 +msgid "prodded" +msgstr "ha incitado a " + +#: ../../include/text.php:1041 +msgid "slap" +msgstr "una bofetada " + +#: ../../include/text.php:1041 +msgid "slapped" +msgstr "ha abofeteado a " + +#: ../../include/text.php:1042 +msgid "finger" +msgstr "un \"finger\" " + +#: ../../include/text.php:1042 +msgid "fingered" +msgstr "envió un \"finger\" a" + +#: ../../include/text.php:1043 +msgid "rebuff" +msgstr "un reproche" + +#: ../../include/text.php:1043 +msgid "rebuffed" +msgstr "ha hecho un reproche a " + +#: ../../include/text.php:1055 +msgid "happy" +msgstr "feliz " + +#: ../../include/text.php:1056 +msgid "sad" +msgstr "triste " + +#: ../../include/text.php:1057 +msgid "mellow" +msgstr "tranquilo/a" + +#: ../../include/text.php:1058 +msgid "tired" +msgstr "cansado/a " + +#: ../../include/text.php:1059 +msgid "perky" +msgstr "vivaz" + +#: ../../include/text.php:1060 +msgid "angry" +msgstr "enfadado/a" + +#: ../../include/text.php:1061 +msgid "stupefied" +msgstr "asombrado/a" + +#: ../../include/text.php:1062 +msgid "puzzled" +msgstr "perplejo/a" + +#: ../../include/text.php:1063 +msgid "interested" +msgstr "interesado/a" + +#: ../../include/text.php:1064 +msgid "bitter" +msgstr "amargado/a" + +#: ../../include/text.php:1065 +msgid "cheerful" +msgstr "alegre" + +#: ../../include/text.php:1066 +msgid "alive" +msgstr "animado/a" + +#: ../../include/text.php:1067 +msgid "annoyed" +msgstr "molesto/a" + +#: ../../include/text.php:1068 +msgid "anxious" +msgstr "ansioso/a" + +#: ../../include/text.php:1069 +msgid "cranky" +msgstr "de mal humor" + +#: ../../include/text.php:1070 +msgid "disturbed" +msgstr "perturbado/a" + +#: ../../include/text.php:1071 +msgid "frustrated" +msgstr "frustrado/a" + +#: ../../include/text.php:1072 +msgid "depressed" +msgstr "deprimido/a" + +#: ../../include/text.php:1073 +msgid "motivated" +msgstr "motivado/a" + +#: ../../include/text.php:1074 +msgid "relaxed" +msgstr "relajado/a" + +#: ../../include/text.php:1075 +msgid "surprised" +msgstr "sorprendido/a" + +#: ../../include/text.php:1257 ../../include/js_strings.php:70 +msgid "Monday" +msgstr "lunes" + +#: ../../include/text.php:1257 ../../include/js_strings.php:71 +msgid "Tuesday" +msgstr "martes" + +#: ../../include/text.php:1257 ../../include/js_strings.php:72 +msgid "Wednesday" +msgstr "miércoles" + +#: ../../include/text.php:1257 ../../include/js_strings.php:73 +msgid "Thursday" +msgstr "jueves" + +#: ../../include/text.php:1257 ../../include/js_strings.php:74 +msgid "Friday" +msgstr "viernes" + +#: ../../include/text.php:1257 ../../include/js_strings.php:75 +msgid "Saturday" +msgstr "sábado" + +#: ../../include/text.php:1257 ../../include/js_strings.php:69 +msgid "Sunday" +msgstr "domingo" + +#: ../../include/text.php:1261 ../../include/js_strings.php:45 +msgid "January" +msgstr "enero" + +#: ../../include/text.php:1261 ../../include/js_strings.php:46 +msgid "February" +msgstr "febrero" + +#: ../../include/text.php:1261 ../../include/js_strings.php:47 +msgid "March" +msgstr "marzo" + +#: ../../include/text.php:1261 ../../include/js_strings.php:48 +msgid "April" +msgstr "abril" + +#: ../../include/text.php:1261 +msgid "May" +msgstr "mayo" + +#: ../../include/text.php:1261 ../../include/js_strings.php:50 +msgid "June" +msgstr "junio" + +#: ../../include/text.php:1261 ../../include/js_strings.php:51 +msgid "July" +msgstr "julio" + +#: ../../include/text.php:1261 ../../include/js_strings.php:52 +msgid "August" +msgstr "agosto" + +#: ../../include/text.php:1261 ../../include/js_strings.php:53 +msgid "September" +msgstr "septiembre" + +#: ../../include/text.php:1261 ../../include/js_strings.php:54 +msgid "October" +msgstr "octubre" + +#: ../../include/text.php:1261 ../../include/js_strings.php:55 +msgid "November" +msgstr "noviembre" + +#: ../../include/text.php:1261 ../../include/js_strings.php:56 +msgid "December" +msgstr "diciembre" + +#: ../../include/text.php:1338 ../../include/text.php:1342 +msgid "Unknown Attachment" +msgstr "Adjunto no reconocido" + +#: ../../include/text.php:1344 +msgid "unknown" +msgstr "desconocido" + +#: ../../include/text.php:1380 +msgid "remove category" +msgstr "eliminar categoría" + +#: ../../include/text.php:1457 +msgid "remove from file" +msgstr "eliminar del fichero" + +#: ../../include/text.php:1753 ../../include/text.php:1824 +msgid "default" +msgstr "por defecto" + +#: ../../include/text.php:1761 +msgid "Page layout" +msgstr "Plantilla de la página" + +#: ../../include/text.php:1761 +msgid "You can create your own with the layouts tool" +msgstr "Puede crear su propia disposición gráfica con la herramienta de plantillas" + +#: ../../include/text.php:1803 +msgid "Page content type" +msgstr "Tipo de contenido de la página" + +#: ../../include/text.php:1836 +msgid "Select an alternate language" +msgstr "Seleccionar un idioma alternativo" + +#: ../../include/text.php:1953 +msgid "activity" +msgstr "la actividad" + +#: ../../include/text.php:2262 +msgid "Design Tools" +msgstr "Herramientas de diseño web" + +#: ../../include/text.php:2268 +msgid "Pages" +msgstr "Páginas" + +#: ../../include/widgets.php:103 +msgid "System" +msgstr "Sistema" + +#: ../../include/widgets.php:106 +msgid "New App" +msgstr "Nueva aplicación (app)" + +#: ../../include/widgets.php:154 +msgid "Suggestions" +msgstr "Sugerencias" + +#: ../../include/widgets.php:155 +msgid "See more..." +msgstr "Ver más..." + +#: ../../include/widgets.php:175 +#, php-format +msgid "You have %1$.0f of %2$.0f allowed connections." +msgstr "Tiene %1$.0f de %2$.0f conexiones permitidas." + +#: ../../include/widgets.php:181 +msgid "Add New Connection" +msgstr "Añadir nueva conexión" + +#: ../../include/widgets.php:182 +msgid "Enter channel address" +msgstr "Dirección del canal" + +#: ../../include/widgets.php:183 +msgid "Examples: bob@example.com, https://example.com/barbara" +msgstr "Ejemplos: manuel@ejemplo.com, https://ejemplo.com/carmen" + +#: ../../include/widgets.php:199 +msgid "Notes" +msgstr "Notas" + +#: ../../include/widgets.php:273 +msgid "Remove term" +msgstr "Eliminar término" + +#: ../../include/widgets.php:281 ../../include/features.php:84 +msgid "Saved Searches" +msgstr "Búsquedas guardadas" + +#: ../../include/widgets.php:282 ../../include/group.php:316 +msgid "add" +msgstr "añadir" + +#: ../../include/widgets.php:310 ../../include/contact_widgets.php:53 +#: ../../include/features.php:98 +msgid "Saved Folders" +msgstr "Carpetas guardadas" + +#: ../../include/widgets.php:313 ../../include/widgets.php:432 +#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:94 +msgid "Everything" +msgstr "Todo" + +#: ../../include/widgets.php:354 +msgid "Archives" +msgstr "Hemeroteca" + +#: ../../include/widgets.php:516 +msgid "Refresh" +msgstr "Recargar" + +#: ../../include/widgets.php:556 +msgid "Account settings" +msgstr "Configuración de la cuenta" + +#: ../../include/widgets.php:562 +msgid "Channel settings" +msgstr "Configuración del canal" + +#: ../../include/widgets.php:571 +msgid "Additional features" +msgstr "Funcionalidades" + +#: ../../include/widgets.php:578 +msgid "Feature/Addon settings" +msgstr "Complementos" + +#: ../../include/widgets.php:584 +msgid "Display settings" +msgstr "Ajustes de visualización" + +#: ../../include/widgets.php:591 +msgid "Manage locations" +msgstr "Gestión de ubicaciones (clones) del canal" + +#: ../../include/widgets.php:600 +msgid "Export channel" +msgstr "Exportar canal" + +#: ../../include/widgets.php:607 +msgid "Connected apps" +msgstr "Aplicaciones (apps) conectadas" + +#: ../../include/widgets.php:622 +msgid "Premium Channel Settings" +msgstr "Configuración del canal premium" + +#: ../../include/widgets.php:651 +msgid "Private Mail Menu" +msgstr "Menú de correo privado" + +#: ../../include/widgets.php:653 +msgid "Combined View" +msgstr "Vista combinada" + +#: ../../include/widgets.php:658 ../../include/nav.php:196 +msgid "Inbox" +msgstr "Bandeja de entrada" + +#: ../../include/widgets.php:663 ../../include/nav.php:197 +msgid "Outbox" +msgstr "Bandeja de salida" + +#: ../../include/widgets.php:668 ../../include/nav.php:198 +msgid "New Message" +msgstr "Nuevo mensaje" + +#: ../../include/widgets.php:685 ../../include/widgets.php:697 +msgid "Conversations" +msgstr "Conversaciones" + +#: ../../include/widgets.php:689 +msgid "Received Messages" +msgstr "Mensajes recibidos" + +#: ../../include/widgets.php:693 +msgid "Sent Messages" +msgstr "Enviar mensajes" + +#: ../../include/widgets.php:707 +msgid "No messages." +msgstr "Sin mensajes." + +#: ../../include/widgets.php:725 +msgid "Delete conversation" +msgstr "Eliminar conversación" + +#: ../../include/widgets.php:751 +msgid "Events Menu" +msgstr "Menú de eventos" + +#: ../../include/widgets.php:752 +msgid "Day View" +msgstr "Eventos del día" + +#: ../../include/widgets.php:753 +msgid "Week View" +msgstr "Eventos de la semana" + +#: ../../include/widgets.php:754 +msgid "Month View" +msgstr "Eventos del mes" + +#: ../../include/widgets.php:766 +msgid "Events Tools" +msgstr "Gestión de eventos" + +#: ../../include/widgets.php:767 +msgid "Export Calendar" +msgstr "Exportar el calendario" + +#: ../../include/widgets.php:768 +msgid "Import Calendar" +msgstr "Importar un calendario" + +#: ../../include/widgets.php:842 ../../include/conversation.php:1662 +#: ../../include/conversation.php:1665 +msgid "Chatrooms" +msgstr "Salas de chat" + +#: ../../include/widgets.php:846 +msgid "Overview" +msgstr "Resumen" + +#: ../../include/widgets.php:853 +msgid "Chat Members" +msgstr "Miembros del chat" + +#: ../../include/widgets.php:876 +msgid "Bookmarked Chatrooms" +msgstr "Salas de chat preferidas" + +#: ../../include/widgets.php:899 +msgid "Suggested Chatrooms" +msgstr "Salas de chat sugeridas" + +#: ../../include/widgets.php:1044 ../../include/widgets.php:1156 +msgid "photo/image" +msgstr "foto/imagen" + +#: ../../include/widgets.php:1099 +msgid "Click to show more" +msgstr "Hacer clic para ver más" + +#: ../../include/widgets.php:1250 +msgid "Rating Tools" +msgstr "Valoraciones" + +#: ../../include/widgets.php:1254 ../../include/widgets.php:1256 +msgid "Rate Me" +msgstr "Valorar este canal" + +#: ../../include/widgets.php:1259 +msgid "View Ratings" +msgstr "Mostrar las valoraciones" + +#: ../../include/widgets.php:1316 +msgid "Forums" +msgstr "Foros" + +#: ../../include/widgets.php:1345 +msgid "Tasks" +msgstr "Tareas" + +#: ../../include/widgets.php:1354 +msgid "Documentation" +msgstr "Documentación" + +#: ../../include/widgets.php:1356 +msgid "Project/Site Information" +msgstr "Información sobre el proyecto o sitio" + +#: ../../include/widgets.php:1357 +msgid "For Members" +msgstr "Para los miembros" + +#: ../../include/widgets.php:1358 +msgid "For Administrators" +msgstr "Para los administradores" + +#: ../../include/widgets.php:1359 +msgid "For Developers" +msgstr "Para los desarrolladores" + +#: ../../include/widgets.php:1383 ../../include/widgets.php:1421 +msgid "Member registrations waiting for confirmation" +msgstr "Inscripciones de nuevos miembros pendientes de aprobación" + +#: ../../include/widgets.php:1389 +msgid "Inspect queue" +msgstr "Examinar la cola" + +#: ../../include/widgets.php:1391 +msgid "DB updates" +msgstr "Actualizaciones de la base de datos" + +#: ../../include/widgets.php:1416 ../../include/nav.php:216 +msgid "Admin" +msgstr "Administrador" + +#: ../../include/widgets.php:1417 +msgid "Plugin Features" +msgstr "Extensiones" + +#: ../../include/follow.php:27 +msgid "Channel is blocked on this site." +msgstr "El canal está bloqueado en este sitio." + +#: ../../include/follow.php:32 +msgid "Channel location missing." +msgstr "Falta la dirección del canal." + +#: ../../include/follow.php:81 +msgid "Response from remote channel was incomplete." +msgstr "Respuesta incompleta del canal." + +#: ../../include/follow.php:98 +msgid "Channel was deleted and no longer exists." +msgstr "El canal ha sido eliminado y ya no existe." + +#: ../../include/follow.php:154 ../../include/follow.php:190 +msgid "Protocol disabled." +msgstr "Protocolo deshabilitado." + +#: ../../include/follow.php:178 +msgid "Channel discovery failed." +msgstr "El intento de acceder al canal ha fallado." + +#: ../../include/follow.php:216 +msgid "Cannot connect to yourself." +msgstr "No puede conectarse consigo mismo." + +#: ../../include/bookmarks.php:35 +#, php-format +msgid "%1$s's bookmarks" +msgstr "Marcadores de %1$s" + +#: ../../include/api.php:1336 +msgid "Public Timeline" +msgstr "Cronología pública" + +#: ../../include/bbcode.php:123 ../../include/bbcode.php:844 +#: ../../include/bbcode.php:847 ../../include/bbcode.php:852 +#: ../../include/bbcode.php:855 ../../include/bbcode.php:858 +#: ../../include/bbcode.php:861 ../../include/bbcode.php:866 +#: ../../include/bbcode.php:869 ../../include/bbcode.php:874 +#: ../../include/bbcode.php:877 ../../include/bbcode.php:880 +#: ../../include/bbcode.php:883 +msgid "Image/photo" +msgstr "Imagen/foto" + +#: ../../include/bbcode.php:162 ../../include/bbcode.php:894 +msgid "Encrypted content" +msgstr "Contenido cifrado" + +#: ../../include/bbcode.php:178 +#, php-format +msgid "Install %s element: " +msgstr "Instalar el elemento %s:" + +#: ../../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 "Esta entrada contiene el elemento instalable %s, sin embargo le faltan permisos para instalarlo en este sitio." + +#: ../../include/bbcode.php:254 +#, php-format +msgid "%1$s wrote the following %2$s %3$s" +msgstr "%1$s escribió %2$s siguiente %3$s" + +#: ../../include/bbcode.php:331 ../../include/bbcode.php:339 +msgid "Click to open/close" +msgstr "Pulsar para abrir/cerrar" + +#: ../../include/bbcode.php:339 +msgid "spoiler" +msgstr "spoiler" + +#: ../../include/bbcode.php:585 +msgid "Different viewers will see this text differently" +msgstr "Visitantes diferentes verán este texto de forma distinta" + +#: ../../include/bbcode.php:832 +msgid "$1 wrote:" +msgstr "$1 escribió:" + +#: ../../include/dir_fns.php:141 +msgid "Directory Options" +msgstr "Opciones del directorio" + +#: ../../include/dir_fns.php:143 +msgid "Safe Mode" +msgstr "Modo seguro" + +#: ../../include/dir_fns.php:144 +msgid "Public Forums Only" +msgstr "Solo foros públicos" + +#: ../../include/dir_fns.php:145 +msgid "This Website Only" +msgstr "Solo este sitio web" + +#: ../../include/security.php:383 +msgid "" +"The form security token was not correct. This probably happened because the " +"form has been opened for too long (>3 hours) before submitting it." +msgstr "El \"token\" de seguridad del formulario no es correcto. Esto ha ocurrido probablemente porque el formulario ha estado abierto demasiado tiempo (>3 horas) antes de ser enviado" + +#: ../../include/nav.php:82 ../../include/nav.php:113 ../../boot.php:1702 +msgid "Logout" +msgstr "Finalizar sesión" + +#: ../../include/nav.php:82 ../../include/nav.php:113 +msgid "End this session" +msgstr "Finalizar esta sesión" + +#: ../../include/nav.php:85 ../../include/nav.php:144 +msgid "Home" +msgstr "Inicio" + +#: ../../include/nav.php:85 +msgid "Your posts and conversations" +msgstr "Sus publicaciones y conversaciones" + +#: ../../include/nav.php:86 +msgid "Your profile page" +msgstr "Su página del perfil" + +#: ../../include/nav.php:88 +msgid "Manage/Edit profiles" +msgstr "Administrar/editar perfiles" + +#: ../../include/nav.php:90 ../../include/channel.php:941 +msgid "Edit Profile" +msgstr "Editar el perfil" + +#: ../../include/nav.php:90 +msgid "Edit your profile" +msgstr "Editar su perfil" + +#: ../../include/nav.php:92 +msgid "Your photos" +msgstr "Sus fotos" + +#: ../../include/nav.php:93 +msgid "Your files" +msgstr "Sus ficheros" + +#: ../../include/nav.php:96 +msgid "Your chatrooms" +msgstr "Sus salas de chat" + +#: ../../include/nav.php:102 ../../include/conversation.php:1675 +msgid "Bookmarks" +msgstr "Marcadores" + +#: ../../include/nav.php:102 +msgid "Your bookmarks" +msgstr "Sus marcadores" + +#: ../../include/nav.php:106 +msgid "Your webpages" +msgstr "Sus páginas web" + +#: ../../include/nav.php:110 +msgid "Sign in" +msgstr "Acceder" + +#: ../../include/nav.php:127 +#, php-format +msgid "%s - click to logout" +msgstr "%s - pulsar para finalizar sesión" + +#: ../../include/nav.php:130 +msgid "Remote authentication" +msgstr "Acceder desde su servidor" + +#: ../../include/nav.php:130 +msgid "Click to authenticate to your home hub" +msgstr "Pulsar para identificarse en su servidor de inicio" + +#: ../../include/nav.php:144 +msgid "Home Page" +msgstr "Página de inicio" + +#: ../../include/nav.php:147 +msgid "Create an account" +msgstr "Crear una cuenta" + +#: ../../include/nav.php:159 +msgid "Help and documentation" +msgstr "Ayuda y documentación" + +#: ../../include/nav.php:163 +msgid "Applications, utilities, links, games" +msgstr "Aplicaciones, utilidades, enlaces, juegos" + +#: ../../include/nav.php:165 +msgid "Search site @name, #tag, ?docs, content" +msgstr "Buscar en el sitio por @nombre, #etiqueta, ?ayuda o contenido" + +#: ../../include/nav.php:167 +msgid "Channel Directory" +msgstr "Directorio de canales" + +#: ../../include/nav.php:179 +msgid "Your grid" +msgstr "Mi red" + +#: ../../include/nav.php:180 +msgid "Mark all grid notifications seen" +msgstr "Marcar todas las notificaciones de la red como vistas" + +#: ../../include/nav.php:182 +msgid "Channel home" +msgstr "Mi canal" + +#: ../../include/nav.php:183 +msgid "Mark all channel notifications seen" +msgstr "Marcar todas las notificaciones del canal como leídas" + +#: ../../include/nav.php:189 +msgid "Notices" +msgstr "Avisos" + +#: ../../include/nav.php:189 +msgid "Notifications" +msgstr "Notificaciones" + +#: ../../include/nav.php:190 +msgid "See all notifications" +msgstr "Ver todas las notificaciones" + +#: ../../include/nav.php:193 +msgid "Private mail" +msgstr "Correo privado" + +#: ../../include/nav.php:194 +msgid "See all private messages" +msgstr "Ver todas los mensajes privados" + +#: ../../include/nav.php:195 +msgid "Mark all private messages seen" +msgstr "Marcar todos los mensajes privados como leídos" + +#: ../../include/nav.php:201 +msgid "Event Calendar" +msgstr "Calendario de eventos" + +#: ../../include/nav.php:202 +msgid "See all events" +msgstr "Ver todos los eventos" + +#: ../../include/nav.php:203 +msgid "Mark all events seen" +msgstr "Marcar todos los eventos como leidos" + +#: ../../include/nav.php:206 +msgid "Manage Your Channels" +msgstr "Gestionar sus canales" + +#: ../../include/nav.php:208 +msgid "Account/Channel Settings" +msgstr "Ajustes de cuenta/canales" + +#: ../../include/nav.php:216 +msgid "Site Setup and Configuration" +msgstr "Ajustes y configuración del sitio" + +#: ../../include/nav.php:247 ../../include/conversation.php:851 +msgid "Loading..." +msgstr "Cargando..." + +#: ../../include/nav.php:252 +msgid "@name, #tag, ?doc, content" +msgstr "@nombre, #etiqueta, ?ayuda, contenido" + +#: ../../include/nav.php:253 +msgid "Please wait..." +msgstr "Espere por favor…" #: ../../include/connections.php:95 msgid "New window" @@ -7611,6 +7765,52 @@ msgstr "Abrir la dirección seleccionada en una ventana o pestaña aparte" msgid "User '%s' deleted" msgstr "El usuario '%s' ha sido eliminado" +#: ../../include/contact_widgets.php:11 +#, php-format +msgid "%d invitation available" +msgid_plural "%d invitations available" +msgstr[0] "%d invitación pendiente" +msgstr[1] "%d invitaciones disponibles" + +#: ../../include/contact_widgets.php:19 +msgid "Find Channels" +msgstr "Encontrar canales" + +#: ../../include/contact_widgets.php:20 +msgid "Enter name or interest" +msgstr "Introducir nombre o interés" + +#: ../../include/contact_widgets.php:21 +msgid "Connect/Follow" +msgstr "Conectar/Seguir" + +#: ../../include/contact_widgets.php:22 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "Ejemplos: José Fernández, Pesca" + +#: ../../include/contact_widgets.php:26 +msgid "Random Profile" +msgstr "Perfil aleatorio" + +#: ../../include/contact_widgets.php:27 +msgid "Invite Friends" +msgstr "Invitar a amigos" + +#: ../../include/contact_widgets.php:29 +msgid "Advanced example: name=fred and country=iceland" +msgstr "Ejemplo avanzado: nombre=juan y país=españa" + +#: ../../include/contact_widgets.php:122 +#, php-format +msgid "%d connection in common" +msgid_plural "%d connections in common" +msgstr[0] "%d conexión en común" +msgstr[1] "%d conexiones en común" + +#: ../../include/contact_widgets.php:127 +msgid "show more" +msgstr "mostrar más" + #: ../../include/conversation.php:204 #, php-format msgid "%1$s is now connected with %2$s" @@ -7621,269 +7821,258 @@ msgstr "%1$s ahora está conectado/a con %2$s" msgid "%1$s poked %2$s" msgstr "%1$s ha dado un toque a %2$s" -#: ../../include/conversation.php:243 ../../include/text.php:1013 -#: ../../include/text.php:1018 -msgid "poked" -msgstr "ha dado un toque a" - -#: ../../include/conversation.php:694 +#: ../../include/conversation.php:691 #, php-format msgid "View %s's profile @ %s" msgstr "Ver el perfil @ %s de %s" -#: ../../include/conversation.php:713 +#: ../../include/conversation.php:710 msgid "Categories:" msgstr "Categorías:" -#: ../../include/conversation.php:714 +#: ../../include/conversation.php:711 msgid "Filed under:" msgstr "Archivado bajo:" -#: ../../include/conversation.php:741 +#: ../../include/conversation.php:738 msgid "View in context" msgstr "Mostrar en su contexto" -#: ../../include/conversation.php:850 +#: ../../include/conversation.php:847 msgid "remove" msgstr "eliminar" -#: ../../include/conversation.php:855 +#: ../../include/conversation.php:852 msgid "Delete Selected Items" msgstr "Eliminar elementos seleccionados" -#: ../../include/conversation.php:951 +#: ../../include/conversation.php:948 msgid "View Source" msgstr "Ver el código fuente de la entrada" -#: ../../include/conversation.php:952 +#: ../../include/conversation.php:949 msgid "Follow Thread" msgstr "Seguir este hilo" -#: ../../include/conversation.php:953 +#: ../../include/conversation.php:950 msgid "Unfollow Thread" msgstr "Dejar de seguir este hilo" -#: ../../include/conversation.php:958 +#: ../../include/conversation.php:955 msgid "Activity/Posts" msgstr "Actividad y publicaciones" -#: ../../include/conversation.php:960 +#: ../../include/conversation.php:957 msgid "Edit Connection" msgstr "Editar conexión" -#: ../../include/conversation.php:961 +#: ../../include/conversation.php:958 msgid "Message" msgstr "Mensaje" -#: ../../include/conversation.php:1078 +#: ../../include/conversation.php:1075 #, php-format msgid "%s likes this." msgstr "A %s le gusta esto." -#: ../../include/conversation.php:1078 +#: ../../include/conversation.php:1075 #, php-format msgid "%s doesn't like this." msgstr "A %s no le gusta esto." -#: ../../include/conversation.php:1082 +#: ../../include/conversation.php:1079 #, php-format msgid "%2$d people like this." msgid_plural "%2$d people like this." msgstr[0] "a %2$d personas le gusta esto." msgstr[1] "A %2$d personas les gusta esto." -#: ../../include/conversation.php:1084 +#: ../../include/conversation.php:1081 #, php-format msgid "%2$d people don't like this." msgid_plural "%2$d people don't like this." msgstr[0] "a %2$d personas no les gusta esto." msgstr[1] "A %2$d personas no les gusta esto." -#: ../../include/conversation.php:1090 +#: ../../include/conversation.php:1087 msgid "and" msgstr "y" -#: ../../include/conversation.php:1093 +#: ../../include/conversation.php:1090 #, php-format msgid ", and %d other people" msgid_plural ", and %d other people" msgstr[0] ", y %d persona más" msgstr[1] ", y %d personas más" -#: ../../include/conversation.php:1094 +#: ../../include/conversation.php:1091 #, php-format msgid "%s like this." msgstr "A %s le gusta esto." -#: ../../include/conversation.php:1094 +#: ../../include/conversation.php:1091 #, php-format msgid "%s don't like this." msgstr "A %s no le gusta esto." -#: ../../include/conversation.php:1133 +#: ../../include/conversation.php:1130 msgid "Set your location" msgstr "Establecer su ubicación" -#: ../../include/conversation.php:1134 +#: ../../include/conversation.php:1131 msgid "Clear browser location" msgstr "Eliminar los datos de localización geográfica del navegador" -#: ../../include/conversation.php:1182 +#: ../../include/conversation.php:1177 msgid "Tag term:" msgstr "Término de la etiqueta:" -#: ../../include/conversation.php:1183 +#: ../../include/conversation.php:1178 msgid "Where are you right now?" msgstr "¿Donde está ahora?" -#: ../../include/conversation.php:1221 +#: ../../include/conversation.php:1210 msgid "Page link name" msgstr "Nombre del enlace de la página" -#: ../../include/conversation.php:1224 +#: ../../include/conversation.php:1213 msgid "Post as" msgstr "Publicar como" -#: ../../include/conversation.php:1238 +#: ../../include/conversation.php:1223 msgid "Toggle voting" msgstr "Cambiar votación" -#: ../../include/conversation.php:1246 +#: ../../include/conversation.php:1231 msgid "Categories (optional, comma-separated list)" msgstr "Categorías (opcional, lista separada por comas)" -#: ../../include/conversation.php:1269 +#: ../../include/conversation.php:1254 msgid "Set publish date" msgstr "Establecer la fecha de publicación" -#: ../../include/conversation.php:1518 +#: ../../include/conversation.php:1258 +msgid "OK" +msgstr "OK" + +#: ../../include/conversation.php:1503 msgid "Discover" msgstr "Descubrir" -#: ../../include/conversation.php:1521 +#: ../../include/conversation.php:1506 msgid "Imported public streams" msgstr "Contenidos públicos importados" -#: ../../include/conversation.php:1526 +#: ../../include/conversation.php:1511 msgid "Commented Order" msgstr "Comentarios recientes" -#: ../../include/conversation.php:1529 +#: ../../include/conversation.php:1514 msgid "Sort by Comment Date" msgstr "Ordenar por fecha de comentario" -#: ../../include/conversation.php:1533 +#: ../../include/conversation.php:1518 msgid "Posted Order" msgstr "Publicaciones recientes" -#: ../../include/conversation.php:1536 +#: ../../include/conversation.php:1521 msgid "Sort by Post Date" msgstr "Ordenar por fecha de publicación" -#: ../../include/conversation.php:1544 +#: ../../include/conversation.php:1529 msgid "Posts that mention or involve you" msgstr "Publicaciones que le mencionan o involucran" -#: ../../include/conversation.php:1553 +#: ../../include/conversation.php:1538 msgid "Activity Stream - by date" msgstr "Contenido - por fecha" -#: ../../include/conversation.php:1559 +#: ../../include/conversation.php:1544 msgid "Starred" msgstr "Preferidas" -#: ../../include/conversation.php:1562 +#: ../../include/conversation.php:1547 msgid "Favourite Posts" msgstr "Publicaciones favoritas" -#: ../../include/conversation.php:1569 +#: ../../include/conversation.php:1554 msgid "Spam" msgstr "Correo basura" -#: ../../include/conversation.php:1572 +#: ../../include/conversation.php:1557 msgid "Posts flagged as SPAM" msgstr "Publicaciones marcadas como basura" -#: ../../include/conversation.php:1629 +#: ../../include/conversation.php:1614 msgid "Status Messages and Posts" msgstr "Mensajes de estado y publicaciones" -#: ../../include/conversation.php:1638 +#: ../../include/conversation.php:1623 msgid "About" msgstr "Mi perfil" -#: ../../include/conversation.php:1641 +#: ../../include/conversation.php:1626 msgid "Profile Details" msgstr "Detalles del perfil" -#: ../../include/conversation.php:1657 +#: ../../include/conversation.php:1635 ../../include/photos.php:502 +msgid "Photo Albums" +msgstr "Álbumes de fotos" + +#: ../../include/conversation.php:1642 msgid "Files and Storage" msgstr "Ficheros y repositorio" -#: ../../include/conversation.php:1677 ../../include/conversation.php:1680 -#: ../../include/widgets.php:836 -msgid "Chatrooms" -msgstr "Salas de chat" - -#: ../../include/conversation.php:1693 +#: ../../include/conversation.php:1678 msgid "Saved Bookmarks" msgstr "Marcadores guardados" -#: ../../include/conversation.php:1703 +#: ../../include/conversation.php:1688 msgid "Manage Webpages" msgstr "Administrar páginas web" -#: ../../include/conversation.php:1768 +#: ../../include/conversation.php:1747 msgctxt "noun" msgid "Attending" msgid_plural "Attending" msgstr[0] "Participaré" msgstr[1] "Participaré" -#: ../../include/conversation.php:1771 +#: ../../include/conversation.php:1750 msgctxt "noun" msgid "Not Attending" msgid_plural "Not Attending" msgstr[0] "No participaré" msgstr[1] "No participaré" -#: ../../include/conversation.php:1774 +#: ../../include/conversation.php:1753 msgctxt "noun" msgid "Undecided" msgid_plural "Undecided" msgstr[0] "Indeciso/a" msgstr[1] "Indecisos/as" -#: ../../include/conversation.php:1777 +#: ../../include/conversation.php:1756 msgctxt "noun" msgid "Agree" msgid_plural "Agrees" msgstr[0] "De acuerdo" msgstr[1] "De acuerdo" -#: ../../include/conversation.php:1780 +#: ../../include/conversation.php:1759 msgctxt "noun" msgid "Disagree" msgid_plural "Disagrees" msgstr[0] "En desacuerdo" msgstr[1] "En desacuerdo" -#: ../../include/conversation.php:1783 +#: ../../include/conversation.php:1762 msgctxt "noun" msgid "Abstain" msgid_plural "Abstains" msgstr[0] "se abstiene" msgstr[1] "Se abstienen" -#: ../../include/import.php:30 -msgid "" -"Cannot create a duplicate channel identifier on this system. Import failed." -msgstr "No se ha podido crear un canal con un identificador que ya existe en este sistema. La importación ha fallado." - -#: ../../include/import.php:97 -msgid "Channel clone failed. Import failed." -msgstr "La clonación del canal no ha salido bien. La importación ha fallado." - #: ../../include/selectors.php:30 msgid "Frequently" msgstr "Frecuentemente" @@ -7948,6 +8137,12 @@ msgstr "Neutral" msgid "Non-specific" msgstr "No especificado" +#: ../../include/selectors.php:49 ../../include/selectors.php:66 +#: ../../include/selectors.php:104 ../../include/selectors.php:140 +#: ../../include/permissions.php:881 +msgid "Other" +msgstr "Otro" + #: ../../include/selectors.php:49 msgid "Undecided" msgstr "Indeciso/a" @@ -8124,366 +8319,361 @@ msgstr "No me importa" msgid "Ask me" msgstr "Pregúnteme" -#: ../../include/bookmarks.php:35 +#: ../../include/PermissionDescription.php:31 +#: ../../include/acl_selectors.php:232 +msgid "Visible to your default audience" +msgstr "Visible para su público predeterminado." + +#: ../../include/PermissionDescription.php:115 +#: ../../include/acl_selectors.php:268 +msgid "Only me" +msgstr "Sólo yo" + +#: ../../include/PermissionDescription.php:116 +msgid "Public" +msgstr "Público" + +#: ../../include/PermissionDescription.php:117 +msgid "Anybody in the $Projectname network" +msgstr "Cualquiera en la red $Projectname" + +#: ../../include/PermissionDescription.php:118 #, php-format -msgid "%1$s's bookmarks" -msgstr "Marcadores de %1$s" +msgid "Any account on %s" +msgstr "Cualquier cuenta en %s" -#: ../../include/security.php:109 -msgid "guest:" -msgstr "" +#: ../../include/PermissionDescription.php:119 +msgid "Any of my connections" +msgstr "Cualquiera de mis conexiones" -#: ../../include/security.php:427 +#: ../../include/PermissionDescription.php:120 +msgid "Only connections I specifically allow" +msgstr "Sólo las conexiones que yo permita de forma explícita" + +#: ../../include/PermissionDescription.php:121 +msgid "Anybody authenticated (could include visitors from other networks)" +msgstr "Cualquiera que esté autenticado (podría incluir a los visitantes de otras redes)" + +#: ../../include/PermissionDescription.php:122 +msgid "Any connections including those who haven't yet been approved" +msgstr "Cualquier conexión incluyendo aquellas que aún no han sido aprobadas" + +#: ../../include/PermissionDescription.php:161 msgid "" -"The form security token was not correct. This probably happened because the " -"form has been opened for too long (>3 hours) before submitting it." -msgstr "El \"token\" de seguridad del formulario no es correcto. Esto ha ocurrido probablemente porque el formulario ha estado abierto demasiado tiempo (>3 horas) antes de ser enviado" +"This is your default setting for the audience of your normal stream, and " +"posts." +msgstr "Esta es la configuración predeterminada para su flujo (stream) habitual de publicaciones." -#: ../../include/text.php:404 -msgid "prev" -msgstr "anterior" +#: ../../include/PermissionDescription.php:162 +msgid "" +"This is your default setting for who can view your default channel profile" +msgstr "Esta es su configuración por defecto para establecer quién puede ver su perfil del canal predeterminado" -#: ../../include/text.php:406 -msgid "first" -msgstr "primera" +#: ../../include/PermissionDescription.php:163 +msgid "This is your default setting for who can view your connections" +msgstr "Este es su ajuste predeterminado para establecer quién puede ver sus conexiones" -#: ../../include/text.php:435 -msgid "last" -msgstr "última" +#: ../../include/PermissionDescription.php:164 +msgid "" +"This is your default setting for who can view your file storage and photos" +msgstr "Este es su ajuste predeterminado para establecer quién puede ver su repositorio de ficheros y sus fotos" -#: ../../include/text.php:438 -msgid "next" -msgstr "próxima" +#: ../../include/PermissionDescription.php:165 +msgid "This is your default setting for the audience of your webpages" +msgstr "Este es el ajuste predeterminado para establecer la audiencia de sus páginas web" -#: ../../include/text.php:448 -msgid "older" -msgstr "más antiguas" +#: ../../include/account.php:28 +msgid "Not a valid email address" +msgstr "Dirección de correo no válida" -#: ../../include/text.php:450 -msgid "newer" -msgstr "más recientes" +#: ../../include/account.php:30 +msgid "Your email domain is not among those allowed on this site" +msgstr "Su dirección de correo no pertenece a ninguno de los dominios permitidos en este sitio." -#: ../../include/text.php:843 -msgid "No connections" -msgstr "Sin conexiones" +#: ../../include/account.php:36 +msgid "Your email address is already registered at this site." +msgstr "Su dirección de correo está ya registrada en este sitio." -#: ../../include/text.php:868 +#: ../../include/account.php:68 +msgid "An invitation is required." +msgstr "Es obligatorio que le inviten." + +#: ../../include/account.php:72 +msgid "Invitation could not be verified." +msgstr "No se ha podido verificar su invitación." + +#: ../../include/account.php:122 +msgid "Please enter the required information." +msgstr "Por favor introduzca la información requerida." + +#: ../../include/account.php:189 +msgid "Failed to store account information." +msgstr "La información de la cuenta no se ha podido guardar." + +#: ../../include/account.php:249 #, php-format -msgid "View all %s connections" -msgstr "Ver todas las %s conexiones" +msgid "Registration confirmation for %s" +msgstr "Confirmación de registro para %s" + +#: ../../include/account.php:315 +#, php-format +msgid "Registration request at %s" +msgstr "Solicitud de registro en %s" + +#: ../../include/account.php:317 ../../include/account.php:344 +#: ../../include/account.php:404 ../../include/network.php:1871 +msgid "Administrator" +msgstr "Administrador" + +#: ../../include/account.php:339 +msgid "your registration password" +msgstr "su contraseña de registro" + +#: ../../include/account.php:342 ../../include/account.php:402 +#, php-format +msgid "Registration details for %s" +msgstr "Detalles del registro de %s" + +#: ../../include/account.php:414 +msgid "Account approved." +msgstr "Cuenta aprobada." + +#: ../../include/account.php:454 +#, php-format +msgid "Registration revoked for %s" +msgstr "Registro revocado para %s" + +#: ../../include/account.php:506 +msgid "Account verified. Please login." +msgstr "Cuenta verificada. Por favor, inicie sesión." + +#: ../../include/account.php:723 ../../include/account.php:725 +msgid "Click here to upgrade." +msgstr "Pulse aquí para actualizar" + +#: ../../include/account.php:731 +msgid "This action exceeds the limits set by your subscription plan." +msgstr "Esta acción supera los límites establecidos por su plan de suscripción " + +#: ../../include/account.php:736 +msgid "This action is not available under your subscription plan." +msgstr "Esta acción no está disponible en su plan de suscripción." + +#: ../../include/attach.php:247 ../../include/attach.php:333 +msgid "Item was not found." +msgstr "Elemento no encontrado." + +#: ../../include/attach.php:497 +msgid "No source file." +msgstr "Ningún fichero de origen" + +#: ../../include/attach.php:519 +msgid "Cannot locate file to replace" +msgstr "No se puede localizar el fichero que va a ser sustituido." + +#: ../../include/attach.php:537 +msgid "Cannot locate file to revise/update" +msgstr "No se puede localizar el fichero para revisar/actualizar" + +#: ../../include/attach.php:672 +#, php-format +msgid "File exceeds size limit of %d" +msgstr "El fichero supera el limite de tamaño de %d" + +#: ../../include/attach.php:686 +#, php-format +msgid "You have reached your limit of %1$.0f Mbytes attachment storage." +msgstr "Ha alcanzado su límite de %1$.0f Mbytes de almacenamiento de adjuntos." + +#: ../../include/attach.php:842 +msgid "File upload failed. Possible system limit or action terminated." +msgstr "Error de carga, posiblemente por limite del sistema o porque la acción ha finalizado." + +#: ../../include/attach.php:855 +msgid "Stored file could not be verified. Upload failed." +msgstr "El fichero almacenado no ha podido ser verificado. El envío ha fallado." + +#: ../../include/attach.php:909 ../../include/attach.php:925 +msgid "Path not available." +msgstr "Ruta no disponible." + +#: ../../include/attach.php:971 ../../include/attach.php:1123 +msgid "Empty pathname" +msgstr "Ruta vacía" + +#: ../../include/attach.php:997 +msgid "duplicate filename or path" +msgstr "Nombre duplicado de ruta o fichero" + +#: ../../include/attach.php:1019 +msgid "Path not found." +msgstr "Ruta no encontrada" + +#: ../../include/attach.php:1077 +msgid "mkdir failed." +msgstr "mkdir ha fallado." + +#: ../../include/attach.php:1081 +msgid "database storage failed." +msgstr "el almacenamiento en la base de datos ha fallado." + +#: ../../include/attach.php:1129 +msgid "Empty path" +msgstr "Ruta vacía" + +#: ../../include/channel.php:32 +msgid "Unable to obtain identity information from database" +msgstr "No ha sido posible obtener información sobre la identidad desde la base de datos" -#: ../../include/text.php:1013 ../../include/text.php:1018 -msgid "poke" -msgstr "un toque" +#: ../../include/channel.php:66 +msgid "Empty name" +msgstr "Nombre vacío" -#: ../../include/text.php:1019 -msgid "ping" -msgstr "un \"ping\"" +#: ../../include/channel.php:69 +msgid "Name too long" +msgstr "Nombre demasiado largo" -#: ../../include/text.php:1019 -msgid "pinged" -msgstr "ha enviado un \"ping\" a" +#: ../../include/channel.php:180 +msgid "No account identifier" +msgstr "Ningún identificador de la cuenta" -#: ../../include/text.php:1020 -msgid "prod" -msgstr "una incitación " +#: ../../include/channel.php:192 +msgid "Nickname is required." +msgstr "Se requiere un sobrenombre (alias)." -#: ../../include/text.php:1020 -msgid "prodded" -msgstr "ha incitado a " +#: ../../include/channel.php:206 +msgid "Reserved nickname. Please choose another." +msgstr "Sobrenombre en uso. Por favor, elija otro." -#: ../../include/text.php:1021 -msgid "slap" -msgstr "una bofetada " - -#: ../../include/text.php:1021 -msgid "slapped" -msgstr "ha abofeteado a " - -#: ../../include/text.php:1022 -msgid "finger" -msgstr "un \"finger\" " - -#: ../../include/text.php:1022 -msgid "fingered" -msgstr "envió un \"finger\" a" - -#: ../../include/text.php:1023 -msgid "rebuff" -msgstr "un reproche" - -#: ../../include/text.php:1023 -msgid "rebuffed" -msgstr "ha hecho un reproche a " - -#: ../../include/text.php:1035 -msgid "happy" -msgstr "feliz " - -#: ../../include/text.php:1036 -msgid "sad" -msgstr "triste " - -#: ../../include/text.php:1037 -msgid "mellow" -msgstr "tranquilo/a" - -#: ../../include/text.php:1038 -msgid "tired" -msgstr "cansado/a " - -#: ../../include/text.php:1039 -msgid "perky" -msgstr "vivaz" - -#: ../../include/text.php:1040 -msgid "angry" -msgstr "enfadado/a" - -#: ../../include/text.php:1041 -msgid "stupefied" -msgstr "asombrado/a" - -#: ../../include/text.php:1042 -msgid "puzzled" -msgstr "perplejo/a" - -#: ../../include/text.php:1043 -msgid "interested" -msgstr "interesado/a" - -#: ../../include/text.php:1044 -msgid "bitter" -msgstr "amargado/a" - -#: ../../include/text.php:1045 -msgid "cheerful" -msgstr "alegre" - -#: ../../include/text.php:1046 -msgid "alive" -msgstr "animado/a" - -#: ../../include/text.php:1047 -msgid "annoyed" -msgstr "molesto/a" - -#: ../../include/text.php:1048 -msgid "anxious" -msgstr "ansioso/a" - -#: ../../include/text.php:1049 -msgid "cranky" -msgstr "de mal humor" - -#: ../../include/text.php:1050 -msgid "disturbed" -msgstr "perturbado/a" - -#: ../../include/text.php:1051 -msgid "frustrated" -msgstr "frustrado/a" - -#: ../../include/text.php:1052 -msgid "depressed" -msgstr "deprimido/a" - -#: ../../include/text.php:1053 -msgid "motivated" -msgstr "motivado/a" - -#: ../../include/text.php:1054 -msgid "relaxed" -msgstr "relajado/a" - -#: ../../include/text.php:1055 -msgid "surprised" -msgstr "sorprendido/a" - -#: ../../include/text.php:1237 ../../include/js_strings.php:70 -msgid "Monday" -msgstr "lunes" - -#: ../../include/text.php:1237 ../../include/js_strings.php:71 -msgid "Tuesday" -msgstr "martes" - -#: ../../include/text.php:1237 ../../include/js_strings.php:72 -msgid "Wednesday" -msgstr "miércoles" - -#: ../../include/text.php:1237 ../../include/js_strings.php:73 -msgid "Thursday" -msgstr "jueves" - -#: ../../include/text.php:1237 ../../include/js_strings.php:74 -msgid "Friday" -msgstr "viernes" - -#: ../../include/text.php:1237 ../../include/js_strings.php:75 -msgid "Saturday" -msgstr "sábado" - -#: ../../include/text.php:1237 ../../include/js_strings.php:69 -msgid "Sunday" -msgstr "domingo" - -#: ../../include/text.php:1241 ../../include/js_strings.php:45 -msgid "January" -msgstr "enero" - -#: ../../include/text.php:1241 ../../include/js_strings.php:46 -msgid "February" -msgstr "febrero" - -#: ../../include/text.php:1241 ../../include/js_strings.php:47 -msgid "March" -msgstr "marzo" - -#: ../../include/text.php:1241 ../../include/js_strings.php:48 -msgid "April" -msgstr "abril" - -#: ../../include/text.php:1241 -msgid "May" -msgstr "mayo" - -#: ../../include/text.php:1241 ../../include/js_strings.php:50 -msgid "June" -msgstr "junio" - -#: ../../include/text.php:1241 ../../include/js_strings.php:51 -msgid "July" -msgstr "julio" - -#: ../../include/text.php:1241 ../../include/js_strings.php:52 -msgid "August" -msgstr "agosto" - -#: ../../include/text.php:1241 ../../include/js_strings.php:53 -msgid "September" -msgstr "septiembre" - -#: ../../include/text.php:1241 ../../include/js_strings.php:54 -msgid "October" -msgstr "octubre" - -#: ../../include/text.php:1241 ../../include/js_strings.php:55 -msgid "November" -msgstr "noviembre" - -#: ../../include/text.php:1241 ../../include/js_strings.php:56 -msgid "December" -msgstr "diciembre" - -#: ../../include/text.php:1318 ../../include/text.php:1322 -msgid "Unknown Attachment" -msgstr "Adjunto no reconocido" - -#: ../../include/text.php:1324 -msgid "unknown" -msgstr "desconocido" - -#: ../../include/text.php:1360 -msgid "remove category" -msgstr "eliminar categoría" - -#: ../../include/text.php:1437 -msgid "remove from file" -msgstr "eliminar del fichero" - -#: ../../include/text.php:1734 ../../include/text.php:1805 -msgid "default" -msgstr "por defecto" - -#: ../../include/text.php:1742 -msgid "Page layout" -msgstr "Plantilla de la página" - -#: ../../include/text.php:1742 -msgid "You can create your own with the layouts tool" -msgstr "Puede crear su propia disposición gráfica con la herramienta de plantillas" - -#: ../../include/text.php:1784 -msgid "Page content type" -msgstr "Tipo de contenido de la página" - -#: ../../include/text.php:1817 -msgid "Select an alternate language" -msgstr "Seleccionar un idioma alternativo" - -#: ../../include/text.php:1934 -msgid "activity" -msgstr "la actividad" - -#: ../../include/text.php:2235 -msgid "Design Tools" -msgstr "Herramientas de diseño web" - -#: ../../include/text.php:2241 -msgid "Pages" -msgstr "Páginas" - -#: ../../include/auth.php:147 -msgid "Logged out." -msgstr "Desconectado/a." - -#: ../../include/auth.php:274 -msgid "Failed authentication" -msgstr "Autenticación fallida." - -#: ../../include/permissions.php:26 -msgid "Can view my normal stream and posts" -msgstr "Pueden verse mi actividad y publicaciones normales" - -#: ../../include/permissions.php:30 -msgid "Can view my webpages" -msgstr "Pueden verse mis páginas web" - -#: ../../include/permissions.php:34 -msgid "Can post on my channel page (\"wall\")" -msgstr "Pueden crearse entradas en mi página de inicio del canal (“muro”)" - -#: ../../include/permissions.php:37 -msgid "Can like/dislike stuff" -msgstr "Puede marcarse contenido como me gusta/no me gusta" - -#: ../../include/permissions.php:37 -msgid "Profiles and things other than posts/comments" -msgstr "Perfiles y otras cosas aparte de publicaciones/comentarios" - -#: ../../include/permissions.php:39 -msgid "Can forward to all my channel contacts via post @mentions" -msgstr "Puede enviarse una entrada a todos mis contactos del canal mediante una @mención" - -#: ../../include/permissions.php:39 -msgid "Advanced - useful for creating group forum channels" -msgstr "Avanzado - útil para crear canales de foros de discusión o grupos" - -#: ../../include/permissions.php:40 -msgid "Can chat with me (when available)" -msgstr "Se puede charlar conmigo (cuando esté disponible)" - -#: ../../include/permissions.php:41 -msgid "Can write to my file storage and photos" -msgstr "Puede escribirse en mi repositorio de ficheros y fotos" - -#: ../../include/permissions.php:42 -msgid "Can edit my webpages" -msgstr "Pueden editarse mis páginas web" - -#: ../../include/permissions.php:44 -msgid "Somewhat advanced - very useful in open communities" -msgstr "Algo avanzado - muy útil en comunidades abiertas" - -#: ../../include/permissions.php:46 -msgid "Can administer my channel resources" -msgstr "Pueden administrarse mis recursos del canal" - -#: ../../include/permissions.php:46 +#: ../../include/channel.php:211 msgid "" -"Extremely advanced. Leave this alone unless you know what you are doing" -msgstr "Muy avanzado. Déjelo a no ser que sepa bien lo que está haciendo." +"Nickname has unsupported characters or is already being used on this site." +msgstr "El alias contiene caracteres no admitidos o está ya en uso por otros miembros de este sitio." + +#: ../../include/channel.php:287 +msgid "Unable to retrieve created identity" +msgstr "No ha sido posible recuperar la identidad creada" + +#: ../../include/channel.php:345 +msgid "Default Profile" +msgstr "Perfil principal" + +#: ../../include/channel.php:791 +msgid "Requested channel is not available." +msgstr "El canal solicitado no está disponible." + +#: ../../include/channel.php:938 +msgid "Create New Profile" +msgstr "Crear un nuevo perfil" + +#: ../../include/channel.php:958 +msgid "Visible to everybody" +msgstr "Visible para todos" + +#: ../../include/channel.php:1031 ../../include/channel.php:1142 +msgid "Gender:" +msgstr "Género:" + +#: ../../include/channel.php:1032 ../../include/channel.php:1186 +msgid "Status:" +msgstr "Estado:" + +#: ../../include/channel.php:1033 ../../include/channel.php:1197 +msgid "Homepage:" +msgstr "Página personal:" + +#: ../../include/channel.php:1034 +msgid "Online Now" +msgstr "Ahora en línea" + +#: ../../include/channel.php:1147 +msgid "Like this channel" +msgstr "Me gusta este canal" + +#: ../../include/channel.php:1171 +msgid "j F, Y" +msgstr "j F Y" + +#: ../../include/channel.php:1172 +msgid "j F" +msgstr "j F" + +#: ../../include/channel.php:1179 +msgid "Birthday:" +msgstr "Cumpleaños:" + +#: ../../include/channel.php:1192 +#, php-format +msgid "for %1$d %2$s" +msgstr "por %1$d %2$s" + +#: ../../include/channel.php:1195 +msgid "Sexual Preference:" +msgstr "Orientación sexual:" + +#: ../../include/channel.php:1201 +msgid "Tags:" +msgstr "Etiquetas:" + +#: ../../include/channel.php:1203 +msgid "Political Views:" +msgstr "Posición política:" + +#: ../../include/channel.php:1205 +msgid "Religion:" +msgstr "Religión:" + +#: ../../include/channel.php:1209 +msgid "Hobbies/Interests:" +msgstr "Aficciones o intereses:" + +#: ../../include/channel.php:1211 +msgid "Likes:" +msgstr "Me gusta:" + +#: ../../include/channel.php:1213 +msgid "Dislikes:" +msgstr "No me gusta:" + +#: ../../include/channel.php:1215 +msgid "Contact information and Social Networks:" +msgstr "Información de contacto y redes sociales:" + +#: ../../include/channel.php:1217 +msgid "My other channels:" +msgstr "Mis otros canales:" + +#: ../../include/channel.php:1219 +msgid "Musical interests:" +msgstr "Preferencias musicales:" + +#: ../../include/channel.php:1221 +msgid "Books, literature:" +msgstr "Libros, literatura:" + +#: ../../include/channel.php:1223 +msgid "Television:" +msgstr "Televisión:" + +#: ../../include/channel.php:1225 +msgid "Film/dance/culture/entertainment:" +msgstr "Cine, danza, cultura, entretenimiento:" + +#: ../../include/channel.php:1227 +msgid "Love/Romance:" +msgstr "Vida sentimental o amorosa:" + +#: ../../include/channel.php:1229 +msgid "Work/employment:" +msgstr "Trabajo:" + +#: ../../include/channel.php:1231 +msgid "School/education:" +msgstr "Estudios:" + +#: ../../include/channel.php:1251 +msgid "Like this thing" +msgstr "Me gusta esto" #: ../../include/features.php:48 msgid "General Features" @@ -8530,257 +8720,378 @@ msgid "Provide managed web pages on your channel" msgstr "Proveer páginas web gestionadas en su canal" #: ../../include/features.php:55 -msgid "Provide a wiki for your channel" -msgstr "" - -#: ../../include/features.php:56 msgid "Hide Rating" msgstr "Ocultar las valoraciones" -#: ../../include/features.php:56 +#: ../../include/features.php:55 msgid "" "Hide the rating buttons on your channel and profile pages. Note: People can " "still rate you somewhere else." msgstr "Ocultar los botones de valoración en su canal y página de perfil. Tenga en cuenta, sin embargo, que la gente podrá expresar su valoración en otros lugares." -#: ../../include/features.php:57 +#: ../../include/features.php:56 msgid "Private Notes" msgstr "Notas privadas" -#: ../../include/features.php:57 +#: ../../include/features.php:56 msgid "Enables a tool to store notes and reminders (note: not encrypted)" msgstr "Habilita una herramienta para guardar notas y recordatorios (advertencia: las notas no estarán cifradas)" -#: ../../include/features.php:58 +#: ../../include/features.php:57 msgid "Navigation Channel Select" msgstr "Navegación por el selector de canales" -#: ../../include/features.php:58 +#: ../../include/features.php:57 msgid "Change channels directly from within the navigation dropdown menu" msgstr "Cambiar de canales directamente desde el menú de navegación desplegable" -#: ../../include/features.php:59 +#: ../../include/features.php:58 msgid "Photo Location" msgstr "Ubicación de las fotos" -#: ../../include/features.php:59 +#: ../../include/features.php:58 msgid "If location data is available on uploaded photos, link this to a map." msgstr "Si los datos de ubicación están disponibles en las fotos subidas, enlazar estas a un mapa." -#: ../../include/features.php:60 +#: ../../include/features.php:59 msgid "Access Controlled Chatrooms" msgstr "Salas de chat moderadas" -#: ../../include/features.php:60 +#: ../../include/features.php:59 msgid "Provide chatrooms and chat services with access control." msgstr "Proporcionar salas y servicios de chat moderados." -#: ../../include/features.php:61 +#: ../../include/features.php:60 msgid "Smart Birthdays" msgstr "Cumpleaños inteligentes" -#: ../../include/features.php:61 +#: ../../include/features.php:60 msgid "" "Make birthday events timezone aware in case your friends are scattered " "across the planet." msgstr "Enlazar los eventos de cumpleaños con el huso horario en el caso de que sus amigos estén dispersos por el mundo." -#: ../../include/features.php:62 +#: ../../include/features.php:61 msgid "Expert Mode" msgstr "Modo de experto" -#: ../../include/features.php:62 +#: ../../include/features.php:61 msgid "Enable Expert Mode to provide advanced configuration options" msgstr "Habilitar el modo de experto para acceder a opciones avanzadas de configuración" -#: ../../include/features.php:63 +#: ../../include/features.php:62 msgid "Premium Channel" msgstr "Canal premium" -#: ../../include/features.php:63 +#: ../../include/features.php:62 msgid "" "Allows you to set restrictions and terms on those that connect with your " "channel" msgstr "Le permite configurar restricciones y normas de uso a aquellos que conectan con su canal" -#: ../../include/features.php:68 +#: ../../include/features.php:67 msgid "Post Composition Features" msgstr "Opciones para la redacción de entradas" -#: ../../include/features.php:71 +#: ../../include/features.php:70 msgid "Large Photos" msgstr "Fotos de gran tamaño" -#: ../../include/features.php:71 +#: ../../include/features.php:70 msgid "" "Include large (1024px) photo thumbnails in posts. If not enabled, use small " "(640px) photo thumbnails" msgstr "Incluir miniaturas de fotos grandes (1024px) en publicaciones. Si no está habilitado, usar miniaturas pequeñas (640px)" -#: ../../include/features.php:72 +#: ../../include/features.php:71 msgid "Automatically import channel content from other channels or feeds" msgstr "Importar automáticamente contenido de otros canales o \"feeds\"" -#: ../../include/features.php:73 +#: ../../include/features.php:72 msgid "Even More Encryption" msgstr "Más cifrado todavía" -#: ../../include/features.php:73 +#: ../../include/features.php:72 msgid "" "Allow optional encryption of content end-to-end with a shared secret key" msgstr "Permitir cifrado adicional de contenido \"punto-a-punto\" con una clave secreta compartida." -#: ../../include/features.php:74 +#: ../../include/features.php:73 msgid "Enable Voting Tools" msgstr "Permitir entradas con votación" -#: ../../include/features.php:74 +#: ../../include/features.php:73 msgid "Provide a class of post which others can vote on" msgstr "Proveer una clase de publicación en la que otros puedan votar" -#: ../../include/features.php:75 +#: ../../include/features.php:74 msgid "Delayed Posting" msgstr "Publicación aplazada" -#: ../../include/features.php:75 +#: ../../include/features.php:74 msgid "Allow posts to be published at a later date" msgstr "Permitir mensajes que se publicarán en una fecha posterior" -#: ../../include/features.php:76 +#: ../../include/features.php:75 msgid "Suppress Duplicate Posts/Comments" msgstr "Prevenir entradas o comentarios duplicados" -#: ../../include/features.php:76 +#: ../../include/features.php:75 msgid "" "Prevent posts with identical content to be published with less than two " "minutes in between submissions." msgstr "Prevenir que entradas con contenido idéntico se publiquen con menos de dos minutos de intervalo." -#: ../../include/features.php:82 +#: ../../include/features.php:81 msgid "Network and Stream Filtering" msgstr "Filtrado del contenido" -#: ../../include/features.php:83 +#: ../../include/features.php:82 msgid "Search by Date" msgstr "Buscar por fecha" -#: ../../include/features.php:83 +#: ../../include/features.php:82 msgid "Ability to select posts by date ranges" msgstr "Capacidad de seleccionar entradas por rango de fechas" -#: ../../include/features.php:84 ../../include/group.php:311 +#: ../../include/features.php:83 ../../include/group.php:311 msgid "Privacy Groups" msgstr "Grupos de canales" -#: ../../include/features.php:84 +#: ../../include/features.php:83 msgid "Enable management and selection of privacy groups" msgstr "Activar la gestión y selección de grupos de canales" -#: ../../include/features.php:85 ../../include/widgets.php:281 -msgid "Saved Searches" -msgstr "Búsquedas guardadas" - -#: ../../include/features.php:85 +#: ../../include/features.php:84 msgid "Save search terms for re-use" msgstr "Guardar términos de búsqueda para su reutilización" -#: ../../include/features.php:86 +#: ../../include/features.php:85 msgid "Network Personal Tab" msgstr "Actividad personal" -#: ../../include/features.php:86 +#: ../../include/features.php:85 msgid "Enable tab to display only Network posts that you've interacted on" msgstr "Habilitar una pestaña en la cual se muestren solo las entradas en las que ha participado." -#: ../../include/features.php:87 +#: ../../include/features.php:86 msgid "Network New Tab" msgstr "Contenido nuevo" -#: ../../include/features.php:87 +#: ../../include/features.php:86 msgid "Enable tab to display all new Network activity" msgstr "Habilitar una pestaña en la que se muestre solo el contenido nuevo" -#: ../../include/features.php:88 +#: ../../include/features.php:87 msgid "Affinity Tool" msgstr "Herramienta de afinidad" -#: ../../include/features.php:88 +#: ../../include/features.php:87 msgid "Filter stream activity by depth of relationships" msgstr "Filtrar el contenido según la profundidad de las relaciones" -#: ../../include/features.php:89 +#: ../../include/features.php:88 msgid "Connection Filtering" msgstr "Filtrado de conexiones" -#: ../../include/features.php:89 +#: ../../include/features.php:88 msgid "Filter incoming posts from connections based on keywords/content" msgstr "Filtrar publicaciones entrantes de conexiones por palabras clave o contenido" -#: ../../include/features.php:90 +#: ../../include/features.php:89 msgid "Show channel suggestions" msgstr "Mostrar sugerencias de canales" -#: ../../include/features.php:95 +#: ../../include/features.php:94 msgid "Post/Comment Tools" msgstr "Gestión de entradas y comentarios" -#: ../../include/features.php:96 +#: ../../include/features.php:95 msgid "Community Tagging" msgstr "Etiquetas de la comunidad" -#: ../../include/features.php:96 +#: ../../include/features.php:95 msgid "Ability to tag existing posts" msgstr "Capacidad de etiquetar entradas existentes" -#: ../../include/features.php:97 +#: ../../include/features.php:96 msgid "Post Categories" msgstr "Categorías de entradas" -#: ../../include/features.php:97 +#: ../../include/features.php:96 msgid "Add categories to your posts" msgstr "Añadir categorías a sus publicaciones" -#: ../../include/features.php:98 +#: ../../include/features.php:97 msgid "Emoji Reactions" msgstr "Emoticonos \"emoji\"" -#: ../../include/features.php:98 +#: ../../include/features.php:97 msgid "Add emoji reaction ability to posts" msgstr "Activar la capacidad de añadir un emoticono \"emoji\" a las entradas" -#: ../../include/features.php:99 ../../include/widgets.php:310 -#: ../../include/contact_widgets.php:53 -msgid "Saved Folders" -msgstr "Carpetas guardadas" - -#: ../../include/features.php:99 +#: ../../include/features.php:98 msgid "Ability to file posts under folders" msgstr "Capacidad de archivar entradas en carpetas" -#: ../../include/features.php:100 +#: ../../include/features.php:99 msgid "Dislike Posts" msgstr "Desagrado de publicaciones" -#: ../../include/features.php:100 +#: ../../include/features.php:99 msgid "Ability to dislike posts/comments" msgstr "Capacidad de mostrar desacuerdo con el contenido de entradas y comentarios" -#: ../../include/features.php:101 +#: ../../include/features.php:100 msgid "Star Posts" msgstr "Entradas destacadas" -#: ../../include/features.php:101 +#: ../../include/features.php:100 msgid "Ability to mark special posts with a star indicator" msgstr "Capacidad de marcar entradas destacadas con un indicador de estrella" -#: ../../include/features.php:102 +#: ../../include/features.php:101 msgid "Tag Cloud" msgstr "Nube de etiquetas" -#: ../../include/features.php:102 +#: ../../include/features.php:101 msgid "Provide a personal tag cloud on your channel page" msgstr "Proveer nube de etiquetas personal en su página de canal" +#: ../../include/oembed.php:324 +msgid "Embedded content" +msgstr "Contenido incorporado" + +#: ../../include/oembed.php:333 +msgid "Embedding disabled" +msgstr "Incrustación deshabilitada" + +#: ../../include/acl_selectors.php:271 +msgid "Who can see this?" +msgstr "¿Quién puede ver esto?" + +#: ../../include/acl_selectors.php:272 +msgid "Custom selection" +msgstr "Selección personalizada" + +#: ../../include/acl_selectors.php:273 +msgid "" +"Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit" +" the scope of \"Show\"." +msgstr "Seleccione \"Mostrar\" para permitir la visualización. La opción \"No mostrar\" le permite anular y limitar el alcance de \"Mostrar\"." + +#: ../../include/acl_selectors.php:274 +msgid "Show" +msgstr "Mostrar" + +#: ../../include/acl_selectors.php:275 +msgid "Don't show" +msgstr "No mostrar" + +#: ../../include/acl_selectors.php:281 +msgid "Other networks and post services" +msgstr "Otras redes y servicios de publicación" + +#: ../../include/acl_selectors.php:311 +#, php-format +msgid "" +"Post permissions %s cannot be changed %s after a post is shared.
These" +" permissions set who is allowed to view the post." +msgstr "Los permisos de la entrada %s no se pueden cambiar %s una vez que se ha compartido.
Estos permisos establecen quién está autorizado para ver el mensaje." + +#: ../../include/auth.php:105 +msgid "Logged out." +msgstr "Desconectado/a." + +#: ../../include/auth.php:212 +msgid "Failed authentication" +msgstr "Autenticación fallida." + +#: ../../include/datetime.php:135 +msgid "Birthday" +msgstr "Cumpleaños" + +#: ../../include/datetime.php:137 +msgid "Age: " +msgstr "Edad:" + +#: ../../include/datetime.php:139 +msgid "YYYY-MM-DD or MM-DD" +msgstr "AAAA-MM-DD o MM-DD" + +#: ../../include/datetime.php:272 ../../boot.php:2470 +msgid "never" +msgstr "nunca" + +#: ../../include/datetime.php:278 +msgid "less than a second ago" +msgstr "hace un instante" + +#: ../../include/datetime.php:296 +#, php-format +msgctxt "e.g. 22 hours ago, 1 minute ago" +msgid "%1$d %2$s ago" +msgstr "hace %1$d %2$s" + +#: ../../include/datetime.php:307 +msgctxt "relative_date" +msgid "year" +msgid_plural "years" +msgstr[0] "año" +msgstr[1] "años" + +#: ../../include/datetime.php:310 +msgctxt "relative_date" +msgid "month" +msgid_plural "months" +msgstr[0] "mes" +msgstr[1] "meses" + +#: ../../include/datetime.php:313 +msgctxt "relative_date" +msgid "week" +msgid_plural "weeks" +msgstr[0] "semana" +msgstr[1] "semanas" + +#: ../../include/datetime.php:316 +msgctxt "relative_date" +msgid "day" +msgid_plural "days" +msgstr[0] "día" +msgstr[1] "días" + +#: ../../include/datetime.php:319 +msgctxt "relative_date" +msgid "hour" +msgid_plural "hours" +msgstr[0] "hora" +msgstr[1] "horas" + +#: ../../include/datetime.php:322 +msgctxt "relative_date" +msgid "minute" +msgid_plural "minutes" +msgstr[0] "minuto" +msgstr[1] "minutos" + +#: ../../include/datetime.php:325 +msgctxt "relative_date" +msgid "second" +msgid_plural "seconds" +msgstr[0] "segundo" +msgstr[1] "segundos" + +#: ../../include/datetime.php:562 +#, php-format +msgid "%1$s's birthday" +msgstr "Cumpleaños de %1$s" + +#: ../../include/datetime.php:563 +#, php-format +msgid "Happy Birthday %1$s" +msgstr "Feliz cumpleaños %1$s" + #: ../../include/group.php:26 msgid "" "A deleted group with this name was revived. Existing item permissions " @@ -8808,583 +9119,21 @@ msgstr "Añadir un grupo de canales" msgid "Channels not in any privacy group" msgstr "Sin canales en ningún grupo" -#: ../../include/group.php:316 ../../include/widgets.php:282 -msgid "add" -msgstr "añadir" - -#: ../../include/event.php:22 ../../include/event.php:69 -#: ../../include/bb2diaspora.php:485 -msgid "l F d, Y \\@ g:i A" -msgstr "l d de F, Y \\@ G:i" - -#: ../../include/event.php:30 ../../include/event.php:73 -#: ../../include/bb2diaspora.php:491 -msgid "Starts:" -msgstr "Comienza:" - -#: ../../include/event.php:40 ../../include/event.php:77 -#: ../../include/bb2diaspora.php:499 -msgid "Finishes:" -msgstr "Finaliza:" - -#: ../../include/event.php:814 -msgid "This event has been added to your calendar." -msgstr "Este evento ha sido añadido a su calendario." - -#: ../../include/event.php:1014 -msgid "Not specified" -msgstr "Sin especificar" - -#: ../../include/event.php:1015 -msgid "Needs Action" -msgstr "Necesita de una intervención" - -#: ../../include/event.php:1016 -msgid "Completed" -msgstr "Completado/a" - -#: ../../include/event.php:1017 -msgid "In Process" -msgstr "En proceso" - -#: ../../include/event.php:1018 -msgid "Cancelled" -msgstr "Cancelado/a" - -#: ../../include/account.php:28 -msgid "Not a valid email address" -msgstr "Dirección de correo no válida" - -#: ../../include/account.php:30 -msgid "Your email domain is not among those allowed on this site" -msgstr "Su dirección de correo no pertenece a ninguno de los dominios permitidos en este sitio." - -#: ../../include/account.php:36 -msgid "Your email address is already registered at this site." -msgstr "Su dirección de correo está ya registrada en este sitio." - -#: ../../include/account.php:68 -msgid "An invitation is required." -msgstr "Es obligatorio que le inviten." - -#: ../../include/account.php:72 -msgid "Invitation could not be verified." -msgstr "No se ha podido verificar su invitación." - -#: ../../include/account.php:122 -msgid "Please enter the required information." -msgstr "Por favor introduzca la información requerida." - -#: ../../include/account.php:189 -msgid "Failed to store account information." -msgstr "La información de la cuenta no se ha podido guardar." - -#: ../../include/account.php:249 -#, php-format -msgid "Registration confirmation for %s" -msgstr "Confirmación de registro para %s" - -#: ../../include/account.php:315 -#, php-format -msgid "Registration request at %s" -msgstr "Solicitud de registro en %s" - -#: ../../include/account.php:339 -msgid "your registration password" -msgstr "su contraseña de registro" - -#: ../../include/account.php:342 ../../include/account.php:402 -#, php-format -msgid "Registration details for %s" -msgstr "Detalles del registro de %s" - -#: ../../include/account.php:414 -msgid "Account approved." -msgstr "Cuenta aprobada." - -#: ../../include/account.php:454 -#, php-format -msgid "Registration revoked for %s" -msgstr "Registro revocado para %s" - -#: ../../include/account.php:739 ../../include/account.php:741 -msgid "Click here to upgrade." -msgstr "Pulse aquí para actualizar" - -#: ../../include/account.php:747 -msgid "This action exceeds the limits set by your subscription plan." -msgstr "Esta acción supera los límites establecidos por su plan de suscripción " - -#: ../../include/account.php:752 -msgid "This action is not available under your subscription plan." -msgstr "Esta acción no está disponible en su plan de suscripción." - -#: ../../include/follow.php:27 -msgid "Channel is blocked on this site." -msgstr "El canal está bloqueado en este sitio." - -#: ../../include/follow.php:32 -msgid "Channel location missing." -msgstr "Falta la dirección del canal." - -#: ../../include/follow.php:80 -msgid "Response from remote channel was incomplete." -msgstr "Respuesta incompleta del canal." - -#: ../../include/follow.php:97 -msgid "Channel was deleted and no longer exists." -msgstr "El canal ha sido eliminado y ya no existe." - -#: ../../include/follow.php:147 ../../include/follow.php:183 -msgid "Protocol disabled." -msgstr "Protocolo deshabilitado." - -#: ../../include/follow.php:171 -msgid "Channel discovery failed." -msgstr "El intento de acceder al canal ha fallado." - -#: ../../include/follow.php:210 -msgid "Cannot connect to yourself." -msgstr "No puede conectarse consigo mismo." - -#: ../../include/attach.php:247 ../../include/attach.php:333 -msgid "Item was not found." -msgstr "Elemento no encontrado." - -#: ../../include/attach.php:499 -msgid "No source file." -msgstr "Ningún fichero de origen" - -#: ../../include/attach.php:521 -msgid "Cannot locate file to replace" -msgstr "No se puede localizar el fichero que va a ser sustituido." - -#: ../../include/attach.php:539 -msgid "Cannot locate file to revise/update" -msgstr "No se puede localizar el fichero para revisar/actualizar" - -#: ../../include/attach.php:674 -#, php-format -msgid "File exceeds size limit of %d" -msgstr "El fichero supera el limite de tamaño de %d" - -#: ../../include/attach.php:688 -#, php-format -msgid "You have reached your limit of %1$.0f Mbytes attachment storage." -msgstr "Ha alcanzado su límite de %1$.0f Mbytes de almacenamiento de adjuntos." - -#: ../../include/attach.php:846 -msgid "File upload failed. Possible system limit or action terminated." -msgstr "Error de carga, posiblemente por limite del sistema o porque la acción ha finalizado." - -#: ../../include/attach.php:859 -msgid "Stored file could not be verified. Upload failed." -msgstr "El fichero almacenado no ha podido ser verificado. El envío ha fallado." - -#: ../../include/attach.php:915 ../../include/attach.php:931 -msgid "Path not available." -msgstr "Ruta no disponible." - -#: ../../include/attach.php:977 ../../include/attach.php:1129 -msgid "Empty pathname" -msgstr "Ruta vacía" - -#: ../../include/attach.php:1003 -msgid "duplicate filename or path" -msgstr "Nombre duplicado de ruta o fichero" - -#: ../../include/attach.php:1025 -msgid "Path not found." -msgstr "Ruta no encontrada" - -#: ../../include/attach.php:1083 -msgid "mkdir failed." -msgstr "mkdir ha fallado." - -#: ../../include/attach.php:1087 -msgid "database storage failed." -msgstr "el almacenamiento en la base de datos ha fallado." - -#: ../../include/attach.php:1135 -msgid "Empty path" -msgstr "Ruta vacía" - -#: ../../include/bbcode.php:123 ../../include/bbcode.php:878 -#: ../../include/bbcode.php:881 ../../include/bbcode.php:886 -#: ../../include/bbcode.php:889 ../../include/bbcode.php:892 -#: ../../include/bbcode.php:895 ../../include/bbcode.php:900 -#: ../../include/bbcode.php:903 ../../include/bbcode.php:908 -#: ../../include/bbcode.php:911 ../../include/bbcode.php:914 -#: ../../include/bbcode.php:917 -msgid "Image/photo" -msgstr "Imagen/foto" - -#: ../../include/bbcode.php:162 ../../include/bbcode.php:928 -msgid "Encrypted content" -msgstr "Contenido cifrado" - -#: ../../include/bbcode.php:178 -#, php-format -msgid "Install %s element: " -msgstr "Instalar el elemento %s:" - -#: ../../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 "Esta entrada contiene el elemento instalable %s, sin embargo le faltan permisos para instalarlo en este sitio." - -#: ../../include/bbcode.php:261 -#, php-format -msgid "%1$s wrote the following %2$s %3$s" -msgstr "%1$s escribió %2$s siguiente %3$s" - -#: ../../include/bbcode.php:338 ../../include/bbcode.php:346 -msgid "Click to open/close" -msgstr "Pulsar para abrir/cerrar" - -#: ../../include/bbcode.php:346 -msgid "spoiler" -msgstr "spoiler" - -#: ../../include/bbcode.php:619 -msgid "Different viewers will see this text differently" -msgstr "Visitantes diferentes verán este texto de forma distinta" - -#: ../../include/bbcode.php:866 -msgid "$1 wrote:" -msgstr "$1 escribió:" - -#: ../../include/items.php:897 ../../include/items.php:942 -msgid "(Unknown)" -msgstr "(Desconocido)" - -#: ../../include/items.php:1141 -msgid "Visible to anybody on the internet." -msgstr "Visible para cualquiera en internet." - -#: ../../include/items.php:1143 -msgid "Visible to you only." -msgstr "Visible sólo para usted." - -#: ../../include/items.php:1145 -msgid "Visible to anybody in this network." -msgstr "Visible para cualquiera en esta red." - -#: ../../include/items.php:1147 -msgid "Visible to anybody authenticated." -msgstr "Visible para cualquiera que esté autenticado." - -#: ../../include/items.php:1149 -#, php-format -msgid "Visible to anybody on %s." -msgstr "Visible para cualquiera en %s." - -#: ../../include/items.php:1151 -msgid "Visible to all connections." -msgstr "Visible para todas las conexiones." - -#: ../../include/items.php:1153 -msgid "Visible to approved connections." -msgstr "Visible para las conexiones permitidas." - -#: ../../include/items.php:1155 -msgid "Visible to specific connections." -msgstr "Visible para conexiones específicas." - -#: ../../include/items.php:3918 -msgid "Privacy group is empty." -msgstr "El grupo de canales está vacío." - -#: ../../include/items.php:3925 -#, php-format -msgid "Privacy group: %s" -msgstr "Grupo de canales: %s" - -#: ../../include/items.php:3937 -msgid "Connection not found." -msgstr "Conexión no encontrada" - -#: ../../include/items.php:4290 -msgid "profile photo" -msgstr "foto del perfil" - -#: ../../include/oembed.php:336 -msgid "Embedded content" -msgstr "Contenido incorporado" - -#: ../../include/oembed.php:345 -msgid "Embedding disabled" -msgstr "Incrustación deshabilitada" - -#: ../../include/widgets.php:103 -msgid "System" -msgstr "Sistema" - -#: ../../include/widgets.php:106 -msgid "New App" -msgstr "Nueva aplicación (app)" - -#: ../../include/widgets.php:154 -msgid "Suggestions" -msgstr "Sugerencias" - -#: ../../include/widgets.php:155 -msgid "See more..." -msgstr "Ver más..." - -#: ../../include/widgets.php:175 -#, php-format -msgid "You have %1$.0f of %2$.0f allowed connections." -msgstr "Tiene %1$.0f de %2$.0f conexiones permitidas." - -#: ../../include/widgets.php:181 -msgid "Add New Connection" -msgstr "Añadir nueva conexión" - -#: ../../include/widgets.php:182 -msgid "Enter channel address" -msgstr "Dirección del canal" - -#: ../../include/widgets.php:183 -msgid "Examples: bob@example.com, https://example.com/barbara" -msgstr "Ejemplos: manuel@ejemplo.com, https://ejemplo.com/carmen" - -#: ../../include/widgets.php:199 -msgid "Notes" -msgstr "Notas" - -#: ../../include/widgets.php:273 -msgid "Remove term" -msgstr "Eliminar término" - -#: ../../include/widgets.php:313 ../../include/widgets.php:432 -#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:94 -msgid "Everything" -msgstr "Todo" - -#: ../../include/widgets.php:354 -msgid "Archives" -msgstr "Hemeroteca" - -#: ../../include/widgets.php:516 -msgid "Refresh" -msgstr "Recargar" - -#: ../../include/widgets.php:556 -msgid "Account settings" -msgstr "Configuración de la cuenta" - -#: ../../include/widgets.php:562 -msgid "Channel settings" -msgstr "Configuración del canal" - -#: ../../include/widgets.php:571 -msgid "Additional features" -msgstr "Funcionalidades" - -#: ../../include/widgets.php:578 -msgid "Feature/Addon settings" -msgstr "Complementos" - -#: ../../include/widgets.php:584 -msgid "Display settings" -msgstr "Ajustes de visualización" - -#: ../../include/widgets.php:591 -msgid "Manage locations" -msgstr "Gestión de ubicaciones (clones) del canal" - -#: ../../include/widgets.php:600 -msgid "Export channel" -msgstr "Exportar canal" - -#: ../../include/widgets.php:607 -msgid "Connected apps" -msgstr "Aplicaciones (apps) conectadas" - -#: ../../include/widgets.php:631 -msgid "Premium Channel Settings" -msgstr "Configuración del canal premium" - -#: ../../include/widgets.php:660 -msgid "Private Mail Menu" -msgstr "Menú de correo privado" - -#: ../../include/widgets.php:662 -msgid "Combined View" -msgstr "Vista combinada" - -#: ../../include/widgets.php:694 ../../include/widgets.php:706 -msgid "Conversations" -msgstr "Conversaciones" - -#: ../../include/widgets.php:698 -msgid "Received Messages" -msgstr "Mensajes recibidos" - -#: ../../include/widgets.php:702 -msgid "Sent Messages" -msgstr "Enviar mensajes" - -#: ../../include/widgets.php:716 -msgid "No messages." -msgstr "Sin mensajes." - -#: ../../include/widgets.php:734 -msgid "Delete conversation" -msgstr "Eliminar conversación" - -#: ../../include/widgets.php:760 -msgid "Events Tools" -msgstr "Gestión de eventos" - -#: ../../include/widgets.php:761 -msgid "Export Calendar" -msgstr "Exportar el calendario" - -#: ../../include/widgets.php:762 -msgid "Import Calendar" -msgstr "Importar un calendario" - -#: ../../include/widgets.php:840 -msgid "Overview" -msgstr "Resumen" - -#: ../../include/widgets.php:847 -msgid "Chat Members" -msgstr "Miembros del chat" - -#: ../../include/widgets.php:869 -msgid "Wiki List" -msgstr "Lista de wikis" - -#: ../../include/widgets.php:907 -msgid "Wiki Pages" -msgstr "Páginas del wiki" - -#: ../../include/widgets.php:942 -msgid "Bookmarked Chatrooms" -msgstr "Salas de chat preferidas" - -#: ../../include/widgets.php:965 -msgid "Suggested Chatrooms" -msgstr "Salas de chat sugeridas" - -#: ../../include/widgets.php:1111 ../../include/widgets.php:1223 -msgid "photo/image" -msgstr "foto/imagen" - -#: ../../include/widgets.php:1166 -msgid "Click to show more" -msgstr "Hacer clic para ver más" - -#: ../../include/widgets.php:1317 -msgid "Rating Tools" -msgstr "Valoraciones" - -#: ../../include/widgets.php:1321 ../../include/widgets.php:1323 -msgid "Rate Me" -msgstr "Valorar este canal" - -#: ../../include/widgets.php:1326 -msgid "View Ratings" -msgstr "Mostrar las valoraciones" - -#: ../../include/widgets.php:1410 -msgid "Forums" -msgstr "Foros" - -#: ../../include/widgets.php:1439 -msgid "Tasks" -msgstr "Tareas" - -#: ../../include/widgets.php:1448 -msgid "Documentation" -msgstr "Documentación" - -#: ../../include/widgets.php:1450 -msgid "Project/Site Information" -msgstr "Información sobre el proyecto o sitio" - -#: ../../include/widgets.php:1451 -msgid "For Members" -msgstr "Para los miembros" - -#: ../../include/widgets.php:1452 -msgid "For Administrators" -msgstr "Para los administradores" - -#: ../../include/widgets.php:1453 -msgid "For Developers" -msgstr "Para los desarrolladores" - -#: ../../include/widgets.php:1477 ../../include/widgets.php:1515 -msgid "Member registrations waiting for confirmation" -msgstr "Inscripciones de nuevos miembros pendientes de aprobación" - -#: ../../include/widgets.php:1483 -msgid "Inspect queue" -msgstr "Examinar la cola" - -#: ../../include/widgets.php:1485 -msgid "DB updates" -msgstr "Actualizaciones de la base de datos" - -#: ../../include/widgets.php:1511 -msgid "Plugin Features" -msgstr "Extensiones" - -#: ../../include/activities.php:41 -msgid " and " -msgstr " y " - -#: ../../include/activities.php:49 -msgid "public profile" -msgstr "el perfil público" - -#: ../../include/activities.php:58 -#, php-format -msgid "%1$s changed %2$s to “%3$s”" -msgstr "%1$s ha cambiado %2$s a “%3$s”" - -#: ../../include/activities.php:59 -#, php-format -msgid "Visit %1$s's %2$s" -msgstr "Visitar %2$s de %1$s" - -#: ../../include/activities.php:62 -#, php-format -msgid "%1$s has an updated %2$s, changing %3$s." -msgstr "%1$s ha actualizado %2$s, cambiando %3$s." - -#: ../../include/bb2diaspora.php:398 -msgid "Attachments:" -msgstr "Ficheros adjuntos:" - -#: ../../include/bb2diaspora.php:487 -msgid "$Projectname event notification:" -msgstr "Notificación de eventos de $Projectname:" - #: ../../include/js_strings.php:5 msgid "Delete this item?" msgstr "¿Borrar este elemento?" #: ../../include/js_strings.php:8 -#, php-format -msgid "%s show less" -msgstr "" +msgid "[-] show less" +msgstr "[-] mostrar menos" #: ../../include/js_strings.php:9 -#, php-format -msgid "%s expand" -msgstr "" +msgid "[+] expand" +msgstr "[+] expandir" #: ../../include/js_strings.php:10 -#, php-format -msgid "%s collapse" -msgstr "" +msgid "[-] collapse" +msgstr "[-] contraer" #: ../../include/js_strings.php:11 msgid "Password too short" @@ -9614,223 +9363,278 @@ msgctxt "calendar" msgid "All day" msgstr "Todos los días" -#: ../../include/contact_widgets.php:11 +#: ../../include/network.php:657 +msgid "view full size" +msgstr "Ver en el tamaño original" + +#: ../../include/network.php:1885 +msgid "No Subject" +msgstr "Sin asunto" + +#: ../../include/network.php:2146 ../../include/network.php:2147 +msgid "Friendica" +msgstr "Friendica" + +#: ../../include/network.php:2148 +msgid "OStatus" +msgstr "OStatus" + +#: ../../include/network.php:2149 +msgid "GNU-Social" +msgstr "GNU Social" + +#: ../../include/network.php:2150 +msgid "RSS/Atom" +msgstr "RSS/Atom" + +#: ../../include/network.php:2152 +msgid "Diaspora" +msgstr "Diaspora" + +#: ../../include/network.php:2153 +msgid "Facebook" +msgstr "Facebook" + +#: ../../include/network.php:2154 +msgid "Zot" +msgstr "Zot" + +#: ../../include/network.php:2155 +msgid "LinkedIn" +msgstr "LinkedIn" + +#: ../../include/network.php:2156 +msgid "XMPP/IM" +msgstr "XMPP/IM" + +#: ../../include/network.php:2157 +msgid "MySpace" +msgstr "MySpace" + +#: ../../include/photos.php:110 #, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "%d invitación pendiente" -msgstr[1] "%d invitaciones disponibles" +msgid "Image exceeds website size limit of %lu bytes" +msgstr "La imagen excede el límite de %lu bytes del sitio" -#: ../../include/contact_widgets.php:19 -msgid "Find Channels" -msgstr "Encontrar canales" +#: ../../include/photos.php:117 +msgid "Image file is empty." +msgstr "El fichero de imagen está vacío. " -#: ../../include/contact_widgets.php:20 -msgid "Enter name or interest" -msgstr "Introducir nombre o interés" +#: ../../include/photos.php:255 +msgid "Photo storage failed." +msgstr "La foto no ha podido ser guardada." -#: ../../include/contact_widgets.php:21 -msgid "Connect/Follow" -msgstr "Conectar/Seguir" +#: ../../include/photos.php:295 +msgid "a new photo" +msgstr "una nueva foto" -#: ../../include/contact_widgets.php:22 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "Ejemplos: José Fernández, Pesca" - -#: ../../include/contact_widgets.php:26 -msgid "Random Profile" -msgstr "Perfil aleatorio" - -#: ../../include/contact_widgets.php:27 -msgid "Invite Friends" -msgstr "Invitar a amigos" - -#: ../../include/contact_widgets.php:29 -msgid "Advanced example: name=fred and country=iceland" -msgstr "Ejemplo avanzado: nombre=juan y país=españa" - -#: ../../include/contact_widgets.php:122 +#: ../../include/photos.php:299 #, php-format -msgid "%d connection in common" -msgid_plural "%d connections in common" -msgstr[0] "%d conexión en común" -msgstr[1] "%d conexiones en común" +msgctxt "photo_upload" +msgid "%1$s posted %2$s to %3$s" +msgstr "%1$s ha publicado %2$s en %3$s" -#: ../../include/contact_widgets.php:127 -msgid "show more" -msgstr "mostrar más" +#: ../../include/photos.php:506 +msgid "Upload New Photos" +msgstr "Subir nuevas fotos" -#: ../../include/dir_fns.php:141 -msgid "Directory Options" -msgstr "Opciones del directorio" - -#: ../../include/dir_fns.php:143 -msgid "Safe Mode" -msgstr "Modo seguro" - -#: ../../include/dir_fns.php:144 -msgid "Public Forums Only" -msgstr "Solo foros públicos" - -#: ../../include/dir_fns.php:145 -msgid "This Website Only" -msgstr "Solo este sitio web" - -#: ../../include/message.php:20 -msgid "No recipient provided." -msgstr "No se ha especificado ningún destinatario." - -#: ../../include/message.php:25 -msgid "[no subject]" -msgstr "[sin asunto]" - -#: ../../include/message.php:45 -msgid "Unable to determine sender." -msgstr "No ha sido posible determinar el remitente. " - -#: ../../include/message.php:222 -msgid "Stored post could not be verified." -msgstr "No se han podido verificar las publicaciones guardadas." - -#: ../../include/acl_selectors.php:269 -msgid "Who can see this?" -msgstr "¿Quién puede ver esto?" - -#: ../../include/acl_selectors.php:270 -msgid "Custom selection" -msgstr "Selección personalizada" - -#: ../../include/acl_selectors.php:271 -msgid "" -"Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit" -" the scope of \"Show\"." -msgstr "Seleccione \"Mostrar\" para permitir la visualización. La opción \"No mostrar\" le permite anular y limitar el alcance de \"Mostrar\"." - -#: ../../include/acl_selectors.php:272 -msgid "Show" -msgstr "Mostrar" - -#: ../../include/acl_selectors.php:273 -msgid "Don't show" -msgstr "No mostrar" - -#: ../../include/acl_selectors.php:279 -msgid "Other networks and post services" -msgstr "Otras redes y servicios de publicación" - -#: ../../include/acl_selectors.php:309 -#, php-format -msgid "" -"Post permissions %s cannot be changed %s after a post is shared.
These" -" permissions set who is allowed to view the post." -msgstr "Los permisos de la entrada %s no se pueden cambiar %s una vez que se ha compartido.
Estos permisos establecen quién está autorizado para ver el mensaje." - -#: ../../include/datetime.php:135 -msgid "Birthday" -msgstr "Cumpleaños" - -#: ../../include/datetime.php:137 -msgid "Age: " -msgstr "Edad:" - -#: ../../include/datetime.php:139 -msgid "YYYY-MM-DD or MM-DD" -msgstr "AAAA-MM-DD o MM-DD" - -#: ../../include/datetime.php:272 ../../boot.php:2479 -msgid "never" -msgstr "nunca" - -#: ../../include/datetime.php:278 -msgid "less than a second ago" -msgstr "hace un instante" - -#: ../../include/datetime.php:296 -#, php-format -msgctxt "e.g. 22 hours ago, 1 minute ago" -msgid "%1$d %2$s ago" -msgstr "hace %1$d %2$s" - -#: ../../include/datetime.php:307 -msgctxt "relative_date" -msgid "year" -msgid_plural "years" -msgstr[0] "año" -msgstr[1] "años" - -#: ../../include/datetime.php:310 -msgctxt "relative_date" -msgid "month" -msgid_plural "months" -msgstr[0] "mes" -msgstr[1] "meses" - -#: ../../include/datetime.php:313 -msgctxt "relative_date" -msgid "week" -msgid_plural "weeks" -msgstr[0] "semana" -msgstr[1] "semanas" - -#: ../../include/datetime.php:316 -msgctxt "relative_date" -msgid "day" -msgid_plural "days" -msgstr[0] "día" -msgstr[1] "días" - -#: ../../include/datetime.php:319 -msgctxt "relative_date" -msgid "hour" -msgid_plural "hours" -msgstr[0] "hora" -msgstr[1] "horas" - -#: ../../include/datetime.php:322 -msgctxt "relative_date" -msgid "minute" -msgid_plural "minutes" -msgstr[0] "minuto" -msgstr[1] "minutos" - -#: ../../include/datetime.php:325 -msgctxt "relative_date" -msgid "second" -msgid_plural "seconds" -msgstr[0] "segundo" -msgstr[1] "segundos" - -#: ../../include/datetime.php:562 -#, php-format -msgid "%1$s's birthday" -msgstr "Cumpleaños de %1$s" - -#: ../../include/datetime.php:563 -#, php-format -msgid "Happy Birthday %1$s" -msgstr "Feliz cumpleaños %1$s" - -#: ../../include/api.php:1327 -msgid "Public Timeline" -msgstr "Cronología pública" - -#: ../../include/zot.php:697 +#: ../../include/zot.php:699 msgid "Invalid data packet" msgstr "Paquete de datos no válido" -#: ../../include/zot.php:713 +#: ../../include/zot.php:715 msgid "Unable to verify channel signature" msgstr "No ha sido posible de verificar la firma del canal" -#: ../../include/zot.php:2326 +#: ../../include/zot.php:2363 #, php-format msgid "Unable to verify site signature for %s" msgstr "No ha sido posible de verificar la firma del sitio para %s" -#: ../../include/zot.php:3703 +#: ../../include/zot.php:3712 msgid "invalid target signature" msgstr "La firma recibida no es válida" +#: ../../include/page_widgets.php:6 +msgid "New Page" +msgstr "Nueva página" + +#: ../../include/page_widgets.php:43 +msgid "Title" +msgstr "Título" + +#: ../../include/permissions.php:26 +msgid "Can view my normal stream and posts" +msgstr "Pueden verse mi actividad y publicaciones normales" + +#: ../../include/permissions.php:27 +msgid "Can view my default channel profile" +msgstr "Puede verse mi perfil de canal predeterminado." + +#: ../../include/permissions.php:28 +msgid "Can view my connections" +msgstr "Pueden verse mis conexiones" + +#: ../../include/permissions.php:29 +msgid "Can view my file storage and photos" +msgstr "Pueden verse mi repositorio de ficheros y mis fotos" + +#: ../../include/permissions.php:30 +msgid "Can view my webpages" +msgstr "Pueden verse mis páginas web" + +#: ../../include/permissions.php:33 +msgid "Can send me their channel stream and posts" +msgstr "Me pueden enviar sus entradas y contenidos del canal" + +#: ../../include/permissions.php:34 +msgid "Can post on my channel page (\"wall\")" +msgstr "Pueden crearse entradas en mi página de inicio del canal (“muro”)" + +#: ../../include/permissions.php:35 +msgid "Can comment on or like my posts" +msgstr "Pueden publicarse comentarios en mis publicaciones o marcar mis entradas con 'me gusta'." + +#: ../../include/permissions.php:36 +msgid "Can send me private mail messages" +msgstr "Se me pueden enviar mensajes privados" + +#: ../../include/permissions.php:37 +msgid "Can like/dislike stuff" +msgstr "Puede marcarse contenido como me gusta/no me gusta" + +#: ../../include/permissions.php:37 +msgid "Profiles and things other than posts/comments" +msgstr "Perfiles y otras cosas aparte de publicaciones/comentarios" + +#: ../../include/permissions.php:39 +msgid "Can forward to all my channel contacts via post @mentions" +msgstr "Puede enviarse una entrada a todos mis contactos del canal mediante una @mención" + +#: ../../include/permissions.php:39 +msgid "Advanced - useful for creating group forum channels" +msgstr "Avanzado - útil para crear canales de foros de discusión o grupos" + +#: ../../include/permissions.php:40 +msgid "Can chat with me (when available)" +msgstr "Se puede charlar conmigo (cuando esté disponible)" + +#: ../../include/permissions.php:41 +msgid "Can write to my file storage and photos" +msgstr "Puede escribirse en mi repositorio de ficheros y fotos" + +#: ../../include/permissions.php:42 +msgid "Can edit my webpages" +msgstr "Pueden editarse mis páginas web" + +#: ../../include/permissions.php:44 +msgid "Can source my public posts in derived channels" +msgstr "Pueden utilizarse mis publicaciones públicas como origen de contenidos en canales derivados" + +#: ../../include/permissions.php:44 +msgid "Somewhat advanced - very useful in open communities" +msgstr "Algo avanzado - muy útil en comunidades abiertas" + +#: ../../include/permissions.php:46 +msgid "Can administer my channel resources" +msgstr "Pueden administrarse mis recursos del canal" + +#: ../../include/permissions.php:46 +msgid "" +"Extremely advanced. Leave this alone unless you know what you are doing" +msgstr "Muy avanzado. Déjelo a no ser que sepa bien lo que está haciendo." + +#: ../../include/permissions.php:877 +msgid "Social Networking" +msgstr "Redes sociales" + +#: ../../include/permissions.php:877 +msgid "Social - Mostly Public" +msgstr "Social - Público en su mayor parte" + +#: ../../include/permissions.php:877 +msgid "Social - Restricted" +msgstr "Social - Restringido" + +#: ../../include/permissions.php:877 +msgid "Social - Private" +msgstr "Social - Privado" + +#: ../../include/permissions.php:878 +msgid "Community Forum" +msgstr "Foro de discusión" + +#: ../../include/permissions.php:878 +msgid "Forum - Mostly Public" +msgstr "Foro - Público en su mayor parte" + +#: ../../include/permissions.php:878 +msgid "Forum - Restricted" +msgstr "Foro - Restringido" + +#: ../../include/permissions.php:878 +msgid "Forum - Private" +msgstr "Foro - Privado" + +#: ../../include/permissions.php:879 +msgid "Feed Republish" +msgstr "Republicar un \"feed\"" + +#: ../../include/permissions.php:879 +msgid "Feed - Mostly Public" +msgstr "Feed - Público en su mayor parte" + +#: ../../include/permissions.php:879 +msgid "Feed - Restricted" +msgstr "Feed - Restringido" + +#: ../../include/permissions.php:880 +msgid "Special Purpose" +msgstr "Propósito especial" + +#: ../../include/permissions.php:880 +msgid "Special - Celebrity/Soapbox" +msgstr "Especial - Celebridad / Tribuna improvisada" + +#: ../../include/permissions.php:880 +msgid "Special - Group Repository" +msgstr "Especial - Repositorio de grupo" + +#: ../../include/permissions.php:881 +msgid "Custom/Expert Mode" +msgstr "Modo personalizado/experto" + +#: ../../include/activities.php:41 +msgid " and " +msgstr " y " + +#: ../../include/activities.php:49 +msgid "public profile" +msgstr "el perfil público" + +#: ../../include/activities.php:58 +#, php-format +msgid "%1$s changed %2$s to “%3$s”" +msgstr "%1$s ha cambiado %2$s a “%3$s”" + +#: ../../include/activities.php:59 +#, php-format +msgid "Visit %1$s's %2$s" +msgstr "Visitar %2$s de %1$s" + +#: ../../include/activities.php:62 +#, php-format +msgid "%1$s has an updated %2$s, changing %3$s." +msgstr "%1$s ha actualizado %2$s, cambiando %3$s." + +#: ../../include/bb2diaspora.php:398 +msgid "Attachments:" +msgstr "Ficheros adjuntos:" + +#: ../../include/bb2diaspora.php:487 +msgid "$Projectname event notification:" +msgstr "Notificación de eventos de $Projectname:" + #: ../../view/theme/redbasic/php/config.php:82 msgid "Focus (Hubzilla default)" msgstr "Focus (predefinido)" @@ -9967,66 +9771,62 @@ msgstr "Ajustar el tamaño de la foto del autor de la conversación" msgid "Set size of followup author photos" msgstr "Ajustar el tamaño de foto de los seguidores del autor" -#: ../../boot.php:1163 +#: ../../boot.php:1162 #, php-format msgctxt "opensearch" msgid "Search %1$s (%2$s)" msgstr "Buscar %1$s (%2$s)" -#: ../../boot.php:1163 +#: ../../boot.php:1162 msgctxt "opensearch" msgid "$Projectname" msgstr "$Projectname" -#: ../../boot.php:1481 +#: ../../boot.php:1480 #, php-format msgid "Update %s failed. See error logs." msgstr "La actualización %s ha fallado. Mire el informe de errores." -#: ../../boot.php:1484 +#: ../../boot.php:1483 #, php-format msgid "Update Error at %s" msgstr "Error de actualización en %s" -#: ../../boot.php:1685 +#: ../../boot.php:1684 msgid "" "Create an account to access services and applications within the Hubzilla" msgstr "Crear una cuenta para acceder a los servicios y aplicaciones dentro de Hubzilla" #: ../../boot.php:1706 -msgid "Login/Email" -msgstr "" - -#: ../../boot.php:1707 msgid "Password" msgstr "Contraseña" -#: ../../boot.php:1708 +#: ../../boot.php:1707 msgid "Remember me" msgstr "Recordarme" -#: ../../boot.php:1711 +#: ../../boot.php:1710 msgid "Forgot your password?" msgstr "¿Olvidó su contraseña?" -#: ../../boot.php:2277 +#: ../../boot.php:2276 msgid "toggle mobile" msgstr "cambiar a modo móvil" -#: ../../boot.php:2432 +#: ../../boot.php:2425 msgid "Website SSL certificate is not valid. Please correct." msgstr "El certificado SSL del sitio web no es válido. Por favor, solucione el problema." -#: ../../boot.php:2435 +#: ../../boot.php:2428 #, php-format msgid "[hubzilla] Website SSL error for %s" msgstr "[hubzilla] Error SSL del sitio web en %s" -#: ../../boot.php:2478 +#: ../../boot.php:2469 msgid "Cron/Scheduled tasks not running." msgstr "Las tareas del Planificador/Cron no están funcionando." -#: ../../boot.php:2482 +#: ../../boot.php:2473 #, php-format msgid "[hubzilla] Cron tasks not running on %s" msgstr "[hubzilla] Las tareas de Cron no están funcionando en %s" diff --git a/view/es-es/hstrings.php b/view/es-es/hstrings.php index 0a6812ec4..22c81e350 100644 --- a/view/es-es/hstrings.php +++ b/view/es-es/hstrings.php @@ -4,39 +4,7 @@ if(! function_exists("string_plural_select_es_es")) { function string_plural_select_es_es($n){ return ($n != 1);; }} -App::$rtl = 0; -App::$strings["Social Networking"] = "Redes sociales"; -App::$strings["Social - Mostly Public"] = "Social - Público en su mayor parte"; -App::$strings["Social - Restricted"] = "Social - Restringido"; -App::$strings["Social - Private"] = "Social - Privado"; -App::$strings["Community Forum"] = "Foro de discusión"; -App::$strings["Forum - Mostly Public"] = "Foro - Público en su mayor parte"; -App::$strings["Forum - Restricted"] = "Foro - Restringido"; -App::$strings["Forum - Private"] = "Foro - Privado"; -App::$strings["Feed Republish"] = "Republicar un \"feed\""; -App::$strings["Feed - Mostly Public"] = "Feed - Público en su mayor parte"; -App::$strings["Feed - Restricted"] = "Feed - Restringido"; -App::$strings["Special Purpose"] = "Propósito especial"; -App::$strings["Special - Celebrity/Soapbox"] = "Especial - Celebridad / Tribuna improvisada"; -App::$strings["Special - Group Repository"] = "Especial - Repositorio de grupo"; -App::$strings["Other"] = "Otro"; -App::$strings["Custom/Expert Mode"] = "Modo personalizado/experto"; -App::$strings["Can view my channel stream and posts"] = ""; -App::$strings["Can send me their channel stream and posts"] = "Se me pueden enviar entradas y contenido de un canal"; -App::$strings["Can view my default channel profile"] = "Puede verse mi perfil de canal predeterminado."; -App::$strings["Can view my connections"] = "Pueden verse mis conexiones"; -App::$strings["Can view my file storage and photos"] = "Pueden verse mi repositorio de ficheros y mis fotos"; -App::$strings["Can upload/modify my file storage and photos"] = ""; -App::$strings["Can view my channel webpages"] = ""; -App::$strings["Can create/edit my channel webpages"] = ""; -App::$strings["Can post on my channel (wall) page"] = ""; -App::$strings["Can comment on or like my posts"] = "Pueden publicarse comentarios en mis publicaciones o marcar mis entradas con 'me gusta'."; -App::$strings["Can send me private mail messages"] = "Se me pueden enviar mensajes privados"; -App::$strings["Can like/dislike profiles and profile things"] = ""; -App::$strings["Can forward to all my channel connections via @+ mentions in posts"] = ""; -App::$strings["Can chat with me"] = ""; -App::$strings["Can source my public posts in derived channels"] = "Pueden utilizarse mis publicaciones públicas como origen de contenidos en canales derivados"; -App::$strings["Can administer my channel"] = ""; +; App::$strings["parent"] = "padre"; App::$strings["Collection"] = "Colección"; App::$strings["Principal"] = "Principal"; @@ -69,8 +37,63 @@ App::$strings["Remote authentication blocked. You are logged into this site loca App::$strings["Welcome %s. Remote authentication successful."] = "Bienvenido %s. La identificación desde su servidor se ha llevado a cabo correctamente."; App::$strings["Requested profile is not available."] = "El perfil solicitado no está disponible."; App::$strings["Some blurb about what to do when you're new here"] = "Algunas propuestas para el nuevo usuario sobre qué se puede hacer aquí"; +App::$strings["Block Name"] = "Nombre del bloque"; +App::$strings["Blocks"] = "Bloques"; +App::$strings["Block Title"] = "Título del bloque"; +App::$strings["Created"] = "Creado"; +App::$strings["Edited"] = "Editado"; +App::$strings["Share"] = "Compartir"; +App::$strings["View"] = "Ver"; +App::$strings["Channel not found."] = "Canal no encontrado."; +App::$strings["Permissions denied."] = "Permisos denegados."; +App::$strings["l, F j"] = "l j F"; +App::$strings["Link to Source"] = "Enlazar con la entrada en su ubicación original"; +App::$strings["Edit Event"] = "Editar el evento"; +App::$strings["Create Event"] = "Crear un evento"; +App::$strings["Previous"] = "Anterior"; +App::$strings["Next"] = "Siguiente"; +App::$strings["Export"] = "Exportar"; +App::$strings["Import"] = "Importar"; +App::$strings["Submit"] = "Enviar"; +App::$strings["Today"] = "Hoy"; +App::$strings["You must be logged in to see this page."] = "Debe haber iniciado sesión para poder ver esta página."; +App::$strings["Posts and comments"] = "Publicaciones y comentarios"; +App::$strings["Only posts"] = "Solo publicaciones"; +App::$strings["Insufficient permissions. Request redirected to profile page."] = "Permisos insuficientes. Petición redirigida a la página del perfil."; +App::$strings["Room not found"] = "Sala no encontrada"; +App::$strings["Leave Room"] = "Abandonar la sala"; +App::$strings["Delete Room"] = "Eliminar esta sala"; +App::$strings["I am away right now"] = "Estoy ausente momentáneamente"; +App::$strings["I am online"] = "Estoy conectado/a"; +App::$strings["Bookmark this room"] = "Añadir esta sala a Marcadores"; +App::$strings["Please enter a link URL:"] = "Por favor, introduzca la dirección del enlace:"; +App::$strings["Encrypt text"] = "Cifrar texto"; +App::$strings["Insert web link"] = "Insertar enlace web"; +App::$strings["Feature disabled."] = "Funcionalidad deshabilitada."; +App::$strings["New Chatroom"] = "Nueva sala de chat"; +App::$strings["Chatroom name"] = "Nombre de la sala de chat"; +App::$strings["Expiration of chats (minutes)"] = "Caducidad de los mensajes en los chats (en minutos)"; +App::$strings["Permissions"] = "Permisos"; +App::$strings["%1\$s's Chatrooms"] = "Salas de chat de %1\$s"; +App::$strings["No chatrooms available"] = "No hay salas de chat disponibles"; +App::$strings["Create New"] = "Crear"; +App::$strings["Expiration"] = "Caducidad"; +App::$strings["min"] = "min"; App::$strings["Away"] = "Ausente"; App::$strings["Online"] = "Conectado/a"; +App::$strings["Invalid item."] = "Elemento no válido."; +App::$strings["Bookmark added"] = "Marcador añadido"; +App::$strings["My Bookmarks"] = "Mis marcadores"; +App::$strings["My Connections Bookmarks"] = "Marcadores de mis conexiones"; +App::$strings["Continue"] = "Continuar"; +App::$strings["Premium Channel Setup"] = "Configuración del canal premium"; +App::$strings["Enable premium channel connection restrictions"] = "Habilitar restricciones de conexión del canal premium"; +App::$strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = "Por favor introduzca sus restricciones o condiciones, como recibo de paypal, normas de uso, etc."; +App::$strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = "Este canal puede requerir antes de conectar unos pasos adicionales o el conocimiento de las siguientes condiciones:"; +App::$strings["Potential connections will then see the following text before proceeding:"] = "Las posibles conexiones verán, por tanto, el siguiente texto antes de proceder:"; +App::$strings["By continuing, I certify that I have complied with any instructions provided on this page."] = "Al continuar, certifico que he cumplido con todas las instrucciones proporcionadas en esta página."; +App::$strings["(No specific instructions have been provided by the channel owner.)"] = "(No ha sido proporcionada ninguna instrucción específica por el propietario del canal.)"; +App::$strings["Restricted or Premium Channel"] = "Canal premium o restringido"; App::$strings["Could not access contact record."] = "No se ha podido acceder al registro de contacto."; App::$strings["Could not locate selected profile."] = "No se ha podido localizar el perfil seleccionado."; App::$strings["Connection updated."] = "Conexión actualizada."; @@ -135,7 +158,6 @@ App::$strings["Do not import posts with this text"] = "No importar entradas que App::$strings["This information is public!"] = "¡Esta información es pública!"; App::$strings["Connection Pending Approval"] = "Conexión pendiente de aprobación"; App::$strings["inherited"] = "heredado"; -App::$strings["Submit"] = "Enviar"; App::$strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Por favor, escoja el perfil que quiere mostrar a %s cuando esté viendo su perfil de forma segura."; App::$strings["Their Settings"] = "Sus ajustes"; App::$strings["My Settings"] = "Mis ajustes"; @@ -144,30 +166,6 @@ App::$strings["Some permissions may be inherited from your channel's privacy settings, which have higher priority than individual settings. You can change those settings here but they wont have any impact unless the inherited setting changes."] = "Algunos permisos pueden ser heredados de los ajustes de privacidad de sus canales, los cuales tienen una prioridad más alta que los ajustes individuales. Puede cambiar estos ajustes aquí, pero no tendrán ningún consecuencia hasta que cambie los ajustes heredados."; App::$strings["Last update:"] = "Última actualización:"; App::$strings["Public access denied."] = "Acceso público denegado."; -App::$strings["Item not found."] = "Elemento no encontrado."; -App::$strings["First Name"] = "Nombre"; -App::$strings["Last Name"] = "Apellido"; -App::$strings["Nickname"] = "Sobrenombre o Alias"; -App::$strings["Full Name"] = "Nombre completo"; -App::$strings["Email"] = "Correo electrónico"; -App::$strings["Profile Photo"] = "Foto del perfil"; -App::$strings["Profile Photo 16px"] = "Foto del perfil 16px"; -App::$strings["Profile Photo 32px"] = "Foto del perfil 32px"; -App::$strings["Profile Photo 48px"] = "Foto del perfil 48px"; -App::$strings["Profile Photo 64px"] = "Foto del perfil 64px"; -App::$strings["Profile Photo 80px"] = "Foto del perfil 80px"; -App::$strings["Profile Photo 128px"] = "Foto del perfil 128px"; -App::$strings["Timezone"] = "Huso horario"; -App::$strings["Homepage URL"] = "Dirección de la página personal"; -App::$strings["Language"] = "Idioma"; -App::$strings["Birth Year"] = "Año de nacimiento"; -App::$strings["Birth Month"] = "Mes de nacimiento"; -App::$strings["Birth Day"] = "Día de nacimiento"; -App::$strings["Birthdate"] = "Fecha de nacimiento"; -App::$strings["Gender"] = "Género"; -App::$strings["Male"] = "Hombre"; -App::$strings["Female"] = "Mujer"; -App::$strings["Channel added."] = "Canal añadido."; App::$strings["%d rating"] = array( 0 => "%d valoración", 1 => "%d valoraciones", @@ -198,74 +196,13 @@ App::$strings["Reverse Alphabetic"] = "Alfabético inverso"; App::$strings["Newest to Oldest"] = "De más nuevo a más antiguo"; App::$strings["Oldest to Newest"] = "De más antiguo a más nuevo"; App::$strings["No entries (some entries may be hidden)."] = "Sin entradas (algunas entradas pueden estar ocultas)."; -App::$strings["Continue"] = "Continuar"; -App::$strings["Premium Channel Setup"] = "Configuración del canal premium"; -App::$strings["Enable premium channel connection restrictions"] = "Habilitar restricciones de conexión del canal premium"; -App::$strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = "Por favor introduzca sus restricciones o condiciones, como recibo de paypal, normas de uso, etc."; -App::$strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = "Este canal puede requerir antes de conectar unos pasos adicionales o el conocimiento de las siguientes condiciones:"; -App::$strings["Potential connections will then see the following text before proceeding:"] = "Las posibles conexiones verán, por tanto, el siguiente texto antes de proceder:"; -App::$strings["By continuing, I certify that I have complied with any instructions provided on this page."] = "Al continuar, certifico que he cumplido con todas las instrucciones proporcionadas en esta página."; -App::$strings["(No specific instructions have been provided by the channel owner.)"] = "(No ha sido proporcionada ninguna instrucción específica por el propietario del canal.)"; -App::$strings["Restricted or Premium Channel"] = "Canal premium o restringido"; -App::$strings["Calendar entries imported."] = "Entradas de calendario importadas."; -App::$strings["No calendar entries found."] = "No se han encontrado entradas de calendario."; -App::$strings["Event can not end before it has started."] = "Un evento no puede terminar antes de que haya comenzado."; -App::$strings["Unable to generate preview."] = "No se puede crear la vista previa."; -App::$strings["Event title and start time are required."] = "Se requieren el título del evento y su hora de inicio."; -App::$strings["Event not found."] = "Evento no encontrado."; -App::$strings["event"] = "evento"; -App::$strings["Edit event title"] = "Editar el título del evento"; -App::$strings["Event title"] = "Título del evento"; -App::$strings["Required"] = "Obligatorio"; -App::$strings["Categories (comma-separated list)"] = "Categorías (lista separada por comas)"; -App::$strings["Edit Category"] = "Editar la categoría"; -App::$strings["Category"] = "Categoría"; -App::$strings["Edit start date and time"] = "Modificar la fecha y hora de comienzo"; -App::$strings["Start date and time"] = "Fecha y hora de comienzo"; -App::$strings["Finish date and time are not known or not relevant"] = "La fecha y hora de terminación no se conocen o no son relevantes"; -App::$strings["Edit finish date and time"] = "Modificar la fecha y hora de terminación"; -App::$strings["Finish date and time"] = "Fecha y hora de terminación"; -App::$strings["Adjust for viewer timezone"] = "Ajustar para obtener el visor de los husos horarios"; -App::$strings["Important for events that happen in a particular place. Not practical for global holidays."] = "Importante para los eventos que suceden en un lugar determinado. No es práctico para los globales."; -App::$strings["Edit Description"] = "Editar la descripción"; -App::$strings["Description"] = "Descripción"; -App::$strings["Edit Location"] = "Modificar la dirección"; -App::$strings["Location"] = "Ubicación"; -App::$strings["Share this event"] = "Compartir este evento"; -App::$strings["Preview"] = "Previsualizar"; -App::$strings["Permission settings"] = "Configuración de permisos"; -App::$strings["Advanced Options"] = "Opciones avanzadas"; -App::$strings["l, F j"] = "l j F"; -App::$strings["Edit event"] = "Editar evento"; -App::$strings["Delete event"] = "Borrar evento"; -App::$strings["Link to Source"] = "Enlazar con la entrada en su ubicación original"; -App::$strings["calendar"] = "calendario"; -App::$strings["Edit Event"] = "Editar el evento"; -App::$strings["Create Event"] = "Crear un evento"; -App::$strings["Previous"] = "Anterior"; -App::$strings["Next"] = "Siguiente"; -App::$strings["Export"] = "Exportar"; -App::$strings["View"] = "Ver"; -App::$strings["Month"] = ""; -App::$strings["Week"] = ""; -App::$strings["Day"] = ""; -App::$strings["Today"] = "Hoy"; -App::$strings["Event removed"] = "Evento borrado"; -App::$strings["Failed to remove event"] = "Error al eliminar el evento"; -App::$strings["Bookmark added"] = "Marcador añadido"; -App::$strings["My Bookmarks"] = "Mis marcadores"; -App::$strings["My Connections Bookmarks"] = "Marcadores de mis conexiones"; +App::$strings["Item not found."] = "Elemento no encontrado."; App::$strings["Item not found"] = "Elemento no encontrado"; -App::$strings["Item is not editable"] = "El elemento no es editable"; -App::$strings["Edit post"] = "Editar la entrada"; -App::$strings["Photos"] = "Fotos"; -App::$strings["Cancel"] = "Cancelar"; -App::$strings["Invalid item."] = "Elemento no válido."; -App::$strings["Channel not found."] = "Canal no encontrado."; -App::$strings["Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."] = "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."; -App::$strings["Save to Folder:"] = "Guardar en carpeta:"; -App::$strings["- select -"] = "- seleccionar -"; -App::$strings["Save"] = "Guardar"; +App::$strings["Title (optional)"] = "Título (opcional)"; +App::$strings["Edit Block"] = "Modificar este bloque"; +App::$strings["No channel."] = "Ningún canal."; +App::$strings["Common connections"] = "Conexiones comunes"; +App::$strings["No connections in common."] = "Ninguna conexión en común."; App::$strings["Blocked"] = "Bloqueadas"; App::$strings["Ignored"] = "Ignoradas"; App::$strings["Hidden"] = "Ocultas"; @@ -317,38 +254,51 @@ App::$strings["select a photo from your photo albums"] = "Seleccione una foto de App::$strings["Crop Image"] = "Recortar imagen"; App::$strings["Please adjust the image cropping for optimum viewing."] = "Por favor ajuste el recorte de la imagen para una visión óptima."; App::$strings["Done Editing"] = "Edición completada"; -App::$strings["webpage"] = "página web"; -App::$strings["block"] = "bloque"; -App::$strings["layout"] = "plantilla"; -App::$strings["menu"] = "menú"; -App::$strings["%s element installed"] = "%s elemento instalado"; -App::$strings["%s element installation failed"] = "Elemento con instalación fallida: %s"; -App::$strings["Permissions denied."] = "Permisos denegados."; -App::$strings["Import"] = "Importar"; +App::$strings["Item is not editable"] = "El elemento no es editable"; +App::$strings["Edit post"] = "Editar la entrada"; +App::$strings["Calendar entries imported."] = "Entradas de calendario importadas."; +App::$strings["No calendar entries found."] = "No se han encontrado entradas de calendario."; +App::$strings["Event can not end before it has started."] = "Un evento no puede terminar antes de que haya comenzado."; +App::$strings["Unable to generate preview."] = "No se puede crear la vista previa."; +App::$strings["Event title and start time are required."] = "Se requieren el título del evento y su hora de inicio."; +App::$strings["Event not found."] = "Evento no encontrado."; +App::$strings["event"] = "evento"; +App::$strings["Edit event title"] = "Editar el título del evento"; +App::$strings["Event title"] = "Título del evento"; +App::$strings["Required"] = "Obligatorio"; +App::$strings["Categories (comma-separated list)"] = "Categorías (lista separada por comas)"; +App::$strings["Edit Category"] = "Editar la categoría"; +App::$strings["Category"] = "Categoría"; +App::$strings["Edit start date and time"] = "Modificar la fecha y hora de comienzo"; +App::$strings["Start date and time"] = "Fecha y hora de comienzo"; +App::$strings["Finish date and time are not known or not relevant"] = "La fecha y hora de terminación no se conocen o no son relevantes"; +App::$strings["Edit finish date and time"] = "Modificar la fecha y hora de terminación"; +App::$strings["Finish date and time"] = "Fecha y hora de terminación"; +App::$strings["Adjust for viewer timezone"] = "Ajustar para obtener el visor de los husos horarios"; +App::$strings["Important for events that happen in a particular place. Not practical for global holidays."] = "Importante para los eventos que suceden en un lugar determinado. No es práctico para los globales."; +App::$strings["Edit Description"] = "Editar la descripción"; +App::$strings["Description"] = "Descripción"; +App::$strings["Edit Location"] = "Modificar la dirección"; +App::$strings["Location"] = "Ubicación"; +App::$strings["Share this event"] = "Compartir este evento"; +App::$strings["Preview"] = "Previsualizar"; +App::$strings["Permission settings"] = "Configuración de permisos"; +App::$strings["Advanced Options"] = "Opciones avanzadas"; +App::$strings["Edit event"] = "Editar evento"; +App::$strings["Delete event"] = "Borrar evento"; +App::$strings["calendar"] = "calendario"; +App::$strings["Event removed"] = "Evento borrado"; +App::$strings["Failed to remove event"] = "Error al eliminar el evento"; +App::$strings["Photos"] = "Fotos"; +App::$strings["Cancel"] = "Cancelar"; App::$strings["This site is not a directory server"] = "Este sitio no es un servidor de directorio"; App::$strings["This directory server requires an access token"] = "El servidor de este directorio necesita un \"token\" de acceso"; -App::$strings["You must be logged in to see this page."] = "Debe haber iniciado sesión para poder ver esta página."; -App::$strings["Room not found"] = "Sala no encontrada"; -App::$strings["Leave Room"] = "Abandonar la sala"; -App::$strings["Delete Room"] = "Eliminar esta sala"; -App::$strings["I am away right now"] = "Estoy ausente momentáneamente"; -App::$strings["I am online"] = "Estoy conectado/a"; -App::$strings["Bookmark this room"] = "Añadir esta sala a Marcadores"; -App::$strings["Please enter a link URL:"] = "Por favor, introduzca la dirección del enlace:"; -App::$strings["Encrypt text"] = "Cifrar texto"; -App::$strings["Insert web link"] = "Insertar enlace web"; -App::$strings["Feature disabled."] = "Funcionalidad deshabilitada."; -App::$strings["New Chatroom"] = "Nueva sala de chat"; -App::$strings["Chatroom name"] = "Nombre de la sala de chat"; -App::$strings["Expiration of chats (minutes)"] = "Caducidad de los mensajes en los chats (en minutos)"; -App::$strings["Permissions"] = "Permisos"; -App::$strings["%1\$s's Chatrooms"] = "Salas de chat de %1\$s"; -App::$strings["No chatrooms available"] = "No hay salas de chat disponibles"; -App::$strings["Create New"] = "Crear"; -App::$strings["Expiration"] = "Caducidad"; -App::$strings["min"] = "min"; +App::$strings["Save to Folder:"] = "Guardar en carpeta:"; +App::$strings["- select -"] = "- seleccionar -"; +App::$strings["Save"] = "Guardar"; App::$strings["Invalid message"] = "Mensaje no válido"; App::$strings["no results"] = "sin resultados"; +App::$strings["Delivery report for %1\$s"] = "Informe de entrega para %1\$s"; App::$strings["channel sync processed"] = "se ha realizado la sincronización del canal"; App::$strings["queued"] = "encolado"; App::$strings["posted"] = "enviado"; @@ -360,14 +310,14 @@ App::$strings["recipient not found"] = "destinatario no encontrado"; App::$strings["mail recalled"] = "mensaje de correo revocado"; App::$strings["duplicate mail received"] = "se ha recibido mensaje duplicado"; App::$strings["mail delivered"] = "correo enviado"; -App::$strings["Delivery report for %1\$s"] = "Informe de entrega para %1\$s"; -App::$strings["Options"] = ""; -App::$strings["Redeliver"] = ""; App::$strings["Layout Name"] = "Nombre de la plantilla"; App::$strings["Layout Description (Optional)"] = "Descripción de la plantilla (opcional)"; App::$strings["Edit Layout"] = "Modificar la plantilla"; App::$strings["Page link"] = "Enlace de la página"; App::$strings["Edit Webpage"] = "Editar la página web"; +App::$strings["Channel added."] = "Canal añadido."; +App::$strings["network"] = "red"; +App::$strings["RSS"] = "RSS"; App::$strings["Privacy group created."] = "El grupo de canales ha sido creado."; App::$strings["Could not create privacy group."] = "No se puede crear el grupo de canales"; App::$strings["Privacy group not found."] = "Grupo de canales no encontrado."; @@ -381,33 +331,16 @@ App::$strings["Privacy group editor"] = "Editor de grupos de canales"; App::$strings["Members"] = "Miembros"; App::$strings["All Connected Channels"] = "Todos los canales conectados"; App::$strings["Click on a channel to add or remove."] = "Haga clic en un canal para agregarlo o quitarlo."; -App::$strings["App installed."] = "Aplicación instalada."; -App::$strings["Malformed app."] = "Aplicación con errores"; -App::$strings["Embed code"] = "Código incorporado"; -App::$strings["Edit App"] = "Modificar la aplicación"; -App::$strings["Create App"] = "Crear una aplicación"; -App::$strings["Name of app"] = "Nombre de la aplicación"; -App::$strings["Location (URL) of app"] = "Dirección (URL) de la aplicación"; -App::$strings["Photo icon URL"] = "Dirección del icono"; -App::$strings["80 x 80 pixels - optional"] = "80 x 80 pixels - opcional"; -App::$strings["Categories (optional, comma separated list)"] = "Categorías (opcional, lista separada por comas)"; -App::$strings["Version ID"] = "Versión"; -App::$strings["Price of app"] = "Precio de la aplicación"; -App::$strings["Location (URL) to purchase app"] = "Dirección (URL) donde adquirir la aplicación"; +App::$strings["Share content from Firefox to \$Projectname"] = "Compartir contenido desde Firefox a \$Projectname"; +App::$strings["Activate the Firefox \$Projectname provider"] = "Servicio de compartición de Firefox: activar el proveedor \$Projectname "; +App::$strings["Authorize application connection"] = "Autorizar una conexión de aplicación"; +App::$strings["Return to your app and insert this Securty Code:"] = "Volver a su aplicación e introducir este código de seguridad:"; +App::$strings["Please login to continue."] = "Por favor inicie sesión para continuar."; +App::$strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "¿Desea autorizar a esta aplicación a acceder a sus publicaciones y contactos, y/o crear nuevas publicaciones por usted?"; App::$strings["Documentation Search"] = "Búsqueda de Documentación"; App::$strings["Help:"] = "Ayuda:"; App::$strings["Help"] = "Ayuda"; App::$strings["\$Projectname Documentation"] = "Documentación de \$Projectname"; -App::$strings["Item not available."] = "Elemento no disponible"; -App::$strings["Layout updated."] = "Plantilla actualizada."; -App::$strings["Edit System Page Description"] = "Editor del Sistema de Descripción de Páginas"; -App::$strings["Layout not found."] = "Plantilla no encontrada"; -App::$strings["Module Name:"] = "Nombre del módulo:"; -App::$strings["Layout Help"] = "Ayuda para el diseño de plantillas de página"; -App::$strings["Share content from Firefox to \$Projectname"] = "Compartir contenido desde Firefox a \$Projectname"; -App::$strings["Activate the Firefox \$Projectname provider"] = "Servicio de compartición de Firefox: activar el proveedor \$Projectname "; -App::$strings["network"] = "red"; -App::$strings["RSS"] = "RSS"; App::$strings["Permission Denied."] = "Permiso denegado"; App::$strings["File not found."] = "Fichero no encontrado."; App::$strings["Edit file permissions"] = "Modificar los permisos del fichero"; @@ -419,100 +352,8 @@ App::$strings["Copy/paste this URL to link file from a web page"] = "Copiar/pega App::$strings["Share this file"] = "Compartir este fichero"; App::$strings["Show URL to this file"] = "Mostrar la dirección de este fichero"; App::$strings["Notify your contacts about this file"] = "Avisar a sus contactos sobre este fichero"; -App::$strings["Layouts"] = "Plantillas"; -App::$strings["Comanche page description language help"] = "Página de ayuda del lenguaje de descripción de páginas (PDL) Comanche"; -App::$strings["Layout Description"] = "Descripción de la plantilla"; -App::$strings["Created"] = "Creado"; -App::$strings["Edited"] = "Editado"; -App::$strings["Share"] = "Compartir"; -App::$strings["Download PDL file"] = "Descargar el fichero PDL"; -App::$strings["Like/Dislike"] = "Me gusta/No me gusta"; -App::$strings["This action is restricted to members."] = "Esta acción está restringida solo para miembros."; -App::$strings["Please login with your \$Projectname ID or register as a new \$Projectname member to continue."] = "Por favor, identifíquese con su \$Projectname ID o rregístrese como un nuevo \$Projectname member para continuar."; -App::$strings["Invalid request."] = "Solicitud incorrecta."; -App::$strings["channel"] = "el canal"; -App::$strings["thing"] = "elemento"; -App::$strings["Channel unavailable."] = "Canal no disponible."; -App::$strings["Previous action reversed."] = "Acción anterior revocada."; -App::$strings["photo"] = "foto"; -App::$strings["status"] = "el mensaje de estado"; -App::$strings["%1\$s likes %2\$s's %3\$s"] = "A %1\$s le gusta %3\$s de %2\$s"; -App::$strings["%1\$s doesn't like %2\$s's %3\$s"] = "A %1\$s no le gusta %3\$s de %2\$s"; -App::$strings["%1\$s agrees with %2\$s's %3\$s"] = "%3\$s de %2\$s: %1\$s está de acuerdo"; -App::$strings["%1\$s doesn't agree with %2\$s's %3\$s"] = "%3\$s de %2\$s: %1\$s no está de acuerdo"; -App::$strings["%1\$s abstains from a decision on %2\$s's %3\$s"] = "%3\$s de %2\$s: %1\$s se abstiene"; -App::$strings["%1\$s is attending %2\$s's %3\$s"] = "%3\$s de %2\$s: %1\$s participa"; -App::$strings["%1\$s is not attending %2\$s's %3\$s"] = "%3\$s de %2\$s: %1\$s no participa"; -App::$strings["%1\$s may attend %2\$s's %3\$s"] = "%3\$s de %2\$s: %1\$s quizá participe"; -App::$strings["Action completed."] = "Acción completada."; -App::$strings["Thank you."] = "Gracias."; -App::$strings["Profile not found."] = "Perfil no encontrado."; -App::$strings["Profile deleted."] = "Perfil eliminado."; -App::$strings["Profile-"] = "Perfil-"; -App::$strings["New profile created."] = "El nuevo perfil ha sido creado."; -App::$strings["Profile unavailable to clone."] = "Perfil no disponible para clonar."; -App::$strings["Profile unavailable to export."] = "Perfil no disponible para exportar."; -App::$strings["Profile Name is required."] = "Se necesita el nombre del perfil."; -App::$strings["Marital Status"] = "Estado civil"; -App::$strings["Romantic Partner"] = "Pareja sentimental"; -App::$strings["Likes"] = "Me gusta"; -App::$strings["Dislikes"] = "No me gusta"; -App::$strings["Work/Employment"] = "Trabajo:"; -App::$strings["Religion"] = "Religión"; -App::$strings["Political Views"] = "Ideas políticas"; -App::$strings["Sexual Preference"] = "Preferencia sexual"; -App::$strings["Homepage"] = "Página personal"; -App::$strings["Interests"] = "Intereses"; -App::$strings["Address"] = "Dirección"; -App::$strings["Profile updated."] = "Perfil actualizado."; -App::$strings["Hide your connections list from viewers of this profile"] = "Ocultar la lista de conexiones a los visitantes del perfil"; -App::$strings["Edit Profile Details"] = "Modificar los detalles de este perfil"; -App::$strings["View this profile"] = "Ver este perfil"; -App::$strings["Edit visibility"] = "Editar visibilidad"; -App::$strings["Profile Tools"] = "Gestión del perfil"; -App::$strings["Change cover photo"] = "Cambiar la imagen de portada del perfil"; -App::$strings["Change profile photo"] = "Cambiar la foto del perfil"; -App::$strings["Create a new profile using these settings"] = "Crear un nuevo perfil usando estos ajustes"; -App::$strings["Clone this profile"] = "Clonar este perfil"; -App::$strings["Delete this profile"] = "Eliminar este perfil"; -App::$strings["Add profile things"] = "Añadir cosas al perfil"; -App::$strings["Personal"] = "Personales"; -App::$strings["Relation"] = "Relación"; -App::$strings["Miscellaneous"] = "Varios"; -App::$strings["Import profile from file"] = "Importar perfil desde un fichero"; -App::$strings["Export profile to file"] = "Exportar perfil a un fichero"; -App::$strings["Your gender"] = "Género"; -App::$strings["Marital status"] = "Estado civil"; -App::$strings["Sexual preference"] = "Preferencia sexual"; -App::$strings["Profile name"] = "Nombre del perfil"; -App::$strings["This is your default profile."] = "Este es su perfil principal."; -App::$strings["Your full name"] = "Nombre completo"; -App::$strings["Title/Description"] = "Título o descripción"; -App::$strings["Street address"] = "Dirección"; -App::$strings["Locality/City"] = "Ciudad"; -App::$strings["Region/State"] = "Región o Estado"; -App::$strings["Postal/Zip code"] = "Código postal"; -App::$strings["Country"] = "País"; -App::$strings["Who (if applicable)"] = "Quién (si es pertinente)"; -App::$strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Por ejemplo: ana123, María González, sara@ejemplo.com"; -App::$strings["Since (date)"] = "Desde (fecha)"; -App::$strings["Tell us about yourself"] = "Háblenos de usted"; -App::$strings["Hometown"] = "Lugar de nacimiento"; -App::$strings["Political views"] = "Ideas políticas"; -App::$strings["Religious views"] = "Creencias religiosas"; -App::$strings["Keywords used in directory listings"] = "Palabras clave utilizadas en los listados de directorios"; -App::$strings["Example: fishing photography software"] = "Por ejemplo: software de fotografía submarina"; -App::$strings["Musical interests"] = "Preferencias musicales"; -App::$strings["Books, literature"] = "Libros, literatura"; -App::$strings["Television"] = "Televisión"; -App::$strings["Film/Dance/Culture/Entertainment"] = "Cine, danza, cultura, entretenimiento"; -App::$strings["Hobbies/Interests"] = "Aficiones o intereses"; -App::$strings["Love/Romance"] = "Vida sentimental o amorosa"; -App::$strings["School/Education"] = "Estudios"; -App::$strings["Contact information and social networks"] = "Información de contacto y redes sociales"; -App::$strings["My other channels"] = "Mis otros canales"; -App::$strings["Profile Image"] = "Imagen del perfil"; -App::$strings["Edit Profiles"] = "Editar perfiles"; +App::$strings["Apps"] = "Aplicaciones (apps)"; +App::$strings["Item not available."] = "Elemento no disponible"; App::$strings["Your service plan only allows %d channels."] = "Su paquete de servicios solo permite %d canales."; App::$strings["Nothing to import."] = "No hay nada para importar."; App::$strings["Unable to download data from old server"] = "No se han podido descargar datos de su antiguo servidor"; @@ -533,8 +374,6 @@ App::$strings["For either option, please choose whether to make this hub your ne App::$strings["Make this hub my primary location"] = "Convertir este servidor en mi ubicación primaria"; App::$strings["Import existing posts if possible (experimental - limited by available memory"] = "Importar el contenido publicado si es posible (experimental - limitado por la memoria disponible"; App::$strings["This process may take several minutes to complete. Please submit the form only once and leave this page open until finished."] = "Este proceso puede tardar varios minutos en completarse. Por favor envíe el formulario una sola vez y mantenga esta página abierta hasta que termine."; -App::$strings["\$Projectname"] = "\$Projectname"; -App::$strings["Welcome to %s"] = "Bienvenido a %s"; App::$strings["Unable to locate original post."] = "No ha sido posible encontrar la entrada original."; App::$strings["Empty post discarded."] = "La entrada vacía ha sido desechada."; App::$strings["Executable content type not permitted to this channel."] = "Contenido de tipo ejecutable no permitido en este canal."; @@ -543,6 +382,229 @@ App::$strings["System error. Post not saved."] = "Error del sistema. La entrada App::$strings["Unable to obtain post information from database."] = "No ha sido posible obtener información de la entrada en la base de datos."; App::$strings["You have reached your limit of %1$.0f top level posts."] = "Ha alcanzado su límite de %1$.0f entradas en la página principal."; App::$strings["You have reached your limit of %1$.0f webpages."] = "Ha alcanzado su límite de %1$.0f páginas web."; +App::$strings["Layouts"] = "Plantillas"; +App::$strings["Comanche page description language help"] = "Página de ayuda del lenguaje de descripción de páginas (PDL) Comanche"; +App::$strings["Layout Description"] = "Descripción de la plantilla"; +App::$strings["Download PDL file"] = "Descargar el fichero PDL"; +App::$strings["\$Projectname"] = "\$Projectname"; +App::$strings["Welcome to %s"] = "Bienvenido a %s"; +App::$strings["First Name"] = "Nombre"; +App::$strings["Last Name"] = "Apellido"; +App::$strings["Nickname"] = "Sobrenombre o Alias"; +App::$strings["Full Name"] = "Nombre completo"; +App::$strings["Email"] = "Correo electrónico"; +App::$strings["Profile Photo"] = "Foto del perfil"; +App::$strings["Profile Photo 16px"] = "Foto del perfil 16px"; +App::$strings["Profile Photo 32px"] = "Foto del perfil 32px"; +App::$strings["Profile Photo 48px"] = "Foto del perfil 48px"; +App::$strings["Profile Photo 64px"] = "Foto del perfil 64px"; +App::$strings["Profile Photo 80px"] = "Foto del perfil 80px"; +App::$strings["Profile Photo 128px"] = "Foto del perfil 128px"; +App::$strings["Timezone"] = "Huso horario"; +App::$strings["Homepage URL"] = "Dirección de la página personal"; +App::$strings["Language"] = "Idioma"; +App::$strings["Birth Year"] = "Año de nacimiento"; +App::$strings["Birth Month"] = "Mes de nacimiento"; +App::$strings["Birth Day"] = "Día de nacimiento"; +App::$strings["Birthdate"] = "Fecha de nacimiento"; +App::$strings["Gender"] = "Género"; +App::$strings["Male"] = "Hombre"; +App::$strings["Female"] = "Mujer"; +App::$strings["webpage"] = "página web"; +App::$strings["block"] = "bloque"; +App::$strings["layout"] = "plantilla"; +App::$strings["menu"] = "menú"; +App::$strings["%s element installed"] = "%s elemento instalado"; +App::$strings["%s element installation failed"] = "Elemento con instalación fallida: %s"; +App::$strings["Like/Dislike"] = "Me gusta/No me gusta"; +App::$strings["This action is restricted to members."] = "Esta acción está restringida solo para miembros."; +App::$strings["Please login with your \$Projectname ID or register as a new \$Projectname member to continue."] = "Por favor, identifíquese con su \$Projectname ID o rregístrese como un nuevo \$Projectname member para continuar."; +App::$strings["Invalid request."] = "Solicitud incorrecta."; +App::$strings["channel"] = "el canal"; +App::$strings["thing"] = "elemento"; +App::$strings["Channel unavailable."] = "Canal no disponible."; +App::$strings["Previous action reversed."] = "Acción anterior revocada."; +App::$strings["photo"] = "foto"; +App::$strings["status"] = "el mensaje de estado"; +App::$strings["%1\$s likes %2\$s's %3\$s"] = "A %1\$s le gusta %3\$s de %2\$s"; +App::$strings["%1\$s doesn't like %2\$s's %3\$s"] = "A %1\$s no le gusta %3\$s de %2\$s"; +App::$strings["%1\$s agrees with %2\$s's %3\$s"] = "%3\$s de %2\$s: %1\$s está de acuerdo"; +App::$strings["%1\$s doesn't agree with %2\$s's %3\$s"] = "%3\$s de %2\$s: %1\$s no está de acuerdo"; +App::$strings["%1\$s abstains from a decision on %2\$s's %3\$s"] = "%3\$s de %2\$s: %1\$s se abstiene"; +App::$strings["%1\$s is attending %2\$s's %3\$s"] = "%3\$s de %2\$s: %1\$s participa"; +App::$strings["%1\$s is not attending %2\$s's %3\$s"] = "%3\$s de %2\$s: %1\$s no participa"; +App::$strings["%1\$s may attend %2\$s's %3\$s"] = "%3\$s de %2\$s: %1\$s quizá participe"; +App::$strings["Action completed."] = "Acción completada."; +App::$strings["Thank you."] = "Gracias."; +App::$strings["Import completed"] = "Importación completada"; +App::$strings["Import Items"] = "Importar elementos"; +App::$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."; +App::$strings["Total invitation limit exceeded."] = "Se ha superado el límite máximo de invitaciones."; +App::$strings["%s : Not a valid email address."] = "%s : No es una dirección de correo electrónico válida. "; +App::$strings["Please join us on \$Projectname"] = "Únase a nosotros en \$Projectname"; +App::$strings["Invitation limit exceeded. Please contact your site administrator."] = "Excedido el límite de invitaciones. Por favor, contacte con el Administrador de su sitio."; +App::$strings["%s : Message delivery failed."] = "%s : Falló el envío del mensaje."; +App::$strings["%d message sent."] = array( + 0 => "%d mensajes enviados.", + 1 => "%d mensajes enviados.", +); +App::$strings["You have no more invitations available"] = "No tiene más invitaciones disponibles"; +App::$strings["Send invitations"] = "Enviar invitaciones"; +App::$strings["Enter email addresses, one per line:"] = "Introduzca las direcciones de correo electrónico, una por línea:"; +App::$strings["Your message:"] = "Su mensaje:"; +App::$strings["Please join my community on \$Projectname."] = "Por favor, únase a mi comunidad en \$Projectname."; +App::$strings["You will need to supply this invitation code:"] = "Tendrá que suministrar este código de invitación:"; +App::$strings["1. Register at any \$Projectname location (they are all inter-connected)"] = "1. Regístrese en cualquier sitio de \$Projectname (están todos interconectados)"; +App::$strings["2. Enter my \$Projectname network address into the site searchbar."] = "2. Introduzca mi dirección \$Projectname en la caja de búsqueda del sitio."; +App::$strings["or visit"] = "o visitar"; +App::$strings["3. Click [Connect]"] = "3. Pulse [conectar]"; +App::$strings["Remote privacy information not available."] = "La información privada remota no está disponible."; +App::$strings["Visible to:"] = "Visible para:"; +App::$strings["Location not found."] = "Dirección no encontrada."; +App::$strings["Location lookup failed."] = "Ha fallado la búsqueda de la dirección."; +App::$strings["Please select another location to become primary before removing the primary location."] = "Por favor, seleccione una copia de su canal (un clon) para convertirlo en primario antes de eliminar su canal principal."; +App::$strings["Syncing locations"] = "Sincronización de ubicaciones"; +App::$strings["No locations found."] = "No encontrada ninguna dirección."; +App::$strings["Manage Channel Locations"] = "Gestionar las direcciones del canal"; +App::$strings["Address"] = "Dirección"; +App::$strings["Primary"] = "Primario"; +App::$strings["Drop"] = "Eliminar"; +App::$strings["Sync Now"] = "Sincronizar ahora"; +App::$strings["Please wait several minutes between consecutive operations."] = "Por favor, espere algunos minutos entre operaciones consecutivas."; +App::$strings["When possible, drop a location by logging into that website/hub and removing your channel."] = "Cuando sea posible, elimine una ubicación iniciando sesión en el sitio web o \"hub\" y borrando su canal."; +App::$strings["Use this form to drop the location if the hub is no longer operating."] = "Utilice este formulario para eliminar la dirección si el \"hub\" no está funcionando desde hace tiempo."; +App::$strings["Hub not found."] = "Servidor no encontrado"; +App::$strings["Unable to lookup recipient."] = "Imposible asociar a un destinatario."; +App::$strings["Unable to communicate with requested channel."] = "Imposible comunicar con el canal solicitado."; +App::$strings["Cannot verify requested channel."] = "No se puede verificar el canal solicitado."; +App::$strings["Selected channel has private message restrictions. Send failed."] = "El canal seleccionado tiene restricciones sobre los mensajes privados. El envío falló."; +App::$strings["Messages"] = "Mensajes"; +App::$strings["Message recalled."] = "Mensaje revocado."; +App::$strings["Conversation removed."] = "Conversación eliminada."; +App::$strings["Expires YYYY-MM-DD HH:MM"] = "Caduca YYYY-MM-DD HH:MM"; +App::$strings["Requested channel is not in this network"] = "El canal solicitado no existe en esta red"; +App::$strings["Send Private Message"] = "Enviar un mensaje privado"; +App::$strings["To:"] = "Para:"; +App::$strings["Subject:"] = "Asunto:"; +App::$strings["Attach file"] = "Adjuntar fichero"; +App::$strings["Send"] = "Enviar"; +App::$strings["Set expiration date"] = "Configurar fecha de caducidad"; +App::$strings["Delete message"] = "Borrar mensaje"; +App::$strings["Delivery report"] = "Informe de transmisión"; +App::$strings["Recall message"] = "Revocar el mensaje"; +App::$strings["Message has been recalled."] = "El mensaje ha sido revocado."; +App::$strings["Delete Conversation"] = "Eliminar conversación"; +App::$strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Comunicación segura no disponible. Pero puede responder desde la página del perfil del remitente."; +App::$strings["Send Reply"] = "Responder"; +App::$strings["Your message for %s (%s):"] = "Su mensaje para %s (%s):"; +App::$strings["You have created %1$.0f of %2$.0f allowed channels."] = "Ha creado %1$.0f de %2$.0f canales permitidos."; +App::$strings["Create a new channel"] = "Crear un nuevo canal"; +App::$strings["Channel Manager"] = "Administración de canales"; +App::$strings["Current Channel"] = "Canal actual"; +App::$strings["Switch to one of your channels by selecting it."] = "Cambiar a uno de sus canales seleccionándolo."; +App::$strings["Default Channel"] = "Canal principal"; +App::$strings["Make Default"] = "Convertir en predeterminado"; +App::$strings["%d new messages"] = "%d mensajes nuevos"; +App::$strings["%d new introductions"] = "%d nuevas isolicitudes de conexión"; +App::$strings["Delegated Channel"] = "Canal delegado"; +App::$strings["No valid account found."] = "No se ha encontrado una cuenta válida."; +App::$strings["Password reset request issued. Check your email."] = "Se ha recibido una solicitud de restablecimiento de contraseña. Consulte su correo electrónico."; +App::$strings["Site Member (%s)"] = "Usuario del sitio (%s)"; +App::$strings["Password reset requested at %s"] = "Se ha solicitado restablecer la contraseña en %s"; +App::$strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "La solicitud no ha podido ser verificada. (Puede que la haya enviado con anterioridad) El restablecimiento de la contraseña ha fallado."; +App::$strings["Password Reset"] = "Restablecer la contraseña"; +App::$strings["Your password has been reset as requested."] = "Su contraseña ha sido restablecida según lo solicitó."; +App::$strings["Your new password is"] = "Su nueva contraseña es"; +App::$strings["Save or copy your new password - and then"] = "Guarde o copie su nueva contraseña - y después"; +App::$strings["click here to login"] = "pulse aquí para conectarse"; +App::$strings["Your password may be changed from the Settings page after successful login."] = "Puede cambiar la contraseña en la página Ajustes una vez iniciada la sesión."; +App::$strings["Your password has changed at %s"] = "Su contraseña en %s ha sido cambiada"; +App::$strings["Forgot your Password?"] = "¿Ha olvidado su contraseña?"; +App::$strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Introduzca y envíe su dirección de correo electrónico para el restablecimiento de su contraseña. Luego revise su correo para obtener más instrucciones."; +App::$strings["Email Address"] = "Dirección de correo electrónico"; +App::$strings["Reset"] = "Reiniciar"; +App::$strings["Unable to update menu."] = "No se puede actualizar el menú."; +App::$strings["Unable to create menu."] = "No se puede crear el menú."; +App::$strings["Menu Name"] = "Nombre del menú"; +App::$strings["Unique name (not visible on webpage) - required"] = "Nombre único (no será visible en la página web) - requerido"; +App::$strings["Menu Title"] = "Título del menú"; +App::$strings["Visible on webpage - leave empty for no title"] = "Visible en la página web - no ponga nada si no desea un título"; +App::$strings["Allow Bookmarks"] = "Permitir marcadores"; +App::$strings["Menu may be used to store saved bookmarks"] = "El menú se puede usar para guardar marcadores"; +App::$strings["Submit and proceed"] = "Enviar y proceder"; +App::$strings["Menus"] = "Menús"; +App::$strings["Bookmarks allowed"] = "Marcadores permitidos"; +App::$strings["Delete this menu"] = "Borrar este menú"; +App::$strings["Edit menu contents"] = "Editar los contenidos del menú"; +App::$strings["Edit this menu"] = "Modificar este menú"; +App::$strings["Menu could not be deleted."] = "El menú no puede ser eliminado."; +App::$strings["Menu not found."] = "Menú no encontrado"; +App::$strings["Edit Menu"] = "Modificar el menú"; +App::$strings["Add or remove entries to this menu"] = "Añadir o quitar entradas en este menú"; +App::$strings["Menu name"] = "Nombre del menú"; +App::$strings["Must be unique, only seen by you"] = "Debe ser único, solo será visible para usted"; +App::$strings["Menu title"] = "Título del menú"; +App::$strings["Menu title as seen by others"] = "El título del menú tal como será visto por los demás"; +App::$strings["Allow bookmarks"] = "Permitir marcadores"; +App::$strings["Not found."] = "No encontrado."; +App::$strings["__ctx:mood__ %1\$s is %2\$s"] = "%1\$s está %2\$s"; +App::$strings["Mood"] = "Estado de ánimo"; +App::$strings["Set your current mood and tell your friends"] = "Describir su estado de ánimo para comunicárselo a sus amigos"; +App::$strings["Profile Match"] = "Perfil compatible"; +App::$strings["No keywords to match. Please add keywords to your default profile."] = "No hay palabras clave en el perfil principal para poder encontrar perfiles compatibles. Por favor, añada palabras clave a su perfil principal."; +App::$strings["is interested in:"] = "está interesado en:"; +App::$strings["No matches"] = "No se han encontrado perfiles compatibles"; +App::$strings["No such group"] = "No se encuentra el grupo"; +App::$strings["No such channel"] = "No se encuentra el canal"; +App::$strings["forum"] = "foro"; +App::$strings["Search Results For:"] = "Buscar resultados para:"; +App::$strings["Privacy group is empty"] = "El grupo de canales está vacío"; +App::$strings["Privacy group: "] = "Grupo de canales: "; +App::$strings["Invalid connection."] = "Conexión no válida."; +App::$strings["No more system notifications."] = "No hay más notificaciones del sistema"; +App::$strings["System Notifications"] = "Notificaciones del sistema"; +App::$strings["Unable to create element."] = "Imposible crear el elemento."; +App::$strings["Unable to update menu element."] = "No es posible actualizar el elemento del menú."; +App::$strings["Unable to add menu element."] = "No es posible añadir el elemento al menú"; +App::$strings["Menu Item Permissions"] = "Permisos del elemento del menú"; +App::$strings["(click to open/close)"] = "(pulsar para abrir o cerrar)"; +App::$strings["Link Name"] = "Nombre del enlace"; +App::$strings["Link or Submenu Target"] = "Destino del enlace o submenú"; +App::$strings["Enter URL of the link or select a menu name to create a submenu"] = "Introducir la dirección del enlace o seleccionar el nombre de un submenú"; +App::$strings["Use magic-auth if available"] = "Usar la autenticación mágica si está disponible"; +App::$strings["Open link in new window"] = "Abrir el enlace en una nueva ventana"; +App::$strings["Order in list"] = "Orden en la lista"; +App::$strings["Higher numbers will sink to bottom of listing"] = "Los números más altos irán al final de la lista"; +App::$strings["Submit and finish"] = "Enviar y terminar"; +App::$strings["Submit and continue"] = "Enviar y continuar"; +App::$strings["Menu:"] = "Menú:"; +App::$strings["Link Target"] = "Destino del enlace"; +App::$strings["Edit menu"] = "Editar menú"; +App::$strings["Edit element"] = "Editar el elemento"; +App::$strings["Drop element"] = "Eliminar el elemento"; +App::$strings["New element"] = "Nuevo elemento"; +App::$strings["Edit this menu container"] = "Modificar el contenedor del menú"; +App::$strings["Add menu element"] = "Añadir un elemento al menú"; +App::$strings["Delete this menu item"] = "Eliminar este elemento del menú"; +App::$strings["Edit this menu item"] = "Modificar este elemento del menú"; +App::$strings["Menu item not found."] = "Este elemento del menú no se ha encontrado"; +App::$strings["Menu item deleted."] = "Este elemento del menú ha sido borrado"; +App::$strings["Menu item could not be deleted."] = "Este elemento del menú no puede ser borrado."; +App::$strings["Edit Menu Element"] = "Editar elemento del menú"; +App::$strings["Link text"] = "Texto del enlace"; +App::$strings["Name or caption"] = "Nombre o descripción"; +App::$strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\""] = "Ejemplos: \"Juan García\", \"Luisa y sus caballos\", \"Fútbol\", \"Grupo de aviación\""; +App::$strings["Choose a short nickname"] = "Elija un alias corto"; +App::$strings["Your nickname will be used to create an easy to remember channel address e.g. nickname%s"] = "Su alias se usará para crear una dirección de canal fácil de recordar, p. ej.: alias%s"; +App::$strings["Channel role and privacy"] = "Clase de canal y privacidad"; +App::$strings["Select a channel role with your privacy requirements."] = "Seleccione un tipo de canal con sus requisitos de privacidad"; +App::$strings["Read more about roles"] = "Leer más sobre los roles"; +App::$strings["Create Channel"] = "Crear un canal"; +App::$strings["A channel is your identity on this network. It can represent a person, a blog, or a forum to name a few. Channels can make connections with other channels to share information with highly detailed permissions."] = "Un canal es su identidad en esta red. Puede representar a una persona, un blog o un foro, por nombrar unos pocos ejemplos. Los canales se pueden conectar con otros canales para compartir información con una gama de permisos extremadamente detallada."; +App::$strings["or import an existing channel from another location."] = "O importar un canal existente desde otro lugar."; +App::$strings["Invalid request identifier."] = "Petición inválida del identificador."; +App::$strings["Discard"] = "Descartar"; +App::$strings["Mark all system notifications seen"] = "Marcar todas las notificaciones de sistema como leídas"; App::$strings["Page owner information could not be retrieved."] = "La información del propietario de la página no pudo ser recuperada."; App::$strings["Profile Photos"] = "Fotos del perfil"; App::$strings["Album not found."] = "Álbum no encontrado."; @@ -611,164 +673,122 @@ App::$strings["__ctx:noun__ Dislikes"] = "No me gusta"; App::$strings["Close"] = "Cerrar"; App::$strings["View Album"] = "Ver álbum"; App::$strings["Recent Photos"] = "Fotos recientes"; -App::$strings["Remote privacy information not available."] = "La información privada remota no está disponible."; -App::$strings["Visible to:"] = "Visible para:"; -App::$strings["Import completed"] = "Importación completada"; -App::$strings["Import Items"] = "Importar elementos"; -App::$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."; -App::$strings["Total invitation limit exceeded."] = "Se ha superado el límite máximo de invitaciones."; -App::$strings["%s : Not a valid email address."] = "%s : No es una dirección de correo electrónico válida. "; -App::$strings["Please join us on \$Projectname"] = "Únase a nosotros en \$Projectname"; -App::$strings["Invitation limit exceeded. Please contact your site administrator."] = "Excedido el límite de invitaciones. Por favor, contacte con el Administrador de su sitio."; -App::$strings["%s : Message delivery failed."] = "%s : Falló el envío del mensaje."; -App::$strings["%d message sent."] = array( - 0 => "%d mensajes enviados.", - 1 => "%d mensajes enviados.", -); -App::$strings["You have no more invitations available"] = "No tiene más invitaciones disponibles"; -App::$strings["Send invitations"] = "Enviar invitaciones"; -App::$strings["Enter email addresses, one per line:"] = "Introduzca las direcciones de correo electrónico, una por línea:"; -App::$strings["Your message:"] = "Su mensaje:"; -App::$strings["Please join my community on \$Projectname."] = "Por favor, únase a mi comunidad en \$Projectname."; -App::$strings["You will need to supply this invitation code:"] = "Tendrá que suministrar este código de invitación:"; -App::$strings["1. Register at any \$Projectname location (they are all inter-connected)"] = "1. Regístrese en cualquier sitio de \$Projectname (están todos interconectados)"; -App::$strings["2. Enter my \$Projectname network address into the site searchbar."] = "2. Introduzca mi dirección \$Projectname en la caja de búsqueda del sitio."; -App::$strings["or visit"] = "o visitar"; -App::$strings["3. Click [Connect]"] = "3. Pulse [conectar]"; -App::$strings["Location not found."] = "Dirección no encontrada."; -App::$strings["Location lookup failed."] = "Ha fallado la búsqueda de la dirección."; -App::$strings["Please select another location to become primary before removing the primary location."] = "Por favor, seleccione una copia de su canal (un clon) para convertirlo en primario antes de eliminar su canal principal."; -App::$strings["Syncing locations"] = "Sincronización de ubicaciones"; -App::$strings["No locations found."] = "No encontrada ninguna dirección."; -App::$strings["Manage Channel Locations"] = "Gestionar las direcciones del canal"; -App::$strings["Primary"] = "Primario"; -App::$strings["Drop"] = "Eliminar"; -App::$strings["Sync Now"] = "Sincronizar ahora"; -App::$strings["Please wait several minutes between consecutive operations."] = "Por favor, espere algunos minutos entre operaciones consecutivas."; -App::$strings["When possible, drop a location by logging into that website/hub and removing your channel."] = "Cuando sea posible, elimine una ubicación iniciando sesión en el sitio web o \"hub\" y borrando su canal."; -App::$strings["Use this form to drop the location if the hub is no longer operating."] = "Utilice este formulario para eliminar la dirección si el \"hub\" no está funcionando desde hace tiempo."; -App::$strings["Hub not found."] = "Servidor no encontrado"; -App::$strings["Unable to lookup recipient."] = "Imposible asociar a un destinatario."; -App::$strings["Unable to communicate with requested channel."] = "Imposible comunicar con el canal solicitado."; -App::$strings["Cannot verify requested channel."] = "No se puede verificar el canal solicitado."; -App::$strings["Selected channel has private message restrictions. Send failed."] = "El canal seleccionado tiene restricciones sobre los mensajes privados. El envío falló."; -App::$strings["Messages"] = "Mensajes"; -App::$strings["Message recalled."] = "Mensaje revocado."; -App::$strings["Conversation removed."] = "Conversación eliminada."; -App::$strings["Expires YYYY-MM-DD HH:MM"] = "Caduca YYYY-MM-DD HH:MM"; -App::$strings["Requested channel is not in this network"] = "El canal solicitado no existe en esta red"; -App::$strings["Send Private Message"] = "Enviar un mensaje privado"; -App::$strings["To:"] = "Para:"; -App::$strings["Subject:"] = "Asunto:"; -App::$strings["Attach file"] = "Adjuntar fichero"; -App::$strings["Send"] = "Enviar"; -App::$strings["Set expiration date"] = "Configurar fecha de caducidad"; -App::$strings["Delete message"] = "Borrar mensaje"; -App::$strings["Delivery report"] = "Informe de transmisión"; -App::$strings["Recall message"] = "Revocar el mensaje"; -App::$strings["Message has been recalled."] = "El mensaje ha sido revocado."; -App::$strings["Delete Conversation"] = "Eliminar conversación"; -App::$strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Comunicación segura no disponible. Pero puede responder desde la página del perfil del remitente."; -App::$strings["Send Reply"] = "Responder"; -App::$strings["Your message for %s (%s):"] = "Su mensaje para %s (%s):"; -App::$strings["You have created %1$.0f of %2$.0f allowed channels."] = "Ha creado %1$.0f de %2$.0f canales permitidos."; -App::$strings["Create a new channel"] = "Crear un nuevo canal"; -App::$strings["Channel Manager"] = "Administración de canales"; -App::$strings["Current Channel"] = "Canal actual"; -App::$strings["Switch to one of your channels by selecting it."] = "Cambiar a uno de sus canales seleccionándolo."; -App::$strings["Default Channel"] = "Canal principal"; -App::$strings["Make Default"] = "Convertir en predeterminado"; -App::$strings["%d new messages"] = "%d mensajes nuevos"; -App::$strings["%d new introductions"] = "%d nuevas isolicitudes de conexión"; -App::$strings["Delegated Channel"] = "Canal delegado"; -App::$strings["Unable to update menu."] = "No se puede actualizar el menú."; -App::$strings["Unable to create menu."] = "No se puede crear el menú."; -App::$strings["Menu Name"] = "Nombre del menú"; -App::$strings["Unique name (not visible on webpage) - required"] = "Nombre único (no será visible en la página web) - requerido"; -App::$strings["Menu Title"] = "Título del menú"; -App::$strings["Visible on webpage - leave empty for no title"] = "Visible en la página web - no ponga nada si no desea un título"; -App::$strings["Allow Bookmarks"] = "Permitir marcadores"; -App::$strings["Menu may be used to store saved bookmarks"] = "El menú se puede usar para guardar marcadores"; -App::$strings["Submit and proceed"] = "Enviar y proceder"; -App::$strings["Menus"] = "Menús"; -App::$strings["Bookmarks allowed"] = "Marcadores permitidos"; -App::$strings["Delete this menu"] = "Borrar este menú"; -App::$strings["Edit menu contents"] = "Editar los contenidos del menú"; -App::$strings["Edit this menu"] = "Modificar este menú"; -App::$strings["Menu could not be deleted."] = "El menú no puede ser eliminado."; -App::$strings["Menu not found."] = "Menú no encontrado"; -App::$strings["Edit Menu"] = "Modificar el menú"; -App::$strings["Add or remove entries to this menu"] = "Añadir o quitar entradas en este menú"; -App::$strings["Menu name"] = "Nombre del menú"; -App::$strings["Must be unique, only seen by you"] = "Debe ser único, solo será visible para usted"; -App::$strings["Menu title"] = "Título del menú"; -App::$strings["Menu title as seen by others"] = "El título del menú tal como será visto por los demás"; -App::$strings["Allow bookmarks"] = "Permitir marcadores"; -App::$strings["Not found."] = "No encontrado."; -App::$strings["No valid account found."] = "No se ha encontrado una cuenta válida."; -App::$strings["Password reset request issued. Check your email."] = "Se ha recibido una solicitud de restablecimiento de contraseña. Consulte su correo electrónico."; -App::$strings["Site Member (%s)"] = "Usuario del sitio (%s)"; -App::$strings["Password reset requested at %s"] = "Se ha solicitado restablecer la contraseña en %s"; -App::$strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "La solicitud no ha podido ser verificada. (Puede que la haya enviado con anterioridad) El restablecimiento de la contraseña ha fallado."; -App::$strings["Password Reset"] = "Restablecer la contraseña"; -App::$strings["Your password has been reset as requested."] = "Su contraseña ha sido restablecida según lo solicitó."; -App::$strings["Your new password is"] = "Su nueva contraseña es"; -App::$strings["Save or copy your new password - and then"] = "Guarde o copie su nueva contraseña - y después"; -App::$strings["click here to login"] = "pulse aquí para conectarse"; -App::$strings["Your password may be changed from the Settings page after successful login."] = "Puede cambiar la contraseña en la página Ajustes una vez iniciada la sesión."; -App::$strings["Your password has changed at %s"] = "Su contraseña en %s ha sido cambiada"; -App::$strings["Forgot your Password?"] = "¿Ha olvidado su contraseña?"; -App::$strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Introduzca y envíe su dirección de correo electrónico para el restablecimiento de su contraseña. Luego revise su correo para obtener más instrucciones."; -App::$strings["Email Address"] = "Dirección de correo electrónico"; -App::$strings["Reset"] = "Reiniciar"; -App::$strings["__ctx:mood__ %1\$s is %2\$s"] = "%1\$s está %2\$s"; -App::$strings["Mood"] = "Estado de ánimo"; -App::$strings["Set your current mood and tell your friends"] = "Describir su estado de ánimo para comunicárselo a sus amigos"; -App::$strings["No such group"] = "No se encuentra el grupo"; -App::$strings["No such channel"] = "No se encuentra el canal"; -App::$strings["forum"] = "foro"; -App::$strings["Search Results For:"] = "Buscar resultados para:"; -App::$strings["Privacy group is empty"] = "El grupo de canales está vacío"; -App::$strings["Privacy group: "] = "Grupo de canales: "; -App::$strings["Invalid connection."] = "Conexión no válida."; -App::$strings["No more system notifications."] = "No hay más notificaciones del sistema"; -App::$strings["System Notifications"] = "Notificaciones del sistema"; -App::$strings["Profile Match"] = "Perfil compatible"; -App::$strings["No keywords to match. Please add keywords to your default profile."] = "No hay palabras clave en el perfil principal para poder encontrar perfiles compatibles. Por favor, añada palabras clave a su perfil principal."; -App::$strings["is interested in:"] = "está interesado en:"; -App::$strings["No matches"] = "No se han encontrado perfiles compatibles"; -App::$strings["Posts and comments"] = "Publicaciones y comentarios"; -App::$strings["Only posts"] = "Solo publicaciones"; -App::$strings["Insufficient permissions. Request redirected to profile page."] = "Permisos insuficientes. Petición redirigida a la página del perfil."; -App::$strings["Unable to create element."] = "Imposible crear el elemento."; -App::$strings["Unable to update menu element."] = "No es posible actualizar el elemento del menú."; -App::$strings["Unable to add menu element."] = "No es posible añadir el elemento al menú"; -App::$strings["Menu Item Permissions"] = "Permisos del elemento del menú"; -App::$strings["(click to open/close)"] = "(pulsar para abrir o cerrar)"; -App::$strings["Link Name"] = "Nombre del enlace"; -App::$strings["Link or Submenu Target"] = "Destino del enlace o submenú"; -App::$strings["Enter URL of the link or select a menu name to create a submenu"] = "Introducir la dirección del enlace o seleccionar el nombre de un submenú"; -App::$strings["Use magic-auth if available"] = "Usar la autenticación mágica si está disponible"; -App::$strings["Open link in new window"] = "Abrir el enlace en una nueva ventana"; -App::$strings["Order in list"] = "Orden en la lista"; -App::$strings["Higher numbers will sink to bottom of listing"] = "Los números más altos irán al final de la lista"; -App::$strings["Submit and finish"] = "Enviar y terminar"; -App::$strings["Submit and continue"] = "Enviar y continuar"; -App::$strings["Menu:"] = "Menú:"; -App::$strings["Link Target"] = "Destino del enlace"; -App::$strings["Edit menu"] = "Editar menú"; -App::$strings["Edit element"] = "Editar el elemento"; -App::$strings["Drop element"] = "Eliminar el elemento"; -App::$strings["New element"] = "Nuevo elemento"; -App::$strings["Edit this menu container"] = "Modificar el contenedor del menú"; -App::$strings["Add menu element"] = "Añadir un elemento al menú"; -App::$strings["Delete this menu item"] = "Eliminar este elemento del menú"; -App::$strings["Edit this menu item"] = "Modificar este elemento del menú"; -App::$strings["Menu item not found."] = "Este elemento del menú no se ha encontrado"; -App::$strings["Menu item deleted."] = "Este elemento del menú ha sido borrado"; -App::$strings["Menu item could not be deleted."] = "Este elemento del menú no puede ser borrado."; -App::$strings["Edit Menu Element"] = "Editar elemento del menú"; -App::$strings["Link text"] = "Texto del enlace"; +App::$strings["sent you a private message"] = "le ha enviado un mensaje privado"; +App::$strings["added your channel"] = "añadió este canal a sus conexiones"; +App::$strings["g A l F d"] = "g A l d F"; +App::$strings["[today]"] = "[hoy]"; +App::$strings["posted an event"] = "publicó un evento"; +App::$strings["Unable to find your hub."] = "No se puede encontrar su servidor."; +App::$strings["Post successful."] = "Enviado con éxito."; +App::$strings["OpenID protocol error. No ID returned."] = "Error del protocolo OpenID. Ningún ID recibido como respuesta."; +App::$strings["Login failed."] = "El acceso ha fallado."; +App::$strings["Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."] = "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."; +App::$strings["This setting requires special processing and editing has been blocked."] = "Este ajuste necesita de un proceso especial y la edición ha sido bloqueada."; +App::$strings["Configuration Editor"] = "Editor de configuración"; +App::$strings["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."] = "Atención: El cambio de algunos ajustes puede volver inutilizable su canal. Por favor, abandone la página excepto que esté seguro y sepa cómo usar correctamente esta característica."; +App::$strings["Layout updated."] = "Plantilla actualizada."; +App::$strings["Edit System Page Description"] = "Editor del Sistema de Descripción de Páginas"; +App::$strings["Layout not found."] = "Plantilla no encontrada"; +App::$strings["Module Name:"] = "Nombre del módulo:"; +App::$strings["Layout Help"] = "Ayuda para el diseño de plantillas de página"; +App::$strings["Poke"] = "Toques y otras cosas"; +App::$strings["Poke somebody"] = "Dar un toque a alguien"; +App::$strings["Poke/Prod"] = "Toque/Incitación"; +App::$strings["Poke, prod or do other things to somebody"] = "Dar un toque, incitar o hacer otras cosas a alguien"; +App::$strings["Recipient"] = "Destinatario"; +App::$strings["Choose what you wish to do to recipient"] = "Elegir qué desea enviar al destinatario"; +App::$strings["Make this post private"] = "Convertir en privado este envío"; +App::$strings["Fetching URL returns error: %1\$s"] = "Al intentar obtener la dirección, retorna el error: %1\$s"; +App::$strings["Profile not found."] = "Perfil no encontrado."; +App::$strings["Profile deleted."] = "Perfil eliminado."; +App::$strings["Profile-"] = "Perfil-"; +App::$strings["New profile created."] = "El nuevo perfil ha sido creado."; +App::$strings["Profile unavailable to clone."] = "Perfil no disponible para clonar."; +App::$strings["Profile unavailable to export."] = "Perfil no disponible para exportar."; +App::$strings["Profile Name is required."] = "Se necesita el nombre del perfil."; +App::$strings["Marital Status"] = "Estado civil"; +App::$strings["Romantic Partner"] = "Pareja sentimental"; +App::$strings["Likes"] = "Me gusta"; +App::$strings["Dislikes"] = "No me gusta"; +App::$strings["Work/Employment"] = "Trabajo:"; +App::$strings["Religion"] = "Religión"; +App::$strings["Political Views"] = "Ideas políticas"; +App::$strings["Sexual Preference"] = "Preferencia sexual"; +App::$strings["Homepage"] = "Página personal"; +App::$strings["Interests"] = "Intereses"; +App::$strings["Profile updated."] = "Perfil actualizado."; +App::$strings["Hide your connections list from viewers of this profile"] = "Ocultar la lista de conexiones a los visitantes del perfil"; +App::$strings["Edit Profile Details"] = "Modificar los detalles de este perfil"; +App::$strings["View this profile"] = "Ver este perfil"; +App::$strings["Edit visibility"] = "Editar visibilidad"; +App::$strings["Profile Tools"] = "Gestión del perfil"; +App::$strings["Change cover photo"] = "Cambiar la imagen de portada del perfil"; +App::$strings["Change profile photo"] = "Cambiar la foto del perfil"; +App::$strings["Create a new profile using these settings"] = "Crear un nuevo perfil usando estos ajustes"; +App::$strings["Clone this profile"] = "Clonar este perfil"; +App::$strings["Delete this profile"] = "Eliminar este perfil"; +App::$strings["Add profile things"] = "Añadir cosas al perfil"; +App::$strings["Personal"] = "Personales"; +App::$strings["Relation"] = "Relación"; +App::$strings["Miscellaneous"] = "Varios"; +App::$strings["Import profile from file"] = "Importar perfil desde un fichero"; +App::$strings["Export profile to file"] = "Exportar perfil a un fichero"; +App::$strings["Your gender"] = "Género"; +App::$strings["Marital status"] = "Estado civil"; +App::$strings["Sexual preference"] = "Preferencia sexual"; +App::$strings["Profile name"] = "Nombre del perfil"; +App::$strings["This is your default profile."] = "Este es su perfil principal."; +App::$strings["Your full name"] = "Nombre completo"; +App::$strings["Title/Description"] = "Título o descripción"; +App::$strings["Street address"] = "Dirección"; +App::$strings["Locality/City"] = "Ciudad"; +App::$strings["Region/State"] = "Región o Estado"; +App::$strings["Postal/Zip code"] = "Código postal"; +App::$strings["Country"] = "País"; +App::$strings["Who (if applicable)"] = "Quién (si es pertinente)"; +App::$strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Por ejemplo: ana123, María González, sara@ejemplo.com"; +App::$strings["Since (date)"] = "Desde (fecha)"; +App::$strings["Tell us about yourself"] = "Háblenos de usted"; +App::$strings["Hometown"] = "Lugar de nacimiento"; +App::$strings["Political views"] = "Ideas políticas"; +App::$strings["Religious views"] = "Creencias religiosas"; +App::$strings["Keywords used in directory listings"] = "Palabras clave utilizadas en los listados de directorios"; +App::$strings["Example: fishing photography software"] = "Por ejemplo: software de fotografía submarina"; +App::$strings["Musical interests"] = "Preferencias musicales"; +App::$strings["Books, literature"] = "Libros, literatura"; +App::$strings["Television"] = "Televisión"; +App::$strings["Film/Dance/Culture/Entertainment"] = "Cine, danza, cultura, entretenimiento"; +App::$strings["Hobbies/Interests"] = "Aficiones o intereses"; +App::$strings["Love/Romance"] = "Vida sentimental o amorosa"; +App::$strings["School/Education"] = "Estudios"; +App::$strings["Contact information and social networks"] = "Información de contacto y redes sociales"; +App::$strings["My other channels"] = "Mis otros canales"; +App::$strings["Profile Image"] = "Imagen del perfil"; +App::$strings["Edit Profiles"] = "Editar perfiles"; +App::$strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Recargue la página o limpie el caché del navegador si la nueva foto no se muestra inmediatamente."; +App::$strings["Upload Profile Photo"] = "Subir foto de perfil"; +App::$strings["Invalid profile identifier."] = "Identificador del perfil no válido"; +App::$strings["Profile Visibility Editor"] = "Editor de visibilidad del perfil"; +App::$strings["Profile"] = "Perfil"; +App::$strings["Click on a contact to add or remove."] = "Pulsar en un contacto para añadirlo o eliminarlo."; +App::$strings["Visible To"] = "Visible para"; +App::$strings["Public Hubs"] = "Servidores públicos"; +App::$strings["The listed hubs allow public registration for the \$Projectname network. All hubs in the network are interlinked so membership on any of them conveys membership in the network as a whole. Some hubs may require subscription or provide tiered service plans. The hub itself may provide additional details."] = "Los sitios listados permiten el registro público en la red \$Projectname. Todos los sitios de la red están vinculados entre sí, por lo que sus miembros, en ninguno de ellos, indican la pertenencia a la red en su conjunto. Algunos sitios pueden requerir suscripción o proporcionar planes de servicio por niveles. Los mismos hubs pueden proporcionar detalles adicionales."; +App::$strings["Hub URL"] = "Dirección del hub"; +App::$strings["Access Type"] = "Tipo de acceso"; +App::$strings["Registration Policy"] = "Normas de registro"; +App::$strings["Stats"] = "Estadísticas"; +App::$strings["Software"] = "Software"; +App::$strings["Ratings"] = "Valoraciones"; +App::$strings["Rate"] = "Valorar"; +App::$strings["Website:"] = "Sitio web:"; +App::$strings["Remote Channel [%s] (not yet known on this site)"] = "Canal remoto [%s] (aún no es conocido en este sitio)"; +App::$strings["Rating (this information is public)"] = "Valoración (esta información es pública)"; +App::$strings["Optionally explain your rating (this information is public)"] = "Opcionalmente puede explicar su valoración (esta información es pública)"; +App::$strings["No ratings"] = "Ninguna valoración"; +App::$strings["Rating: "] = "Valoración:"; +App::$strings["Website: "] = "Sitio web:"; +App::$strings["Description: "] = "Descripción:"; App::$strings["Theme settings updated."] = "Ajustes del tema actualizados."; App::$strings["# Accounts"] = "# Cuentas"; App::$strings["# blocked accounts"] = "# cuentas bloqueadas"; @@ -1011,91 +1031,19 @@ App::$strings["(In addition to basic fields)"] = "(Además de los campos básico App::$strings["All available fields"] = "Todos los campos disponibles"; App::$strings["Custom Fields"] = "Campos personalizados"; App::$strings["Create Custom Field"] = "Crear un campo personalizado"; -App::$strings["Name or caption"] = "Nombre o descripción"; -App::$strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\""] = "Ejemplos: \"Juan García\", \"Luisa y sus caballos\", \"Fútbol\", \"Grupo de aviación\""; -App::$strings["Choose a short nickname"] = "Elija un alias corto"; -App::$strings["Your nickname will be used to create an easy to remember channel address e.g. nickname%s"] = "Su alias se usará para crear una dirección de canal fácil de recordar, p. ej.: alias%s"; -App::$strings["Channel role and privacy"] = "Clase de canal y privacidad"; -App::$strings["Select a channel role with your privacy requirements."] = "Seleccione un tipo de canal con sus requisitos de privacidad"; -App::$strings["Read more about roles"] = "Leer más sobre los roles"; -App::$strings["Create Channel"] = "Crear un canal"; -App::$strings["A channel is your identity on this network. It can represent a person, a blog, or a forum to name a few. Channels can make connections with other channels to share information with highly detailed permissions."] = "Un canal es su identidad en esta red. Puede representar a una persona, un blog o un foro, por nombrar unos pocos ejemplos. Los canales se pueden conectar con otros canales para compartir información con una gama de permisos extremadamente detallada."; -App::$strings["or import an existing channel from another location."] = "O importar un canal existente desde otro lugar."; -App::$strings["sent you a private message"] = "le ha enviado un mensaje privado"; -App::$strings["added your channel"] = "añadió este canal a sus conexiones"; -App::$strings["g A l F d"] = "g A l d F"; -App::$strings["[today]"] = "[hoy]"; -App::$strings["posted an event"] = "publicó un evento"; -App::$strings["Invalid request identifier."] = "Petición inválida del identificador."; -App::$strings["Discard"] = "Descartar"; -App::$strings["Mark all system notifications seen"] = "Marcar todas las notificaciones de sistema como leídas"; -App::$strings["Poke"] = "Toques y otras cosas"; -App::$strings["Poke somebody"] = "Dar un toque a alguien"; -App::$strings["Poke/Prod"] = "Toque/Incitación"; -App::$strings["Poke, prod or do other things to somebody"] = "Dar un toque, incitar o hacer otras cosas a alguien"; -App::$strings["Recipient"] = "Destinatario"; -App::$strings["Choose what you wish to do to recipient"] = "Elegir qué desea enviar al destinatario"; -App::$strings["Make this post private"] = "Convertir en privado este envío"; -App::$strings["Unable to find your hub."] = "No se puede encontrar su servidor."; -App::$strings["Post successful."] = "Enviado con éxito."; -App::$strings["OpenID protocol error. No ID returned."] = "Error del protocolo OpenID. Ningún ID recibido como respuesta."; -App::$strings["Login failed."] = "El acceso ha fallado."; -App::$strings["Invalid profile identifier."] = "Identificador del perfil no válido"; -App::$strings["Profile Visibility Editor"] = "Editor de visibilidad del perfil"; -App::$strings["Profile"] = "Perfil"; -App::$strings["Click on a contact to add or remove."] = "Pulsar en un contacto para añadirlo o eliminarlo."; -App::$strings["Visible To"] = "Visible para"; -App::$strings["This setting requires special processing and editing has been blocked."] = "Este ajuste necesita de un proceso especial y la edición ha sido bloqueada."; -App::$strings["Configuration Editor"] = "Editor de configuración"; -App::$strings["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."] = "Atención: El cambio de algunos ajustes puede volver inutilizable su canal. Por favor, abandone la página excepto que esté seguro y sepa cómo usar correctamente esta característica."; -App::$strings["Fetching URL returns error: %1\$s"] = "Al intentar obtener la dirección, retorna el error: %1\$s"; -App::$strings["Version %s"] = "Versión %s"; -App::$strings["Installed plugins/addons/apps:"] = "Extensiones (plugins), complementos o aplicaciones (apps) instaladas:"; -App::$strings["No installed plugins/addons/apps"] = "No hay instalada ninguna extensión (plugin), complemento o aplicación (app)"; -App::$strings["This is a hub of \$Projectname - a global cooperative network of decentralized privacy enhanced websites."] = "Este es un sitio integrado en \$Projectname - una red cooperativa mundial de sitios web descentralizados de privacidad mejorada."; -App::$strings["Tag: "] = "Etiqueta:"; -App::$strings["Last background fetch: "] = "Última actualización en segundo plano:"; -App::$strings["Current load average: "] = "Carga media actual:"; -App::$strings["Running at web location"] = "Corriendo en el sitio web"; -App::$strings["Please visit hubzilla.org to learn more about \$Projectname."] = "Por favor, visite hubzilla.org para más información sobre \$Projectname."; -App::$strings["Bug reports and issues: please visit"] = "Informes de errores e incidencias: por favor visite"; -App::$strings["\$projectname issues"] = "Problemas en \$projectname"; -App::$strings["Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com"] = "Sugerencias, elogios, etc - por favor, un correo electrónico a \"redmatrix\" en librelist - punto com"; -App::$strings["Site Administrators"] = "Administradores del sitio"; -App::$strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Encontramos un problema durante el inicio de sesión con la OpenID que proporcionó. Por favor, compruebe que la ID está correctamente escrita."; -App::$strings["The error message was:"] = "El mensaje de error fue:"; -App::$strings["Authentication failed."] = "Falló la autenticación."; -App::$strings["Remote Authentication"] = "Acceso desde su servidor"; -App::$strings["Enter your channel address (e.g. channel@example.com)"] = "Introduzca la dirección del canal (p.ej. canal@ejemplo.com)"; -App::$strings["Authenticate"] = "Acceder"; -App::$strings["Public Hubs"] = "Servidores públicos"; -App::$strings["The listed hubs allow public registration for the \$Projectname network. All hubs in the network are interlinked so membership on any of them conveys membership in the network as a whole. Some hubs may require subscription or provide tiered service plans. The hub itself may provide additional details."] = "Los sitios listados permiten el registro público en la red \$Projectname. Todos los sitios de la red están vinculados entre sí, por lo que sus miembros, en ninguno de ellos, indican la pertenencia a la red en su conjunto. Algunos sitios pueden requerir suscripción o proporcionar planes de servicio por niveles. Los mismos hubs pueden proporcionar detalles adicionales."; -App::$strings["Hub URL"] = "Dirección del hub"; -App::$strings["Access Type"] = "Tipo de acceso"; -App::$strings["Registration Policy"] = "Normas de registro"; -App::$strings["Stats"] = "Estadísticas"; -App::$strings["Software"] = "Software"; -App::$strings["Ratings"] = "Valoraciones"; -App::$strings["Rate"] = "Valorar"; -App::$strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Recargue la página o limpie el caché del navegador si la nueva foto no se muestra inmediatamente."; -App::$strings["Upload Profile Photo"] = "Subir foto de perfil"; -App::$strings["Block Name"] = "Nombre del bloque"; -App::$strings["Blocks"] = "Bloques"; -App::$strings["Block Title"] = "Título del bloque"; -App::$strings["Website:"] = "Sitio web:"; -App::$strings["Remote Channel [%s] (not yet known on this site)"] = "Canal remoto [%s] (aún no es conocido en este sitio)"; -App::$strings["Rating (this information is public)"] = "Valoración (esta información es pública)"; -App::$strings["Optionally explain your rating (this information is public)"] = "Opcionalmente puede explicar su valoración (esta información es pública)"; -App::$strings["No ratings"] = "Ninguna valoración"; -App::$strings["Rating: "] = "Valoración:"; -App::$strings["Website: "] = "Sitio web:"; -App::$strings["Description: "] = "Descripción:"; -App::$strings["Apps"] = "Aplicaciones (apps)"; -App::$strings["Title (optional)"] = "Título (opcional)"; -App::$strings["Edit Block"] = "Modificar este bloque"; -App::$strings["No channel."] = "Ningún canal."; -App::$strings["Common connections"] = "Conexiones comunes"; -App::$strings["No connections in common."] = "Ninguna conexión en común."; +App::$strings["App installed."] = "Aplicación instalada."; +App::$strings["Malformed app."] = "Aplicación con errores"; +App::$strings["Embed code"] = "Código incorporado"; +App::$strings["Edit App"] = "Modificar la aplicación"; +App::$strings["Create App"] = "Crear una aplicación"; +App::$strings["Name of app"] = "Nombre de la aplicación"; +App::$strings["Location (URL) of app"] = "Dirección (URL) de la aplicación"; +App::$strings["Photo icon URL"] = "Dirección del icono"; +App::$strings["80 x 80 pixels - optional"] = "80 x 80 pixels - opcional"; +App::$strings["Categories (optional, comma separated list)"] = "Categorías (opcional, lista separada por comas)"; +App::$strings["Version ID"] = "Versión"; +App::$strings["Price of app"] = "Precio de la aplicación"; +App::$strings["Location (URL) to purchase app"] = "Dirección (URL) donde adquirir la aplicación"; App::$strings["Select a bookmark folder"] = "Seleccionar una carpeta de marcadores"; App::$strings["Save Bookmark"] = "Guardar marcador"; App::$strings["URL of bookmark"] = "Dirección del marcador"; @@ -1121,7 +1069,7 @@ App::$strings["no"] = "no"; App::$strings["yes"] = "sí"; App::$strings["Membership on this site is by invitation only."] = "Para registrarse en este sitio es necesaria una invitación."; App::$strings["Register"] = "Registrarse"; -App::$strings["This site may require email verification after submitting this form. If you are returned to a login page, please check your email for instructions."] = ""; +App::$strings["Proceed to create your first channel"] = "Crear su primer canal"; App::$strings["Please login."] = "Por favor, inicie sesión."; App::$strings["Account removals are not allowed within 48 hours of changing the account password."] = "La eliminación de cuentas no está permitida hasta después de que hayan transcurrido 48 horas desde el último cambio de contraseña."; App::$strings["Remove This Account"] = "Eliminar esta cuenta"; @@ -1138,23 +1086,17 @@ App::$strings["This channel will be completely removed from the network. "] = "E App::$strings["Remove this channel and all its clones from the network"] = "Eliminar este canal y todos sus clones de la red"; App::$strings["By default only the instance of the channel located on this hub will be removed from the network"] = "Por defecto, solo la instancia del canal alojado en este servidor será eliminado de la red"; App::$strings["Remove Channel"] = "Eliminar el canal"; -App::$strings["Export Channel"] = "Exportar el canal"; -App::$strings["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."] = "Exportar la información básica del canal a un fichero. Este equivale a una copia de seguridad de sus conexiones, el perfil y datos fundamentales, que puede usarse para importar sus datos a un nuevo servidor, pero no incluye su contenido."; -App::$strings["Export Content"] = "Exportar contenidos"; -App::$strings["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."] = "Exportar la información sobre su canal y el contenido reciente a un fichero de respaldo JSON, que puede ser restaurado o importado a otro servidor. Este fichero incluye todas sus conexiones, permisos, datos del perfil y publicaciones de varios meses. Puede llegar a ser MUY grande. Por favor, sea paciente, la descarga puede tardar varios minutos en comenzar."; -App::$strings["Export your posts from a given year."] = "Exporta sus publicaciones de un año dado."; -App::$strings["You may also export your posts and conversations for a particular year or month. Adjust the date in your browser location bar to select other dates. If the export fails (possibly due to memory exhaustion on your server hub), please try again selecting a more limited date range."] = "También puede exportar sus mensajes y conversaciones durante un año o mes en particular. Ajuste la fecha en la barra de direcciones del navegador para seleccionar otras fechas. Si la exportación falla (posiblemente debido al agotamiento de la memoria del servidor hub), por favor, intente de nuevo la selección de un rango de fechas más pequeño."; -App::$strings["To select all posts for a given year, such as this year, visit %2\$s"] = "Para seleccionar todos los mensajes de un año determinado, como este año, visite %2\$s"; -App::$strings["To select all posts for a given month, such as January of this year, visit %2\$s"] = "Para seleccionar todos los mensajes de un mes determinado, como el de enero de este año, visite %2\$s"; -App::$strings["These content files may be imported or restored by visiting %2\$s on any site containing your channel. For best results please import or restore these in date order (oldest first)."] = "Estos ficheros pueden ser importados o restaurados visitando %2\$s o cualquier sitio que contenga su canal. Para obtener los mejores resultados, por favor, importar o restaurar estos ficheros en orden de fecha (la más antigua primero)."; +App::$strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Encontramos un problema durante el inicio de sesión con la OpenID que proporcionó. Por favor, compruebe que la ID está correctamente escrita."; +App::$strings["The error message was:"] = "El mensaje de error fue:"; +App::$strings["Authentication failed."] = "Falló la autenticación."; +App::$strings["Remote Authentication"] = "Acceso desde su servidor"; +App::$strings["Enter your channel address (e.g. channel@example.com)"] = "Introduzca la dirección del canal (p.ej. canal@ejemplo.com)"; +App::$strings["Authenticate"] = "Acceder"; App::$strings["Items tagged with: %s"] = "elementos etiquetados con: %s"; App::$strings["Search results for: %s"] = "Resultados de la búsqueda para: %s"; App::$strings["No service class restrictions found."] = "No se han encontrado restricciones sobre esta clase de servicio."; App::$strings["Name is required"] = "El nombre es obligatorio"; App::$strings["Key and Secret are required"] = "\"Key\" y \"Secret\" son obligatorios"; -App::$strings["This channel is limited to %d tokens"] = ""; -App::$strings["Name and Password are required."] = ""; -App::$strings["Token saved."] = ""; App::$strings["Not valid email."] = "Correo electrónico no válido."; App::$strings["Protected email address. Cannot change to that email."] = "Dirección de correo electrónico protegida. No se puede cambiar a ella."; App::$strings["System failure storing new email. Please try again."] = "Fallo de sistema al guardar el nuevo correo electrónico. Por favor, inténtelo de nuevo."; @@ -1187,12 +1129,6 @@ App::$strings["Confirm New Password"] = "Confirmar la nueva contraseña"; App::$strings["Leave password fields blank unless changing"] = "Dejar en blanco la contraseña a menos que desee cambiarla."; App::$strings["Email Address:"] = "Dirección de correo electrónico:"; App::$strings["Remove this account including all its channels"] = "Eliminar esta cuenta incluyendo todos sus canales"; -App::$strings["Use this form to create temporary access identifiers to share things with non-members. These identities may be used in Access Control Lists and visitors may login using these credentials to access the private content."] = ""; -App::$strings["You may also provide dropbox style access links to friends and associates by adding the Login Password to any specific site URL as shown. Examples:"] = ""; -App::$strings["Guest Access Tokens"] = ""; -App::$strings["Login Name"] = ""; -App::$strings["Login Password"] = ""; -App::$strings["Expires (yyyy-mm-dd)"] = ""; App::$strings["Additional Features"] = "Funcionalidades"; App::$strings["Connector Settings"] = "Configuración del conector"; App::$strings["No special theme for mobile devices"] = "Sin tema especial para dispositivos móviles"; @@ -1355,6 +1291,7 @@ App::$strings["GD graphics PHP module"] = "módulo PHP GD graphics"; App::$strings["OpenSSL PHP module"] = "módulo PHP OpenSSL"; App::$strings["mysqli or postgres PHP module"] = "módulo PHP mysqli o postgres"; App::$strings["mb_string PHP module"] = "módulo PHP mb_string"; +App::$strings["mcrypt PHP module"] = "módulo PHP mcrypt "; App::$strings["xml PHP module"] = "módulo PHP xml"; App::$strings["Apache mod_rewrite module"] = "módulo Apache mod_rewrite "; App::$strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Error: se necesita el módulo del servidor web Apache mod-rewrite pero no está instalado."; @@ -1365,6 +1302,7 @@ App::$strings["Error: GD graphics PHP module with JPEG support required but not App::$strings["Error: openssl PHP module required but not installed."] = "Error: el módulo PHP openssl es necesario, pero no está instalado."; App::$strings["Error: mysqli or postgres PHP module required but neither are installed."] = "Error: el módulo PHP mysqli o postgres es necesario pero ninguno de los dos está instalado."; App::$strings["Error: mb_string PHP module required but not installed."] = "Error: el módulo PHP mb_string es necesario, pero no está instalado."; +App::$strings["Error: mcrypt PHP module required but not installed."] = "Error: el módulo PHP mcrypt es necesario, pero no está instalado."; App::$strings["Error: xml PHP module required for DAV but not installed."] = "Error: el módulo PHP xml es necesario para DAV, pero no está instalado."; App::$strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "El instalador web no ha podido crear un fichero llamado “.htconfig.php” en la carpeta base de su servidor."; App::$strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "Esto está generalmente ligado a un problema de permisos, a causa del cual el servidor web tiene prohibido modificar ficheros en su carpeta - incluso si usted mismo tiene esos permisos."; @@ -1376,7 +1314,7 @@ App::$strings["In order to store these compiled templates, the web server needs App::$strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Por favor, asegúrese de que el servidor web está siendo ejecutado por un usuario que tenga permisos de escritura sobre esta carpeta (por ejemplo, www-data)."; App::$strings["Note: as a security measure, you should give the web server write access to %s only--not the template files (.tpl) that it contains."] = "Nota: como medida de seguridad, debe dar al servidor web permisos de escritura solo sobre %s - no sobre el fichero de plantilla (.tpl) que contiene."; App::$strings["%s is writable"] = "%s tiene permisos de escritura"; -App::$strings["This software 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"] = ""; +App::$strings["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"] = "Hubzilla guarda los ficheros descargados en la carpeta \"store\". El servidor web necesita tener permisos de escritura sobre esa carpeta, en el directorio de instalación."; App::$strings["store is writable"] = "\"store\" tiene permisos de escritura"; App::$strings["SSL certificate cannot be validated. Fix certificate or disable https access to this site."] = "El certificado SSL no ha podido ser validado. Corrija este problema o desactive el acceso https a este sitio."; App::$strings["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!"] = "Si su servidor soporta conexiones cifradas SSL o si permite conexiones al puerto TCP 443 (el puerto usado por el protocolo https), debe utilizar un certificado válido. No debe usar un certificado firmado por usted mismo."; @@ -1384,7 +1322,6 @@ App::$strings["This restriction is incorporated because public posts from you ma App::$strings["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."] = "Si su certificado no ha sido reconocido, los miembros de otros sitios (con certificados válidos) recibirán mensajes de aviso en sus propios sitios web."; App::$strings["This can cause usability issues elsewhere (not just on your own site) so we must insist on this requirement."] = "Por razones de compatibilidad (sobre el conjunto de la red, no solo sobre su propio sitio), debemos insistir en estos requisitos."; App::$strings["Providers are available that issue free certificates which are browser-valid."] = "Existen varias Autoridades de Certificación que le pueden proporcionar certificados válidos."; -App::$strings["If you are confident that the certificate is valid and signed by a trusted authority, check to see if you have failed to install an intermediate cert. These are not normally required by browsers, but are required for server-to-server communications."] = ""; App::$strings["SSL certificate validation"] = "validación del certificado SSL"; App::$strings["Url rewrite in .htaccess is not working. Check your server configuration.Test: "] = "No se pueden reescribir las direcciones web en .htaccess. Compruebe la configuración de su servidor:"; App::$strings["Url rewrite is working"] = "La reescritura de las direcciones funciona correctamente"; @@ -1396,20 +1333,19 @@ App::$strings["Files: shared with me"] = "Ficheros: compartidos conmigo"; App::$strings["NEW"] = "NUEVO"; App::$strings["Remove all files"] = "Eliminar todos los ficheros"; App::$strings["Remove this file"] = "Eliminar este fichero"; -App::$strings["Thing updated"] = "Elemento actualizado."; -App::$strings["Object store: failed"] = "Guardar objeto: ha fallado"; -App::$strings["Thing added"] = "Elemento añadido"; -App::$strings["OBJ: %1\$s %2\$s %3\$s"] = "OBJ: %1\$s %2\$s %3\$s"; -App::$strings["Show Thing"] = "Mostrar elemento"; -App::$strings["item not found."] = "elemento no encontrado."; -App::$strings["Edit Thing"] = "Editar elemento"; -App::$strings["Select a profile"] = "Seleccionar un perfil"; -App::$strings["Post an activity"] = "Publicar una actividad"; -App::$strings["Only sends to viewers of the applicable profile"] = "Sólo enviar a espectadores del perfil pertinente."; -App::$strings["Name of thing e.g. something"] = "Nombre del elemento, p. ej.:. \"algo\""; -App::$strings["URL of thing (optional)"] = "Dirección del elemento (opcional)"; -App::$strings["URL for photo of thing (optional)"] = "Dirección para la foto o elemento (opcional)"; -App::$strings["Add Thing to your Profile"] = "Añadir alguna cosa a su perfil"; +App::$strings["Version %s"] = "Versión %s"; +App::$strings["Installed plugins/addons/apps:"] = "Extensiones (plugins), complementos o aplicaciones (apps) instaladas:"; +App::$strings["No installed plugins/addons/apps"] = "No hay instalada ninguna extensión (plugin), complemento o aplicación (app)"; +App::$strings["This is a hub of \$Projectname - a global cooperative network of decentralized privacy enhanced websites."] = "Este es un sitio integrado en \$Projectname - una red cooperativa mundial de sitios web descentralizados de privacidad mejorada."; +App::$strings["Tag: "] = "Etiqueta:"; +App::$strings["Last background fetch: "] = "Última actualización en segundo plano:"; +App::$strings["Current load average: "] = "Carga media actual:"; +App::$strings["Running at web location"] = "Corriendo en el sitio web"; +App::$strings["Please visit hubzilla.org to learn more about \$Projectname."] = "Por favor, visite hubzilla.org para más información sobre \$Projectname."; +App::$strings["Bug reports and issues: please visit"] = "Informes de errores e incidencias: por favor visite"; +App::$strings["\$projectname issues"] = "Problemas en \$projectname"; +App::$strings["Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com"] = "Sugerencias, elogios, etc - por favor, un correo electrónico a \"redmatrix\" en librelist - punto com"; +App::$strings["Site Administrators"] = "Administradores del sitio"; App::$strings["Failed to create source. No channel selected."] = "Imposible crear el origen de los contenidos. Ningún canal ha sido seleccionado."; App::$strings["Source created."] = "Fuente creada."; App::$strings["Source updated."] = "Fuente actualizada."; @@ -1437,38 +1373,60 @@ App::$strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s ha etiquetado %3 App::$strings["Tag removed"] = "Etiqueta eliminada."; App::$strings["Remove Item Tag"] = "Eliminar etiqueta del elemento."; App::$strings["Select a tag to remove: "] = "Seleccionar una etiqueta para eliminar:"; -App::$strings["Webpages"] = "Páginas web"; -App::$strings["Actions"] = "Acciones"; -App::$strings["Page Link"] = "Vínculo de la página"; -App::$strings["Page Title"] = "Título de página"; -App::$strings["Not found"] = ""; -App::$strings["Wiki"] = "Wiki"; -App::$strings["Sandbox"] = "Entorno de edición"; -App::$strings["\"# Wiki Sandbox\\n\\nContent you **edit** and **preview** here *will not be saved*.\""] = ""; -App::$strings["Revision Comparison"] = "Comparación de revisiones"; -App::$strings["Revert"] = "Revertir"; -App::$strings["Enter the name of your new wiki:"] = "Nombre de su nuevo wiki:"; -App::$strings["Enter the name of the new page:"] = "Nombre de la nueva página:"; -App::$strings["Enter the new name:"] = "Nuevo nombre:"; -App::$strings["Embed image from photo albums"] = "Incluir una imagen de los álbumes de fotos"; -App::$strings["Embed an image from your albums"] = "Incluir una imagen de sus álbumes"; -App::$strings["OK"] = "OK"; -App::$strings["Choose images to embed"] = "Elegir imágenes para incluir"; -App::$strings["Choose an album"] = "Elegir un álbum"; -App::$strings["Choose a different album..."] = "Elegir un álbum diferente..."; -App::$strings["Error getting album list"] = "Error al obtener la lista de álbumes"; -App::$strings["Error getting photo link"] = "Error al obtener el enlace de la foto"; -App::$strings["Error getting album"] = "Error al obtener el álbum"; +App::$strings["Thing updated"] = "Elemento actualizado."; +App::$strings["Object store: failed"] = "Guardar objeto: ha fallado"; +App::$strings["Thing added"] = "Elemento añadido"; +App::$strings["OBJ: %1\$s %2\$s %3\$s"] = "OBJ: %1\$s %2\$s %3\$s"; +App::$strings["Show Thing"] = "Mostrar elemento"; +App::$strings["item not found."] = "elemento no encontrado."; +App::$strings["Edit Thing"] = "Editar elemento"; +App::$strings["Select a profile"] = "Seleccionar un perfil"; +App::$strings["Post an activity"] = "Publicar una actividad"; +App::$strings["Only sends to viewers of the applicable profile"] = "Sólo enviar a espectadores del perfil pertinente."; +App::$strings["Name of thing e.g. something"] = "Nombre del elemento, p. ej.:. \"algo\""; +App::$strings["URL of thing (optional)"] = "Dirección del elemento (opcional)"; +App::$strings["URL for photo of thing (optional)"] = "Dirección para la foto o elemento (opcional)"; +App::$strings["Add Thing to your Profile"] = "Añadir alguna cosa a su perfil"; +App::$strings["Export Channel"] = "Exportar el canal"; +App::$strings["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."] = "Exportar la información básica del canal a un fichero. Este equivale a una copia de seguridad de sus conexiones, el perfil y datos fundamentales, que puede usarse para importar sus datos a un nuevo servidor, pero no incluye su contenido."; +App::$strings["Export Content"] = "Exportar contenidos"; +App::$strings["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."] = "Exportar la información sobre su canal y el contenido reciente a un fichero de respaldo JSON, que puede ser restaurado o importado a otro servidor. Este fichero incluye todas sus conexiones, permisos, datos del perfil y publicaciones de varios meses. Puede llegar a ser MUY grande. Por favor, sea paciente, la descarga puede tardar varios minutos en comenzar."; +App::$strings["Export your posts from a given year."] = "Exporta sus publicaciones de un año dado."; +App::$strings["You may also export your posts and conversations for a particular year or month. Adjust the date in your browser location bar to select other dates. If the export fails (possibly due to memory exhaustion on your server hub), please try again selecting a more limited date range."] = "También puede exportar sus mensajes y conversaciones durante un año o mes en particular. Ajuste la fecha en la barra de direcciones del navegador para seleccionar otras fechas. Si la exportación falla (posiblemente debido al agotamiento de la memoria del servidor hub), por favor, intente de nuevo la selección de un rango de fechas más pequeño."; +App::$strings["To select all posts for a given year, such as this year, visit %2\$s"] = "Para seleccionar todos los mensajes de un año determinado, como este año, visite %2\$s"; +App::$strings["To select all posts for a given month, such as January of this year, visit %2\$s"] = "Para seleccionar todos los mensajes de un mes determinado, como el de enero de este año, visite %2\$s"; +App::$strings["These content files may be imported or restored by visiting %2\$s on any site containing your channel. For best results please import or restore these in date order (oldest first)."] = "Estos ficheros pueden ser importados o restaurados visitando %2\$s o cualquier sitio que contenga su canal. Para obtener los mejores resultados, por favor, importar o restaurar estos ficheros en orden de fecha (la más antigua primero)."; App::$strings["No connections."] = "Sin conexiones."; App::$strings["Visit %s's profile [%s]"] = "Visitar el perfil de %s [%s]"; App::$strings["View Connections"] = "Ver conexiones"; App::$strings["Source of Item"] = "Origen del elemento"; -App::$strings["Authorize application connection"] = "Autorizar una conexión de aplicación"; -App::$strings["Return to your app and insert this Securty Code:"] = "Volver a su aplicación e introducir este código de seguridad:"; -App::$strings["Please login to continue."] = "Por favor inicie sesión para continuar."; -App::$strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "¿Desea autorizar a esta aplicación a acceder a sus publicaciones y contactos, y/o crear nuevas publicaciones por usted?"; +App::$strings["Webpages"] = "Páginas web"; +App::$strings["Actions"] = "Acciones"; +App::$strings["Page Link"] = "Vínculo de la página"; +App::$strings["Page Title"] = "Título de página"; App::$strings["Xchan Lookup"] = "Búsqueda de canales"; App::$strings["Lookup xchan beginning with (or webbie): "] = "Buscar un canal (o un \"webbie\") que comience por:"; +App::$strings["Site Admin"] = "Administrador del sitio"; +App::$strings["Bug Report"] = "Informe de errores"; +App::$strings["View Bookmarks"] = "Ver los marcadores"; +App::$strings["My Chatrooms"] = "Mis salas de chat"; +App::$strings["Firefox Share"] = "Servicio de compartición de Firefox"; +App::$strings["Remote Diagnostics"] = "Diagnóstico remoto"; +App::$strings["Suggest Channels"] = "Sugerir canales"; +App::$strings["Login"] = "Iniciar sesión"; +App::$strings["Grid"] = "Red"; +App::$strings["Channel Home"] = "Mi canal"; +App::$strings["Events"] = "Eventos"; +App::$strings["Directory"] = "Directorio"; +App::$strings["Mail"] = "Correo"; +App::$strings["Chat"] = "Chat"; +App::$strings["Probe"] = "Probar"; +App::$strings["Suggest"] = "Sugerir"; +App::$strings["Random Channel"] = "Canal aleatorio"; +App::$strings["Invite"] = "Invitar"; +App::$strings["Features"] = "Funcionalidades"; +App::$strings["Post"] = "Publicación"; +App::$strings["Purchase"] = "Comprar"; App::$strings["Missing room name"] = "Sala de chat sin nombre"; App::$strings["Duplicate room name"] = "Nombre de sala duplicado."; App::$strings["Invalid room specifier."] = "Especificador de sala no válido."; @@ -1516,27 +1474,6 @@ App::$strings["Please visit %s to approve or reject the suggestion."] = "Por fav App::$strings["[Hubzilla:Notify]"] = "[Hubzilla:Aviso]"; App::$strings["created a new post"] = "ha creado una nueva entrada"; App::$strings["commented on %s's post"] = "ha comentado la entrada de %s"; -App::$strings["Site Admin"] = "Administrador del sitio"; -App::$strings["Bug Report"] = "Informe de errores"; -App::$strings["View Bookmarks"] = "Ver los marcadores"; -App::$strings["My Chatrooms"] = "Mis salas de chat"; -App::$strings["Firefox Share"] = "Servicio de compartición de Firefox"; -App::$strings["Remote Diagnostics"] = "Diagnóstico remoto"; -App::$strings["Suggest Channels"] = "Sugerir canales"; -App::$strings["Login"] = "Iniciar sesión"; -App::$strings["Grid"] = "Red"; -App::$strings["Channel Home"] = "Mi canal"; -App::$strings["Events"] = "Eventos"; -App::$strings["Directory"] = "Directorio"; -App::$strings["Mail"] = "Correo"; -App::$strings["Chat"] = "Chat"; -App::$strings["Probe"] = "Probar"; -App::$strings["Suggest"] = "Sugerir"; -App::$strings["Random Channel"] = "Canal aleatorio"; -App::$strings["Invite"] = "Invitar"; -App::$strings["Features"] = "Funcionalidades"; -App::$strings["Post"] = "Publicación"; -App::$strings["Purchase"] = "Comprar"; App::$strings["Private Message"] = "Mensaje Privado"; App::$strings["Select"] = "Seleccionar"; App::$strings["Save to Folder"] = "Guardar en carpeta"; @@ -1573,7 +1510,7 @@ App::$strings["Expires: %s"] = "Caduca: %s"; App::$strings["Save Bookmarks"] = "Guardar en Marcadores"; App::$strings["Add to Calendar"] = "Añadir al calendario"; App::$strings["Mark all seen"] = "Marcar todo como visto"; -App::$strings["%s show all"] = ""; +App::$strings["[+] show all"] = "[+] mostrar todo:"; App::$strings["Bold"] = "Negrita"; App::$strings["Italic"] = "Itálico "; App::$strings["Underline"] = "Subrayar"; @@ -1582,93 +1519,9 @@ App::$strings["Code"] = "Código"; App::$strings["Image"] = "Imagen"; App::$strings["Insert Link"] = "Insertar enlace"; App::$strings["Video"] = "Vídeo"; -App::$strings["Visible to your default audience"] = "Visible para su público predeterminado."; -App::$strings["Only me"] = "Sólo yo"; -App::$strings["Public"] = "Público"; -App::$strings["Anybody in the \$Projectname network"] = "Cualquiera en la red \$Projectname"; -App::$strings["Any account on %s"] = "Cualquier cuenta en %s"; -App::$strings["Any of my connections"] = "Cualquiera de mis conexiones"; -App::$strings["Only connections I specifically allow"] = "Sólo las conexiones que yo permita de forma explícita"; -App::$strings["Anybody authenticated (could include visitors from other networks)"] = "Cualquiera que esté autenticado (podría incluir a los visitantes de otras redes)"; -App::$strings["Any connections including those who haven't yet been approved"] = "Cualquier conexión incluyendo aquellas que aún no han sido aprobadas"; -App::$strings["This is your default setting for the audience of your normal stream, and posts."] = "Esta es la configuración predeterminada para su flujo (stream) habitual de publicaciones."; -App::$strings["This is your default setting for who can view your default channel profile"] = "Esta es su configuración por defecto para establecer quién puede ver su perfil del canal predeterminado"; -App::$strings["This is your default setting for who can view your connections"] = "Este es su ajuste predeterminado para establecer quién puede ver sus conexiones"; -App::$strings["This is your default setting for who can view your file storage and photos"] = "Este es su ajuste predeterminado para establecer quién puede ver su repositorio de ficheros y sus fotos"; -App::$strings["This is your default setting for the audience of your webpages"] = "Este es el ajuste predeterminado para establecer la audiencia de sus páginas web"; App::$strings["No username found in import file."] = "No se ha encontrado el nombre de usuario en el fichero importado."; App::$strings["Unable to create a unique channel address. Import failed."] = "No se ha podido crear una dirección de canal única. Ha fallado la importación."; App::$strings["Cannot locate DNS info for database server '%s'"] = "No se ha podido localizar información de DNS para el servidor de base de datos “%s”"; -App::$strings["Image exceeds website size limit of %lu bytes"] = "La imagen excede el límite de %lu bytes del sitio"; -App::$strings["Image file is empty."] = "El fichero de imagen está vacío. "; -App::$strings["Photo storage failed."] = "La foto no ha podido ser guardada."; -App::$strings["a new photo"] = "una nueva foto"; -App::$strings["__ctx:photo_upload__ %1\$s posted %2\$s to %3\$s"] = "%1\$s ha publicado %2\$s en %3\$s"; -App::$strings["Photo Albums"] = "Álbumes de fotos"; -App::$strings["Upload New Photos"] = "Subir nuevas fotos"; -App::$strings["Logout"] = "Finalizar sesión"; -App::$strings["End this session"] = "Finalizar esta sesión"; -App::$strings["Home"] = "Inicio"; -App::$strings["Your posts and conversations"] = "Sus publicaciones y conversaciones"; -App::$strings["Your profile page"] = "Su página del perfil"; -App::$strings["Manage/Edit profiles"] = "Administrar/editar perfiles"; -App::$strings["Edit Profile"] = "Editar el perfil"; -App::$strings["Edit your profile"] = "Editar su perfil"; -App::$strings["Your photos"] = "Sus fotos"; -App::$strings["Your files"] = "Sus ficheros"; -App::$strings["Your chatrooms"] = "Sus salas de chat"; -App::$strings["Bookmarks"] = "Marcadores"; -App::$strings["Your bookmarks"] = "Sus marcadores"; -App::$strings["Your webpages"] = "Sus páginas web"; -App::$strings["Your wiki"] = ""; -App::$strings["Sign in"] = "Acceder"; -App::$strings["%s - click to logout"] = "%s - pulsar para finalizar sesión"; -App::$strings["Remote authentication"] = "Acceder desde su servidor"; -App::$strings["Click to authenticate to your home hub"] = "Pulsar para identificarse en su servidor de inicio"; -App::$strings["Home Page"] = "Página de inicio"; -App::$strings["Create an account"] = "Crear una cuenta"; -App::$strings["Help and documentation"] = "Ayuda y documentación"; -App::$strings["Applications, utilities, links, games"] = "Aplicaciones, utilidades, enlaces, juegos"; -App::$strings["Search site @name, #tag, ?docs, content"] = "Buscar en el sitio por @nombre, #etiqueta, ?ayuda o contenido"; -App::$strings["Channel Directory"] = "Directorio de canales"; -App::$strings["Your grid"] = "Mi red"; -App::$strings["Mark all grid notifications seen"] = "Marcar todas las notificaciones de la red como vistas"; -App::$strings["Channel home"] = "Mi canal"; -App::$strings["Mark all channel notifications seen"] = "Marcar todas las notificaciones del canal como leídas"; -App::$strings["Notices"] = "Avisos"; -App::$strings["Notifications"] = "Notificaciones"; -App::$strings["See all notifications"] = "Ver todas las notificaciones"; -App::$strings["Private mail"] = "Correo privado"; -App::$strings["See all private messages"] = "Ver todas los mensajes privados"; -App::$strings["Mark all private messages seen"] = "Marcar todos los mensajes privados como leídos"; -App::$strings["Inbox"] = "Bandeja de entrada"; -App::$strings["Outbox"] = "Bandeja de salida"; -App::$strings["New Message"] = "Nuevo mensaje"; -App::$strings["Event Calendar"] = "Calendario de eventos"; -App::$strings["See all events"] = "Ver todos los eventos"; -App::$strings["Mark all events seen"] = "Marcar todos los eventos como leidos"; -App::$strings["Manage Your Channels"] = "Gestionar sus canales"; -App::$strings["Account/Channel Settings"] = "Ajustes de cuenta/canales"; -App::$strings["Admin"] = "Administrador"; -App::$strings["Site Setup and Configuration"] = "Ajustes y configuración del sitio"; -App::$strings["Loading..."] = "Cargando..."; -App::$strings["@name, #tag, ?doc, content"] = "@nombre, #etiqueta, ?ayuda, contenido"; -App::$strings["Please wait..."] = "Espere por favor…"; -App::$strings["view full size"] = "Ver en el tamaño original"; -App::$strings["Administrator"] = "Administrador"; -App::$strings["No Subject"] = "Sin asunto"; -App::$strings["Friendica"] = "Friendica"; -App::$strings["OStatus"] = "OStatus"; -App::$strings["GNU-Social"] = "GNU Social"; -App::$strings["RSS/Atom"] = "RSS/Atom"; -App::$strings["Diaspora"] = "Diaspora"; -App::$strings["Facebook"] = "Facebook"; -App::$strings["Zot"] = "Zot"; -App::$strings["LinkedIn"] = "LinkedIn"; -App::$strings["XMPP/IM"] = "XMPP/IM"; -App::$strings["MySpace"] = "MySpace"; -App::$strings["New Page"] = "Nueva página"; -App::$strings["Title"] = "Título"; App::$strings["Categories"] = "Categorías"; App::$strings["Tags"] = "Etiquetas"; App::$strings["Keywords"] = "Palabras clave"; @@ -1678,196 +1531,34 @@ App::$strings["want"] = "quiero"; App::$strings["wants"] = "quiere"; App::$strings["likes"] = "gusta de"; App::$strings["dislikes"] = "no gusta de"; -App::$strings["Unable to obtain identity information from database"] = "No ha sido posible obtener información sobre la identidad desde la base de datos"; -App::$strings["Empty name"] = "Nombre vacío"; -App::$strings["Name too long"] = "Nombre demasiado largo"; -App::$strings["No account identifier"] = "Ningún identificador de la cuenta"; -App::$strings["Nickname is required."] = "Se requiere un sobrenombre (alias)."; -App::$strings["Reserved nickname. Please choose another."] = "Sobrenombre en uso. Por favor, elija otro."; -App::$strings["Nickname has unsupported characters or is already being used on this site."] = "El alias contiene caracteres no admitidos o está ya en uso por otros miembros de este sitio."; -App::$strings["Unable to retrieve created identity"] = "No ha sido posible recuperar la identidad creada"; -App::$strings["Default Profile"] = "Perfil principal"; -App::$strings["Requested channel is not available."] = "El canal solicitado no está disponible."; -App::$strings["Create New Profile"] = "Crear un nuevo perfil"; -App::$strings["Visible to everybody"] = "Visible para todos"; -App::$strings["Gender:"] = "Género:"; -App::$strings["Status:"] = "Estado:"; -App::$strings["Homepage:"] = "Página personal:"; -App::$strings["Online Now"] = "Ahora en línea"; -App::$strings["Like this channel"] = "Me gusta este canal"; -App::$strings["j F, Y"] = "j F Y"; -App::$strings["j F"] = "j F"; -App::$strings["Birthday:"] = "Cumpleaños:"; -App::$strings["for %1\$d %2\$s"] = "por %1\$d %2\$s"; -App::$strings["Sexual Preference:"] = "Orientación sexual:"; -App::$strings["Tags:"] = "Etiquetas:"; -App::$strings["Political Views:"] = "Posición política:"; -App::$strings["Religion:"] = "Religión:"; -App::$strings["Hobbies/Interests:"] = "Aficciones o intereses:"; -App::$strings["Likes:"] = "Me gusta:"; -App::$strings["Dislikes:"] = "No me gusta:"; -App::$strings["Contact information and Social Networks:"] = "Información de contacto y redes sociales:"; -App::$strings["My other channels:"] = "Mis otros canales:"; -App::$strings["Musical interests:"] = "Preferencias musicales:"; -App::$strings["Books, literature:"] = "Libros, literatura:"; -App::$strings["Television:"] = "Televisión:"; -App::$strings["Film/dance/culture/entertainment:"] = "Cine, danza, cultura, entretenimiento:"; -App::$strings["Love/Romance:"] = "Vida sentimental o amorosa:"; -App::$strings["Work/employment:"] = "Trabajo:"; -App::$strings["School/education:"] = "Estudios:"; -App::$strings["Like this thing"] = "Me gusta esto"; -App::$strings["New window"] = "Nueva ventana"; -App::$strings["Open the selected location in a different window or browser tab"] = "Abrir la dirección seleccionada en una ventana o pestaña aparte"; -App::$strings["User '%s' deleted"] = "El usuario '%s' ha sido eliminado"; -App::$strings["%1\$s is now connected with %2\$s"] = "%1\$s ahora está conectado/a con %2\$s"; -App::$strings["%1\$s poked %2\$s"] = "%1\$s ha dado un toque a %2\$s"; -App::$strings["poked"] = "ha dado un toque a"; -App::$strings["View %s's profile @ %s"] = "Ver el perfil @ %s de %s"; -App::$strings["Categories:"] = "Categorías:"; -App::$strings["Filed under:"] = "Archivado bajo:"; -App::$strings["View in context"] = "Mostrar en su contexto"; -App::$strings["remove"] = "eliminar"; -App::$strings["Delete Selected Items"] = "Eliminar elementos seleccionados"; -App::$strings["View Source"] = "Ver el código fuente de la entrada"; -App::$strings["Follow Thread"] = "Seguir este hilo"; -App::$strings["Unfollow Thread"] = "Dejar de seguir este hilo"; -App::$strings["Activity/Posts"] = "Actividad y publicaciones"; -App::$strings["Edit Connection"] = "Editar conexión"; -App::$strings["Message"] = "Mensaje"; -App::$strings["%s likes this."] = "A %s le gusta esto."; -App::$strings["%s doesn't like this."] = "A %s no le gusta esto."; -App::$strings["%2\$d people like this."] = array( - 0 => "a %2\$d personas le gusta esto.", - 1 => "A %2\$d personas les gusta esto.", -); -App::$strings["%2\$d people don't like this."] = array( - 0 => "a %2\$d personas no les gusta esto.", - 1 => "A %2\$d personas no les gusta esto.", -); -App::$strings["and"] = "y"; -App::$strings[", and %d other people"] = array( - 0 => ", y %d persona más", - 1 => ", y %d personas más", -); -App::$strings["%s like this."] = "A %s le gusta esto."; -App::$strings["%s don't like this."] = "A %s no le gusta esto."; -App::$strings["Set your location"] = "Establecer su ubicación"; -App::$strings["Clear browser location"] = "Eliminar los datos de localización geográfica del navegador"; -App::$strings["Tag term:"] = "Término de la etiqueta:"; -App::$strings["Where are you right now?"] = "¿Donde está ahora?"; -App::$strings["Page link name"] = "Nombre del enlace de la página"; -App::$strings["Post as"] = "Publicar como"; -App::$strings["Toggle voting"] = "Cambiar votación"; -App::$strings["Categories (optional, comma-separated list)"] = "Categorías (opcional, lista separada por comas)"; -App::$strings["Set publish date"] = "Establecer la fecha de publicación"; -App::$strings["Discover"] = "Descubrir"; -App::$strings["Imported public streams"] = "Contenidos públicos importados"; -App::$strings["Commented Order"] = "Comentarios recientes"; -App::$strings["Sort by Comment Date"] = "Ordenar por fecha de comentario"; -App::$strings["Posted Order"] = "Publicaciones recientes"; -App::$strings["Sort by Post Date"] = "Ordenar por fecha de publicación"; -App::$strings["Posts that mention or involve you"] = "Publicaciones que le mencionan o involucran"; -App::$strings["Activity Stream - by date"] = "Contenido - por fecha"; -App::$strings["Starred"] = "Preferidas"; -App::$strings["Favourite Posts"] = "Publicaciones favoritas"; -App::$strings["Spam"] = "Correo basura"; -App::$strings["Posts flagged as SPAM"] = "Publicaciones marcadas como basura"; -App::$strings["Status Messages and Posts"] = "Mensajes de estado y publicaciones"; -App::$strings["About"] = "Mi perfil"; -App::$strings["Profile Details"] = "Detalles del perfil"; -App::$strings["Files and Storage"] = "Ficheros y repositorio"; -App::$strings["Chatrooms"] = "Salas de chat"; -App::$strings["Saved Bookmarks"] = "Marcadores guardados"; -App::$strings["Manage Webpages"] = "Administrar páginas web"; -App::$strings["__ctx:noun__ Attending"] = array( - 0 => "Participaré", - 1 => "Participaré", -); -App::$strings["__ctx:noun__ Not Attending"] = array( - 0 => "No participaré", - 1 => "No participaré", -); -App::$strings["__ctx:noun__ Undecided"] = array( - 0 => "Indeciso/a", - 1 => "Indecisos/as", -); -App::$strings["__ctx:noun__ Agree"] = array( - 0 => "De acuerdo", - 1 => "De acuerdo", -); -App::$strings["__ctx:noun__ Disagree"] = array( - 0 => "En desacuerdo", - 1 => "En desacuerdo", -); -App::$strings["__ctx:noun__ Abstain"] = array( - 0 => "se abstiene", - 1 => "Se abstienen", -); +App::$strings["l F d, Y \\@ g:i A"] = "l d de F, Y \\@ G:i"; +App::$strings["Starts:"] = "Comienza:"; +App::$strings["Finishes:"] = "Finaliza:"; +App::$strings["This event has been added to your calendar."] = "Este evento ha sido añadido a su calendario."; +App::$strings["Not specified"] = "Sin especificar"; +App::$strings["Needs Action"] = "Necesita de una intervención"; +App::$strings["Completed"] = "Completado/a"; +App::$strings["In Process"] = "En proceso"; +App::$strings["Cancelled"] = "Cancelado/a"; App::$strings["Cannot create a duplicate channel identifier on this system. Import failed."] = "No se ha podido crear un canal con un identificador que ya existe en este sistema. La importación ha fallado."; App::$strings["Channel clone failed. Import failed."] = "La clonación del canal no ha salido bien. La importación ha fallado."; -App::$strings["Frequently"] = "Frecuentemente"; -App::$strings["Hourly"] = "Cada hora"; -App::$strings["Twice daily"] = "Dos veces al día"; -App::$strings["Daily"] = "Diariamente"; -App::$strings["Weekly"] = "Semanalmente"; -App::$strings["Monthly"] = "Mensualmente"; -App::$strings["Currently Male"] = "Actualmente hombre"; -App::$strings["Currently Female"] = "Actualmente mujer"; -App::$strings["Mostly Male"] = "Generalmente hombre"; -App::$strings["Mostly Female"] = "Generalmente mujer"; -App::$strings["Transgender"] = "Transgénero"; -App::$strings["Intersex"] = "Intersexual"; -App::$strings["Transsexual"] = "Transexual"; -App::$strings["Hermaphrodite"] = "Hermafrodita"; -App::$strings["Neuter"] = "Neutral"; -App::$strings["Non-specific"] = "No especificado"; -App::$strings["Undecided"] = "Indeciso/a"; -App::$strings["Males"] = "Hombres"; -App::$strings["Females"] = "Mujeres"; -App::$strings["Gay"] = "Homosexual"; -App::$strings["Lesbian"] = "Lesbiana"; -App::$strings["No Preference"] = "Sin preferencias"; -App::$strings["Bisexual"] = "Bisexual"; -App::$strings["Autosexual"] = "Autosexual"; -App::$strings["Abstinent"] = "Casto/a"; -App::$strings["Virgin"] = "Virgen"; -App::$strings["Deviant"] = "Fuera de lo común"; -App::$strings["Fetish"] = "Fetichista"; -App::$strings["Oodles"] = "Orgías"; -App::$strings["Nonsexual"] = "Asexual"; -App::$strings["Single"] = "Soltero/a"; -App::$strings["Lonely"] = "Solo/a"; -App::$strings["Available"] = "Disponible"; -App::$strings["Unavailable"] = "No disponible"; -App::$strings["Has crush"] = "Enamorado/a"; -App::$strings["Infatuated"] = "Apasionado/a"; -App::$strings["Dating"] = "Saliendo con alguien"; -App::$strings["Unfaithful"] = "Infiel"; -App::$strings["Sex Addict"] = "Con adicción al sexo"; -App::$strings["Friends/Benefits"] = "Amigos con algo extra"; -App::$strings["Casual"] = "Casual"; -App::$strings["Engaged"] = "Prometido/a"; -App::$strings["Married"] = "Casado/a"; -App::$strings["Imaginarily married"] = "Casado/a en sueños"; -App::$strings["Partners"] = "Pareja"; -App::$strings["Cohabiting"] = "Cohabitando"; -App::$strings["Common law"] = "Matrimonio tradicional"; -App::$strings["Happy"] = "Felíz"; -App::$strings["Not looking"] = "No estoy buscando"; -App::$strings["Swinger"] = "Libertino"; -App::$strings["Betrayed"] = "Engañado/a"; -App::$strings["Separated"] = "Separado/a"; -App::$strings["Unstable"] = "Inestable"; -App::$strings["Divorced"] = "Divorciado/a"; -App::$strings["Imaginarily divorced"] = "Divorciado/a en sueños"; -App::$strings["Widowed"] = "Viudo/a"; -App::$strings["Uncertain"] = "Indeterminado"; -App::$strings["It's complicated"] = "Es complicado"; -App::$strings["Don't care"] = "No me importa"; -App::$strings["Ask me"] = "Pregúnteme"; -App::$strings["%1\$s's bookmarks"] = "Marcadores de %1\$s"; -App::$strings["guest:"] = ""; -App::$strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "El \"token\" de seguridad del formulario no es correcto. Esto ha ocurrido probablemente porque el formulario ha estado abierto demasiado tiempo (>3 horas) antes de ser enviado"; +App::$strings["(Unknown)"] = "(Desconocido)"; +App::$strings["Visible to anybody on the internet."] = "Visible para cualquiera en internet."; +App::$strings["Visible to you only."] = "Visible sólo para usted."; +App::$strings["Visible to anybody in this network."] = "Visible para cualquiera en esta red."; +App::$strings["Visible to anybody authenticated."] = "Visible para cualquiera que esté autenticado."; +App::$strings["Visible to anybody on %s."] = "Visible para cualquiera en %s."; +App::$strings["Visible to all connections."] = "Visible para todas las conexiones."; +App::$strings["Visible to approved connections."] = "Visible para las conexiones permitidas."; +App::$strings["Visible to specific connections."] = "Visible para conexiones específicas."; +App::$strings["Privacy group is empty."] = "El grupo de canales está vacío."; +App::$strings["Privacy group: %s"] = "Grupo de canales: %s"; +App::$strings["Connection not found."] = "Conexión no encontrada"; +App::$strings["profile photo"] = "foto del perfil"; +App::$strings["No recipient provided."] = "No se ha especificado ningún destinatario."; +App::$strings["[no subject]"] = "[sin asunto]"; +App::$strings["Unable to determine sender."] = "No ha sido posible determinar el remitente. "; +App::$strings["Stored post could not be verified."] = "No se han podido verificar las publicaciones guardadas."; App::$strings["prev"] = "anterior"; App::$strings["first"] = "primera"; App::$strings["last"] = "última"; @@ -1877,6 +1568,7 @@ App::$strings["newer"] = "más recientes"; App::$strings["No connections"] = "Sin conexiones"; App::$strings["View all %s connections"] = "Ver todas las %s conexiones"; App::$strings["poke"] = "un toque"; +App::$strings["poked"] = "ha dado un toque a"; App::$strings["ping"] = "un \"ping\""; App::$strings["pinged"] = "ha enviado un \"ping\" a"; App::$strings["prod"] = "una incitación "; @@ -1939,21 +1631,385 @@ App::$strings["Select an alternate language"] = "Seleccionar un idioma alternati App::$strings["activity"] = "la actividad"; App::$strings["Design Tools"] = "Herramientas de diseño web"; App::$strings["Pages"] = "Páginas"; -App::$strings["Logged out."] = "Desconectado/a."; -App::$strings["Failed authentication"] = "Autenticación fallida."; -App::$strings["Can view my normal stream and posts"] = "Pueden verse mi actividad y publicaciones normales"; -App::$strings["Can view my webpages"] = "Pueden verse mis páginas web"; -App::$strings["Can post on my channel page (\"wall\")"] = "Pueden crearse entradas en mi página de inicio del canal (“muro”)"; -App::$strings["Can like/dislike stuff"] = "Puede marcarse contenido como me gusta/no me gusta"; -App::$strings["Profiles and things other than posts/comments"] = "Perfiles y otras cosas aparte de publicaciones/comentarios"; -App::$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"; -App::$strings["Advanced - useful for creating group forum channels"] = "Avanzado - útil para crear canales de foros de discusión o grupos"; -App::$strings["Can chat with me (when available)"] = "Se puede charlar conmigo (cuando esté disponible)"; -App::$strings["Can write to my file storage and photos"] = "Puede escribirse en mi repositorio de ficheros y fotos"; -App::$strings["Can edit my webpages"] = "Pueden editarse mis páginas web"; -App::$strings["Somewhat advanced - very useful in open communities"] = "Algo avanzado - muy útil en comunidades abiertas"; -App::$strings["Can administer my channel resources"] = "Pueden administrarse mis recursos del canal"; -App::$strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "Muy avanzado. Déjelo a no ser que sepa bien lo que está haciendo."; +App::$strings["System"] = "Sistema"; +App::$strings["New App"] = "Nueva aplicación (app)"; +App::$strings["Suggestions"] = "Sugerencias"; +App::$strings["See more..."] = "Ver más..."; +App::$strings["You have %1$.0f of %2$.0f allowed connections."] = "Tiene %1$.0f de %2$.0f conexiones permitidas."; +App::$strings["Add New Connection"] = "Añadir nueva conexión"; +App::$strings["Enter channel address"] = "Dirección del canal"; +App::$strings["Examples: bob@example.com, https://example.com/barbara"] = "Ejemplos: manuel@ejemplo.com, https://ejemplo.com/carmen"; +App::$strings["Notes"] = "Notas"; +App::$strings["Remove term"] = "Eliminar término"; +App::$strings["Saved Searches"] = "Búsquedas guardadas"; +App::$strings["add"] = "añadir"; +App::$strings["Saved Folders"] = "Carpetas guardadas"; +App::$strings["Everything"] = "Todo"; +App::$strings["Archives"] = "Hemeroteca"; +App::$strings["Refresh"] = "Recargar"; +App::$strings["Account settings"] = "Configuración de la cuenta"; +App::$strings["Channel settings"] = "Configuración del canal"; +App::$strings["Additional features"] = "Funcionalidades"; +App::$strings["Feature/Addon settings"] = "Complementos"; +App::$strings["Display settings"] = "Ajustes de visualización"; +App::$strings["Manage locations"] = "Gestión de ubicaciones (clones) del canal"; +App::$strings["Export channel"] = "Exportar canal"; +App::$strings["Connected apps"] = "Aplicaciones (apps) conectadas"; +App::$strings["Premium Channel Settings"] = "Configuración del canal premium"; +App::$strings["Private Mail Menu"] = "Menú de correo privado"; +App::$strings["Combined View"] = "Vista combinada"; +App::$strings["Inbox"] = "Bandeja de entrada"; +App::$strings["Outbox"] = "Bandeja de salida"; +App::$strings["New Message"] = "Nuevo mensaje"; +App::$strings["Conversations"] = "Conversaciones"; +App::$strings["Received Messages"] = "Mensajes recibidos"; +App::$strings["Sent Messages"] = "Enviar mensajes"; +App::$strings["No messages."] = "Sin mensajes."; +App::$strings["Delete conversation"] = "Eliminar conversación"; +App::$strings["Events Menu"] = "Menú de eventos"; +App::$strings["Day View"] = "Eventos del día"; +App::$strings["Week View"] = "Eventos de la semana"; +App::$strings["Month View"] = "Eventos del mes"; +App::$strings["Events Tools"] = "Gestión de eventos"; +App::$strings["Export Calendar"] = "Exportar el calendario"; +App::$strings["Import Calendar"] = "Importar un calendario"; +App::$strings["Chatrooms"] = "Salas de chat"; +App::$strings["Overview"] = "Resumen"; +App::$strings["Chat Members"] = "Miembros del chat"; +App::$strings["Bookmarked Chatrooms"] = "Salas de chat preferidas"; +App::$strings["Suggested Chatrooms"] = "Salas de chat sugeridas"; +App::$strings["photo/image"] = "foto/imagen"; +App::$strings["Click to show more"] = "Hacer clic para ver más"; +App::$strings["Rating Tools"] = "Valoraciones"; +App::$strings["Rate Me"] = "Valorar este canal"; +App::$strings["View Ratings"] = "Mostrar las valoraciones"; +App::$strings["Forums"] = "Foros"; +App::$strings["Tasks"] = "Tareas"; +App::$strings["Documentation"] = "Documentación"; +App::$strings["Project/Site Information"] = "Información sobre el proyecto o sitio"; +App::$strings["For Members"] = "Para los miembros"; +App::$strings["For Administrators"] = "Para los administradores"; +App::$strings["For Developers"] = "Para los desarrolladores"; +App::$strings["Member registrations waiting for confirmation"] = "Inscripciones de nuevos miembros pendientes de aprobación"; +App::$strings["Inspect queue"] = "Examinar la cola"; +App::$strings["DB updates"] = "Actualizaciones de la base de datos"; +App::$strings["Admin"] = "Administrador"; +App::$strings["Plugin Features"] = "Extensiones"; +App::$strings["Channel is blocked on this site."] = "El canal está bloqueado en este sitio."; +App::$strings["Channel location missing."] = "Falta la dirección del canal."; +App::$strings["Response from remote channel was incomplete."] = "Respuesta incompleta del canal."; +App::$strings["Channel was deleted and no longer exists."] = "El canal ha sido eliminado y ya no existe."; +App::$strings["Protocol disabled."] = "Protocolo deshabilitado."; +App::$strings["Channel discovery failed."] = "El intento de acceder al canal ha fallado."; +App::$strings["Cannot connect to yourself."] = "No puede conectarse consigo mismo."; +App::$strings["%1\$s's bookmarks"] = "Marcadores de %1\$s"; +App::$strings["Public Timeline"] = "Cronología pública"; +App::$strings["Image/photo"] = "Imagen/foto"; +App::$strings["Encrypted content"] = "Contenido cifrado"; +App::$strings["Install %s element: "] = "Instalar el elemento %s:"; +App::$strings["This post contains an installable %s element, however you lack permissions to install it on this site."] = "Esta entrada contiene el elemento instalable %s, sin embargo le faltan permisos para instalarlo en este sitio."; +App::$strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s escribió %2\$s siguiente %3\$s"; +App::$strings["Click to open/close"] = "Pulsar para abrir/cerrar"; +App::$strings["spoiler"] = "spoiler"; +App::$strings["Different viewers will see this text differently"] = "Visitantes diferentes verán este texto de forma distinta"; +App::$strings["$1 wrote:"] = "$1 escribió:"; +App::$strings["Directory Options"] = "Opciones del directorio"; +App::$strings["Safe Mode"] = "Modo seguro"; +App::$strings["Public Forums Only"] = "Solo foros públicos"; +App::$strings["This Website Only"] = "Solo este sitio web"; +App::$strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "El \"token\" de seguridad del formulario no es correcto. Esto ha ocurrido probablemente porque el formulario ha estado abierto demasiado tiempo (>3 horas) antes de ser enviado"; +App::$strings["Logout"] = "Finalizar sesión"; +App::$strings["End this session"] = "Finalizar esta sesión"; +App::$strings["Home"] = "Inicio"; +App::$strings["Your posts and conversations"] = "Sus publicaciones y conversaciones"; +App::$strings["Your profile page"] = "Su página del perfil"; +App::$strings["Manage/Edit profiles"] = "Administrar/editar perfiles"; +App::$strings["Edit Profile"] = "Editar el perfil"; +App::$strings["Edit your profile"] = "Editar su perfil"; +App::$strings["Your photos"] = "Sus fotos"; +App::$strings["Your files"] = "Sus ficheros"; +App::$strings["Your chatrooms"] = "Sus salas de chat"; +App::$strings["Bookmarks"] = "Marcadores"; +App::$strings["Your bookmarks"] = "Sus marcadores"; +App::$strings["Your webpages"] = "Sus páginas web"; +App::$strings["Sign in"] = "Acceder"; +App::$strings["%s - click to logout"] = "%s - pulsar para finalizar sesión"; +App::$strings["Remote authentication"] = "Acceder desde su servidor"; +App::$strings["Click to authenticate to your home hub"] = "Pulsar para identificarse en su servidor de inicio"; +App::$strings["Home Page"] = "Página de inicio"; +App::$strings["Create an account"] = "Crear una cuenta"; +App::$strings["Help and documentation"] = "Ayuda y documentación"; +App::$strings["Applications, utilities, links, games"] = "Aplicaciones, utilidades, enlaces, juegos"; +App::$strings["Search site @name, #tag, ?docs, content"] = "Buscar en el sitio por @nombre, #etiqueta, ?ayuda o contenido"; +App::$strings["Channel Directory"] = "Directorio de canales"; +App::$strings["Your grid"] = "Mi red"; +App::$strings["Mark all grid notifications seen"] = "Marcar todas las notificaciones de la red como vistas"; +App::$strings["Channel home"] = "Mi canal"; +App::$strings["Mark all channel notifications seen"] = "Marcar todas las notificaciones del canal como leídas"; +App::$strings["Notices"] = "Avisos"; +App::$strings["Notifications"] = "Notificaciones"; +App::$strings["See all notifications"] = "Ver todas las notificaciones"; +App::$strings["Private mail"] = "Correo privado"; +App::$strings["See all private messages"] = "Ver todas los mensajes privados"; +App::$strings["Mark all private messages seen"] = "Marcar todos los mensajes privados como leídos"; +App::$strings["Event Calendar"] = "Calendario de eventos"; +App::$strings["See all events"] = "Ver todos los eventos"; +App::$strings["Mark all events seen"] = "Marcar todos los eventos como leidos"; +App::$strings["Manage Your Channels"] = "Gestionar sus canales"; +App::$strings["Account/Channel Settings"] = "Ajustes de cuenta/canales"; +App::$strings["Site Setup and Configuration"] = "Ajustes y configuración del sitio"; +App::$strings["Loading..."] = "Cargando..."; +App::$strings["@name, #tag, ?doc, content"] = "@nombre, #etiqueta, ?ayuda, contenido"; +App::$strings["Please wait..."] = "Espere por favor…"; +App::$strings["New window"] = "Nueva ventana"; +App::$strings["Open the selected location in a different window or browser tab"] = "Abrir la dirección seleccionada en una ventana o pestaña aparte"; +App::$strings["User '%s' deleted"] = "El usuario '%s' ha sido eliminado"; +App::$strings["%d invitation available"] = array( + 0 => "%d invitación pendiente", + 1 => "%d invitaciones disponibles", +); +App::$strings["Find Channels"] = "Encontrar canales"; +App::$strings["Enter name or interest"] = "Introducir nombre o interés"; +App::$strings["Connect/Follow"] = "Conectar/Seguir"; +App::$strings["Examples: Robert Morgenstein, Fishing"] = "Ejemplos: José Fernández, Pesca"; +App::$strings["Random Profile"] = "Perfil aleatorio"; +App::$strings["Invite Friends"] = "Invitar a amigos"; +App::$strings["Advanced example: name=fred and country=iceland"] = "Ejemplo avanzado: nombre=juan y país=españa"; +App::$strings["%d connection in common"] = array( + 0 => "%d conexión en común", + 1 => "%d conexiones en común", +); +App::$strings["show more"] = "mostrar más"; +App::$strings["%1\$s is now connected with %2\$s"] = "%1\$s ahora está conectado/a con %2\$s"; +App::$strings["%1\$s poked %2\$s"] = "%1\$s ha dado un toque a %2\$s"; +App::$strings["View %s's profile @ %s"] = "Ver el perfil @ %s de %s"; +App::$strings["Categories:"] = "Categorías:"; +App::$strings["Filed under:"] = "Archivado bajo:"; +App::$strings["View in context"] = "Mostrar en su contexto"; +App::$strings["remove"] = "eliminar"; +App::$strings["Delete Selected Items"] = "Eliminar elementos seleccionados"; +App::$strings["View Source"] = "Ver el código fuente de la entrada"; +App::$strings["Follow Thread"] = "Seguir este hilo"; +App::$strings["Unfollow Thread"] = "Dejar de seguir este hilo"; +App::$strings["Activity/Posts"] = "Actividad y publicaciones"; +App::$strings["Edit Connection"] = "Editar conexión"; +App::$strings["Message"] = "Mensaje"; +App::$strings["%s likes this."] = "A %s le gusta esto."; +App::$strings["%s doesn't like this."] = "A %s no le gusta esto."; +App::$strings["%2\$d people like this."] = array( + 0 => "a %2\$d personas le gusta esto.", + 1 => "A %2\$d personas les gusta esto.", +); +App::$strings["%2\$d people don't like this."] = array( + 0 => "a %2\$d personas no les gusta esto.", + 1 => "A %2\$d personas no les gusta esto.", +); +App::$strings["and"] = "y"; +App::$strings[", and %d other people"] = array( + 0 => ", y %d persona más", + 1 => ", y %d personas más", +); +App::$strings["%s like this."] = "A %s le gusta esto."; +App::$strings["%s don't like this."] = "A %s no le gusta esto."; +App::$strings["Set your location"] = "Establecer su ubicación"; +App::$strings["Clear browser location"] = "Eliminar los datos de localización geográfica del navegador"; +App::$strings["Tag term:"] = "Término de la etiqueta:"; +App::$strings["Where are you right now?"] = "¿Donde está ahora?"; +App::$strings["Page link name"] = "Nombre del enlace de la página"; +App::$strings["Post as"] = "Publicar como"; +App::$strings["Toggle voting"] = "Cambiar votación"; +App::$strings["Categories (optional, comma-separated list)"] = "Categorías (opcional, lista separada por comas)"; +App::$strings["Set publish date"] = "Establecer la fecha de publicación"; +App::$strings["OK"] = "OK"; +App::$strings["Discover"] = "Descubrir"; +App::$strings["Imported public streams"] = "Contenidos públicos importados"; +App::$strings["Commented Order"] = "Comentarios recientes"; +App::$strings["Sort by Comment Date"] = "Ordenar por fecha de comentario"; +App::$strings["Posted Order"] = "Publicaciones recientes"; +App::$strings["Sort by Post Date"] = "Ordenar por fecha de publicación"; +App::$strings["Posts that mention or involve you"] = "Publicaciones que le mencionan o involucran"; +App::$strings["Activity Stream - by date"] = "Contenido - por fecha"; +App::$strings["Starred"] = "Preferidas"; +App::$strings["Favourite Posts"] = "Publicaciones favoritas"; +App::$strings["Spam"] = "Correo basura"; +App::$strings["Posts flagged as SPAM"] = "Publicaciones marcadas como basura"; +App::$strings["Status Messages and Posts"] = "Mensajes de estado y publicaciones"; +App::$strings["About"] = "Mi perfil"; +App::$strings["Profile Details"] = "Detalles del perfil"; +App::$strings["Photo Albums"] = "Álbumes de fotos"; +App::$strings["Files and Storage"] = "Ficheros y repositorio"; +App::$strings["Saved Bookmarks"] = "Marcadores guardados"; +App::$strings["Manage Webpages"] = "Administrar páginas web"; +App::$strings["__ctx:noun__ Attending"] = array( + 0 => "Participaré", + 1 => "Participaré", +); +App::$strings["__ctx:noun__ Not Attending"] = array( + 0 => "No participaré", + 1 => "No participaré", +); +App::$strings["__ctx:noun__ Undecided"] = array( + 0 => "Indeciso/a", + 1 => "Indecisos/as", +); +App::$strings["__ctx:noun__ Agree"] = array( + 0 => "De acuerdo", + 1 => "De acuerdo", +); +App::$strings["__ctx:noun__ Disagree"] = array( + 0 => "En desacuerdo", + 1 => "En desacuerdo", +); +App::$strings["__ctx:noun__ Abstain"] = array( + 0 => "se abstiene", + 1 => "Se abstienen", +); +App::$strings["Frequently"] = "Frecuentemente"; +App::$strings["Hourly"] = "Cada hora"; +App::$strings["Twice daily"] = "Dos veces al día"; +App::$strings["Daily"] = "Diariamente"; +App::$strings["Weekly"] = "Semanalmente"; +App::$strings["Monthly"] = "Mensualmente"; +App::$strings["Currently Male"] = "Actualmente hombre"; +App::$strings["Currently Female"] = "Actualmente mujer"; +App::$strings["Mostly Male"] = "Generalmente hombre"; +App::$strings["Mostly Female"] = "Generalmente mujer"; +App::$strings["Transgender"] = "Transgénero"; +App::$strings["Intersex"] = "Intersexual"; +App::$strings["Transsexual"] = "Transexual"; +App::$strings["Hermaphrodite"] = "Hermafrodita"; +App::$strings["Neuter"] = "Neutral"; +App::$strings["Non-specific"] = "No especificado"; +App::$strings["Other"] = "Otro"; +App::$strings["Undecided"] = "Indeciso/a"; +App::$strings["Males"] = "Hombres"; +App::$strings["Females"] = "Mujeres"; +App::$strings["Gay"] = "Homosexual"; +App::$strings["Lesbian"] = "Lesbiana"; +App::$strings["No Preference"] = "Sin preferencias"; +App::$strings["Bisexual"] = "Bisexual"; +App::$strings["Autosexual"] = "Autosexual"; +App::$strings["Abstinent"] = "Casto/a"; +App::$strings["Virgin"] = "Virgen"; +App::$strings["Deviant"] = "Fuera de lo común"; +App::$strings["Fetish"] = "Fetichista"; +App::$strings["Oodles"] = "Orgías"; +App::$strings["Nonsexual"] = "Asexual"; +App::$strings["Single"] = "Soltero/a"; +App::$strings["Lonely"] = "Solo/a"; +App::$strings["Available"] = "Disponible"; +App::$strings["Unavailable"] = "No disponible"; +App::$strings["Has crush"] = "Enamorado/a"; +App::$strings["Infatuated"] = "Apasionado/a"; +App::$strings["Dating"] = "Saliendo con alguien"; +App::$strings["Unfaithful"] = "Infiel"; +App::$strings["Sex Addict"] = "Con adicción al sexo"; +App::$strings["Friends/Benefits"] = "Amigos con algo extra"; +App::$strings["Casual"] = "Casual"; +App::$strings["Engaged"] = "Prometido/a"; +App::$strings["Married"] = "Casado/a"; +App::$strings["Imaginarily married"] = "Casado/a en sueños"; +App::$strings["Partners"] = "Pareja"; +App::$strings["Cohabiting"] = "Cohabitando"; +App::$strings["Common law"] = "Matrimonio tradicional"; +App::$strings["Happy"] = "Felíz"; +App::$strings["Not looking"] = "No estoy buscando"; +App::$strings["Swinger"] = "Libertino"; +App::$strings["Betrayed"] = "Engañado/a"; +App::$strings["Separated"] = "Separado/a"; +App::$strings["Unstable"] = "Inestable"; +App::$strings["Divorced"] = "Divorciado/a"; +App::$strings["Imaginarily divorced"] = "Divorciado/a en sueños"; +App::$strings["Widowed"] = "Viudo/a"; +App::$strings["Uncertain"] = "Indeterminado"; +App::$strings["It's complicated"] = "Es complicado"; +App::$strings["Don't care"] = "No me importa"; +App::$strings["Ask me"] = "Pregúnteme"; +App::$strings["Visible to your default audience"] = "Visible para su público predeterminado."; +App::$strings["Only me"] = "Sólo yo"; +App::$strings["Public"] = "Público"; +App::$strings["Anybody in the \$Projectname network"] = "Cualquiera en la red \$Projectname"; +App::$strings["Any account on %s"] = "Cualquier cuenta en %s"; +App::$strings["Any of my connections"] = "Cualquiera de mis conexiones"; +App::$strings["Only connections I specifically allow"] = "Sólo las conexiones que yo permita de forma explícita"; +App::$strings["Anybody authenticated (could include visitors from other networks)"] = "Cualquiera que esté autenticado (podría incluir a los visitantes de otras redes)"; +App::$strings["Any connections including those who haven't yet been approved"] = "Cualquier conexión incluyendo aquellas que aún no han sido aprobadas"; +App::$strings["This is your default setting for the audience of your normal stream, and posts."] = "Esta es la configuración predeterminada para su flujo (stream) habitual de publicaciones."; +App::$strings["This is your default setting for who can view your default channel profile"] = "Esta es su configuración por defecto para establecer quién puede ver su perfil del canal predeterminado"; +App::$strings["This is your default setting for who can view your connections"] = "Este es su ajuste predeterminado para establecer quién puede ver sus conexiones"; +App::$strings["This is your default setting for who can view your file storage and photos"] = "Este es su ajuste predeterminado para establecer quién puede ver su repositorio de ficheros y sus fotos"; +App::$strings["This is your default setting for the audience of your webpages"] = "Este es el ajuste predeterminado para establecer la audiencia de sus páginas web"; +App::$strings["Not a valid email address"] = "Dirección de correo no válida"; +App::$strings["Your email domain is not among those allowed on this site"] = "Su dirección de correo no pertenece a ninguno de los dominios permitidos en este sitio."; +App::$strings["Your email address is already registered at this site."] = "Su dirección de correo está ya registrada en este sitio."; +App::$strings["An invitation is required."] = "Es obligatorio que le inviten."; +App::$strings["Invitation could not be verified."] = "No se ha podido verificar su invitación."; +App::$strings["Please enter the required information."] = "Por favor introduzca la información requerida."; +App::$strings["Failed to store account information."] = "La información de la cuenta no se ha podido guardar."; +App::$strings["Registration confirmation for %s"] = "Confirmación de registro para %s"; +App::$strings["Registration request at %s"] = "Solicitud de registro en %s"; +App::$strings["Administrator"] = "Administrador"; +App::$strings["your registration password"] = "su contraseña de registro"; +App::$strings["Registration details for %s"] = "Detalles del registro de %s"; +App::$strings["Account approved."] = "Cuenta aprobada."; +App::$strings["Registration revoked for %s"] = "Registro revocado para %s"; +App::$strings["Account verified. Please login."] = "Cuenta verificada. Por favor, inicie sesión."; +App::$strings["Click here to upgrade."] = "Pulse aquí para actualizar"; +App::$strings["This action exceeds the limits set by your subscription plan."] = "Esta acción supera los límites establecidos por su plan de suscripción "; +App::$strings["This action is not available under your subscription plan."] = "Esta acción no está disponible en su plan de suscripción."; +App::$strings["Item was not found."] = "Elemento no encontrado."; +App::$strings["No source file."] = "Ningún fichero de origen"; +App::$strings["Cannot locate file to replace"] = "No se puede localizar el fichero que va a ser sustituido."; +App::$strings["Cannot locate file to revise/update"] = "No se puede localizar el fichero para revisar/actualizar"; +App::$strings["File exceeds size limit of %d"] = "El fichero supera el limite de tamaño de %d"; +App::$strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Ha alcanzado su límite de %1$.0f Mbytes de almacenamiento de adjuntos."; +App::$strings["File upload failed. Possible system limit or action terminated."] = "Error de carga, posiblemente por limite del sistema o porque la acción ha finalizado."; +App::$strings["Stored file could not be verified. Upload failed."] = "El fichero almacenado no ha podido ser verificado. El envío ha fallado."; +App::$strings["Path not available."] = "Ruta no disponible."; +App::$strings["Empty pathname"] = "Ruta vacía"; +App::$strings["duplicate filename or path"] = "Nombre duplicado de ruta o fichero"; +App::$strings["Path not found."] = "Ruta no encontrada"; +App::$strings["mkdir failed."] = "mkdir ha fallado."; +App::$strings["database storage failed."] = "el almacenamiento en la base de datos ha fallado."; +App::$strings["Empty path"] = "Ruta vacía"; +App::$strings["Unable to obtain identity information from database"] = "No ha sido posible obtener información sobre la identidad desde la base de datos"; +App::$strings["Empty name"] = "Nombre vacío"; +App::$strings["Name too long"] = "Nombre demasiado largo"; +App::$strings["No account identifier"] = "Ningún identificador de la cuenta"; +App::$strings["Nickname is required."] = "Se requiere un sobrenombre (alias)."; +App::$strings["Reserved nickname. Please choose another."] = "Sobrenombre en uso. Por favor, elija otro."; +App::$strings["Nickname has unsupported characters or is already being used on this site."] = "El alias contiene caracteres no admitidos o está ya en uso por otros miembros de este sitio."; +App::$strings["Unable to retrieve created identity"] = "No ha sido posible recuperar la identidad creada"; +App::$strings["Default Profile"] = "Perfil principal"; +App::$strings["Requested channel is not available."] = "El canal solicitado no está disponible."; +App::$strings["Create New Profile"] = "Crear un nuevo perfil"; +App::$strings["Visible to everybody"] = "Visible para todos"; +App::$strings["Gender:"] = "Género:"; +App::$strings["Status:"] = "Estado:"; +App::$strings["Homepage:"] = "Página personal:"; +App::$strings["Online Now"] = "Ahora en línea"; +App::$strings["Like this channel"] = "Me gusta este canal"; +App::$strings["j F, Y"] = "j F Y"; +App::$strings["j F"] = "j F"; +App::$strings["Birthday:"] = "Cumpleaños:"; +App::$strings["for %1\$d %2\$s"] = "por %1\$d %2\$s"; +App::$strings["Sexual Preference:"] = "Orientación sexual:"; +App::$strings["Tags:"] = "Etiquetas:"; +App::$strings["Political Views:"] = "Posición política:"; +App::$strings["Religion:"] = "Religión:"; +App::$strings["Hobbies/Interests:"] = "Aficciones o intereses:"; +App::$strings["Likes:"] = "Me gusta:"; +App::$strings["Dislikes:"] = "No me gusta:"; +App::$strings["Contact information and Social Networks:"] = "Información de contacto y redes sociales:"; +App::$strings["My other channels:"] = "Mis otros canales:"; +App::$strings["Musical interests:"] = "Preferencias musicales:"; +App::$strings["Books, literature:"] = "Libros, literatura:"; +App::$strings["Television:"] = "Televisión:"; +App::$strings["Film/dance/culture/entertainment:"] = "Cine, danza, cultura, entretenimiento:"; +App::$strings["Love/Romance:"] = "Vida sentimental o amorosa:"; +App::$strings["Work/employment:"] = "Trabajo:"; +App::$strings["School/education:"] = "Estudios:"; +App::$strings["Like this thing"] = "Me gusta esto"; App::$strings["General Features"] = "Funcionalidades básicas"; App::$strings["Content Expiration"] = "Caducidad del contenido"; App::$strings["Remove posts/comments and/or private messages at a future time"] = "Eliminar publicaciones/comentarios y/o mensajes privados más adelante"; @@ -1965,7 +2021,6 @@ App::$strings["Profile Import/Export"] = "Importar/Exportar perfil"; App::$strings["Save and load profile details across sites/channels"] = "Guardar y cargar detalles del perfil a través de sitios/canales"; App::$strings["Web Pages"] = "Páginas web"; App::$strings["Provide managed web pages on your channel"] = "Proveer páginas web gestionadas en su canal"; -App::$strings["Provide a wiki for your channel"] = ""; App::$strings["Hide Rating"] = "Ocultar las valoraciones"; App::$strings["Hide the rating buttons on your channel and profile pages. Note: People can still rate you somewhere else."] = "Ocultar los botones de valoración en su canal y página de perfil. Tenga en cuenta, sin embargo, que la gente podrá expresar su valoración en otros lugares."; App::$strings["Private Notes"] = "Notas privadas"; @@ -1999,7 +2054,6 @@ App::$strings["Search by Date"] = "Buscar por fecha"; App::$strings["Ability to select posts by date ranges"] = "Capacidad de seleccionar entradas por rango de fechas"; App::$strings["Privacy Groups"] = "Grupos de canales"; App::$strings["Enable management and selection of privacy groups"] = "Activar la gestión y selección de grupos de canales"; -App::$strings["Saved Searches"] = "Búsquedas guardadas"; App::$strings["Save search terms for re-use"] = "Guardar términos de búsqueda para su reutilización"; App::$strings["Network Personal Tab"] = "Actividad personal"; App::$strings["Enable tab to display only Network posts that you've interacted on"] = "Habilitar una pestaña en la cual se muestren solo las entradas en las que ha participado."; @@ -2017,7 +2071,6 @@ App::$strings["Post Categories"] = "Categorías de entradas"; App::$strings["Add categories to your posts"] = "Añadir categorías a sus publicaciones"; App::$strings["Emoji Reactions"] = "Emoticonos \"emoji\""; App::$strings["Add emoji reaction ability to posts"] = "Activar la capacidad de añadir un emoticono \"emoji\" a las entradas"; -App::$strings["Saved Folders"] = "Carpetas guardadas"; App::$strings["Ability to file posts under folders"] = "Capacidad de archivar entradas en carpetas"; App::$strings["Dislike Posts"] = "Desagrado de publicaciones"; App::$strings["Ability to dislike posts/comments"] = "Capacidad de mostrar desacuerdo con el contenido de entradas y comentarios"; @@ -2025,149 +2078,63 @@ App::$strings["Star Posts"] = "Entradas destacadas"; App::$strings["Ability to mark special posts with a star indicator"] = "Capacidad de marcar entradas destacadas con un indicador de estrella"; App::$strings["Tag Cloud"] = "Nube de etiquetas"; App::$strings["Provide a personal tag cloud on your channel page"] = "Proveer nube de etiquetas personal en su página de canal"; +App::$strings["Embedded content"] = "Contenido incorporado"; +App::$strings["Embedding disabled"] = "Incrustación deshabilitada"; +App::$strings["Who can see this?"] = "¿Quién puede ver esto?"; +App::$strings["Custom selection"] = "Selección personalizada"; +App::$strings["Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit the scope of \"Show\"."] = "Seleccione \"Mostrar\" para permitir la visualización. La opción \"No mostrar\" le permite anular y limitar el alcance de \"Mostrar\"."; +App::$strings["Show"] = "Mostrar"; +App::$strings["Don't show"] = "No mostrar"; +App::$strings["Other networks and post services"] = "Otras redes y servicios de publicación"; +App::$strings["Post permissions %s cannot be changed %s after a post is shared.
These permissions set who is allowed to view the post."] = "Los permisos de la entrada %s no se pueden cambiar %s una vez que se ha compartido.
Estos permisos establecen quién está autorizado para ver el mensaje."; +App::$strings["Logged out."] = "Desconectado/a."; +App::$strings["Failed authentication"] = "Autenticación fallida."; +App::$strings["Birthday"] = "Cumpleaños"; +App::$strings["Age: "] = "Edad:"; +App::$strings["YYYY-MM-DD or MM-DD"] = "AAAA-MM-DD o MM-DD"; +App::$strings["never"] = "nunca"; +App::$strings["less than a second ago"] = "hace un instante"; +App::$strings["__ctx:e.g. 22 hours ago, 1 minute ago__ %1\$d %2\$s ago"] = "hace %1\$d %2\$s"; +App::$strings["__ctx:relative_date__ year"] = array( + 0 => "año", + 1 => "años", +); +App::$strings["__ctx:relative_date__ month"] = array( + 0 => "mes", + 1 => "meses", +); +App::$strings["__ctx:relative_date__ week"] = array( + 0 => "semana", + 1 => "semanas", +); +App::$strings["__ctx:relative_date__ day"] = array( + 0 => "día", + 1 => "días", +); +App::$strings["__ctx:relative_date__ hour"] = array( + 0 => "hora", + 1 => "horas", +); +App::$strings["__ctx:relative_date__ minute"] = array( + 0 => "minuto", + 1 => "minutos", +); +App::$strings["__ctx:relative_date__ second"] = array( + 0 => "segundo", + 1 => "segundos", +); +App::$strings["%1\$s's birthday"] = "Cumpleaños de %1\$s"; +App::$strings["Happy Birthday %1\$s"] = "Feliz cumpleaños %1\$s"; App::$strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Un grupo suprimido con este nombre ha sido restablecido. Es posible que los permisos existentes sean aplicados a este grupo y sus futuros miembros. Si no quiere esto, por favor cree otro grupo con un nombre diferente."; App::$strings["Add new connections to this privacy group"] = "Añadir conexiones nuevas a este grupo de canales"; App::$strings["edit"] = "editar"; App::$strings["Edit group"] = "Editar grupo"; App::$strings["Add privacy group"] = "Añadir un grupo de canales"; App::$strings["Channels not in any privacy group"] = "Sin canales en ningún grupo"; -App::$strings["add"] = "añadir"; -App::$strings["l F d, Y \\@ g:i A"] = "l d de F, Y \\@ G:i"; -App::$strings["Starts:"] = "Comienza:"; -App::$strings["Finishes:"] = "Finaliza:"; -App::$strings["This event has been added to your calendar."] = "Este evento ha sido añadido a su calendario."; -App::$strings["Not specified"] = "Sin especificar"; -App::$strings["Needs Action"] = "Necesita de una intervención"; -App::$strings["Completed"] = "Completado/a"; -App::$strings["In Process"] = "En proceso"; -App::$strings["Cancelled"] = "Cancelado/a"; -App::$strings["Not a valid email address"] = "Dirección de correo no válida"; -App::$strings["Your email domain is not among those allowed on this site"] = "Su dirección de correo no pertenece a ninguno de los dominios permitidos en este sitio."; -App::$strings["Your email address is already registered at this site."] = "Su dirección de correo está ya registrada en este sitio."; -App::$strings["An invitation is required."] = "Es obligatorio que le inviten."; -App::$strings["Invitation could not be verified."] = "No se ha podido verificar su invitación."; -App::$strings["Please enter the required information."] = "Por favor introduzca la información requerida."; -App::$strings["Failed to store account information."] = "La información de la cuenta no se ha podido guardar."; -App::$strings["Registration confirmation for %s"] = "Confirmación de registro para %s"; -App::$strings["Registration request at %s"] = "Solicitud de registro en %s"; -App::$strings["your registration password"] = "su contraseña de registro"; -App::$strings["Registration details for %s"] = "Detalles del registro de %s"; -App::$strings["Account approved."] = "Cuenta aprobada."; -App::$strings["Registration revoked for %s"] = "Registro revocado para %s"; -App::$strings["Click here to upgrade."] = "Pulse aquí para actualizar"; -App::$strings["This action exceeds the limits set by your subscription plan."] = "Esta acción supera los límites establecidos por su plan de suscripción "; -App::$strings["This action is not available under your subscription plan."] = "Esta acción no está disponible en su plan de suscripción."; -App::$strings["Channel is blocked on this site."] = "El canal está bloqueado en este sitio."; -App::$strings["Channel location missing."] = "Falta la dirección del canal."; -App::$strings["Response from remote channel was incomplete."] = "Respuesta incompleta del canal."; -App::$strings["Channel was deleted and no longer exists."] = "El canal ha sido eliminado y ya no existe."; -App::$strings["Protocol disabled."] = "Protocolo deshabilitado."; -App::$strings["Channel discovery failed."] = "El intento de acceder al canal ha fallado."; -App::$strings["Cannot connect to yourself."] = "No puede conectarse consigo mismo."; -App::$strings["Item was not found."] = "Elemento no encontrado."; -App::$strings["No source file."] = "Ningún fichero de origen"; -App::$strings["Cannot locate file to replace"] = "No se puede localizar el fichero que va a ser sustituido."; -App::$strings["Cannot locate file to revise/update"] = "No se puede localizar el fichero para revisar/actualizar"; -App::$strings["File exceeds size limit of %d"] = "El fichero supera el limite de tamaño de %d"; -App::$strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Ha alcanzado su límite de %1$.0f Mbytes de almacenamiento de adjuntos."; -App::$strings["File upload failed. Possible system limit or action terminated."] = "Error de carga, posiblemente por limite del sistema o porque la acción ha finalizado."; -App::$strings["Stored file could not be verified. Upload failed."] = "El fichero almacenado no ha podido ser verificado. El envío ha fallado."; -App::$strings["Path not available."] = "Ruta no disponible."; -App::$strings["Empty pathname"] = "Ruta vacía"; -App::$strings["duplicate filename or path"] = "Nombre duplicado de ruta o fichero"; -App::$strings["Path not found."] = "Ruta no encontrada"; -App::$strings["mkdir failed."] = "mkdir ha fallado."; -App::$strings["database storage failed."] = "el almacenamiento en la base de datos ha fallado."; -App::$strings["Empty path"] = "Ruta vacía"; -App::$strings["Image/photo"] = "Imagen/foto"; -App::$strings["Encrypted content"] = "Contenido cifrado"; -App::$strings["Install %s element: "] = "Instalar el elemento %s:"; -App::$strings["This post contains an installable %s element, however you lack permissions to install it on this site."] = "Esta entrada contiene el elemento instalable %s, sin embargo le faltan permisos para instalarlo en este sitio."; -App::$strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s escribió %2\$s siguiente %3\$s"; -App::$strings["Click to open/close"] = "Pulsar para abrir/cerrar"; -App::$strings["spoiler"] = "spoiler"; -App::$strings["Different viewers will see this text differently"] = "Visitantes diferentes verán este texto de forma distinta"; -App::$strings["$1 wrote:"] = "$1 escribió:"; -App::$strings["(Unknown)"] = "(Desconocido)"; -App::$strings["Visible to anybody on the internet."] = "Visible para cualquiera en internet."; -App::$strings["Visible to you only."] = "Visible sólo para usted."; -App::$strings["Visible to anybody in this network."] = "Visible para cualquiera en esta red."; -App::$strings["Visible to anybody authenticated."] = "Visible para cualquiera que esté autenticado."; -App::$strings["Visible to anybody on %s."] = "Visible para cualquiera en %s."; -App::$strings["Visible to all connections."] = "Visible para todas las conexiones."; -App::$strings["Visible to approved connections."] = "Visible para las conexiones permitidas."; -App::$strings["Visible to specific connections."] = "Visible para conexiones específicas."; -App::$strings["Privacy group is empty."] = "El grupo de canales está vacío."; -App::$strings["Privacy group: %s"] = "Grupo de canales: %s"; -App::$strings["Connection not found."] = "Conexión no encontrada"; -App::$strings["profile photo"] = "foto del perfil"; -App::$strings["Embedded content"] = "Contenido incorporado"; -App::$strings["Embedding disabled"] = "Incrustación deshabilitada"; -App::$strings["System"] = "Sistema"; -App::$strings["New App"] = "Nueva aplicación (app)"; -App::$strings["Suggestions"] = "Sugerencias"; -App::$strings["See more..."] = "Ver más..."; -App::$strings["You have %1$.0f of %2$.0f allowed connections."] = "Tiene %1$.0f de %2$.0f conexiones permitidas."; -App::$strings["Add New Connection"] = "Añadir nueva conexión"; -App::$strings["Enter channel address"] = "Dirección del canal"; -App::$strings["Examples: bob@example.com, https://example.com/barbara"] = "Ejemplos: manuel@ejemplo.com, https://ejemplo.com/carmen"; -App::$strings["Notes"] = "Notas"; -App::$strings["Remove term"] = "Eliminar término"; -App::$strings["Everything"] = "Todo"; -App::$strings["Archives"] = "Hemeroteca"; -App::$strings["Refresh"] = "Recargar"; -App::$strings["Account settings"] = "Configuración de la cuenta"; -App::$strings["Channel settings"] = "Configuración del canal"; -App::$strings["Additional features"] = "Funcionalidades"; -App::$strings["Feature/Addon settings"] = "Complementos"; -App::$strings["Display settings"] = "Ajustes de visualización"; -App::$strings["Manage locations"] = "Gestión de ubicaciones (clones) del canal"; -App::$strings["Export channel"] = "Exportar canal"; -App::$strings["Connected apps"] = "Aplicaciones (apps) conectadas"; -App::$strings["Premium Channel Settings"] = "Configuración del canal premium"; -App::$strings["Private Mail Menu"] = "Menú de correo privado"; -App::$strings["Combined View"] = "Vista combinada"; -App::$strings["Conversations"] = "Conversaciones"; -App::$strings["Received Messages"] = "Mensajes recibidos"; -App::$strings["Sent Messages"] = "Enviar mensajes"; -App::$strings["No messages."] = "Sin mensajes."; -App::$strings["Delete conversation"] = "Eliminar conversación"; -App::$strings["Events Tools"] = "Gestión de eventos"; -App::$strings["Export Calendar"] = "Exportar el calendario"; -App::$strings["Import Calendar"] = "Importar un calendario"; -App::$strings["Overview"] = "Resumen"; -App::$strings["Chat Members"] = "Miembros del chat"; -App::$strings["Wiki List"] = "Lista de wikis"; -App::$strings["Wiki Pages"] = "Páginas del wiki"; -App::$strings["Bookmarked Chatrooms"] = "Salas de chat preferidas"; -App::$strings["Suggested Chatrooms"] = "Salas de chat sugeridas"; -App::$strings["photo/image"] = "foto/imagen"; -App::$strings["Click to show more"] = "Hacer clic para ver más"; -App::$strings["Rating Tools"] = "Valoraciones"; -App::$strings["Rate Me"] = "Valorar este canal"; -App::$strings["View Ratings"] = "Mostrar las valoraciones"; -App::$strings["Forums"] = "Foros"; -App::$strings["Tasks"] = "Tareas"; -App::$strings["Documentation"] = "Documentación"; -App::$strings["Project/Site Information"] = "Información sobre el proyecto o sitio"; -App::$strings["For Members"] = "Para los miembros"; -App::$strings["For Administrators"] = "Para los administradores"; -App::$strings["For Developers"] = "Para los desarrolladores"; -App::$strings["Member registrations waiting for confirmation"] = "Inscripciones de nuevos miembros pendientes de aprobación"; -App::$strings["Inspect queue"] = "Examinar la cola"; -App::$strings["DB updates"] = "Actualizaciones de la base de datos"; -App::$strings["Plugin Features"] = "Extensiones"; -App::$strings[" and "] = " y "; -App::$strings["public profile"] = "el perfil público"; -App::$strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s ha cambiado %2\$s a “%3\$s”"; -App::$strings["Visit %1\$s's %2\$s"] = "Visitar %2\$s de %1\$s"; -App::$strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s ha actualizado %2\$s, cambiando %3\$s."; -App::$strings["Attachments:"] = "Ficheros adjuntos:"; -App::$strings["\$Projectname event notification:"] = "Notificación de eventos de \$Projectname:"; App::$strings["Delete this item?"] = "¿Borrar este elemento?"; -App::$strings["%s show less"] = ""; -App::$strings["%s expand"] = ""; -App::$strings["%s collapse"] = ""; +App::$strings["[-] show less"] = "[-] mostrar menos"; +App::$strings["[+] expand"] = "[+] expandir"; +App::$strings["[-] collapse"] = "[-] contraer"; App::$strings["Password too short"] = "Contraseña demasiado corta"; App::$strings["Passwords do not match"] = "Las contraseñas no coinciden"; App::$strings["everybody"] = "cualquiera"; @@ -2222,78 +2189,72 @@ App::$strings["__ctx:calendar__ month"] = "mes"; App::$strings["__ctx:calendar__ week"] = "semana"; App::$strings["__ctx:calendar__ day"] = "día"; App::$strings["__ctx:calendar__ All day"] = "Todos los días"; -App::$strings["%d invitation available"] = array( - 0 => "%d invitación pendiente", - 1 => "%d invitaciones disponibles", -); -App::$strings["Find Channels"] = "Encontrar canales"; -App::$strings["Enter name or interest"] = "Introducir nombre o interés"; -App::$strings["Connect/Follow"] = "Conectar/Seguir"; -App::$strings["Examples: Robert Morgenstein, Fishing"] = "Ejemplos: José Fernández, Pesca"; -App::$strings["Random Profile"] = "Perfil aleatorio"; -App::$strings["Invite Friends"] = "Invitar a amigos"; -App::$strings["Advanced example: name=fred and country=iceland"] = "Ejemplo avanzado: nombre=juan y país=españa"; -App::$strings["%d connection in common"] = array( - 0 => "%d conexión en común", - 1 => "%d conexiones en común", -); -App::$strings["show more"] = "mostrar más"; -App::$strings["Directory Options"] = "Opciones del directorio"; -App::$strings["Safe Mode"] = "Modo seguro"; -App::$strings["Public Forums Only"] = "Solo foros públicos"; -App::$strings["This Website Only"] = "Solo este sitio web"; -App::$strings["No recipient provided."] = "No se ha especificado ningún destinatario."; -App::$strings["[no subject]"] = "[sin asunto]"; -App::$strings["Unable to determine sender."] = "No ha sido posible determinar el remitente. "; -App::$strings["Stored post could not be verified."] = "No se han podido verificar las publicaciones guardadas."; -App::$strings["Who can see this?"] = "¿Quién puede ver esto?"; -App::$strings["Custom selection"] = "Selección personalizada"; -App::$strings["Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit the scope of \"Show\"."] = "Seleccione \"Mostrar\" para permitir la visualización. La opción \"No mostrar\" le permite anular y limitar el alcance de \"Mostrar\"."; -App::$strings["Show"] = "Mostrar"; -App::$strings["Don't show"] = "No mostrar"; -App::$strings["Other networks and post services"] = "Otras redes y servicios de publicación"; -App::$strings["Post permissions %s cannot be changed %s after a post is shared.
These permissions set who is allowed to view the post."] = "Los permisos de la entrada %s no se pueden cambiar %s una vez que se ha compartido.
Estos permisos establecen quién está autorizado para ver el mensaje."; -App::$strings["Birthday"] = "Cumpleaños"; -App::$strings["Age: "] = "Edad:"; -App::$strings["YYYY-MM-DD or MM-DD"] = "AAAA-MM-DD o MM-DD"; -App::$strings["never"] = "nunca"; -App::$strings["less than a second ago"] = "hace un instante"; -App::$strings["__ctx:e.g. 22 hours ago, 1 minute ago__ %1\$d %2\$s ago"] = "hace %1\$d %2\$s"; -App::$strings["__ctx:relative_date__ year"] = array( - 0 => "año", - 1 => "años", -); -App::$strings["__ctx:relative_date__ month"] = array( - 0 => "mes", - 1 => "meses", -); -App::$strings["__ctx:relative_date__ week"] = array( - 0 => "semana", - 1 => "semanas", -); -App::$strings["__ctx:relative_date__ day"] = array( - 0 => "día", - 1 => "días", -); -App::$strings["__ctx:relative_date__ hour"] = array( - 0 => "hora", - 1 => "horas", -); -App::$strings["__ctx:relative_date__ minute"] = array( - 0 => "minuto", - 1 => "minutos", -); -App::$strings["__ctx:relative_date__ second"] = array( - 0 => "segundo", - 1 => "segundos", -); -App::$strings["%1\$s's birthday"] = "Cumpleaños de %1\$s"; -App::$strings["Happy Birthday %1\$s"] = "Feliz cumpleaños %1\$s"; -App::$strings["Public Timeline"] = "Cronología pública"; +App::$strings["view full size"] = "Ver en el tamaño original"; +App::$strings["No Subject"] = "Sin asunto"; +App::$strings["Friendica"] = "Friendica"; +App::$strings["OStatus"] = "OStatus"; +App::$strings["GNU-Social"] = "GNU Social"; +App::$strings["RSS/Atom"] = "RSS/Atom"; +App::$strings["Diaspora"] = "Diaspora"; +App::$strings["Facebook"] = "Facebook"; +App::$strings["Zot"] = "Zot"; +App::$strings["LinkedIn"] = "LinkedIn"; +App::$strings["XMPP/IM"] = "XMPP/IM"; +App::$strings["MySpace"] = "MySpace"; +App::$strings["Image exceeds website size limit of %lu bytes"] = "La imagen excede el límite de %lu bytes del sitio"; +App::$strings["Image file is empty."] = "El fichero de imagen está vacío. "; +App::$strings["Photo storage failed."] = "La foto no ha podido ser guardada."; +App::$strings["a new photo"] = "una nueva foto"; +App::$strings["__ctx:photo_upload__ %1\$s posted %2\$s to %3\$s"] = "%1\$s ha publicado %2\$s en %3\$s"; +App::$strings["Upload New Photos"] = "Subir nuevas fotos"; App::$strings["Invalid data packet"] = "Paquete de datos no válido"; App::$strings["Unable to verify channel signature"] = "No ha sido posible de verificar la firma del canal"; App::$strings["Unable to verify site signature for %s"] = "No ha sido posible de verificar la firma del sitio para %s"; App::$strings["invalid target signature"] = "La firma recibida no es válida"; +App::$strings["New Page"] = "Nueva página"; +App::$strings["Title"] = "Título"; +App::$strings["Can view my normal stream and posts"] = "Pueden verse mi actividad y publicaciones normales"; +App::$strings["Can view my default channel profile"] = "Puede verse mi perfil de canal predeterminado."; +App::$strings["Can view my connections"] = "Pueden verse mis conexiones"; +App::$strings["Can view my file storage and photos"] = "Pueden verse mi repositorio de ficheros y mis fotos"; +App::$strings["Can view my webpages"] = "Pueden verse mis páginas web"; +App::$strings["Can send me their channel stream and posts"] = "Me pueden enviar sus entradas y contenidos del canal"; +App::$strings["Can post on my channel page (\"wall\")"] = "Pueden crearse entradas en mi página de inicio del canal (“muro”)"; +App::$strings["Can comment on or like my posts"] = "Pueden publicarse comentarios en mis publicaciones o marcar mis entradas con 'me gusta'."; +App::$strings["Can send me private mail messages"] = "Se me pueden enviar mensajes privados"; +App::$strings["Can like/dislike stuff"] = "Puede marcarse contenido como me gusta/no me gusta"; +App::$strings["Profiles and things other than posts/comments"] = "Perfiles y otras cosas aparte de publicaciones/comentarios"; +App::$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"; +App::$strings["Advanced - useful for creating group forum channels"] = "Avanzado - útil para crear canales de foros de discusión o grupos"; +App::$strings["Can chat with me (when available)"] = "Se puede charlar conmigo (cuando esté disponible)"; +App::$strings["Can write to my file storage and photos"] = "Puede escribirse en mi repositorio de ficheros y fotos"; +App::$strings["Can edit my webpages"] = "Pueden editarse mis páginas web"; +App::$strings["Can source my public posts in derived channels"] = "Pueden utilizarse mis publicaciones públicas como origen de contenidos en canales derivados"; +App::$strings["Somewhat advanced - very useful in open communities"] = "Algo avanzado - muy útil en comunidades abiertas"; +App::$strings["Can administer my channel resources"] = "Pueden administrarse mis recursos del canal"; +App::$strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "Muy avanzado. Déjelo a no ser que sepa bien lo que está haciendo."; +App::$strings["Social Networking"] = "Redes sociales"; +App::$strings["Social - Mostly Public"] = "Social - Público en su mayor parte"; +App::$strings["Social - Restricted"] = "Social - Restringido"; +App::$strings["Social - Private"] = "Social - Privado"; +App::$strings["Community Forum"] = "Foro de discusión"; +App::$strings["Forum - Mostly Public"] = "Foro - Público en su mayor parte"; +App::$strings["Forum - Restricted"] = "Foro - Restringido"; +App::$strings["Forum - Private"] = "Foro - Privado"; +App::$strings["Feed Republish"] = "Republicar un \"feed\""; +App::$strings["Feed - Mostly Public"] = "Feed - Público en su mayor parte"; +App::$strings["Feed - Restricted"] = "Feed - Restringido"; +App::$strings["Special Purpose"] = "Propósito especial"; +App::$strings["Special - Celebrity/Soapbox"] = "Especial - Celebridad / Tribuna improvisada"; +App::$strings["Special - Group Repository"] = "Especial - Repositorio de grupo"; +App::$strings["Custom/Expert Mode"] = "Modo personalizado/experto"; +App::$strings[" and "] = " y "; +App::$strings["public profile"] = "el perfil público"; +App::$strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s ha cambiado %2\$s a “%3\$s”"; +App::$strings["Visit %1\$s's %2\$s"] = "Visitar %2\$s de %1\$s"; +App::$strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s ha actualizado %2\$s, cambiando %3\$s."; +App::$strings["Attachments:"] = "Ficheros adjuntos:"; +App::$strings["\$Projectname event notification:"] = "Notificación de eventos de \$Projectname:"; App::$strings["Focus (Hubzilla default)"] = "Focus (predefinido)"; App::$strings["Theme settings"] = "Ajustes del tema"; App::$strings["Select scheme"] = "Elegir un esquema"; @@ -2333,7 +2294,6 @@ App::$strings["__ctx:opensearch__ \$Projectname"] = "\$Projectname"; App::$strings["Update %s failed. See error logs."] = "La actualización %s ha fallado. Mire el informe de errores."; App::$strings["Update Error at %s"] = "Error de actualización en %s"; App::$strings["Create an account to access services and applications within the Hubzilla"] = "Crear una cuenta para acceder a los servicios y aplicaciones dentro de Hubzilla"; -App::$strings["Login/Email"] = ""; App::$strings["Password"] = "Contraseña"; App::$strings["Remember me"] = "Recordarme"; App::$strings["Forgot your password?"] = "¿Olvidó su contraseña?"; diff --git a/view/fr/hmessages.po b/view/fr/hmessages.po index 0fb50f0ca..73d711700 100644 --- a/view/fr/hmessages.po +++ b/view/fr/hmessages.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: Redmatrix\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-07-22 00:02-0700\n" -"PO-Revision-Date: 2016-07-25 08:54+0000\n" +"POT-Creation-Date: 2016-06-10 00:02-0700\n" +"PO-Revision-Date: 2016-06-10 09:14+0000\n" "Last-Translator: fabrixxm \n" "Language-Team: French (http://www.transifex.com/Friendica/red-matrix/language/fr/)\n" "MIME-Version: 1.0\n" @@ -19,156 +19,11 @@ msgstr "" "Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../Zotlabs/Access/PermissionRoles.php:182 -#: ../../include/permissions.php:904 -msgid "Social Networking" -msgstr "Réseau social" - -#: ../../Zotlabs/Access/PermissionRoles.php:183 -#: ../../include/permissions.php:904 -msgid "Social - Mostly Public" -msgstr "Social - surtout public" - -#: ../../Zotlabs/Access/PermissionRoles.php:184 -#: ../../include/permissions.php:904 -msgid "Social - Restricted" -msgstr "Social - restreint" - -#: ../../Zotlabs/Access/PermissionRoles.php:185 -#: ../../include/permissions.php:904 -msgid "Social - Private" -msgstr "Social - privé" - -#: ../../Zotlabs/Access/PermissionRoles.php:188 -#: ../../include/permissions.php:905 -msgid "Community Forum" -msgstr "Forum communautaire" - -#: ../../Zotlabs/Access/PermissionRoles.php:189 -#: ../../include/permissions.php:905 -msgid "Forum - Mostly Public" -msgstr "Forum - surtout public" - -#: ../../Zotlabs/Access/PermissionRoles.php:190 -#: ../../include/permissions.php:905 -msgid "Forum - Restricted" -msgstr "Forum - restreint" - -#: ../../Zotlabs/Access/PermissionRoles.php:191 -#: ../../include/permissions.php:905 -msgid "Forum - Private" -msgstr "Forum - privé" - -#: ../../Zotlabs/Access/PermissionRoles.php:194 -#: ../../include/permissions.php:906 -msgid "Feed Republish" -msgstr "Republication de flux" - -#: ../../Zotlabs/Access/PermissionRoles.php:195 -#: ../../include/permissions.php:906 -msgid "Feed - Mostly Public" -msgstr "Flux - surtout public" - -#: ../../Zotlabs/Access/PermissionRoles.php:196 -#: ../../include/permissions.php:906 -msgid "Feed - Restricted" -msgstr "Flux - restreint" - -#: ../../Zotlabs/Access/PermissionRoles.php:199 -#: ../../include/permissions.php:907 -msgid "Special Purpose" -msgstr "Utilisation spécifique" - -#: ../../Zotlabs/Access/PermissionRoles.php:200 -#: ../../include/permissions.php:907 -msgid "Special - Celebrity/Soapbox" -msgstr "Spécial - célébrité/promotion" - -#: ../../Zotlabs/Access/PermissionRoles.php:201 -#: ../../include/permissions.php:907 -msgid "Special - Group Repository" -msgstr "Spécial - dépôt partagé" - -#: ../../Zotlabs/Access/PermissionRoles.php:204 ../../include/selectors.php:49 -#: ../../include/selectors.php:66 ../../include/selectors.php:104 -#: ../../include/selectors.php:140 ../../include/permissions.php:908 -msgid "Other" -msgstr "Autre" - -#: ../../Zotlabs/Access/PermissionRoles.php:205 -#: ../../include/permissions.php:908 -msgid "Custom/Expert Mode" -msgstr "Mode expert/spécifique" - -#: ../../Zotlabs/Access/Permissions.php:30 -msgid "Can view my channel stream and posts" -msgstr "" - -#: ../../Zotlabs/Access/Permissions.php:31 ../../include/permissions.php:33 -msgid "Can send me their channel stream and posts" -msgstr "Peuvent m'envoyer leur flux et les publications de leur canal" - -#: ../../Zotlabs/Access/Permissions.php:32 ../../include/permissions.php:27 -msgid "Can view my default channel profile" -msgstr "Peut voir le profil du canal par défaut." - -#: ../../Zotlabs/Access/Permissions.php:33 ../../include/permissions.php:28 -msgid "Can view my connections" -msgstr "Peut voir mes contacts" - -#: ../../Zotlabs/Access/Permissions.php:34 ../../include/permissions.php:29 -msgid "Can view my file storage and photos" -msgstr "Peut voir mes fichiers et photos" - -#: ../../Zotlabs/Access/Permissions.php:35 -msgid "Can upload/modify my file storage and photos" -msgstr "" - -#: ../../Zotlabs/Access/Permissions.php:36 -msgid "Can view my channel webpages" -msgstr "" - -#: ../../Zotlabs/Access/Permissions.php:37 -msgid "Can create/edit my channel webpages" -msgstr "" - -#: ../../Zotlabs/Access/Permissions.php:38 -msgid "Can post on my channel (wall) page" -msgstr "" - -#: ../../Zotlabs/Access/Permissions.php:39 ../../include/permissions.php:35 -msgid "Can comment on or like my posts" -msgstr "Peuvent commenter et/ou aimer mes publications" - -#: ../../Zotlabs/Access/Permissions.php:40 ../../include/permissions.php:36 -msgid "Can send me private mail messages" -msgstr "Peuvent m'envoyer des messages privés" - -#: ../../Zotlabs/Access/Permissions.php:41 -msgid "Can like/dislike profiles and profile things" -msgstr "" - -#: ../../Zotlabs/Access/Permissions.php:42 -msgid "Can forward to all my channel connections via @+ mentions in posts" -msgstr "" - -#: ../../Zotlabs/Access/Permissions.php:43 -msgid "Can chat with me" -msgstr "" - -#: ../../Zotlabs/Access/Permissions.php:44 ../../include/permissions.php:44 -msgid "Can source my public posts in derived channels" -msgstr "Peut rediriger mes publications publiques vers des canaux dérivés" - -#: ../../Zotlabs/Access/Permissions.php:45 -msgid "Can administer my channel" -msgstr "" - #: ../../Zotlabs/Storage/Browser.php:107 ../../Zotlabs/Storage/Browser.php:239 msgid "parent" msgstr "retour" -#: ../../Zotlabs/Storage/Browser.php:131 ../../include/text.php:2605 +#: ../../Zotlabs/Storage/Browser.php:131 ../../include/text.php:2620 msgid "Collection" msgstr "Groupe de contacts" @@ -192,17 +47,16 @@ msgstr "Calendrier - Messages entrants" msgid "Schedule Outbox" msgstr "Calendrier - Messages sortants" -#: ../../Zotlabs/Storage/Browser.php:164 ../../Zotlabs/Module/Photos.php:796 -#: ../../Zotlabs/Module/Photos.php:1241 -#: ../../Zotlabs/Module/Embedphotos.php:147 ../../Zotlabs/Lib/Apps.php:490 -#: ../../Zotlabs/Lib/Apps.php:565 ../../include/conversation.php:1035 -#: ../../include/widgets.php:1599 +#: ../../Zotlabs/Storage/Browser.php:164 ../../Zotlabs/Module/Photos.php:798 +#: ../../Zotlabs/Module/Photos.php:1243 ../../Zotlabs/Lib/Apps.php:486 +#: ../../Zotlabs/Lib/Apps.php:561 ../../include/widgets.php:1505 +#: ../../include/conversation.php:1032 msgid "Unknown" msgstr "Inconnu" #: ../../Zotlabs/Storage/Browser.php:226 ../../Zotlabs/Module/Fbrowser.php:85 -#: ../../Zotlabs/Lib/Apps.php:217 ../../include/nav.php:93 -#: ../../include/conversation.php:1654 +#: ../../Zotlabs/Lib/Apps.php:216 ../../include/nav.php:93 +#: ../../include/conversation.php:1639 msgid "Files" msgstr "Fichiers" @@ -215,23 +69,22 @@ msgid "Shared" msgstr "Partagé" #: ../../Zotlabs/Storage/Browser.php:230 ../../Zotlabs/Storage/Browser.php:306 -#: ../../Zotlabs/Module/Layouts.php:184 ../../Zotlabs/Module/Menu.php:118 -#: ../../Zotlabs/Module/New_channel.php:142 -#: ../../Zotlabs/Module/Blocks.php:159 ../../Zotlabs/Module/Webpages.php:193 +#: ../../Zotlabs/Module/Blocks.php:156 ../../Zotlabs/Module/Layouts.php:182 +#: ../../Zotlabs/Module/Menu.php:118 ../../Zotlabs/Module/New_channel.php:142 +#: ../../Zotlabs/Module/Webpages.php:186 msgid "Create" msgstr "Créer" #: ../../Zotlabs/Storage/Browser.php:231 ../../Zotlabs/Storage/Browser.php:308 #: ../../Zotlabs/Module/Cover_photo.php:357 -#: ../../Zotlabs/Module/Photos.php:823 ../../Zotlabs/Module/Photos.php:1362 -#: ../../Zotlabs/Module/Profile_photo.php:390 -#: ../../Zotlabs/Module/Embedphotos.php:159 ../../include/widgets.php:1612 +#: ../../Zotlabs/Module/Photos.php:825 ../../Zotlabs/Module/Photos.php:1364 +#: ../../Zotlabs/Module/Profile_photo.php:368 ../../include/widgets.php:1518 msgid "Upload" msgstr "Envoyer" #: ../../Zotlabs/Storage/Browser.php:235 ../../Zotlabs/Module/Chat.php:247 -#: ../../Zotlabs/Module/Admin.php:1223 ../../Zotlabs/Module/Settings.php:646 -#: ../../Zotlabs/Module/Settings.php:672 +#: ../../Zotlabs/Module/Admin.php:1223 ../../Zotlabs/Module/Settings.php:592 +#: ../../Zotlabs/Module/Settings.php:618 #: ../../Zotlabs/Module/Sharedwithme.php:99 msgid "Name" msgstr "Nom" @@ -241,7 +94,7 @@ msgid "Type" msgstr "Type" #: ../../Zotlabs/Storage/Browser.php:237 -#: ../../Zotlabs/Module/Sharedwithme.php:101 ../../include/text.php:1324 +#: ../../Zotlabs/Module/Sharedwithme.php:101 ../../include/text.php:1344 msgid "Size" msgstr "Taille" @@ -250,32 +103,34 @@ msgstr "Taille" msgid "Last Modified" msgstr "Modifié le" -#: ../../Zotlabs/Storage/Browser.php:240 ../../Zotlabs/Module/Editpost.php:84 +#: ../../Zotlabs/Storage/Browser.php:240 ../../Zotlabs/Module/Blocks.php:157 +#: ../../Zotlabs/Module/Editblock.php:109 #: ../../Zotlabs/Module/Connections.php:290 #: ../../Zotlabs/Module/Connections.php:310 -#: ../../Zotlabs/Module/Editlayout.php:114 -#: ../../Zotlabs/Module/Editwebpage.php:145 -#: ../../Zotlabs/Module/Layouts.php:192 ../../Zotlabs/Module/Menu.php:112 -#: ../../Zotlabs/Module/Admin.php:2113 ../../Zotlabs/Module/Blocks.php:160 -#: ../../Zotlabs/Module/Editblock.php:109 -#: ../../Zotlabs/Module/Settings.php:706 ../../Zotlabs/Module/Thing.php:260 -#: ../../Zotlabs/Module/Webpages.php:194 ../../Zotlabs/Lib/Apps.php:341 -#: ../../Zotlabs/Lib/ThreadItem.php:106 ../../include/page_widgets.php:9 -#: ../../include/page_widgets.php:39 ../../include/channel.php:976 -#: ../../include/channel.php:980 ../../include/menu.php:108 +#: ../../Zotlabs/Module/Editpost.php:84 +#: ../../Zotlabs/Module/Editlayout.php:113 +#: ../../Zotlabs/Module/Editwebpage.php:146 +#: ../../Zotlabs/Module/Layouts.php:190 ../../Zotlabs/Module/Menu.php:112 +#: ../../Zotlabs/Module/Admin.php:2113 ../../Zotlabs/Module/Settings.php:652 +#: ../../Zotlabs/Module/Thing.php:260 ../../Zotlabs/Module/Webpages.php:187 +#: ../../Zotlabs/Lib/Apps.php:337 ../../Zotlabs/Lib/ThreadItem.php:106 +#: ../../include/channel.php:937 ../../include/channel.php:941 +#: ../../include/menu.php:108 ../../include/page_widgets.php:8 +#: ../../include/page_widgets.php:36 msgid "Edit" msgstr "Modifier" -#: ../../Zotlabs/Storage/Browser.php:241 ../../Zotlabs/Module/Connedit.php:602 +#: ../../Zotlabs/Storage/Browser.php:241 ../../Zotlabs/Module/Blocks.php:159 +#: ../../Zotlabs/Module/Connedit.php:572 +#: ../../Zotlabs/Module/Editblock.php:134 #: ../../Zotlabs/Module/Connections.php:263 -#: ../../Zotlabs/Module/Editlayout.php:137 -#: ../../Zotlabs/Module/Editwebpage.php:169 ../../Zotlabs/Module/Group.php:177 -#: ../../Zotlabs/Module/Photos.php:1171 ../../Zotlabs/Module/Admin.php:1039 +#: ../../Zotlabs/Module/Editlayout.php:136 +#: ../../Zotlabs/Module/Editwebpage.php:170 ../../Zotlabs/Module/Group.php:177 +#: ../../Zotlabs/Module/Photos.php:1173 ../../Zotlabs/Module/Admin.php:1039 #: ../../Zotlabs/Module/Admin.php:1213 ../../Zotlabs/Module/Admin.php:2114 -#: ../../Zotlabs/Module/Blocks.php:162 ../../Zotlabs/Module/Editblock.php:134 -#: ../../Zotlabs/Module/Settings.php:707 ../../Zotlabs/Module/Thing.php:261 -#: ../../Zotlabs/Module/Webpages.php:196 ../../Zotlabs/Lib/Apps.php:342 -#: ../../Zotlabs/Lib/ThreadItem.php:126 ../../include/conversation.php:660 +#: ../../Zotlabs/Module/Settings.php:653 ../../Zotlabs/Module/Thing.php:261 +#: ../../Zotlabs/Module/Webpages.php:189 ../../Zotlabs/Lib/Apps.php:338 +#: ../../Zotlabs/Lib/ThreadItem.php:126 ../../include/conversation.php:657 msgid "Delete" msgstr "Supprimer" @@ -301,73 +156,74 @@ msgstr "Nouveau dossier" msgid "Upload file" msgstr "Téléverser un fichier" -#: ../../Zotlabs/Web/WebServer.php:127 ../../Zotlabs/Module/Dreport.php:10 -#: ../../Zotlabs/Module/Dreport.php:66 ../../Zotlabs/Module/Group.php:72 -#: ../../Zotlabs/Module/Like.php:283 ../../Zotlabs/Module/Import_items.php:114 +#: ../../Zotlabs/Web/WebServer.php:120 ../../Zotlabs/Module/Dreport.php:10 +#: ../../Zotlabs/Module/Dreport.php:49 ../../Zotlabs/Module/Group.php:72 +#: ../../Zotlabs/Module/Like.php:284 ../../Zotlabs/Module/Import_items.php:112 #: ../../Zotlabs/Module/Profperm.php:28 ../../Zotlabs/Module/Subthread.php:62 -#: ../../include/items.php:384 +#: ../../include/items.php:385 msgid "Permission denied" msgstr "Accès refusé" -#: ../../Zotlabs/Web/WebServer.php:128 ../../Zotlabs/Web/Router.php:65 -#: ../../Zotlabs/Module/Achievements.php:34 -#: ../../Zotlabs/Module/Connedit.php:390 ../../Zotlabs/Module/Id.php:76 -#: ../../Zotlabs/Module/Authtest.php:16 ../../Zotlabs/Module/Events.php:264 -#: ../../Zotlabs/Module/Bookmarks.php:61 ../../Zotlabs/Module/Editpost.php:17 -#: ../../Zotlabs/Module/Page.php:35 ../../Zotlabs/Module/Page.php:91 -#: ../../Zotlabs/Module/Connections.php:33 +#: ../../Zotlabs/Web/WebServer.php:121 ../../Zotlabs/Web/Router.php:65 +#: ../../Zotlabs/Module/Achievements.php:34 ../../Zotlabs/Module/Blocks.php:73 +#: ../../Zotlabs/Module/Blocks.php:80 ../../Zotlabs/Module/Channel.php:105 +#: ../../Zotlabs/Module/Channel.php:226 ../../Zotlabs/Module/Channel.php:267 +#: ../../Zotlabs/Module/Chat.php:100 ../../Zotlabs/Module/Chat.php:105 +#: ../../Zotlabs/Module/Authtest.php:16 ../../Zotlabs/Module/Block.php:26 +#: ../../Zotlabs/Module/Block.php:76 ../../Zotlabs/Module/Bookmarks.php:61 +#: ../../Zotlabs/Module/Connedit.php:366 ../../Zotlabs/Module/Editblock.php:67 +#: ../../Zotlabs/Module/Common.php:39 ../../Zotlabs/Module/Connections.php:33 #: ../../Zotlabs/Module/Cover_photo.php:277 -#: ../../Zotlabs/Module/Cover_photo.php:290 ../../Zotlabs/Module/Chat.php:100 -#: ../../Zotlabs/Module/Chat.php:105 ../../Zotlabs/Module/Editlayout.php:67 +#: ../../Zotlabs/Module/Cover_photo.php:290 +#: ../../Zotlabs/Module/Editpost.php:17 ../../Zotlabs/Module/Events.php:265 +#: ../../Zotlabs/Module/Editlayout.php:67 #: ../../Zotlabs/Module/Editlayout.php:90 -#: ../../Zotlabs/Module/Editwebpage.php:68 -#: ../../Zotlabs/Module/Editwebpage.php:89 -#: ../../Zotlabs/Module/Editwebpage.php:104 -#: ../../Zotlabs/Module/Editwebpage.php:126 ../../Zotlabs/Module/Group.php:13 -#: ../../Zotlabs/Module/Appman.php:75 ../../Zotlabs/Module/Pdledit.php:26 -#: ../../Zotlabs/Module/Filestorage.php:23 -#: ../../Zotlabs/Module/Filestorage.php:78 -#: ../../Zotlabs/Module/Filestorage.php:93 -#: ../../Zotlabs/Module/Filestorage.php:120 +#: ../../Zotlabs/Module/Editwebpage.php:69 +#: ../../Zotlabs/Module/Editwebpage.php:90 +#: ../../Zotlabs/Module/Editwebpage.php:105 +#: ../../Zotlabs/Module/Editwebpage.php:127 ../../Zotlabs/Module/Group.php:13 +#: ../../Zotlabs/Module/Api.php:13 ../../Zotlabs/Module/Api.php:18 +#: ../../Zotlabs/Module/Filestorage.php:24 +#: ../../Zotlabs/Module/Filestorage.php:79 +#: ../../Zotlabs/Module/Filestorage.php:94 +#: ../../Zotlabs/Module/Filestorage.php:121 ../../Zotlabs/Module/Item.php:210 +#: ../../Zotlabs/Module/Item.php:218 ../../Zotlabs/Module/Item.php:1070 #: ../../Zotlabs/Module/Layouts.php:71 ../../Zotlabs/Module/Layouts.php:78 -#: ../../Zotlabs/Module/Layouts.php:89 ../../Zotlabs/Module/Like.php:181 -#: ../../Zotlabs/Module/Profiles.php:203 ../../Zotlabs/Module/Profiles.php:601 -#: ../../Zotlabs/Module/Item.php:213 ../../Zotlabs/Module/Item.php:221 -#: ../../Zotlabs/Module/Item.php:1071 ../../Zotlabs/Module/Photos.php:73 -#: ../../Zotlabs/Module/Invite.php:17 ../../Zotlabs/Module/Invite.php:91 -#: ../../Zotlabs/Module/Locs.php:87 ../../Zotlabs/Module/Mail.php:121 -#: ../../Zotlabs/Module/Manage.php:10 ../../Zotlabs/Module/Menu.php:78 -#: ../../Zotlabs/Module/Message.php:18 ../../Zotlabs/Module/Mood.php:116 -#: ../../Zotlabs/Module/Network.php:15 ../../Zotlabs/Module/Channel.php:104 -#: ../../Zotlabs/Module/Channel.php:225 ../../Zotlabs/Module/Channel.php:266 +#: ../../Zotlabs/Module/Layouts.php:89 ../../Zotlabs/Module/Id.php:76 +#: ../../Zotlabs/Module/Like.php:181 ../../Zotlabs/Module/Invite.php:17 +#: ../../Zotlabs/Module/Invite.php:91 ../../Zotlabs/Module/Locs.php:87 +#: ../../Zotlabs/Module/Mail.php:129 ../../Zotlabs/Module/Manage.php:10 +#: ../../Zotlabs/Module/Menu.php:78 ../../Zotlabs/Module/Message.php:18 +#: ../../Zotlabs/Module/Mood.php:116 ../../Zotlabs/Module/Network.php:17 #: ../../Zotlabs/Module/Mitem.php:115 ../../Zotlabs/Module/New_channel.php:77 #: ../../Zotlabs/Module/New_channel.php:104 -#: ../../Zotlabs/Module/Notifications.php:70 ../../Zotlabs/Module/Poke.php:137 -#: ../../Zotlabs/Module/Profile.php:68 ../../Zotlabs/Module/Profile.php:76 -#: ../../Zotlabs/Module/Block.php:26 ../../Zotlabs/Module/Block.php:76 -#: ../../Zotlabs/Module/Profile_photo.php:265 -#: ../../Zotlabs/Module/Profile_photo.php:278 -#: ../../Zotlabs/Module/Blocks.php:73 ../../Zotlabs/Module/Blocks.php:80 -#: ../../Zotlabs/Module/Rate.php:113 ../../Zotlabs/Module/Editblock.php:67 -#: ../../Zotlabs/Module/Common.php:39 ../../Zotlabs/Module/Register.php:77 -#: ../../Zotlabs/Module/Regmod.php:21 +#: ../../Zotlabs/Module/Notifications.php:70 +#: ../../Zotlabs/Module/Photos.php:75 ../../Zotlabs/Module/Page.php:35 +#: ../../Zotlabs/Module/Page.php:90 ../../Zotlabs/Module/Pdledit.php:26 +#: ../../Zotlabs/Module/Poke.php:137 ../../Zotlabs/Module/Profile.php:68 +#: ../../Zotlabs/Module/Profile.php:76 ../../Zotlabs/Module/Profiles.php:203 +#: ../../Zotlabs/Module/Profiles.php:601 +#: ../../Zotlabs/Module/Profile_photo.php:256 +#: ../../Zotlabs/Module/Profile_photo.php:269 +#: ../../Zotlabs/Module/Rate.php:113 ../../Zotlabs/Module/Appman.php:75 +#: ../../Zotlabs/Module/Register.php:77 ../../Zotlabs/Module/Regmod.php:21 #: ../../Zotlabs/Module/Service_limits.php:11 -#: ../../Zotlabs/Module/Settings.php:626 ../../Zotlabs/Module/Setup.php:215 -#: ../../Zotlabs/Module/Sharedwithme.php:11 ../../Zotlabs/Module/Thing.php:274 -#: ../../Zotlabs/Module/Thing.php:294 ../../Zotlabs/Module/Thing.php:331 +#: ../../Zotlabs/Module/Settings.php:572 ../../Zotlabs/Module/Setup.php:215 +#: ../../Zotlabs/Module/Sharedwithme.php:11 #: ../../Zotlabs/Module/Sources.php:74 ../../Zotlabs/Module/Suggest.php:30 -#: ../../Zotlabs/Module/Webpages.php:73 -#: ../../Zotlabs/Module/Viewconnections.php:28 -#: ../../Zotlabs/Module/Viewconnections.php:33 -#: ../../Zotlabs/Module/Viewsrc.php:18 ../../Zotlabs/Module/Api.php:13 -#: ../../Zotlabs/Module/Api.php:18 ../../Zotlabs/Lib/Chatroom.php:137 -#: ../../include/photos.php:27 ../../include/attach.php:141 -#: ../../include/attach.php:189 ../../include/attach.php:252 -#: ../../include/attach.php:266 ../../include/attach.php:273 -#: ../../include/attach.php:338 ../../include/attach.php:352 -#: ../../include/attach.php:359 ../../include/attach.php:439 -#: ../../include/attach.php:901 ../../include/attach.php:972 -#: ../../include/attach.php:1124 ../../include/items.php:3448 +#: ../../Zotlabs/Module/Thing.php:274 ../../Zotlabs/Module/Thing.php:294 +#: ../../Zotlabs/Module/Thing.php:331 +#: ../../Zotlabs/Module/Viewconnections.php:25 +#: ../../Zotlabs/Module/Viewconnections.php:30 +#: ../../Zotlabs/Module/Viewsrc.php:18 ../../Zotlabs/Module/Webpages.php:74 +#: ../../Zotlabs/Lib/Chatroom.php:137 ../../include/items.php:3438 +#: ../../include/attach.php:141 ../../include/attach.php:189 +#: ../../include/attach.php:252 ../../include/attach.php:266 +#: ../../include/attach.php:273 ../../include/attach.php:338 +#: ../../include/attach.php:352 ../../include/attach.php:359 +#: ../../include/attach.php:437 ../../include/attach.php:895 +#: ../../include/attach.php:966 ../../include/attach.php:1118 +#: ../../include/photos.php:27 msgid "Permission denied." msgstr "Permission refusée." @@ -375,9 +231,9 @@ msgstr "Permission refusée." msgid "Not Found" msgstr "Introuvable" -#: ../../Zotlabs/Web/Router.php:149 ../../Zotlabs/Module/Display.php:118 -#: ../../Zotlabs/Module/Page.php:94 ../../Zotlabs/Module/Help.php:97 -#: ../../Zotlabs/Module/Block.php:79 +#: ../../Zotlabs/Web/Router.php:149 ../../Zotlabs/Module/Block.php:79 +#: ../../Zotlabs/Module/Display.php:117 ../../Zotlabs/Module/Help.php:97 +#: ../../Zotlabs/Module/Page.php:93 msgid "Page not found." msgstr "Page introuvable." @@ -393,13 +249,13 @@ msgstr "Authentification distante bloquée. Vous êtes connecté(e) sur ce site msgid "Welcome %s. Remote authentication successful." msgstr "Bienvenue %s. L'authentification distante a fonctionné." -#: ../../Zotlabs/Module/Achievements.php:15 -#: ../../Zotlabs/Module/Connect.php:17 ../../Zotlabs/Module/Editlayout.php:31 -#: ../../Zotlabs/Module/Editwebpage.php:32 ../../Zotlabs/Module/Hcard.php:12 -#: ../../Zotlabs/Module/Filestorage.php:59 ../../Zotlabs/Module/Layouts.php:31 -#: ../../Zotlabs/Module/Profile.php:20 ../../Zotlabs/Module/Blocks.php:33 -#: ../../Zotlabs/Module/Editblock.php:31 ../../Zotlabs/Module/Webpages.php:33 -#: ../../include/channel.php:876 +#: ../../Zotlabs/Module/Achievements.php:15 ../../Zotlabs/Module/Blocks.php:33 +#: ../../Zotlabs/Module/Connect.php:17 ../../Zotlabs/Module/Editblock.php:31 +#: ../../Zotlabs/Module/Editlayout.php:31 +#: ../../Zotlabs/Module/Editwebpage.php:33 +#: ../../Zotlabs/Module/Filestorage.php:60 ../../Zotlabs/Module/Hcard.php:12 +#: ../../Zotlabs/Module/Layouts.php:31 ../../Zotlabs/Module/Profile.php:20 +#: ../../Zotlabs/Module/Webpages.php:34 ../../include/channel.php:837 msgid "Requested profile is not available." msgstr "Profil demandé non disponible." @@ -407,6 +263,229 @@ msgstr "Profil demandé non disponible." msgid "Some blurb about what to do when you're new here" msgstr "Quelques mots sur quoi faire quand on est nouveau ici" +#: ../../Zotlabs/Module/Blocks.php:97 ../../Zotlabs/Module/Blocks.php:152 +#: ../../Zotlabs/Module/Editblock.php:108 +msgid "Block Name" +msgstr "Nom du Bloc" + +#: ../../Zotlabs/Module/Blocks.php:151 ../../include/text.php:2265 +msgid "Blocks" +msgstr "Blocs" + +#: ../../Zotlabs/Module/Blocks.php:153 +msgid "Block Title" +msgstr "Titre du bloc" + +#: ../../Zotlabs/Module/Blocks.php:154 ../../Zotlabs/Module/Layouts.php:188 +#: ../../Zotlabs/Module/Menu.php:114 ../../Zotlabs/Module/Webpages.php:198 +#: ../../include/page_widgets.php:44 +msgid "Created" +msgstr "Créé(e)" + +#: ../../Zotlabs/Module/Blocks.php:155 ../../Zotlabs/Module/Layouts.php:189 +#: ../../Zotlabs/Module/Menu.php:115 ../../Zotlabs/Module/Webpages.php:199 +#: ../../include/page_widgets.php:45 +msgid "Edited" +msgstr "Modifié(e)" + +#: ../../Zotlabs/Module/Blocks.php:158 ../../Zotlabs/Module/Layouts.php:191 +#: ../../Zotlabs/Module/Photos.php:1072 ../../Zotlabs/Module/Webpages.php:188 +#: ../../include/conversation.php:1208 +msgid "Share" +msgstr "Partager" + +#: ../../Zotlabs/Module/Blocks.php:163 ../../Zotlabs/Module/Layouts.php:195 +#: ../../Zotlabs/Module/Pubsites.php:47 ../../Zotlabs/Module/Webpages.php:193 +#: ../../include/page_widgets.php:39 +msgid "View" +msgstr "Voir" + +#: ../../Zotlabs/Module/Cal.php:62 ../../Zotlabs/Module/Block.php:43 +#: ../../Zotlabs/Module/Page.php:56 ../../Zotlabs/Module/Wall_upload.php:33 +msgid "Channel not found." +msgstr "Canal introuvable." + +#: ../../Zotlabs/Module/Cal.php:69 +msgid "Permissions denied." +msgstr "Permissions refusées." + +#: ../../Zotlabs/Module/Cal.php:259 ../../Zotlabs/Module/Events.php:588 +msgid "l, F j" +msgstr "l, F j" + +#: ../../Zotlabs/Module/Cal.php:308 ../../Zotlabs/Module/Events.php:637 +#: ../../include/text.php:1732 +msgid "Link to Source" +msgstr "Lien vers la Source" + +#: ../../Zotlabs/Module/Cal.php:331 ../../Zotlabs/Module/Events.php:665 +msgid "Edit Event" +msgstr "Modifier l'événement" + +#: ../../Zotlabs/Module/Cal.php:331 ../../Zotlabs/Module/Events.php:665 +msgid "Create Event" +msgstr "Créer un événement" + +#: ../../Zotlabs/Module/Cal.php:332 ../../Zotlabs/Module/Cal.php:339 +#: ../../Zotlabs/Module/Events.php:666 ../../Zotlabs/Module/Events.php:673 +#: ../../Zotlabs/Module/Photos.php:949 +msgid "Previous" +msgstr "Précédent" + +#: ../../Zotlabs/Module/Cal.php:333 ../../Zotlabs/Module/Cal.php:340 +#: ../../Zotlabs/Module/Events.php:667 ../../Zotlabs/Module/Events.php:674 +#: ../../Zotlabs/Module/Photos.php:958 ../../Zotlabs/Module/Setup.php:267 +msgid "Next" +msgstr "Suivant" + +#: ../../Zotlabs/Module/Cal.php:334 ../../Zotlabs/Module/Events.php:668 +#: ../../include/widgets.php:755 +msgid "Export" +msgstr "Export" + +#: ../../Zotlabs/Module/Cal.php:337 ../../Zotlabs/Module/Events.php:671 +#: ../../include/widgets.php:756 +msgid "Import" +msgstr "Import" + +#: ../../Zotlabs/Module/Cal.php:338 ../../Zotlabs/Module/Chat.php:196 +#: ../../Zotlabs/Module/Chat.php:238 ../../Zotlabs/Module/Connect.php:98 +#: ../../Zotlabs/Module/Connedit.php:731 ../../Zotlabs/Module/Events.php:475 +#: ../../Zotlabs/Module/Events.php:672 ../../Zotlabs/Module/Group.php:85 +#: ../../Zotlabs/Module/Filestorage.php:162 +#: ../../Zotlabs/Module/Import.php:550 +#: ../../Zotlabs/Module/Import_items.php:120 +#: ../../Zotlabs/Module/Invite.php:146 ../../Zotlabs/Module/Locs.php:121 +#: ../../Zotlabs/Module/Mail.php:378 ../../Zotlabs/Module/Mood.php:139 +#: ../../Zotlabs/Module/Mitem.php:235 ../../Zotlabs/Module/Photos.php:677 +#: ../../Zotlabs/Module/Photos.php:1052 ../../Zotlabs/Module/Photos.php:1092 +#: ../../Zotlabs/Module/Photos.php:1210 ../../Zotlabs/Module/Pconfig.php:107 +#: ../../Zotlabs/Module/Pdledit.php:66 ../../Zotlabs/Module/Poke.php:186 +#: ../../Zotlabs/Module/Profiles.php:687 ../../Zotlabs/Module/Rate.php:170 +#: ../../Zotlabs/Module/Admin.php:492 ../../Zotlabs/Module/Admin.php:688 +#: ../../Zotlabs/Module/Admin.php:771 ../../Zotlabs/Module/Admin.php:1032 +#: ../../Zotlabs/Module/Admin.php:1211 ../../Zotlabs/Module/Admin.php:1421 +#: ../../Zotlabs/Module/Admin.php:1648 ../../Zotlabs/Module/Admin.php:1733 +#: ../../Zotlabs/Module/Admin.php:2116 ../../Zotlabs/Module/Appman.php:126 +#: ../../Zotlabs/Module/Settings.php:590 ../../Zotlabs/Module/Settings.php:703 +#: ../../Zotlabs/Module/Settings.php:731 ../../Zotlabs/Module/Settings.php:754 +#: ../../Zotlabs/Module/Settings.php:842 +#: ../../Zotlabs/Module/Settings.php:1034 ../../Zotlabs/Module/Setup.php:312 +#: ../../Zotlabs/Module/Setup.php:353 ../../Zotlabs/Module/Sources.php:114 +#: ../../Zotlabs/Module/Sources.php:149 ../../Zotlabs/Module/Thing.php:316 +#: ../../Zotlabs/Module/Thing.php:362 ../../Zotlabs/Module/Xchan.php:15 +#: ../../Zotlabs/Lib/ThreadItem.php:710 ../../include/widgets.php:757 +#: ../../include/widgets.php:769 ../../include/js_strings.php:22 +#: ../../view/theme/redbasic/php/config.php:99 +msgid "Submit" +msgstr "Envoyer" + +#: ../../Zotlabs/Module/Cal.php:341 ../../Zotlabs/Module/Events.php:675 +msgid "Today" +msgstr "Aujourd'hui" + +#: ../../Zotlabs/Module/Channel.php:29 ../../Zotlabs/Module/Chat.php:25 +msgid "You must be logged in to see this page." +msgstr "Vous devez vous connecter pour voir cette page." + +#: ../../Zotlabs/Module/Channel.php:41 +msgid "Posts and comments" +msgstr "" + +#: ../../Zotlabs/Module/Channel.php:42 +msgid "Only posts" +msgstr "" + +#: ../../Zotlabs/Module/Channel.php:102 +msgid "Insufficient permissions. Request redirected to profile page." +msgstr "Permissions insuffisantes. Demande redirigée vers la page du profil." + +#: ../../Zotlabs/Module/Chat.php:181 +msgid "Room not found" +msgstr "Salon introuvable" + +#: ../../Zotlabs/Module/Chat.php:197 +msgid "Leave Room" +msgstr "Quitter le salon" + +#: ../../Zotlabs/Module/Chat.php:198 +msgid "Delete Room" +msgstr "" + +#: ../../Zotlabs/Module/Chat.php:199 +msgid "I am away right now" +msgstr "Je suis absent en ce moment" + +#: ../../Zotlabs/Module/Chat.php:200 +msgid "I am online" +msgstr "Je suis en ligne" + +#: ../../Zotlabs/Module/Chat.php:202 +msgid "Bookmark this room" +msgstr "Marquer ce salon comme favori" + +#: ../../Zotlabs/Module/Chat.php:205 ../../Zotlabs/Module/Mail.php:205 +#: ../../Zotlabs/Module/Mail.php:314 ../../include/conversation.php:1176 +msgid "Please enter a link URL:" +msgstr "Merci d'entrer l'URL d'un lien :" + +#: ../../Zotlabs/Module/Chat.php:206 ../../Zotlabs/Module/Mail.php:258 +#: ../../Zotlabs/Module/Mail.php:383 ../../Zotlabs/Lib/ThreadItem.php:722 +#: ../../include/conversation.php:1256 +msgid "Encrypt text" +msgstr "Chiffrer le texte" + +#: ../../Zotlabs/Module/Chat.php:207 ../../Zotlabs/Module/Editblock.php:111 +#: ../../Zotlabs/Module/Editwebpage.php:147 ../../Zotlabs/Module/Mail.php:252 +#: ../../Zotlabs/Module/Mail.php:377 ../../include/conversation.php:1143 +msgid "Insert web link" +msgstr "Insérer lien web" + +#: ../../Zotlabs/Module/Chat.php:218 +msgid "Feature disabled." +msgstr "" + +#: ../../Zotlabs/Module/Chat.php:232 +msgid "New Chatroom" +msgstr "Nouveau salon de discussion" + +#: ../../Zotlabs/Module/Chat.php:233 +msgid "Chatroom name" +msgstr "" + +#: ../../Zotlabs/Module/Chat.php:234 +msgid "Expiration of chats (minutes)" +msgstr "Expiration des discussions (en minutes)" + +#: ../../Zotlabs/Module/Chat.php:235 ../../Zotlabs/Module/Filestorage.php:153 +#: ../../Zotlabs/Module/Photos.php:671 ../../Zotlabs/Module/Photos.php:1045 +#: ../../Zotlabs/Module/Thing.php:313 ../../Zotlabs/Module/Thing.php:359 +#: ../../include/acl_selectors.php:283 +msgid "Permissions" +msgstr "Autorisations" + +#: ../../Zotlabs/Module/Chat.php:246 +#, php-format +msgid "%1$s's Chatrooms" +msgstr "Salons de %1$s" + +#: ../../Zotlabs/Module/Chat.php:251 +msgid "No chatrooms available" +msgstr "" + +#: ../../Zotlabs/Module/Chat.php:252 ../../Zotlabs/Module/Manage.php:143 +#: ../../Zotlabs/Module/Profiles.php:778 +msgid "Create New" +msgstr "" + +#: ../../Zotlabs/Module/Chat.php:255 +msgid "Expiration" +msgstr "" + +#: ../../Zotlabs/Module/Chat.php:256 +msgid "min" +msgstr "" + #: ../../Zotlabs/Module/Chatsvc.php:117 msgid "Away" msgstr "Absent" @@ -415,6 +494,65 @@ msgstr "Absent" msgid "Online" msgstr "En ligne" +#: ../../Zotlabs/Module/Block.php:31 ../../Zotlabs/Module/Page.php:40 +msgid "Invalid item." +msgstr "Élément invalide." + +#: ../../Zotlabs/Module/Bookmarks.php:53 +msgid "Bookmark added" +msgstr "Favori ajouté" + +#: ../../Zotlabs/Module/Bookmarks.php:75 +msgid "My Bookmarks" +msgstr "Mes Favoris" + +#: ../../Zotlabs/Module/Bookmarks.php:86 +msgid "My Connections Bookmarks" +msgstr "Favoris de mes contacts" + +#: ../../Zotlabs/Module/Connect.php:61 ../../Zotlabs/Module/Connect.php:109 +msgid "Continue" +msgstr "Continuer" + +#: ../../Zotlabs/Module/Connect.php:90 +msgid "Premium Channel Setup" +msgstr "Configuration du canal VIP" + +#: ../../Zotlabs/Module/Connect.php:92 +msgid "Enable premium channel connection restrictions" +msgstr "Activer les restrictions liées au canal VIP" + +#: ../../Zotlabs/Module/Connect.php:93 +msgid "" +"Please enter your restrictions or conditions, such as paypal receipt, usage " +"guidelines, etc." +msgstr "Merci de saisir les restrictions et/ou conditions - reçu Paypal, transaction Bitcoin, ligne de conduite, ..." + +#: ../../Zotlabs/Module/Connect.php:95 ../../Zotlabs/Module/Connect.php:115 +msgid "" +"This channel may require additional steps or acknowledgement of the " +"following conditions prior to connecting:" +msgstr "Avant d'autoriser la mise en relation, ce canal attire votre attention sur les conditions suivantes :" + +#: ../../Zotlabs/Module/Connect.php:96 +msgid "" +"Potential connections will then see the following text before proceeding:" +msgstr "Les contacts potentiels verront ce qui suit avant de pouvoir continuer :" + +#: ../../Zotlabs/Module/Connect.php:97 ../../Zotlabs/Module/Connect.php:118 +msgid "" +"By continuing, I certify that I have complied with any instructions provided" +" on this page." +msgstr "En continuant, je certifie que je me suis conformé à toutes les instructions indiquées sur cette page." + +#: ../../Zotlabs/Module/Connect.php:106 +msgid "(No specific instructions have been provided by the channel owner.)" +msgstr "(Aucune instruction spécifique n'a été fournie par le propriétaire du canal.)" + +#: ../../Zotlabs/Module/Connect.php:114 +msgid "Restricted or Premium Channel" +msgstr "Canal VIP ou restreint" + #: ../../Zotlabs/Module/Connedit.php:80 msgid "Could not access contact record." msgstr "Impossible d'accéder aux détails du contact." @@ -423,350 +561,317 @@ msgstr "Impossible d'accéder aux détails du contact." msgid "Could not locate selected profile." msgstr "Impossible de localiser le profil sélectionné." -#: ../../Zotlabs/Module/Connedit.php:248 +#: ../../Zotlabs/Module/Connedit.php:227 msgid "Connection updated." msgstr "Contact mis à jour." -#: ../../Zotlabs/Module/Connedit.php:250 +#: ../../Zotlabs/Module/Connedit.php:229 msgid "Failed to update connection record." msgstr "Impossible de mettre à jour les détails du contact." -#: ../../Zotlabs/Module/Connedit.php:300 +#: ../../Zotlabs/Module/Connedit.php:276 msgid "is now connected to" msgstr "est maintenant connecté avec" -#: ../../Zotlabs/Module/Connedit.php:403 ../../Zotlabs/Module/Connedit.php:685 -#: ../../Zotlabs/Module/Events.php:458 ../../Zotlabs/Module/Events.php:459 -#: ../../Zotlabs/Module/Events.php:468 -#: ../../Zotlabs/Module/Filestorage.php:156 -#: ../../Zotlabs/Module/Filestorage.php:164 -#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Photos.php:664 -#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 -#: ../../Zotlabs/Module/Mitem.php:158 ../../Zotlabs/Module/Mitem.php:159 -#: ../../Zotlabs/Module/Mitem.php:232 ../../Zotlabs/Module/Mitem.php:233 -#: ../../Zotlabs/Module/Admin.php:459 ../../Zotlabs/Module/Removeme.php:63 -#: ../../Zotlabs/Module/Settings.php:635 ../../Zotlabs/Module/Api.php:89 +#: ../../Zotlabs/Module/Connedit.php:379 ../../Zotlabs/Module/Connedit.php:654 +#: ../../Zotlabs/Module/Events.php:459 ../../Zotlabs/Module/Events.php:460 +#: ../../Zotlabs/Module/Events.php:469 ../../Zotlabs/Module/Api.php:89 +#: ../../Zotlabs/Module/Filestorage.php:157 +#: ../../Zotlabs/Module/Filestorage.php:165 ../../Zotlabs/Module/Menu.php:100 +#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Mitem.php:158 +#: ../../Zotlabs/Module/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:232 +#: ../../Zotlabs/Module/Mitem.php:233 ../../Zotlabs/Module/Photos.php:666 +#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Admin.php:459 +#: ../../Zotlabs/Module/Removeme.php:61 ../../Zotlabs/Module/Settings.php:581 #: ../../include/dir_fns.php:143 ../../include/dir_fns.php:144 #: ../../include/dir_fns.php:145 ../../view/theme/redbasic/php/config.php:105 -#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1708 +#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1707 msgid "No" msgstr "Non" -#: ../../Zotlabs/Module/Connedit.php:403 ../../Zotlabs/Module/Events.php:458 -#: ../../Zotlabs/Module/Events.php:459 ../../Zotlabs/Module/Events.php:468 -#: ../../Zotlabs/Module/Filestorage.php:156 -#: ../../Zotlabs/Module/Filestorage.php:164 -#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Photos.php:664 -#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 -#: ../../Zotlabs/Module/Mitem.php:158 ../../Zotlabs/Module/Mitem.php:159 -#: ../../Zotlabs/Module/Mitem.php:232 ../../Zotlabs/Module/Mitem.php:233 -#: ../../Zotlabs/Module/Admin.php:461 ../../Zotlabs/Module/Removeme.php:63 -#: ../../Zotlabs/Module/Settings.php:635 ../../Zotlabs/Module/Api.php:88 +#: ../../Zotlabs/Module/Connedit.php:379 ../../Zotlabs/Module/Events.php:459 +#: ../../Zotlabs/Module/Events.php:460 ../../Zotlabs/Module/Events.php:469 +#: ../../Zotlabs/Module/Api.php:88 ../../Zotlabs/Module/Filestorage.php:157 +#: ../../Zotlabs/Module/Filestorage.php:165 ../../Zotlabs/Module/Menu.php:100 +#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Mitem.php:158 +#: ../../Zotlabs/Module/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:232 +#: ../../Zotlabs/Module/Mitem.php:233 ../../Zotlabs/Module/Photos.php:666 +#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Admin.php:461 +#: ../../Zotlabs/Module/Removeme.php:61 ../../Zotlabs/Module/Settings.php:581 #: ../../include/dir_fns.php:143 ../../include/dir_fns.php:144 #: ../../include/dir_fns.php:145 ../../view/theme/redbasic/php/config.php:105 -#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1708 +#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1707 msgid "Yes" msgstr "Oui" -#: ../../Zotlabs/Module/Connedit.php:435 +#: ../../Zotlabs/Module/Connedit.php:411 msgid "Could not access address book record." msgstr "Impossible d'accéder aux détails du carnet d'adresses." -#: ../../Zotlabs/Module/Connedit.php:455 +#: ../../Zotlabs/Module/Connedit.php:425 msgid "Refresh failed - channel is currently unavailable." msgstr "Actualisation impossible - le canal est indisponible." -#: ../../Zotlabs/Module/Connedit.php:470 ../../Zotlabs/Module/Connedit.php:479 -#: ../../Zotlabs/Module/Connedit.php:488 ../../Zotlabs/Module/Connedit.php:497 -#: ../../Zotlabs/Module/Connedit.php:510 +#: ../../Zotlabs/Module/Connedit.php:440 ../../Zotlabs/Module/Connedit.php:449 +#: ../../Zotlabs/Module/Connedit.php:458 ../../Zotlabs/Module/Connedit.php:467 +#: ../../Zotlabs/Module/Connedit.php:480 msgid "Unable to set address book parameters." msgstr "Impossible de régler les paramètres du carnet d'adresses." -#: ../../Zotlabs/Module/Connedit.php:533 +#: ../../Zotlabs/Module/Connedit.php:503 msgid "Connection has been removed." msgstr "Le contact a été supprimé." -#: ../../Zotlabs/Module/Connedit.php:549 ../../Zotlabs/Lib/Apps.php:221 -#: ../../include/nav.php:86 ../../include/conversation.php:957 +#: ../../Zotlabs/Module/Connedit.php:519 ../../Zotlabs/Lib/Apps.php:219 +#: ../../include/nav.php:86 ../../include/conversation.php:954 msgid "View Profile" msgstr "Voir le profil" -#: ../../Zotlabs/Module/Connedit.php:552 +#: ../../Zotlabs/Module/Connedit.php:522 #, php-format msgid "View %s's profile" msgstr "Voir le profil de %s" -#: ../../Zotlabs/Module/Connedit.php:556 +#: ../../Zotlabs/Module/Connedit.php:526 msgid "Refresh Permissions" msgstr "Actualiser les autorisations" -#: ../../Zotlabs/Module/Connedit.php:559 +#: ../../Zotlabs/Module/Connedit.php:529 msgid "Fetch updated permissions" msgstr "Récupérer les autorisations les plus récentes" -#: ../../Zotlabs/Module/Connedit.php:563 +#: ../../Zotlabs/Module/Connedit.php:533 msgid "Recent Activity" msgstr "Activité récente" -#: ../../Zotlabs/Module/Connedit.php:566 +#: ../../Zotlabs/Module/Connedit.php:536 msgid "View recent posts and comments" msgstr "Voir les publications et commentaires récents" -#: ../../Zotlabs/Module/Connedit.php:570 ../../Zotlabs/Module/Admin.php:1041 +#: ../../Zotlabs/Module/Connedit.php:540 ../../Zotlabs/Module/Admin.php:1041 msgid "Unblock" msgstr "Débloquer" -#: ../../Zotlabs/Module/Connedit.php:570 ../../Zotlabs/Module/Admin.php:1040 +#: ../../Zotlabs/Module/Connedit.php:540 ../../Zotlabs/Module/Admin.php:1040 msgid "Block" msgstr "Bloquer" -#: ../../Zotlabs/Module/Connedit.php:573 +#: ../../Zotlabs/Module/Connedit.php:543 msgid "Block (or Unblock) all communications with this connection" msgstr "Bloquer ou débloquer toute communication avec ce contact" -#: ../../Zotlabs/Module/Connedit.php:574 +#: ../../Zotlabs/Module/Connedit.php:544 msgid "This connection is blocked!" msgstr "Ce contact est bloqué !" -#: ../../Zotlabs/Module/Connedit.php:578 +#: ../../Zotlabs/Module/Connedit.php:548 msgid "Unignore" msgstr "Ne plus ignorer" -#: ../../Zotlabs/Module/Connedit.php:578 +#: ../../Zotlabs/Module/Connedit.php:548 #: ../../Zotlabs/Module/Connections.php:277 #: ../../Zotlabs/Module/Notifications.php:55 msgid "Ignore" msgstr "Ignorer" -#: ../../Zotlabs/Module/Connedit.php:581 +#: ../../Zotlabs/Module/Connedit.php:551 msgid "Ignore (or Unignore) all inbound communications from this connection" msgstr "Ignorer ou ne plus ignorer toute communication venant de ce contact" -#: ../../Zotlabs/Module/Connedit.php:582 +#: ../../Zotlabs/Module/Connedit.php:552 msgid "This connection is ignored!" msgstr "Ce contact est ignoré !" -#: ../../Zotlabs/Module/Connedit.php:586 +#: ../../Zotlabs/Module/Connedit.php:556 msgid "Unarchive" msgstr "Désarchiver" -#: ../../Zotlabs/Module/Connedit.php:586 +#: ../../Zotlabs/Module/Connedit.php:556 msgid "Archive" msgstr "Archiver" -#: ../../Zotlabs/Module/Connedit.php:589 +#: ../../Zotlabs/Module/Connedit.php:559 msgid "" "Archive (or Unarchive) this connection - mark channel dead but keep content" msgstr "Archiver ou désarchiver ce contact - le marquer comme inactif mais conserver le contenu" -#: ../../Zotlabs/Module/Connedit.php:590 +#: ../../Zotlabs/Module/Connedit.php:560 msgid "This connection is archived!" msgstr "Ce contact est archivé !" -#: ../../Zotlabs/Module/Connedit.php:594 +#: ../../Zotlabs/Module/Connedit.php:564 msgid "Unhide" msgstr "Ne plus cacher" -#: ../../Zotlabs/Module/Connedit.php:594 +#: ../../Zotlabs/Module/Connedit.php:564 msgid "Hide" msgstr "Cacher" -#: ../../Zotlabs/Module/Connedit.php:597 +#: ../../Zotlabs/Module/Connedit.php:567 msgid "Hide or Unhide this connection from your other connections" msgstr "Cacher ou ne plus cacher ce contact vis-à-vis de vos autres contacts" -#: ../../Zotlabs/Module/Connedit.php:598 +#: ../../Zotlabs/Module/Connedit.php:568 msgid "This connection is hidden!" msgstr "Ce contact est caché !" -#: ../../Zotlabs/Module/Connedit.php:605 +#: ../../Zotlabs/Module/Connedit.php:575 msgid "Delete this connection" msgstr "Supprimer ce contact" -#: ../../Zotlabs/Module/Connedit.php:620 ../../include/widgets.php:493 +#: ../../Zotlabs/Module/Connedit.php:590 ../../include/widgets.php:493 msgid "Me" msgstr "Moi" -#: ../../Zotlabs/Module/Connedit.php:621 ../../include/widgets.php:494 +#: ../../Zotlabs/Module/Connedit.php:591 ../../include/widgets.php:494 msgid "Family" msgstr "Famille" -#: ../../Zotlabs/Module/Connedit.php:622 ../../Zotlabs/Module/Settings.php:391 -#: ../../Zotlabs/Module/Settings.php:395 ../../Zotlabs/Module/Settings.php:396 -#: ../../Zotlabs/Module/Settings.php:399 ../../Zotlabs/Module/Settings.php:410 -#: ../../include/channel.php:402 ../../include/channel.php:403 -#: ../../include/channel.php:410 ../../include/selectors.php:123 -#: ../../include/widgets.php:495 +#: ../../Zotlabs/Module/Connedit.php:592 ../../Zotlabs/Module/Settings.php:342 +#: ../../Zotlabs/Module/Settings.php:346 ../../Zotlabs/Module/Settings.php:347 +#: ../../Zotlabs/Module/Settings.php:350 ../../Zotlabs/Module/Settings.php:361 +#: ../../include/widgets.php:495 ../../include/selectors.php:123 +#: ../../include/channel.php:389 ../../include/channel.php:390 +#: ../../include/channel.php:397 msgid "Friends" msgstr "Amis" -#: ../../Zotlabs/Module/Connedit.php:623 ../../include/widgets.php:496 +#: ../../Zotlabs/Module/Connedit.php:593 ../../include/widgets.php:496 msgid "Acquaintances" msgstr "Connaissances" -#: ../../Zotlabs/Module/Connedit.php:624 +#: ../../Zotlabs/Module/Connedit.php:594 #: ../../Zotlabs/Module/Connections.php:92 #: ../../Zotlabs/Module/Connections.php:107 ../../include/widgets.php:497 msgid "All" msgstr "Tous" -#: ../../Zotlabs/Module/Connedit.php:685 +#: ../../Zotlabs/Module/Connedit.php:654 msgid "Approve this connection" msgstr "Autoriser ce contact" -#: ../../Zotlabs/Module/Connedit.php:685 +#: ../../Zotlabs/Module/Connedit.php:654 msgid "Accept connection to allow communication" msgstr "Accepter le contact pour permettre la communication" -#: ../../Zotlabs/Module/Connedit.php:690 +#: ../../Zotlabs/Module/Connedit.php:659 msgid "Set Affinity" msgstr "Définir le degré d'affinité" -#: ../../Zotlabs/Module/Connedit.php:693 +#: ../../Zotlabs/Module/Connedit.php:662 msgid "Set Profile" msgstr "Définir le profil" -#: ../../Zotlabs/Module/Connedit.php:696 +#: ../../Zotlabs/Module/Connedit.php:665 msgid "Set Affinity & Profile" msgstr "Définir le degré d'affinité et le profil" -#: ../../Zotlabs/Module/Connedit.php:745 +#: ../../Zotlabs/Module/Connedit.php:698 msgid "none" msgstr "Aucun" -#: ../../Zotlabs/Module/Connedit.php:749 ../../include/widgets.php:623 +#: ../../Zotlabs/Module/Connedit.php:702 ../../include/widgets.php:614 msgid "Connection Default Permissions" msgstr "Autorisations par défaut des contacts" -#: ../../Zotlabs/Module/Connedit.php:749 ../../include/items.php:3935 +#: ../../Zotlabs/Module/Connedit.php:702 ../../include/items.php:3926 #, php-format msgid "Connection: %s" msgstr "Contact : %s" -#: ../../Zotlabs/Module/Connedit.php:750 +#: ../../Zotlabs/Module/Connedit.php:703 msgid "Apply these permissions automatically" msgstr "Appliquer ces permissions automatiquement" -#: ../../Zotlabs/Module/Connedit.php:750 +#: ../../Zotlabs/Module/Connedit.php:703 msgid "Connection requests will be approved without your interaction" msgstr "Les demandes de contact seront approuvées automatiquement" -#: ../../Zotlabs/Module/Connedit.php:752 +#: ../../Zotlabs/Module/Connedit.php:705 msgid "This connection's primary address is" msgstr "L'adresse principale de ce contact est" -#: ../../Zotlabs/Module/Connedit.php:753 +#: ../../Zotlabs/Module/Connedit.php:706 msgid "Available locations:" msgstr "Emplacements disponibles :" -#: ../../Zotlabs/Module/Connedit.php:757 +#: ../../Zotlabs/Module/Connedit.php:710 msgid "" "The permissions indicated on this page will be applied to all new " "connections." msgstr "Les permissions indiquées sur cette page seront appliquées à tous vos nouveaux contacts." -#: ../../Zotlabs/Module/Connedit.php:758 +#: ../../Zotlabs/Module/Connedit.php:711 msgid "Connection Tools" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:760 +#: ../../Zotlabs/Module/Connedit.php:713 msgid "Slide to adjust your degree of friendship" msgstr "Faites glisser pour ajuster votre proximité avec le contact" -#: ../../Zotlabs/Module/Connedit.php:761 ../../Zotlabs/Module/Rate.php:159 +#: ../../Zotlabs/Module/Connedit.php:714 ../../Zotlabs/Module/Rate.php:159 #: ../../include/js_strings.php:20 msgid "Rating" msgstr "Evaluation" -#: ../../Zotlabs/Module/Connedit.php:762 +#: ../../Zotlabs/Module/Connedit.php:715 msgid "Slide to adjust your rating" msgstr "Faîtes glisser pour ajuster votre note" -#: ../../Zotlabs/Module/Connedit.php:763 ../../Zotlabs/Module/Connedit.php:768 +#: ../../Zotlabs/Module/Connedit.php:716 ../../Zotlabs/Module/Connedit.php:721 msgid "Optionally explain your rating" msgstr "Explication facultative de votre évaluation" -#: ../../Zotlabs/Module/Connedit.php:765 +#: ../../Zotlabs/Module/Connedit.php:718 msgid "Custom Filter" msgstr "Filtre personnalisé" -#: ../../Zotlabs/Module/Connedit.php:766 +#: ../../Zotlabs/Module/Connedit.php:719 msgid "Only import posts with this text" msgstr "N'importer que les publications comprenant ce texte" -#: ../../Zotlabs/Module/Connedit.php:766 ../../Zotlabs/Module/Connedit.php:767 +#: ../../Zotlabs/Module/Connedit.php:719 ../../Zotlabs/Module/Connedit.php:720 msgid "" "words one per line or #tags or /patterns/ or lang=xx, leave blank to import " "all posts" msgstr "un mot par ligne ou #étiquettes ou /motif/ ou lang=xx, laisser vide pour importer toutes les publications" -#: ../../Zotlabs/Module/Connedit.php:767 +#: ../../Zotlabs/Module/Connedit.php:720 msgid "Do not import posts with this text" msgstr "Ne pas importer les publications comprenant ce texte" -#: ../../Zotlabs/Module/Connedit.php:769 +#: ../../Zotlabs/Module/Connedit.php:722 msgid "This information is public!" msgstr "Cette information est publique !" -#: ../../Zotlabs/Module/Connedit.php:774 +#: ../../Zotlabs/Module/Connedit.php:727 msgid "Connection Pending Approval" msgstr "Contact en attente d'approbation" -#: ../../Zotlabs/Module/Connedit.php:777 +#: ../../Zotlabs/Module/Connedit.php:730 msgid "inherited" msgstr "héritée" -#: ../../Zotlabs/Module/Connedit.php:778 ../../Zotlabs/Module/Connect.php:98 -#: ../../Zotlabs/Module/Events.php:474 ../../Zotlabs/Module/Cal.php:338 -#: ../../Zotlabs/Module/Chat.php:196 ../../Zotlabs/Module/Chat.php:238 -#: ../../Zotlabs/Module/Group.php:85 ../../Zotlabs/Module/Appman.php:126 -#: ../../Zotlabs/Module/Pdledit.php:66 -#: ../../Zotlabs/Module/Filestorage.php:161 -#: ../../Zotlabs/Module/Profiles.php:687 ../../Zotlabs/Module/Import.php:560 -#: ../../Zotlabs/Module/Photos.php:675 ../../Zotlabs/Module/Photos.php:1050 -#: ../../Zotlabs/Module/Photos.php:1090 ../../Zotlabs/Module/Photos.php:1208 -#: ../../Zotlabs/Module/Import_items.php:122 -#: ../../Zotlabs/Module/Invite.php:146 ../../Zotlabs/Module/Locs.php:121 -#: ../../Zotlabs/Module/Mail.php:370 ../../Zotlabs/Module/Mood.php:139 -#: ../../Zotlabs/Module/Mitem.php:235 ../../Zotlabs/Module/Admin.php:492 -#: ../../Zotlabs/Module/Admin.php:688 ../../Zotlabs/Module/Admin.php:771 -#: ../../Zotlabs/Module/Admin.php:1032 ../../Zotlabs/Module/Admin.php:1211 -#: ../../Zotlabs/Module/Admin.php:1421 ../../Zotlabs/Module/Admin.php:1648 -#: ../../Zotlabs/Module/Admin.php:1733 ../../Zotlabs/Module/Admin.php:2116 -#: ../../Zotlabs/Module/Poke.php:186 ../../Zotlabs/Module/Pconfig.php:107 -#: ../../Zotlabs/Module/Rate.php:170 ../../Zotlabs/Module/Settings.php:644 -#: ../../Zotlabs/Module/Settings.php:757 ../../Zotlabs/Module/Settings.php:806 -#: ../../Zotlabs/Module/Settings.php:832 ../../Zotlabs/Module/Settings.php:855 -#: ../../Zotlabs/Module/Settings.php:943 -#: ../../Zotlabs/Module/Settings.php:1129 ../../Zotlabs/Module/Setup.php:312 -#: ../../Zotlabs/Module/Setup.php:353 ../../Zotlabs/Module/Thing.php:316 -#: ../../Zotlabs/Module/Thing.php:362 ../../Zotlabs/Module/Sources.php:114 -#: ../../Zotlabs/Module/Sources.php:149 ../../Zotlabs/Module/Xchan.php:15 -#: ../../Zotlabs/Lib/ThreadItem.php:710 ../../include/widgets.php:763 -#: ../../include/js_strings.php:22 ../../view/theme/redbasic/php/config.php:99 -msgid "Submit" -msgstr "Envoyer" - -#: ../../Zotlabs/Module/Connedit.php:779 +#: ../../Zotlabs/Module/Connedit.php:732 #, php-format msgid "" "Please choose the profile you would like to display to %s when viewing your " "profile securely." msgstr "Merci de choisir le profil que vous souhaitez montrer quand %s visite votre profil de manière authentifiée." -#: ../../Zotlabs/Module/Connedit.php:781 +#: ../../Zotlabs/Module/Connedit.php:734 msgid "Their Settings" msgstr "Leurs paramètres" -#: ../../Zotlabs/Module/Connedit.php:782 +#: ../../Zotlabs/Module/Connedit.php:735 msgid "My Settings" msgstr "Mes paramètres" -#: ../../Zotlabs/Module/Connedit.php:784 +#: ../../Zotlabs/Module/Connedit.php:737 msgid "Individual Permissions" msgstr "Permissions individuelles" -#: ../../Zotlabs/Module/Connedit.php:785 +#: ../../Zotlabs/Module/Connedit.php:738 msgid "" "Some permissions may be inherited from your channel's privacy settings, which have higher " @@ -774,7 +879,7 @@ msgid "" " settings here." msgstr "Certaines permissions peuvent être héritées de vos paramètres de confidentialité de canal, lesquels sont prioritaires sur les réglages individuels. Vous pouvez modifier ces permissions ici mais cela n'aura aucun effet à moins de changer les paramètres hérités." -#: ../../Zotlabs/Module/Connedit.php:786 +#: ../../Zotlabs/Module/Connedit.php:739 msgid "" "Some permissions may be inherited from your channel's privacy settings, which have higher " @@ -782,121 +887,17 @@ msgid "" "they wont have any impact unless the inherited setting changes." msgstr "Certaines permissions peuvent être héritées de vos paramètres de confidentialité de canal, lesquels sont prioritaires sur les réglages individuels. Vous pouvez modifier ces permissions ici mais cela n'aura aucun effet à moins de changer les paramètres hérités." -#: ../../Zotlabs/Module/Connedit.php:787 +#: ../../Zotlabs/Module/Connedit.php:740 msgid "Last update:" msgstr "Dernière mise à jour :" -#: ../../Zotlabs/Module/Display.php:17 ../../Zotlabs/Module/Directory.php:63 -#: ../../Zotlabs/Module/Photos.php:520 ../../Zotlabs/Module/Ratings.php:86 +#: ../../Zotlabs/Module/Directory.php:63 ../../Zotlabs/Module/Display.php:17 +#: ../../Zotlabs/Module/Photos.php:522 ../../Zotlabs/Module/Ratings.php:86 #: ../../Zotlabs/Module/Search.php:17 -#: ../../Zotlabs/Module/Viewconnections.php:23 +#: ../../Zotlabs/Module/Viewconnections.php:20 msgid "Public access denied." msgstr "Accès public refusé." -#: ../../Zotlabs/Module/Display.php:40 ../../Zotlabs/Module/Filestorage.php:32 -#: ../../Zotlabs/Module/Admin.php:164 ../../Zotlabs/Module/Admin.php:1255 -#: ../../Zotlabs/Module/Admin.php:1561 ../../Zotlabs/Module/Thing.php:89 -#: ../../Zotlabs/Module/Viewsrc.php:24 ../../include/items.php:3369 -msgid "Item not found." -msgstr "Élément introuvable" - -#: ../../Zotlabs/Module/Id.php:13 -msgid "First Name" -msgstr "Prénom" - -#: ../../Zotlabs/Module/Id.php:14 -msgid "Last Name" -msgstr "Nom de famille" - -#: ../../Zotlabs/Module/Id.php:15 -msgid "Nickname" -msgstr "Surnom" - -#: ../../Zotlabs/Module/Id.php:16 -msgid "Full Name" -msgstr "Nom complet" - -#: ../../Zotlabs/Module/Id.php:17 ../../Zotlabs/Module/Id.php:18 -#: ../../Zotlabs/Module/Admin.php:1035 ../../Zotlabs/Module/Admin.php:1047 -#: ../../include/network.php:2203 -msgid "Email" -msgstr "Courriel" - -#: ../../Zotlabs/Module/Id.php:19 ../../Zotlabs/Module/Id.php:20 -#: ../../Zotlabs/Module/Id.php:21 ../../Zotlabs/Lib/Apps.php:238 -msgid "Profile Photo" -msgstr "Photo du Profil" - -#: ../../Zotlabs/Module/Id.php:22 -msgid "Profile Photo 16px" -msgstr "Photo de profil 16px" - -#: ../../Zotlabs/Module/Id.php:23 -msgid "Profile Photo 32px" -msgstr "Photo de profil 32px" - -#: ../../Zotlabs/Module/Id.php:24 -msgid "Profile Photo 48px" -msgstr "Photo de profil 48px" - -#: ../../Zotlabs/Module/Id.php:25 -msgid "Profile Photo 64px" -msgstr "Photo de profil 64px" - -#: ../../Zotlabs/Module/Id.php:26 -msgid "Profile Photo 80px" -msgstr "Photo de profil 80px" - -#: ../../Zotlabs/Module/Id.php:27 -msgid "Profile Photo 128px" -msgstr "Photo de profil 128px" - -#: ../../Zotlabs/Module/Id.php:28 -msgid "Timezone" -msgstr "Fuseau horaire" - -#: ../../Zotlabs/Module/Id.php:29 ../../Zotlabs/Module/Profiles.php:731 -msgid "Homepage URL" -msgstr "URL de mon site Internet :" - -#: ../../Zotlabs/Module/Id.php:30 ../../Zotlabs/Lib/Apps.php:236 -msgid "Language" -msgstr "Langue" - -#: ../../Zotlabs/Module/Id.php:31 -msgid "Birth Year" -msgstr "Année de naissance" - -#: ../../Zotlabs/Module/Id.php:32 -msgid "Birth Month" -msgstr "Mois de naissance" - -#: ../../Zotlabs/Module/Id.php:33 -msgid "Birth Day" -msgstr "Jour de naissance" - -#: ../../Zotlabs/Module/Id.php:34 -msgid "Birthdate" -msgstr "Date de naissance" - -#: ../../Zotlabs/Module/Id.php:35 ../../Zotlabs/Module/Profiles.php:454 -msgid "Gender" -msgstr "Sexe" - -#: ../../Zotlabs/Module/Id.php:108 ../../include/selectors.php:49 -#: ../../include/selectors.php:66 -msgid "Male" -msgstr "Homme" - -#: ../../Zotlabs/Module/Id.php:110 ../../include/selectors.php:49 -#: ../../include/selectors.php:66 -msgid "Female" -msgstr "Femme" - -#: ../../Zotlabs/Module/Follow.php:34 -msgid "Channel added." -msgstr "Canal ajouté." - #: ../../Zotlabs/Module/Directory.php:243 #, php-format msgid "%d rating" @@ -916,12 +917,12 @@ msgstr "État :" msgid "Homepage: " msgstr "Site web :" -#: ../../Zotlabs/Module/Directory.php:306 ../../include/channel.php:1223 +#: ../../Zotlabs/Module/Directory.php:306 ../../include/channel.php:1183 msgid "Age:" msgstr "Age :" -#: ../../Zotlabs/Module/Directory.php:311 ../../include/channel.php:1066 -#: ../../include/event.php:52 ../../include/event.php:84 +#: ../../Zotlabs/Module/Directory.php:311 ../../include/event.php:52 +#: ../../include/event.php:84 ../../include/channel.php:1027 #: ../../include/bb2diaspora.php:507 msgid "Location:" msgstr "Emplacement :" @@ -930,18 +931,18 @@ msgstr "Emplacement :" msgid "Description:" msgstr "Description :" -#: ../../Zotlabs/Module/Directory.php:322 ../../include/channel.php:1239 +#: ../../Zotlabs/Module/Directory.php:322 ../../include/channel.php:1199 msgid "Hometown:" msgstr "Ville natale :" -#: ../../Zotlabs/Module/Directory.php:324 ../../include/channel.php:1247 +#: ../../Zotlabs/Module/Directory.php:324 ../../include/channel.php:1207 msgid "About:" msgstr "À propos :" #: ../../Zotlabs/Module/Directory.php:325 ../../Zotlabs/Module/Match.php:68 -#: ../../Zotlabs/Module/Suggest.php:56 ../../include/channel.php:1051 -#: ../../include/connections.php:78 ../../include/conversation.php:959 -#: ../../include/widgets.php:147 ../../include/widgets.php:184 +#: ../../Zotlabs/Module/Suggest.php:56 ../../include/widgets.php:147 +#: ../../include/widgets.php:184 ../../include/connections.php:78 +#: ../../include/conversation.php:956 ../../include/channel.php:1012 msgid "Connect" msgstr "Ajouter/Suivre" @@ -1017,322 +1018,38 @@ msgstr "Du moins récent du plus récent" msgid "No entries (some entries may be hidden)." msgstr "Pas d'entrées (certaines peuvent être cachées)." -#: ../../Zotlabs/Module/Connect.php:61 ../../Zotlabs/Module/Connect.php:109 -msgid "Continue" -msgstr "Continuer" +#: ../../Zotlabs/Module/Display.php:40 ../../Zotlabs/Module/Filestorage.php:33 +#: ../../Zotlabs/Module/Admin.php:164 ../../Zotlabs/Module/Admin.php:1255 +#: ../../Zotlabs/Module/Admin.php:1561 ../../Zotlabs/Module/Thing.php:89 +#: ../../Zotlabs/Module/Viewsrc.php:24 ../../include/items.php:3359 +msgid "Item not found." +msgstr "Élément introuvable" -#: ../../Zotlabs/Module/Connect.php:90 -msgid "Premium Channel Setup" -msgstr "Configuration du canal VIP" - -#: ../../Zotlabs/Module/Connect.php:92 -msgid "Enable premium channel connection restrictions" -msgstr "Activer les restrictions liées au canal VIP" - -#: ../../Zotlabs/Module/Connect.php:93 -msgid "" -"Please enter your restrictions or conditions, such as paypal receipt, usage " -"guidelines, etc." -msgstr "Merci de saisir les restrictions et/ou conditions - reçu Paypal, transaction Bitcoin, ligne de conduite, ..." - -#: ../../Zotlabs/Module/Connect.php:95 ../../Zotlabs/Module/Connect.php:115 -msgid "" -"This channel may require additional steps or acknowledgement of the " -"following conditions prior to connecting:" -msgstr "Avant d'autoriser la mise en relation, ce canal attire votre attention sur les conditions suivantes :" - -#: ../../Zotlabs/Module/Connect.php:96 -msgid "" -"Potential connections will then see the following text before proceeding:" -msgstr "Les contacts potentiels verront ce qui suit avant de pouvoir continuer :" - -#: ../../Zotlabs/Module/Connect.php:97 ../../Zotlabs/Module/Connect.php:118 -msgid "" -"By continuing, I certify that I have complied with any instructions provided" -" on this page." -msgstr "En continuant, je certifie que je me suis conformé à toutes les instructions indiquées sur cette page." - -#: ../../Zotlabs/Module/Connect.php:106 -msgid "(No specific instructions have been provided by the channel owner.)" -msgstr "(Aucune instruction spécifique n'a été fournie par le propriétaire du canal.)" - -#: ../../Zotlabs/Module/Connect.php:114 -msgid "Restricted or Premium Channel" -msgstr "Canal VIP ou restreint" - -#: ../../Zotlabs/Module/Events.php:25 -msgid "Calendar entries imported." -msgstr "Entrées du calendrier importées." - -#: ../../Zotlabs/Module/Events.php:27 -msgid "No calendar entries found." -msgstr "Aucune entrée du calendrier trouvée." - -#: ../../Zotlabs/Module/Events.php:104 -msgid "Event can not end before it has started." -msgstr "La fin de l'événement ne peut être antérieure à son début." - -#: ../../Zotlabs/Module/Events.php:106 ../../Zotlabs/Module/Events.php:115 -#: ../../Zotlabs/Module/Events.php:135 -msgid "Unable to generate preview." -msgstr "Impossible de générer l'aperçu." - -#: ../../Zotlabs/Module/Events.php:113 -msgid "Event title and start time are required." -msgstr "Un titre et une date de début sont requises pour l'événement." - -#: ../../Zotlabs/Module/Events.php:133 ../../Zotlabs/Module/Events.php:258 -msgid "Event not found." -msgstr "Événement introuvable." - -#: ../../Zotlabs/Module/Events.php:253 ../../Zotlabs/Module/Like.php:372 -#: ../../Zotlabs/Module/Tagger.php:51 ../../include/conversation.php:123 -#: ../../include/text.php:1924 ../../include/event.php:951 -msgid "event" -msgstr "événement" - -#: ../../Zotlabs/Module/Events.php:448 -msgid "Edit event title" -msgstr "Modifier le titre de l'événement" - -#: ../../Zotlabs/Module/Events.php:448 -msgid "Event title" -msgstr "Titre de l'événement" - -#: ../../Zotlabs/Module/Events.php:448 ../../Zotlabs/Module/Events.php:453 -#: ../../Zotlabs/Module/Appman.php:115 ../../Zotlabs/Module/Appman.php:116 -#: ../../Zotlabs/Module/Profiles.php:709 ../../Zotlabs/Module/Profiles.php:713 -#: ../../include/datetime.php:245 -msgid "Required" -msgstr "Requis" - -#: ../../Zotlabs/Module/Events.php:450 -msgid "Categories (comma-separated list)" -msgstr "Catégories (séparées par des virgules)" - -#: ../../Zotlabs/Module/Events.php:451 -msgid "Edit Category" -msgstr "Modifier la catégorie" - -#: ../../Zotlabs/Module/Events.php:451 -msgid "Category" -msgstr "Catégorie" - -#: ../../Zotlabs/Module/Events.php:454 -msgid "Edit start date and time" -msgstr "Modifier la date et l'heure de début" - -#: ../../Zotlabs/Module/Events.php:454 -msgid "Start date and time" -msgstr "Date et heure de début" - -#: ../../Zotlabs/Module/Events.php:455 ../../Zotlabs/Module/Events.php:458 -msgid "Finish date and time are not known or not relevant" -msgstr "Date et heure de fin inconnues ou sans objet" - -#: ../../Zotlabs/Module/Events.php:457 -msgid "Edit finish date and time" -msgstr "Modifier la date et l'heure de fin" - -#: ../../Zotlabs/Module/Events.php:457 -msgid "Finish date and time" -msgstr "Date et heure de fin" - -#: ../../Zotlabs/Module/Events.php:459 ../../Zotlabs/Module/Events.php:460 -msgid "Adjust for viewer timezone" -msgstr "Ajuster au fuseau horaire du visiteur" - -#: ../../Zotlabs/Module/Events.php:459 -msgid "" -"Important for events that happen in a particular place. Not practical for " -"global holidays." -msgstr "Important pour les événements se tenant en un lieu particulier. Pas pratique pour les vacances communes à de nombreux pays dans le monde." - -#: ../../Zotlabs/Module/Events.php:461 -msgid "Edit Description" -msgstr "Modifier la description" - -#: ../../Zotlabs/Module/Events.php:461 ../../Zotlabs/Module/Appman.php:117 -#: ../../Zotlabs/Module/Rbmark.php:101 -msgid "Description" -msgstr "Description" - -#: ../../Zotlabs/Module/Events.php:463 -msgid "Edit Location" -msgstr "Modifier l'emplacement" - -#: ../../Zotlabs/Module/Events.php:463 ../../Zotlabs/Module/Profiles.php:477 -#: ../../Zotlabs/Module/Profiles.php:698 ../../Zotlabs/Module/Locs.php:117 -#: ../../Zotlabs/Module/Pubsites.php:41 ../../include/js_strings.php:25 -msgid "Location" -msgstr "Emplacement" - -#: ../../Zotlabs/Module/Events.php:466 ../../Zotlabs/Module/Events.php:468 -msgid "Share this event" -msgstr "Partager cet événement" - -#: ../../Zotlabs/Module/Events.php:469 ../../Zotlabs/Module/Photos.php:1091 -#: ../../Zotlabs/Module/Webpages.php:201 ../../Zotlabs/Lib/ThreadItem.php:719 -#: ../../include/page_widgets.php:43 ../../include/conversation.php:1198 -msgid "Preview" -msgstr "Aperçu" - -#: ../../Zotlabs/Module/Events.php:470 ../../include/conversation.php:1247 -msgid "Permission settings" -msgstr "Gérer les autorisations" - -#: ../../Zotlabs/Module/Events.php:475 -msgid "Advanced Options" -msgstr "Options avancées" - -#: ../../Zotlabs/Module/Events.php:587 ../../Zotlabs/Module/Cal.php:259 -msgid "l, F j" -msgstr "l, F j" - -#: ../../Zotlabs/Module/Events.php:609 -msgid "Edit event" -msgstr "Modifier l'événement" - -#: ../../Zotlabs/Module/Events.php:611 -msgid "Delete event" -msgstr "Supprimer l'événement" - -#: ../../Zotlabs/Module/Events.php:636 ../../Zotlabs/Module/Cal.php:308 -#: ../../include/text.php:1712 -msgid "Link to Source" -msgstr "Lien vers la Source" - -#: ../../Zotlabs/Module/Events.php:645 -msgid "calendar" -msgstr "calendrier" - -#: ../../Zotlabs/Module/Events.php:664 ../../Zotlabs/Module/Cal.php:331 -msgid "Edit Event" -msgstr "Modifier l'événement" - -#: ../../Zotlabs/Module/Events.php:664 ../../Zotlabs/Module/Cal.php:331 -msgid "Create Event" -msgstr "Créer un événement" - -#: ../../Zotlabs/Module/Events.php:665 ../../Zotlabs/Module/Events.php:674 -#: ../../Zotlabs/Module/Cal.php:332 ../../Zotlabs/Module/Cal.php:339 -#: ../../Zotlabs/Module/Photos.php:947 -msgid "Previous" -msgstr "Précédent" - -#: ../../Zotlabs/Module/Events.php:666 ../../Zotlabs/Module/Events.php:675 -#: ../../Zotlabs/Module/Cal.php:333 ../../Zotlabs/Module/Cal.php:340 -#: ../../Zotlabs/Module/Photos.php:956 ../../Zotlabs/Module/Setup.php:267 -msgid "Next" -msgstr "Suivant" - -#: ../../Zotlabs/Module/Events.php:667 ../../Zotlabs/Module/Cal.php:334 -msgid "Export" -msgstr "Export" - -#: ../../Zotlabs/Module/Events.php:670 ../../Zotlabs/Module/Layouts.php:197 -#: ../../Zotlabs/Module/Pubsites.php:47 ../../Zotlabs/Module/Blocks.php:166 -#: ../../Zotlabs/Module/Webpages.php:200 ../../include/page_widgets.php:42 -msgid "View" -msgstr "Voir" - -#: ../../Zotlabs/Module/Events.php:671 -msgid "Month" -msgstr "" - -#: ../../Zotlabs/Module/Events.php:672 -msgid "Week" -msgstr "" - -#: ../../Zotlabs/Module/Events.php:673 -msgid "Day" -msgstr "" - -#: ../../Zotlabs/Module/Events.php:676 ../../Zotlabs/Module/Cal.php:341 -msgid "Today" -msgstr "Aujourd'hui" - -#: ../../Zotlabs/Module/Events.php:707 -msgid "Event removed" -msgstr "Événement supprimé" - -#: ../../Zotlabs/Module/Events.php:710 -msgid "Failed to remove event" -msgstr "Impossible de supprimer l'événement" - -#: ../../Zotlabs/Module/Bookmarks.php:53 -msgid "Bookmark added" -msgstr "Favori ajouté" - -#: ../../Zotlabs/Module/Bookmarks.php:75 -msgid "My Bookmarks" -msgstr "Mes Favoris" - -#: ../../Zotlabs/Module/Bookmarks.php:86 -msgid "My Connections Bookmarks" -msgstr "Favoris de mes contacts" - -#: ../../Zotlabs/Module/Editpost.php:24 ../../Zotlabs/Module/Editlayout.php:79 -#: ../../Zotlabs/Module/Editwebpage.php:80 #: ../../Zotlabs/Module/Editblock.php:79 ../../Zotlabs/Module/Editblock.php:95 +#: ../../Zotlabs/Module/Editpost.php:24 ../../Zotlabs/Module/Editlayout.php:79 +#: ../../Zotlabs/Module/Editwebpage.php:81 msgid "Item not found" msgstr "Élément introuvable" -#: ../../Zotlabs/Module/Editpost.php:35 -msgid "Item is not editable" -msgstr "Elément non modifiable" +#: ../../Zotlabs/Module/Editblock.php:124 ../../include/conversation.php:1228 +msgid "Title (optional)" +msgstr "Titre (facultatif)" -#: ../../Zotlabs/Module/Editpost.php:106 ../../Zotlabs/Module/Rpost.php:134 -msgid "Edit post" -msgstr "Modifier la publication" +#: ../../Zotlabs/Module/Editblock.php:133 +msgid "Edit Block" +msgstr "Modifier le bloc" -#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:222 -#: ../../include/nav.php:92 ../../include/conversation.php:1647 -msgid "Photos" -msgstr "Photos" +#: ../../Zotlabs/Module/Common.php:14 +msgid "No channel." +msgstr "Pas de canal." -#: ../../Zotlabs/Module/Fbrowser.php:66 ../../Zotlabs/Module/Fbrowser.php:88 -#: ../../Zotlabs/Module/Admin.php:1406 ../../Zotlabs/Module/Settings.php:645 -#: ../../Zotlabs/Module/Settings.php:671 ../../Zotlabs/Module/Tagrm.php:15 -#: ../../Zotlabs/Module/Tagrm.php:138 ../../Zotlabs/Module/Wiki.php:166 -#: ../../Zotlabs/Module/Wiki.php:202 ../../include/conversation.php:1235 -#: ../../include/conversation.php:1274 -msgid "Cancel" -msgstr "Annuler" +#: ../../Zotlabs/Module/Common.php:43 +msgid "Common connections" +msgstr "Contacts en commun" -#: ../../Zotlabs/Module/Page.php:40 ../../Zotlabs/Module/Block.php:31 -msgid "Invalid item." -msgstr "Élément invalide." - -#: ../../Zotlabs/Module/Page.php:56 ../../Zotlabs/Module/Cal.php:62 -#: ../../Zotlabs/Module/Block.php:43 ../../Zotlabs/Module/Wall_upload.php:33 -msgid "Channel not found." -msgstr "Canal introuvable." - -#: ../../Zotlabs/Module/Page.php:131 -msgid "" -"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod " -"tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam," -" quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo " -"consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse " -"cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat " -"non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." -msgstr "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." - -#: ../../Zotlabs/Module/Filer.php:52 -msgid "Save to Folder:" -msgstr "Classer dans le dossier :" - -#: ../../Zotlabs/Module/Filer.php:52 -msgid "- select -" -msgstr "- choisir -" - -#: ../../Zotlabs/Module/Filer.php:53 ../../Zotlabs/Module/Admin.php:2033 -#: ../../Zotlabs/Module/Admin.php:2053 ../../Zotlabs/Module/Rbmark.php:32 -#: ../../Zotlabs/Module/Rbmark.php:104 ../../include/text.php:926 -#: ../../include/text.php:938 ../../include/widgets.php:201 -msgid "Save" -msgstr "Enregistrer" +#: ../../Zotlabs/Module/Common.php:48 +msgid "No connections in common." +msgstr "Pas de contacts en commun." #: ../../Zotlabs/Module/Connections.php:56 #: ../../Zotlabs/Module/Connections.php:161 @@ -1360,7 +1077,7 @@ msgstr "Archivé" #: ../../Zotlabs/Module/Connections.php:76 #: ../../Zotlabs/Module/Connections.php:86 ../../Zotlabs/Module/Menu.php:116 -#: ../../include/conversation.php:1550 +#: ../../include/conversation.php:1535 msgid "New" msgstr "Nouveautés" @@ -1447,15 +1164,15 @@ msgstr "Ignorer le contact" msgid "Recent activity" msgstr "Activité récente" -#: ../../Zotlabs/Module/Connections.php:302 ../../Zotlabs/Lib/Apps.php:209 -#: ../../include/nav.php:188 ../../include/text.php:855 +#: ../../Zotlabs/Module/Connections.php:302 ../../Zotlabs/Lib/Apps.php:208 +#: ../../include/text.php:875 ../../include/nav.php:186 msgid "Connections" msgstr "Contacts" #: ../../Zotlabs/Module/Connections.php:306 ../../Zotlabs/Module/Search.php:44 -#: ../../Zotlabs/Lib/Apps.php:230 ../../include/nav.php:167 -#: ../../include/text.php:925 ../../include/text.php:937 -#: ../../include/acl_selectors.php:274 +#: ../../Zotlabs/Lib/Apps.php:228 ../../include/text.php:945 +#: ../../include/text.php:957 ../../include/nav.php:165 +#: ../../include/acl_selectors.php:276 msgid "Search" msgstr "Recherche" @@ -1468,7 +1185,7 @@ msgid "Connections search" msgstr "Chercher des contacts" #: ../../Zotlabs/Module/Cover_photo.php:58 -#: ../../Zotlabs/Module/Profile_photo.php:61 +#: ../../Zotlabs/Module/Profile_photo.php:79 msgid "Image uploaded but image cropping failed." msgstr "L'image a été téléversée, mais le recadrage a échoué." @@ -1478,66 +1195,66 @@ msgid "Cover Photos" msgstr "Photos de couverture" #: ../../Zotlabs/Module/Cover_photo.php:154 -#: ../../Zotlabs/Module/Profile_photo.php:135 +#: ../../Zotlabs/Module/Profile_photo.php:133 msgid "Image resize failed." msgstr "Le redimensionnement de l'image a échoué." #: ../../Zotlabs/Module/Cover_photo.php:168 -#: ../../Zotlabs/Module/Profile_photo.php:196 ../../include/photos.php:148 +#: ../../Zotlabs/Module/Profile_photo.php:192 ../../include/photos.php:144 msgid "Unable to process image" msgstr "Impossible de traiter l'image" #: ../../Zotlabs/Module/Cover_photo.php:192 -#: ../../Zotlabs/Module/Profile_photo.php:223 +#: ../../Zotlabs/Module/Profile_photo.php:217 msgid "Image upload failed." msgstr "Le téléversement de l'image a échoué." #: ../../Zotlabs/Module/Cover_photo.php:210 -#: ../../Zotlabs/Module/Profile_photo.php:242 +#: ../../Zotlabs/Module/Profile_photo.php:236 msgid "Unable to process image." msgstr "Impossible de traîter l'image." -#: ../../Zotlabs/Module/Cover_photo.php:233 ../../include/items.php:4283 +#: ../../Zotlabs/Module/Cover_photo.php:233 ../../include/items.php:4270 msgid "female" msgstr "femme" -#: ../../Zotlabs/Module/Cover_photo.php:234 ../../include/items.php:4284 +#: ../../Zotlabs/Module/Cover_photo.php:234 ../../include/items.php:4271 #, php-format msgid "%1$s updated her %2$s" msgstr "%1$s a mis à jour son %2$s" -#: ../../Zotlabs/Module/Cover_photo.php:235 ../../include/items.php:4285 +#: ../../Zotlabs/Module/Cover_photo.php:235 ../../include/items.php:4272 msgid "male" msgstr "homme" -#: ../../Zotlabs/Module/Cover_photo.php:236 ../../include/items.php:4286 +#: ../../Zotlabs/Module/Cover_photo.php:236 ../../include/items.php:4273 #, php-format msgid "%1$s updated his %2$s" msgstr "%1$s a mis à jour son %2$s" -#: ../../Zotlabs/Module/Cover_photo.php:238 ../../include/items.php:4288 +#: ../../Zotlabs/Module/Cover_photo.php:238 ../../include/items.php:4275 #, php-format msgid "%1$s updated their %2$s" msgstr "%1$s a mis a jour sa %2$s" -#: ../../Zotlabs/Module/Cover_photo.php:240 ../../include/channel.php:1726 +#: ../../Zotlabs/Module/Cover_photo.php:240 ../../include/channel.php:1661 msgid "cover photo" msgstr "Photo principale" #: ../../Zotlabs/Module/Cover_photo.php:303 #: ../../Zotlabs/Module/Cover_photo.php:318 -#: ../../Zotlabs/Module/Profile_photo.php:300 -#: ../../Zotlabs/Module/Profile_photo.php:341 +#: ../../Zotlabs/Module/Profile_photo.php:283 +#: ../../Zotlabs/Module/Profile_photo.php:324 msgid "Photo not available." msgstr "Photo inaccessible." #: ../../Zotlabs/Module/Cover_photo.php:354 -#: ../../Zotlabs/Module/Profile_photo.php:387 +#: ../../Zotlabs/Module/Profile_photo.php:365 msgid "Upload File:" msgstr "Téléverser fichier :" #: ../../Zotlabs/Module/Cover_photo.php:355 -#: ../../Zotlabs/Module/Profile_photo.php:388 +#: ../../Zotlabs/Module/Profile_photo.php:366 msgid "Select a profile:" msgstr "Choisir un profil :" @@ -1546,69 +1263,200 @@ msgid "Upload Cover Photo" msgstr "Téléverser une photo de couverture" #: ../../Zotlabs/Module/Cover_photo.php:361 -#: ../../Zotlabs/Module/Profile_photo.php:396 -#: ../../Zotlabs/Module/Settings.php:1080 +#: ../../Zotlabs/Module/Profile_photo.php:374 +#: ../../Zotlabs/Module/Settings.php:985 msgid "or" msgstr "ou" #: ../../Zotlabs/Module/Cover_photo.php:361 -#: ../../Zotlabs/Module/Profile_photo.php:396 +#: ../../Zotlabs/Module/Profile_photo.php:374 msgid "skip this step" msgstr "passer cette étape" #: ../../Zotlabs/Module/Cover_photo.php:361 -#: ../../Zotlabs/Module/Profile_photo.php:396 +#: ../../Zotlabs/Module/Profile_photo.php:374 msgid "select a photo from your photo albums" msgstr "choisir une photo dans vos albums" #: ../../Zotlabs/Module/Cover_photo.php:377 -#: ../../Zotlabs/Module/Profile_photo.php:415 +#: ../../Zotlabs/Module/Profile_photo.php:390 msgid "Crop Image" msgstr "Recadrer l'image" #: ../../Zotlabs/Module/Cover_photo.php:378 -#: ../../Zotlabs/Module/Profile_photo.php:416 +#: ../../Zotlabs/Module/Profile_photo.php:391 msgid "Please adjust the image cropping for optimum viewing." msgstr "Merci d'ajuster le cadre pour une visualisation optimale." #: ../../Zotlabs/Module/Cover_photo.php:380 -#: ../../Zotlabs/Module/Profile_photo.php:418 +#: ../../Zotlabs/Module/Profile_photo.php:393 msgid "Done Editing" msgstr "J'ai terminé" -#: ../../Zotlabs/Module/Impel.php:41 ../../include/bbcode.php:192 -msgid "webpage" -msgstr "pages web" +#: ../../Zotlabs/Module/Editpost.php:35 +msgid "Item is not editable" +msgstr "Elément non modifiable" -#: ../../Zotlabs/Module/Impel.php:46 ../../include/bbcode.php:198 -msgid "block" -msgstr "bloquer" +#: ../../Zotlabs/Module/Editpost.php:106 ../../Zotlabs/Module/Rpost.php:135 +msgid "Edit post" +msgstr "Modifier la publication" -#: ../../Zotlabs/Module/Impel.php:51 ../../include/bbcode.php:195 -msgid "layout" -msgstr "mise en page" +#: ../../Zotlabs/Module/Events.php:26 +msgid "Calendar entries imported." +msgstr "Entrées du calendrier importées." -#: ../../Zotlabs/Module/Impel.php:58 ../../include/bbcode.php:201 -msgid "menu" -msgstr "menu" +#: ../../Zotlabs/Module/Events.php:28 +msgid "No calendar entries found." +msgstr "Aucune entrée du calendrier trouvée." -#: ../../Zotlabs/Module/Impel.php:187 -#, php-format -msgid "%s element installed" -msgstr "Elément %s installé" +#: ../../Zotlabs/Module/Events.php:105 +msgid "Event can not end before it has started." +msgstr "La fin de l'événement ne peut être antérieure à son début." -#: ../../Zotlabs/Module/Impel.php:190 -#, php-format -msgid "%s element installation failed" -msgstr "L'installation de l'élément %s a échoué" +#: ../../Zotlabs/Module/Events.php:107 ../../Zotlabs/Module/Events.php:116 +#: ../../Zotlabs/Module/Events.php:136 +msgid "Unable to generate preview." +msgstr "Impossible de générer l'aperçu." -#: ../../Zotlabs/Module/Cal.php:69 -msgid "Permissions denied." -msgstr "Permissions refusées." +#: ../../Zotlabs/Module/Events.php:114 +msgid "Event title and start time are required." +msgstr "Un titre et une date de début sont requises pour l'événement." -#: ../../Zotlabs/Module/Cal.php:337 -msgid "Import" -msgstr "Import" +#: ../../Zotlabs/Module/Events.php:134 ../../Zotlabs/Module/Events.php:259 +msgid "Event not found." +msgstr "Événement introuvable." + +#: ../../Zotlabs/Module/Events.php:254 ../../Zotlabs/Module/Like.php:373 +#: ../../Zotlabs/Module/Tagger.php:51 ../../include/event.php:949 +#: ../../include/text.php:1943 ../../include/conversation.php:123 +msgid "event" +msgstr "événement" + +#: ../../Zotlabs/Module/Events.php:449 +msgid "Edit event title" +msgstr "Modifier le titre de l'événement" + +#: ../../Zotlabs/Module/Events.php:449 +msgid "Event title" +msgstr "Titre de l'événement" + +#: ../../Zotlabs/Module/Events.php:449 ../../Zotlabs/Module/Events.php:454 +#: ../../Zotlabs/Module/Profiles.php:709 ../../Zotlabs/Module/Profiles.php:713 +#: ../../Zotlabs/Module/Appman.php:115 ../../Zotlabs/Module/Appman.php:116 +#: ../../include/datetime.php:245 +msgid "Required" +msgstr "Requis" + +#: ../../Zotlabs/Module/Events.php:451 +msgid "Categories (comma-separated list)" +msgstr "Catégories (séparées par des virgules)" + +#: ../../Zotlabs/Module/Events.php:452 +msgid "Edit Category" +msgstr "Modifier la catégorie" + +#: ../../Zotlabs/Module/Events.php:452 +msgid "Category" +msgstr "Catégorie" + +#: ../../Zotlabs/Module/Events.php:455 +msgid "Edit start date and time" +msgstr "Modifier la date et l'heure de début" + +#: ../../Zotlabs/Module/Events.php:455 +msgid "Start date and time" +msgstr "Date et heure de début" + +#: ../../Zotlabs/Module/Events.php:456 ../../Zotlabs/Module/Events.php:459 +msgid "Finish date and time are not known or not relevant" +msgstr "Date et heure de fin inconnues ou sans objet" + +#: ../../Zotlabs/Module/Events.php:458 +msgid "Edit finish date and time" +msgstr "Modifier la date et l'heure de fin" + +#: ../../Zotlabs/Module/Events.php:458 +msgid "Finish date and time" +msgstr "Date et heure de fin" + +#: ../../Zotlabs/Module/Events.php:460 ../../Zotlabs/Module/Events.php:461 +msgid "Adjust for viewer timezone" +msgstr "Ajuster au fuseau horaire du visiteur" + +#: ../../Zotlabs/Module/Events.php:460 +msgid "" +"Important for events that happen in a particular place. Not practical for " +"global holidays." +msgstr "Important pour les événements se tenant en un lieu particulier. Pas pratique pour les vacances communes à de nombreux pays dans le monde." + +#: ../../Zotlabs/Module/Events.php:462 +msgid "Edit Description" +msgstr "Modifier la description" + +#: ../../Zotlabs/Module/Events.php:462 ../../Zotlabs/Module/Appman.php:117 +#: ../../Zotlabs/Module/Rbmark.php:101 +msgid "Description" +msgstr "Description" + +#: ../../Zotlabs/Module/Events.php:464 +msgid "Edit Location" +msgstr "Modifier l'emplacement" + +#: ../../Zotlabs/Module/Events.php:464 ../../Zotlabs/Module/Locs.php:117 +#: ../../Zotlabs/Module/Profiles.php:477 ../../Zotlabs/Module/Profiles.php:698 +#: ../../Zotlabs/Module/Pubsites.php:41 ../../include/js_strings.php:25 +msgid "Location" +msgstr "Emplacement" + +#: ../../Zotlabs/Module/Events.php:467 ../../Zotlabs/Module/Events.php:469 +msgid "Share this event" +msgstr "Partager cet événement" + +#: ../../Zotlabs/Module/Events.php:470 ../../Zotlabs/Module/Photos.php:1093 +#: ../../Zotlabs/Module/Webpages.php:194 ../../Zotlabs/Lib/ThreadItem.php:719 +#: ../../include/conversation.php:1187 ../../include/page_widgets.php:40 +msgid "Preview" +msgstr "Aperçu" + +#: ../../Zotlabs/Module/Events.php:471 ../../include/conversation.php:1232 +msgid "Permission settings" +msgstr "Gérer les autorisations" + +#: ../../Zotlabs/Module/Events.php:476 +msgid "Advanced Options" +msgstr "Options avancées" + +#: ../../Zotlabs/Module/Events.php:610 +msgid "Edit event" +msgstr "Modifier l'événement" + +#: ../../Zotlabs/Module/Events.php:612 +msgid "Delete event" +msgstr "Supprimer l'événement" + +#: ../../Zotlabs/Module/Events.php:646 +msgid "calendar" +msgstr "calendrier" + +#: ../../Zotlabs/Module/Events.php:706 +msgid "Event removed" +msgstr "Événement supprimé" + +#: ../../Zotlabs/Module/Events.php:709 +msgid "Failed to remove event" +msgstr "Impossible de supprimer l'événement" + +#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:220 +#: ../../include/nav.php:92 ../../include/conversation.php:1632 +msgid "Photos" +msgstr "Photos" + +#: ../../Zotlabs/Module/Fbrowser.php:66 ../../Zotlabs/Module/Fbrowser.php:88 +#: ../../Zotlabs/Module/Admin.php:1406 ../../Zotlabs/Module/Settings.php:591 +#: ../../Zotlabs/Module/Settings.php:617 ../../Zotlabs/Module/Tagrm.php:15 +#: ../../Zotlabs/Module/Tagrm.php:138 ../../include/conversation.php:1259 +msgid "Cancel" +msgstr "Annuler" #: ../../Zotlabs/Module/Dirsearch.php:25 ../../Zotlabs/Module/Regdir.php:49 msgid "This site is not a directory server" @@ -1618,184 +1466,112 @@ msgstr "Ce site n'est pas un serveur d'annuaire" msgid "This directory server requires an access token" msgstr "Ce serveur d'annuaire requiert un jeton d'accès" -#: ../../Zotlabs/Module/Chat.php:25 ../../Zotlabs/Module/Channel.php:28 -#: ../../Zotlabs/Module/Wiki.php:20 -msgid "You must be logged in to see this page." -msgstr "Vous devez vous connecter pour voir cette page." +#: ../../Zotlabs/Module/Filer.php:52 +msgid "Save to Folder:" +msgstr "Classer dans le dossier :" -#: ../../Zotlabs/Module/Chat.php:181 -msgid "Room not found" -msgstr "Salon introuvable" +#: ../../Zotlabs/Module/Filer.php:52 +msgid "- select -" +msgstr "- choisir -" -#: ../../Zotlabs/Module/Chat.php:197 -msgid "Leave Room" -msgstr "Quitter le salon" +#: ../../Zotlabs/Module/Filer.php:53 ../../Zotlabs/Module/Admin.php:2033 +#: ../../Zotlabs/Module/Admin.php:2053 ../../Zotlabs/Module/Rbmark.php:32 +#: ../../Zotlabs/Module/Rbmark.php:104 ../../include/text.php:946 +#: ../../include/text.php:958 ../../include/widgets.php:201 +msgid "Save" +msgstr "Enregistrer" -#: ../../Zotlabs/Module/Chat.php:198 -msgid "Delete Room" -msgstr "" - -#: ../../Zotlabs/Module/Chat.php:199 -msgid "I am away right now" -msgstr "Je suis absent en ce moment" - -#: ../../Zotlabs/Module/Chat.php:200 -msgid "I am online" -msgstr "Je suis en ligne" - -#: ../../Zotlabs/Module/Chat.php:202 -msgid "Bookmark this room" -msgstr "Marquer ce salon comme favori" - -#: ../../Zotlabs/Module/Chat.php:205 ../../Zotlabs/Module/Mail.php:197 -#: ../../Zotlabs/Module/Mail.php:306 ../../include/conversation.php:1181 -msgid "Please enter a link URL:" -msgstr "Merci d'entrer l'URL d'un lien :" - -#: ../../Zotlabs/Module/Chat.php:206 ../../Zotlabs/Module/Mail.php:250 -#: ../../Zotlabs/Module/Mail.php:375 ../../Zotlabs/Lib/ThreadItem.php:722 -#: ../../include/conversation.php:1271 -msgid "Encrypt text" -msgstr "Chiffrer le texte" - -#: ../../Zotlabs/Module/Chat.php:207 ../../Zotlabs/Module/Editwebpage.php:146 -#: ../../Zotlabs/Module/Mail.php:244 ../../Zotlabs/Module/Mail.php:369 -#: ../../Zotlabs/Module/Editblock.php:111 ../../include/conversation.php:1146 -msgid "Insert web link" -msgstr "Insérer lien web" - -#: ../../Zotlabs/Module/Chat.php:218 -msgid "Feature disabled." -msgstr "" - -#: ../../Zotlabs/Module/Chat.php:232 -msgid "New Chatroom" -msgstr "Nouveau salon de discussion" - -#: ../../Zotlabs/Module/Chat.php:233 -msgid "Chatroom name" -msgstr "" - -#: ../../Zotlabs/Module/Chat.php:234 -msgid "Expiration of chats (minutes)" -msgstr "Expiration des discussions (en minutes)" - -#: ../../Zotlabs/Module/Chat.php:235 ../../Zotlabs/Module/Filestorage.php:152 -#: ../../Zotlabs/Module/Photos.php:669 ../../Zotlabs/Module/Photos.php:1043 -#: ../../Zotlabs/Module/Thing.php:313 ../../Zotlabs/Module/Thing.php:359 -#: ../../include/acl_selectors.php:281 -msgid "Permissions" -msgstr "Autorisations" - -#: ../../Zotlabs/Module/Chat.php:246 -#, php-format -msgid "%1$s's Chatrooms" -msgstr "Salons de %1$s" - -#: ../../Zotlabs/Module/Chat.php:251 -msgid "No chatrooms available" -msgstr "" - -#: ../../Zotlabs/Module/Chat.php:252 ../../Zotlabs/Module/Profiles.php:778 -#: ../../Zotlabs/Module/Manage.php:143 -msgid "Create New" -msgstr "" - -#: ../../Zotlabs/Module/Chat.php:255 -msgid "Expiration" -msgstr "" - -#: ../../Zotlabs/Module/Chat.php:256 -msgid "min" -msgstr "" - -#: ../../Zotlabs/Module/Dreport.php:44 +#: ../../Zotlabs/Module/Dreport.php:27 msgid "Invalid message" msgstr "Message non valide" -#: ../../Zotlabs/Module/Dreport.php:76 +#: ../../Zotlabs/Module/Dreport.php:59 msgid "no results" msgstr "aucun résultat" -#: ../../Zotlabs/Module/Dreport.php:91 -msgid "channel sync processed" -msgstr "Synchro de canal effectuée" - -#: ../../Zotlabs/Module/Dreport.php:95 -msgid "queued" -msgstr "mis dans la file d'attente" - -#: ../../Zotlabs/Module/Dreport.php:99 -msgid "posted" -msgstr "publié" - -#: ../../Zotlabs/Module/Dreport.php:103 -msgid "accepted for delivery" -msgstr "accepté pour la distribution" - -#: ../../Zotlabs/Module/Dreport.php:107 -msgid "updated" -msgstr "mis à jour" - -#: ../../Zotlabs/Module/Dreport.php:110 -msgid "update ignored" -msgstr "mise à jour ignorée" - -#: ../../Zotlabs/Module/Dreport.php:113 -msgid "permission denied" -msgstr "permission refusée" - -#: ../../Zotlabs/Module/Dreport.php:117 -msgid "recipient not found" -msgstr "destinataire introuvable" - -#: ../../Zotlabs/Module/Dreport.php:120 -msgid "mail recalled" -msgstr "courriel rappelé" - -#: ../../Zotlabs/Module/Dreport.php:123 -msgid "duplicate mail received" -msgstr "courriel reçu en double" - -#: ../../Zotlabs/Module/Dreport.php:126 -msgid "mail delivered" -msgstr "courriel distribué" - -#: ../../Zotlabs/Module/Dreport.php:146 +#: ../../Zotlabs/Module/Dreport.php:64 #, php-format msgid "Delivery report for %1$s" msgstr "Rapport de distribution pour %1$s" -#: ../../Zotlabs/Module/Dreport.php:149 -msgid "Options" -msgstr "" +#: ../../Zotlabs/Module/Dreport.php:78 +msgid "channel sync processed" +msgstr "Synchro de canal effectuée" -#: ../../Zotlabs/Module/Dreport.php:150 -msgid "Redeliver" -msgstr "" +#: ../../Zotlabs/Module/Dreport.php:82 +msgid "queued" +msgstr "mis dans la file d'attente" -#: ../../Zotlabs/Module/Editlayout.php:127 -#: ../../Zotlabs/Module/Layouts.php:128 ../../Zotlabs/Module/Layouts.php:188 +#: ../../Zotlabs/Module/Dreport.php:86 +msgid "posted" +msgstr "publié" + +#: ../../Zotlabs/Module/Dreport.php:90 +msgid "accepted for delivery" +msgstr "accepté pour la distribution" + +#: ../../Zotlabs/Module/Dreport.php:94 +msgid "updated" +msgstr "mis à jour" + +#: ../../Zotlabs/Module/Dreport.php:97 +msgid "update ignored" +msgstr "mise à jour ignorée" + +#: ../../Zotlabs/Module/Dreport.php:100 +msgid "permission denied" +msgstr "permission refusée" + +#: ../../Zotlabs/Module/Dreport.php:104 +msgid "recipient not found" +msgstr "destinataire introuvable" + +#: ../../Zotlabs/Module/Dreport.php:107 +msgid "mail recalled" +msgstr "courriel rappelé" + +#: ../../Zotlabs/Module/Dreport.php:110 +msgid "duplicate mail received" +msgstr "courriel reçu en double" + +#: ../../Zotlabs/Module/Dreport.php:113 +msgid "mail delivered" +msgstr "courriel distribué" + +#: ../../Zotlabs/Module/Editlayout.php:126 +#: ../../Zotlabs/Module/Layouts.php:127 ../../Zotlabs/Module/Layouts.php:186 msgid "Layout Name" msgstr "Nom de la mise en page" -#: ../../Zotlabs/Module/Editlayout.php:128 -#: ../../Zotlabs/Module/Layouts.php:131 +#: ../../Zotlabs/Module/Editlayout.php:127 +#: ../../Zotlabs/Module/Layouts.php:130 msgid "Layout Description (Optional)" msgstr "Description de la mise en page (facultatif)" -#: ../../Zotlabs/Module/Editlayout.php:136 +#: ../../Zotlabs/Module/Editlayout.php:135 msgid "Edit Layout" msgstr "Modifier la mise en page" -#: ../../Zotlabs/Module/Editwebpage.php:142 +#: ../../Zotlabs/Module/Editwebpage.php:143 msgid "Page link" msgstr "" -#: ../../Zotlabs/Module/Editwebpage.php:168 +#: ../../Zotlabs/Module/Editwebpage.php:169 msgid "Edit Webpage" msgstr "Modifier la page web" +#: ../../Zotlabs/Module/Follow.php:34 +msgid "Channel added." +msgstr "Canal ajouté." + +#: ../../Zotlabs/Module/Acl.php:227 +msgid "network" +msgstr "réseau" + +#: ../../Zotlabs/Module/Acl.php:237 +msgid "RSS" +msgstr "RSS" + #: ../../Zotlabs/Module/Group.php:24 msgid "Privacy group created." msgstr "Groupe d'accès créé." @@ -1805,7 +1581,7 @@ msgid "Could not create privacy group." msgstr "Impossible de créer le groupe d'accès." #: ../../Zotlabs/Module/Group.php:42 ../../Zotlabs/Module/Group.php:141 -#: ../../include/items.php:3902 +#: ../../include/items.php:3893 msgid "Privacy group not found." msgstr "Groupe d'accès introuvable." @@ -1849,57 +1625,31 @@ msgstr "Tous les canaux connectés" msgid "Click on a channel to add or remove." msgstr "Cliquer sur un canal pour l'ajouter ou le supprimer" -#: ../../Zotlabs/Module/Appman.php:37 ../../Zotlabs/Module/Appman.php:53 -msgid "App installed." -msgstr "Application installée." +#: ../../Zotlabs/Module/Ffsapi.php:12 +msgid "Share content from Firefox to $Projectname" +msgstr "Partager du contenu depuis Firefox avec $Projectname" -#: ../../Zotlabs/Module/Appman.php:46 -msgid "Malformed app." -msgstr "Erreur de l'application - Malformée." +#: ../../Zotlabs/Module/Ffsapi.php:15 +msgid "Activate the Firefox $Projectname provider" +msgstr "Activer le connecteur $Projectname pour Firefox" -#: ../../Zotlabs/Module/Appman.php:104 -msgid "Embed code" -msgstr "Imbriquer le code" +#: ../../Zotlabs/Module/Api.php:61 ../../Zotlabs/Module/Api.php:85 +msgid "Authorize application connection" +msgstr "Autoriser l'application à se connecter" -#: ../../Zotlabs/Module/Appman.php:110 ../../include/widgets.php:107 -msgid "Edit App" -msgstr "Modifier l'application" +#: ../../Zotlabs/Module/Api.php:62 +msgid "Return to your app and insert this Securty Code:" +msgstr "Merci de retourner vers votre application, et d'y insérer ce Code de Sécurité :" -#: ../../Zotlabs/Module/Appman.php:110 -msgid "Create App" -msgstr "Créer une application" +#: ../../Zotlabs/Module/Api.php:72 +msgid "Please login to continue." +msgstr "Merci de vous identifier pour continuer." -#: ../../Zotlabs/Module/Appman.php:115 -msgid "Name of app" -msgstr "Nom de l'application" - -#: ../../Zotlabs/Module/Appman.php:116 -msgid "Location (URL) of app" -msgstr "Emplacement (URL) de l'application" - -#: ../../Zotlabs/Module/Appman.php:118 -msgid "Photo icon URL" -msgstr "URL de l'icône à utiliser pour cette photo" - -#: ../../Zotlabs/Module/Appman.php:118 -msgid "80 x 80 pixels - optional" -msgstr "80 x 80 pixels - facultatif" - -#: ../../Zotlabs/Module/Appman.php:119 -msgid "Categories (optional, comma separated list)" -msgstr "" - -#: ../../Zotlabs/Module/Appman.php:120 -msgid "Version ID" -msgstr "Identifiant de version" - -#: ../../Zotlabs/Module/Appman.php:121 -msgid "Price of app" -msgstr "Prix de l'application" - -#: ../../Zotlabs/Module/Appman.php:122 -msgid "Location (URL) to purchase app" -msgstr "Emplacement (URL) pour l'achat de l'application" +#: ../../Zotlabs/Module/Api.php:87 +msgid "" +"Do you want to authorize this application to access your posts and contacts," +" and/or create new posts for you?" +msgstr "Voulez-vous autoriser cette application à accéder à vos publications et contacts, et/ou à publier en votre nom?" #: ../../Zotlabs/Module/Help.php:26 msgid "Documentation Search" @@ -1911,8 +1661,8 @@ msgid "Help:" msgstr "Aide :" #: ../../Zotlabs/Module/Help.php:85 ../../Zotlabs/Module/Help.php:90 -#: ../../Zotlabs/Module/Layouts.php:185 ../../Zotlabs/Lib/Apps.php:225 -#: ../../include/nav.php:161 +#: ../../Zotlabs/Module/Layouts.php:183 ../../Zotlabs/Lib/Apps.php:223 +#: ../../include/nav.php:159 msgid "Help" msgstr "Aide" @@ -1920,124 +1670,335 @@ msgstr "Aide" msgid "$Projectname Documentation" msgstr "Documentation $Projectname" +#: ../../Zotlabs/Module/Filestorage.php:88 +msgid "Permission Denied." +msgstr "Permission refusée." + +#: ../../Zotlabs/Module/Filestorage.php:104 +msgid "File not found." +msgstr "Fichier introuvable." + +#: ../../Zotlabs/Module/Filestorage.php:147 +msgid "Edit file permissions" +msgstr "Modifier les autorisations d'accès au fichier" + +#: ../../Zotlabs/Module/Filestorage.php:156 +msgid "Set/edit permissions" +msgstr "Définir/modifier les autorisations" + +#: ../../Zotlabs/Module/Filestorage.php:157 +msgid "Include all files and sub folders" +msgstr "Inclure tous fichiers et sous-répertoires" + +#: ../../Zotlabs/Module/Filestorage.php:158 +msgid "Return to file list" +msgstr "Retourner à la liste des fichiers" + +#: ../../Zotlabs/Module/Filestorage.php:160 +msgid "Copy/paste this code to attach file to a post" +msgstr "Copiez/collez ce code pour joindre le fichier à une publication" + +#: ../../Zotlabs/Module/Filestorage.php:161 +msgid "Copy/paste this URL to link file from a web page" +msgstr "Copiez/collez cette URL pour pointer vers ce fichier depuis une page web" + +#: ../../Zotlabs/Module/Filestorage.php:163 +msgid "Share this file" +msgstr "Partager ce fichier" + +#: ../../Zotlabs/Module/Filestorage.php:164 +msgid "Show URL to this file" +msgstr "Montrer l'URL de ce fichier" + +#: ../../Zotlabs/Module/Filestorage.php:165 +msgid "Notify your contacts about this file" +msgstr "Notifier vos contacts à propos de ce fichier" + +#: ../../Zotlabs/Module/Apps.php:47 ../../include/widgets.php:102 +#: ../../include/nav.php:163 +msgid "Apps" +msgstr "Applications" + #: ../../Zotlabs/Module/Attach.php:13 msgid "Item not available." msgstr "Élément indisponible." -#: ../../Zotlabs/Module/Pdledit.php:18 -msgid "Layout updated." -msgstr "Mise en page mise à jour." +#: ../../Zotlabs/Module/Import.php:32 +#, php-format +msgid "Your service plan only allows %d channels." +msgstr "Votre forfait n'autorise que %d canaux." -#: ../../Zotlabs/Module/Pdledit.php:34 ../../Zotlabs/Module/Pdledit.php:61 -msgid "Edit System Page Description" -msgstr "Modifier la description de la page du système" +#: ../../Zotlabs/Module/Import.php:70 ../../Zotlabs/Module/Import_items.php:42 +msgid "Nothing to import." +msgstr "Rien à importer." -#: ../../Zotlabs/Module/Pdledit.php:56 -msgid "Layout not found." -msgstr "Mise en page introuvable." +#: ../../Zotlabs/Module/Import.php:94 ../../Zotlabs/Module/Import_items.php:66 +msgid "Unable to download data from old server" +msgstr "Impossible de récupérer les données de l'ancien serveur" -#: ../../Zotlabs/Module/Pdledit.php:62 -msgid "Module Name:" -msgstr "Nom du module :" +#: ../../Zotlabs/Module/Import.php:100 +#: ../../Zotlabs/Module/Import_items.php:72 +msgid "Imported file is empty." +msgstr "Le fichier importé est vide." -#: ../../Zotlabs/Module/Pdledit.php:63 -msgid "Layout Help" -msgstr "Aide à la mise en page" +#: ../../Zotlabs/Module/Import.php:122 +#: ../../Zotlabs/Module/Import_items.php:86 +#, php-format +msgid "Warning: Database versions differ by %1$d updates." +msgstr "Attention : les versions de bases de données diffèrent de %1$d mises à jour." -#: ../../Zotlabs/Module/Ffsapi.php:12 -msgid "Share content from Firefox to $Projectname" -msgstr "Partager du contenu depuis Firefox avec $Projectname" +#: ../../Zotlabs/Module/Import.php:150 ../../include/import.php:86 +msgid "Cloned channel not found. Import failed." +msgstr "Canal cloné non trouvé. Echec de l'import." -#: ../../Zotlabs/Module/Ffsapi.php:15 -msgid "Activate the Firefox $Projectname provider" -msgstr "Activer le connecteur $Projectname pour Firefox" +#: ../../Zotlabs/Module/Import.php:160 +msgid "No channel. Import failed." +msgstr "Pas de canal. Echec de l'import." -#: ../../Zotlabs/Module/Acl.php:312 -msgid "network" -msgstr "réseau" +#: ../../Zotlabs/Module/Import.php:510 +#: ../../include/Import/import_diaspora.php:142 +msgid "Import completed." +msgstr "L'import est terminé." -#: ../../Zotlabs/Module/Acl.php:322 -msgid "RSS" -msgstr "RSS" +#: ../../Zotlabs/Module/Import.php:532 +msgid "You must be logged in to use this feature." +msgstr "Vous devez vous connecter pour utiliser cette fonctionnalité." -#: ../../Zotlabs/Module/Filestorage.php:87 -msgid "Permission Denied." -msgstr "Permission refusée." +#: ../../Zotlabs/Module/Import.php:537 +msgid "Import Channel" +msgstr "Importation de canal" -#: ../../Zotlabs/Module/Filestorage.php:103 -msgid "File not found." -msgstr "Fichier introuvable." +#: ../../Zotlabs/Module/Import.php:538 +msgid "" +"Use this form to import an existing channel from a different server/hub. You" +" may retrieve the channel identity from the old server/hub via the network " +"or provide an export file." +msgstr "Utilisez ce formulaire pour importer un canal existant sur un autre serveur. Vous pouvez récupérer l'identité du canal sur l'ancien serveur directement par le réseau, ou bien fournir un fichier d'export/import." -#: ../../Zotlabs/Module/Filestorage.php:146 -msgid "Edit file permissions" -msgstr "Modifier les autorisations d'accès au fichier" +#: ../../Zotlabs/Module/Import.php:539 +#: ../../Zotlabs/Module/Import_items.php:119 +msgid "File to Upload" +msgstr "Fichier à envoyer" -#: ../../Zotlabs/Module/Filestorage.php:155 -msgid "Set/edit permissions" -msgstr "Définir/modifier les autorisations" +#: ../../Zotlabs/Module/Import.php:540 +msgid "Or provide the old server/hub details" +msgstr "Ou fournissez les détails de l'ancien serveur/hub" -#: ../../Zotlabs/Module/Filestorage.php:156 -msgid "Include all files and sub folders" -msgstr "Inclure tous fichiers et sous-répertoires" +#: ../../Zotlabs/Module/Import.php:541 +msgid "Your old identity address (xyz@example.com)" +msgstr "Votre ancienne identité (zyx@exemple.com)" -#: ../../Zotlabs/Module/Filestorage.php:157 -msgid "Return to file list" -msgstr "Retourner à la liste des fichiers" +#: ../../Zotlabs/Module/Import.php:542 +msgid "Your old login email address" +msgstr "Votre ancienne adresse de courriel" -#: ../../Zotlabs/Module/Filestorage.php:159 -msgid "Copy/paste this code to attach file to a post" -msgstr "Copiez/collez ce code pour joindre le fichier à une publication" +#: ../../Zotlabs/Module/Import.php:543 +msgid "Your old login password" +msgstr "Votre ancien mot de passe" -#: ../../Zotlabs/Module/Filestorage.php:160 -msgid "Copy/paste this URL to link file from a web page" -msgstr "Copiez/collez cette URL pour pointer vers ce fichier depuis une page web" +#: ../../Zotlabs/Module/Import.php:544 +msgid "" +"For either option, please choose whether to make this hub your new primary " +"address, or whether your old location should continue this role. You will be" +" able to post from either location, but only one can be marked as the " +"primary location for files, photos, and media." +msgstr "Quelle que soit l'option choisie, merci de décider si ce hub sera votre nouvelle adresse primaire, ou si votre ancien hub continuera à jouer ce rôle. Vous pourrez publier depuis l'emplacement de votre choix, mais une seule peut être déclarée comme stockage primaire de vos fichiers/photos/media." -#: ../../Zotlabs/Module/Filestorage.php:162 -msgid "Share this file" -msgstr "Partager ce fichier" +#: ../../Zotlabs/Module/Import.php:545 +msgid "Make this hub my primary location" +msgstr "Faire de ce hub mon emplacement primaire" -#: ../../Zotlabs/Module/Filestorage.php:163 -msgid "Show URL to this file" -msgstr "Montrer l'URL de ce fichier" +#: ../../Zotlabs/Module/Import.php:546 +msgid "" +"Import existing posts if possible (experimental - limited by available " +"memory" +msgstr "Importer les publications existantes si possible (expérimental - limité par la mémoire disponible)" -#: ../../Zotlabs/Module/Filestorage.php:164 -msgid "Notify your contacts about this file" -msgstr "Notifier vos contacts à propos de ce fichier" +#: ../../Zotlabs/Module/Import.php:547 +msgid "" +"This process may take several minutes to complete. Please submit the form " +"only once and leave this page open until finished." +msgstr "Ce processus peut prendre plusieurs minutes. Merci de ne valider le formulaire qu'une seule fois et de laisser cette page ouverte jusqu'à la fin." -#: ../../Zotlabs/Module/Layouts.php:183 ../../include/text.php:2240 +#: ../../Zotlabs/Module/Item.php:178 +msgid "Unable to locate original post." +msgstr "Impossible de localiser la publication initiale." + +#: ../../Zotlabs/Module/Item.php:427 +msgid "Empty post discarded." +msgstr "Publication vide annulée." + +#: ../../Zotlabs/Module/Item.php:467 +msgid "Executable content type not permitted to this channel." +msgstr "Les contenus de type 'exécutable' ne sont pas autorisés sur ce canal." + +#: ../../Zotlabs/Module/Item.php:847 +msgid "Duplicate post suppressed." +msgstr "Publication en doublon supprimée." + +#: ../../Zotlabs/Module/Item.php:977 +msgid "System error. Post not saved." +msgstr "Erreur système. Publication non sauvegardée." + +#: ../../Zotlabs/Module/Item.php:1241 +msgid "Unable to obtain post information from database." +msgstr "Impossible d'obtenir les informations de publication depuis la base de données." + +#: ../../Zotlabs/Module/Item.php:1248 +#, php-format +msgid "You have reached your limit of %1$.0f top level posts." +msgstr "Vous avez atteint votre limite de %1$.0f contributions \"racines\"." + +#: ../../Zotlabs/Module/Item.php:1255 +#, php-format +msgid "You have reached your limit of %1$.0f webpages." +msgstr "Vous avez atteint votre limite de %1$.0f pages web." + +#: ../../Zotlabs/Module/Layouts.php:181 ../../include/text.php:2267 msgid "Layouts" msgstr "Mises-en-page" -#: ../../Zotlabs/Module/Layouts.php:185 +#: ../../Zotlabs/Module/Layouts.php:183 msgid "Comanche page description language help" msgstr "Aide sur le langage de description de page Comanche" -#: ../../Zotlabs/Module/Layouts.php:189 +#: ../../Zotlabs/Module/Layouts.php:187 msgid "Layout Description" msgstr "Description de la mise en page" -#: ../../Zotlabs/Module/Layouts.php:190 ../../Zotlabs/Module/Menu.php:114 -#: ../../Zotlabs/Module/Blocks.php:157 ../../Zotlabs/Module/Webpages.php:205 -#: ../../include/page_widgets.php:47 -msgid "Created" -msgstr "Créé(e)" - -#: ../../Zotlabs/Module/Layouts.php:191 ../../Zotlabs/Module/Menu.php:115 -#: ../../Zotlabs/Module/Blocks.php:158 ../../Zotlabs/Module/Webpages.php:206 -#: ../../include/page_widgets.php:48 -msgid "Edited" -msgstr "Modifié(e)" - -#: ../../Zotlabs/Module/Layouts.php:193 ../../Zotlabs/Module/Photos.php:1070 -#: ../../Zotlabs/Module/Blocks.php:161 ../../Zotlabs/Module/Webpages.php:195 -#: ../../include/conversation.php:1219 -msgid "Share" -msgstr "Partager" - -#: ../../Zotlabs/Module/Layouts.php:194 +#: ../../Zotlabs/Module/Layouts.php:192 msgid "Download PDL file" msgstr "Télécharger le fichier PDL" +#: ../../Zotlabs/Module/Home.php:61 ../../Zotlabs/Module/Home.php:69 +#: ../../Zotlabs/Module/Siteinfo.php:65 +msgid "$Projectname" +msgstr "$Projectname" + +#: ../../Zotlabs/Module/Home.php:79 +#, php-format +msgid "Welcome to %s" +msgstr "Bienvenue sur %s" + +#: ../../Zotlabs/Module/Id.php:13 +msgid "First Name" +msgstr "Prénom" + +#: ../../Zotlabs/Module/Id.php:14 +msgid "Last Name" +msgstr "Nom de famille" + +#: ../../Zotlabs/Module/Id.php:15 +msgid "Nickname" +msgstr "Surnom" + +#: ../../Zotlabs/Module/Id.php:16 +msgid "Full Name" +msgstr "Nom complet" + +#: ../../Zotlabs/Module/Id.php:17 ../../Zotlabs/Module/Id.php:18 +#: ../../Zotlabs/Module/Admin.php:1035 ../../Zotlabs/Module/Admin.php:1047 +#: ../../include/network.php:2151 ../../boot.php:1705 +msgid "Email" +msgstr "Courriel" + +#: ../../Zotlabs/Module/Id.php:19 ../../Zotlabs/Module/Id.php:20 +#: ../../Zotlabs/Module/Id.php:21 ../../Zotlabs/Lib/Apps.php:236 +msgid "Profile Photo" +msgstr "Photo du Profil" + +#: ../../Zotlabs/Module/Id.php:22 +msgid "Profile Photo 16px" +msgstr "Photo de profil 16px" + +#: ../../Zotlabs/Module/Id.php:23 +msgid "Profile Photo 32px" +msgstr "Photo de profil 32px" + +#: ../../Zotlabs/Module/Id.php:24 +msgid "Profile Photo 48px" +msgstr "Photo de profil 48px" + +#: ../../Zotlabs/Module/Id.php:25 +msgid "Profile Photo 64px" +msgstr "Photo de profil 64px" + +#: ../../Zotlabs/Module/Id.php:26 +msgid "Profile Photo 80px" +msgstr "Photo de profil 80px" + +#: ../../Zotlabs/Module/Id.php:27 +msgid "Profile Photo 128px" +msgstr "Photo de profil 128px" + +#: ../../Zotlabs/Module/Id.php:28 +msgid "Timezone" +msgstr "Fuseau horaire" + +#: ../../Zotlabs/Module/Id.php:29 ../../Zotlabs/Module/Profiles.php:731 +msgid "Homepage URL" +msgstr "URL de mon site Internet :" + +#: ../../Zotlabs/Module/Id.php:30 ../../Zotlabs/Lib/Apps.php:234 +msgid "Language" +msgstr "Langue" + +#: ../../Zotlabs/Module/Id.php:31 +msgid "Birth Year" +msgstr "Année de naissance" + +#: ../../Zotlabs/Module/Id.php:32 +msgid "Birth Month" +msgstr "Mois de naissance" + +#: ../../Zotlabs/Module/Id.php:33 +msgid "Birth Day" +msgstr "Jour de naissance" + +#: ../../Zotlabs/Module/Id.php:34 +msgid "Birthdate" +msgstr "Date de naissance" + +#: ../../Zotlabs/Module/Id.php:35 ../../Zotlabs/Module/Profiles.php:454 +msgid "Gender" +msgstr "Sexe" + +#: ../../Zotlabs/Module/Id.php:108 ../../include/selectors.php:49 +#: ../../include/selectors.php:66 +msgid "Male" +msgstr "Homme" + +#: ../../Zotlabs/Module/Id.php:110 ../../include/selectors.php:49 +#: ../../include/selectors.php:66 +msgid "Female" +msgstr "Femme" + +#: ../../Zotlabs/Module/Impel.php:41 ../../include/bbcode.php:192 +msgid "webpage" +msgstr "pages web" + +#: ../../Zotlabs/Module/Impel.php:46 ../../include/bbcode.php:198 +msgid "block" +msgstr "bloquer" + +#: ../../Zotlabs/Module/Impel.php:51 ../../include/bbcode.php:195 +msgid "layout" +msgstr "mise en page" + +#: ../../Zotlabs/Module/Impel.php:58 ../../include/bbcode.php:201 +msgid "menu" +msgstr "menu" + +#: ../../Zotlabs/Module/Impel.php:196 +#, php-format +msgid "%s element installed" +msgstr "Elément %s installé" + +#: ../../Zotlabs/Module/Impel.php:199 +#, php-format +msgid "%s element installation failed" +msgstr "L'installation de l'élément %s a échoué" + #: ../../Zotlabs/Module/Like.php:19 msgid "Like/Dislike" msgstr "Aime/n'aime pas" @@ -2073,65 +2034,1180 @@ msgstr "Canal indisponible." msgid "Previous action reversed." msgstr "Action précédente annulée." -#: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87 -#: ../../Zotlabs/Module/Tagger.php:47 ../../include/conversation.php:120 -#: ../../include/text.php:1921 +#: ../../Zotlabs/Module/Like.php:371 ../../Zotlabs/Module/Subthread.php:87 +#: ../../Zotlabs/Module/Tagger.php:47 ../../include/text.php:1940 +#: ../../include/conversation.php:120 msgid "photo" msgstr "photo" -#: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87 -#: ../../include/conversation.php:148 ../../include/text.php:1927 +#: ../../Zotlabs/Module/Like.php:371 ../../Zotlabs/Module/Subthread.php:87 +#: ../../include/text.php:1946 ../../include/conversation.php:148 msgid "status" msgstr "état" -#: ../../Zotlabs/Module/Like.php:419 ../../include/conversation.php:164 +#: ../../Zotlabs/Module/Like.php:420 ../../include/conversation.php:164 #, php-format msgid "%1$s likes %2$s's %3$s" msgstr "%1$s aime %3$s de %2$s" -#: ../../Zotlabs/Module/Like.php:421 ../../include/conversation.php:167 +#: ../../Zotlabs/Module/Like.php:422 ../../include/conversation.php:167 #, php-format msgid "%1$s doesn't like %2$s's %3$s" msgstr "%1$s n'aime pas %3$s de %2$s" -#: ../../Zotlabs/Module/Like.php:423 +#: ../../Zotlabs/Module/Like.php:424 #, php-format msgid "%1$s agrees with %2$s's %3$s" msgstr "%1$s approuve %3$s de %2$s" -#: ../../Zotlabs/Module/Like.php:425 +#: ../../Zotlabs/Module/Like.php:426 #, php-format msgid "%1$s doesn't agree with %2$s's %3$s" msgstr "%1$s n'est pas d'accord avec %3$s de %2$s" -#: ../../Zotlabs/Module/Like.php:427 +#: ../../Zotlabs/Module/Like.php:428 #, php-format msgid "%1$s abstains from a decision on %2$s's %3$s" msgstr "%1$s s'abstient de toute décision sur le %3$s de %2$s" -#: ../../Zotlabs/Module/Like.php:429 +#: ../../Zotlabs/Module/Like.php:430 #, php-format msgid "%1$s is attending %2$s's %3$s" msgstr "%1$s participe à %3$s de %2$s" -#: ../../Zotlabs/Module/Like.php:431 +#: ../../Zotlabs/Module/Like.php:432 #, php-format msgid "%1$s is not attending %2$s's %3$s" msgstr "%1$s ne participe pas à %3$s de %2$s" -#: ../../Zotlabs/Module/Like.php:433 +#: ../../Zotlabs/Module/Like.php:434 #, php-format msgid "%1$s may attend %2$s's %3$s" msgstr "%1$s participe peut-être à %3$s de %2$s" -#: ../../Zotlabs/Module/Like.php:536 +#: ../../Zotlabs/Module/Like.php:537 msgid "Action completed." msgstr "Action terminée." -#: ../../Zotlabs/Module/Like.php:537 +#: ../../Zotlabs/Module/Like.php:538 msgid "Thank you." msgstr "Merci." +#: ../../Zotlabs/Module/Import_items.php:102 +msgid "Import completed" +msgstr "L'import est terminé." + +#: ../../Zotlabs/Module/Import_items.php:117 +msgid "Import Items" +msgstr "Importer" + +#: ../../Zotlabs/Module/Import_items.php:118 +msgid "" +"Use this form to import existing posts and content from an export file." +msgstr "Utiliser ce formulaire pour importer des publications et du contenu existant d'un fichier d'export." + +#: ../../Zotlabs/Module/Invite.php:29 +msgid "Total invitation limit exceeded." +msgstr "Limite du nombre total d'invitation dépassée." + +#: ../../Zotlabs/Module/Invite.php:53 +#, php-format +msgid "%s : Not a valid email address." +msgstr "%s : adresse courriel invalide." + +#: ../../Zotlabs/Module/Invite.php:63 +msgid "Please join us on $Projectname" +msgstr "Rejoignez-nous sur $Projectname" + +#: ../../Zotlabs/Module/Invite.php:74 +msgid "Invitation limit exceeded. Please contact your site administrator." +msgstr "Limite d'invitations dépassée. Merci de contacter l'administration de votre site." + +#: ../../Zotlabs/Module/Invite.php:79 +#, php-format +msgid "%s : Message delivery failed." +msgstr "%s : Échec de distribution du message." + +#: ../../Zotlabs/Module/Invite.php:83 +#, php-format +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "%d message envoyé." +msgstr[1] "%d messages envoyés." + +#: ../../Zotlabs/Module/Invite.php:102 +msgid "You have no more invitations available" +msgstr "Vous ne disposez plus d'aucune invitation" + +#: ../../Zotlabs/Module/Invite.php:133 +msgid "Send invitations" +msgstr "Envoyer des invitations" + +#: ../../Zotlabs/Module/Invite.php:134 +msgid "Enter email addresses, one per line:" +msgstr "Entrez les adresses de courriel, une par ligne :" + +#: ../../Zotlabs/Module/Invite.php:135 ../../Zotlabs/Module/Mail.php:249 +msgid "Your message:" +msgstr "Votre message :" + +#: ../../Zotlabs/Module/Invite.php:136 +msgid "Please join my community on $Projectname." +msgstr "Rejoignez ma communauté sur $Projectname." + +#: ../../Zotlabs/Module/Invite.php:138 +msgid "You will need to supply this invitation code:" +msgstr "Vous devrez fournir le code suivant :" + +#: ../../Zotlabs/Module/Invite.php:139 +msgid "" +"1. Register at any $Projectname location (they are all inter-connected)" +msgstr "1. Enregistrez-vous sur n'importe quel serveur $Projectname (ils sont tous inter-connectés)" + +#: ../../Zotlabs/Module/Invite.php:141 +msgid "2. Enter my $Projectname network address into the site searchbar." +msgstr "2. Saisissez l'adresse de mon canal $Projectname dans la barre de recherche du site." + +#: ../../Zotlabs/Module/Invite.php:142 +msgid "or visit" +msgstr "ou rendez-vous sur" + +#: ../../Zotlabs/Module/Invite.php:144 +msgid "3. Click [Connect]" +msgstr "3. Cliquez sur [Ajouter]" + +#: ../../Zotlabs/Module/Lockview.php:61 +msgid "Remote privacy information not available." +msgstr "Les informations distantes de confidentialité ne sont pas disponibles." + +#: ../../Zotlabs/Module/Lockview.php:82 +msgid "Visible to:" +msgstr "Visible par :" + +#: ../../Zotlabs/Module/Locs.php:25 ../../Zotlabs/Module/Locs.php:54 +msgid "Location not found." +msgstr "Emplacement introuvable." + +#: ../../Zotlabs/Module/Locs.php:62 +msgid "Location lookup failed." +msgstr "Echec de la recherche de l'emplacement." + +#: ../../Zotlabs/Module/Locs.php:66 +msgid "" +"Please select another location to become primary before removing the primary" +" location." +msgstr "Merci de sélectionner un autre emplacement comme nouvel emplacement primaire avant de supprimer l'emplacement primaire actuel." + +#: ../../Zotlabs/Module/Locs.php:95 +msgid "Syncing locations" +msgstr "Synchronisation des emplacements" + +#: ../../Zotlabs/Module/Locs.php:105 +msgid "No locations found." +msgstr "Emplacement(s) introuvable." + +#: ../../Zotlabs/Module/Locs.php:116 +msgid "Manage Channel Locations" +msgstr "Gérer les emplacements des canaux" + +#: ../../Zotlabs/Module/Locs.php:118 ../../Zotlabs/Module/Profiles.php:470 +#: ../../Zotlabs/Module/Admin.php:1224 +msgid "Address" +msgstr "Adresse" + +#: ../../Zotlabs/Module/Locs.php:119 +msgid "Primary" +msgstr "" + +#: ../../Zotlabs/Module/Locs.php:120 ../../Zotlabs/Module/Menu.php:113 +msgid "Drop" +msgstr "Supprimer" + +#: ../../Zotlabs/Module/Locs.php:122 +msgid "Sync Now" +msgstr "" + +#: ../../Zotlabs/Module/Locs.php:123 +msgid "Please wait several minutes between consecutive operations." +msgstr "Merci d'attendre plusieurs minutes entre opérations successives." + +#: ../../Zotlabs/Module/Locs.php:124 +msgid "" +"When possible, drop a location by logging into that website/hub and removing" +" your channel." +msgstr "Quand c'est possible, abandonnez un emplacement en vous connectant sur le site/hub et en supprimant votre canal." + +#: ../../Zotlabs/Module/Locs.php:125 +msgid "Use this form to drop the location if the hub is no longer operating." +msgstr "Utilisez ce formulaire pour abandonner l'emplacement si le hub n'est plus actif." + +#: ../../Zotlabs/Module/Magic.php:71 +msgid "Hub not found." +msgstr "Hub introuvable." + +#: ../../Zotlabs/Module/Mail.php:38 +msgid "Unable to lookup recipient." +msgstr "Impossible de localiser le destinataire." + +#: ../../Zotlabs/Module/Mail.php:45 +msgid "Unable to communicate with requested channel." +msgstr "Impossible de communiquer avec le canal demandé." + +#: ../../Zotlabs/Module/Mail.php:52 +msgid "Cannot verify requested channel." +msgstr "Impossible de vérifier le canal demandé." + +#: ../../Zotlabs/Module/Mail.php:78 +msgid "Selected channel has private message restrictions. Send failed." +msgstr "Le canal choisi a des restrictions quant aux messages privés. L'envoi a échoué." + +#: ../../Zotlabs/Module/Mail.php:143 +msgid "Messages" +msgstr "Messages" + +#: ../../Zotlabs/Module/Mail.php:178 +msgid "Message recalled." +msgstr "Message rappelé." + +#: ../../Zotlabs/Module/Mail.php:191 +msgid "Conversation removed." +msgstr "Conversation supprimée." + +#: ../../Zotlabs/Module/Mail.php:206 ../../Zotlabs/Module/Mail.php:315 +msgid "Expires YYYY-MM-DD HH:MM" +msgstr "Expire le YYYY-MM-DD à HH:MM" + +#: ../../Zotlabs/Module/Mail.php:234 +msgid "Requested channel is not in this network" +msgstr "Le canal demandé n'est pas sur ce réseau" + +#: ../../Zotlabs/Module/Mail.php:242 +msgid "Send Private Message" +msgstr "Envoyer un message privé" + +#: ../../Zotlabs/Module/Mail.php:243 ../../Zotlabs/Module/Mail.php:368 +msgid "To:" +msgstr "À :" + +#: ../../Zotlabs/Module/Mail.php:246 ../../Zotlabs/Module/Mail.php:370 +msgid "Subject:" +msgstr "Objet :" + +#: ../../Zotlabs/Module/Mail.php:251 ../../Zotlabs/Module/Mail.php:376 +#: ../../include/conversation.php:1220 +msgid "Attach file" +msgstr "Joindre un fichier" + +#: ../../Zotlabs/Module/Mail.php:253 +msgid "Send" +msgstr "Envoyer" + +#: ../../Zotlabs/Module/Mail.php:256 ../../Zotlabs/Module/Mail.php:381 +#: ../../include/conversation.php:1251 +msgid "Set expiration date" +msgstr "Définir la date d'expiration" + +#: ../../Zotlabs/Module/Mail.php:340 +msgid "Delete message" +msgstr "Supprimer le message" + +#: ../../Zotlabs/Module/Mail.php:341 +msgid "Delivery report" +msgstr "Rapport de distribution" + +#: ../../Zotlabs/Module/Mail.php:342 +msgid "Recall message" +msgstr "Rappeler le message" + +#: ../../Zotlabs/Module/Mail.php:344 +msgid "Message has been recalled." +msgstr "Le message a été rappelé." + +#: ../../Zotlabs/Module/Mail.php:361 +msgid "Delete Conversation" +msgstr "Supprimer la conversation" + +#: ../../Zotlabs/Module/Mail.php:363 +msgid "" +"No secure communications available. You may be able to " +"respond from the sender's profile page." +msgstr "Aucune communication sécurisée n'est possible. Vous pourrez peut-être répondre depuis la page de profil de l'émetteur." + +#: ../../Zotlabs/Module/Mail.php:367 +msgid "Send Reply" +msgstr "Envoyer la réponse" + +#: ../../Zotlabs/Module/Mail.php:372 +#, php-format +msgid "Your message for %s (%s):" +msgstr "Votre message pour %s (%s) :" + +#: ../../Zotlabs/Module/Manage.php:136 +#: ../../Zotlabs/Module/New_channel.php:121 +#, php-format +msgid "You have created %1$.0f of %2$.0f allowed channels." +msgstr "Vous avez créé %1$.0f des %2$.0f canaux autorisés." + +#: ../../Zotlabs/Module/Manage.php:143 +msgid "Create a new channel" +msgstr "Créer un nouveau canal" + +#: ../../Zotlabs/Module/Manage.php:164 ../../Zotlabs/Lib/Apps.php:213 +#: ../../include/nav.php:206 +msgid "Channel Manager" +msgstr "Gérer les canaux" + +#: ../../Zotlabs/Module/Manage.php:165 +msgid "Current Channel" +msgstr "Canal actif" + +#: ../../Zotlabs/Module/Manage.php:167 +msgid "Switch to one of your channels by selecting it." +msgstr "Pour changer de canal, sélectionnez-en un" + +#: ../../Zotlabs/Module/Manage.php:168 +msgid "Default Channel" +msgstr "Canal par défaut" + +#: ../../Zotlabs/Module/Manage.php:169 +msgid "Make Default" +msgstr "Définir comme défaut" + +#: ../../Zotlabs/Module/Manage.php:172 +#, php-format +msgid "%d new messages" +msgstr "%d nouveaux messages" + +#: ../../Zotlabs/Module/Manage.php:173 +#, php-format +msgid "%d new introductions" +msgstr "%d nouvelles présentations" + +#: ../../Zotlabs/Module/Manage.php:175 +msgid "Delegated Channel" +msgstr "" + +#: ../../Zotlabs/Module/Lostpass.php:19 +msgid "No valid account found." +msgstr "Aucun compte valide trouvé." + +#: ../../Zotlabs/Module/Lostpass.php:33 +msgid "Password reset request issued. Check your email." +msgstr "Demande de réinitialisation du mot de passe envoyée. Vérifiez vos courriels." + +#: ../../Zotlabs/Module/Lostpass.php:39 ../../Zotlabs/Module/Lostpass.php:107 +#, php-format +msgid "Site Member (%s)" +msgstr "Membre du site (%s)" + +#: ../../Zotlabs/Module/Lostpass.php:44 +#, php-format +msgid "Password reset requested at %s" +msgstr "Demande de réinitialisation du mot de passe sur %s" + +#: ../../Zotlabs/Module/Lostpass.php:67 +msgid "" +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." +msgstr "La demande n'a pas pu être vérifiée. (Peut-être l'avez vous déjà utilisée.) La réinitialisation a échoué." + +#: ../../Zotlabs/Module/Lostpass.php:90 ../../boot.php:1711 +msgid "Password Reset" +msgstr "Réinitialiser le mot de passe" + +#: ../../Zotlabs/Module/Lostpass.php:91 +msgid "Your password has been reset as requested." +msgstr "Votre mot de passe a bien été réinitialisé." + +#: ../../Zotlabs/Module/Lostpass.php:92 +msgid "Your new password is" +msgstr "Votre nouveau mot de passe est" + +#: ../../Zotlabs/Module/Lostpass.php:93 +msgid "Save or copy your new password - and then" +msgstr "Enregistrez ou copiez votre nouveau mot de passe, puis" + +#: ../../Zotlabs/Module/Lostpass.php:94 +msgid "click here to login" +msgstr "cliquez ici pour vous connecter" + +#: ../../Zotlabs/Module/Lostpass.php:95 +msgid "" +"Your password may be changed from the Settings page after " +"successful login." +msgstr "Votre mot de passe peut être changé depuis la page des Paramètres une fois connecté." + +#: ../../Zotlabs/Module/Lostpass.php:112 +#, php-format +msgid "Your password has changed at %s" +msgstr "Votre mot de passe de %s a été changé" + +#: ../../Zotlabs/Module/Lostpass.php:127 +msgid "Forgot your Password?" +msgstr "Mot de passe oublié ?" + +#: ../../Zotlabs/Module/Lostpass.php:128 +msgid "" +"Enter your email address and submit to have your password reset. Then check " +"your email for further instructions." +msgstr "Saisissez votre adresse de courriel, et validez, pour réinitialiser votre mot de passe. Vérifiez ensuite votre boîte aux lettres pour la suite des instructions." + +#: ../../Zotlabs/Module/Lostpass.php:129 +msgid "Email Address" +msgstr "Adresse de courriel" + +#: ../../Zotlabs/Module/Lostpass.php:130 +msgid "Reset" +msgstr "Réinitialiser" + +#: ../../Zotlabs/Module/Menu.php:49 +msgid "Unable to update menu." +msgstr "Impossible de mettre le menu à jour." + +#: ../../Zotlabs/Module/Menu.php:60 +msgid "Unable to create menu." +msgstr "Impossible de créer le menu." + +#: ../../Zotlabs/Module/Menu.php:98 ../../Zotlabs/Module/Menu.php:110 +msgid "Menu Name" +msgstr "Nom du menu" + +#: ../../Zotlabs/Module/Menu.php:98 +msgid "Unique name (not visible on webpage) - required" +msgstr "Nom unique (non visible sur la page web) - requis" + +#: ../../Zotlabs/Module/Menu.php:99 ../../Zotlabs/Module/Menu.php:111 +msgid "Menu Title" +msgstr "Titre du menu" + +#: ../../Zotlabs/Module/Menu.php:99 +msgid "Visible on webpage - leave empty for no title" +msgstr "Visible pour la page web - laisser vide pour qu'il n'y ait pas de titre" + +#: ../../Zotlabs/Module/Menu.php:100 +msgid "Allow Bookmarks" +msgstr "Autoriser l'usage de favoris" + +#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 +msgid "Menu may be used to store saved bookmarks" +msgstr "Le menu pourra être utilisé pour stocker des favoris" + +#: ../../Zotlabs/Module/Menu.php:101 ../../Zotlabs/Module/Menu.php:159 +msgid "Submit and proceed" +msgstr "Valider et continuer" + +#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2266 +msgid "Menus" +msgstr "Menus" + +#: ../../Zotlabs/Module/Menu.php:117 +msgid "Bookmarks allowed" +msgstr "Favoris autorisés" + +#: ../../Zotlabs/Module/Menu.php:119 +msgid "Delete this menu" +msgstr "Supprimer ce menu" + +#: ../../Zotlabs/Module/Menu.php:120 ../../Zotlabs/Module/Menu.php:154 +msgid "Edit menu contents" +msgstr "Modifier le contenu du menu" + +#: ../../Zotlabs/Module/Menu.php:121 +msgid "Edit this menu" +msgstr "Modifier ce menu" + +#: ../../Zotlabs/Module/Menu.php:136 +msgid "Menu could not be deleted." +msgstr "Impossible de supprimer le menu." + +#: ../../Zotlabs/Module/Menu.php:144 ../../Zotlabs/Module/Mitem.php:28 +msgid "Menu not found." +msgstr "Menu introuvable." + +#: ../../Zotlabs/Module/Menu.php:149 +msgid "Edit Menu" +msgstr "Modifier le menu" + +#: ../../Zotlabs/Module/Menu.php:153 +msgid "Add or remove entries to this menu" +msgstr "Ajouter/supprimer des entrées à ce menu" + +#: ../../Zotlabs/Module/Menu.php:155 +msgid "Menu name" +msgstr "Nom du menu" + +#: ../../Zotlabs/Module/Menu.php:155 +msgid "Must be unique, only seen by you" +msgstr "Doit être unique, ne sera vu que par vous" + +#: ../../Zotlabs/Module/Menu.php:156 +msgid "Menu title" +msgstr "Titre du menu" + +#: ../../Zotlabs/Module/Menu.php:156 +msgid "Menu title as seen by others" +msgstr "Titre du menu tel que vu par les visiteurs" + +#: ../../Zotlabs/Module/Menu.php:157 +msgid "Allow bookmarks" +msgstr "Autoriser l'usage de favoris" + +#: ../../Zotlabs/Module/Menu.php:166 ../../Zotlabs/Module/Mitem.php:120 +#: ../../Zotlabs/Module/Xchan.php:41 +msgid "Not found." +msgstr "Introuvable." + +#: ../../Zotlabs/Module/Mood.php:67 ../../include/conversation.php:260 +#, php-format +msgctxt "mood" +msgid "%1$s is %2$s" +msgstr "%1$s est %2$s" + +#: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Lib/Apps.php:225 +msgid "Mood" +msgstr "Humeur" + +#: ../../Zotlabs/Module/Mood.php:136 +msgid "Set your current mood and tell your friends" +msgstr "Indiquez votre humeur du moment à vos amis" + +#: ../../Zotlabs/Module/Match.php:26 +msgid "Profile Match" +msgstr "Profils similaires" + +#: ../../Zotlabs/Module/Match.php:35 +msgid "No keywords to match. Please add keywords to your default profile." +msgstr "Aucun mot-clef à comparer. Merci d'ajouter des mots-clefs à votre profil par défaut." + +#: ../../Zotlabs/Module/Match.php:67 +msgid "is interested in:" +msgstr "s'intéresse à :" + +#: ../../Zotlabs/Module/Match.php:74 +msgid "No matches" +msgstr "Pas de correspondance" + +#: ../../Zotlabs/Module/Network.php:96 +msgid "No such group" +msgstr "Groupe introuvable" + +#: ../../Zotlabs/Module/Network.php:136 +msgid "No such channel" +msgstr "Canal introuvable" + +#: ../../Zotlabs/Module/Network.php:141 +msgid "forum" +msgstr "forum" + +#: ../../Zotlabs/Module/Network.php:153 +msgid "Search Results For:" +msgstr "Résultats de recherche pour :" + +#: ../../Zotlabs/Module/Network.php:217 +msgid "Privacy group is empty" +msgstr "Groupe d'accès vide" + +#: ../../Zotlabs/Module/Network.php:226 +msgid "Privacy group: " +msgstr "Groupe d'accès :" + +#: ../../Zotlabs/Module/Network.php:252 +msgid "Invalid connection." +msgstr "Contact non valide." + +#: ../../Zotlabs/Module/Notify.php:57 +#: ../../Zotlabs/Module/Notifications.php:98 +msgid "No more system notifications." +msgstr "Pas d'autre notification du système." + +#: ../../Zotlabs/Module/Notify.php:61 +#: ../../Zotlabs/Module/Notifications.php:102 +msgid "System Notifications" +msgstr "Notifications du système" + +#: ../../Zotlabs/Module/Mitem.php:52 +msgid "Unable to create element." +msgstr "Impossible de créer l'entrée." + +#: ../../Zotlabs/Module/Mitem.php:76 +msgid "Unable to update menu element." +msgstr "Impossible de mettre à jour l'entrée de menu." + +#: ../../Zotlabs/Module/Mitem.php:92 +msgid "Unable to add menu element." +msgstr "Impossible d'ajouter l'entrée de menu." + +#: ../../Zotlabs/Module/Mitem.php:153 ../../Zotlabs/Module/Mitem.php:226 +msgid "Menu Item Permissions" +msgstr "Permissions de l'entrée de menu" + +#: ../../Zotlabs/Module/Mitem.php:154 ../../Zotlabs/Module/Mitem.php:227 +#: ../../Zotlabs/Module/Settings.php:1068 +msgid "(click to open/close)" +msgstr "(cliquer pour ouvrir/fermer)" + +#: ../../Zotlabs/Module/Mitem.php:156 ../../Zotlabs/Module/Mitem.php:172 +msgid "Link Name" +msgstr "Nom du lien" + +#: ../../Zotlabs/Module/Mitem.php:157 ../../Zotlabs/Module/Mitem.php:231 +msgid "Link or Submenu Target" +msgstr "Lien ou sous-menu cible" + +#: ../../Zotlabs/Module/Mitem.php:157 +msgid "Enter URL of the link or select a menu name to create a submenu" +msgstr "Entrez l'URL du lien ou sélectionnez un nom de menu pour créer un sous-menu" + +#: ../../Zotlabs/Module/Mitem.php:158 ../../Zotlabs/Module/Mitem.php:232 +msgid "Use magic-auth if available" +msgstr "Utiliser l'authentification distante, quand disponible" + +#: ../../Zotlabs/Module/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:233 +msgid "Open link in new window" +msgstr "Ouvrir le lien dans une nouvelle fenêtre" + +#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:234 +msgid "Order in list" +msgstr "Ordre dans la liste" + +#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:234 +msgid "Higher numbers will sink to bottom of listing" +msgstr "Les nombres les plus élevés seront au bas de la liste" + +#: ../../Zotlabs/Module/Mitem.php:161 +msgid "Submit and finish" +msgstr "Vadiler et terminer" + +#: ../../Zotlabs/Module/Mitem.php:162 +msgid "Submit and continue" +msgstr "Valider et continuer" + +#: ../../Zotlabs/Module/Mitem.php:170 +msgid "Menu:" +msgstr "Menu :" + +#: ../../Zotlabs/Module/Mitem.php:173 +msgid "Link Target" +msgstr "Cible du lien" + +#: ../../Zotlabs/Module/Mitem.php:176 +msgid "Edit menu" +msgstr "Modifier le menu" + +#: ../../Zotlabs/Module/Mitem.php:179 +msgid "Edit element" +msgstr "Modifier l'entrée" + +#: ../../Zotlabs/Module/Mitem.php:180 +msgid "Drop element" +msgstr "Supprimer l'entrée" + +#: ../../Zotlabs/Module/Mitem.php:181 +msgid "New element" +msgstr "Nouvelle entrée" + +#: ../../Zotlabs/Module/Mitem.php:182 +msgid "Edit this menu container" +msgstr "Éditer ce bloc de menu" + +#: ../../Zotlabs/Module/Mitem.php:183 +msgid "Add menu element" +msgstr "Ajouter une entrée au menu" + +#: ../../Zotlabs/Module/Mitem.php:184 +msgid "Delete this menu item" +msgstr "Supprimer cette entrée du menu" + +#: ../../Zotlabs/Module/Mitem.php:185 +msgid "Edit this menu item" +msgstr "Modifier cette entrée du menu" + +#: ../../Zotlabs/Module/Mitem.php:202 +msgid "Menu item not found." +msgstr "Entrée de menu introuvable." + +#: ../../Zotlabs/Module/Mitem.php:215 +msgid "Menu item deleted." +msgstr "Entrée de menu supprimée." + +#: ../../Zotlabs/Module/Mitem.php:217 +msgid "Menu item could not be deleted." +msgstr "Impossible de supprimer l'entrée de menu." + +#: ../../Zotlabs/Module/Mitem.php:224 +msgid "Edit Menu Element" +msgstr "Modifier l'entrée de menu" + +#: ../../Zotlabs/Module/Mitem.php:230 +msgid "Link text" +msgstr "Texte du lien" + +#: ../../Zotlabs/Module/New_channel.php:128 +#: ../../Zotlabs/Module/Register.php:231 +msgid "Name or caption" +msgstr "Nom ou libellé" + +#: ../../Zotlabs/Module/New_channel.php:128 +#: ../../Zotlabs/Module/Register.php:231 +msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\"" +msgstr "Exemples : \"Jérôme Dutilleul\", \"Louise et ses chevaux\", \"Football\", \"Club d'aéromodélisme\"" + +#: ../../Zotlabs/Module/New_channel.php:130 +#: ../../Zotlabs/Module/Register.php:233 +msgid "Choose a short nickname" +msgstr "Choisissez un alias" + +#: ../../Zotlabs/Module/New_channel.php:130 +#: ../../Zotlabs/Module/Register.php:233 +#, php-format +msgid "" +"Your nickname will be used to create an easy to remember channel address " +"e.g. nickname%s" +msgstr "Votre pseudo sera utilisé pour créer une adresse de canal facile à mémoriser, par ex. pseudo%s" + +#: ../../Zotlabs/Module/New_channel.php:132 +#: ../../Zotlabs/Module/Register.php:235 +msgid "Channel role and privacy" +msgstr "Rôle et confidentialité du canal" + +#: ../../Zotlabs/Module/New_channel.php:132 +#: ../../Zotlabs/Module/Register.php:235 +msgid "Select a channel role with your privacy requirements." +msgstr "Sélectionner un rôle de canal adapté à vos besoins de confidentialité." + +#: ../../Zotlabs/Module/New_channel.php:132 +#: ../../Zotlabs/Module/Register.php:235 +msgid "Read more about roles" +msgstr "En savoir plus sur les rôles" + +#: ../../Zotlabs/Module/New_channel.php:135 +msgid "Create Channel" +msgstr "Créer le canal" + +#: ../../Zotlabs/Module/New_channel.php:136 +msgid "" +"A channel is your identity on this network. It can represent a person, a " +"blog, or a forum to name a few. Channels can make connections with other " +"channels to share information with highly detailed permissions." +msgstr "Un canal est votre identité sur ce réseau. Il peut représenter une personne, un blog, ou un forum par exemple. Les canaux peuvent entrer en contact les uns avec les autres pour partager des informations avec des permissions d'accès très fines." + +#: ../../Zotlabs/Module/New_channel.php:137 +msgid "" +"or import an existing channel from another location." +msgstr "ou importer un canal existant d'un autre serveur." + +#: ../../Zotlabs/Module/Notifications.php:30 +msgid "Invalid request identifier." +msgstr "Identifiant de requête invalide." + +#: ../../Zotlabs/Module/Notifications.php:39 +msgid "Discard" +msgstr "Annuler" + +#: ../../Zotlabs/Module/Notifications.php:103 ../../include/nav.php:191 +msgid "Mark all system notifications seen" +msgstr "Marquer toutes les notifications système comme vues" + +#: ../../Zotlabs/Module/Photos.php:84 +msgid "Page owner information could not be retrieved." +msgstr "Impossible d'obtenir des informations sur le propriétaire de la page." + +#: ../../Zotlabs/Module/Photos.php:99 ../../Zotlabs/Module/Photos.php:743 +#: ../../Zotlabs/Module/Profile_photo.php:114 +#: ../../Zotlabs/Module/Profile_photo.php:206 +#: ../../Zotlabs/Module/Profile_photo.php:294 +#: ../../include/photo/photo_driver.php:718 +msgid "Profile Photos" +msgstr "Photos du profil" + +#: ../../Zotlabs/Module/Photos.php:105 ../../Zotlabs/Module/Photos.php:149 +msgid "Album not found." +msgstr "Album introuvable." + +#: ../../Zotlabs/Module/Photos.php:132 +msgid "Delete Album" +msgstr "Supprimer l'album" + +#: ../../Zotlabs/Module/Photos.php:153 +msgid "" +"Multiple storage folders exist with this album name, but within different " +"directories. Please remove the desired folder or folders using the Files " +"manager" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:210 ../../Zotlabs/Module/Photos.php:1053 +msgid "Delete Photo" +msgstr "Supprimer la photo" + +#: ../../Zotlabs/Module/Photos.php:533 +msgid "No photos selected" +msgstr "Aucune photo selectionnée" + +#: ../../Zotlabs/Module/Photos.php:582 +msgid "Access to this item is restricted." +msgstr "L'accès à l'élément est restreint." + +#: ../../Zotlabs/Module/Photos.php:621 +#, php-format +msgid "%1$.2f MB of %2$.2f MB photo storage used." +msgstr "Vous avez utilisé %1$.2f mégaoctets sur les %2$.2f autorisés pour le stockage des photos." + +#: ../../Zotlabs/Module/Photos.php:624 +#, php-format +msgid "%1$.2f MB photo storage used." +msgstr "%1$.2f méga-octets utilisés pour le stockage des photos." + +#: ../../Zotlabs/Module/Photos.php:660 +msgid "Upload Photos" +msgstr "Téléverser des photos" + +#: ../../Zotlabs/Module/Photos.php:664 +msgid "Enter an album name" +msgstr "Entrer un nom d'album" + +#: ../../Zotlabs/Module/Photos.php:665 +msgid "or select an existing album (doubleclick)" +msgstr "ou sélectionner un album existant (double-clic)" + +#: ../../Zotlabs/Module/Photos.php:666 +msgid "Create a status post for this upload" +msgstr "Créer une publication de statut pour cet envoi" + +#: ../../Zotlabs/Module/Photos.php:667 +msgid "Caption (optional):" +msgstr "Légende (facultative)" + +#: ../../Zotlabs/Module/Photos.php:668 +msgid "Description (optional):" +msgstr "Description (facultative)" + +#: ../../Zotlabs/Module/Photos.php:695 +msgid "Album name could not be decoded" +msgstr "Le nom de l'Album n'a pu être décodé" + +#: ../../Zotlabs/Module/Photos.php:743 +msgid "Contact Photos" +msgstr "Photos de contact" + +#: ../../Zotlabs/Module/Photos.php:766 +msgid "Show Newest First" +msgstr "Les plus récent(e)s en premier" + +#: ../../Zotlabs/Module/Photos.php:768 +msgid "Show Oldest First" +msgstr "Les moins récent(e)s en premier" + +#: ../../Zotlabs/Module/Photos.php:792 ../../Zotlabs/Module/Photos.php:1331 +#: ../../include/widgets.php:1499 +msgid "View Photo" +msgstr "Voir la photo" + +#: ../../Zotlabs/Module/Photos.php:823 ../../include/widgets.php:1516 +msgid "Edit Album" +msgstr "Modifier l'album" + +#: ../../Zotlabs/Module/Photos.php:870 +msgid "Permission denied. Access to this item may be restricted." +msgstr "Permission refusée. L'accès à cet élément peut avoir été restreint." + +#: ../../Zotlabs/Module/Photos.php:872 +msgid "Photo not available" +msgstr "Photo non disponible" + +#: ../../Zotlabs/Module/Photos.php:930 +msgid "Use as profile photo" +msgstr "Utiliser comme photo du profil" + +#: ../../Zotlabs/Module/Photos.php:931 +msgid "Use as cover photo" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:938 +msgid "Private Photo" +msgstr "Photo privée" + +#: ../../Zotlabs/Module/Photos.php:953 +msgid "View Full Size" +msgstr "Voir en taille réelle" + +#: ../../Zotlabs/Module/Photos.php:998 ../../Zotlabs/Module/Admin.php:1437 +#: ../../Zotlabs/Module/Tagrm.php:137 +msgid "Remove" +msgstr "Retirer" + +#: ../../Zotlabs/Module/Photos.php:1032 +msgid "Edit photo" +msgstr "Modifier la photo" + +#: ../../Zotlabs/Module/Photos.php:1034 +msgid "Rotate CW (right)" +msgstr "Rotation horaire (droite)" + +#: ../../Zotlabs/Module/Photos.php:1035 +msgid "Rotate CCW (left)" +msgstr "Rotation anti-horaire (gauche)" + +#: ../../Zotlabs/Module/Photos.php:1038 +msgid "Enter a new album name" +msgstr "Entrer un nouveau nom d'album" + +#: ../../Zotlabs/Module/Photos.php:1039 +msgid "or select an existing one (doubleclick)" +msgstr "ou en sélectionner un existant (double-clic)" + +#: ../../Zotlabs/Module/Photos.php:1042 +msgid "Caption" +msgstr "Titre/légende" + +#: ../../Zotlabs/Module/Photos.php:1044 +msgid "Add a Tag" +msgstr "Ajouter une étiquette" + +#: ../../Zotlabs/Module/Photos.php:1048 +msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" +msgstr "Exemple : @marc, @Barbara_Jensen, @charles@exemple.com, #Ile_de_France, #marathon" + +#: ../../Zotlabs/Module/Photos.php:1051 +msgid "Flag as adult in album view" +msgstr "Marquer comme \"adulte\" dans l'affichage de l'album" + +#: ../../Zotlabs/Module/Photos.php:1070 ../../Zotlabs/Lib/ThreadItem.php:261 +msgid "I like this (toggle)" +msgstr "J'aime (oui/non)" + +#: ../../Zotlabs/Module/Photos.php:1071 ../../Zotlabs/Lib/ThreadItem.php:262 +msgid "I don't like this (toggle)" +msgstr "Je n'aime pas (oui/non)" + +#: ../../Zotlabs/Module/Photos.php:1073 ../../Zotlabs/Lib/ThreadItem.php:397 +#: ../../include/conversation.php:740 +msgid "Please wait" +msgstr "Merci de patienter" + +#: ../../Zotlabs/Module/Photos.php:1089 ../../Zotlabs/Module/Photos.php:1207 +#: ../../Zotlabs/Lib/ThreadItem.php:707 +msgid "This is you" +msgstr "C'est vous" + +#: ../../Zotlabs/Module/Photos.php:1091 ../../Zotlabs/Module/Photos.php:1209 +#: ../../Zotlabs/Lib/ThreadItem.php:709 ../../include/js_strings.php:6 +msgid "Comment" +msgstr "Commenter" + +#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:574 +msgctxt "title" +msgid "Likes" +msgstr "Aime" + +#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:574 +msgctxt "title" +msgid "Dislikes" +msgstr "N'aime pas" + +#: ../../Zotlabs/Module/Photos.php:1108 ../../include/conversation.php:575 +msgctxt "title" +msgid "Agree" +msgstr "D'accord" + +#: ../../Zotlabs/Module/Photos.php:1108 ../../include/conversation.php:575 +msgctxt "title" +msgid "Disagree" +msgstr "Pas d'accord" + +#: ../../Zotlabs/Module/Photos.php:1108 ../../include/conversation.php:575 +msgctxt "title" +msgid "Abstain" +msgstr "Abstention" + +#: ../../Zotlabs/Module/Photos.php:1109 ../../include/conversation.php:576 +msgctxt "title" +msgid "Attending" +msgstr "Participations" + +#: ../../Zotlabs/Module/Photos.php:1109 ../../include/conversation.php:576 +msgctxt "title" +msgid "Not attending" +msgstr "Non-participations" + +#: ../../Zotlabs/Module/Photos.php:1109 ../../include/conversation.php:576 +msgctxt "title" +msgid "Might attend" +msgstr "Participation possible" + +#: ../../Zotlabs/Module/Photos.php:1126 ../../Zotlabs/Module/Photos.php:1138 +#: ../../Zotlabs/Lib/ThreadItem.php:181 ../../Zotlabs/Lib/ThreadItem.php:193 +#: ../../include/conversation.php:1717 +msgid "View all" +msgstr "Voir tout" + +#: ../../Zotlabs/Module/Photos.php:1130 ../../Zotlabs/Lib/ThreadItem.php:185 +#: ../../include/taxonomy.php:403 ../../include/conversation.php:1741 +#: ../../include/channel.php:1158 +msgctxt "noun" +msgid "Like" +msgid_plural "Likes" +msgstr[0] "Aime" +msgstr[1] "Aime" + +#: ../../Zotlabs/Module/Photos.php:1135 ../../Zotlabs/Lib/ThreadItem.php:190 +#: ../../include/conversation.php:1744 +msgctxt "noun" +msgid "Dislike" +msgid_plural "Dislikes" +msgstr[0] "N'aime pas" +msgstr[1] "N'aime pas" + +#: ../../Zotlabs/Module/Photos.php:1235 +msgid "Photo Tools" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1244 +msgid "In This Photo:" +msgstr "Dans cette photo :" + +#: ../../Zotlabs/Module/Photos.php:1249 +msgid "Map" +msgstr "Carte" + +#: ../../Zotlabs/Module/Photos.php:1257 ../../Zotlabs/Lib/ThreadItem.php:386 +msgctxt "noun" +msgid "Likes" +msgstr "Aime" + +#: ../../Zotlabs/Module/Photos.php:1258 ../../Zotlabs/Lib/ThreadItem.php:387 +msgctxt "noun" +msgid "Dislikes" +msgstr "N'aime pas" + +#: ../../Zotlabs/Module/Photos.php:1263 ../../Zotlabs/Lib/ThreadItem.php:392 +#: ../../include/acl_selectors.php:285 +msgid "Close" +msgstr "Fermer" + +#: ../../Zotlabs/Module/Photos.php:1337 +msgid "View Album" +msgstr "Voir l'album" + +#: ../../Zotlabs/Module/Photos.php:1348 ../../Zotlabs/Module/Photos.php:1361 +#: ../../Zotlabs/Module/Photos.php:1362 +msgid "Recent Photos" +msgstr "Photos récentes" + +#: ../../Zotlabs/Module/Ping.php:265 +msgid "sent you a private message" +msgstr "vous a envoyé un message privé" + +#: ../../Zotlabs/Module/Ping.php:313 +msgid "added your channel" +msgstr "a ajouté votre canal" + +#: ../../Zotlabs/Module/Ping.php:323 +msgid "g A l F d" +msgstr "g A l F d" + +#: ../../Zotlabs/Module/Ping.php:346 +msgid "[today]" +msgstr "[aujourd'hui]" + +#: ../../Zotlabs/Module/Ping.php:355 +msgid "posted an event" +msgstr "a publié un événement" + +#: ../../Zotlabs/Module/Oexchange.php:27 +msgid "Unable to find your hub." +msgstr "Impossible de trouver votre hub." + +#: ../../Zotlabs/Module/Oexchange.php:41 +msgid "Post successful." +msgstr "Publication réussie." + +#: ../../Zotlabs/Module/Openid.php:30 +msgid "OpenID protocol error. No ID returned." +msgstr "Erreur du protocole OpenID. Pas d'ID retourné." + +#: ../../Zotlabs/Module/Openid.php:193 ../../include/auth.php:226 +msgid "Login failed." +msgstr "Échec de la connexion." + +#: ../../Zotlabs/Module/Page.php:133 +msgid "" +"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod " +"tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam," +" quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo " +"consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse " +"cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat " +"non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." +msgstr "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." + +#: ../../Zotlabs/Module/Pconfig.php:26 ../../Zotlabs/Module/Pconfig.php:59 +msgid "This setting requires special processing and editing has been blocked." +msgstr "Ce paramètre nécessité un traitement spécial, les modifications ont été bloquées." + +#: ../../Zotlabs/Module/Pconfig.php:48 +msgid "Configuration Editor" +msgstr "Editeur de configuration" + +#: ../../Zotlabs/Module/Pconfig.php:49 +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 "Attention :modifier certains paramètres peut rendre votre canal inutilisable. Merci d'ignorer cette page à moins d'être suffisamment à l'aise de savoir comment utiliser correctement cette fonctionnalité." + +#: ../../Zotlabs/Module/Pdledit.php:18 +msgid "Layout updated." +msgstr "Mise en page mise à jour." + +#: ../../Zotlabs/Module/Pdledit.php:34 ../../Zotlabs/Module/Pdledit.php:61 +msgid "Edit System Page Description" +msgstr "Modifier la description de la page du système" + +#: ../../Zotlabs/Module/Pdledit.php:56 +msgid "Layout not found." +msgstr "Mise en page introuvable." + +#: ../../Zotlabs/Module/Pdledit.php:62 +msgid "Module Name:" +msgstr "Nom du module :" + +#: ../../Zotlabs/Module/Pdledit.php:63 +msgid "Layout Help" +msgstr "Aide à la mise en page" + +#: ../../Zotlabs/Module/Poke.php:168 ../../Zotlabs/Lib/Apps.php:226 +#: ../../include/conversation.php:960 +msgid "Poke" +msgstr "Tapoter" + +#: ../../Zotlabs/Module/Poke.php:169 +msgid "Poke somebody" +msgstr "Taquiner quelqu'un" + +#: ../../Zotlabs/Module/Poke.php:172 +msgid "Poke/Prod" +msgstr "Tapoter/Encourager" + +#: ../../Zotlabs/Module/Poke.php:173 +msgid "Poke, prod or do other things to somebody" +msgstr "Taquiner, pousser ou faire autre chose à quelqu'un" + +#: ../../Zotlabs/Module/Poke.php:180 +msgid "Recipient" +msgstr "Destinataire" + +#: ../../Zotlabs/Module/Poke.php:181 +msgid "Choose what you wish to do to recipient" +msgstr "Choisir ce que vous voulez faire au destinataire" + +#: ../../Zotlabs/Module/Poke.php:184 ../../Zotlabs/Module/Poke.php:185 +msgid "Make this post private" +msgstr "Rendre cette publication privée" + +#: ../../Zotlabs/Module/Probe.php:30 ../../Zotlabs/Module/Probe.php:34 +#, php-format +msgid "Fetching URL returns error: %1$s" +msgstr "Récupération d'URL échouée : %1$s" + #: ../../Zotlabs/Module/Profiles.php:24 ../../Zotlabs/Module/Profiles.php:189 #: ../../Zotlabs/Module/Profiles.php:246 ../../Zotlabs/Module/Profiles.php:625 msgid "Profile not found." @@ -2201,11 +3277,6 @@ msgstr "Site Internet" msgid "Interests" msgstr "Centres d'intérêt" -#: ../../Zotlabs/Module/Profiles.php:470 ../../Zotlabs/Module/Locs.php:118 -#: ../../Zotlabs/Module/Admin.php:1224 -msgid "Address" -msgstr "Adresse" - #: ../../Zotlabs/Module/Profiles.php:560 msgid "Profile updated." msgstr "Profil mis à jour." @@ -2223,7 +3294,7 @@ msgid "View this profile" msgstr "Voir ce profil" #: ../../Zotlabs/Module/Profiles.php:689 ../../Zotlabs/Module/Profiles.php:771 -#: ../../include/channel.php:998 +#: ../../include/channel.php:959 msgid "Edit visibility" msgstr "Changer la visibilité" @@ -2235,7 +3306,7 @@ msgstr "" msgid "Change cover photo" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:692 ../../include/channel.php:969 +#: ../../Zotlabs/Module/Profiles.php:692 ../../include/channel.php:930 msgid "Change profile photo" msgstr "Changer la photo du profil" @@ -2255,8 +3326,8 @@ msgstr "Supprimer ce profil" msgid "Add profile things" msgstr "Ajouter des éléments de profil" -#: ../../Zotlabs/Module/Profiles.php:697 ../../include/conversation.php:1541 -#: ../../include/widgets.php:105 +#: ../../Zotlabs/Module/Profiles.php:697 ../../include/widgets.php:105 +#: ../../include/conversation.php:1526 msgid "Personal" msgstr "Me concernant" @@ -2396,1097 +3467,119 @@ msgstr "" msgid "My other channels" msgstr "Mes autres canaux" -#: ../../Zotlabs/Module/Profiles.php:767 ../../include/channel.php:994 +#: ../../Zotlabs/Module/Profiles.php:767 ../../include/channel.php:955 msgid "Profile Image" msgstr "Image du profil" #: ../../Zotlabs/Module/Profiles.php:777 ../../include/nav.php:88 -#: ../../include/channel.php:976 +#: ../../include/channel.php:937 msgid "Edit Profiles" msgstr "Modifier les profils" -#: ../../Zotlabs/Module/Import.php:33 -#, php-format -msgid "Your service plan only allows %d channels." -msgstr "Votre forfait n'autorise que %d canaux." - -#: ../../Zotlabs/Module/Import.php:71 ../../Zotlabs/Module/Import_items.php:42 -msgid "Nothing to import." -msgstr "Rien à importer." - -#: ../../Zotlabs/Module/Import.php:95 ../../Zotlabs/Module/Import_items.php:66 -msgid "Unable to download data from old server" -msgstr "Impossible de récupérer les données de l'ancien serveur" - -#: ../../Zotlabs/Module/Import.php:101 -#: ../../Zotlabs/Module/Import_items.php:72 -msgid "Imported file is empty." -msgstr "Le fichier importé est vide." - -#: ../../Zotlabs/Module/Import.php:123 -#: ../../Zotlabs/Module/Import_items.php:88 -#, php-format -msgid "Warning: Database versions differ by %1$d updates." -msgstr "Attention : les versions de bases de données diffèrent de %1$d mises à jour." - -#: ../../Zotlabs/Module/Import.php:153 ../../include/import.php:107 -msgid "Cloned channel not found. Import failed." -msgstr "Canal cloné non trouvé. Echec de l'import." - -#: ../../Zotlabs/Module/Import.php:163 -msgid "No channel. Import failed." -msgstr "Pas de canal. Echec de l'import." - -#: ../../Zotlabs/Module/Import.php:520 -#: ../../include/Import/import_diaspora.php:142 -msgid "Import completed." -msgstr "L'import est terminé." - -#: ../../Zotlabs/Module/Import.php:542 -msgid "You must be logged in to use this feature." -msgstr "Vous devez vous connecter pour utiliser cette fonctionnalité." - -#: ../../Zotlabs/Module/Import.php:547 -msgid "Import Channel" -msgstr "Importation de canal" - -#: ../../Zotlabs/Module/Import.php:548 +#: ../../Zotlabs/Module/Profile_photo.php:179 msgid "" -"Use this form to import an existing channel from a different server/hub. You" -" may retrieve the channel identity from the old server/hub via the network " -"or provide an export file." -msgstr "Utilisez ce formulaire pour importer un canal existant sur un autre serveur. Vous pouvez récupérer l'identité du canal sur l'ancien serveur directement par le réseau, ou bien fournir un fichier d'export/import." +"Shift-reload the page or clear browser cache if the new photo does not " +"display immediately." +msgstr "Shift-rechargez votre page, ou videz le cache du navigateur si la photo ne s'affiche pas immédiatement." -#: ../../Zotlabs/Module/Import.php:549 -#: ../../Zotlabs/Module/Import_items.php:121 -msgid "File to Upload" -msgstr "Fichier à envoyer" +#: ../../Zotlabs/Module/Profile_photo.php:367 +msgid "Upload Profile Photo" +msgstr "Téléverser une photo de profil" -#: ../../Zotlabs/Module/Import.php:550 -msgid "Or provide the old server/hub details" -msgstr "Ou fournissez les détails de l'ancien serveur/hub" +#: ../../Zotlabs/Module/Profperm.php:34 ../../Zotlabs/Module/Profperm.php:63 +msgid "Invalid profile identifier." +msgstr "Identifiant de profil invalide." -#: ../../Zotlabs/Module/Import.php:551 -msgid "Your old identity address (xyz@example.com)" -msgstr "Votre ancienne identité (zyx@exemple.com)" +#: ../../Zotlabs/Module/Profperm.php:115 +msgid "Profile Visibility Editor" +msgstr "Éditeur de visibilité de profil" -#: ../../Zotlabs/Module/Import.php:552 -msgid "Your old login email address" -msgstr "Votre ancienne adresse de courriel" +#: ../../Zotlabs/Module/Profperm.php:117 ../../include/channel.php:1249 +msgid "Profile" +msgstr "Profil" -#: ../../Zotlabs/Module/Import.php:553 -msgid "Your old login password" -msgstr "Votre ancien mot de passe" +#: ../../Zotlabs/Module/Profperm.php:119 +msgid "Click on a contact to add or remove." +msgstr "Cliquer sur un contact pour l'ajouter ou le retirer." -#: ../../Zotlabs/Module/Import.php:554 +#: ../../Zotlabs/Module/Profperm.php:128 +msgid "Visible To" +msgstr "Visible par" + +#: ../../Zotlabs/Module/Pubsites.php:22 ../../include/widgets.php:1270 +msgid "Public Hubs" +msgstr "Instances publiques" + +#: ../../Zotlabs/Module/Pubsites.php:25 msgid "" -"For either option, please choose whether to make this hub your new primary " -"address, or whether your old location should continue this role. You will be" -" able to post from either location, but only one can be marked as the " -"primary location for files, photos, and media." -msgstr "Quelle que soit l'option choisie, merci de décider si ce hub sera votre nouvelle adresse primaire, ou si votre ancien hub continuera à jouer ce rôle. Vous pourrez publier depuis l'emplacement de votre choix, mais une seule peut être déclarée comme stockage primaire de vos fichiers/photos/media." +"The listed hubs allow public registration for the $Projectname network. All " +"hubs in the network are interlinked so membership on any of them conveys " +"membership in the network as a whole. Some hubs may require subscription or " +"provide tiered service plans. The hub itself may provide " +"additional details." +msgstr "Les sites listés permettent l'enregistrement public de comptes pour le réseau $Projectname. Tous les sites du réseau sont reliés entre eux, être membre d'un site revient à être membre de tous. Certains sites peuvent demander une souscription ou proposer différents niveaux de service. Chaque site peut fournir des détails supplémentaires." -#: ../../Zotlabs/Module/Import.php:555 -msgid "Make this hub my primary location" -msgstr "Faire de ce hub mon emplacement primaire" +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Hub URL" +msgstr "URL du site" -#: ../../Zotlabs/Module/Import.php:556 -msgid "" -"Import existing posts if possible (experimental - limited by available " -"memory" -msgstr "Importer les publications existantes si possible (expérimental - limité par la mémoire disponible)" +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Access Type" +msgstr "Type d'accès" -#: ../../Zotlabs/Module/Import.php:557 -msgid "" -"This process may take several minutes to complete. Please submit the form " -"only once and leave this page open until finished." -msgstr "Ce processus peut prendre plusieurs minutes. Merci de ne valider le formulaire qu'une seule fois et de laisser cette page ouverte jusqu'à la fin." +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Registration Policy" +msgstr "Politique d'inscription" -#: ../../Zotlabs/Module/Home.php:74 ../../Zotlabs/Module/Home.php:82 -#: ../../Zotlabs/Module/Siteinfo.php:48 -msgid "$Projectname" -msgstr "$Projectname" - -#: ../../Zotlabs/Module/Home.php:92 -#, php-format -msgid "Welcome to %s" -msgstr "Bienvenue sur %s" - -#: ../../Zotlabs/Module/Item.php:179 -msgid "Unable to locate original post." -msgstr "Impossible de localiser la publication initiale." - -#: ../../Zotlabs/Module/Item.php:432 -msgid "Empty post discarded." -msgstr "Publication vide annulée." - -#: ../../Zotlabs/Module/Item.php:472 -msgid "Executable content type not permitted to this channel." -msgstr "Les contenus de type 'exécutable' ne sont pas autorisés sur ce canal." - -#: ../../Zotlabs/Module/Item.php:856 -msgid "Duplicate post suppressed." -msgstr "Publication en doublon supprimée." - -#: ../../Zotlabs/Module/Item.php:989 -msgid "System error. Post not saved." -msgstr "Erreur système. Publication non sauvegardée." - -#: ../../Zotlabs/Module/Item.php:1242 -msgid "Unable to obtain post information from database." -msgstr "Impossible d'obtenir les informations de publication depuis la base de données." - -#: ../../Zotlabs/Module/Item.php:1249 -#, php-format -msgid "You have reached your limit of %1$.0f top level posts." -msgstr "Vous avez atteint votre limite de %1$.0f contributions \"racines\"." - -#: ../../Zotlabs/Module/Item.php:1256 -#, php-format -msgid "You have reached your limit of %1$.0f webpages." -msgstr "Vous avez atteint votre limite de %1$.0f pages web." - -#: ../../Zotlabs/Module/Photos.php:82 -msgid "Page owner information could not be retrieved." -msgstr "Impossible d'obtenir des informations sur le propriétaire de la page." - -#: ../../Zotlabs/Module/Photos.php:97 ../../Zotlabs/Module/Photos.php:741 -#: ../../Zotlabs/Module/Profile_photo.php:115 -#: ../../Zotlabs/Module/Profile_photo.php:212 -#: ../../Zotlabs/Module/Profile_photo.php:311 -#: ../../include/photo/photo_driver.php:718 -msgid "Profile Photos" -msgstr "Photos du profil" - -#: ../../Zotlabs/Module/Photos.php:103 ../../Zotlabs/Module/Photos.php:147 -msgid "Album not found." -msgstr "Album introuvable." - -#: ../../Zotlabs/Module/Photos.php:130 -msgid "Delete Album" -msgstr "Supprimer l'album" - -#: ../../Zotlabs/Module/Photos.php:151 -msgid "" -"Multiple storage folders exist with this album name, but within different " -"directories. Please remove the desired folder or folders using the Files " -"manager" +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Stats" msgstr "" -#: ../../Zotlabs/Module/Photos.php:208 ../../Zotlabs/Module/Photos.php:1051 -msgid "Delete Photo" -msgstr "Supprimer la photo" - -#: ../../Zotlabs/Module/Photos.php:531 -msgid "No photos selected" -msgstr "Aucune photo selectionnée" - -#: ../../Zotlabs/Module/Photos.php:580 -msgid "Access to this item is restricted." -msgstr "L'accès à l'élément est restreint." - -#: ../../Zotlabs/Module/Photos.php:619 -#, php-format -msgid "%1$.2f MB of %2$.2f MB photo storage used." -msgstr "Vous avez utilisé %1$.2f mégaoctets sur les %2$.2f autorisés pour le stockage des photos." - -#: ../../Zotlabs/Module/Photos.php:622 -#, php-format -msgid "%1$.2f MB photo storage used." -msgstr "%1$.2f méga-octets utilisés pour le stockage des photos." - -#: ../../Zotlabs/Module/Photos.php:658 -msgid "Upload Photos" -msgstr "Téléverser des photos" - -#: ../../Zotlabs/Module/Photos.php:662 -msgid "Enter an album name" -msgstr "Entrer un nom d'album" - -#: ../../Zotlabs/Module/Photos.php:663 -msgid "or select an existing album (doubleclick)" -msgstr "ou sélectionner un album existant (double-clic)" - -#: ../../Zotlabs/Module/Photos.php:664 -msgid "Create a status post for this upload" -msgstr "Créer une publication de statut pour cet envoi" - -#: ../../Zotlabs/Module/Photos.php:665 -msgid "Caption (optional):" -msgstr "Légende (facultative)" - -#: ../../Zotlabs/Module/Photos.php:666 -msgid "Description (optional):" -msgstr "Description (facultative)" - -#: ../../Zotlabs/Module/Photos.php:693 -msgid "Album name could not be decoded" -msgstr "Le nom de l'Album n'a pu être décodé" - -#: ../../Zotlabs/Module/Photos.php:741 -msgid "Contact Photos" -msgstr "Photos de contact" - -#: ../../Zotlabs/Module/Photos.php:764 -msgid "Show Newest First" -msgstr "Les plus récent(e)s en premier" - -#: ../../Zotlabs/Module/Photos.php:766 -msgid "Show Oldest First" -msgstr "Les moins récent(e)s en premier" - -#: ../../Zotlabs/Module/Photos.php:790 ../../Zotlabs/Module/Photos.php:1329 -#: ../../Zotlabs/Module/Embedphotos.php:141 ../../include/widgets.php:1593 -msgid "View Photo" -msgstr "Voir la photo" - -#: ../../Zotlabs/Module/Photos.php:821 -#: ../../Zotlabs/Module/Embedphotos.php:157 ../../include/widgets.php:1610 -msgid "Edit Album" -msgstr "Modifier l'album" - -#: ../../Zotlabs/Module/Photos.php:868 -msgid "Permission denied. Access to this item may be restricted." -msgstr "Permission refusée. L'accès à cet élément peut avoir été restreint." - -#: ../../Zotlabs/Module/Photos.php:870 -msgid "Photo not available" -msgstr "Photo non disponible" - -#: ../../Zotlabs/Module/Photos.php:928 -msgid "Use as profile photo" -msgstr "Utiliser comme photo du profil" - -#: ../../Zotlabs/Module/Photos.php:929 -msgid "Use as cover photo" +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Software" msgstr "" -#: ../../Zotlabs/Module/Photos.php:936 -msgid "Private Photo" -msgstr "Photo privée" +#: ../../Zotlabs/Module/Pubsites.php:31 ../../Zotlabs/Module/Ratings.php:103 +#: ../../include/conversation.php:959 +msgid "Ratings" +msgstr "Evaluations" -#: ../../Zotlabs/Module/Photos.php:951 -msgid "View Full Size" -msgstr "Voir en taille réelle" +#: ../../Zotlabs/Module/Pubsites.php:38 +msgid "Rate" +msgstr "Evaluer" -#: ../../Zotlabs/Module/Photos.php:996 ../../Zotlabs/Module/Admin.php:1437 -#: ../../Zotlabs/Module/Tagrm.php:137 -msgid "Remove" -msgstr "Retirer" +#: ../../Zotlabs/Module/Rate.php:160 +msgid "Website:" +msgstr "Site web :" -#: ../../Zotlabs/Module/Photos.php:1030 -msgid "Edit photo" -msgstr "Modifier la photo" - -#: ../../Zotlabs/Module/Photos.php:1032 -msgid "Rotate CW (right)" -msgstr "Rotation horaire (droite)" - -#: ../../Zotlabs/Module/Photos.php:1033 -msgid "Rotate CCW (left)" -msgstr "Rotation anti-horaire (gauche)" - -#: ../../Zotlabs/Module/Photos.php:1036 -msgid "Enter a new album name" -msgstr "Entrer un nouveau nom d'album" - -#: ../../Zotlabs/Module/Photos.php:1037 -msgid "or select an existing one (doubleclick)" -msgstr "ou en sélectionner un existant (double-clic)" - -#: ../../Zotlabs/Module/Photos.php:1040 -msgid "Caption" -msgstr "Titre/légende" - -#: ../../Zotlabs/Module/Photos.php:1042 -msgid "Add a Tag" -msgstr "Ajouter une étiquette" - -#: ../../Zotlabs/Module/Photos.php:1046 -msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" -msgstr "Exemple : @marc, @Barbara_Jensen, @charles@exemple.com, #Ile_de_France, #marathon" - -#: ../../Zotlabs/Module/Photos.php:1049 -msgid "Flag as adult in album view" -msgstr "Marquer comme \"adulte\" dans l'affichage de l'album" - -#: ../../Zotlabs/Module/Photos.php:1068 ../../Zotlabs/Lib/ThreadItem.php:261 -msgid "I like this (toggle)" -msgstr "J'aime (oui/non)" - -#: ../../Zotlabs/Module/Photos.php:1069 ../../Zotlabs/Lib/ThreadItem.php:262 -msgid "I don't like this (toggle)" -msgstr "Je n'aime pas (oui/non)" - -#: ../../Zotlabs/Module/Photos.php:1071 ../../Zotlabs/Lib/ThreadItem.php:397 -#: ../../include/conversation.php:743 -msgid "Please wait" -msgstr "Merci de patienter" - -#: ../../Zotlabs/Module/Photos.php:1087 ../../Zotlabs/Module/Photos.php:1205 -#: ../../Zotlabs/Lib/ThreadItem.php:707 -msgid "This is you" -msgstr "C'est vous" - -#: ../../Zotlabs/Module/Photos.php:1089 ../../Zotlabs/Module/Photos.php:1207 -#: ../../Zotlabs/Lib/ThreadItem.php:709 ../../include/js_strings.php:6 -msgid "Comment" -msgstr "Commenter" - -#: ../../Zotlabs/Module/Photos.php:1105 ../../include/conversation.php:577 -msgctxt "title" -msgid "Likes" -msgstr "Aime" - -#: ../../Zotlabs/Module/Photos.php:1105 ../../include/conversation.php:577 -msgctxt "title" -msgid "Dislikes" -msgstr "N'aime pas" - -#: ../../Zotlabs/Module/Photos.php:1106 ../../include/conversation.php:578 -msgctxt "title" -msgid "Agree" -msgstr "D'accord" - -#: ../../Zotlabs/Module/Photos.php:1106 ../../include/conversation.php:578 -msgctxt "title" -msgid "Disagree" -msgstr "Pas d'accord" - -#: ../../Zotlabs/Module/Photos.php:1106 ../../include/conversation.php:578 -msgctxt "title" -msgid "Abstain" -msgstr "Abstention" - -#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:579 -msgctxt "title" -msgid "Attending" -msgstr "Participations" - -#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:579 -msgctxt "title" -msgid "Not attending" -msgstr "Non-participations" - -#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:579 -msgctxt "title" -msgid "Might attend" -msgstr "Participation possible" - -#: ../../Zotlabs/Module/Photos.php:1124 ../../Zotlabs/Module/Photos.php:1136 -#: ../../Zotlabs/Lib/ThreadItem.php:181 ../../Zotlabs/Lib/ThreadItem.php:193 -#: ../../include/conversation.php:1738 -msgid "View all" -msgstr "Voir tout" - -#: ../../Zotlabs/Module/Photos.php:1128 ../../Zotlabs/Lib/ThreadItem.php:185 -#: ../../include/taxonomy.php:403 ../../include/channel.php:1198 -#: ../../include/conversation.php:1762 -msgctxt "noun" -msgid "Like" -msgid_plural "Likes" -msgstr[0] "Aime" -msgstr[1] "Aime" - -#: ../../Zotlabs/Module/Photos.php:1133 ../../Zotlabs/Lib/ThreadItem.php:190 -#: ../../include/conversation.php:1765 -msgctxt "noun" -msgid "Dislike" -msgid_plural "Dislikes" -msgstr[0] "N'aime pas" -msgstr[1] "N'aime pas" - -#: ../../Zotlabs/Module/Photos.php:1233 -msgid "Photo Tools" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1242 -msgid "In This Photo:" -msgstr "Dans cette photo :" - -#: ../../Zotlabs/Module/Photos.php:1247 -msgid "Map" -msgstr "Carte" - -#: ../../Zotlabs/Module/Photos.php:1255 ../../Zotlabs/Lib/ThreadItem.php:386 -msgctxt "noun" -msgid "Likes" -msgstr "Aime" - -#: ../../Zotlabs/Module/Photos.php:1256 ../../Zotlabs/Lib/ThreadItem.php:387 -msgctxt "noun" -msgid "Dislikes" -msgstr "N'aime pas" - -#: ../../Zotlabs/Module/Photos.php:1261 ../../Zotlabs/Lib/ThreadItem.php:392 -#: ../../include/acl_selectors.php:283 -msgid "Close" -msgstr "Fermer" - -#: ../../Zotlabs/Module/Photos.php:1335 -msgid "View Album" -msgstr "Voir l'album" - -#: ../../Zotlabs/Module/Photos.php:1346 ../../Zotlabs/Module/Photos.php:1359 -#: ../../Zotlabs/Module/Photos.php:1360 -msgid "Recent Photos" -msgstr "Photos récentes" - -#: ../../Zotlabs/Module/Lockview.php:75 -msgid "Remote privacy information not available." -msgstr "Les informations distantes de confidentialité ne sont pas disponibles." - -#: ../../Zotlabs/Module/Lockview.php:96 -msgid "Visible to:" -msgstr "Visible par :" - -#: ../../Zotlabs/Module/Import_items.php:104 -msgid "Import completed" -msgstr "L'import est terminé." - -#: ../../Zotlabs/Module/Import_items.php:119 -msgid "Import Items" -msgstr "Importer" - -#: ../../Zotlabs/Module/Import_items.php:120 -msgid "" -"Use this form to import existing posts and content from an export file." -msgstr "Utiliser ce formulaire pour importer des publications et du contenu existant d'un fichier d'export." - -#: ../../Zotlabs/Module/Invite.php:29 -msgid "Total invitation limit exceeded." -msgstr "Limite du nombre total d'invitation dépassée." - -#: ../../Zotlabs/Module/Invite.php:53 +#: ../../Zotlabs/Module/Rate.php:163 #, php-format -msgid "%s : Not a valid email address." -msgstr "%s : adresse courriel invalide." +msgid "Remote Channel [%s] (not yet known on this site)" +msgstr "Canal distant [%s] (encore inconnu sur ce site)" -#: ../../Zotlabs/Module/Invite.php:63 -msgid "Please join us on $Projectname" -msgstr "Rejoignez-nous sur $Projectname" +#: ../../Zotlabs/Module/Rate.php:164 +msgid "Rating (this information is public)" +msgstr "Evaluation (cette information est publique)" -#: ../../Zotlabs/Module/Invite.php:74 -msgid "Invitation limit exceeded. Please contact your site administrator." -msgstr "Limite d'invitations dépassée. Merci de contacter l'administration de votre site." +#: ../../Zotlabs/Module/Rate.php:165 +msgid "Optionally explain your rating (this information is public)" +msgstr "Explication facultative de votre évaluation (cette information est publique)" -#: ../../Zotlabs/Module/Invite.php:79 -#, php-format -msgid "%s : Message delivery failed." -msgstr "%s : Échec de distribution du message." +#: ../../Zotlabs/Module/Ratings.php:73 +msgid "No ratings" +msgstr "Pas de note" -#: ../../Zotlabs/Module/Invite.php:83 -#, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "%d message envoyé." -msgstr[1] "%d messages envoyés." +#: ../../Zotlabs/Module/Ratings.php:104 +msgid "Rating: " +msgstr "Evaluation :" -#: ../../Zotlabs/Module/Invite.php:102 -msgid "You have no more invitations available" -msgstr "Vous ne disposez plus d'aucune invitation" +#: ../../Zotlabs/Module/Ratings.php:105 +msgid "Website: " +msgstr "Site web :" -#: ../../Zotlabs/Module/Invite.php:133 -msgid "Send invitations" -msgstr "Envoyer des invitations" - -#: ../../Zotlabs/Module/Invite.php:134 -msgid "Enter email addresses, one per line:" -msgstr "Entrez les adresses de courriel, une par ligne :" - -#: ../../Zotlabs/Module/Invite.php:135 ../../Zotlabs/Module/Mail.php:241 -msgid "Your message:" -msgstr "Votre message :" - -#: ../../Zotlabs/Module/Invite.php:136 -msgid "Please join my community on $Projectname." -msgstr "Rejoignez ma communauté sur $Projectname." - -#: ../../Zotlabs/Module/Invite.php:138 -msgid "You will need to supply this invitation code:" -msgstr "Vous devrez fournir le code suivant :" - -#: ../../Zotlabs/Module/Invite.php:139 -msgid "" -"1. Register at any $Projectname location (they are all inter-connected)" -msgstr "1. Enregistrez-vous sur n'importe quel serveur $Projectname (ils sont tous inter-connectés)" - -#: ../../Zotlabs/Module/Invite.php:141 -msgid "2. Enter my $Projectname network address into the site searchbar." -msgstr "2. Saisissez l'adresse de mon canal $Projectname dans la barre de recherche du site." - -#: ../../Zotlabs/Module/Invite.php:142 -msgid "or visit" -msgstr "ou rendez-vous sur" - -#: ../../Zotlabs/Module/Invite.php:144 -msgid "3. Click [Connect]" -msgstr "3. Cliquez sur [Ajouter]" - -#: ../../Zotlabs/Module/Locs.php:25 ../../Zotlabs/Module/Locs.php:54 -msgid "Location not found." -msgstr "Emplacement introuvable." - -#: ../../Zotlabs/Module/Locs.php:62 -msgid "Location lookup failed." -msgstr "Echec de la recherche de l'emplacement." - -#: ../../Zotlabs/Module/Locs.php:66 -msgid "" -"Please select another location to become primary before removing the primary" -" location." -msgstr "Merci de sélectionner un autre emplacement comme nouvel emplacement primaire avant de supprimer l'emplacement primaire actuel." - -#: ../../Zotlabs/Module/Locs.php:95 -msgid "Syncing locations" -msgstr "Synchronisation des emplacements" - -#: ../../Zotlabs/Module/Locs.php:105 -msgid "No locations found." -msgstr "Emplacement(s) introuvable." - -#: ../../Zotlabs/Module/Locs.php:116 -msgid "Manage Channel Locations" -msgstr "Gérer les emplacements des canaux" - -#: ../../Zotlabs/Module/Locs.php:119 -msgid "Primary" -msgstr "" - -#: ../../Zotlabs/Module/Locs.php:120 ../../Zotlabs/Module/Menu.php:113 -msgid "Drop" -msgstr "Supprimer" - -#: ../../Zotlabs/Module/Locs.php:122 -msgid "Sync Now" -msgstr "" - -#: ../../Zotlabs/Module/Locs.php:123 -msgid "Please wait several minutes between consecutive operations." -msgstr "Merci d'attendre plusieurs minutes entre opérations successives." - -#: ../../Zotlabs/Module/Locs.php:124 -msgid "" -"When possible, drop a location by logging into that website/hub and removing" -" your channel." -msgstr "Quand c'est possible, abandonnez un emplacement en vous connectant sur le site/hub et en supprimant votre canal." - -#: ../../Zotlabs/Module/Locs.php:125 -msgid "Use this form to drop the location if the hub is no longer operating." -msgstr "Utilisez ce formulaire pour abandonner l'emplacement si le hub n'est plus actif." - -#: ../../Zotlabs/Module/Magic.php:71 -msgid "Hub not found." -msgstr "Hub introuvable." - -#: ../../Zotlabs/Module/Mail.php:38 -msgid "Unable to lookup recipient." -msgstr "Impossible de localiser le destinataire." - -#: ../../Zotlabs/Module/Mail.php:45 -msgid "Unable to communicate with requested channel." -msgstr "Impossible de communiquer avec le canal demandé." - -#: ../../Zotlabs/Module/Mail.php:52 -msgid "Cannot verify requested channel." -msgstr "Impossible de vérifier le canal demandé." - -#: ../../Zotlabs/Module/Mail.php:70 -msgid "Selected channel has private message restrictions. Send failed." -msgstr "Le canal choisi a des restrictions quant aux messages privés. L'envoi a échoué." - -#: ../../Zotlabs/Module/Mail.php:135 -msgid "Messages" -msgstr "Messages" - -#: ../../Zotlabs/Module/Mail.php:170 -msgid "Message recalled." -msgstr "Message rappelé." - -#: ../../Zotlabs/Module/Mail.php:183 -msgid "Conversation removed." -msgstr "Conversation supprimée." - -#: ../../Zotlabs/Module/Mail.php:198 ../../Zotlabs/Module/Mail.php:307 -msgid "Expires YYYY-MM-DD HH:MM" -msgstr "Expire le YYYY-MM-DD à HH:MM" - -#: ../../Zotlabs/Module/Mail.php:226 -msgid "Requested channel is not in this network" -msgstr "Le canal demandé n'est pas sur ce réseau" - -#: ../../Zotlabs/Module/Mail.php:234 -msgid "Send Private Message" -msgstr "Envoyer un message privé" - -#: ../../Zotlabs/Module/Mail.php:235 ../../Zotlabs/Module/Mail.php:360 -msgid "To:" -msgstr "À :" - -#: ../../Zotlabs/Module/Mail.php:238 ../../Zotlabs/Module/Mail.php:362 -msgid "Subject:" -msgstr "Objet :" - -#: ../../Zotlabs/Module/Mail.php:243 ../../Zotlabs/Module/Mail.php:368 -#: ../../include/conversation.php:1231 -msgid "Attach file" -msgstr "Joindre un fichier" - -#: ../../Zotlabs/Module/Mail.php:245 -msgid "Send" -msgstr "Envoyer" - -#: ../../Zotlabs/Module/Mail.php:248 ../../Zotlabs/Module/Mail.php:373 -#: ../../include/conversation.php:1266 -msgid "Set expiration date" -msgstr "Définir la date d'expiration" - -#: ../../Zotlabs/Module/Mail.php:332 -msgid "Delete message" -msgstr "Supprimer le message" - -#: ../../Zotlabs/Module/Mail.php:333 -msgid "Delivery report" -msgstr "Rapport de distribution" - -#: ../../Zotlabs/Module/Mail.php:334 -msgid "Recall message" -msgstr "Rappeler le message" - -#: ../../Zotlabs/Module/Mail.php:336 -msgid "Message has been recalled." -msgstr "Le message a été rappelé." - -#: ../../Zotlabs/Module/Mail.php:353 -msgid "Delete Conversation" -msgstr "Supprimer la conversation" - -#: ../../Zotlabs/Module/Mail.php:355 -msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." -msgstr "Aucune communication sécurisée n'est possible. Vous pourrez peut-être répondre depuis la page de profil de l'émetteur." - -#: ../../Zotlabs/Module/Mail.php:359 -msgid "Send Reply" -msgstr "Envoyer la réponse" - -#: ../../Zotlabs/Module/Mail.php:364 -#, php-format -msgid "Your message for %s (%s):" -msgstr "Votre message pour %s (%s) :" - -#: ../../Zotlabs/Module/Manage.php:136 -#: ../../Zotlabs/Module/New_channel.php:121 -#, php-format -msgid "You have created %1$.0f of %2$.0f allowed channels." -msgstr "Vous avez créé %1$.0f des %2$.0f canaux autorisés." - -#: ../../Zotlabs/Module/Manage.php:143 -msgid "Create a new channel" -msgstr "Créer un nouveau canal" - -#: ../../Zotlabs/Module/Manage.php:164 ../../Zotlabs/Lib/Apps.php:214 -#: ../../include/nav.php:208 -msgid "Channel Manager" -msgstr "Gérer les canaux" - -#: ../../Zotlabs/Module/Manage.php:165 -msgid "Current Channel" -msgstr "Canal actif" - -#: ../../Zotlabs/Module/Manage.php:167 -msgid "Switch to one of your channels by selecting it." -msgstr "Pour changer de canal, sélectionnez-en un" - -#: ../../Zotlabs/Module/Manage.php:168 -msgid "Default Channel" -msgstr "Canal par défaut" - -#: ../../Zotlabs/Module/Manage.php:169 -msgid "Make Default" -msgstr "Définir comme défaut" - -#: ../../Zotlabs/Module/Manage.php:172 -#, php-format -msgid "%d new messages" -msgstr "%d nouveaux messages" - -#: ../../Zotlabs/Module/Manage.php:173 -#, php-format -msgid "%d new introductions" -msgstr "%d nouvelles présentations" - -#: ../../Zotlabs/Module/Manage.php:175 -msgid "Delegated Channel" -msgstr "" - -#: ../../Zotlabs/Module/Menu.php:49 -msgid "Unable to update menu." -msgstr "Impossible de mettre le menu à jour." - -#: ../../Zotlabs/Module/Menu.php:60 -msgid "Unable to create menu." -msgstr "Impossible de créer le menu." - -#: ../../Zotlabs/Module/Menu.php:98 ../../Zotlabs/Module/Menu.php:110 -msgid "Menu Name" -msgstr "Nom du menu" - -#: ../../Zotlabs/Module/Menu.php:98 -msgid "Unique name (not visible on webpage) - required" -msgstr "Nom unique (non visible sur la page web) - requis" - -#: ../../Zotlabs/Module/Menu.php:99 ../../Zotlabs/Module/Menu.php:111 -msgid "Menu Title" -msgstr "Titre du menu" - -#: ../../Zotlabs/Module/Menu.php:99 -msgid "Visible on webpage - leave empty for no title" -msgstr "Visible pour la page web - laisser vide pour qu'il n'y ait pas de titre" - -#: ../../Zotlabs/Module/Menu.php:100 -msgid "Allow Bookmarks" -msgstr "Autoriser l'usage de favoris" - -#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 -msgid "Menu may be used to store saved bookmarks" -msgstr "Le menu pourra être utilisé pour stocker des favoris" - -#: ../../Zotlabs/Module/Menu.php:101 ../../Zotlabs/Module/Menu.php:159 -msgid "Submit and proceed" -msgstr "Valider et continuer" - -#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2239 -msgid "Menus" -msgstr "Menus" - -#: ../../Zotlabs/Module/Menu.php:117 -msgid "Bookmarks allowed" -msgstr "Favoris autorisés" - -#: ../../Zotlabs/Module/Menu.php:119 -msgid "Delete this menu" -msgstr "Supprimer ce menu" - -#: ../../Zotlabs/Module/Menu.php:120 ../../Zotlabs/Module/Menu.php:154 -msgid "Edit menu contents" -msgstr "Modifier le contenu du menu" - -#: ../../Zotlabs/Module/Menu.php:121 -msgid "Edit this menu" -msgstr "Modifier ce menu" - -#: ../../Zotlabs/Module/Menu.php:136 -msgid "Menu could not be deleted." -msgstr "Impossible de supprimer le menu." - -#: ../../Zotlabs/Module/Menu.php:144 ../../Zotlabs/Module/Mitem.php:28 -msgid "Menu not found." -msgstr "Menu introuvable." - -#: ../../Zotlabs/Module/Menu.php:149 -msgid "Edit Menu" -msgstr "Modifier le menu" - -#: ../../Zotlabs/Module/Menu.php:153 -msgid "Add or remove entries to this menu" -msgstr "Ajouter/supprimer des entrées à ce menu" - -#: ../../Zotlabs/Module/Menu.php:155 -msgid "Menu name" -msgstr "Nom du menu" - -#: ../../Zotlabs/Module/Menu.php:155 -msgid "Must be unique, only seen by you" -msgstr "Doit être unique, ne sera vu que par vous" - -#: ../../Zotlabs/Module/Menu.php:156 -msgid "Menu title" -msgstr "Titre du menu" - -#: ../../Zotlabs/Module/Menu.php:156 -msgid "Menu title as seen by others" -msgstr "Titre du menu tel que vu par les visiteurs" - -#: ../../Zotlabs/Module/Menu.php:157 -msgid "Allow bookmarks" -msgstr "Autoriser l'usage de favoris" - -#: ../../Zotlabs/Module/Menu.php:166 ../../Zotlabs/Module/Mitem.php:120 -#: ../../Zotlabs/Module/Xchan.php:41 -msgid "Not found." -msgstr "Introuvable." - -#: ../../Zotlabs/Module/Lostpass.php:19 -msgid "No valid account found." -msgstr "Aucun compte valide trouvé." - -#: ../../Zotlabs/Module/Lostpass.php:33 -msgid "Password reset request issued. Check your email." -msgstr "Demande de réinitialisation du mot de passe envoyée. Vérifiez vos courriels." - -#: ../../Zotlabs/Module/Lostpass.php:39 ../../Zotlabs/Module/Lostpass.php:107 -#, php-format -msgid "Site Member (%s)" -msgstr "Membre du site (%s)" - -#: ../../Zotlabs/Module/Lostpass.php:44 -#, php-format -msgid "Password reset requested at %s" -msgstr "Demande de réinitialisation du mot de passe sur %s" - -#: ../../Zotlabs/Module/Lostpass.php:67 -msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." -msgstr "La demande n'a pas pu être vérifiée. (Peut-être l'avez vous déjà utilisée.) La réinitialisation a échoué." - -#: ../../Zotlabs/Module/Lostpass.php:90 ../../boot.php:1712 -msgid "Password Reset" -msgstr "Réinitialiser le mot de passe" - -#: ../../Zotlabs/Module/Lostpass.php:91 -msgid "Your password has been reset as requested." -msgstr "Votre mot de passe a bien été réinitialisé." - -#: ../../Zotlabs/Module/Lostpass.php:92 -msgid "Your new password is" -msgstr "Votre nouveau mot de passe est" - -#: ../../Zotlabs/Module/Lostpass.php:93 -msgid "Save or copy your new password - and then" -msgstr "Enregistrez ou copiez votre nouveau mot de passe, puis" - -#: ../../Zotlabs/Module/Lostpass.php:94 -msgid "click here to login" -msgstr "cliquez ici pour vous connecter" - -#: ../../Zotlabs/Module/Lostpass.php:95 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." -msgstr "Votre mot de passe peut être changé depuis la page des Paramètres une fois connecté." - -#: ../../Zotlabs/Module/Lostpass.php:112 -#, php-format -msgid "Your password has changed at %s" -msgstr "Votre mot de passe de %s a été changé" - -#: ../../Zotlabs/Module/Lostpass.php:127 -msgid "Forgot your Password?" -msgstr "Mot de passe oublié ?" - -#: ../../Zotlabs/Module/Lostpass.php:128 -msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." -msgstr "Saisissez votre adresse de courriel, et validez, pour réinitialiser votre mot de passe. Vérifiez ensuite votre boîte aux lettres pour la suite des instructions." - -#: ../../Zotlabs/Module/Lostpass.php:129 -msgid "Email Address" -msgstr "Adresse de courriel" - -#: ../../Zotlabs/Module/Lostpass.php:130 -msgid "Reset" -msgstr "Réinitialiser" - -#: ../../Zotlabs/Module/Mood.php:67 ../../include/conversation.php:260 -#, php-format -msgctxt "mood" -msgid "%1$s is %2$s" -msgstr "%1$s est %2$s" - -#: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Lib/Apps.php:227 -msgid "Mood" -msgstr "Humeur" - -#: ../../Zotlabs/Module/Mood.php:136 -msgid "Set your current mood and tell your friends" -msgstr "Indiquez votre humeur du moment à vos amis" - -#: ../../Zotlabs/Module/Network.php:94 -msgid "No such group" -msgstr "Groupe introuvable" - -#: ../../Zotlabs/Module/Network.php:134 -msgid "No such channel" -msgstr "Canal introuvable" - -#: ../../Zotlabs/Module/Network.php:139 -msgid "forum" -msgstr "forum" - -#: ../../Zotlabs/Module/Network.php:151 -msgid "Search Results For:" -msgstr "Résultats de recherche pour :" - -#: ../../Zotlabs/Module/Network.php:215 -msgid "Privacy group is empty" -msgstr "Groupe d'accès vide" - -#: ../../Zotlabs/Module/Network.php:224 -msgid "Privacy group: " -msgstr "Groupe d'accès :" - -#: ../../Zotlabs/Module/Network.php:250 -msgid "Invalid connection." -msgstr "Contact non valide." - -#: ../../Zotlabs/Module/Notify.php:57 -#: ../../Zotlabs/Module/Notifications.php:98 -msgid "No more system notifications." -msgstr "Pas d'autre notification du système." - -#: ../../Zotlabs/Module/Notify.php:61 -#: ../../Zotlabs/Module/Notifications.php:102 -msgid "System Notifications" -msgstr "Notifications du système" - -#: ../../Zotlabs/Module/Match.php:26 -msgid "Profile Match" -msgstr "Profils similaires" - -#: ../../Zotlabs/Module/Match.php:35 -msgid "No keywords to match. Please add keywords to your default profile." -msgstr "Aucun mot-clef à comparer. Merci d'ajouter des mots-clefs à votre profil par défaut." - -#: ../../Zotlabs/Module/Match.php:67 -msgid "is interested in:" -msgstr "s'intéresse à :" - -#: ../../Zotlabs/Module/Match.php:74 -msgid "No matches" -msgstr "Pas de correspondance" - -#: ../../Zotlabs/Module/Channel.php:40 -msgid "Posts and comments" -msgstr "" - -#: ../../Zotlabs/Module/Channel.php:41 -msgid "Only posts" -msgstr "" - -#: ../../Zotlabs/Module/Channel.php:101 -msgid "Insufficient permissions. Request redirected to profile page." -msgstr "Permissions insuffisantes. Demande redirigée vers la page du profil." - -#: ../../Zotlabs/Module/Mitem.php:52 -msgid "Unable to create element." -msgstr "Impossible de créer l'entrée." - -#: ../../Zotlabs/Module/Mitem.php:76 -msgid "Unable to update menu element." -msgstr "Impossible de mettre à jour l'entrée de menu." - -#: ../../Zotlabs/Module/Mitem.php:92 -msgid "Unable to add menu element." -msgstr "Impossible d'ajouter l'entrée de menu." - -#: ../../Zotlabs/Module/Mitem.php:153 ../../Zotlabs/Module/Mitem.php:226 -msgid "Menu Item Permissions" -msgstr "Permissions de l'entrée de menu" - -#: ../../Zotlabs/Module/Mitem.php:154 ../../Zotlabs/Module/Mitem.php:227 -#: ../../Zotlabs/Module/Settings.php:1163 -msgid "(click to open/close)" -msgstr "(cliquer pour ouvrir/fermer)" - -#: ../../Zotlabs/Module/Mitem.php:156 ../../Zotlabs/Module/Mitem.php:172 -msgid "Link Name" -msgstr "Nom du lien" - -#: ../../Zotlabs/Module/Mitem.php:157 ../../Zotlabs/Module/Mitem.php:231 -msgid "Link or Submenu Target" -msgstr "Lien ou sous-menu cible" - -#: ../../Zotlabs/Module/Mitem.php:157 -msgid "Enter URL of the link or select a menu name to create a submenu" -msgstr "Entrez l'URL du lien ou sélectionnez un nom de menu pour créer un sous-menu" - -#: ../../Zotlabs/Module/Mitem.php:158 ../../Zotlabs/Module/Mitem.php:232 -msgid "Use magic-auth if available" -msgstr "Utiliser l'authentification distante, quand disponible" - -#: ../../Zotlabs/Module/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:233 -msgid "Open link in new window" -msgstr "Ouvrir le lien dans une nouvelle fenêtre" - -#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:234 -msgid "Order in list" -msgstr "Ordre dans la liste" - -#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:234 -msgid "Higher numbers will sink to bottom of listing" -msgstr "Les nombres les plus élevés seront au bas de la liste" - -#: ../../Zotlabs/Module/Mitem.php:161 -msgid "Submit and finish" -msgstr "Vadiler et terminer" - -#: ../../Zotlabs/Module/Mitem.php:162 -msgid "Submit and continue" -msgstr "Valider et continuer" - -#: ../../Zotlabs/Module/Mitem.php:170 -msgid "Menu:" -msgstr "Menu :" - -#: ../../Zotlabs/Module/Mitem.php:173 -msgid "Link Target" -msgstr "Cible du lien" - -#: ../../Zotlabs/Module/Mitem.php:176 -msgid "Edit menu" -msgstr "Modifier le menu" - -#: ../../Zotlabs/Module/Mitem.php:179 -msgid "Edit element" -msgstr "Modifier l'entrée" - -#: ../../Zotlabs/Module/Mitem.php:180 -msgid "Drop element" -msgstr "Supprimer l'entrée" - -#: ../../Zotlabs/Module/Mitem.php:181 -msgid "New element" -msgstr "Nouvelle entrée" - -#: ../../Zotlabs/Module/Mitem.php:182 -msgid "Edit this menu container" -msgstr "Éditer ce bloc de menu" - -#: ../../Zotlabs/Module/Mitem.php:183 -msgid "Add menu element" -msgstr "Ajouter une entrée au menu" - -#: ../../Zotlabs/Module/Mitem.php:184 -msgid "Delete this menu item" -msgstr "Supprimer cette entrée du menu" - -#: ../../Zotlabs/Module/Mitem.php:185 -msgid "Edit this menu item" -msgstr "Modifier cette entrée du menu" - -#: ../../Zotlabs/Module/Mitem.php:202 -msgid "Menu item not found." -msgstr "Entrée de menu introuvable." - -#: ../../Zotlabs/Module/Mitem.php:215 -msgid "Menu item deleted." -msgstr "Entrée de menu supprimée." - -#: ../../Zotlabs/Module/Mitem.php:217 -msgid "Menu item could not be deleted." -msgstr "Impossible de supprimer l'entrée de menu." - -#: ../../Zotlabs/Module/Mitem.php:224 -msgid "Edit Menu Element" -msgstr "Modifier l'entrée de menu" - -#: ../../Zotlabs/Module/Mitem.php:230 -msgid "Link text" -msgstr "Texte du lien" +#: ../../Zotlabs/Module/Ratings.php:107 +msgid "Description: " +msgstr "Description :" #: ../../Zotlabs/Module/Admin.php:77 msgid "Theme settings updated." @@ -3573,11 +3666,11 @@ msgstr "" msgid "Site settings updated." msgstr "Paramètres du site sauvegardés." -#: ../../Zotlabs/Module/Admin.php:400 ../../include/text.php:2829 +#: ../../Zotlabs/Module/Admin.php:400 ../../include/text.php:2841 msgid "Default" msgstr "Défaut" -#: ../../Zotlabs/Module/Admin.php:410 ../../Zotlabs/Module/Settings.php:899 +#: ../../Zotlabs/Module/Admin.php:410 ../../Zotlabs/Module/Settings.php:798 msgid "mobile" msgstr "mobile" @@ -3609,7 +3702,7 @@ msgstr "Mon site est gratuit uniquement" msgid "My site offers free accounts with optional paid upgrades" msgstr "Mon site offre des comptes gratuits avec des améliorations payantes facultatives" -#: ../../Zotlabs/Module/Admin.php:491 ../../include/widgets.php:1476 +#: ../../Zotlabs/Module/Admin.php:491 ../../include/widgets.php:1382 msgid "Site" msgstr "Site" @@ -3897,12 +3990,12 @@ msgid "0 for no expiration of imported content" msgstr "0 pour ne pas expirer le contenu importé" #: ../../Zotlabs/Module/Admin.php:677 ../../Zotlabs/Module/Admin.php:678 -#: ../../Zotlabs/Module/Settings.php:823 +#: ../../Zotlabs/Module/Settings.php:722 msgid "Off" msgstr "Inactif" #: ../../Zotlabs/Module/Admin.php:677 ../../Zotlabs/Module/Admin.php:678 -#: ../../Zotlabs/Module/Settings.php:823 +#: ../../Zotlabs/Module/Settings.php:722 msgid "On" msgstr "Actif" @@ -3959,7 +4052,7 @@ msgid "" "embedded content from that site is explicitly blocked." msgstr "" -#: ../../Zotlabs/Module/Admin.php:756 ../../include/widgets.php:1479 +#: ../../Zotlabs/Module/Admin.php:756 ../../include/widgets.php:1385 msgid "Security" msgstr "Sécurité" @@ -4127,7 +4220,7 @@ msgid "Account '%s' unblocked" msgstr "Compte '%s' débloqué" #: ../../Zotlabs/Module/Admin.php:1031 ../../Zotlabs/Module/Admin.php:1044 -#: ../../include/widgets.php:1477 +#: ../../include/widgets.php:1383 msgid "Accounts" msgstr "Comptes" @@ -4233,7 +4326,7 @@ msgstr "Code autorisé pour le canal '%s'" msgid "Channel '%s' code disallowed" msgstr "Code interdit pour le canal '%s'" -#: ../../Zotlabs/Module/Admin.php:1210 ../../include/widgets.php:1478 +#: ../../Zotlabs/Module/Admin.php:1210 ../../include/widgets.php:1384 msgid "Channels" msgstr "Canaux" @@ -4253,7 +4346,7 @@ msgstr "Autoriser le code" msgid "Disallow Code" msgstr "Interdire le code" -#: ../../Zotlabs/Module/Admin.php:1218 ../../include/conversation.php:1626 +#: ../../Zotlabs/Module/Admin.php:1218 ../../include/conversation.php:1611 msgid "Channel" msgstr "Canal" @@ -4292,7 +4385,7 @@ msgid "Enable" msgstr "Activer" #: ../../Zotlabs/Module/Admin.php:1330 ../../Zotlabs/Module/Admin.php:1420 -#: ../../include/widgets.php:1481 +#: ../../include/widgets.php:1387 msgid "Plugins" msgstr "Greffons" @@ -4301,8 +4394,8 @@ msgid "Toggle" msgstr "(Dés)activer" #: ../../Zotlabs/Module/Admin.php:1332 ../../Zotlabs/Module/Admin.php:1615 -#: ../../Zotlabs/Lib/Apps.php:216 ../../include/nav.php:210 -#: ../../include/widgets.php:647 +#: ../../Zotlabs/Lib/Apps.php:215 ../../include/widgets.php:638 +#: ../../include/nav.php:208 msgid "Settings" msgstr "Paramètres" @@ -4358,7 +4451,7 @@ msgstr "" msgid "Install new repo" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1405 ../../Zotlabs/Lib/Apps.php:334 +#: ../../Zotlabs/Module/Admin.php:1405 ../../Zotlabs/Lib/Apps.php:330 msgid "Install" msgstr "Installer" @@ -4374,8 +4467,8 @@ msgstr "" msgid "Install a New Plugin Repository" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1435 ../../Zotlabs/Module/Settings.php:72 -#: ../../Zotlabs/Module/Settings.php:670 ../../Zotlabs/Lib/Apps.php:334 +#: ../../Zotlabs/Module/Admin.php:1435 ../../Zotlabs/Module/Settings.php:77 +#: ../../Zotlabs/Module/Settings.php:616 ../../Zotlabs/Lib/Apps.php:330 msgid "Update" msgstr "Mise à jour" @@ -4392,7 +4485,7 @@ msgid "Screenshot" msgstr "Capture d'écran" #: ../../Zotlabs/Module/Admin.php:1613 ../../Zotlabs/Module/Admin.php:1647 -#: ../../include/widgets.php:1482 +#: ../../include/widgets.php:1388 msgid "Themes" msgstr "Thèmes" @@ -4408,8 +4501,8 @@ msgstr "[Non maintenu]" msgid "Log settings updated." msgstr "Paramètres du journal mis à jour." -#: ../../Zotlabs/Module/Admin.php:1732 ../../include/widgets.php:1503 -#: ../../include/widgets.php:1513 +#: ../../Zotlabs/Module/Admin.php:1732 ../../include/widgets.php:1409 +#: ../../include/widgets.php:1419 msgid "Logs" msgstr "Journaux" @@ -4475,7 +4568,7 @@ msgstr "Définition du champ introuvable" msgid "Edit Profile Field" msgstr "Modifier le champ de profil" -#: ../../Zotlabs/Module/Admin.php:2106 ../../include/widgets.php:1484 +#: ../../Zotlabs/Module/Admin.php:2106 ../../include/widgets.php:1390 msgid "Profile Fields" msgstr "Champs de profil" @@ -4503,384 +4596,57 @@ msgstr "Champs personnalisés" msgid "Create Custom Field" msgstr "Créer un champ personnalisé" -#: ../../Zotlabs/Module/New_channel.php:128 -#: ../../Zotlabs/Module/Register.php:231 -msgid "Name or caption" -msgstr "Nom ou libellé" +#: ../../Zotlabs/Module/Appman.php:37 ../../Zotlabs/Module/Appman.php:53 +msgid "App installed." +msgstr "Application installée." -#: ../../Zotlabs/Module/New_channel.php:128 -#: ../../Zotlabs/Module/Register.php:231 -msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\"" -msgstr "Exemples : \"Jérôme Dutilleul\", \"Louise et ses chevaux\", \"Football\", \"Club d'aéromodélisme\"" +#: ../../Zotlabs/Module/Appman.php:46 +msgid "Malformed app." +msgstr "Erreur de l'application - Malformée." -#: ../../Zotlabs/Module/New_channel.php:130 -#: ../../Zotlabs/Module/Register.php:233 -msgid "Choose a short nickname" -msgstr "Choisissez un alias" +#: ../../Zotlabs/Module/Appman.php:104 +msgid "Embed code" +msgstr "Imbriquer le code" -#: ../../Zotlabs/Module/New_channel.php:130 -#: ../../Zotlabs/Module/Register.php:233 -#, php-format -msgid "" -"Your nickname will be used to create an easy to remember channel address " -"e.g. nickname%s" -msgstr "Votre pseudo sera utilisé pour créer une adresse de canal facile à mémoriser, par ex. pseudo%s" +#: ../../Zotlabs/Module/Appman.php:110 ../../include/widgets.php:107 +msgid "Edit App" +msgstr "Modifier l'application" -#: ../../Zotlabs/Module/New_channel.php:132 -#: ../../Zotlabs/Module/Register.php:235 -msgid "Channel role and privacy" -msgstr "Rôle et confidentialité du canal" +#: ../../Zotlabs/Module/Appman.php:110 +msgid "Create App" +msgstr "Créer une application" -#: ../../Zotlabs/Module/New_channel.php:132 -#: ../../Zotlabs/Module/Register.php:235 -msgid "Select a channel role with your privacy requirements." -msgstr "Sélectionner un rôle de canal adapté à vos besoins de confidentialité." +#: ../../Zotlabs/Module/Appman.php:115 +msgid "Name of app" +msgstr "Nom de l'application" -#: ../../Zotlabs/Module/New_channel.php:132 -#: ../../Zotlabs/Module/Register.php:235 -msgid "Read more about roles" -msgstr "En savoir plus sur les rôles" +#: ../../Zotlabs/Module/Appman.php:116 +msgid "Location (URL) of app" +msgstr "Emplacement (URL) de l'application" -#: ../../Zotlabs/Module/New_channel.php:135 -msgid "Create Channel" -msgstr "Créer le canal" +#: ../../Zotlabs/Module/Appman.php:118 +msgid "Photo icon URL" +msgstr "URL de l'icône à utiliser pour cette photo" -#: ../../Zotlabs/Module/New_channel.php:136 -msgid "" -"A channel is your identity on this network. It can represent a person, a " -"blog, or a forum to name a few. Channels can make connections with other " -"channels to share information with highly detailed permissions." -msgstr "Un canal est votre identité sur ce réseau. Il peut représenter une personne, un blog, ou un forum par exemple. Les canaux peuvent entrer en contact les uns avec les autres pour partager des informations avec des permissions d'accès très fines." +#: ../../Zotlabs/Module/Appman.php:118 +msgid "80 x 80 pixels - optional" +msgstr "80 x 80 pixels - facultatif" -#: ../../Zotlabs/Module/New_channel.php:137 -msgid "" -"or import an existing channel from another location." -msgstr "ou importer un canal existant d'un autre serveur." - -#: ../../Zotlabs/Module/Ping.php:265 -msgid "sent you a private message" -msgstr "vous a envoyé un message privé" - -#: ../../Zotlabs/Module/Ping.php:313 -msgid "added your channel" -msgstr "a ajouté votre canal" - -#: ../../Zotlabs/Module/Ping.php:323 -msgid "g A l F d" -msgstr "g A l F d" - -#: ../../Zotlabs/Module/Ping.php:346 -msgid "[today]" -msgstr "[aujourd'hui]" - -#: ../../Zotlabs/Module/Ping.php:355 -msgid "posted an event" -msgstr "a publié un événement" - -#: ../../Zotlabs/Module/Notifications.php:30 -msgid "Invalid request identifier." -msgstr "Identifiant de requête invalide." - -#: ../../Zotlabs/Module/Notifications.php:39 -msgid "Discard" -msgstr "Annuler" - -#: ../../Zotlabs/Module/Notifications.php:103 ../../include/nav.php:193 -msgid "Mark all system notifications seen" -msgstr "Marquer toutes les notifications système comme vues" - -#: ../../Zotlabs/Module/Poke.php:168 ../../Zotlabs/Lib/Apps.php:228 -#: ../../include/conversation.php:963 -msgid "Poke" -msgstr "Tapoter" - -#: ../../Zotlabs/Module/Poke.php:169 -msgid "Poke somebody" -msgstr "Taquiner quelqu'un" - -#: ../../Zotlabs/Module/Poke.php:172 -msgid "Poke/Prod" -msgstr "Tapoter/Encourager" - -#: ../../Zotlabs/Module/Poke.php:173 -msgid "Poke, prod or do other things to somebody" -msgstr "Taquiner, pousser ou faire autre chose à quelqu'un" - -#: ../../Zotlabs/Module/Poke.php:180 -msgid "Recipient" -msgstr "Destinataire" - -#: ../../Zotlabs/Module/Poke.php:181 -msgid "Choose what you wish to do to recipient" -msgstr "Choisir ce que vous voulez faire au destinataire" - -#: ../../Zotlabs/Module/Poke.php:184 ../../Zotlabs/Module/Poke.php:185 -msgid "Make this post private" -msgstr "Rendre cette publication privée" - -#: ../../Zotlabs/Module/Oexchange.php:27 -msgid "Unable to find your hub." -msgstr "Impossible de trouver votre hub." - -#: ../../Zotlabs/Module/Oexchange.php:41 -msgid "Post successful." -msgstr "Publication réussie." - -#: ../../Zotlabs/Module/Openid.php:30 -msgid "OpenID protocol error. No ID returned." -msgstr "Erreur du protocole OpenID. Pas d'ID retourné." - -#: ../../Zotlabs/Module/Openid.php:193 ../../include/auth.php:285 -msgid "Login failed." -msgstr "Échec de la connexion." - -#: ../../Zotlabs/Module/Profperm.php:34 ../../Zotlabs/Module/Profperm.php:63 -msgid "Invalid profile identifier." -msgstr "Identifiant de profil invalide." - -#: ../../Zotlabs/Module/Profperm.php:115 -msgid "Profile Visibility Editor" -msgstr "Éditeur de visibilité de profil" - -#: ../../Zotlabs/Module/Profperm.php:117 ../../include/channel.php:1290 -msgid "Profile" -msgstr "Profil" - -#: ../../Zotlabs/Module/Profperm.php:119 -msgid "Click on a contact to add or remove." -msgstr "Cliquer sur un contact pour l'ajouter ou le retirer." - -#: ../../Zotlabs/Module/Profperm.php:128 -msgid "Visible To" -msgstr "Visible par" - -#: ../../Zotlabs/Module/Pconfig.php:26 ../../Zotlabs/Module/Pconfig.php:59 -msgid "This setting requires special processing and editing has been blocked." -msgstr "Ce paramètre nécessité un traitement spécial, les modifications ont été bloquées." - -#: ../../Zotlabs/Module/Pconfig.php:48 -msgid "Configuration Editor" -msgstr "Editeur de configuration" - -#: ../../Zotlabs/Module/Pconfig.php:49 -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 "Attention :modifier certains paramètres peut rendre votre canal inutilisable. Merci d'ignorer cette page à moins d'être suffisamment à l'aise de savoir comment utiliser correctement cette fonctionnalité." - -#: ../../Zotlabs/Module/Probe.php:28 ../../Zotlabs/Module/Probe.php:32 -#, php-format -msgid "Fetching URL returns error: %1$s" -msgstr "Récupération d'URL échouée : %1$s" - -#: ../../Zotlabs/Module/Siteinfo.php:19 -#, php-format -msgid "Version %s" -msgstr "Version %s" - -#: ../../Zotlabs/Module/Siteinfo.php:34 -msgid "Installed plugins/addons/apps:" -msgstr "Greffons/extensions/applications installés :" - -#: ../../Zotlabs/Module/Siteinfo.php:36 -msgid "No installed plugins/addons/apps" -msgstr "Aucun greffon/extension/application installé" - -#: ../../Zotlabs/Module/Siteinfo.php:49 -msgid "" -"This is a hub of $Projectname - a global cooperative network of " -"decentralized privacy enhanced websites." -msgstr "Ceci est un serveur $Projectname - un réseau collaboratif mondial de serveurs décentralisés à la confidentialité améliorée." - -#: ../../Zotlabs/Module/Siteinfo.php:51 -msgid "Tag: " -msgstr "Étiquette :" - -#: ../../Zotlabs/Module/Siteinfo.php:53 -msgid "Last background fetch: " -msgstr "Dernière récupération en tâche de fond :" - -#: ../../Zotlabs/Module/Siteinfo.php:55 -msgid "Current load average: " -msgstr "Charge moyenne actuelle :" - -#: ../../Zotlabs/Module/Siteinfo.php:58 -msgid "Running at web location" -msgstr "Tourne à l'adresse internet" - -#: ../../Zotlabs/Module/Siteinfo.php:59 -msgid "" -"Please visit hubzilla.org to learn more " -"about $Projectname." -msgstr "Merci de visiter hubzilla.org pour en apprendre davantage sur $Projectname." - -#: ../../Zotlabs/Module/Siteinfo.php:60 -msgid "Bug reports and issues: please visit" -msgstr "Pour remonter bogues et problèmes, merci de visiter" - -#: ../../Zotlabs/Module/Siteinfo.php:62 -msgid "$projectname issues" -msgstr "Problèmes $projectname" - -#: ../../Zotlabs/Module/Siteinfo.php:63 -msgid "" -"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot " -"com" -msgstr "Suggestions, demandes, etc. - merci de vous adresser à \"redmatrix\" à librelist - point com" - -#: ../../Zotlabs/Module/Siteinfo.php:65 -msgid "Site Administrators" -msgstr "Administrateurs du site" - -#: ../../Zotlabs/Module/Rmagic.php:44 -msgid "" -"We encountered a problem while logging in with the OpenID you provided. " -"Please check the correct spelling of the ID." -msgstr "Nous avons rencontré un problème avec l'OpenID que vous nous avez fourni. Merci de vérifier que l'ID est correctement saisi." - -#: ../../Zotlabs/Module/Rmagic.php:44 -msgid "The error message was:" -msgstr "Le message d'erreur était :" - -#: ../../Zotlabs/Module/Rmagic.php:48 -msgid "Authentication failed." -msgstr "Échec de l'authentification." - -#: ../../Zotlabs/Module/Rmagic.php:88 -msgid "Remote Authentication" -msgstr "Authentification distante" - -#: ../../Zotlabs/Module/Rmagic.php:89 -msgid "Enter your channel address (e.g. channel@example.com)" -msgstr "Entrez l'adresse de votre canal (par ex. moncanal@monsite.com)" - -#: ../../Zotlabs/Module/Rmagic.php:90 -msgid "Authenticate" -msgstr "Authentifier" - -#: ../../Zotlabs/Module/Pubsites.php:22 ../../include/widgets.php:1337 -msgid "Public Hubs" -msgstr "Instances publiques" - -#: ../../Zotlabs/Module/Pubsites.php:25 -msgid "" -"The listed hubs allow public registration for the $Projectname network. All " -"hubs in the network are interlinked so membership on any of them conveys " -"membership in the network as a whole. Some hubs may require subscription or " -"provide tiered service plans. The hub itself may provide " -"additional details." -msgstr "Les sites listés permettent l'enregistrement public de comptes pour le réseau $Projectname. Tous les sites du réseau sont reliés entre eux, être membre d'un site revient à être membre de tous. Certains sites peuvent demander une souscription ou proposer différents niveaux de service. Chaque site peut fournir des détails supplémentaires." - -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Hub URL" -msgstr "URL du site" - -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Access Type" -msgstr "Type d'accès" - -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Registration Policy" -msgstr "Politique d'inscription" - -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Stats" +#: ../../Zotlabs/Module/Appman.php:119 +msgid "Categories (optional, comma separated list)" msgstr "" -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Software" -msgstr "" +#: ../../Zotlabs/Module/Appman.php:120 +msgid "Version ID" +msgstr "Identifiant de version" -#: ../../Zotlabs/Module/Pubsites.php:31 ../../Zotlabs/Module/Ratings.php:103 -#: ../../include/conversation.php:962 -msgid "Ratings" -msgstr "Evaluations" +#: ../../Zotlabs/Module/Appman.php:121 +msgid "Price of app" +msgstr "Prix de l'application" -#: ../../Zotlabs/Module/Pubsites.php:38 -msgid "Rate" -msgstr "Evaluer" - -#: ../../Zotlabs/Module/Profile_photo.php:186 -msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." -msgstr "Shift-rechargez votre page, ou videz le cache du navigateur si la photo ne s'affiche pas immédiatement." - -#: ../../Zotlabs/Module/Profile_photo.php:389 -msgid "Upload Profile Photo" -msgstr "Téléverser une photo de profil" - -#: ../../Zotlabs/Module/Blocks.php:97 ../../Zotlabs/Module/Blocks.php:155 -#: ../../Zotlabs/Module/Editblock.php:108 -msgid "Block Name" -msgstr "Nom du Bloc" - -#: ../../Zotlabs/Module/Blocks.php:154 ../../include/text.php:2238 -msgid "Blocks" -msgstr "Blocs" - -#: ../../Zotlabs/Module/Blocks.php:156 -msgid "Block Title" -msgstr "Titre du bloc" - -#: ../../Zotlabs/Module/Rate.php:160 -msgid "Website:" -msgstr "Site web :" - -#: ../../Zotlabs/Module/Rate.php:163 -#, php-format -msgid "Remote Channel [%s] (not yet known on this site)" -msgstr "Canal distant [%s] (encore inconnu sur ce site)" - -#: ../../Zotlabs/Module/Rate.php:164 -msgid "Rating (this information is public)" -msgstr "Evaluation (cette information est publique)" - -#: ../../Zotlabs/Module/Rate.php:165 -msgid "Optionally explain your rating (this information is public)" -msgstr "Explication facultative de votre évaluation (cette information est publique)" - -#: ../../Zotlabs/Module/Ratings.php:73 -msgid "No ratings" -msgstr "Pas de note" - -#: ../../Zotlabs/Module/Ratings.php:104 -msgid "Rating: " -msgstr "Evaluation :" - -#: ../../Zotlabs/Module/Ratings.php:105 -msgid "Website: " -msgstr "Site web :" - -#: ../../Zotlabs/Module/Ratings.php:107 -msgid "Description: " -msgstr "Description :" - -#: ../../Zotlabs/Module/Apps.php:47 ../../include/nav.php:165 -#: ../../include/widgets.php:102 -msgid "Apps" -msgstr "Applications" - -#: ../../Zotlabs/Module/Editblock.php:124 ../../include/conversation.php:1243 -msgid "Title (optional)" -msgstr "Titre (facultatif)" - -#: ../../Zotlabs/Module/Editblock.php:133 -msgid "Edit Block" -msgstr "Modifier le bloc" - -#: ../../Zotlabs/Module/Common.php:14 -msgid "No channel." -msgstr "Pas de canal." - -#: ../../Zotlabs/Module/Common.php:43 -msgid "Common connections" -msgstr "Contacts en commun" - -#: ../../Zotlabs/Module/Common.php:48 -msgid "No connections in common." -msgstr "Pas de contacts en commun." +#: ../../Zotlabs/Module/Appman.php:122 +msgid "Location (URL) to purchase app" +msgstr "Emplacement (URL) pour l'achat de l'application" #: ../../Zotlabs/Module/Rbmark.php:94 msgid "Select a bookmark folder" @@ -4985,154 +4751,120 @@ msgstr "oui" msgid "Membership on this site is by invitation only." msgstr "L'inscription à ce site se fait uniquement sur invitation." -#: ../../Zotlabs/Module/Register.php:262 ../../include/nav.php:149 -#: ../../boot.php:1686 +#: ../../Zotlabs/Module/Register.php:262 ../../include/nav.php:147 +#: ../../boot.php:1685 msgid "Register" msgstr "S'inscrire" -#: ../../Zotlabs/Module/Register.php:263 -msgid "" -"This site may require email verification after submitting this form. If you " -"are returned to a login page, please check your email for instructions." -msgstr "" +#: ../../Zotlabs/Module/Register.php:262 +msgid "Proceed to create your first channel" +msgstr "Continuer pour créer votre premier canal" #: ../../Zotlabs/Module/Regmod.php:15 msgid "Please login." msgstr "Merci de vous connecter." -#: ../../Zotlabs/Module/Removeaccount.php:35 +#: ../../Zotlabs/Module/Removeaccount.php:34 msgid "" "Account removals are not allowed within 48 hours of changing the account " "password." msgstr "Il est impossible de supprimer un compte dans les 48 heures après avoir changé le mot de passe du compte." -#: ../../Zotlabs/Module/Removeaccount.php:57 +#: ../../Zotlabs/Module/Removeaccount.php:56 msgid "Remove This Account" msgstr "Supprimer ce compte" -#: ../../Zotlabs/Module/Removeaccount.php:58 -#: ../../Zotlabs/Module/Removeme.php:61 +#: ../../Zotlabs/Module/Removeaccount.php:57 +#: ../../Zotlabs/Module/Removeme.php:59 msgid "WARNING: " msgstr "AVERTISSEMENT :" -#: ../../Zotlabs/Module/Removeaccount.php:58 +#: ../../Zotlabs/Module/Removeaccount.php:57 msgid "" "This account and all its channels will be completely removed from the " "network. " msgstr "Ce compte et tous ses canaux seront entièrement supprimés du réseau." -#: ../../Zotlabs/Module/Removeaccount.php:58 -#: ../../Zotlabs/Module/Removeme.php:61 +#: ../../Zotlabs/Module/Removeaccount.php:57 +#: ../../Zotlabs/Module/Removeme.php:59 msgid "This action is permanent and can not be undone!" msgstr "Cette action est permanente et irréversible !" -#: ../../Zotlabs/Module/Removeaccount.php:59 -#: ../../Zotlabs/Module/Removeme.php:62 +#: ../../Zotlabs/Module/Removeaccount.php:58 +#: ../../Zotlabs/Module/Removeme.php:60 msgid "Please enter your password for verification:" msgstr "Merci de saisir votre mot de passe pour vérification :" -#: ../../Zotlabs/Module/Removeaccount.php:60 +#: ../../Zotlabs/Module/Removeaccount.php:59 msgid "" "Remove this account, all its channels and all its channel clones from the " "network" msgstr "Supprimer du réseau ce compte, tous ses canaux et tous les clones de ses canaux." -#: ../../Zotlabs/Module/Removeaccount.php:60 +#: ../../Zotlabs/Module/Removeaccount.php:59 msgid "" "By default only the instances of the channels located on this hub will be " "removed from the network" msgstr "Par défaut, seules les instances des canaux situés sur ce hub seront supprimées du réseau" -#: ../../Zotlabs/Module/Removeaccount.php:61 -#: ../../Zotlabs/Module/Settings.php:759 +#: ../../Zotlabs/Module/Removeaccount.php:60 +#: ../../Zotlabs/Module/Settings.php:705 msgid "Remove Account" msgstr "Supprimer le compte" -#: ../../Zotlabs/Module/Removeme.php:35 +#: ../../Zotlabs/Module/Removeme.php:33 msgid "" "Channel removals are not allowed within 48 hours of changing the account " "password." msgstr "Il est impossible de supprimer un canal moins de 48 heures après avoir changé le mot de passe d'un compte." -#: ../../Zotlabs/Module/Removeme.php:60 +#: ../../Zotlabs/Module/Removeme.php:58 msgid "Remove This Channel" msgstr "Supprimer ce canal" -#: ../../Zotlabs/Module/Removeme.php:61 +#: ../../Zotlabs/Module/Removeme.php:59 msgid "This channel will be completely removed from the network. " msgstr "Ce canal sera complètement supprimé du réseau." -#: ../../Zotlabs/Module/Removeme.php:63 +#: ../../Zotlabs/Module/Removeme.php:61 msgid "Remove this channel and all its clones from the network" msgstr "Supprimer ce canal ainsi que tous ses clones sur le réseau" -#: ../../Zotlabs/Module/Removeme.php:63 +#: ../../Zotlabs/Module/Removeme.php:61 msgid "" "By default only the instance of the channel located on this hub will be " "removed from the network" msgstr "Par défaut, seule l'instance du canal présente sur ce hub sera supprimée du réseau" -#: ../../Zotlabs/Module/Removeme.php:64 ../../Zotlabs/Module/Settings.php:1219 +#: ../../Zotlabs/Module/Removeme.php:62 ../../Zotlabs/Module/Settings.php:1124 msgid "Remove Channel" msgstr "Supprimer le canal" -#: ../../Zotlabs/Module/Uexport.php:55 ../../Zotlabs/Module/Uexport.php:56 -msgid "Export Channel" -msgstr "Exporter le canal" - -#: ../../Zotlabs/Module/Uexport.php:57 +#: ../../Zotlabs/Module/Rmagic.php:44 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 "Exportez les principales informations de votre canal dans un fichier. Celui-ci pourra servir de sauvegarde de vos contacts, permissions, profils et données de base. Il pourra être importé sur un nouveau hub/serveur, mais n'embarquera pas vos contenus." +"We encountered a problem while logging in with the OpenID you provided. " +"Please check the correct spelling of the ID." +msgstr "Nous avons rencontré un problème avec l'OpenID que vous nous avez fourni. Merci de vérifier que l'ID est correctement saisi." -#: ../../Zotlabs/Module/Uexport.php:58 -msgid "Export Content" -msgstr "Exporter le contenu" +#: ../../Zotlabs/Module/Rmagic.php:44 +msgid "The error message was:" +msgstr "Le message d'erreur était :" -#: ../../Zotlabs/Module/Uexport.php:59 -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 "Exportez les informations du canal et les contenus récents dans un fichier JSON. Celui-ci contiendra toutes vos relations, permissions, profils, et plusieurs mois de publications. Ce fichier peut être TRÈS gros. Armez-vous de patience - plusieurs minutes peuvent s'écouler avant que le téléchargement ne commence." +#: ../../Zotlabs/Module/Rmagic.php:48 +msgid "Authentication failed." +msgstr "Échec de l'authentification." -#: ../../Zotlabs/Module/Uexport.php:60 -msgid "Export your posts from a given year." -msgstr "Exporter vos publications d'une année en particulier" +#: ../../Zotlabs/Module/Rmagic.php:88 +msgid "Remote Authentication" +msgstr "Authentification distante" -#: ../../Zotlabs/Module/Uexport.php:62 -msgid "" -"You may also export your posts and conversations for a particular year or " -"month. Adjust the date in your browser location bar to select other dates. " -"If the export fails (possibly due to memory exhaustion on your server hub), " -"please try again selecting a more limited date range." -msgstr "Vous pouvez également exporter vos publications et conversations pour une année ou un mois particulier. Ajustez la date dans la barre de votre navigateur pour sélectionner d'autres dates. Si l'export échoue (possible en cas de pénurie de mémoire sur le serveur de votre hub), essayez à nouveau en sélectionnant un intervalle de dates plus petit." +#: ../../Zotlabs/Module/Rmagic.php:89 +msgid "Enter your channel address (e.g. channel@example.com)" +msgstr "Entrez l'adresse de votre canal (par ex. moncanal@monsite.com)" -#: ../../Zotlabs/Module/Uexport.php:63 -#, php-format -msgid "" -"To select all posts for a given year, such as this year, visit %2$s" -msgstr "Pour sélectionner toutes les publications pour une année donnée, telle que cette année, visitez %2$s" - -#: ../../Zotlabs/Module/Uexport.php:64 -#, php-format -msgid "" -"To select all posts for a given month, such as January of this year, visit " -"%2$s" -msgstr "Pour sélectionner toutes les publications pour un mois donné, par exemple janvier, visitez %2$s" - -#: ../../Zotlabs/Module/Uexport.php:65 -#, php-format -msgid "" -"These content files may be imported or restored by visiting %2$s on any site containing your channel. For best results" -" please import or restore these in date order (oldest first)." -msgstr "Ces fichiers de contenu peuvent être importés ou restaurés en visitant %2$s sur n'importe quel site hébergeant votre canal. Pour de meilleurs résultats merci de les importer par ordre chronologique (les plus anciens d'abord)." +#: ../../Zotlabs/Module/Rmagic.php:90 +msgid "Authenticate" +msgstr "Authentifier" #: ../../Zotlabs/Module/Search.php:216 #, php-format @@ -5148,652 +4880,609 @@ msgstr "Résultats de recherche pour : %s" msgid "No service class restrictions found." msgstr "Aucune restriction de classe de service trouvée." -#: ../../Zotlabs/Module/Settings.php:64 +#: ../../Zotlabs/Module/Settings.php:69 msgid "Name is required" msgstr "Le nom est requis" -#: ../../Zotlabs/Module/Settings.php:68 +#: ../../Zotlabs/Module/Settings.php:73 msgid "Key and Secret are required" msgstr "Clef et secret sont requis" -#: ../../Zotlabs/Module/Settings.php:138 -#, php-format -msgid "This channel is limited to %d tokens" -msgstr "" - -#: ../../Zotlabs/Module/Settings.php:144 -msgid "Name and Password are required." -msgstr "" - -#: ../../Zotlabs/Module/Settings.php:168 -msgid "Token saved." -msgstr "" - -#: ../../Zotlabs/Module/Settings.php:274 +#: ../../Zotlabs/Module/Settings.php:225 msgid "Not valid email." msgstr "Adresse de courriel non valide." -#: ../../Zotlabs/Module/Settings.php:277 +#: ../../Zotlabs/Module/Settings.php:228 msgid "Protected email address. Cannot change to that email." msgstr "Adresse de courriel protégée. Impossible de l'utiliser." -#: ../../Zotlabs/Module/Settings.php:286 +#: ../../Zotlabs/Module/Settings.php:237 msgid "System failure storing new email. Please try again." msgstr "Défaillance système lors du stockage de la nouvelle adresse de courriel. Merci d'essayer à nouveau." -#: ../../Zotlabs/Module/Settings.php:303 +#: ../../Zotlabs/Module/Settings.php:254 msgid "Password verification failed." msgstr "La vérification du mot de passe a échoué." -#: ../../Zotlabs/Module/Settings.php:310 +#: ../../Zotlabs/Module/Settings.php:261 msgid "Passwords do not match. Password unchanged." msgstr "Les deux saisies du mot de passe ne correspondent pas. Il n'a donc pas été changé." -#: ../../Zotlabs/Module/Settings.php:314 +#: ../../Zotlabs/Module/Settings.php:265 msgid "Empty passwords are not allowed. Password unchanged." msgstr "Le mot de passe ne peut pas être vide. Il n'a donc pas été changé." -#: ../../Zotlabs/Module/Settings.php:328 +#: ../../Zotlabs/Module/Settings.php:279 msgid "Password changed." msgstr "Le mot de passe a été changé." -#: ../../Zotlabs/Module/Settings.php:330 +#: ../../Zotlabs/Module/Settings.php:281 msgid "Password update failed. Please try again." msgstr "La mise à jour du mot de passe a échoué. Merci d'essayer à nouveau." -#: ../../Zotlabs/Module/Settings.php:579 +#: ../../Zotlabs/Module/Settings.php:525 msgid "Settings updated." msgstr "Paramètres mis à jour." -#: ../../Zotlabs/Module/Settings.php:643 ../../Zotlabs/Module/Settings.php:669 -#: ../../Zotlabs/Module/Settings.php:705 +#: ../../Zotlabs/Module/Settings.php:589 ../../Zotlabs/Module/Settings.php:615 +#: ../../Zotlabs/Module/Settings.php:651 msgid "Add application" msgstr "Ajouter une application" -#: ../../Zotlabs/Module/Settings.php:646 +#: ../../Zotlabs/Module/Settings.php:592 msgid "Name of application" msgstr "Nom de l'application" -#: ../../Zotlabs/Module/Settings.php:647 ../../Zotlabs/Module/Settings.php:673 +#: ../../Zotlabs/Module/Settings.php:593 ../../Zotlabs/Module/Settings.php:619 msgid "Consumer Key" msgstr "Clef client" -#: ../../Zotlabs/Module/Settings.php:647 ../../Zotlabs/Module/Settings.php:648 +#: ../../Zotlabs/Module/Settings.php:593 ../../Zotlabs/Module/Settings.php:594 msgid "Automatically generated - change if desired. Max length 20" msgstr "Généré automatiquement - à changer si besoin. Longueur maximale 20 caractères." -#: ../../Zotlabs/Module/Settings.php:648 ../../Zotlabs/Module/Settings.php:674 +#: ../../Zotlabs/Module/Settings.php:594 ../../Zotlabs/Module/Settings.php:620 msgid "Consumer Secret" msgstr "Secret client" -#: ../../Zotlabs/Module/Settings.php:649 ../../Zotlabs/Module/Settings.php:675 +#: ../../Zotlabs/Module/Settings.php:595 ../../Zotlabs/Module/Settings.php:621 msgid "Redirect" msgstr "Redirection" -#: ../../Zotlabs/Module/Settings.php:649 +#: ../../Zotlabs/Module/Settings.php:595 msgid "" "Redirect URI - leave blank unless your application specifically requires " "this" msgstr "URI de redirection - laissez vide, sauf si votre application le requiert spécifiquement" -#: ../../Zotlabs/Module/Settings.php:650 ../../Zotlabs/Module/Settings.php:676 +#: ../../Zotlabs/Module/Settings.php:596 ../../Zotlabs/Module/Settings.php:622 msgid "Icon url" msgstr "URL de l'icône" -#: ../../Zotlabs/Module/Settings.php:650 ../../Zotlabs/Module/Sources.php:112 +#: ../../Zotlabs/Module/Settings.php:596 ../../Zotlabs/Module/Sources.php:112 #: ../../Zotlabs/Module/Sources.php:147 msgid "Optional" msgstr "Facultatif" -#: ../../Zotlabs/Module/Settings.php:661 +#: ../../Zotlabs/Module/Settings.php:607 msgid "Application not found." msgstr "Application introuvable." -#: ../../Zotlabs/Module/Settings.php:704 +#: ../../Zotlabs/Module/Settings.php:650 msgid "Connected Apps" msgstr "Applications connectées" -#: ../../Zotlabs/Module/Settings.php:708 +#: ../../Zotlabs/Module/Settings.php:654 msgid "Client key starts with" msgstr "La clef partagée commence par" -#: ../../Zotlabs/Module/Settings.php:709 +#: ../../Zotlabs/Module/Settings.php:655 msgid "No name" msgstr "Sans nom" -#: ../../Zotlabs/Module/Settings.php:710 +#: ../../Zotlabs/Module/Settings.php:656 msgid "Remove authorization" msgstr "Révoquer l'autorisation" -#: ../../Zotlabs/Module/Settings.php:723 +#: ../../Zotlabs/Module/Settings.php:669 msgid "No feature settings configured" msgstr "Aucun paramètre de fonctionnalité configuré" -#: ../../Zotlabs/Module/Settings.php:730 +#: ../../Zotlabs/Module/Settings.php:676 msgid "Feature/Addon Settings" msgstr "Paramètres des extensions/greffons" -#: ../../Zotlabs/Module/Settings.php:753 +#: ../../Zotlabs/Module/Settings.php:699 msgid "Account Settings" msgstr "Paramètres du compte" -#: ../../Zotlabs/Module/Settings.php:754 +#: ../../Zotlabs/Module/Settings.php:700 msgid "Current Password" msgstr "Mot de passe actuel" -#: ../../Zotlabs/Module/Settings.php:755 +#: ../../Zotlabs/Module/Settings.php:701 msgid "Enter New Password" msgstr "Entrez votre nouveau mot de passe" -#: ../../Zotlabs/Module/Settings.php:756 +#: ../../Zotlabs/Module/Settings.php:702 msgid "Confirm New Password" msgstr "Confirmez le nouveau mot de passe" -#: ../../Zotlabs/Module/Settings.php:756 +#: ../../Zotlabs/Module/Settings.php:702 msgid "Leave password fields blank unless changing" msgstr "Laissez les mots de passe vides si vous ne voulez pas les modifier" -#: ../../Zotlabs/Module/Settings.php:758 -#: ../../Zotlabs/Module/Settings.php:1136 +#: ../../Zotlabs/Module/Settings.php:704 +#: ../../Zotlabs/Module/Settings.php:1041 msgid "Email Address:" msgstr "Adresse de courriel :" -#: ../../Zotlabs/Module/Settings.php:760 +#: ../../Zotlabs/Module/Settings.php:706 msgid "Remove this account including all its channels" msgstr "Supprimer ce compte et tous ses canaux" -#: ../../Zotlabs/Module/Settings.php:789 -msgid "" -"Use this form to create temporary access identifiers to share things with " -"non-members. These identities may be used in Access Control Lists and " -"visitors may login using these credentials to access the private content." -msgstr "" - -#: ../../Zotlabs/Module/Settings.php:791 -msgid "" -"You may also provide dropbox style access links to friends and " -"associates by adding the Login Password to any specific site URL as shown. " -"Examples:" -msgstr "" - -#: ../../Zotlabs/Module/Settings.php:796 ../../include/widgets.php:614 -msgid "Guest Access Tokens" -msgstr "" - -#: ../../Zotlabs/Module/Settings.php:803 -msgid "Login Name" -msgstr "" - -#: ../../Zotlabs/Module/Settings.php:804 -msgid "Login Password" -msgstr "" - -#: ../../Zotlabs/Module/Settings.php:805 -msgid "Expires (yyyy-mm-dd)" -msgstr "" - -#: ../../Zotlabs/Module/Settings.php:830 +#: ../../Zotlabs/Module/Settings.php:729 msgid "Additional Features" msgstr "Fonctionnalités additionnelles" -#: ../../Zotlabs/Module/Settings.php:854 +#: ../../Zotlabs/Module/Settings.php:753 msgid "Connector Settings" msgstr "Paramètres du connecteur" -#: ../../Zotlabs/Module/Settings.php:893 +#: ../../Zotlabs/Module/Settings.php:792 msgid "No special theme for mobile devices" msgstr "Pas de thème spécifique aux mobiles" -#: ../../Zotlabs/Module/Settings.php:896 +#: ../../Zotlabs/Module/Settings.php:795 #, php-format msgid "%s - (Experimental)" msgstr "%s - (Expérimental)" -#: ../../Zotlabs/Module/Settings.php:938 +#: ../../Zotlabs/Module/Settings.php:837 msgid "Display Settings" msgstr "Afficher les paramètres" -#: ../../Zotlabs/Module/Settings.php:939 +#: ../../Zotlabs/Module/Settings.php:838 msgid "Theme Settings" msgstr "Paramètres du thème" -#: ../../Zotlabs/Module/Settings.php:940 +#: ../../Zotlabs/Module/Settings.php:839 msgid "Custom Theme Settings" msgstr "Paramètres personnels du thème" -#: ../../Zotlabs/Module/Settings.php:941 +#: ../../Zotlabs/Module/Settings.php:840 msgid "Content Settings" msgstr "Paramètres liés au contenu" -#: ../../Zotlabs/Module/Settings.php:947 +#: ../../Zotlabs/Module/Settings.php:846 msgid "Display Theme:" msgstr "Afficher le thème :" -#: ../../Zotlabs/Module/Settings.php:948 +#: ../../Zotlabs/Module/Settings.php:847 msgid "Mobile Theme:" msgstr "Thème mobile :" -#: ../../Zotlabs/Module/Settings.php:949 +#: ../../Zotlabs/Module/Settings.php:848 msgid "Preload images before rendering the page" msgstr "Pré-charger les images avant d'afficher la page" -#: ../../Zotlabs/Module/Settings.php:949 +#: ../../Zotlabs/Module/Settings.php:848 msgid "" "The subjective page load time will be longer but the page will be ready when" " displayed" msgstr "Le temps de charge perçu de la page sera plus long mais la page sera complète quand elle s'affichera" -#: ../../Zotlabs/Module/Settings.php:950 +#: ../../Zotlabs/Module/Settings.php:849 msgid "Enable user zoom on mobile devices" msgstr "Permettre à l'utilisateur d'un mobile d'agrandir le contenu" -#: ../../Zotlabs/Module/Settings.php:951 +#: ../../Zotlabs/Module/Settings.php:850 msgid "Update browser every xx seconds" msgstr "Mettre à jour le navigateur toutes les xx secondes" -#: ../../Zotlabs/Module/Settings.php:951 +#: ../../Zotlabs/Module/Settings.php:850 msgid "Minimum of 10 seconds, no maximum" msgstr "Minimum 10 secondes, pas de maximum" -#: ../../Zotlabs/Module/Settings.php:952 +#: ../../Zotlabs/Module/Settings.php:851 msgid "Maximum number of conversations to load at any time:" msgstr "Nombre maximal de conversations pouvant être chargées en même temps :" -#: ../../Zotlabs/Module/Settings.php:952 +#: ../../Zotlabs/Module/Settings.php:851 msgid "Maximum of 100 items" msgstr "100 éléments au maximum" -#: ../../Zotlabs/Module/Settings.php:953 +#: ../../Zotlabs/Module/Settings.php:852 msgid "Show emoticons (smilies) as images" msgstr "Remplacer les émoticônes (smileys) par des images" -#: ../../Zotlabs/Module/Settings.php:954 +#: ../../Zotlabs/Module/Settings.php:853 msgid "Link post titles to source" msgstr "Lier les titres des publications à leur source" -#: ../../Zotlabs/Module/Settings.php:955 +#: ../../Zotlabs/Module/Settings.php:854 msgid "System Page Layout Editor - (advanced)" msgstr "Editeur de mise en page des pages systèmes - (avancé)" -#: ../../Zotlabs/Module/Settings.php:958 +#: ../../Zotlabs/Module/Settings.php:857 msgid "Use blog/list mode on channel page" msgstr "Utiliser le mode blog/liste sur la page du canal" -#: ../../Zotlabs/Module/Settings.php:958 ../../Zotlabs/Module/Settings.php:959 +#: ../../Zotlabs/Module/Settings.php:857 ../../Zotlabs/Module/Settings.php:858 msgid "(comments displayed separately)" msgstr "(commentaires affichés séparément)" -#: ../../Zotlabs/Module/Settings.php:959 +#: ../../Zotlabs/Module/Settings.php:858 msgid "Use blog/list mode on grid page" msgstr "Utiliser le mode blog/liste sur la page du réseau" -#: ../../Zotlabs/Module/Settings.php:960 +#: ../../Zotlabs/Module/Settings.php:859 msgid "Channel page max height of content (in pixels)" msgstr "Hauteur maximale du contenu pour la page du canal (en pixels)" -#: ../../Zotlabs/Module/Settings.php:960 ../../Zotlabs/Module/Settings.php:961 +#: ../../Zotlabs/Module/Settings.php:859 ../../Zotlabs/Module/Settings.php:860 msgid "click to expand content exceeding this height" msgstr "cliquer pour dérouler le contenu dépassant cette limite" -#: ../../Zotlabs/Module/Settings.php:961 +#: ../../Zotlabs/Module/Settings.php:860 msgid "Grid page max height of content (in pixels)" msgstr "Hauteur maximale du contenu sur la page du réseau (en pixels)" -#: ../../Zotlabs/Module/Settings.php:990 +#: ../../Zotlabs/Module/Settings.php:894 msgid "Nobody except yourself" msgstr "Personne sauf vous" -#: ../../Zotlabs/Module/Settings.php:991 +#: ../../Zotlabs/Module/Settings.php:895 msgid "Only those you specifically allow" msgstr "Seulement ceux que vous autorisez spécifiquement" -#: ../../Zotlabs/Module/Settings.php:992 +#: ../../Zotlabs/Module/Settings.php:896 msgid "Approved connections" msgstr "Contacts approuvés" -#: ../../Zotlabs/Module/Settings.php:993 +#: ../../Zotlabs/Module/Settings.php:897 msgid "Any connections" msgstr "Tous les contacts" -#: ../../Zotlabs/Module/Settings.php:994 +#: ../../Zotlabs/Module/Settings.php:898 msgid "Anybody on this website" msgstr "Tous les utilisateurs du hub" -#: ../../Zotlabs/Module/Settings.php:995 +#: ../../Zotlabs/Module/Settings.php:899 msgid "Anybody in this network" msgstr "Tous les utilisateurs sur ce réseau" -#: ../../Zotlabs/Module/Settings.php:996 +#: ../../Zotlabs/Module/Settings.php:900 msgid "Anybody authenticated" msgstr "Tous les utilisateurs authentifiés" -#: ../../Zotlabs/Module/Settings.php:997 +#: ../../Zotlabs/Module/Settings.php:901 msgid "Anybody on the internet" msgstr "Tous les utilisateurs d'Internet" -#: ../../Zotlabs/Module/Settings.php:1071 +#: ../../Zotlabs/Module/Settings.php:976 msgid "Publish your default profile in the network directory" msgstr "Publier votre profil par défaut dans l'annuaire du réseau" -#: ../../Zotlabs/Module/Settings.php:1076 +#: ../../Zotlabs/Module/Settings.php:981 msgid "Allow us to suggest you as a potential friend to new members?" msgstr "Nous autoriser à vous suggérer comme ami(e) potentiel(le) aux nouveaux membres?" -#: ../../Zotlabs/Module/Settings.php:1085 +#: ../../Zotlabs/Module/Settings.php:990 msgid "Your channel address is" msgstr "L'adresse de votre canal est" -#: ../../Zotlabs/Module/Settings.php:1127 +#: ../../Zotlabs/Module/Settings.php:1032 msgid "Channel Settings" msgstr "Paramètres du canal" -#: ../../Zotlabs/Module/Settings.php:1134 +#: ../../Zotlabs/Module/Settings.php:1039 msgid "Basic Settings" msgstr "Paramètres standard" -#: ../../Zotlabs/Module/Settings.php:1135 ../../include/channel.php:1180 +#: ../../Zotlabs/Module/Settings.php:1040 ../../include/channel.php:1140 msgid "Full Name:" msgstr "Nom complet :" -#: ../../Zotlabs/Module/Settings.php:1137 +#: ../../Zotlabs/Module/Settings.php:1042 msgid "Your Timezone:" msgstr "Votre fureau horaire :" -#: ../../Zotlabs/Module/Settings.php:1138 +#: ../../Zotlabs/Module/Settings.php:1043 msgid "Default Post Location:" msgstr "Emplacement de publication par défaut :" -#: ../../Zotlabs/Module/Settings.php:1138 +#: ../../Zotlabs/Module/Settings.php:1043 msgid "Geographical location to display on your posts" msgstr "Emplacement géographique à afficher sur vos publications" -#: ../../Zotlabs/Module/Settings.php:1139 +#: ../../Zotlabs/Module/Settings.php:1044 msgid "Use Browser Location:" msgstr "Utiliser la géolocalisation du navigateur :" -#: ../../Zotlabs/Module/Settings.php:1141 +#: ../../Zotlabs/Module/Settings.php:1046 msgid "Adult Content" msgstr "Contenu \"adulte\"" -#: ../../Zotlabs/Module/Settings.php:1141 +#: ../../Zotlabs/Module/Settings.php:1046 msgid "" "This channel frequently or regularly publishes adult content. (Please tag " "any adult material and/or nudity with #NSFW)" msgstr "Ce canal publie plus ou moins fréquemment du contenu pour adultes. (Merci d'indiquer tout contenu pour adulte ou potentiellement choquant avec l'étiquette #NSFW - Not Safe For Work)" -#: ../../Zotlabs/Module/Settings.php:1143 +#: ../../Zotlabs/Module/Settings.php:1048 msgid "Security and Privacy Settings" msgstr "Paramètres de sécurité et de confidentialité" -#: ../../Zotlabs/Module/Settings.php:1146 +#: ../../Zotlabs/Module/Settings.php:1051 msgid "Your permissions are already configured. Click to view/adjust" msgstr "Vous permissions sont déjà paramétrées. Cliquer pour voir/ajuster" -#: ../../Zotlabs/Module/Settings.php:1148 +#: ../../Zotlabs/Module/Settings.php:1053 msgid "Hide my online presence" msgstr "Cacher ma présence en ligne" -#: ../../Zotlabs/Module/Settings.php:1148 +#: ../../Zotlabs/Module/Settings.php:1053 msgid "Prevents displaying in your profile that you are online" msgstr "Cacher votre statut (en ligne/hors ligne) sur votre profil" -#: ../../Zotlabs/Module/Settings.php:1150 +#: ../../Zotlabs/Module/Settings.php:1055 msgid "Simple Privacy Settings:" msgstr "Paramètres de confidentialité simplifiés :" -#: ../../Zotlabs/Module/Settings.php:1151 +#: ../../Zotlabs/Module/Settings.php:1056 msgid "" "Very Public - extremely permissive (should be used with caution)" msgstr "Très public - extrèmement permissif (à n'utiliser qu'en connaissance de cause)" -#: ../../Zotlabs/Module/Settings.php:1152 +#: ../../Zotlabs/Module/Settings.php:1057 msgid "" "Typical - default public, privacy when desired (similar to social " "network permissions but with improved privacy)" msgstr "Classique - public par défaut, privé en cas de besoin (comparable aux permissions type réseau social, avec une confidentialité améliorée)" -#: ../../Zotlabs/Module/Settings.php:1153 +#: ../../Zotlabs/Module/Settings.php:1058 msgid "Private - default private, never open or public" msgstr "Privé - privé par défaut, jamais ouvert ni public" -#: ../../Zotlabs/Module/Settings.php:1154 +#: ../../Zotlabs/Module/Settings.php:1059 msgid "Blocked - default blocked to/from everybody" msgstr "Bloqué - par défaut, bloqué de/vers tout le monde" -#: ../../Zotlabs/Module/Settings.php:1156 +#: ../../Zotlabs/Module/Settings.php:1061 msgid "Allow others to tag your posts" msgstr "Autoriser les autres à \"étiqueter\" vos publications" -#: ../../Zotlabs/Module/Settings.php:1156 +#: ../../Zotlabs/Module/Settings.php:1061 msgid "" "Often used by the community to retro-actively flag inappropriate content" msgstr "Souvent utilisé par la communauté pour identifier un contenu inapproprié a posteriori " -#: ../../Zotlabs/Module/Settings.php:1158 +#: ../../Zotlabs/Module/Settings.php:1063 msgid "Advanced Privacy Settings" msgstr "Paramètres de confidentialité avancés" -#: ../../Zotlabs/Module/Settings.php:1160 +#: ../../Zotlabs/Module/Settings.php:1065 msgid "Expire other channel content after this many days" msgstr "Faire expirer le contenu des autres canaux après n jours" -#: ../../Zotlabs/Module/Settings.php:1160 +#: ../../Zotlabs/Module/Settings.php:1065 msgid "0 or blank to use the website limit." msgstr "" -#: ../../Zotlabs/Module/Settings.php:1160 +#: ../../Zotlabs/Module/Settings.php:1065 #, php-format msgid "This website expires after %d days." msgstr "" -#: ../../Zotlabs/Module/Settings.php:1160 +#: ../../Zotlabs/Module/Settings.php:1065 msgid "This website does not expire imported content." msgstr "" -#: ../../Zotlabs/Module/Settings.php:1160 +#: ../../Zotlabs/Module/Settings.php:1065 msgid "The website limit takes precedence if lower than your limit." msgstr "" -#: ../../Zotlabs/Module/Settings.php:1161 +#: ../../Zotlabs/Module/Settings.php:1066 msgid "Maximum Friend Requests/Day:" msgstr "Nombre maximum de demandes de contact par jour :" -#: ../../Zotlabs/Module/Settings.php:1161 +#: ../../Zotlabs/Module/Settings.php:1066 msgid "May reduce spam activity" msgstr "Contribue à réduire l'impact des indésirables" -#: ../../Zotlabs/Module/Settings.php:1162 +#: ../../Zotlabs/Module/Settings.php:1067 msgid "Default Post and Publish Permissions" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1164 +#: ../../Zotlabs/Module/Settings.php:1069 msgid "Use my default audience setting for the type of object published" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1167 +#: ../../Zotlabs/Module/Settings.php:1072 msgid "Channel permissions category:" msgstr "Catégorie de permissions du canal :" -#: ../../Zotlabs/Module/Settings.php:1173 +#: ../../Zotlabs/Module/Settings.php:1078 msgid "Maximum private messages per day from unknown people:" msgstr "Nombre maximum de messages privés émanant d'inconnus, par jour :" -#: ../../Zotlabs/Module/Settings.php:1173 +#: ../../Zotlabs/Module/Settings.php:1078 msgid "Useful to reduce spamming" msgstr "Utile pour réduire les indésirables" -#: ../../Zotlabs/Module/Settings.php:1176 +#: ../../Zotlabs/Module/Settings.php:1081 msgid "Notification Settings" msgstr "Paramètres de notification" -#: ../../Zotlabs/Module/Settings.php:1177 +#: ../../Zotlabs/Module/Settings.php:1082 msgid "By default post a status message when:" msgstr "Par défaut, publier un statut quand :" -#: ../../Zotlabs/Module/Settings.php:1178 +#: ../../Zotlabs/Module/Settings.php:1083 msgid "accepting a friend request" msgstr "vous acceptez une demande de contact" -#: ../../Zotlabs/Module/Settings.php:1179 +#: ../../Zotlabs/Module/Settings.php:1084 msgid "joining a forum/community" msgstr "vous rejoignez un forum ou une communauté" -#: ../../Zotlabs/Module/Settings.php:1180 +#: ../../Zotlabs/Module/Settings.php:1085 msgid "making an interesting profile change" msgstr "vous faîtes une modification intéressante de votre profil" -#: ../../Zotlabs/Module/Settings.php:1181 +#: ../../Zotlabs/Module/Settings.php:1086 msgid "Send a notification email when:" msgstr "Envoyer un courriel de notification quand :" -#: ../../Zotlabs/Module/Settings.php:1182 +#: ../../Zotlabs/Module/Settings.php:1087 msgid "You receive a connection request" msgstr "Vous recevez une demande de contact" -#: ../../Zotlabs/Module/Settings.php:1183 +#: ../../Zotlabs/Module/Settings.php:1088 msgid "Your connections are confirmed" msgstr "Vos contacts sont confirmés" -#: ../../Zotlabs/Module/Settings.php:1184 +#: ../../Zotlabs/Module/Settings.php:1089 msgid "Someone writes on your profile wall" msgstr "Quelqu'un a écrit sur votre mur" -#: ../../Zotlabs/Module/Settings.php:1185 +#: ../../Zotlabs/Module/Settings.php:1090 msgid "Someone writes a followup comment" msgstr "Quelqu'un a commenté vos publications" -#: ../../Zotlabs/Module/Settings.php:1186 +#: ../../Zotlabs/Module/Settings.php:1091 msgid "You receive a private message" msgstr "Vous recevez un message privé" -#: ../../Zotlabs/Module/Settings.php:1187 +#: ../../Zotlabs/Module/Settings.php:1092 msgid "You receive a friend suggestion" msgstr "Vous recevez une suggestion d'amitié/contact" -#: ../../Zotlabs/Module/Settings.php:1188 +#: ../../Zotlabs/Module/Settings.php:1093 msgid "You are tagged in a post" msgstr "Vous êtes étiqueté dans une publication" -#: ../../Zotlabs/Module/Settings.php:1189 +#: ../../Zotlabs/Module/Settings.php:1094 msgid "You are poked/prodded/etc. in a post" msgstr "Vous êtes tapoté/encouragé/etc. dans une publication" -#: ../../Zotlabs/Module/Settings.php:1192 +#: ../../Zotlabs/Module/Settings.php:1097 msgid "Show visual notifications including:" msgstr "Afficher des notifications visuelles y compris :" -#: ../../Zotlabs/Module/Settings.php:1194 +#: ../../Zotlabs/Module/Settings.php:1099 msgid "Unseen grid activity" msgstr "Activité du réseau pas encore consultée" -#: ../../Zotlabs/Module/Settings.php:1195 +#: ../../Zotlabs/Module/Settings.php:1100 msgid "Unseen channel activity" msgstr "Activité non vue sur le canal" -#: ../../Zotlabs/Module/Settings.php:1196 +#: ../../Zotlabs/Module/Settings.php:1101 msgid "Unseen private messages" msgstr "Messages privés non lus" -#: ../../Zotlabs/Module/Settings.php:1196 -#: ../../Zotlabs/Module/Settings.php:1201 -#: ../../Zotlabs/Module/Settings.php:1202 -#: ../../Zotlabs/Module/Settings.php:1203 +#: ../../Zotlabs/Module/Settings.php:1101 +#: ../../Zotlabs/Module/Settings.php:1106 +#: ../../Zotlabs/Module/Settings.php:1107 +#: ../../Zotlabs/Module/Settings.php:1108 msgid "Recommended" msgstr "Recommandé" -#: ../../Zotlabs/Module/Settings.php:1197 +#: ../../Zotlabs/Module/Settings.php:1102 msgid "Upcoming events" msgstr "Événements à venir" -#: ../../Zotlabs/Module/Settings.php:1198 +#: ../../Zotlabs/Module/Settings.php:1103 msgid "Events today" msgstr "Événements aujourd'hui" -#: ../../Zotlabs/Module/Settings.php:1199 +#: ../../Zotlabs/Module/Settings.php:1104 msgid "Upcoming birthdays" msgstr "Anniversaires à venir" -#: ../../Zotlabs/Module/Settings.php:1199 +#: ../../Zotlabs/Module/Settings.php:1104 msgid "Not available in all themes" msgstr "Pas disponible dans tous les thèmes" -#: ../../Zotlabs/Module/Settings.php:1200 +#: ../../Zotlabs/Module/Settings.php:1105 msgid "System (personal) notifications" msgstr "Notifications système (personnelles)" -#: ../../Zotlabs/Module/Settings.php:1201 +#: ../../Zotlabs/Module/Settings.php:1106 msgid "System info messages" msgstr "Messages d'info système" -#: ../../Zotlabs/Module/Settings.php:1202 +#: ../../Zotlabs/Module/Settings.php:1107 msgid "System critical alerts" msgstr "Alertes critiques système" -#: ../../Zotlabs/Module/Settings.php:1203 +#: ../../Zotlabs/Module/Settings.php:1108 msgid "New connections" msgstr "Nouveaux contacts" -#: ../../Zotlabs/Module/Settings.php:1204 +#: ../../Zotlabs/Module/Settings.php:1109 msgid "System Registrations" msgstr "Inscriptions système" -#: ../../Zotlabs/Module/Settings.php:1205 +#: ../../Zotlabs/Module/Settings.php:1110 msgid "" "Also show new wall posts, private messages and connections under Notices" msgstr "Afficher également les nouvelles publications sur le mur, les messages privés et les contacts dans Notifications" -#: ../../Zotlabs/Module/Settings.php:1207 +#: ../../Zotlabs/Module/Settings.php:1112 msgid "Notify me of events this many days in advance" msgstr "Me prévenir d’événements à venir tant de jours en avance" -#: ../../Zotlabs/Module/Settings.php:1207 +#: ../../Zotlabs/Module/Settings.php:1112 msgid "Must be greater than 0" msgstr "Doit être supérieur à 0" -#: ../../Zotlabs/Module/Settings.php:1209 +#: ../../Zotlabs/Module/Settings.php:1114 msgid "Advanced Account/Page Type Settings" msgstr "Paramètres avancés de compte/type de page" -#: ../../Zotlabs/Module/Settings.php:1210 +#: ../../Zotlabs/Module/Settings.php:1115 msgid "Change the behaviour of this account for special situations" msgstr "Modifie le comportement de ce compte pour des situations particulières" -#: ../../Zotlabs/Module/Settings.php:1213 +#: ../../Zotlabs/Module/Settings.php:1118 msgid "" "Please enable expert mode (in Settings > " "Additional features) to adjust!" msgstr "Mode expert requis (Paramètres > Fonctions supplémentaires) pour ajuster !" -#: ../../Zotlabs/Module/Settings.php:1214 +#: ../../Zotlabs/Module/Settings.php:1119 msgid "Miscellaneous Settings" msgstr "Paramètres divers" -#: ../../Zotlabs/Module/Settings.php:1215 +#: ../../Zotlabs/Module/Settings.php:1120 msgid "Default photo upload folder" msgstr "Répertoire par défaut pour les photos téléversées" -#: ../../Zotlabs/Module/Settings.php:1215 -#: ../../Zotlabs/Module/Settings.php:1216 +#: ../../Zotlabs/Module/Settings.php:1120 +#: ../../Zotlabs/Module/Settings.php:1121 msgid "%Y - current year, %m - current month" msgstr "%Y - année en cours, %m - mois en cours" -#: ../../Zotlabs/Module/Settings.php:1216 +#: ../../Zotlabs/Module/Settings.php:1121 msgid "Default file upload folder" msgstr "Répertoire par défaut pour les fichiers téléversés" -#: ../../Zotlabs/Module/Settings.php:1218 +#: ../../Zotlabs/Module/Settings.php:1123 msgid "Personal menu to display in your channel pages" msgstr "Menu personnel à afficher sur les pages de votre canal" -#: ../../Zotlabs/Module/Settings.php:1220 +#: ../../Zotlabs/Module/Settings.php:1125 msgid "Remove this channel." msgstr "Supprimer ce canal" -#: ../../Zotlabs/Module/Settings.php:1221 +#: ../../Zotlabs/Module/Settings.php:1126 msgid "Firefox Share $Projectname provider" msgstr "Connecteur $Projectname pour Firefox Share" -#: ../../Zotlabs/Module/Settings.php:1222 +#: ../../Zotlabs/Module/Settings.php:1127 msgid "Start calendar week on monday" msgstr "Commencer la semaine du calendrier le lundi" @@ -5826,7 +5515,7 @@ msgid "" msgstr "Vous pourriez avoir besoin d'importer le fichier \"install/schema_xxx.sql\" manuellement via un client de base de données (ex: phpmyadmin)." #: ../../Zotlabs/Module/Setup.php:204 ../../Zotlabs/Module/Setup.php:266 -#: ../../Zotlabs/Module/Setup.php:722 +#: ../../Zotlabs/Module/Setup.php:721 msgid "Please see the file \"install/INSTALL.txt\"." msgstr "Merci de consulter le fichier \"install/INSTALL.txt\"." @@ -6026,200 +5715,199 @@ msgid "mb_string PHP module" msgstr "module PHP mb_string" #: ../../Zotlabs/Module/Setup.php:496 +msgid "mcrypt PHP module" +msgstr "module PHP mcrypt" + +#: ../../Zotlabs/Module/Setup.php:497 msgid "xml PHP module" msgstr "module PHP xml" -#: ../../Zotlabs/Module/Setup.php:500 ../../Zotlabs/Module/Setup.php:502 +#: ../../Zotlabs/Module/Setup.php:501 ../../Zotlabs/Module/Setup.php:503 msgid "Apache mod_rewrite module" msgstr "module Apache mod_rewrite" -#: ../../Zotlabs/Module/Setup.php:500 +#: ../../Zotlabs/Module/Setup.php:501 msgid "" "Error: Apache webserver mod-rewrite module is required but not installed." msgstr "Erreur : le module mod-rewrite du serveur web Apache est requis, mais pas installé." -#: ../../Zotlabs/Module/Setup.php:506 ../../Zotlabs/Module/Setup.php:509 +#: ../../Zotlabs/Module/Setup.php:507 ../../Zotlabs/Module/Setup.php:510 msgid "proc_open" msgstr "proc_open" -#: ../../Zotlabs/Module/Setup.php:506 +#: ../../Zotlabs/Module/Setup.php:507 msgid "" "Error: proc_open is required but is either not installed or has been " "disabled in php.ini" msgstr "Erreur : proc_open est requis, mais soit n'est pas installé, soit est désactivé dans le php.ini" -#: ../../Zotlabs/Module/Setup.php:514 +#: ../../Zotlabs/Module/Setup.php:515 msgid "Error: libCURL PHP module required but not installed." msgstr "Erreur : le module libCURL de PHP est requis, mais pas installé." -#: ../../Zotlabs/Module/Setup.php:518 +#: ../../Zotlabs/Module/Setup.php:519 msgid "" "Error: GD graphics PHP module with JPEG support required but not installed." msgstr "Erreur : le module GD de PHP avec support JPEG est requis, mais pas installé." -#: ../../Zotlabs/Module/Setup.php:522 +#: ../../Zotlabs/Module/Setup.php:523 msgid "Error: openssl PHP module required but not installed." msgstr "Erreur : le module openssl de PHP est requis, mais pas installé." -#: ../../Zotlabs/Module/Setup.php:526 +#: ../../Zotlabs/Module/Setup.php:527 msgid "" "Error: mysqli or postgres PHP module required but neither are installed." msgstr "Erreur : un module PHP mysqli ou postgres est requis, mais aucun des deux n'est installé." -#: ../../Zotlabs/Module/Setup.php:530 +#: ../../Zotlabs/Module/Setup.php:531 msgid "Error: mb_string PHP module required but not installed." msgstr "Erreur : le module mb_string de PHP est requis, mais pas installé." -#: ../../Zotlabs/Module/Setup.php:534 +#: ../../Zotlabs/Module/Setup.php:535 +msgid "Error: mcrypt PHP module required but not installed." +msgstr "Erreur : le module mcrypt de PHP est requis, mais pas installé." + +#: ../../Zotlabs/Module/Setup.php:539 msgid "Error: xml PHP module required for DAV but not installed." msgstr "Erreur : le module xml de PHP est requis pour le DAV, mais pas installé." -#: ../../Zotlabs/Module/Setup.php:552 +#: ../../Zotlabs/Module/Setup.php:557 msgid "" "The web installer needs to be able to create a file called \".htconfig.php\"" " in the top folder of your web server and it is unable to do so." msgstr "L'installeur web a besoin de créer un fichier \".htconfig.php\" à la racine de votre serveur web, mais en est incapable." -#: ../../Zotlabs/Module/Setup.php:553 +#: ../../Zotlabs/Module/Setup.php:558 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 "C'est généralement lié à un problème de droits, à cause duquel le serveur web est interdit d'écriture dans le répertoire concerné - alors que votre propre utilisateur a le droit." -#: ../../Zotlabs/Module/Setup.php:554 +#: ../../Zotlabs/Module/Setup.php:559 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 "Au terme de cette procédure, nous vous transmettrons un texte à sauvegarder dans un fichier nommé .htconfig.php, à la racine de votre installation de $Projectname." -#: ../../Zotlabs/Module/Setup.php:555 +#: ../../Zotlabs/Module/Setup.php:560 msgid "" "You can alternatively skip this procedure and perform a manual installation." " Please see the file \"install/INSTALL.txt\" for instructions." msgstr "Autrement, vous pouvez contourner toute cette procédure et réaliser l'installation manuellement. Merci de consulter le fichier \"install/INSTALL.txt\" pour les instructions détaillées." -#: ../../Zotlabs/Module/Setup.php:558 +#: ../../Zotlabs/Module/Setup.php:563 msgid ".htconfig.php is writable" msgstr "Le fichier .htconfig.php est accessible en écriture" -#: ../../Zotlabs/Module/Setup.php:572 +#: ../../Zotlabs/Module/Setup.php:577 msgid "" "Red uses the Smarty3 template engine to render its web views. Smarty3 " "compiles templates to PHP to speed up rendering." msgstr "$Projectname utilise le moteur de gabarits Smarty3 pour mettre son contenu en forme. Smarty3 compile ses modèles vers du PHP natif pour accélérer le rendu." -#: ../../Zotlabs/Module/Setup.php:573 +#: ../../Zotlabs/Module/Setup.php:578 #, php-format msgid "" "In order to store these compiled templates, the web server needs to have " "write access to the directory %s under the top level web folder." msgstr "" -#: ../../Zotlabs/Module/Setup.php:574 ../../Zotlabs/Module/Setup.php:595 +#: ../../Zotlabs/Module/Setup.php:579 ../../Zotlabs/Module/Setup.php:600 msgid "" "Please ensure that the user that your web server runs as (e.g. www-data) has" " write access to this folder." msgstr "Merci de vous assurer que l'utilisateur sous lequel le serveur web tourne (le plus souvent, www-data) a bien l'autorisation d'écrire dans ce répertoire." -#: ../../Zotlabs/Module/Setup.php:575 +#: ../../Zotlabs/Module/Setup.php:580 #, 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 "Note: Comme mesure de sécurité, assurez vous de donner les droits d'écriture au serveur web sur %s uniquement, pas sur les fichiers individuels (.tpl) qu'il contient." -#: ../../Zotlabs/Module/Setup.php:578 +#: ../../Zotlabs/Module/Setup.php:583 #, php-format msgid "%s is writable" msgstr "Permission d'écriture sur %s activée" -#: ../../Zotlabs/Module/Setup.php:594 +#: ../../Zotlabs/Module/Setup.php:599 msgid "" -"This software 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 "" +"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 "$Projectname utilise le répertoire 'store' - situé à la racine de votre installation de $Projectname - pour sauvegarder les fichiers envoyés. Le serveur web aura donc besoin de pouvoir y écrire." -#: ../../Zotlabs/Module/Setup.php:598 +#: ../../Zotlabs/Module/Setup.php:603 msgid "store is writable" msgstr "'store' est accessible en écriture" -#: ../../Zotlabs/Module/Setup.php:631 +#: ../../Zotlabs/Module/Setup.php:636 msgid "" "SSL certificate cannot be validated. Fix certificate or disable https access" " to this site." msgstr "Le certificat SSL/TLS n'a pas pu être validé. Merci de le corriger, ou de désactiver l'accès https à ce site (non recommandé)." -#: ../../Zotlabs/Module/Setup.php:632 +#: ../../Zotlabs/Module/Setup.php:637 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 "Si votre serveur accepte les connexions https ou s'il permet les connexions sur le port TCP 443 (le port utilisé par le protocole https), vous DEVEZ utiliser un certificat valide. Vous ne DEVEZ PAS utiliser un certificat que vous avez vous-mêmes signé !" -#: ../../Zotlabs/Module/Setup.php:633 +#: ../../Zotlabs/Module/Setup.php:638 msgid "" "This restriction is incorporated because public posts from you may for " "example contain references to images on your own hub." msgstr "Nous avons ajouté cette contrainte pour éviter que vos publications publiques ne fassent référence par exemple à des images sur votre propre hub." -#: ../../Zotlabs/Module/Setup.php:634 +#: ../../Zotlabs/Module/Setup.php:639 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." msgstr "Si votre certificat n'est pas reconnu, les membres des autres sites (qui eux peuvent avoir des certificats valides) recevront des messages d'avertissement sur leur propre site se plaignant de problèmes de sécurité." -#: ../../Zotlabs/Module/Setup.php:635 +#: ../../Zotlabs/Module/Setup.php:640 msgid "" "This can cause usability issues elsewhere (not just on your own site) so we " "must insist on this requirement." msgstr "Ceci peut causer des problèmes d'ergonomie ailleurs (pas seulement sur votre site), nous devons donc insister sur ce prérequis." -#: ../../Zotlabs/Module/Setup.php:636 +#: ../../Zotlabs/Module/Setup.php:641 msgid "" "Providers are available that issue free certificates which are browser-" "valid." msgstr "Il existe des autorités de certification qui vous fourniront gratuitement un certificat valide." -#: ../../Zotlabs/Module/Setup.php:638 -msgid "" -"If you are confident that the certificate is valid and signed by a trusted " -"authority, check to see if you have failed to install an intermediate cert. " -"These are not normally required by browsers, but are required for server-to-" -"server communications." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:641 +#: ../../Zotlabs/Module/Setup.php:643 msgid "SSL certificate validation" msgstr "Validation du certificat SSL/TLS" -#: ../../Zotlabs/Module/Setup.php:647 +#: ../../Zotlabs/Module/Setup.php:649 msgid "" "Url rewrite in .htaccess is not working. Check your server " "configuration.Test: " msgstr "La réécriture d'URL définie dans le .htaccess ne fonctionne pas. Vérifiez votre configuration serveur. Test :" -#: ../../Zotlabs/Module/Setup.php:650 +#: ../../Zotlabs/Module/Setup.php:652 msgid "Url rewrite is working" msgstr "La réécriture d'URL fonctionne" -#: ../../Zotlabs/Module/Setup.php:659 +#: ../../Zotlabs/Module/Setup.php:661 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 "Le fichier de configuration de la base de données - \".htconfig.php\" - ne peut être écrit. Merci de copier le texte généré dans un fichier à ce nom, à la racine de votre serveur web." -#: ../../Zotlabs/Module/Setup.php:683 +#: ../../Zotlabs/Module/Setup.php:685 msgid "Errors encountered creating database tables." msgstr "Erreurs rencontrées pendant la création de tables de BDD." -#: ../../Zotlabs/Module/Setup.php:720 +#: ../../Zotlabs/Module/Setup.php:719 msgid "

What next

" msgstr "

Et maintenant

" -#: ../../Zotlabs/Module/Setup.php:721 +#: ../../Zotlabs/Module/Setup.php:720 msgid "" "IMPORTANT: You will need to [manually] setup a scheduled task for the " "poller." @@ -6241,62 +5929,64 @@ msgstr "Supprimer tous les fichiers" msgid "Remove this file" msgstr "Supprimer ce fichier" -#: ../../Zotlabs/Module/Thing.php:114 -msgid "Thing updated" -msgstr "Elément mis à jour" - -#: ../../Zotlabs/Module/Thing.php:166 -msgid "Object store: failed" -msgstr "Stockage de l'objet : échec" - -#: ../../Zotlabs/Module/Thing.php:170 -msgid "Thing added" -msgstr "Elément ajouté" - -#: ../../Zotlabs/Module/Thing.php:196 +#: ../../Zotlabs/Module/Siteinfo.php:19 #, php-format -msgid "OBJ: %1$s %2$s %3$s" -msgstr "OBJ: %1$s %2$s %3$s" +msgid "Version %s" +msgstr "Version %s" -#: ../../Zotlabs/Module/Thing.php:259 -msgid "Show Thing" -msgstr "Montrer élément" +#: ../../Zotlabs/Module/Siteinfo.php:40 +msgid "Installed plugins/addons/apps:" +msgstr "Greffons/extensions/applications installés :" -#: ../../Zotlabs/Module/Thing.php:266 -msgid "item not found." -msgstr "élément introuvable." +#: ../../Zotlabs/Module/Siteinfo.php:53 +msgid "No installed plugins/addons/apps" +msgstr "Aucun greffon/extension/application installé" -#: ../../Zotlabs/Module/Thing.php:299 -msgid "Edit Thing" -msgstr "Modifier élément" +#: ../../Zotlabs/Module/Siteinfo.php:66 +msgid "" +"This is a hub of $Projectname - a global cooperative network of " +"decentralized privacy enhanced websites." +msgstr "Ceci est un serveur $Projectname - un réseau collaboratif mondial de serveurs décentralisés à la confidentialité améliorée." -#: ../../Zotlabs/Module/Thing.php:301 ../../Zotlabs/Module/Thing.php:351 -msgid "Select a profile" -msgstr "Choisissez un profil" +#: ../../Zotlabs/Module/Siteinfo.php:68 +msgid "Tag: " +msgstr "Étiquette :" -#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:354 -msgid "Post an activity" -msgstr "Publier une activité" +#: ../../Zotlabs/Module/Siteinfo.php:70 +msgid "Last background fetch: " +msgstr "Dernière récupération en tâche de fond :" -#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:354 -msgid "Only sends to viewers of the applicable profile" -msgstr "Envoie exclusivement aux visiteurs du profil concerné" +#: ../../Zotlabs/Module/Siteinfo.php:72 +msgid "Current load average: " +msgstr "Charge moyenne actuelle :" -#: ../../Zotlabs/Module/Thing.php:307 ../../Zotlabs/Module/Thing.php:356 -msgid "Name of thing e.g. something" -msgstr "Nom de l'élément, p.ex. quelque-chose" +#: ../../Zotlabs/Module/Siteinfo.php:75 +msgid "Running at web location" +msgstr "Tourne à l'adresse internet" -#: ../../Zotlabs/Module/Thing.php:309 ../../Zotlabs/Module/Thing.php:357 -msgid "URL of thing (optional)" -msgstr "URL de l'élément (facultatif)" +#: ../../Zotlabs/Module/Siteinfo.php:76 +msgid "" +"Please visit hubzilla.org to learn more " +"about $Projectname." +msgstr "Merci de visiter hubzilla.org pour en apprendre davantage sur $Projectname." -#: ../../Zotlabs/Module/Thing.php:311 ../../Zotlabs/Module/Thing.php:358 -msgid "URL for photo of thing (optional)" -msgstr "URL d'une photo de l'élément (facultatif)" +#: ../../Zotlabs/Module/Siteinfo.php:77 +msgid "Bug reports and issues: please visit" +msgstr "Pour remonter bogues et problèmes, merci de visiter" -#: ../../Zotlabs/Module/Thing.php:349 -msgid "Add Thing to your Profile" -msgstr "Ajouter l'élément à votre profil" +#: ../../Zotlabs/Module/Siteinfo.php:79 +msgid "$projectname issues" +msgstr "Problèmes $projectname" + +#: ../../Zotlabs/Module/Siteinfo.php:80 +msgid "" +"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot " +"com" +msgstr "Suggestions, demandes, etc. - merci de vous adresser à \"redmatrix\" à librelist - point com" + +#: ../../Zotlabs/Module/Siteinfo.php:82 +msgid "Site Administrators" +msgstr "Administrateurs du site" #: ../../Zotlabs/Module/Sources.php:37 msgid "Failed to create source. No channel selected." @@ -6314,8 +6004,8 @@ msgstr "Source mise à jour." msgid "*" msgstr "*" -#: ../../Zotlabs/Module/Sources.php:96 ../../include/features.php:72 -#: ../../include/widgets.php:639 +#: ../../Zotlabs/Module/Sources.php:96 ../../include/widgets.php:630 +#: ../../include/features.php:71 msgid "Channel Sources" msgstr "Sources du canal" @@ -6391,12 +6081,12 @@ msgstr "Aucune suggestion disponible. Si le site est récent, merci de re-tenter msgid "Ignore/Hide" msgstr "Ignorer/Cacher" -#: ../../Zotlabs/Module/Tagger.php:55 ../../include/bbcode.php:263 +#: ../../Zotlabs/Module/Tagger.php:55 ../../include/bbcode.php:256 msgid "post" msgstr "publication" -#: ../../Zotlabs/Module/Tagger.php:57 ../../include/conversation.php:150 -#: ../../include/text.php:1929 +#: ../../Zotlabs/Module/Tagger.php:57 ../../include/text.php:1948 +#: ../../include/conversation.php:150 msgid "comment" msgstr "commentaire" @@ -6417,110 +6107,131 @@ msgstr "Retirer une étiquette à l'élément" msgid "Select a tag to remove: " msgstr "Étiquette à retirer :" -#: ../../Zotlabs/Module/Webpages.php:191 ../../Zotlabs/Lib/Apps.php:218 -#: ../../include/nav.php:106 ../../include/conversation.php:1700 -msgid "Webpages" -msgstr "Pages web" +#: ../../Zotlabs/Module/Thing.php:114 +msgid "Thing updated" +msgstr "Elément mis à jour" -#: ../../Zotlabs/Module/Webpages.php:202 ../../include/page_widgets.php:44 -msgid "Actions" -msgstr "Actions" +#: ../../Zotlabs/Module/Thing.php:166 +msgid "Object store: failed" +msgstr "Stockage de l'objet : échec" -#: ../../Zotlabs/Module/Webpages.php:203 ../../include/page_widgets.php:45 -msgid "Page Link" -msgstr "Lien vers la page" +#: ../../Zotlabs/Module/Thing.php:170 +msgid "Thing added" +msgstr "Elément ajouté" -#: ../../Zotlabs/Module/Webpages.php:204 -msgid "Page Title" -msgstr "Titre de la page" +#: ../../Zotlabs/Module/Thing.php:196 +#, php-format +msgid "OBJ: %1$s %2$s %3$s" +msgstr "OBJ: %1$s %2$s %3$s" -#: ../../Zotlabs/Module/Wiki.php:34 -msgid "Not found" -msgstr "" +#: ../../Zotlabs/Module/Thing.php:259 +msgid "Show Thing" +msgstr "Montrer élément" -#: ../../Zotlabs/Module/Wiki.php:92 ../../Zotlabs/Lib/Apps.php:219 -#: ../../include/nav.php:108 ../../include/conversation.php:1710 -#: ../../include/conversation.php:1713 ../../include/features.php:55 -msgid "Wiki" -msgstr "" +#: ../../Zotlabs/Module/Thing.php:266 +msgid "item not found." +msgstr "élément introuvable." -#: ../../Zotlabs/Module/Wiki.php:93 -msgid "Sandbox" -msgstr "" +#: ../../Zotlabs/Module/Thing.php:299 +msgid "Edit Thing" +msgstr "Modifier élément" -#: ../../Zotlabs/Module/Wiki.php:95 +#: ../../Zotlabs/Module/Thing.php:301 ../../Zotlabs/Module/Thing.php:351 +msgid "Select a profile" +msgstr "Choisissez un profil" + +#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:354 +msgid "Post an activity" +msgstr "Publier une activité" + +#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:354 +msgid "Only sends to viewers of the applicable profile" +msgstr "Envoie exclusivement aux visiteurs du profil concerné" + +#: ../../Zotlabs/Module/Thing.php:307 ../../Zotlabs/Module/Thing.php:356 +msgid "Name of thing e.g. something" +msgstr "Nom de l'élément, p.ex. quelque-chose" + +#: ../../Zotlabs/Module/Thing.php:309 ../../Zotlabs/Module/Thing.php:357 +msgid "URL of thing (optional)" +msgstr "URL de l'élément (facultatif)" + +#: ../../Zotlabs/Module/Thing.php:311 ../../Zotlabs/Module/Thing.php:358 +msgid "URL for photo of thing (optional)" +msgstr "URL d'une photo de l'élément (facultatif)" + +#: ../../Zotlabs/Module/Thing.php:349 +msgid "Add Thing to your Profile" +msgstr "Ajouter l'élément à votre profil" + +#: ../../Zotlabs/Module/Uexport.php:55 ../../Zotlabs/Module/Uexport.php:56 +msgid "Export Channel" +msgstr "Exporter le canal" + +#: ../../Zotlabs/Module/Uexport.php:57 msgid "" -"\"# Wiki Sandbox\\n\\nContent you **edit** and **preview** here *will not be" -" saved*.\"" -msgstr "" +"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 "Exportez les principales informations de votre canal dans un fichier. Celui-ci pourra servir de sauvegarde de vos contacts, permissions, profils et données de base. Il pourra être importé sur un nouveau hub/serveur, mais n'embarquera pas vos contenus." -#: ../../Zotlabs/Module/Wiki.php:164 -msgid "Revision Comparison" -msgstr "" +#: ../../Zotlabs/Module/Uexport.php:58 +msgid "Export Content" +msgstr "Exporter le contenu" -#: ../../Zotlabs/Module/Wiki.php:165 -msgid "Revert" -msgstr "" +#: ../../Zotlabs/Module/Uexport.php:59 +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 "Exportez les informations du canal et les contenus récents dans un fichier JSON. Celui-ci contiendra toutes vos relations, permissions, profils, et plusieurs mois de publications. Ce fichier peut être TRÈS gros. Armez-vous de patience - plusieurs minutes peuvent s'écouler avant que le téléchargement ne commence." -#: ../../Zotlabs/Module/Wiki.php:192 -msgid "Enter the name of your new wiki:" -msgstr "" +#: ../../Zotlabs/Module/Uexport.php:60 +msgid "Export your posts from a given year." +msgstr "Exporter vos publications d'une année en particulier" -#: ../../Zotlabs/Module/Wiki.php:193 -msgid "Enter the name of the new page:" -msgstr "" +#: ../../Zotlabs/Module/Uexport.php:62 +msgid "" +"You may also export your posts and conversations for a particular year or " +"month. Adjust the date in your browser location bar to select other dates. " +"If the export fails (possibly due to memory exhaustion on your server hub), " +"please try again selecting a more limited date range." +msgstr "Vous pouvez également exporter vos publications et conversations pour une année ou un mois particulier. Ajustez la date dans la barre de votre navigateur pour sélectionner d'autres dates. Si l'export échoue (possible en cas de pénurie de mémoire sur le serveur de votre hub), essayez à nouveau en sélectionnant un intervalle de dates plus petit." -#: ../../Zotlabs/Module/Wiki.php:194 -msgid "Enter the new name:" -msgstr "" +#: ../../Zotlabs/Module/Uexport.php:63 +#, php-format +msgid "" +"To select all posts for a given year, such as this year, visit %2$s" +msgstr "Pour sélectionner toutes les publications pour une année donnée, telle que cette année, visitez %2$s" -#: ../../Zotlabs/Module/Wiki.php:200 ../../include/conversation.php:1150 -msgid "Embed image from photo albums" -msgstr "" +#: ../../Zotlabs/Module/Uexport.php:64 +#, php-format +msgid "" +"To select all posts for a given month, such as January of this year, visit " +"%2$s" +msgstr "Pour sélectionner toutes les publications pour un mois donné, par exemple janvier, visitez %2$s" -#: ../../Zotlabs/Module/Wiki.php:201 ../../include/conversation.php:1234 -msgid "Embed an image from your albums" -msgstr "" +#: ../../Zotlabs/Module/Uexport.php:65 +#, php-format +msgid "" +"These content files may be imported or restored by visiting %2$s on any site containing your channel. For best results" +" please import or restore these in date order (oldest first)." +msgstr "Ces fichiers de contenu peuvent être importés ou restaurés en visitant %2$s sur n'importe quel site hébergeant votre canal. Pour de meilleurs résultats merci de les importer par ordre chronologique (les plus anciens d'abord)." -#: ../../Zotlabs/Module/Wiki.php:203 ../../include/conversation.php:1236 -#: ../../include/conversation.php:1273 -msgid "OK" -msgstr "OK" - -#: ../../Zotlabs/Module/Wiki.php:204 ../../include/conversation.php:1186 -msgid "Choose images to embed" -msgstr "" - -#: ../../Zotlabs/Module/Wiki.php:205 ../../include/conversation.php:1187 -msgid "Choose an album" -msgstr "" - -#: ../../Zotlabs/Module/Wiki.php:206 ../../include/conversation.php:1188 -msgid "Choose a different album..." -msgstr "" - -#: ../../Zotlabs/Module/Wiki.php:207 ../../include/conversation.php:1189 -msgid "Error getting album list" -msgstr "" - -#: ../../Zotlabs/Module/Wiki.php:208 ../../include/conversation.php:1190 -msgid "Error getting photo link" -msgstr "" - -#: ../../Zotlabs/Module/Wiki.php:209 ../../include/conversation.php:1191 -msgid "Error getting album" -msgstr "" - -#: ../../Zotlabs/Module/Viewconnections.php:65 +#: ../../Zotlabs/Module/Viewconnections.php:62 msgid "No connections." msgstr "Aucun contact." -#: ../../Zotlabs/Module/Viewconnections.php:78 +#: ../../Zotlabs/Module/Viewconnections.php:75 #, php-format msgid "Visit %s's profile [%s]" msgstr "Visiter le profil de %s [%s]" -#: ../../Zotlabs/Module/Viewconnections.php:107 +#: ../../Zotlabs/Module/Viewconnections.php:104 msgid "View Connections" msgstr "Voir les contacts" @@ -6528,23 +6239,22 @@ msgstr "Voir les contacts" msgid "Source of Item" msgstr "Source de l'élément" -#: ../../Zotlabs/Module/Api.php:61 ../../Zotlabs/Module/Api.php:85 -msgid "Authorize application connection" -msgstr "Autoriser l'application à se connecter" +#: ../../Zotlabs/Module/Webpages.php:184 ../../Zotlabs/Lib/Apps.php:217 +#: ../../include/nav.php:106 ../../include/conversation.php:1685 +msgid "Webpages" +msgstr "Pages web" -#: ../../Zotlabs/Module/Api.php:62 -msgid "Return to your app and insert this Securty Code:" -msgstr "Merci de retourner vers votre application, et d'y insérer ce Code de Sécurité :" +#: ../../Zotlabs/Module/Webpages.php:195 ../../include/page_widgets.php:41 +msgid "Actions" +msgstr "Actions" -#: ../../Zotlabs/Module/Api.php:72 -msgid "Please login to continue." -msgstr "Merci de vous identifier pour continuer." +#: ../../Zotlabs/Module/Webpages.php:196 ../../include/page_widgets.php:42 +msgid "Page Link" +msgstr "Lien vers la page" -#: ../../Zotlabs/Module/Api.php:87 -msgid "" -"Do you want to authorize this application to access your posts and contacts," -" and/or create new posts for you?" -msgstr "Voulez-vous autoriser cette application à accéder à vos publications et contacts, et/ou à publier en votre nom?" +#: ../../Zotlabs/Module/Webpages.php:197 +msgid "Page Title" +msgstr "Titre de la page" #: ../../Zotlabs/Module/Xchan.php:10 msgid "Xchan Lookup" @@ -6554,6 +6264,92 @@ msgstr "Recherche xchan" msgid "Lookup xchan beginning with (or webbie): " msgstr "Recherche xchan commençant par (ou adresse \"webbie\") :" +#: ../../Zotlabs/Lib/Apps.php:204 +msgid "Site Admin" +msgstr "Administrateur" + +#: ../../Zotlabs/Lib/Apps.php:205 +msgid "Bug Report" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:206 +msgid "View Bookmarks" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:207 +msgid "My Chatrooms" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:209 +msgid "Firefox Share" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:210 +msgid "Remote Diagnostics" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:211 ../../include/features.php:89 +msgid "Suggest Channels" +msgstr "Suggérer des canaux" + +#: ../../Zotlabs/Lib/Apps.php:212 ../../include/nav.php:110 +#: ../../boot.php:1703 +msgid "Login" +msgstr "Connexion" + +#: ../../Zotlabs/Lib/Apps.php:214 ../../include/nav.php:179 +msgid "Grid" +msgstr "Réseau" + +#: ../../Zotlabs/Lib/Apps.php:218 ../../include/nav.php:182 +msgid "Channel Home" +msgstr "Mon canal" + +#: ../../Zotlabs/Lib/Apps.php:221 ../../include/nav.php:201 +#: ../../include/conversation.php:1649 ../../include/conversation.php:1652 +msgid "Events" +msgstr "Événements" + +#: ../../Zotlabs/Lib/Apps.php:222 ../../include/nav.php:167 +msgid "Directory" +msgstr "Annuaire" + +#: ../../Zotlabs/Lib/Apps.php:224 ../../include/nav.php:193 +msgid "Mail" +msgstr "Messages" + +#: ../../Zotlabs/Lib/Apps.php:227 ../../include/nav.php:96 +msgid "Chat" +msgstr "Clavardage" + +#: ../../Zotlabs/Lib/Apps.php:229 +msgid "Probe" +msgstr "Sonder" + +#: ../../Zotlabs/Lib/Apps.php:230 +msgid "Suggest" +msgstr "Suggérer" + +#: ../../Zotlabs/Lib/Apps.php:231 +msgid "Random Channel" +msgstr "Un canal au hasard" + +#: ../../Zotlabs/Lib/Apps.php:232 +msgid "Invite" +msgstr "Invitation" + +#: ../../Zotlabs/Lib/Apps.php:233 ../../include/widgets.php:1386 +msgid "Features" +msgstr "Fonctionalités" + +#: ../../Zotlabs/Lib/Apps.php:235 +msgid "Post" +msgstr "Envoyer" + +#: ../../Zotlabs/Lib/Apps.php:335 +msgid "Purchase" +msgstr "Acheter" + #: ../../Zotlabs/Lib/Chatroom.php:27 msgid "Missing room name" msgstr "Il manque le nom du salon" @@ -6574,19 +6370,19 @@ msgstr "Salon introuvable." msgid "Room is full" msgstr "Le salon est plein" -#: ../../Zotlabs/Lib/Enotify.php:60 ../../include/network.php:1882 +#: ../../Zotlabs/Lib/Enotify.php:60 ../../include/network.php:1823 msgid "$Projectname Notification" msgstr "Notification $Projectname" -#: ../../Zotlabs/Lib/Enotify.php:61 ../../include/network.php:1883 +#: ../../Zotlabs/Lib/Enotify.php:61 ../../include/network.php:1824 msgid "$projectname" msgstr "$projectname" -#: ../../Zotlabs/Lib/Enotify.php:63 ../../include/network.php:1885 +#: ../../Zotlabs/Lib/Enotify.php:63 ../../include/network.php:1826 msgid "Thank You," msgstr "Merci," -#: ../../Zotlabs/Lib/Enotify.php:65 ../../include/network.php:1887 +#: ../../Zotlabs/Lib/Enotify.php:65 ../../include/network.php:1828 #, php-format msgid "%s Administrator" msgstr "l'administrateur de %s" @@ -6779,97 +6575,11 @@ msgstr "a publié un nouveau message" msgid "commented on %s's post" msgstr "a commenté la publication de %s" -#: ../../Zotlabs/Lib/Apps.php:205 -msgid "Site Admin" -msgstr "Administrateur" - -#: ../../Zotlabs/Lib/Apps.php:206 -msgid "Bug Report" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:207 -msgid "View Bookmarks" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:208 -msgid "My Chatrooms" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:210 -msgid "Firefox Share" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:211 -msgid "Remote Diagnostics" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:212 ../../include/features.php:90 -msgid "Suggest Channels" -msgstr "Suggérer des canaux" - -#: ../../Zotlabs/Lib/Apps.php:213 ../../include/nav.php:112 -#: ../../boot.php:1704 -msgid "Login" -msgstr "Connexion" - -#: ../../Zotlabs/Lib/Apps.php:215 ../../include/nav.php:181 -msgid "Grid" -msgstr "Réseau" - -#: ../../Zotlabs/Lib/Apps.php:220 ../../include/nav.php:184 -msgid "Channel Home" -msgstr "Mon canal" - -#: ../../Zotlabs/Lib/Apps.php:223 ../../include/nav.php:203 -#: ../../include/conversation.php:1664 ../../include/conversation.php:1667 -msgid "Events" -msgstr "Événements" - -#: ../../Zotlabs/Lib/Apps.php:224 ../../include/nav.php:169 -msgid "Directory" -msgstr "Annuaire" - -#: ../../Zotlabs/Lib/Apps.php:226 ../../include/nav.php:195 -msgid "Mail" -msgstr "Messages" - -#: ../../Zotlabs/Lib/Apps.php:229 ../../include/nav.php:96 -msgid "Chat" -msgstr "Clavardage" - -#: ../../Zotlabs/Lib/Apps.php:231 -msgid "Probe" -msgstr "Sonder" - -#: ../../Zotlabs/Lib/Apps.php:232 -msgid "Suggest" -msgstr "Suggérer" - -#: ../../Zotlabs/Lib/Apps.php:233 -msgid "Random Channel" -msgstr "Un canal au hasard" - -#: ../../Zotlabs/Lib/Apps.php:234 -msgid "Invite" -msgstr "Invitation" - -#: ../../Zotlabs/Lib/Apps.php:235 ../../include/widgets.php:1480 -msgid "Features" -msgstr "Fonctionalités" - -#: ../../Zotlabs/Lib/Apps.php:237 -msgid "Post" -msgstr "Envoyer" - -#: ../../Zotlabs/Lib/Apps.php:339 -msgid "Purchase" -msgstr "Acheter" - -#: ../../Zotlabs/Lib/ThreadItem.php:95 ../../include/conversation.php:667 +#: ../../Zotlabs/Lib/ThreadItem.php:95 ../../include/conversation.php:664 msgid "Private Message" msgstr "Message Privé" -#: ../../Zotlabs/Lib/ThreadItem.php:132 ../../include/conversation.php:659 +#: ../../Zotlabs/Lib/ThreadItem.php:132 ../../include/conversation.php:656 msgid "Select" msgstr "Sélectionner" @@ -6917,11 +6627,11 @@ msgstr "(Dés)activer l'étoile" msgid "starred" msgstr "mis en avant" -#: ../../Zotlabs/Lib/ThreadItem.php:234 ../../include/conversation.php:674 +#: ../../Zotlabs/Lib/ThreadItem.php:234 ../../include/conversation.php:671 msgid "Message signature validated" msgstr "Signature du message validée" -#: ../../Zotlabs/Lib/ThreadItem.php:235 ../../include/conversation.php:675 +#: ../../Zotlabs/Lib/ThreadItem.php:235 ../../include/conversation.php:672 msgid "Message signature incorrect" msgstr "Signature du message incorrecte" @@ -6977,17 +6687,17 @@ msgstr "Mur-à-mur" msgid "via Wall-To-Wall:" msgstr "par Mur-à-mur :" -#: ../../Zotlabs/Lib/ThreadItem.php:341 ../../include/conversation.php:722 +#: ../../Zotlabs/Lib/ThreadItem.php:341 ../../include/conversation.php:719 #, php-format msgid "from %s" msgstr "de %s" -#: ../../Zotlabs/Lib/ThreadItem.php:344 ../../include/conversation.php:725 +#: ../../Zotlabs/Lib/ThreadItem.php:344 ../../include/conversation.php:722 #, php-format msgid "last edited: %s" msgstr "dernière modification : %s" -#: ../../Zotlabs/Lib/ThreadItem.php:345 ../../include/conversation.php:726 +#: ../../Zotlabs/Lib/ThreadItem.php:345 ../../include/conversation.php:723 #, php-format msgid "Expires: %s" msgstr "Expire : %s" @@ -7005,27 +6715,26 @@ msgid "Mark all seen" msgstr "Tout marquer comme vu" #: ../../Zotlabs/Lib/ThreadItem.php:421 ../../include/js_strings.php:7 -#, php-format -msgid "%s show all" -msgstr "" +msgid "[+] show all" +msgstr "[+] voir tous" -#: ../../Zotlabs/Lib/ThreadItem.php:711 ../../include/conversation.php:1226 +#: ../../Zotlabs/Lib/ThreadItem.php:711 ../../include/conversation.php:1215 msgid "Bold" msgstr "Gras" -#: ../../Zotlabs/Lib/ThreadItem.php:712 ../../include/conversation.php:1227 +#: ../../Zotlabs/Lib/ThreadItem.php:712 ../../include/conversation.php:1216 msgid "Italic" msgstr "Italique" -#: ../../Zotlabs/Lib/ThreadItem.php:713 ../../include/conversation.php:1228 +#: ../../Zotlabs/Lib/ThreadItem.php:713 ../../include/conversation.php:1217 msgid "Underline" msgstr "Souligné" -#: ../../Zotlabs/Lib/ThreadItem.php:714 ../../include/conversation.php:1229 +#: ../../Zotlabs/Lib/ThreadItem.php:714 ../../include/conversation.php:1218 msgid "Quote" msgstr "Citation" -#: ../../Zotlabs/Lib/ThreadItem.php:715 ../../include/conversation.php:1230 +#: ../../Zotlabs/Lib/ThreadItem.php:715 ../../include/conversation.php:1219 msgid "Code" msgstr "Code" @@ -7041,74 +6750,11 @@ msgstr "Insérer un lien" msgid "Video" msgstr "Vidéo" -#: ../../Zotlabs/Lib/PermissionDescription.php:31 -#: ../../include/acl_selectors.php:230 -msgid "Visible to your default audience" -msgstr "Visible pour vos contacts seulement" - -#: ../../Zotlabs/Lib/PermissionDescription.php:106 -#: ../../include/acl_selectors.php:266 -msgid "Only me" -msgstr "" - -#: ../../Zotlabs/Lib/PermissionDescription.php:107 -msgid "Public" -msgstr "Public" - -#: ../../Zotlabs/Lib/PermissionDescription.php:108 -msgid "Anybody in the $Projectname network" -msgstr "" - -#: ../../Zotlabs/Lib/PermissionDescription.php:109 -#, php-format -msgid "Any account on %s" -msgstr "" - -#: ../../Zotlabs/Lib/PermissionDescription.php:110 -msgid "Any of my connections" -msgstr "" - -#: ../../Zotlabs/Lib/PermissionDescription.php:111 -msgid "Only connections I specifically allow" -msgstr "" - -#: ../../Zotlabs/Lib/PermissionDescription.php:112 -msgid "Anybody authenticated (could include visitors from other networks)" -msgstr "" - -#: ../../Zotlabs/Lib/PermissionDescription.php:113 -msgid "Any connections including those who haven't yet been approved" -msgstr "" - -#: ../../Zotlabs/Lib/PermissionDescription.php:152 -msgid "" -"This is your default setting for the audience of your normal stream, and " -"posts." -msgstr "" - -#: ../../Zotlabs/Lib/PermissionDescription.php:153 -msgid "" -"This is your default setting for who can view your default channel profile" -msgstr "" - -#: ../../Zotlabs/Lib/PermissionDescription.php:154 -msgid "This is your default setting for who can view your connections" -msgstr "" - -#: ../../Zotlabs/Lib/PermissionDescription.php:155 -msgid "" -"This is your default setting for who can view your file storage and photos" -msgstr "" - -#: ../../Zotlabs/Lib/PermissionDescription.php:156 -msgid "This is your default setting for the audience of your webpages" -msgstr "" - #: ../../include/Import/import_diaspora.php:16 msgid "No username found in import file." msgstr "Aucun nom d'utilisateur dans le fichier d'import." -#: ../../include/Import/import_diaspora.php:41 ../../include/import.php:51 +#: ../../include/Import/import_diaspora.php:41 ../../include/import.php:50 msgid "Unable to create a unique channel address. Import failed." msgstr "Impossible de créer une adresse de canal unique. Echec de l'import." @@ -7117,291 +6763,6 @@ msgstr "Impossible de créer une adresse de canal unique. Echec de l'import." msgid "Cannot locate DNS info for database server '%s'" msgstr "Impossible de trouver les infos DNS du serveur de BDD '%s'" -#: ../../include/photos.php:114 -#, php-format -msgid "Image exceeds website size limit of %lu bytes" -msgstr "L'image dépasse la taille limite de %lu octets" - -#: ../../include/photos.php:121 -msgid "Image file is empty." -msgstr "L'image est vide." - -#: ../../include/photos.php:259 -msgid "Photo storage failed." -msgstr "Le stockage de l'image a échoué." - -#: ../../include/photos.php:299 -msgid "a new photo" -msgstr "une nouvelle photo" - -#: ../../include/photos.php:303 -#, php-format -msgctxt "photo_upload" -msgid "%1$s posted %2$s to %3$s" -msgstr "%1$s a publié %2$s pour %3$s" - -#: ../../include/photos.php:506 ../../include/conversation.php:1650 -msgid "Photo Albums" -msgstr "Albums photo" - -#: ../../include/photos.php:510 -msgid "Upload New Photos" -msgstr "Ajouter des photos" - -#: ../../include/nav.php:82 ../../include/nav.php:115 ../../boot.php:1703 -msgid "Logout" -msgstr "Déconnexion" - -#: ../../include/nav.php:82 ../../include/nav.php:115 -msgid "End this session" -msgstr "Mettre fin à la session" - -#: ../../include/nav.php:85 ../../include/nav.php:146 -msgid "Home" -msgstr "Mon canal" - -#: ../../include/nav.php:85 -msgid "Your posts and conversations" -msgstr "Vos publications et conversations" - -#: ../../include/nav.php:86 -msgid "Your profile page" -msgstr "Votre profil" - -#: ../../include/nav.php:88 -msgid "Manage/Edit profiles" -msgstr "Gérer/modifier les profils" - -#: ../../include/nav.php:90 ../../include/channel.php:980 -msgid "Edit Profile" -msgstr "Éditeur de profil" - -#: ../../include/nav.php:90 -msgid "Edit your profile" -msgstr "Modifier votre profil" - -#: ../../include/nav.php:92 -msgid "Your photos" -msgstr "Vos photos" - -#: ../../include/nav.php:93 -msgid "Your files" -msgstr "Vos fichiers" - -#: ../../include/nav.php:96 -msgid "Your chatrooms" -msgstr "Vos salons" - -#: ../../include/nav.php:102 ../../include/conversation.php:1690 -msgid "Bookmarks" -msgstr "Favoris" - -#: ../../include/nav.php:102 -msgid "Your bookmarks" -msgstr "Vos favoris" - -#: ../../include/nav.php:106 -msgid "Your webpages" -msgstr "Vos pages web" - -#: ../../include/nav.php:108 -msgid "Your wiki" -msgstr "" - -#: ../../include/nav.php:112 -msgid "Sign in" -msgstr "Connexion" - -#: ../../include/nav.php:129 -#, php-format -msgid "%s - click to logout" -msgstr "%s - cliquer ici pour déconnecter" - -#: ../../include/nav.php:132 -msgid "Remote authentication" -msgstr "Authentification distante" - -#: ../../include/nav.php:132 -msgid "Click to authenticate to your home hub" -msgstr "S'authentifier auprès de votre hub principal" - -#: ../../include/nav.php:146 -msgid "Home Page" -msgstr "Page d'accueil" - -#: ../../include/nav.php:149 -msgid "Create an account" -msgstr "Créer un compte" - -#: ../../include/nav.php:161 -msgid "Help and documentation" -msgstr "Aide et documentation" - -#: ../../include/nav.php:165 -msgid "Applications, utilities, links, games" -msgstr "Applications, utilitaires, liens, jeux" - -#: ../../include/nav.php:167 -msgid "Search site @name, #tag, ?docs, content" -msgstr "Recherche @nom, #tag, contenu" - -#: ../../include/nav.php:169 -msgid "Channel Directory" -msgstr "Annuaire des canaux" - -#: ../../include/nav.php:181 -msgid "Your grid" -msgstr "Votre réseau" - -#: ../../include/nav.php:182 -msgid "Mark all grid notifications seen" -msgstr "Marquer toutes les notifications du réseau comme vues" - -#: ../../include/nav.php:184 -msgid "Channel home" -msgstr "Mon canal" - -#: ../../include/nav.php:185 -msgid "Mark all channel notifications seen" -msgstr "Marquer toutes les notifications du canal comme vues" - -#: ../../include/nav.php:191 -msgid "Notices" -msgstr "Notifications" - -#: ../../include/nav.php:191 -msgid "Notifications" -msgstr "Notifications" - -#: ../../include/nav.php:192 -msgid "See all notifications" -msgstr "Voir toutes les notifications" - -#: ../../include/nav.php:195 -msgid "Private mail" -msgstr "Messages privés" - -#: ../../include/nav.php:196 -msgid "See all private messages" -msgstr "Voir tous les messages privés" - -#: ../../include/nav.php:197 -msgid "Mark all private messages seen" -msgstr "Marquer tous les messages privés comme vus" - -#: ../../include/nav.php:198 ../../include/widgets.php:667 -msgid "Inbox" -msgstr "Boîte de réception" - -#: ../../include/nav.php:199 ../../include/widgets.php:672 -msgid "Outbox" -msgstr "Boîte d'envoi" - -#: ../../include/nav.php:200 ../../include/widgets.php:677 -msgid "New Message" -msgstr "Nouveau message" - -#: ../../include/nav.php:203 -msgid "Event Calendar" -msgstr "Calendrier des événements" - -#: ../../include/nav.php:204 -msgid "See all events" -msgstr "Voir tous les événements" - -#: ../../include/nav.php:205 -msgid "Mark all events seen" -msgstr "Marquer tous les événements comme vus" - -#: ../../include/nav.php:208 -msgid "Manage Your Channels" -msgstr "Gérer vos canaux" - -#: ../../include/nav.php:210 -msgid "Account/Channel Settings" -msgstr "Paramètres du Compte/Canal" - -#: ../../include/nav.php:218 ../../include/widgets.php:1510 -msgid "Admin" -msgstr "Administrateur" - -#: ../../include/nav.php:218 -msgid "Site Setup and Configuration" -msgstr "Configuration du site" - -#: ../../include/nav.php:249 ../../include/conversation.php:854 -msgid "Loading..." -msgstr "Chargement..." - -#: ../../include/nav.php:254 -msgid "@name, #tag, ?doc, content" -msgstr "@nom, #étiquette, ?doc, contenu" - -#: ../../include/nav.php:255 -msgid "Please wait..." -msgstr "Merci de patienter..." - -#: ../../include/network.php:704 -msgid "view full size" -msgstr "voir en taille réelle" - -#: ../../include/network.php:1930 ../../include/account.php:317 -#: ../../include/account.php:344 ../../include/account.php:404 -msgid "Administrator" -msgstr "Administrateur" - -#: ../../include/network.php:1944 -msgid "No Subject" -msgstr "Pas d'objet" - -#: ../../include/network.php:2198 ../../include/network.php:2199 -msgid "Friendica" -msgstr "Friendica" - -#: ../../include/network.php:2200 -msgid "OStatus" -msgstr "OStatus" - -#: ../../include/network.php:2201 -msgid "GNU-Social" -msgstr "" - -#: ../../include/network.php:2202 -msgid "RSS/Atom" -msgstr "RSS/Atom" - -#: ../../include/network.php:2204 -msgid "Diaspora" -msgstr "Diaspora" - -#: ../../include/network.php:2205 -msgid "Facebook" -msgstr "Facebook" - -#: ../../include/network.php:2206 -msgid "Zot" -msgstr "Zot" - -#: ../../include/network.php:2207 -msgid "LinkedIn" -msgstr "Linkedin" - -#: ../../include/network.php:2208 -msgid "XMPP/IM" -msgstr "XMPP/IM" - -#: ../../include/network.php:2209 -msgid "MySpace" -msgstr "MySpace" - -#: ../../include/page_widgets.php:7 -msgid "New Page" -msgstr "Nouvelle page" - -#: ../../include/page_widgets.php:46 -msgid "Title" -msgstr "Titre" - #: ../../include/taxonomy.php:188 ../../include/taxonomy.php:270 #: ../../include/widgets.php:46 ../../include/widgets.php:429 #: ../../include/contact_widgets.php:91 @@ -7440,159 +6801,952 @@ msgstr "aime" msgid "dislikes" msgstr "n'aime pas" -#: ../../include/channel.php:33 -msgid "Unable to obtain identity information from database" -msgstr "Impossible d'obtenir les données d'identité depuis la base de données" +#: ../../include/event.php:22 ../../include/event.php:69 +#: ../../include/bb2diaspora.php:485 +msgid "l F d, Y \\@ g:i A" +msgstr "l d F Y \\à G\\hi" -#: ../../include/channel.php:67 -msgid "Empty name" -msgstr "Nom vide" +#: ../../include/event.php:30 ../../include/event.php:73 +#: ../../include/bb2diaspora.php:491 +msgid "Starts:" +msgstr "Début :" -#: ../../include/channel.php:70 -msgid "Name too long" -msgstr "Nom trop long" +#: ../../include/event.php:40 ../../include/event.php:77 +#: ../../include/bb2diaspora.php:499 +msgid "Finishes:" +msgstr "Fin :" -#: ../../include/channel.php:181 -msgid "No account identifier" -msgstr "Pas d'identifiant de compte" +#: ../../include/event.php:812 +msgid "This event has been added to your calendar." +msgstr "Cet évènement a été ajouté dans votre calendrier." -#: ../../include/channel.php:193 -msgid "Nickname is required." -msgstr "Un surnom est requis." +#: ../../include/event.php:1012 +msgid "Not specified" +msgstr "Non spécifié" -#: ../../include/channel.php:207 -msgid "Reserved nickname. Please choose another." -msgstr "Surnom réservé. Merci d'en choisir un autre." +#: ../../include/event.php:1013 +msgid "Needs Action" +msgstr "Besoin d'une action" -#: ../../include/channel.php:212 +#: ../../include/event.php:1014 +msgid "Completed" +msgstr "Terminé" + +#: ../../include/event.php:1015 +msgid "In Process" +msgstr "En cours" + +#: ../../include/event.php:1016 +msgid "Cancelled" +msgstr "Annulé" + +#: ../../include/import.php:29 msgid "" -"Nickname has unsupported characters or is already being used on this site." -msgstr "Le surnom contient des caractères interdits ou est déjà pris sur ce site." +"Cannot create a duplicate channel identifier on this system. Import failed." +msgstr "L'import a échoué. Un canal existe déjà avec ce nom" -#: ../../include/channel.php:272 -msgid "Unable to retrieve created identity" -msgstr "Impossible de récupérer l'identité créée" +#: ../../include/import.php:76 +msgid "Channel clone failed. Import failed." +msgstr "Echec du clonage du canal. Echec de l'impot." -#: ../../include/channel.php:341 -msgid "Default Profile" -msgstr "Profil par défaut" +#: ../../include/items.php:892 ../../include/items.php:937 +msgid "(Unknown)" +msgstr "(Inconnu)" -#: ../../include/channel.php:830 -msgid "Requested channel is not available." -msgstr "Canal demandé non disponible." +#: ../../include/items.php:1136 +msgid "Visible to anybody on the internet." +msgstr "Visible pour tout le monde sur internet." -#: ../../include/channel.php:977 -msgid "Create New Profile" -msgstr "Créer un nouveau profil" +#: ../../include/items.php:1138 +msgid "Visible to you only." +msgstr "Visible pour vous seulement." -#: ../../include/channel.php:997 -msgid "Visible to everybody" -msgstr "Visible de tous" +#: ../../include/items.php:1140 +msgid "Visible to anybody in this network." +msgstr "Visible pour tout le monde sur ce réseau." -#: ../../include/channel.php:1070 ../../include/channel.php:1182 -msgid "Gender:" -msgstr "Sexe :" +#: ../../include/items.php:1142 +msgid "Visible to anybody authenticated." +msgstr "Visible aux utilisateurs authentifiés." -#: ../../include/channel.php:1071 ../../include/channel.php:1226 -msgid "Status:" -msgstr "État :" - -#: ../../include/channel.php:1072 ../../include/channel.php:1237 -msgid "Homepage:" -msgstr "Site Internet :" - -#: ../../include/channel.php:1073 -msgid "Online Now" -msgstr "Connecté" - -#: ../../include/channel.php:1187 -msgid "Like this channel" -msgstr "J'aime ce canal" - -#: ../../include/channel.php:1211 -msgid "j F, Y" -msgstr "j F, Y" - -#: ../../include/channel.php:1212 -msgid "j F" -msgstr "j F" - -#: ../../include/channel.php:1219 -msgid "Birthday:" -msgstr "Date de naissance :" - -#: ../../include/channel.php:1232 +#: ../../include/items.php:1144 #, php-format -msgid "for %1$d %2$s" -msgstr "depuis %1$d %2$s" +msgid "Visible to anybody on %s." +msgstr "Visible pour tous sur %s." -#: ../../include/channel.php:1235 -msgid "Sexual Preference:" -msgstr "Orientation sexuelle :" +#: ../../include/items.php:1146 +msgid "Visible to all connections." +msgstr "Visible pour tous les contacts." -#: ../../include/channel.php:1241 -msgid "Tags:" -msgstr "Étiquettes :" +#: ../../include/items.php:1148 +msgid "Visible to approved connections." +msgstr "Visible aux contacts approuvés." -#: ../../include/channel.php:1243 -msgid "Political Views:" -msgstr "Opinions politiques :" +#: ../../include/items.php:1150 +msgid "Visible to specific connections." +msgstr "Visible pour certains contacts." -#: ../../include/channel.php:1245 -msgid "Religion:" -msgstr "Religion :" +#: ../../include/items.php:3909 +msgid "Privacy group is empty." +msgstr "Groupe d'accès vide." -#: ../../include/channel.php:1249 -msgid "Hobbies/Interests:" -msgstr "Occupations/Centres d'intérêt :" +#: ../../include/items.php:3916 +#, php-format +msgid "Privacy group: %s" +msgstr "Groupe d'accès : %s" -#: ../../include/channel.php:1251 -msgid "Likes:" -msgstr "Aime :" +#: ../../include/items.php:3928 +msgid "Connection not found." +msgstr "Contact non trouvé." -#: ../../include/channel.php:1253 -msgid "Dislikes:" -msgstr "N'aime pas :" +#: ../../include/items.php:4277 +msgid "profile photo" +msgstr "photo de profil" -#: ../../include/channel.php:1255 -msgid "Contact information and Social Networks:" -msgstr "Coordonnées et réseaux sociaux :" +#: ../../include/message.php:20 +msgid "No recipient provided." +msgstr "Pas de destinataire." -#: ../../include/channel.php:1257 -msgid "My other channels:" -msgstr "Mes autres canaux :" +#: ../../include/message.php:25 +msgid "[no subject]" +msgstr "[sans objet]" -#: ../../include/channel.php:1259 -msgid "Musical interests:" -msgstr "Goûts musicaux :" +#: ../../include/message.php:45 +msgid "Unable to determine sender." +msgstr "Impossible de déterminer l'émetteur." -#: ../../include/channel.php:1261 -msgid "Books, literature:" -msgstr "Lectures, goûts littéraires :" +#: ../../include/message.php:222 +msgid "Stored post could not be verified." +msgstr "Le message stocké n'a pas pu être vérifié." -#: ../../include/channel.php:1263 -msgid "Television:" -msgstr "Télévision :" +#: ../../include/text.php:428 +msgid "prev" +msgstr "préc." -#: ../../include/channel.php:1265 -msgid "Film/dance/culture/entertainment:" -msgstr "Cinéma/danse/culture/divertissement&nsbp;:" +#: ../../include/text.php:430 +msgid "first" +msgstr "premier" -#: ../../include/channel.php:1267 -msgid "Love/Romance:" -msgstr "Vie sentimentale/amoureuse :" +#: ../../include/text.php:459 +msgid "last" +msgstr "dernier" -#: ../../include/channel.php:1269 -msgid "Work/employment:" -msgstr "Travail/Occupation " +#: ../../include/text.php:462 +msgid "next" +msgstr "Suivant" -#: ../../include/channel.php:1271 -msgid "School/education:" -msgstr "Études " +#: ../../include/text.php:472 +msgid "older" +msgstr "plus ancien" -#: ../../include/channel.php:1292 -msgid "Like this thing" -msgstr "J'aime ceci" +#: ../../include/text.php:474 +msgid "newer" +msgstr "plus récent" + +#: ../../include/text.php:863 +msgid "No connections" +msgstr "Pas de relations." + +#: ../../include/text.php:888 +#, php-format +msgid "View all %s connections" +msgstr "Voir les %s contacts" + +#: ../../include/text.php:1033 ../../include/text.php:1038 +msgid "poke" +msgstr "tapoter" + +#: ../../include/text.php:1033 ../../include/text.php:1038 +#: ../../include/conversation.php:243 +msgid "poked" +msgstr "a tapoté" + +#: ../../include/text.php:1039 +msgid "ping" +msgstr "ping" + +#: ../../include/text.php:1039 +msgid "pinged" +msgstr "pingé" + +#: ../../include/text.php:1040 +msgid "prod" +msgstr "encourager" + +#: ../../include/text.php:1040 +msgid "prodded" +msgstr "encouragé" + +#: ../../include/text.php:1041 +msgid "slap" +msgstr "giffler" + +#: ../../include/text.php:1041 +msgid "slapped" +msgstr "gifflé(e)" + +#: ../../include/text.php:1042 +msgid "finger" +msgstr "pointer" + +#: ../../include/text.php:1042 +msgid "fingered" +msgstr "pointé" + +#: ../../include/text.php:1043 +msgid "rebuff" +msgstr "rejetter" + +#: ../../include/text.php:1043 +msgid "rebuffed" +msgstr "rejeté" + +#: ../../include/text.php:1055 +msgid "happy" +msgstr "heureux" + +#: ../../include/text.php:1056 +msgid "sad" +msgstr "triste" + +#: ../../include/text.php:1057 +msgid "mellow" +msgstr "mélancolique" + +#: ../../include/text.php:1058 +msgid "tired" +msgstr "fatigué" + +#: ../../include/text.php:1059 +msgid "perky" +msgstr "impertinent" + +#: ../../include/text.php:1060 +msgid "angry" +msgstr "en colère" + +#: ../../include/text.php:1061 +msgid "stupefied" +msgstr "stupéfait" + +#: ../../include/text.php:1062 +msgid "puzzled" +msgstr "perplexe" + +#: ../../include/text.php:1063 +msgid "interested" +msgstr "intéressé" + +#: ../../include/text.php:1064 +msgid "bitter" +msgstr "amer" + +#: ../../include/text.php:1065 +msgid "cheerful" +msgstr "plein d'entrain" + +#: ../../include/text.php:1066 +msgid "alive" +msgstr "vivant" + +#: ../../include/text.php:1067 +msgid "annoyed" +msgstr "agaçé" + +#: ../../include/text.php:1068 +msgid "anxious" +msgstr "anxieux" + +#: ../../include/text.php:1069 +msgid "cranky" +msgstr "énervé" + +#: ../../include/text.php:1070 +msgid "disturbed" +msgstr "perturbé" + +#: ../../include/text.php:1071 +msgid "frustrated" +msgstr "frustré" + +#: ../../include/text.php:1072 +msgid "depressed" +msgstr "déprimé" + +#: ../../include/text.php:1073 +msgid "motivated" +msgstr "motivé" + +#: ../../include/text.php:1074 +msgid "relaxed" +msgstr "détendu" + +#: ../../include/text.php:1075 +msgid "surprised" +msgstr "surpris" + +#: ../../include/text.php:1257 ../../include/js_strings.php:70 +msgid "Monday" +msgstr "Lundi" + +#: ../../include/text.php:1257 ../../include/js_strings.php:71 +msgid "Tuesday" +msgstr "Mardi" + +#: ../../include/text.php:1257 ../../include/js_strings.php:72 +msgid "Wednesday" +msgstr "Mercredi" + +#: ../../include/text.php:1257 ../../include/js_strings.php:73 +msgid "Thursday" +msgstr "Jeudi" + +#: ../../include/text.php:1257 ../../include/js_strings.php:74 +msgid "Friday" +msgstr "Vendredi" + +#: ../../include/text.php:1257 ../../include/js_strings.php:75 +msgid "Saturday" +msgstr "Samedi" + +#: ../../include/text.php:1257 ../../include/js_strings.php:69 +msgid "Sunday" +msgstr "Dimanche" + +#: ../../include/text.php:1261 ../../include/js_strings.php:45 +msgid "January" +msgstr "Janvier" + +#: ../../include/text.php:1261 ../../include/js_strings.php:46 +msgid "February" +msgstr "Février" + +#: ../../include/text.php:1261 ../../include/js_strings.php:47 +msgid "March" +msgstr "Mars" + +#: ../../include/text.php:1261 ../../include/js_strings.php:48 +msgid "April" +msgstr "Avril" + +#: ../../include/text.php:1261 +msgid "May" +msgstr "Mai" + +#: ../../include/text.php:1261 ../../include/js_strings.php:50 +msgid "June" +msgstr "Juin" + +#: ../../include/text.php:1261 ../../include/js_strings.php:51 +msgid "July" +msgstr "Juillet" + +#: ../../include/text.php:1261 ../../include/js_strings.php:52 +msgid "August" +msgstr "Août" + +#: ../../include/text.php:1261 ../../include/js_strings.php:53 +msgid "September" +msgstr "Septembre" + +#: ../../include/text.php:1261 ../../include/js_strings.php:54 +msgid "October" +msgstr "Octobre" + +#: ../../include/text.php:1261 ../../include/js_strings.php:55 +msgid "November" +msgstr "Novembre" + +#: ../../include/text.php:1261 ../../include/js_strings.php:56 +msgid "December" +msgstr "Décembre" + +#: ../../include/text.php:1338 ../../include/text.php:1342 +msgid "Unknown Attachment" +msgstr "Pièce jointe inconnue" + +#: ../../include/text.php:1344 +msgid "unknown" +msgstr "Inconnu" + +#: ../../include/text.php:1380 +msgid "remove category" +msgstr "supprimer la catégorie" + +#: ../../include/text.php:1457 +msgid "remove from file" +msgstr "retirer du fichier" + +#: ../../include/text.php:1753 ../../include/text.php:1824 +msgid "default" +msgstr "défaut" + +#: ../../include/text.php:1761 +msgid "Page layout" +msgstr "Mise en page" + +#: ../../include/text.php:1761 +msgid "You can create your own with the layouts tool" +msgstr "Créez les vôtres avec les outils de mise en page" + +#: ../../include/text.php:1803 +msgid "Page content type" +msgstr "Type de contenu de la page" + +#: ../../include/text.php:1836 +msgid "Select an alternate language" +msgstr "Choisir une langue alternative" + +#: ../../include/text.php:1953 +msgid "activity" +msgstr "activité" + +#: ../../include/text.php:2262 +msgid "Design Tools" +msgstr "Outils de conception" + +#: ../../include/text.php:2268 +msgid "Pages" +msgstr "Pages" + +#: ../../include/widgets.php:103 +msgid "System" +msgstr "Système" + +#: ../../include/widgets.php:106 +msgid "New App" +msgstr "" + +#: ../../include/widgets.php:154 +msgid "Suggestions" +msgstr "Suggestions" + +#: ../../include/widgets.php:155 +msgid "See more..." +msgstr "Voir plus..." + +#: ../../include/widgets.php:175 +#, php-format +msgid "You have %1$.0f of %2$.0f allowed connections." +msgstr "Vous avez %1$.0f sur %2$.0f contacts autorisés." + +#: ../../include/widgets.php:181 +msgid "Add New Connection" +msgstr "Ajouter un nouveau contact" + +#: ../../include/widgets.php:182 +msgid "Enter channel address" +msgstr "Saisissez l'adresse du canal" + +#: ../../include/widgets.php:183 +msgid "Examples: bob@example.com, https://example.com/barbara" +msgstr "Exemples : pierre@exemple.com, https://exemple.com/sophie" + +#: ../../include/widgets.php:199 +msgid "Notes" +msgstr "Notes" + +#: ../../include/widgets.php:273 +msgid "Remove term" +msgstr "Retirer le terme" + +#: ../../include/widgets.php:281 ../../include/features.php:84 +msgid "Saved Searches" +msgstr "Recherches sauvegardées" + +#: ../../include/widgets.php:282 ../../include/group.php:316 +msgid "add" +msgstr "ajouter" + +#: ../../include/widgets.php:310 ../../include/contact_widgets.php:53 +#: ../../include/features.php:98 +msgid "Saved Folders" +msgstr "Dossiers sauvegardés" + +#: ../../include/widgets.php:313 ../../include/widgets.php:432 +#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:94 +msgid "Everything" +msgstr "Tout" + +#: ../../include/widgets.php:354 +msgid "Archives" +msgstr "Archives" + +#: ../../include/widgets.php:516 +msgid "Refresh" +msgstr "Actualiser" + +#: ../../include/widgets.php:556 +msgid "Account settings" +msgstr "Paramètres du compte" + +#: ../../include/widgets.php:562 +msgid "Channel settings" +msgstr "Paramètres du canal" + +#: ../../include/widgets.php:571 +msgid "Additional features" +msgstr "Fonctionnalités supplémentaires" + +#: ../../include/widgets.php:578 +msgid "Feature/Addon settings" +msgstr "Paramètres des extensions/greffons" + +#: ../../include/widgets.php:584 +msgid "Display settings" +msgstr "Paramètres d'affichage" + +#: ../../include/widgets.php:591 +msgid "Manage locations" +msgstr "" + +#: ../../include/widgets.php:600 +msgid "Export channel" +msgstr "Exporter le canal" + +#: ../../include/widgets.php:607 +msgid "Connected apps" +msgstr "Applications connectées" + +#: ../../include/widgets.php:622 +msgid "Premium Channel Settings" +msgstr "Paramètres de canal VIP" + +#: ../../include/widgets.php:651 +msgid "Private Mail Menu" +msgstr "Menu des messages privés" + +#: ../../include/widgets.php:653 +msgid "Combined View" +msgstr "Vue combinée" + +#: ../../include/widgets.php:658 ../../include/nav.php:196 +msgid "Inbox" +msgstr "Boîte de réception" + +#: ../../include/widgets.php:663 ../../include/nav.php:197 +msgid "Outbox" +msgstr "Boîte d'envoi" + +#: ../../include/widgets.php:668 ../../include/nav.php:198 +msgid "New Message" +msgstr "Nouveau message" + +#: ../../include/widgets.php:685 ../../include/widgets.php:697 +msgid "Conversations" +msgstr "Conversations" + +#: ../../include/widgets.php:689 +msgid "Received Messages" +msgstr "Messages reçus" + +#: ../../include/widgets.php:693 +msgid "Sent Messages" +msgstr "Messages envoyés" + +#: ../../include/widgets.php:707 +msgid "No messages." +msgstr "Pas de message." + +#: ../../include/widgets.php:725 +msgid "Delete conversation" +msgstr "Supprimer la conversation" + +#: ../../include/widgets.php:751 +msgid "Events Menu" +msgstr "Menu Evènements" + +#: ../../include/widgets.php:752 +msgid "Day View" +msgstr "Vue Jour" + +#: ../../include/widgets.php:753 +msgid "Week View" +msgstr "Vue Semaine" + +#: ../../include/widgets.php:754 +msgid "Month View" +msgstr "Vue Mois" + +#: ../../include/widgets.php:766 +msgid "Events Tools" +msgstr "Outils Evènements" + +#: ../../include/widgets.php:767 +msgid "Export Calendar" +msgstr "Exporter le calendrier" + +#: ../../include/widgets.php:768 +msgid "Import Calendar" +msgstr "Importer un calendrier" + +#: ../../include/widgets.php:842 ../../include/conversation.php:1662 +#: ../../include/conversation.php:1665 +msgid "Chatrooms" +msgstr "Salons de clavardage" + +#: ../../include/widgets.php:846 +msgid "Overview" +msgstr "" + +#: ../../include/widgets.php:853 +msgid "Chat Members" +msgstr "" + +#: ../../include/widgets.php:876 +msgid "Bookmarked Chatrooms" +msgstr "Salons favoris" + +#: ../../include/widgets.php:899 +msgid "Suggested Chatrooms" +msgstr "Salons suggérés" + +#: ../../include/widgets.php:1044 ../../include/widgets.php:1156 +msgid "photo/image" +msgstr "photo/image" + +#: ../../include/widgets.php:1099 +msgid "Click to show more" +msgstr "Cliquer pour voir plus" + +#: ../../include/widgets.php:1250 +msgid "Rating Tools" +msgstr "Outils d'évaluation" + +#: ../../include/widgets.php:1254 ../../include/widgets.php:1256 +msgid "Rate Me" +msgstr "M'évaluer" + +#: ../../include/widgets.php:1259 +msgid "View Ratings" +msgstr "Voir mes évaluations" + +#: ../../include/widgets.php:1316 +msgid "Forums" +msgstr "Membres du forum" + +#: ../../include/widgets.php:1345 +msgid "Tasks" +msgstr "Tâches" + +#: ../../include/widgets.php:1354 +msgid "Documentation" +msgstr "Documentation" + +#: ../../include/widgets.php:1356 +msgid "Project/Site Information" +msgstr "Information sur le site/projet" + +#: ../../include/widgets.php:1357 +msgid "For Members" +msgstr "Pour les membres" + +#: ../../include/widgets.php:1358 +msgid "For Administrators" +msgstr "Pour les administrateurs" + +#: ../../include/widgets.php:1359 +msgid "For Developers" +msgstr "Pour les développeurs" + +#: ../../include/widgets.php:1383 ../../include/widgets.php:1421 +msgid "Member registrations waiting for confirmation" +msgstr "" + +#: ../../include/widgets.php:1389 +msgid "Inspect queue" +msgstr "Analyser la file d'attente" + +#: ../../include/widgets.php:1391 +msgid "DB updates" +msgstr "Mises à jour BDD" + +#: ../../include/widgets.php:1416 ../../include/nav.php:216 +msgid "Admin" +msgstr "Administrateur" + +#: ../../include/widgets.php:1417 +msgid "Plugin Features" +msgstr "Fonctionnalités des greffons" + +#: ../../include/follow.php:27 +msgid "Channel is blocked on this site." +msgstr "Ce canal est bloqué sur ce site." + +#: ../../include/follow.php:32 +msgid "Channel location missing." +msgstr "Emplacement du canal introuvable." + +#: ../../include/follow.php:81 +msgid "Response from remote channel was incomplete." +msgstr "La réponse du canal distant était incomplète." + +#: ../../include/follow.php:98 +msgid "Channel was deleted and no longer exists." +msgstr "Le canal a été supprimé et n'existe plus." + +#: ../../include/follow.php:154 ../../include/follow.php:190 +msgid "Protocol disabled." +msgstr "Protocole désactivé." + +#: ../../include/follow.php:178 +msgid "Channel discovery failed." +msgstr "La tentative d'accéder au canal a échoué." + +#: ../../include/follow.php:216 +msgid "Cannot connect to yourself." +msgstr "Ne peut pas se connecter à vous." + +#: ../../include/bookmarks.php:35 +#, php-format +msgid "%1$s's bookmarks" +msgstr "Favoris de %1$s" + +#: ../../include/api.php:1336 +msgid "Public Timeline" +msgstr "Fil public" + +#: ../../include/bbcode.php:123 ../../include/bbcode.php:844 +#: ../../include/bbcode.php:847 ../../include/bbcode.php:852 +#: ../../include/bbcode.php:855 ../../include/bbcode.php:858 +#: ../../include/bbcode.php:861 ../../include/bbcode.php:866 +#: ../../include/bbcode.php:869 ../../include/bbcode.php:874 +#: ../../include/bbcode.php:877 ../../include/bbcode.php:880 +#: ../../include/bbcode.php:883 +msgid "Image/photo" +msgstr "Image/photo" + +#: ../../include/bbcode.php:162 ../../include/bbcode.php:894 +msgid "Encrypted content" +msgstr "Contenu chiffré" + +#: ../../include/bbcode.php:178 +#, php-format +msgid "Install %s element: " +msgstr "Installer %s élément" + +#: ../../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 "Ce message contient un élément installable %s, mais vous n'avez pas l'autorisation de l'installer sur ce site." + +#: ../../include/bbcode.php:254 +#, php-format +msgid "%1$s wrote the following %2$s %3$s" +msgstr "%1$s a écrit %2$s qui suit %3$s" + +#: ../../include/bbcode.php:331 ../../include/bbcode.php:339 +msgid "Click to open/close" +msgstr "Cliquer pour ouvrir/fermer" + +#: ../../include/bbcode.php:339 +msgid "spoiler" +msgstr "" + +#: ../../include/bbcode.php:585 +msgid "Different viewers will see this text differently" +msgstr "Ce texte aura un rendu différent en fonction des utilisateurs" + +#: ../../include/bbcode.php:832 +msgid "$1 wrote:" +msgstr "$1 a écrit :" + +#: ../../include/dir_fns.php:141 +msgid "Directory Options" +msgstr "Options d'annuaire" + +#: ../../include/dir_fns.php:143 +msgid "Safe Mode" +msgstr "Mode sûr" + +#: ../../include/dir_fns.php:144 +msgid "Public Forums Only" +msgstr "Les forums publics uniquement" + +#: ../../include/dir_fns.php:145 +msgid "This Website Only" +msgstr "Ce site uniquement" + +#: ../../include/security.php:383 +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 "Le formulaire n'est plus sécurisé, probablement parce qu'il est ouvert depuis trop longtemps (plus de 3 heures)." + +#: ../../include/nav.php:82 ../../include/nav.php:113 ../../boot.php:1702 +msgid "Logout" +msgstr "Déconnexion" + +#: ../../include/nav.php:82 ../../include/nav.php:113 +msgid "End this session" +msgstr "Mettre fin à la session" + +#: ../../include/nav.php:85 ../../include/nav.php:144 +msgid "Home" +msgstr "Mon canal" + +#: ../../include/nav.php:85 +msgid "Your posts and conversations" +msgstr "Vos publications et conversations" + +#: ../../include/nav.php:86 +msgid "Your profile page" +msgstr "Votre profil" + +#: ../../include/nav.php:88 +msgid "Manage/Edit profiles" +msgstr "Gérer/modifier les profils" + +#: ../../include/nav.php:90 ../../include/channel.php:941 +msgid "Edit Profile" +msgstr "Éditeur de profil" + +#: ../../include/nav.php:90 +msgid "Edit your profile" +msgstr "Modifier votre profil" + +#: ../../include/nav.php:92 +msgid "Your photos" +msgstr "Vos photos" + +#: ../../include/nav.php:93 +msgid "Your files" +msgstr "Vos fichiers" + +#: ../../include/nav.php:96 +msgid "Your chatrooms" +msgstr "Vos salons" + +#: ../../include/nav.php:102 ../../include/conversation.php:1675 +msgid "Bookmarks" +msgstr "Favoris" + +#: ../../include/nav.php:102 +msgid "Your bookmarks" +msgstr "Vos favoris" + +#: ../../include/nav.php:106 +msgid "Your webpages" +msgstr "Vos pages web" + +#: ../../include/nav.php:110 +msgid "Sign in" +msgstr "Connexion" + +#: ../../include/nav.php:127 +#, php-format +msgid "%s - click to logout" +msgstr "%s - cliquer ici pour déconnecter" + +#: ../../include/nav.php:130 +msgid "Remote authentication" +msgstr "Authentification distante" + +#: ../../include/nav.php:130 +msgid "Click to authenticate to your home hub" +msgstr "S'authentifier auprès de votre hub principal" + +#: ../../include/nav.php:144 +msgid "Home Page" +msgstr "Page d'accueil" + +#: ../../include/nav.php:147 +msgid "Create an account" +msgstr "Créer un compte" + +#: ../../include/nav.php:159 +msgid "Help and documentation" +msgstr "Aide et documentation" + +#: ../../include/nav.php:163 +msgid "Applications, utilities, links, games" +msgstr "Applications, utilitaires, liens, jeux" + +#: ../../include/nav.php:165 +msgid "Search site @name, #tag, ?docs, content" +msgstr "Recherche @nom, #tag, contenu" + +#: ../../include/nav.php:167 +msgid "Channel Directory" +msgstr "Annuaire des canaux" + +#: ../../include/nav.php:179 +msgid "Your grid" +msgstr "Votre réseau" + +#: ../../include/nav.php:180 +msgid "Mark all grid notifications seen" +msgstr "Marquer toutes les notifications du réseau comme vues" + +#: ../../include/nav.php:182 +msgid "Channel home" +msgstr "Mon canal" + +#: ../../include/nav.php:183 +msgid "Mark all channel notifications seen" +msgstr "Marquer toutes les notifications du canal comme vues" + +#: ../../include/nav.php:189 +msgid "Notices" +msgstr "Notifications" + +#: ../../include/nav.php:189 +msgid "Notifications" +msgstr "Notifications" + +#: ../../include/nav.php:190 +msgid "See all notifications" +msgstr "Voir toutes les notifications" + +#: ../../include/nav.php:193 +msgid "Private mail" +msgstr "Messages privés" + +#: ../../include/nav.php:194 +msgid "See all private messages" +msgstr "Voir tous les messages privés" + +#: ../../include/nav.php:195 +msgid "Mark all private messages seen" +msgstr "Marquer tous les messages privés comme vus" + +#: ../../include/nav.php:201 +msgid "Event Calendar" +msgstr "Calendrier des événements" + +#: ../../include/nav.php:202 +msgid "See all events" +msgstr "Voir tous les événements" + +#: ../../include/nav.php:203 +msgid "Mark all events seen" +msgstr "Marquer tous les événements comme vus" + +#: ../../include/nav.php:206 +msgid "Manage Your Channels" +msgstr "Gérer vos canaux" + +#: ../../include/nav.php:208 +msgid "Account/Channel Settings" +msgstr "Paramètres du Compte/Canal" + +#: ../../include/nav.php:216 +msgid "Site Setup and Configuration" +msgstr "Configuration du site" + +#: ../../include/nav.php:247 ../../include/conversation.php:851 +msgid "Loading..." +msgstr "Chargement..." + +#: ../../include/nav.php:252 +msgid "@name, #tag, ?doc, content" +msgstr "@nom, #étiquette, ?doc, contenu" + +#: ../../include/nav.php:253 +msgid "Please wait..." +msgstr "Merci de patienter..." #: ../../include/connections.php:95 msgid "New window" @@ -7607,6 +7761,52 @@ msgstr "Ouvrir l'emplacement dans une fenêtre ou un onglet différent" msgid "User '%s' deleted" msgstr "Utilisateur '%s' supprimé" +#: ../../include/contact_widgets.php:11 +#, php-format +msgid "%d invitation available" +msgid_plural "%d invitations available" +msgstr[0] "%d invitation disponible" +msgstr[1] "%d invitations disponibles" + +#: ../../include/contact_widgets.php:19 +msgid "Find Channels" +msgstr "Trouver des canaux" + +#: ../../include/contact_widgets.php:20 +msgid "Enter name or interest" +msgstr "Saisir nom ou centre d'intérêt" + +#: ../../include/contact_widgets.php:21 +msgid "Connect/Follow" +msgstr "Ajouter/Suivre" + +#: ../../include/contact_widgets.php:22 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "Exemples: Guillaume Martin, Course à pieds" + +#: ../../include/contact_widgets.php:26 +msgid "Random Profile" +msgstr "Un profil au hasard" + +#: ../../include/contact_widgets.php:27 +msgid "Invite Friends" +msgstr "Inviter des amis" + +#: ../../include/contact_widgets.php:29 +msgid "Advanced example: name=fred and country=iceland" +msgstr "Exemple avancé : name=fred and country=iceland" + +#: ../../include/contact_widgets.php:122 +#, php-format +msgid "%d connection in common" +msgid_plural "%d connections in common" +msgstr[0] "%d contact en commun" +msgstr[1] "%d contacts en commun" + +#: ../../include/contact_widgets.php:127 +msgid "show more" +msgstr "montrer plus" + #: ../../include/conversation.php:204 #, php-format msgid "%1$s is now connected with %2$s" @@ -7617,269 +7817,258 @@ msgstr "%1$s ajoute %2$s à ses contacts" msgid "%1$s poked %2$s" msgstr "%1$s a tapoté %2$s" -#: ../../include/conversation.php:243 ../../include/text.php:1013 -#: ../../include/text.php:1018 -msgid "poked" -msgstr "a tapoté" - -#: ../../include/conversation.php:694 +#: ../../include/conversation.php:691 #, php-format msgid "View %s's profile @ %s" msgstr "Voir le profil de %s @ %s" -#: ../../include/conversation.php:713 +#: ../../include/conversation.php:710 msgid "Categories:" msgstr "Catégories :" -#: ../../include/conversation.php:714 +#: ../../include/conversation.php:711 msgid "Filed under:" msgstr "Classé sous :" -#: ../../include/conversation.php:741 +#: ../../include/conversation.php:738 msgid "View in context" msgstr "Voir en contexte" -#: ../../include/conversation.php:850 +#: ../../include/conversation.php:847 msgid "remove" msgstr "supprimer" -#: ../../include/conversation.php:855 +#: ../../include/conversation.php:852 msgid "Delete Selected Items" msgstr "Supprimer les éléments selectionnés" -#: ../../include/conversation.php:951 +#: ../../include/conversation.php:948 msgid "View Source" msgstr "Voir source" -#: ../../include/conversation.php:952 +#: ../../include/conversation.php:949 msgid "Follow Thread" msgstr "Suivre la discussion" -#: ../../include/conversation.php:953 +#: ../../include/conversation.php:950 msgid "Unfollow Thread" msgstr "Ne plus suivre la discussion" -#: ../../include/conversation.php:958 +#: ../../include/conversation.php:955 msgid "Activity/Posts" msgstr "Activité/Publications" -#: ../../include/conversation.php:960 +#: ../../include/conversation.php:957 msgid "Edit Connection" msgstr "Modifier le contact" -#: ../../include/conversation.php:961 +#: ../../include/conversation.php:958 msgid "Message" msgstr "Message" -#: ../../include/conversation.php:1078 +#: ../../include/conversation.php:1075 #, php-format msgid "%s likes this." msgstr "%s aime ça." -#: ../../include/conversation.php:1078 +#: ../../include/conversation.php:1075 #, php-format msgid "%s doesn't like this." msgstr "%s n'aime pas ça." -#: ../../include/conversation.php:1082 +#: ../../include/conversation.php:1079 #, php-format msgid "%2$d people like this." msgid_plural "%2$d people like this." msgstr[0] "%2$d personne aime ceci." msgstr[1] "%2$d personnes aiment ceci." -#: ../../include/conversation.php:1084 +#: ../../include/conversation.php:1081 #, php-format msgid "%2$d people don't like this." msgid_plural "%2$d people don't like this." msgstr[0] "%2$d personne n'aime pas ça." msgstr[1] "%2$d personnes n'aiment pas ça." -#: ../../include/conversation.php:1090 +#: ../../include/conversation.php:1087 msgid "and" msgstr "et" -#: ../../include/conversation.php:1093 +#: ../../include/conversation.php:1090 #, php-format msgid ", and %d other people" msgid_plural ", and %d other people" msgstr[0] ", et %d autre personne" msgstr[1] ", et %d autres personnes" -#: ../../include/conversation.php:1094 +#: ../../include/conversation.php:1091 #, php-format msgid "%s like this." msgstr "%s aime ça." -#: ../../include/conversation.php:1094 +#: ../../include/conversation.php:1091 #, php-format msgid "%s don't like this." msgstr "%s n'aime pas ça." -#: ../../include/conversation.php:1133 +#: ../../include/conversation.php:1130 msgid "Set your location" msgstr "Spécifier votre emplacement géographique" -#: ../../include/conversation.php:1134 +#: ../../include/conversation.php:1131 msgid "Clear browser location" msgstr "Supprimer l'emplacement géographique du navigateur" -#: ../../include/conversation.php:1182 +#: ../../include/conversation.php:1177 msgid "Tag term:" msgstr "Étiquette :" -#: ../../include/conversation.php:1183 +#: ../../include/conversation.php:1178 msgid "Where are you right now?" msgstr "Où êtes-vous en ce moment ?" -#: ../../include/conversation.php:1221 +#: ../../include/conversation.php:1210 msgid "Page link name" msgstr "Nom du lien vers la page" -#: ../../include/conversation.php:1224 +#: ../../include/conversation.php:1213 msgid "Post as" msgstr "Publier en tant que" -#: ../../include/conversation.php:1238 +#: ../../include/conversation.php:1223 msgid "Toggle voting" msgstr "(Dés)activer le vote" -#: ../../include/conversation.php:1246 +#: ../../include/conversation.php:1231 msgid "Categories (optional, comma-separated list)" msgstr "Catégories (facultatives, séparées par des virgules)" -#: ../../include/conversation.php:1269 +#: ../../include/conversation.php:1254 msgid "Set publish date" msgstr "Définir la date de publication" -#: ../../include/conversation.php:1518 +#: ../../include/conversation.php:1258 +msgid "OK" +msgstr "OK" + +#: ../../include/conversation.php:1503 msgid "Discover" msgstr "À découvrir" -#: ../../include/conversation.php:1521 +#: ../../include/conversation.php:1506 msgid "Imported public streams" msgstr "Flux publics importés" -#: ../../include/conversation.php:1526 +#: ../../include/conversation.php:1511 msgid "Commented Order" msgstr "Par date de commentaire" -#: ../../include/conversation.php:1529 +#: ../../include/conversation.php:1514 msgid "Sort by Comment Date" msgstr "Trier par date de dernier commentaire" -#: ../../include/conversation.php:1533 +#: ../../include/conversation.php:1518 msgid "Posted Order" msgstr "Par date de publication" -#: ../../include/conversation.php:1536 +#: ../../include/conversation.php:1521 msgid "Sort by Post Date" msgstr "Trier par date de publication" -#: ../../include/conversation.php:1544 +#: ../../include/conversation.php:1529 msgid "Posts that mention or involve you" msgstr "Publications qui vous mentionnent ou vous concernent d'une manière ou d'une autre" -#: ../../include/conversation.php:1553 +#: ../../include/conversation.php:1538 msgid "Activity Stream - by date" msgstr "Flux d'activité - par date" -#: ../../include/conversation.php:1559 +#: ../../include/conversation.php:1544 msgid "Starred" msgstr "Mis en avant (étoiles)" -#: ../../include/conversation.php:1562 +#: ../../include/conversation.php:1547 msgid "Favourite Posts" msgstr "Publications préférées" -#: ../../include/conversation.php:1569 +#: ../../include/conversation.php:1554 msgid "Spam" msgstr "Indésirable" -#: ../../include/conversation.php:1572 +#: ../../include/conversation.php:1557 msgid "Posts flagged as SPAM" msgstr "Publications marquées comme indésirables" -#: ../../include/conversation.php:1629 +#: ../../include/conversation.php:1614 msgid "Status Messages and Posts" msgstr "Messages d'état et contributions" -#: ../../include/conversation.php:1638 +#: ../../include/conversation.php:1623 msgid "About" msgstr "À propos" -#: ../../include/conversation.php:1641 +#: ../../include/conversation.php:1626 msgid "Profile Details" msgstr "Détails du profil" -#: ../../include/conversation.php:1657 +#: ../../include/conversation.php:1635 ../../include/photos.php:502 +msgid "Photo Albums" +msgstr "Albums photo" + +#: ../../include/conversation.php:1642 msgid "Files and Storage" msgstr "Fichiers et Stockage" -#: ../../include/conversation.php:1677 ../../include/conversation.php:1680 -#: ../../include/widgets.php:836 -msgid "Chatrooms" -msgstr "Salons de clavardage" - -#: ../../include/conversation.php:1693 +#: ../../include/conversation.php:1678 msgid "Saved Bookmarks" msgstr "Favoris sauvegardés" -#: ../../include/conversation.php:1703 +#: ../../include/conversation.php:1688 msgid "Manage Webpages" msgstr "Gérer les pages web" -#: ../../include/conversation.php:1768 +#: ../../include/conversation.php:1747 msgctxt "noun" msgid "Attending" msgid_plural "Attending" msgstr[0] "Participe" msgstr[1] "Participent" -#: ../../include/conversation.php:1771 +#: ../../include/conversation.php:1750 msgctxt "noun" msgid "Not Attending" msgid_plural "Not Attending" msgstr[0] "Ne participe pas" msgstr[1] "Ne participent pas" -#: ../../include/conversation.php:1774 +#: ../../include/conversation.php:1753 msgctxt "noun" msgid "Undecided" msgid_plural "Undecided" msgstr[0] "Indécis(e)" msgstr[1] "Indécis(es)" -#: ../../include/conversation.php:1777 +#: ../../include/conversation.php:1756 msgctxt "noun" msgid "Agree" msgid_plural "Agrees" msgstr[0] "D'accord" msgstr[1] "D'accord" -#: ../../include/conversation.php:1780 +#: ../../include/conversation.php:1759 msgctxt "noun" msgid "Disagree" msgid_plural "Disagrees" msgstr[0] "Pas d'accord" msgstr[1] "Pas d'accord" -#: ../../include/conversation.php:1783 +#: ../../include/conversation.php:1762 msgctxt "noun" msgid "Abstain" msgid_plural "Abstains" msgstr[0] "S'abstient" msgstr[1] "S'abstiennent" -#: ../../include/import.php:30 -msgid "" -"Cannot create a duplicate channel identifier on this system. Import failed." -msgstr "L'import a échoué. Un canal existe déjà avec ce nom" - -#: ../../include/import.php:97 -msgid "Channel clone failed. Import failed." -msgstr "Echec du clonage du canal. Echec de l'impot." - #: ../../include/selectors.php:30 msgid "Frequently" msgstr "Fréquemment" @@ -7944,6 +8133,12 @@ msgstr "Neutre" msgid "Non-specific" msgstr "Non spécifique" +#: ../../include/selectors.php:49 ../../include/selectors.php:66 +#: ../../include/selectors.php:104 ../../include/selectors.php:140 +#: ../../include/permissions.php:881 +msgid "Other" +msgstr "Autre" + #: ../../include/selectors.php:49 msgid "Undecided" msgstr "Indécis" @@ -8120,366 +8315,361 @@ msgstr "S'en fiche" msgid "Ask me" msgstr "Me demander" -#: ../../include/bookmarks.php:35 -#, php-format -msgid "%1$s's bookmarks" -msgstr "Favoris de %1$s" +#: ../../include/PermissionDescription.php:31 +#: ../../include/acl_selectors.php:232 +msgid "Visible to your default audience" +msgstr "Visible pour vos contacts seulement" -#: ../../include/security.php:109 -msgid "guest:" +#: ../../include/PermissionDescription.php:115 +#: ../../include/acl_selectors.php:268 +msgid "Only me" msgstr "" -#: ../../include/security.php:427 -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 "Le formulaire n'est plus sécurisé, probablement parce qu'il est ouvert depuis trop longtemps (plus de 3 heures)." +#: ../../include/PermissionDescription.php:116 +msgid "Public" +msgstr "Public" -#: ../../include/text.php:404 -msgid "prev" -msgstr "préc." +#: ../../include/PermissionDescription.php:117 +msgid "Anybody in the $Projectname network" +msgstr "" -#: ../../include/text.php:406 -msgid "first" -msgstr "premier" - -#: ../../include/text.php:435 -msgid "last" -msgstr "dernier" - -#: ../../include/text.php:438 -msgid "next" -msgstr "Suivant" - -#: ../../include/text.php:448 -msgid "older" -msgstr "plus ancien" - -#: ../../include/text.php:450 -msgid "newer" -msgstr "plus récent" - -#: ../../include/text.php:843 -msgid "No connections" -msgstr "Pas de relations." - -#: ../../include/text.php:868 +#: ../../include/PermissionDescription.php:118 #, php-format -msgid "View all %s connections" -msgstr "Voir les %s contacts" +msgid "Any account on %s" +msgstr "" -#: ../../include/text.php:1013 ../../include/text.php:1018 -msgid "poke" -msgstr "tapoter" +#: ../../include/PermissionDescription.php:119 +msgid "Any of my connections" +msgstr "" -#: ../../include/text.php:1019 -msgid "ping" -msgstr "ping" +#: ../../include/PermissionDescription.php:120 +msgid "Only connections I specifically allow" +msgstr "" -#: ../../include/text.php:1019 -msgid "pinged" -msgstr "pingé" +#: ../../include/PermissionDescription.php:121 +msgid "Anybody authenticated (could include visitors from other networks)" +msgstr "" -#: ../../include/text.php:1020 -msgid "prod" -msgstr "encourager" +#: ../../include/PermissionDescription.php:122 +msgid "Any connections including those who haven't yet been approved" +msgstr "" -#: ../../include/text.php:1020 -msgid "prodded" -msgstr "encouragé" - -#: ../../include/text.php:1021 -msgid "slap" -msgstr "giffler" - -#: ../../include/text.php:1021 -msgid "slapped" -msgstr "gifflé(e)" - -#: ../../include/text.php:1022 -msgid "finger" -msgstr "pointer" - -#: ../../include/text.php:1022 -msgid "fingered" -msgstr "pointé" - -#: ../../include/text.php:1023 -msgid "rebuff" -msgstr "rejetter" - -#: ../../include/text.php:1023 -msgid "rebuffed" -msgstr "rejeté" - -#: ../../include/text.php:1035 -msgid "happy" -msgstr "heureux" - -#: ../../include/text.php:1036 -msgid "sad" -msgstr "triste" - -#: ../../include/text.php:1037 -msgid "mellow" -msgstr "mélancolique" - -#: ../../include/text.php:1038 -msgid "tired" -msgstr "fatigué" - -#: ../../include/text.php:1039 -msgid "perky" -msgstr "impertinent" - -#: ../../include/text.php:1040 -msgid "angry" -msgstr "en colère" - -#: ../../include/text.php:1041 -msgid "stupefied" -msgstr "stupéfait" - -#: ../../include/text.php:1042 -msgid "puzzled" -msgstr "perplexe" - -#: ../../include/text.php:1043 -msgid "interested" -msgstr "intéressé" - -#: ../../include/text.php:1044 -msgid "bitter" -msgstr "amer" - -#: ../../include/text.php:1045 -msgid "cheerful" -msgstr "plein d'entrain" - -#: ../../include/text.php:1046 -msgid "alive" -msgstr "vivant" - -#: ../../include/text.php:1047 -msgid "annoyed" -msgstr "agaçé" - -#: ../../include/text.php:1048 -msgid "anxious" -msgstr "anxieux" - -#: ../../include/text.php:1049 -msgid "cranky" -msgstr "énervé" - -#: ../../include/text.php:1050 -msgid "disturbed" -msgstr "perturbé" - -#: ../../include/text.php:1051 -msgid "frustrated" -msgstr "frustré" - -#: ../../include/text.php:1052 -msgid "depressed" -msgstr "déprimé" - -#: ../../include/text.php:1053 -msgid "motivated" -msgstr "motivé" - -#: ../../include/text.php:1054 -msgid "relaxed" -msgstr "détendu" - -#: ../../include/text.php:1055 -msgid "surprised" -msgstr "surpris" - -#: ../../include/text.php:1237 ../../include/js_strings.php:70 -msgid "Monday" -msgstr "Lundi" - -#: ../../include/text.php:1237 ../../include/js_strings.php:71 -msgid "Tuesday" -msgstr "Mardi" - -#: ../../include/text.php:1237 ../../include/js_strings.php:72 -msgid "Wednesday" -msgstr "Mercredi" - -#: ../../include/text.php:1237 ../../include/js_strings.php:73 -msgid "Thursday" -msgstr "Jeudi" - -#: ../../include/text.php:1237 ../../include/js_strings.php:74 -msgid "Friday" -msgstr "Vendredi" - -#: ../../include/text.php:1237 ../../include/js_strings.php:75 -msgid "Saturday" -msgstr "Samedi" - -#: ../../include/text.php:1237 ../../include/js_strings.php:69 -msgid "Sunday" -msgstr "Dimanche" - -#: ../../include/text.php:1241 ../../include/js_strings.php:45 -msgid "January" -msgstr "Janvier" - -#: ../../include/text.php:1241 ../../include/js_strings.php:46 -msgid "February" -msgstr "Février" - -#: ../../include/text.php:1241 ../../include/js_strings.php:47 -msgid "March" -msgstr "Mars" - -#: ../../include/text.php:1241 ../../include/js_strings.php:48 -msgid "April" -msgstr "Avril" - -#: ../../include/text.php:1241 -msgid "May" -msgstr "Mai" - -#: ../../include/text.php:1241 ../../include/js_strings.php:50 -msgid "June" -msgstr "Juin" - -#: ../../include/text.php:1241 ../../include/js_strings.php:51 -msgid "July" -msgstr "Juillet" - -#: ../../include/text.php:1241 ../../include/js_strings.php:52 -msgid "August" -msgstr "Août" - -#: ../../include/text.php:1241 ../../include/js_strings.php:53 -msgid "September" -msgstr "Septembre" - -#: ../../include/text.php:1241 ../../include/js_strings.php:54 -msgid "October" -msgstr "Octobre" - -#: ../../include/text.php:1241 ../../include/js_strings.php:55 -msgid "November" -msgstr "Novembre" - -#: ../../include/text.php:1241 ../../include/js_strings.php:56 -msgid "December" -msgstr "Décembre" - -#: ../../include/text.php:1318 ../../include/text.php:1322 -msgid "Unknown Attachment" -msgstr "Pièce jointe inconnue" - -#: ../../include/text.php:1324 -msgid "unknown" -msgstr "Inconnu" - -#: ../../include/text.php:1360 -msgid "remove category" -msgstr "supprimer la catégorie" - -#: ../../include/text.php:1437 -msgid "remove from file" -msgstr "retirer du fichier" - -#: ../../include/text.php:1734 ../../include/text.php:1805 -msgid "default" -msgstr "défaut" - -#: ../../include/text.php:1742 -msgid "Page layout" -msgstr "Mise en page" - -#: ../../include/text.php:1742 -msgid "You can create your own with the layouts tool" -msgstr "Créez les vôtres avec les outils de mise en page" - -#: ../../include/text.php:1784 -msgid "Page content type" -msgstr "Type de contenu de la page" - -#: ../../include/text.php:1817 -msgid "Select an alternate language" -msgstr "Choisir une langue alternative" - -#: ../../include/text.php:1934 -msgid "activity" -msgstr "activité" - -#: ../../include/text.php:2235 -msgid "Design Tools" -msgstr "Outils de conception" - -#: ../../include/text.php:2241 -msgid "Pages" -msgstr "Pages" - -#: ../../include/auth.php:147 -msgid "Logged out." -msgstr "Deconnecté." - -#: ../../include/auth.php:274 -msgid "Failed authentication" -msgstr "Échec de l'authentification" - -#: ../../include/permissions.php:26 -msgid "Can view my normal stream and posts" -msgstr "Peut voir les publications ordinaires sur mon canal." - -#: ../../include/permissions.php:30 -msgid "Can view my webpages" -msgstr "Peut voir mes pages web" - -#: ../../include/permissions.php:34 -msgid "Can post on my channel page (\"wall\")" -msgstr "Peuvent poster sur la page de mon canal (\"mur\")" - -#: ../../include/permissions.php:37 -msgid "Can like/dislike stuff" -msgstr "Peuvent aimer/ne pas aimer" - -#: ../../include/permissions.php:37 -msgid "Profiles and things other than posts/comments" -msgstr "Profils et autres excluant les publications/commentaires." - -#: ../../include/permissions.php:39 -msgid "Can forward to all my channel contacts via post @mentions" -msgstr "Peut faire suivre à tous les contacts de mon canal via \"@mention\"" - -#: ../../include/permissions.php:39 -msgid "Advanced - useful for creating group forum channels" -msgstr "Avancé - utile pour les canaux de type \"forum/groupe\"" - -#: ../../include/permissions.php:40 -msgid "Can chat with me (when available)" -msgstr "Peut discuter avec moi (quand disponibie)" - -#: ../../include/permissions.php:41 -msgid "Can write to my file storage and photos" -msgstr "Peut charger des fichiers et des photos dans mon canal" - -#: ../../include/permissions.php:42 -msgid "Can edit my webpages" -msgstr "Peut modifier mes pages web" - -#: ../../include/permissions.php:44 -msgid "Somewhat advanced - very useful in open communities" -msgstr "Plutôt avancé - très utile dans les communautés ouvertes" - -#: ../../include/permissions.php:46 -msgid "Can administer my channel resources" -msgstr "Peut administrer les ressources de mon canal" - -#: ../../include/permissions.php:46 +#: ../../include/PermissionDescription.php:161 msgid "" -"Extremely advanced. Leave this alone unless you know what you are doing" -msgstr "Très avancé. Ne pas toucher, sauf si vous savez ce que vous faîtes" +"This is your default setting for the audience of your normal stream, and " +"posts." +msgstr "" + +#: ../../include/PermissionDescription.php:162 +msgid "" +"This is your default setting for who can view your default channel profile" +msgstr "" + +#: ../../include/PermissionDescription.php:163 +msgid "This is your default setting for who can view your connections" +msgstr "" + +#: ../../include/PermissionDescription.php:164 +msgid "" +"This is your default setting for who can view your file storage and photos" +msgstr "" + +#: ../../include/PermissionDescription.php:165 +msgid "This is your default setting for the audience of your webpages" +msgstr "" + +#: ../../include/account.php:28 +msgid "Not a valid email address" +msgstr "Ce n'est pas une adresse de courriel valide" + +#: ../../include/account.php:30 +msgid "Your email domain is not among those allowed on this site" +msgstr "Votre domaine de courriel ne fait pas partie de ceux autorisés par ce site" + +#: ../../include/account.php:36 +msgid "Your email address is already registered at this site." +msgstr "Votre adresse de courriel est déjà inscrite sur ce site." + +#: ../../include/account.php:68 +msgid "An invitation is required." +msgstr "Une invitation est requise." + +#: ../../include/account.php:72 +msgid "Invitation could not be verified." +msgstr "Votre invitation n'a pas pu être vérifiée." + +#: ../../include/account.php:122 +msgid "Please enter the required information." +msgstr "Merci d'entrer les informations requises." + +#: ../../include/account.php:189 +msgid "Failed to store account information." +msgstr "Impossible de stocker les informations liées au compte." + +#: ../../include/account.php:249 +#, php-format +msgid "Registration confirmation for %s" +msgstr "Confirmation de l'inscription pour %s" + +#: ../../include/account.php:315 +#, php-format +msgid "Registration request at %s" +msgstr "Demande d'inscription sur %s" + +#: ../../include/account.php:317 ../../include/account.php:344 +#: ../../include/account.php:404 ../../include/network.php:1871 +msgid "Administrator" +msgstr "Administrateur" + +#: ../../include/account.php:339 +msgid "your registration password" +msgstr "votre mot de passe d'inscription" + +#: ../../include/account.php:342 ../../include/account.php:402 +#, php-format +msgid "Registration details for %s" +msgstr "Détails de l'inscription pour %s" + +#: ../../include/account.php:414 +msgid "Account approved." +msgstr "Compte approuvé." + +#: ../../include/account.php:454 +#, php-format +msgid "Registration revoked for %s" +msgstr "Inscription révoquée pour %s" + +#: ../../include/account.php:506 +msgid "Account verified. Please login." +msgstr "Compte vérifié. Veuillez vous connecter." + +#: ../../include/account.php:723 ../../include/account.php:725 +msgid "Click here to upgrade." +msgstr "Cliquez ici pour mettre à jour." + +#: ../../include/account.php:731 +msgid "This action exceeds the limits set by your subscription plan." +msgstr "Cette action outrepasserait les limites prévues par votre forfait." + +#: ../../include/account.php:736 +msgid "This action is not available under your subscription plan." +msgstr "Cette action n'est pas disponible avec votre forfait." + +#: ../../include/attach.php:247 ../../include/attach.php:333 +msgid "Item was not found." +msgstr "Élément introuvable." + +#: ../../include/attach.php:497 +msgid "No source file." +msgstr "Pas de fichier source." + +#: ../../include/attach.php:519 +msgid "Cannot locate file to replace" +msgstr "Impossible de trouver le fichier à remplacer." + +#: ../../include/attach.php:537 +msgid "Cannot locate file to revise/update" +msgstr "Impossible de trouver le fichier à corriger/mettre à jour" + +#: ../../include/attach.php:672 +#, php-format +msgid "File exceeds size limit of %d" +msgstr "Le fichier dépasse la taille limite de %d" + +#: ../../include/attach.php:686 +#, php-format +msgid "You have reached your limit of %1$.0f Mbytes attachment storage." +msgstr "Vous avez atteint votre limite de %1$.0f méga-octets autorisés pour le stockage des pièces-jointes." + +#: ../../include/attach.php:842 +msgid "File upload failed. Possible system limit or action terminated." +msgstr "Envoi du fichier impossible. Limite système ou action avortée." + +#: ../../include/attach.php:855 +msgid "Stored file could not be verified. Upload failed." +msgstr "Le fichier stocké n'a pu être vérifié. Echec de l'envoi." + +#: ../../include/attach.php:909 ../../include/attach.php:925 +msgid "Path not available." +msgstr "Chemin non disponible." + +#: ../../include/attach.php:971 ../../include/attach.php:1123 +msgid "Empty pathname" +msgstr "Chemin vide" + +#: ../../include/attach.php:997 +msgid "duplicate filename or path" +msgstr "doublon de chemin ou de fichier" + +#: ../../include/attach.php:1019 +msgid "Path not found." +msgstr "Chemin introuvable." + +#: ../../include/attach.php:1077 +msgid "mkdir failed." +msgstr "mkdir a échoué." + +#: ../../include/attach.php:1081 +msgid "database storage failed." +msgstr "l'écriture dans la base de données a échoué." + +#: ../../include/attach.php:1129 +msgid "Empty path" +msgstr "Chemin vide" + +#: ../../include/channel.php:32 +msgid "Unable to obtain identity information from database" +msgstr "Impossible d'obtenir les données d'identité depuis la base de données" + +#: ../../include/channel.php:66 +msgid "Empty name" +msgstr "Nom vide" + +#: ../../include/channel.php:69 +msgid "Name too long" +msgstr "Nom trop long" + +#: ../../include/channel.php:180 +msgid "No account identifier" +msgstr "Pas d'identifiant de compte" + +#: ../../include/channel.php:192 +msgid "Nickname is required." +msgstr "Un surnom est requis." + +#: ../../include/channel.php:206 +msgid "Reserved nickname. Please choose another." +msgstr "Surnom réservé. Merci d'en choisir un autre." + +#: ../../include/channel.php:211 +msgid "" +"Nickname has unsupported characters or is already being used on this site." +msgstr "Le surnom contient des caractères interdits ou est déjà pris sur ce site." + +#: ../../include/channel.php:287 +msgid "Unable to retrieve created identity" +msgstr "Impossible de récupérer l'identité créée" + +#: ../../include/channel.php:345 +msgid "Default Profile" +msgstr "Profil par défaut" + +#: ../../include/channel.php:791 +msgid "Requested channel is not available." +msgstr "Canal demandé non disponible." + +#: ../../include/channel.php:938 +msgid "Create New Profile" +msgstr "Créer un nouveau profil" + +#: ../../include/channel.php:958 +msgid "Visible to everybody" +msgstr "Visible de tous" + +#: ../../include/channel.php:1031 ../../include/channel.php:1142 +msgid "Gender:" +msgstr "Sexe :" + +#: ../../include/channel.php:1032 ../../include/channel.php:1186 +msgid "Status:" +msgstr "État :" + +#: ../../include/channel.php:1033 ../../include/channel.php:1197 +msgid "Homepage:" +msgstr "Site Internet :" + +#: ../../include/channel.php:1034 +msgid "Online Now" +msgstr "Connecté" + +#: ../../include/channel.php:1147 +msgid "Like this channel" +msgstr "J'aime ce canal" + +#: ../../include/channel.php:1171 +msgid "j F, Y" +msgstr "j F, Y" + +#: ../../include/channel.php:1172 +msgid "j F" +msgstr "j F" + +#: ../../include/channel.php:1179 +msgid "Birthday:" +msgstr "Date de naissance :" + +#: ../../include/channel.php:1192 +#, php-format +msgid "for %1$d %2$s" +msgstr "depuis %1$d %2$s" + +#: ../../include/channel.php:1195 +msgid "Sexual Preference:" +msgstr "Orientation sexuelle :" + +#: ../../include/channel.php:1201 +msgid "Tags:" +msgstr "Étiquettes :" + +#: ../../include/channel.php:1203 +msgid "Political Views:" +msgstr "Opinions politiques :" + +#: ../../include/channel.php:1205 +msgid "Religion:" +msgstr "Religion :" + +#: ../../include/channel.php:1209 +msgid "Hobbies/Interests:" +msgstr "Occupations/Centres d'intérêt :" + +#: ../../include/channel.php:1211 +msgid "Likes:" +msgstr "Aime :" + +#: ../../include/channel.php:1213 +msgid "Dislikes:" +msgstr "N'aime pas :" + +#: ../../include/channel.php:1215 +msgid "Contact information and Social Networks:" +msgstr "Coordonnées et réseaux sociaux :" + +#: ../../include/channel.php:1217 +msgid "My other channels:" +msgstr "Mes autres canaux :" + +#: ../../include/channel.php:1219 +msgid "Musical interests:" +msgstr "Goûts musicaux :" + +#: ../../include/channel.php:1221 +msgid "Books, literature:" +msgstr "Lectures, goûts littéraires :" + +#: ../../include/channel.php:1223 +msgid "Television:" +msgstr "Télévision :" + +#: ../../include/channel.php:1225 +msgid "Film/dance/culture/entertainment:" +msgstr "Cinéma/danse/culture/divertissement&nsbp;:" + +#: ../../include/channel.php:1227 +msgid "Love/Romance:" +msgstr "Vie sentimentale/amoureuse :" + +#: ../../include/channel.php:1229 +msgid "Work/employment:" +msgstr "Travail/Occupation " + +#: ../../include/channel.php:1231 +msgid "School/education:" +msgstr "Études " + +#: ../../include/channel.php:1251 +msgid "Like this thing" +msgstr "J'aime ceci" #: ../../include/features.php:48 msgid "General Features" @@ -8526,257 +8716,378 @@ msgid "Provide managed web pages on your channel" msgstr "Fournir des pages web, sous votre contrôle, sur votre canal" #: ../../include/features.php:55 -msgid "Provide a wiki for your channel" -msgstr "" - -#: ../../include/features.php:56 msgid "Hide Rating" msgstr "Masquer l'évaluation" -#: ../../include/features.php:56 +#: ../../include/features.php:55 msgid "" "Hide the rating buttons on your channel and profile pages. Note: People can " "still rate you somewhere else." msgstr "Masquer les boutons d'évaluation sur les pages de votre canal et de votre profil. NB : vous pourrez toujours être évalué(e) ailleurs." -#: ../../include/features.php:57 +#: ../../include/features.php:56 msgid "Private Notes" msgstr "Notes privées" -#: ../../include/features.php:57 +#: ../../include/features.php:56 msgid "Enables a tool to store notes and reminders (note: not encrypted)" msgstr "Active un outil pour stocker des notes et des rappels (note :non chiffré)" -#: ../../include/features.php:58 +#: ../../include/features.php:57 msgid "Navigation Channel Select" msgstr "Sélection du canal par la navigation" -#: ../../include/features.php:58 +#: ../../include/features.php:57 msgid "Change channels directly from within the navigation dropdown menu" msgstr "Changez de canal directement depuis le menu de navigation déroulant" -#: ../../include/features.php:59 +#: ../../include/features.php:58 msgid "Photo Location" msgstr "Site de prise de vue" -#: ../../include/features.php:59 +#: ../../include/features.php:58 msgid "If location data is available on uploaded photos, link this to a map." msgstr "Si des informations géographiques sont présentes dans les images téléversées, les lier à une carte." -#: ../../include/features.php:60 +#: ../../include/features.php:59 msgid "Access Controlled Chatrooms" msgstr "" -#: ../../include/features.php:60 +#: ../../include/features.php:59 msgid "Provide chatrooms and chat services with access control." msgstr "" -#: ../../include/features.php:61 +#: ../../include/features.php:60 msgid "Smart Birthdays" msgstr "Anniversaires intelligents" -#: ../../include/features.php:61 +#: ../../include/features.php:60 msgid "" "Make birthday events timezone aware in case your friends are scattered " "across the planet." msgstr "Adapter les anniversaires aux fuseaux horaires, utile pour vos amis sur d'autres continents." -#: ../../include/features.php:62 +#: ../../include/features.php:61 msgid "Expert Mode" msgstr "Mode expert" -#: ../../include/features.php:62 +#: ../../include/features.php:61 msgid "Enable Expert Mode to provide advanced configuration options" msgstr "Activer le mode expert pour accéder aux options avancées" -#: ../../include/features.php:63 +#: ../../include/features.php:62 msgid "Premium Channel" msgstr "Canal VIP" -#: ../../include/features.php:63 +#: ../../include/features.php:62 msgid "" "Allows you to set restrictions and terms on those that connect with your " "channel" msgstr "Vous permet d'appliquer des règles et restrictions aux contacts de votre canal" -#: ../../include/features.php:68 +#: ../../include/features.php:67 msgid "Post Composition Features" msgstr "Fonctionnalités de composition" -#: ../../include/features.php:71 +#: ../../include/features.php:70 msgid "Large Photos" msgstr "Grandes photos" -#: ../../include/features.php:71 +#: ../../include/features.php:70 msgid "" "Include large (1024px) photo thumbnails in posts. If not enabled, use small " "(640px) photo thumbnails" msgstr "Inclure de grands aperçus (1024px) dans les messages. Si désactivé, inclure de petits aperçus (640px)." -#: ../../include/features.php:72 +#: ../../include/features.php:71 msgid "Automatically import channel content from other channels or feeds" msgstr "Importe automatiquement le contenus d'autres canaux ou flux dans le canal actif" -#: ../../include/features.php:73 +#: ../../include/features.php:72 msgid "Even More Encryption" msgstr "Encore plus de chiffrement" -#: ../../include/features.php:73 +#: ../../include/features.php:72 msgid "" "Allow optional encryption of content end-to-end with a shared secret key" msgstr "Permettre le chiffrement optionnel du contenu de bout en bout au moyen d'un secret partagé" -#: ../../include/features.php:74 +#: ../../include/features.php:73 msgid "Enable Voting Tools" msgstr "Activer les outils de vote" -#: ../../include/features.php:74 +#: ../../include/features.php:73 msgid "Provide a class of post which others can vote on" msgstr "Fournit un type de publication sur lequel les utilisateurs peuvent voter" -#: ../../include/features.php:75 +#: ../../include/features.php:74 msgid "Delayed Posting" msgstr "Publication plus tard" -#: ../../include/features.php:75 +#: ../../include/features.php:74 msgid "Allow posts to be published at a later date" msgstr "Permettre de publier des messages à une date programmée" -#: ../../include/features.php:76 +#: ../../include/features.php:75 msgid "Suppress Duplicate Posts/Comments" msgstr "Supprimer les publications/commentaires en doublon" -#: ../../include/features.php:76 +#: ../../include/features.php:75 msgid "" "Prevent posts with identical content to be published with less than two " "minutes in between submissions." msgstr "Empêcher des messages aux contenus identiques d'être publiés à moins de deux minutes d'intervalle" -#: ../../include/features.php:82 +#: ../../include/features.php:81 msgid "Network and Stream Filtering" msgstr "Filtrage du réseau et des flux" -#: ../../include/features.php:83 +#: ../../include/features.php:82 msgid "Search by Date" msgstr "Chercher par date" -#: ../../include/features.php:83 +#: ../../include/features.php:82 msgid "Ability to select posts by date ranges" msgstr "Pouvoir choisir des publications par date" -#: ../../include/features.php:84 ../../include/group.php:311 +#: ../../include/features.php:83 ../../include/group.php:311 msgid "Privacy Groups" msgstr "Groupes d'accès" -#: ../../include/features.php:84 +#: ../../include/features.php:83 msgid "Enable management and selection of privacy groups" msgstr "Active la gestion et la sélection des groupes d'accès" -#: ../../include/features.php:85 ../../include/widgets.php:281 -msgid "Saved Searches" -msgstr "Recherches sauvegardées" - -#: ../../include/features.php:85 +#: ../../include/features.php:84 msgid "Save search terms for re-use" msgstr "Sauvegarder des termes de recherche pour utilisation ultérieure" -#: ../../include/features.php:86 +#: ../../include/features.php:85 msgid "Network Personal Tab" msgstr "Onglet \"Me concernant\"" -#: ../../include/features.php:86 +#: ../../include/features.php:85 msgid "Enable tab to display only Network posts that you've interacted on" msgstr "Activer un onglet affichant seulement les publications du réseau sur lesquelles vous êtes intervenu" -#: ../../include/features.php:87 +#: ../../include/features.php:86 msgid "Network New Tab" msgstr "Onglet \"nouveautés réseau\"" -#: ../../include/features.php:87 +#: ../../include/features.php:86 msgid "Enable tab to display all new Network activity" msgstr "Activer un onglet présentant toute l'activité récente sur le réseau" -#: ../../include/features.php:88 +#: ../../include/features.php:87 msgid "Affinity Tool" msgstr "Gérer l'affinité" -#: ../../include/features.php:88 +#: ../../include/features.php:87 msgid "Filter stream activity by depth of relationships" msgstr "Filtrer le flux d'activité en fonction de la profondeur des relations" -#: ../../include/features.php:89 +#: ../../include/features.php:88 msgid "Connection Filtering" msgstr "Filtrage des contacts" -#: ../../include/features.php:89 +#: ../../include/features.php:88 msgid "Filter incoming posts from connections based on keywords/content" msgstr "Filtrer les publications entrantes de mes contacts sur la base de mots-clefs" -#: ../../include/features.php:90 +#: ../../include/features.php:89 msgid "Show channel suggestions" msgstr "Montrer les suggestions de canaux" -#: ../../include/features.php:95 +#: ../../include/features.php:94 msgid "Post/Comment Tools" msgstr "Gérer les publications/commentaires" -#: ../../include/features.php:96 +#: ../../include/features.php:95 msgid "Community Tagging" msgstr "Etiquetage communautaire" -#: ../../include/features.php:96 +#: ../../include/features.php:95 msgid "Ability to tag existing posts" msgstr "Permettre de marquer les publications existantes" -#: ../../include/features.php:97 +#: ../../include/features.php:96 msgid "Post Categories" msgstr "Catégoriser les publications" -#: ../../include/features.php:97 +#: ../../include/features.php:96 msgid "Add categories to your posts" msgstr "Ajouter des catégories à vos publications" -#: ../../include/features.php:98 +#: ../../include/features.php:97 msgid "Emoji Reactions" msgstr "" -#: ../../include/features.php:98 +#: ../../include/features.php:97 msgid "Add emoji reaction ability to posts" msgstr "" -#: ../../include/features.php:99 ../../include/widgets.php:310 -#: ../../include/contact_widgets.php:53 -msgid "Saved Folders" -msgstr "Dossiers sauvegardés" - -#: ../../include/features.php:99 +#: ../../include/features.php:98 msgid "Ability to file posts under folders" msgstr "Permettre de classer les publications dans des dossiers" -#: ../../include/features.php:100 +#: ../../include/features.php:99 msgid "Dislike Posts" msgstr "\"Ne pas aimer\" les publications" -#: ../../include/features.php:100 +#: ../../include/features.php:99 msgid "Ability to dislike posts/comments" msgstr "Possibilité de \"ne pas aimer\" les publications/commentaires" -#: ../../include/features.php:101 +#: ../../include/features.php:100 msgid "Star Posts" msgstr "Pouvoir mettre en avant les publications" -#: ../../include/features.php:101 +#: ../../include/features.php:100 msgid "Ability to mark special posts with a star indicator" msgstr "Pouvoir marquer certaines publications d'une étoile" -#: ../../include/features.php:102 +#: ../../include/features.php:101 msgid "Tag Cloud" msgstr "Nuage de tags" -#: ../../include/features.php:102 +#: ../../include/features.php:101 msgid "Provide a personal tag cloud on your channel page" msgstr "Afficher un nuage de vos tags sur votre canal" +#: ../../include/oembed.php:324 +msgid "Embedded content" +msgstr "Contenu imbriqué" + +#: ../../include/oembed.php:333 +msgid "Embedding disabled" +msgstr "Imbrication désactivée" + +#: ../../include/acl_selectors.php:271 +msgid "Who can see this?" +msgstr "" + +#: ../../include/acl_selectors.php:272 +msgid "Custom selection" +msgstr "" + +#: ../../include/acl_selectors.php:273 +msgid "" +"Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit" +" the scope of \"Show\"." +msgstr "" + +#: ../../include/acl_selectors.php:274 +msgid "Show" +msgstr "Montrer" + +#: ../../include/acl_selectors.php:275 +msgid "Don't show" +msgstr "Cacher" + +#: ../../include/acl_selectors.php:281 +msgid "Other networks and post services" +msgstr "Autres réseaux et services de messagerie" + +#: ../../include/acl_selectors.php:311 +#, php-format +msgid "" +"Post permissions %s cannot be changed %s after a post is shared.
These" +" permissions set who is allowed to view the post." +msgstr "" + +#: ../../include/auth.php:105 +msgid "Logged out." +msgstr "Deconnecté." + +#: ../../include/auth.php:212 +msgid "Failed authentication" +msgstr "Échec de l'authentification" + +#: ../../include/datetime.php:135 +msgid "Birthday" +msgstr "Anniversaire" + +#: ../../include/datetime.php:137 +msgid "Age: " +msgstr "Age :" + +#: ../../include/datetime.php:139 +msgid "YYYY-MM-DD or MM-DD" +msgstr "AAAA-MM-JJ ou MM-JJ" + +#: ../../include/datetime.php:272 ../../boot.php:2470 +msgid "never" +msgstr "jamais" + +#: ../../include/datetime.php:278 +msgid "less than a second ago" +msgstr "à l'instant" + +#: ../../include/datetime.php:296 +#, php-format +msgctxt "e.g. 22 hours ago, 1 minute ago" +msgid "%1$d %2$s ago" +msgstr "il y a %1$d %2$s" + +#: ../../include/datetime.php:307 +msgctxt "relative_date" +msgid "year" +msgid_plural "years" +msgstr[0] "an" +msgstr[1] "ans" + +#: ../../include/datetime.php:310 +msgctxt "relative_date" +msgid "month" +msgid_plural "months" +msgstr[0] "mois" +msgstr[1] "mois" + +#: ../../include/datetime.php:313 +msgctxt "relative_date" +msgid "week" +msgid_plural "weeks" +msgstr[0] "semaine" +msgstr[1] "semaines" + +#: ../../include/datetime.php:316 +msgctxt "relative_date" +msgid "day" +msgid_plural "days" +msgstr[0] "jour" +msgstr[1] "jours" + +#: ../../include/datetime.php:319 +msgctxt "relative_date" +msgid "hour" +msgid_plural "hours" +msgstr[0] "heure" +msgstr[1] "heures" + +#: ../../include/datetime.php:322 +msgctxt "relative_date" +msgid "minute" +msgid_plural "minutes" +msgstr[0] "minute" +msgstr[1] "minutes" + +#: ../../include/datetime.php:325 +msgctxt "relative_date" +msgid "second" +msgid_plural "seconds" +msgstr[0] "seconde" +msgstr[1] "secondes" + +#: ../../include/datetime.php:562 +#, php-format +msgid "%1$s's birthday" +msgstr "Anniversaire de %1$s" + +#: ../../include/datetime.php:563 +#, php-format +msgid "Happy Birthday %1$s" +msgstr "Joyeux Anniversaire %1$s" + #: ../../include/group.php:26 msgid "" "A deleted group with this name was revived. Existing item permissions " @@ -8804,583 +9115,21 @@ msgstr "Ajouter un groupe d'accès" msgid "Channels not in any privacy group" msgstr "Canaux n'étant dans aucun groupe d'accès" -#: ../../include/group.php:316 ../../include/widgets.php:282 -msgid "add" -msgstr "ajouter" - -#: ../../include/event.php:22 ../../include/event.php:69 -#: ../../include/bb2diaspora.php:485 -msgid "l F d, Y \\@ g:i A" -msgstr "l d F Y \\à G\\hi" - -#: ../../include/event.php:30 ../../include/event.php:73 -#: ../../include/bb2diaspora.php:491 -msgid "Starts:" -msgstr "Début :" - -#: ../../include/event.php:40 ../../include/event.php:77 -#: ../../include/bb2diaspora.php:499 -msgid "Finishes:" -msgstr "Fin :" - -#: ../../include/event.php:814 -msgid "This event has been added to your calendar." -msgstr "Cet évènement a été ajouté dans votre calendrier." - -#: ../../include/event.php:1014 -msgid "Not specified" -msgstr "Non spécifié" - -#: ../../include/event.php:1015 -msgid "Needs Action" -msgstr "Besoin d'une action" - -#: ../../include/event.php:1016 -msgid "Completed" -msgstr "Terminé" - -#: ../../include/event.php:1017 -msgid "In Process" -msgstr "En cours" - -#: ../../include/event.php:1018 -msgid "Cancelled" -msgstr "Annulé" - -#: ../../include/account.php:28 -msgid "Not a valid email address" -msgstr "Ce n'est pas une adresse de courriel valide" - -#: ../../include/account.php:30 -msgid "Your email domain is not among those allowed on this site" -msgstr "Votre domaine de courriel ne fait pas partie de ceux autorisés par ce site" - -#: ../../include/account.php:36 -msgid "Your email address is already registered at this site." -msgstr "Votre adresse de courriel est déjà inscrite sur ce site." - -#: ../../include/account.php:68 -msgid "An invitation is required." -msgstr "Une invitation est requise." - -#: ../../include/account.php:72 -msgid "Invitation could not be verified." -msgstr "Votre invitation n'a pas pu être vérifiée." - -#: ../../include/account.php:122 -msgid "Please enter the required information." -msgstr "Merci d'entrer les informations requises." - -#: ../../include/account.php:189 -msgid "Failed to store account information." -msgstr "Impossible de stocker les informations liées au compte." - -#: ../../include/account.php:249 -#, php-format -msgid "Registration confirmation for %s" -msgstr "Confirmation de l'inscription pour %s" - -#: ../../include/account.php:315 -#, php-format -msgid "Registration request at %s" -msgstr "Demande d'inscription sur %s" - -#: ../../include/account.php:339 -msgid "your registration password" -msgstr "votre mot de passe d'inscription" - -#: ../../include/account.php:342 ../../include/account.php:402 -#, php-format -msgid "Registration details for %s" -msgstr "Détails de l'inscription pour %s" - -#: ../../include/account.php:414 -msgid "Account approved." -msgstr "Compte approuvé." - -#: ../../include/account.php:454 -#, php-format -msgid "Registration revoked for %s" -msgstr "Inscription révoquée pour %s" - -#: ../../include/account.php:739 ../../include/account.php:741 -msgid "Click here to upgrade." -msgstr "Cliquez ici pour mettre à jour." - -#: ../../include/account.php:747 -msgid "This action exceeds the limits set by your subscription plan." -msgstr "Cette action outrepasserait les limites prévues par votre forfait." - -#: ../../include/account.php:752 -msgid "This action is not available under your subscription plan." -msgstr "Cette action n'est pas disponible avec votre forfait." - -#: ../../include/follow.php:27 -msgid "Channel is blocked on this site." -msgstr "Ce canal est bloqué sur ce site." - -#: ../../include/follow.php:32 -msgid "Channel location missing." -msgstr "Emplacement du canal introuvable." - -#: ../../include/follow.php:80 -msgid "Response from remote channel was incomplete." -msgstr "La réponse du canal distant était incomplète." - -#: ../../include/follow.php:97 -msgid "Channel was deleted and no longer exists." -msgstr "Le canal a été supprimé et n'existe plus." - -#: ../../include/follow.php:147 ../../include/follow.php:183 -msgid "Protocol disabled." -msgstr "Protocole désactivé." - -#: ../../include/follow.php:171 -msgid "Channel discovery failed." -msgstr "La tentative d'accéder au canal a échoué." - -#: ../../include/follow.php:210 -msgid "Cannot connect to yourself." -msgstr "Ne peut pas se connecter à vous." - -#: ../../include/attach.php:247 ../../include/attach.php:333 -msgid "Item was not found." -msgstr "Élément introuvable." - -#: ../../include/attach.php:499 -msgid "No source file." -msgstr "Pas de fichier source." - -#: ../../include/attach.php:521 -msgid "Cannot locate file to replace" -msgstr "Impossible de trouver le fichier à remplacer." - -#: ../../include/attach.php:539 -msgid "Cannot locate file to revise/update" -msgstr "Impossible de trouver le fichier à corriger/mettre à jour" - -#: ../../include/attach.php:674 -#, php-format -msgid "File exceeds size limit of %d" -msgstr "Le fichier dépasse la taille limite de %d" - -#: ../../include/attach.php:688 -#, php-format -msgid "You have reached your limit of %1$.0f Mbytes attachment storage." -msgstr "Vous avez atteint votre limite de %1$.0f méga-octets autorisés pour le stockage des pièces-jointes." - -#: ../../include/attach.php:846 -msgid "File upload failed. Possible system limit or action terminated." -msgstr "Envoi du fichier impossible. Limite système ou action avortée." - -#: ../../include/attach.php:859 -msgid "Stored file could not be verified. Upload failed." -msgstr "Le fichier stocké n'a pu être vérifié. Echec de l'envoi." - -#: ../../include/attach.php:915 ../../include/attach.php:931 -msgid "Path not available." -msgstr "Chemin non disponible." - -#: ../../include/attach.php:977 ../../include/attach.php:1129 -msgid "Empty pathname" -msgstr "Chemin vide" - -#: ../../include/attach.php:1003 -msgid "duplicate filename or path" -msgstr "doublon de chemin ou de fichier" - -#: ../../include/attach.php:1025 -msgid "Path not found." -msgstr "Chemin introuvable." - -#: ../../include/attach.php:1083 -msgid "mkdir failed." -msgstr "mkdir a échoué." - -#: ../../include/attach.php:1087 -msgid "database storage failed." -msgstr "l'écriture dans la base de données a échoué." - -#: ../../include/attach.php:1135 -msgid "Empty path" -msgstr "Chemin vide" - -#: ../../include/bbcode.php:123 ../../include/bbcode.php:878 -#: ../../include/bbcode.php:881 ../../include/bbcode.php:886 -#: ../../include/bbcode.php:889 ../../include/bbcode.php:892 -#: ../../include/bbcode.php:895 ../../include/bbcode.php:900 -#: ../../include/bbcode.php:903 ../../include/bbcode.php:908 -#: ../../include/bbcode.php:911 ../../include/bbcode.php:914 -#: ../../include/bbcode.php:917 -msgid "Image/photo" -msgstr "Image/photo" - -#: ../../include/bbcode.php:162 ../../include/bbcode.php:928 -msgid "Encrypted content" -msgstr "Contenu chiffré" - -#: ../../include/bbcode.php:178 -#, php-format -msgid "Install %s element: " -msgstr "Installer %s élément" - -#: ../../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 "Ce message contient un élément installable %s, mais vous n'avez pas l'autorisation de l'installer sur ce site." - -#: ../../include/bbcode.php:261 -#, php-format -msgid "%1$s wrote the following %2$s %3$s" -msgstr "%1$s a écrit %2$s qui suit %3$s" - -#: ../../include/bbcode.php:338 ../../include/bbcode.php:346 -msgid "Click to open/close" -msgstr "Cliquer pour ouvrir/fermer" - -#: ../../include/bbcode.php:346 -msgid "spoiler" -msgstr "" - -#: ../../include/bbcode.php:619 -msgid "Different viewers will see this text differently" -msgstr "Ce texte aura un rendu différent en fonction des utilisateurs" - -#: ../../include/bbcode.php:866 -msgid "$1 wrote:" -msgstr "$1 a écrit :" - -#: ../../include/items.php:897 ../../include/items.php:942 -msgid "(Unknown)" -msgstr "(Inconnu)" - -#: ../../include/items.php:1141 -msgid "Visible to anybody on the internet." -msgstr "Visible pour tout le monde sur internet." - -#: ../../include/items.php:1143 -msgid "Visible to you only." -msgstr "Visible pour vous seulement." - -#: ../../include/items.php:1145 -msgid "Visible to anybody in this network." -msgstr "Visible pour tout le monde sur ce réseau." - -#: ../../include/items.php:1147 -msgid "Visible to anybody authenticated." -msgstr "Visible aux utilisateurs authentifiés." - -#: ../../include/items.php:1149 -#, php-format -msgid "Visible to anybody on %s." -msgstr "Visible pour tous sur %s." - -#: ../../include/items.php:1151 -msgid "Visible to all connections." -msgstr "Visible pour tous les contacts." - -#: ../../include/items.php:1153 -msgid "Visible to approved connections." -msgstr "Visible aux contacts approuvés." - -#: ../../include/items.php:1155 -msgid "Visible to specific connections." -msgstr "Visible pour certains contacts." - -#: ../../include/items.php:3918 -msgid "Privacy group is empty." -msgstr "Groupe d'accès vide." - -#: ../../include/items.php:3925 -#, php-format -msgid "Privacy group: %s" -msgstr "Groupe d'accès : %s" - -#: ../../include/items.php:3937 -msgid "Connection not found." -msgstr "Contact non trouvé." - -#: ../../include/items.php:4290 -msgid "profile photo" -msgstr "photo de profil" - -#: ../../include/oembed.php:336 -msgid "Embedded content" -msgstr "Contenu imbriqué" - -#: ../../include/oembed.php:345 -msgid "Embedding disabled" -msgstr "Imbrication désactivée" - -#: ../../include/widgets.php:103 -msgid "System" -msgstr "Système" - -#: ../../include/widgets.php:106 -msgid "New App" -msgstr "" - -#: ../../include/widgets.php:154 -msgid "Suggestions" -msgstr "Suggestions" - -#: ../../include/widgets.php:155 -msgid "See more..." -msgstr "Voir plus..." - -#: ../../include/widgets.php:175 -#, php-format -msgid "You have %1$.0f of %2$.0f allowed connections." -msgstr "Vous avez %1$.0f sur %2$.0f contacts autorisés." - -#: ../../include/widgets.php:181 -msgid "Add New Connection" -msgstr "Ajouter un nouveau contact" - -#: ../../include/widgets.php:182 -msgid "Enter channel address" -msgstr "Saisissez l'adresse du canal" - -#: ../../include/widgets.php:183 -msgid "Examples: bob@example.com, https://example.com/barbara" -msgstr "Exemples : pierre@exemple.com, https://exemple.com/sophie" - -#: ../../include/widgets.php:199 -msgid "Notes" -msgstr "Notes" - -#: ../../include/widgets.php:273 -msgid "Remove term" -msgstr "Retirer le terme" - -#: ../../include/widgets.php:313 ../../include/widgets.php:432 -#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:94 -msgid "Everything" -msgstr "Tout" - -#: ../../include/widgets.php:354 -msgid "Archives" -msgstr "Archives" - -#: ../../include/widgets.php:516 -msgid "Refresh" -msgstr "Actualiser" - -#: ../../include/widgets.php:556 -msgid "Account settings" -msgstr "Paramètres du compte" - -#: ../../include/widgets.php:562 -msgid "Channel settings" -msgstr "Paramètres du canal" - -#: ../../include/widgets.php:571 -msgid "Additional features" -msgstr "Fonctionnalités supplémentaires" - -#: ../../include/widgets.php:578 -msgid "Feature/Addon settings" -msgstr "Paramètres des extensions/greffons" - -#: ../../include/widgets.php:584 -msgid "Display settings" -msgstr "Paramètres d'affichage" - -#: ../../include/widgets.php:591 -msgid "Manage locations" -msgstr "" - -#: ../../include/widgets.php:600 -msgid "Export channel" -msgstr "Exporter le canal" - -#: ../../include/widgets.php:607 -msgid "Connected apps" -msgstr "Applications connectées" - -#: ../../include/widgets.php:631 -msgid "Premium Channel Settings" -msgstr "Paramètres de canal VIP" - -#: ../../include/widgets.php:660 -msgid "Private Mail Menu" -msgstr "Menu des messages privés" - -#: ../../include/widgets.php:662 -msgid "Combined View" -msgstr "Vue combinée" - -#: ../../include/widgets.php:694 ../../include/widgets.php:706 -msgid "Conversations" -msgstr "Conversations" - -#: ../../include/widgets.php:698 -msgid "Received Messages" -msgstr "Messages reçus" - -#: ../../include/widgets.php:702 -msgid "Sent Messages" -msgstr "Messages envoyés" - -#: ../../include/widgets.php:716 -msgid "No messages." -msgstr "Pas de message." - -#: ../../include/widgets.php:734 -msgid "Delete conversation" -msgstr "Supprimer la conversation" - -#: ../../include/widgets.php:760 -msgid "Events Tools" -msgstr "Outils Evènements" - -#: ../../include/widgets.php:761 -msgid "Export Calendar" -msgstr "Exporter le calendrier" - -#: ../../include/widgets.php:762 -msgid "Import Calendar" -msgstr "Importer un calendrier" - -#: ../../include/widgets.php:840 -msgid "Overview" -msgstr "" - -#: ../../include/widgets.php:847 -msgid "Chat Members" -msgstr "" - -#: ../../include/widgets.php:869 -msgid "Wiki List" -msgstr "" - -#: ../../include/widgets.php:907 -msgid "Wiki Pages" -msgstr "" - -#: ../../include/widgets.php:942 -msgid "Bookmarked Chatrooms" -msgstr "Salons favoris" - -#: ../../include/widgets.php:965 -msgid "Suggested Chatrooms" -msgstr "Salons suggérés" - -#: ../../include/widgets.php:1111 ../../include/widgets.php:1223 -msgid "photo/image" -msgstr "photo/image" - -#: ../../include/widgets.php:1166 -msgid "Click to show more" -msgstr "Cliquer pour voir plus" - -#: ../../include/widgets.php:1317 -msgid "Rating Tools" -msgstr "Outils d'évaluation" - -#: ../../include/widgets.php:1321 ../../include/widgets.php:1323 -msgid "Rate Me" -msgstr "M'évaluer" - -#: ../../include/widgets.php:1326 -msgid "View Ratings" -msgstr "Voir mes évaluations" - -#: ../../include/widgets.php:1410 -msgid "Forums" -msgstr "Membres du forum" - -#: ../../include/widgets.php:1439 -msgid "Tasks" -msgstr "Tâches" - -#: ../../include/widgets.php:1448 -msgid "Documentation" -msgstr "Documentation" - -#: ../../include/widgets.php:1450 -msgid "Project/Site Information" -msgstr "Information sur le site/projet" - -#: ../../include/widgets.php:1451 -msgid "For Members" -msgstr "Pour les membres" - -#: ../../include/widgets.php:1452 -msgid "For Administrators" -msgstr "Pour les administrateurs" - -#: ../../include/widgets.php:1453 -msgid "For Developers" -msgstr "Pour les développeurs" - -#: ../../include/widgets.php:1477 ../../include/widgets.php:1515 -msgid "Member registrations waiting for confirmation" -msgstr "" - -#: ../../include/widgets.php:1483 -msgid "Inspect queue" -msgstr "Analyser la file d'attente" - -#: ../../include/widgets.php:1485 -msgid "DB updates" -msgstr "Mises à jour BDD" - -#: ../../include/widgets.php:1511 -msgid "Plugin Features" -msgstr "Fonctionnalités des greffons" - -#: ../../include/activities.php:41 -msgid " and " -msgstr "et" - -#: ../../include/activities.php:49 -msgid "public profile" -msgstr "profil public" - -#: ../../include/activities.php:58 -#, php-format -msgid "%1$s changed %2$s to “%3$s”" -msgstr "%1$s a changé %2$s en “%3$s”" - -#: ../../include/activities.php:59 -#, php-format -msgid "Visit %1$s's %2$s" -msgstr "Visiter %2$s de %1$s" - -#: ../../include/activities.php:62 -#, php-format -msgid "%1$s has an updated %2$s, changing %3$s." -msgstr "%1$s a mis à jour %2$s, modifiant %3$s." - -#: ../../include/bb2diaspora.php:398 -msgid "Attachments:" -msgstr "Pièces jointes :" - -#: ../../include/bb2diaspora.php:487 -msgid "$Projectname event notification:" -msgstr "Notification d'événement de $Projectname :" - #: ../../include/js_strings.php:5 msgid "Delete this item?" msgstr "Supprimer cet élément?" #: ../../include/js_strings.php:8 -#, php-format -msgid "%s show less" -msgstr "" +msgid "[-] show less" +msgstr "[-] montrer moins" #: ../../include/js_strings.php:9 -#, php-format -msgid "%s expand" -msgstr "" +msgid "[+] expand" +msgstr "[+] déplier" #: ../../include/js_strings.php:10 -#, php-format -msgid "%s collapse" -msgstr "" +msgid "[-] collapse" +msgstr "[-] replier" #: ../../include/js_strings.php:11 msgid "Password too short" @@ -9610,223 +9359,278 @@ msgctxt "calendar" msgid "All day" msgstr "Toute la journée" -#: ../../include/contact_widgets.php:11 -#, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "%d invitation disponible" -msgstr[1] "%d invitations disponibles" +#: ../../include/network.php:657 +msgid "view full size" +msgstr "voir en taille réelle" -#: ../../include/contact_widgets.php:19 -msgid "Find Channels" -msgstr "Trouver des canaux" +#: ../../include/network.php:1885 +msgid "No Subject" +msgstr "Pas d'objet" -#: ../../include/contact_widgets.php:20 -msgid "Enter name or interest" -msgstr "Saisir nom ou centre d'intérêt" +#: ../../include/network.php:2146 ../../include/network.php:2147 +msgid "Friendica" +msgstr "Friendica" -#: ../../include/contact_widgets.php:21 -msgid "Connect/Follow" -msgstr "Ajouter/Suivre" +#: ../../include/network.php:2148 +msgid "OStatus" +msgstr "OStatus" -#: ../../include/contact_widgets.php:22 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "Exemples: Guillaume Martin, Course à pieds" - -#: ../../include/contact_widgets.php:26 -msgid "Random Profile" -msgstr "Un profil au hasard" - -#: ../../include/contact_widgets.php:27 -msgid "Invite Friends" -msgstr "Inviter des amis" - -#: ../../include/contact_widgets.php:29 -msgid "Advanced example: name=fred and country=iceland" -msgstr "Exemple avancé : name=fred and country=iceland" - -#: ../../include/contact_widgets.php:122 -#, php-format -msgid "%d connection in common" -msgid_plural "%d connections in common" -msgstr[0] "%d contact en commun" -msgstr[1] "%d contacts en commun" - -#: ../../include/contact_widgets.php:127 -msgid "show more" -msgstr "montrer plus" - -#: ../../include/dir_fns.php:141 -msgid "Directory Options" -msgstr "Options d'annuaire" - -#: ../../include/dir_fns.php:143 -msgid "Safe Mode" -msgstr "Mode sûr" - -#: ../../include/dir_fns.php:144 -msgid "Public Forums Only" -msgstr "Les forums publics uniquement" - -#: ../../include/dir_fns.php:145 -msgid "This Website Only" -msgstr "Ce site uniquement" - -#: ../../include/message.php:20 -msgid "No recipient provided." -msgstr "Pas de destinataire." - -#: ../../include/message.php:25 -msgid "[no subject]" -msgstr "[sans objet]" - -#: ../../include/message.php:45 -msgid "Unable to determine sender." -msgstr "Impossible de déterminer l'émetteur." - -#: ../../include/message.php:222 -msgid "Stored post could not be verified." -msgstr "Le message stocké n'a pas pu être vérifié." - -#: ../../include/acl_selectors.php:269 -msgid "Who can see this?" +#: ../../include/network.php:2149 +msgid "GNU-Social" msgstr "" -#: ../../include/acl_selectors.php:270 -msgid "Custom selection" -msgstr "" +#: ../../include/network.php:2150 +msgid "RSS/Atom" +msgstr "RSS/Atom" -#: ../../include/acl_selectors.php:271 -msgid "" -"Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit" -" the scope of \"Show\"." -msgstr "" +#: ../../include/network.php:2152 +msgid "Diaspora" +msgstr "Diaspora" -#: ../../include/acl_selectors.php:272 -msgid "Show" -msgstr "Montrer" +#: ../../include/network.php:2153 +msgid "Facebook" +msgstr "Facebook" -#: ../../include/acl_selectors.php:273 -msgid "Don't show" -msgstr "Cacher" +#: ../../include/network.php:2154 +msgid "Zot" +msgstr "Zot" -#: ../../include/acl_selectors.php:279 -msgid "Other networks and post services" -msgstr "Autres réseaux et services de messagerie" +#: ../../include/network.php:2155 +msgid "LinkedIn" +msgstr "Linkedin" -#: ../../include/acl_selectors.php:309 +#: ../../include/network.php:2156 +msgid "XMPP/IM" +msgstr "XMPP/IM" + +#: ../../include/network.php:2157 +msgid "MySpace" +msgstr "MySpace" + +#: ../../include/photos.php:110 #, php-format -msgid "" -"Post permissions %s cannot be changed %s after a post is shared.
These" -" permissions set who is allowed to view the post." -msgstr "" +msgid "Image exceeds website size limit of %lu bytes" +msgstr "L'image dépasse la taille limite de %lu octets" -#: ../../include/datetime.php:135 -msgid "Birthday" -msgstr "Anniversaire" +#: ../../include/photos.php:117 +msgid "Image file is empty." +msgstr "L'image est vide." -#: ../../include/datetime.php:137 -msgid "Age: " -msgstr "Age :" +#: ../../include/photos.php:255 +msgid "Photo storage failed." +msgstr "Le stockage de l'image a échoué." -#: ../../include/datetime.php:139 -msgid "YYYY-MM-DD or MM-DD" -msgstr "AAAA-MM-JJ ou MM-JJ" +#: ../../include/photos.php:295 +msgid "a new photo" +msgstr "une nouvelle photo" -#: ../../include/datetime.php:272 ../../boot.php:2479 -msgid "never" -msgstr "jamais" - -#: ../../include/datetime.php:278 -msgid "less than a second ago" -msgstr "à l'instant" - -#: ../../include/datetime.php:296 +#: ../../include/photos.php:299 #, php-format -msgctxt "e.g. 22 hours ago, 1 minute ago" -msgid "%1$d %2$s ago" -msgstr "il y a %1$d %2$s" +msgctxt "photo_upload" +msgid "%1$s posted %2$s to %3$s" +msgstr "%1$s a publié %2$s pour %3$s" -#: ../../include/datetime.php:307 -msgctxt "relative_date" -msgid "year" -msgid_plural "years" -msgstr[0] "an" -msgstr[1] "ans" +#: ../../include/photos.php:506 +msgid "Upload New Photos" +msgstr "Ajouter des photos" -#: ../../include/datetime.php:310 -msgctxt "relative_date" -msgid "month" -msgid_plural "months" -msgstr[0] "mois" -msgstr[1] "mois" - -#: ../../include/datetime.php:313 -msgctxt "relative_date" -msgid "week" -msgid_plural "weeks" -msgstr[0] "semaine" -msgstr[1] "semaines" - -#: ../../include/datetime.php:316 -msgctxt "relative_date" -msgid "day" -msgid_plural "days" -msgstr[0] "jour" -msgstr[1] "jours" - -#: ../../include/datetime.php:319 -msgctxt "relative_date" -msgid "hour" -msgid_plural "hours" -msgstr[0] "heure" -msgstr[1] "heures" - -#: ../../include/datetime.php:322 -msgctxt "relative_date" -msgid "minute" -msgid_plural "minutes" -msgstr[0] "minute" -msgstr[1] "minutes" - -#: ../../include/datetime.php:325 -msgctxt "relative_date" -msgid "second" -msgid_plural "seconds" -msgstr[0] "seconde" -msgstr[1] "secondes" - -#: ../../include/datetime.php:562 -#, php-format -msgid "%1$s's birthday" -msgstr "Anniversaire de %1$s" - -#: ../../include/datetime.php:563 -#, php-format -msgid "Happy Birthday %1$s" -msgstr "Joyeux Anniversaire %1$s" - -#: ../../include/api.php:1327 -msgid "Public Timeline" -msgstr "Fil public" - -#: ../../include/zot.php:697 +#: ../../include/zot.php:699 msgid "Invalid data packet" msgstr "Paquet de données invalide" -#: ../../include/zot.php:713 +#: ../../include/zot.php:715 msgid "Unable to verify channel signature" msgstr "Impossible de vérifier la signature du canal" -#: ../../include/zot.php:2326 +#: ../../include/zot.php:2363 #, php-format msgid "Unable to verify site signature for %s" msgstr "Impossible de vérifier la signature de site pour %s" -#: ../../include/zot.php:3703 +#: ../../include/zot.php:3712 msgid "invalid target signature" msgstr "signature de la cible invalide" +#: ../../include/page_widgets.php:6 +msgid "New Page" +msgstr "Nouvelle page" + +#: ../../include/page_widgets.php:43 +msgid "Title" +msgstr "Titre" + +#: ../../include/permissions.php:26 +msgid "Can view my normal stream and posts" +msgstr "Peut voir les publications ordinaires sur mon canal." + +#: ../../include/permissions.php:27 +msgid "Can view my default channel profile" +msgstr "Peut voir le profil du canal par défaut." + +#: ../../include/permissions.php:28 +msgid "Can view my connections" +msgstr "Peut voir mes contacts" + +#: ../../include/permissions.php:29 +msgid "Can view my file storage and photos" +msgstr "Peut voir mes fichiers et photos" + +#: ../../include/permissions.php:30 +msgid "Can view my webpages" +msgstr "Peut voir mes pages web" + +#: ../../include/permissions.php:33 +msgid "Can send me their channel stream and posts" +msgstr "Peuvent m'envoyer leur flux et les publications de leur canal" + +#: ../../include/permissions.php:34 +msgid "Can post on my channel page (\"wall\")" +msgstr "Peuvent poster sur la page de mon canal (\"mur\")" + +#: ../../include/permissions.php:35 +msgid "Can comment on or like my posts" +msgstr "Peuvent commenter et/ou aimer mes publications" + +#: ../../include/permissions.php:36 +msgid "Can send me private mail messages" +msgstr "Peuvent m'envoyer des messages privés" + +#: ../../include/permissions.php:37 +msgid "Can like/dislike stuff" +msgstr "Peuvent aimer/ne pas aimer" + +#: ../../include/permissions.php:37 +msgid "Profiles and things other than posts/comments" +msgstr "Profils et autres excluant les publications/commentaires." + +#: ../../include/permissions.php:39 +msgid "Can forward to all my channel contacts via post @mentions" +msgstr "Peut faire suivre à tous les contacts de mon canal via \"@mention\"" + +#: ../../include/permissions.php:39 +msgid "Advanced - useful for creating group forum channels" +msgstr "Avancé - utile pour les canaux de type \"forum/groupe\"" + +#: ../../include/permissions.php:40 +msgid "Can chat with me (when available)" +msgstr "Peut discuter avec moi (quand disponibie)" + +#: ../../include/permissions.php:41 +msgid "Can write to my file storage and photos" +msgstr "Peut charger des fichiers et des photos dans mon canal" + +#: ../../include/permissions.php:42 +msgid "Can edit my webpages" +msgstr "Peut modifier mes pages web" + +#: ../../include/permissions.php:44 +msgid "Can source my public posts in derived channels" +msgstr "Peut rediriger mes publications publiques vers des canaux dérivés" + +#: ../../include/permissions.php:44 +msgid "Somewhat advanced - very useful in open communities" +msgstr "Plutôt avancé - très utile dans les communautés ouvertes" + +#: ../../include/permissions.php:46 +msgid "Can administer my channel resources" +msgstr "Peut administrer les ressources de mon canal" + +#: ../../include/permissions.php:46 +msgid "" +"Extremely advanced. Leave this alone unless you know what you are doing" +msgstr "Très avancé. Ne pas toucher, sauf si vous savez ce que vous faîtes" + +#: ../../include/permissions.php:877 +msgid "Social Networking" +msgstr "Réseau social" + +#: ../../include/permissions.php:877 +msgid "Social - Mostly Public" +msgstr "Social - surtout public" + +#: ../../include/permissions.php:877 +msgid "Social - Restricted" +msgstr "Social - restreint" + +#: ../../include/permissions.php:877 +msgid "Social - Private" +msgstr "Social - privé" + +#: ../../include/permissions.php:878 +msgid "Community Forum" +msgstr "Forum communautaire" + +#: ../../include/permissions.php:878 +msgid "Forum - Mostly Public" +msgstr "Forum - surtout public" + +#: ../../include/permissions.php:878 +msgid "Forum - Restricted" +msgstr "Forum - restreint" + +#: ../../include/permissions.php:878 +msgid "Forum - Private" +msgstr "Forum - privé" + +#: ../../include/permissions.php:879 +msgid "Feed Republish" +msgstr "Republication de flux" + +#: ../../include/permissions.php:879 +msgid "Feed - Mostly Public" +msgstr "Flux - surtout public" + +#: ../../include/permissions.php:879 +msgid "Feed - Restricted" +msgstr "Flux - restreint" + +#: ../../include/permissions.php:880 +msgid "Special Purpose" +msgstr "Utilisation spécifique" + +#: ../../include/permissions.php:880 +msgid "Special - Celebrity/Soapbox" +msgstr "Spécial - célébrité/promotion" + +#: ../../include/permissions.php:880 +msgid "Special - Group Repository" +msgstr "Spécial - dépôt partagé" + +#: ../../include/permissions.php:881 +msgid "Custom/Expert Mode" +msgstr "Mode expert/spécifique" + +#: ../../include/activities.php:41 +msgid " and " +msgstr "et" + +#: ../../include/activities.php:49 +msgid "public profile" +msgstr "profil public" + +#: ../../include/activities.php:58 +#, php-format +msgid "%1$s changed %2$s to “%3$s”" +msgstr "%1$s a changé %2$s en “%3$s”" + +#: ../../include/activities.php:59 +#, php-format +msgid "Visit %1$s's %2$s" +msgstr "Visiter %2$s de %1$s" + +#: ../../include/activities.php:62 +#, php-format +msgid "%1$s has an updated %2$s, changing %3$s." +msgstr "%1$s a mis à jour %2$s, modifiant %3$s." + +#: ../../include/bb2diaspora.php:398 +msgid "Attachments:" +msgstr "Pièces jointes :" + +#: ../../include/bb2diaspora.php:487 +msgid "$Projectname event notification:" +msgstr "Notification d'événement de $Projectname :" + #: ../../view/theme/redbasic/php/config.php:82 msgid "Focus (Hubzilla default)" msgstr "Focus (par défaut pour Hubzilla)" @@ -9963,66 +9767,62 @@ msgstr "Définir la taille de la photo de l'auteur d'une conversation" msgid "Set size of followup author photos" msgstr "Définir la taille de la photo de l'auteur d'une réponse" -#: ../../boot.php:1163 +#: ../../boot.php:1162 #, php-format msgctxt "opensearch" msgid "Search %1$s (%2$s)" msgstr "" -#: ../../boot.php:1163 +#: ../../boot.php:1162 msgctxt "opensearch" msgid "$Projectname" msgstr "" -#: ../../boot.php:1481 +#: ../../boot.php:1480 #, php-format msgid "Update %s failed. See error logs." msgstr "La mise-à-jour %s a échoué. Merci de consulter les journaux d'erreur." -#: ../../boot.php:1484 +#: ../../boot.php:1483 #, php-format msgid "Update Error at %s" msgstr "Erreur de mise à jour sur %s" -#: ../../boot.php:1685 +#: ../../boot.php:1684 msgid "" "Create an account to access services and applications within the Hubzilla" msgstr "Créez un compte pour pouvoir accéder aux services et applications de Hubzilla" #: ../../boot.php:1706 -msgid "Login/Email" -msgstr "" - -#: ../../boot.php:1707 msgid "Password" msgstr "Mot de passe" -#: ../../boot.php:1708 +#: ../../boot.php:1707 msgid "Remember me" msgstr "Se souvenir de moi" -#: ../../boot.php:1711 +#: ../../boot.php:1710 msgid "Forgot your password?" msgstr "Mot de passe oublié ?" -#: ../../boot.php:2277 +#: ../../boot.php:2276 msgid "toggle mobile" msgstr "(dés)activer mobile" -#: ../../boot.php:2432 +#: ../../boot.php:2425 msgid "Website SSL certificate is not valid. Please correct." msgstr "Le certificat SSL n'est pas valide. Corrigez le." -#: ../../boot.php:2435 +#: ../../boot.php:2428 #, php-format msgid "[hubzilla] Website SSL error for %s" msgstr "[hubzilla] Erreur SSL pour %s" -#: ../../boot.php:2478 +#: ../../boot.php:2469 msgid "Cron/Scheduled tasks not running." msgstr "Les taches planifiées ne tournent pas." -#: ../../boot.php:2482 +#: ../../boot.php:2473 #, php-format msgid "[hubzilla] Cron tasks not running on %s" msgstr "[hubzilla] Les tâches planifiées ne tournent pas sur %s" diff --git a/view/fr/hstrings.php b/view/fr/hstrings.php index 3da3329cd..a1ff9f868 100644 --- a/view/fr/hstrings.php +++ b/view/fr/hstrings.php @@ -4,39 +4,7 @@ if(! function_exists("string_plural_select_fr")) { function string_plural_select_fr($n){ return ($n > 1);; }} -App::$rtl = 0; -App::$strings["Social Networking"] = "Réseau social"; -App::$strings["Social - Mostly Public"] = "Social - surtout public"; -App::$strings["Social - Restricted"] = "Social - restreint"; -App::$strings["Social - Private"] = "Social - privé"; -App::$strings["Community Forum"] = "Forum communautaire"; -App::$strings["Forum - Mostly Public"] = "Forum - surtout public"; -App::$strings["Forum - Restricted"] = "Forum - restreint"; -App::$strings["Forum - Private"] = "Forum - privé"; -App::$strings["Feed Republish"] = "Republication de flux"; -App::$strings["Feed - Mostly Public"] = "Flux - surtout public"; -App::$strings["Feed - Restricted"] = "Flux - restreint"; -App::$strings["Special Purpose"] = "Utilisation spécifique"; -App::$strings["Special - Celebrity/Soapbox"] = "Spécial - célébrité/promotion"; -App::$strings["Special - Group Repository"] = "Spécial - dépôt partagé"; -App::$strings["Other"] = "Autre"; -App::$strings["Custom/Expert Mode"] = "Mode expert/spécifique"; -App::$strings["Can view my channel stream and posts"] = ""; -App::$strings["Can send me their channel stream and posts"] = "Peuvent m'envoyer leur flux et les publications de leur canal"; -App::$strings["Can view my default channel profile"] = "Peut voir le profil du canal par défaut."; -App::$strings["Can view my connections"] = "Peut voir mes contacts"; -App::$strings["Can view my file storage and photos"] = "Peut voir mes fichiers et photos"; -App::$strings["Can upload/modify my file storage and photos"] = ""; -App::$strings["Can view my channel webpages"] = ""; -App::$strings["Can create/edit my channel webpages"] = ""; -App::$strings["Can post on my channel (wall) page"] = ""; -App::$strings["Can comment on or like my posts"] = "Peuvent commenter et/ou aimer mes publications"; -App::$strings["Can send me private mail messages"] = "Peuvent m'envoyer des messages privés"; -App::$strings["Can like/dislike profiles and profile things"] = ""; -App::$strings["Can forward to all my channel connections via @+ mentions in posts"] = ""; -App::$strings["Can chat with me"] = ""; -App::$strings["Can source my public posts in derived channels"] = "Peut rediriger mes publications publiques vers des canaux dérivés"; -App::$strings["Can administer my channel"] = ""; +; App::$strings["parent"] = "retour"; App::$strings["Collection"] = "Groupe de contacts"; App::$strings["Principal"] = "Principal"; @@ -69,8 +37,63 @@ App::$strings["Remote authentication blocked. You are logged into this site loca App::$strings["Welcome %s. Remote authentication successful."] = "Bienvenue %s. L'authentification distante a fonctionné."; App::$strings["Requested profile is not available."] = "Profil demandé non disponible."; App::$strings["Some blurb about what to do when you're new here"] = "Quelques mots sur quoi faire quand on est nouveau ici"; +App::$strings["Block Name"] = "Nom du Bloc"; +App::$strings["Blocks"] = "Blocs"; +App::$strings["Block Title"] = "Titre du bloc"; +App::$strings["Created"] = "Créé(e)"; +App::$strings["Edited"] = "Modifié(e)"; +App::$strings["Share"] = "Partager"; +App::$strings["View"] = "Voir"; +App::$strings["Channel not found."] = "Canal introuvable."; +App::$strings["Permissions denied."] = "Permissions refusées."; +App::$strings["l, F j"] = "l, F j"; +App::$strings["Link to Source"] = "Lien vers la Source"; +App::$strings["Edit Event"] = "Modifier l'événement"; +App::$strings["Create Event"] = "Créer un événement"; +App::$strings["Previous"] = "Précédent"; +App::$strings["Next"] = "Suivant"; +App::$strings["Export"] = "Export"; +App::$strings["Import"] = "Import"; +App::$strings["Submit"] = "Envoyer"; +App::$strings["Today"] = "Aujourd'hui"; +App::$strings["You must be logged in to see this page."] = "Vous devez vous connecter pour voir cette page."; +App::$strings["Posts and comments"] = ""; +App::$strings["Only posts"] = ""; +App::$strings["Insufficient permissions. Request redirected to profile page."] = "Permissions insuffisantes. Demande redirigée vers la page du profil."; +App::$strings["Room not found"] = "Salon introuvable"; +App::$strings["Leave Room"] = "Quitter le salon"; +App::$strings["Delete Room"] = ""; +App::$strings["I am away right now"] = "Je suis absent en ce moment"; +App::$strings["I am online"] = "Je suis en ligne"; +App::$strings["Bookmark this room"] = "Marquer ce salon comme favori"; +App::$strings["Please enter a link URL:"] = "Merci d'entrer l'URL d'un lien :"; +App::$strings["Encrypt text"] = "Chiffrer le texte"; +App::$strings["Insert web link"] = "Insérer lien web"; +App::$strings["Feature disabled."] = ""; +App::$strings["New Chatroom"] = "Nouveau salon de discussion"; +App::$strings["Chatroom name"] = ""; +App::$strings["Expiration of chats (minutes)"] = "Expiration des discussions (en minutes)"; +App::$strings["Permissions"] = "Autorisations"; +App::$strings["%1\$s's Chatrooms"] = "Salons de %1\$s"; +App::$strings["No chatrooms available"] = ""; +App::$strings["Create New"] = ""; +App::$strings["Expiration"] = ""; +App::$strings["min"] = ""; App::$strings["Away"] = "Absent"; App::$strings["Online"] = "En ligne"; +App::$strings["Invalid item."] = "Élément invalide."; +App::$strings["Bookmark added"] = "Favori ajouté"; +App::$strings["My Bookmarks"] = "Mes Favoris"; +App::$strings["My Connections Bookmarks"] = "Favoris de mes contacts"; +App::$strings["Continue"] = "Continuer"; +App::$strings["Premium Channel Setup"] = "Configuration du canal VIP"; +App::$strings["Enable premium channel connection restrictions"] = "Activer les restrictions liées au canal VIP"; +App::$strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = "Merci de saisir les restrictions et/ou conditions - reçu Paypal, transaction Bitcoin, ligne de conduite, ..."; +App::$strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = "Avant d'autoriser la mise en relation, ce canal attire votre attention sur les conditions suivantes :"; +App::$strings["Potential connections will then see the following text before proceeding:"] = "Les contacts potentiels verront ce qui suit avant de pouvoir continuer :"; +App::$strings["By continuing, I certify that I have complied with any instructions provided on this page."] = "En continuant, je certifie que je me suis conformé à toutes les instructions indiquées sur cette page."; +App::$strings["(No specific instructions have been provided by the channel owner.)"] = "(Aucune instruction spécifique n'a été fournie par le propriétaire du canal.)"; +App::$strings["Restricted or Premium Channel"] = "Canal VIP ou restreint"; App::$strings["Could not access contact record."] = "Impossible d'accéder aux détails du contact."; App::$strings["Could not locate selected profile."] = "Impossible de localiser le profil sélectionné."; App::$strings["Connection updated."] = "Contact mis à jour."; @@ -135,7 +158,6 @@ App::$strings["Do not import posts with this text"] = "Ne pas importer les publi App::$strings["This information is public!"] = "Cette information est publique !"; App::$strings["Connection Pending Approval"] = "Contact en attente d'approbation"; App::$strings["inherited"] = "héritée"; -App::$strings["Submit"] = "Envoyer"; App::$strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Merci de choisir le profil que vous souhaitez montrer quand %s visite votre profil de manière authentifiée."; App::$strings["Their Settings"] = "Leurs paramètres"; App::$strings["My Settings"] = "Mes paramètres"; @@ -144,30 +166,6 @@ App::$strings["Some permissions may be inherited from your channel's privacy settings, which have higher priority than individual settings. You can change those settings here but they wont have any impact unless the inherited setting changes."] = "Certaines permissions peuvent être héritées de vos paramètres de confidentialité de canal, lesquels sont prioritaires sur les réglages individuels. Vous pouvez modifier ces permissions ici mais cela n'aura aucun effet à moins de changer les paramètres hérités."; App::$strings["Last update:"] = "Dernière mise à jour :"; App::$strings["Public access denied."] = "Accès public refusé."; -App::$strings["Item not found."] = "Élément introuvable"; -App::$strings["First Name"] = "Prénom"; -App::$strings["Last Name"] = "Nom de famille"; -App::$strings["Nickname"] = "Surnom"; -App::$strings["Full Name"] = "Nom complet"; -App::$strings["Email"] = "Courriel"; -App::$strings["Profile Photo"] = "Photo du Profil"; -App::$strings["Profile Photo 16px"] = "Photo de profil 16px"; -App::$strings["Profile Photo 32px"] = "Photo de profil 32px"; -App::$strings["Profile Photo 48px"] = "Photo de profil 48px"; -App::$strings["Profile Photo 64px"] = "Photo de profil 64px"; -App::$strings["Profile Photo 80px"] = "Photo de profil 80px"; -App::$strings["Profile Photo 128px"] = "Photo de profil 128px"; -App::$strings["Timezone"] = "Fuseau horaire"; -App::$strings["Homepage URL"] = "URL de mon site Internet :"; -App::$strings["Language"] = "Langue"; -App::$strings["Birth Year"] = "Année de naissance"; -App::$strings["Birth Month"] = "Mois de naissance"; -App::$strings["Birth Day"] = "Jour de naissance"; -App::$strings["Birthdate"] = "Date de naissance"; -App::$strings["Gender"] = "Sexe"; -App::$strings["Male"] = "Homme"; -App::$strings["Female"] = "Femme"; -App::$strings["Channel added."] = "Canal ajouté."; App::$strings["%d rating"] = array( 0 => "%d évaluation", 1 => "%d évaluations", @@ -198,74 +196,13 @@ App::$strings["Reverse Alphabetic"] = "Alphabétique inversé"; App::$strings["Newest to Oldest"] = "Du plus récent au moins récent"; App::$strings["Oldest to Newest"] = "Du moins récent du plus récent"; App::$strings["No entries (some entries may be hidden)."] = "Pas d'entrées (certaines peuvent être cachées)."; -App::$strings["Continue"] = "Continuer"; -App::$strings["Premium Channel Setup"] = "Configuration du canal VIP"; -App::$strings["Enable premium channel connection restrictions"] = "Activer les restrictions liées au canal VIP"; -App::$strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = "Merci de saisir les restrictions et/ou conditions - reçu Paypal, transaction Bitcoin, ligne de conduite, ..."; -App::$strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = "Avant d'autoriser la mise en relation, ce canal attire votre attention sur les conditions suivantes :"; -App::$strings["Potential connections will then see the following text before proceeding:"] = "Les contacts potentiels verront ce qui suit avant de pouvoir continuer :"; -App::$strings["By continuing, I certify that I have complied with any instructions provided on this page."] = "En continuant, je certifie que je me suis conformé à toutes les instructions indiquées sur cette page."; -App::$strings["(No specific instructions have been provided by the channel owner.)"] = "(Aucune instruction spécifique n'a été fournie par le propriétaire du canal.)"; -App::$strings["Restricted or Premium Channel"] = "Canal VIP ou restreint"; -App::$strings["Calendar entries imported."] = "Entrées du calendrier importées."; -App::$strings["No calendar entries found."] = "Aucune entrée du calendrier trouvée."; -App::$strings["Event can not end before it has started."] = "La fin de l'événement ne peut être antérieure à son début."; -App::$strings["Unable to generate preview."] = "Impossible de générer l'aperçu."; -App::$strings["Event title and start time are required."] = "Un titre et une date de début sont requises pour l'événement."; -App::$strings["Event not found."] = "Événement introuvable."; -App::$strings["event"] = "événement"; -App::$strings["Edit event title"] = "Modifier le titre de l'événement"; -App::$strings["Event title"] = "Titre de l'événement"; -App::$strings["Required"] = "Requis"; -App::$strings["Categories (comma-separated list)"] = "Catégories (séparées par des virgules)"; -App::$strings["Edit Category"] = "Modifier la catégorie"; -App::$strings["Category"] = "Catégorie"; -App::$strings["Edit start date and time"] = "Modifier la date et l'heure de début"; -App::$strings["Start date and time"] = "Date et heure de début"; -App::$strings["Finish date and time are not known or not relevant"] = "Date et heure de fin inconnues ou sans objet"; -App::$strings["Edit finish date and time"] = "Modifier la date et l'heure de fin"; -App::$strings["Finish date and time"] = "Date et heure de fin"; -App::$strings["Adjust for viewer timezone"] = "Ajuster au fuseau horaire du visiteur"; -App::$strings["Important for events that happen in a particular place. Not practical for global holidays."] = "Important pour les événements se tenant en un lieu particulier. Pas pratique pour les vacances communes à de nombreux pays dans le monde."; -App::$strings["Edit Description"] = "Modifier la description"; -App::$strings["Description"] = "Description"; -App::$strings["Edit Location"] = "Modifier l'emplacement"; -App::$strings["Location"] = "Emplacement"; -App::$strings["Share this event"] = "Partager cet événement"; -App::$strings["Preview"] = "Aperçu"; -App::$strings["Permission settings"] = "Gérer les autorisations"; -App::$strings["Advanced Options"] = "Options avancées"; -App::$strings["l, F j"] = "l, F j"; -App::$strings["Edit event"] = "Modifier l'événement"; -App::$strings["Delete event"] = "Supprimer l'événement"; -App::$strings["Link to Source"] = "Lien vers la Source"; -App::$strings["calendar"] = "calendrier"; -App::$strings["Edit Event"] = "Modifier l'événement"; -App::$strings["Create Event"] = "Créer un événement"; -App::$strings["Previous"] = "Précédent"; -App::$strings["Next"] = "Suivant"; -App::$strings["Export"] = "Export"; -App::$strings["View"] = "Voir"; -App::$strings["Month"] = ""; -App::$strings["Week"] = ""; -App::$strings["Day"] = ""; -App::$strings["Today"] = "Aujourd'hui"; -App::$strings["Event removed"] = "Événement supprimé"; -App::$strings["Failed to remove event"] = "Impossible de supprimer l'événement"; -App::$strings["Bookmark added"] = "Favori ajouté"; -App::$strings["My Bookmarks"] = "Mes Favoris"; -App::$strings["My Connections Bookmarks"] = "Favoris de mes contacts"; +App::$strings["Item not found."] = "Élément introuvable"; App::$strings["Item not found"] = "Élément introuvable"; -App::$strings["Item is not editable"] = "Elément non modifiable"; -App::$strings["Edit post"] = "Modifier la publication"; -App::$strings["Photos"] = "Photos"; -App::$strings["Cancel"] = "Annuler"; -App::$strings["Invalid item."] = "Élément invalide."; -App::$strings["Channel not found."] = "Canal introuvable."; -App::$strings["Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."] = "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."; -App::$strings["Save to Folder:"] = "Classer dans le dossier :"; -App::$strings["- select -"] = "- choisir -"; -App::$strings["Save"] = "Enregistrer"; +App::$strings["Title (optional)"] = "Titre (facultatif)"; +App::$strings["Edit Block"] = "Modifier le bloc"; +App::$strings["No channel."] = "Pas de canal."; +App::$strings["Common connections"] = "Contacts en commun"; +App::$strings["No connections in common."] = "Pas de contacts en commun."; App::$strings["Blocked"] = "Bloqué(e)"; App::$strings["Ignored"] = "Ignoré(e)"; App::$strings["Hidden"] = "Caché"; @@ -317,38 +254,51 @@ App::$strings["select a photo from your photo albums"] = "choisir une photo dans App::$strings["Crop Image"] = "Recadrer l'image"; App::$strings["Please adjust the image cropping for optimum viewing."] = "Merci d'ajuster le cadre pour une visualisation optimale."; App::$strings["Done Editing"] = "J'ai terminé"; -App::$strings["webpage"] = "pages web"; -App::$strings["block"] = "bloquer"; -App::$strings["layout"] = "mise en page"; -App::$strings["menu"] = "menu"; -App::$strings["%s element installed"] = "Elément %s installé"; -App::$strings["%s element installation failed"] = "L'installation de l'élément %s a échoué"; -App::$strings["Permissions denied."] = "Permissions refusées."; -App::$strings["Import"] = "Import"; +App::$strings["Item is not editable"] = "Elément non modifiable"; +App::$strings["Edit post"] = "Modifier la publication"; +App::$strings["Calendar entries imported."] = "Entrées du calendrier importées."; +App::$strings["No calendar entries found."] = "Aucune entrée du calendrier trouvée."; +App::$strings["Event can not end before it has started."] = "La fin de l'événement ne peut être antérieure à son début."; +App::$strings["Unable to generate preview."] = "Impossible de générer l'aperçu."; +App::$strings["Event title and start time are required."] = "Un titre et une date de début sont requises pour l'événement."; +App::$strings["Event not found."] = "Événement introuvable."; +App::$strings["event"] = "événement"; +App::$strings["Edit event title"] = "Modifier le titre de l'événement"; +App::$strings["Event title"] = "Titre de l'événement"; +App::$strings["Required"] = "Requis"; +App::$strings["Categories (comma-separated list)"] = "Catégories (séparées par des virgules)"; +App::$strings["Edit Category"] = "Modifier la catégorie"; +App::$strings["Category"] = "Catégorie"; +App::$strings["Edit start date and time"] = "Modifier la date et l'heure de début"; +App::$strings["Start date and time"] = "Date et heure de début"; +App::$strings["Finish date and time are not known or not relevant"] = "Date et heure de fin inconnues ou sans objet"; +App::$strings["Edit finish date and time"] = "Modifier la date et l'heure de fin"; +App::$strings["Finish date and time"] = "Date et heure de fin"; +App::$strings["Adjust for viewer timezone"] = "Ajuster au fuseau horaire du visiteur"; +App::$strings["Important for events that happen in a particular place. Not practical for global holidays."] = "Important pour les événements se tenant en un lieu particulier. Pas pratique pour les vacances communes à de nombreux pays dans le monde."; +App::$strings["Edit Description"] = "Modifier la description"; +App::$strings["Description"] = "Description"; +App::$strings["Edit Location"] = "Modifier l'emplacement"; +App::$strings["Location"] = "Emplacement"; +App::$strings["Share this event"] = "Partager cet événement"; +App::$strings["Preview"] = "Aperçu"; +App::$strings["Permission settings"] = "Gérer les autorisations"; +App::$strings["Advanced Options"] = "Options avancées"; +App::$strings["Edit event"] = "Modifier l'événement"; +App::$strings["Delete event"] = "Supprimer l'événement"; +App::$strings["calendar"] = "calendrier"; +App::$strings["Event removed"] = "Événement supprimé"; +App::$strings["Failed to remove event"] = "Impossible de supprimer l'événement"; +App::$strings["Photos"] = "Photos"; +App::$strings["Cancel"] = "Annuler"; App::$strings["This site is not a directory server"] = "Ce site n'est pas un serveur d'annuaire"; App::$strings["This directory server requires an access token"] = "Ce serveur d'annuaire requiert un jeton d'accès"; -App::$strings["You must be logged in to see this page."] = "Vous devez vous connecter pour voir cette page."; -App::$strings["Room not found"] = "Salon introuvable"; -App::$strings["Leave Room"] = "Quitter le salon"; -App::$strings["Delete Room"] = ""; -App::$strings["I am away right now"] = "Je suis absent en ce moment"; -App::$strings["I am online"] = "Je suis en ligne"; -App::$strings["Bookmark this room"] = "Marquer ce salon comme favori"; -App::$strings["Please enter a link URL:"] = "Merci d'entrer l'URL d'un lien :"; -App::$strings["Encrypt text"] = "Chiffrer le texte"; -App::$strings["Insert web link"] = "Insérer lien web"; -App::$strings["Feature disabled."] = ""; -App::$strings["New Chatroom"] = "Nouveau salon de discussion"; -App::$strings["Chatroom name"] = ""; -App::$strings["Expiration of chats (minutes)"] = "Expiration des discussions (en minutes)"; -App::$strings["Permissions"] = "Autorisations"; -App::$strings["%1\$s's Chatrooms"] = "Salons de %1\$s"; -App::$strings["No chatrooms available"] = ""; -App::$strings["Create New"] = ""; -App::$strings["Expiration"] = ""; -App::$strings["min"] = ""; +App::$strings["Save to Folder:"] = "Classer dans le dossier :"; +App::$strings["- select -"] = "- choisir -"; +App::$strings["Save"] = "Enregistrer"; App::$strings["Invalid message"] = "Message non valide"; App::$strings["no results"] = "aucun résultat"; +App::$strings["Delivery report for %1\$s"] = "Rapport de distribution pour %1\$s"; App::$strings["channel sync processed"] = "Synchro de canal effectuée"; App::$strings["queued"] = "mis dans la file d'attente"; App::$strings["posted"] = "publié"; @@ -360,14 +310,14 @@ App::$strings["recipient not found"] = "destinataire introuvable"; App::$strings["mail recalled"] = "courriel rappelé"; App::$strings["duplicate mail received"] = "courriel reçu en double"; App::$strings["mail delivered"] = "courriel distribué"; -App::$strings["Delivery report for %1\$s"] = "Rapport de distribution pour %1\$s"; -App::$strings["Options"] = ""; -App::$strings["Redeliver"] = ""; App::$strings["Layout Name"] = "Nom de la mise en page"; App::$strings["Layout Description (Optional)"] = "Description de la mise en page (facultatif)"; App::$strings["Edit Layout"] = "Modifier la mise en page"; App::$strings["Page link"] = ""; App::$strings["Edit Webpage"] = "Modifier la page web"; +App::$strings["Channel added."] = "Canal ajouté."; +App::$strings["network"] = "réseau"; +App::$strings["RSS"] = "RSS"; App::$strings["Privacy group created."] = "Groupe d'accès créé."; App::$strings["Could not create privacy group."] = "Impossible de créer le groupe d'accès."; App::$strings["Privacy group not found."] = "Groupe d'accès introuvable."; @@ -381,33 +331,16 @@ App::$strings["Privacy group editor"] = "Editeur de groupe d'accès."; App::$strings["Members"] = "Membres"; App::$strings["All Connected Channels"] = "Tous les canaux connectés"; App::$strings["Click on a channel to add or remove."] = "Cliquer sur un canal pour l'ajouter ou le supprimer"; -App::$strings["App installed."] = "Application installée."; -App::$strings["Malformed app."] = "Erreur de l'application - Malformée."; -App::$strings["Embed code"] = "Imbriquer le code"; -App::$strings["Edit App"] = "Modifier l'application"; -App::$strings["Create App"] = "Créer une application"; -App::$strings["Name of app"] = "Nom de l'application"; -App::$strings["Location (URL) of app"] = "Emplacement (URL) de l'application"; -App::$strings["Photo icon URL"] = "URL de l'icône à utiliser pour cette photo"; -App::$strings["80 x 80 pixels - optional"] = "80 x 80 pixels - facultatif"; -App::$strings["Categories (optional, comma separated list)"] = ""; -App::$strings["Version ID"] = "Identifiant de version"; -App::$strings["Price of app"] = "Prix de l'application"; -App::$strings["Location (URL) to purchase app"] = "Emplacement (URL) pour l'achat de l'application"; +App::$strings["Share content from Firefox to \$Projectname"] = "Partager du contenu depuis Firefox avec \$Projectname"; +App::$strings["Activate the Firefox \$Projectname provider"] = "Activer le connecteur \$Projectname pour Firefox"; +App::$strings["Authorize application connection"] = "Autoriser l'application à se connecter"; +App::$strings["Return to your app and insert this Securty Code:"] = "Merci de retourner vers votre application, et d'y insérer ce Code de Sécurité :"; +App::$strings["Please login to continue."] = "Merci de vous identifier pour continuer."; +App::$strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Voulez-vous autoriser cette application à accéder à vos publications et contacts, et/ou à publier en votre nom?"; App::$strings["Documentation Search"] = "Chercher dans la documentation"; App::$strings["Help:"] = "Aide :"; App::$strings["Help"] = "Aide"; App::$strings["\$Projectname Documentation"] = "Documentation \$Projectname"; -App::$strings["Item not available."] = "Élément indisponible."; -App::$strings["Layout updated."] = "Mise en page mise à jour."; -App::$strings["Edit System Page Description"] = "Modifier la description de la page du système"; -App::$strings["Layout not found."] = "Mise en page introuvable."; -App::$strings["Module Name:"] = "Nom du module :"; -App::$strings["Layout Help"] = "Aide à la mise en page"; -App::$strings["Share content from Firefox to \$Projectname"] = "Partager du contenu depuis Firefox avec \$Projectname"; -App::$strings["Activate the Firefox \$Projectname provider"] = "Activer le connecteur \$Projectname pour Firefox"; -App::$strings["network"] = "réseau"; -App::$strings["RSS"] = "RSS"; App::$strings["Permission Denied."] = "Permission refusée."; App::$strings["File not found."] = "Fichier introuvable."; App::$strings["Edit file permissions"] = "Modifier les autorisations d'accès au fichier"; @@ -419,100 +352,8 @@ App::$strings["Copy/paste this URL to link file from a web page"] = "Copiez/coll App::$strings["Share this file"] = "Partager ce fichier"; App::$strings["Show URL to this file"] = "Montrer l'URL de ce fichier"; App::$strings["Notify your contacts about this file"] = "Notifier vos contacts à propos de ce fichier"; -App::$strings["Layouts"] = "Mises-en-page"; -App::$strings["Comanche page description language help"] = "Aide sur le langage de description de page Comanche"; -App::$strings["Layout Description"] = "Description de la mise en page"; -App::$strings["Created"] = "Créé(e)"; -App::$strings["Edited"] = "Modifié(e)"; -App::$strings["Share"] = "Partager"; -App::$strings["Download PDL file"] = "Télécharger le fichier PDL"; -App::$strings["Like/Dislike"] = "Aime/n'aime pas"; -App::$strings["This action is restricted to members."] = "Cette action est réservée aux membres."; -App::$strings["Please login with your \$Projectname ID or register as a new \$Projectname member to continue."] = "S'il vous plait, identifiez vous avec votre identifant de \$Projectname ou inscrivez vous comme nouveau membre de \$Projectname pour continuer."; -App::$strings["Invalid request."] = "Requête invalide."; -App::$strings["channel"] = "canal"; -App::$strings["thing"] = "chose"; -App::$strings["Channel unavailable."] = "Canal indisponible."; -App::$strings["Previous action reversed."] = "Action précédente annulée."; -App::$strings["photo"] = "photo"; -App::$strings["status"] = "état"; -App::$strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s aime %3\$s de %2\$s"; -App::$strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s n'aime pas %3\$s de %2\$s"; -App::$strings["%1\$s agrees with %2\$s's %3\$s"] = "%1\$s approuve %3\$s de %2\$s"; -App::$strings["%1\$s doesn't agree with %2\$s's %3\$s"] = "%1\$s n'est pas d'accord avec %3\$s de %2\$s"; -App::$strings["%1\$s abstains from a decision on %2\$s's %3\$s"] = "%1\$s s'abstient de toute décision sur le %3\$s de %2\$s"; -App::$strings["%1\$s is attending %2\$s's %3\$s"] = "%1\$s participe à %3\$s de %2\$s"; -App::$strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$s ne participe pas à %3\$s de %2\$s"; -App::$strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$s participe peut-être à %3\$s de %2\$s"; -App::$strings["Action completed."] = "Action terminée."; -App::$strings["Thank you."] = "Merci."; -App::$strings["Profile not found."] = "Profil introuvable."; -App::$strings["Profile deleted."] = "Profil supprimé."; -App::$strings["Profile-"] = "Profil-"; -App::$strings["New profile created."] = "Nouveau profil créé."; -App::$strings["Profile unavailable to clone."] = "Profil impossible à cloner."; -App::$strings["Profile unavailable to export."] = "Impossible d'exporter le profil."; -App::$strings["Profile Name is required."] = "Le nom du profil est obligatoire."; -App::$strings["Marital Status"] = "Statut marital"; -App::$strings["Romantic Partner"] = "Partenaire amoureux"; -App::$strings["Likes"] = "Aime"; -App::$strings["Dislikes"] = "N'aime pas"; -App::$strings["Work/Employment"] = "Travail/Occupation"; -App::$strings["Religion"] = "Religion/Croyance"; -App::$strings["Political Views"] = "Opinions politiques"; -App::$strings["Sexual Preference"] = "Préférences sexuelle"; -App::$strings["Homepage"] = "Site Internet"; -App::$strings["Interests"] = "Centres d'intérêt"; -App::$strings["Address"] = "Adresse"; -App::$strings["Profile updated."] = "Profil mis à jour."; -App::$strings["Hide your connections list from viewers of this profile"] = ""; -App::$strings["Edit Profile Details"] = "Modifier les détails du profil"; -App::$strings["View this profile"] = "Voir ce profil"; -App::$strings["Edit visibility"] = "Changer la visibilité"; -App::$strings["Profile Tools"] = ""; -App::$strings["Change cover photo"] = ""; -App::$strings["Change profile photo"] = "Changer la photo du profil"; -App::$strings["Create a new profile using these settings"] = "Créer un nouveau profil avec ces paramètres"; -App::$strings["Clone this profile"] = "Cloner ce profil"; -App::$strings["Delete this profile"] = "Supprimer ce profil"; -App::$strings["Add profile things"] = "Ajouter des éléments de profil"; -App::$strings["Personal"] = "Me concernant"; -App::$strings["Relation"] = ""; -App::$strings["Miscellaneous"] = "Divers"; -App::$strings["Import profile from file"] = "Importer le profil à partir d'un fichier"; -App::$strings["Export profile to file"] = "Exporter le profil vers un fichier."; -App::$strings["Your gender"] = ""; -App::$strings["Marital status"] = ""; -App::$strings["Sexual preference"] = ""; -App::$strings["Profile name"] = ""; -App::$strings["This is your default profile."] = "Ceci est votre profil par défaut."; -App::$strings["Your full name"] = ""; -App::$strings["Title/Description"] = "Titre/description"; -App::$strings["Street address"] = ""; -App::$strings["Locality/City"] = "Ville"; -App::$strings["Region/State"] = "Région"; -App::$strings["Postal/Zip code"] = ""; -App::$strings["Country"] = "Pays"; -App::$strings["Who (if applicable)"] = "Qui (si applicable)"; -App::$strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Exemples : marie123, Marie Deschamps, marie@exemple.com"; -App::$strings["Since (date)"] = ""; -App::$strings["Tell us about yourself"] = ""; -App::$strings["Hometown"] = "Ville de naissance"; -App::$strings["Political views"] = ""; -App::$strings["Religious views"] = ""; -App::$strings["Keywords used in directory listings"] = ""; -App::$strings["Example: fishing photography software"] = "Exemple : escrime photographie modélisme"; -App::$strings["Musical interests"] = "Goûts musicaux"; -App::$strings["Books, literature"] = "Livres, littérature"; -App::$strings["Television"] = "Télévision"; -App::$strings["Film/Dance/Culture/Entertainment"] = ""; -App::$strings["Hobbies/Interests"] = "Loisirs/Centres d'intêret"; -App::$strings["Love/Romance"] = ""; -App::$strings["School/Education"] = ""; -App::$strings["Contact information and social networks"] = ""; -App::$strings["My other channels"] = "Mes autres canaux"; -App::$strings["Profile Image"] = "Image du profil"; -App::$strings["Edit Profiles"] = "Modifier les profils"; +App::$strings["Apps"] = "Applications"; +App::$strings["Item not available."] = "Élément indisponible."; App::$strings["Your service plan only allows %d channels."] = "Votre forfait n'autorise que %d canaux."; App::$strings["Nothing to import."] = "Rien à importer."; App::$strings["Unable to download data from old server"] = "Impossible de récupérer les données de l'ancien serveur"; @@ -533,8 +374,6 @@ App::$strings["For either option, please choose whether to make this hub your ne App::$strings["Make this hub my primary location"] = "Faire de ce hub mon emplacement primaire"; App::$strings["Import existing posts if possible (experimental - limited by available memory"] = "Importer les publications existantes si possible (expérimental - limité par la mémoire disponible)"; App::$strings["This process may take several minutes to complete. Please submit the form only once and leave this page open until finished."] = "Ce processus peut prendre plusieurs minutes. Merci de ne valider le formulaire qu'une seule fois et de laisser cette page ouverte jusqu'à la fin."; -App::$strings["\$Projectname"] = "\$Projectname"; -App::$strings["Welcome to %s"] = "Bienvenue sur %s"; App::$strings["Unable to locate original post."] = "Impossible de localiser la publication initiale."; App::$strings["Empty post discarded."] = "Publication vide annulée."; App::$strings["Executable content type not permitted to this channel."] = "Les contenus de type 'exécutable' ne sont pas autorisés sur ce canal."; @@ -543,6 +382,229 @@ App::$strings["System error. Post not saved."] = "Erreur système. Publication n App::$strings["Unable to obtain post information from database."] = "Impossible d'obtenir les informations de publication depuis la base de données."; App::$strings["You have reached your limit of %1$.0f top level posts."] = "Vous avez atteint votre limite de %1$.0f contributions \"racines\"."; App::$strings["You have reached your limit of %1$.0f webpages."] = "Vous avez atteint votre limite de %1$.0f pages web."; +App::$strings["Layouts"] = "Mises-en-page"; +App::$strings["Comanche page description language help"] = "Aide sur le langage de description de page Comanche"; +App::$strings["Layout Description"] = "Description de la mise en page"; +App::$strings["Download PDL file"] = "Télécharger le fichier PDL"; +App::$strings["\$Projectname"] = "\$Projectname"; +App::$strings["Welcome to %s"] = "Bienvenue sur %s"; +App::$strings["First Name"] = "Prénom"; +App::$strings["Last Name"] = "Nom de famille"; +App::$strings["Nickname"] = "Surnom"; +App::$strings["Full Name"] = "Nom complet"; +App::$strings["Email"] = "Courriel"; +App::$strings["Profile Photo"] = "Photo du Profil"; +App::$strings["Profile Photo 16px"] = "Photo de profil 16px"; +App::$strings["Profile Photo 32px"] = "Photo de profil 32px"; +App::$strings["Profile Photo 48px"] = "Photo de profil 48px"; +App::$strings["Profile Photo 64px"] = "Photo de profil 64px"; +App::$strings["Profile Photo 80px"] = "Photo de profil 80px"; +App::$strings["Profile Photo 128px"] = "Photo de profil 128px"; +App::$strings["Timezone"] = "Fuseau horaire"; +App::$strings["Homepage URL"] = "URL de mon site Internet :"; +App::$strings["Language"] = "Langue"; +App::$strings["Birth Year"] = "Année de naissance"; +App::$strings["Birth Month"] = "Mois de naissance"; +App::$strings["Birth Day"] = "Jour de naissance"; +App::$strings["Birthdate"] = "Date de naissance"; +App::$strings["Gender"] = "Sexe"; +App::$strings["Male"] = "Homme"; +App::$strings["Female"] = "Femme"; +App::$strings["webpage"] = "pages web"; +App::$strings["block"] = "bloquer"; +App::$strings["layout"] = "mise en page"; +App::$strings["menu"] = "menu"; +App::$strings["%s element installed"] = "Elément %s installé"; +App::$strings["%s element installation failed"] = "L'installation de l'élément %s a échoué"; +App::$strings["Like/Dislike"] = "Aime/n'aime pas"; +App::$strings["This action is restricted to members."] = "Cette action est réservée aux membres."; +App::$strings["Please login with your \$Projectname ID or register as a new \$Projectname member to continue."] = "S'il vous plait, identifiez vous avec votre identifant de \$Projectname ou inscrivez vous comme nouveau membre de \$Projectname pour continuer."; +App::$strings["Invalid request."] = "Requête invalide."; +App::$strings["channel"] = "canal"; +App::$strings["thing"] = "chose"; +App::$strings["Channel unavailable."] = "Canal indisponible."; +App::$strings["Previous action reversed."] = "Action précédente annulée."; +App::$strings["photo"] = "photo"; +App::$strings["status"] = "état"; +App::$strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s aime %3\$s de %2\$s"; +App::$strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s n'aime pas %3\$s de %2\$s"; +App::$strings["%1\$s agrees with %2\$s's %3\$s"] = "%1\$s approuve %3\$s de %2\$s"; +App::$strings["%1\$s doesn't agree with %2\$s's %3\$s"] = "%1\$s n'est pas d'accord avec %3\$s de %2\$s"; +App::$strings["%1\$s abstains from a decision on %2\$s's %3\$s"] = "%1\$s s'abstient de toute décision sur le %3\$s de %2\$s"; +App::$strings["%1\$s is attending %2\$s's %3\$s"] = "%1\$s participe à %3\$s de %2\$s"; +App::$strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$s ne participe pas à %3\$s de %2\$s"; +App::$strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$s participe peut-être à %3\$s de %2\$s"; +App::$strings["Action completed."] = "Action terminée."; +App::$strings["Thank you."] = "Merci."; +App::$strings["Import completed"] = "L'import est terminé."; +App::$strings["Import Items"] = "Importer"; +App::$strings["Use this form to import existing posts and content from an export file."] = "Utiliser ce formulaire pour importer des publications et du contenu existant d'un fichier d'export."; +App::$strings["Total invitation limit exceeded."] = "Limite du nombre total d'invitation dépassée."; +App::$strings["%s : Not a valid email address."] = "%s : adresse courriel invalide."; +App::$strings["Please join us on \$Projectname"] = "Rejoignez-nous sur \$Projectname"; +App::$strings["Invitation limit exceeded. Please contact your site administrator."] = "Limite d'invitations dépassée. Merci de contacter l'administration de votre site."; +App::$strings["%s : Message delivery failed."] = "%s : Échec de distribution du message."; +App::$strings["%d message sent."] = array( + 0 => "%d message envoyé.", + 1 => "%d messages envoyés.", +); +App::$strings["You have no more invitations available"] = "Vous ne disposez plus d'aucune invitation"; +App::$strings["Send invitations"] = "Envoyer des invitations"; +App::$strings["Enter email addresses, one per line:"] = "Entrez les adresses de courriel, une par ligne :"; +App::$strings["Your message:"] = "Votre message :"; +App::$strings["Please join my community on \$Projectname."] = "Rejoignez ma communauté sur \$Projectname."; +App::$strings["You will need to supply this invitation code:"] = "Vous devrez fournir le code suivant :"; +App::$strings["1. Register at any \$Projectname location (they are all inter-connected)"] = "1. Enregistrez-vous sur n'importe quel serveur \$Projectname (ils sont tous inter-connectés)"; +App::$strings["2. Enter my \$Projectname network address into the site searchbar."] = "2. Saisissez l'adresse de mon canal \$Projectname dans la barre de recherche du site."; +App::$strings["or visit"] = "ou rendez-vous sur"; +App::$strings["3. Click [Connect]"] = "3. Cliquez sur [Ajouter]"; +App::$strings["Remote privacy information not available."] = "Les informations distantes de confidentialité ne sont pas disponibles."; +App::$strings["Visible to:"] = "Visible par :"; +App::$strings["Location not found."] = "Emplacement introuvable."; +App::$strings["Location lookup failed."] = "Echec de la recherche de l'emplacement."; +App::$strings["Please select another location to become primary before removing the primary location."] = "Merci de sélectionner un autre emplacement comme nouvel emplacement primaire avant de supprimer l'emplacement primaire actuel."; +App::$strings["Syncing locations"] = "Synchronisation des emplacements"; +App::$strings["No locations found."] = "Emplacement(s) introuvable."; +App::$strings["Manage Channel Locations"] = "Gérer les emplacements des canaux"; +App::$strings["Address"] = "Adresse"; +App::$strings["Primary"] = ""; +App::$strings["Drop"] = "Supprimer"; +App::$strings["Sync Now"] = ""; +App::$strings["Please wait several minutes between consecutive operations."] = "Merci d'attendre plusieurs minutes entre opérations successives."; +App::$strings["When possible, drop a location by logging into that website/hub and removing your channel."] = "Quand c'est possible, abandonnez un emplacement en vous connectant sur le site/hub et en supprimant votre canal."; +App::$strings["Use this form to drop the location if the hub is no longer operating."] = "Utilisez ce formulaire pour abandonner l'emplacement si le hub n'est plus actif."; +App::$strings["Hub not found."] = "Hub introuvable."; +App::$strings["Unable to lookup recipient."] = "Impossible de localiser le destinataire."; +App::$strings["Unable to communicate with requested channel."] = "Impossible de communiquer avec le canal demandé."; +App::$strings["Cannot verify requested channel."] = "Impossible de vérifier le canal demandé."; +App::$strings["Selected channel has private message restrictions. Send failed."] = "Le canal choisi a des restrictions quant aux messages privés. L'envoi a échoué."; +App::$strings["Messages"] = "Messages"; +App::$strings["Message recalled."] = "Message rappelé."; +App::$strings["Conversation removed."] = "Conversation supprimée."; +App::$strings["Expires YYYY-MM-DD HH:MM"] = "Expire le YYYY-MM-DD à HH:MM"; +App::$strings["Requested channel is not in this network"] = "Le canal demandé n'est pas sur ce réseau"; +App::$strings["Send Private Message"] = "Envoyer un message privé"; +App::$strings["To:"] = "À :"; +App::$strings["Subject:"] = "Objet :"; +App::$strings["Attach file"] = "Joindre un fichier"; +App::$strings["Send"] = "Envoyer"; +App::$strings["Set expiration date"] = "Définir la date d'expiration"; +App::$strings["Delete message"] = "Supprimer le message"; +App::$strings["Delivery report"] = "Rapport de distribution"; +App::$strings["Recall message"] = "Rappeler le message"; +App::$strings["Message has been recalled."] = "Le message a été rappelé."; +App::$strings["Delete Conversation"] = "Supprimer la conversation"; +App::$strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Aucune communication sécurisée n'est possible. Vous pourrez peut-être répondre depuis la page de profil de l'émetteur."; +App::$strings["Send Reply"] = "Envoyer la réponse"; +App::$strings["Your message for %s (%s):"] = "Votre message pour %s (%s) :"; +App::$strings["You have created %1$.0f of %2$.0f allowed channels."] = "Vous avez créé %1$.0f des %2$.0f canaux autorisés."; +App::$strings["Create a new channel"] = "Créer un nouveau canal"; +App::$strings["Channel Manager"] = "Gérer les canaux"; +App::$strings["Current Channel"] = "Canal actif"; +App::$strings["Switch to one of your channels by selecting it."] = "Pour changer de canal, sélectionnez-en un"; +App::$strings["Default Channel"] = "Canal par défaut"; +App::$strings["Make Default"] = "Définir comme défaut"; +App::$strings["%d new messages"] = "%d nouveaux messages"; +App::$strings["%d new introductions"] = "%d nouvelles présentations"; +App::$strings["Delegated Channel"] = ""; +App::$strings["No valid account found."] = "Aucun compte valide trouvé."; +App::$strings["Password reset request issued. Check your email."] = "Demande de réinitialisation du mot de passe envoyée. Vérifiez vos courriels."; +App::$strings["Site Member (%s)"] = "Membre du site (%s)"; +App::$strings["Password reset requested at %s"] = "Demande de réinitialisation du mot de passe sur %s"; +App::$strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "La demande n'a pas pu être vérifiée. (Peut-être l'avez vous déjà utilisée.) La réinitialisation a échoué."; +App::$strings["Password Reset"] = "Réinitialiser le mot de passe"; +App::$strings["Your password has been reset as requested."] = "Votre mot de passe a bien été réinitialisé."; +App::$strings["Your new password is"] = "Votre nouveau mot de passe est"; +App::$strings["Save or copy your new password - and then"] = "Enregistrez ou copiez votre nouveau mot de passe, puis"; +App::$strings["click here to login"] = "cliquez ici pour vous connecter"; +App::$strings["Your password may be changed from the Settings page after successful login."] = "Votre mot de passe peut être changé depuis la page des Paramètres une fois connecté."; +App::$strings["Your password has changed at %s"] = "Votre mot de passe de %s a été changé"; +App::$strings["Forgot your Password?"] = "Mot de passe oublié ?"; +App::$strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Saisissez votre adresse de courriel, et validez, pour réinitialiser votre mot de passe. Vérifiez ensuite votre boîte aux lettres pour la suite des instructions."; +App::$strings["Email Address"] = "Adresse de courriel"; +App::$strings["Reset"] = "Réinitialiser"; +App::$strings["Unable to update menu."] = "Impossible de mettre le menu à jour."; +App::$strings["Unable to create menu."] = "Impossible de créer le menu."; +App::$strings["Menu Name"] = "Nom du menu"; +App::$strings["Unique name (not visible on webpage) - required"] = "Nom unique (non visible sur la page web) - requis"; +App::$strings["Menu Title"] = "Titre du menu"; +App::$strings["Visible on webpage - leave empty for no title"] = "Visible pour la page web - laisser vide pour qu'il n'y ait pas de titre"; +App::$strings["Allow Bookmarks"] = "Autoriser l'usage de favoris"; +App::$strings["Menu may be used to store saved bookmarks"] = "Le menu pourra être utilisé pour stocker des favoris"; +App::$strings["Submit and proceed"] = "Valider et continuer"; +App::$strings["Menus"] = "Menus"; +App::$strings["Bookmarks allowed"] = "Favoris autorisés"; +App::$strings["Delete this menu"] = "Supprimer ce menu"; +App::$strings["Edit menu contents"] = "Modifier le contenu du menu"; +App::$strings["Edit this menu"] = "Modifier ce menu"; +App::$strings["Menu could not be deleted."] = "Impossible de supprimer le menu."; +App::$strings["Menu not found."] = "Menu introuvable."; +App::$strings["Edit Menu"] = "Modifier le menu"; +App::$strings["Add or remove entries to this menu"] = "Ajouter/supprimer des entrées à ce menu"; +App::$strings["Menu name"] = "Nom du menu"; +App::$strings["Must be unique, only seen by you"] = "Doit être unique, ne sera vu que par vous"; +App::$strings["Menu title"] = "Titre du menu"; +App::$strings["Menu title as seen by others"] = "Titre du menu tel que vu par les visiteurs"; +App::$strings["Allow bookmarks"] = "Autoriser l'usage de favoris"; +App::$strings["Not found."] = "Introuvable."; +App::$strings["__ctx:mood__ %1\$s is %2\$s"] = "%1\$s est %2\$s"; +App::$strings["Mood"] = "Humeur"; +App::$strings["Set your current mood and tell your friends"] = "Indiquez votre humeur du moment à vos amis"; +App::$strings["Profile Match"] = "Profils similaires"; +App::$strings["No keywords to match. Please add keywords to your default profile."] = "Aucun mot-clef à comparer. Merci d'ajouter des mots-clefs à votre profil par défaut."; +App::$strings["is interested in:"] = "s'intéresse à :"; +App::$strings["No matches"] = "Pas de correspondance"; +App::$strings["No such group"] = "Groupe introuvable"; +App::$strings["No such channel"] = "Canal introuvable"; +App::$strings["forum"] = "forum"; +App::$strings["Search Results For:"] = "Résultats de recherche pour :"; +App::$strings["Privacy group is empty"] = "Groupe d'accès vide"; +App::$strings["Privacy group: "] = "Groupe d'accès :"; +App::$strings["Invalid connection."] = "Contact non valide."; +App::$strings["No more system notifications."] = "Pas d'autre notification du système."; +App::$strings["System Notifications"] = "Notifications du système"; +App::$strings["Unable to create element."] = "Impossible de créer l'entrée."; +App::$strings["Unable to update menu element."] = "Impossible de mettre à jour l'entrée de menu."; +App::$strings["Unable to add menu element."] = "Impossible d'ajouter l'entrée de menu."; +App::$strings["Menu Item Permissions"] = "Permissions de l'entrée de menu"; +App::$strings["(click to open/close)"] = "(cliquer pour ouvrir/fermer)"; +App::$strings["Link Name"] = "Nom du lien"; +App::$strings["Link or Submenu Target"] = "Lien ou sous-menu cible"; +App::$strings["Enter URL of the link or select a menu name to create a submenu"] = "Entrez l'URL du lien ou sélectionnez un nom de menu pour créer un sous-menu"; +App::$strings["Use magic-auth if available"] = "Utiliser l'authentification distante, quand disponible"; +App::$strings["Open link in new window"] = "Ouvrir le lien dans une nouvelle fenêtre"; +App::$strings["Order in list"] = "Ordre dans la liste"; +App::$strings["Higher numbers will sink to bottom of listing"] = "Les nombres les plus élevés seront au bas de la liste"; +App::$strings["Submit and finish"] = "Vadiler et terminer"; +App::$strings["Submit and continue"] = "Valider et continuer"; +App::$strings["Menu:"] = "Menu :"; +App::$strings["Link Target"] = "Cible du lien"; +App::$strings["Edit menu"] = "Modifier le menu"; +App::$strings["Edit element"] = "Modifier l'entrée"; +App::$strings["Drop element"] = "Supprimer l'entrée"; +App::$strings["New element"] = "Nouvelle entrée"; +App::$strings["Edit this menu container"] = "Éditer ce bloc de menu"; +App::$strings["Add menu element"] = "Ajouter une entrée au menu"; +App::$strings["Delete this menu item"] = "Supprimer cette entrée du menu"; +App::$strings["Edit this menu item"] = "Modifier cette entrée du menu"; +App::$strings["Menu item not found."] = "Entrée de menu introuvable."; +App::$strings["Menu item deleted."] = "Entrée de menu supprimée."; +App::$strings["Menu item could not be deleted."] = "Impossible de supprimer l'entrée de menu."; +App::$strings["Edit Menu Element"] = "Modifier l'entrée de menu"; +App::$strings["Link text"] = "Texte du lien"; +App::$strings["Name or caption"] = "Nom ou libellé"; +App::$strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\""] = "Exemples : \"Jérôme Dutilleul\", \"Louise et ses chevaux\", \"Football\", \"Club d'aéromodélisme\""; +App::$strings["Choose a short nickname"] = "Choisissez un alias"; +App::$strings["Your nickname will be used to create an easy to remember channel address e.g. nickname%s"] = "Votre pseudo sera utilisé pour créer une adresse de canal facile à mémoriser, par ex. pseudo%s"; +App::$strings["Channel role and privacy"] = "Rôle et confidentialité du canal"; +App::$strings["Select a channel role with your privacy requirements."] = "Sélectionner un rôle de canal adapté à vos besoins de confidentialité."; +App::$strings["Read more about roles"] = "En savoir plus sur les rôles"; +App::$strings["Create Channel"] = "Créer le canal"; +App::$strings["A channel is your identity on this network. It can represent a person, a blog, or a forum to name a few. Channels can make connections with other channels to share information with highly detailed permissions."] = "Un canal est votre identité sur ce réseau. Il peut représenter une personne, un blog, ou un forum par exemple. Les canaux peuvent entrer en contact les uns avec les autres pour partager des informations avec des permissions d'accès très fines."; +App::$strings["or import an existing channel from another location."] = "ou importer un canal existant d'un autre serveur."; +App::$strings["Invalid request identifier."] = "Identifiant de requête invalide."; +App::$strings["Discard"] = "Annuler"; +App::$strings["Mark all system notifications seen"] = "Marquer toutes les notifications système comme vues"; App::$strings["Page owner information could not be retrieved."] = "Impossible d'obtenir des informations sur le propriétaire de la page."; App::$strings["Profile Photos"] = "Photos du profil"; App::$strings["Album not found."] = "Album introuvable."; @@ -611,164 +673,122 @@ App::$strings["__ctx:noun__ Dislikes"] = "N'aime pas"; App::$strings["Close"] = "Fermer"; App::$strings["View Album"] = "Voir l'album"; App::$strings["Recent Photos"] = "Photos récentes"; -App::$strings["Remote privacy information not available."] = "Les informations distantes de confidentialité ne sont pas disponibles."; -App::$strings["Visible to:"] = "Visible par :"; -App::$strings["Import completed"] = "L'import est terminé."; -App::$strings["Import Items"] = "Importer"; -App::$strings["Use this form to import existing posts and content from an export file."] = "Utiliser ce formulaire pour importer des publications et du contenu existant d'un fichier d'export."; -App::$strings["Total invitation limit exceeded."] = "Limite du nombre total d'invitation dépassée."; -App::$strings["%s : Not a valid email address."] = "%s : adresse courriel invalide."; -App::$strings["Please join us on \$Projectname"] = "Rejoignez-nous sur \$Projectname"; -App::$strings["Invitation limit exceeded. Please contact your site administrator."] = "Limite d'invitations dépassée. Merci de contacter l'administration de votre site."; -App::$strings["%s : Message delivery failed."] = "%s : Échec de distribution du message."; -App::$strings["%d message sent."] = array( - 0 => "%d message envoyé.", - 1 => "%d messages envoyés.", -); -App::$strings["You have no more invitations available"] = "Vous ne disposez plus d'aucune invitation"; -App::$strings["Send invitations"] = "Envoyer des invitations"; -App::$strings["Enter email addresses, one per line:"] = "Entrez les adresses de courriel, une par ligne :"; -App::$strings["Your message:"] = "Votre message :"; -App::$strings["Please join my community on \$Projectname."] = "Rejoignez ma communauté sur \$Projectname."; -App::$strings["You will need to supply this invitation code:"] = "Vous devrez fournir le code suivant :"; -App::$strings["1. Register at any \$Projectname location (they are all inter-connected)"] = "1. Enregistrez-vous sur n'importe quel serveur \$Projectname (ils sont tous inter-connectés)"; -App::$strings["2. Enter my \$Projectname network address into the site searchbar."] = "2. Saisissez l'adresse de mon canal \$Projectname dans la barre de recherche du site."; -App::$strings["or visit"] = "ou rendez-vous sur"; -App::$strings["3. Click [Connect]"] = "3. Cliquez sur [Ajouter]"; -App::$strings["Location not found."] = "Emplacement introuvable."; -App::$strings["Location lookup failed."] = "Echec de la recherche de l'emplacement."; -App::$strings["Please select another location to become primary before removing the primary location."] = "Merci de sélectionner un autre emplacement comme nouvel emplacement primaire avant de supprimer l'emplacement primaire actuel."; -App::$strings["Syncing locations"] = "Synchronisation des emplacements"; -App::$strings["No locations found."] = "Emplacement(s) introuvable."; -App::$strings["Manage Channel Locations"] = "Gérer les emplacements des canaux"; -App::$strings["Primary"] = ""; -App::$strings["Drop"] = "Supprimer"; -App::$strings["Sync Now"] = ""; -App::$strings["Please wait several minutes between consecutive operations."] = "Merci d'attendre plusieurs minutes entre opérations successives."; -App::$strings["When possible, drop a location by logging into that website/hub and removing your channel."] = "Quand c'est possible, abandonnez un emplacement en vous connectant sur le site/hub et en supprimant votre canal."; -App::$strings["Use this form to drop the location if the hub is no longer operating."] = "Utilisez ce formulaire pour abandonner l'emplacement si le hub n'est plus actif."; -App::$strings["Hub not found."] = "Hub introuvable."; -App::$strings["Unable to lookup recipient."] = "Impossible de localiser le destinataire."; -App::$strings["Unable to communicate with requested channel."] = "Impossible de communiquer avec le canal demandé."; -App::$strings["Cannot verify requested channel."] = "Impossible de vérifier le canal demandé."; -App::$strings["Selected channel has private message restrictions. Send failed."] = "Le canal choisi a des restrictions quant aux messages privés. L'envoi a échoué."; -App::$strings["Messages"] = "Messages"; -App::$strings["Message recalled."] = "Message rappelé."; -App::$strings["Conversation removed."] = "Conversation supprimée."; -App::$strings["Expires YYYY-MM-DD HH:MM"] = "Expire le YYYY-MM-DD à HH:MM"; -App::$strings["Requested channel is not in this network"] = "Le canal demandé n'est pas sur ce réseau"; -App::$strings["Send Private Message"] = "Envoyer un message privé"; -App::$strings["To:"] = "À :"; -App::$strings["Subject:"] = "Objet :"; -App::$strings["Attach file"] = "Joindre un fichier"; -App::$strings["Send"] = "Envoyer"; -App::$strings["Set expiration date"] = "Définir la date d'expiration"; -App::$strings["Delete message"] = "Supprimer le message"; -App::$strings["Delivery report"] = "Rapport de distribution"; -App::$strings["Recall message"] = "Rappeler le message"; -App::$strings["Message has been recalled."] = "Le message a été rappelé."; -App::$strings["Delete Conversation"] = "Supprimer la conversation"; -App::$strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Aucune communication sécurisée n'est possible. Vous pourrez peut-être répondre depuis la page de profil de l'émetteur."; -App::$strings["Send Reply"] = "Envoyer la réponse"; -App::$strings["Your message for %s (%s):"] = "Votre message pour %s (%s) :"; -App::$strings["You have created %1$.0f of %2$.0f allowed channels."] = "Vous avez créé %1$.0f des %2$.0f canaux autorisés."; -App::$strings["Create a new channel"] = "Créer un nouveau canal"; -App::$strings["Channel Manager"] = "Gérer les canaux"; -App::$strings["Current Channel"] = "Canal actif"; -App::$strings["Switch to one of your channels by selecting it."] = "Pour changer de canal, sélectionnez-en un"; -App::$strings["Default Channel"] = "Canal par défaut"; -App::$strings["Make Default"] = "Définir comme défaut"; -App::$strings["%d new messages"] = "%d nouveaux messages"; -App::$strings["%d new introductions"] = "%d nouvelles présentations"; -App::$strings["Delegated Channel"] = ""; -App::$strings["Unable to update menu."] = "Impossible de mettre le menu à jour."; -App::$strings["Unable to create menu."] = "Impossible de créer le menu."; -App::$strings["Menu Name"] = "Nom du menu"; -App::$strings["Unique name (not visible on webpage) - required"] = "Nom unique (non visible sur la page web) - requis"; -App::$strings["Menu Title"] = "Titre du menu"; -App::$strings["Visible on webpage - leave empty for no title"] = "Visible pour la page web - laisser vide pour qu'il n'y ait pas de titre"; -App::$strings["Allow Bookmarks"] = "Autoriser l'usage de favoris"; -App::$strings["Menu may be used to store saved bookmarks"] = "Le menu pourra être utilisé pour stocker des favoris"; -App::$strings["Submit and proceed"] = "Valider et continuer"; -App::$strings["Menus"] = "Menus"; -App::$strings["Bookmarks allowed"] = "Favoris autorisés"; -App::$strings["Delete this menu"] = "Supprimer ce menu"; -App::$strings["Edit menu contents"] = "Modifier le contenu du menu"; -App::$strings["Edit this menu"] = "Modifier ce menu"; -App::$strings["Menu could not be deleted."] = "Impossible de supprimer le menu."; -App::$strings["Menu not found."] = "Menu introuvable."; -App::$strings["Edit Menu"] = "Modifier le menu"; -App::$strings["Add or remove entries to this menu"] = "Ajouter/supprimer des entrées à ce menu"; -App::$strings["Menu name"] = "Nom du menu"; -App::$strings["Must be unique, only seen by you"] = "Doit être unique, ne sera vu que par vous"; -App::$strings["Menu title"] = "Titre du menu"; -App::$strings["Menu title as seen by others"] = "Titre du menu tel que vu par les visiteurs"; -App::$strings["Allow bookmarks"] = "Autoriser l'usage de favoris"; -App::$strings["Not found."] = "Introuvable."; -App::$strings["No valid account found."] = "Aucun compte valide trouvé."; -App::$strings["Password reset request issued. Check your email."] = "Demande de réinitialisation du mot de passe envoyée. Vérifiez vos courriels."; -App::$strings["Site Member (%s)"] = "Membre du site (%s)"; -App::$strings["Password reset requested at %s"] = "Demande de réinitialisation du mot de passe sur %s"; -App::$strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "La demande n'a pas pu être vérifiée. (Peut-être l'avez vous déjà utilisée.) La réinitialisation a échoué."; -App::$strings["Password Reset"] = "Réinitialiser le mot de passe"; -App::$strings["Your password has been reset as requested."] = "Votre mot de passe a bien été réinitialisé."; -App::$strings["Your new password is"] = "Votre nouveau mot de passe est"; -App::$strings["Save or copy your new password - and then"] = "Enregistrez ou copiez votre nouveau mot de passe, puis"; -App::$strings["click here to login"] = "cliquez ici pour vous connecter"; -App::$strings["Your password may be changed from the Settings page after successful login."] = "Votre mot de passe peut être changé depuis la page des Paramètres une fois connecté."; -App::$strings["Your password has changed at %s"] = "Votre mot de passe de %s a été changé"; -App::$strings["Forgot your Password?"] = "Mot de passe oublié ?"; -App::$strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Saisissez votre adresse de courriel, et validez, pour réinitialiser votre mot de passe. Vérifiez ensuite votre boîte aux lettres pour la suite des instructions."; -App::$strings["Email Address"] = "Adresse de courriel"; -App::$strings["Reset"] = "Réinitialiser"; -App::$strings["__ctx:mood__ %1\$s is %2\$s"] = "%1\$s est %2\$s"; -App::$strings["Mood"] = "Humeur"; -App::$strings["Set your current mood and tell your friends"] = "Indiquez votre humeur du moment à vos amis"; -App::$strings["No such group"] = "Groupe introuvable"; -App::$strings["No such channel"] = "Canal introuvable"; -App::$strings["forum"] = "forum"; -App::$strings["Search Results For:"] = "Résultats de recherche pour :"; -App::$strings["Privacy group is empty"] = "Groupe d'accès vide"; -App::$strings["Privacy group: "] = "Groupe d'accès :"; -App::$strings["Invalid connection."] = "Contact non valide."; -App::$strings["No more system notifications."] = "Pas d'autre notification du système."; -App::$strings["System Notifications"] = "Notifications du système"; -App::$strings["Profile Match"] = "Profils similaires"; -App::$strings["No keywords to match. Please add keywords to your default profile."] = "Aucun mot-clef à comparer. Merci d'ajouter des mots-clefs à votre profil par défaut."; -App::$strings["is interested in:"] = "s'intéresse à :"; -App::$strings["No matches"] = "Pas de correspondance"; -App::$strings["Posts and comments"] = ""; -App::$strings["Only posts"] = ""; -App::$strings["Insufficient permissions. Request redirected to profile page."] = "Permissions insuffisantes. Demande redirigée vers la page du profil."; -App::$strings["Unable to create element."] = "Impossible de créer l'entrée."; -App::$strings["Unable to update menu element."] = "Impossible de mettre à jour l'entrée de menu."; -App::$strings["Unable to add menu element."] = "Impossible d'ajouter l'entrée de menu."; -App::$strings["Menu Item Permissions"] = "Permissions de l'entrée de menu"; -App::$strings["(click to open/close)"] = "(cliquer pour ouvrir/fermer)"; -App::$strings["Link Name"] = "Nom du lien"; -App::$strings["Link or Submenu Target"] = "Lien ou sous-menu cible"; -App::$strings["Enter URL of the link or select a menu name to create a submenu"] = "Entrez l'URL du lien ou sélectionnez un nom de menu pour créer un sous-menu"; -App::$strings["Use magic-auth if available"] = "Utiliser l'authentification distante, quand disponible"; -App::$strings["Open link in new window"] = "Ouvrir le lien dans une nouvelle fenêtre"; -App::$strings["Order in list"] = "Ordre dans la liste"; -App::$strings["Higher numbers will sink to bottom of listing"] = "Les nombres les plus élevés seront au bas de la liste"; -App::$strings["Submit and finish"] = "Vadiler et terminer"; -App::$strings["Submit and continue"] = "Valider et continuer"; -App::$strings["Menu:"] = "Menu :"; -App::$strings["Link Target"] = "Cible du lien"; -App::$strings["Edit menu"] = "Modifier le menu"; -App::$strings["Edit element"] = "Modifier l'entrée"; -App::$strings["Drop element"] = "Supprimer l'entrée"; -App::$strings["New element"] = "Nouvelle entrée"; -App::$strings["Edit this menu container"] = "Éditer ce bloc de menu"; -App::$strings["Add menu element"] = "Ajouter une entrée au menu"; -App::$strings["Delete this menu item"] = "Supprimer cette entrée du menu"; -App::$strings["Edit this menu item"] = "Modifier cette entrée du menu"; -App::$strings["Menu item not found."] = "Entrée de menu introuvable."; -App::$strings["Menu item deleted."] = "Entrée de menu supprimée."; -App::$strings["Menu item could not be deleted."] = "Impossible de supprimer l'entrée de menu."; -App::$strings["Edit Menu Element"] = "Modifier l'entrée de menu"; -App::$strings["Link text"] = "Texte du lien"; +App::$strings["sent you a private message"] = "vous a envoyé un message privé"; +App::$strings["added your channel"] = "a ajouté votre canal"; +App::$strings["g A l F d"] = "g A l F d"; +App::$strings["[today]"] = "[aujourd'hui]"; +App::$strings["posted an event"] = "a publié un événement"; +App::$strings["Unable to find your hub."] = "Impossible de trouver votre hub."; +App::$strings["Post successful."] = "Publication réussie."; +App::$strings["OpenID protocol error. No ID returned."] = "Erreur du protocole OpenID. Pas d'ID retourné."; +App::$strings["Login failed."] = "Échec de la connexion."; +App::$strings["Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."] = "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."; +App::$strings["This setting requires special processing and editing has been blocked."] = "Ce paramètre nécessité un traitement spécial, les modifications ont été bloquées."; +App::$strings["Configuration Editor"] = "Editeur de configuration"; +App::$strings["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."] = "Attention :modifier certains paramètres peut rendre votre canal inutilisable. Merci d'ignorer cette page à moins d'être suffisamment à l'aise de savoir comment utiliser correctement cette fonctionnalité."; +App::$strings["Layout updated."] = "Mise en page mise à jour."; +App::$strings["Edit System Page Description"] = "Modifier la description de la page du système"; +App::$strings["Layout not found."] = "Mise en page introuvable."; +App::$strings["Module Name:"] = "Nom du module :"; +App::$strings["Layout Help"] = "Aide à la mise en page"; +App::$strings["Poke"] = "Tapoter"; +App::$strings["Poke somebody"] = "Taquiner quelqu'un"; +App::$strings["Poke/Prod"] = "Tapoter/Encourager"; +App::$strings["Poke, prod or do other things to somebody"] = "Taquiner, pousser ou faire autre chose à quelqu'un"; +App::$strings["Recipient"] = "Destinataire"; +App::$strings["Choose what you wish to do to recipient"] = "Choisir ce que vous voulez faire au destinataire"; +App::$strings["Make this post private"] = "Rendre cette publication privée"; +App::$strings["Fetching URL returns error: %1\$s"] = "Récupération d'URL échouée : %1\$s"; +App::$strings["Profile not found."] = "Profil introuvable."; +App::$strings["Profile deleted."] = "Profil supprimé."; +App::$strings["Profile-"] = "Profil-"; +App::$strings["New profile created."] = "Nouveau profil créé."; +App::$strings["Profile unavailable to clone."] = "Profil impossible à cloner."; +App::$strings["Profile unavailable to export."] = "Impossible d'exporter le profil."; +App::$strings["Profile Name is required."] = "Le nom du profil est obligatoire."; +App::$strings["Marital Status"] = "Statut marital"; +App::$strings["Romantic Partner"] = "Partenaire amoureux"; +App::$strings["Likes"] = "Aime"; +App::$strings["Dislikes"] = "N'aime pas"; +App::$strings["Work/Employment"] = "Travail/Occupation"; +App::$strings["Religion"] = "Religion/Croyance"; +App::$strings["Political Views"] = "Opinions politiques"; +App::$strings["Sexual Preference"] = "Préférences sexuelle"; +App::$strings["Homepage"] = "Site Internet"; +App::$strings["Interests"] = "Centres d'intérêt"; +App::$strings["Profile updated."] = "Profil mis à jour."; +App::$strings["Hide your connections list from viewers of this profile"] = ""; +App::$strings["Edit Profile Details"] = "Modifier les détails du profil"; +App::$strings["View this profile"] = "Voir ce profil"; +App::$strings["Edit visibility"] = "Changer la visibilité"; +App::$strings["Profile Tools"] = ""; +App::$strings["Change cover photo"] = ""; +App::$strings["Change profile photo"] = "Changer la photo du profil"; +App::$strings["Create a new profile using these settings"] = "Créer un nouveau profil avec ces paramètres"; +App::$strings["Clone this profile"] = "Cloner ce profil"; +App::$strings["Delete this profile"] = "Supprimer ce profil"; +App::$strings["Add profile things"] = "Ajouter des éléments de profil"; +App::$strings["Personal"] = "Me concernant"; +App::$strings["Relation"] = ""; +App::$strings["Miscellaneous"] = "Divers"; +App::$strings["Import profile from file"] = "Importer le profil à partir d'un fichier"; +App::$strings["Export profile to file"] = "Exporter le profil vers un fichier."; +App::$strings["Your gender"] = ""; +App::$strings["Marital status"] = ""; +App::$strings["Sexual preference"] = ""; +App::$strings["Profile name"] = ""; +App::$strings["This is your default profile."] = "Ceci est votre profil par défaut."; +App::$strings["Your full name"] = ""; +App::$strings["Title/Description"] = "Titre/description"; +App::$strings["Street address"] = ""; +App::$strings["Locality/City"] = "Ville"; +App::$strings["Region/State"] = "Région"; +App::$strings["Postal/Zip code"] = ""; +App::$strings["Country"] = "Pays"; +App::$strings["Who (if applicable)"] = "Qui (si applicable)"; +App::$strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Exemples : marie123, Marie Deschamps, marie@exemple.com"; +App::$strings["Since (date)"] = ""; +App::$strings["Tell us about yourself"] = ""; +App::$strings["Hometown"] = "Ville de naissance"; +App::$strings["Political views"] = ""; +App::$strings["Religious views"] = ""; +App::$strings["Keywords used in directory listings"] = ""; +App::$strings["Example: fishing photography software"] = "Exemple : escrime photographie modélisme"; +App::$strings["Musical interests"] = "Goûts musicaux"; +App::$strings["Books, literature"] = "Livres, littérature"; +App::$strings["Television"] = "Télévision"; +App::$strings["Film/Dance/Culture/Entertainment"] = ""; +App::$strings["Hobbies/Interests"] = "Loisirs/Centres d'intêret"; +App::$strings["Love/Romance"] = ""; +App::$strings["School/Education"] = ""; +App::$strings["Contact information and social networks"] = ""; +App::$strings["My other channels"] = "Mes autres canaux"; +App::$strings["Profile Image"] = "Image du profil"; +App::$strings["Edit Profiles"] = "Modifier les profils"; +App::$strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Shift-rechargez votre page, ou videz le cache du navigateur si la photo ne s'affiche pas immédiatement."; +App::$strings["Upload Profile Photo"] = "Téléverser une photo de profil"; +App::$strings["Invalid profile identifier."] = "Identifiant de profil invalide."; +App::$strings["Profile Visibility Editor"] = "Éditeur de visibilité de profil"; +App::$strings["Profile"] = "Profil"; +App::$strings["Click on a contact to add or remove."] = "Cliquer sur un contact pour l'ajouter ou le retirer."; +App::$strings["Visible To"] = "Visible par"; +App::$strings["Public Hubs"] = "Instances publiques"; +App::$strings["The listed hubs allow public registration for the \$Projectname network. All hubs in the network are interlinked so membership on any of them conveys membership in the network as a whole. Some hubs may require subscription or provide tiered service plans. The hub itself may provide additional details."] = "Les sites listés permettent l'enregistrement public de comptes pour le réseau \$Projectname. Tous les sites du réseau sont reliés entre eux, être membre d'un site revient à être membre de tous. Certains sites peuvent demander une souscription ou proposer différents niveaux de service. Chaque site peut fournir des détails supplémentaires."; +App::$strings["Hub URL"] = "URL du site"; +App::$strings["Access Type"] = "Type d'accès"; +App::$strings["Registration Policy"] = "Politique d'inscription"; +App::$strings["Stats"] = ""; +App::$strings["Software"] = ""; +App::$strings["Ratings"] = "Evaluations"; +App::$strings["Rate"] = "Evaluer"; +App::$strings["Website:"] = "Site web :"; +App::$strings["Remote Channel [%s] (not yet known on this site)"] = "Canal distant [%s] (encore inconnu sur ce site)"; +App::$strings["Rating (this information is public)"] = "Evaluation (cette information est publique)"; +App::$strings["Optionally explain your rating (this information is public)"] = "Explication facultative de votre évaluation (cette information est publique)"; +App::$strings["No ratings"] = "Pas de note"; +App::$strings["Rating: "] = "Evaluation :"; +App::$strings["Website: "] = "Site web :"; +App::$strings["Description: "] = "Description :"; App::$strings["Theme settings updated."] = "Paramètres du thème mis à jour."; App::$strings["# Accounts"] = "# Comptes"; App::$strings["# blocked accounts"] = "# comptes bloqués"; @@ -1011,91 +1031,19 @@ App::$strings["(In addition to basic fields)"] = "(en plus des champs de base)"; App::$strings["All available fields"] = "Tous les champs disponibles"; App::$strings["Custom Fields"] = "Champs personnalisés"; App::$strings["Create Custom Field"] = "Créer un champ personnalisé"; -App::$strings["Name or caption"] = "Nom ou libellé"; -App::$strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\""] = "Exemples : \"Jérôme Dutilleul\", \"Louise et ses chevaux\", \"Football\", \"Club d'aéromodélisme\""; -App::$strings["Choose a short nickname"] = "Choisissez un alias"; -App::$strings["Your nickname will be used to create an easy to remember channel address e.g. nickname%s"] = "Votre pseudo sera utilisé pour créer une adresse de canal facile à mémoriser, par ex. pseudo%s"; -App::$strings["Channel role and privacy"] = "Rôle et confidentialité du canal"; -App::$strings["Select a channel role with your privacy requirements."] = "Sélectionner un rôle de canal adapté à vos besoins de confidentialité."; -App::$strings["Read more about roles"] = "En savoir plus sur les rôles"; -App::$strings["Create Channel"] = "Créer le canal"; -App::$strings["A channel is your identity on this network. It can represent a person, a blog, or a forum to name a few. Channels can make connections with other channels to share information with highly detailed permissions."] = "Un canal est votre identité sur ce réseau. Il peut représenter une personne, un blog, ou un forum par exemple. Les canaux peuvent entrer en contact les uns avec les autres pour partager des informations avec des permissions d'accès très fines."; -App::$strings["or import an existing channel from another location."] = "ou importer un canal existant d'un autre serveur."; -App::$strings["sent you a private message"] = "vous a envoyé un message privé"; -App::$strings["added your channel"] = "a ajouté votre canal"; -App::$strings["g A l F d"] = "g A l F d"; -App::$strings["[today]"] = "[aujourd'hui]"; -App::$strings["posted an event"] = "a publié un événement"; -App::$strings["Invalid request identifier."] = "Identifiant de requête invalide."; -App::$strings["Discard"] = "Annuler"; -App::$strings["Mark all system notifications seen"] = "Marquer toutes les notifications système comme vues"; -App::$strings["Poke"] = "Tapoter"; -App::$strings["Poke somebody"] = "Taquiner quelqu'un"; -App::$strings["Poke/Prod"] = "Tapoter/Encourager"; -App::$strings["Poke, prod or do other things to somebody"] = "Taquiner, pousser ou faire autre chose à quelqu'un"; -App::$strings["Recipient"] = "Destinataire"; -App::$strings["Choose what you wish to do to recipient"] = "Choisir ce que vous voulez faire au destinataire"; -App::$strings["Make this post private"] = "Rendre cette publication privée"; -App::$strings["Unable to find your hub."] = "Impossible de trouver votre hub."; -App::$strings["Post successful."] = "Publication réussie."; -App::$strings["OpenID protocol error. No ID returned."] = "Erreur du protocole OpenID. Pas d'ID retourné."; -App::$strings["Login failed."] = "Échec de la connexion."; -App::$strings["Invalid profile identifier."] = "Identifiant de profil invalide."; -App::$strings["Profile Visibility Editor"] = "Éditeur de visibilité de profil"; -App::$strings["Profile"] = "Profil"; -App::$strings["Click on a contact to add or remove."] = "Cliquer sur un contact pour l'ajouter ou le retirer."; -App::$strings["Visible To"] = "Visible par"; -App::$strings["This setting requires special processing and editing has been blocked."] = "Ce paramètre nécessité un traitement spécial, les modifications ont été bloquées."; -App::$strings["Configuration Editor"] = "Editeur de configuration"; -App::$strings["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."] = "Attention :modifier certains paramètres peut rendre votre canal inutilisable. Merci d'ignorer cette page à moins d'être suffisamment à l'aise de savoir comment utiliser correctement cette fonctionnalité."; -App::$strings["Fetching URL returns error: %1\$s"] = "Récupération d'URL échouée : %1\$s"; -App::$strings["Version %s"] = "Version %s"; -App::$strings["Installed plugins/addons/apps:"] = "Greffons/extensions/applications installés :"; -App::$strings["No installed plugins/addons/apps"] = "Aucun greffon/extension/application installé"; -App::$strings["This is a hub of \$Projectname - a global cooperative network of decentralized privacy enhanced websites."] = "Ceci est un serveur \$Projectname - un réseau collaboratif mondial de serveurs décentralisés à la confidentialité améliorée."; -App::$strings["Tag: "] = "Étiquette :"; -App::$strings["Last background fetch: "] = "Dernière récupération en tâche de fond :"; -App::$strings["Current load average: "] = "Charge moyenne actuelle :"; -App::$strings["Running at web location"] = "Tourne à l'adresse internet"; -App::$strings["Please visit hubzilla.org to learn more about \$Projectname."] = "Merci de visiter hubzilla.org pour en apprendre davantage sur \$Projectname."; -App::$strings["Bug reports and issues: please visit"] = "Pour remonter bogues et problèmes, merci de visiter"; -App::$strings["\$projectname issues"] = "Problèmes \$projectname"; -App::$strings["Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com"] = "Suggestions, demandes, etc. - merci de vous adresser à \"redmatrix\" à librelist - point com"; -App::$strings["Site Administrators"] = "Administrateurs du site"; -App::$strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Nous avons rencontré un problème avec l'OpenID que vous nous avez fourni. Merci de vérifier que l'ID est correctement saisi."; -App::$strings["The error message was:"] = "Le message d'erreur était :"; -App::$strings["Authentication failed."] = "Échec de l'authentification."; -App::$strings["Remote Authentication"] = "Authentification distante"; -App::$strings["Enter your channel address (e.g. channel@example.com)"] = "Entrez l'adresse de votre canal (par ex. moncanal@monsite.com)"; -App::$strings["Authenticate"] = "Authentifier"; -App::$strings["Public Hubs"] = "Instances publiques"; -App::$strings["The listed hubs allow public registration for the \$Projectname network. All hubs in the network are interlinked so membership on any of them conveys membership in the network as a whole. Some hubs may require subscription or provide tiered service plans. The hub itself may provide additional details."] = "Les sites listés permettent l'enregistrement public de comptes pour le réseau \$Projectname. Tous les sites du réseau sont reliés entre eux, être membre d'un site revient à être membre de tous. Certains sites peuvent demander une souscription ou proposer différents niveaux de service. Chaque site peut fournir des détails supplémentaires."; -App::$strings["Hub URL"] = "URL du site"; -App::$strings["Access Type"] = "Type d'accès"; -App::$strings["Registration Policy"] = "Politique d'inscription"; -App::$strings["Stats"] = ""; -App::$strings["Software"] = ""; -App::$strings["Ratings"] = "Evaluations"; -App::$strings["Rate"] = "Evaluer"; -App::$strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Shift-rechargez votre page, ou videz le cache du navigateur si la photo ne s'affiche pas immédiatement."; -App::$strings["Upload Profile Photo"] = "Téléverser une photo de profil"; -App::$strings["Block Name"] = "Nom du Bloc"; -App::$strings["Blocks"] = "Blocs"; -App::$strings["Block Title"] = "Titre du bloc"; -App::$strings["Website:"] = "Site web :"; -App::$strings["Remote Channel [%s] (not yet known on this site)"] = "Canal distant [%s] (encore inconnu sur ce site)"; -App::$strings["Rating (this information is public)"] = "Evaluation (cette information est publique)"; -App::$strings["Optionally explain your rating (this information is public)"] = "Explication facultative de votre évaluation (cette information est publique)"; -App::$strings["No ratings"] = "Pas de note"; -App::$strings["Rating: "] = "Evaluation :"; -App::$strings["Website: "] = "Site web :"; -App::$strings["Description: "] = "Description :"; -App::$strings["Apps"] = "Applications"; -App::$strings["Title (optional)"] = "Titre (facultatif)"; -App::$strings["Edit Block"] = "Modifier le bloc"; -App::$strings["No channel."] = "Pas de canal."; -App::$strings["Common connections"] = "Contacts en commun"; -App::$strings["No connections in common."] = "Pas de contacts en commun."; +App::$strings["App installed."] = "Application installée."; +App::$strings["Malformed app."] = "Erreur de l'application - Malformée."; +App::$strings["Embed code"] = "Imbriquer le code"; +App::$strings["Edit App"] = "Modifier l'application"; +App::$strings["Create App"] = "Créer une application"; +App::$strings["Name of app"] = "Nom de l'application"; +App::$strings["Location (URL) of app"] = "Emplacement (URL) de l'application"; +App::$strings["Photo icon URL"] = "URL de l'icône à utiliser pour cette photo"; +App::$strings["80 x 80 pixels - optional"] = "80 x 80 pixels - facultatif"; +App::$strings["Categories (optional, comma separated list)"] = ""; +App::$strings["Version ID"] = "Identifiant de version"; +App::$strings["Price of app"] = "Prix de l'application"; +App::$strings["Location (URL) to purchase app"] = "Emplacement (URL) pour l'achat de l'application"; App::$strings["Select a bookmark folder"] = "Choisir un dossier de favoris"; App::$strings["Save Bookmark"] = "Enregistrer le favori"; App::$strings["URL of bookmark"] = "URL du favori"; @@ -1121,7 +1069,7 @@ App::$strings["no"] = "non"; App::$strings["yes"] = "oui"; App::$strings["Membership on this site is by invitation only."] = "L'inscription à ce site se fait uniquement sur invitation."; App::$strings["Register"] = "S'inscrire"; -App::$strings["This site may require email verification after submitting this form. If you are returned to a login page, please check your email for instructions."] = ""; +App::$strings["Proceed to create your first channel"] = "Continuer pour créer votre premier canal"; App::$strings["Please login."] = "Merci de vous connecter."; App::$strings["Account removals are not allowed within 48 hours of changing the account password."] = "Il est impossible de supprimer un compte dans les 48 heures après avoir changé le mot de passe du compte."; App::$strings["Remove This Account"] = "Supprimer ce compte"; @@ -1138,23 +1086,17 @@ App::$strings["This channel will be completely removed from the network. "] = "C App::$strings["Remove this channel and all its clones from the network"] = "Supprimer ce canal ainsi que tous ses clones sur le réseau"; App::$strings["By default only the instance of the channel located on this hub will be removed from the network"] = "Par défaut, seule l'instance du canal présente sur ce hub sera supprimée du réseau"; App::$strings["Remove Channel"] = "Supprimer le canal"; -App::$strings["Export Channel"] = "Exporter le canal"; -App::$strings["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."] = "Exportez les principales informations de votre canal dans un fichier. Celui-ci pourra servir de sauvegarde de vos contacts, permissions, profils et données de base. Il pourra être importé sur un nouveau hub/serveur, mais n'embarquera pas vos contenus."; -App::$strings["Export Content"] = "Exporter le contenu"; -App::$strings["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."] = "Exportez les informations du canal et les contenus récents dans un fichier JSON. Celui-ci contiendra toutes vos relations, permissions, profils, et plusieurs mois de publications. Ce fichier peut être TRÈS gros. Armez-vous de patience - plusieurs minutes peuvent s'écouler avant que le téléchargement ne commence."; -App::$strings["Export your posts from a given year."] = "Exporter vos publications d'une année en particulier"; -App::$strings["You may also export your posts and conversations for a particular year or month. Adjust the date in your browser location bar to select other dates. If the export fails (possibly due to memory exhaustion on your server hub), please try again selecting a more limited date range."] = "Vous pouvez également exporter vos publications et conversations pour une année ou un mois particulier. Ajustez la date dans la barre de votre navigateur pour sélectionner d'autres dates. Si l'export échoue (possible en cas de pénurie de mémoire sur le serveur de votre hub), essayez à nouveau en sélectionnant un intervalle de dates plus petit."; -App::$strings["To select all posts for a given year, such as this year, visit %2\$s"] = "Pour sélectionner toutes les publications pour une année donnée, telle que cette année, visitez %2\$s"; -App::$strings["To select all posts for a given month, such as January of this year, visit %2\$s"] = "Pour sélectionner toutes les publications pour un mois donné, par exemple janvier, visitez %2\$s"; -App::$strings["These content files may be imported or restored by visiting %2\$s on any site containing your channel. For best results please import or restore these in date order (oldest first)."] = "Ces fichiers de contenu peuvent être importés ou restaurés en visitant %2\$s sur n'importe quel site hébergeant votre canal. Pour de meilleurs résultats merci de les importer par ordre chronologique (les plus anciens d'abord)."; +App::$strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Nous avons rencontré un problème avec l'OpenID que vous nous avez fourni. Merci de vérifier que l'ID est correctement saisi."; +App::$strings["The error message was:"] = "Le message d'erreur était :"; +App::$strings["Authentication failed."] = "Échec de l'authentification."; +App::$strings["Remote Authentication"] = "Authentification distante"; +App::$strings["Enter your channel address (e.g. channel@example.com)"] = "Entrez l'adresse de votre canal (par ex. moncanal@monsite.com)"; +App::$strings["Authenticate"] = "Authentifier"; App::$strings["Items tagged with: %s"] = "Eléments étiquetés avec : %s"; App::$strings["Search results for: %s"] = "Résultats de recherche pour : %s"; App::$strings["No service class restrictions found."] = "Aucune restriction de classe de service trouvée."; App::$strings["Name is required"] = "Le nom est requis"; App::$strings["Key and Secret are required"] = "Clef et secret sont requis"; -App::$strings["This channel is limited to %d tokens"] = ""; -App::$strings["Name and Password are required."] = ""; -App::$strings["Token saved."] = ""; App::$strings["Not valid email."] = "Adresse de courriel non valide."; App::$strings["Protected email address. Cannot change to that email."] = "Adresse de courriel protégée. Impossible de l'utiliser."; App::$strings["System failure storing new email. Please try again."] = "Défaillance système lors du stockage de la nouvelle adresse de courriel. Merci d'essayer à nouveau."; @@ -1187,12 +1129,6 @@ App::$strings["Confirm New Password"] = "Confirmez le nouveau mot de passe"; App::$strings["Leave password fields blank unless changing"] = "Laissez les mots de passe vides si vous ne voulez pas les modifier"; App::$strings["Email Address:"] = "Adresse de courriel :"; App::$strings["Remove this account including all its channels"] = "Supprimer ce compte et tous ses canaux"; -App::$strings["Use this form to create temporary access identifiers to share things with non-members. These identities may be used in Access Control Lists and visitors may login using these credentials to access the private content."] = ""; -App::$strings["You may also provide dropbox style access links to friends and associates by adding the Login Password to any specific site URL as shown. Examples:"] = ""; -App::$strings["Guest Access Tokens"] = ""; -App::$strings["Login Name"] = ""; -App::$strings["Login Password"] = ""; -App::$strings["Expires (yyyy-mm-dd)"] = ""; App::$strings["Additional Features"] = "Fonctionnalités additionnelles"; App::$strings["Connector Settings"] = "Paramètres du connecteur"; App::$strings["No special theme for mobile devices"] = "Pas de thème spécifique aux mobiles"; @@ -1355,6 +1291,7 @@ App::$strings["GD graphics PHP module"] = "module PHP GD graphics"; App::$strings["OpenSSL PHP module"] = "module PHP OpenSSL"; App::$strings["mysqli or postgres PHP module"] = "module PHP postgres ou mysqli"; App::$strings["mb_string PHP module"] = "module PHP mb_string"; +App::$strings["mcrypt PHP module"] = "module PHP mcrypt"; App::$strings["xml PHP module"] = "module PHP xml"; App::$strings["Apache mod_rewrite module"] = "module Apache mod_rewrite"; App::$strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Erreur : le module mod-rewrite du serveur web Apache est requis, mais pas installé."; @@ -1365,6 +1302,7 @@ App::$strings["Error: GD graphics PHP module with JPEG support required but not App::$strings["Error: openssl PHP module required but not installed."] = "Erreur : le module openssl de PHP est requis, mais pas installé."; App::$strings["Error: mysqli or postgres PHP module required but neither are installed."] = "Erreur : un module PHP mysqli ou postgres est requis, mais aucun des deux n'est installé."; App::$strings["Error: mb_string PHP module required but not installed."] = "Erreur : le module mb_string de PHP est requis, mais pas installé."; +App::$strings["Error: mcrypt PHP module required but not installed."] = "Erreur : le module mcrypt de PHP est requis, mais pas installé."; App::$strings["Error: xml PHP module required for DAV but not installed."] = "Erreur : le module xml de PHP est requis pour le DAV, mais pas installé."; App::$strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "L'installeur web a besoin de créer un fichier \".htconfig.php\" à la racine de votre serveur web, mais en est incapable."; App::$strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "C'est généralement lié à un problème de droits, à cause duquel le serveur web est interdit d'écriture dans le répertoire concerné - alors que votre propre utilisateur a le droit."; @@ -1376,7 +1314,7 @@ App::$strings["In order to store these compiled templates, the web server needs App::$strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Merci de vous assurer que l'utilisateur sous lequel le serveur web tourne (le plus souvent, www-data) a bien l'autorisation d'écrire dans ce répertoire."; App::$strings["Note: as a security measure, you should give the web server write access to %s only--not the template files (.tpl) that it contains."] = "Note: Comme mesure de sécurité, assurez vous de donner les droits d'écriture au serveur web sur %s uniquement, pas sur les fichiers individuels (.tpl) qu'il contient."; App::$strings["%s is writable"] = "Permission d'écriture sur %s activée"; -App::$strings["This software 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"] = ""; +App::$strings["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"] = "\$Projectname utilise le répertoire 'store' - situé à la racine de votre installation de \$Projectname - pour sauvegarder les fichiers envoyés. Le serveur web aura donc besoin de pouvoir y écrire."; App::$strings["store is writable"] = "'store' est accessible en écriture"; App::$strings["SSL certificate cannot be validated. Fix certificate or disable https access to this site."] = "Le certificat SSL/TLS n'a pas pu être validé. Merci de le corriger, ou de désactiver l'accès https à ce site (non recommandé)."; App::$strings["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!"] = "Si votre serveur accepte les connexions https ou s'il permet les connexions sur le port TCP 443 (le port utilisé par le protocole https), vous DEVEZ utiliser un certificat valide. Vous ne DEVEZ PAS utiliser un certificat que vous avez vous-mêmes signé !"; @@ -1384,7 +1322,6 @@ App::$strings["This restriction is incorporated because public posts from you ma App::$strings["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."] = "Si votre certificat n'est pas reconnu, les membres des autres sites (qui eux peuvent avoir des certificats valides) recevront des messages d'avertissement sur leur propre site se plaignant de problèmes de sécurité."; App::$strings["This can cause usability issues elsewhere (not just on your own site) so we must insist on this requirement."] = "Ceci peut causer des problèmes d'ergonomie ailleurs (pas seulement sur votre site), nous devons donc insister sur ce prérequis."; App::$strings["Providers are available that issue free certificates which are browser-valid."] = "Il existe des autorités de certification qui vous fourniront gratuitement un certificat valide."; -App::$strings["If you are confident that the certificate is valid and signed by a trusted authority, check to see if you have failed to install an intermediate cert. These are not normally required by browsers, but are required for server-to-server communications."] = ""; App::$strings["SSL certificate validation"] = "Validation du certificat SSL/TLS"; App::$strings["Url rewrite in .htaccess is not working. Check your server configuration.Test: "] = "La réécriture d'URL définie dans le .htaccess ne fonctionne pas. Vérifiez votre configuration serveur. Test :"; App::$strings["Url rewrite is working"] = "La réécriture d'URL fonctionne"; @@ -1396,20 +1333,19 @@ App::$strings["Files: shared with me"] = "Fichiers : partagés avec moi"; App::$strings["NEW"] = "NOUVEAU"; App::$strings["Remove all files"] = "Supprimer tous les fichiers"; App::$strings["Remove this file"] = "Supprimer ce fichier"; -App::$strings["Thing updated"] = "Elément mis à jour"; -App::$strings["Object store: failed"] = "Stockage de l'objet : échec"; -App::$strings["Thing added"] = "Elément ajouté"; -App::$strings["OBJ: %1\$s %2\$s %3\$s"] = "OBJ: %1\$s %2\$s %3\$s"; -App::$strings["Show Thing"] = "Montrer élément"; -App::$strings["item not found."] = "élément introuvable."; -App::$strings["Edit Thing"] = "Modifier élément"; -App::$strings["Select a profile"] = "Choisissez un profil"; -App::$strings["Post an activity"] = "Publier une activité"; -App::$strings["Only sends to viewers of the applicable profile"] = "Envoie exclusivement aux visiteurs du profil concerné"; -App::$strings["Name of thing e.g. something"] = "Nom de l'élément, p.ex. quelque-chose"; -App::$strings["URL of thing (optional)"] = "URL de l'élément (facultatif)"; -App::$strings["URL for photo of thing (optional)"] = "URL d'une photo de l'élément (facultatif)"; -App::$strings["Add Thing to your Profile"] = "Ajouter l'élément à votre profil"; +App::$strings["Version %s"] = "Version %s"; +App::$strings["Installed plugins/addons/apps:"] = "Greffons/extensions/applications installés :"; +App::$strings["No installed plugins/addons/apps"] = "Aucun greffon/extension/application installé"; +App::$strings["This is a hub of \$Projectname - a global cooperative network of decentralized privacy enhanced websites."] = "Ceci est un serveur \$Projectname - un réseau collaboratif mondial de serveurs décentralisés à la confidentialité améliorée."; +App::$strings["Tag: "] = "Étiquette :"; +App::$strings["Last background fetch: "] = "Dernière récupération en tâche de fond :"; +App::$strings["Current load average: "] = "Charge moyenne actuelle :"; +App::$strings["Running at web location"] = "Tourne à l'adresse internet"; +App::$strings["Please visit hubzilla.org to learn more about \$Projectname."] = "Merci de visiter hubzilla.org pour en apprendre davantage sur \$Projectname."; +App::$strings["Bug reports and issues: please visit"] = "Pour remonter bogues et problèmes, merci de visiter"; +App::$strings["\$projectname issues"] = "Problèmes \$projectname"; +App::$strings["Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com"] = "Suggestions, demandes, etc. - merci de vous adresser à \"redmatrix\" à librelist - point com"; +App::$strings["Site Administrators"] = "Administrateurs du site"; App::$strings["Failed to create source. No channel selected."] = "Impossible de créer la source. Aucun canal selectionné."; App::$strings["Source created."] = "Source créée."; App::$strings["Source updated."] = "Source mise à jour."; @@ -1437,38 +1373,60 @@ App::$strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s a étiqueté le App::$strings["Tag removed"] = "Étiquette retirée"; App::$strings["Remove Item Tag"] = "Retirer une étiquette à l'élément"; App::$strings["Select a tag to remove: "] = "Étiquette à retirer :"; -App::$strings["Webpages"] = "Pages web"; -App::$strings["Actions"] = "Actions"; -App::$strings["Page Link"] = "Lien vers la page"; -App::$strings["Page Title"] = "Titre de la page"; -App::$strings["Not found"] = ""; -App::$strings["Wiki"] = ""; -App::$strings["Sandbox"] = ""; -App::$strings["\"# Wiki Sandbox\\n\\nContent you **edit** and **preview** here *will not be saved*.\""] = ""; -App::$strings["Revision Comparison"] = ""; -App::$strings["Revert"] = ""; -App::$strings["Enter the name of your new wiki:"] = ""; -App::$strings["Enter the name of the new page:"] = ""; -App::$strings["Enter the new name:"] = ""; -App::$strings["Embed image from photo albums"] = ""; -App::$strings["Embed an image from your albums"] = ""; -App::$strings["OK"] = "OK"; -App::$strings["Choose images to embed"] = ""; -App::$strings["Choose an album"] = ""; -App::$strings["Choose a different album..."] = ""; -App::$strings["Error getting album list"] = ""; -App::$strings["Error getting photo link"] = ""; -App::$strings["Error getting album"] = ""; +App::$strings["Thing updated"] = "Elément mis à jour"; +App::$strings["Object store: failed"] = "Stockage de l'objet : échec"; +App::$strings["Thing added"] = "Elément ajouté"; +App::$strings["OBJ: %1\$s %2\$s %3\$s"] = "OBJ: %1\$s %2\$s %3\$s"; +App::$strings["Show Thing"] = "Montrer élément"; +App::$strings["item not found."] = "élément introuvable."; +App::$strings["Edit Thing"] = "Modifier élément"; +App::$strings["Select a profile"] = "Choisissez un profil"; +App::$strings["Post an activity"] = "Publier une activité"; +App::$strings["Only sends to viewers of the applicable profile"] = "Envoie exclusivement aux visiteurs du profil concerné"; +App::$strings["Name of thing e.g. something"] = "Nom de l'élément, p.ex. quelque-chose"; +App::$strings["URL of thing (optional)"] = "URL de l'élément (facultatif)"; +App::$strings["URL for photo of thing (optional)"] = "URL d'une photo de l'élément (facultatif)"; +App::$strings["Add Thing to your Profile"] = "Ajouter l'élément à votre profil"; +App::$strings["Export Channel"] = "Exporter le canal"; +App::$strings["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."] = "Exportez les principales informations de votre canal dans un fichier. Celui-ci pourra servir de sauvegarde de vos contacts, permissions, profils et données de base. Il pourra être importé sur un nouveau hub/serveur, mais n'embarquera pas vos contenus."; +App::$strings["Export Content"] = "Exporter le contenu"; +App::$strings["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."] = "Exportez les informations du canal et les contenus récents dans un fichier JSON. Celui-ci contiendra toutes vos relations, permissions, profils, et plusieurs mois de publications. Ce fichier peut être TRÈS gros. Armez-vous de patience - plusieurs minutes peuvent s'écouler avant que le téléchargement ne commence."; +App::$strings["Export your posts from a given year."] = "Exporter vos publications d'une année en particulier"; +App::$strings["You may also export your posts and conversations for a particular year or month. Adjust the date in your browser location bar to select other dates. If the export fails (possibly due to memory exhaustion on your server hub), please try again selecting a more limited date range."] = "Vous pouvez également exporter vos publications et conversations pour une année ou un mois particulier. Ajustez la date dans la barre de votre navigateur pour sélectionner d'autres dates. Si l'export échoue (possible en cas de pénurie de mémoire sur le serveur de votre hub), essayez à nouveau en sélectionnant un intervalle de dates plus petit."; +App::$strings["To select all posts for a given year, such as this year, visit %2\$s"] = "Pour sélectionner toutes les publications pour une année donnée, telle que cette année, visitez %2\$s"; +App::$strings["To select all posts for a given month, such as January of this year, visit %2\$s"] = "Pour sélectionner toutes les publications pour un mois donné, par exemple janvier, visitez %2\$s"; +App::$strings["These content files may be imported or restored by visiting %2\$s on any site containing your channel. For best results please import or restore these in date order (oldest first)."] = "Ces fichiers de contenu peuvent être importés ou restaurés en visitant %2\$s sur n'importe quel site hébergeant votre canal. Pour de meilleurs résultats merci de les importer par ordre chronologique (les plus anciens d'abord)."; App::$strings["No connections."] = "Aucun contact."; App::$strings["Visit %s's profile [%s]"] = "Visiter le profil de %s [%s]"; App::$strings["View Connections"] = "Voir les contacts"; App::$strings["Source of Item"] = "Source de l'élément"; -App::$strings["Authorize application connection"] = "Autoriser l'application à se connecter"; -App::$strings["Return to your app and insert this Securty Code:"] = "Merci de retourner vers votre application, et d'y insérer ce Code de Sécurité :"; -App::$strings["Please login to continue."] = "Merci de vous identifier pour continuer."; -App::$strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Voulez-vous autoriser cette application à accéder à vos publications et contacts, et/ou à publier en votre nom?"; +App::$strings["Webpages"] = "Pages web"; +App::$strings["Actions"] = "Actions"; +App::$strings["Page Link"] = "Lien vers la page"; +App::$strings["Page Title"] = "Titre de la page"; App::$strings["Xchan Lookup"] = "Recherche xchan"; App::$strings["Lookup xchan beginning with (or webbie): "] = "Recherche xchan commençant par (ou adresse \"webbie\") :"; +App::$strings["Site Admin"] = "Administrateur"; +App::$strings["Bug Report"] = ""; +App::$strings["View Bookmarks"] = ""; +App::$strings["My Chatrooms"] = ""; +App::$strings["Firefox Share"] = ""; +App::$strings["Remote Diagnostics"] = ""; +App::$strings["Suggest Channels"] = "Suggérer des canaux"; +App::$strings["Login"] = "Connexion"; +App::$strings["Grid"] = "Réseau"; +App::$strings["Channel Home"] = "Mon canal"; +App::$strings["Events"] = "Événements"; +App::$strings["Directory"] = "Annuaire"; +App::$strings["Mail"] = "Messages"; +App::$strings["Chat"] = "Clavardage"; +App::$strings["Probe"] = "Sonder"; +App::$strings["Suggest"] = "Suggérer"; +App::$strings["Random Channel"] = "Un canal au hasard"; +App::$strings["Invite"] = "Invitation"; +App::$strings["Features"] = "Fonctionalités"; +App::$strings["Post"] = "Envoyer"; +App::$strings["Purchase"] = "Acheter"; App::$strings["Missing room name"] = "Il manque le nom du salon"; App::$strings["Duplicate room name"] = "Un salon avec ce nom existe déjà"; App::$strings["Invalid room specifier."] = "Identifiant de salon invalide."; @@ -1516,27 +1474,6 @@ App::$strings["Please visit %s to approve or reject the suggestion."] = "Merci d App::$strings["[Hubzilla:Notify]"] = "[Hubzilla:Notify]"; App::$strings["created a new post"] = "a publié un nouveau message"; App::$strings["commented on %s's post"] = "a commenté la publication de %s"; -App::$strings["Site Admin"] = "Administrateur"; -App::$strings["Bug Report"] = ""; -App::$strings["View Bookmarks"] = ""; -App::$strings["My Chatrooms"] = ""; -App::$strings["Firefox Share"] = ""; -App::$strings["Remote Diagnostics"] = ""; -App::$strings["Suggest Channels"] = "Suggérer des canaux"; -App::$strings["Login"] = "Connexion"; -App::$strings["Grid"] = "Réseau"; -App::$strings["Channel Home"] = "Mon canal"; -App::$strings["Events"] = "Événements"; -App::$strings["Directory"] = "Annuaire"; -App::$strings["Mail"] = "Messages"; -App::$strings["Chat"] = "Clavardage"; -App::$strings["Probe"] = "Sonder"; -App::$strings["Suggest"] = "Suggérer"; -App::$strings["Random Channel"] = "Un canal au hasard"; -App::$strings["Invite"] = "Invitation"; -App::$strings["Features"] = "Fonctionalités"; -App::$strings["Post"] = "Envoyer"; -App::$strings["Purchase"] = "Acheter"; App::$strings["Private Message"] = "Message Privé"; App::$strings["Select"] = "Sélectionner"; App::$strings["Save to Folder"] = "Enregistrer dans le dossier"; @@ -1573,7 +1510,7 @@ App::$strings["Expires: %s"] = "Expire : %s"; App::$strings["Save Bookmarks"] = "Enregistrer les favoris"; App::$strings["Add to Calendar"] = "Ajouter au Calendrier"; App::$strings["Mark all seen"] = "Tout marquer comme vu"; -App::$strings["%s show all"] = ""; +App::$strings["[+] show all"] = "[+] voir tous"; App::$strings["Bold"] = "Gras"; App::$strings["Italic"] = "Italique"; App::$strings["Underline"] = "Souligné"; @@ -1582,93 +1519,9 @@ App::$strings["Code"] = "Code"; App::$strings["Image"] = "Image"; App::$strings["Insert Link"] = "Insérer un lien"; App::$strings["Video"] = "Vidéo"; -App::$strings["Visible to your default audience"] = "Visible pour vos contacts seulement"; -App::$strings["Only me"] = ""; -App::$strings["Public"] = "Public"; -App::$strings["Anybody in the \$Projectname network"] = ""; -App::$strings["Any account on %s"] = ""; -App::$strings["Any of my connections"] = ""; -App::$strings["Only connections I specifically allow"] = ""; -App::$strings["Anybody authenticated (could include visitors from other networks)"] = ""; -App::$strings["Any connections including those who haven't yet been approved"] = ""; -App::$strings["This is your default setting for the audience of your normal stream, and posts."] = ""; -App::$strings["This is your default setting for who can view your default channel profile"] = ""; -App::$strings["This is your default setting for who can view your connections"] = ""; -App::$strings["This is your default setting for who can view your file storage and photos"] = ""; -App::$strings["This is your default setting for the audience of your webpages"] = ""; App::$strings["No username found in import file."] = "Aucun nom d'utilisateur dans le fichier d'import."; App::$strings["Unable to create a unique channel address. Import failed."] = "Impossible de créer une adresse de canal unique. Echec de l'import."; App::$strings["Cannot locate DNS info for database server '%s'"] = "Impossible de trouver les infos DNS du serveur de BDD '%s'"; -App::$strings["Image exceeds website size limit of %lu bytes"] = "L'image dépasse la taille limite de %lu octets"; -App::$strings["Image file is empty."] = "L'image est vide."; -App::$strings["Photo storage failed."] = "Le stockage de l'image a échoué."; -App::$strings["a new photo"] = "une nouvelle photo"; -App::$strings["__ctx:photo_upload__ %1\$s posted %2\$s to %3\$s"] = "%1\$s a publié %2\$s pour %3\$s"; -App::$strings["Photo Albums"] = "Albums photo"; -App::$strings["Upload New Photos"] = "Ajouter des photos"; -App::$strings["Logout"] = "Déconnexion"; -App::$strings["End this session"] = "Mettre fin à la session"; -App::$strings["Home"] = "Mon canal"; -App::$strings["Your posts and conversations"] = "Vos publications et conversations"; -App::$strings["Your profile page"] = "Votre profil"; -App::$strings["Manage/Edit profiles"] = "Gérer/modifier les profils"; -App::$strings["Edit Profile"] = "Éditeur de profil"; -App::$strings["Edit your profile"] = "Modifier votre profil"; -App::$strings["Your photos"] = "Vos photos"; -App::$strings["Your files"] = "Vos fichiers"; -App::$strings["Your chatrooms"] = "Vos salons"; -App::$strings["Bookmarks"] = "Favoris"; -App::$strings["Your bookmarks"] = "Vos favoris"; -App::$strings["Your webpages"] = "Vos pages web"; -App::$strings["Your wiki"] = ""; -App::$strings["Sign in"] = "Connexion"; -App::$strings["%s - click to logout"] = "%s - cliquer ici pour déconnecter"; -App::$strings["Remote authentication"] = "Authentification distante"; -App::$strings["Click to authenticate to your home hub"] = "S'authentifier auprès de votre hub principal"; -App::$strings["Home Page"] = "Page d'accueil"; -App::$strings["Create an account"] = "Créer un compte"; -App::$strings["Help and documentation"] = "Aide et documentation"; -App::$strings["Applications, utilities, links, games"] = "Applications, utilitaires, liens, jeux"; -App::$strings["Search site @name, #tag, ?docs, content"] = "Recherche @nom, #tag, contenu"; -App::$strings["Channel Directory"] = "Annuaire des canaux"; -App::$strings["Your grid"] = "Votre réseau"; -App::$strings["Mark all grid notifications seen"] = "Marquer toutes les notifications du réseau comme vues"; -App::$strings["Channel home"] = "Mon canal"; -App::$strings["Mark all channel notifications seen"] = "Marquer toutes les notifications du canal comme vues"; -App::$strings["Notices"] = "Notifications"; -App::$strings["Notifications"] = "Notifications"; -App::$strings["See all notifications"] = "Voir toutes les notifications"; -App::$strings["Private mail"] = "Messages privés"; -App::$strings["See all private messages"] = "Voir tous les messages privés"; -App::$strings["Mark all private messages seen"] = "Marquer tous les messages privés comme vus"; -App::$strings["Inbox"] = "Boîte de réception"; -App::$strings["Outbox"] = "Boîte d'envoi"; -App::$strings["New Message"] = "Nouveau message"; -App::$strings["Event Calendar"] = "Calendrier des événements"; -App::$strings["See all events"] = "Voir tous les événements"; -App::$strings["Mark all events seen"] = "Marquer tous les événements comme vus"; -App::$strings["Manage Your Channels"] = "Gérer vos canaux"; -App::$strings["Account/Channel Settings"] = "Paramètres du Compte/Canal"; -App::$strings["Admin"] = "Administrateur"; -App::$strings["Site Setup and Configuration"] = "Configuration du site"; -App::$strings["Loading..."] = "Chargement..."; -App::$strings["@name, #tag, ?doc, content"] = "@nom, #étiquette, ?doc, contenu"; -App::$strings["Please wait..."] = "Merci de patienter..."; -App::$strings["view full size"] = "voir en taille réelle"; -App::$strings["Administrator"] = "Administrateur"; -App::$strings["No Subject"] = "Pas d'objet"; -App::$strings["Friendica"] = "Friendica"; -App::$strings["OStatus"] = "OStatus"; -App::$strings["GNU-Social"] = ""; -App::$strings["RSS/Atom"] = "RSS/Atom"; -App::$strings["Diaspora"] = "Diaspora"; -App::$strings["Facebook"] = "Facebook"; -App::$strings["Zot"] = "Zot"; -App::$strings["LinkedIn"] = "Linkedin"; -App::$strings["XMPP/IM"] = "XMPP/IM"; -App::$strings["MySpace"] = "MySpace"; -App::$strings["New Page"] = "Nouvelle page"; -App::$strings["Title"] = "Titre"; App::$strings["Categories"] = "Catégories"; App::$strings["Tags"] = "Étiquettes"; App::$strings["Keywords"] = "Mots-clefs"; @@ -1678,196 +1531,34 @@ App::$strings["want"] = "veulent"; App::$strings["wants"] = "veut"; App::$strings["likes"] = "aime"; App::$strings["dislikes"] = "n'aime pas"; -App::$strings["Unable to obtain identity information from database"] = "Impossible d'obtenir les données d'identité depuis la base de données"; -App::$strings["Empty name"] = "Nom vide"; -App::$strings["Name too long"] = "Nom trop long"; -App::$strings["No account identifier"] = "Pas d'identifiant de compte"; -App::$strings["Nickname is required."] = "Un surnom est requis."; -App::$strings["Reserved nickname. Please choose another."] = "Surnom réservé. Merci d'en choisir un autre."; -App::$strings["Nickname has unsupported characters or is already being used on this site."] = "Le surnom contient des caractères interdits ou est déjà pris sur ce site."; -App::$strings["Unable to retrieve created identity"] = "Impossible de récupérer l'identité créée"; -App::$strings["Default Profile"] = "Profil par défaut"; -App::$strings["Requested channel is not available."] = "Canal demandé non disponible."; -App::$strings["Create New Profile"] = "Créer un nouveau profil"; -App::$strings["Visible to everybody"] = "Visible de tous"; -App::$strings["Gender:"] = "Sexe :"; -App::$strings["Status:"] = "État :"; -App::$strings["Homepage:"] = "Site Internet :"; -App::$strings["Online Now"] = "Connecté"; -App::$strings["Like this channel"] = "J'aime ce canal"; -App::$strings["j F, Y"] = "j F, Y"; -App::$strings["j F"] = "j F"; -App::$strings["Birthday:"] = "Date de naissance :"; -App::$strings["for %1\$d %2\$s"] = "depuis %1\$d %2\$s"; -App::$strings["Sexual Preference:"] = "Orientation sexuelle :"; -App::$strings["Tags:"] = "Étiquettes :"; -App::$strings["Political Views:"] = "Opinions politiques :"; -App::$strings["Religion:"] = "Religion :"; -App::$strings["Hobbies/Interests:"] = "Occupations/Centres d'intérêt :"; -App::$strings["Likes:"] = "Aime :"; -App::$strings["Dislikes:"] = "N'aime pas :"; -App::$strings["Contact information and Social Networks:"] = "Coordonnées et réseaux sociaux :"; -App::$strings["My other channels:"] = "Mes autres canaux :"; -App::$strings["Musical interests:"] = "Goûts musicaux :"; -App::$strings["Books, literature:"] = "Lectures, goûts littéraires :"; -App::$strings["Television:"] = "Télévision :"; -App::$strings["Film/dance/culture/entertainment:"] = "Cinéma/danse/culture/divertissement&nsbp;:"; -App::$strings["Love/Romance:"] = "Vie sentimentale/amoureuse :"; -App::$strings["Work/employment:"] = "Travail/Occupation "; -App::$strings["School/education:"] = "Études "; -App::$strings["Like this thing"] = "J'aime ceci"; -App::$strings["New window"] = "Nouvelle fenêtre"; -App::$strings["Open the selected location in a different window or browser tab"] = "Ouvrir l'emplacement dans une fenêtre ou un onglet différent"; -App::$strings["User '%s' deleted"] = "Utilisateur '%s' supprimé"; -App::$strings["%1\$s is now connected with %2\$s"] = "%1\$s ajoute %2\$s à ses contacts"; -App::$strings["%1\$s poked %2\$s"] = "%1\$s a tapoté %2\$s"; -App::$strings["poked"] = "a tapoté"; -App::$strings["View %s's profile @ %s"] = "Voir le profil de %s @ %s"; -App::$strings["Categories:"] = "Catégories :"; -App::$strings["Filed under:"] = "Classé sous :"; -App::$strings["View in context"] = "Voir en contexte"; -App::$strings["remove"] = "supprimer"; -App::$strings["Delete Selected Items"] = "Supprimer les éléments selectionnés"; -App::$strings["View Source"] = "Voir source"; -App::$strings["Follow Thread"] = "Suivre la discussion"; -App::$strings["Unfollow Thread"] = "Ne plus suivre la discussion"; -App::$strings["Activity/Posts"] = "Activité/Publications"; -App::$strings["Edit Connection"] = "Modifier le contact"; -App::$strings["Message"] = "Message"; -App::$strings["%s likes this."] = "%s aime ça."; -App::$strings["%s doesn't like this."] = "%s n'aime pas ça."; -App::$strings["%2\$d people like this."] = array( - 0 => "%2\$d personne aime ceci.", - 1 => "%2\$d personnes aiment ceci.", -); -App::$strings["%2\$d people don't like this."] = array( - 0 => "%2\$d personne n'aime pas ça.", - 1 => "%2\$d personnes n'aiment pas ça.", -); -App::$strings["and"] = "et"; -App::$strings[", and %d other people"] = array( - 0 => ", et %d autre personne", - 1 => ", et %d autres personnes", -); -App::$strings["%s like this."] = "%s aime ça."; -App::$strings["%s don't like this."] = "%s n'aime pas ça."; -App::$strings["Set your location"] = "Spécifier votre emplacement géographique"; -App::$strings["Clear browser location"] = "Supprimer l'emplacement géographique du navigateur"; -App::$strings["Tag term:"] = "Étiquette :"; -App::$strings["Where are you right now?"] = "Où êtes-vous en ce moment ?"; -App::$strings["Page link name"] = "Nom du lien vers la page"; -App::$strings["Post as"] = "Publier en tant que"; -App::$strings["Toggle voting"] = "(Dés)activer le vote"; -App::$strings["Categories (optional, comma-separated list)"] = "Catégories (facultatives, séparées par des virgules)"; -App::$strings["Set publish date"] = "Définir la date de publication"; -App::$strings["Discover"] = "À découvrir"; -App::$strings["Imported public streams"] = "Flux publics importés"; -App::$strings["Commented Order"] = "Par date de commentaire"; -App::$strings["Sort by Comment Date"] = "Trier par date de dernier commentaire"; -App::$strings["Posted Order"] = "Par date de publication"; -App::$strings["Sort by Post Date"] = "Trier par date de publication"; -App::$strings["Posts that mention or involve you"] = "Publications qui vous mentionnent ou vous concernent d'une manière ou d'une autre"; -App::$strings["Activity Stream - by date"] = "Flux d'activité - par date"; -App::$strings["Starred"] = "Mis en avant (étoiles)"; -App::$strings["Favourite Posts"] = "Publications préférées"; -App::$strings["Spam"] = "Indésirable"; -App::$strings["Posts flagged as SPAM"] = "Publications marquées comme indésirables"; -App::$strings["Status Messages and Posts"] = "Messages d'état et contributions"; -App::$strings["About"] = "À propos"; -App::$strings["Profile Details"] = "Détails du profil"; -App::$strings["Files and Storage"] = "Fichiers et Stockage"; -App::$strings["Chatrooms"] = "Salons de clavardage"; -App::$strings["Saved Bookmarks"] = "Favoris sauvegardés"; -App::$strings["Manage Webpages"] = "Gérer les pages web"; -App::$strings["__ctx:noun__ Attending"] = array( - 0 => "Participe", - 1 => "Participent", -); -App::$strings["__ctx:noun__ Not Attending"] = array( - 0 => "Ne participe pas", - 1 => "Ne participent pas", -); -App::$strings["__ctx:noun__ Undecided"] = array( - 0 => "Indécis(e)", - 1 => "Indécis(es)", -); -App::$strings["__ctx:noun__ Agree"] = array( - 0 => "D'accord", - 1 => "D'accord", -); -App::$strings["__ctx:noun__ Disagree"] = array( - 0 => "Pas d'accord", - 1 => "Pas d'accord", -); -App::$strings["__ctx:noun__ Abstain"] = array( - 0 => "S'abstient", - 1 => "S'abstiennent", -); +App::$strings["l F d, Y \\@ g:i A"] = "l d F Y \\à G\\hi"; +App::$strings["Starts:"] = "Début :"; +App::$strings["Finishes:"] = "Fin :"; +App::$strings["This event has been added to your calendar."] = "Cet évènement a été ajouté dans votre calendrier."; +App::$strings["Not specified"] = "Non spécifié"; +App::$strings["Needs Action"] = "Besoin d'une action"; +App::$strings["Completed"] = "Terminé"; +App::$strings["In Process"] = "En cours"; +App::$strings["Cancelled"] = "Annulé"; App::$strings["Cannot create a duplicate channel identifier on this system. Import failed."] = "L'import a échoué. Un canal existe déjà avec ce nom"; App::$strings["Channel clone failed. Import failed."] = "Echec du clonage du canal. Echec de l'impot."; -App::$strings["Frequently"] = "Fréquemment"; -App::$strings["Hourly"] = "Toutes les heures"; -App::$strings["Twice daily"] = "Deux fois par jour"; -App::$strings["Daily"] = "Chaque jour"; -App::$strings["Weekly"] = "Chaque semaine"; -App::$strings["Monthly"] = "Chaque mois"; -App::$strings["Currently Male"] = "Actuellement homme"; -App::$strings["Currently Female"] = "Actuellement femme"; -App::$strings["Mostly Male"] = "Surtout homme"; -App::$strings["Mostly Female"] = "Surtout femme"; -App::$strings["Transgender"] = "Transgenre"; -App::$strings["Intersex"] = "Intersexuel"; -App::$strings["Transsexual"] = "Transsexuel"; -App::$strings["Hermaphrodite"] = "Hermaphrodite"; -App::$strings["Neuter"] = "Neutre"; -App::$strings["Non-specific"] = "Non spécifique"; -App::$strings["Undecided"] = "Indécis"; -App::$strings["Males"] = "Hommes"; -App::$strings["Females"] = "Femmes"; -App::$strings["Gay"] = "Gay"; -App::$strings["Lesbian"] = "Lesbienne"; -App::$strings["No Preference"] = "Sans préférence"; -App::$strings["Bisexual"] = "Bisexuel"; -App::$strings["Autosexual"] = "Autosexuel"; -App::$strings["Abstinent"] = "Abstinent"; -App::$strings["Virgin"] = "Vierge"; -App::$strings["Deviant"] = "Déviant"; -App::$strings["Fetish"] = "Fétichiste"; -App::$strings["Oodles"] = "Une floppée"; -App::$strings["Nonsexual"] = "Non-sexuel"; -App::$strings["Single"] = "Célibataire"; -App::$strings["Lonely"] = "Solitaire"; -App::$strings["Available"] = "Disponible"; -App::$strings["Unavailable"] = "Indisponible"; -App::$strings["Has crush"] = "A un béguin"; -App::$strings["Infatuated"] = "Amoureux transi"; -App::$strings["Dating"] = "Sort avec quelqu'un"; -App::$strings["Unfaithful"] = "Infidèle"; -App::$strings["Sex Addict"] = "Accro au sexe"; -App::$strings["Friends/Benefits"] = "Amis avec bénéfices"; -App::$strings["Casual"] = "Sans engagement"; -App::$strings["Engaged"] = "Fiancé(e)"; -App::$strings["Married"] = "Marié(e)"; -App::$strings["Imaginarily married"] = "Marié(e) dans ses rêves"; -App::$strings["Partners"] = "Partenaires"; -App::$strings["Cohabiting"] = "En cohabitation"; -App::$strings["Common law"] = "Conjoints de fait"; -App::$strings["Happy"] = "Heureux"; -App::$strings["Not looking"] = "Pas en recherche"; -App::$strings["Swinger"] = "Echangiste"; -App::$strings["Betrayed"] = "Trahi(e)"; -App::$strings["Separated"] = "Séparé(e)"; -App::$strings["Unstable"] = "Instable"; -App::$strings["Divorced"] = "Divorcé(e)"; -App::$strings["Imaginarily divorced"] = "Divorcé(e) dans ses rêves"; -App::$strings["Widowed"] = "Veuf/veuve"; -App::$strings["Uncertain"] = "Incertain"; -App::$strings["It's complicated"] = "C'est compliqué"; -App::$strings["Don't care"] = "S'en fiche"; -App::$strings["Ask me"] = "Me demander"; -App::$strings["%1\$s's bookmarks"] = "Favoris de %1\$s"; -App::$strings["guest:"] = ""; -App::$strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "Le formulaire n'est plus sécurisé, probablement parce qu'il est ouvert depuis trop longtemps (plus de 3 heures)."; +App::$strings["(Unknown)"] = "(Inconnu)"; +App::$strings["Visible to anybody on the internet."] = "Visible pour tout le monde sur internet."; +App::$strings["Visible to you only."] = "Visible pour vous seulement."; +App::$strings["Visible to anybody in this network."] = "Visible pour tout le monde sur ce réseau."; +App::$strings["Visible to anybody authenticated."] = "Visible aux utilisateurs authentifiés."; +App::$strings["Visible to anybody on %s."] = "Visible pour tous sur %s."; +App::$strings["Visible to all connections."] = "Visible pour tous les contacts."; +App::$strings["Visible to approved connections."] = "Visible aux contacts approuvés."; +App::$strings["Visible to specific connections."] = "Visible pour certains contacts."; +App::$strings["Privacy group is empty."] = "Groupe d'accès vide."; +App::$strings["Privacy group: %s"] = "Groupe d'accès : %s"; +App::$strings["Connection not found."] = "Contact non trouvé."; +App::$strings["profile photo"] = "photo de profil"; +App::$strings["No recipient provided."] = "Pas de destinataire."; +App::$strings["[no subject]"] = "[sans objet]"; +App::$strings["Unable to determine sender."] = "Impossible de déterminer l'émetteur."; +App::$strings["Stored post could not be verified."] = "Le message stocké n'a pas pu être vérifié."; App::$strings["prev"] = "préc."; App::$strings["first"] = "premier"; App::$strings["last"] = "dernier"; @@ -1877,6 +1568,7 @@ App::$strings["newer"] = "plus récent"; App::$strings["No connections"] = "Pas de relations."; App::$strings["View all %s connections"] = "Voir les %s contacts"; App::$strings["poke"] = "tapoter"; +App::$strings["poked"] = "a tapoté"; App::$strings["ping"] = "ping"; App::$strings["pinged"] = "pingé"; App::$strings["prod"] = "encourager"; @@ -1939,21 +1631,385 @@ App::$strings["Select an alternate language"] = "Choisir une langue alternative" App::$strings["activity"] = "activité"; App::$strings["Design Tools"] = "Outils de conception"; App::$strings["Pages"] = "Pages"; -App::$strings["Logged out."] = "Deconnecté."; -App::$strings["Failed authentication"] = "Échec de l'authentification"; -App::$strings["Can view my normal stream and posts"] = "Peut voir les publications ordinaires sur mon canal."; -App::$strings["Can view my webpages"] = "Peut voir mes pages web"; -App::$strings["Can post on my channel page (\"wall\")"] = "Peuvent poster sur la page de mon canal (\"mur\")"; -App::$strings["Can like/dislike stuff"] = "Peuvent aimer/ne pas aimer"; -App::$strings["Profiles and things other than posts/comments"] = "Profils et autres excluant les publications/commentaires."; -App::$strings["Can forward to all my channel contacts via post @mentions"] = "Peut faire suivre à tous les contacts de mon canal via \"@mention\""; -App::$strings["Advanced - useful for creating group forum channels"] = "Avancé - utile pour les canaux de type \"forum/groupe\""; -App::$strings["Can chat with me (when available)"] = "Peut discuter avec moi (quand disponibie)"; -App::$strings["Can write to my file storage and photos"] = "Peut charger des fichiers et des photos dans mon canal"; -App::$strings["Can edit my webpages"] = "Peut modifier mes pages web"; -App::$strings["Somewhat advanced - very useful in open communities"] = "Plutôt avancé - très utile dans les communautés ouvertes"; -App::$strings["Can administer my channel resources"] = "Peut administrer les ressources de mon canal"; -App::$strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "Très avancé. Ne pas toucher, sauf si vous savez ce que vous faîtes"; +App::$strings["System"] = "Système"; +App::$strings["New App"] = ""; +App::$strings["Suggestions"] = "Suggestions"; +App::$strings["See more..."] = "Voir plus..."; +App::$strings["You have %1$.0f of %2$.0f allowed connections."] = "Vous avez %1$.0f sur %2$.0f contacts autorisés."; +App::$strings["Add New Connection"] = "Ajouter un nouveau contact"; +App::$strings["Enter channel address"] = "Saisissez l'adresse du canal"; +App::$strings["Examples: bob@example.com, https://example.com/barbara"] = "Exemples : pierre@exemple.com, https://exemple.com/sophie"; +App::$strings["Notes"] = "Notes"; +App::$strings["Remove term"] = "Retirer le terme"; +App::$strings["Saved Searches"] = "Recherches sauvegardées"; +App::$strings["add"] = "ajouter"; +App::$strings["Saved Folders"] = "Dossiers sauvegardés"; +App::$strings["Everything"] = "Tout"; +App::$strings["Archives"] = "Archives"; +App::$strings["Refresh"] = "Actualiser"; +App::$strings["Account settings"] = "Paramètres du compte"; +App::$strings["Channel settings"] = "Paramètres du canal"; +App::$strings["Additional features"] = "Fonctionnalités supplémentaires"; +App::$strings["Feature/Addon settings"] = "Paramètres des extensions/greffons"; +App::$strings["Display settings"] = "Paramètres d'affichage"; +App::$strings["Manage locations"] = ""; +App::$strings["Export channel"] = "Exporter le canal"; +App::$strings["Connected apps"] = "Applications connectées"; +App::$strings["Premium Channel Settings"] = "Paramètres de canal VIP"; +App::$strings["Private Mail Menu"] = "Menu des messages privés"; +App::$strings["Combined View"] = "Vue combinée"; +App::$strings["Inbox"] = "Boîte de réception"; +App::$strings["Outbox"] = "Boîte d'envoi"; +App::$strings["New Message"] = "Nouveau message"; +App::$strings["Conversations"] = "Conversations"; +App::$strings["Received Messages"] = "Messages reçus"; +App::$strings["Sent Messages"] = "Messages envoyés"; +App::$strings["No messages."] = "Pas de message."; +App::$strings["Delete conversation"] = "Supprimer la conversation"; +App::$strings["Events Menu"] = "Menu Evènements"; +App::$strings["Day View"] = "Vue Jour"; +App::$strings["Week View"] = "Vue Semaine"; +App::$strings["Month View"] = "Vue Mois"; +App::$strings["Events Tools"] = "Outils Evènements"; +App::$strings["Export Calendar"] = "Exporter le calendrier"; +App::$strings["Import Calendar"] = "Importer un calendrier"; +App::$strings["Chatrooms"] = "Salons de clavardage"; +App::$strings["Overview"] = ""; +App::$strings["Chat Members"] = ""; +App::$strings["Bookmarked Chatrooms"] = "Salons favoris"; +App::$strings["Suggested Chatrooms"] = "Salons suggérés"; +App::$strings["photo/image"] = "photo/image"; +App::$strings["Click to show more"] = "Cliquer pour voir plus"; +App::$strings["Rating Tools"] = "Outils d'évaluation"; +App::$strings["Rate Me"] = "M'évaluer"; +App::$strings["View Ratings"] = "Voir mes évaluations"; +App::$strings["Forums"] = "Membres du forum"; +App::$strings["Tasks"] = "Tâches"; +App::$strings["Documentation"] = "Documentation"; +App::$strings["Project/Site Information"] = "Information sur le site/projet"; +App::$strings["For Members"] = "Pour les membres"; +App::$strings["For Administrators"] = "Pour les administrateurs"; +App::$strings["For Developers"] = "Pour les développeurs"; +App::$strings["Member registrations waiting for confirmation"] = ""; +App::$strings["Inspect queue"] = "Analyser la file d'attente"; +App::$strings["DB updates"] = "Mises à jour BDD"; +App::$strings["Admin"] = "Administrateur"; +App::$strings["Plugin Features"] = "Fonctionnalités des greffons"; +App::$strings["Channel is blocked on this site."] = "Ce canal est bloqué sur ce site."; +App::$strings["Channel location missing."] = "Emplacement du canal introuvable."; +App::$strings["Response from remote channel was incomplete."] = "La réponse du canal distant était incomplète."; +App::$strings["Channel was deleted and no longer exists."] = "Le canal a été supprimé et n'existe plus."; +App::$strings["Protocol disabled."] = "Protocole désactivé."; +App::$strings["Channel discovery failed."] = "La tentative d'accéder au canal a échoué."; +App::$strings["Cannot connect to yourself."] = "Ne peut pas se connecter à vous."; +App::$strings["%1\$s's bookmarks"] = "Favoris de %1\$s"; +App::$strings["Public Timeline"] = "Fil public"; +App::$strings["Image/photo"] = "Image/photo"; +App::$strings["Encrypted content"] = "Contenu chiffré"; +App::$strings["Install %s element: "] = "Installer %s élément"; +App::$strings["This post contains an installable %s element, however you lack permissions to install it on this site."] = "Ce message contient un élément installable %s, mais vous n'avez pas l'autorisation de l'installer sur ce site."; +App::$strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s a écrit %2\$s qui suit %3\$s"; +App::$strings["Click to open/close"] = "Cliquer pour ouvrir/fermer"; +App::$strings["spoiler"] = ""; +App::$strings["Different viewers will see this text differently"] = "Ce texte aura un rendu différent en fonction des utilisateurs"; +App::$strings["$1 wrote:"] = "$1 a écrit :"; +App::$strings["Directory Options"] = "Options d'annuaire"; +App::$strings["Safe Mode"] = "Mode sûr"; +App::$strings["Public Forums Only"] = "Les forums publics uniquement"; +App::$strings["This Website Only"] = "Ce site uniquement"; +App::$strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "Le formulaire n'est plus sécurisé, probablement parce qu'il est ouvert depuis trop longtemps (plus de 3 heures)."; +App::$strings["Logout"] = "Déconnexion"; +App::$strings["End this session"] = "Mettre fin à la session"; +App::$strings["Home"] = "Mon canal"; +App::$strings["Your posts and conversations"] = "Vos publications et conversations"; +App::$strings["Your profile page"] = "Votre profil"; +App::$strings["Manage/Edit profiles"] = "Gérer/modifier les profils"; +App::$strings["Edit Profile"] = "Éditeur de profil"; +App::$strings["Edit your profile"] = "Modifier votre profil"; +App::$strings["Your photos"] = "Vos photos"; +App::$strings["Your files"] = "Vos fichiers"; +App::$strings["Your chatrooms"] = "Vos salons"; +App::$strings["Bookmarks"] = "Favoris"; +App::$strings["Your bookmarks"] = "Vos favoris"; +App::$strings["Your webpages"] = "Vos pages web"; +App::$strings["Sign in"] = "Connexion"; +App::$strings["%s - click to logout"] = "%s - cliquer ici pour déconnecter"; +App::$strings["Remote authentication"] = "Authentification distante"; +App::$strings["Click to authenticate to your home hub"] = "S'authentifier auprès de votre hub principal"; +App::$strings["Home Page"] = "Page d'accueil"; +App::$strings["Create an account"] = "Créer un compte"; +App::$strings["Help and documentation"] = "Aide et documentation"; +App::$strings["Applications, utilities, links, games"] = "Applications, utilitaires, liens, jeux"; +App::$strings["Search site @name, #tag, ?docs, content"] = "Recherche @nom, #tag, contenu"; +App::$strings["Channel Directory"] = "Annuaire des canaux"; +App::$strings["Your grid"] = "Votre réseau"; +App::$strings["Mark all grid notifications seen"] = "Marquer toutes les notifications du réseau comme vues"; +App::$strings["Channel home"] = "Mon canal"; +App::$strings["Mark all channel notifications seen"] = "Marquer toutes les notifications du canal comme vues"; +App::$strings["Notices"] = "Notifications"; +App::$strings["Notifications"] = "Notifications"; +App::$strings["See all notifications"] = "Voir toutes les notifications"; +App::$strings["Private mail"] = "Messages privés"; +App::$strings["See all private messages"] = "Voir tous les messages privés"; +App::$strings["Mark all private messages seen"] = "Marquer tous les messages privés comme vus"; +App::$strings["Event Calendar"] = "Calendrier des événements"; +App::$strings["See all events"] = "Voir tous les événements"; +App::$strings["Mark all events seen"] = "Marquer tous les événements comme vus"; +App::$strings["Manage Your Channels"] = "Gérer vos canaux"; +App::$strings["Account/Channel Settings"] = "Paramètres du Compte/Canal"; +App::$strings["Site Setup and Configuration"] = "Configuration du site"; +App::$strings["Loading..."] = "Chargement..."; +App::$strings["@name, #tag, ?doc, content"] = "@nom, #étiquette, ?doc, contenu"; +App::$strings["Please wait..."] = "Merci de patienter..."; +App::$strings["New window"] = "Nouvelle fenêtre"; +App::$strings["Open the selected location in a different window or browser tab"] = "Ouvrir l'emplacement dans une fenêtre ou un onglet différent"; +App::$strings["User '%s' deleted"] = "Utilisateur '%s' supprimé"; +App::$strings["%d invitation available"] = array( + 0 => "%d invitation disponible", + 1 => "%d invitations disponibles", +); +App::$strings["Find Channels"] = "Trouver des canaux"; +App::$strings["Enter name or interest"] = "Saisir nom ou centre d'intérêt"; +App::$strings["Connect/Follow"] = "Ajouter/Suivre"; +App::$strings["Examples: Robert Morgenstein, Fishing"] = "Exemples: Guillaume Martin, Course à pieds"; +App::$strings["Random Profile"] = "Un profil au hasard"; +App::$strings["Invite Friends"] = "Inviter des amis"; +App::$strings["Advanced example: name=fred and country=iceland"] = "Exemple avancé : name=fred and country=iceland"; +App::$strings["%d connection in common"] = array( + 0 => "%d contact en commun", + 1 => "%d contacts en commun", +); +App::$strings["show more"] = "montrer plus"; +App::$strings["%1\$s is now connected with %2\$s"] = "%1\$s ajoute %2\$s à ses contacts"; +App::$strings["%1\$s poked %2\$s"] = "%1\$s a tapoté %2\$s"; +App::$strings["View %s's profile @ %s"] = "Voir le profil de %s @ %s"; +App::$strings["Categories:"] = "Catégories :"; +App::$strings["Filed under:"] = "Classé sous :"; +App::$strings["View in context"] = "Voir en contexte"; +App::$strings["remove"] = "supprimer"; +App::$strings["Delete Selected Items"] = "Supprimer les éléments selectionnés"; +App::$strings["View Source"] = "Voir source"; +App::$strings["Follow Thread"] = "Suivre la discussion"; +App::$strings["Unfollow Thread"] = "Ne plus suivre la discussion"; +App::$strings["Activity/Posts"] = "Activité/Publications"; +App::$strings["Edit Connection"] = "Modifier le contact"; +App::$strings["Message"] = "Message"; +App::$strings["%s likes this."] = "%s aime ça."; +App::$strings["%s doesn't like this."] = "%s n'aime pas ça."; +App::$strings["%2\$d people like this."] = array( + 0 => "%2\$d personne aime ceci.", + 1 => "%2\$d personnes aiment ceci.", +); +App::$strings["%2\$d people don't like this."] = array( + 0 => "%2\$d personne n'aime pas ça.", + 1 => "%2\$d personnes n'aiment pas ça.", +); +App::$strings["and"] = "et"; +App::$strings[", and %d other people"] = array( + 0 => ", et %d autre personne", + 1 => ", et %d autres personnes", +); +App::$strings["%s like this."] = "%s aime ça."; +App::$strings["%s don't like this."] = "%s n'aime pas ça."; +App::$strings["Set your location"] = "Spécifier votre emplacement géographique"; +App::$strings["Clear browser location"] = "Supprimer l'emplacement géographique du navigateur"; +App::$strings["Tag term:"] = "Étiquette :"; +App::$strings["Where are you right now?"] = "Où êtes-vous en ce moment ?"; +App::$strings["Page link name"] = "Nom du lien vers la page"; +App::$strings["Post as"] = "Publier en tant que"; +App::$strings["Toggle voting"] = "(Dés)activer le vote"; +App::$strings["Categories (optional, comma-separated list)"] = "Catégories (facultatives, séparées par des virgules)"; +App::$strings["Set publish date"] = "Définir la date de publication"; +App::$strings["OK"] = "OK"; +App::$strings["Discover"] = "À découvrir"; +App::$strings["Imported public streams"] = "Flux publics importés"; +App::$strings["Commented Order"] = "Par date de commentaire"; +App::$strings["Sort by Comment Date"] = "Trier par date de dernier commentaire"; +App::$strings["Posted Order"] = "Par date de publication"; +App::$strings["Sort by Post Date"] = "Trier par date de publication"; +App::$strings["Posts that mention or involve you"] = "Publications qui vous mentionnent ou vous concernent d'une manière ou d'une autre"; +App::$strings["Activity Stream - by date"] = "Flux d'activité - par date"; +App::$strings["Starred"] = "Mis en avant (étoiles)"; +App::$strings["Favourite Posts"] = "Publications préférées"; +App::$strings["Spam"] = "Indésirable"; +App::$strings["Posts flagged as SPAM"] = "Publications marquées comme indésirables"; +App::$strings["Status Messages and Posts"] = "Messages d'état et contributions"; +App::$strings["About"] = "À propos"; +App::$strings["Profile Details"] = "Détails du profil"; +App::$strings["Photo Albums"] = "Albums photo"; +App::$strings["Files and Storage"] = "Fichiers et Stockage"; +App::$strings["Saved Bookmarks"] = "Favoris sauvegardés"; +App::$strings["Manage Webpages"] = "Gérer les pages web"; +App::$strings["__ctx:noun__ Attending"] = array( + 0 => "Participe", + 1 => "Participent", +); +App::$strings["__ctx:noun__ Not Attending"] = array( + 0 => "Ne participe pas", + 1 => "Ne participent pas", +); +App::$strings["__ctx:noun__ Undecided"] = array( + 0 => "Indécis(e)", + 1 => "Indécis(es)", +); +App::$strings["__ctx:noun__ Agree"] = array( + 0 => "D'accord", + 1 => "D'accord", +); +App::$strings["__ctx:noun__ Disagree"] = array( + 0 => "Pas d'accord", + 1 => "Pas d'accord", +); +App::$strings["__ctx:noun__ Abstain"] = array( + 0 => "S'abstient", + 1 => "S'abstiennent", +); +App::$strings["Frequently"] = "Fréquemment"; +App::$strings["Hourly"] = "Toutes les heures"; +App::$strings["Twice daily"] = "Deux fois par jour"; +App::$strings["Daily"] = "Chaque jour"; +App::$strings["Weekly"] = "Chaque semaine"; +App::$strings["Monthly"] = "Chaque mois"; +App::$strings["Currently Male"] = "Actuellement homme"; +App::$strings["Currently Female"] = "Actuellement femme"; +App::$strings["Mostly Male"] = "Surtout homme"; +App::$strings["Mostly Female"] = "Surtout femme"; +App::$strings["Transgender"] = "Transgenre"; +App::$strings["Intersex"] = "Intersexuel"; +App::$strings["Transsexual"] = "Transsexuel"; +App::$strings["Hermaphrodite"] = "Hermaphrodite"; +App::$strings["Neuter"] = "Neutre"; +App::$strings["Non-specific"] = "Non spécifique"; +App::$strings["Other"] = "Autre"; +App::$strings["Undecided"] = "Indécis"; +App::$strings["Males"] = "Hommes"; +App::$strings["Females"] = "Femmes"; +App::$strings["Gay"] = "Gay"; +App::$strings["Lesbian"] = "Lesbienne"; +App::$strings["No Preference"] = "Sans préférence"; +App::$strings["Bisexual"] = "Bisexuel"; +App::$strings["Autosexual"] = "Autosexuel"; +App::$strings["Abstinent"] = "Abstinent"; +App::$strings["Virgin"] = "Vierge"; +App::$strings["Deviant"] = "Déviant"; +App::$strings["Fetish"] = "Fétichiste"; +App::$strings["Oodles"] = "Une floppée"; +App::$strings["Nonsexual"] = "Non-sexuel"; +App::$strings["Single"] = "Célibataire"; +App::$strings["Lonely"] = "Solitaire"; +App::$strings["Available"] = "Disponible"; +App::$strings["Unavailable"] = "Indisponible"; +App::$strings["Has crush"] = "A un béguin"; +App::$strings["Infatuated"] = "Amoureux transi"; +App::$strings["Dating"] = "Sort avec quelqu'un"; +App::$strings["Unfaithful"] = "Infidèle"; +App::$strings["Sex Addict"] = "Accro au sexe"; +App::$strings["Friends/Benefits"] = "Amis avec bénéfices"; +App::$strings["Casual"] = "Sans engagement"; +App::$strings["Engaged"] = "Fiancé(e)"; +App::$strings["Married"] = "Marié(e)"; +App::$strings["Imaginarily married"] = "Marié(e) dans ses rêves"; +App::$strings["Partners"] = "Partenaires"; +App::$strings["Cohabiting"] = "En cohabitation"; +App::$strings["Common law"] = "Conjoints de fait"; +App::$strings["Happy"] = "Heureux"; +App::$strings["Not looking"] = "Pas en recherche"; +App::$strings["Swinger"] = "Echangiste"; +App::$strings["Betrayed"] = "Trahi(e)"; +App::$strings["Separated"] = "Séparé(e)"; +App::$strings["Unstable"] = "Instable"; +App::$strings["Divorced"] = "Divorcé(e)"; +App::$strings["Imaginarily divorced"] = "Divorcé(e) dans ses rêves"; +App::$strings["Widowed"] = "Veuf/veuve"; +App::$strings["Uncertain"] = "Incertain"; +App::$strings["It's complicated"] = "C'est compliqué"; +App::$strings["Don't care"] = "S'en fiche"; +App::$strings["Ask me"] = "Me demander"; +App::$strings["Visible to your default audience"] = "Visible pour vos contacts seulement"; +App::$strings["Only me"] = ""; +App::$strings["Public"] = "Public"; +App::$strings["Anybody in the \$Projectname network"] = ""; +App::$strings["Any account on %s"] = ""; +App::$strings["Any of my connections"] = ""; +App::$strings["Only connections I specifically allow"] = ""; +App::$strings["Anybody authenticated (could include visitors from other networks)"] = ""; +App::$strings["Any connections including those who haven't yet been approved"] = ""; +App::$strings["This is your default setting for the audience of your normal stream, and posts."] = ""; +App::$strings["This is your default setting for who can view your default channel profile"] = ""; +App::$strings["This is your default setting for who can view your connections"] = ""; +App::$strings["This is your default setting for who can view your file storage and photos"] = ""; +App::$strings["This is your default setting for the audience of your webpages"] = ""; +App::$strings["Not a valid email address"] = "Ce n'est pas une adresse de courriel valide"; +App::$strings["Your email domain is not among those allowed on this site"] = "Votre domaine de courriel ne fait pas partie de ceux autorisés par ce site"; +App::$strings["Your email address is already registered at this site."] = "Votre adresse de courriel est déjà inscrite sur ce site."; +App::$strings["An invitation is required."] = "Une invitation est requise."; +App::$strings["Invitation could not be verified."] = "Votre invitation n'a pas pu être vérifiée."; +App::$strings["Please enter the required information."] = "Merci d'entrer les informations requises."; +App::$strings["Failed to store account information."] = "Impossible de stocker les informations liées au compte."; +App::$strings["Registration confirmation for %s"] = "Confirmation de l'inscription pour %s"; +App::$strings["Registration request at %s"] = "Demande d'inscription sur %s"; +App::$strings["Administrator"] = "Administrateur"; +App::$strings["your registration password"] = "votre mot de passe d'inscription"; +App::$strings["Registration details for %s"] = "Détails de l'inscription pour %s"; +App::$strings["Account approved."] = "Compte approuvé."; +App::$strings["Registration revoked for %s"] = "Inscription révoquée pour %s"; +App::$strings["Account verified. Please login."] = "Compte vérifié. Veuillez vous connecter."; +App::$strings["Click here to upgrade."] = "Cliquez ici pour mettre à jour."; +App::$strings["This action exceeds the limits set by your subscription plan."] = "Cette action outrepasserait les limites prévues par votre forfait."; +App::$strings["This action is not available under your subscription plan."] = "Cette action n'est pas disponible avec votre forfait."; +App::$strings["Item was not found."] = "Élément introuvable."; +App::$strings["No source file."] = "Pas de fichier source."; +App::$strings["Cannot locate file to replace"] = "Impossible de trouver le fichier à remplacer."; +App::$strings["Cannot locate file to revise/update"] = "Impossible de trouver le fichier à corriger/mettre à jour"; +App::$strings["File exceeds size limit of %d"] = "Le fichier dépasse la taille limite de %d"; +App::$strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Vous avez atteint votre limite de %1$.0f méga-octets autorisés pour le stockage des pièces-jointes."; +App::$strings["File upload failed. Possible system limit or action terminated."] = "Envoi du fichier impossible. Limite système ou action avortée."; +App::$strings["Stored file could not be verified. Upload failed."] = "Le fichier stocké n'a pu être vérifié. Echec de l'envoi."; +App::$strings["Path not available."] = "Chemin non disponible."; +App::$strings["Empty pathname"] = "Chemin vide"; +App::$strings["duplicate filename or path"] = "doublon de chemin ou de fichier"; +App::$strings["Path not found."] = "Chemin introuvable."; +App::$strings["mkdir failed."] = "mkdir a échoué."; +App::$strings["database storage failed."] = "l'écriture dans la base de données a échoué."; +App::$strings["Empty path"] = "Chemin vide"; +App::$strings["Unable to obtain identity information from database"] = "Impossible d'obtenir les données d'identité depuis la base de données"; +App::$strings["Empty name"] = "Nom vide"; +App::$strings["Name too long"] = "Nom trop long"; +App::$strings["No account identifier"] = "Pas d'identifiant de compte"; +App::$strings["Nickname is required."] = "Un surnom est requis."; +App::$strings["Reserved nickname. Please choose another."] = "Surnom réservé. Merci d'en choisir un autre."; +App::$strings["Nickname has unsupported characters or is already being used on this site."] = "Le surnom contient des caractères interdits ou est déjà pris sur ce site."; +App::$strings["Unable to retrieve created identity"] = "Impossible de récupérer l'identité créée"; +App::$strings["Default Profile"] = "Profil par défaut"; +App::$strings["Requested channel is not available."] = "Canal demandé non disponible."; +App::$strings["Create New Profile"] = "Créer un nouveau profil"; +App::$strings["Visible to everybody"] = "Visible de tous"; +App::$strings["Gender:"] = "Sexe :"; +App::$strings["Status:"] = "État :"; +App::$strings["Homepage:"] = "Site Internet :"; +App::$strings["Online Now"] = "Connecté"; +App::$strings["Like this channel"] = "J'aime ce canal"; +App::$strings["j F, Y"] = "j F, Y"; +App::$strings["j F"] = "j F"; +App::$strings["Birthday:"] = "Date de naissance :"; +App::$strings["for %1\$d %2\$s"] = "depuis %1\$d %2\$s"; +App::$strings["Sexual Preference:"] = "Orientation sexuelle :"; +App::$strings["Tags:"] = "Étiquettes :"; +App::$strings["Political Views:"] = "Opinions politiques :"; +App::$strings["Religion:"] = "Religion :"; +App::$strings["Hobbies/Interests:"] = "Occupations/Centres d'intérêt :"; +App::$strings["Likes:"] = "Aime :"; +App::$strings["Dislikes:"] = "N'aime pas :"; +App::$strings["Contact information and Social Networks:"] = "Coordonnées et réseaux sociaux :"; +App::$strings["My other channels:"] = "Mes autres canaux :"; +App::$strings["Musical interests:"] = "Goûts musicaux :"; +App::$strings["Books, literature:"] = "Lectures, goûts littéraires :"; +App::$strings["Television:"] = "Télévision :"; +App::$strings["Film/dance/culture/entertainment:"] = "Cinéma/danse/culture/divertissement&nsbp;:"; +App::$strings["Love/Romance:"] = "Vie sentimentale/amoureuse :"; +App::$strings["Work/employment:"] = "Travail/Occupation "; +App::$strings["School/education:"] = "Études "; +App::$strings["Like this thing"] = "J'aime ceci"; App::$strings["General Features"] = "Fonctionnalités générales"; App::$strings["Content Expiration"] = "Expiration du contenu"; App::$strings["Remove posts/comments and/or private messages at a future time"] = "Supprimer les contributions/commentaires et/ou messages privés plus tard"; @@ -1965,7 +2021,6 @@ App::$strings["Profile Import/Export"] = "Importer/Exporter le profil"; App::$strings["Save and load profile details across sites/channels"] = "Sauvegarder et charger les détails d'un profil entre sites/canaux"; App::$strings["Web Pages"] = "Pages web"; App::$strings["Provide managed web pages on your channel"] = "Fournir des pages web, sous votre contrôle, sur votre canal"; -App::$strings["Provide a wiki for your channel"] = ""; App::$strings["Hide Rating"] = "Masquer l'évaluation"; App::$strings["Hide the rating buttons on your channel and profile pages. Note: People can still rate you somewhere else."] = "Masquer les boutons d'évaluation sur les pages de votre canal et de votre profil. NB : vous pourrez toujours être évalué(e) ailleurs."; App::$strings["Private Notes"] = "Notes privées"; @@ -1999,7 +2054,6 @@ App::$strings["Search by Date"] = "Chercher par date"; App::$strings["Ability to select posts by date ranges"] = "Pouvoir choisir des publications par date"; App::$strings["Privacy Groups"] = "Groupes d'accès"; App::$strings["Enable management and selection of privacy groups"] = "Active la gestion et la sélection des groupes d'accès"; -App::$strings["Saved Searches"] = "Recherches sauvegardées"; App::$strings["Save search terms for re-use"] = "Sauvegarder des termes de recherche pour utilisation ultérieure"; App::$strings["Network Personal Tab"] = "Onglet \"Me concernant\""; App::$strings["Enable tab to display only Network posts that you've interacted on"] = "Activer un onglet affichant seulement les publications du réseau sur lesquelles vous êtes intervenu"; @@ -2017,7 +2071,6 @@ App::$strings["Post Categories"] = "Catégoriser les publications"; App::$strings["Add categories to your posts"] = "Ajouter des catégories à vos publications"; App::$strings["Emoji Reactions"] = ""; App::$strings["Add emoji reaction ability to posts"] = ""; -App::$strings["Saved Folders"] = "Dossiers sauvegardés"; App::$strings["Ability to file posts under folders"] = "Permettre de classer les publications dans des dossiers"; App::$strings["Dislike Posts"] = "\"Ne pas aimer\" les publications"; App::$strings["Ability to dislike posts/comments"] = "Possibilité de \"ne pas aimer\" les publications/commentaires"; @@ -2025,149 +2078,63 @@ App::$strings["Star Posts"] = "Pouvoir mettre en avant les publications"; App::$strings["Ability to mark special posts with a star indicator"] = "Pouvoir marquer certaines publications d'une étoile"; App::$strings["Tag Cloud"] = "Nuage de tags"; App::$strings["Provide a personal tag cloud on your channel page"] = "Afficher un nuage de vos tags sur votre canal"; +App::$strings["Embedded content"] = "Contenu imbriqué"; +App::$strings["Embedding disabled"] = "Imbrication désactivée"; +App::$strings["Who can see this?"] = ""; +App::$strings["Custom selection"] = ""; +App::$strings["Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit the scope of \"Show\"."] = ""; +App::$strings["Show"] = "Montrer"; +App::$strings["Don't show"] = "Cacher"; +App::$strings["Other networks and post services"] = "Autres réseaux et services de messagerie"; +App::$strings["Post permissions %s cannot be changed %s after a post is shared.
These permissions set who is allowed to view the post."] = ""; +App::$strings["Logged out."] = "Deconnecté."; +App::$strings["Failed authentication"] = "Échec de l'authentification"; +App::$strings["Birthday"] = "Anniversaire"; +App::$strings["Age: "] = "Age :"; +App::$strings["YYYY-MM-DD or MM-DD"] = "AAAA-MM-JJ ou MM-JJ"; +App::$strings["never"] = "jamais"; +App::$strings["less than a second ago"] = "à l'instant"; +App::$strings["__ctx:e.g. 22 hours ago, 1 minute ago__ %1\$d %2\$s ago"] = "il y a %1\$d %2\$s"; +App::$strings["__ctx:relative_date__ year"] = array( + 0 => "an", + 1 => "ans", +); +App::$strings["__ctx:relative_date__ month"] = array( + 0 => "mois", + 1 => "mois", +); +App::$strings["__ctx:relative_date__ week"] = array( + 0 => "semaine", + 1 => "semaines", +); +App::$strings["__ctx:relative_date__ day"] = array( + 0 => "jour", + 1 => "jours", +); +App::$strings["__ctx:relative_date__ hour"] = array( + 0 => "heure", + 1 => "heures", +); +App::$strings["__ctx:relative_date__ minute"] = array( + 0 => "minute", + 1 => "minutes", +); +App::$strings["__ctx:relative_date__ second"] = array( + 0 => "seconde", + 1 => "secondes", +); +App::$strings["%1\$s's birthday"] = "Anniversaire de %1\$s"; +App::$strings["Happy Birthday %1\$s"] = "Joyeux Anniversaire %1\$s"; App::$strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Un groupe supprimé portant ce nom a été ressuscité. Les permissions liées aux éléments existants peuvent s'appliquer au groupe et aux membres futurs. Si ce n'est pas ce que vous attendiez, merci de créer un autre groupe avec un nom différent."; App::$strings["Add new connections to this privacy group"] = "Ajouter de nouveaux contacts à ce groupe d'accès"; App::$strings["edit"] = "modifier"; App::$strings["Edit group"] = "Modifier le groupe"; App::$strings["Add privacy group"] = "Ajouter un groupe d'accès"; App::$strings["Channels not in any privacy group"] = "Canaux n'étant dans aucun groupe d'accès"; -App::$strings["add"] = "ajouter"; -App::$strings["l F d, Y \\@ g:i A"] = "l d F Y \\à G\\hi"; -App::$strings["Starts:"] = "Début :"; -App::$strings["Finishes:"] = "Fin :"; -App::$strings["This event has been added to your calendar."] = "Cet évènement a été ajouté dans votre calendrier."; -App::$strings["Not specified"] = "Non spécifié"; -App::$strings["Needs Action"] = "Besoin d'une action"; -App::$strings["Completed"] = "Terminé"; -App::$strings["In Process"] = "En cours"; -App::$strings["Cancelled"] = "Annulé"; -App::$strings["Not a valid email address"] = "Ce n'est pas une adresse de courriel valide"; -App::$strings["Your email domain is not among those allowed on this site"] = "Votre domaine de courriel ne fait pas partie de ceux autorisés par ce site"; -App::$strings["Your email address is already registered at this site."] = "Votre adresse de courriel est déjà inscrite sur ce site."; -App::$strings["An invitation is required."] = "Une invitation est requise."; -App::$strings["Invitation could not be verified."] = "Votre invitation n'a pas pu être vérifiée."; -App::$strings["Please enter the required information."] = "Merci d'entrer les informations requises."; -App::$strings["Failed to store account information."] = "Impossible de stocker les informations liées au compte."; -App::$strings["Registration confirmation for %s"] = "Confirmation de l'inscription pour %s"; -App::$strings["Registration request at %s"] = "Demande d'inscription sur %s"; -App::$strings["your registration password"] = "votre mot de passe d'inscription"; -App::$strings["Registration details for %s"] = "Détails de l'inscription pour %s"; -App::$strings["Account approved."] = "Compte approuvé."; -App::$strings["Registration revoked for %s"] = "Inscription révoquée pour %s"; -App::$strings["Click here to upgrade."] = "Cliquez ici pour mettre à jour."; -App::$strings["This action exceeds the limits set by your subscription plan."] = "Cette action outrepasserait les limites prévues par votre forfait."; -App::$strings["This action is not available under your subscription plan."] = "Cette action n'est pas disponible avec votre forfait."; -App::$strings["Channel is blocked on this site."] = "Ce canal est bloqué sur ce site."; -App::$strings["Channel location missing."] = "Emplacement du canal introuvable."; -App::$strings["Response from remote channel was incomplete."] = "La réponse du canal distant était incomplète."; -App::$strings["Channel was deleted and no longer exists."] = "Le canal a été supprimé et n'existe plus."; -App::$strings["Protocol disabled."] = "Protocole désactivé."; -App::$strings["Channel discovery failed."] = "La tentative d'accéder au canal a échoué."; -App::$strings["Cannot connect to yourself."] = "Ne peut pas se connecter à vous."; -App::$strings["Item was not found."] = "Élément introuvable."; -App::$strings["No source file."] = "Pas de fichier source."; -App::$strings["Cannot locate file to replace"] = "Impossible de trouver le fichier à remplacer."; -App::$strings["Cannot locate file to revise/update"] = "Impossible de trouver le fichier à corriger/mettre à jour"; -App::$strings["File exceeds size limit of %d"] = "Le fichier dépasse la taille limite de %d"; -App::$strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Vous avez atteint votre limite de %1$.0f méga-octets autorisés pour le stockage des pièces-jointes."; -App::$strings["File upload failed. Possible system limit or action terminated."] = "Envoi du fichier impossible. Limite système ou action avortée."; -App::$strings["Stored file could not be verified. Upload failed."] = "Le fichier stocké n'a pu être vérifié. Echec de l'envoi."; -App::$strings["Path not available."] = "Chemin non disponible."; -App::$strings["Empty pathname"] = "Chemin vide"; -App::$strings["duplicate filename or path"] = "doublon de chemin ou de fichier"; -App::$strings["Path not found."] = "Chemin introuvable."; -App::$strings["mkdir failed."] = "mkdir a échoué."; -App::$strings["database storage failed."] = "l'écriture dans la base de données a échoué."; -App::$strings["Empty path"] = "Chemin vide"; -App::$strings["Image/photo"] = "Image/photo"; -App::$strings["Encrypted content"] = "Contenu chiffré"; -App::$strings["Install %s element: "] = "Installer %s élément"; -App::$strings["This post contains an installable %s element, however you lack permissions to install it on this site."] = "Ce message contient un élément installable %s, mais vous n'avez pas l'autorisation de l'installer sur ce site."; -App::$strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s a écrit %2\$s qui suit %3\$s"; -App::$strings["Click to open/close"] = "Cliquer pour ouvrir/fermer"; -App::$strings["spoiler"] = ""; -App::$strings["Different viewers will see this text differently"] = "Ce texte aura un rendu différent en fonction des utilisateurs"; -App::$strings["$1 wrote:"] = "$1 a écrit :"; -App::$strings["(Unknown)"] = "(Inconnu)"; -App::$strings["Visible to anybody on the internet."] = "Visible pour tout le monde sur internet."; -App::$strings["Visible to you only."] = "Visible pour vous seulement."; -App::$strings["Visible to anybody in this network."] = "Visible pour tout le monde sur ce réseau."; -App::$strings["Visible to anybody authenticated."] = "Visible aux utilisateurs authentifiés."; -App::$strings["Visible to anybody on %s."] = "Visible pour tous sur %s."; -App::$strings["Visible to all connections."] = "Visible pour tous les contacts."; -App::$strings["Visible to approved connections."] = "Visible aux contacts approuvés."; -App::$strings["Visible to specific connections."] = "Visible pour certains contacts."; -App::$strings["Privacy group is empty."] = "Groupe d'accès vide."; -App::$strings["Privacy group: %s"] = "Groupe d'accès : %s"; -App::$strings["Connection not found."] = "Contact non trouvé."; -App::$strings["profile photo"] = "photo de profil"; -App::$strings["Embedded content"] = "Contenu imbriqué"; -App::$strings["Embedding disabled"] = "Imbrication désactivée"; -App::$strings["System"] = "Système"; -App::$strings["New App"] = ""; -App::$strings["Suggestions"] = "Suggestions"; -App::$strings["See more..."] = "Voir plus..."; -App::$strings["You have %1$.0f of %2$.0f allowed connections."] = "Vous avez %1$.0f sur %2$.0f contacts autorisés."; -App::$strings["Add New Connection"] = "Ajouter un nouveau contact"; -App::$strings["Enter channel address"] = "Saisissez l'adresse du canal"; -App::$strings["Examples: bob@example.com, https://example.com/barbara"] = "Exemples : pierre@exemple.com, https://exemple.com/sophie"; -App::$strings["Notes"] = "Notes"; -App::$strings["Remove term"] = "Retirer le terme"; -App::$strings["Everything"] = "Tout"; -App::$strings["Archives"] = "Archives"; -App::$strings["Refresh"] = "Actualiser"; -App::$strings["Account settings"] = "Paramètres du compte"; -App::$strings["Channel settings"] = "Paramètres du canal"; -App::$strings["Additional features"] = "Fonctionnalités supplémentaires"; -App::$strings["Feature/Addon settings"] = "Paramètres des extensions/greffons"; -App::$strings["Display settings"] = "Paramètres d'affichage"; -App::$strings["Manage locations"] = ""; -App::$strings["Export channel"] = "Exporter le canal"; -App::$strings["Connected apps"] = "Applications connectées"; -App::$strings["Premium Channel Settings"] = "Paramètres de canal VIP"; -App::$strings["Private Mail Menu"] = "Menu des messages privés"; -App::$strings["Combined View"] = "Vue combinée"; -App::$strings["Conversations"] = "Conversations"; -App::$strings["Received Messages"] = "Messages reçus"; -App::$strings["Sent Messages"] = "Messages envoyés"; -App::$strings["No messages."] = "Pas de message."; -App::$strings["Delete conversation"] = "Supprimer la conversation"; -App::$strings["Events Tools"] = "Outils Evènements"; -App::$strings["Export Calendar"] = "Exporter le calendrier"; -App::$strings["Import Calendar"] = "Importer un calendrier"; -App::$strings["Overview"] = ""; -App::$strings["Chat Members"] = ""; -App::$strings["Wiki List"] = ""; -App::$strings["Wiki Pages"] = ""; -App::$strings["Bookmarked Chatrooms"] = "Salons favoris"; -App::$strings["Suggested Chatrooms"] = "Salons suggérés"; -App::$strings["photo/image"] = "photo/image"; -App::$strings["Click to show more"] = "Cliquer pour voir plus"; -App::$strings["Rating Tools"] = "Outils d'évaluation"; -App::$strings["Rate Me"] = "M'évaluer"; -App::$strings["View Ratings"] = "Voir mes évaluations"; -App::$strings["Forums"] = "Membres du forum"; -App::$strings["Tasks"] = "Tâches"; -App::$strings["Documentation"] = "Documentation"; -App::$strings["Project/Site Information"] = "Information sur le site/projet"; -App::$strings["For Members"] = "Pour les membres"; -App::$strings["For Administrators"] = "Pour les administrateurs"; -App::$strings["For Developers"] = "Pour les développeurs"; -App::$strings["Member registrations waiting for confirmation"] = ""; -App::$strings["Inspect queue"] = "Analyser la file d'attente"; -App::$strings["DB updates"] = "Mises à jour BDD"; -App::$strings["Plugin Features"] = "Fonctionnalités des greffons"; -App::$strings[" and "] = "et"; -App::$strings["public profile"] = "profil public"; -App::$strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s a changé %2\$s en “%3\$s”"; -App::$strings["Visit %1\$s's %2\$s"] = "Visiter %2\$s de %1\$s"; -App::$strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s a mis à jour %2\$s, modifiant %3\$s."; -App::$strings["Attachments:"] = "Pièces jointes :"; -App::$strings["\$Projectname event notification:"] = "Notification d'événement de \$Projectname :"; App::$strings["Delete this item?"] = "Supprimer cet élément?"; -App::$strings["%s show less"] = ""; -App::$strings["%s expand"] = ""; -App::$strings["%s collapse"] = ""; +App::$strings["[-] show less"] = "[-] montrer moins"; +App::$strings["[+] expand"] = "[+] déplier"; +App::$strings["[-] collapse"] = "[-] replier"; App::$strings["Password too short"] = "Mot de passe trop court"; App::$strings["Passwords do not match"] = "Les mots de passe ne correspondent pas"; App::$strings["everybody"] = "tout le monde"; @@ -2222,78 +2189,72 @@ App::$strings["__ctx:calendar__ month"] = "mois"; App::$strings["__ctx:calendar__ week"] = "semaine"; App::$strings["__ctx:calendar__ day"] = "jour"; App::$strings["__ctx:calendar__ All day"] = "Toute la journée"; -App::$strings["%d invitation available"] = array( - 0 => "%d invitation disponible", - 1 => "%d invitations disponibles", -); -App::$strings["Find Channels"] = "Trouver des canaux"; -App::$strings["Enter name or interest"] = "Saisir nom ou centre d'intérêt"; -App::$strings["Connect/Follow"] = "Ajouter/Suivre"; -App::$strings["Examples: Robert Morgenstein, Fishing"] = "Exemples: Guillaume Martin, Course à pieds"; -App::$strings["Random Profile"] = "Un profil au hasard"; -App::$strings["Invite Friends"] = "Inviter des amis"; -App::$strings["Advanced example: name=fred and country=iceland"] = "Exemple avancé : name=fred and country=iceland"; -App::$strings["%d connection in common"] = array( - 0 => "%d contact en commun", - 1 => "%d contacts en commun", -); -App::$strings["show more"] = "montrer plus"; -App::$strings["Directory Options"] = "Options d'annuaire"; -App::$strings["Safe Mode"] = "Mode sûr"; -App::$strings["Public Forums Only"] = "Les forums publics uniquement"; -App::$strings["This Website Only"] = "Ce site uniquement"; -App::$strings["No recipient provided."] = "Pas de destinataire."; -App::$strings["[no subject]"] = "[sans objet]"; -App::$strings["Unable to determine sender."] = "Impossible de déterminer l'émetteur."; -App::$strings["Stored post could not be verified."] = "Le message stocké n'a pas pu être vérifié."; -App::$strings["Who can see this?"] = ""; -App::$strings["Custom selection"] = ""; -App::$strings["Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit the scope of \"Show\"."] = ""; -App::$strings["Show"] = "Montrer"; -App::$strings["Don't show"] = "Cacher"; -App::$strings["Other networks and post services"] = "Autres réseaux et services de messagerie"; -App::$strings["Post permissions %s cannot be changed %s after a post is shared.
These permissions set who is allowed to view the post."] = ""; -App::$strings["Birthday"] = "Anniversaire"; -App::$strings["Age: "] = "Age :"; -App::$strings["YYYY-MM-DD or MM-DD"] = "AAAA-MM-JJ ou MM-JJ"; -App::$strings["never"] = "jamais"; -App::$strings["less than a second ago"] = "à l'instant"; -App::$strings["__ctx:e.g. 22 hours ago, 1 minute ago__ %1\$d %2\$s ago"] = "il y a %1\$d %2\$s"; -App::$strings["__ctx:relative_date__ year"] = array( - 0 => "an", - 1 => "ans", -); -App::$strings["__ctx:relative_date__ month"] = array( - 0 => "mois", - 1 => "mois", -); -App::$strings["__ctx:relative_date__ week"] = array( - 0 => "semaine", - 1 => "semaines", -); -App::$strings["__ctx:relative_date__ day"] = array( - 0 => "jour", - 1 => "jours", -); -App::$strings["__ctx:relative_date__ hour"] = array( - 0 => "heure", - 1 => "heures", -); -App::$strings["__ctx:relative_date__ minute"] = array( - 0 => "minute", - 1 => "minutes", -); -App::$strings["__ctx:relative_date__ second"] = array( - 0 => "seconde", - 1 => "secondes", -); -App::$strings["%1\$s's birthday"] = "Anniversaire de %1\$s"; -App::$strings["Happy Birthday %1\$s"] = "Joyeux Anniversaire %1\$s"; -App::$strings["Public Timeline"] = "Fil public"; +App::$strings["view full size"] = "voir en taille réelle"; +App::$strings["No Subject"] = "Pas d'objet"; +App::$strings["Friendica"] = "Friendica"; +App::$strings["OStatus"] = "OStatus"; +App::$strings["GNU-Social"] = ""; +App::$strings["RSS/Atom"] = "RSS/Atom"; +App::$strings["Diaspora"] = "Diaspora"; +App::$strings["Facebook"] = "Facebook"; +App::$strings["Zot"] = "Zot"; +App::$strings["LinkedIn"] = "Linkedin"; +App::$strings["XMPP/IM"] = "XMPP/IM"; +App::$strings["MySpace"] = "MySpace"; +App::$strings["Image exceeds website size limit of %lu bytes"] = "L'image dépasse la taille limite de %lu octets"; +App::$strings["Image file is empty."] = "L'image est vide."; +App::$strings["Photo storage failed."] = "Le stockage de l'image a échoué."; +App::$strings["a new photo"] = "une nouvelle photo"; +App::$strings["__ctx:photo_upload__ %1\$s posted %2\$s to %3\$s"] = "%1\$s a publié %2\$s pour %3\$s"; +App::$strings["Upload New Photos"] = "Ajouter des photos"; App::$strings["Invalid data packet"] = "Paquet de données invalide"; App::$strings["Unable to verify channel signature"] = "Impossible de vérifier la signature du canal"; App::$strings["Unable to verify site signature for %s"] = "Impossible de vérifier la signature de site pour %s"; App::$strings["invalid target signature"] = "signature de la cible invalide"; +App::$strings["New Page"] = "Nouvelle page"; +App::$strings["Title"] = "Titre"; +App::$strings["Can view my normal stream and posts"] = "Peut voir les publications ordinaires sur mon canal."; +App::$strings["Can view my default channel profile"] = "Peut voir le profil du canal par défaut."; +App::$strings["Can view my connections"] = "Peut voir mes contacts"; +App::$strings["Can view my file storage and photos"] = "Peut voir mes fichiers et photos"; +App::$strings["Can view my webpages"] = "Peut voir mes pages web"; +App::$strings["Can send me their channel stream and posts"] = "Peuvent m'envoyer leur flux et les publications de leur canal"; +App::$strings["Can post on my channel page (\"wall\")"] = "Peuvent poster sur la page de mon canal (\"mur\")"; +App::$strings["Can comment on or like my posts"] = "Peuvent commenter et/ou aimer mes publications"; +App::$strings["Can send me private mail messages"] = "Peuvent m'envoyer des messages privés"; +App::$strings["Can like/dislike stuff"] = "Peuvent aimer/ne pas aimer"; +App::$strings["Profiles and things other than posts/comments"] = "Profils et autres excluant les publications/commentaires."; +App::$strings["Can forward to all my channel contacts via post @mentions"] = "Peut faire suivre à tous les contacts de mon canal via \"@mention\""; +App::$strings["Advanced - useful for creating group forum channels"] = "Avancé - utile pour les canaux de type \"forum/groupe\""; +App::$strings["Can chat with me (when available)"] = "Peut discuter avec moi (quand disponibie)"; +App::$strings["Can write to my file storage and photos"] = "Peut charger des fichiers et des photos dans mon canal"; +App::$strings["Can edit my webpages"] = "Peut modifier mes pages web"; +App::$strings["Can source my public posts in derived channels"] = "Peut rediriger mes publications publiques vers des canaux dérivés"; +App::$strings["Somewhat advanced - very useful in open communities"] = "Plutôt avancé - très utile dans les communautés ouvertes"; +App::$strings["Can administer my channel resources"] = "Peut administrer les ressources de mon canal"; +App::$strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "Très avancé. Ne pas toucher, sauf si vous savez ce que vous faîtes"; +App::$strings["Social Networking"] = "Réseau social"; +App::$strings["Social - Mostly Public"] = "Social - surtout public"; +App::$strings["Social - Restricted"] = "Social - restreint"; +App::$strings["Social - Private"] = "Social - privé"; +App::$strings["Community Forum"] = "Forum communautaire"; +App::$strings["Forum - Mostly Public"] = "Forum - surtout public"; +App::$strings["Forum - Restricted"] = "Forum - restreint"; +App::$strings["Forum - Private"] = "Forum - privé"; +App::$strings["Feed Republish"] = "Republication de flux"; +App::$strings["Feed - Mostly Public"] = "Flux - surtout public"; +App::$strings["Feed - Restricted"] = "Flux - restreint"; +App::$strings["Special Purpose"] = "Utilisation spécifique"; +App::$strings["Special - Celebrity/Soapbox"] = "Spécial - célébrité/promotion"; +App::$strings["Special - Group Repository"] = "Spécial - dépôt partagé"; +App::$strings["Custom/Expert Mode"] = "Mode expert/spécifique"; +App::$strings[" and "] = "et"; +App::$strings["public profile"] = "profil public"; +App::$strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s a changé %2\$s en “%3\$s”"; +App::$strings["Visit %1\$s's %2\$s"] = "Visiter %2\$s de %1\$s"; +App::$strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s a mis à jour %2\$s, modifiant %3\$s."; +App::$strings["Attachments:"] = "Pièces jointes :"; +App::$strings["\$Projectname event notification:"] = "Notification d'événement de \$Projectname :"; App::$strings["Focus (Hubzilla default)"] = "Focus (par défaut pour Hubzilla)"; App::$strings["Theme settings"] = "Paramètres du thème"; App::$strings["Select scheme"] = "Définir la palette de couleurs"; @@ -2333,7 +2294,6 @@ App::$strings["__ctx:opensearch__ \$Projectname"] = ""; App::$strings["Update %s failed. See error logs."] = "La mise-à-jour %s a échoué. Merci de consulter les journaux d'erreur."; App::$strings["Update Error at %s"] = "Erreur de mise à jour sur %s"; App::$strings["Create an account to access services and applications within the Hubzilla"] = "Créez un compte pour pouvoir accéder aux services et applications de Hubzilla"; -App::$strings["Login/Email"] = ""; App::$strings["Password"] = "Mot de passe"; App::$strings["Remember me"] = "Se souvenir de moi"; App::$strings["Forgot your password?"] = "Mot de passe oublié ?"; diff --git a/view/it/hmessages.po b/view/it/hmessages.po index dc7e240e1..447fb3c2f 100644 --- a/view/it/hmessages.po +++ b/view/it/hmessages.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: Redmatrix\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-07-22 00:02-0700\n" -"PO-Revision-Date: 2016-07-26 07:33+0000\n" -"Last-Translator: Paolo Wave \n" +"POT-Creation-Date: 2016-06-10 00:02-0700\n" +"PO-Revision-Date: 2016-06-10 09:14+0000\n" +"Last-Translator: fabrixxm \n" "Language-Team: Italian (http://www.transifex.com/Friendica/red-matrix/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,156 +20,11 @@ msgstr "" "Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ../../Zotlabs/Access/PermissionRoles.php:182 -#: ../../include/permissions.php:904 -msgid "Social Networking" -msgstr "Social network" - -#: ../../Zotlabs/Access/PermissionRoles.php:183 -#: ../../include/permissions.php:904 -msgid "Social - Mostly Public" -msgstr "Social - Prevalentemente pubblico" - -#: ../../Zotlabs/Access/PermissionRoles.php:184 -#: ../../include/permissions.php:904 -msgid "Social - Restricted" -msgstr "Social - Con restrizioni" - -#: ../../Zotlabs/Access/PermissionRoles.php:185 -#: ../../include/permissions.php:904 -msgid "Social - Private" -msgstr "Social - Privato" - -#: ../../Zotlabs/Access/PermissionRoles.php:188 -#: ../../include/permissions.php:905 -msgid "Community Forum" -msgstr "Forum di discussione" - -#: ../../Zotlabs/Access/PermissionRoles.php:189 -#: ../../include/permissions.php:905 -msgid "Forum - Mostly Public" -msgstr "Social - Prevalentemente pubblico" - -#: ../../Zotlabs/Access/PermissionRoles.php:190 -#: ../../include/permissions.php:905 -msgid "Forum - Restricted" -msgstr "Forum - Con restrizioni" - -#: ../../Zotlabs/Access/PermissionRoles.php:191 -#: ../../include/permissions.php:905 -msgid "Forum - Private" -msgstr "Forum - Privato" - -#: ../../Zotlabs/Access/PermissionRoles.php:194 -#: ../../include/permissions.php:906 -msgid "Feed Republish" -msgstr "Aggregatore di feed esterni" - -#: ../../Zotlabs/Access/PermissionRoles.php:195 -#: ../../include/permissions.php:906 -msgid "Feed - Mostly Public" -msgstr "Feed - Prevalentemente pubblico" - -#: ../../Zotlabs/Access/PermissionRoles.php:196 -#: ../../include/permissions.php:906 -msgid "Feed - Restricted" -msgstr "Feed - Con restrizioni" - -#: ../../Zotlabs/Access/PermissionRoles.php:199 -#: ../../include/permissions.php:907 -msgid "Special Purpose" -msgstr "Per finalità speciali" - -#: ../../Zotlabs/Access/PermissionRoles.php:200 -#: ../../include/permissions.php:907 -msgid "Special - Celebrity/Soapbox" -msgstr "Speciale - Pagina per fan" - -#: ../../Zotlabs/Access/PermissionRoles.php:201 -#: ../../include/permissions.php:907 -msgid "Special - Group Repository" -msgstr "Speciale - Repository di gruppo" - -#: ../../Zotlabs/Access/PermissionRoles.php:204 ../../include/selectors.php:49 -#: ../../include/selectors.php:66 ../../include/selectors.php:104 -#: ../../include/selectors.php:140 ../../include/permissions.php:908 -msgid "Other" -msgstr "Altro" - -#: ../../Zotlabs/Access/PermissionRoles.php:205 -#: ../../include/permissions.php:908 -msgid "Custom/Expert Mode" -msgstr "Personalizzazione per esperti" - -#: ../../Zotlabs/Access/Permissions.php:30 -msgid "Can view my channel stream and posts" -msgstr "Può vedere i post e i contenuti del mio canale" - -#: ../../Zotlabs/Access/Permissions.php:31 ../../include/permissions.php:33 -msgid "Can send me their channel stream and posts" -msgstr "È tra i canali che seguo" - -#: ../../Zotlabs/Access/Permissions.php:32 ../../include/permissions.php:27 -msgid "Can view my default channel profile" -msgstr "Può vedere il profilo predefinito del canale" - -#: ../../Zotlabs/Access/Permissions.php:33 ../../include/permissions.php:28 -msgid "Can view my connections" -msgstr "Può vedere i miei contatti" - -#: ../../Zotlabs/Access/Permissions.php:34 ../../include/permissions.php:29 -msgid "Can view my file storage and photos" -msgstr "Può vedere il mio archivio file e foto" - -#: ../../Zotlabs/Access/Permissions.php:35 -msgid "Can upload/modify my file storage and photos" -msgstr "Può caricare o modificare i file e le foto del mio archivio" - -#: ../../Zotlabs/Access/Permissions.php:36 -msgid "Can view my channel webpages" -msgstr "Può vedere le pagine web del mio canale" - -#: ../../Zotlabs/Access/Permissions.php:37 -msgid "Can create/edit my channel webpages" -msgstr "Può creare o modificare le pagine web del mio canale" - -#: ../../Zotlabs/Access/Permissions.php:38 -msgid "Can post on my channel (wall) page" -msgstr "Può postare sulla mia bacheca" - -#: ../../Zotlabs/Access/Permissions.php:39 ../../include/permissions.php:35 -msgid "Can comment on or like my posts" -msgstr "Può commentare o aggiungere \"mi piace\" ai miei post" - -#: ../../Zotlabs/Access/Permissions.php:40 ../../include/permissions.php:36 -msgid "Can send me private mail messages" -msgstr "Può inviarmi messaggi privati" - -#: ../../Zotlabs/Access/Permissions.php:41 -msgid "Can like/dislike profiles and profile things" -msgstr "Può aggiungere un \"mi piace\" sul profilo e sugli oggetti del profilo" - -#: ../../Zotlabs/Access/Permissions.php:42 -msgid "Can forward to all my channel connections via @+ mentions in posts" -msgstr "Può inoltrare post a tutti i miei contatti con una menzione @+" - -#: ../../Zotlabs/Access/Permissions.php:43 -msgid "Can chat with me" -msgstr "Può aprire una chat con me" - -#: ../../Zotlabs/Access/Permissions.php:44 ../../include/permissions.php:44 -msgid "Can source my public posts in derived channels" -msgstr "Può usare i miei post pubblici per creare canali derivati" - -#: ../../Zotlabs/Access/Permissions.php:45 -msgid "Can administer my channel" -msgstr "Può amministrare il mio canale" - #: ../../Zotlabs/Storage/Browser.php:107 ../../Zotlabs/Storage/Browser.php:239 msgid "parent" msgstr "cartella superiore" -#: ../../Zotlabs/Storage/Browser.php:131 ../../include/text.php:2605 +#: ../../Zotlabs/Storage/Browser.php:131 ../../include/text.php:2620 msgid "Collection" msgstr "Cartella" @@ -193,17 +48,16 @@ msgstr "Appuntamenti ricevuti" msgid "Schedule Outbox" msgstr "Appuntamenti inviati" -#: ../../Zotlabs/Storage/Browser.php:164 ../../Zotlabs/Module/Photos.php:796 -#: ../../Zotlabs/Module/Photos.php:1241 -#: ../../Zotlabs/Module/Embedphotos.php:147 ../../Zotlabs/Lib/Apps.php:490 -#: ../../Zotlabs/Lib/Apps.php:565 ../../include/conversation.php:1035 -#: ../../include/widgets.php:1599 +#: ../../Zotlabs/Storage/Browser.php:164 ../../Zotlabs/Module/Photos.php:798 +#: ../../Zotlabs/Module/Photos.php:1243 ../../Zotlabs/Lib/Apps.php:486 +#: ../../Zotlabs/Lib/Apps.php:561 ../../include/widgets.php:1505 +#: ../../include/conversation.php:1032 msgid "Unknown" msgstr "Sconosciuto" #: ../../Zotlabs/Storage/Browser.php:226 ../../Zotlabs/Module/Fbrowser.php:85 -#: ../../Zotlabs/Lib/Apps.php:217 ../../include/nav.php:93 -#: ../../include/conversation.php:1654 +#: ../../Zotlabs/Lib/Apps.php:216 ../../include/nav.php:93 +#: ../../include/conversation.php:1639 msgid "Files" msgstr "Archivio file" @@ -216,23 +70,22 @@ msgid "Shared" msgstr "Condiviso" #: ../../Zotlabs/Storage/Browser.php:230 ../../Zotlabs/Storage/Browser.php:306 -#: ../../Zotlabs/Module/Layouts.php:184 ../../Zotlabs/Module/Menu.php:118 -#: ../../Zotlabs/Module/New_channel.php:142 -#: ../../Zotlabs/Module/Blocks.php:159 ../../Zotlabs/Module/Webpages.php:193 +#: ../../Zotlabs/Module/Blocks.php:156 ../../Zotlabs/Module/Layouts.php:182 +#: ../../Zotlabs/Module/Menu.php:118 ../../Zotlabs/Module/New_channel.php:142 +#: ../../Zotlabs/Module/Webpages.php:186 msgid "Create" msgstr "Crea" #: ../../Zotlabs/Storage/Browser.php:231 ../../Zotlabs/Storage/Browser.php:308 #: ../../Zotlabs/Module/Cover_photo.php:357 -#: ../../Zotlabs/Module/Photos.php:823 ../../Zotlabs/Module/Photos.php:1362 -#: ../../Zotlabs/Module/Profile_photo.php:390 -#: ../../Zotlabs/Module/Embedphotos.php:159 ../../include/widgets.php:1612 +#: ../../Zotlabs/Module/Photos.php:825 ../../Zotlabs/Module/Photos.php:1364 +#: ../../Zotlabs/Module/Profile_photo.php:368 ../../include/widgets.php:1518 msgid "Upload" msgstr "Carica" #: ../../Zotlabs/Storage/Browser.php:235 ../../Zotlabs/Module/Chat.php:247 -#: ../../Zotlabs/Module/Admin.php:1223 ../../Zotlabs/Module/Settings.php:646 -#: ../../Zotlabs/Module/Settings.php:672 +#: ../../Zotlabs/Module/Admin.php:1223 ../../Zotlabs/Module/Settings.php:592 +#: ../../Zotlabs/Module/Settings.php:618 #: ../../Zotlabs/Module/Sharedwithme.php:99 msgid "Name" msgstr "Nome" @@ -242,7 +95,7 @@ msgid "Type" msgstr "Tipo" #: ../../Zotlabs/Storage/Browser.php:237 -#: ../../Zotlabs/Module/Sharedwithme.php:101 ../../include/text.php:1324 +#: ../../Zotlabs/Module/Sharedwithme.php:101 ../../include/text.php:1344 msgid "Size" msgstr "Dimensione" @@ -251,32 +104,34 @@ msgstr "Dimensione" msgid "Last Modified" msgstr "Ultima modifica" -#: ../../Zotlabs/Storage/Browser.php:240 ../../Zotlabs/Module/Editpost.php:84 +#: ../../Zotlabs/Storage/Browser.php:240 ../../Zotlabs/Module/Blocks.php:157 +#: ../../Zotlabs/Module/Editblock.php:109 #: ../../Zotlabs/Module/Connections.php:290 #: ../../Zotlabs/Module/Connections.php:310 -#: ../../Zotlabs/Module/Editlayout.php:114 -#: ../../Zotlabs/Module/Editwebpage.php:145 -#: ../../Zotlabs/Module/Layouts.php:192 ../../Zotlabs/Module/Menu.php:112 -#: ../../Zotlabs/Module/Admin.php:2113 ../../Zotlabs/Module/Blocks.php:160 -#: ../../Zotlabs/Module/Editblock.php:109 -#: ../../Zotlabs/Module/Settings.php:706 ../../Zotlabs/Module/Thing.php:260 -#: ../../Zotlabs/Module/Webpages.php:194 ../../Zotlabs/Lib/Apps.php:341 -#: ../../Zotlabs/Lib/ThreadItem.php:106 ../../include/page_widgets.php:9 -#: ../../include/page_widgets.php:39 ../../include/channel.php:976 -#: ../../include/channel.php:980 ../../include/menu.php:108 +#: ../../Zotlabs/Module/Editpost.php:84 +#: ../../Zotlabs/Module/Editlayout.php:113 +#: ../../Zotlabs/Module/Editwebpage.php:146 +#: ../../Zotlabs/Module/Layouts.php:190 ../../Zotlabs/Module/Menu.php:112 +#: ../../Zotlabs/Module/Admin.php:2113 ../../Zotlabs/Module/Settings.php:652 +#: ../../Zotlabs/Module/Thing.php:260 ../../Zotlabs/Module/Webpages.php:187 +#: ../../Zotlabs/Lib/Apps.php:337 ../../Zotlabs/Lib/ThreadItem.php:106 +#: ../../include/channel.php:937 ../../include/channel.php:941 +#: ../../include/menu.php:108 ../../include/page_widgets.php:8 +#: ../../include/page_widgets.php:36 msgid "Edit" msgstr "Modifica" -#: ../../Zotlabs/Storage/Browser.php:241 ../../Zotlabs/Module/Connedit.php:602 +#: ../../Zotlabs/Storage/Browser.php:241 ../../Zotlabs/Module/Blocks.php:159 +#: ../../Zotlabs/Module/Connedit.php:572 +#: ../../Zotlabs/Module/Editblock.php:134 #: ../../Zotlabs/Module/Connections.php:263 -#: ../../Zotlabs/Module/Editlayout.php:137 -#: ../../Zotlabs/Module/Editwebpage.php:169 ../../Zotlabs/Module/Group.php:177 -#: ../../Zotlabs/Module/Photos.php:1171 ../../Zotlabs/Module/Admin.php:1039 +#: ../../Zotlabs/Module/Editlayout.php:136 +#: ../../Zotlabs/Module/Editwebpage.php:170 ../../Zotlabs/Module/Group.php:177 +#: ../../Zotlabs/Module/Photos.php:1173 ../../Zotlabs/Module/Admin.php:1039 #: ../../Zotlabs/Module/Admin.php:1213 ../../Zotlabs/Module/Admin.php:2114 -#: ../../Zotlabs/Module/Blocks.php:162 ../../Zotlabs/Module/Editblock.php:134 -#: ../../Zotlabs/Module/Settings.php:707 ../../Zotlabs/Module/Thing.php:261 -#: ../../Zotlabs/Module/Webpages.php:196 ../../Zotlabs/Lib/Apps.php:342 -#: ../../Zotlabs/Lib/ThreadItem.php:126 ../../include/conversation.php:660 +#: ../../Zotlabs/Module/Settings.php:653 ../../Zotlabs/Module/Thing.php:261 +#: ../../Zotlabs/Module/Webpages.php:189 ../../Zotlabs/Lib/Apps.php:338 +#: ../../Zotlabs/Lib/ThreadItem.php:126 ../../include/conversation.php:657 msgid "Delete" msgstr "Elimina" @@ -302,73 +157,74 @@ msgstr "Nuova cartella" msgid "Upload file" msgstr "Carica un file" -#: ../../Zotlabs/Web/WebServer.php:127 ../../Zotlabs/Module/Dreport.php:10 -#: ../../Zotlabs/Module/Dreport.php:66 ../../Zotlabs/Module/Group.php:72 -#: ../../Zotlabs/Module/Like.php:283 ../../Zotlabs/Module/Import_items.php:114 +#: ../../Zotlabs/Web/WebServer.php:120 ../../Zotlabs/Module/Dreport.php:10 +#: ../../Zotlabs/Module/Dreport.php:49 ../../Zotlabs/Module/Group.php:72 +#: ../../Zotlabs/Module/Like.php:284 ../../Zotlabs/Module/Import_items.php:112 #: ../../Zotlabs/Module/Profperm.php:28 ../../Zotlabs/Module/Subthread.php:62 -#: ../../include/items.php:384 +#: ../../include/items.php:385 msgid "Permission denied" msgstr "Permesso negato" -#: ../../Zotlabs/Web/WebServer.php:128 ../../Zotlabs/Web/Router.php:65 -#: ../../Zotlabs/Module/Achievements.php:34 -#: ../../Zotlabs/Module/Connedit.php:390 ../../Zotlabs/Module/Id.php:76 -#: ../../Zotlabs/Module/Authtest.php:16 ../../Zotlabs/Module/Events.php:264 -#: ../../Zotlabs/Module/Bookmarks.php:61 ../../Zotlabs/Module/Editpost.php:17 -#: ../../Zotlabs/Module/Page.php:35 ../../Zotlabs/Module/Page.php:91 -#: ../../Zotlabs/Module/Connections.php:33 +#: ../../Zotlabs/Web/WebServer.php:121 ../../Zotlabs/Web/Router.php:65 +#: ../../Zotlabs/Module/Achievements.php:34 ../../Zotlabs/Module/Blocks.php:73 +#: ../../Zotlabs/Module/Blocks.php:80 ../../Zotlabs/Module/Channel.php:105 +#: ../../Zotlabs/Module/Channel.php:226 ../../Zotlabs/Module/Channel.php:267 +#: ../../Zotlabs/Module/Chat.php:100 ../../Zotlabs/Module/Chat.php:105 +#: ../../Zotlabs/Module/Authtest.php:16 ../../Zotlabs/Module/Block.php:26 +#: ../../Zotlabs/Module/Block.php:76 ../../Zotlabs/Module/Bookmarks.php:61 +#: ../../Zotlabs/Module/Connedit.php:366 ../../Zotlabs/Module/Editblock.php:67 +#: ../../Zotlabs/Module/Common.php:39 ../../Zotlabs/Module/Connections.php:33 #: ../../Zotlabs/Module/Cover_photo.php:277 -#: ../../Zotlabs/Module/Cover_photo.php:290 ../../Zotlabs/Module/Chat.php:100 -#: ../../Zotlabs/Module/Chat.php:105 ../../Zotlabs/Module/Editlayout.php:67 +#: ../../Zotlabs/Module/Cover_photo.php:290 +#: ../../Zotlabs/Module/Editpost.php:17 ../../Zotlabs/Module/Events.php:265 +#: ../../Zotlabs/Module/Editlayout.php:67 #: ../../Zotlabs/Module/Editlayout.php:90 -#: ../../Zotlabs/Module/Editwebpage.php:68 -#: ../../Zotlabs/Module/Editwebpage.php:89 -#: ../../Zotlabs/Module/Editwebpage.php:104 -#: ../../Zotlabs/Module/Editwebpage.php:126 ../../Zotlabs/Module/Group.php:13 -#: ../../Zotlabs/Module/Appman.php:75 ../../Zotlabs/Module/Pdledit.php:26 -#: ../../Zotlabs/Module/Filestorage.php:23 -#: ../../Zotlabs/Module/Filestorage.php:78 -#: ../../Zotlabs/Module/Filestorage.php:93 -#: ../../Zotlabs/Module/Filestorage.php:120 +#: ../../Zotlabs/Module/Editwebpage.php:69 +#: ../../Zotlabs/Module/Editwebpage.php:90 +#: ../../Zotlabs/Module/Editwebpage.php:105 +#: ../../Zotlabs/Module/Editwebpage.php:127 ../../Zotlabs/Module/Group.php:13 +#: ../../Zotlabs/Module/Api.php:13 ../../Zotlabs/Module/Api.php:18 +#: ../../Zotlabs/Module/Filestorage.php:24 +#: ../../Zotlabs/Module/Filestorage.php:79 +#: ../../Zotlabs/Module/Filestorage.php:94 +#: ../../Zotlabs/Module/Filestorage.php:121 ../../Zotlabs/Module/Item.php:210 +#: ../../Zotlabs/Module/Item.php:218 ../../Zotlabs/Module/Item.php:1070 #: ../../Zotlabs/Module/Layouts.php:71 ../../Zotlabs/Module/Layouts.php:78 -#: ../../Zotlabs/Module/Layouts.php:89 ../../Zotlabs/Module/Like.php:181 -#: ../../Zotlabs/Module/Profiles.php:203 ../../Zotlabs/Module/Profiles.php:601 -#: ../../Zotlabs/Module/Item.php:213 ../../Zotlabs/Module/Item.php:221 -#: ../../Zotlabs/Module/Item.php:1071 ../../Zotlabs/Module/Photos.php:73 -#: ../../Zotlabs/Module/Invite.php:17 ../../Zotlabs/Module/Invite.php:91 -#: ../../Zotlabs/Module/Locs.php:87 ../../Zotlabs/Module/Mail.php:121 -#: ../../Zotlabs/Module/Manage.php:10 ../../Zotlabs/Module/Menu.php:78 -#: ../../Zotlabs/Module/Message.php:18 ../../Zotlabs/Module/Mood.php:116 -#: ../../Zotlabs/Module/Network.php:15 ../../Zotlabs/Module/Channel.php:104 -#: ../../Zotlabs/Module/Channel.php:225 ../../Zotlabs/Module/Channel.php:266 +#: ../../Zotlabs/Module/Layouts.php:89 ../../Zotlabs/Module/Id.php:76 +#: ../../Zotlabs/Module/Like.php:181 ../../Zotlabs/Module/Invite.php:17 +#: ../../Zotlabs/Module/Invite.php:91 ../../Zotlabs/Module/Locs.php:87 +#: ../../Zotlabs/Module/Mail.php:129 ../../Zotlabs/Module/Manage.php:10 +#: ../../Zotlabs/Module/Menu.php:78 ../../Zotlabs/Module/Message.php:18 +#: ../../Zotlabs/Module/Mood.php:116 ../../Zotlabs/Module/Network.php:17 #: ../../Zotlabs/Module/Mitem.php:115 ../../Zotlabs/Module/New_channel.php:77 #: ../../Zotlabs/Module/New_channel.php:104 -#: ../../Zotlabs/Module/Notifications.php:70 ../../Zotlabs/Module/Poke.php:137 -#: ../../Zotlabs/Module/Profile.php:68 ../../Zotlabs/Module/Profile.php:76 -#: ../../Zotlabs/Module/Block.php:26 ../../Zotlabs/Module/Block.php:76 -#: ../../Zotlabs/Module/Profile_photo.php:265 -#: ../../Zotlabs/Module/Profile_photo.php:278 -#: ../../Zotlabs/Module/Blocks.php:73 ../../Zotlabs/Module/Blocks.php:80 -#: ../../Zotlabs/Module/Rate.php:113 ../../Zotlabs/Module/Editblock.php:67 -#: ../../Zotlabs/Module/Common.php:39 ../../Zotlabs/Module/Register.php:77 -#: ../../Zotlabs/Module/Regmod.php:21 +#: ../../Zotlabs/Module/Notifications.php:70 +#: ../../Zotlabs/Module/Photos.php:75 ../../Zotlabs/Module/Page.php:35 +#: ../../Zotlabs/Module/Page.php:90 ../../Zotlabs/Module/Pdledit.php:26 +#: ../../Zotlabs/Module/Poke.php:137 ../../Zotlabs/Module/Profile.php:68 +#: ../../Zotlabs/Module/Profile.php:76 ../../Zotlabs/Module/Profiles.php:203 +#: ../../Zotlabs/Module/Profiles.php:601 +#: ../../Zotlabs/Module/Profile_photo.php:256 +#: ../../Zotlabs/Module/Profile_photo.php:269 +#: ../../Zotlabs/Module/Rate.php:113 ../../Zotlabs/Module/Appman.php:75 +#: ../../Zotlabs/Module/Register.php:77 ../../Zotlabs/Module/Regmod.php:21 #: ../../Zotlabs/Module/Service_limits.php:11 -#: ../../Zotlabs/Module/Settings.php:626 ../../Zotlabs/Module/Setup.php:215 -#: ../../Zotlabs/Module/Sharedwithme.php:11 ../../Zotlabs/Module/Thing.php:274 -#: ../../Zotlabs/Module/Thing.php:294 ../../Zotlabs/Module/Thing.php:331 +#: ../../Zotlabs/Module/Settings.php:572 ../../Zotlabs/Module/Setup.php:215 +#: ../../Zotlabs/Module/Sharedwithme.php:11 #: ../../Zotlabs/Module/Sources.php:74 ../../Zotlabs/Module/Suggest.php:30 -#: ../../Zotlabs/Module/Webpages.php:73 -#: ../../Zotlabs/Module/Viewconnections.php:28 -#: ../../Zotlabs/Module/Viewconnections.php:33 -#: ../../Zotlabs/Module/Viewsrc.php:18 ../../Zotlabs/Module/Api.php:13 -#: ../../Zotlabs/Module/Api.php:18 ../../Zotlabs/Lib/Chatroom.php:137 -#: ../../include/photos.php:27 ../../include/attach.php:141 -#: ../../include/attach.php:189 ../../include/attach.php:252 -#: ../../include/attach.php:266 ../../include/attach.php:273 -#: ../../include/attach.php:338 ../../include/attach.php:352 -#: ../../include/attach.php:359 ../../include/attach.php:439 -#: ../../include/attach.php:901 ../../include/attach.php:972 -#: ../../include/attach.php:1124 ../../include/items.php:3448 +#: ../../Zotlabs/Module/Thing.php:274 ../../Zotlabs/Module/Thing.php:294 +#: ../../Zotlabs/Module/Thing.php:331 +#: ../../Zotlabs/Module/Viewconnections.php:25 +#: ../../Zotlabs/Module/Viewconnections.php:30 +#: ../../Zotlabs/Module/Viewsrc.php:18 ../../Zotlabs/Module/Webpages.php:74 +#: ../../Zotlabs/Lib/Chatroom.php:137 ../../include/items.php:3438 +#: ../../include/attach.php:141 ../../include/attach.php:189 +#: ../../include/attach.php:252 ../../include/attach.php:266 +#: ../../include/attach.php:273 ../../include/attach.php:338 +#: ../../include/attach.php:352 ../../include/attach.php:359 +#: ../../include/attach.php:437 ../../include/attach.php:895 +#: ../../include/attach.php:966 ../../include/attach.php:1118 +#: ../../include/photos.php:27 msgid "Permission denied." msgstr "Permesso negato." @@ -376,9 +232,9 @@ msgstr "Permesso negato." msgid "Not Found" msgstr "Non disponibile" -#: ../../Zotlabs/Web/Router.php:149 ../../Zotlabs/Module/Display.php:118 -#: ../../Zotlabs/Module/Page.php:94 ../../Zotlabs/Module/Help.php:97 -#: ../../Zotlabs/Module/Block.php:79 +#: ../../Zotlabs/Web/Router.php:149 ../../Zotlabs/Module/Block.php:79 +#: ../../Zotlabs/Module/Display.php:117 ../../Zotlabs/Module/Help.php:97 +#: ../../Zotlabs/Module/Page.php:93 msgid "Page not found." msgstr "Pagina non trovata." @@ -394,13 +250,13 @@ msgstr "L'autenticazione tramite il tuo hub non è disponibile. Puoi provare a d msgid "Welcome %s. Remote authentication successful." msgstr "Ciao %s. L'accesso tramite il tuo hub è avvenuto con successo." -#: ../../Zotlabs/Module/Achievements.php:15 -#: ../../Zotlabs/Module/Connect.php:17 ../../Zotlabs/Module/Editlayout.php:31 -#: ../../Zotlabs/Module/Editwebpage.php:32 ../../Zotlabs/Module/Hcard.php:12 -#: ../../Zotlabs/Module/Filestorage.php:59 ../../Zotlabs/Module/Layouts.php:31 -#: ../../Zotlabs/Module/Profile.php:20 ../../Zotlabs/Module/Blocks.php:33 -#: ../../Zotlabs/Module/Editblock.php:31 ../../Zotlabs/Module/Webpages.php:33 -#: ../../include/channel.php:876 +#: ../../Zotlabs/Module/Achievements.php:15 ../../Zotlabs/Module/Blocks.php:33 +#: ../../Zotlabs/Module/Connect.php:17 ../../Zotlabs/Module/Editblock.php:31 +#: ../../Zotlabs/Module/Editlayout.php:31 +#: ../../Zotlabs/Module/Editwebpage.php:33 +#: ../../Zotlabs/Module/Filestorage.php:60 ../../Zotlabs/Module/Hcard.php:12 +#: ../../Zotlabs/Module/Layouts.php:31 ../../Zotlabs/Module/Profile.php:20 +#: ../../Zotlabs/Module/Webpages.php:34 ../../include/channel.php:837 msgid "Requested profile is not available." msgstr "Il profilo richiesto non è disponibile." @@ -408,6 +264,229 @@ msgstr "Il profilo richiesto non è disponibile." msgid "Some blurb about what to do when you're new here" msgstr "Qualche suggerimento per i nuovi utenti su cosa fare" +#: ../../Zotlabs/Module/Blocks.php:97 ../../Zotlabs/Module/Blocks.php:152 +#: ../../Zotlabs/Module/Editblock.php:108 +msgid "Block Name" +msgstr "Nome del block" + +#: ../../Zotlabs/Module/Blocks.php:151 ../../include/text.php:2265 +msgid "Blocks" +msgstr "Block" + +#: ../../Zotlabs/Module/Blocks.php:153 +msgid "Block Title" +msgstr "Titolo del block" + +#: ../../Zotlabs/Module/Blocks.php:154 ../../Zotlabs/Module/Layouts.php:188 +#: ../../Zotlabs/Module/Menu.php:114 ../../Zotlabs/Module/Webpages.php:198 +#: ../../include/page_widgets.php:44 +msgid "Created" +msgstr "Creato" + +#: ../../Zotlabs/Module/Blocks.php:155 ../../Zotlabs/Module/Layouts.php:189 +#: ../../Zotlabs/Module/Menu.php:115 ../../Zotlabs/Module/Webpages.php:199 +#: ../../include/page_widgets.php:45 +msgid "Edited" +msgstr "Modificato" + +#: ../../Zotlabs/Module/Blocks.php:158 ../../Zotlabs/Module/Layouts.php:191 +#: ../../Zotlabs/Module/Photos.php:1072 ../../Zotlabs/Module/Webpages.php:188 +#: ../../include/conversation.php:1208 +msgid "Share" +msgstr "Condividi" + +#: ../../Zotlabs/Module/Blocks.php:163 ../../Zotlabs/Module/Layouts.php:195 +#: ../../Zotlabs/Module/Pubsites.php:47 ../../Zotlabs/Module/Webpages.php:193 +#: ../../include/page_widgets.php:39 +msgid "View" +msgstr "Guarda" + +#: ../../Zotlabs/Module/Cal.php:62 ../../Zotlabs/Module/Block.php:43 +#: ../../Zotlabs/Module/Page.php:56 ../../Zotlabs/Module/Wall_upload.php:33 +msgid "Channel not found." +msgstr "Canale non trovato." + +#: ../../Zotlabs/Module/Cal.php:69 +msgid "Permissions denied." +msgstr "Permesso negato." + +#: ../../Zotlabs/Module/Cal.php:259 ../../Zotlabs/Module/Events.php:588 +msgid "l, F j" +msgstr "l j F" + +#: ../../Zotlabs/Module/Cal.php:308 ../../Zotlabs/Module/Events.php:637 +#: ../../include/text.php:1732 +msgid "Link to Source" +msgstr "Link al sito d'origine" + +#: ../../Zotlabs/Module/Cal.php:331 ../../Zotlabs/Module/Events.php:665 +msgid "Edit Event" +msgstr "Modifica l'evento" + +#: ../../Zotlabs/Module/Cal.php:331 ../../Zotlabs/Module/Events.php:665 +msgid "Create Event" +msgstr "Crea un evento" + +#: ../../Zotlabs/Module/Cal.php:332 ../../Zotlabs/Module/Cal.php:339 +#: ../../Zotlabs/Module/Events.php:666 ../../Zotlabs/Module/Events.php:673 +#: ../../Zotlabs/Module/Photos.php:949 +msgid "Previous" +msgstr "Precendente" + +#: ../../Zotlabs/Module/Cal.php:333 ../../Zotlabs/Module/Cal.php:340 +#: ../../Zotlabs/Module/Events.php:667 ../../Zotlabs/Module/Events.php:674 +#: ../../Zotlabs/Module/Photos.php:958 ../../Zotlabs/Module/Setup.php:267 +msgid "Next" +msgstr "Successivo" + +#: ../../Zotlabs/Module/Cal.php:334 ../../Zotlabs/Module/Events.php:668 +#: ../../include/widgets.php:755 +msgid "Export" +msgstr "Esporta" + +#: ../../Zotlabs/Module/Cal.php:337 ../../Zotlabs/Module/Events.php:671 +#: ../../include/widgets.php:756 +msgid "Import" +msgstr "Importa" + +#: ../../Zotlabs/Module/Cal.php:338 ../../Zotlabs/Module/Chat.php:196 +#: ../../Zotlabs/Module/Chat.php:238 ../../Zotlabs/Module/Connect.php:98 +#: ../../Zotlabs/Module/Connedit.php:731 ../../Zotlabs/Module/Events.php:475 +#: ../../Zotlabs/Module/Events.php:672 ../../Zotlabs/Module/Group.php:85 +#: ../../Zotlabs/Module/Filestorage.php:162 +#: ../../Zotlabs/Module/Import.php:550 +#: ../../Zotlabs/Module/Import_items.php:120 +#: ../../Zotlabs/Module/Invite.php:146 ../../Zotlabs/Module/Locs.php:121 +#: ../../Zotlabs/Module/Mail.php:378 ../../Zotlabs/Module/Mood.php:139 +#: ../../Zotlabs/Module/Mitem.php:235 ../../Zotlabs/Module/Photos.php:677 +#: ../../Zotlabs/Module/Photos.php:1052 ../../Zotlabs/Module/Photos.php:1092 +#: ../../Zotlabs/Module/Photos.php:1210 ../../Zotlabs/Module/Pconfig.php:107 +#: ../../Zotlabs/Module/Pdledit.php:66 ../../Zotlabs/Module/Poke.php:186 +#: ../../Zotlabs/Module/Profiles.php:687 ../../Zotlabs/Module/Rate.php:170 +#: ../../Zotlabs/Module/Admin.php:492 ../../Zotlabs/Module/Admin.php:688 +#: ../../Zotlabs/Module/Admin.php:771 ../../Zotlabs/Module/Admin.php:1032 +#: ../../Zotlabs/Module/Admin.php:1211 ../../Zotlabs/Module/Admin.php:1421 +#: ../../Zotlabs/Module/Admin.php:1648 ../../Zotlabs/Module/Admin.php:1733 +#: ../../Zotlabs/Module/Admin.php:2116 ../../Zotlabs/Module/Appman.php:126 +#: ../../Zotlabs/Module/Settings.php:590 ../../Zotlabs/Module/Settings.php:703 +#: ../../Zotlabs/Module/Settings.php:731 ../../Zotlabs/Module/Settings.php:754 +#: ../../Zotlabs/Module/Settings.php:842 +#: ../../Zotlabs/Module/Settings.php:1034 ../../Zotlabs/Module/Setup.php:312 +#: ../../Zotlabs/Module/Setup.php:353 ../../Zotlabs/Module/Sources.php:114 +#: ../../Zotlabs/Module/Sources.php:149 ../../Zotlabs/Module/Thing.php:316 +#: ../../Zotlabs/Module/Thing.php:362 ../../Zotlabs/Module/Xchan.php:15 +#: ../../Zotlabs/Lib/ThreadItem.php:710 ../../include/widgets.php:757 +#: ../../include/widgets.php:769 ../../include/js_strings.php:22 +#: ../../view/theme/redbasic/php/config.php:99 +msgid "Submit" +msgstr "Salva" + +#: ../../Zotlabs/Module/Cal.php:341 ../../Zotlabs/Module/Events.php:675 +msgid "Today" +msgstr "Oggi" + +#: ../../Zotlabs/Module/Channel.php:29 ../../Zotlabs/Module/Chat.php:25 +msgid "You must be logged in to see this page." +msgstr "Devi aver effettuato l'accesso per vedere questa pagina." + +#: ../../Zotlabs/Module/Channel.php:41 +msgid "Posts and comments" +msgstr "Post e commenti" + +#: ../../Zotlabs/Module/Channel.php:42 +msgid "Only posts" +msgstr "Solo post" + +#: ../../Zotlabs/Module/Channel.php:102 +msgid "Insufficient permissions. Request redirected to profile page." +msgstr "Permessi insufficienti. Sarà visualizzata la pagina del profilo." + +#: ../../Zotlabs/Module/Chat.php:181 +msgid "Room not found" +msgstr "Chat non trovata" + +#: ../../Zotlabs/Module/Chat.php:197 +msgid "Leave Room" +msgstr "Lascia la chat" + +#: ../../Zotlabs/Module/Chat.php:198 +msgid "Delete Room" +msgstr "Elimina questa chat" + +#: ../../Zotlabs/Module/Chat.php:199 +msgid "I am away right now" +msgstr "Non sono presente" + +#: ../../Zotlabs/Module/Chat.php:200 +msgid "I am online" +msgstr "Sono online" + +#: ../../Zotlabs/Module/Chat.php:202 +msgid "Bookmark this room" +msgstr "Aggiungi questa chat ai segnalibri" + +#: ../../Zotlabs/Module/Chat.php:205 ../../Zotlabs/Module/Mail.php:205 +#: ../../Zotlabs/Module/Mail.php:314 ../../include/conversation.php:1176 +msgid "Please enter a link URL:" +msgstr "Inserisci l'indirizzo del link:" + +#: ../../Zotlabs/Module/Chat.php:206 ../../Zotlabs/Module/Mail.php:258 +#: ../../Zotlabs/Module/Mail.php:383 ../../Zotlabs/Lib/ThreadItem.php:722 +#: ../../include/conversation.php:1256 +msgid "Encrypt text" +msgstr "Cifratura del messaggio" + +#: ../../Zotlabs/Module/Chat.php:207 ../../Zotlabs/Module/Editblock.php:111 +#: ../../Zotlabs/Module/Editwebpage.php:147 ../../Zotlabs/Module/Mail.php:252 +#: ../../Zotlabs/Module/Mail.php:377 ../../include/conversation.php:1143 +msgid "Insert web link" +msgstr "Inserisci un indirizzo web" + +#: ../../Zotlabs/Module/Chat.php:218 +msgid "Feature disabled." +msgstr "Funzionalità disattivata." + +#: ../../Zotlabs/Module/Chat.php:232 +msgid "New Chatroom" +msgstr "Nuova chat" + +#: ../../Zotlabs/Module/Chat.php:233 +msgid "Chatroom name" +msgstr "Nome chat" + +#: ../../Zotlabs/Module/Chat.php:234 +msgid "Expiration of chats (minutes)" +msgstr "Scadenza dei messaggi della chat (minuti)" + +#: ../../Zotlabs/Module/Chat.php:235 ../../Zotlabs/Module/Filestorage.php:153 +#: ../../Zotlabs/Module/Photos.php:671 ../../Zotlabs/Module/Photos.php:1045 +#: ../../Zotlabs/Module/Thing.php:313 ../../Zotlabs/Module/Thing.php:359 +#: ../../include/acl_selectors.php:283 +msgid "Permissions" +msgstr "Permessi" + +#: ../../Zotlabs/Module/Chat.php:246 +#, php-format +msgid "%1$s's Chatrooms" +msgstr "Le chat di %1$s" + +#: ../../Zotlabs/Module/Chat.php:251 +msgid "No chatrooms available" +msgstr "Nessuna chat disponibile" + +#: ../../Zotlabs/Module/Chat.php:252 ../../Zotlabs/Module/Manage.php:143 +#: ../../Zotlabs/Module/Profiles.php:778 +msgid "Create New" +msgstr "Crea nuova" + +#: ../../Zotlabs/Module/Chat.php:255 +msgid "Expiration" +msgstr "Scadenza" + +#: ../../Zotlabs/Module/Chat.php:256 +msgid "min" +msgstr "min" + #: ../../Zotlabs/Module/Chatsvc.php:117 msgid "Away" msgstr "Assente" @@ -416,6 +495,65 @@ msgstr "Assente" msgid "Online" msgstr "Online" +#: ../../Zotlabs/Module/Block.php:31 ../../Zotlabs/Module/Page.php:40 +msgid "Invalid item." +msgstr "Elemento non valido." + +#: ../../Zotlabs/Module/Bookmarks.php:53 +msgid "Bookmark added" +msgstr "Segnalibro aggiunto" + +#: ../../Zotlabs/Module/Bookmarks.php:75 +msgid "My Bookmarks" +msgstr "I miei segnalibri" + +#: ../../Zotlabs/Module/Bookmarks.php:86 +msgid "My Connections Bookmarks" +msgstr "I segnalibri dei miei contatti" + +#: ../../Zotlabs/Module/Connect.php:61 ../../Zotlabs/Module/Connect.php:109 +msgid "Continue" +msgstr "Continua" + +#: ../../Zotlabs/Module/Connect.php:90 +msgid "Premium Channel Setup" +msgstr "Canale premium - configurazione" + +#: ../../Zotlabs/Module/Connect.php:92 +msgid "Enable premium channel connection restrictions" +msgstr "Abilita le restrizioni del canale premium" + +#: ../../Zotlabs/Module/Connect.php:93 +msgid "" +"Please enter your restrictions or conditions, such as paypal receipt, usage " +"guidelines, etc." +msgstr "Scrivi le condizioni d'uso e le restrizioni di questo canale, come per esempio le linee guida, il sistema di pagamento, ecc." + +#: ../../Zotlabs/Module/Connect.php:95 ../../Zotlabs/Module/Connect.php:115 +msgid "" +"This channel may require additional steps or acknowledgement of the " +"following conditions prior to connecting:" +msgstr "Prima di connetterti a questo canale è necessario che tu accetti le seguenti condizioni:" + +#: ../../Zotlabs/Module/Connect.php:96 +msgid "" +"Potential connections will then see the following text before proceeding:" +msgstr "Il testo seguente comparirà a chi vorrà seguire il canale:" + +#: ../../Zotlabs/Module/Connect.php:97 ../../Zotlabs/Module/Connect.php:118 +msgid "" +"By continuing, I certify that I have complied with any instructions provided" +" on this page." +msgstr "Continuando dichiaro di aver seguito tutte le indicazioni e le istruzioni fornite in questa pagina." + +#: ../../Zotlabs/Module/Connect.php:106 +msgid "(No specific instructions have been provided by the channel owner.)" +msgstr "(Il gestore del canale non ha fornito istruzioni specifiche)" + +#: ../../Zotlabs/Module/Connect.php:114 +msgid "Restricted or Premium Channel" +msgstr "Canale premium - con restrizioni" + #: ../../Zotlabs/Module/Connedit.php:80 msgid "Could not access contact record." msgstr "Non è possibile accedere alle informazioni sul contatto." @@ -424,350 +562,317 @@ msgstr "Non è possibile accedere alle informazioni sul contatto." msgid "Could not locate selected profile." msgstr "Non riesco a trovare il profilo selezionato." -#: ../../Zotlabs/Module/Connedit.php:248 +#: ../../Zotlabs/Module/Connedit.php:227 msgid "Connection updated." msgstr "Contatto aggiornato." -#: ../../Zotlabs/Module/Connedit.php:250 +#: ../../Zotlabs/Module/Connedit.php:229 msgid "Failed to update connection record." msgstr "Impossibile aggiornare le informazioni del contatto." -#: ../../Zotlabs/Module/Connedit.php:300 +#: ../../Zotlabs/Module/Connedit.php:276 msgid "is now connected to" msgstr "ha come nuovo contatto" -#: ../../Zotlabs/Module/Connedit.php:403 ../../Zotlabs/Module/Connedit.php:685 -#: ../../Zotlabs/Module/Events.php:458 ../../Zotlabs/Module/Events.php:459 -#: ../../Zotlabs/Module/Events.php:468 -#: ../../Zotlabs/Module/Filestorage.php:156 -#: ../../Zotlabs/Module/Filestorage.php:164 -#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Photos.php:664 -#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 -#: ../../Zotlabs/Module/Mitem.php:158 ../../Zotlabs/Module/Mitem.php:159 -#: ../../Zotlabs/Module/Mitem.php:232 ../../Zotlabs/Module/Mitem.php:233 -#: ../../Zotlabs/Module/Admin.php:459 ../../Zotlabs/Module/Removeme.php:63 -#: ../../Zotlabs/Module/Settings.php:635 ../../Zotlabs/Module/Api.php:89 +#: ../../Zotlabs/Module/Connedit.php:379 ../../Zotlabs/Module/Connedit.php:654 +#: ../../Zotlabs/Module/Events.php:459 ../../Zotlabs/Module/Events.php:460 +#: ../../Zotlabs/Module/Events.php:469 ../../Zotlabs/Module/Api.php:89 +#: ../../Zotlabs/Module/Filestorage.php:157 +#: ../../Zotlabs/Module/Filestorage.php:165 ../../Zotlabs/Module/Menu.php:100 +#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Mitem.php:158 +#: ../../Zotlabs/Module/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:232 +#: ../../Zotlabs/Module/Mitem.php:233 ../../Zotlabs/Module/Photos.php:666 +#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Admin.php:459 +#: ../../Zotlabs/Module/Removeme.php:61 ../../Zotlabs/Module/Settings.php:581 #: ../../include/dir_fns.php:143 ../../include/dir_fns.php:144 #: ../../include/dir_fns.php:145 ../../view/theme/redbasic/php/config.php:105 -#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1708 +#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1707 msgid "No" msgstr "No" -#: ../../Zotlabs/Module/Connedit.php:403 ../../Zotlabs/Module/Events.php:458 -#: ../../Zotlabs/Module/Events.php:459 ../../Zotlabs/Module/Events.php:468 -#: ../../Zotlabs/Module/Filestorage.php:156 -#: ../../Zotlabs/Module/Filestorage.php:164 -#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Photos.php:664 -#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 -#: ../../Zotlabs/Module/Mitem.php:158 ../../Zotlabs/Module/Mitem.php:159 -#: ../../Zotlabs/Module/Mitem.php:232 ../../Zotlabs/Module/Mitem.php:233 -#: ../../Zotlabs/Module/Admin.php:461 ../../Zotlabs/Module/Removeme.php:63 -#: ../../Zotlabs/Module/Settings.php:635 ../../Zotlabs/Module/Api.php:88 +#: ../../Zotlabs/Module/Connedit.php:379 ../../Zotlabs/Module/Events.php:459 +#: ../../Zotlabs/Module/Events.php:460 ../../Zotlabs/Module/Events.php:469 +#: ../../Zotlabs/Module/Api.php:88 ../../Zotlabs/Module/Filestorage.php:157 +#: ../../Zotlabs/Module/Filestorage.php:165 ../../Zotlabs/Module/Menu.php:100 +#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Mitem.php:158 +#: ../../Zotlabs/Module/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:232 +#: ../../Zotlabs/Module/Mitem.php:233 ../../Zotlabs/Module/Photos.php:666 +#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Admin.php:461 +#: ../../Zotlabs/Module/Removeme.php:61 ../../Zotlabs/Module/Settings.php:581 #: ../../include/dir_fns.php:143 ../../include/dir_fns.php:144 #: ../../include/dir_fns.php:145 ../../view/theme/redbasic/php/config.php:105 -#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1708 +#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1707 msgid "Yes" msgstr "Sì" -#: ../../Zotlabs/Module/Connedit.php:435 +#: ../../Zotlabs/Module/Connedit.php:411 msgid "Could not access address book record." msgstr "Impossibile accedere alle informazioni della rubrica." -#: ../../Zotlabs/Module/Connedit.php:455 +#: ../../Zotlabs/Module/Connedit.php:425 msgid "Refresh failed - channel is currently unavailable." msgstr "Il canale non è disponibile - impossibile aggiornare." -#: ../../Zotlabs/Module/Connedit.php:470 ../../Zotlabs/Module/Connedit.php:479 -#: ../../Zotlabs/Module/Connedit.php:488 ../../Zotlabs/Module/Connedit.php:497 -#: ../../Zotlabs/Module/Connedit.php:510 +#: ../../Zotlabs/Module/Connedit.php:440 ../../Zotlabs/Module/Connedit.php:449 +#: ../../Zotlabs/Module/Connedit.php:458 ../../Zotlabs/Module/Connedit.php:467 +#: ../../Zotlabs/Module/Connedit.php:480 msgid "Unable to set address book parameters." msgstr "Impossibile impostare i parametri della rubrica." -#: ../../Zotlabs/Module/Connedit.php:533 +#: ../../Zotlabs/Module/Connedit.php:503 msgid "Connection has been removed." msgstr "Il contatto è stato rimosso." -#: ../../Zotlabs/Module/Connedit.php:549 ../../Zotlabs/Lib/Apps.php:221 -#: ../../include/nav.php:86 ../../include/conversation.php:957 +#: ../../Zotlabs/Module/Connedit.php:519 ../../Zotlabs/Lib/Apps.php:219 +#: ../../include/nav.php:86 ../../include/conversation.php:954 msgid "View Profile" msgstr "Profilo" -#: ../../Zotlabs/Module/Connedit.php:552 +#: ../../Zotlabs/Module/Connedit.php:522 #, php-format msgid "View %s's profile" msgstr "Guarda il profilo di %s" -#: ../../Zotlabs/Module/Connedit.php:556 +#: ../../Zotlabs/Module/Connedit.php:526 msgid "Refresh Permissions" msgstr "Modifica i permessi" -#: ../../Zotlabs/Module/Connedit.php:559 +#: ../../Zotlabs/Module/Connedit.php:529 msgid "Fetch updated permissions" msgstr "Guarda e modifica i permessi assegnati" -#: ../../Zotlabs/Module/Connedit.php:563 +#: ../../Zotlabs/Module/Connedit.php:533 msgid "Recent Activity" msgstr "Attività recenti" -#: ../../Zotlabs/Module/Connedit.php:566 +#: ../../Zotlabs/Module/Connedit.php:536 msgid "View recent posts and comments" msgstr "Leggi i post recenti e i commenti" -#: ../../Zotlabs/Module/Connedit.php:570 ../../Zotlabs/Module/Admin.php:1041 +#: ../../Zotlabs/Module/Connedit.php:540 ../../Zotlabs/Module/Admin.php:1041 msgid "Unblock" msgstr "Sblocca" -#: ../../Zotlabs/Module/Connedit.php:570 ../../Zotlabs/Module/Admin.php:1040 +#: ../../Zotlabs/Module/Connedit.php:540 ../../Zotlabs/Module/Admin.php:1040 msgid "Block" msgstr "Blocca" -#: ../../Zotlabs/Module/Connedit.php:573 +#: ../../Zotlabs/Module/Connedit.php:543 msgid "Block (or Unblock) all communications with this connection" msgstr "Blocca ogni interazione con questo contatto (abilita/disabilita)" -#: ../../Zotlabs/Module/Connedit.php:574 +#: ../../Zotlabs/Module/Connedit.php:544 msgid "This connection is blocked!" msgstr "Questa connessione è tra quelle bloccate!" -#: ../../Zotlabs/Module/Connedit.php:578 +#: ../../Zotlabs/Module/Connedit.php:548 msgid "Unignore" msgstr "Non ignorare" -#: ../../Zotlabs/Module/Connedit.php:578 +#: ../../Zotlabs/Module/Connedit.php:548 #: ../../Zotlabs/Module/Connections.php:277 #: ../../Zotlabs/Module/Notifications.php:55 msgid "Ignore" msgstr "Ignora" -#: ../../Zotlabs/Module/Connedit.php:581 +#: ../../Zotlabs/Module/Connedit.php:551 msgid "Ignore (or Unignore) all inbound communications from this connection" msgstr "Ignora tutte le comunicazioni in arrivo da questo contatto (abilita/disabilita)" -#: ../../Zotlabs/Module/Connedit.php:582 +#: ../../Zotlabs/Module/Connedit.php:552 msgid "This connection is ignored!" msgstr "Questa connessione è tra quelle ignorate!" -#: ../../Zotlabs/Module/Connedit.php:586 +#: ../../Zotlabs/Module/Connedit.php:556 msgid "Unarchive" msgstr "Non archiviare" -#: ../../Zotlabs/Module/Connedit.php:586 +#: ../../Zotlabs/Module/Connedit.php:556 msgid "Archive" msgstr "Archivia" -#: ../../Zotlabs/Module/Connedit.php:589 +#: ../../Zotlabs/Module/Connedit.php:559 msgid "" "Archive (or Unarchive) this connection - mark channel dead but keep content" msgstr "Archivia questo contatto (abilita/disabilita) - segna il canale come non più attivo ma ne conserva i contenuti" -#: ../../Zotlabs/Module/Connedit.php:590 +#: ../../Zotlabs/Module/Connedit.php:560 msgid "This connection is archived!" msgstr "Questa connessione è tra quelle archiviate!" -#: ../../Zotlabs/Module/Connedit.php:594 +#: ../../Zotlabs/Module/Connedit.php:564 msgid "Unhide" msgstr "Non nascondere" -#: ../../Zotlabs/Module/Connedit.php:594 +#: ../../Zotlabs/Module/Connedit.php:564 msgid "Hide" msgstr "Nascondi" -#: ../../Zotlabs/Module/Connedit.php:597 +#: ../../Zotlabs/Module/Connedit.php:567 msgid "Hide or Unhide this connection from your other connections" msgstr "Nascondi questo contatto a tutti gli altri (abilita/disabilita)" -#: ../../Zotlabs/Module/Connedit.php:598 +#: ../../Zotlabs/Module/Connedit.php:568 msgid "This connection is hidden!" msgstr "Questa connessione è tra quelle nascoste!" -#: ../../Zotlabs/Module/Connedit.php:605 +#: ../../Zotlabs/Module/Connedit.php:575 msgid "Delete this connection" msgstr "Elimina questo contatto" -#: ../../Zotlabs/Module/Connedit.php:620 ../../include/widgets.php:493 +#: ../../Zotlabs/Module/Connedit.php:590 ../../include/widgets.php:493 msgid "Me" msgstr "Me" -#: ../../Zotlabs/Module/Connedit.php:621 ../../include/widgets.php:494 +#: ../../Zotlabs/Module/Connedit.php:591 ../../include/widgets.php:494 msgid "Family" msgstr "Famiglia" -#: ../../Zotlabs/Module/Connedit.php:622 ../../Zotlabs/Module/Settings.php:391 -#: ../../Zotlabs/Module/Settings.php:395 ../../Zotlabs/Module/Settings.php:396 -#: ../../Zotlabs/Module/Settings.php:399 ../../Zotlabs/Module/Settings.php:410 -#: ../../include/channel.php:402 ../../include/channel.php:403 -#: ../../include/channel.php:410 ../../include/selectors.php:123 -#: ../../include/widgets.php:495 +#: ../../Zotlabs/Module/Connedit.php:592 ../../Zotlabs/Module/Settings.php:342 +#: ../../Zotlabs/Module/Settings.php:346 ../../Zotlabs/Module/Settings.php:347 +#: ../../Zotlabs/Module/Settings.php:350 ../../Zotlabs/Module/Settings.php:361 +#: ../../include/widgets.php:495 ../../include/selectors.php:123 +#: ../../include/channel.php:389 ../../include/channel.php:390 +#: ../../include/channel.php:397 msgid "Friends" msgstr "Amici" -#: ../../Zotlabs/Module/Connedit.php:623 ../../include/widgets.php:496 +#: ../../Zotlabs/Module/Connedit.php:593 ../../include/widgets.php:496 msgid "Acquaintances" msgstr "Conoscenti" -#: ../../Zotlabs/Module/Connedit.php:624 +#: ../../Zotlabs/Module/Connedit.php:594 #: ../../Zotlabs/Module/Connections.php:92 #: ../../Zotlabs/Module/Connections.php:107 ../../include/widgets.php:497 msgid "All" msgstr "Tutti" -#: ../../Zotlabs/Module/Connedit.php:685 +#: ../../Zotlabs/Module/Connedit.php:654 msgid "Approve this connection" msgstr "Approva questo contatto" -#: ../../Zotlabs/Module/Connedit.php:685 +#: ../../Zotlabs/Module/Connedit.php:654 msgid "Accept connection to allow communication" msgstr "Entra in contatto per poter comunicare" -#: ../../Zotlabs/Module/Connedit.php:690 +#: ../../Zotlabs/Module/Connedit.php:659 msgid "Set Affinity" msgstr "Scegli l'affinità" -#: ../../Zotlabs/Module/Connedit.php:693 +#: ../../Zotlabs/Module/Connedit.php:662 msgid "Set Profile" msgstr "Scegli il profilo da mostrare" -#: ../../Zotlabs/Module/Connedit.php:696 +#: ../../Zotlabs/Module/Connedit.php:665 msgid "Set Affinity & Profile" msgstr "Affinità e profilo" -#: ../../Zotlabs/Module/Connedit.php:745 +#: ../../Zotlabs/Module/Connedit.php:698 msgid "none" msgstr "--" -#: ../../Zotlabs/Module/Connedit.php:749 ../../include/widgets.php:623 +#: ../../Zotlabs/Module/Connedit.php:702 ../../include/widgets.php:614 msgid "Connection Default Permissions" msgstr "Permessi predefiniti dei nuovi contatti" -#: ../../Zotlabs/Module/Connedit.php:749 ../../include/items.php:3935 +#: ../../Zotlabs/Module/Connedit.php:702 ../../include/items.php:3926 #, php-format msgid "Connection: %s" msgstr "Contatto: %s" -#: ../../Zotlabs/Module/Connedit.php:750 +#: ../../Zotlabs/Module/Connedit.php:703 msgid "Apply these permissions automatically" msgstr "Applica automaticamente questi permessi" -#: ../../Zotlabs/Module/Connedit.php:750 +#: ../../Zotlabs/Module/Connedit.php:703 msgid "Connection requests will be approved without your interaction" msgstr "Le richieste di entrare in contatto saranno approvate in automatico" -#: ../../Zotlabs/Module/Connedit.php:752 +#: ../../Zotlabs/Module/Connedit.php:705 msgid "This connection's primary address is" msgstr "Indirizzo primario di questo canale" -#: ../../Zotlabs/Module/Connedit.php:753 +#: ../../Zotlabs/Module/Connedit.php:706 msgid "Available locations:" msgstr "Indirizzi disponibili" -#: ../../Zotlabs/Module/Connedit.php:757 +#: ../../Zotlabs/Module/Connedit.php:710 msgid "" "The permissions indicated on this page will be applied to all new " "connections." msgstr "I permessi indicati su questa pagina saranno applicati a tutti i nuovi contatti da ora in poi." -#: ../../Zotlabs/Module/Connedit.php:758 +#: ../../Zotlabs/Module/Connedit.php:711 msgid "Connection Tools" msgstr "Gestione dei contatti" -#: ../../Zotlabs/Module/Connedit.php:760 +#: ../../Zotlabs/Module/Connedit.php:713 msgid "Slide to adjust your degree of friendship" msgstr "Trascina per restringere il grado di amicizia da mostrare" -#: ../../Zotlabs/Module/Connedit.php:761 ../../Zotlabs/Module/Rate.php:159 +#: ../../Zotlabs/Module/Connedit.php:714 ../../Zotlabs/Module/Rate.php:159 #: ../../include/js_strings.php:20 msgid "Rating" msgstr "Valutazioni" -#: ../../Zotlabs/Module/Connedit.php:762 +#: ../../Zotlabs/Module/Connedit.php:715 msgid "Slide to adjust your rating" msgstr "Trascina per cambiare la tua valutazione" -#: ../../Zotlabs/Module/Connedit.php:763 ../../Zotlabs/Module/Connedit.php:768 +#: ../../Zotlabs/Module/Connedit.php:716 ../../Zotlabs/Module/Connedit.php:721 msgid "Optionally explain your rating" msgstr "Commento facoltativo" -#: ../../Zotlabs/Module/Connedit.php:765 +#: ../../Zotlabs/Module/Connedit.php:718 msgid "Custom Filter" msgstr "Filtro personalizzato" -#: ../../Zotlabs/Module/Connedit.php:766 +#: ../../Zotlabs/Module/Connedit.php:719 msgid "Only import posts with this text" msgstr "Importa solo i post che contengono queste parole chiave" -#: ../../Zotlabs/Module/Connedit.php:766 ../../Zotlabs/Module/Connedit.php:767 +#: ../../Zotlabs/Module/Connedit.php:719 ../../Zotlabs/Module/Connedit.php:720 msgid "" "words one per line or #tags or /patterns/ or lang=xx, leave blank to import " "all posts" msgstr "per ogni riga: parole, #tag, /pattern/ o lang=xx , lascia vuoto per importare tutto" -#: ../../Zotlabs/Module/Connedit.php:767 +#: ../../Zotlabs/Module/Connedit.php:720 msgid "Do not import posts with this text" msgstr "Non importare i post con queste parole chiave" -#: ../../Zotlabs/Module/Connedit.php:769 +#: ../../Zotlabs/Module/Connedit.php:722 msgid "This information is public!" msgstr "Questa informazione è pubblica!" -#: ../../Zotlabs/Module/Connedit.php:774 +#: ../../Zotlabs/Module/Connedit.php:727 msgid "Connection Pending Approval" msgstr "Contatti in attesa di approvazione" -#: ../../Zotlabs/Module/Connedit.php:777 +#: ../../Zotlabs/Module/Connedit.php:730 msgid "inherited" msgstr "derivato" -#: ../../Zotlabs/Module/Connedit.php:778 ../../Zotlabs/Module/Connect.php:98 -#: ../../Zotlabs/Module/Events.php:474 ../../Zotlabs/Module/Cal.php:338 -#: ../../Zotlabs/Module/Chat.php:196 ../../Zotlabs/Module/Chat.php:238 -#: ../../Zotlabs/Module/Group.php:85 ../../Zotlabs/Module/Appman.php:126 -#: ../../Zotlabs/Module/Pdledit.php:66 -#: ../../Zotlabs/Module/Filestorage.php:161 -#: ../../Zotlabs/Module/Profiles.php:687 ../../Zotlabs/Module/Import.php:560 -#: ../../Zotlabs/Module/Photos.php:675 ../../Zotlabs/Module/Photos.php:1050 -#: ../../Zotlabs/Module/Photos.php:1090 ../../Zotlabs/Module/Photos.php:1208 -#: ../../Zotlabs/Module/Import_items.php:122 -#: ../../Zotlabs/Module/Invite.php:146 ../../Zotlabs/Module/Locs.php:121 -#: ../../Zotlabs/Module/Mail.php:370 ../../Zotlabs/Module/Mood.php:139 -#: ../../Zotlabs/Module/Mitem.php:235 ../../Zotlabs/Module/Admin.php:492 -#: ../../Zotlabs/Module/Admin.php:688 ../../Zotlabs/Module/Admin.php:771 -#: ../../Zotlabs/Module/Admin.php:1032 ../../Zotlabs/Module/Admin.php:1211 -#: ../../Zotlabs/Module/Admin.php:1421 ../../Zotlabs/Module/Admin.php:1648 -#: ../../Zotlabs/Module/Admin.php:1733 ../../Zotlabs/Module/Admin.php:2116 -#: ../../Zotlabs/Module/Poke.php:186 ../../Zotlabs/Module/Pconfig.php:107 -#: ../../Zotlabs/Module/Rate.php:170 ../../Zotlabs/Module/Settings.php:644 -#: ../../Zotlabs/Module/Settings.php:757 ../../Zotlabs/Module/Settings.php:806 -#: ../../Zotlabs/Module/Settings.php:832 ../../Zotlabs/Module/Settings.php:855 -#: ../../Zotlabs/Module/Settings.php:943 -#: ../../Zotlabs/Module/Settings.php:1129 ../../Zotlabs/Module/Setup.php:312 -#: ../../Zotlabs/Module/Setup.php:353 ../../Zotlabs/Module/Thing.php:316 -#: ../../Zotlabs/Module/Thing.php:362 ../../Zotlabs/Module/Sources.php:114 -#: ../../Zotlabs/Module/Sources.php:149 ../../Zotlabs/Module/Xchan.php:15 -#: ../../Zotlabs/Lib/ThreadItem.php:710 ../../include/widgets.php:763 -#: ../../include/js_strings.php:22 ../../view/theme/redbasic/php/config.php:99 -msgid "Submit" -msgstr "Salva" - -#: ../../Zotlabs/Module/Connedit.php:779 +#: ../../Zotlabs/Module/Connedit.php:732 #, php-format 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 dopo che ha effettuato l'accesso." -#: ../../Zotlabs/Module/Connedit.php:781 +#: ../../Zotlabs/Module/Connedit.php:734 msgid "Their Settings" msgstr "Permessi concessi a te" -#: ../../Zotlabs/Module/Connedit.php:782 +#: ../../Zotlabs/Module/Connedit.php:735 msgid "My Settings" msgstr "Permessi che concedo" -#: ../../Zotlabs/Module/Connedit.php:784 +#: ../../Zotlabs/Module/Connedit.php:737 msgid "Individual Permissions" msgstr "Permessi individuali" -#: ../../Zotlabs/Module/Connedit.php:785 +#: ../../Zotlabs/Module/Connedit.php:738 msgid "" "Some permissions may be inherited from your channel's privacy settings, which have higher " @@ -775,7 +880,7 @@ msgid "" " settings here." msgstr "Alcuni permessi derivano dalle impostazioni di privacy del tuo canale, che hanno priorità assoluta su qualsiasi altra impostazione scelta per i singoli contatti. Da questa pagina non puoi cambiarle." -#: ../../Zotlabs/Module/Connedit.php:786 +#: ../../Zotlabs/Module/Connedit.php:739 msgid "" "Some permissions may be inherited from your channel's privacy settings, which have higher " @@ -783,121 +888,17 @@ msgid "" "they wont have any impact unless the inherited setting changes." msgstr "Alcuni permessi derivano dalle impostazioni di privacy del tuo canale, che hanno priorità assoluta su qualsiasi altra impostazione scelta per i singoli contatti. Le personalizzazioni che effettuerai qui potrebbero non essere effettive a meno che tu non cambi le impostazioni generali." -#: ../../Zotlabs/Module/Connedit.php:787 +#: ../../Zotlabs/Module/Connedit.php:740 msgid "Last update:" msgstr "Ultimo aggiornamento:" -#: ../../Zotlabs/Module/Display.php:17 ../../Zotlabs/Module/Directory.php:63 -#: ../../Zotlabs/Module/Photos.php:520 ../../Zotlabs/Module/Ratings.php:86 +#: ../../Zotlabs/Module/Directory.php:63 ../../Zotlabs/Module/Display.php:17 +#: ../../Zotlabs/Module/Photos.php:522 ../../Zotlabs/Module/Ratings.php:86 #: ../../Zotlabs/Module/Search.php:17 -#: ../../Zotlabs/Module/Viewconnections.php:23 +#: ../../Zotlabs/Module/Viewconnections.php:20 msgid "Public access denied." msgstr "Accesso pubblico negato." -#: ../../Zotlabs/Module/Display.php:40 ../../Zotlabs/Module/Filestorage.php:32 -#: ../../Zotlabs/Module/Admin.php:164 ../../Zotlabs/Module/Admin.php:1255 -#: ../../Zotlabs/Module/Admin.php:1561 ../../Zotlabs/Module/Thing.php:89 -#: ../../Zotlabs/Module/Viewsrc.php:24 ../../include/items.php:3369 -msgid "Item not found." -msgstr "Elemento non trovato." - -#: ../../Zotlabs/Module/Id.php:13 -msgid "First Name" -msgstr "Nome" - -#: ../../Zotlabs/Module/Id.php:14 -msgid "Last Name" -msgstr "Cognome" - -#: ../../Zotlabs/Module/Id.php:15 -msgid "Nickname" -msgstr "Nick" - -#: ../../Zotlabs/Module/Id.php:16 -msgid "Full Name" -msgstr "Nome e cognome" - -#: ../../Zotlabs/Module/Id.php:17 ../../Zotlabs/Module/Id.php:18 -#: ../../Zotlabs/Module/Admin.php:1035 ../../Zotlabs/Module/Admin.php:1047 -#: ../../include/network.php:2203 -msgid "Email" -msgstr "Email" - -#: ../../Zotlabs/Module/Id.php:19 ../../Zotlabs/Module/Id.php:20 -#: ../../Zotlabs/Module/Id.php:21 ../../Zotlabs/Lib/Apps.php:238 -msgid "Profile Photo" -msgstr "Foto del profilo" - -#: ../../Zotlabs/Module/Id.php:22 -msgid "Profile Photo 16px" -msgstr "Foto del profilo 16px" - -#: ../../Zotlabs/Module/Id.php:23 -msgid "Profile Photo 32px" -msgstr "Foto del profilo 32px" - -#: ../../Zotlabs/Module/Id.php:24 -msgid "Profile Photo 48px" -msgstr "Foto del profilo 48px" - -#: ../../Zotlabs/Module/Id.php:25 -msgid "Profile Photo 64px" -msgstr "Foto del profilo 64px" - -#: ../../Zotlabs/Module/Id.php:26 -msgid "Profile Photo 80px" -msgstr "Foto del profilo 80px" - -#: ../../Zotlabs/Module/Id.php:27 -msgid "Profile Photo 128px" -msgstr "Foto del profilo 128px" - -#: ../../Zotlabs/Module/Id.php:28 -msgid "Timezone" -msgstr "Fuso orario" - -#: ../../Zotlabs/Module/Id.php:29 ../../Zotlabs/Module/Profiles.php:731 -msgid "Homepage URL" -msgstr "Indirizzo home page" - -#: ../../Zotlabs/Module/Id.php:30 ../../Zotlabs/Lib/Apps.php:236 -msgid "Language" -msgstr "Lingua" - -#: ../../Zotlabs/Module/Id.php:31 -msgid "Birth Year" -msgstr "Anno di nascita" - -#: ../../Zotlabs/Module/Id.php:32 -msgid "Birth Month" -msgstr "Mese di nascita" - -#: ../../Zotlabs/Module/Id.php:33 -msgid "Birth Day" -msgstr "Giorno di nascita" - -#: ../../Zotlabs/Module/Id.php:34 -msgid "Birthdate" -msgstr "Data di nascita" - -#: ../../Zotlabs/Module/Id.php:35 ../../Zotlabs/Module/Profiles.php:454 -msgid "Gender" -msgstr "Sesso" - -#: ../../Zotlabs/Module/Id.php:108 ../../include/selectors.php:49 -#: ../../include/selectors.php:66 -msgid "Male" -msgstr "Maschio" - -#: ../../Zotlabs/Module/Id.php:110 ../../include/selectors.php:49 -#: ../../include/selectors.php:66 -msgid "Female" -msgstr "Femmina" - -#: ../../Zotlabs/Module/Follow.php:34 -msgid "Channel added." -msgstr "Canale aggiunto." - #: ../../Zotlabs/Module/Directory.php:243 #, php-format msgid "%d rating" @@ -917,12 +918,12 @@ msgstr "Stato:" msgid "Homepage: " msgstr "Homepage:" -#: ../../Zotlabs/Module/Directory.php:306 ../../include/channel.php:1223 +#: ../../Zotlabs/Module/Directory.php:306 ../../include/channel.php:1183 msgid "Age:" msgstr "Età:" -#: ../../Zotlabs/Module/Directory.php:311 ../../include/channel.php:1066 -#: ../../include/event.php:52 ../../include/event.php:84 +#: ../../Zotlabs/Module/Directory.php:311 ../../include/event.php:52 +#: ../../include/event.php:84 ../../include/channel.php:1027 #: ../../include/bb2diaspora.php:507 msgid "Location:" msgstr "Luogo:" @@ -931,18 +932,18 @@ msgstr "Luogo:" msgid "Description:" msgstr "Descrizione:" -#: ../../Zotlabs/Module/Directory.php:322 ../../include/channel.php:1239 +#: ../../Zotlabs/Module/Directory.php:322 ../../include/channel.php:1199 msgid "Hometown:" msgstr "Città dove vivo:" -#: ../../Zotlabs/Module/Directory.php:324 ../../include/channel.php:1247 +#: ../../Zotlabs/Module/Directory.php:324 ../../include/channel.php:1207 msgid "About:" msgstr "Informazioni:" #: ../../Zotlabs/Module/Directory.php:325 ../../Zotlabs/Module/Match.php:68 -#: ../../Zotlabs/Module/Suggest.php:56 ../../include/channel.php:1051 -#: ../../include/connections.php:78 ../../include/conversation.php:959 -#: ../../include/widgets.php:147 ../../include/widgets.php:184 +#: ../../Zotlabs/Module/Suggest.php:56 ../../include/widgets.php:147 +#: ../../include/widgets.php:184 ../../include/connections.php:78 +#: ../../include/conversation.php:956 ../../include/channel.php:1012 msgid "Connect" msgstr "Aggiungi" @@ -1018,322 +1019,38 @@ msgstr "Prima i più vecchi" msgid "No entries (some entries may be hidden)." msgstr "Nessun risultato (qualche elemento potrebbe essere nascosto)." -#: ../../Zotlabs/Module/Connect.php:61 ../../Zotlabs/Module/Connect.php:109 -msgid "Continue" -msgstr "Continua" +#: ../../Zotlabs/Module/Display.php:40 ../../Zotlabs/Module/Filestorage.php:33 +#: ../../Zotlabs/Module/Admin.php:164 ../../Zotlabs/Module/Admin.php:1255 +#: ../../Zotlabs/Module/Admin.php:1561 ../../Zotlabs/Module/Thing.php:89 +#: ../../Zotlabs/Module/Viewsrc.php:24 ../../include/items.php:3359 +msgid "Item not found." +msgstr "Elemento non trovato." -#: ../../Zotlabs/Module/Connect.php:90 -msgid "Premium Channel Setup" -msgstr "Canale premium - configurazione" - -#: ../../Zotlabs/Module/Connect.php:92 -msgid "Enable premium channel connection restrictions" -msgstr "Abilita le restrizioni del canale premium" - -#: ../../Zotlabs/Module/Connect.php:93 -msgid "" -"Please enter your restrictions or conditions, such as paypal receipt, usage " -"guidelines, etc." -msgstr "Scrivi le condizioni d'uso e le restrizioni di questo canale, come per esempio le linee guida, il sistema di pagamento, ecc." - -#: ../../Zotlabs/Module/Connect.php:95 ../../Zotlabs/Module/Connect.php:115 -msgid "" -"This channel may require additional steps or acknowledgement of the " -"following conditions prior to connecting:" -msgstr "Prima di connetterti a questo canale è necessario che tu accetti le seguenti condizioni:" - -#: ../../Zotlabs/Module/Connect.php:96 -msgid "" -"Potential connections will then see the following text before proceeding:" -msgstr "Il testo seguente comparirà a chi vorrà seguire il canale:" - -#: ../../Zotlabs/Module/Connect.php:97 ../../Zotlabs/Module/Connect.php:118 -msgid "" -"By continuing, I certify that I have complied with any instructions provided" -" on this page." -msgstr "Continuando dichiaro di aver seguito tutte le indicazioni e le istruzioni fornite in questa pagina." - -#: ../../Zotlabs/Module/Connect.php:106 -msgid "(No specific instructions have been provided by the channel owner.)" -msgstr "(Il gestore del canale non ha fornito istruzioni specifiche)" - -#: ../../Zotlabs/Module/Connect.php:114 -msgid "Restricted or Premium Channel" -msgstr "Canale premium - con restrizioni" - -#: ../../Zotlabs/Module/Events.php:25 -msgid "Calendar entries imported." -msgstr "Le voci del calendario sono state importate." - -#: ../../Zotlabs/Module/Events.php:27 -msgid "No calendar entries found." -msgstr "Non sono state trovate voci del calendario." - -#: ../../Zotlabs/Module/Events.php:104 -msgid "Event can not end before it has started." -msgstr "Un evento non può terminare prima del suo inizio." - -#: ../../Zotlabs/Module/Events.php:106 ../../Zotlabs/Module/Events.php:115 -#: ../../Zotlabs/Module/Events.php:135 -msgid "Unable to generate preview." -msgstr "Impossibile creare un'anteprima." - -#: ../../Zotlabs/Module/Events.php:113 -msgid "Event title and start time are required." -msgstr "Sono necessari il titolo e l'ora d'inizio dell'evento." - -#: ../../Zotlabs/Module/Events.php:133 ../../Zotlabs/Module/Events.php:258 -msgid "Event not found." -msgstr "Evento non trovato." - -#: ../../Zotlabs/Module/Events.php:253 ../../Zotlabs/Module/Like.php:372 -#: ../../Zotlabs/Module/Tagger.php:51 ../../include/conversation.php:123 -#: ../../include/text.php:1924 ../../include/event.php:951 -msgid "event" -msgstr "l'evento" - -#: ../../Zotlabs/Module/Events.php:448 -msgid "Edit event title" -msgstr "Modifica il titolo dell'evento" - -#: ../../Zotlabs/Module/Events.php:448 -msgid "Event title" -msgstr "Titolo dell'evento" - -#: ../../Zotlabs/Module/Events.php:448 ../../Zotlabs/Module/Events.php:453 -#: ../../Zotlabs/Module/Appman.php:115 ../../Zotlabs/Module/Appman.php:116 -#: ../../Zotlabs/Module/Profiles.php:709 ../../Zotlabs/Module/Profiles.php:713 -#: ../../include/datetime.php:245 -msgid "Required" -msgstr "Obbligatorio" - -#: ../../Zotlabs/Module/Events.php:450 -msgid "Categories (comma-separated list)" -msgstr "Categorie (separate da virgola)" - -#: ../../Zotlabs/Module/Events.php:451 -msgid "Edit Category" -msgstr "Modifica la categoria" - -#: ../../Zotlabs/Module/Events.php:451 -msgid "Category" -msgstr "Categoria" - -#: ../../Zotlabs/Module/Events.php:454 -msgid "Edit start date and time" -msgstr "Modifica data/ora di inizio" - -#: ../../Zotlabs/Module/Events.php:454 -msgid "Start date and time" -msgstr "Data e ora di inizio" - -#: ../../Zotlabs/Module/Events.php:455 ../../Zotlabs/Module/Events.php:458 -msgid "Finish date and time are not known or not relevant" -msgstr "La data e l'ora di fine non sono necessarie" - -#: ../../Zotlabs/Module/Events.php:457 -msgid "Edit finish date and time" -msgstr "Modifica data/ora di fine" - -#: ../../Zotlabs/Module/Events.php:457 -msgid "Finish date and time" -msgstr "Data e ora di fine" - -#: ../../Zotlabs/Module/Events.php:459 ../../Zotlabs/Module/Events.php:460 -msgid "Adjust for viewer timezone" -msgstr "Adatta al fuso orario di chi legge" - -#: ../../Zotlabs/Module/Events.php:459 -msgid "" -"Important for events that happen in a particular place. Not practical for " -"global holidays." -msgstr "Importante per eventi che avvengono online ma con un certo fuso orario." - -#: ../../Zotlabs/Module/Events.php:461 -msgid "Edit Description" -msgstr "Modifica la descrizione" - -#: ../../Zotlabs/Module/Events.php:461 ../../Zotlabs/Module/Appman.php:117 -#: ../../Zotlabs/Module/Rbmark.php:101 -msgid "Description" -msgstr "Descrizione" - -#: ../../Zotlabs/Module/Events.php:463 -msgid "Edit Location" -msgstr "Modifica il luogo" - -#: ../../Zotlabs/Module/Events.php:463 ../../Zotlabs/Module/Profiles.php:477 -#: ../../Zotlabs/Module/Profiles.php:698 ../../Zotlabs/Module/Locs.php:117 -#: ../../Zotlabs/Module/Pubsites.php:41 ../../include/js_strings.php:25 -msgid "Location" -msgstr "Posizione geografica" - -#: ../../Zotlabs/Module/Events.php:466 ../../Zotlabs/Module/Events.php:468 -msgid "Share this event" -msgstr "Condividi questo evento" - -#: ../../Zotlabs/Module/Events.php:469 ../../Zotlabs/Module/Photos.php:1091 -#: ../../Zotlabs/Module/Webpages.php:201 ../../Zotlabs/Lib/ThreadItem.php:719 -#: ../../include/page_widgets.php:43 ../../include/conversation.php:1198 -msgid "Preview" -msgstr "Anteprima" - -#: ../../Zotlabs/Module/Events.php:470 ../../include/conversation.php:1247 -msgid "Permission settings" -msgstr "Permessi dei tuoi contatti" - -#: ../../Zotlabs/Module/Events.php:475 -msgid "Advanced Options" -msgstr "Opzioni avanzate" - -#: ../../Zotlabs/Module/Events.php:587 ../../Zotlabs/Module/Cal.php:259 -msgid "l, F j" -msgstr "l j F" - -#: ../../Zotlabs/Module/Events.php:609 -msgid "Edit event" -msgstr "Modifica l'evento" - -#: ../../Zotlabs/Module/Events.php:611 -msgid "Delete event" -msgstr "Elimina l'evento" - -#: ../../Zotlabs/Module/Events.php:636 ../../Zotlabs/Module/Cal.php:308 -#: ../../include/text.php:1712 -msgid "Link to Source" -msgstr "Link al sito d'origine" - -#: ../../Zotlabs/Module/Events.php:645 -msgid "calendar" -msgstr "calendario" - -#: ../../Zotlabs/Module/Events.php:664 ../../Zotlabs/Module/Cal.php:331 -msgid "Edit Event" -msgstr "Modifica l'evento" - -#: ../../Zotlabs/Module/Events.php:664 ../../Zotlabs/Module/Cal.php:331 -msgid "Create Event" -msgstr "Crea un evento" - -#: ../../Zotlabs/Module/Events.php:665 ../../Zotlabs/Module/Events.php:674 -#: ../../Zotlabs/Module/Cal.php:332 ../../Zotlabs/Module/Cal.php:339 -#: ../../Zotlabs/Module/Photos.php:947 -msgid "Previous" -msgstr "Precendente" - -#: ../../Zotlabs/Module/Events.php:666 ../../Zotlabs/Module/Events.php:675 -#: ../../Zotlabs/Module/Cal.php:333 ../../Zotlabs/Module/Cal.php:340 -#: ../../Zotlabs/Module/Photos.php:956 ../../Zotlabs/Module/Setup.php:267 -msgid "Next" -msgstr "Successivo" - -#: ../../Zotlabs/Module/Events.php:667 ../../Zotlabs/Module/Cal.php:334 -msgid "Export" -msgstr "Esporta" - -#: ../../Zotlabs/Module/Events.php:670 ../../Zotlabs/Module/Layouts.php:197 -#: ../../Zotlabs/Module/Pubsites.php:47 ../../Zotlabs/Module/Blocks.php:166 -#: ../../Zotlabs/Module/Webpages.php:200 ../../include/page_widgets.php:42 -msgid "View" -msgstr "Guarda" - -#: ../../Zotlabs/Module/Events.php:671 -msgid "Month" -msgstr "Mese" - -#: ../../Zotlabs/Module/Events.php:672 -msgid "Week" -msgstr "Settimana" - -#: ../../Zotlabs/Module/Events.php:673 -msgid "Day" -msgstr "Giorno" - -#: ../../Zotlabs/Module/Events.php:676 ../../Zotlabs/Module/Cal.php:341 -msgid "Today" -msgstr "Oggi" - -#: ../../Zotlabs/Module/Events.php:707 -msgid "Event removed" -msgstr "Evento eliminato" - -#: ../../Zotlabs/Module/Events.php:710 -msgid "Failed to remove event" -msgstr "Impossibile eliminare l'evento" - -#: ../../Zotlabs/Module/Bookmarks.php:53 -msgid "Bookmark added" -msgstr "Segnalibro aggiunto" - -#: ../../Zotlabs/Module/Bookmarks.php:75 -msgid "My Bookmarks" -msgstr "I miei segnalibri" - -#: ../../Zotlabs/Module/Bookmarks.php:86 -msgid "My Connections Bookmarks" -msgstr "I segnalibri dei miei contatti" - -#: ../../Zotlabs/Module/Editpost.php:24 ../../Zotlabs/Module/Editlayout.php:79 -#: ../../Zotlabs/Module/Editwebpage.php:80 #: ../../Zotlabs/Module/Editblock.php:79 ../../Zotlabs/Module/Editblock.php:95 +#: ../../Zotlabs/Module/Editpost.php:24 ../../Zotlabs/Module/Editlayout.php:79 +#: ../../Zotlabs/Module/Editwebpage.php:81 msgid "Item not found" msgstr "Elemento non trovato" -#: ../../Zotlabs/Module/Editpost.php:35 -msgid "Item is not editable" -msgstr "L'elemento non è modificabile" +#: ../../Zotlabs/Module/Editblock.php:124 ../../include/conversation.php:1228 +msgid "Title (optional)" +msgstr "Titolo (facoltativo)" -#: ../../Zotlabs/Module/Editpost.php:106 ../../Zotlabs/Module/Rpost.php:134 -msgid "Edit post" -msgstr "Modifica post" +#: ../../Zotlabs/Module/Editblock.php:133 +msgid "Edit Block" +msgstr "Modifica il block" -#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:222 -#: ../../include/nav.php:92 ../../include/conversation.php:1647 -msgid "Photos" -msgstr "Foto" +#: ../../Zotlabs/Module/Common.php:14 +msgid "No channel." +msgstr "Nessun canale." -#: ../../Zotlabs/Module/Fbrowser.php:66 ../../Zotlabs/Module/Fbrowser.php:88 -#: ../../Zotlabs/Module/Admin.php:1406 ../../Zotlabs/Module/Settings.php:645 -#: ../../Zotlabs/Module/Settings.php:671 ../../Zotlabs/Module/Tagrm.php:15 -#: ../../Zotlabs/Module/Tagrm.php:138 ../../Zotlabs/Module/Wiki.php:166 -#: ../../Zotlabs/Module/Wiki.php:202 ../../include/conversation.php:1235 -#: ../../include/conversation.php:1274 -msgid "Cancel" -msgstr "Annulla" +#: ../../Zotlabs/Module/Common.php:43 +msgid "Common connections" +msgstr "Contatti in comune" -#: ../../Zotlabs/Module/Page.php:40 ../../Zotlabs/Module/Block.php:31 -msgid "Invalid item." -msgstr "Elemento non valido." - -#: ../../Zotlabs/Module/Page.php:56 ../../Zotlabs/Module/Cal.php:62 -#: ../../Zotlabs/Module/Block.php:43 ../../Zotlabs/Module/Wall_upload.php:33 -msgid "Channel not found." -msgstr "Canale non trovato." - -#: ../../Zotlabs/Module/Page.php:131 -msgid "" -"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod " -"tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam," -" quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo " -"consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse " -"cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat " -"non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." -msgstr "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." - -#: ../../Zotlabs/Module/Filer.php:52 -msgid "Save to Folder:" -msgstr "Salva nella cartella:" - -#: ../../Zotlabs/Module/Filer.php:52 -msgid "- select -" -msgstr "- scegli -" - -#: ../../Zotlabs/Module/Filer.php:53 ../../Zotlabs/Module/Admin.php:2033 -#: ../../Zotlabs/Module/Admin.php:2053 ../../Zotlabs/Module/Rbmark.php:32 -#: ../../Zotlabs/Module/Rbmark.php:104 ../../include/text.php:926 -#: ../../include/text.php:938 ../../include/widgets.php:201 -msgid "Save" -msgstr "Salva" +#: ../../Zotlabs/Module/Common.php:48 +msgid "No connections in common." +msgstr "Nessun contatto in comune." #: ../../Zotlabs/Module/Connections.php:56 #: ../../Zotlabs/Module/Connections.php:161 @@ -1361,7 +1078,7 @@ msgstr "Archiviati" #: ../../Zotlabs/Module/Connections.php:76 #: ../../Zotlabs/Module/Connections.php:86 ../../Zotlabs/Module/Menu.php:116 -#: ../../include/conversation.php:1550 +#: ../../include/conversation.php:1535 msgid "New" msgstr "Novità" @@ -1448,15 +1165,15 @@ msgstr "Ignora il contatto" msgid "Recent activity" msgstr "Attività recenti" -#: ../../Zotlabs/Module/Connections.php:302 ../../Zotlabs/Lib/Apps.php:209 -#: ../../include/nav.php:188 ../../include/text.php:855 +#: ../../Zotlabs/Module/Connections.php:302 ../../Zotlabs/Lib/Apps.php:208 +#: ../../include/text.php:875 ../../include/nav.php:186 msgid "Connections" msgstr "Contatti" #: ../../Zotlabs/Module/Connections.php:306 ../../Zotlabs/Module/Search.php:44 -#: ../../Zotlabs/Lib/Apps.php:230 ../../include/nav.php:167 -#: ../../include/text.php:925 ../../include/text.php:937 -#: ../../include/acl_selectors.php:274 +#: ../../Zotlabs/Lib/Apps.php:228 ../../include/text.php:945 +#: ../../include/text.php:957 ../../include/nav.php:165 +#: ../../include/acl_selectors.php:276 msgid "Search" msgstr "Cerca" @@ -1469,7 +1186,7 @@ msgid "Connections search" msgstr "Ricerca tra i contatti" #: ../../Zotlabs/Module/Cover_photo.php:58 -#: ../../Zotlabs/Module/Profile_photo.php:61 +#: ../../Zotlabs/Module/Profile_photo.php:79 msgid "Image uploaded but image cropping failed." msgstr "L'immagine è stata caricata, ma il non è stato possibile ritagliarla." @@ -1479,66 +1196,66 @@ msgid "Cover Photos" msgstr "Copertine del canale" #: ../../Zotlabs/Module/Cover_photo.php:154 -#: ../../Zotlabs/Module/Profile_photo.php:135 +#: ../../Zotlabs/Module/Profile_photo.php:133 msgid "Image resize failed." msgstr "Il ridimensionamento dell'immagine è fallito." #: ../../Zotlabs/Module/Cover_photo.php:168 -#: ../../Zotlabs/Module/Profile_photo.php:196 ../../include/photos.php:148 +#: ../../Zotlabs/Module/Profile_photo.php:192 ../../include/photos.php:144 msgid "Unable to process image" msgstr "Impossibile elaborare l'immagine" #: ../../Zotlabs/Module/Cover_photo.php:192 -#: ../../Zotlabs/Module/Profile_photo.php:223 +#: ../../Zotlabs/Module/Profile_photo.php:217 msgid "Image upload failed." msgstr "Il caricamento dell'immagine è fallito." #: ../../Zotlabs/Module/Cover_photo.php:210 -#: ../../Zotlabs/Module/Profile_photo.php:242 +#: ../../Zotlabs/Module/Profile_photo.php:236 msgid "Unable to process image." msgstr "Impossibile elaborare l'immagine." -#: ../../Zotlabs/Module/Cover_photo.php:233 ../../include/items.php:4283 +#: ../../Zotlabs/Module/Cover_photo.php:233 ../../include/items.php:4270 msgid "female" msgstr "femmina" -#: ../../Zotlabs/Module/Cover_photo.php:234 ../../include/items.php:4284 +#: ../../Zotlabs/Module/Cover_photo.php:234 ../../include/items.php:4271 #, php-format msgid "%1$s updated her %2$s" msgstr "Aggiornamento: %2$s di %1$s" -#: ../../Zotlabs/Module/Cover_photo.php:235 ../../include/items.php:4285 +#: ../../Zotlabs/Module/Cover_photo.php:235 ../../include/items.php:4272 msgid "male" msgstr "maschio" -#: ../../Zotlabs/Module/Cover_photo.php:236 ../../include/items.php:4286 +#: ../../Zotlabs/Module/Cover_photo.php:236 ../../include/items.php:4273 #, php-format msgid "%1$s updated his %2$s" msgstr "Aggiornamento: %2$s di %1$s" -#: ../../Zotlabs/Module/Cover_photo.php:238 ../../include/items.php:4288 +#: ../../Zotlabs/Module/Cover_photo.php:238 ../../include/items.php:4275 #, php-format msgid "%1$s updated their %2$s" msgstr "Aggiornamento: %2$s di %1$s" -#: ../../Zotlabs/Module/Cover_photo.php:240 ../../include/channel.php:1726 +#: ../../Zotlabs/Module/Cover_photo.php:240 ../../include/channel.php:1661 msgid "cover photo" msgstr "Copertina del canale" #: ../../Zotlabs/Module/Cover_photo.php:303 #: ../../Zotlabs/Module/Cover_photo.php:318 -#: ../../Zotlabs/Module/Profile_photo.php:300 -#: ../../Zotlabs/Module/Profile_photo.php:341 +#: ../../Zotlabs/Module/Profile_photo.php:283 +#: ../../Zotlabs/Module/Profile_photo.php:324 msgid "Photo not available." msgstr "Foto non disponibile." #: ../../Zotlabs/Module/Cover_photo.php:354 -#: ../../Zotlabs/Module/Profile_photo.php:387 +#: ../../Zotlabs/Module/Profile_photo.php:365 msgid "Upload File:" msgstr "Carica un file:" #: ../../Zotlabs/Module/Cover_photo.php:355 -#: ../../Zotlabs/Module/Profile_photo.php:388 +#: ../../Zotlabs/Module/Profile_photo.php:366 msgid "Select a profile:" msgstr "Seleziona un profilo:" @@ -1547,69 +1264,200 @@ msgid "Upload Cover Photo" msgstr "Carica una copertina" #: ../../Zotlabs/Module/Cover_photo.php:361 -#: ../../Zotlabs/Module/Profile_photo.php:396 -#: ../../Zotlabs/Module/Settings.php:1080 +#: ../../Zotlabs/Module/Profile_photo.php:374 +#: ../../Zotlabs/Module/Settings.php:985 msgid "or" msgstr "o" #: ../../Zotlabs/Module/Cover_photo.php:361 -#: ../../Zotlabs/Module/Profile_photo.php:396 +#: ../../Zotlabs/Module/Profile_photo.php:374 msgid "skip this step" msgstr "salta questo passaggio" #: ../../Zotlabs/Module/Cover_photo.php:361 -#: ../../Zotlabs/Module/Profile_photo.php:396 +#: ../../Zotlabs/Module/Profile_photo.php:374 msgid "select a photo from your photo albums" msgstr "seleziona una foto dai tuoi album" #: ../../Zotlabs/Module/Cover_photo.php:377 -#: ../../Zotlabs/Module/Profile_photo.php:415 +#: ../../Zotlabs/Module/Profile_photo.php:390 msgid "Crop Image" msgstr "Ritaglia immagine" #: ../../Zotlabs/Module/Cover_photo.php:378 -#: ../../Zotlabs/Module/Profile_photo.php:416 +#: ../../Zotlabs/Module/Profile_photo.php:391 msgid "Please adjust the image cropping for optimum viewing." msgstr "Ritaglia l'immagine per migliorarne la visualizzazione." #: ../../Zotlabs/Module/Cover_photo.php:380 -#: ../../Zotlabs/Module/Profile_photo.php:418 +#: ../../Zotlabs/Module/Profile_photo.php:393 msgid "Done Editing" msgstr "Modifica terminata" -#: ../../Zotlabs/Module/Impel.php:41 ../../include/bbcode.php:192 -msgid "webpage" -msgstr "pagina web" +#: ../../Zotlabs/Module/Editpost.php:35 +msgid "Item is not editable" +msgstr "L'elemento non è modificabile" -#: ../../Zotlabs/Module/Impel.php:46 ../../include/bbcode.php:198 -msgid "block" -msgstr "block" +#: ../../Zotlabs/Module/Editpost.php:106 ../../Zotlabs/Module/Rpost.php:135 +msgid "Edit post" +msgstr "Modifica post" -#: ../../Zotlabs/Module/Impel.php:51 ../../include/bbcode.php:195 -msgid "layout" -msgstr "layout" +#: ../../Zotlabs/Module/Events.php:26 +msgid "Calendar entries imported." +msgstr "Le voci del calendario sono state importate." -#: ../../Zotlabs/Module/Impel.php:58 ../../include/bbcode.php:201 -msgid "menu" -msgstr "menu" +#: ../../Zotlabs/Module/Events.php:28 +msgid "No calendar entries found." +msgstr "Non sono state trovate voci del calendario." -#: ../../Zotlabs/Module/Impel.php:187 -#, php-format -msgid "%s element installed" -msgstr "%s elemento installato" +#: ../../Zotlabs/Module/Events.php:105 +msgid "Event can not end before it has started." +msgstr "Un evento non può terminare prima del suo inizio." -#: ../../Zotlabs/Module/Impel.php:190 -#, php-format -msgid "%s element installation failed" -msgstr "Elementi con installazione fallita: %s" +#: ../../Zotlabs/Module/Events.php:107 ../../Zotlabs/Module/Events.php:116 +#: ../../Zotlabs/Module/Events.php:136 +msgid "Unable to generate preview." +msgstr "Impossibile creare un'anteprima." -#: ../../Zotlabs/Module/Cal.php:69 -msgid "Permissions denied." -msgstr "Permesso negato." +#: ../../Zotlabs/Module/Events.php:114 +msgid "Event title and start time are required." +msgstr "Sono necessari il titolo e l'ora d'inizio dell'evento." -#: ../../Zotlabs/Module/Cal.php:337 -msgid "Import" -msgstr "Importa" +#: ../../Zotlabs/Module/Events.php:134 ../../Zotlabs/Module/Events.php:259 +msgid "Event not found." +msgstr "Evento non trovato." + +#: ../../Zotlabs/Module/Events.php:254 ../../Zotlabs/Module/Like.php:373 +#: ../../Zotlabs/Module/Tagger.php:51 ../../include/event.php:949 +#: ../../include/text.php:1943 ../../include/conversation.php:123 +msgid "event" +msgstr "l'evento" + +#: ../../Zotlabs/Module/Events.php:449 +msgid "Edit event title" +msgstr "Modifica il titolo dell'evento" + +#: ../../Zotlabs/Module/Events.php:449 +msgid "Event title" +msgstr "Titolo dell'evento" + +#: ../../Zotlabs/Module/Events.php:449 ../../Zotlabs/Module/Events.php:454 +#: ../../Zotlabs/Module/Profiles.php:709 ../../Zotlabs/Module/Profiles.php:713 +#: ../../Zotlabs/Module/Appman.php:115 ../../Zotlabs/Module/Appman.php:116 +#: ../../include/datetime.php:245 +msgid "Required" +msgstr "Obbligatorio" + +#: ../../Zotlabs/Module/Events.php:451 +msgid "Categories (comma-separated list)" +msgstr "Categorie (separate da virgola)" + +#: ../../Zotlabs/Module/Events.php:452 +msgid "Edit Category" +msgstr "Modifica la categoria" + +#: ../../Zotlabs/Module/Events.php:452 +msgid "Category" +msgstr "Categoria" + +#: ../../Zotlabs/Module/Events.php:455 +msgid "Edit start date and time" +msgstr "Modifica data/ora di inizio" + +#: ../../Zotlabs/Module/Events.php:455 +msgid "Start date and time" +msgstr "Data e ora di inizio" + +#: ../../Zotlabs/Module/Events.php:456 ../../Zotlabs/Module/Events.php:459 +msgid "Finish date and time are not known or not relevant" +msgstr "La data e l'ora di fine non sono necessarie" + +#: ../../Zotlabs/Module/Events.php:458 +msgid "Edit finish date and time" +msgstr "Modifica data/ora di fine" + +#: ../../Zotlabs/Module/Events.php:458 +msgid "Finish date and time" +msgstr "Data e ora di fine" + +#: ../../Zotlabs/Module/Events.php:460 ../../Zotlabs/Module/Events.php:461 +msgid "Adjust for viewer timezone" +msgstr "Adatta al fuso orario di chi legge" + +#: ../../Zotlabs/Module/Events.php:460 +msgid "" +"Important for events that happen in a particular place. Not practical for " +"global holidays." +msgstr "Importante per eventi che avvengono online ma con un certo fuso orario." + +#: ../../Zotlabs/Module/Events.php:462 +msgid "Edit Description" +msgstr "Modifica la descrizione" + +#: ../../Zotlabs/Module/Events.php:462 ../../Zotlabs/Module/Appman.php:117 +#: ../../Zotlabs/Module/Rbmark.php:101 +msgid "Description" +msgstr "Descrizione" + +#: ../../Zotlabs/Module/Events.php:464 +msgid "Edit Location" +msgstr "Modifica il luogo" + +#: ../../Zotlabs/Module/Events.php:464 ../../Zotlabs/Module/Locs.php:117 +#: ../../Zotlabs/Module/Profiles.php:477 ../../Zotlabs/Module/Profiles.php:698 +#: ../../Zotlabs/Module/Pubsites.php:41 ../../include/js_strings.php:25 +msgid "Location" +msgstr "Posizione geografica" + +#: ../../Zotlabs/Module/Events.php:467 ../../Zotlabs/Module/Events.php:469 +msgid "Share this event" +msgstr "Condividi questo evento" + +#: ../../Zotlabs/Module/Events.php:470 ../../Zotlabs/Module/Photos.php:1093 +#: ../../Zotlabs/Module/Webpages.php:194 ../../Zotlabs/Lib/ThreadItem.php:719 +#: ../../include/conversation.php:1187 ../../include/page_widgets.php:40 +msgid "Preview" +msgstr "Anteprima" + +#: ../../Zotlabs/Module/Events.php:471 ../../include/conversation.php:1232 +msgid "Permission settings" +msgstr "Permessi dei tuoi contatti" + +#: ../../Zotlabs/Module/Events.php:476 +msgid "Advanced Options" +msgstr "Opzioni avanzate" + +#: ../../Zotlabs/Module/Events.php:610 +msgid "Edit event" +msgstr "Modifica l'evento" + +#: ../../Zotlabs/Module/Events.php:612 +msgid "Delete event" +msgstr "Elimina l'evento" + +#: ../../Zotlabs/Module/Events.php:646 +msgid "calendar" +msgstr "calendario" + +#: ../../Zotlabs/Module/Events.php:706 +msgid "Event removed" +msgstr "Evento eliminato" + +#: ../../Zotlabs/Module/Events.php:709 +msgid "Failed to remove event" +msgstr "Impossibile eliminare l'evento" + +#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:220 +#: ../../include/nav.php:92 ../../include/conversation.php:1632 +msgid "Photos" +msgstr "Foto" + +#: ../../Zotlabs/Module/Fbrowser.php:66 ../../Zotlabs/Module/Fbrowser.php:88 +#: ../../Zotlabs/Module/Admin.php:1406 ../../Zotlabs/Module/Settings.php:591 +#: ../../Zotlabs/Module/Settings.php:617 ../../Zotlabs/Module/Tagrm.php:15 +#: ../../Zotlabs/Module/Tagrm.php:138 ../../include/conversation.php:1259 +msgid "Cancel" +msgstr "Annulla" #: ../../Zotlabs/Module/Dirsearch.php:25 ../../Zotlabs/Module/Regdir.php:49 msgid "This site is not a directory server" @@ -1619,184 +1467,112 @@ msgstr "Questo non è un directory server" msgid "This directory server requires an access token" msgstr "Questo directory server necessita di un token di autenticazione" -#: ../../Zotlabs/Module/Chat.php:25 ../../Zotlabs/Module/Channel.php:28 -#: ../../Zotlabs/Module/Wiki.php:20 -msgid "You must be logged in to see this page." -msgstr "Devi aver effettuato l'accesso per vedere questa pagina." +#: ../../Zotlabs/Module/Filer.php:52 +msgid "Save to Folder:" +msgstr "Salva nella cartella:" -#: ../../Zotlabs/Module/Chat.php:181 -msgid "Room not found" -msgstr "Chat non trovata" +#: ../../Zotlabs/Module/Filer.php:52 +msgid "- select -" +msgstr "- scegli -" -#: ../../Zotlabs/Module/Chat.php:197 -msgid "Leave Room" -msgstr "Lascia la chat" +#: ../../Zotlabs/Module/Filer.php:53 ../../Zotlabs/Module/Admin.php:2033 +#: ../../Zotlabs/Module/Admin.php:2053 ../../Zotlabs/Module/Rbmark.php:32 +#: ../../Zotlabs/Module/Rbmark.php:104 ../../include/text.php:946 +#: ../../include/text.php:958 ../../include/widgets.php:201 +msgid "Save" +msgstr "Salva" -#: ../../Zotlabs/Module/Chat.php:198 -msgid "Delete Room" -msgstr "Elimina questa chat" - -#: ../../Zotlabs/Module/Chat.php:199 -msgid "I am away right now" -msgstr "Non sono presente" - -#: ../../Zotlabs/Module/Chat.php:200 -msgid "I am online" -msgstr "Sono online" - -#: ../../Zotlabs/Module/Chat.php:202 -msgid "Bookmark this room" -msgstr "Aggiungi questa chat ai segnalibri" - -#: ../../Zotlabs/Module/Chat.php:205 ../../Zotlabs/Module/Mail.php:197 -#: ../../Zotlabs/Module/Mail.php:306 ../../include/conversation.php:1181 -msgid "Please enter a link URL:" -msgstr "Inserisci l'indirizzo del link:" - -#: ../../Zotlabs/Module/Chat.php:206 ../../Zotlabs/Module/Mail.php:250 -#: ../../Zotlabs/Module/Mail.php:375 ../../Zotlabs/Lib/ThreadItem.php:722 -#: ../../include/conversation.php:1271 -msgid "Encrypt text" -msgstr "Cifratura del messaggio" - -#: ../../Zotlabs/Module/Chat.php:207 ../../Zotlabs/Module/Editwebpage.php:146 -#: ../../Zotlabs/Module/Mail.php:244 ../../Zotlabs/Module/Mail.php:369 -#: ../../Zotlabs/Module/Editblock.php:111 ../../include/conversation.php:1146 -msgid "Insert web link" -msgstr "Inserisci un indirizzo web" - -#: ../../Zotlabs/Module/Chat.php:218 -msgid "Feature disabled." -msgstr "Funzionalità disattivata." - -#: ../../Zotlabs/Module/Chat.php:232 -msgid "New Chatroom" -msgstr "Nuova chat" - -#: ../../Zotlabs/Module/Chat.php:233 -msgid "Chatroom name" -msgstr "Nome chat" - -#: ../../Zotlabs/Module/Chat.php:234 -msgid "Expiration of chats (minutes)" -msgstr "Scadenza dei messaggi della chat (minuti)" - -#: ../../Zotlabs/Module/Chat.php:235 ../../Zotlabs/Module/Filestorage.php:152 -#: ../../Zotlabs/Module/Photos.php:669 ../../Zotlabs/Module/Photos.php:1043 -#: ../../Zotlabs/Module/Thing.php:313 ../../Zotlabs/Module/Thing.php:359 -#: ../../include/acl_selectors.php:281 -msgid "Permissions" -msgstr "Permessi" - -#: ../../Zotlabs/Module/Chat.php:246 -#, php-format -msgid "%1$s's Chatrooms" -msgstr "Le chat di %1$s" - -#: ../../Zotlabs/Module/Chat.php:251 -msgid "No chatrooms available" -msgstr "Nessuna chat disponibile" - -#: ../../Zotlabs/Module/Chat.php:252 ../../Zotlabs/Module/Profiles.php:778 -#: ../../Zotlabs/Module/Manage.php:143 -msgid "Create New" -msgstr "Crea nuova" - -#: ../../Zotlabs/Module/Chat.php:255 -msgid "Expiration" -msgstr "Scadenza" - -#: ../../Zotlabs/Module/Chat.php:256 -msgid "min" -msgstr "min" - -#: ../../Zotlabs/Module/Dreport.php:44 +#: ../../Zotlabs/Module/Dreport.php:27 msgid "Invalid message" msgstr "Messaggio non valido" -#: ../../Zotlabs/Module/Dreport.php:76 +#: ../../Zotlabs/Module/Dreport.php:59 msgid "no results" msgstr "nessun risultato" -#: ../../Zotlabs/Module/Dreport.php:91 -msgid "channel sync processed" -msgstr "sincronizzazione del canale effettuata" - -#: ../../Zotlabs/Module/Dreport.php:95 -msgid "queued" -msgstr "in coda" - -#: ../../Zotlabs/Module/Dreport.php:99 -msgid "posted" -msgstr "inviato" - -#: ../../Zotlabs/Module/Dreport.php:103 -msgid "accepted for delivery" -msgstr "accettato per la spedizione" - -#: ../../Zotlabs/Module/Dreport.php:107 -msgid "updated" -msgstr "aggiornato" - -#: ../../Zotlabs/Module/Dreport.php:110 -msgid "update ignored" -msgstr "aggiornamento ignorato" - -#: ../../Zotlabs/Module/Dreport.php:113 -msgid "permission denied" -msgstr "permessi non sufficienti" - -#: ../../Zotlabs/Module/Dreport.php:117 -msgid "recipient not found" -msgstr "Destinatario non trovato" - -#: ../../Zotlabs/Module/Dreport.php:120 -msgid "mail recalled" -msgstr "messaggio richiamato dal mittente" - -#: ../../Zotlabs/Module/Dreport.php:123 -msgid "duplicate mail received" -msgstr "ricevuto messaggio duplicato" - -#: ../../Zotlabs/Module/Dreport.php:126 -msgid "mail delivered" -msgstr "messaggio recapitato" - -#: ../../Zotlabs/Module/Dreport.php:146 +#: ../../Zotlabs/Module/Dreport.php:64 #, php-format msgid "Delivery report for %1$s" msgstr "Rapporto di consegna - %1$s" -#: ../../Zotlabs/Module/Dreport.php:149 -msgid "Options" -msgstr "Opzioni" +#: ../../Zotlabs/Module/Dreport.php:78 +msgid "channel sync processed" +msgstr "sincronizzazione del canale effettuata" -#: ../../Zotlabs/Module/Dreport.php:150 -msgid "Redeliver" -msgstr "Reinvia" +#: ../../Zotlabs/Module/Dreport.php:82 +msgid "queued" +msgstr "in coda" -#: ../../Zotlabs/Module/Editlayout.php:127 -#: ../../Zotlabs/Module/Layouts.php:128 ../../Zotlabs/Module/Layouts.php:188 +#: ../../Zotlabs/Module/Dreport.php:86 +msgid "posted" +msgstr "inviato" + +#: ../../Zotlabs/Module/Dreport.php:90 +msgid "accepted for delivery" +msgstr "accettato per la spedizione" + +#: ../../Zotlabs/Module/Dreport.php:94 +msgid "updated" +msgstr "aggiornato" + +#: ../../Zotlabs/Module/Dreport.php:97 +msgid "update ignored" +msgstr "aggiornamento ignorato" + +#: ../../Zotlabs/Module/Dreport.php:100 +msgid "permission denied" +msgstr "permessi non sufficienti" + +#: ../../Zotlabs/Module/Dreport.php:104 +msgid "recipient not found" +msgstr "Destinatario non trovato" + +#: ../../Zotlabs/Module/Dreport.php:107 +msgid "mail recalled" +msgstr "messaggio richiamato dal mittente" + +#: ../../Zotlabs/Module/Dreport.php:110 +msgid "duplicate mail received" +msgstr "ricevuto messaggio duplicato" + +#: ../../Zotlabs/Module/Dreport.php:113 +msgid "mail delivered" +msgstr "messaggio recapitato" + +#: ../../Zotlabs/Module/Editlayout.php:126 +#: ../../Zotlabs/Module/Layouts.php:127 ../../Zotlabs/Module/Layouts.php:186 msgid "Layout Name" msgstr "Nome layout" -#: ../../Zotlabs/Module/Editlayout.php:128 -#: ../../Zotlabs/Module/Layouts.php:131 +#: ../../Zotlabs/Module/Editlayout.php:127 +#: ../../Zotlabs/Module/Layouts.php:130 msgid "Layout Description (Optional)" msgstr "Descrizione del layout (facoltativa)" -#: ../../Zotlabs/Module/Editlayout.php:136 +#: ../../Zotlabs/Module/Editlayout.php:135 msgid "Edit Layout" msgstr "Modifica il layout" -#: ../../Zotlabs/Module/Editwebpage.php:142 +#: ../../Zotlabs/Module/Editwebpage.php:143 msgid "Page link" msgstr "Link alla pagina" -#: ../../Zotlabs/Module/Editwebpage.php:168 +#: ../../Zotlabs/Module/Editwebpage.php:169 msgid "Edit Webpage" msgstr "Modifica la pagina web" +#: ../../Zotlabs/Module/Follow.php:34 +msgid "Channel added." +msgstr "Canale aggiunto." + +#: ../../Zotlabs/Module/Acl.php:227 +msgid "network" +msgstr "rete" + +#: ../../Zotlabs/Module/Acl.php:237 +msgid "RSS" +msgstr "RSS" + #: ../../Zotlabs/Module/Group.php:24 msgid "Privacy group created." msgstr "Gruppo di canali creato." @@ -1806,7 +1582,7 @@ msgid "Could not create privacy group." msgstr "Impossibile creare il gruppo di canali." #: ../../Zotlabs/Module/Group.php:42 ../../Zotlabs/Module/Group.php:141 -#: ../../include/items.php:3902 +#: ../../include/items.php:3893 msgid "Privacy group not found." msgstr "Gruppo di canali non trovato." @@ -1850,57 +1626,31 @@ msgstr "Tutti i canali connessi" msgid "Click on a channel to add or remove." msgstr "Clicca su un canale per aggiungerlo o rimuoverlo." -#: ../../Zotlabs/Module/Appman.php:37 ../../Zotlabs/Module/Appman.php:53 -msgid "App installed." -msgstr "App installata" +#: ../../Zotlabs/Module/Ffsapi.php:12 +msgid "Share content from Firefox to $Projectname" +msgstr "Condividi i contenuti su $Projectname da Firefox" -#: ../../Zotlabs/Module/Appman.php:46 -msgid "Malformed app." -msgstr "L'app contiene errori" +#: ../../Zotlabs/Module/Ffsapi.php:15 +msgid "Activate the Firefox $Projectname provider" +msgstr "Attiva Firefox Share per $Projectname" -#: ../../Zotlabs/Module/Appman.php:104 -msgid "Embed code" -msgstr "Inserisci il codice" +#: ../../Zotlabs/Module/Api.php:61 ../../Zotlabs/Module/Api.php:85 +msgid "Authorize application connection" +msgstr "Autorizza la app" -#: ../../Zotlabs/Module/Appman.php:110 ../../include/widgets.php:107 -msgid "Edit App" -msgstr "Modifica app" +#: ../../Zotlabs/Module/Api.php:62 +msgid "Return to your app and insert this Securty Code:" +msgstr "Torna alla app e inserisci questo codice di sicurezza:" -#: ../../Zotlabs/Module/Appman.php:110 -msgid "Create App" -msgstr "Crea una app" +#: ../../Zotlabs/Module/Api.php:72 +msgid "Please login to continue." +msgstr "Accedi al sito per continuare." -#: ../../Zotlabs/Module/Appman.php:115 -msgid "Name of app" -msgstr "Nome app" - -#: ../../Zotlabs/Module/Appman.php:116 -msgid "Location (URL) of app" -msgstr "Indirizzo (URL) della app" - -#: ../../Zotlabs/Module/Appman.php:118 -msgid "Photo icon URL" -msgstr "URL icona" - -#: ../../Zotlabs/Module/Appman.php:118 -msgid "80 x 80 pixels - optional" -msgstr "80 x 80 pixel - facoltativa" - -#: ../../Zotlabs/Module/Appman.php:119 -msgid "Categories (optional, comma separated list)" -msgstr "Categorie (facoltative, lista separata da virgole)" - -#: ../../Zotlabs/Module/Appman.php:120 -msgid "Version ID" -msgstr "ID versione" - -#: ../../Zotlabs/Module/Appman.php:121 -msgid "Price of app" -msgstr "Prezzo app" - -#: ../../Zotlabs/Module/Appman.php:122 -msgid "Location (URL) to purchase app" -msgstr "Indirizzo (URL) per acquistare la app" +#: ../../Zotlabs/Module/Api.php:87 +msgid "" +"Do you want to authorize this application to access your posts and contacts," +" and/or create new posts for you?" +msgstr "Vuoi autorizzare questa app ad accedere ai messaggi e ai contatti o creare nuovi messaggi per te?" #: ../../Zotlabs/Module/Help.php:26 msgid "Documentation Search" @@ -1912,8 +1662,8 @@ msgid "Help:" msgstr "Guida:" #: ../../Zotlabs/Module/Help.php:85 ../../Zotlabs/Module/Help.php:90 -#: ../../Zotlabs/Module/Layouts.php:185 ../../Zotlabs/Lib/Apps.php:225 -#: ../../include/nav.php:161 +#: ../../Zotlabs/Module/Layouts.php:183 ../../Zotlabs/Lib/Apps.php:223 +#: ../../include/nav.php:159 msgid "Help" msgstr "Guida" @@ -1921,124 +1671,335 @@ msgstr "Guida" msgid "$Projectname Documentation" msgstr "Guida di $Projectname" +#: ../../Zotlabs/Module/Filestorage.php:88 +msgid "Permission Denied." +msgstr "Permesso negato." + +#: ../../Zotlabs/Module/Filestorage.php:104 +msgid "File not found." +msgstr "File non trovato." + +#: ../../Zotlabs/Module/Filestorage.php:147 +msgid "Edit file permissions" +msgstr "Modifica i permessi del file" + +#: ../../Zotlabs/Module/Filestorage.php:156 +msgid "Set/edit permissions" +msgstr "Modifica i permessi" + +#: ../../Zotlabs/Module/Filestorage.php:157 +msgid "Include all files and sub folders" +msgstr "Includi tutti i file e le sottocartelle" + +#: ../../Zotlabs/Module/Filestorage.php:158 +msgid "Return to file list" +msgstr "Torna all'elenco dei file" + +#: ../../Zotlabs/Module/Filestorage.php:160 +msgid "Copy/paste this code to attach file to a post" +msgstr "Copia/incolla questo codice per far comparire il file in un post" + +#: ../../Zotlabs/Module/Filestorage.php:161 +msgid "Copy/paste this URL to link file from a web page" +msgstr "Copia/incolla questo indirizzo in una pagina web per avere un link al file" + +#: ../../Zotlabs/Module/Filestorage.php:163 +msgid "Share this file" +msgstr "Condividi questo file" + +#: ../../Zotlabs/Module/Filestorage.php:164 +msgid "Show URL to this file" +msgstr "Mostra l'URL del file" + +#: ../../Zotlabs/Module/Filestorage.php:165 +msgid "Notify your contacts about this file" +msgstr "Notifica ai contatti che hai caricato questo file" + +#: ../../Zotlabs/Module/Apps.php:47 ../../include/widgets.php:102 +#: ../../include/nav.php:163 +msgid "Apps" +msgstr "App" + #: ../../Zotlabs/Module/Attach.php:13 msgid "Item not available." msgstr "Elemento non disponibile." -#: ../../Zotlabs/Module/Pdledit.php:18 -msgid "Layout updated." -msgstr "Layout aggiornato." +#: ../../Zotlabs/Module/Import.php:32 +#, php-format +msgid "Your service plan only allows %d channels." +msgstr "Il tuo account permette di creare al massimo %d canali." -#: ../../Zotlabs/Module/Pdledit.php:34 ../../Zotlabs/Module/Pdledit.php:61 -msgid "Edit System Page Description" -msgstr "Modifica i layout di sistema" +#: ../../Zotlabs/Module/Import.php:70 ../../Zotlabs/Module/Import_items.php:42 +msgid "Nothing to import." +msgstr "Non c'è niente da importare." -#: ../../Zotlabs/Module/Pdledit.php:56 -msgid "Layout not found." -msgstr "Layout non trovato." +#: ../../Zotlabs/Module/Import.php:94 ../../Zotlabs/Module/Import_items.php:66 +msgid "Unable to download data from old server" +msgstr "Impossibile importare i dati dal vecchio hub" -#: ../../Zotlabs/Module/Pdledit.php:62 -msgid "Module Name:" -msgstr "Nome del modulo:" +#: ../../Zotlabs/Module/Import.php:100 +#: ../../Zotlabs/Module/Import_items.php:72 +msgid "Imported file is empty." +msgstr "Il file da importare è vuoto." -#: ../../Zotlabs/Module/Pdledit.php:63 -msgid "Layout Help" -msgstr "Guida al layout" +#: ../../Zotlabs/Module/Import.php:122 +#: ../../Zotlabs/Module/Import_items.php:86 +#, php-format +msgid "Warning: Database versions differ by %1$d updates." +msgstr "Attenzione: le versioni di database differiscono di %1$d aggiornamenti." -#: ../../Zotlabs/Module/Ffsapi.php:12 -msgid "Share content from Firefox to $Projectname" -msgstr "Condividi i contenuti su $Projectname da Firefox" +#: ../../Zotlabs/Module/Import.php:150 ../../include/import.php:86 +msgid "Cloned channel not found. Import failed." +msgstr "Impossibile trovare il canale clonato. L'importazione è fallita." -#: ../../Zotlabs/Module/Ffsapi.php:15 -msgid "Activate the Firefox $Projectname provider" -msgstr "Attiva Firefox Share per $Projectname" +#: ../../Zotlabs/Module/Import.php:160 +msgid "No channel. Import failed." +msgstr "Nessun canale. Import fallito." -#: ../../Zotlabs/Module/Acl.php:312 -msgid "network" -msgstr "rete" +#: ../../Zotlabs/Module/Import.php:510 +#: ../../include/Import/import_diaspora.php:142 +msgid "Import completed." +msgstr "L'importazione è terminata con successo." -#: ../../Zotlabs/Module/Acl.php:322 -msgid "RSS" -msgstr "RSS" +#: ../../Zotlabs/Module/Import.php:532 +msgid "You must be logged in to use this feature." +msgstr "Per questa funzionalità devi aver effettuato l'accesso." -#: ../../Zotlabs/Module/Filestorage.php:87 -msgid "Permission Denied." -msgstr "Permesso negato." +#: ../../Zotlabs/Module/Import.php:537 +msgid "Import Channel" +msgstr "Importa un canale" -#: ../../Zotlabs/Module/Filestorage.php:103 -msgid "File not found." -msgstr "File non trovato." +#: ../../Zotlabs/Module/Import.php:538 +msgid "" +"Use this form to import an existing channel from a different server/hub. You" +" may retrieve the channel identity from the old server/hub via the network " +"or provide an export file." +msgstr "Usa questo modulo per importare un tuo canale da un altro hub. Puoi ottenere i dati identificativi del canale direttamente dall'altro hub oppure tramite un file esportato in precedenza." -#: ../../Zotlabs/Module/Filestorage.php:146 -msgid "Edit file permissions" -msgstr "Modifica i permessi del file" +#: ../../Zotlabs/Module/Import.php:539 +#: ../../Zotlabs/Module/Import_items.php:119 +msgid "File to Upload" +msgstr "File da caricare" -#: ../../Zotlabs/Module/Filestorage.php:155 -msgid "Set/edit permissions" -msgstr "Modifica i permessi" +#: ../../Zotlabs/Module/Import.php:540 +msgid "Or provide the old server/hub details" +msgstr "Oppure fornisci i dettagli del vecchio hub" -#: ../../Zotlabs/Module/Filestorage.php:156 -msgid "Include all files and sub folders" -msgstr "Includi tutti i file e le sottocartelle" +#: ../../Zotlabs/Module/Import.php:541 +msgid "Your old identity address (xyz@example.com)" +msgstr "Il tuo vecchio identificativo (per esempio pippo@esempio.com)" -#: ../../Zotlabs/Module/Filestorage.php:157 -msgid "Return to file list" -msgstr "Torna all'elenco dei file" +#: ../../Zotlabs/Module/Import.php:542 +msgid "Your old login email address" +msgstr "L'email che usavi per accedere sul vecchio hub" -#: ../../Zotlabs/Module/Filestorage.php:159 -msgid "Copy/paste this code to attach file to a post" -msgstr "Copia/incolla questo codice per far comparire il file in un post" +#: ../../Zotlabs/Module/Import.php:543 +msgid "Your old login password" +msgstr "La password per il vecchio hub" -#: ../../Zotlabs/Module/Filestorage.php:160 -msgid "Copy/paste this URL to link file from a web page" -msgstr "Copia/incolla questo indirizzo in una pagina web per avere un link al file" +#: ../../Zotlabs/Module/Import.php:544 +msgid "" +"For either option, please choose whether to make this hub your new primary " +"address, or whether your old location should continue this role. You will be" +" able to post from either location, but only one can be marked as the " +"primary location for files, photos, and media." +msgstr "Scegli se vuoi spostare il tuo indirizzo primario su questo hub, oppure se preferisci che quello vecchio resti tale. Potrai pubblicare da entrambi i hub, ma solamente uno sarà indicato come la posizione su cui risiedono i tuoi file, foto, ecc." -#: ../../Zotlabs/Module/Filestorage.php:162 -msgid "Share this file" -msgstr "Condividi questo file" +#: ../../Zotlabs/Module/Import.php:545 +msgid "Make this hub my primary location" +msgstr "Rendi questo hub il mio indirizzo primario" -#: ../../Zotlabs/Module/Filestorage.php:163 -msgid "Show URL to this file" -msgstr "Mostra l'URL del file" +#: ../../Zotlabs/Module/Import.php:546 +msgid "" +"Import existing posts if possible (experimental - limited by available " +"memory" +msgstr "Importa i contenuti pubblicati, se possibile (sperimentale)" -#: ../../Zotlabs/Module/Filestorage.php:164 -msgid "Notify your contacts about this file" -msgstr "Notifica ai contatti che hai caricato questo file" +#: ../../Zotlabs/Module/Import.php:547 +msgid "" +"This process may take several minutes to complete. Please submit the form " +"only once and leave this page open until finished." +msgstr "Questa funzione potrebbe impiegare molto tempo a terminare. Per favore lanciala *una volta sola* e resta su questa pagina finché non avrà finito." -#: ../../Zotlabs/Module/Layouts.php:183 ../../include/text.php:2240 +#: ../../Zotlabs/Module/Item.php:178 +msgid "Unable to locate original post." +msgstr "Impossibile trovare il messaggio originale." + +#: ../../Zotlabs/Module/Item.php:427 +msgid "Empty post discarded." +msgstr "Il post vuoto è stato ignorato." + +#: ../../Zotlabs/Module/Item.php:467 +msgid "Executable content type not permitted to this channel." +msgstr "I contenuti eseguibili non sono permessi su questo canale." + +#: ../../Zotlabs/Module/Item.php:847 +msgid "Duplicate post suppressed." +msgstr "I post duplicati sono scartati." + +#: ../../Zotlabs/Module/Item.php:977 +msgid "System error. Post not saved." +msgstr "Errore di sistema. Post non salvato." + +#: ../../Zotlabs/Module/Item.php:1241 +msgid "Unable to obtain post information from database." +msgstr "Impossibile caricare il post dal database." + +#: ../../Zotlabs/Module/Item.php:1248 +#, 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." + +#: ../../Zotlabs/Module/Item.php:1255 +#, php-format +msgid "You have reached your limit of %1$.0f webpages." +msgstr "Hai raggiunto il limite massimo di %1$.0f pagine web." + +#: ../../Zotlabs/Module/Layouts.php:181 ../../include/text.php:2267 msgid "Layouts" msgstr "Layout" -#: ../../Zotlabs/Module/Layouts.php:185 +#: ../../Zotlabs/Module/Layouts.php:183 msgid "Comanche page description language help" msgstr "Guida di Comanche Page Description Language" -#: ../../Zotlabs/Module/Layouts.php:189 +#: ../../Zotlabs/Module/Layouts.php:187 msgid "Layout Description" msgstr "Descrizione del layout" -#: ../../Zotlabs/Module/Layouts.php:190 ../../Zotlabs/Module/Menu.php:114 -#: ../../Zotlabs/Module/Blocks.php:157 ../../Zotlabs/Module/Webpages.php:205 -#: ../../include/page_widgets.php:47 -msgid "Created" -msgstr "Creato" - -#: ../../Zotlabs/Module/Layouts.php:191 ../../Zotlabs/Module/Menu.php:115 -#: ../../Zotlabs/Module/Blocks.php:158 ../../Zotlabs/Module/Webpages.php:206 -#: ../../include/page_widgets.php:48 -msgid "Edited" -msgstr "Modificato" - -#: ../../Zotlabs/Module/Layouts.php:193 ../../Zotlabs/Module/Photos.php:1070 -#: ../../Zotlabs/Module/Blocks.php:161 ../../Zotlabs/Module/Webpages.php:195 -#: ../../include/conversation.php:1219 -msgid "Share" -msgstr "Condividi" - -#: ../../Zotlabs/Module/Layouts.php:194 +#: ../../Zotlabs/Module/Layouts.php:192 msgid "Download PDL file" msgstr "Scarica il file PDL" +#: ../../Zotlabs/Module/Home.php:61 ../../Zotlabs/Module/Home.php:69 +#: ../../Zotlabs/Module/Siteinfo.php:65 +msgid "$Projectname" +msgstr "$Projectname" + +#: ../../Zotlabs/Module/Home.php:79 +#, php-format +msgid "Welcome to %s" +msgstr "%s ti dà il benvenuto" + +#: ../../Zotlabs/Module/Id.php:13 +msgid "First Name" +msgstr "Nome" + +#: ../../Zotlabs/Module/Id.php:14 +msgid "Last Name" +msgstr "Cognome" + +#: ../../Zotlabs/Module/Id.php:15 +msgid "Nickname" +msgstr "Nick" + +#: ../../Zotlabs/Module/Id.php:16 +msgid "Full Name" +msgstr "Nome e cognome" + +#: ../../Zotlabs/Module/Id.php:17 ../../Zotlabs/Module/Id.php:18 +#: ../../Zotlabs/Module/Admin.php:1035 ../../Zotlabs/Module/Admin.php:1047 +#: ../../include/network.php:2151 ../../boot.php:1705 +msgid "Email" +msgstr "Email" + +#: ../../Zotlabs/Module/Id.php:19 ../../Zotlabs/Module/Id.php:20 +#: ../../Zotlabs/Module/Id.php:21 ../../Zotlabs/Lib/Apps.php:236 +msgid "Profile Photo" +msgstr "Foto del profilo" + +#: ../../Zotlabs/Module/Id.php:22 +msgid "Profile Photo 16px" +msgstr "Foto del profilo 16px" + +#: ../../Zotlabs/Module/Id.php:23 +msgid "Profile Photo 32px" +msgstr "Foto del profilo 32px" + +#: ../../Zotlabs/Module/Id.php:24 +msgid "Profile Photo 48px" +msgstr "Foto del profilo 48px" + +#: ../../Zotlabs/Module/Id.php:25 +msgid "Profile Photo 64px" +msgstr "Foto del profilo 64px" + +#: ../../Zotlabs/Module/Id.php:26 +msgid "Profile Photo 80px" +msgstr "Foto del profilo 80px" + +#: ../../Zotlabs/Module/Id.php:27 +msgid "Profile Photo 128px" +msgstr "Foto del profilo 128px" + +#: ../../Zotlabs/Module/Id.php:28 +msgid "Timezone" +msgstr "Fuso orario" + +#: ../../Zotlabs/Module/Id.php:29 ../../Zotlabs/Module/Profiles.php:731 +msgid "Homepage URL" +msgstr "Indirizzo home page" + +#: ../../Zotlabs/Module/Id.php:30 ../../Zotlabs/Lib/Apps.php:234 +msgid "Language" +msgstr "Lingua" + +#: ../../Zotlabs/Module/Id.php:31 +msgid "Birth Year" +msgstr "Anno di nascita" + +#: ../../Zotlabs/Module/Id.php:32 +msgid "Birth Month" +msgstr "Mese di nascita" + +#: ../../Zotlabs/Module/Id.php:33 +msgid "Birth Day" +msgstr "Giorno di nascita" + +#: ../../Zotlabs/Module/Id.php:34 +msgid "Birthdate" +msgstr "Data di nascita" + +#: ../../Zotlabs/Module/Id.php:35 ../../Zotlabs/Module/Profiles.php:454 +msgid "Gender" +msgstr "Sesso" + +#: ../../Zotlabs/Module/Id.php:108 ../../include/selectors.php:49 +#: ../../include/selectors.php:66 +msgid "Male" +msgstr "Maschio" + +#: ../../Zotlabs/Module/Id.php:110 ../../include/selectors.php:49 +#: ../../include/selectors.php:66 +msgid "Female" +msgstr "Femmina" + +#: ../../Zotlabs/Module/Impel.php:41 ../../include/bbcode.php:192 +msgid "webpage" +msgstr "pagina web" + +#: ../../Zotlabs/Module/Impel.php:46 ../../include/bbcode.php:198 +msgid "block" +msgstr "block" + +#: ../../Zotlabs/Module/Impel.php:51 ../../include/bbcode.php:195 +msgid "layout" +msgstr "layout" + +#: ../../Zotlabs/Module/Impel.php:58 ../../include/bbcode.php:201 +msgid "menu" +msgstr "menu" + +#: ../../Zotlabs/Module/Impel.php:196 +#, php-format +msgid "%s element installed" +msgstr "%s elemento installato" + +#: ../../Zotlabs/Module/Impel.php:199 +#, php-format +msgid "%s element installation failed" +msgstr "Elementi con installazione fallita: %s" + #: ../../Zotlabs/Module/Like.php:19 msgid "Like/Dislike" msgstr "Mi piace/Non mi piace" @@ -2074,65 +2035,1180 @@ msgstr "Canale non trovato." msgid "Previous action reversed." msgstr "Il comando precedente è stato annullato." -#: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87 -#: ../../Zotlabs/Module/Tagger.php:47 ../../include/conversation.php:120 -#: ../../include/text.php:1921 +#: ../../Zotlabs/Module/Like.php:371 ../../Zotlabs/Module/Subthread.php:87 +#: ../../Zotlabs/Module/Tagger.php:47 ../../include/text.php:1940 +#: ../../include/conversation.php:120 msgid "photo" msgstr "la foto" -#: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87 -#: ../../include/conversation.php:148 ../../include/text.php:1927 +#: ../../Zotlabs/Module/Like.php:371 ../../Zotlabs/Module/Subthread.php:87 +#: ../../include/text.php:1946 ../../include/conversation.php:148 msgid "status" msgstr "il messaggio di stato" -#: ../../Zotlabs/Module/Like.php:419 ../../include/conversation.php:164 +#: ../../Zotlabs/Module/Like.php:420 ../../include/conversation.php:164 #, php-format msgid "%1$s likes %2$s's %3$s" msgstr "A %1$s piace %3$s di %2$s" -#: ../../Zotlabs/Module/Like.php:421 ../../include/conversation.php:167 +#: ../../Zotlabs/Module/Like.php:422 ../../include/conversation.php:167 #, php-format msgid "%1$s doesn't like %2$s's %3$s" msgstr "A %1$s non piace %3$s di %2$s" -#: ../../Zotlabs/Module/Like.php:423 +#: ../../Zotlabs/Module/Like.php:424 #, php-format msgid "%1$s agrees with %2$s's %3$s" msgstr "%3$s di %2$s: %1$s è d'accordo" -#: ../../Zotlabs/Module/Like.php:425 +#: ../../Zotlabs/Module/Like.php:426 #, php-format msgid "%1$s doesn't agree with %2$s's %3$s" msgstr "%3$s di %2$s: %1$s non è d'accordo" -#: ../../Zotlabs/Module/Like.php:427 +#: ../../Zotlabs/Module/Like.php:428 #, php-format msgid "%1$s abstains from a decision on %2$s's %3$s" msgstr "%3$s di %2$s: %1$s non si esprime" -#: ../../Zotlabs/Module/Like.php:429 +#: ../../Zotlabs/Module/Like.php:430 #, php-format msgid "%1$s is attending %2$s's %3$s" msgstr "%3$s di %2$s: %1$s partecipa" -#: ../../Zotlabs/Module/Like.php:431 +#: ../../Zotlabs/Module/Like.php:432 #, php-format msgid "%1$s is not attending %2$s's %3$s" msgstr "%3$s di %2$s: %1$s non partecipa" -#: ../../Zotlabs/Module/Like.php:433 +#: ../../Zotlabs/Module/Like.php:434 #, php-format msgid "%1$s may attend %2$s's %3$s" msgstr "%3$s di %2$s: %1$s forse partecipa" -#: ../../Zotlabs/Module/Like.php:536 +#: ../../Zotlabs/Module/Like.php:537 msgid "Action completed." msgstr "Comando completato." -#: ../../Zotlabs/Module/Like.php:537 +#: ../../Zotlabs/Module/Like.php:538 msgid "Thank you." msgstr "Grazie." +#: ../../Zotlabs/Module/Import_items.php:102 +msgid "Import completed" +msgstr "Importazione completata" + +#: ../../Zotlabs/Module/Import_items.php:117 +msgid "Import Items" +msgstr "Importa i contenuti" + +#: ../../Zotlabs/Module/Import_items.php:118 +msgid "" +"Use this form to import existing posts and content from an export file." +msgstr "Usa questa funzionalità per importare i vecchi contenuti e i post da un file esportato in precedenza." + +#: ../../Zotlabs/Module/Invite.php:29 +msgid "Total invitation limit exceeded." +msgstr "Hai superato il numero massimo di inviti." + +#: ../../Zotlabs/Module/Invite.php:53 +#, php-format +msgid "%s : Not a valid email address." +msgstr "%s: non è un indirizzo email valido." + +#: ../../Zotlabs/Module/Invite.php:63 +msgid "Please join us on $Projectname" +msgstr "Unisciti a noi su $Projectname" + +#: ../../Zotlabs/Module/Invite.php:74 +msgid "Invitation limit exceeded. Please contact your site administrator." +msgstr "Hai superato il numero massimo di inviti. Contatta l'amministratore se necessario." + +#: ../../Zotlabs/Module/Invite.php:79 +#, php-format +msgid "%s : Message delivery failed." +msgstr "%s: la consegna del messaggio è fallita." + +#: ../../Zotlabs/Module/Invite.php:83 +#, php-format +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "%d messaggio inviato." +msgstr[1] "%d messaggi inviati." + +#: ../../Zotlabs/Module/Invite.php:102 +msgid "You have no more invitations available" +msgstr "Non hai altri inviti disponibili" + +#: ../../Zotlabs/Module/Invite.php:133 +msgid "Send invitations" +msgstr "Spedisci inviti" + +#: ../../Zotlabs/Module/Invite.php:134 +msgid "Enter email addresses, one per line:" +msgstr "Inserisci gli indirizzi email, uno per riga:" + +#: ../../Zotlabs/Module/Invite.php:135 ../../Zotlabs/Module/Mail.php:249 +msgid "Your message:" +msgstr "Il tuo messaggio:" + +#: ../../Zotlabs/Module/Invite.php:136 +msgid "Please join my community on $Projectname." +msgstr "Entra nella mia comunità su $Projectname." + +#: ../../Zotlabs/Module/Invite.php:138 +msgid "You will need to supply this invitation code:" +msgstr "Dovrai fornire questo codice invito:" + +#: ../../Zotlabs/Module/Invite.php:139 +msgid "" +"1. Register at any $Projectname location (they are all inter-connected)" +msgstr "1. Registrati su qualsiasi server $Projectname (sono tutti interconnessi)" + +#: ../../Zotlabs/Module/Invite.php:141 +msgid "2. Enter my $Projectname network address into the site searchbar." +msgstr "2. Inserisci il mio indirizzo $Projectname nel riquadro di ricerca del sito." + +#: ../../Zotlabs/Module/Invite.php:142 +msgid "or visit" +msgstr "oppure visita" + +#: ../../Zotlabs/Module/Invite.php:144 +msgid "3. Click [Connect]" +msgstr "3. Clicca su [Aggiungi]" + +#: ../../Zotlabs/Module/Lockview.php:61 +msgid "Remote privacy information not available." +msgstr "Le informazioni remote sulla privacy non sono disponibili." + +#: ../../Zotlabs/Module/Lockview.php:82 +msgid "Visible to:" +msgstr "Visibile a:" + +#: ../../Zotlabs/Module/Locs.php:25 ../../Zotlabs/Module/Locs.php:54 +msgid "Location not found." +msgstr "Indirizzo non trovato." + +#: ../../Zotlabs/Module/Locs.php:62 +msgid "Location lookup failed." +msgstr "La ricerca dell'indirizzo è fallita." + +#: ../../Zotlabs/Module/Locs.php:66 +msgid "" +"Please select another location to become primary before removing the primary" +" location." +msgstr "Prima di rimuovere il tuo canale primario assicurati di avere scelto una sua copia (clone) come primaria." + +#: ../../Zotlabs/Module/Locs.php:95 +msgid "Syncing locations" +msgstr "Sincronizzazione tra hub" + +#: ../../Zotlabs/Module/Locs.php:105 +msgid "No locations found." +msgstr "Nessun indirizzo trovato." + +#: ../../Zotlabs/Module/Locs.php:116 +msgid "Manage Channel Locations" +msgstr "Modifica gli indirizzi del canale" + +#: ../../Zotlabs/Module/Locs.php:118 ../../Zotlabs/Module/Profiles.php:470 +#: ../../Zotlabs/Module/Admin.php:1224 +msgid "Address" +msgstr "Indirizzo" + +#: ../../Zotlabs/Module/Locs.php:119 +msgid "Primary" +msgstr "Primario" + +#: ../../Zotlabs/Module/Locs.php:120 ../../Zotlabs/Module/Menu.php:113 +msgid "Drop" +msgstr "Elimina" + +#: ../../Zotlabs/Module/Locs.php:122 +msgid "Sync Now" +msgstr "Sincronizza ora" + +#: ../../Zotlabs/Module/Locs.php:123 +msgid "Please wait several minutes between consecutive operations." +msgstr "Si raccomanda di attendere alcuni minuti prima di effettuare una nuova sincronizzazione." + +#: ../../Zotlabs/Module/Locs.php:124 +msgid "" +"When possible, drop a location by logging into that website/hub and removing" +" your channel." +msgstr "Quando possibile, riduci il numero di cloni del tuo canale effettuando il login sul relativo hub e rimuovendoli." + +#: ../../Zotlabs/Module/Locs.php:125 +msgid "Use this form to drop the location if the hub is no longer operating." +msgstr "Usa questo modulo per abbandonare un canale su un hub che non è più funzionante." + +#: ../../Zotlabs/Module/Magic.php:71 +msgid "Hub not found." +msgstr "Hub non trovato." + +#: ../../Zotlabs/Module/Mail.php:38 +msgid "Unable to lookup recipient." +msgstr "Impossibile associare un destinatario." + +#: ../../Zotlabs/Module/Mail.php:45 +msgid "Unable to communicate with requested channel." +msgstr "Impossibile comunicare con il canale richiesto." + +#: ../../Zotlabs/Module/Mail.php:52 +msgid "Cannot verify requested channel." +msgstr "Impossibile verificare il canale richiesto." + +#: ../../Zotlabs/Module/Mail.php:78 +msgid "Selected channel has private message restrictions. Send failed." +msgstr "Il canale ha delle regole restrittive per la ricezione dei messaggi privati. Invio fallito." + +#: ../../Zotlabs/Module/Mail.php:143 +msgid "Messages" +msgstr "Messaggi" + +#: ../../Zotlabs/Module/Mail.php:178 +msgid "Message recalled." +msgstr "Messaggio revocato." + +#: ../../Zotlabs/Module/Mail.php:191 +msgid "Conversation removed." +msgstr "Conversazione rimossa." + +#: ../../Zotlabs/Module/Mail.php:206 ../../Zotlabs/Module/Mail.php:315 +msgid "Expires YYYY-MM-DD HH:MM" +msgstr "Scade il YYYY-MM-DD HH:MM" + +#: ../../Zotlabs/Module/Mail.php:234 +msgid "Requested channel is not in this network" +msgstr "Il canale cercato non è in questa rete" + +#: ../../Zotlabs/Module/Mail.php:242 +msgid "Send Private Message" +msgstr "Invia un messaggio privato" + +#: ../../Zotlabs/Module/Mail.php:243 ../../Zotlabs/Module/Mail.php:368 +msgid "To:" +msgstr "A:" + +#: ../../Zotlabs/Module/Mail.php:246 ../../Zotlabs/Module/Mail.php:370 +msgid "Subject:" +msgstr "Oggetto:" + +#: ../../Zotlabs/Module/Mail.php:251 ../../Zotlabs/Module/Mail.php:376 +#: ../../include/conversation.php:1220 +msgid "Attach file" +msgstr "Allega file" + +#: ../../Zotlabs/Module/Mail.php:253 +msgid "Send" +msgstr "Invia" + +#: ../../Zotlabs/Module/Mail.php:256 ../../Zotlabs/Module/Mail.php:381 +#: ../../include/conversation.php:1251 +msgid "Set expiration date" +msgstr "Data di scadenza" + +#: ../../Zotlabs/Module/Mail.php:340 +msgid "Delete message" +msgstr "Elimina il messaggio" + +#: ../../Zotlabs/Module/Mail.php:341 +msgid "Delivery report" +msgstr "Rapporto di trasmissione" + +#: ../../Zotlabs/Module/Mail.php:342 +msgid "Recall message" +msgstr "Revoca il messaggio" + +#: ../../Zotlabs/Module/Mail.php:344 +msgid "Message has been recalled." +msgstr "Il messaggio è stato revocato." + +#: ../../Zotlabs/Module/Mail.php:361 +msgid "Delete Conversation" +msgstr "Elimina la conversazione" + +#: ../../Zotlabs/Module/Mail.php:363 +msgid "" +"No secure communications available. You may be able to " +"respond from the sender's profile page." +msgstr "Non è disponibile alcun modo sicuro di comunicare con questo canale. Se possibile, prova a rispondere direttamente dalla pagina del profilo del mittente." + +#: ../../Zotlabs/Module/Mail.php:367 +msgid "Send Reply" +msgstr "Invia la risposta" + +#: ../../Zotlabs/Module/Mail.php:372 +#, php-format +msgid "Your message for %s (%s):" +msgstr "Il tuo messaggio per %s (%s):" + +#: ../../Zotlabs/Module/Manage.php:136 +#: ../../Zotlabs/Module/New_channel.php:121 +#, php-format +msgid "You have created %1$.0f of %2$.0f allowed channels." +msgstr "Hai creato %1$.0f dei %2$.0f canali permessi." + +#: ../../Zotlabs/Module/Manage.php:143 +msgid "Create a new channel" +msgstr "Crea un nuovo canale" + +#: ../../Zotlabs/Module/Manage.php:164 ../../Zotlabs/Lib/Apps.php:213 +#: ../../include/nav.php:206 +msgid "Channel Manager" +msgstr "Gestione canali" + +#: ../../Zotlabs/Module/Manage.php:165 +msgid "Current Channel" +msgstr "Canale attuale" + +#: ../../Zotlabs/Module/Manage.php:167 +msgid "Switch to one of your channels by selecting it." +msgstr "Seleziona l'altro canale a cui vuoi passare." + +#: ../../Zotlabs/Module/Manage.php:168 +msgid "Default Channel" +msgstr "Canale predefinito" + +#: ../../Zotlabs/Module/Manage.php:169 +msgid "Make Default" +msgstr "Rendi predefinito" + +#: ../../Zotlabs/Module/Manage.php:172 +#, php-format +msgid "%d new messages" +msgstr "%d nuovi messaggi" + +#: ../../Zotlabs/Module/Manage.php:173 +#, php-format +msgid "%d new introductions" +msgstr "%d nuove richieste di entrare in contatto" + +#: ../../Zotlabs/Module/Manage.php:175 +msgid "Delegated Channel" +msgstr "Canale delegato" + +#: ../../Zotlabs/Module/Lostpass.php:19 +msgid "No valid account found." +msgstr "Nessun account valido trovato." + +#: ../../Zotlabs/Module/Lostpass.php:33 +msgid "Password reset request issued. Check your email." +msgstr "La richiesta per reimpostare la password è stata inviata. Controlla la tua email." + +#: ../../Zotlabs/Module/Lostpass.php:39 ../../Zotlabs/Module/Lostpass.php:107 +#, php-format +msgid "Site Member (%s)" +msgstr "Utente del sito (%s)" + +#: ../../Zotlabs/Module/Lostpass.php:44 +#, php-format +msgid "Password reset requested at %s" +msgstr "È stato richiesto di reimpostare password su %s" + +#: ../../Zotlabs/Module/Lostpass.php:67 +msgid "" +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." +msgstr "La richiesta non può essere verificata (potresti averla già usata precedentemente). La password non sarà reimpostata." + +#: ../../Zotlabs/Module/Lostpass.php:90 ../../boot.php:1711 +msgid "Password Reset" +msgstr "Reimposta la password" + +#: ../../Zotlabs/Module/Lostpass.php:91 +msgid "Your password has been reset as requested." +msgstr "La password è stata reimpostata come richiesto." + +#: ../../Zotlabs/Module/Lostpass.php:92 +msgid "Your new password is" +msgstr "La tua nuova password è" + +#: ../../Zotlabs/Module/Lostpass.php:93 +msgid "Save or copy your new password - and then" +msgstr "Salva o copia la tua nuova password, quindi" + +#: ../../Zotlabs/Module/Lostpass.php:94 +msgid "click here to login" +msgstr "clicca qui per accedere" + +#: ../../Zotlabs/Module/Lostpass.php:95 +msgid "" +"Your password may be changed from the Settings page after " +"successful login." +msgstr "Puoi cambiare la tua password dalla pagina delle Impostazioni dopo aver effettuato l'accesso." + +#: ../../Zotlabs/Module/Lostpass.php:112 +#, php-format +msgid "Your password has changed at %s" +msgstr "La tua password su %s è cambiata" + +#: ../../Zotlabs/Module/Lostpass.php:127 +msgid "Forgot your Password?" +msgstr "Hai dimenticato la password?" + +#: ../../Zotlabs/Module/Lostpass.php:128 +msgid "" +"Enter your email address and submit to have your password reset. Then check " +"your email for further instructions." +msgstr "Inserisci il tuo indirizzo email per reimpostare la password. Dopo aver inviato la richiesta, controlla l'email e troverai le istruzioni per continuare." + +#: ../../Zotlabs/Module/Lostpass.php:129 +msgid "Email Address" +msgstr "Indirizzo email" + +#: ../../Zotlabs/Module/Lostpass.php:130 +msgid "Reset" +msgstr "Reimposta" + +#: ../../Zotlabs/Module/Menu.php:49 +msgid "Unable to update menu." +msgstr "Impossibile aggiornare il menù." + +#: ../../Zotlabs/Module/Menu.php:60 +msgid "Unable to create menu." +msgstr "Impossibile creare il menù." + +#: ../../Zotlabs/Module/Menu.php:98 ../../Zotlabs/Module/Menu.php:110 +msgid "Menu Name" +msgstr "Nome del menu" + +#: ../../Zotlabs/Module/Menu.php:98 +msgid "Unique name (not visible on webpage) - required" +msgstr "Nome unico (non visibile sulla pagina) - obbligatorio" + +#: ../../Zotlabs/Module/Menu.php:99 ../../Zotlabs/Module/Menu.php:111 +msgid "Menu Title" +msgstr "Titolo del menu" + +#: ../../Zotlabs/Module/Menu.php:99 +msgid "Visible on webpage - leave empty for no title" +msgstr "Visibile sulla pagina - lascia vuoto per non avere un titolo" + +#: ../../Zotlabs/Module/Menu.php:100 +msgid "Allow Bookmarks" +msgstr "Permetti i segnalibri" + +#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 +msgid "Menu may be used to store saved bookmarks" +msgstr "Puoi salvare i segnalibri nei menù" + +#: ../../Zotlabs/Module/Menu.php:101 ../../Zotlabs/Module/Menu.php:159 +msgid "Submit and proceed" +msgstr "Salva e procedi" + +#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2266 +msgid "Menus" +msgstr "Menù" + +#: ../../Zotlabs/Module/Menu.php:117 +msgid "Bookmarks allowed" +msgstr "Permetti segnalibri" + +#: ../../Zotlabs/Module/Menu.php:119 +msgid "Delete this menu" +msgstr "Elimina questo menù" + +#: ../../Zotlabs/Module/Menu.php:120 ../../Zotlabs/Module/Menu.php:154 +msgid "Edit menu contents" +msgstr "Modifica i contenuti del menù" + +#: ../../Zotlabs/Module/Menu.php:121 +msgid "Edit this menu" +msgstr "Modifica questo menù" + +#: ../../Zotlabs/Module/Menu.php:136 +msgid "Menu could not be deleted." +msgstr "Il menù non può essere eliminato." + +#: ../../Zotlabs/Module/Menu.php:144 ../../Zotlabs/Module/Mitem.php:28 +msgid "Menu not found." +msgstr "Menù non trovato." + +#: ../../Zotlabs/Module/Menu.php:149 +msgid "Edit Menu" +msgstr "Modifica menù" + +#: ../../Zotlabs/Module/Menu.php:153 +msgid "Add or remove entries to this menu" +msgstr "Aggiungi o rimuovi elementi di questo menù" + +#: ../../Zotlabs/Module/Menu.php:155 +msgid "Menu name" +msgstr "Nome del menù" + +#: ../../Zotlabs/Module/Menu.php:155 +msgid "Must be unique, only seen by you" +msgstr "Deve essere unico, lo vedrai solo tu" + +#: ../../Zotlabs/Module/Menu.php:156 +msgid "Menu title" +msgstr "Titolo del menù" + +#: ../../Zotlabs/Module/Menu.php:156 +msgid "Menu title as seen by others" +msgstr "Titolo del menù come comparirà a tutti" + +#: ../../Zotlabs/Module/Menu.php:157 +msgid "Allow bookmarks" +msgstr "Permetti l'invio di segnalibri" + +#: ../../Zotlabs/Module/Menu.php:166 ../../Zotlabs/Module/Mitem.php:120 +#: ../../Zotlabs/Module/Xchan.php:41 +msgid "Not found." +msgstr "Non trovato." + +#: ../../Zotlabs/Module/Mood.php:67 ../../include/conversation.php:260 +#, php-format +msgctxt "mood" +msgid "%1$s is %2$s" +msgstr "%1$s è %2$s" + +#: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Lib/Apps.php:225 +msgid "Mood" +msgstr "Umore" + +#: ../../Zotlabs/Module/Mood.php:136 +msgid "Set your current mood and tell your friends" +msgstr "Scegli il tuo umore attuale per mostrarlo agli amici" + +#: ../../Zotlabs/Module/Match.php:26 +msgid "Profile Match" +msgstr "Profili corrispondenti" + +#: ../../Zotlabs/Module/Match.php:35 +msgid "No keywords to match. Please add keywords to your default profile." +msgstr "Non hai scritto parole chiave. Aggiungi parole chiave al tuo profilo predefinito per comparire nelle ricerche." + +#: ../../Zotlabs/Module/Match.php:67 +msgid "is interested in:" +msgstr "interessi personali:" + +#: ../../Zotlabs/Module/Match.php:74 +msgid "No matches" +msgstr "Nessun risultato" + +#: ../../Zotlabs/Module/Network.php:96 +msgid "No such group" +msgstr "Impossibile trovare il gruppo di canali" + +#: ../../Zotlabs/Module/Network.php:136 +msgid "No such channel" +msgstr "Canale sconosciuto" + +#: ../../Zotlabs/Module/Network.php:141 +msgid "forum" +msgstr "forum" + +#: ../../Zotlabs/Module/Network.php:153 +msgid "Search Results For:" +msgstr "Cerca risultati con:" + +#: ../../Zotlabs/Module/Network.php:217 +msgid "Privacy group is empty" +msgstr "Il gruppo di canali è vuoto" + +#: ../../Zotlabs/Module/Network.php:226 +msgid "Privacy group: " +msgstr "Gruppo di canali:" + +#: ../../Zotlabs/Module/Network.php:252 +msgid "Invalid connection." +msgstr "Contatto non valido." + +#: ../../Zotlabs/Module/Notify.php:57 +#: ../../Zotlabs/Module/Notifications.php:98 +msgid "No more system notifications." +msgstr "Non ci sono nuove notifiche di sistema." + +#: ../../Zotlabs/Module/Notify.php:61 +#: ../../Zotlabs/Module/Notifications.php:102 +msgid "System Notifications" +msgstr "Notifiche di sistema" + +#: ../../Zotlabs/Module/Mitem.php:52 +msgid "Unable to create element." +msgstr "Impossibile creare l'elemento." + +#: ../../Zotlabs/Module/Mitem.php:76 +msgid "Unable to update menu element." +msgstr "Non è possibile aggiornare l'elemento del menù." + +#: ../../Zotlabs/Module/Mitem.php:92 +msgid "Unable to add menu element." +msgstr "Impossibile aggiungere l'elemento al menù." + +#: ../../Zotlabs/Module/Mitem.php:153 ../../Zotlabs/Module/Mitem.php:226 +msgid "Menu Item Permissions" +msgstr "Permessi del menu" + +#: ../../Zotlabs/Module/Mitem.php:154 ../../Zotlabs/Module/Mitem.php:227 +#: ../../Zotlabs/Module/Settings.php:1068 +msgid "(click to open/close)" +msgstr "(clicca per aprire/chiudere)" + +#: ../../Zotlabs/Module/Mitem.php:156 ../../Zotlabs/Module/Mitem.php:172 +msgid "Link Name" +msgstr "Nome link" + +#: ../../Zotlabs/Module/Mitem.php:157 ../../Zotlabs/Module/Mitem.php:231 +msgid "Link or Submenu Target" +msgstr "Azione del link o del sottomenu" + +#: ../../Zotlabs/Module/Mitem.php:157 +msgid "Enter URL of the link or select a menu name to create a submenu" +msgstr "Inserisci l'indirizzo del link o scegli il nome di un sottomenu" + +#: ../../Zotlabs/Module/Mitem.php:158 ../../Zotlabs/Module/Mitem.php:232 +msgid "Use magic-auth if available" +msgstr "Usa l'autenticazione tramite il tuo hub, se disponibile" + +#: ../../Zotlabs/Module/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:233 +msgid "Open link in new window" +msgstr "Apri il link in una nuova finestra" + +#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:234 +msgid "Order in list" +msgstr "Ordine dell'elenco" + +#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:234 +msgid "Higher numbers will sink to bottom of listing" +msgstr "I numeri più alti andranno in fondo all'elenco" + +#: ../../Zotlabs/Module/Mitem.php:161 +msgid "Submit and finish" +msgstr "Salva e termina" + +#: ../../Zotlabs/Module/Mitem.php:162 +msgid "Submit and continue" +msgstr "Salva e continua" + +#: ../../Zotlabs/Module/Mitem.php:170 +msgid "Menu:" +msgstr "Menu:" + +#: ../../Zotlabs/Module/Mitem.php:173 +msgid "Link Target" +msgstr "Destinazione link" + +#: ../../Zotlabs/Module/Mitem.php:176 +msgid "Edit menu" +msgstr "Modifica il menù" + +#: ../../Zotlabs/Module/Mitem.php:179 +msgid "Edit element" +msgstr "Modifica l'elemento" + +#: ../../Zotlabs/Module/Mitem.php:180 +msgid "Drop element" +msgstr "Elimina l'elemento" + +#: ../../Zotlabs/Module/Mitem.php:181 +msgid "New element" +msgstr "Nuovo elemento" + +#: ../../Zotlabs/Module/Mitem.php:182 +msgid "Edit this menu container" +msgstr "Modifica il contenitore del menù" + +#: ../../Zotlabs/Module/Mitem.php:183 +msgid "Add menu element" +msgstr "Aggiungi un elemento al menù" + +#: ../../Zotlabs/Module/Mitem.php:184 +msgid "Delete this menu item" +msgstr "Elimina questo elemento del menù" + +#: ../../Zotlabs/Module/Mitem.php:185 +msgid "Edit this menu item" +msgstr "Modifica questo elemento del menù" + +#: ../../Zotlabs/Module/Mitem.php:202 +msgid "Menu item not found." +msgstr "L'elemento del menù non è stato trovato." + +#: ../../Zotlabs/Module/Mitem.php:215 +msgid "Menu item deleted." +msgstr "L'elemento del menù è stato eliminato." + +#: ../../Zotlabs/Module/Mitem.php:217 +msgid "Menu item could not be deleted." +msgstr "L'elemento del menù non può essere eliminato." + +#: ../../Zotlabs/Module/Mitem.php:224 +msgid "Edit Menu Element" +msgstr "Modifica l'elemento del menù" + +#: ../../Zotlabs/Module/Mitem.php:230 +msgid "Link text" +msgstr "Testo del link" + +#: ../../Zotlabs/Module/New_channel.php:128 +#: ../../Zotlabs/Module/Register.php:231 +msgid "Name or caption" +msgstr "Nome o titolo" + +#: ../../Zotlabs/Module/New_channel.php:128 +#: ../../Zotlabs/Module/Register.php:231 +msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\"" +msgstr "Per esempio: \"Mario Rossi\", \"Lisa e le sue ricette\", \"Il campionato\", \"Il gruppo di escursionismo\"" + +#: ../../Zotlabs/Module/New_channel.php:130 +#: ../../Zotlabs/Module/Register.php:233 +msgid "Choose a short nickname" +msgstr "Scegli un nome breve" + +#: ../../Zotlabs/Module/New_channel.php:130 +#: ../../Zotlabs/Module/Register.php:233 +#, php-format +msgid "" +"Your nickname will be used to create an easy to remember channel address " +"e.g. nickname%s" +msgstr "Il nome breve sarà usato per creare un indirizzo facile da ricordare per il tuo canale, per esempio nickname%s" + +#: ../../Zotlabs/Module/New_channel.php:132 +#: ../../Zotlabs/Module/Register.php:235 +msgid "Channel role and privacy" +msgstr "Tipo di canale e privacy" + +#: ../../Zotlabs/Module/New_channel.php:132 +#: ../../Zotlabs/Module/Register.php:235 +msgid "Select a channel role with your privacy requirements." +msgstr "Scegli il tipo di canale che vuoi e la privacy da applicare." + +#: ../../Zotlabs/Module/New_channel.php:132 +#: ../../Zotlabs/Module/Register.php:235 +msgid "Read more about roles" +msgstr "Maggiori informazioni sui ruoli" + +#: ../../Zotlabs/Module/New_channel.php:135 +msgid "Create Channel" +msgstr "Crea un canale" + +#: ../../Zotlabs/Module/New_channel.php:136 +msgid "" +"A channel is your identity on this network. It can represent a person, a " +"blog, or a forum to name a few. Channels can make connections with other " +"channels to share information with highly detailed permissions." +msgstr "Un canale è la tua identità su questa rete. Può rappresentare una persona, un blog o un forum, per esempio. Il tuo canale può essere in contatto con altri canali per condividere contenuti con permessi anche molto dettagliati." + +#: ../../Zotlabs/Module/New_channel.php:137 +msgid "" +"or import an existing channel from another location." +msgstr "oppure importa un canale esistente da un altro server/hub." + +#: ../../Zotlabs/Module/Notifications.php:30 +msgid "Invalid request identifier." +msgstr "L'identificativo della richiesta non è valido." + +#: ../../Zotlabs/Module/Notifications.php:39 +msgid "Discard" +msgstr "Rifiuta" + +#: ../../Zotlabs/Module/Notifications.php:103 ../../include/nav.php:191 +msgid "Mark all system notifications seen" +msgstr "Segna come lette le notifiche di sistema" + +#: ../../Zotlabs/Module/Photos.php:84 +msgid "Page owner information could not be retrieved." +msgstr "Impossibile ottenere informazioni sul proprietario della pagina." + +#: ../../Zotlabs/Module/Photos.php:99 ../../Zotlabs/Module/Photos.php:743 +#: ../../Zotlabs/Module/Profile_photo.php:114 +#: ../../Zotlabs/Module/Profile_photo.php:206 +#: ../../Zotlabs/Module/Profile_photo.php:294 +#: ../../include/photo/photo_driver.php:718 +msgid "Profile Photos" +msgstr "Foto del profilo" + +#: ../../Zotlabs/Module/Photos.php:105 ../../Zotlabs/Module/Photos.php:149 +msgid "Album not found." +msgstr "Album non trovato." + +#: ../../Zotlabs/Module/Photos.php:132 +msgid "Delete Album" +msgstr "Elimina album" + +#: ../../Zotlabs/Module/Photos.php:153 +msgid "" +"Multiple storage folders exist with this album name, but within different " +"directories. Please remove the desired folder or folders using the Files " +"manager" +msgstr "Esistono più archivi con il nome di quest'album, ma dentro cartelle diverse. Per favore rimuovili dall'Archivio file " + +#: ../../Zotlabs/Module/Photos.php:210 ../../Zotlabs/Module/Photos.php:1053 +msgid "Delete Photo" +msgstr "Elimina foto" + +#: ../../Zotlabs/Module/Photos.php:533 +msgid "No photos selected" +msgstr "Nessuna foto selezionata" + +#: ../../Zotlabs/Module/Photos.php:582 +msgid "Access to this item is restricted." +msgstr "Questo elemento non è visibile a tutti." + +#: ../../Zotlabs/Module/Photos.php:621 +#, php-format +msgid "%1$.2f MB of %2$.2f MB photo storage used." +msgstr "Hai usato %1$.2f Mb dei %2$.2f Mb di spazio disponibile." + +#: ../../Zotlabs/Module/Photos.php:624 +#, php-format +msgid "%1$.2f MB photo storage used." +msgstr "Hai usato %1$.2f Mb del tuo spazio disponibile." + +#: ../../Zotlabs/Module/Photos.php:660 +msgid "Upload Photos" +msgstr "Carica foto" + +#: ../../Zotlabs/Module/Photos.php:664 +msgid "Enter an album name" +msgstr "Scegli il nome dell'album" + +#: ../../Zotlabs/Module/Photos.php:665 +msgid "or select an existing album (doubleclick)" +msgstr "o seleziona un album esistente (doppio click)" + +#: ../../Zotlabs/Module/Photos.php:666 +msgid "Create a status post for this upload" +msgstr "Pubblica sulla bacheca" + +#: ../../Zotlabs/Module/Photos.php:667 +msgid "Caption (optional):" +msgstr "Titolo (facoltativo):" + +#: ../../Zotlabs/Module/Photos.php:668 +msgid "Description (optional):" +msgstr "Descrizione (facoltativa):" + +#: ../../Zotlabs/Module/Photos.php:695 +msgid "Album name could not be decoded" +msgstr "Non è stato possibile leggere il nome dell'album" + +#: ../../Zotlabs/Module/Photos.php:743 +msgid "Contact Photos" +msgstr "Foto dei contatti" + +#: ../../Zotlabs/Module/Photos.php:766 +msgid "Show Newest First" +msgstr "Prima i più recenti" + +#: ../../Zotlabs/Module/Photos.php:768 +msgid "Show Oldest First" +msgstr "Prima i più vecchi" + +#: ../../Zotlabs/Module/Photos.php:792 ../../Zotlabs/Module/Photos.php:1331 +#: ../../include/widgets.php:1499 +msgid "View Photo" +msgstr "Guarda la foto" + +#: ../../Zotlabs/Module/Photos.php:823 ../../include/widgets.php:1516 +msgid "Edit Album" +msgstr "Modifica album" + +#: ../../Zotlabs/Module/Photos.php:870 +msgid "Permission denied. Access to this item may be restricted." +msgstr "Permesso negato. L'accesso a questo elemento può essere stato limitato." + +#: ../../Zotlabs/Module/Photos.php:872 +msgid "Photo not available" +msgstr "Foto non disponibile" + +#: ../../Zotlabs/Module/Photos.php:930 +msgid "Use as profile photo" +msgstr "Usa come foto del profilo" + +#: ../../Zotlabs/Module/Photos.php:931 +msgid "Use as cover photo" +msgstr "Usa come copertina del canale" + +#: ../../Zotlabs/Module/Photos.php:938 +msgid "Private Photo" +msgstr "Foto privata" + +#: ../../Zotlabs/Module/Photos.php:953 +msgid "View Full Size" +msgstr "Vedi nelle dimensioni originali" + +#: ../../Zotlabs/Module/Photos.php:998 ../../Zotlabs/Module/Admin.php:1437 +#: ../../Zotlabs/Module/Tagrm.php:137 +msgid "Remove" +msgstr "Rimuovi" + +#: ../../Zotlabs/Module/Photos.php:1032 +msgid "Edit photo" +msgstr "Modifica la foto" + +#: ../../Zotlabs/Module/Photos.php:1034 +msgid "Rotate CW (right)" +msgstr "Ruota (senso orario)" + +#: ../../Zotlabs/Module/Photos.php:1035 +msgid "Rotate CCW (left)" +msgstr "Ruota (senso antiorario)" + +#: ../../Zotlabs/Module/Photos.php:1038 +msgid "Enter a new album name" +msgstr "Inserisci il nome del nuovo album" + +#: ../../Zotlabs/Module/Photos.php:1039 +msgid "or select an existing one (doubleclick)" +msgstr "o seleziona uno esistente (doppio click)" + +#: ../../Zotlabs/Module/Photos.php:1042 +msgid "Caption" +msgstr "Didascalia" + +#: ../../Zotlabs/Module/Photos.php:1044 +msgid "Add a Tag" +msgstr "Aggiungi tag" + +#: ../../Zotlabs/Module/Photos.php:1048 +msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" +msgstr "Esempio: @bob, @Barbara_Jensen, @jim@example.com" + +#: ../../Zotlabs/Module/Photos.php:1051 +msgid "Flag as adult in album view" +msgstr "Marca come 'per adulti'" + +#: ../../Zotlabs/Module/Photos.php:1070 ../../Zotlabs/Lib/ThreadItem.php:261 +msgid "I like this (toggle)" +msgstr "Attiva/disattiva Mi piace" + +#: ../../Zotlabs/Module/Photos.php:1071 ../../Zotlabs/Lib/ThreadItem.php:262 +msgid "I don't like this (toggle)" +msgstr "Attiva/disattiva Non mi piace" + +#: ../../Zotlabs/Module/Photos.php:1073 ../../Zotlabs/Lib/ThreadItem.php:397 +#: ../../include/conversation.php:740 +msgid "Please wait" +msgstr "Attendere" + +#: ../../Zotlabs/Module/Photos.php:1089 ../../Zotlabs/Module/Photos.php:1207 +#: ../../Zotlabs/Lib/ThreadItem.php:707 +msgid "This is you" +msgstr "Questo sei tu" + +#: ../../Zotlabs/Module/Photos.php:1091 ../../Zotlabs/Module/Photos.php:1209 +#: ../../Zotlabs/Lib/ThreadItem.php:709 ../../include/js_strings.php:6 +msgid "Comment" +msgstr "Commento" + +#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:574 +msgctxt "title" +msgid "Likes" +msgstr "Mi piace" + +#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:574 +msgctxt "title" +msgid "Dislikes" +msgstr "Non mi piace" + +#: ../../Zotlabs/Module/Photos.php:1108 ../../include/conversation.php:575 +msgctxt "title" +msgid "Agree" +msgstr "D'accordo" + +#: ../../Zotlabs/Module/Photos.php:1108 ../../include/conversation.php:575 +msgctxt "title" +msgid "Disagree" +msgstr "Non d'accordo" + +#: ../../Zotlabs/Module/Photos.php:1108 ../../include/conversation.php:575 +msgctxt "title" +msgid "Abstain" +msgstr "Astenuti" + +#: ../../Zotlabs/Module/Photos.php:1109 ../../include/conversation.php:576 +msgctxt "title" +msgid "Attending" +msgstr "Partecipano" + +#: ../../Zotlabs/Module/Photos.php:1109 ../../include/conversation.php:576 +msgctxt "title" +msgid "Not attending" +msgstr "Non partecipano" + +#: ../../Zotlabs/Module/Photos.php:1109 ../../include/conversation.php:576 +msgctxt "title" +msgid "Might attend" +msgstr "Forse partecipano" + +#: ../../Zotlabs/Module/Photos.php:1126 ../../Zotlabs/Module/Photos.php:1138 +#: ../../Zotlabs/Lib/ThreadItem.php:181 ../../Zotlabs/Lib/ThreadItem.php:193 +#: ../../include/conversation.php:1717 +msgid "View all" +msgstr "Vedi tutto" + +#: ../../Zotlabs/Module/Photos.php:1130 ../../Zotlabs/Lib/ThreadItem.php:185 +#: ../../include/taxonomy.php:403 ../../include/conversation.php:1741 +#: ../../include/channel.php:1158 +msgctxt "noun" +msgid "Like" +msgid_plural "Likes" +msgstr[0] "Mi piace" +msgstr[1] "Mi piace" + +#: ../../Zotlabs/Module/Photos.php:1135 ../../Zotlabs/Lib/ThreadItem.php:190 +#: ../../include/conversation.php:1744 +msgctxt "noun" +msgid "Dislike" +msgid_plural "Dislikes" +msgstr[0] "Non mi piace" +msgstr[1] "Non mi piace" + +#: ../../Zotlabs/Module/Photos.php:1235 +msgid "Photo Tools" +msgstr "Gestione delle foto" + +#: ../../Zotlabs/Module/Photos.php:1244 +msgid "In This Photo:" +msgstr "In questa foto:" + +#: ../../Zotlabs/Module/Photos.php:1249 +msgid "Map" +msgstr "Mappa" + +#: ../../Zotlabs/Module/Photos.php:1257 ../../Zotlabs/Lib/ThreadItem.php:386 +msgctxt "noun" +msgid "Likes" +msgstr "Mi piace" + +#: ../../Zotlabs/Module/Photos.php:1258 ../../Zotlabs/Lib/ThreadItem.php:387 +msgctxt "noun" +msgid "Dislikes" +msgstr "Non mi piace" + +#: ../../Zotlabs/Module/Photos.php:1263 ../../Zotlabs/Lib/ThreadItem.php:392 +#: ../../include/acl_selectors.php:285 +msgid "Close" +msgstr "Chiudi" + +#: ../../Zotlabs/Module/Photos.php:1337 +msgid "View Album" +msgstr "Guarda l'album" + +#: ../../Zotlabs/Module/Photos.php:1348 ../../Zotlabs/Module/Photos.php:1361 +#: ../../Zotlabs/Module/Photos.php:1362 +msgid "Recent Photos" +msgstr "Foto recenti" + +#: ../../Zotlabs/Module/Ping.php:265 +msgid "sent you a private message" +msgstr "ti ha inviato un messaggio privato" + +#: ../../Zotlabs/Module/Ping.php:313 +msgid "added your channel" +msgstr "ha aggiunto il tuo canale" + +#: ../../Zotlabs/Module/Ping.php:323 +msgid "g A l F d" +msgstr "g A l d F" + +#: ../../Zotlabs/Module/Ping.php:346 +msgid "[today]" +msgstr "[oggi]" + +#: ../../Zotlabs/Module/Ping.php:355 +msgid "posted an event" +msgstr "ha creato un evento" + +#: ../../Zotlabs/Module/Oexchange.php:27 +msgid "Unable to find your hub." +msgstr "Impossibile raggiungere il tuo hub." + +#: ../../Zotlabs/Module/Oexchange.php:41 +msgid "Post successful." +msgstr "Inviato!" + +#: ../../Zotlabs/Module/Openid.php:30 +msgid "OpenID protocol error. No ID returned." +msgstr "Errore del protocollo OpenID. Nessun ID ricevuto in risposta." + +#: ../../Zotlabs/Module/Openid.php:193 ../../include/auth.php:226 +msgid "Login failed." +msgstr "Accesso fallito." + +#: ../../Zotlabs/Module/Page.php:133 +msgid "" +"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod " +"tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam," +" quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo " +"consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse " +"cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat " +"non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." +msgstr "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." + +#: ../../Zotlabs/Module/Pconfig.php:26 ../../Zotlabs/Module/Pconfig.php:59 +msgid "This setting requires special processing and editing has been blocked." +msgstr "Questa impostazione è bloccata, richiede criteri di modifica speciali" + +#: ../../Zotlabs/Module/Pconfig.php:48 +msgid "Configuration Editor" +msgstr "Editor di configurazione" + +#: ../../Zotlabs/Module/Pconfig.php:49 +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 "Attenzione: alcune delle impostazioni, se cambiate, potrebbero rendere questo canale non funzionante. Lascia questa pagina a meno che tu non sappia con assoluta certezza quali modifiche effettuare." + +#: ../../Zotlabs/Module/Pdledit.php:18 +msgid "Layout updated." +msgstr "Layout aggiornato." + +#: ../../Zotlabs/Module/Pdledit.php:34 ../../Zotlabs/Module/Pdledit.php:61 +msgid "Edit System Page Description" +msgstr "Modifica i layout di sistema" + +#: ../../Zotlabs/Module/Pdledit.php:56 +msgid "Layout not found." +msgstr "Layout non trovato." + +#: ../../Zotlabs/Module/Pdledit.php:62 +msgid "Module Name:" +msgstr "Nome del modulo:" + +#: ../../Zotlabs/Module/Pdledit.php:63 +msgid "Layout Help" +msgstr "Guida al layout" + +#: ../../Zotlabs/Module/Poke.php:168 ../../Zotlabs/Lib/Apps.php:226 +#: ../../include/conversation.php:960 +msgid "Poke" +msgstr "Poke" + +#: ../../Zotlabs/Module/Poke.php:169 +msgid "Poke somebody" +msgstr "Manda un poke" + +#: ../../Zotlabs/Module/Poke.php:172 +msgid "Poke/Prod" +msgstr "Poke/Prod" + +#: ../../Zotlabs/Module/Poke.php:173 +msgid "Poke, prod or do other things to somebody" +msgstr "Manda un poke o altro a qualcuno" + +#: ../../Zotlabs/Module/Poke.php:180 +msgid "Recipient" +msgstr "Destinatario" + +#: ../../Zotlabs/Module/Poke.php:181 +msgid "Choose what you wish to do to recipient" +msgstr "Scegli cosa vuoi inviare al destinatario" + +#: ../../Zotlabs/Module/Poke.php:184 ../../Zotlabs/Module/Poke.php:185 +msgid "Make this post private" +msgstr "Rendi privato questo post" + +#: ../../Zotlabs/Module/Probe.php:30 ../../Zotlabs/Module/Probe.php:34 +#, php-format +msgid "Fetching URL returns error: %1$s" +msgstr "La chiamata all'URL restituisce questo errore: %1$s" + #: ../../Zotlabs/Module/Profiles.php:24 ../../Zotlabs/Module/Profiles.php:189 #: ../../Zotlabs/Module/Profiles.php:246 ../../Zotlabs/Module/Profiles.php:625 msgid "Profile not found." @@ -2202,11 +3278,6 @@ msgstr "Home page" msgid "Interests" msgstr "Interessi" -#: ../../Zotlabs/Module/Profiles.php:470 ../../Zotlabs/Module/Locs.php:118 -#: ../../Zotlabs/Module/Admin.php:1224 -msgid "Address" -msgstr "Indirizzo" - #: ../../Zotlabs/Module/Profiles.php:560 msgid "Profile updated." msgstr "Profilo aggiornato." @@ -2224,7 +3295,7 @@ msgid "View this profile" msgstr "Guarda questo profilo" #: ../../Zotlabs/Module/Profiles.php:689 ../../Zotlabs/Module/Profiles.php:771 -#: ../../include/channel.php:998 +#: ../../include/channel.php:959 msgid "Edit visibility" msgstr "Cambia la visibilità" @@ -2236,7 +3307,7 @@ msgstr "Gestione del profilo" msgid "Change cover photo" msgstr "Cambia la copertina del canale" -#: ../../Zotlabs/Module/Profiles.php:692 ../../include/channel.php:969 +#: ../../Zotlabs/Module/Profiles.php:692 ../../include/channel.php:930 msgid "Change profile photo" msgstr "Cambia la foto del profilo" @@ -2256,8 +3327,8 @@ msgstr "Elimina questo profilo" msgid "Add profile things" msgstr "Aggiungi oggetti al profilo" -#: ../../Zotlabs/Module/Profiles.php:697 ../../include/conversation.php:1541 -#: ../../include/widgets.php:105 +#: ../../Zotlabs/Module/Profiles.php:697 ../../include/widgets.php:105 +#: ../../include/conversation.php:1526 msgid "Personal" msgstr "Personali" @@ -2397,1097 +3468,119 @@ msgstr "Contatti e social network" msgid "My other channels" msgstr "I miei altri canali" -#: ../../Zotlabs/Module/Profiles.php:767 ../../include/channel.php:994 +#: ../../Zotlabs/Module/Profiles.php:767 ../../include/channel.php:955 msgid "Profile Image" msgstr "Immagine del profilo" #: ../../Zotlabs/Module/Profiles.php:777 ../../include/nav.php:88 -#: ../../include/channel.php:976 +#: ../../include/channel.php:937 msgid "Edit Profiles" msgstr "Modifica i tuoi profili" -#: ../../Zotlabs/Module/Import.php:33 -#, php-format -msgid "Your service plan only allows %d channels." -msgstr "Il tuo account permette di creare al massimo %d canali." - -#: ../../Zotlabs/Module/Import.php:71 ../../Zotlabs/Module/Import_items.php:42 -msgid "Nothing to import." -msgstr "Non c'è niente da importare." - -#: ../../Zotlabs/Module/Import.php:95 ../../Zotlabs/Module/Import_items.php:66 -msgid "Unable to download data from old server" -msgstr "Impossibile importare i dati dal vecchio hub" - -#: ../../Zotlabs/Module/Import.php:101 -#: ../../Zotlabs/Module/Import_items.php:72 -msgid "Imported file is empty." -msgstr "Il file da importare è vuoto." - -#: ../../Zotlabs/Module/Import.php:123 -#: ../../Zotlabs/Module/Import_items.php:88 -#, php-format -msgid "Warning: Database versions differ by %1$d updates." -msgstr "Attenzione: le versioni di database differiscono di %1$d aggiornamenti." - -#: ../../Zotlabs/Module/Import.php:153 ../../include/import.php:107 -msgid "Cloned channel not found. Import failed." -msgstr "Impossibile trovare il canale clonato. L'importazione è fallita." - -#: ../../Zotlabs/Module/Import.php:163 -msgid "No channel. Import failed." -msgstr "Nessun canale. Import fallito." - -#: ../../Zotlabs/Module/Import.php:520 -#: ../../include/Import/import_diaspora.php:142 -msgid "Import completed." -msgstr "L'importazione è terminata con successo." - -#: ../../Zotlabs/Module/Import.php:542 -msgid "You must be logged in to use this feature." -msgstr "Per questa funzionalità devi aver effettuato l'accesso." - -#: ../../Zotlabs/Module/Import.php:547 -msgid "Import Channel" -msgstr "Importa un canale" - -#: ../../Zotlabs/Module/Import.php:548 +#: ../../Zotlabs/Module/Profile_photo.php:179 msgid "" -"Use this form to import an existing channel from a different server/hub. You" -" may retrieve the channel identity from the old server/hub via the network " -"or provide an export file." -msgstr "Usa questo modulo per importare un tuo canale da un altro hub. Puoi ottenere i dati identificativi del canale direttamente dall'altro hub oppure tramite un file esportato in precedenza." +"Shift-reload the page or clear browser cache if the new photo does not " +"display immediately." +msgstr "Forza l'aggiornamento della pagina o cancella la cache del browser se la nuova foto non viene visualizzata immediatamente." -#: ../../Zotlabs/Module/Import.php:549 -#: ../../Zotlabs/Module/Import_items.php:121 -msgid "File to Upload" -msgstr "File da caricare" +#: ../../Zotlabs/Module/Profile_photo.php:367 +msgid "Upload Profile Photo" +msgstr "Carica la foto del profilo" -#: ../../Zotlabs/Module/Import.php:550 -msgid "Or provide the old server/hub details" -msgstr "Oppure fornisci i dettagli del vecchio hub" +#: ../../Zotlabs/Module/Profperm.php:34 ../../Zotlabs/Module/Profperm.php:63 +msgid "Invalid profile identifier." +msgstr "Indentificativo del profilo non valido." -#: ../../Zotlabs/Module/Import.php:551 -msgid "Your old identity address (xyz@example.com)" -msgstr "Il tuo vecchio identificativo (per esempio pippo@esempio.com)" +#: ../../Zotlabs/Module/Profperm.php:115 +msgid "Profile Visibility Editor" +msgstr "Modifica la visibilità del profilo" -#: ../../Zotlabs/Module/Import.php:552 -msgid "Your old login email address" -msgstr "L'email che usavi per accedere sul vecchio hub" +#: ../../Zotlabs/Module/Profperm.php:117 ../../include/channel.php:1249 +msgid "Profile" +msgstr "Profilo" -#: ../../Zotlabs/Module/Import.php:553 -msgid "Your old login password" -msgstr "La password per il vecchio hub" +#: ../../Zotlabs/Module/Profperm.php:119 +msgid "Click on a contact to add or remove." +msgstr "Clicca su un contatto per aggiungerlo o rimuoverlo." -#: ../../Zotlabs/Module/Import.php:554 +#: ../../Zotlabs/Module/Profperm.php:128 +msgid "Visible To" +msgstr "Visibile a" + +#: ../../Zotlabs/Module/Pubsites.php:22 ../../include/widgets.php:1270 +msgid "Public Hubs" +msgstr "Hub pubblici" + +#: ../../Zotlabs/Module/Pubsites.php:25 msgid "" -"For either option, please choose whether to make this hub your new primary " -"address, or whether your old location should continue this role. You will be" -" able to post from either location, but only one can be marked as the " -"primary location for files, photos, and media." -msgstr "Scegli se vuoi spostare il tuo indirizzo primario su questo hub, oppure se preferisci che quello vecchio resti tale. Potrai pubblicare da entrambi i hub, ma solamente uno sarà indicato come la posizione su cui risiedono i tuoi file, foto, ecc." +"The listed hubs allow public registration for the $Projectname network. All " +"hubs in the network are interlinked so membership on any of them conveys " +"membership in the network as a whole. Some hubs may require subscription or " +"provide tiered service plans. The hub itself may provide " +"additional details." +msgstr "I siti elencati permettono la registrazione libera sulla rete $Projectname. Tutti questi hub sono interconnessi, quindi essere iscritti su uno equivale a una registrazione su tutta la rete. Alcuni siti potrebbero richiedere un abbonamento o dei servizi a pagamento. Per maggiori dettagli visita gli indirizzi nell'elenco." -#: ../../Zotlabs/Module/Import.php:555 -msgid "Make this hub my primary location" -msgstr "Rendi questo hub il mio indirizzo primario" +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Hub URL" +msgstr "URL del hub" -#: ../../Zotlabs/Module/Import.php:556 -msgid "" -"Import existing posts if possible (experimental - limited by available " -"memory" -msgstr "Importa i contenuti pubblicati, se possibile (sperimentale)" +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Access Type" +msgstr "Tipo di accesso" -#: ../../Zotlabs/Module/Import.php:557 -msgid "" -"This process may take several minutes to complete. Please submit the form " -"only once and leave this page open until finished." -msgstr "Questa funzione potrebbe impiegare molto tempo a terminare. Per favore lanciala *una volta sola* e resta su questa pagina finché non avrà finito." +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Registration Policy" +msgstr "Politica di registrazione" -#: ../../Zotlabs/Module/Home.php:74 ../../Zotlabs/Module/Home.php:82 -#: ../../Zotlabs/Module/Siteinfo.php:48 -msgid "$Projectname" -msgstr "$Projectname" +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Stats" +msgstr "" -#: ../../Zotlabs/Module/Home.php:92 +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Software" +msgstr "Software" + +#: ../../Zotlabs/Module/Pubsites.php:31 ../../Zotlabs/Module/Ratings.php:103 +#: ../../include/conversation.php:959 +msgid "Ratings" +msgstr "Valutazioni" + +#: ../../Zotlabs/Module/Pubsites.php:38 +msgid "Rate" +msgstr "Valuta" + +#: ../../Zotlabs/Module/Rate.php:160 +msgid "Website:" +msgstr "Sito web:" + +#: ../../Zotlabs/Module/Rate.php:163 #, php-format -msgid "Welcome to %s" -msgstr "%s ti dà il benvenuto" +msgid "Remote Channel [%s] (not yet known on this site)" +msgstr "Canale remoto [%s] (non ancora conosciuto da questo sito)" -#: ../../Zotlabs/Module/Item.php:179 -msgid "Unable to locate original post." -msgstr "Impossibile trovare il messaggio originale." +#: ../../Zotlabs/Module/Rate.php:164 +msgid "Rating (this information is public)" +msgstr "Valutazione (visibile a tutti)" -#: ../../Zotlabs/Module/Item.php:432 -msgid "Empty post discarded." -msgstr "Il post vuoto è stato ignorato." +#: ../../Zotlabs/Module/Rate.php:165 +msgid "Optionally explain your rating (this information is public)" +msgstr "Commento alla valutazione (facoltativo, visibile a tutti)" -#: ../../Zotlabs/Module/Item.php:472 -msgid "Executable content type not permitted to this channel." -msgstr "I contenuti eseguibili non sono permessi su questo canale." +#: ../../Zotlabs/Module/Ratings.php:73 +msgid "No ratings" +msgstr "Nessuna valutazione" -#: ../../Zotlabs/Module/Item.php:856 -msgid "Duplicate post suppressed." -msgstr "I post duplicati sono scartati." +#: ../../Zotlabs/Module/Ratings.php:104 +msgid "Rating: " +msgstr "Valutazione:" -#: ../../Zotlabs/Module/Item.php:989 -msgid "System error. Post not saved." -msgstr "Errore di sistema. Post non salvato." +#: ../../Zotlabs/Module/Ratings.php:105 +msgid "Website: " +msgstr "Sito web:" -#: ../../Zotlabs/Module/Item.php:1242 -msgid "Unable to obtain post information from database." -msgstr "Impossibile caricare il post dal database." - -#: ../../Zotlabs/Module/Item.php:1249 -#, 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." - -#: ../../Zotlabs/Module/Item.php:1256 -#, php-format -msgid "You have reached your limit of %1$.0f webpages." -msgstr "Hai raggiunto il limite massimo di %1$.0f pagine web." - -#: ../../Zotlabs/Module/Photos.php:82 -msgid "Page owner information could not be retrieved." -msgstr "Impossibile ottenere informazioni sul proprietario della pagina." - -#: ../../Zotlabs/Module/Photos.php:97 ../../Zotlabs/Module/Photos.php:741 -#: ../../Zotlabs/Module/Profile_photo.php:115 -#: ../../Zotlabs/Module/Profile_photo.php:212 -#: ../../Zotlabs/Module/Profile_photo.php:311 -#: ../../include/photo/photo_driver.php:718 -msgid "Profile Photos" -msgstr "Foto del profilo" - -#: ../../Zotlabs/Module/Photos.php:103 ../../Zotlabs/Module/Photos.php:147 -msgid "Album not found." -msgstr "Album non trovato." - -#: ../../Zotlabs/Module/Photos.php:130 -msgid "Delete Album" -msgstr "Elimina album" - -#: ../../Zotlabs/Module/Photos.php:151 -msgid "" -"Multiple storage folders exist with this album name, but within different " -"directories. Please remove the desired folder or folders using the Files " -"manager" -msgstr "Esistono più archivi con il nome di quest'album, ma dentro cartelle diverse. Per favore effettua la rimozione dall'Archivio file " - -#: ../../Zotlabs/Module/Photos.php:208 ../../Zotlabs/Module/Photos.php:1051 -msgid "Delete Photo" -msgstr "Elimina foto" - -#: ../../Zotlabs/Module/Photos.php:531 -msgid "No photos selected" -msgstr "Nessuna foto selezionata" - -#: ../../Zotlabs/Module/Photos.php:580 -msgid "Access to this item is restricted." -msgstr "Questo elemento non è visibile a tutti." - -#: ../../Zotlabs/Module/Photos.php:619 -#, php-format -msgid "%1$.2f MB of %2$.2f MB photo storage used." -msgstr "Hai usato %1$.2f Mb dei %2$.2f Mb di spazio disponibile." - -#: ../../Zotlabs/Module/Photos.php:622 -#, php-format -msgid "%1$.2f MB photo storage used." -msgstr "Hai usato %1$.2f Mb del tuo spazio disponibile." - -#: ../../Zotlabs/Module/Photos.php:658 -msgid "Upload Photos" -msgstr "Carica foto" - -#: ../../Zotlabs/Module/Photos.php:662 -msgid "Enter an album name" -msgstr "Scegli il nome dell'album" - -#: ../../Zotlabs/Module/Photos.php:663 -msgid "or select an existing album (doubleclick)" -msgstr "o seleziona un album esistente (doppio click)" - -#: ../../Zotlabs/Module/Photos.php:664 -msgid "Create a status post for this upload" -msgstr "Pubblica sulla bacheca" - -#: ../../Zotlabs/Module/Photos.php:665 -msgid "Caption (optional):" -msgstr "Titolo (facoltativo):" - -#: ../../Zotlabs/Module/Photos.php:666 -msgid "Description (optional):" -msgstr "Descrizione (facoltativa):" - -#: ../../Zotlabs/Module/Photos.php:693 -msgid "Album name could not be decoded" -msgstr "Non è stato possibile leggere il nome dell'album" - -#: ../../Zotlabs/Module/Photos.php:741 -msgid "Contact Photos" -msgstr "Foto dei contatti" - -#: ../../Zotlabs/Module/Photos.php:764 -msgid "Show Newest First" -msgstr "Prima i più recenti" - -#: ../../Zotlabs/Module/Photos.php:766 -msgid "Show Oldest First" -msgstr "Prima i più vecchi" - -#: ../../Zotlabs/Module/Photos.php:790 ../../Zotlabs/Module/Photos.php:1329 -#: ../../Zotlabs/Module/Embedphotos.php:141 ../../include/widgets.php:1593 -msgid "View Photo" -msgstr "Guarda la foto" - -#: ../../Zotlabs/Module/Photos.php:821 -#: ../../Zotlabs/Module/Embedphotos.php:157 ../../include/widgets.php:1610 -msgid "Edit Album" -msgstr "Modifica album" - -#: ../../Zotlabs/Module/Photos.php:868 -msgid "Permission denied. Access to this item may be restricted." -msgstr "Permesso negato. L'accesso a questo elemento può essere stato limitato." - -#: ../../Zotlabs/Module/Photos.php:870 -msgid "Photo not available" -msgstr "Foto non disponibile" - -#: ../../Zotlabs/Module/Photos.php:928 -msgid "Use as profile photo" -msgstr "Usa come foto del profilo" - -#: ../../Zotlabs/Module/Photos.php:929 -msgid "Use as cover photo" -msgstr "Usa come copertina del canale" - -#: ../../Zotlabs/Module/Photos.php:936 -msgid "Private Photo" -msgstr "Foto privata" - -#: ../../Zotlabs/Module/Photos.php:951 -msgid "View Full Size" -msgstr "Vedi nelle dimensioni originali" - -#: ../../Zotlabs/Module/Photos.php:996 ../../Zotlabs/Module/Admin.php:1437 -#: ../../Zotlabs/Module/Tagrm.php:137 -msgid "Remove" -msgstr "Rimuovi" - -#: ../../Zotlabs/Module/Photos.php:1030 -msgid "Edit photo" -msgstr "Modifica la foto" - -#: ../../Zotlabs/Module/Photos.php:1032 -msgid "Rotate CW (right)" -msgstr "Ruota (senso orario)" - -#: ../../Zotlabs/Module/Photos.php:1033 -msgid "Rotate CCW (left)" -msgstr "Ruota (senso antiorario)" - -#: ../../Zotlabs/Module/Photos.php:1036 -msgid "Enter a new album name" -msgstr "Inserisci il nome del nuovo album" - -#: ../../Zotlabs/Module/Photos.php:1037 -msgid "or select an existing one (doubleclick)" -msgstr "o seleziona uno esistente (doppio click)" - -#: ../../Zotlabs/Module/Photos.php:1040 -msgid "Caption" -msgstr "Didascalia" - -#: ../../Zotlabs/Module/Photos.php:1042 -msgid "Add a Tag" -msgstr "Aggiungi tag" - -#: ../../Zotlabs/Module/Photos.php:1046 -msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" -msgstr "Esempio: @bob, @Barbara_Jensen, @jim@example.com" - -#: ../../Zotlabs/Module/Photos.php:1049 -msgid "Flag as adult in album view" -msgstr "Marca come 'per adulti'" - -#: ../../Zotlabs/Module/Photos.php:1068 ../../Zotlabs/Lib/ThreadItem.php:261 -msgid "I like this (toggle)" -msgstr "Attiva/disattiva Mi piace" - -#: ../../Zotlabs/Module/Photos.php:1069 ../../Zotlabs/Lib/ThreadItem.php:262 -msgid "I don't like this (toggle)" -msgstr "Attiva/disattiva Non mi piace" - -#: ../../Zotlabs/Module/Photos.php:1071 ../../Zotlabs/Lib/ThreadItem.php:397 -#: ../../include/conversation.php:743 -msgid "Please wait" -msgstr "Attendere" - -#: ../../Zotlabs/Module/Photos.php:1087 ../../Zotlabs/Module/Photos.php:1205 -#: ../../Zotlabs/Lib/ThreadItem.php:707 -msgid "This is you" -msgstr "Questo sei tu" - -#: ../../Zotlabs/Module/Photos.php:1089 ../../Zotlabs/Module/Photos.php:1207 -#: ../../Zotlabs/Lib/ThreadItem.php:709 ../../include/js_strings.php:6 -msgid "Comment" -msgstr "Commento" - -#: ../../Zotlabs/Module/Photos.php:1105 ../../include/conversation.php:577 -msgctxt "title" -msgid "Likes" -msgstr "Mi piace" - -#: ../../Zotlabs/Module/Photos.php:1105 ../../include/conversation.php:577 -msgctxt "title" -msgid "Dislikes" -msgstr "Non mi piace" - -#: ../../Zotlabs/Module/Photos.php:1106 ../../include/conversation.php:578 -msgctxt "title" -msgid "Agree" -msgstr "D'accordo" - -#: ../../Zotlabs/Module/Photos.php:1106 ../../include/conversation.php:578 -msgctxt "title" -msgid "Disagree" -msgstr "Non d'accordo" - -#: ../../Zotlabs/Module/Photos.php:1106 ../../include/conversation.php:578 -msgctxt "title" -msgid "Abstain" -msgstr "Astenuti" - -#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:579 -msgctxt "title" -msgid "Attending" -msgstr "Partecipano" - -#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:579 -msgctxt "title" -msgid "Not attending" -msgstr "Non partecipano" - -#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:579 -msgctxt "title" -msgid "Might attend" -msgstr "Forse partecipano" - -#: ../../Zotlabs/Module/Photos.php:1124 ../../Zotlabs/Module/Photos.php:1136 -#: ../../Zotlabs/Lib/ThreadItem.php:181 ../../Zotlabs/Lib/ThreadItem.php:193 -#: ../../include/conversation.php:1738 -msgid "View all" -msgstr "Vedi tutto" - -#: ../../Zotlabs/Module/Photos.php:1128 ../../Zotlabs/Lib/ThreadItem.php:185 -#: ../../include/taxonomy.php:403 ../../include/channel.php:1198 -#: ../../include/conversation.php:1762 -msgctxt "noun" -msgid "Like" -msgid_plural "Likes" -msgstr[0] "Mi piace" -msgstr[1] "Mi piace" - -#: ../../Zotlabs/Module/Photos.php:1133 ../../Zotlabs/Lib/ThreadItem.php:190 -#: ../../include/conversation.php:1765 -msgctxt "noun" -msgid "Dislike" -msgid_plural "Dislikes" -msgstr[0] "Non mi piace" -msgstr[1] "Non mi piace" - -#: ../../Zotlabs/Module/Photos.php:1233 -msgid "Photo Tools" -msgstr "Gestione foto" - -#: ../../Zotlabs/Module/Photos.php:1242 -msgid "In This Photo:" -msgstr "In questa foto:" - -#: ../../Zotlabs/Module/Photos.php:1247 -msgid "Map" -msgstr "Mappa" - -#: ../../Zotlabs/Module/Photos.php:1255 ../../Zotlabs/Lib/ThreadItem.php:386 -msgctxt "noun" -msgid "Likes" -msgstr "Mi piace" - -#: ../../Zotlabs/Module/Photos.php:1256 ../../Zotlabs/Lib/ThreadItem.php:387 -msgctxt "noun" -msgid "Dislikes" -msgstr "Non mi piace" - -#: ../../Zotlabs/Module/Photos.php:1261 ../../Zotlabs/Lib/ThreadItem.php:392 -#: ../../include/acl_selectors.php:283 -msgid "Close" -msgstr "Chiudi" - -#: ../../Zotlabs/Module/Photos.php:1335 -msgid "View Album" -msgstr "Guarda l'album" - -#: ../../Zotlabs/Module/Photos.php:1346 ../../Zotlabs/Module/Photos.php:1359 -#: ../../Zotlabs/Module/Photos.php:1360 -msgid "Recent Photos" -msgstr "Foto recenti" - -#: ../../Zotlabs/Module/Lockview.php:75 -msgid "Remote privacy information not available." -msgstr "Le informazioni remote sulla privacy non sono disponibili." - -#: ../../Zotlabs/Module/Lockview.php:96 -msgid "Visible to:" -msgstr "Visibile a:" - -#: ../../Zotlabs/Module/Import_items.php:104 -msgid "Import completed" -msgstr "Importazione completata" - -#: ../../Zotlabs/Module/Import_items.php:119 -msgid "Import Items" -msgstr "Importa i contenuti" - -#: ../../Zotlabs/Module/Import_items.php:120 -msgid "" -"Use this form to import existing posts and content from an export file." -msgstr "Usa questa funzionalità per importare i vecchi contenuti e i post da un file esportato in precedenza." - -#: ../../Zotlabs/Module/Invite.php:29 -msgid "Total invitation limit exceeded." -msgstr "Hai superato il numero massimo di inviti." - -#: ../../Zotlabs/Module/Invite.php:53 -#, php-format -msgid "%s : Not a valid email address." -msgstr "%s: non è un indirizzo email valido." - -#: ../../Zotlabs/Module/Invite.php:63 -msgid "Please join us on $Projectname" -msgstr "Unisciti a noi su $Projectname" - -#: ../../Zotlabs/Module/Invite.php:74 -msgid "Invitation limit exceeded. Please contact your site administrator." -msgstr "Hai superato il numero massimo di inviti. Contatta l'amministratore se necessario." - -#: ../../Zotlabs/Module/Invite.php:79 -#, php-format -msgid "%s : Message delivery failed." -msgstr "%s: la consegna del messaggio è fallita." - -#: ../../Zotlabs/Module/Invite.php:83 -#, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "%d messaggio inviato." -msgstr[1] "%d messaggi inviati." - -#: ../../Zotlabs/Module/Invite.php:102 -msgid "You have no more invitations available" -msgstr "Non hai altri inviti disponibili" - -#: ../../Zotlabs/Module/Invite.php:133 -msgid "Send invitations" -msgstr "Spedisci inviti" - -#: ../../Zotlabs/Module/Invite.php:134 -msgid "Enter email addresses, one per line:" -msgstr "Inserisci gli indirizzi email, uno per riga:" - -#: ../../Zotlabs/Module/Invite.php:135 ../../Zotlabs/Module/Mail.php:241 -msgid "Your message:" -msgstr "Il tuo messaggio:" - -#: ../../Zotlabs/Module/Invite.php:136 -msgid "Please join my community on $Projectname." -msgstr "Entra nella mia comunità su $Projectname." - -#: ../../Zotlabs/Module/Invite.php:138 -msgid "You will need to supply this invitation code:" -msgstr "Dovrai fornire questo codice invito:" - -#: ../../Zotlabs/Module/Invite.php:139 -msgid "" -"1. Register at any $Projectname location (they are all inter-connected)" -msgstr "1. Registrati su qualsiasi server $Projectname (sono tutti interconnessi)" - -#: ../../Zotlabs/Module/Invite.php:141 -msgid "2. Enter my $Projectname network address into the site searchbar." -msgstr "2. Inserisci il mio indirizzo $Projectname nel riquadro di ricerca del sito." - -#: ../../Zotlabs/Module/Invite.php:142 -msgid "or visit" -msgstr "oppure visita" - -#: ../../Zotlabs/Module/Invite.php:144 -msgid "3. Click [Connect]" -msgstr "3. Clicca su [Aggiungi]" - -#: ../../Zotlabs/Module/Locs.php:25 ../../Zotlabs/Module/Locs.php:54 -msgid "Location not found." -msgstr "Indirizzo non trovato." - -#: ../../Zotlabs/Module/Locs.php:62 -msgid "Location lookup failed." -msgstr "La ricerca dell'indirizzo è fallita." - -#: ../../Zotlabs/Module/Locs.php:66 -msgid "" -"Please select another location to become primary before removing the primary" -" location." -msgstr "Prima di rimuovere il tuo canale primario assicurati di avere scelto una sua copia (clone) come primaria." - -#: ../../Zotlabs/Module/Locs.php:95 -msgid "Syncing locations" -msgstr "Sincronizzazione tra hub" - -#: ../../Zotlabs/Module/Locs.php:105 -msgid "No locations found." -msgstr "Nessun indirizzo trovato." - -#: ../../Zotlabs/Module/Locs.php:116 -msgid "Manage Channel Locations" -msgstr "Modifica gli indirizzi del canale" - -#: ../../Zotlabs/Module/Locs.php:119 -msgid "Primary" -msgstr "Primario" - -#: ../../Zotlabs/Module/Locs.php:120 ../../Zotlabs/Module/Menu.php:113 -msgid "Drop" -msgstr "Elimina" - -#: ../../Zotlabs/Module/Locs.php:122 -msgid "Sync Now" -msgstr "Sincronizza ora" - -#: ../../Zotlabs/Module/Locs.php:123 -msgid "Please wait several minutes between consecutive operations." -msgstr "Si raccomanda di attendere alcuni minuti prima di effettuare una nuova sincronizzazione." - -#: ../../Zotlabs/Module/Locs.php:124 -msgid "" -"When possible, drop a location by logging into that website/hub and removing" -" your channel." -msgstr "Quando possibile, riduci il numero di cloni del tuo canale effettuando il login sul relativo hub e rimuovendoli." - -#: ../../Zotlabs/Module/Locs.php:125 -msgid "Use this form to drop the location if the hub is no longer operating." -msgstr "Usa questo modulo per abbandonare un canale su un hub che non è più funzionante." - -#: ../../Zotlabs/Module/Magic.php:71 -msgid "Hub not found." -msgstr "Hub non trovato." - -#: ../../Zotlabs/Module/Mail.php:38 -msgid "Unable to lookup recipient." -msgstr "Impossibile associare un destinatario." - -#: ../../Zotlabs/Module/Mail.php:45 -msgid "Unable to communicate with requested channel." -msgstr "Impossibile comunicare con il canale richiesto." - -#: ../../Zotlabs/Module/Mail.php:52 -msgid "Cannot verify requested channel." -msgstr "Impossibile verificare il canale richiesto." - -#: ../../Zotlabs/Module/Mail.php:70 -msgid "Selected channel has private message restrictions. Send failed." -msgstr "Il canale ha delle regole restrittive per la ricezione dei messaggi privati. Invio fallito." - -#: ../../Zotlabs/Module/Mail.php:135 -msgid "Messages" -msgstr "Messaggi" - -#: ../../Zotlabs/Module/Mail.php:170 -msgid "Message recalled." -msgstr "Messaggio revocato." - -#: ../../Zotlabs/Module/Mail.php:183 -msgid "Conversation removed." -msgstr "Conversazione rimossa." - -#: ../../Zotlabs/Module/Mail.php:198 ../../Zotlabs/Module/Mail.php:307 -msgid "Expires YYYY-MM-DD HH:MM" -msgstr "Scade il YYYY-MM-DD HH:MM" - -#: ../../Zotlabs/Module/Mail.php:226 -msgid "Requested channel is not in this network" -msgstr "Il canale cercato non è in questa rete" - -#: ../../Zotlabs/Module/Mail.php:234 -msgid "Send Private Message" -msgstr "Invia un messaggio privato" - -#: ../../Zotlabs/Module/Mail.php:235 ../../Zotlabs/Module/Mail.php:360 -msgid "To:" -msgstr "A:" - -#: ../../Zotlabs/Module/Mail.php:238 ../../Zotlabs/Module/Mail.php:362 -msgid "Subject:" -msgstr "Oggetto:" - -#: ../../Zotlabs/Module/Mail.php:243 ../../Zotlabs/Module/Mail.php:368 -#: ../../include/conversation.php:1231 -msgid "Attach file" -msgstr "Allega file" - -#: ../../Zotlabs/Module/Mail.php:245 -msgid "Send" -msgstr "Invia" - -#: ../../Zotlabs/Module/Mail.php:248 ../../Zotlabs/Module/Mail.php:373 -#: ../../include/conversation.php:1266 -msgid "Set expiration date" -msgstr "Data di scadenza" - -#: ../../Zotlabs/Module/Mail.php:332 -msgid "Delete message" -msgstr "Elimina il messaggio" - -#: ../../Zotlabs/Module/Mail.php:333 -msgid "Delivery report" -msgstr "Rapporto di trasmissione" - -#: ../../Zotlabs/Module/Mail.php:334 -msgid "Recall message" -msgstr "Revoca il messaggio" - -#: ../../Zotlabs/Module/Mail.php:336 -msgid "Message has been recalled." -msgstr "Il messaggio è stato revocato." - -#: ../../Zotlabs/Module/Mail.php:353 -msgid "Delete Conversation" -msgstr "Elimina la conversazione" - -#: ../../Zotlabs/Module/Mail.php:355 -msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." -msgstr "Non è disponibile alcun modo sicuro di comunicare con questo canale. Se possibile, prova a rispondere direttamente dalla pagina del profilo del mittente." - -#: ../../Zotlabs/Module/Mail.php:359 -msgid "Send Reply" -msgstr "Invia la risposta" - -#: ../../Zotlabs/Module/Mail.php:364 -#, php-format -msgid "Your message for %s (%s):" -msgstr "Il tuo messaggio per %s (%s):" - -#: ../../Zotlabs/Module/Manage.php:136 -#: ../../Zotlabs/Module/New_channel.php:121 -#, php-format -msgid "You have created %1$.0f of %2$.0f allowed channels." -msgstr "Hai creato %1$.0f dei %2$.0f canali permessi." - -#: ../../Zotlabs/Module/Manage.php:143 -msgid "Create a new channel" -msgstr "Crea un nuovo canale" - -#: ../../Zotlabs/Module/Manage.php:164 ../../Zotlabs/Lib/Apps.php:214 -#: ../../include/nav.php:208 -msgid "Channel Manager" -msgstr "Gestione canali" - -#: ../../Zotlabs/Module/Manage.php:165 -msgid "Current Channel" -msgstr "Canale attuale" - -#: ../../Zotlabs/Module/Manage.php:167 -msgid "Switch to one of your channels by selecting it." -msgstr "Seleziona l'altro canale a cui vuoi passare." - -#: ../../Zotlabs/Module/Manage.php:168 -msgid "Default Channel" -msgstr "Canale predefinito" - -#: ../../Zotlabs/Module/Manage.php:169 -msgid "Make Default" -msgstr "Rendi predefinito" - -#: ../../Zotlabs/Module/Manage.php:172 -#, php-format -msgid "%d new messages" -msgstr "%d nuovi messaggi" - -#: ../../Zotlabs/Module/Manage.php:173 -#, php-format -msgid "%d new introductions" -msgstr "%d nuove richieste di entrare in contatto" - -#: ../../Zotlabs/Module/Manage.php:175 -msgid "Delegated Channel" -msgstr "Canale delegato" - -#: ../../Zotlabs/Module/Menu.php:49 -msgid "Unable to update menu." -msgstr "Impossibile aggiornare il menù." - -#: ../../Zotlabs/Module/Menu.php:60 -msgid "Unable to create menu." -msgstr "Impossibile creare il menù." - -#: ../../Zotlabs/Module/Menu.php:98 ../../Zotlabs/Module/Menu.php:110 -msgid "Menu Name" -msgstr "Nome del menu" - -#: ../../Zotlabs/Module/Menu.php:98 -msgid "Unique name (not visible on webpage) - required" -msgstr "Nome unico (non visibile sulla pagina) - obbligatorio" - -#: ../../Zotlabs/Module/Menu.php:99 ../../Zotlabs/Module/Menu.php:111 -msgid "Menu Title" -msgstr "Titolo del menu" - -#: ../../Zotlabs/Module/Menu.php:99 -msgid "Visible on webpage - leave empty for no title" -msgstr "Visibile sulla pagina - lascia vuoto per non avere un titolo" - -#: ../../Zotlabs/Module/Menu.php:100 -msgid "Allow Bookmarks" -msgstr "Permetti i segnalibri" - -#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 -msgid "Menu may be used to store saved bookmarks" -msgstr "Puoi salvare i segnalibri nei menù" - -#: ../../Zotlabs/Module/Menu.php:101 ../../Zotlabs/Module/Menu.php:159 -msgid "Submit and proceed" -msgstr "Salva e procedi" - -#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2239 -msgid "Menus" -msgstr "Menù" - -#: ../../Zotlabs/Module/Menu.php:117 -msgid "Bookmarks allowed" -msgstr "Permetti segnalibri" - -#: ../../Zotlabs/Module/Menu.php:119 -msgid "Delete this menu" -msgstr "Elimina questo menù" - -#: ../../Zotlabs/Module/Menu.php:120 ../../Zotlabs/Module/Menu.php:154 -msgid "Edit menu contents" -msgstr "Modifica i contenuti del menù" - -#: ../../Zotlabs/Module/Menu.php:121 -msgid "Edit this menu" -msgstr "Modifica questo menù" - -#: ../../Zotlabs/Module/Menu.php:136 -msgid "Menu could not be deleted." -msgstr "Il menù non può essere eliminato." - -#: ../../Zotlabs/Module/Menu.php:144 ../../Zotlabs/Module/Mitem.php:28 -msgid "Menu not found." -msgstr "Menù non trovato." - -#: ../../Zotlabs/Module/Menu.php:149 -msgid "Edit Menu" -msgstr "Modifica menù" - -#: ../../Zotlabs/Module/Menu.php:153 -msgid "Add or remove entries to this menu" -msgstr "Aggiungi o rimuovi elementi di questo menù" - -#: ../../Zotlabs/Module/Menu.php:155 -msgid "Menu name" -msgstr "Nome del menù" - -#: ../../Zotlabs/Module/Menu.php:155 -msgid "Must be unique, only seen by you" -msgstr "Deve essere unico, lo vedrai solo tu" - -#: ../../Zotlabs/Module/Menu.php:156 -msgid "Menu title" -msgstr "Titolo del menù" - -#: ../../Zotlabs/Module/Menu.php:156 -msgid "Menu title as seen by others" -msgstr "Titolo del menù come comparirà a tutti" - -#: ../../Zotlabs/Module/Menu.php:157 -msgid "Allow bookmarks" -msgstr "Permetti l'invio di segnalibri" - -#: ../../Zotlabs/Module/Menu.php:166 ../../Zotlabs/Module/Mitem.php:120 -#: ../../Zotlabs/Module/Xchan.php:41 -msgid "Not found." -msgstr "Non trovato." - -#: ../../Zotlabs/Module/Lostpass.php:19 -msgid "No valid account found." -msgstr "Nessun account valido trovato." - -#: ../../Zotlabs/Module/Lostpass.php:33 -msgid "Password reset request issued. Check your email." -msgstr "La richiesta per reimpostare la password è stata inviata. Controlla la tua email." - -#: ../../Zotlabs/Module/Lostpass.php:39 ../../Zotlabs/Module/Lostpass.php:107 -#, php-format -msgid "Site Member (%s)" -msgstr "Utente del sito (%s)" - -#: ../../Zotlabs/Module/Lostpass.php:44 -#, php-format -msgid "Password reset requested at %s" -msgstr "È stato richiesto di reimpostare password su %s" - -#: ../../Zotlabs/Module/Lostpass.php:67 -msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." -msgstr "La richiesta non può essere verificata (potresti averla già usata precedentemente). La password non sarà reimpostata." - -#: ../../Zotlabs/Module/Lostpass.php:90 ../../boot.php:1712 -msgid "Password Reset" -msgstr "Reimposta la password" - -#: ../../Zotlabs/Module/Lostpass.php:91 -msgid "Your password has been reset as requested." -msgstr "La password è stata reimpostata come richiesto." - -#: ../../Zotlabs/Module/Lostpass.php:92 -msgid "Your new password is" -msgstr "La tua nuova password è" - -#: ../../Zotlabs/Module/Lostpass.php:93 -msgid "Save or copy your new password - and then" -msgstr "Salva o copia la tua nuova password, quindi" - -#: ../../Zotlabs/Module/Lostpass.php:94 -msgid "click here to login" -msgstr "clicca qui per accedere" - -#: ../../Zotlabs/Module/Lostpass.php:95 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." -msgstr "Puoi cambiare la tua password dalla pagina delle Impostazioni dopo aver effettuato l'accesso." - -#: ../../Zotlabs/Module/Lostpass.php:112 -#, php-format -msgid "Your password has changed at %s" -msgstr "La tua password su %s è cambiata" - -#: ../../Zotlabs/Module/Lostpass.php:127 -msgid "Forgot your Password?" -msgstr "Hai dimenticato la password?" - -#: ../../Zotlabs/Module/Lostpass.php:128 -msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." -msgstr "Inserisci il tuo indirizzo email per reimpostare la password. Dopo aver inviato la richiesta, controlla l'email e troverai le istruzioni per continuare." - -#: ../../Zotlabs/Module/Lostpass.php:129 -msgid "Email Address" -msgstr "Indirizzo email" - -#: ../../Zotlabs/Module/Lostpass.php:130 -msgid "Reset" -msgstr "Reimposta" - -#: ../../Zotlabs/Module/Mood.php:67 ../../include/conversation.php:260 -#, php-format -msgctxt "mood" -msgid "%1$s is %2$s" -msgstr "%1$s è %2$s" - -#: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Lib/Apps.php:227 -msgid "Mood" -msgstr "Umore" - -#: ../../Zotlabs/Module/Mood.php:136 -msgid "Set your current mood and tell your friends" -msgstr "Scegli il tuo umore attuale per mostrarlo agli amici" - -#: ../../Zotlabs/Module/Network.php:94 -msgid "No such group" -msgstr "Impossibile trovare il gruppo di canali" - -#: ../../Zotlabs/Module/Network.php:134 -msgid "No such channel" -msgstr "Canale sconosciuto" - -#: ../../Zotlabs/Module/Network.php:139 -msgid "forum" -msgstr "forum" - -#: ../../Zotlabs/Module/Network.php:151 -msgid "Search Results For:" -msgstr "Cerca risultati con:" - -#: ../../Zotlabs/Module/Network.php:215 -msgid "Privacy group is empty" -msgstr "Il gruppo di canali è vuoto" - -#: ../../Zotlabs/Module/Network.php:224 -msgid "Privacy group: " -msgstr "Gruppo di canali:" - -#: ../../Zotlabs/Module/Network.php:250 -msgid "Invalid connection." -msgstr "Contatto non valido." - -#: ../../Zotlabs/Module/Notify.php:57 -#: ../../Zotlabs/Module/Notifications.php:98 -msgid "No more system notifications." -msgstr "Non ci sono nuove notifiche di sistema." - -#: ../../Zotlabs/Module/Notify.php:61 -#: ../../Zotlabs/Module/Notifications.php:102 -msgid "System Notifications" -msgstr "Notifiche di sistema" - -#: ../../Zotlabs/Module/Match.php:26 -msgid "Profile Match" -msgstr "Profili corrispondenti" - -#: ../../Zotlabs/Module/Match.php:35 -msgid "No keywords to match. Please add keywords to your default profile." -msgstr "Non hai scritto parole chiave. Aggiungi parole chiave al tuo profilo predefinito per comparire nelle ricerche." - -#: ../../Zotlabs/Module/Match.php:67 -msgid "is interested in:" -msgstr "interessi personali:" - -#: ../../Zotlabs/Module/Match.php:74 -msgid "No matches" -msgstr "Nessun risultato" - -#: ../../Zotlabs/Module/Channel.php:40 -msgid "Posts and comments" -msgstr "Post e commenti" - -#: ../../Zotlabs/Module/Channel.php:41 -msgid "Only posts" -msgstr "Solo post" - -#: ../../Zotlabs/Module/Channel.php:101 -msgid "Insufficient permissions. Request redirected to profile page." -msgstr "Permessi insufficienti. Sarà visualizzata la pagina del profilo." - -#: ../../Zotlabs/Module/Mitem.php:52 -msgid "Unable to create element." -msgstr "Impossibile creare l'elemento." - -#: ../../Zotlabs/Module/Mitem.php:76 -msgid "Unable to update menu element." -msgstr "Non è possibile aggiornare l'elemento del menù." - -#: ../../Zotlabs/Module/Mitem.php:92 -msgid "Unable to add menu element." -msgstr "Impossibile aggiungere l'elemento al menù." - -#: ../../Zotlabs/Module/Mitem.php:153 ../../Zotlabs/Module/Mitem.php:226 -msgid "Menu Item Permissions" -msgstr "Permessi del menu" - -#: ../../Zotlabs/Module/Mitem.php:154 ../../Zotlabs/Module/Mitem.php:227 -#: ../../Zotlabs/Module/Settings.php:1163 -msgid "(click to open/close)" -msgstr "(clicca per aprire/chiudere)" - -#: ../../Zotlabs/Module/Mitem.php:156 ../../Zotlabs/Module/Mitem.php:172 -msgid "Link Name" -msgstr "Nome link" - -#: ../../Zotlabs/Module/Mitem.php:157 ../../Zotlabs/Module/Mitem.php:231 -msgid "Link or Submenu Target" -msgstr "Azione del link o del sottomenu" - -#: ../../Zotlabs/Module/Mitem.php:157 -msgid "Enter URL of the link or select a menu name to create a submenu" -msgstr "Inserisci l'indirizzo del link o scegli il nome di un sottomenu" - -#: ../../Zotlabs/Module/Mitem.php:158 ../../Zotlabs/Module/Mitem.php:232 -msgid "Use magic-auth if available" -msgstr "Usa l'autenticazione tramite il tuo hub, se disponibile" - -#: ../../Zotlabs/Module/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:233 -msgid "Open link in new window" -msgstr "Apri il link in una nuova finestra" - -#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:234 -msgid "Order in list" -msgstr "Ordine dell'elenco" - -#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:234 -msgid "Higher numbers will sink to bottom of listing" -msgstr "I numeri più alti andranno in fondo all'elenco" - -#: ../../Zotlabs/Module/Mitem.php:161 -msgid "Submit and finish" -msgstr "Salva e termina" - -#: ../../Zotlabs/Module/Mitem.php:162 -msgid "Submit and continue" -msgstr "Salva e continua" - -#: ../../Zotlabs/Module/Mitem.php:170 -msgid "Menu:" -msgstr "Menu:" - -#: ../../Zotlabs/Module/Mitem.php:173 -msgid "Link Target" -msgstr "Destinazione link" - -#: ../../Zotlabs/Module/Mitem.php:176 -msgid "Edit menu" -msgstr "Modifica il menù" - -#: ../../Zotlabs/Module/Mitem.php:179 -msgid "Edit element" -msgstr "Modifica l'elemento" - -#: ../../Zotlabs/Module/Mitem.php:180 -msgid "Drop element" -msgstr "Elimina l'elemento" - -#: ../../Zotlabs/Module/Mitem.php:181 -msgid "New element" -msgstr "Nuovo elemento" - -#: ../../Zotlabs/Module/Mitem.php:182 -msgid "Edit this menu container" -msgstr "Modifica il contenitore del menù" - -#: ../../Zotlabs/Module/Mitem.php:183 -msgid "Add menu element" -msgstr "Aggiungi un elemento al menù" - -#: ../../Zotlabs/Module/Mitem.php:184 -msgid "Delete this menu item" -msgstr "Elimina questo elemento del menù" - -#: ../../Zotlabs/Module/Mitem.php:185 -msgid "Edit this menu item" -msgstr "Modifica questo elemento del menù" - -#: ../../Zotlabs/Module/Mitem.php:202 -msgid "Menu item not found." -msgstr "L'elemento del menù non è stato trovato." - -#: ../../Zotlabs/Module/Mitem.php:215 -msgid "Menu item deleted." -msgstr "L'elemento del menù è stato eliminato." - -#: ../../Zotlabs/Module/Mitem.php:217 -msgid "Menu item could not be deleted." -msgstr "L'elemento del menù non può essere eliminato." - -#: ../../Zotlabs/Module/Mitem.php:224 -msgid "Edit Menu Element" -msgstr "Modifica l'elemento del menù" - -#: ../../Zotlabs/Module/Mitem.php:230 -msgid "Link text" -msgstr "Testo del link" +#: ../../Zotlabs/Module/Ratings.php:107 +msgid "Description: " +msgstr "Descrizione:" #: ../../Zotlabs/Module/Admin.php:77 msgid "Theme settings updated." @@ -3527,7 +3620,7 @@ msgstr "Coda messaggi in uscita" #: ../../Zotlabs/Module/Admin.php:236 msgid "Your software should be updated" -msgstr "Il tuo software necessita di un aggiornamento" +msgstr "Il tuo software ha bisogno di essere aggiornato" #: ../../Zotlabs/Module/Admin.php:241 ../../Zotlabs/Module/Admin.php:490 #: ../../Zotlabs/Module/Admin.php:711 ../../Zotlabs/Module/Admin.php:755 @@ -3574,11 +3667,11 @@ msgstr "Versione del repository (dev)" msgid "Site settings updated." msgstr "Impostazioni del sito salvate correttamente." -#: ../../Zotlabs/Module/Admin.php:400 ../../include/text.php:2829 +#: ../../Zotlabs/Module/Admin.php:400 ../../include/text.php:2841 msgid "Default" msgstr "Predefinito" -#: ../../Zotlabs/Module/Admin.php:410 ../../Zotlabs/Module/Settings.php:899 +#: ../../Zotlabs/Module/Admin.php:410 ../../Zotlabs/Module/Settings.php:798 msgid "mobile" msgstr "mobile" @@ -3610,7 +3703,7 @@ msgstr "È un servizio gratuito" msgid "My site offers free accounts with optional paid upgrades" msgstr "È un servizio gratuito con opzioni aggiuntive a pagamento" -#: ../../Zotlabs/Module/Admin.php:491 ../../include/widgets.php:1476 +#: ../../Zotlabs/Module/Admin.php:491 ../../include/widgets.php:1382 msgid "Site" msgstr "Sito" @@ -3822,7 +3915,7 @@ msgstr "Abilita la guida contestuale" msgid "" "Display contextual help for the current page when the help button is " "pressed." -msgstr "Quando è premuto, il bottone della guida mostra quella relativa alla pagina corrente" +msgstr "Quando è premuto il bottone della guida mostra quella della pagina corrente" #: ../../Zotlabs/Module/Admin.php:525 msgid "Directory Server URL" @@ -3898,12 +3991,12 @@ msgid "0 for no expiration of imported content" msgstr "0 per non avere scadenza" #: ../../Zotlabs/Module/Admin.php:677 ../../Zotlabs/Module/Admin.php:678 -#: ../../Zotlabs/Module/Settings.php:823 +#: ../../Zotlabs/Module/Settings.php:722 msgid "Off" msgstr "Off" #: ../../Zotlabs/Module/Admin.php:677 ../../Zotlabs/Module/Admin.php:678 -#: ../../Zotlabs/Module/Settings.php:823 +#: ../../Zotlabs/Module/Settings.php:722 msgid "On" msgstr "On" @@ -3940,13 +4033,13 @@ msgstr "Server" msgid "" "By default, unfiltered HTML is allowed in embedded media. This is inherently" " insecure." -msgstr "Il codice HTML degli oggetti multimediali incorporati nei post è consentito. Questo tipo di impostazione è insicura." +msgstr "" #: ../../Zotlabs/Module/Admin.php:749 msgid "" "The recommended setting is to only allow unfiltered HTML from the following " "sites:" -msgstr "L'impostazione consigliata è di permettere HTML non filtrato solo dai seguenti siti:" +msgstr "L'impostazione consigliata è di permettere HTML non filtrato solo dai siti seguenti:" #: ../../Zotlabs/Module/Admin.php:750 msgid "" @@ -3958,9 +4051,9 @@ msgstr "https://youtube.com/
https://www.youtube.com/
https://youtu.be msgid "" "All other embedded content will be filtered, unless " "embedded content from that site is explicitly blocked." -msgstr "Tutti gli altri contenuti incorporati saranno filtrati a meno che il contenuto incorporato di quel sito non sia esplicitamente bloccato." +msgstr "Tutti gli altri contenuti incorporati saranno filtrati a meno che il contenuto incorporato di quel sito non venga esplicitamente bloccato." -#: ../../Zotlabs/Module/Admin.php:756 ../../include/widgets.php:1479 +#: ../../Zotlabs/Module/Admin.php:756 ../../include/widgets.php:1385 msgid "Security" msgstr "Sicurezza" @@ -3976,11 +4069,11 @@ msgstr "Seleziona per impedire di vedere le pagine personali di questo sito a ch #: ../../Zotlabs/Module/Admin.php:759 msgid "Set \"Transport Security\" HTTP header" -msgstr "Imposta il \"Transport Security\" HTTP header" +msgstr "" #: ../../Zotlabs/Module/Admin.php:760 msgid "Set \"Content Security Policy\" HTTP header" -msgstr "Imposta il \"Content Security Policy\" HTTP header" +msgstr "" #: ../../Zotlabs/Module/Admin.php:761 msgid "Allow communications only from these sites" @@ -4012,15 +4105,15 @@ msgstr "Blocca la comunicazione da questi canali" #: ../../Zotlabs/Module/Admin.php:765 msgid "Only allow embeds from secure (SSL) websites and links." -msgstr "Permetti di incorporare contenuti solamente da siti sicuri (SSL)." +msgstr "" #: ../../Zotlabs/Module/Admin.php:766 msgid "Allow unfiltered embedded HTML content only from these domains" -msgstr "Incorpora i contenuti HTML non filtrati solo da questi domini" +msgstr "" #: ../../Zotlabs/Module/Admin.php:766 msgid "One site per line. By default embedded content is filtered." -msgstr "Un sito per riga. Normalmente i contenuti incorporati sono filtrati." +msgstr "" #: ../../Zotlabs/Module/Admin.php:767 msgid "Block embedded HTML from these domains" @@ -4128,7 +4221,7 @@ msgid "Account '%s' unblocked" msgstr "Rimosso il blocco verso '%s'" #: ../../Zotlabs/Module/Admin.php:1031 ../../Zotlabs/Module/Admin.php:1044 -#: ../../include/widgets.php:1477 +#: ../../include/widgets.php:1383 msgid "Accounts" msgstr "Account" @@ -4138,7 +4231,7 @@ msgstr "seleziona tutti" #: ../../Zotlabs/Module/Admin.php:1034 msgid "Registrations waiting for confirm" -msgstr "Registrazioni in attesa di conferma" +msgstr "" #: ../../Zotlabs/Module/Admin.php:1035 msgid "Request date" @@ -4234,7 +4327,7 @@ msgstr "Il canale '%s' permette codice nei contenuti" msgid "Channel '%s' code disallowed" msgstr "Il canale '%s' non permette codice nei contenuti" -#: ../../Zotlabs/Module/Admin.php:1210 ../../include/widgets.php:1478 +#: ../../Zotlabs/Module/Admin.php:1210 ../../include/widgets.php:1384 msgid "Channels" msgstr "Canali" @@ -4254,7 +4347,7 @@ msgstr "Permetti codice" msgid "Disallow Code" msgstr "Non permettere codice" -#: ../../Zotlabs/Module/Admin.php:1218 ../../include/conversation.php:1626 +#: ../../Zotlabs/Module/Admin.php:1218 ../../include/conversation.php:1611 msgid "Channel" msgstr "Canale" @@ -4293,7 +4386,7 @@ msgid "Enable" msgstr "Attiva" #: ../../Zotlabs/Module/Admin.php:1330 ../../Zotlabs/Module/Admin.php:1420 -#: ../../include/widgets.php:1481 +#: ../../include/widgets.php:1387 msgid "Plugins" msgstr "Plugin" @@ -4302,8 +4395,8 @@ msgid "Toggle" msgstr "Attiva/disattiva" #: ../../Zotlabs/Module/Admin.php:1332 ../../Zotlabs/Module/Admin.php:1615 -#: ../../Zotlabs/Lib/Apps.php:216 ../../include/nav.php:210 -#: ../../include/widgets.php:647 +#: ../../Zotlabs/Lib/Apps.php:215 ../../include/widgets.php:638 +#: ../../include/nav.php:208 msgid "Settings" msgstr "Impostazioni" @@ -4337,7 +4430,7 @@ msgstr "Disabilitato - incompatibilità di versione" #: ../../Zotlabs/Module/Admin.php:1394 msgid "Enter the public git repository URL of the plugin repo." -msgstr "Inserisci lo URL del repository git dei plugin." +msgstr "" #: ../../Zotlabs/Module/Admin.php:1395 msgid "Plugin repo git URL" @@ -4359,13 +4452,13 @@ msgstr "Scarica il repository del plugin" msgid "Install new repo" msgstr "Installa un nuovo repository" -#: ../../Zotlabs/Module/Admin.php:1405 ../../Zotlabs/Lib/Apps.php:334 +#: ../../Zotlabs/Module/Admin.php:1405 ../../Zotlabs/Lib/Apps.php:330 msgid "Install" msgstr "Installa" #: ../../Zotlabs/Module/Admin.php:1427 msgid "Manage Repos" -msgstr "Gestisci i repository" +msgstr "Gestisci i repsitory" #: ../../Zotlabs/Module/Admin.php:1428 msgid "Installed Plugin Repositories" @@ -4375,8 +4468,8 @@ msgstr "Repository per i plugin installati" msgid "Install a New Plugin Repository" msgstr "Installa un nuovo repository per i plugin" -#: ../../Zotlabs/Module/Admin.php:1435 ../../Zotlabs/Module/Settings.php:72 -#: ../../Zotlabs/Module/Settings.php:670 ../../Zotlabs/Lib/Apps.php:334 +#: ../../Zotlabs/Module/Admin.php:1435 ../../Zotlabs/Module/Settings.php:77 +#: ../../Zotlabs/Module/Settings.php:616 ../../Zotlabs/Lib/Apps.php:330 msgid "Update" msgstr "Aggiorna" @@ -4393,7 +4486,7 @@ msgid "Screenshot" msgstr "Istantanea dello schermo" #: ../../Zotlabs/Module/Admin.php:1613 ../../Zotlabs/Module/Admin.php:1647 -#: ../../include/widgets.php:1482 +#: ../../include/widgets.php:1388 msgid "Themes" msgstr "Temi" @@ -4409,8 +4502,8 @@ msgstr "[Non supportato]" msgid "Log settings updated." msgstr "Impostazioni di log aggiornate." -#: ../../Zotlabs/Module/Admin.php:1732 ../../include/widgets.php:1503 -#: ../../include/widgets.php:1513 +#: ../../Zotlabs/Module/Admin.php:1732 ../../include/widgets.php:1409 +#: ../../include/widgets.php:1419 msgid "Logs" msgstr "Log" @@ -4430,7 +4523,7 @@ msgstr "File di log" msgid "" "Must be writable by web server. Relative to your top-level webserver " "directory." -msgstr "Relativo alla directory base del server web. Deve essere scrivibile." +msgstr "" #: ../../Zotlabs/Module/Admin.php:1742 msgid "Log level" @@ -4476,7 +4569,7 @@ msgstr "Impossibile trovare la definizione del campo" msgid "Edit Profile Field" msgstr "Modifica campo del profilo" -#: ../../Zotlabs/Module/Admin.php:2106 ../../include/widgets.php:1484 +#: ../../Zotlabs/Module/Admin.php:2106 ../../include/widgets.php:1390 msgid "Profile Fields" msgstr "Campi del profilo" @@ -4504,384 +4597,57 @@ msgstr "Campi personalizzati" msgid "Create Custom Field" msgstr "Aggiungi campo personalizzato" -#: ../../Zotlabs/Module/New_channel.php:128 -#: ../../Zotlabs/Module/Register.php:231 -msgid "Name or caption" -msgstr "Nome o titolo" +#: ../../Zotlabs/Module/Appman.php:37 ../../Zotlabs/Module/Appman.php:53 +msgid "App installed." +msgstr "App installata" -#: ../../Zotlabs/Module/New_channel.php:128 -#: ../../Zotlabs/Module/Register.php:231 -msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\"" -msgstr "Per esempio: \"Mario Rossi\", \"Lisa e le sue ricette\", \"Il campionato\", \"Il gruppo di escursionismo\"" +#: ../../Zotlabs/Module/Appman.php:46 +msgid "Malformed app." +msgstr "L'app contiene errori" -#: ../../Zotlabs/Module/New_channel.php:130 -#: ../../Zotlabs/Module/Register.php:233 -msgid "Choose a short nickname" -msgstr "Scegli un nome breve" +#: ../../Zotlabs/Module/Appman.php:104 +msgid "Embed code" +msgstr "Inserisci il codice" -#: ../../Zotlabs/Module/New_channel.php:130 -#: ../../Zotlabs/Module/Register.php:233 -#, php-format -msgid "" -"Your nickname will be used to create an easy to remember channel address " -"e.g. nickname%s" -msgstr "Il nome breve sarà usato per creare un indirizzo facile da ricordare per il tuo canale, per esempio nickname%s" +#: ../../Zotlabs/Module/Appman.php:110 ../../include/widgets.php:107 +msgid "Edit App" +msgstr "Modifica app" -#: ../../Zotlabs/Module/New_channel.php:132 -#: ../../Zotlabs/Module/Register.php:235 -msgid "Channel role and privacy" -msgstr "Tipo di canale e privacy" +#: ../../Zotlabs/Module/Appman.php:110 +msgid "Create App" +msgstr "Crea una app" -#: ../../Zotlabs/Module/New_channel.php:132 -#: ../../Zotlabs/Module/Register.php:235 -msgid "Select a channel role with your privacy requirements." -msgstr "Scegli il tipo di canale che vuoi e la privacy da applicare." +#: ../../Zotlabs/Module/Appman.php:115 +msgid "Name of app" +msgstr "Nome app" -#: ../../Zotlabs/Module/New_channel.php:132 -#: ../../Zotlabs/Module/Register.php:235 -msgid "Read more about roles" -msgstr "Maggiori informazioni sui ruoli" +#: ../../Zotlabs/Module/Appman.php:116 +msgid "Location (URL) of app" +msgstr "Indirizzo (URL) della app" -#: ../../Zotlabs/Module/New_channel.php:135 -msgid "Create Channel" -msgstr "Crea un canale" +#: ../../Zotlabs/Module/Appman.php:118 +msgid "Photo icon URL" +msgstr "URL icona" -#: ../../Zotlabs/Module/New_channel.php:136 -msgid "" -"A channel is your identity on this network. It can represent a person, a " -"blog, or a forum to name a few. Channels can make connections with other " -"channels to share information with highly detailed permissions." -msgstr "Un canale è la tua identità su questa rete. Può rappresentare una persona, un blog o un forum, per esempio. Il tuo canale può essere in contatto con altri canali per condividere contenuti con permessi anche molto dettagliati." +#: ../../Zotlabs/Module/Appman.php:118 +msgid "80 x 80 pixels - optional" +msgstr "80 x 80 pixel - facoltativa" -#: ../../Zotlabs/Module/New_channel.php:137 -msgid "" -"or import an existing channel from another location." -msgstr "oppure importa un canale esistente da un altro server/hub." +#: ../../Zotlabs/Module/Appman.php:119 +msgid "Categories (optional, comma separated list)" +msgstr "Categorie (facoltative, lista separata da virgole)" -#: ../../Zotlabs/Module/Ping.php:265 -msgid "sent you a private message" -msgstr "ti ha inviato un messaggio privato" +#: ../../Zotlabs/Module/Appman.php:120 +msgid "Version ID" +msgstr "ID versione" -#: ../../Zotlabs/Module/Ping.php:313 -msgid "added your channel" -msgstr "ha aggiunto il tuo canale" +#: ../../Zotlabs/Module/Appman.php:121 +msgid "Price of app" +msgstr "Prezzo app" -#: ../../Zotlabs/Module/Ping.php:323 -msgid "g A l F d" -msgstr "g A l d F" - -#: ../../Zotlabs/Module/Ping.php:346 -msgid "[today]" -msgstr "[oggi]" - -#: ../../Zotlabs/Module/Ping.php:355 -msgid "posted an event" -msgstr "ha creato un evento" - -#: ../../Zotlabs/Module/Notifications.php:30 -msgid "Invalid request identifier." -msgstr "L'identificativo della richiesta non è valido." - -#: ../../Zotlabs/Module/Notifications.php:39 -msgid "Discard" -msgstr "Rifiuta" - -#: ../../Zotlabs/Module/Notifications.php:103 ../../include/nav.php:193 -msgid "Mark all system notifications seen" -msgstr "Segna come lette le notifiche di sistema" - -#: ../../Zotlabs/Module/Poke.php:168 ../../Zotlabs/Lib/Apps.php:228 -#: ../../include/conversation.php:963 -msgid "Poke" -msgstr "Poke" - -#: ../../Zotlabs/Module/Poke.php:169 -msgid "Poke somebody" -msgstr "Manda un poke" - -#: ../../Zotlabs/Module/Poke.php:172 -msgid "Poke/Prod" -msgstr "Poke/Prod" - -#: ../../Zotlabs/Module/Poke.php:173 -msgid "Poke, prod or do other things to somebody" -msgstr "Manda un poke o altro a qualcuno" - -#: ../../Zotlabs/Module/Poke.php:180 -msgid "Recipient" -msgstr "Destinatario" - -#: ../../Zotlabs/Module/Poke.php:181 -msgid "Choose what you wish to do to recipient" -msgstr "Scegli cosa vuoi inviare al destinatario" - -#: ../../Zotlabs/Module/Poke.php:184 ../../Zotlabs/Module/Poke.php:185 -msgid "Make this post private" -msgstr "Rendi privato questo post" - -#: ../../Zotlabs/Module/Oexchange.php:27 -msgid "Unable to find your hub." -msgstr "Impossibile raggiungere il tuo hub." - -#: ../../Zotlabs/Module/Oexchange.php:41 -msgid "Post successful." -msgstr "Inviato!" - -#: ../../Zotlabs/Module/Openid.php:30 -msgid "OpenID protocol error. No ID returned." -msgstr "Errore del protocollo OpenID. Nessun ID ricevuto in risposta." - -#: ../../Zotlabs/Module/Openid.php:193 ../../include/auth.php:285 -msgid "Login failed." -msgstr "Accesso fallito." - -#: ../../Zotlabs/Module/Profperm.php:34 ../../Zotlabs/Module/Profperm.php:63 -msgid "Invalid profile identifier." -msgstr "Indentificativo del profilo non valido." - -#: ../../Zotlabs/Module/Profperm.php:115 -msgid "Profile Visibility Editor" -msgstr "Modifica la visibilità del profilo" - -#: ../../Zotlabs/Module/Profperm.php:117 ../../include/channel.php:1290 -msgid "Profile" -msgstr "Profilo" - -#: ../../Zotlabs/Module/Profperm.php:119 -msgid "Click on a contact to add or remove." -msgstr "Clicca su un contatto per aggiungerlo o rimuoverlo." - -#: ../../Zotlabs/Module/Profperm.php:128 -msgid "Visible To" -msgstr "Visibile a" - -#: ../../Zotlabs/Module/Pconfig.php:26 ../../Zotlabs/Module/Pconfig.php:59 -msgid "This setting requires special processing and editing has been blocked." -msgstr "Questa impostazione è bloccata, richiede criteri di modifica speciali" - -#: ../../Zotlabs/Module/Pconfig.php:48 -msgid "Configuration Editor" -msgstr "Editor di configurazione" - -#: ../../Zotlabs/Module/Pconfig.php:49 -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 "Attenzione: alcune delle impostazioni, se cambiate, potrebbero rendere questo canale non funzionante. Lascia questa pagina a meno che tu non sappia con assoluta certezza quali modifiche effettuare." - -#: ../../Zotlabs/Module/Probe.php:28 ../../Zotlabs/Module/Probe.php:32 -#, php-format -msgid "Fetching URL returns error: %1$s" -msgstr "La chiamata all'URL restituisce questo errore: %1$s" - -#: ../../Zotlabs/Module/Siteinfo.php:19 -#, php-format -msgid "Version %s" -msgstr "Versione %s" - -#: ../../Zotlabs/Module/Siteinfo.php:34 -msgid "Installed plugins/addons/apps:" -msgstr "App e componenti installati:" - -#: ../../Zotlabs/Module/Siteinfo.php:36 -msgid "No installed plugins/addons/apps" -msgstr "Nessuna app o componente installato" - -#: ../../Zotlabs/Module/Siteinfo.php:49 -msgid "" -"This is a hub of $Projectname - a global cooperative network of " -"decentralized privacy enhanced websites." -msgstr "Questo è un hub di $Projectname - una rete cooperativa e decentralizzata di siti ad elevata privacy. " - -#: ../../Zotlabs/Module/Siteinfo.php:51 -msgid "Tag: " -msgstr "Tag: " - -#: ../../Zotlabs/Module/Siteinfo.php:53 -msgid "Last background fetch: " -msgstr "Ultima acquisizione:" - -#: ../../Zotlabs/Module/Siteinfo.php:55 -msgid "Current load average: " -msgstr "Carico medio attuale:" - -#: ../../Zotlabs/Module/Siteinfo.php:58 -msgid "Running at web location" -msgstr "In esecuzione sull'indirizzo web" - -#: ../../Zotlabs/Module/Siteinfo.php:59 -msgid "" -"Please visit hubzilla.org to learn more " -"about $Projectname." -msgstr "Visita hubzilla.org per maggiori informazioni su $Projectname." - -#: ../../Zotlabs/Module/Siteinfo.php:60 -msgid "Bug reports and issues: please visit" -msgstr "Per segnalare bug e problemi: visita" - -#: ../../Zotlabs/Module/Siteinfo.php:62 -msgid "$projectname issues" -msgstr "Problematiche note su $projectname" - -#: ../../Zotlabs/Module/Siteinfo.php:63 -msgid "" -"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot " -"com" -msgstr "Per consigli, ringraziamenti, ecc. - scrivi a \"redmatrix\" at librelist - dot com" - -#: ../../Zotlabs/Module/Siteinfo.php:65 -msgid "Site Administrators" -msgstr "Amministratori del sito" - -#: ../../Zotlabs/Module/Rmagic.php:44 -msgid "" -"We encountered a problem while logging in with the OpenID you provided. " -"Please check the correct spelling of the ID." -msgstr "Non è possibile effettuare login con l'OpenID che hai fornito. Per favore controlla che sia scritto correttamente." - -#: ../../Zotlabs/Module/Rmagic.php:44 -msgid "The error message was:" -msgstr "Messaggio di errore ricevuto:" - -#: ../../Zotlabs/Module/Rmagic.php:48 -msgid "Authentication failed." -msgstr "Autenticazione fallita." - -#: ../../Zotlabs/Module/Rmagic.php:88 -msgid "Remote Authentication" -msgstr "Accedi tramite il tuo hub" - -#: ../../Zotlabs/Module/Rmagic.php:89 -msgid "Enter your channel address (e.g. channel@example.com)" -msgstr "Inserisci l'indirizzo del tuo canale (ad esempio lucia@esempio.com)" - -#: ../../Zotlabs/Module/Rmagic.php:90 -msgid "Authenticate" -msgstr "Accedi" - -#: ../../Zotlabs/Module/Pubsites.php:22 ../../include/widgets.php:1337 -msgid "Public Hubs" -msgstr "Hub pubblici" - -#: ../../Zotlabs/Module/Pubsites.php:25 -msgid "" -"The listed hubs allow public registration for the $Projectname network. All " -"hubs in the network are interlinked so membership on any of them conveys " -"membership in the network as a whole. Some hubs may require subscription or " -"provide tiered service plans. The hub itself may provide " -"additional details." -msgstr "I siti elencati permettono la registrazione libera sulla rete $Projectname. Tutti questi hub sono interconnessi, quindi essere iscritti su uno equivale a una registrazione su tutta la rete. Alcuni siti potrebbero richiedere un abbonamento o dei servizi a pagamento. Per maggiori dettagli visita gli indirizzi nell'elenco." - -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Hub URL" -msgstr "URL del hub" - -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Access Type" -msgstr "Tipo di accesso" - -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Registration Policy" -msgstr "Politica di registrazione" - -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Stats" -msgstr "Statistiche" - -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Software" -msgstr "Software" - -#: ../../Zotlabs/Module/Pubsites.php:31 ../../Zotlabs/Module/Ratings.php:103 -#: ../../include/conversation.php:962 -msgid "Ratings" -msgstr "Valutazioni" - -#: ../../Zotlabs/Module/Pubsites.php:38 -msgid "Rate" -msgstr "Valuta" - -#: ../../Zotlabs/Module/Profile_photo.php:186 -msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." -msgstr "Forza l'aggiornamento della pagina o cancella la cache del browser se la nuova foto non viene visualizzata immediatamente." - -#: ../../Zotlabs/Module/Profile_photo.php:389 -msgid "Upload Profile Photo" -msgstr "Carica la foto del profilo" - -#: ../../Zotlabs/Module/Blocks.php:97 ../../Zotlabs/Module/Blocks.php:155 -#: ../../Zotlabs/Module/Editblock.php:108 -msgid "Block Name" -msgstr "Nome del block" - -#: ../../Zotlabs/Module/Blocks.php:154 ../../include/text.php:2238 -msgid "Blocks" -msgstr "Block" - -#: ../../Zotlabs/Module/Blocks.php:156 -msgid "Block Title" -msgstr "Titolo del block" - -#: ../../Zotlabs/Module/Rate.php:160 -msgid "Website:" -msgstr "Sito web:" - -#: ../../Zotlabs/Module/Rate.php:163 -#, php-format -msgid "Remote Channel [%s] (not yet known on this site)" -msgstr "Canale remoto [%s] (non ancora conosciuto da questo sito)" - -#: ../../Zotlabs/Module/Rate.php:164 -msgid "Rating (this information is public)" -msgstr "Valutazione (visibile a tutti)" - -#: ../../Zotlabs/Module/Rate.php:165 -msgid "Optionally explain your rating (this information is public)" -msgstr "Commento alla valutazione (facoltativo, visibile a tutti)" - -#: ../../Zotlabs/Module/Ratings.php:73 -msgid "No ratings" -msgstr "Nessuna valutazione" - -#: ../../Zotlabs/Module/Ratings.php:104 -msgid "Rating: " -msgstr "Valutazione:" - -#: ../../Zotlabs/Module/Ratings.php:105 -msgid "Website: " -msgstr "Sito web:" - -#: ../../Zotlabs/Module/Ratings.php:107 -msgid "Description: " -msgstr "Descrizione:" - -#: ../../Zotlabs/Module/Apps.php:47 ../../include/nav.php:165 -#: ../../include/widgets.php:102 -msgid "Apps" -msgstr "App" - -#: ../../Zotlabs/Module/Editblock.php:124 ../../include/conversation.php:1243 -msgid "Title (optional)" -msgstr "Titolo (facoltativo)" - -#: ../../Zotlabs/Module/Editblock.php:133 -msgid "Edit Block" -msgstr "Modifica il block" - -#: ../../Zotlabs/Module/Common.php:14 -msgid "No channel." -msgstr "Nessun canale." - -#: ../../Zotlabs/Module/Common.php:43 -msgid "Common connections" -msgstr "Contatti in comune" - -#: ../../Zotlabs/Module/Common.php:48 -msgid "No connections in common." -msgstr "Nessun contatto in comune." +#: ../../Zotlabs/Module/Appman.php:122 +msgid "Location (URL) to purchase app" +msgstr "Indirizzo (URL) per acquistare la app" #: ../../Zotlabs/Module/Rbmark.php:94 msgid "Select a bookmark folder" @@ -4986,154 +4752,120 @@ msgstr "sì" msgid "Membership on this site is by invitation only." msgstr "Per registrarsi su questo hub è necessario un invito." -#: ../../Zotlabs/Module/Register.php:262 ../../include/nav.php:149 -#: ../../boot.php:1686 +#: ../../Zotlabs/Module/Register.php:262 ../../include/nav.php:147 +#: ../../boot.php:1685 msgid "Register" msgstr "Registrati" -#: ../../Zotlabs/Module/Register.php:263 -msgid "" -"This site may require email verification after submitting this form. If you " -"are returned to a login page, please check your email for instructions." -msgstr "Dopo aver inviato questo modulo, potrebbe esserti richiesta una verifica via email. Se ti sarà mostrata la pagina di login, segui le istruzioni sull'email per continuare." +#: ../../Zotlabs/Module/Register.php:262 +msgid "Proceed to create your first channel" +msgstr "Continua e crea il tuo primo canale" #: ../../Zotlabs/Module/Regmod.php:15 msgid "Please login." msgstr "Effettua l'accesso." -#: ../../Zotlabs/Module/Removeaccount.php:35 +#: ../../Zotlabs/Module/Removeaccount.php:34 msgid "" "Account removals are not allowed within 48 hours of changing the account " "password." msgstr "Non è possibile eliminare il tuo account prima di 48 ore dall'ultimo cambio password." -#: ../../Zotlabs/Module/Removeaccount.php:57 +#: ../../Zotlabs/Module/Removeaccount.php:56 msgid "Remove This Account" msgstr "Elimina questo account" -#: ../../Zotlabs/Module/Removeaccount.php:58 -#: ../../Zotlabs/Module/Removeme.php:61 +#: ../../Zotlabs/Module/Removeaccount.php:57 +#: ../../Zotlabs/Module/Removeme.php:59 msgid "WARNING: " msgstr "ATTENZIONE:" -#: ../../Zotlabs/Module/Removeaccount.php:58 +#: ../../Zotlabs/Module/Removeaccount.php:57 msgid "" "This account and all its channels will be completely removed from the " "network. " msgstr "Questo account e tutti i suoi canali saranno completamente eliminati dalla rete." -#: ../../Zotlabs/Module/Removeaccount.php:58 -#: ../../Zotlabs/Module/Removeme.php:61 +#: ../../Zotlabs/Module/Removeaccount.php:57 +#: ../../Zotlabs/Module/Removeme.php:59 msgid "This action is permanent and can not be undone!" msgstr "Questo comando è definitivo e non può essere annullato!" -#: ../../Zotlabs/Module/Removeaccount.php:59 -#: ../../Zotlabs/Module/Removeme.php:62 +#: ../../Zotlabs/Module/Removeaccount.php:58 +#: ../../Zotlabs/Module/Removeme.php:60 msgid "Please enter your password for verification:" msgstr "Inserisci la tua password per verifica:" -#: ../../Zotlabs/Module/Removeaccount.php:60 +#: ../../Zotlabs/Module/Removeaccount.php:59 msgid "" "Remove this account, all its channels and all its channel clones from the " "network" msgstr "Elimina dalla rete questo account, tutti i suoi canali e ANCHE tutti gli eventuali canali clonati." -#: ../../Zotlabs/Module/Removeaccount.php:60 +#: ../../Zotlabs/Module/Removeaccount.php:59 msgid "" "By default only the instances of the channels located on this hub will be " "removed from the network" msgstr "A meno che tu non lo richieda espressamente, solo i canali presenti su questo hub saranno rimossi dalla rete." -#: ../../Zotlabs/Module/Removeaccount.php:61 -#: ../../Zotlabs/Module/Settings.php:759 +#: ../../Zotlabs/Module/Removeaccount.php:60 +#: ../../Zotlabs/Module/Settings.php:705 msgid "Remove Account" msgstr "Elimina l'account" -#: ../../Zotlabs/Module/Removeme.php:35 +#: ../../Zotlabs/Module/Removeme.php:33 msgid "" "Channel removals are not allowed within 48 hours of changing the account " "password." msgstr "Non è possibile eliminare un canale prima di 48 ore dall'ultimo cambio password." -#: ../../Zotlabs/Module/Removeme.php:60 +#: ../../Zotlabs/Module/Removeme.php:58 msgid "Remove This Channel" msgstr "Elimina questo canale" -#: ../../Zotlabs/Module/Removeme.php:61 +#: ../../Zotlabs/Module/Removeme.php:59 msgid "This channel will be completely removed from the network. " msgstr "Questo canale sarà completamente eliminato dalla rete." -#: ../../Zotlabs/Module/Removeme.php:63 +#: ../../Zotlabs/Module/Removeme.php:61 msgid "Remove this channel and all its clones from the network" msgstr "Elimina questo canale e tutti i suoi cloni dalla rete" -#: ../../Zotlabs/Module/Removeme.php:63 +#: ../../Zotlabs/Module/Removeme.php:61 msgid "" "By default only the instance of the channel located on this hub will be " "removed from the network" msgstr "L'impostazione predefinita è che sia eliminata solo l'istanza del canale presente su questo hub, non gli eventuali cloni" -#: ../../Zotlabs/Module/Removeme.php:64 ../../Zotlabs/Module/Settings.php:1219 +#: ../../Zotlabs/Module/Removeme.php:62 ../../Zotlabs/Module/Settings.php:1124 msgid "Remove Channel" msgstr "Elimina questo canale" -#: ../../Zotlabs/Module/Uexport.php:55 ../../Zotlabs/Module/Uexport.php:56 -msgid "Export Channel" -msgstr "Esporta il canale" - -#: ../../Zotlabs/Module/Uexport.php:57 +#: ../../Zotlabs/Module/Rmagic.php:44 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 "Esporta le informazioni di base del canale in un file. In pratica è un salvataggio delle tue connessioni, dei permessi che hai assegnato e del tuo profilo che così potrà essere importato su un altro server/hub. Il file non includerà i tuoi post e altri contenuti che hai creato o caricato." +"We encountered a problem while logging in with the OpenID you provided. " +"Please check the correct spelling of the ID." +msgstr "Non è possibile effettuare login con l'OpenID che hai fornito. Per favore controlla che sia scritto correttamente." -#: ../../Zotlabs/Module/Uexport.php:58 -msgid "Export Content" -msgstr "Esporta i contenuti" +#: ../../Zotlabs/Module/Rmagic.php:44 +msgid "The error message was:" +msgstr "Messaggio di errore ricevuto:" -#: ../../Zotlabs/Module/Uexport.php:59 -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 "Esporta il tuo canale e i contenuti recenti in un file di salvataggio che potrà essere importato su un altro server/hub. Sarà un backup dei tuoi contatti, dei permessi che hai assegnato, dei dati del profilo e dei post degli ultimi mesi. Il file potrebbe essere MOLTO grande. Sarà necessario attendere con pazienza - saranno necessari molti minuti prima che inizi lo scaricamento." +#: ../../Zotlabs/Module/Rmagic.php:48 +msgid "Authentication failed." +msgstr "Autenticazione fallita." -#: ../../Zotlabs/Module/Uexport.php:60 -msgid "Export your posts from a given year." -msgstr "Esporta i tuoi post a partire dall'anno scelto." +#: ../../Zotlabs/Module/Rmagic.php:88 +msgid "Remote Authentication" +msgstr "Accedi tramite il tuo hub" -#: ../../Zotlabs/Module/Uexport.php:62 -msgid "" -"You may also export your posts and conversations for a particular year or " -"month. Adjust the date in your browser location bar to select other dates. " -"If the export fails (possibly due to memory exhaustion on your server hub), " -"please try again selecting a more limited date range." -msgstr "Puoi anche esportare post e conversazioni di un particolare anno o mese. Modifica la data nella barra dell'indirizzo del browser per scegliere date differenti. Se l'esportazione dovesse fallire (la memoria sul server potrebbe non bastare), riprova scegliendo un intervallo più breve tra le date." +#: ../../Zotlabs/Module/Rmagic.php:89 +msgid "Enter your channel address (e.g. channel@example.com)" +msgstr "Inserisci l'indirizzo del tuo canale (ad esempio lucia@esempio.com)" -#: ../../Zotlabs/Module/Uexport.php:63 -#, php-format -msgid "" -"To select all posts for a given year, such as this year, visit %2$s" -msgstr "Per selezionare tutti i post di un anno, come per esempio quello in corso, visita %2$s " - -#: ../../Zotlabs/Module/Uexport.php:64 -#, php-format -msgid "" -"To select all posts for a given month, such as January of this year, visit " -"%2$s" -msgstr "Per selezionare tutti post di un dato mese, come per esempio gennaio di quest'anno, visita %2$s" - -#: ../../Zotlabs/Module/Uexport.php:65 -#, php-format -msgid "" -"These content files may be imported or restored by visiting %2$s on any site containing your channel. For best results" -" please import or restore these in date order (oldest first)." -msgstr "Questi contenuti potranno essere importati o ripristinati visitando %2$s su qualsiasi sito/hub dove è presente il tuo canale. Per mantenere l'ordinamento originale fai attenzione ad importare i file secondo la data (prima il più vecchio)" +#: ../../Zotlabs/Module/Rmagic.php:90 +msgid "Authenticate" +msgstr "Accedi" #: ../../Zotlabs/Module/Search.php:216 #, php-format @@ -5149,652 +4881,609 @@ msgstr "Risultati ricerca: %s" msgid "No service class restrictions found." msgstr "Non esistono restrizioni su questa classe di account." -#: ../../Zotlabs/Module/Settings.php:64 +#: ../../Zotlabs/Module/Settings.php:69 msgid "Name is required" msgstr "Il nome è obbligatorio" -#: ../../Zotlabs/Module/Settings.php:68 +#: ../../Zotlabs/Module/Settings.php:73 msgid "Key and Secret are required" msgstr "Key e Secret sono richiesti" -#: ../../Zotlabs/Module/Settings.php:138 -#, php-format -msgid "This channel is limited to %d tokens" -msgstr "Questo canale è limitato a %d token" - -#: ../../Zotlabs/Module/Settings.php:144 -msgid "Name and Password are required." -msgstr "Nome e password sono obbligatori." - -#: ../../Zotlabs/Module/Settings.php:168 -msgid "Token saved." -msgstr "Token salvato." - -#: ../../Zotlabs/Module/Settings.php:274 +#: ../../Zotlabs/Module/Settings.php:225 msgid "Not valid email." msgstr "Email non valida." -#: ../../Zotlabs/Module/Settings.php:277 +#: ../../Zotlabs/Module/Settings.php:228 msgid "Protected email address. Cannot change to that email." msgstr "È un indirizzo email riservato. Non puoi sceglierlo." -#: ../../Zotlabs/Module/Settings.php:286 +#: ../../Zotlabs/Module/Settings.php:237 msgid "System failure storing new email. Please try again." msgstr "Errore di sistema. Non è stato possibile memorizzare il tuo messaggio, riprova per favore." -#: ../../Zotlabs/Module/Settings.php:303 +#: ../../Zotlabs/Module/Settings.php:254 msgid "Password verification failed." msgstr "Verifica della password fallita." -#: ../../Zotlabs/Module/Settings.php:310 +#: ../../Zotlabs/Module/Settings.php:261 msgid "Passwords do not match. Password unchanged." msgstr "Le password non corrispondono. Password non cambiata." -#: ../../Zotlabs/Module/Settings.php:314 +#: ../../Zotlabs/Module/Settings.php:265 msgid "Empty passwords are not allowed. Password unchanged." msgstr "Le password non possono essere vuote. Password non cambiata." -#: ../../Zotlabs/Module/Settings.php:328 +#: ../../Zotlabs/Module/Settings.php:279 msgid "Password changed." msgstr "Password cambiata." -#: ../../Zotlabs/Module/Settings.php:330 +#: ../../Zotlabs/Module/Settings.php:281 msgid "Password update failed. Please try again." msgstr "Modifica password fallita. Prova ancora." -#: ../../Zotlabs/Module/Settings.php:579 +#: ../../Zotlabs/Module/Settings.php:525 msgid "Settings updated." msgstr "Impostazioni aggiornate." -#: ../../Zotlabs/Module/Settings.php:643 ../../Zotlabs/Module/Settings.php:669 -#: ../../Zotlabs/Module/Settings.php:705 +#: ../../Zotlabs/Module/Settings.php:589 ../../Zotlabs/Module/Settings.php:615 +#: ../../Zotlabs/Module/Settings.php:651 msgid "Add application" msgstr "Aggiungi una app" -#: ../../Zotlabs/Module/Settings.php:646 +#: ../../Zotlabs/Module/Settings.php:592 msgid "Name of application" msgstr "Nome dell'applicazione" -#: ../../Zotlabs/Module/Settings.php:647 ../../Zotlabs/Module/Settings.php:673 +#: ../../Zotlabs/Module/Settings.php:593 ../../Zotlabs/Module/Settings.php:619 msgid "Consumer Key" msgstr "Consumer Key" -#: ../../Zotlabs/Module/Settings.php:647 ../../Zotlabs/Module/Settings.php:648 +#: ../../Zotlabs/Module/Settings.php:593 ../../Zotlabs/Module/Settings.php:594 msgid "Automatically generated - change if desired. Max length 20" msgstr "Generato automaticamente - è possibile cambiarlo. Lunghezza massima 20" -#: ../../Zotlabs/Module/Settings.php:648 ../../Zotlabs/Module/Settings.php:674 +#: ../../Zotlabs/Module/Settings.php:594 ../../Zotlabs/Module/Settings.php:620 msgid "Consumer Secret" msgstr "Consumer Secret" -#: ../../Zotlabs/Module/Settings.php:649 ../../Zotlabs/Module/Settings.php:675 +#: ../../Zotlabs/Module/Settings.php:595 ../../Zotlabs/Module/Settings.php:621 msgid "Redirect" msgstr "Redirect" -#: ../../Zotlabs/Module/Settings.php:649 +#: ../../Zotlabs/Module/Settings.php:595 msgid "" "Redirect URI - leave blank unless your application specifically requires " "this" msgstr "URI di riderezione - lasciare vuoto se non richiesto specificamente dall'applicazione" -#: ../../Zotlabs/Module/Settings.php:650 ../../Zotlabs/Module/Settings.php:676 +#: ../../Zotlabs/Module/Settings.php:596 ../../Zotlabs/Module/Settings.php:622 msgid "Icon url" msgstr "Url icona" -#: ../../Zotlabs/Module/Settings.php:650 ../../Zotlabs/Module/Sources.php:112 +#: ../../Zotlabs/Module/Settings.php:596 ../../Zotlabs/Module/Sources.php:112 #: ../../Zotlabs/Module/Sources.php:147 msgid "Optional" msgstr "Facoltativo" -#: ../../Zotlabs/Module/Settings.php:661 +#: ../../Zotlabs/Module/Settings.php:607 msgid "Application not found." msgstr "Applicazione non trovata." -#: ../../Zotlabs/Module/Settings.php:704 +#: ../../Zotlabs/Module/Settings.php:650 msgid "Connected Apps" msgstr "App connesse" -#: ../../Zotlabs/Module/Settings.php:708 +#: ../../Zotlabs/Module/Settings.php:654 msgid "Client key starts with" msgstr "La client key inizia con" -#: ../../Zotlabs/Module/Settings.php:709 +#: ../../Zotlabs/Module/Settings.php:655 msgid "No name" msgstr "Nessun nome" -#: ../../Zotlabs/Module/Settings.php:710 +#: ../../Zotlabs/Module/Settings.php:656 msgid "Remove authorization" msgstr "Revoca l'autorizzazione" -#: ../../Zotlabs/Module/Settings.php:723 +#: ../../Zotlabs/Module/Settings.php:669 msgid "No feature settings configured" msgstr "Non hai componenti aggiuntivi da personalizzare" -#: ../../Zotlabs/Module/Settings.php:730 +#: ../../Zotlabs/Module/Settings.php:676 msgid "Feature/Addon Settings" msgstr "Impostazioni dei componenti aggiuntivi" -#: ../../Zotlabs/Module/Settings.php:753 +#: ../../Zotlabs/Module/Settings.php:699 msgid "Account Settings" msgstr "Il tuo account" -#: ../../Zotlabs/Module/Settings.php:754 +#: ../../Zotlabs/Module/Settings.php:700 msgid "Current Password" msgstr "Password attuale" -#: ../../Zotlabs/Module/Settings.php:755 +#: ../../Zotlabs/Module/Settings.php:701 msgid "Enter New Password" msgstr "Nuova password" -#: ../../Zotlabs/Module/Settings.php:756 +#: ../../Zotlabs/Module/Settings.php:702 msgid "Confirm New Password" msgstr "Conferma la nuova password" -#: ../../Zotlabs/Module/Settings.php:756 +#: ../../Zotlabs/Module/Settings.php:702 msgid "Leave password fields blank unless changing" msgstr "Lascia vuoti questi campi per non cambiare la password" -#: ../../Zotlabs/Module/Settings.php:758 -#: ../../Zotlabs/Module/Settings.php:1136 +#: ../../Zotlabs/Module/Settings.php:704 +#: ../../Zotlabs/Module/Settings.php:1041 msgid "Email Address:" msgstr "Indirizzo email:" -#: ../../Zotlabs/Module/Settings.php:760 +#: ../../Zotlabs/Module/Settings.php:706 msgid "Remove this account including all its channels" msgstr "Elimina questo account e tutti i suoi canali" -#: ../../Zotlabs/Module/Settings.php:789 -msgid "" -"Use this form to create temporary access identifiers to share things with " -"non-members. These identities may be used in Access Control Lists and " -"visitors may login using these credentials to access the private content." -msgstr "Usa questo modulo per creare credenziali di accesso temporanee per condividere oggetti con chi non è utente. Queste identità possono essere gestite nelle Access Control List e i visitatori possono usare le credenziali per accedere ai contenuti privati." - -#: ../../Zotlabs/Module/Settings.php:791 -msgid "" -"You may also provide dropbox style access links to friends and " -"associates by adding the Login Password to any specific site URL as shown. " -"Examples:" -msgstr "Puoi anche fornire un accesso simile a dropbox agli amici o ai colleghi aggiungendo la password all'url che vuoi comunicare, come mostrato sotto. Esempi:" - -#: ../../Zotlabs/Module/Settings.php:796 ../../include/widgets.php:614 -msgid "Guest Access Tokens" -msgstr "Token di accesso ospite" - -#: ../../Zotlabs/Module/Settings.php:803 -msgid "Login Name" -msgstr "Nome utente" - -#: ../../Zotlabs/Module/Settings.php:804 -msgid "Login Password" -msgstr "Password" - -#: ../../Zotlabs/Module/Settings.php:805 -msgid "Expires (yyyy-mm-dd)" -msgstr "Con scadenza (aaaa-mm-gg)" - -#: ../../Zotlabs/Module/Settings.php:830 +#: ../../Zotlabs/Module/Settings.php:729 msgid "Additional Features" msgstr "Funzionalità opzionali" -#: ../../Zotlabs/Module/Settings.php:854 +#: ../../Zotlabs/Module/Settings.php:753 msgid "Connector Settings" msgstr "Impostazioni del connettore" -#: ../../Zotlabs/Module/Settings.php:893 +#: ../../Zotlabs/Module/Settings.php:792 msgid "No special theme for mobile devices" msgstr "Nessun tema per dispositivi mobili" -#: ../../Zotlabs/Module/Settings.php:896 +#: ../../Zotlabs/Module/Settings.php:795 #, php-format msgid "%s - (Experimental)" msgstr "%s - (Sperimentale)" -#: ../../Zotlabs/Module/Settings.php:938 +#: ../../Zotlabs/Module/Settings.php:837 msgid "Display Settings" msgstr "Aspetto" -#: ../../Zotlabs/Module/Settings.php:939 +#: ../../Zotlabs/Module/Settings.php:838 msgid "Theme Settings" msgstr "Impostazioni del tema" -#: ../../Zotlabs/Module/Settings.php:940 +#: ../../Zotlabs/Module/Settings.php:839 msgid "Custom Theme Settings" msgstr "Personalizzazione del tema" -#: ../../Zotlabs/Module/Settings.php:941 +#: ../../Zotlabs/Module/Settings.php:840 msgid "Content Settings" msgstr "Impostazioni dei contenuti" -#: ../../Zotlabs/Module/Settings.php:947 +#: ../../Zotlabs/Module/Settings.php:846 msgid "Display Theme:" msgstr "Tema per schermi medio grandi:" -#: ../../Zotlabs/Module/Settings.php:948 +#: ../../Zotlabs/Module/Settings.php:847 msgid "Mobile Theme:" msgstr "Tema per dispositivi mobili:" -#: ../../Zotlabs/Module/Settings.php:949 +#: ../../Zotlabs/Module/Settings.php:848 msgid "Preload images before rendering the page" msgstr "Anticipa il caricamento delle immagini prima del rendering della pagina" -#: ../../Zotlabs/Module/Settings.php:949 +#: ../../Zotlabs/Module/Settings.php:848 msgid "" "The subjective page load time will be longer but the page will be ready when" " displayed" msgstr "Il tempo di caricamento della pagina sarà più lungo ma sarà mostrato il rendering completo" -#: ../../Zotlabs/Module/Settings.php:950 +#: ../../Zotlabs/Module/Settings.php:849 msgid "Enable user zoom on mobile devices" msgstr "Attiva la possibilità di fare zoom sui dispositivi mobili" -#: ../../Zotlabs/Module/Settings.php:951 +#: ../../Zotlabs/Module/Settings.php:850 msgid "Update browser every xx seconds" msgstr "Aggiorna il browser ogni x secondi" -#: ../../Zotlabs/Module/Settings.php:951 +#: ../../Zotlabs/Module/Settings.php:850 msgid "Minimum of 10 seconds, no maximum" msgstr "Minimo 10 secondi, nessun limite massimo" -#: ../../Zotlabs/Module/Settings.php:952 +#: ../../Zotlabs/Module/Settings.php:851 msgid "Maximum number of conversations to load at any time:" msgstr "Massimo numero di conversazioni da mostrare ogni volta:" -#: ../../Zotlabs/Module/Settings.php:952 +#: ../../Zotlabs/Module/Settings.php:851 msgid "Maximum of 100 items" msgstr "Massimo 100" -#: ../../Zotlabs/Module/Settings.php:953 +#: ../../Zotlabs/Module/Settings.php:852 msgid "Show emoticons (smilies) as images" msgstr "Mostra le faccine (smilies) come immagini" -#: ../../Zotlabs/Module/Settings.php:954 +#: ../../Zotlabs/Module/Settings.php:853 msgid "Link post titles to source" msgstr "Il link del titolo di un post porta al sito originale" -#: ../../Zotlabs/Module/Settings.php:955 +#: ../../Zotlabs/Module/Settings.php:854 msgid "System Page Layout Editor - (advanced)" msgstr "Modifica i layout di sistema (avanzato)" -#: ../../Zotlabs/Module/Settings.php:958 +#: ../../Zotlabs/Module/Settings.php:857 msgid "Use blog/list mode on channel page" msgstr "Mostra il canale nella modalità blog" -#: ../../Zotlabs/Module/Settings.php:958 ../../Zotlabs/Module/Settings.php:959 +#: ../../Zotlabs/Module/Settings.php:857 ../../Zotlabs/Module/Settings.php:858 msgid "(comments displayed separately)" msgstr "(i commenti sono mostrati separatamente)" -#: ../../Zotlabs/Module/Settings.php:959 +#: ../../Zotlabs/Module/Settings.php:858 msgid "Use blog/list mode on grid page" msgstr "Mostra la tua rete in modalità blog" -#: ../../Zotlabs/Module/Settings.php:960 +#: ../../Zotlabs/Module/Settings.php:859 msgid "Channel page max height of content (in pixels)" msgstr "Altezza massima dei contenuti del canale (in pixel)" -#: ../../Zotlabs/Module/Settings.php:960 ../../Zotlabs/Module/Settings.php:961 +#: ../../Zotlabs/Module/Settings.php:859 ../../Zotlabs/Module/Settings.php:860 msgid "click to expand content exceeding this height" msgstr "dovrai cliccare sul post per mostrare i contenuti di dimensioni maggiori" -#: ../../Zotlabs/Module/Settings.php:961 +#: ../../Zotlabs/Module/Settings.php:860 msgid "Grid page max height of content (in pixels)" msgstr "Altezza massima dei contenuti della tua rete (in pixel)" -#: ../../Zotlabs/Module/Settings.php:990 +#: ../../Zotlabs/Module/Settings.php:894 msgid "Nobody except yourself" msgstr "Nessuno tranne te" -#: ../../Zotlabs/Module/Settings.php:991 +#: ../../Zotlabs/Module/Settings.php:895 msgid "Only those you specifically allow" msgstr "Solo chi riceve il mio permesso" -#: ../../Zotlabs/Module/Settings.php:992 +#: ../../Zotlabs/Module/Settings.php:896 msgid "Approved connections" msgstr "Contatti approvati" -#: ../../Zotlabs/Module/Settings.php:993 +#: ../../Zotlabs/Module/Settings.php:897 msgid "Any connections" msgstr "Tutti i contatti" -#: ../../Zotlabs/Module/Settings.php:994 +#: ../../Zotlabs/Module/Settings.php:898 msgid "Anybody on this website" msgstr "Chiunque su questo hub" -#: ../../Zotlabs/Module/Settings.php:995 +#: ../../Zotlabs/Module/Settings.php:899 msgid "Anybody in this network" msgstr "Chiunque su questa rete" -#: ../../Zotlabs/Module/Settings.php:996 +#: ../../Zotlabs/Module/Settings.php:900 msgid "Anybody authenticated" msgstr "Chiunque abbia effettuato l'accesso" -#: ../../Zotlabs/Module/Settings.php:997 +#: ../../Zotlabs/Module/Settings.php:901 msgid "Anybody on the internet" msgstr "Chiunque su internet" -#: ../../Zotlabs/Module/Settings.php:1071 +#: ../../Zotlabs/Module/Settings.php:976 msgid "Publish your default profile in the network directory" msgstr "Mostra il mio profilo predefinito negli elenchi pubblici dei canali" -#: ../../Zotlabs/Module/Settings.php:1076 +#: ../../Zotlabs/Module/Settings.php:981 msgid "Allow us to suggest you as a potential friend to new members?" msgstr "Vuoi essere suggerito come amico ai nuovi membri?" -#: ../../Zotlabs/Module/Settings.php:1085 +#: ../../Zotlabs/Module/Settings.php:990 msgid "Your channel address is" msgstr "L'indirizzo del tuo canale è" -#: ../../Zotlabs/Module/Settings.php:1127 +#: ../../Zotlabs/Module/Settings.php:1032 msgid "Channel Settings" msgstr "Impostazioni del canale" -#: ../../Zotlabs/Module/Settings.php:1134 +#: ../../Zotlabs/Module/Settings.php:1039 msgid "Basic Settings" msgstr "Impostazioni di base" -#: ../../Zotlabs/Module/Settings.php:1135 ../../include/channel.php:1180 +#: ../../Zotlabs/Module/Settings.php:1040 ../../include/channel.php:1140 msgid "Full Name:" msgstr "Nome completo:" -#: ../../Zotlabs/Module/Settings.php:1137 +#: ../../Zotlabs/Module/Settings.php:1042 msgid "Your Timezone:" msgstr "Il tuo fuso orario:" -#: ../../Zotlabs/Module/Settings.php:1138 +#: ../../Zotlabs/Module/Settings.php:1043 msgid "Default Post Location:" msgstr "Località predefinita:" -#: ../../Zotlabs/Module/Settings.php:1138 +#: ../../Zotlabs/Module/Settings.php:1043 msgid "Geographical location to display on your posts" msgstr "La posizione geografica da mostrare sui tuoi post" -#: ../../Zotlabs/Module/Settings.php:1139 +#: ../../Zotlabs/Module/Settings.php:1044 msgid "Use Browser Location:" msgstr "Usa la località rilevata dal browser:" -#: ../../Zotlabs/Module/Settings.php:1141 +#: ../../Zotlabs/Module/Settings.php:1046 msgid "Adult Content" msgstr "Contenuto per adulti" -#: ../../Zotlabs/Module/Settings.php:1141 +#: ../../Zotlabs/Module/Settings.php:1046 msgid "" "This channel frequently or regularly publishes adult content. (Please tag " "any adult material and/or nudity with #NSFW)" msgstr "Questo canale pubblica frequentemente contenuto per adulti. (I contenuti per adulti vanno taggati #NSFW - Not Safe For Work)" -#: ../../Zotlabs/Module/Settings.php:1143 +#: ../../Zotlabs/Module/Settings.php:1048 msgid "Security and Privacy Settings" msgstr "Impostazioni di sicurezza e privacy" -#: ../../Zotlabs/Module/Settings.php:1146 +#: ../../Zotlabs/Module/Settings.php:1051 msgid "Your permissions are already configured. Click to view/adjust" msgstr "I tuoi permessi sono già stati configurati. Clicca per vederli o modificarli" -#: ../../Zotlabs/Module/Settings.php:1148 +#: ../../Zotlabs/Module/Settings.php:1053 msgid "Hide my online presence" msgstr "Nascondi la mia presenza online" -#: ../../Zotlabs/Module/Settings.php:1148 +#: ../../Zotlabs/Module/Settings.php:1053 msgid "Prevents displaying in your profile that you are online" msgstr "Non mostrare sul tuo profilo quando sei online" -#: ../../Zotlabs/Module/Settings.php:1150 +#: ../../Zotlabs/Module/Settings.php:1055 msgid "Simple Privacy Settings:" msgstr "Impostazioni di privacy semplificate" -#: ../../Zotlabs/Module/Settings.php:1151 +#: ../../Zotlabs/Module/Settings.php:1056 msgid "" "Very Public - extremely permissive (should be used with caution)" msgstr "Tutto pubblico - estremamente permissivo (da usare con cautela)" -#: ../../Zotlabs/Module/Settings.php:1152 +#: ../../Zotlabs/Module/Settings.php:1057 msgid "" "Typical - default public, privacy when desired (similar to social " "network permissions but with improved privacy)" msgstr "Standard - contenuti normalmente pubblici, ma anche privati se necessario (simile ai social network ma con privacy migliorata)" -#: ../../Zotlabs/Module/Settings.php:1153 +#: ../../Zotlabs/Module/Settings.php:1058 msgid "Private - default private, never open or public" msgstr "Privato - contenuti normalmente privati, nulla è aperto o pubblico" -#: ../../Zotlabs/Module/Settings.php:1154 +#: ../../Zotlabs/Module/Settings.php:1059 msgid "Blocked - default blocked to/from everybody" msgstr "Bloccato - bloccato in invio e ricezione dei contenuti" -#: ../../Zotlabs/Module/Settings.php:1156 +#: ../../Zotlabs/Module/Settings.php:1061 msgid "Allow others to tag your posts" msgstr "Permetti ad altri di taggare i tuoi post" -#: ../../Zotlabs/Module/Settings.php:1156 +#: ../../Zotlabs/Module/Settings.php:1061 msgid "" "Often used by the community to retro-actively flag inappropriate content" msgstr "Usato spesso dalla comunità per marcare contenuti inappropriati già esistenti" -#: ../../Zotlabs/Module/Settings.php:1158 +#: ../../Zotlabs/Module/Settings.php:1063 msgid "Advanced Privacy Settings" msgstr "Impostazioni di privacy avanzate" -#: ../../Zotlabs/Module/Settings.php:1160 +#: ../../Zotlabs/Module/Settings.php:1065 msgid "Expire other channel content after this many days" msgstr "Giorni dopo cui mettere in scadenza gli altri contenuti del canale" -#: ../../Zotlabs/Module/Settings.php:1160 +#: ../../Zotlabs/Module/Settings.php:1065 msgid "0 or blank to use the website limit." msgstr "0 o vuoto per usare i valori predefiniti." -#: ../../Zotlabs/Module/Settings.php:1160 +#: ../../Zotlabs/Module/Settings.php:1065 #, php-format msgid "This website expires after %d days." msgstr "Per questo sito la scadenza è %d giorni. " -#: ../../Zotlabs/Module/Settings.php:1160 +#: ../../Zotlabs/Module/Settings.php:1065 msgid "This website does not expire imported content." msgstr "I contenuti di questo sito non hanno scadenza." -#: ../../Zotlabs/Module/Settings.php:1160 +#: ../../Zotlabs/Module/Settings.php:1065 msgid "The website limit takes precedence if lower than your limit." -msgstr "Il limite del webserver ha la precedenza, se minore di quello impostato da te." +msgstr "" -#: ../../Zotlabs/Module/Settings.php:1161 +#: ../../Zotlabs/Module/Settings.php:1066 msgid "Maximum Friend Requests/Day:" msgstr "Numero massimo giornaliero di richieste di amicizia:" -#: ../../Zotlabs/Module/Settings.php:1161 +#: ../../Zotlabs/Module/Settings.php:1066 msgid "May reduce spam activity" msgstr "Serve a ridurre lo spam" -#: ../../Zotlabs/Module/Settings.php:1162 +#: ../../Zotlabs/Module/Settings.php:1067 msgid "Default Post and Publish Permissions" -msgstr "Permessi predefiniti per postare e pubblicare" +msgstr "" -#: ../../Zotlabs/Module/Settings.php:1164 +#: ../../Zotlabs/Module/Settings.php:1069 msgid "Use my default audience setting for the type of object published" -msgstr "Mostra ai contatti secondo le impostazioni standard per questo tipo di contenuto" +msgstr "" -#: ../../Zotlabs/Module/Settings.php:1167 +#: ../../Zotlabs/Module/Settings.php:1072 msgid "Channel permissions category:" msgstr "Categorie di permessi dei canali:" -#: ../../Zotlabs/Module/Settings.php:1173 +#: ../../Zotlabs/Module/Settings.php:1078 msgid "Maximum private messages per day from unknown people:" msgstr "Numero massimo giornaliero di messaggi privati da utenti sconosciuti:" -#: ../../Zotlabs/Module/Settings.php:1173 +#: ../../Zotlabs/Module/Settings.php:1078 msgid "Useful to reduce spamming" msgstr "Serve e ridurre lo spam" -#: ../../Zotlabs/Module/Settings.php:1176 +#: ../../Zotlabs/Module/Settings.php:1081 msgid "Notification Settings" msgstr "Impostazioni di notifica" -#: ../../Zotlabs/Module/Settings.php:1177 +#: ../../Zotlabs/Module/Settings.php:1082 msgid "By default post a status message when:" msgstr "Pubblica un messaggio di stato quando:" -#: ../../Zotlabs/Module/Settings.php:1178 +#: ../../Zotlabs/Module/Settings.php:1083 msgid "accepting a friend request" msgstr "accetto una nuova amicizia" -#: ../../Zotlabs/Module/Settings.php:1179 +#: ../../Zotlabs/Module/Settings.php:1084 msgid "joining a forum/community" msgstr "entro a far parte di un forum" -#: ../../Zotlabs/Module/Settings.php:1180 +#: ../../Zotlabs/Module/Settings.php:1085 msgid "making an interesting profile change" msgstr "faccio un cambiamento interessante al mio profilo" -#: ../../Zotlabs/Module/Settings.php:1181 +#: ../../Zotlabs/Module/Settings.php:1086 msgid "Send a notification email when:" msgstr "Invia una email di notifica quando:" -#: ../../Zotlabs/Module/Settings.php:1182 +#: ../../Zotlabs/Module/Settings.php:1087 msgid "You receive a connection request" msgstr "Ricevi una richiesta di entrare in contatto" -#: ../../Zotlabs/Module/Settings.php:1183 +#: ../../Zotlabs/Module/Settings.php:1088 msgid "Your connections are confirmed" msgstr "I tuoi contatti sono confermati" -#: ../../Zotlabs/Module/Settings.php:1184 +#: ../../Zotlabs/Module/Settings.php:1089 msgid "Someone writes on your profile wall" msgstr "Qualcuno scrive sulla tua bacheca" -#: ../../Zotlabs/Module/Settings.php:1185 +#: ../../Zotlabs/Module/Settings.php:1090 msgid "Someone writes a followup comment" msgstr "Qualcuno scrive un commento dopo di te" -#: ../../Zotlabs/Module/Settings.php:1186 +#: ../../Zotlabs/Module/Settings.php:1091 msgid "You receive a private message" msgstr "Ricevi un messaggio privato" -#: ../../Zotlabs/Module/Settings.php:1187 +#: ../../Zotlabs/Module/Settings.php:1092 msgid "You receive a friend suggestion" msgstr "Ti viene suggerito un amico" -#: ../../Zotlabs/Module/Settings.php:1188 +#: ../../Zotlabs/Module/Settings.php:1093 msgid "You are tagged in a post" msgstr "Sei taggato in un post" -#: ../../Zotlabs/Module/Settings.php:1189 +#: ../../Zotlabs/Module/Settings.php:1094 msgid "You are poked/prodded/etc. in a post" msgstr "Ricevi un poke in un post" -#: ../../Zotlabs/Module/Settings.php:1192 +#: ../../Zotlabs/Module/Settings.php:1097 msgid "Show visual notifications including:" msgstr "Mostra queste notifiche a schermo:" -#: ../../Zotlabs/Module/Settings.php:1194 +#: ../../Zotlabs/Module/Settings.php:1099 msgid "Unseen grid activity" msgstr "Nuove attività nella rete" -#: ../../Zotlabs/Module/Settings.php:1195 +#: ../../Zotlabs/Module/Settings.php:1100 msgid "Unseen channel activity" msgstr "Novità nei canali" -#: ../../Zotlabs/Module/Settings.php:1196 +#: ../../Zotlabs/Module/Settings.php:1101 msgid "Unseen private messages" msgstr "Nuovi messaggi privati" -#: ../../Zotlabs/Module/Settings.php:1196 -#: ../../Zotlabs/Module/Settings.php:1201 -#: ../../Zotlabs/Module/Settings.php:1202 -#: ../../Zotlabs/Module/Settings.php:1203 +#: ../../Zotlabs/Module/Settings.php:1101 +#: ../../Zotlabs/Module/Settings.php:1106 +#: ../../Zotlabs/Module/Settings.php:1107 +#: ../../Zotlabs/Module/Settings.php:1108 msgid "Recommended" msgstr "Consigliato" -#: ../../Zotlabs/Module/Settings.php:1197 +#: ../../Zotlabs/Module/Settings.php:1102 msgid "Upcoming events" msgstr "Prossimi eventi" -#: ../../Zotlabs/Module/Settings.php:1198 +#: ../../Zotlabs/Module/Settings.php:1103 msgid "Events today" msgstr "Eventi di oggi" -#: ../../Zotlabs/Module/Settings.php:1199 +#: ../../Zotlabs/Module/Settings.php:1104 msgid "Upcoming birthdays" msgstr "Prossimi compleanni" -#: ../../Zotlabs/Module/Settings.php:1199 +#: ../../Zotlabs/Module/Settings.php:1104 msgid "Not available in all themes" msgstr "Non disponibile in tutti i temi" -#: ../../Zotlabs/Module/Settings.php:1200 +#: ../../Zotlabs/Module/Settings.php:1105 msgid "System (personal) notifications" msgstr "Notifiche personali dal sistema" -#: ../../Zotlabs/Module/Settings.php:1201 +#: ../../Zotlabs/Module/Settings.php:1106 msgid "System info messages" msgstr "Notifiche di sistema" -#: ../../Zotlabs/Module/Settings.php:1202 +#: ../../Zotlabs/Module/Settings.php:1107 msgid "System critical alerts" msgstr "Avvisi critici di sistema" -#: ../../Zotlabs/Module/Settings.php:1203 +#: ../../Zotlabs/Module/Settings.php:1108 msgid "New connections" msgstr "Nuovi contatti" -#: ../../Zotlabs/Module/Settings.php:1204 +#: ../../Zotlabs/Module/Settings.php:1109 msgid "System Registrations" msgstr "Registrazioni" -#: ../../Zotlabs/Module/Settings.php:1205 +#: ../../Zotlabs/Module/Settings.php:1110 msgid "" "Also show new wall posts, private messages and connections under Notices" msgstr "Mostra negli avvisi anche i nuovi post, i messaggi privati e i nuovi contatti" -#: ../../Zotlabs/Module/Settings.php:1207 +#: ../../Zotlabs/Module/Settings.php:1112 msgid "Notify me of events this many days in advance" msgstr "Giorni di anticipo per notificare gli eventi" -#: ../../Zotlabs/Module/Settings.php:1207 +#: ../../Zotlabs/Module/Settings.php:1112 msgid "Must be greater than 0" msgstr "Maggiore di 0" -#: ../../Zotlabs/Module/Settings.php:1209 +#: ../../Zotlabs/Module/Settings.php:1114 msgid "Advanced Account/Page Type Settings" msgstr "Impostazioni avanzate" -#: ../../Zotlabs/Module/Settings.php:1210 +#: ../../Zotlabs/Module/Settings.php:1115 msgid "Change the behaviour of this account for special situations" msgstr "Cambia il funzionamento di questo account per necessità particolari" -#: ../../Zotlabs/Module/Settings.php:1213 +#: ../../Zotlabs/Module/Settings.php:1118 msgid "" "Please enable expert mode (in Settings > " "Additional features) to adjust!" msgstr "Abilita la modalità esperto per fare cambiamenti! (in Impostazioni > Funzionalità opzionali)" -#: ../../Zotlabs/Module/Settings.php:1214 +#: ../../Zotlabs/Module/Settings.php:1119 msgid "Miscellaneous Settings" msgstr "Impostazioni varie" -#: ../../Zotlabs/Module/Settings.php:1215 +#: ../../Zotlabs/Module/Settings.php:1120 msgid "Default photo upload folder" msgstr "Cartella predefinita per le foto caricate" -#: ../../Zotlabs/Module/Settings.php:1215 -#: ../../Zotlabs/Module/Settings.php:1216 +#: ../../Zotlabs/Module/Settings.php:1120 +#: ../../Zotlabs/Module/Settings.php:1121 msgid "%Y - current year, %m - current month" msgstr "%Y - anno corrente, %m - mese corrente" -#: ../../Zotlabs/Module/Settings.php:1216 +#: ../../Zotlabs/Module/Settings.php:1121 msgid "Default file upload folder" msgstr "Cartella predefinita per i file caricati" -#: ../../Zotlabs/Module/Settings.php:1218 +#: ../../Zotlabs/Module/Settings.php:1123 msgid "Personal menu to display in your channel pages" msgstr "Menu personale da mostrare sulle pagine del tuo canale" -#: ../../Zotlabs/Module/Settings.php:1220 +#: ../../Zotlabs/Module/Settings.php:1125 msgid "Remove this channel." msgstr "Elimina questo canale." -#: ../../Zotlabs/Module/Settings.php:1221 +#: ../../Zotlabs/Module/Settings.php:1126 msgid "Firefox Share $Projectname provider" msgstr "Attiva Firefox Share per $Projectname" -#: ../../Zotlabs/Module/Settings.php:1222 +#: ../../Zotlabs/Module/Settings.php:1127 msgid "Start calendar week on monday" msgstr "La settimana inizia il lunedì" @@ -5827,7 +5516,7 @@ msgid "" msgstr "Potresti dover importare il file 'install/schema_xxx.sql' manualmente usando un client per collegarti al db." #: ../../Zotlabs/Module/Setup.php:204 ../../Zotlabs/Module/Setup.php:266 -#: ../../Zotlabs/Module/Setup.php:722 +#: ../../Zotlabs/Module/Setup.php:721 msgid "Please see the file \"install/INSTALL.txt\"." msgstr "Leggi il file 'install/INSTALL.txt'." @@ -5931,7 +5620,7 @@ msgstr "Alcune funzionalità avanzate, per quanto utili, potrebbero essere adatt #: ../../Zotlabs/Module/Setup.php:388 msgid "PHP version 5.5 or greater is required." -msgstr "E' necessario PHP in versione 5.5 o superiore." +msgstr "" #: ../../Zotlabs/Module/Setup.php:389 msgid "PHP version" @@ -6027,200 +5716,199 @@ msgid "mb_string PHP module" msgstr "modulo PHP mb_string" #: ../../Zotlabs/Module/Setup.php:496 +msgid "mcrypt PHP module" +msgstr "modulo PHP mcrypt" + +#: ../../Zotlabs/Module/Setup.php:497 msgid "xml PHP module" msgstr "modulo xml PHP" -#: ../../Zotlabs/Module/Setup.php:500 ../../Zotlabs/Module/Setup.php:502 +#: ../../Zotlabs/Module/Setup.php:501 ../../Zotlabs/Module/Setup.php:503 msgid "Apache mod_rewrite module" msgstr "modulo Apache mod_rewrite" -#: ../../Zotlabs/Module/Setup.php:500 +#: ../../Zotlabs/Module/Setup.php:501 msgid "" "Error: Apache webserver mod-rewrite module is required but not installed." msgstr "Errore: il modulo mod-rewrite di Apache è richiesto ma non installato" -#: ../../Zotlabs/Module/Setup.php:506 ../../Zotlabs/Module/Setup.php:509 +#: ../../Zotlabs/Module/Setup.php:507 ../../Zotlabs/Module/Setup.php:510 msgid "proc_open" msgstr "proc_open" -#: ../../Zotlabs/Module/Setup.php:506 +#: ../../Zotlabs/Module/Setup.php:507 msgid "" "Error: proc_open is required but is either not installed or has been " "disabled in php.ini" msgstr "Errore: proc_open è richiesto ma non è installato o è disabilitato in php.ini" -#: ../../Zotlabs/Module/Setup.php:514 +#: ../../Zotlabs/Module/Setup.php:515 msgid "Error: libCURL PHP module required but not installed." msgstr "Errore: il modulo libCURL di PHP è richiesto ma non installato." -#: ../../Zotlabs/Module/Setup.php:518 +#: ../../Zotlabs/Module/Setup.php:519 msgid "" "Error: GD graphics PHP module with JPEG support required but not installed." msgstr "Errore: Il modulo GD graphics di PHP con supporto a JPEG è richiesto ma non installato." -#: ../../Zotlabs/Module/Setup.php:522 +#: ../../Zotlabs/Module/Setup.php:523 msgid "Error: openssl PHP module required but not installed." msgstr "Errore: il modulo openssl di PHP è richiesto ma non installato." -#: ../../Zotlabs/Module/Setup.php:526 +#: ../../Zotlabs/Module/Setup.php:527 msgid "" "Error: mysqli or postgres PHP module required but neither are installed." msgstr "Errore: il modulo PHP per mysqli o postgres è richiesto ma non installato" -#: ../../Zotlabs/Module/Setup.php:530 +#: ../../Zotlabs/Module/Setup.php:531 msgid "Error: mb_string PHP module required but not installed." msgstr "Errore: il modulo PHP mb_string è richiesto ma non installato." -#: ../../Zotlabs/Module/Setup.php:534 +#: ../../Zotlabs/Module/Setup.php:535 +msgid "Error: mcrypt PHP module required but not installed." +msgstr "Errore: il modulo PHP mcrypt è richiesto ma non installato." + +#: ../../Zotlabs/Module/Setup.php:539 msgid "Error: xml PHP module required for DAV but not installed." msgstr "Errore: il modulo xml PHP è richiesto per DAV ma non è installato." -#: ../../Zotlabs/Module/Setup.php:552 +#: ../../Zotlabs/Module/Setup.php:557 msgid "" "The web installer needs to be able to create a file called \".htconfig.php\"" " in the top folder of your web server and it is unable to do so." msgstr "L'installazione web deve poter creare un file chiamato \".htconfig.php\" nella cartella di Hubzilla ma non è in grado di farlo." -#: ../../Zotlabs/Module/Setup.php:553 +#: ../../Zotlabs/Module/Setup.php:558 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 "Spesso ciò è dovuto ai permessi di accesso al disco: il web server potrebbe non aver diritto di scrivere il file nella cartella, anche se tu puoi." -#: ../../Zotlabs/Module/Setup.php:554 +#: ../../Zotlabs/Module/Setup.php:559 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 "Alla fine di questa procedura ti sarà dato il testo da salvare in un file di nome .htconfig.php dentro la cartella principale di Hubzilla." -#: ../../Zotlabs/Module/Setup.php:555 +#: ../../Zotlabs/Module/Setup.php:560 msgid "" "You can alternatively skip this procedure and perform a manual installation." " Please see the file \"install/INSTALL.txt\" for instructions." msgstr "Puoi anche saltare questa procedura ed effettuare un'installazione manuale. Guarda il file 'install/INSTALL.txt' per le istruzioni." -#: ../../Zotlabs/Module/Setup.php:558 +#: ../../Zotlabs/Module/Setup.php:563 msgid ".htconfig.php is writable" msgstr ".htconfig.php è scrivibile" -#: ../../Zotlabs/Module/Setup.php:572 +#: ../../Zotlabs/Module/Setup.php:577 msgid "" "Red uses the Smarty3 template engine to render its web views. Smarty3 " "compiles templates to PHP to speed up rendering." msgstr "Hubzilla usa il sistema Smarty3 per costruire i suoi template grafici. Smarty3 è molto veloce perché compila i template delle pagine direttamente in PHP." -#: ../../Zotlabs/Module/Setup.php:573 +#: ../../Zotlabs/Module/Setup.php:578 #, php-format msgid "" "In order to store these compiled templates, the web server needs to have " "write access to the directory %s under the top level web folder." -msgstr "Per poter memorizzare questi template, il server web deve avere i diritti di scrittura sulla directory %s" +msgstr "" -#: ../../Zotlabs/Module/Setup.php:574 ../../Zotlabs/Module/Setup.php:595 +#: ../../Zotlabs/Module/Setup.php:579 ../../Zotlabs/Module/Setup.php:600 msgid "" "Please ensure that the user that your web server runs as (e.g. www-data) has" " write access to this folder." msgstr "Assicurati che il tuo web server sia in esecuzione con un utente che ha diritto di scrittura su quella cartella (ad esempio www-data)." -#: ../../Zotlabs/Module/Setup.php:575 +#: ../../Zotlabs/Module/Setup.php:580 #, 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 "Nota bene: come precauzione, dovresti dare i diritti di scrittura solamente su %s e non sui file template (.tpl) che contiene." -#: ../../Zotlabs/Module/Setup.php:578 +#: ../../Zotlabs/Module/Setup.php:583 #, php-format msgid "%s is writable" msgstr "%s è scrivibile" -#: ../../Zotlabs/Module/Setup.php:594 +#: ../../Zotlabs/Module/Setup.php:599 msgid "" -"This software 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 "Questo software usa la cartella store per salvare i file caricati. Il server web deve avere i diritti di scrittura sulla cartella perché l'operazione avvenga con successo" +"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 "Hubzilla salva i file caricati nella cartella \"store\" sul server. Il server deve avere i diritti di scrittura su quella cartella che si trova dentro l'installazione di RedMatrix" -#: ../../Zotlabs/Module/Setup.php:598 +#: ../../Zotlabs/Module/Setup.php:603 msgid "store is writable" msgstr "l'archivio è scrivibile" -#: ../../Zotlabs/Module/Setup.php:631 +#: ../../Zotlabs/Module/Setup.php:636 msgid "" "SSL certificate cannot be validated. Fix certificate or disable https access" " to this site." msgstr "Il certificato SSL non può essere validato. Correggi l'errore o disabilita l'accesso https al sito." -#: ../../Zotlabs/Module/Setup.php:632 +#: ../../Zotlabs/Module/Setup.php:637 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 "Se abiliti https per il tuo sito o permetti connessioni TCP su port 443 (quella di https), DEVI usare un certificato riconosciuto dai browser internet. NON DEVI usare certificati self-signed generati da te!" -#: ../../Zotlabs/Module/Setup.php:633 +#: ../../Zotlabs/Module/Setup.php:638 msgid "" "This restriction is incorporated because public posts from you may for " "example contain references to images on your own hub." msgstr "Questa restrizione è necessaria perché i tuoi post pubblici potrebbero contenere riferimenti a immagini sul tuo server." -#: ../../Zotlabs/Module/Setup.php:634 +#: ../../Zotlabs/Module/Setup.php:639 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." msgstr "Se il tuo certificato non è riconosciuto, gli utenti che ti seguono da altri siti (che avranno certificati validi) riceveranno gravi avvisi di sicurezza dal browser." -#: ../../Zotlabs/Module/Setup.php:635 +#: ../../Zotlabs/Module/Setup.php:640 msgid "" "This can cause usability issues elsewhere (not just on your own site) so we " "must insist on this requirement." msgstr "Ciò può creare seri problemi di usabilità (non solo sul tuo sito), quindi dobbiamo insistere su questo punto." -#: ../../Zotlabs/Module/Setup.php:636 +#: ../../Zotlabs/Module/Setup.php:641 msgid "" "Providers are available that issue free certificates which are browser-" "valid." msgstr "Eventualmente, considera che esistono provider che rilasciano certificati gratuiti riconosciuti dai browser." -#: ../../Zotlabs/Module/Setup.php:638 -msgid "" -"If you are confident that the certificate is valid and signed by a trusted " -"authority, check to see if you have failed to install an intermediate cert. " -"These are not normally required by browsers, but are required for server-to-" -"server communications." -msgstr "Se credi che il certificato sia valido e firmato da una authority, verifica se hai sbagliato a installare i certificati intermedi. Normalmente non sono richiesti dai browser, ma sono necessari per la comunicazione server-to-server." - -#: ../../Zotlabs/Module/Setup.php:641 +#: ../../Zotlabs/Module/Setup.php:643 msgid "SSL certificate validation" msgstr "Validazione del certificato SSL" -#: ../../Zotlabs/Module/Setup.php:647 +#: ../../Zotlabs/Module/Setup.php:649 msgid "" "Url rewrite in .htaccess is not working. Check your server " "configuration.Test: " msgstr "In .htaccess la funzionalità url rewrite non funziona. Controlla la configurazione del server. Test:" -#: ../../Zotlabs/Module/Setup.php:650 +#: ../../Zotlabs/Module/Setup.php:652 msgid "Url rewrite is working" msgstr "Url rewrite funziona correttamente" -#: ../../Zotlabs/Module/Setup.php:659 +#: ../../Zotlabs/Module/Setup.php:661 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 "Il file di configurazione del database \".htconfig.php\" non puo' essere scritto. Usa il testo qui di seguito per creare questo file di configurazione nella cartella principale del tuo sito." -#: ../../Zotlabs/Module/Setup.php:683 +#: ../../Zotlabs/Module/Setup.php:685 msgid "Errors encountered creating database tables." msgstr "La creazione delle tabelle del database ha generato errori." -#: ../../Zotlabs/Module/Setup.php:720 +#: ../../Zotlabs/Module/Setup.php:719 msgid "

What next

" msgstr "

I prossimi passi

" -#: ../../Zotlabs/Module/Setup.php:721 +#: ../../Zotlabs/Module/Setup.php:720 msgid "" "IMPORTANT: You will need to [manually] setup a scheduled task for the " "poller." @@ -6242,6 +5930,184 @@ msgstr "Elimina tutti i file" msgid "Remove this file" msgstr "Elimina questo file" +#: ../../Zotlabs/Module/Siteinfo.php:19 +#, php-format +msgid "Version %s" +msgstr "Versione %s" + +#: ../../Zotlabs/Module/Siteinfo.php:40 +msgid "Installed plugins/addons/apps:" +msgstr "App e componenti installati:" + +#: ../../Zotlabs/Module/Siteinfo.php:53 +msgid "No installed plugins/addons/apps" +msgstr "Nessuna app o componente installato" + +#: ../../Zotlabs/Module/Siteinfo.php:66 +msgid "" +"This is a hub of $Projectname - a global cooperative network of " +"decentralized privacy enhanced websites." +msgstr "Questo è un hub di $Projectname - una rete cooperativa e decentralizzata di siti ad elevata privacy. " + +#: ../../Zotlabs/Module/Siteinfo.php:68 +msgid "Tag: " +msgstr "Tag: " + +#: ../../Zotlabs/Module/Siteinfo.php:70 +msgid "Last background fetch: " +msgstr "Ultima acquisizione:" + +#: ../../Zotlabs/Module/Siteinfo.php:72 +msgid "Current load average: " +msgstr "Carico medio attuale:" + +#: ../../Zotlabs/Module/Siteinfo.php:75 +msgid "Running at web location" +msgstr "In esecuzione sull'indirizzo web" + +#: ../../Zotlabs/Module/Siteinfo.php:76 +msgid "" +"Please visit hubzilla.org to learn more " +"about $Projectname." +msgstr "Visita hubzilla.org per maggiori informazioni su $Projectname." + +#: ../../Zotlabs/Module/Siteinfo.php:77 +msgid "Bug reports and issues: please visit" +msgstr "Per segnalare bug e problemi: visita" + +#: ../../Zotlabs/Module/Siteinfo.php:79 +msgid "$projectname issues" +msgstr "Problematiche note su $projectname" + +#: ../../Zotlabs/Module/Siteinfo.php:80 +msgid "" +"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot " +"com" +msgstr "Per consigli, ringraziamenti, ecc. - scrivi a \"redmatrix\" at librelist - dot com" + +#: ../../Zotlabs/Module/Siteinfo.php:82 +msgid "Site Administrators" +msgstr "Amministratori del sito" + +#: ../../Zotlabs/Module/Sources.php:37 +msgid "Failed to create source. No channel selected." +msgstr "Impossibile creare la sorgente. Nessun canale selezionato." + +#: ../../Zotlabs/Module/Sources.php:51 +msgid "Source created." +msgstr "Sorgente creata." + +#: ../../Zotlabs/Module/Sources.php:64 +msgid "Source updated." +msgstr "Sorgente aggiornata." + +#: ../../Zotlabs/Module/Sources.php:90 +msgid "*" +msgstr "*" + +#: ../../Zotlabs/Module/Sources.php:96 ../../include/widgets.php:630 +#: ../../include/features.php:71 +msgid "Channel Sources" +msgstr "Sorgenti del canale" + +#: ../../Zotlabs/Module/Sources.php:97 +msgid "Manage remote sources of content for your channel." +msgstr "Gestisci le sorgenti dei contenuti del tuo canale." + +#: ../../Zotlabs/Module/Sources.php:98 ../../Zotlabs/Module/Sources.php:108 +msgid "New Source" +msgstr "Nuova sorgente" + +#: ../../Zotlabs/Module/Sources.php:109 ../../Zotlabs/Module/Sources.php:143 +msgid "" +"Import all or selected content from the following channel into this channel " +"and distribute it according to your channel settings." +msgstr "Importa nel tuo canale tutti o una parte dei contenuti dal canale seguente." + +#: ../../Zotlabs/Module/Sources.php:110 ../../Zotlabs/Module/Sources.php:144 +msgid "Only import content with these words (one per line)" +msgstr "Importa solo i contenuti che hanno queste parole (una per riga)" + +#: ../../Zotlabs/Module/Sources.php:110 ../../Zotlabs/Module/Sources.php:144 +msgid "Leave blank to import all public content" +msgstr "Lascia vuoto per importare tutti i contenuti pubblici" + +#: ../../Zotlabs/Module/Sources.php:111 ../../Zotlabs/Module/Sources.php:148 +msgid "Channel Name" +msgstr "Nome del canale" + +#: ../../Zotlabs/Module/Sources.php:112 ../../Zotlabs/Module/Sources.php:147 +msgid "" +"Add the following categories to posts imported from this source (comma " +"separated)" +msgstr "" + +#: ../../Zotlabs/Module/Sources.php:133 ../../Zotlabs/Module/Sources.php:161 +msgid "Source not found." +msgstr "Sorgente non trovata." + +#: ../../Zotlabs/Module/Sources.php:140 +msgid "Edit Source" +msgstr "Modifica la sorgente" + +#: ../../Zotlabs/Module/Sources.php:141 +msgid "Delete Source" +msgstr "Elimina la sorgente" + +#: ../../Zotlabs/Module/Sources.php:169 +msgid "Source removed" +msgstr "Sorgente eliminata" + +#: ../../Zotlabs/Module/Sources.php:171 +msgid "Unable to remove source." +msgstr "Impossibile rimuovere la sorgente." + +#: ../../Zotlabs/Module/Subthread.php:118 +#, php-format +msgid "%1$s is following %2$s's %3$s" +msgstr "%1$s sta seguendo %3$s di %2$s" + +#: ../../Zotlabs/Module/Subthread.php:120 +#, php-format +msgid "%1$s stopped following %2$s's %3$s" +msgstr "%1$s non segue più %3$s di %2$s" + +#: ../../Zotlabs/Module/Suggest.php:39 +msgid "" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." +msgstr "Nessun suggerimento disponibile. Se questo sito è nuovo, riprova tra 24 ore." + +#: ../../Zotlabs/Module/Suggest.php:58 ../../include/widgets.php:149 +msgid "Ignore/Hide" +msgstr "Ignora/nascondi" + +#: ../../Zotlabs/Module/Tagger.php:55 ../../include/bbcode.php:256 +msgid "post" +msgstr "il post" + +#: ../../Zotlabs/Module/Tagger.php:57 ../../include/text.php:1948 +#: ../../include/conversation.php:150 +msgid "comment" +msgstr "il commento" + +#: ../../Zotlabs/Module/Tagger.php:100 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "%1$s ha taggato %3$s di %2$s con %4$s" + +#: ../../Zotlabs/Module/Tagrm.php:48 ../../Zotlabs/Module/Tagrm.php:98 +msgid "Tag removed" +msgstr "Tag rimosso" + +#: ../../Zotlabs/Module/Tagrm.php:123 +msgid "Remove Item Tag" +msgstr "Rimuovi il tag" + +#: ../../Zotlabs/Module/Tagrm.php:125 +msgid "Select a tag to remove: " +msgstr "Seleziona un tag da rimuovere: " + #: ../../Zotlabs/Module/Thing.php:114 msgid "Thing updated" msgstr "L'oggetto è stato aggiornato" @@ -6299,229 +6165,74 @@ msgstr "Indirizzo di un'immagine dell'oggetto (facoltativo)" msgid "Add Thing to your Profile" msgstr "Aggiungi l'oggetto al tuo profilo" -#: ../../Zotlabs/Module/Sources.php:37 -msgid "Failed to create source. No channel selected." -msgstr "Impossibile creare la sorgente. Nessun canale selezionato." +#: ../../Zotlabs/Module/Uexport.php:55 ../../Zotlabs/Module/Uexport.php:56 +msgid "Export Channel" +msgstr "Esporta il canale" -#: ../../Zotlabs/Module/Sources.php:51 -msgid "Source created." -msgstr "Sorgente creata." - -#: ../../Zotlabs/Module/Sources.php:64 -msgid "Source updated." -msgstr "Sorgente aggiornata." - -#: ../../Zotlabs/Module/Sources.php:90 -msgid "*" -msgstr "*" - -#: ../../Zotlabs/Module/Sources.php:96 ../../include/features.php:72 -#: ../../include/widgets.php:639 -msgid "Channel Sources" -msgstr "Sorgenti del canale" - -#: ../../Zotlabs/Module/Sources.php:97 -msgid "Manage remote sources of content for your channel." -msgstr "Gestisci le sorgenti dei contenuti del tuo canale." - -#: ../../Zotlabs/Module/Sources.php:98 ../../Zotlabs/Module/Sources.php:108 -msgid "New Source" -msgstr "Nuova sorgente" - -#: ../../Zotlabs/Module/Sources.php:109 ../../Zotlabs/Module/Sources.php:143 +#: ../../Zotlabs/Module/Uexport.php:57 msgid "" -"Import all or selected content from the following channel into this channel " -"and distribute it according to your channel settings." -msgstr "Importa nel tuo canale tutti o una parte dei contenuti dal canale seguente." +"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 "Esporta le informazioni di base del canale in un file. In pratica è un salvataggio delle tue connessioni, dei permessi che hai assegnato e del tuo profilo che così potrà essere importato su un altro server/hub. Il file non includerà i tuoi post e altri contenuti che hai creato o caricato." -#: ../../Zotlabs/Module/Sources.php:110 ../../Zotlabs/Module/Sources.php:144 -msgid "Only import content with these words (one per line)" -msgstr "Importa solo i contenuti che hanno queste parole (una per riga)" +#: ../../Zotlabs/Module/Uexport.php:58 +msgid "Export Content" +msgstr "Esporta i contenuti" -#: ../../Zotlabs/Module/Sources.php:110 ../../Zotlabs/Module/Sources.php:144 -msgid "Leave blank to import all public content" -msgstr "Lascia vuoto per importare tutti i contenuti pubblici" - -#: ../../Zotlabs/Module/Sources.php:111 ../../Zotlabs/Module/Sources.php:148 -msgid "Channel Name" -msgstr "Nome del canale" - -#: ../../Zotlabs/Module/Sources.php:112 ../../Zotlabs/Module/Sources.php:147 +#: ../../Zotlabs/Module/Uexport.php:59 msgid "" -"Add the following categories to posts imported from this source (comma " -"separated)" -msgstr "Aggiungi le seguenti categorie ai post importati da questa sorgente (separate da virgola)" +"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 "Esporta il tuo canale e i contenuti recenti in un file di salvataggio che potrà essere importato su un altro server/hub. Sarà un backup dei tuoi contatti, dei permessi che hai assegnato, dei dati del profilo e dei post degli ultimi mesi. Il file potrebbe essere MOLTO grande. Sarà necessario attendere con pazienza - saranno necessari molti minuti prima che inizi lo scaricamento." -#: ../../Zotlabs/Module/Sources.php:133 ../../Zotlabs/Module/Sources.php:161 -msgid "Source not found." -msgstr "Sorgente non trovata." +#: ../../Zotlabs/Module/Uexport.php:60 +msgid "Export your posts from a given year." +msgstr "Esporta i tuoi post a partire dall'anno scelto." -#: ../../Zotlabs/Module/Sources.php:140 -msgid "Edit Source" -msgstr "Modifica la sorgente" +#: ../../Zotlabs/Module/Uexport.php:62 +msgid "" +"You may also export your posts and conversations for a particular year or " +"month. Adjust the date in your browser location bar to select other dates. " +"If the export fails (possibly due to memory exhaustion on your server hub), " +"please try again selecting a more limited date range." +msgstr "Puoi anche esportare post e conversazioni di un particolare anno o mese. Modifica la data nella barra dell'indirizzo del browser per scegliere date differenti. Se l'esportazione dovesse fallire (la memoria sul server potrebbe non bastare), riprova scegliendo un intervallo più breve tra le date." -#: ../../Zotlabs/Module/Sources.php:141 -msgid "Delete Source" -msgstr "Elimina la sorgente" - -#: ../../Zotlabs/Module/Sources.php:169 -msgid "Source removed" -msgstr "Sorgente eliminata" - -#: ../../Zotlabs/Module/Sources.php:171 -msgid "Unable to remove source." -msgstr "Impossibile rimuovere la sorgente." - -#: ../../Zotlabs/Module/Subthread.php:118 +#: ../../Zotlabs/Module/Uexport.php:63 #, php-format -msgid "%1$s is following %2$s's %3$s" -msgstr "%1$s sta seguendo %3$s di %2$s" - -#: ../../Zotlabs/Module/Subthread.php:120 -#, php-format -msgid "%1$s stopped following %2$s's %3$s" -msgstr "%1$s non segue più %3$s di %2$s" - -#: ../../Zotlabs/Module/Suggest.php:39 msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "Nessun suggerimento disponibile. Se questo sito è nuovo, riprova tra 24 ore." +"To select all posts for a given year, such as this year, visit %2$s" +msgstr "Per selezionare tutti i post di un anno, come per esempio quello in corso, visita %2$s " -#: ../../Zotlabs/Module/Suggest.php:58 ../../include/widgets.php:149 -msgid "Ignore/Hide" -msgstr "Ignora/nascondi" - -#: ../../Zotlabs/Module/Tagger.php:55 ../../include/bbcode.php:263 -msgid "post" -msgstr "il post" - -#: ../../Zotlabs/Module/Tagger.php:57 ../../include/conversation.php:150 -#: ../../include/text.php:1929 -msgid "comment" -msgstr "il commento" - -#: ../../Zotlabs/Module/Tagger.php:100 +#: ../../Zotlabs/Module/Uexport.php:64 #, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "%1$s ha taggato %3$s di %2$s con %4$s" - -#: ../../Zotlabs/Module/Tagrm.php:48 ../../Zotlabs/Module/Tagrm.php:98 -msgid "Tag removed" -msgstr "Tag rimosso" - -#: ../../Zotlabs/Module/Tagrm.php:123 -msgid "Remove Item Tag" -msgstr "Rimuovi il tag" - -#: ../../Zotlabs/Module/Tagrm.php:125 -msgid "Select a tag to remove: " -msgstr "Seleziona un tag da rimuovere: " - -#: ../../Zotlabs/Module/Webpages.php:191 ../../Zotlabs/Lib/Apps.php:218 -#: ../../include/nav.php:106 ../../include/conversation.php:1700 -msgid "Webpages" -msgstr "Pagine web" - -#: ../../Zotlabs/Module/Webpages.php:202 ../../include/page_widgets.php:44 -msgid "Actions" -msgstr "Azioni" - -#: ../../Zotlabs/Module/Webpages.php:203 ../../include/page_widgets.php:45 -msgid "Page Link" -msgstr "Link alla pagina" - -#: ../../Zotlabs/Module/Webpages.php:204 -msgid "Page Title" -msgstr "Titolo della pagina" - -#: ../../Zotlabs/Module/Wiki.php:34 -msgid "Not found" -msgstr "Non trovato" - -#: ../../Zotlabs/Module/Wiki.php:92 ../../Zotlabs/Lib/Apps.php:219 -#: ../../include/nav.php:108 ../../include/conversation.php:1710 -#: ../../include/conversation.php:1713 ../../include/features.php:55 -msgid "Wiki" -msgstr "Wiki" - -#: ../../Zotlabs/Module/Wiki.php:93 -msgid "Sandbox" -msgstr "Sandbox" - -#: ../../Zotlabs/Module/Wiki.php:95 msgid "" -"\"# Wiki Sandbox\\n\\nContent you **edit** and **preview** here *will not be" -" saved*.\"" -msgstr "\"# Wiki Sandbox\\n\\nI contenuti che **modifichi** e che vedi in **anteprima** qui *non saranno salvati*.\"" +"To select all posts for a given month, such as January of this year, visit " +"%2$s" +msgstr "Per selezionare tutti post di un dato mese, come per esempio gennaio di quest'anno, visita %2$s" -#: ../../Zotlabs/Module/Wiki.php:164 -msgid "Revision Comparison" -msgstr "Confronto tra revisioni" +#: ../../Zotlabs/Module/Uexport.php:65 +#, php-format +msgid "" +"These content files may be imported or restored by visiting %2$s on any site containing your channel. For best results" +" please import or restore these in date order (oldest first)." +msgstr "Questi contenuti potranno essere importati o ripristinati visitando %2$s su qualsiasi sito/hub dove è presente il tuo canale. Per mantenere l'ordinamento originale fai attenzione ad importare i file secondo la data (prima il più vecchio)" -#: ../../Zotlabs/Module/Wiki.php:165 -msgid "Revert" -msgstr "Ripristina" - -#: ../../Zotlabs/Module/Wiki.php:192 -msgid "Enter the name of your new wiki:" -msgstr "Nome della tua nuova pagina wiki:" - -#: ../../Zotlabs/Module/Wiki.php:193 -msgid "Enter the name of the new page:" -msgstr "Nome della tua nuova pagina:" - -#: ../../Zotlabs/Module/Wiki.php:194 -msgid "Enter the new name:" -msgstr "Nuovo nome:" - -#: ../../Zotlabs/Module/Wiki.php:200 ../../include/conversation.php:1150 -msgid "Embed image from photo albums" -msgstr "Inserisci un'immagine dall'album foto" - -#: ../../Zotlabs/Module/Wiki.php:201 ../../include/conversation.php:1234 -msgid "Embed an image from your albums" -msgstr "Inserisci un'immagine dai tuoi album" - -#: ../../Zotlabs/Module/Wiki.php:203 ../../include/conversation.php:1236 -#: ../../include/conversation.php:1273 -msgid "OK" -msgstr "OK" - -#: ../../Zotlabs/Module/Wiki.php:204 ../../include/conversation.php:1186 -msgid "Choose images to embed" -msgstr "Scegli le immagini da inserire" - -#: ../../Zotlabs/Module/Wiki.php:205 ../../include/conversation.php:1187 -msgid "Choose an album" -msgstr "Scegli un album" - -#: ../../Zotlabs/Module/Wiki.php:206 ../../include/conversation.php:1188 -msgid "Choose a different album..." -msgstr "Scegli un altro album..." - -#: ../../Zotlabs/Module/Wiki.php:207 ../../include/conversation.php:1189 -msgid "Error getting album list" -msgstr "Errore nell'ottenere l'elenco degli album" - -#: ../../Zotlabs/Module/Wiki.php:208 ../../include/conversation.php:1190 -msgid "Error getting photo link" -msgstr "Errore nell'ottenere il link alla foto" - -#: ../../Zotlabs/Module/Wiki.php:209 ../../include/conversation.php:1191 -msgid "Error getting album" -msgstr "Errore nell'ottenere l'album" - -#: ../../Zotlabs/Module/Viewconnections.php:65 +#: ../../Zotlabs/Module/Viewconnections.php:62 msgid "No connections." msgstr "Nessun contatto." -#: ../../Zotlabs/Module/Viewconnections.php:78 +#: ../../Zotlabs/Module/Viewconnections.php:75 #, php-format msgid "Visit %s's profile [%s]" msgstr "Visita il profilo di %s [%s]" -#: ../../Zotlabs/Module/Viewconnections.php:107 +#: ../../Zotlabs/Module/Viewconnections.php:104 msgid "View Connections" msgstr "Elenco contatti" @@ -6529,23 +6240,22 @@ msgstr "Elenco contatti" msgid "Source of Item" msgstr "Sorgente" -#: ../../Zotlabs/Module/Api.php:61 ../../Zotlabs/Module/Api.php:85 -msgid "Authorize application connection" -msgstr "Autorizza la app" +#: ../../Zotlabs/Module/Webpages.php:184 ../../Zotlabs/Lib/Apps.php:217 +#: ../../include/nav.php:106 ../../include/conversation.php:1685 +msgid "Webpages" +msgstr "Pagine web" -#: ../../Zotlabs/Module/Api.php:62 -msgid "Return to your app and insert this Securty Code:" -msgstr "Torna alla app e inserisci questo codice di sicurezza:" +#: ../../Zotlabs/Module/Webpages.php:195 ../../include/page_widgets.php:41 +msgid "Actions" +msgstr "Azioni" -#: ../../Zotlabs/Module/Api.php:72 -msgid "Please login to continue." -msgstr "Accedi al sito per continuare." +#: ../../Zotlabs/Module/Webpages.php:196 ../../include/page_widgets.php:42 +msgid "Page Link" +msgstr "Link alla pagina" -#: ../../Zotlabs/Module/Api.php:87 -msgid "" -"Do you want to authorize this application to access your posts and contacts," -" and/or create new posts for you?" -msgstr "Vuoi autorizzare questa app ad accedere ai messaggi e ai contatti o creare nuovi messaggi per te?" +#: ../../Zotlabs/Module/Webpages.php:197 +msgid "Page Title" +msgstr "Titolo della pagina" #: ../../Zotlabs/Module/Xchan.php:10 msgid "Xchan Lookup" @@ -6555,6 +6265,92 @@ msgstr "Ricerca canale" msgid "Lookup xchan beginning with (or webbie): " msgstr "Cerca un canale (o un webbie) che inizia per:" +#: ../../Zotlabs/Lib/Apps.php:204 +msgid "Site Admin" +msgstr "Amministrazione sito" + +#: ../../Zotlabs/Lib/Apps.php:205 +msgid "Bug Report" +msgstr "Bug Report" + +#: ../../Zotlabs/Lib/Apps.php:206 +msgid "View Bookmarks" +msgstr "Vedi i segnalibri" + +#: ../../Zotlabs/Lib/Apps.php:207 +msgid "My Chatrooms" +msgstr "Le mie aree chat" + +#: ../../Zotlabs/Lib/Apps.php:209 +msgid "Firefox Share" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:210 +msgid "Remote Diagnostics" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:211 ../../include/features.php:89 +msgid "Suggest Channels" +msgstr "Suggerisci canali" + +#: ../../Zotlabs/Lib/Apps.php:212 ../../include/nav.php:110 +#: ../../boot.php:1703 +msgid "Login" +msgstr "Accedi" + +#: ../../Zotlabs/Lib/Apps.php:214 ../../include/nav.php:179 +msgid "Grid" +msgstr "Rete" + +#: ../../Zotlabs/Lib/Apps.php:218 ../../include/nav.php:182 +msgid "Channel Home" +msgstr "Bacheca del canale" + +#: ../../Zotlabs/Lib/Apps.php:221 ../../include/nav.php:201 +#: ../../include/conversation.php:1649 ../../include/conversation.php:1652 +msgid "Events" +msgstr "Eventi" + +#: ../../Zotlabs/Lib/Apps.php:222 ../../include/nav.php:167 +msgid "Directory" +msgstr "Elenchi pubblici dei canali" + +#: ../../Zotlabs/Lib/Apps.php:224 ../../include/nav.php:193 +msgid "Mail" +msgstr "Messaggi" + +#: ../../Zotlabs/Lib/Apps.php:227 ../../include/nav.php:96 +msgid "Chat" +msgstr "Chat" + +#: ../../Zotlabs/Lib/Apps.php:229 +msgid "Probe" +msgstr "Diagnostica" + +#: ../../Zotlabs/Lib/Apps.php:230 +msgid "Suggest" +msgstr "Suggerisci" + +#: ../../Zotlabs/Lib/Apps.php:231 +msgid "Random Channel" +msgstr "Canale casuale" + +#: ../../Zotlabs/Lib/Apps.php:232 +msgid "Invite" +msgstr "Invita" + +#: ../../Zotlabs/Lib/Apps.php:233 ../../include/widgets.php:1386 +msgid "Features" +msgstr "Funzionalità" + +#: ../../Zotlabs/Lib/Apps.php:235 +msgid "Post" +msgstr "Post" + +#: ../../Zotlabs/Lib/Apps.php:335 +msgid "Purchase" +msgstr "Acquista" + #: ../../Zotlabs/Lib/Chatroom.php:27 msgid "Missing room name" msgstr "Chat senza nome" @@ -6575,19 +6371,19 @@ msgstr "Chat non trovata." msgid "Room is full" msgstr "La chat è al completo" -#: ../../Zotlabs/Lib/Enotify.php:60 ../../include/network.php:1882 +#: ../../Zotlabs/Lib/Enotify.php:60 ../../include/network.php:1823 msgid "$Projectname Notification" msgstr "Notifica $Projectname" -#: ../../Zotlabs/Lib/Enotify.php:61 ../../include/network.php:1883 +#: ../../Zotlabs/Lib/Enotify.php:61 ../../include/network.php:1824 msgid "$projectname" msgstr "$projectname" -#: ../../Zotlabs/Lib/Enotify.php:63 ../../include/network.php:1885 +#: ../../Zotlabs/Lib/Enotify.php:63 ../../include/network.php:1826 msgid "Thank You," msgstr "Grazie," -#: ../../Zotlabs/Lib/Enotify.php:65 ../../include/network.php:1887 +#: ../../Zotlabs/Lib/Enotify.php:65 ../../include/network.php:1828 #, php-format msgid "%s Administrator" msgstr "L'amministratore di %s" @@ -6780,97 +6576,11 @@ msgstr "Ha creato un nuovo post" msgid "commented on %s's post" msgstr "ha commentato il post di %s" -#: ../../Zotlabs/Lib/Apps.php:205 -msgid "Site Admin" -msgstr "Amministrazione sito" - -#: ../../Zotlabs/Lib/Apps.php:206 -msgid "Bug Report" -msgstr "Bug Report" - -#: ../../Zotlabs/Lib/Apps.php:207 -msgid "View Bookmarks" -msgstr "Vedi i segnalibri" - -#: ../../Zotlabs/Lib/Apps.php:208 -msgid "My Chatrooms" -msgstr "Le mie aree chat" - -#: ../../Zotlabs/Lib/Apps.php:210 -msgid "Firefox Share" -msgstr "Firefox Share" - -#: ../../Zotlabs/Lib/Apps.php:211 -msgid "Remote Diagnostics" -msgstr "Diagnostica remota" - -#: ../../Zotlabs/Lib/Apps.php:212 ../../include/features.php:90 -msgid "Suggest Channels" -msgstr "Suggerisci canali" - -#: ../../Zotlabs/Lib/Apps.php:213 ../../include/nav.php:112 -#: ../../boot.php:1704 -msgid "Login" -msgstr "Accedi" - -#: ../../Zotlabs/Lib/Apps.php:215 ../../include/nav.php:181 -msgid "Grid" -msgstr "Rete" - -#: ../../Zotlabs/Lib/Apps.php:220 ../../include/nav.php:184 -msgid "Channel Home" -msgstr "Bacheca del canale" - -#: ../../Zotlabs/Lib/Apps.php:223 ../../include/nav.php:203 -#: ../../include/conversation.php:1664 ../../include/conversation.php:1667 -msgid "Events" -msgstr "Eventi" - -#: ../../Zotlabs/Lib/Apps.php:224 ../../include/nav.php:169 -msgid "Directory" -msgstr "Elenchi pubblici dei canali" - -#: ../../Zotlabs/Lib/Apps.php:226 ../../include/nav.php:195 -msgid "Mail" -msgstr "Messaggi" - -#: ../../Zotlabs/Lib/Apps.php:229 ../../include/nav.php:96 -msgid "Chat" -msgstr "Chat" - -#: ../../Zotlabs/Lib/Apps.php:231 -msgid "Probe" -msgstr "Diagnostica" - -#: ../../Zotlabs/Lib/Apps.php:232 -msgid "Suggest" -msgstr "Suggerisci" - -#: ../../Zotlabs/Lib/Apps.php:233 -msgid "Random Channel" -msgstr "Canale casuale" - -#: ../../Zotlabs/Lib/Apps.php:234 -msgid "Invite" -msgstr "Invita" - -#: ../../Zotlabs/Lib/Apps.php:235 ../../include/widgets.php:1480 -msgid "Features" -msgstr "Funzionalità" - -#: ../../Zotlabs/Lib/Apps.php:237 -msgid "Post" -msgstr "Post" - -#: ../../Zotlabs/Lib/Apps.php:339 -msgid "Purchase" -msgstr "Acquista" - -#: ../../Zotlabs/Lib/ThreadItem.php:95 ../../include/conversation.php:667 +#: ../../Zotlabs/Lib/ThreadItem.php:95 ../../include/conversation.php:664 msgid "Private Message" msgstr "Messaggio privato" -#: ../../Zotlabs/Lib/ThreadItem.php:132 ../../include/conversation.php:659 +#: ../../Zotlabs/Lib/ThreadItem.php:132 ../../include/conversation.php:656 msgid "Select" msgstr "Scegli" @@ -6918,11 +6628,11 @@ msgstr "Attiva/disattiva preferito" msgid "starred" msgstr "preferito" -#: ../../Zotlabs/Lib/ThreadItem.php:234 ../../include/conversation.php:674 +#: ../../Zotlabs/Lib/ThreadItem.php:234 ../../include/conversation.php:671 msgid "Message signature validated" msgstr "Messaggio con firma verificata" -#: ../../Zotlabs/Lib/ThreadItem.php:235 ../../include/conversation.php:675 +#: ../../Zotlabs/Lib/ThreadItem.php:235 ../../include/conversation.php:672 msgid "Message signature incorrect" msgstr "Massaggio con firma non corretta" @@ -6978,17 +6688,17 @@ msgstr "Da bacheca a bacheca" msgid "via Wall-To-Wall:" msgstr "da bacheca a bacheca:" -#: ../../Zotlabs/Lib/ThreadItem.php:341 ../../include/conversation.php:722 +#: ../../Zotlabs/Lib/ThreadItem.php:341 ../../include/conversation.php:719 #, php-format msgid "from %s" msgstr "da %s" -#: ../../Zotlabs/Lib/ThreadItem.php:344 ../../include/conversation.php:725 +#: ../../Zotlabs/Lib/ThreadItem.php:344 ../../include/conversation.php:722 #, php-format msgid "last edited: %s" msgstr "ultima modifica: %s" -#: ../../Zotlabs/Lib/ThreadItem.php:345 ../../include/conversation.php:726 +#: ../../Zotlabs/Lib/ThreadItem.php:345 ../../include/conversation.php:723 #, php-format msgid "Expires: %s" msgstr "Scadenza: %s" @@ -7006,27 +6716,26 @@ msgid "Mark all seen" msgstr "Marca tutto come letto" #: ../../Zotlabs/Lib/ThreadItem.php:421 ../../include/js_strings.php:7 -#, php-format -msgid "%s show all" -msgstr "%s mostra tutto" +msgid "[+] show all" +msgstr "[+] mostra tutto" -#: ../../Zotlabs/Lib/ThreadItem.php:711 ../../include/conversation.php:1226 +#: ../../Zotlabs/Lib/ThreadItem.php:711 ../../include/conversation.php:1215 msgid "Bold" msgstr "Grassetto" -#: ../../Zotlabs/Lib/ThreadItem.php:712 ../../include/conversation.php:1227 +#: ../../Zotlabs/Lib/ThreadItem.php:712 ../../include/conversation.php:1216 msgid "Italic" msgstr "Corsivo" -#: ../../Zotlabs/Lib/ThreadItem.php:713 ../../include/conversation.php:1228 +#: ../../Zotlabs/Lib/ThreadItem.php:713 ../../include/conversation.php:1217 msgid "Underline" msgstr "Sottolineato" -#: ../../Zotlabs/Lib/ThreadItem.php:714 ../../include/conversation.php:1229 +#: ../../Zotlabs/Lib/ThreadItem.php:714 ../../include/conversation.php:1218 msgid "Quote" msgstr "Citazione" -#: ../../Zotlabs/Lib/ThreadItem.php:715 ../../include/conversation.php:1230 +#: ../../Zotlabs/Lib/ThreadItem.php:715 ../../include/conversation.php:1219 msgid "Code" msgstr "Codice" @@ -7042,74 +6751,11 @@ msgstr "Collegamento" msgid "Video" msgstr "Video" -#: ../../Zotlabs/Lib/PermissionDescription.php:31 -#: ../../include/acl_selectors.php:230 -msgid "Visible to your default audience" -msgstr "Visibile secondo le impostazioni predefinite" - -#: ../../Zotlabs/Lib/PermissionDescription.php:106 -#: ../../include/acl_selectors.php:266 -msgid "Only me" -msgstr "Solo io" - -#: ../../Zotlabs/Lib/PermissionDescription.php:107 -msgid "Public" -msgstr "Pubblico" - -#: ../../Zotlabs/Lib/PermissionDescription.php:108 -msgid "Anybody in the $Projectname network" -msgstr "Tutti sulla rete $Projectname" - -#: ../../Zotlabs/Lib/PermissionDescription.php:109 -#, php-format -msgid "Any account on %s" -msgstr "Tutti gli account su %s" - -#: ../../Zotlabs/Lib/PermissionDescription.php:110 -msgid "Any of my connections" -msgstr "Chiunque tra i miei contatti" - -#: ../../Zotlabs/Lib/PermissionDescription.php:111 -msgid "Only connections I specifically allow" -msgstr "Solo chi riceve il mio permesso" - -#: ../../Zotlabs/Lib/PermissionDescription.php:112 -msgid "Anybody authenticated (could include visitors from other networks)" -msgstr "Chiunque sia autenticato (inclusi visitatori di altre reti)" - -#: ../../Zotlabs/Lib/PermissionDescription.php:113 -msgid "Any connections including those who haven't yet been approved" -msgstr "Tutti i contatti inclusi quelli non ancora approvati" - -#: ../../Zotlabs/Lib/PermissionDescription.php:152 -msgid "" -"This is your default setting for the audience of your normal stream, and " -"posts." -msgstr "Impostazione predefinita di chi può vedere ciò che pubblichi in bacheca" - -#: ../../Zotlabs/Lib/PermissionDescription.php:153 -msgid "" -"This is your default setting for who can view your default channel profile" -msgstr "Impostazione predefinita di chi può vedere il profilo standard del tuo canale" - -#: ../../Zotlabs/Lib/PermissionDescription.php:154 -msgid "This is your default setting for who can view your connections" -msgstr "Impostazione predefinita di chi può vedere i tuoi contatti/amici" - -#: ../../Zotlabs/Lib/PermissionDescription.php:155 -msgid "" -"This is your default setting for who can view your file storage and photos" -msgstr "Impostazione predefinita di chi può vedere le foto e il tuo archivio file" - -#: ../../Zotlabs/Lib/PermissionDescription.php:156 -msgid "This is your default setting for the audience of your webpages" -msgstr "Impostazione predefinita di chi può vedere le tue pagine web" - #: ../../include/Import/import_diaspora.php:16 msgid "No username found in import file." msgstr "Impossibile trovare il nome utente nel file da importare." -#: ../../include/Import/import_diaspora.php:41 ../../include/import.php:51 +#: ../../include/Import/import_diaspora.php:41 ../../include/import.php:50 msgid "Unable to create a unique channel address. Import failed." msgstr "Impossibile creare un indirizzo univoco per il canale. L'import è fallito." @@ -7118,291 +6764,6 @@ msgstr "Impossibile creare un indirizzo univoco per il canale. L'import è falli msgid "Cannot locate DNS info for database server '%s'" msgstr "Non trovo le informazioni DNS per il database server '%s'" -#: ../../include/photos.php:114 -#, php-format -msgid "Image exceeds website size limit of %lu bytes" -msgstr "L'immagine supera il limite massimo di %lu bytes" - -#: ../../include/photos.php:121 -msgid "Image file is empty." -msgstr "Il file dell'immagine è vuoto." - -#: ../../include/photos.php:259 -msgid "Photo storage failed." -msgstr "Impossibile salvare la foto." - -#: ../../include/photos.php:299 -msgid "a new photo" -msgstr "una nuova foto" - -#: ../../include/photos.php:303 -#, php-format -msgctxt "photo_upload" -msgid "%1$s posted %2$s to %3$s" -msgstr "%1$s ha pubblicato %2$s su %3$s" - -#: ../../include/photos.php:506 ../../include/conversation.php:1650 -msgid "Photo Albums" -msgstr "Album foto" - -#: ../../include/photos.php:510 -msgid "Upload New Photos" -msgstr "Carica nuove foto" - -#: ../../include/nav.php:82 ../../include/nav.php:115 ../../boot.php:1703 -msgid "Logout" -msgstr "Esci" - -#: ../../include/nav.php:82 ../../include/nav.php:115 -msgid "End this session" -msgstr "Chiudi questa sessione" - -#: ../../include/nav.php:85 ../../include/nav.php:146 -msgid "Home" -msgstr "Bacheca" - -#: ../../include/nav.php:85 -msgid "Your posts and conversations" -msgstr "I tuoi post e conversazioni" - -#: ../../include/nav.php:86 -msgid "Your profile page" -msgstr "Il tuo profilo" - -#: ../../include/nav.php:88 -msgid "Manage/Edit profiles" -msgstr "Gestisci i tuoi profili" - -#: ../../include/nav.php:90 ../../include/channel.php:980 -msgid "Edit Profile" -msgstr "Modifica il profilo" - -#: ../../include/nav.php:90 -msgid "Edit your profile" -msgstr "Modifica il tuo profilo" - -#: ../../include/nav.php:92 -msgid "Your photos" -msgstr "Le tue foto" - -#: ../../include/nav.php:93 -msgid "Your files" -msgstr "I tuoi file" - -#: ../../include/nav.php:96 -msgid "Your chatrooms" -msgstr "Le tue chat" - -#: ../../include/nav.php:102 ../../include/conversation.php:1690 -msgid "Bookmarks" -msgstr "Segnalibri" - -#: ../../include/nav.php:102 -msgid "Your bookmarks" -msgstr "I tuoi segnalibri" - -#: ../../include/nav.php:106 -msgid "Your webpages" -msgstr "Le tue pagine web" - -#: ../../include/nav.php:108 -msgid "Your wiki" -msgstr "La tua wiki" - -#: ../../include/nav.php:112 -msgid "Sign in" -msgstr "Accedi" - -#: ../../include/nav.php:129 -#, php-format -msgid "%s - click to logout" -msgstr "%s - clicca per uscire" - -#: ../../include/nav.php:132 -msgid "Remote authentication" -msgstr "Accedi dal tuo hub" - -#: ../../include/nav.php:132 -msgid "Click to authenticate to your home hub" -msgstr "Clicca per farti riconoscere dal tuo hub principale" - -#: ../../include/nav.php:146 -msgid "Home Page" -msgstr "Bacheca" - -#: ../../include/nav.php:149 -msgid "Create an account" -msgstr "Crea un account" - -#: ../../include/nav.php:161 -msgid "Help and documentation" -msgstr "Guida e documentazione" - -#: ../../include/nav.php:165 -msgid "Applications, utilities, links, games" -msgstr "Applicazioni, utilità, link, giochi" - -#: ../../include/nav.php:167 -msgid "Search site @name, #tag, ?docs, content" -msgstr "Cerca nel sito per @nome, #tag, ?guida o per contenuto" - -#: ../../include/nav.php:169 -msgid "Channel Directory" -msgstr "Elenchi pubblici dei canali" - -#: ../../include/nav.php:181 -msgid "Your grid" -msgstr "La tua rete" - -#: ../../include/nav.php:182 -msgid "Mark all grid notifications seen" -msgstr "Segna come lette le notifiche della tua rete" - -#: ../../include/nav.php:184 -msgid "Channel home" -msgstr "Bacheca del canale" - -#: ../../include/nav.php:185 -msgid "Mark all channel notifications seen" -msgstr "Segna come lette le notifiche del canale" - -#: ../../include/nav.php:191 -msgid "Notices" -msgstr "Avvisi" - -#: ../../include/nav.php:191 -msgid "Notifications" -msgstr "Notifiche" - -#: ../../include/nav.php:192 -msgid "See all notifications" -msgstr "Vedi tutte le notifiche" - -#: ../../include/nav.php:195 -msgid "Private mail" -msgstr "Messaggi privati" - -#: ../../include/nav.php:196 -msgid "See all private messages" -msgstr "Guarda tutti i messaggi privati" - -#: ../../include/nav.php:197 -msgid "Mark all private messages seen" -msgstr "Segna come letti tutti i messaggi privati" - -#: ../../include/nav.php:198 ../../include/widgets.php:667 -msgid "Inbox" -msgstr "In arrivo" - -#: ../../include/nav.php:199 ../../include/widgets.php:672 -msgid "Outbox" -msgstr "Inviati" - -#: ../../include/nav.php:200 ../../include/widgets.php:677 -msgid "New Message" -msgstr "Nuovo messaggio" - -#: ../../include/nav.php:203 -msgid "Event Calendar" -msgstr "Calendario" - -#: ../../include/nav.php:204 -msgid "See all events" -msgstr "Guarda tutti gli eventi" - -#: ../../include/nav.php:205 -msgid "Mark all events seen" -msgstr "Marca come letti tutti gli eventi" - -#: ../../include/nav.php:208 -msgid "Manage Your Channels" -msgstr "Gestisci i tuoi canali" - -#: ../../include/nav.php:210 -msgid "Account/Channel Settings" -msgstr "Impostazioni dell'account e del canale" - -#: ../../include/nav.php:218 ../../include/widgets.php:1510 -msgid "Admin" -msgstr "Amministrazione" - -#: ../../include/nav.php:218 -msgid "Site Setup and Configuration" -msgstr "Installazione e configurazione del sito" - -#: ../../include/nav.php:249 ../../include/conversation.php:854 -msgid "Loading..." -msgstr "Caricamento in corso..." - -#: ../../include/nav.php:254 -msgid "@name, #tag, ?doc, content" -msgstr "@nome, #tag, ?guida, contenuto" - -#: ../../include/nav.php:255 -msgid "Please wait..." -msgstr "Attendere..." - -#: ../../include/network.php:704 -msgid "view full size" -msgstr "guarda nelle dimensioni reali" - -#: ../../include/network.php:1930 ../../include/account.php:317 -#: ../../include/account.php:344 ../../include/account.php:404 -msgid "Administrator" -msgstr "Amministratore" - -#: ../../include/network.php:1944 -msgid "No Subject" -msgstr "Nessun titolo" - -#: ../../include/network.php:2198 ../../include/network.php:2199 -msgid "Friendica" -msgstr "Friendica" - -#: ../../include/network.php:2200 -msgid "OStatus" -msgstr "OStatus" - -#: ../../include/network.php:2201 -msgid "GNU-Social" -msgstr "GNU-Social" - -#: ../../include/network.php:2202 -msgid "RSS/Atom" -msgstr "RSS/Atom" - -#: ../../include/network.php:2204 -msgid "Diaspora" -msgstr "Diaspora" - -#: ../../include/network.php:2205 -msgid "Facebook" -msgstr "Facebook" - -#: ../../include/network.php:2206 -msgid "Zot" -msgstr "Zot" - -#: ../../include/network.php:2207 -msgid "LinkedIn" -msgstr "LinkedIn" - -#: ../../include/network.php:2208 -msgid "XMPP/IM" -msgstr "XMPP/IM" - -#: ../../include/network.php:2209 -msgid "MySpace" -msgstr "MySpace" - -#: ../../include/page_widgets.php:7 -msgid "New Page" -msgstr "Nuova pagina web" - -#: ../../include/page_widgets.php:46 -msgid "Title" -msgstr "Titolo" - #: ../../include/taxonomy.php:188 ../../include/taxonomy.php:270 #: ../../include/widgets.php:46 ../../include/widgets.php:429 #: ../../include/contact_widgets.php:91 @@ -7441,159 +6802,952 @@ msgstr "gli piace" msgid "dislikes" msgstr "non gli piace" -#: ../../include/channel.php:33 -msgid "Unable to obtain identity information from database" -msgstr "Impossibile ottenere le informazioni di identificazione dal database" +#: ../../include/event.php:22 ../../include/event.php:69 +#: ../../include/bb2diaspora.php:485 +msgid "l F d, Y \\@ g:i A" +msgstr "l d F Y \\@ G:i" -#: ../../include/channel.php:67 -msgid "Empty name" -msgstr "Nome vuoto" +#: ../../include/event.php:30 ../../include/event.php:73 +#: ../../include/bb2diaspora.php:491 +msgid "Starts:" +msgstr "Inizio:" -#: ../../include/channel.php:70 -msgid "Name too long" -msgstr "Nome troppo lungo" +#: ../../include/event.php:40 ../../include/event.php:77 +#: ../../include/bb2diaspora.php:499 +msgid "Finishes:" +msgstr "Fine:" -#: ../../include/channel.php:181 -msgid "No account identifier" -msgstr "Account senza identificativo" +#: ../../include/event.php:812 +msgid "This event has been added to your calendar." +msgstr "Questo evento è stato aggiunto al tuo calendario" -#: ../../include/channel.php:193 -msgid "Nickname is required." -msgstr "Il nome dell'account è obbligatorio." +#: ../../include/event.php:1012 +msgid "Not specified" +msgstr "Non specificato" -#: ../../include/channel.php:207 -msgid "Reserved nickname. Please choose another." -msgstr "Nome utente riservato. Per favore scegline un altro." +#: ../../include/event.php:1013 +msgid "Needs Action" +msgstr "Necessita di un intervento" -#: ../../include/channel.php:212 +#: ../../include/event.php:1014 +msgid "Completed" +msgstr "Completato" + +#: ../../include/event.php:1015 +msgid "In Process" +msgstr "In corso" + +#: ../../include/event.php:1016 +msgid "Cancelled" +msgstr "Annullato" + +#: ../../include/import.php:29 msgid "" -"Nickname has unsupported characters or is already being used on this site." -msgstr "Il nome dell'account è già in uso oppure ha dei caratteri non supportati." +"Cannot create a duplicate channel identifier on this system. Import failed." +msgstr "Non posso creare un canale con un identificativo che già esiste su questo sistema. L'importazione è fallita." -#: ../../include/channel.php:272 -msgid "Unable to retrieve created identity" -msgstr "Impossibile caricare l'identità creata" +#: ../../include/import.php:76 +msgid "Channel clone failed. Import failed." +msgstr "Impossibile clonare il canale. L'importazione è fallita." -#: ../../include/channel.php:341 -msgid "Default Profile" -msgstr "Profilo predefinito" +#: ../../include/items.php:892 ../../include/items.php:937 +msgid "(Unknown)" +msgstr "(Sconosciuto)" -#: ../../include/channel.php:830 -msgid "Requested channel is not available." -msgstr "Il canale che cerchi non è disponibile." +#: ../../include/items.php:1136 +msgid "Visible to anybody on the internet." +msgstr "Visibile a chiunque su internet." -#: ../../include/channel.php:977 -msgid "Create New Profile" -msgstr "Crea un nuovo profilo" +#: ../../include/items.php:1138 +msgid "Visible to you only." +msgstr "Visibile solo a te." -#: ../../include/channel.php:997 -msgid "Visible to everybody" -msgstr "Visibile a tutti" +#: ../../include/items.php:1140 +msgid "Visible to anybody in this network." +msgstr "Visibile a tutti su questa rete." -#: ../../include/channel.php:1070 ../../include/channel.php:1182 -msgid "Gender:" -msgstr "Sesso:" +#: ../../include/items.php:1142 +msgid "Visible to anybody authenticated." +msgstr "Visibile a chiunque sia autenticato." -#: ../../include/channel.php:1071 ../../include/channel.php:1226 -msgid "Status:" -msgstr "Stato:" - -#: ../../include/channel.php:1072 ../../include/channel.php:1237 -msgid "Homepage:" -msgstr "Home page:" - -#: ../../include/channel.php:1073 -msgid "Online Now" -msgstr "Online adesso" - -#: ../../include/channel.php:1187 -msgid "Like this channel" -msgstr "Mi piace questo canale" - -#: ../../include/channel.php:1211 -msgid "j F, Y" -msgstr "j F Y" - -#: ../../include/channel.php:1212 -msgid "j F" -msgstr "j F" - -#: ../../include/channel.php:1219 -msgid "Birthday:" -msgstr "Compleanno:" - -#: ../../include/channel.php:1232 +#: ../../include/items.php:1144 #, php-format -msgid "for %1$d %2$s" -msgstr "per %1$d %2$s" +msgid "Visible to anybody on %s." +msgstr "Visibile a tutti su %s." -#: ../../include/channel.php:1235 -msgid "Sexual Preference:" -msgstr "Preferenze sessuali:" +#: ../../include/items.php:1146 +msgid "Visible to all connections." +msgstr "Visibile a tutti coloro che ti seguono." -#: ../../include/channel.php:1241 -msgid "Tags:" -msgstr "Tag:" +#: ../../include/items.php:1148 +msgid "Visible to approved connections." +msgstr "Visibile ai contatti approvati." -#: ../../include/channel.php:1243 -msgid "Political Views:" -msgstr "Orientamento politico:" +#: ../../include/items.php:1150 +msgid "Visible to specific connections." +msgstr "Visibile ad alcuni contatti scelti." -#: ../../include/channel.php:1245 -msgid "Religion:" -msgstr "Religione:" +#: ../../include/items.php:3909 +msgid "Privacy group is empty." +msgstr "Gruppo di canali vuoto." -#: ../../include/channel.php:1249 -msgid "Hobbies/Interests:" -msgstr "Interessi e hobby:" +#: ../../include/items.php:3916 +#, php-format +msgid "Privacy group: %s" +msgstr "Gruppo di canali: %s" -#: ../../include/channel.php:1251 -msgid "Likes:" -msgstr "Mi piace:" +#: ../../include/items.php:3928 +msgid "Connection not found." +msgstr "Contatto non trovato." -#: ../../include/channel.php:1253 -msgid "Dislikes:" -msgstr "Non mi piace:" +#: ../../include/items.php:4277 +msgid "profile photo" +msgstr "foto del profilo" -#: ../../include/channel.php:1255 -msgid "Contact information and Social Networks:" -msgstr "Contatti e social network:" +#: ../../include/message.php:20 +msgid "No recipient provided." +msgstr "Devi scegliere un destinatario." -#: ../../include/channel.php:1257 -msgid "My other channels:" -msgstr "I miei altri canali:" +#: ../../include/message.php:25 +msgid "[no subject]" +msgstr "[nessun titolo]" -#: ../../include/channel.php:1259 -msgid "Musical interests:" -msgstr "Gusti musicali:" +#: ../../include/message.php:45 +msgid "Unable to determine sender." +msgstr "Impossibile determinare il mittente." -#: ../../include/channel.php:1261 -msgid "Books, literature:" -msgstr "Libri, letteratura:" +#: ../../include/message.php:222 +msgid "Stored post could not be verified." +msgstr "Non è stato possibile verificare il post." -#: ../../include/channel.php:1263 -msgid "Television:" -msgstr "Televisione:" +#: ../../include/text.php:428 +msgid "prev" +msgstr "prec" -#: ../../include/channel.php:1265 -msgid "Film/dance/culture/entertainment:" -msgstr "Film, danza, cultura, intrattenimento:" +#: ../../include/text.php:430 +msgid "first" +msgstr "inizio" -#: ../../include/channel.php:1267 -msgid "Love/Romance:" -msgstr "Amore:" +#: ../../include/text.php:459 +msgid "last" +msgstr "fine" -#: ../../include/channel.php:1269 -msgid "Work/employment:" -msgstr "Lavoro:" +#: ../../include/text.php:462 +msgid "next" +msgstr "succ" -#: ../../include/channel.php:1271 -msgid "School/education:" -msgstr "Scuola:" +#: ../../include/text.php:472 +msgid "older" +msgstr "più recenti" -#: ../../include/channel.php:1292 -msgid "Like this thing" -msgstr "Mi piace" +#: ../../include/text.php:474 +msgid "newer" +msgstr "più nuovi" + +#: ../../include/text.php:863 +msgid "No connections" +msgstr "Nessun contatto" + +#: ../../include/text.php:888 +#, php-format +msgid "View all %s connections" +msgstr "Mostra tutti i %s contatti" + +#: ../../include/text.php:1033 ../../include/text.php:1038 +msgid "poke" +msgstr "poke" + +#: ../../include/text.php:1033 ../../include/text.php:1038 +#: ../../include/conversation.php:243 +msgid "poked" +msgstr "ha mandato un poke" + +#: ../../include/text.php:1039 +msgid "ping" +msgstr "ping" + +#: ../../include/text.php:1039 +msgid "pinged" +msgstr "ha effettuato un ping" + +#: ../../include/text.php:1040 +msgid "prod" +msgstr "spintone" + +#: ../../include/text.php:1040 +msgid "prodded" +msgstr "ha ricevuto uno spintone" + +#: ../../include/text.php:1041 +msgid "slap" +msgstr "schiaffo" + +#: ../../include/text.php:1041 +msgid "slapped" +msgstr "ha ricevuto uno schiaffo" + +#: ../../include/text.php:1042 +msgid "finger" +msgstr "finger" + +#: ../../include/text.php:1042 +msgid "fingered" +msgstr "ha ricevuto un finger" + +#: ../../include/text.php:1043 +msgid "rebuff" +msgstr "rifiuto" + +#: ../../include/text.php:1043 +msgid "rebuffed" +msgstr "ha ricevuto un rifiuto" + +#: ../../include/text.php:1055 +msgid "happy" +msgstr "felice" + +#: ../../include/text.php:1056 +msgid "sad" +msgstr "triste" + +#: ../../include/text.php:1057 +msgid "mellow" +msgstr "calmo" + +#: ../../include/text.php:1058 +msgid "tired" +msgstr "stanco" + +#: ../../include/text.php:1059 +msgid "perky" +msgstr "vivace" + +#: ../../include/text.php:1060 +msgid "angry" +msgstr "arrabbiato" + +#: ../../include/text.php:1061 +msgid "stupefied" +msgstr "stupito" + +#: ../../include/text.php:1062 +msgid "puzzled" +msgstr "confuso" + +#: ../../include/text.php:1063 +msgid "interested" +msgstr "attento" + +#: ../../include/text.php:1064 +msgid "bitter" +msgstr "amaro" + +#: ../../include/text.php:1065 +msgid "cheerful" +msgstr "allegro" + +#: ../../include/text.php:1066 +msgid "alive" +msgstr "vivace" + +#: ../../include/text.php:1067 +msgid "annoyed" +msgstr "seccato" + +#: ../../include/text.php:1068 +msgid "anxious" +msgstr "ansioso" + +#: ../../include/text.php:1069 +msgid "cranky" +msgstr "irritabile" + +#: ../../include/text.php:1070 +msgid "disturbed" +msgstr "turbato" + +#: ../../include/text.php:1071 +msgid "frustrated" +msgstr "frustrato" + +#: ../../include/text.php:1072 +msgid "depressed" +msgstr "in depressione" + +#: ../../include/text.php:1073 +msgid "motivated" +msgstr "motivato" + +#: ../../include/text.php:1074 +msgid "relaxed" +msgstr "rilassato" + +#: ../../include/text.php:1075 +msgid "surprised" +msgstr "sorpreso" + +#: ../../include/text.php:1257 ../../include/js_strings.php:70 +msgid "Monday" +msgstr "lunedì" + +#: ../../include/text.php:1257 ../../include/js_strings.php:71 +msgid "Tuesday" +msgstr "martedì" + +#: ../../include/text.php:1257 ../../include/js_strings.php:72 +msgid "Wednesday" +msgstr "mercoledì" + +#: ../../include/text.php:1257 ../../include/js_strings.php:73 +msgid "Thursday" +msgstr "giovedì" + +#: ../../include/text.php:1257 ../../include/js_strings.php:74 +msgid "Friday" +msgstr "venerdì" + +#: ../../include/text.php:1257 ../../include/js_strings.php:75 +msgid "Saturday" +msgstr "sabato" + +#: ../../include/text.php:1257 ../../include/js_strings.php:69 +msgid "Sunday" +msgstr "domenica" + +#: ../../include/text.php:1261 ../../include/js_strings.php:45 +msgid "January" +msgstr "gennaio" + +#: ../../include/text.php:1261 ../../include/js_strings.php:46 +msgid "February" +msgstr "febbraio" + +#: ../../include/text.php:1261 ../../include/js_strings.php:47 +msgid "March" +msgstr "marzo" + +#: ../../include/text.php:1261 ../../include/js_strings.php:48 +msgid "April" +msgstr "aprile" + +#: ../../include/text.php:1261 +msgid "May" +msgstr "Mag" + +#: ../../include/text.php:1261 ../../include/js_strings.php:50 +msgid "June" +msgstr "giugno" + +#: ../../include/text.php:1261 ../../include/js_strings.php:51 +msgid "July" +msgstr "luglio" + +#: ../../include/text.php:1261 ../../include/js_strings.php:52 +msgid "August" +msgstr "agosto" + +#: ../../include/text.php:1261 ../../include/js_strings.php:53 +msgid "September" +msgstr "settembre" + +#: ../../include/text.php:1261 ../../include/js_strings.php:54 +msgid "October" +msgstr "ottobre" + +#: ../../include/text.php:1261 ../../include/js_strings.php:55 +msgid "November" +msgstr "novembre" + +#: ../../include/text.php:1261 ../../include/js_strings.php:56 +msgid "December" +msgstr "dicembre" + +#: ../../include/text.php:1338 ../../include/text.php:1342 +msgid "Unknown Attachment" +msgstr "Allegato non riconoscuto" + +#: ../../include/text.php:1344 +msgid "unknown" +msgstr "sconosciuta" + +#: ../../include/text.php:1380 +msgid "remove category" +msgstr "rimuovi la categoria" + +#: ../../include/text.php:1457 +msgid "remove from file" +msgstr "rimuovi dal file" + +#: ../../include/text.php:1753 ../../include/text.php:1824 +msgid "default" +msgstr "predefinito" + +#: ../../include/text.php:1761 +msgid "Page layout" +msgstr "Layout della pagina" + +#: ../../include/text.php:1761 +msgid "You can create your own with the layouts tool" +msgstr "Puoi creare un tuo layout dalla configurazione delle pagine web" + +#: ../../include/text.php:1803 +msgid "Page content type" +msgstr "Tipo di contenuto della pagina" + +#: ../../include/text.php:1836 +msgid "Select an alternate language" +msgstr "Seleziona una lingua diversa" + +#: ../../include/text.php:1953 +msgid "activity" +msgstr "l'attività" + +#: ../../include/text.php:2262 +msgid "Design Tools" +msgstr "Strumenti di design" + +#: ../../include/text.php:2268 +msgid "Pages" +msgstr "Pagine" + +#: ../../include/widgets.php:103 +msgid "System" +msgstr "Sistema" + +#: ../../include/widgets.php:106 +msgid "New App" +msgstr "Nuova app" + +#: ../../include/widgets.php:154 +msgid "Suggestions" +msgstr "Suggerimenti" + +#: ../../include/widgets.php:155 +msgid "See more..." +msgstr "Altro..." + +#: ../../include/widgets.php:175 +#, php-format +msgid "You have %1$.0f of %2$.0f allowed connections." +msgstr "Hai attivato %1$.0f delle %2$.0f connessioni permesse." + +#: ../../include/widgets.php:181 +msgid "Add New Connection" +msgstr "Aggiungi un contatto" + +#: ../../include/widgets.php:182 +msgid "Enter channel address" +msgstr "Indirizzo del canale" + +#: ../../include/widgets.php:183 +msgid "Examples: bob@example.com, https://example.com/barbara" +msgstr "Per esempio: bob@example.com, https://example.com/barbara" + +#: ../../include/widgets.php:199 +msgid "Notes" +msgstr "Note" + +#: ../../include/widgets.php:273 +msgid "Remove term" +msgstr "Rimuovi termine" + +#: ../../include/widgets.php:281 ../../include/features.php:84 +msgid "Saved Searches" +msgstr "Ricerche salvate" + +#: ../../include/widgets.php:282 ../../include/group.php:316 +msgid "add" +msgstr "aggiungi" + +#: ../../include/widgets.php:310 ../../include/contact_widgets.php:53 +#: ../../include/features.php:98 +msgid "Saved Folders" +msgstr "Cartelle salvate" + +#: ../../include/widgets.php:313 ../../include/widgets.php:432 +#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:94 +msgid "Everything" +msgstr "Tutto" + +#: ../../include/widgets.php:354 +msgid "Archives" +msgstr "Archivi" + +#: ../../include/widgets.php:516 +msgid "Refresh" +msgstr "Aggiorna" + +#: ../../include/widgets.php:556 +msgid "Account settings" +msgstr "Il tuo account" + +#: ../../include/widgets.php:562 +msgid "Channel settings" +msgstr "Impostazioni del canale" + +#: ../../include/widgets.php:571 +msgid "Additional features" +msgstr "Funzionalità opzionali" + +#: ../../include/widgets.php:578 +msgid "Feature/Addon settings" +msgstr "Componenti aggiuntivi" + +#: ../../include/widgets.php:584 +msgid "Display settings" +msgstr "Aspetto" + +#: ../../include/widgets.php:591 +msgid "Manage locations" +msgstr "Gestione repliche" + +#: ../../include/widgets.php:600 +msgid "Export channel" +msgstr "Esporta il canale" + +#: ../../include/widgets.php:607 +msgid "Connected apps" +msgstr "App connesse" + +#: ../../include/widgets.php:622 +msgid "Premium Channel Settings" +msgstr "Canale premium - impostazioni" + +#: ../../include/widgets.php:651 +msgid "Private Mail Menu" +msgstr "Menu messaggi privati" + +#: ../../include/widgets.php:653 +msgid "Combined View" +msgstr "Vista combinata" + +#: ../../include/widgets.php:658 ../../include/nav.php:196 +msgid "Inbox" +msgstr "In arrivo" + +#: ../../include/widgets.php:663 ../../include/nav.php:197 +msgid "Outbox" +msgstr "Inviati" + +#: ../../include/widgets.php:668 ../../include/nav.php:198 +msgid "New Message" +msgstr "Nuovo messaggio" + +#: ../../include/widgets.php:685 ../../include/widgets.php:697 +msgid "Conversations" +msgstr "Conversazioni" + +#: ../../include/widgets.php:689 +msgid "Received Messages" +msgstr "Ricevuti" + +#: ../../include/widgets.php:693 +msgid "Sent Messages" +msgstr "Inviati" + +#: ../../include/widgets.php:707 +msgid "No messages." +msgstr "Nessun messaggio." + +#: ../../include/widgets.php:725 +msgid "Delete conversation" +msgstr "Elimina la conversazione" + +#: ../../include/widgets.php:751 +msgid "Events Menu" +msgstr "Menu eventi" + +#: ../../include/widgets.php:752 +msgid "Day View" +msgstr "Eventi del giorno" + +#: ../../include/widgets.php:753 +msgid "Week View" +msgstr "Eventi della settimana" + +#: ../../include/widgets.php:754 +msgid "Month View" +msgstr "Eventi del mese" + +#: ../../include/widgets.php:766 +msgid "Events Tools" +msgstr "Gestione eventi" + +#: ../../include/widgets.php:767 +msgid "Export Calendar" +msgstr "Esporta calendario" + +#: ../../include/widgets.php:768 +msgid "Import Calendar" +msgstr "Importa calendario" + +#: ../../include/widgets.php:842 ../../include/conversation.php:1662 +#: ../../include/conversation.php:1665 +msgid "Chatrooms" +msgstr "Chat" + +#: ../../include/widgets.php:846 +msgid "Overview" +msgstr "Riepilogo" + +#: ../../include/widgets.php:853 +msgid "Chat Members" +msgstr "Partecipanti" + +#: ../../include/widgets.php:876 +msgid "Bookmarked Chatrooms" +msgstr "Chat nei segnalibri" + +#: ../../include/widgets.php:899 +msgid "Suggested Chatrooms" +msgstr "Chat suggerite" + +#: ../../include/widgets.php:1044 ../../include/widgets.php:1156 +msgid "photo/image" +msgstr "foto/immagine" + +#: ../../include/widgets.php:1099 +msgid "Click to show more" +msgstr "Clicca per mostrare tutto" + +#: ../../include/widgets.php:1250 +msgid "Rating Tools" +msgstr "Valutazione" + +#: ../../include/widgets.php:1254 ../../include/widgets.php:1256 +msgid "Rate Me" +msgstr "Valutami" + +#: ../../include/widgets.php:1259 +msgid "View Ratings" +msgstr "Vedi le valutazioni ricevute" + +#: ../../include/widgets.php:1316 +msgid "Forums" +msgstr "Forum" + +#: ../../include/widgets.php:1345 +msgid "Tasks" +msgstr "Attività" + +#: ../../include/widgets.php:1354 +msgid "Documentation" +msgstr "Guida" + +#: ../../include/widgets.php:1356 +msgid "Project/Site Information" +msgstr "Informazioni sul sito/progetto" + +#: ../../include/widgets.php:1357 +msgid "For Members" +msgstr "Per gli utenti" + +#: ../../include/widgets.php:1358 +msgid "For Administrators" +msgstr "Per gli amministratori" + +#: ../../include/widgets.php:1359 +msgid "For Developers" +msgstr "Per sviluppatori" + +#: ../../include/widgets.php:1383 ../../include/widgets.php:1421 +msgid "Member registrations waiting for confirmation" +msgstr "Richieste in attesa di conferma" + +#: ../../include/widgets.php:1389 +msgid "Inspect queue" +msgstr "Coda di attesa" + +#: ../../include/widgets.php:1391 +msgid "DB updates" +msgstr "Aggiornamenti al DB" + +#: ../../include/widgets.php:1416 ../../include/nav.php:216 +msgid "Admin" +msgstr "Amministrazione" + +#: ../../include/widgets.php:1417 +msgid "Plugin Features" +msgstr "Plugin" + +#: ../../include/follow.php:27 +msgid "Channel is blocked on this site." +msgstr "Il canale è bloccato per questo sito." + +#: ../../include/follow.php:32 +msgid "Channel location missing." +msgstr "Manca l'indirizzo del canale." + +#: ../../include/follow.php:81 +msgid "Response from remote channel was incomplete." +msgstr "La risposta dal canale non è completa." + +#: ../../include/follow.php:98 +msgid "Channel was deleted and no longer exists." +msgstr "Il canale è stato rimosso e non esiste più." + +#: ../../include/follow.php:154 ../../include/follow.php:190 +msgid "Protocol disabled." +msgstr "Protocollo disabilitato." + +#: ../../include/follow.php:178 +msgid "Channel discovery failed." +msgstr "La ricerca del canale non ha avuto successo." + +#: ../../include/follow.php:216 +msgid "Cannot connect to yourself." +msgstr "Non puoi connetterti a te stesso." + +#: ../../include/bookmarks.php:35 +#, php-format +msgid "%1$s's bookmarks" +msgstr "I segnalibri di %1$s" + +#: ../../include/api.php:1336 +msgid "Public Timeline" +msgstr "Diario pubblico" + +#: ../../include/bbcode.php:123 ../../include/bbcode.php:844 +#: ../../include/bbcode.php:847 ../../include/bbcode.php:852 +#: ../../include/bbcode.php:855 ../../include/bbcode.php:858 +#: ../../include/bbcode.php:861 ../../include/bbcode.php:866 +#: ../../include/bbcode.php:869 ../../include/bbcode.php:874 +#: ../../include/bbcode.php:877 ../../include/bbcode.php:880 +#: ../../include/bbcode.php:883 +msgid "Image/photo" +msgstr "Immagine" + +#: ../../include/bbcode.php:162 ../../include/bbcode.php:894 +msgid "Encrypted content" +msgstr "Contenuto cifrato" + +#: ../../include/bbcode.php:178 +#, php-format +msgid "Install %s element: " +msgstr "Installa l'elemento %s:" + +#: ../../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 "Questo post contiene un elemento %s installabile, tuttavia non hai i permessi necessari per l'installazione." + +#: ../../include/bbcode.php:254 +#, php-format +msgid "%1$s wrote the following %2$s %3$s" +msgstr "%1$s ha scritto %2$s %3$s" + +#: ../../include/bbcode.php:331 ../../include/bbcode.php:339 +msgid "Click to open/close" +msgstr "Clicca per aprire/chiudere" + +#: ../../include/bbcode.php:339 +msgid "spoiler" +msgstr "spoiler" + +#: ../../include/bbcode.php:585 +msgid "Different viewers will see this text differently" +msgstr "Ad altri questo testo potrebbe apparire in modo differente" + +#: ../../include/bbcode.php:832 +msgid "$1 wrote:" +msgstr "$1 ha scritto:" + +#: ../../include/dir_fns.php:141 +msgid "Directory Options" +msgstr "Visibilità negli elenchi pubblici" + +#: ../../include/dir_fns.php:143 +msgid "Safe Mode" +msgstr "Modalità SafeSearch" + +#: ../../include/dir_fns.php:144 +msgid "Public Forums Only" +msgstr "Solo forum pubblici" + +#: ../../include/dir_fns.php:145 +msgid "This Website Only" +msgstr "Solo in questo sito" + +#: ../../include/security.php:383 +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 "I controlli di sicurezza sono falliti. Probabilmente è accaduto perché la pagina è stata tenuta aperta troppo a lungo (ore?) prima di inviare il contenuto." + +#: ../../include/nav.php:82 ../../include/nav.php:113 ../../boot.php:1702 +msgid "Logout" +msgstr "Esci" + +#: ../../include/nav.php:82 ../../include/nav.php:113 +msgid "End this session" +msgstr "Chiudi questa sessione" + +#: ../../include/nav.php:85 ../../include/nav.php:144 +msgid "Home" +msgstr "Bacheca" + +#: ../../include/nav.php:85 +msgid "Your posts and conversations" +msgstr "I tuoi post e conversazioni" + +#: ../../include/nav.php:86 +msgid "Your profile page" +msgstr "Il tuo profilo" + +#: ../../include/nav.php:88 +msgid "Manage/Edit profiles" +msgstr "Gestisci i tuoi profili" + +#: ../../include/nav.php:90 ../../include/channel.php:941 +msgid "Edit Profile" +msgstr "Modifica il profilo" + +#: ../../include/nav.php:90 +msgid "Edit your profile" +msgstr "Modifica il tuo profilo" + +#: ../../include/nav.php:92 +msgid "Your photos" +msgstr "Le tue foto" + +#: ../../include/nav.php:93 +msgid "Your files" +msgstr "I tuoi file" + +#: ../../include/nav.php:96 +msgid "Your chatrooms" +msgstr "Le tue chat" + +#: ../../include/nav.php:102 ../../include/conversation.php:1675 +msgid "Bookmarks" +msgstr "Segnalibri" + +#: ../../include/nav.php:102 +msgid "Your bookmarks" +msgstr "I tuoi segnalibri" + +#: ../../include/nav.php:106 +msgid "Your webpages" +msgstr "Le tue pagine web" + +#: ../../include/nav.php:110 +msgid "Sign in" +msgstr "Accedi" + +#: ../../include/nav.php:127 +#, php-format +msgid "%s - click to logout" +msgstr "%s - clicca per uscire" + +#: ../../include/nav.php:130 +msgid "Remote authentication" +msgstr "Accedi dal tuo hub" + +#: ../../include/nav.php:130 +msgid "Click to authenticate to your home hub" +msgstr "Clicca per farti riconoscere dal tuo hub principale" + +#: ../../include/nav.php:144 +msgid "Home Page" +msgstr "Bacheca" + +#: ../../include/nav.php:147 +msgid "Create an account" +msgstr "Crea un account" + +#: ../../include/nav.php:159 +msgid "Help and documentation" +msgstr "Guida e documentazione" + +#: ../../include/nav.php:163 +msgid "Applications, utilities, links, games" +msgstr "Applicazioni, utilità, link, giochi" + +#: ../../include/nav.php:165 +msgid "Search site @name, #tag, ?docs, content" +msgstr "Cerca nel sito per @nome, #tag, ?guida o per contenuto" + +#: ../../include/nav.php:167 +msgid "Channel Directory" +msgstr "Elenchi pubblici dei canali" + +#: ../../include/nav.php:179 +msgid "Your grid" +msgstr "La tua rete" + +#: ../../include/nav.php:180 +msgid "Mark all grid notifications seen" +msgstr "Segna come lette le notifiche della tua rete" + +#: ../../include/nav.php:182 +msgid "Channel home" +msgstr "Bacheca del canale" + +#: ../../include/nav.php:183 +msgid "Mark all channel notifications seen" +msgstr "Segna come lette le notifiche del canale" + +#: ../../include/nav.php:189 +msgid "Notices" +msgstr "Avvisi" + +#: ../../include/nav.php:189 +msgid "Notifications" +msgstr "Notifiche" + +#: ../../include/nav.php:190 +msgid "See all notifications" +msgstr "Vedi tutte le notifiche" + +#: ../../include/nav.php:193 +msgid "Private mail" +msgstr "Messaggi privati" + +#: ../../include/nav.php:194 +msgid "See all private messages" +msgstr "Guarda tutti i messaggi privati" + +#: ../../include/nav.php:195 +msgid "Mark all private messages seen" +msgstr "Segna come letti tutti i messaggi privati" + +#: ../../include/nav.php:201 +msgid "Event Calendar" +msgstr "Calendario" + +#: ../../include/nav.php:202 +msgid "See all events" +msgstr "Guarda tutti gli eventi" + +#: ../../include/nav.php:203 +msgid "Mark all events seen" +msgstr "Marca come letti tutti gli eventi" + +#: ../../include/nav.php:206 +msgid "Manage Your Channels" +msgstr "Gestisci i tuoi canali" + +#: ../../include/nav.php:208 +msgid "Account/Channel Settings" +msgstr "Impostazioni dell'account e del canale" + +#: ../../include/nav.php:216 +msgid "Site Setup and Configuration" +msgstr "Installazione e configurazione del sito" + +#: ../../include/nav.php:247 ../../include/conversation.php:851 +msgid "Loading..." +msgstr "Caricamento in corso..." + +#: ../../include/nav.php:252 +msgid "@name, #tag, ?doc, content" +msgstr "@nome, #tag, ?guida, contenuto" + +#: ../../include/nav.php:253 +msgid "Please wait..." +msgstr "Attendere..." #: ../../include/connections.php:95 msgid "New window" @@ -7608,6 +7762,52 @@ msgstr "Apri l'indirizzo selezionato in una nuova scheda o finestra" msgid "User '%s' deleted" msgstr "Utente '%s' eliminato" +#: ../../include/contact_widgets.php:11 +#, php-format +msgid "%d invitation available" +msgid_plural "%d invitations available" +msgstr[0] "%d invito disponibile" +msgstr[1] "%d inviti disponibili" + +#: ../../include/contact_widgets.php:19 +msgid "Find Channels" +msgstr "Ricerca canali" + +#: ../../include/contact_widgets.php:20 +msgid "Enter name or interest" +msgstr "Scrivi un nome o un interesse" + +#: ../../include/contact_widgets.php:21 +msgid "Connect/Follow" +msgstr "Aggiungi" + +#: ../../include/contact_widgets.php:22 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "Per esempio: Mario Rossi, Pesca" + +#: ../../include/contact_widgets.php:26 +msgid "Random Profile" +msgstr "Profilo casuale" + +#: ../../include/contact_widgets.php:27 +msgid "Invite Friends" +msgstr "Invita amici" + +#: ../../include/contact_widgets.php:29 +msgid "Advanced example: name=fred and country=iceland" +msgstr "Per esempio: name=mario e country=italy" + +#: ../../include/contact_widgets.php:122 +#, php-format +msgid "%d connection in common" +msgid_plural "%d connections in common" +msgstr[0] "%d contatto in comune" +msgstr[1] "%d contatti in comune" + +#: ../../include/contact_widgets.php:127 +msgid "show more" +msgstr "mostra tutto" + #: ../../include/conversation.php:204 #, php-format msgid "%1$s is now connected with %2$s" @@ -7618,269 +7818,258 @@ msgstr "%1$s adesso è connesso con %2$s" msgid "%1$s poked %2$s" msgstr "%1$s ha mandato un poke a %2$s" -#: ../../include/conversation.php:243 ../../include/text.php:1013 -#: ../../include/text.php:1018 -msgid "poked" -msgstr "ha mandato un poke" - -#: ../../include/conversation.php:694 +#: ../../include/conversation.php:691 #, php-format msgid "View %s's profile @ %s" msgstr "Vedi il profilo di %s @ %s" -#: ../../include/conversation.php:713 +#: ../../include/conversation.php:710 msgid "Categories:" msgstr "Categorie:" -#: ../../include/conversation.php:714 +#: ../../include/conversation.php:711 msgid "Filed under:" msgstr "Classificato come:" -#: ../../include/conversation.php:741 +#: ../../include/conversation.php:738 msgid "View in context" msgstr "Vedi nel contesto" -#: ../../include/conversation.php:850 +#: ../../include/conversation.php:847 msgid "remove" msgstr "rimuovi" -#: ../../include/conversation.php:855 +#: ../../include/conversation.php:852 msgid "Delete Selected Items" msgstr "Elimina gli oggetti selezionati" -#: ../../include/conversation.php:951 +#: ../../include/conversation.php:948 msgid "View Source" msgstr "Vedi il sorgente" -#: ../../include/conversation.php:952 +#: ../../include/conversation.php:949 msgid "Follow Thread" msgstr "Segui la discussione" -#: ../../include/conversation.php:953 +#: ../../include/conversation.php:950 msgid "Unfollow Thread" msgstr "Non seguire la discussione" -#: ../../include/conversation.php:958 +#: ../../include/conversation.php:955 msgid "Activity/Posts" msgstr "Attività e Post" -#: ../../include/conversation.php:960 +#: ../../include/conversation.php:957 msgid "Edit Connection" msgstr "Modifica il contatto" -#: ../../include/conversation.php:961 +#: ../../include/conversation.php:958 msgid "Message" msgstr "Messaggio" -#: ../../include/conversation.php:1078 +#: ../../include/conversation.php:1075 #, php-format msgid "%s likes this." msgstr "Piace a %s." -#: ../../include/conversation.php:1078 +#: ../../include/conversation.php:1075 #, php-format msgid "%s doesn't like this." msgstr "Non piace a %s." -#: ../../include/conversation.php:1082 +#: ../../include/conversation.php:1079 #, php-format msgid "%2$d people like this." msgid_plural "%2$d people like this." msgstr[0] "" msgstr[1] "Piace a %2$d persone." -#: ../../include/conversation.php:1084 +#: ../../include/conversation.php:1081 #, php-format msgid "%2$d people don't like this." msgid_plural "%2$d people don't like this." msgstr[0] "" msgstr[1] "Non piace a %2$d persone." -#: ../../include/conversation.php:1090 +#: ../../include/conversation.php:1087 msgid "and" msgstr "e" -#: ../../include/conversation.php:1093 +#: ../../include/conversation.php:1090 #, php-format msgid ", and %d other people" msgid_plural ", and %d other people" msgstr[0] "" msgstr[1] "e altre %d persone" -#: ../../include/conversation.php:1094 +#: ../../include/conversation.php:1091 #, php-format msgid "%s like this." msgstr "Piace a %s." -#: ../../include/conversation.php:1094 +#: ../../include/conversation.php:1091 #, php-format msgid "%s don't like this." msgstr "Non piace a %s." -#: ../../include/conversation.php:1133 +#: ../../include/conversation.php:1130 msgid "Set your location" msgstr "La tua località" -#: ../../include/conversation.php:1134 +#: ../../include/conversation.php:1131 msgid "Clear browser location" msgstr "Rimuovi la località data dal browser" -#: ../../include/conversation.php:1182 +#: ../../include/conversation.php:1177 msgid "Tag term:" msgstr "Tag:" -#: ../../include/conversation.php:1183 +#: ../../include/conversation.php:1178 msgid "Where are you right now?" msgstr "Dove sei ora?" -#: ../../include/conversation.php:1221 +#: ../../include/conversation.php:1210 msgid "Page link name" msgstr "Nome del link alla pagina" -#: ../../include/conversation.php:1224 +#: ../../include/conversation.php:1213 msgid "Post as" msgstr "Pubblica come " -#: ../../include/conversation.php:1238 +#: ../../include/conversation.php:1223 msgid "Toggle voting" msgstr "Abilita/disabilita il voto" -#: ../../include/conversation.php:1246 +#: ../../include/conversation.php:1231 msgid "Categories (optional, comma-separated list)" msgstr "Categorie (facoltative, lista separata da virgole)" -#: ../../include/conversation.php:1269 +#: ../../include/conversation.php:1254 msgid "Set publish date" msgstr "Data di uscita programmata" -#: ../../include/conversation.php:1518 +#: ../../include/conversation.php:1258 +msgid "OK" +msgstr "OK" + +#: ../../include/conversation.php:1503 msgid "Discover" msgstr "Scopri" -#: ../../include/conversation.php:1521 +#: ../../include/conversation.php:1506 msgid "Imported public streams" msgstr "Contenuti pubblici importati" -#: ../../include/conversation.php:1526 +#: ../../include/conversation.php:1511 msgid "Commented Order" msgstr "Commenti recenti" -#: ../../include/conversation.php:1529 +#: ../../include/conversation.php:1514 msgid "Sort by Comment Date" msgstr "Per data del commento" -#: ../../include/conversation.php:1533 +#: ../../include/conversation.php:1518 msgid "Posted Order" msgstr "Post recenti" -#: ../../include/conversation.php:1536 +#: ../../include/conversation.php:1521 msgid "Sort by Post Date" msgstr "Per data di creazione" -#: ../../include/conversation.php:1544 +#: ../../include/conversation.php:1529 msgid "Posts that mention or involve you" msgstr "Post che ti riguardano" -#: ../../include/conversation.php:1553 +#: ../../include/conversation.php:1538 msgid "Activity Stream - by date" msgstr "Elenco attività - per data" -#: ../../include/conversation.php:1559 +#: ../../include/conversation.php:1544 msgid "Starred" msgstr "Preferiti" -#: ../../include/conversation.php:1562 +#: ../../include/conversation.php:1547 msgid "Favourite Posts" msgstr "Post preferiti" -#: ../../include/conversation.php:1569 +#: ../../include/conversation.php:1554 msgid "Spam" msgstr "Spam" -#: ../../include/conversation.php:1572 +#: ../../include/conversation.php:1557 msgid "Posts flagged as SPAM" msgstr "Post marcati come spam" -#: ../../include/conversation.php:1629 +#: ../../include/conversation.php:1614 msgid "Status Messages and Posts" msgstr "Post e messaggi di stato" -#: ../../include/conversation.php:1638 +#: ../../include/conversation.php:1623 msgid "About" msgstr "Informazioni" -#: ../../include/conversation.php:1641 +#: ../../include/conversation.php:1626 msgid "Profile Details" msgstr "Dettagli del profilo" -#: ../../include/conversation.php:1657 +#: ../../include/conversation.php:1635 ../../include/photos.php:502 +msgid "Photo Albums" +msgstr "Album foto" + +#: ../../include/conversation.php:1642 msgid "Files and Storage" msgstr "Archivio file" -#: ../../include/conversation.php:1677 ../../include/conversation.php:1680 -#: ../../include/widgets.php:836 -msgid "Chatrooms" -msgstr "Chat" - -#: ../../include/conversation.php:1693 +#: ../../include/conversation.php:1678 msgid "Saved Bookmarks" msgstr "Segnalibri salvati" -#: ../../include/conversation.php:1703 +#: ../../include/conversation.php:1688 msgid "Manage Webpages" msgstr "Gestisci le pagine web" -#: ../../include/conversation.php:1768 +#: ../../include/conversation.php:1747 msgctxt "noun" msgid "Attending" msgid_plural "Attending" msgstr[0] "Partecipa" msgstr[1] "Partecipano" -#: ../../include/conversation.php:1771 +#: ../../include/conversation.php:1750 msgctxt "noun" msgid "Not Attending" msgid_plural "Not Attending" msgstr[0] "Non partecipa" msgstr[1] "Non partecipano" -#: ../../include/conversation.php:1774 +#: ../../include/conversation.php:1753 msgctxt "noun" msgid "Undecided" msgid_plural "Undecided" msgstr[0] "Indeciso" msgstr[1] "Indecisi" -#: ../../include/conversation.php:1777 +#: ../../include/conversation.php:1756 msgctxt "noun" msgid "Agree" msgid_plural "Agrees" msgstr[0] "D'accordo" msgstr[1] "D'accordo" -#: ../../include/conversation.php:1780 +#: ../../include/conversation.php:1759 msgctxt "noun" msgid "Disagree" msgid_plural "Disagrees" msgstr[0] "Non d'accordo" msgstr[1] "Non d'accordo" -#: ../../include/conversation.php:1783 +#: ../../include/conversation.php:1762 msgctxt "noun" msgid "Abstain" msgid_plural "Abstains" msgstr[0] "Astenuto" msgstr[1] "Astenuti" -#: ../../include/import.php:30 -msgid "" -"Cannot create a duplicate channel identifier on this system. Import failed." -msgstr "Non posso creare un canale con un identificativo che già esiste su questo sistema. L'importazione è fallita." - -#: ../../include/import.php:97 -msgid "Channel clone failed. Import failed." -msgstr "Impossibile clonare il canale. L'importazione è fallita." - #: ../../include/selectors.php:30 msgid "Frequently" msgstr "Frequentemente" @@ -7945,6 +8134,12 @@ msgstr "Neutro" msgid "Non-specific" msgstr "Non specificato" +#: ../../include/selectors.php:49 ../../include/selectors.php:66 +#: ../../include/selectors.php:104 ../../include/selectors.php:140 +#: ../../include/permissions.php:881 +msgid "Other" +msgstr "Altro" + #: ../../include/selectors.php:49 msgid "Undecided" msgstr "Indeciso" @@ -8121,366 +8316,361 @@ msgstr "Chi se ne frega" msgid "Ask me" msgstr "Chiedimelo" -#: ../../include/bookmarks.php:35 +#: ../../include/PermissionDescription.php:31 +#: ../../include/acl_selectors.php:232 +msgid "Visible to your default audience" +msgstr "Visibile secondo le impostazioni predefinite" + +#: ../../include/PermissionDescription.php:115 +#: ../../include/acl_selectors.php:268 +msgid "Only me" +msgstr "Solo io" + +#: ../../include/PermissionDescription.php:116 +msgid "Public" +msgstr "Pubblico" + +#: ../../include/PermissionDescription.php:117 +msgid "Anybody in the $Projectname network" +msgstr "Tutti sulla rete $Projectname" + +#: ../../include/PermissionDescription.php:118 #, php-format -msgid "%1$s's bookmarks" -msgstr "I segnalibri di %1$s" +msgid "Any account on %s" +msgstr "Tutti gli account su %s" -#: ../../include/security.php:109 -msgid "guest:" -msgstr "ospite:" +#: ../../include/PermissionDescription.php:119 +msgid "Any of my connections" +msgstr "Chiunque tra i miei contatti" -#: ../../include/security.php:427 +#: ../../include/PermissionDescription.php:120 +msgid "Only connections I specifically allow" +msgstr "Solo chi riceve il mio permesso" + +#: ../../include/PermissionDescription.php:121 +msgid "Anybody authenticated (could include visitors from other networks)" +msgstr "Chiunque sia autenticato (inclusi visitatori di altre reti)" + +#: ../../include/PermissionDescription.php:122 +msgid "Any connections including those who haven't yet been approved" +msgstr "Tutti i contatti inclusi quelli non ancora approvati" + +#: ../../include/PermissionDescription.php:161 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 "I controlli di sicurezza sono falliti. Probabilmente è accaduto perché la pagina è stata tenuta aperta troppo a lungo (ore?) prima di inviare il contenuto." +"This is your default setting for the audience of your normal stream, and " +"posts." +msgstr "" -#: ../../include/text.php:404 -msgid "prev" -msgstr "prec" +#: ../../include/PermissionDescription.php:162 +msgid "" +"This is your default setting for who can view your default channel profile" +msgstr "" -#: ../../include/text.php:406 -msgid "first" -msgstr "inizio" +#: ../../include/PermissionDescription.php:163 +msgid "This is your default setting for who can view your connections" +msgstr "" -#: ../../include/text.php:435 -msgid "last" -msgstr "fine" +#: ../../include/PermissionDescription.php:164 +msgid "" +"This is your default setting for who can view your file storage and photos" +msgstr "" -#: ../../include/text.php:438 -msgid "next" -msgstr "succ" +#: ../../include/PermissionDescription.php:165 +msgid "This is your default setting for the audience of your webpages" +msgstr "" -#: ../../include/text.php:448 -msgid "older" -msgstr "più recenti" +#: ../../include/account.php:28 +msgid "Not a valid email address" +msgstr "Email non valida" -#: ../../include/text.php:450 -msgid "newer" -msgstr "più nuovi" +#: ../../include/account.php:30 +msgid "Your email domain is not among those allowed on this site" +msgstr "Il dominio della tua email attualmente non è permesso su questo sito" -#: ../../include/text.php:843 -msgid "No connections" -msgstr "Nessun contatto" +#: ../../include/account.php:36 +msgid "Your email address is already registered at this site." +msgstr "La tua email è già registrata su questo sito." -#: ../../include/text.php:868 +#: ../../include/account.php:68 +msgid "An invitation is required." +msgstr "È necessario un invito." + +#: ../../include/account.php:72 +msgid "Invitation could not be verified." +msgstr "L'invito non può essere verificato." + +#: ../../include/account.php:122 +msgid "Please enter the required information." +msgstr "Inserisci le informazioni richieste." + +#: ../../include/account.php:189 +msgid "Failed to store account information." +msgstr "Non è stato possibile salvare le informazioni del tuo account." + +#: ../../include/account.php:249 #, php-format -msgid "View all %s connections" -msgstr "Mostra tutti i %s contatti" +msgid "Registration confirmation for %s" +msgstr "Registrazione di %s confermata" + +#: ../../include/account.php:315 +#, php-format +msgid "Registration request at %s" +msgstr "Richiesta di registrazione su %s" + +#: ../../include/account.php:317 ../../include/account.php:344 +#: ../../include/account.php:404 ../../include/network.php:1871 +msgid "Administrator" +msgstr "Amministratore" + +#: ../../include/account.php:339 +msgid "your registration password" +msgstr "la password di registrazione" + +#: ../../include/account.php:342 ../../include/account.php:402 +#, php-format +msgid "Registration details for %s" +msgstr "Dettagli della registrazione di %s" + +#: ../../include/account.php:414 +msgid "Account approved." +msgstr "Account approvato." + +#: ../../include/account.php:454 +#, php-format +msgid "Registration revoked for %s" +msgstr "Registrazione revocata per %s" + +#: ../../include/account.php:506 +msgid "Account verified. Please login." +msgstr "Registrazione verificata. Adesso puoi effettuare login." + +#: ../../include/account.php:723 ../../include/account.php:725 +msgid "Click here to upgrade." +msgstr "Clicca qui per aggiornare." + +#: ../../include/account.php:731 +msgid "This action exceeds the limits set by your subscription plan." +msgstr "Questa operazione supera i limiti del tuo abbonamento." + +#: ../../include/account.php:736 +msgid "This action is not available under your subscription plan." +msgstr "Questa operazione non è prevista dal tuo abbonamento." + +#: ../../include/attach.php:247 ../../include/attach.php:333 +msgid "Item was not found." +msgstr "Elemento non trovato." + +#: ../../include/attach.php:497 +msgid "No source file." +msgstr "Nessun file di origine." + +#: ../../include/attach.php:519 +msgid "Cannot locate file to replace" +msgstr "Il file da sostituire non è stato trovato" + +#: ../../include/attach.php:537 +msgid "Cannot locate file to revise/update" +msgstr "Il file da aggiornare non è stato trovato" + +#: ../../include/attach.php:672 +#, php-format +msgid "File exceeds size limit of %d" +msgstr "Il file supera la dimensione massima di %d" + +#: ../../include/attach.php:686 +#, php-format +msgid "You have reached your limit of %1$.0f Mbytes attachment storage." +msgstr "Hai raggiunto il limite complessivo di %1$.0f Mbytes per gli allegati." + +#: ../../include/attach.php:842 +msgid "File upload failed. Possible system limit or action terminated." +msgstr "Caricamento file fallito, potrebbe essere stato interrotto o potrebbe aver superato lo spazio assegnato." + +#: ../../include/attach.php:855 +msgid "Stored file could not be verified. Upload failed." +msgstr "Il file non può essere verificato. Caricamento fallito." + +#: ../../include/attach.php:909 ../../include/attach.php:925 +msgid "Path not available." +msgstr "Percorso non disponibile." + +#: ../../include/attach.php:971 ../../include/attach.php:1123 +msgid "Empty pathname" +msgstr "Il percorso del file è vuoto" + +#: ../../include/attach.php:997 +msgid "duplicate filename or path" +msgstr "il file o il percorso del file è duplicato" + +#: ../../include/attach.php:1019 +msgid "Path not found." +msgstr "Percorso del file non trovato." + +#: ../../include/attach.php:1077 +msgid "mkdir failed." +msgstr "mkdir fallito." + +#: ../../include/attach.php:1081 +msgid "database storage failed." +msgstr "scrittura su database fallita." + +#: ../../include/attach.php:1129 +msgid "Empty path" +msgstr "La posizione è vuota" + +#: ../../include/channel.php:32 +msgid "Unable to obtain identity information from database" +msgstr "Impossibile ottenere le informazioni di identificazione dal database" -#: ../../include/text.php:1013 ../../include/text.php:1018 -msgid "poke" -msgstr "poke" +#: ../../include/channel.php:66 +msgid "Empty name" +msgstr "Nome vuoto" -#: ../../include/text.php:1019 -msgid "ping" -msgstr "ping" +#: ../../include/channel.php:69 +msgid "Name too long" +msgstr "Nome troppo lungo" -#: ../../include/text.php:1019 -msgid "pinged" -msgstr "ha effettuato un ping" +#: ../../include/channel.php:180 +msgid "No account identifier" +msgstr "Account senza identificativo" -#: ../../include/text.php:1020 -msgid "prod" -msgstr "spintone" +#: ../../include/channel.php:192 +msgid "Nickname is required." +msgstr "Il nome dell'account è obbligatorio." -#: ../../include/text.php:1020 -msgid "prodded" -msgstr "ha ricevuto uno spintone" +#: ../../include/channel.php:206 +msgid "Reserved nickname. Please choose another." +msgstr "Nome utente riservato. Per favore scegline un altro." -#: ../../include/text.php:1021 -msgid "slap" -msgstr "schiaffo" - -#: ../../include/text.php:1021 -msgid "slapped" -msgstr "ha ricevuto uno schiaffo" - -#: ../../include/text.php:1022 -msgid "finger" -msgstr "finger" - -#: ../../include/text.php:1022 -msgid "fingered" -msgstr "ha ricevuto un finger" - -#: ../../include/text.php:1023 -msgid "rebuff" -msgstr "rifiuto" - -#: ../../include/text.php:1023 -msgid "rebuffed" -msgstr "ha ricevuto un rifiuto" - -#: ../../include/text.php:1035 -msgid "happy" -msgstr "felice" - -#: ../../include/text.php:1036 -msgid "sad" -msgstr "triste" - -#: ../../include/text.php:1037 -msgid "mellow" -msgstr "calmo" - -#: ../../include/text.php:1038 -msgid "tired" -msgstr "stanco" - -#: ../../include/text.php:1039 -msgid "perky" -msgstr "vivace" - -#: ../../include/text.php:1040 -msgid "angry" -msgstr "arrabbiato" - -#: ../../include/text.php:1041 -msgid "stupefied" -msgstr "stupito" - -#: ../../include/text.php:1042 -msgid "puzzled" -msgstr "confuso" - -#: ../../include/text.php:1043 -msgid "interested" -msgstr "attento" - -#: ../../include/text.php:1044 -msgid "bitter" -msgstr "amaro" - -#: ../../include/text.php:1045 -msgid "cheerful" -msgstr "allegro" - -#: ../../include/text.php:1046 -msgid "alive" -msgstr "vivace" - -#: ../../include/text.php:1047 -msgid "annoyed" -msgstr "seccato" - -#: ../../include/text.php:1048 -msgid "anxious" -msgstr "ansioso" - -#: ../../include/text.php:1049 -msgid "cranky" -msgstr "irritabile" - -#: ../../include/text.php:1050 -msgid "disturbed" -msgstr "turbato" - -#: ../../include/text.php:1051 -msgid "frustrated" -msgstr "frustrato" - -#: ../../include/text.php:1052 -msgid "depressed" -msgstr "in depressione" - -#: ../../include/text.php:1053 -msgid "motivated" -msgstr "motivato" - -#: ../../include/text.php:1054 -msgid "relaxed" -msgstr "rilassato" - -#: ../../include/text.php:1055 -msgid "surprised" -msgstr "sorpreso" - -#: ../../include/text.php:1237 ../../include/js_strings.php:70 -msgid "Monday" -msgstr "lunedì" - -#: ../../include/text.php:1237 ../../include/js_strings.php:71 -msgid "Tuesday" -msgstr "martedì" - -#: ../../include/text.php:1237 ../../include/js_strings.php:72 -msgid "Wednesday" -msgstr "mercoledì" - -#: ../../include/text.php:1237 ../../include/js_strings.php:73 -msgid "Thursday" -msgstr "giovedì" - -#: ../../include/text.php:1237 ../../include/js_strings.php:74 -msgid "Friday" -msgstr "venerdì" - -#: ../../include/text.php:1237 ../../include/js_strings.php:75 -msgid "Saturday" -msgstr "sabato" - -#: ../../include/text.php:1237 ../../include/js_strings.php:69 -msgid "Sunday" -msgstr "domenica" - -#: ../../include/text.php:1241 ../../include/js_strings.php:45 -msgid "January" -msgstr "gennaio" - -#: ../../include/text.php:1241 ../../include/js_strings.php:46 -msgid "February" -msgstr "febbraio" - -#: ../../include/text.php:1241 ../../include/js_strings.php:47 -msgid "March" -msgstr "marzo" - -#: ../../include/text.php:1241 ../../include/js_strings.php:48 -msgid "April" -msgstr "aprile" - -#: ../../include/text.php:1241 -msgid "May" -msgstr "Mag" - -#: ../../include/text.php:1241 ../../include/js_strings.php:50 -msgid "June" -msgstr "giugno" - -#: ../../include/text.php:1241 ../../include/js_strings.php:51 -msgid "July" -msgstr "luglio" - -#: ../../include/text.php:1241 ../../include/js_strings.php:52 -msgid "August" -msgstr "agosto" - -#: ../../include/text.php:1241 ../../include/js_strings.php:53 -msgid "September" -msgstr "settembre" - -#: ../../include/text.php:1241 ../../include/js_strings.php:54 -msgid "October" -msgstr "ottobre" - -#: ../../include/text.php:1241 ../../include/js_strings.php:55 -msgid "November" -msgstr "novembre" - -#: ../../include/text.php:1241 ../../include/js_strings.php:56 -msgid "December" -msgstr "dicembre" - -#: ../../include/text.php:1318 ../../include/text.php:1322 -msgid "Unknown Attachment" -msgstr "Allegato non riconoscuto" - -#: ../../include/text.php:1324 -msgid "unknown" -msgstr "sconosciuta" - -#: ../../include/text.php:1360 -msgid "remove category" -msgstr "rimuovi la categoria" - -#: ../../include/text.php:1437 -msgid "remove from file" -msgstr "rimuovi dal file" - -#: ../../include/text.php:1734 ../../include/text.php:1805 -msgid "default" -msgstr "predefinito" - -#: ../../include/text.php:1742 -msgid "Page layout" -msgstr "Layout della pagina" - -#: ../../include/text.php:1742 -msgid "You can create your own with the layouts tool" -msgstr "Puoi creare un tuo layout dalla configurazione delle pagine web" - -#: ../../include/text.php:1784 -msgid "Page content type" -msgstr "Tipo di contenuto della pagina" - -#: ../../include/text.php:1817 -msgid "Select an alternate language" -msgstr "Seleziona una lingua diversa" - -#: ../../include/text.php:1934 -msgid "activity" -msgstr "l'attività" - -#: ../../include/text.php:2235 -msgid "Design Tools" -msgstr "Strumenti di design" - -#: ../../include/text.php:2241 -msgid "Pages" -msgstr "Pagine" - -#: ../../include/auth.php:147 -msgid "Logged out." -msgstr "Uscita effettuata." - -#: ../../include/auth.php:274 -msgid "Failed authentication" -msgstr "Autenticazione fallita" - -#: ../../include/permissions.php:26 -msgid "Can view my normal stream and posts" -msgstr "Può vedere i miei contenuti e i post normali" - -#: ../../include/permissions.php:30 -msgid "Can view my webpages" -msgstr "Può vedere le mie pagine web" - -#: ../../include/permissions.php:34 -msgid "Can post on my channel page (\"wall\")" -msgstr "Può scrivere sulla bacheca del mio canale" - -#: ../../include/permissions.php:37 -msgid "Can like/dislike stuff" -msgstr "Può aggiungere \"mi piace\" a tutto il resto" - -#: ../../include/permissions.php:37 -msgid "Profiles and things other than posts/comments" -msgstr "Può aggiungere \"mi piace\" a tutto ciò che non riguarda i post, come per esempio il profilo" - -#: ../../include/permissions.php:39 -msgid "Can forward to all my channel contacts via post @mentions" -msgstr "Può inoltrare post a tutti i contatti del canale tramite una @menzione" - -#: ../../include/permissions.php:39 -msgid "Advanced - useful for creating group forum channels" -msgstr "Impostazione avanzata - utile per creare un canale-forum di discussione" - -#: ../../include/permissions.php:40 -msgid "Can chat with me (when available)" -msgstr "Può aprire una chat con me (se disponibile)" - -#: ../../include/permissions.php:41 -msgid "Can write to my file storage and photos" -msgstr "Può modificare il mio archivio file e foto" - -#: ../../include/permissions.php:42 -msgid "Can edit my webpages" -msgstr "Può modificare le mie pagine web" - -#: ../../include/permissions.php:44 -msgid "Somewhat advanced - very useful in open communities" -msgstr "Piuttosto avanzato - molto utile nelle comunità aperte" - -#: ../../include/permissions.php:46 -msgid "Can administer my channel resources" -msgstr "Può amministrare i contenuti del mio canale" - -#: ../../include/permissions.php:46 +#: ../../include/channel.php:211 msgid "" -"Extremely advanced. Leave this alone unless you know what you are doing" -msgstr "Impostazione pericolosa - lasciare il valore predefinito se non si è assolutamente sicuri" +"Nickname has unsupported characters or is already being used on this site." +msgstr "Il nome dell'account è già in uso oppure ha dei caratteri non supportati." + +#: ../../include/channel.php:287 +msgid "Unable to retrieve created identity" +msgstr "Impossibile caricare l'identità creata" + +#: ../../include/channel.php:345 +msgid "Default Profile" +msgstr "Profilo predefinito" + +#: ../../include/channel.php:791 +msgid "Requested channel is not available." +msgstr "Il canale che cerchi non è disponibile." + +#: ../../include/channel.php:938 +msgid "Create New Profile" +msgstr "Crea un nuovo profilo" + +#: ../../include/channel.php:958 +msgid "Visible to everybody" +msgstr "Visibile a tutti" + +#: ../../include/channel.php:1031 ../../include/channel.php:1142 +msgid "Gender:" +msgstr "Sesso:" + +#: ../../include/channel.php:1032 ../../include/channel.php:1186 +msgid "Status:" +msgstr "Stato:" + +#: ../../include/channel.php:1033 ../../include/channel.php:1197 +msgid "Homepage:" +msgstr "Home page:" + +#: ../../include/channel.php:1034 +msgid "Online Now" +msgstr "Online adesso" + +#: ../../include/channel.php:1147 +msgid "Like this channel" +msgstr "Mi piace questo canale" + +#: ../../include/channel.php:1171 +msgid "j F, Y" +msgstr "j F Y" + +#: ../../include/channel.php:1172 +msgid "j F" +msgstr "j F" + +#: ../../include/channel.php:1179 +msgid "Birthday:" +msgstr "Compleanno:" + +#: ../../include/channel.php:1192 +#, php-format +msgid "for %1$d %2$s" +msgstr "per %1$d %2$s" + +#: ../../include/channel.php:1195 +msgid "Sexual Preference:" +msgstr "Preferenze sessuali:" + +#: ../../include/channel.php:1201 +msgid "Tags:" +msgstr "Tag:" + +#: ../../include/channel.php:1203 +msgid "Political Views:" +msgstr "Orientamento politico:" + +#: ../../include/channel.php:1205 +msgid "Religion:" +msgstr "Religione:" + +#: ../../include/channel.php:1209 +msgid "Hobbies/Interests:" +msgstr "Interessi e hobby:" + +#: ../../include/channel.php:1211 +msgid "Likes:" +msgstr "Mi piace:" + +#: ../../include/channel.php:1213 +msgid "Dislikes:" +msgstr "Non mi piace:" + +#: ../../include/channel.php:1215 +msgid "Contact information and Social Networks:" +msgstr "Contatti e social network:" + +#: ../../include/channel.php:1217 +msgid "My other channels:" +msgstr "I miei altri canali:" + +#: ../../include/channel.php:1219 +msgid "Musical interests:" +msgstr "Gusti musicali:" + +#: ../../include/channel.php:1221 +msgid "Books, literature:" +msgstr "Libri, letteratura:" + +#: ../../include/channel.php:1223 +msgid "Television:" +msgstr "Televisione:" + +#: ../../include/channel.php:1225 +msgid "Film/dance/culture/entertainment:" +msgstr "Film, danza, cultura, intrattenimento:" + +#: ../../include/channel.php:1227 +msgid "Love/Romance:" +msgstr "Amore:" + +#: ../../include/channel.php:1229 +msgid "Work/employment:" +msgstr "Lavoro:" + +#: ../../include/channel.php:1231 +msgid "School/education:" +msgstr "Scuola:" + +#: ../../include/channel.php:1251 +msgid "Like this thing" +msgstr "Mi piace" #: ../../include/features.php:48 msgid "General Features" @@ -8527,257 +8717,378 @@ msgid "Provide managed web pages on your channel" msgstr "Attiva la creazione di pagine web sul tuo canale" #: ../../include/features.php:55 -msgid "Provide a wiki for your channel" -msgstr "Fornisce una wiki per il tuo canale" - -#: ../../include/features.php:56 msgid "Hide Rating" msgstr "Nascondi le valutazioni" -#: ../../include/features.php:56 +#: ../../include/features.php:55 msgid "" "Hide the rating buttons on your channel and profile pages. Note: People can " "still rate you somewhere else." msgstr "Nascondi i bottoni delle valutazioni sul tuo canale e sul profilo. Nota: le persone potranno comunque esprimere una valutazione altrove." -#: ../../include/features.php:57 +#: ../../include/features.php:56 msgid "Private Notes" msgstr "Note private" -#: ../../include/features.php:57 +#: ../../include/features.php:56 msgid "Enables a tool to store notes and reminders (note: not encrypted)" msgstr "Abilita il riquadro per scrivere annotazioni (in chiaro)" -#: ../../include/features.php:58 +#: ../../include/features.php:57 msgid "Navigation Channel Select" msgstr "Scegli il canale attivo dal menu" -#: ../../include/features.php:58 +#: ../../include/features.php:57 msgid "Change channels directly from within the navigation dropdown menu" msgstr "Scegli il canale attivo direttamente dal menu di navigazione" -#: ../../include/features.php:59 +#: ../../include/features.php:58 msgid "Photo Location" msgstr "Posizione geografica" -#: ../../include/features.php:59 +#: ../../include/features.php:58 msgid "If location data is available on uploaded photos, link this to a map." msgstr "Collega la foto a una mappa quando contiene indicazioni geografiche." -#: ../../include/features.php:60 +#: ../../include/features.php:59 msgid "Access Controlled Chatrooms" msgstr "Chat ad accesso riservato" -#: ../../include/features.php:60 +#: ../../include/features.php:59 msgid "Provide chatrooms and chat services with access control." msgstr "Il servizio di chat con accesso riservato" -#: ../../include/features.php:61 +#: ../../include/features.php:60 msgid "Smart Birthdays" msgstr "Compleanni intelligenti" -#: ../../include/features.php:61 +#: ../../include/features.php:60 msgid "" "Make birthday events timezone aware in case your friends are scattered " "across the planet." msgstr "I compleanni saranno segnalati in base al fuso orario, utile se hai amici sparsi per il mondo." -#: ../../include/features.php:62 +#: ../../include/features.php:61 msgid "Expert Mode" msgstr "Modalità esperto" -#: ../../include/features.php:62 +#: ../../include/features.php:61 msgid "Enable Expert Mode to provide advanced configuration options" msgstr "Abilita la modalità esperto per vedere le opzioni di configurazione avanzate" -#: ../../include/features.php:63 +#: ../../include/features.php:62 msgid "Premium Channel" msgstr "Canale premium" -#: ../../include/features.php:63 +#: ../../include/features.php:62 msgid "" "Allows you to set restrictions and terms on those that connect with your " "channel" msgstr "Ti permette di impostare restrizioni e termini d'uso per il canale" -#: ../../include/features.php:68 +#: ../../include/features.php:67 msgid "Post Composition Features" msgstr "Modalità di scrittura post" -#: ../../include/features.php:71 +#: ../../include/features.php:70 msgid "Large Photos" msgstr "Foto grandi" -#: ../../include/features.php:71 +#: ../../include/features.php:70 msgid "" "Include large (1024px) photo thumbnails in posts. If not enabled, use small " "(640px) photo thumbnails" msgstr "Includi anteprime grandi per le foto dei tuoi post (1024px). Altrimenti saranno mostrate anteprime più piccole (640px)" -#: ../../include/features.php:72 +#: ../../include/features.php:71 msgid "Automatically import channel content from other channels or feeds" msgstr "Importa automaticamente il contenuto del canale da altri canali o feed" -#: ../../include/features.php:73 +#: ../../include/features.php:72 msgid "Even More Encryption" msgstr "Cifratura addizionale" -#: ../../include/features.php:73 +#: ../../include/features.php:72 msgid "" "Allow optional encryption of content end-to-end with a shared secret key" msgstr "Rendi possibile la crifratura aggiuntiva tra mittente e destinatario usando una parola chiave conosciuta a entrambi" -#: ../../include/features.php:74 +#: ../../include/features.php:73 msgid "Enable Voting Tools" msgstr "Permetti i post con votazione" -#: ../../include/features.php:74 +#: ../../include/features.php:73 msgid "Provide a class of post which others can vote on" msgstr "Rende possibile la creazione di post in cui sarà possibile votare" -#: ../../include/features.php:75 +#: ../../include/features.php:74 msgid "Delayed Posting" msgstr "Pubblicazione ritardata" -#: ../../include/features.php:75 +#: ../../include/features.php:74 msgid "Allow posts to be published at a later date" msgstr "Per scegliere una data e un'ora a cui far uscire i post" -#: ../../include/features.php:76 +#: ../../include/features.php:75 msgid "Suppress Duplicate Posts/Comments" msgstr "Impedisci post e commenti duplicati" -#: ../../include/features.php:76 +#: ../../include/features.php:75 msgid "" "Prevent posts with identical content to be published with less than two " "minutes in between submissions." msgstr "Scarta post e commenti se sono identici ad altri inviati meno di due minuti prima." -#: ../../include/features.php:82 +#: ../../include/features.php:81 msgid "Network and Stream Filtering" msgstr "Filtraggio dei contenuti" -#: ../../include/features.php:83 +#: ../../include/features.php:82 msgid "Search by Date" msgstr "Ricerca per data" -#: ../../include/features.php:83 +#: ../../include/features.php:82 msgid "Ability to select posts by date ranges" msgstr "Per selezionare i post in un intervallo tra date" -#: ../../include/features.php:84 ../../include/group.php:311 +#: ../../include/features.php:83 ../../include/group.php:311 msgid "Privacy Groups" msgstr "Gruppi di canali" -#: ../../include/features.php:84 +#: ../../include/features.php:83 msgid "Enable management and selection of privacy groups" msgstr "Abilita i gruppi di canali" -#: ../../include/features.php:85 ../../include/widgets.php:281 -msgid "Saved Searches" -msgstr "Ricerche salvate" - -#: ../../include/features.php:85 +#: ../../include/features.php:84 msgid "Save search terms for re-use" msgstr "Salva i termini delle ricerche per poterle ripetere" -#: ../../include/features.php:86 +#: ../../include/features.php:85 msgid "Network Personal Tab" msgstr "Attività personale" -#: ../../include/features.php:86 +#: ../../include/features.php:85 msgid "Enable tab to display only Network posts that you've interacted on" msgstr "Abilita il link per mostrare solamente i contenuti con cui hai interagito" -#: ../../include/features.php:87 +#: ../../include/features.php:86 msgid "Network New Tab" msgstr "Contenuti nuovi" -#: ../../include/features.php:87 +#: ../../include/features.php:86 msgid "Enable tab to display all new Network activity" msgstr "Abilita il link per visualizzare solo i nuovi contenuti" -#: ../../include/features.php:88 +#: ../../include/features.php:87 msgid "Affinity Tool" msgstr "Filtro per affinità" -#: ../../include/features.php:88 +#: ../../include/features.php:87 msgid "Filter stream activity by depth of relationships" msgstr "Permette di selezionare i contenuti in base al livello di amicizia" -#: ../../include/features.php:89 +#: ../../include/features.php:88 msgid "Connection Filtering" msgstr "Filtro sui contatti" -#: ../../include/features.php:89 +#: ../../include/features.php:88 msgid "Filter incoming posts from connections based on keywords/content" msgstr "Filtra i post che ricevi con parole chiave" -#: ../../include/features.php:90 +#: ../../include/features.php:89 msgid "Show channel suggestions" msgstr "Mostra alcuni canali che potrebbero interessarti" -#: ../../include/features.php:95 +#: ../../include/features.php:94 msgid "Post/Comment Tools" msgstr "Gestione post e commenti" -#: ../../include/features.php:96 +#: ../../include/features.php:95 msgid "Community Tagging" msgstr "Tag della comunità" -#: ../../include/features.php:96 +#: ../../include/features.php:95 msgid "Ability to tag existing posts" msgstr "Permetti l'aggiunta di tag su post già esistenti" -#: ../../include/features.php:97 +#: ../../include/features.php:96 msgid "Post Categories" msgstr "Categorie dei post" -#: ../../include/features.php:97 +#: ../../include/features.php:96 msgid "Add categories to your posts" msgstr "Abilita le categorie per i tuoi post" -#: ../../include/features.php:98 +#: ../../include/features.php:97 msgid "Emoji Reactions" -msgstr "Reazioni emoji" +msgstr "" + +#: ../../include/features.php:97 +msgid "Add emoji reaction ability to posts" +msgstr "" #: ../../include/features.php:98 -msgid "Add emoji reaction ability to posts" -msgstr "Permetti le reazioni emoji ai post" - -#: ../../include/features.php:99 ../../include/widgets.php:310 -#: ../../include/contact_widgets.php:53 -msgid "Saved Folders" -msgstr "Cartelle salvate" - -#: ../../include/features.php:99 msgid "Ability to file posts under folders" msgstr "Abilita la raccolta dei tuoi articoli in cartelle" -#: ../../include/features.php:100 +#: ../../include/features.php:99 msgid "Dislike Posts" msgstr "Non mi piace" -#: ../../include/features.php:100 +#: ../../include/features.php:99 msgid "Ability to dislike posts/comments" msgstr "Abilità la funzionalità \"non mi piace\" per i tuoi post" -#: ../../include/features.php:101 +#: ../../include/features.php:100 msgid "Star Posts" msgstr "Post con stella" -#: ../../include/features.php:101 +#: ../../include/features.php:100 msgid "Ability to mark special posts with a star indicator" msgstr "Mostra la stella per segnare i post preferiti" -#: ../../include/features.php:102 +#: ../../include/features.php:101 msgid "Tag Cloud" msgstr "Nuvola di tag" -#: ../../include/features.php:102 +#: ../../include/features.php:101 msgid "Provide a personal tag cloud on your channel page" msgstr "Mostra la nuvola dei tag che usi di più sulla pagina del tuo canale" +#: ../../include/oembed.php:324 +msgid "Embedded content" +msgstr "Contenuti incorporati" + +#: ../../include/oembed.php:333 +msgid "Embedding disabled" +msgstr "Disabilita la creazione di contenuti incorporati" + +#: ../../include/acl_selectors.php:271 +msgid "Who can see this?" +msgstr "Chi può vederlo?" + +#: ../../include/acl_selectors.php:272 +msgid "Custom selection" +msgstr "Selezione personalizzata" + +#: ../../include/acl_selectors.php:273 +msgid "" +"Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit" +" the scope of \"Show\"." +msgstr "" + +#: ../../include/acl_selectors.php:274 +msgid "Show" +msgstr "Mostra" + +#: ../../include/acl_selectors.php:275 +msgid "Don't show" +msgstr "Non mostrare" + +#: ../../include/acl_selectors.php:281 +msgid "Other networks and post services" +msgstr "Invio ad altre reti o a siti esterni" + +#: ../../include/acl_selectors.php:311 +#, php-format +msgid "" +"Post permissions %s cannot be changed %s after a post is shared.
These" +" permissions set who is allowed to view the post." +msgstr "" + +#: ../../include/auth.php:105 +msgid "Logged out." +msgstr "Uscita effettuata." + +#: ../../include/auth.php:212 +msgid "Failed authentication" +msgstr "Autenticazione fallita" + +#: ../../include/datetime.php:135 +msgid "Birthday" +msgstr "Compleanno" + +#: ../../include/datetime.php:137 +msgid "Age: " +msgstr "Età:" + +#: ../../include/datetime.php:139 +msgid "YYYY-MM-DD or MM-DD" +msgstr "AAAA-MM-GG oppure MM-GG" + +#: ../../include/datetime.php:272 ../../boot.php:2470 +msgid "never" +msgstr "mai" + +#: ../../include/datetime.php:278 +msgid "less than a second ago" +msgstr "meno di un secondo fa" + +#: ../../include/datetime.php:296 +#, php-format +msgctxt "e.g. 22 hours ago, 1 minute ago" +msgid "%1$d %2$s ago" +msgstr "%1$d %2$s fa" + +#: ../../include/datetime.php:307 +msgctxt "relative_date" +msgid "year" +msgid_plural "years" +msgstr[0] "anno" +msgstr[1] "anni" + +#: ../../include/datetime.php:310 +msgctxt "relative_date" +msgid "month" +msgid_plural "months" +msgstr[0] "mese" +msgstr[1] "mesi" + +#: ../../include/datetime.php:313 +msgctxt "relative_date" +msgid "week" +msgid_plural "weeks" +msgstr[0] "settimana" +msgstr[1] "settimane" + +#: ../../include/datetime.php:316 +msgctxt "relative_date" +msgid "day" +msgid_plural "days" +msgstr[0] "giorno" +msgstr[1] "giorni" + +#: ../../include/datetime.php:319 +msgctxt "relative_date" +msgid "hour" +msgid_plural "hours" +msgstr[0] "ora" +msgstr[1] "ore" + +#: ../../include/datetime.php:322 +msgctxt "relative_date" +msgid "minute" +msgid_plural "minutes" +msgstr[0] "minuto" +msgstr[1] "minuti" + +#: ../../include/datetime.php:325 +msgctxt "relative_date" +msgid "second" +msgid_plural "seconds" +msgstr[0] "secondo" +msgstr[1] "secondi" + +#: ../../include/datetime.php:562 +#, php-format +msgid "%1$s's birthday" +msgstr "Compleanno di %1$s" + +#: ../../include/datetime.php:563 +#, php-format +msgid "Happy Birthday %1$s" +msgstr "Buon compleanno %1$s" + #: ../../include/group.php:26 msgid "" "A deleted group with this name was revived. Existing item permissions " @@ -8805,583 +9116,21 @@ msgstr "Crea un gruppo di canali" msgid "Channels not in any privacy group" msgstr "Canali che non sono in nessun gruppo" -#: ../../include/group.php:316 ../../include/widgets.php:282 -msgid "add" -msgstr "aggiungi" - -#: ../../include/event.php:22 ../../include/event.php:69 -#: ../../include/bb2diaspora.php:485 -msgid "l F d, Y \\@ g:i A" -msgstr "l d F Y \\@ G:i" - -#: ../../include/event.php:30 ../../include/event.php:73 -#: ../../include/bb2diaspora.php:491 -msgid "Starts:" -msgstr "Inizio:" - -#: ../../include/event.php:40 ../../include/event.php:77 -#: ../../include/bb2diaspora.php:499 -msgid "Finishes:" -msgstr "Fine:" - -#: ../../include/event.php:814 -msgid "This event has been added to your calendar." -msgstr "Questo evento è stato aggiunto al tuo calendario" - -#: ../../include/event.php:1014 -msgid "Not specified" -msgstr "Non specificato" - -#: ../../include/event.php:1015 -msgid "Needs Action" -msgstr "Necessita di un intervento" - -#: ../../include/event.php:1016 -msgid "Completed" -msgstr "Completato" - -#: ../../include/event.php:1017 -msgid "In Process" -msgstr "In corso" - -#: ../../include/event.php:1018 -msgid "Cancelled" -msgstr "Annullato" - -#: ../../include/account.php:28 -msgid "Not a valid email address" -msgstr "Email non valida" - -#: ../../include/account.php:30 -msgid "Your email domain is not among those allowed on this site" -msgstr "Il dominio della tua email attualmente non è permesso su questo sito" - -#: ../../include/account.php:36 -msgid "Your email address is already registered at this site." -msgstr "La tua email è già registrata su questo sito." - -#: ../../include/account.php:68 -msgid "An invitation is required." -msgstr "È necessario un invito." - -#: ../../include/account.php:72 -msgid "Invitation could not be verified." -msgstr "L'invito non può essere verificato." - -#: ../../include/account.php:122 -msgid "Please enter the required information." -msgstr "Inserisci le informazioni richieste." - -#: ../../include/account.php:189 -msgid "Failed to store account information." -msgstr "Non è stato possibile salvare le informazioni del tuo account." - -#: ../../include/account.php:249 -#, php-format -msgid "Registration confirmation for %s" -msgstr "Registrazione di %s confermata" - -#: ../../include/account.php:315 -#, php-format -msgid "Registration request at %s" -msgstr "Richiesta di registrazione su %s" - -#: ../../include/account.php:339 -msgid "your registration password" -msgstr "la password di registrazione" - -#: ../../include/account.php:342 ../../include/account.php:402 -#, php-format -msgid "Registration details for %s" -msgstr "Dettagli della registrazione di %s" - -#: ../../include/account.php:414 -msgid "Account approved." -msgstr "Account approvato." - -#: ../../include/account.php:454 -#, php-format -msgid "Registration revoked for %s" -msgstr "Registrazione revocata per %s" - -#: ../../include/account.php:739 ../../include/account.php:741 -msgid "Click here to upgrade." -msgstr "Clicca qui per aggiornare." - -#: ../../include/account.php:747 -msgid "This action exceeds the limits set by your subscription plan." -msgstr "Questa operazione supera i limiti del tuo abbonamento." - -#: ../../include/account.php:752 -msgid "This action is not available under your subscription plan." -msgstr "Questa operazione non è prevista dal tuo abbonamento." - -#: ../../include/follow.php:27 -msgid "Channel is blocked on this site." -msgstr "Il canale è bloccato per questo sito." - -#: ../../include/follow.php:32 -msgid "Channel location missing." -msgstr "Manca l'indirizzo del canale." - -#: ../../include/follow.php:80 -msgid "Response from remote channel was incomplete." -msgstr "La risposta dal canale non è completa." - -#: ../../include/follow.php:97 -msgid "Channel was deleted and no longer exists." -msgstr "Il canale è stato rimosso e non esiste più." - -#: ../../include/follow.php:147 ../../include/follow.php:183 -msgid "Protocol disabled." -msgstr "Protocollo disabilitato." - -#: ../../include/follow.php:171 -msgid "Channel discovery failed." -msgstr "La ricerca del canale non ha avuto successo." - -#: ../../include/follow.php:210 -msgid "Cannot connect to yourself." -msgstr "Non puoi connetterti a te stesso." - -#: ../../include/attach.php:247 ../../include/attach.php:333 -msgid "Item was not found." -msgstr "Elemento non trovato." - -#: ../../include/attach.php:499 -msgid "No source file." -msgstr "Nessun file di origine." - -#: ../../include/attach.php:521 -msgid "Cannot locate file to replace" -msgstr "Il file da sostituire non è stato trovato" - -#: ../../include/attach.php:539 -msgid "Cannot locate file to revise/update" -msgstr "Il file da aggiornare non è stato trovato" - -#: ../../include/attach.php:674 -#, php-format -msgid "File exceeds size limit of %d" -msgstr "Il file supera la dimensione massima di %d" - -#: ../../include/attach.php:688 -#, php-format -msgid "You have reached your limit of %1$.0f Mbytes attachment storage." -msgstr "Hai raggiunto il limite complessivo di %1$.0f Mbytes per gli allegati." - -#: ../../include/attach.php:846 -msgid "File upload failed. Possible system limit or action terminated." -msgstr "Caricamento file fallito, potrebbe essere stato interrotto o potrebbe aver superato lo spazio assegnato." - -#: ../../include/attach.php:859 -msgid "Stored file could not be verified. Upload failed." -msgstr "Il file non può essere verificato. Caricamento fallito." - -#: ../../include/attach.php:915 ../../include/attach.php:931 -msgid "Path not available." -msgstr "Percorso non disponibile." - -#: ../../include/attach.php:977 ../../include/attach.php:1129 -msgid "Empty pathname" -msgstr "Il percorso del file è vuoto" - -#: ../../include/attach.php:1003 -msgid "duplicate filename or path" -msgstr "il file o il percorso del file è duplicato" - -#: ../../include/attach.php:1025 -msgid "Path not found." -msgstr "Percorso del file non trovato." - -#: ../../include/attach.php:1083 -msgid "mkdir failed." -msgstr "mkdir fallito." - -#: ../../include/attach.php:1087 -msgid "database storage failed." -msgstr "scrittura su database fallita." - -#: ../../include/attach.php:1135 -msgid "Empty path" -msgstr "La posizione è vuota" - -#: ../../include/bbcode.php:123 ../../include/bbcode.php:878 -#: ../../include/bbcode.php:881 ../../include/bbcode.php:886 -#: ../../include/bbcode.php:889 ../../include/bbcode.php:892 -#: ../../include/bbcode.php:895 ../../include/bbcode.php:900 -#: ../../include/bbcode.php:903 ../../include/bbcode.php:908 -#: ../../include/bbcode.php:911 ../../include/bbcode.php:914 -#: ../../include/bbcode.php:917 -msgid "Image/photo" -msgstr "Immagine" - -#: ../../include/bbcode.php:162 ../../include/bbcode.php:928 -msgid "Encrypted content" -msgstr "Contenuto cifrato" - -#: ../../include/bbcode.php:178 -#, php-format -msgid "Install %s element: " -msgstr "Installa l'elemento %s:" - -#: ../../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 "Questo post contiene un elemento %s installabile, tuttavia non hai i permessi necessari per l'installazione." - -#: ../../include/bbcode.php:261 -#, php-format -msgid "%1$s wrote the following %2$s %3$s" -msgstr "%1$s ha scritto %2$s %3$s" - -#: ../../include/bbcode.php:338 ../../include/bbcode.php:346 -msgid "Click to open/close" -msgstr "Clicca per aprire/chiudere" - -#: ../../include/bbcode.php:346 -msgid "spoiler" -msgstr "spoiler" - -#: ../../include/bbcode.php:619 -msgid "Different viewers will see this text differently" -msgstr "Ad altri questo testo potrebbe apparire in modo differente" - -#: ../../include/bbcode.php:866 -msgid "$1 wrote:" -msgstr "$1 ha scritto:" - -#: ../../include/items.php:897 ../../include/items.php:942 -msgid "(Unknown)" -msgstr "(Sconosciuto)" - -#: ../../include/items.php:1141 -msgid "Visible to anybody on the internet." -msgstr "Visibile a chiunque su internet." - -#: ../../include/items.php:1143 -msgid "Visible to you only." -msgstr "Visibile solo a te." - -#: ../../include/items.php:1145 -msgid "Visible to anybody in this network." -msgstr "Visibile a tutti su questa rete." - -#: ../../include/items.php:1147 -msgid "Visible to anybody authenticated." -msgstr "Visibile a chiunque sia autenticato." - -#: ../../include/items.php:1149 -#, php-format -msgid "Visible to anybody on %s." -msgstr "Visibile a tutti su %s." - -#: ../../include/items.php:1151 -msgid "Visible to all connections." -msgstr "Visibile a tutti coloro che ti seguono." - -#: ../../include/items.php:1153 -msgid "Visible to approved connections." -msgstr "Visibile ai contatti approvati." - -#: ../../include/items.php:1155 -msgid "Visible to specific connections." -msgstr "Visibile ad alcuni contatti scelti." - -#: ../../include/items.php:3918 -msgid "Privacy group is empty." -msgstr "Gruppo di canali vuoto." - -#: ../../include/items.php:3925 -#, php-format -msgid "Privacy group: %s" -msgstr "Gruppo di canali: %s" - -#: ../../include/items.php:3937 -msgid "Connection not found." -msgstr "Contatto non trovato." - -#: ../../include/items.php:4290 -msgid "profile photo" -msgstr "foto del profilo" - -#: ../../include/oembed.php:336 -msgid "Embedded content" -msgstr "Contenuti incorporati" - -#: ../../include/oembed.php:345 -msgid "Embedding disabled" -msgstr "Disabilita la creazione di contenuti incorporati" - -#: ../../include/widgets.php:103 -msgid "System" -msgstr "Sistema" - -#: ../../include/widgets.php:106 -msgid "New App" -msgstr "Nuova app" - -#: ../../include/widgets.php:154 -msgid "Suggestions" -msgstr "Suggerimenti" - -#: ../../include/widgets.php:155 -msgid "See more..." -msgstr "Altro..." - -#: ../../include/widgets.php:175 -#, php-format -msgid "You have %1$.0f of %2$.0f allowed connections." -msgstr "Hai attivato %1$.0f delle %2$.0f connessioni permesse." - -#: ../../include/widgets.php:181 -msgid "Add New Connection" -msgstr "Aggiungi un contatto" - -#: ../../include/widgets.php:182 -msgid "Enter channel address" -msgstr "Indirizzo del canale" - -#: ../../include/widgets.php:183 -msgid "Examples: bob@example.com, https://example.com/barbara" -msgstr "Per esempio: bob@example.com, https://example.com/barbara" - -#: ../../include/widgets.php:199 -msgid "Notes" -msgstr "Note" - -#: ../../include/widgets.php:273 -msgid "Remove term" -msgstr "Rimuovi termine" - -#: ../../include/widgets.php:313 ../../include/widgets.php:432 -#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:94 -msgid "Everything" -msgstr "Tutto" - -#: ../../include/widgets.php:354 -msgid "Archives" -msgstr "Archivi" - -#: ../../include/widgets.php:516 -msgid "Refresh" -msgstr "Aggiorna" - -#: ../../include/widgets.php:556 -msgid "Account settings" -msgstr "Il tuo account" - -#: ../../include/widgets.php:562 -msgid "Channel settings" -msgstr "Impostazioni del canale" - -#: ../../include/widgets.php:571 -msgid "Additional features" -msgstr "Funzionalità opzionali" - -#: ../../include/widgets.php:578 -msgid "Feature/Addon settings" -msgstr "Componenti aggiuntivi" - -#: ../../include/widgets.php:584 -msgid "Display settings" -msgstr "Aspetto" - -#: ../../include/widgets.php:591 -msgid "Manage locations" -msgstr "Gestione repliche" - -#: ../../include/widgets.php:600 -msgid "Export channel" -msgstr "Esporta il canale" - -#: ../../include/widgets.php:607 -msgid "Connected apps" -msgstr "App connesse" - -#: ../../include/widgets.php:631 -msgid "Premium Channel Settings" -msgstr "Canale premium - impostazioni" - -#: ../../include/widgets.php:660 -msgid "Private Mail Menu" -msgstr "Menu messaggi privati" - -#: ../../include/widgets.php:662 -msgid "Combined View" -msgstr "Vista combinata" - -#: ../../include/widgets.php:694 ../../include/widgets.php:706 -msgid "Conversations" -msgstr "Conversazioni" - -#: ../../include/widgets.php:698 -msgid "Received Messages" -msgstr "Ricevuti" - -#: ../../include/widgets.php:702 -msgid "Sent Messages" -msgstr "Inviati" - -#: ../../include/widgets.php:716 -msgid "No messages." -msgstr "Nessun messaggio." - -#: ../../include/widgets.php:734 -msgid "Delete conversation" -msgstr "Elimina la conversazione" - -#: ../../include/widgets.php:760 -msgid "Events Tools" -msgstr "Gestione eventi" - -#: ../../include/widgets.php:761 -msgid "Export Calendar" -msgstr "Esporta calendario" - -#: ../../include/widgets.php:762 -msgid "Import Calendar" -msgstr "Importa calendario" - -#: ../../include/widgets.php:840 -msgid "Overview" -msgstr "Riepilogo" - -#: ../../include/widgets.php:847 -msgid "Chat Members" -msgstr "Partecipanti" - -#: ../../include/widgets.php:869 -msgid "Wiki List" -msgstr "Elenco wiki" - -#: ../../include/widgets.php:907 -msgid "Wiki Pages" -msgstr "Pagine wiki" - -#: ../../include/widgets.php:942 -msgid "Bookmarked Chatrooms" -msgstr "Chat nei segnalibri" - -#: ../../include/widgets.php:965 -msgid "Suggested Chatrooms" -msgstr "Chat suggerite" - -#: ../../include/widgets.php:1111 ../../include/widgets.php:1223 -msgid "photo/image" -msgstr "foto/immagine" - -#: ../../include/widgets.php:1166 -msgid "Click to show more" -msgstr "Clicca per mostrare tutto" - -#: ../../include/widgets.php:1317 -msgid "Rating Tools" -msgstr "Valutazione" - -#: ../../include/widgets.php:1321 ../../include/widgets.php:1323 -msgid "Rate Me" -msgstr "Valutami" - -#: ../../include/widgets.php:1326 -msgid "View Ratings" -msgstr "Vedi le valutazioni ricevute" - -#: ../../include/widgets.php:1410 -msgid "Forums" -msgstr "Forum" - -#: ../../include/widgets.php:1439 -msgid "Tasks" -msgstr "Attività" - -#: ../../include/widgets.php:1448 -msgid "Documentation" -msgstr "Guida" - -#: ../../include/widgets.php:1450 -msgid "Project/Site Information" -msgstr "Informazioni sul sito/progetto" - -#: ../../include/widgets.php:1451 -msgid "For Members" -msgstr "Per gli utenti" - -#: ../../include/widgets.php:1452 -msgid "For Administrators" -msgstr "Per gli amministratori" - -#: ../../include/widgets.php:1453 -msgid "For Developers" -msgstr "Per sviluppatori" - -#: ../../include/widgets.php:1477 ../../include/widgets.php:1515 -msgid "Member registrations waiting for confirmation" -msgstr "Richieste in attesa di conferma" - -#: ../../include/widgets.php:1483 -msgid "Inspect queue" -msgstr "Coda di attesa" - -#: ../../include/widgets.php:1485 -msgid "DB updates" -msgstr "Aggiornamenti al DB" - -#: ../../include/widgets.php:1511 -msgid "Plugin Features" -msgstr "Plugin" - -#: ../../include/activities.php:41 -msgid " and " -msgstr "e" - -#: ../../include/activities.php:49 -msgid "public profile" -msgstr "profilo pubblico" - -#: ../../include/activities.php:58 -#, php-format -msgid "%1$s changed %2$s to “%3$s”" -msgstr "%1$s ha cambiato %2$s in “%3$s”" - -#: ../../include/activities.php:59 -#, php-format -msgid "Visit %1$s's %2$s" -msgstr "Guarda %2$s di %1$s " - -#: ../../include/activities.php:62 -#, php-format -msgid "%1$s has an updated %2$s, changing %3$s." -msgstr "%1$s ha aggiornato %2$s cambiando %3$s." - -#: ../../include/bb2diaspora.php:398 -msgid "Attachments:" -msgstr "Allegati:" - -#: ../../include/bb2diaspora.php:487 -msgid "$Projectname event notification:" -msgstr "Notifica evento $Projectname:" - #: ../../include/js_strings.php:5 msgid "Delete this item?" msgstr "Eliminare questo elemento?" #: ../../include/js_strings.php:8 -#, php-format -msgid "%s show less" -msgstr "%s riduci" +msgid "[-] show less" +msgstr "[-] riduci" #: ../../include/js_strings.php:9 -#, php-format -msgid "%s expand" -msgstr "%s mostra tutto" +msgid "[+] expand" +msgstr "[+] mostra tutto" #: ../../include/js_strings.php:10 -#, php-format -msgid "%s collapse" -msgstr "%s minimizza" +msgid "[-] collapse" +msgstr "[-] riduci" #: ../../include/js_strings.php:11 msgid "Password too short" @@ -9611,223 +9360,278 @@ msgctxt "calendar" msgid "All day" msgstr "Tutto il giorno" -#: ../../include/contact_widgets.php:11 +#: ../../include/network.php:657 +msgid "view full size" +msgstr "guarda nelle dimensioni reali" + +#: ../../include/network.php:1885 +msgid "No Subject" +msgstr "Nessun titolo" + +#: ../../include/network.php:2146 ../../include/network.php:2147 +msgid "Friendica" +msgstr "Friendica" + +#: ../../include/network.php:2148 +msgid "OStatus" +msgstr "OStatus" + +#: ../../include/network.php:2149 +msgid "GNU-Social" +msgstr "GNU-Social" + +#: ../../include/network.php:2150 +msgid "RSS/Atom" +msgstr "RSS/Atom" + +#: ../../include/network.php:2152 +msgid "Diaspora" +msgstr "Diaspora" + +#: ../../include/network.php:2153 +msgid "Facebook" +msgstr "Facebook" + +#: ../../include/network.php:2154 +msgid "Zot" +msgstr "Zot" + +#: ../../include/network.php:2155 +msgid "LinkedIn" +msgstr "LinkedIn" + +#: ../../include/network.php:2156 +msgid "XMPP/IM" +msgstr "XMPP/IM" + +#: ../../include/network.php:2157 +msgid "MySpace" +msgstr "MySpace" + +#: ../../include/photos.php:110 #, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "%d invito disponibile" -msgstr[1] "%d inviti disponibili" +msgid "Image exceeds website size limit of %lu bytes" +msgstr "L'immagine supera il limite massimo di %lu bytes" -#: ../../include/contact_widgets.php:19 -msgid "Find Channels" -msgstr "Ricerca canali" +#: ../../include/photos.php:117 +msgid "Image file is empty." +msgstr "Il file dell'immagine è vuoto." -#: ../../include/contact_widgets.php:20 -msgid "Enter name or interest" -msgstr "Scrivi un nome o un interesse" +#: ../../include/photos.php:255 +msgid "Photo storage failed." +msgstr "Impossibile salvare la foto." -#: ../../include/contact_widgets.php:21 -msgid "Connect/Follow" -msgstr "Aggiungi" +#: ../../include/photos.php:295 +msgid "a new photo" +msgstr "una nuova foto" -#: ../../include/contact_widgets.php:22 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "Per esempio: Mario Rossi, Pesca" - -#: ../../include/contact_widgets.php:26 -msgid "Random Profile" -msgstr "Profilo casuale" - -#: ../../include/contact_widgets.php:27 -msgid "Invite Friends" -msgstr "Invita amici" - -#: ../../include/contact_widgets.php:29 -msgid "Advanced example: name=fred and country=iceland" -msgstr "Per esempio: name=mario e country=italy" - -#: ../../include/contact_widgets.php:122 +#: ../../include/photos.php:299 #, php-format -msgid "%d connection in common" -msgid_plural "%d connections in common" -msgstr[0] "%d contatto in comune" -msgstr[1] "%d contatti in comune" +msgctxt "photo_upload" +msgid "%1$s posted %2$s to %3$s" +msgstr "%1$s ha pubblicato %2$s su %3$s" -#: ../../include/contact_widgets.php:127 -msgid "show more" -msgstr "mostra tutto" +#: ../../include/photos.php:506 +msgid "Upload New Photos" +msgstr "Carica nuove foto" -#: ../../include/dir_fns.php:141 -msgid "Directory Options" -msgstr "Visibilità negli elenchi pubblici" - -#: ../../include/dir_fns.php:143 -msgid "Safe Mode" -msgstr "Modalità SafeSearch" - -#: ../../include/dir_fns.php:144 -msgid "Public Forums Only" -msgstr "Solo forum pubblici" - -#: ../../include/dir_fns.php:145 -msgid "This Website Only" -msgstr "Solo in questo sito" - -#: ../../include/message.php:20 -msgid "No recipient provided." -msgstr "Devi scegliere un destinatario." - -#: ../../include/message.php:25 -msgid "[no subject]" -msgstr "[nessun titolo]" - -#: ../../include/message.php:45 -msgid "Unable to determine sender." -msgstr "Impossibile determinare il mittente." - -#: ../../include/message.php:222 -msgid "Stored post could not be verified." -msgstr "Non è stato possibile verificare il post." - -#: ../../include/acl_selectors.php:269 -msgid "Who can see this?" -msgstr "Chi può vederlo?" - -#: ../../include/acl_selectors.php:270 -msgid "Custom selection" -msgstr "Selezione personalizzata" - -#: ../../include/acl_selectors.php:271 -msgid "" -"Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit" -" the scope of \"Show\"." -msgstr "Scegli \"Mostra\" per permettere la visione. \"Non mostrare\" ha la precedenza e limita l'effetto di \"Mostra\"." - -#: ../../include/acl_selectors.php:272 -msgid "Show" -msgstr "Mostra" - -#: ../../include/acl_selectors.php:273 -msgid "Don't show" -msgstr "Non mostrare" - -#: ../../include/acl_selectors.php:279 -msgid "Other networks and post services" -msgstr "Invio ad altre reti o a siti esterni" - -#: ../../include/acl_selectors.php:309 -#, php-format -msgid "" -"Post permissions %s cannot be changed %s after a post is shared.
These" -" permissions set who is allowed to view the post." -msgstr "I permessi del post %s non possono essere cambiati %s dopo che un post è stato condiviso.
Questi permessi definiscono chi ha diritto di vedere il post." - -#: ../../include/datetime.php:135 -msgid "Birthday" -msgstr "Compleanno" - -#: ../../include/datetime.php:137 -msgid "Age: " -msgstr "Età:" - -#: ../../include/datetime.php:139 -msgid "YYYY-MM-DD or MM-DD" -msgstr "AAAA-MM-GG oppure MM-GG" - -#: ../../include/datetime.php:272 ../../boot.php:2479 -msgid "never" -msgstr "mai" - -#: ../../include/datetime.php:278 -msgid "less than a second ago" -msgstr "meno di un secondo fa" - -#: ../../include/datetime.php:296 -#, php-format -msgctxt "e.g. 22 hours ago, 1 minute ago" -msgid "%1$d %2$s ago" -msgstr "%1$d %2$s fa" - -#: ../../include/datetime.php:307 -msgctxt "relative_date" -msgid "year" -msgid_plural "years" -msgstr[0] "anno" -msgstr[1] "anni" - -#: ../../include/datetime.php:310 -msgctxt "relative_date" -msgid "month" -msgid_plural "months" -msgstr[0] "mese" -msgstr[1] "mesi" - -#: ../../include/datetime.php:313 -msgctxt "relative_date" -msgid "week" -msgid_plural "weeks" -msgstr[0] "settimana" -msgstr[1] "settimane" - -#: ../../include/datetime.php:316 -msgctxt "relative_date" -msgid "day" -msgid_plural "days" -msgstr[0] "giorno" -msgstr[1] "giorni" - -#: ../../include/datetime.php:319 -msgctxt "relative_date" -msgid "hour" -msgid_plural "hours" -msgstr[0] "ora" -msgstr[1] "ore" - -#: ../../include/datetime.php:322 -msgctxt "relative_date" -msgid "minute" -msgid_plural "minutes" -msgstr[0] "minuto" -msgstr[1] "minuti" - -#: ../../include/datetime.php:325 -msgctxt "relative_date" -msgid "second" -msgid_plural "seconds" -msgstr[0] "secondo" -msgstr[1] "secondi" - -#: ../../include/datetime.php:562 -#, php-format -msgid "%1$s's birthday" -msgstr "Compleanno di %1$s" - -#: ../../include/datetime.php:563 -#, php-format -msgid "Happy Birthday %1$s" -msgstr "Buon compleanno %1$s" - -#: ../../include/api.php:1327 -msgid "Public Timeline" -msgstr "Diario pubblico" - -#: ../../include/zot.php:697 +#: ../../include/zot.php:699 msgid "Invalid data packet" msgstr "Dati ricevuti non validi" -#: ../../include/zot.php:713 +#: ../../include/zot.php:715 msgid "Unable to verify channel signature" msgstr "Impossibile verificare la firma elettronica del canale" -#: ../../include/zot.php:2326 +#: ../../include/zot.php:2363 #, php-format msgid "Unable to verify site signature for %s" msgstr "Impossibile verificare la firma elettronica del sito %s" -#: ../../include/zot.php:3703 +#: ../../include/zot.php:3712 msgid "invalid target signature" msgstr "la firma ricevuta non è valida" +#: ../../include/page_widgets.php:6 +msgid "New Page" +msgstr "Nuova pagina web" + +#: ../../include/page_widgets.php:43 +msgid "Title" +msgstr "Titolo" + +#: ../../include/permissions.php:26 +msgid "Can view my normal stream and posts" +msgstr "Può vedere i miei contenuti e i post normali" + +#: ../../include/permissions.php:27 +msgid "Can view my default channel profile" +msgstr "Può vedere il profilo predefinito del canale" + +#: ../../include/permissions.php:28 +msgid "Can view my connections" +msgstr "Può vedere i miei contatti" + +#: ../../include/permissions.php:29 +msgid "Can view my file storage and photos" +msgstr "Può vedere il mio archivio file e foto" + +#: ../../include/permissions.php:30 +msgid "Can view my webpages" +msgstr "Può vedere le mie pagine web" + +#: ../../include/permissions.php:33 +msgid "Can send me their channel stream and posts" +msgstr "È tra i canali che seguo" + +#: ../../include/permissions.php:34 +msgid "Can post on my channel page (\"wall\")" +msgstr "Può scrivere sulla bacheca del mio canale" + +#: ../../include/permissions.php:35 +msgid "Can comment on or like my posts" +msgstr "Può commentare o aggiungere \"mi piace\" ai miei post" + +#: ../../include/permissions.php:36 +msgid "Can send me private mail messages" +msgstr "Può inviarmi messaggi privati" + +#: ../../include/permissions.php:37 +msgid "Can like/dislike stuff" +msgstr "Può aggiungere \"mi piace\" a tutto il resto" + +#: ../../include/permissions.php:37 +msgid "Profiles and things other than posts/comments" +msgstr "Può aggiungere \"mi piace\" a tutto ciò che non riguarda i post, come per esempio il profilo" + +#: ../../include/permissions.php:39 +msgid "Can forward to all my channel contacts via post @mentions" +msgstr "Può inoltrare post a tutti i contatti del canale tramite una @menzione" + +#: ../../include/permissions.php:39 +msgid "Advanced - useful for creating group forum channels" +msgstr "Impostazione avanzata - utile per creare un canale-forum di discussione" + +#: ../../include/permissions.php:40 +msgid "Can chat with me (when available)" +msgstr "Può aprire una chat con me (se disponibile)" + +#: ../../include/permissions.php:41 +msgid "Can write to my file storage and photos" +msgstr "Può modificare il mio archivio file e foto" + +#: ../../include/permissions.php:42 +msgid "Can edit my webpages" +msgstr "Può modificare le mie pagine web" + +#: ../../include/permissions.php:44 +msgid "Can source my public posts in derived channels" +msgstr "Può usare i miei post pubblici per creare canali derivati" + +#: ../../include/permissions.php:44 +msgid "Somewhat advanced - very useful in open communities" +msgstr "Piuttosto avanzato - molto utile nelle comunità aperte" + +#: ../../include/permissions.php:46 +msgid "Can administer my channel resources" +msgstr "Può amministrare i contenuti del mio canale" + +#: ../../include/permissions.php:46 +msgid "" +"Extremely advanced. Leave this alone unless you know what you are doing" +msgstr "Impostazione pericolosa - lasciare il valore predefinito se non si è assolutamente sicuri" + +#: ../../include/permissions.php:877 +msgid "Social Networking" +msgstr "Social network" + +#: ../../include/permissions.php:877 +msgid "Social - Mostly Public" +msgstr "Social - Prevalentemente pubblico" + +#: ../../include/permissions.php:877 +msgid "Social - Restricted" +msgstr "Social - Con restrizioni" + +#: ../../include/permissions.php:877 +msgid "Social - Private" +msgstr "Social - Privato" + +#: ../../include/permissions.php:878 +msgid "Community Forum" +msgstr "Forum di discussione" + +#: ../../include/permissions.php:878 +msgid "Forum - Mostly Public" +msgstr "Social - Prevalentemente pubblico" + +#: ../../include/permissions.php:878 +msgid "Forum - Restricted" +msgstr "Forum - Con restrizioni" + +#: ../../include/permissions.php:878 +msgid "Forum - Private" +msgstr "Forum - Privato" + +#: ../../include/permissions.php:879 +msgid "Feed Republish" +msgstr "Aggregatore di feed esterni" + +#: ../../include/permissions.php:879 +msgid "Feed - Mostly Public" +msgstr "Feed - Prevalentemente pubblico" + +#: ../../include/permissions.php:879 +msgid "Feed - Restricted" +msgstr "Feed - Con restrizioni" + +#: ../../include/permissions.php:880 +msgid "Special Purpose" +msgstr "Per finalità speciali" + +#: ../../include/permissions.php:880 +msgid "Special - Celebrity/Soapbox" +msgstr "Speciale - Pagina per fan" + +#: ../../include/permissions.php:880 +msgid "Special - Group Repository" +msgstr "Speciale - Repository di gruppo" + +#: ../../include/permissions.php:881 +msgid "Custom/Expert Mode" +msgstr "Personalizzazione per esperti" + +#: ../../include/activities.php:41 +msgid " and " +msgstr "e" + +#: ../../include/activities.php:49 +msgid "public profile" +msgstr "profilo pubblico" + +#: ../../include/activities.php:58 +#, php-format +msgid "%1$s changed %2$s to “%3$s”" +msgstr "%1$s ha cambiato %2$s in “%3$s”" + +#: ../../include/activities.php:59 +#, php-format +msgid "Visit %1$s's %2$s" +msgstr "Guarda %2$s di %1$s " + +#: ../../include/activities.php:62 +#, php-format +msgid "%1$s has an updated %2$s, changing %3$s." +msgstr "%1$s ha aggiornato %2$s cambiando %3$s." + +#: ../../include/bb2diaspora.php:398 +msgid "Attachments:" +msgstr "Allegati:" + +#: ../../include/bb2diaspora.php:487 +msgid "$Projectname event notification:" +msgstr "Notifica evento $Projectname:" + #: ../../view/theme/redbasic/php/config.php:82 msgid "Focus (Hubzilla default)" msgstr "Focus (predefinito)" @@ -9964,66 +9768,62 @@ msgstr "Dimensione foto dell'autore della conversazione" msgid "Set size of followup author photos" msgstr "Dimensione foto dei partecipanti alla conversazione" -#: ../../boot.php:1163 +#: ../../boot.php:1162 #, php-format msgctxt "opensearch" msgid "Search %1$s (%2$s)" msgstr "Cerca %1$s (%2$s)" -#: ../../boot.php:1163 +#: ../../boot.php:1162 msgctxt "opensearch" msgid "$Projectname" msgstr "$Projectname" -#: ../../boot.php:1481 +#: ../../boot.php:1480 #, php-format msgid "Update %s failed. See error logs." msgstr "%s: aggiornamento fallito. Controlla i log di errore." -#: ../../boot.php:1484 +#: ../../boot.php:1483 #, php-format msgid "Update Error at %s" msgstr "Errore di aggiornamento su %s" -#: ../../boot.php:1685 +#: ../../boot.php:1684 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:1706 -msgid "Login/Email" -msgstr "Login/Email" - -#: ../../boot.php:1707 msgid "Password" msgstr "Password" -#: ../../boot.php:1708 +#: ../../boot.php:1707 msgid "Remember me" msgstr "Resta connesso" -#: ../../boot.php:1711 +#: ../../boot.php:1710 msgid "Forgot your password?" msgstr "Hai dimenticato la password?" -#: ../../boot.php:2277 +#: ../../boot.php:2276 msgid "toggle mobile" msgstr "attiva/disattiva versione mobile" -#: ../../boot.php:2432 +#: ../../boot.php:2425 msgid "Website SSL certificate is not valid. Please correct." msgstr "Il certificato SSL del sito non è valido. Si prega di intervenire." -#: ../../boot.php:2435 +#: ../../boot.php:2428 #, php-format msgid "[hubzilla] Website SSL error for %s" msgstr "[hubzilla] Errore SSL su %s" -#: ../../boot.php:2478 +#: ../../boot.php:2469 msgid "Cron/Scheduled tasks not running." msgstr "Processi cron non avviati." -#: ../../boot.php:2482 +#: ../../boot.php:2473 #, 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 03024afab..1abdad30e 100644 --- a/view/it/hstrings.php +++ b/view/it/hstrings.php @@ -4,39 +4,7 @@ if(! function_exists("string_plural_select_it")) { function string_plural_select_it($n){ return ($n != 1);; }} -App::$rtl = 0; -App::$strings["Social Networking"] = "Social network"; -App::$strings["Social - Mostly Public"] = "Social - Prevalentemente pubblico"; -App::$strings["Social - Restricted"] = "Social - Con restrizioni"; -App::$strings["Social - Private"] = "Social - Privato"; -App::$strings["Community Forum"] = "Forum di discussione"; -App::$strings["Forum - Mostly Public"] = "Social - Prevalentemente pubblico"; -App::$strings["Forum - Restricted"] = "Forum - Con restrizioni"; -App::$strings["Forum - Private"] = "Forum - Privato"; -App::$strings["Feed Republish"] = "Aggregatore di feed esterni"; -App::$strings["Feed - Mostly Public"] = "Feed - Prevalentemente pubblico"; -App::$strings["Feed - Restricted"] = "Feed - Con restrizioni"; -App::$strings["Special Purpose"] = "Per finalità speciali"; -App::$strings["Special - Celebrity/Soapbox"] = "Speciale - Pagina per fan"; -App::$strings["Special - Group Repository"] = "Speciale - Repository di gruppo"; -App::$strings["Other"] = "Altro"; -App::$strings["Custom/Expert Mode"] = "Personalizzazione per esperti"; -App::$strings["Can view my channel stream and posts"] = "Può vedere i post e i contenuti del mio canale"; -App::$strings["Can send me their channel stream and posts"] = "È tra i canali che seguo"; -App::$strings["Can view my default channel profile"] = "Può vedere il profilo predefinito del canale"; -App::$strings["Can view my connections"] = "Può vedere i miei contatti"; -App::$strings["Can view my file storage and photos"] = "Può vedere il mio archivio file e foto"; -App::$strings["Can upload/modify my file storage and photos"] = "Può caricare o modificare i file e le foto del mio archivio"; -App::$strings["Can view my channel webpages"] = "Può vedere le pagine web del mio canale"; -App::$strings["Can create/edit my channel webpages"] = "Può creare o modificare le pagine web del mio canale"; -App::$strings["Can post on my channel (wall) page"] = "Può postare sulla mia bacheca"; -App::$strings["Can comment on or like my posts"] = "Può commentare o aggiungere \"mi piace\" ai miei post"; -App::$strings["Can send me private mail messages"] = "Può inviarmi messaggi privati"; -App::$strings["Can like/dislike profiles and profile things"] = "Può aggiungere un \"mi piace\" sul profilo e sugli oggetti del profilo"; -App::$strings["Can forward to all my channel connections via @+ mentions in posts"] = "Può inoltrare post a tutti i miei contatti con una menzione @+"; -App::$strings["Can chat with me"] = "Può aprire una chat con me"; -App::$strings["Can source my public posts in derived channels"] = "Può usare i miei post pubblici per creare canali derivati"; -App::$strings["Can administer my channel"] = "Può amministrare il mio canale"; +; App::$strings["parent"] = "cartella superiore"; App::$strings["Collection"] = "Cartella"; App::$strings["Principal"] = "Principale"; @@ -69,8 +37,63 @@ App::$strings["Remote authentication blocked. You are logged into this site loca App::$strings["Welcome %s. Remote authentication successful."] = "Ciao %s. L'accesso tramite il tuo hub è avvenuto con successo."; App::$strings["Requested profile is not available."] = "Il profilo richiesto non è disponibile."; App::$strings["Some blurb about what to do when you're new here"] = "Qualche suggerimento per i nuovi utenti su cosa fare"; +App::$strings["Block Name"] = "Nome del block"; +App::$strings["Blocks"] = "Block"; +App::$strings["Block Title"] = "Titolo del block"; +App::$strings["Created"] = "Creato"; +App::$strings["Edited"] = "Modificato"; +App::$strings["Share"] = "Condividi"; +App::$strings["View"] = "Guarda"; +App::$strings["Channel not found."] = "Canale non trovato."; +App::$strings["Permissions denied."] = "Permesso negato."; +App::$strings["l, F j"] = "l j F"; +App::$strings["Link to Source"] = "Link al sito d'origine"; +App::$strings["Edit Event"] = "Modifica l'evento"; +App::$strings["Create Event"] = "Crea un evento"; +App::$strings["Previous"] = "Precendente"; +App::$strings["Next"] = "Successivo"; +App::$strings["Export"] = "Esporta"; +App::$strings["Import"] = "Importa"; +App::$strings["Submit"] = "Salva"; +App::$strings["Today"] = "Oggi"; +App::$strings["You must be logged in to see this page."] = "Devi aver effettuato l'accesso per vedere questa pagina."; +App::$strings["Posts and comments"] = "Post e commenti"; +App::$strings["Only posts"] = "Solo post"; +App::$strings["Insufficient permissions. Request redirected to profile page."] = "Permessi insufficienti. Sarà visualizzata la pagina del profilo."; +App::$strings["Room not found"] = "Chat non trovata"; +App::$strings["Leave Room"] = "Lascia la chat"; +App::$strings["Delete Room"] = "Elimina questa chat"; +App::$strings["I am away right now"] = "Non sono presente"; +App::$strings["I am online"] = "Sono online"; +App::$strings["Bookmark this room"] = "Aggiungi questa chat ai segnalibri"; +App::$strings["Please enter a link URL:"] = "Inserisci l'indirizzo del link:"; +App::$strings["Encrypt text"] = "Cifratura del messaggio"; +App::$strings["Insert web link"] = "Inserisci un indirizzo web"; +App::$strings["Feature disabled."] = "Funzionalità disattivata."; +App::$strings["New Chatroom"] = "Nuova chat"; +App::$strings["Chatroom name"] = "Nome chat"; +App::$strings["Expiration of chats (minutes)"] = "Scadenza dei messaggi della chat (minuti)"; +App::$strings["Permissions"] = "Permessi"; +App::$strings["%1\$s's Chatrooms"] = "Le chat di %1\$s"; +App::$strings["No chatrooms available"] = "Nessuna chat disponibile"; +App::$strings["Create New"] = "Crea nuova"; +App::$strings["Expiration"] = "Scadenza"; +App::$strings["min"] = "min"; App::$strings["Away"] = "Assente"; App::$strings["Online"] = "Online"; +App::$strings["Invalid item."] = "Elemento non valido."; +App::$strings["Bookmark added"] = "Segnalibro aggiunto"; +App::$strings["My Bookmarks"] = "I miei segnalibri"; +App::$strings["My Connections Bookmarks"] = "I segnalibri dei miei contatti"; +App::$strings["Continue"] = "Continua"; +App::$strings["Premium Channel Setup"] = "Canale premium - configurazione"; +App::$strings["Enable premium channel connection restrictions"] = "Abilita le restrizioni del canale premium"; +App::$strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = "Scrivi le condizioni d'uso e le restrizioni di questo canale, come per esempio le linee guida, il sistema di pagamento, ecc."; +App::$strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = "Prima di connetterti a questo canale è necessario che tu accetti le seguenti condizioni:"; +App::$strings["Potential connections will then see the following text before proceeding:"] = "Il testo seguente comparirà a chi vorrà seguire il canale:"; +App::$strings["By continuing, I certify that I have complied with any instructions provided on this page."] = "Continuando dichiaro di aver seguito tutte le indicazioni e le istruzioni fornite in questa pagina."; +App::$strings["(No specific instructions have been provided by the channel owner.)"] = "(Il gestore del canale non ha fornito istruzioni specifiche)"; +App::$strings["Restricted or Premium Channel"] = "Canale premium - con restrizioni"; App::$strings["Could not access contact record."] = "Non è possibile accedere alle informazioni sul contatto."; App::$strings["Could not locate selected profile."] = "Non riesco a trovare il profilo selezionato."; App::$strings["Connection updated."] = "Contatto aggiornato."; @@ -135,7 +158,6 @@ App::$strings["Do not import posts with this text"] = "Non importare i post con App::$strings["This information is public!"] = "Questa informazione è pubblica!"; App::$strings["Connection Pending Approval"] = "Contatti in attesa di approvazione"; App::$strings["inherited"] = "derivato"; -App::$strings["Submit"] = "Salva"; App::$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."; App::$strings["Their Settings"] = "Permessi concessi a te"; App::$strings["My Settings"] = "Permessi che concedo"; @@ -144,30 +166,6 @@ App::$strings["Some permissions may be inherited from your channel's privacy settings, which have higher priority than individual settings. You can change those settings here but they wont have any impact unless the inherited setting changes."] = "Alcuni permessi derivano dalle impostazioni di privacy del tuo canale, che hanno priorità assoluta su qualsiasi altra impostazione scelta per i singoli contatti. Le personalizzazioni che effettuerai qui potrebbero non essere effettive a meno che tu non cambi le impostazioni generali."; App::$strings["Last update:"] = "Ultimo aggiornamento:"; App::$strings["Public access denied."] = "Accesso pubblico negato."; -App::$strings["Item not found."] = "Elemento non trovato."; -App::$strings["First Name"] = "Nome"; -App::$strings["Last Name"] = "Cognome"; -App::$strings["Nickname"] = "Nick"; -App::$strings["Full Name"] = "Nome e cognome"; -App::$strings["Email"] = "Email"; -App::$strings["Profile Photo"] = "Foto del profilo"; -App::$strings["Profile Photo 16px"] = "Foto del profilo 16px"; -App::$strings["Profile Photo 32px"] = "Foto del profilo 32px"; -App::$strings["Profile Photo 48px"] = "Foto del profilo 48px"; -App::$strings["Profile Photo 64px"] = "Foto del profilo 64px"; -App::$strings["Profile Photo 80px"] = "Foto del profilo 80px"; -App::$strings["Profile Photo 128px"] = "Foto del profilo 128px"; -App::$strings["Timezone"] = "Fuso orario"; -App::$strings["Homepage URL"] = "Indirizzo home page"; -App::$strings["Language"] = "Lingua"; -App::$strings["Birth Year"] = "Anno di nascita"; -App::$strings["Birth Month"] = "Mese di nascita"; -App::$strings["Birth Day"] = "Giorno di nascita"; -App::$strings["Birthdate"] = "Data di nascita"; -App::$strings["Gender"] = "Sesso"; -App::$strings["Male"] = "Maschio"; -App::$strings["Female"] = "Femmina"; -App::$strings["Channel added."] = "Canale aggiunto."; App::$strings["%d rating"] = array( 0 => "%d valutazione", 1 => "%d valutazioni", @@ -198,74 +196,13 @@ App::$strings["Reverse Alphabetic"] = "Alfabetico inverso"; App::$strings["Newest to Oldest"] = "Prima i più recenti"; App::$strings["Oldest to Newest"] = "Prima i più vecchi"; App::$strings["No entries (some entries may be hidden)."] = "Nessun risultato (qualche elemento potrebbe essere nascosto)."; -App::$strings["Continue"] = "Continua"; -App::$strings["Premium Channel Setup"] = "Canale premium - configurazione"; -App::$strings["Enable premium channel connection restrictions"] = "Abilita le restrizioni del canale premium"; -App::$strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = "Scrivi le condizioni d'uso e le restrizioni di questo canale, come per esempio le linee guida, il sistema di pagamento, ecc."; -App::$strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = "Prima di connetterti a questo canale è necessario che tu accetti le seguenti condizioni:"; -App::$strings["Potential connections will then see the following text before proceeding:"] = "Il testo seguente comparirà a chi vorrà seguire il canale:"; -App::$strings["By continuing, I certify that I have complied with any instructions provided on this page."] = "Continuando dichiaro di aver seguito tutte le indicazioni e le istruzioni fornite in questa pagina."; -App::$strings["(No specific instructions have been provided by the channel owner.)"] = "(Il gestore del canale non ha fornito istruzioni specifiche)"; -App::$strings["Restricted or Premium Channel"] = "Canale premium - con restrizioni"; -App::$strings["Calendar entries imported."] = "Le voci del calendario sono state importate."; -App::$strings["No calendar entries found."] = "Non sono state trovate voci del calendario."; -App::$strings["Event can not end before it has started."] = "Un evento non può terminare prima del suo inizio."; -App::$strings["Unable to generate preview."] = "Impossibile creare un'anteprima."; -App::$strings["Event title and start time are required."] = "Sono necessari il titolo e l'ora d'inizio dell'evento."; -App::$strings["Event not found."] = "Evento non trovato."; -App::$strings["event"] = "l'evento"; -App::$strings["Edit event title"] = "Modifica il titolo dell'evento"; -App::$strings["Event title"] = "Titolo dell'evento"; -App::$strings["Required"] = "Obbligatorio"; -App::$strings["Categories (comma-separated list)"] = "Categorie (separate da virgola)"; -App::$strings["Edit Category"] = "Modifica la categoria"; -App::$strings["Category"] = "Categoria"; -App::$strings["Edit start date and time"] = "Modifica data/ora di inizio"; -App::$strings["Start date and time"] = "Data e ora di inizio"; -App::$strings["Finish date and time are not known or not relevant"] = "La data e l'ora di fine non sono necessarie"; -App::$strings["Edit finish date and time"] = "Modifica data/ora di fine"; -App::$strings["Finish date and time"] = "Data e ora di fine"; -App::$strings["Adjust for viewer timezone"] = "Adatta al fuso orario di chi legge"; -App::$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."; -App::$strings["Edit Description"] = "Modifica la descrizione"; -App::$strings["Description"] = "Descrizione"; -App::$strings["Edit Location"] = "Modifica il luogo"; -App::$strings["Location"] = "Posizione geografica"; -App::$strings["Share this event"] = "Condividi questo evento"; -App::$strings["Preview"] = "Anteprima"; -App::$strings["Permission settings"] = "Permessi dei tuoi contatti"; -App::$strings["Advanced Options"] = "Opzioni avanzate"; -App::$strings["l, F j"] = "l j F"; -App::$strings["Edit event"] = "Modifica l'evento"; -App::$strings["Delete event"] = "Elimina l'evento"; -App::$strings["Link to Source"] = "Link al sito d'origine"; -App::$strings["calendar"] = "calendario"; -App::$strings["Edit Event"] = "Modifica l'evento"; -App::$strings["Create Event"] = "Crea un evento"; -App::$strings["Previous"] = "Precendente"; -App::$strings["Next"] = "Successivo"; -App::$strings["Export"] = "Esporta"; -App::$strings["View"] = "Guarda"; -App::$strings["Month"] = "Mese"; -App::$strings["Week"] = "Settimana"; -App::$strings["Day"] = "Giorno"; -App::$strings["Today"] = "Oggi"; -App::$strings["Event removed"] = "Evento eliminato"; -App::$strings["Failed to remove event"] = "Impossibile eliminare l'evento"; -App::$strings["Bookmark added"] = "Segnalibro aggiunto"; -App::$strings["My Bookmarks"] = "I miei segnalibri"; -App::$strings["My Connections Bookmarks"] = "I segnalibri dei miei contatti"; +App::$strings["Item not found."] = "Elemento non trovato."; App::$strings["Item not found"] = "Elemento non trovato"; -App::$strings["Item is not editable"] = "L'elemento non è modificabile"; -App::$strings["Edit post"] = "Modifica post"; -App::$strings["Photos"] = "Foto"; -App::$strings["Cancel"] = "Annulla"; -App::$strings["Invalid item."] = "Elemento non valido."; -App::$strings["Channel not found."] = "Canale non trovato."; -App::$strings["Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."] = "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."; -App::$strings["Save to Folder:"] = "Salva nella cartella:"; -App::$strings["- select -"] = "- scegli -"; -App::$strings["Save"] = "Salva"; +App::$strings["Title (optional)"] = "Titolo (facoltativo)"; +App::$strings["Edit Block"] = "Modifica il block"; +App::$strings["No channel."] = "Nessun canale."; +App::$strings["Common connections"] = "Contatti in comune"; +App::$strings["No connections in common."] = "Nessun contatto in comune."; App::$strings["Blocked"] = "Bloccati"; App::$strings["Ignored"] = "Ignorati"; App::$strings["Hidden"] = "Nascosti"; @@ -317,38 +254,51 @@ App::$strings["select a photo from your photo albums"] = "seleziona una foto dai App::$strings["Crop Image"] = "Ritaglia immagine"; App::$strings["Please adjust the image cropping for optimum viewing."] = "Ritaglia l'immagine per migliorarne la visualizzazione."; App::$strings["Done Editing"] = "Modifica terminata"; -App::$strings["webpage"] = "pagina web"; -App::$strings["block"] = "block"; -App::$strings["layout"] = "layout"; -App::$strings["menu"] = "menu"; -App::$strings["%s element installed"] = "%s elemento installato"; -App::$strings["%s element installation failed"] = "Elementi con installazione fallita: %s"; -App::$strings["Permissions denied."] = "Permesso negato."; -App::$strings["Import"] = "Importa"; +App::$strings["Item is not editable"] = "L'elemento non è modificabile"; +App::$strings["Edit post"] = "Modifica post"; +App::$strings["Calendar entries imported."] = "Le voci del calendario sono state importate."; +App::$strings["No calendar entries found."] = "Non sono state trovate voci del calendario."; +App::$strings["Event can not end before it has started."] = "Un evento non può terminare prima del suo inizio."; +App::$strings["Unable to generate preview."] = "Impossibile creare un'anteprima."; +App::$strings["Event title and start time are required."] = "Sono necessari il titolo e l'ora d'inizio dell'evento."; +App::$strings["Event not found."] = "Evento non trovato."; +App::$strings["event"] = "l'evento"; +App::$strings["Edit event title"] = "Modifica il titolo dell'evento"; +App::$strings["Event title"] = "Titolo dell'evento"; +App::$strings["Required"] = "Obbligatorio"; +App::$strings["Categories (comma-separated list)"] = "Categorie (separate da virgola)"; +App::$strings["Edit Category"] = "Modifica la categoria"; +App::$strings["Category"] = "Categoria"; +App::$strings["Edit start date and time"] = "Modifica data/ora di inizio"; +App::$strings["Start date and time"] = "Data e ora di inizio"; +App::$strings["Finish date and time are not known or not relevant"] = "La data e l'ora di fine non sono necessarie"; +App::$strings["Edit finish date and time"] = "Modifica data/ora di fine"; +App::$strings["Finish date and time"] = "Data e ora di fine"; +App::$strings["Adjust for viewer timezone"] = "Adatta al fuso orario di chi legge"; +App::$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."; +App::$strings["Edit Description"] = "Modifica la descrizione"; +App::$strings["Description"] = "Descrizione"; +App::$strings["Edit Location"] = "Modifica il luogo"; +App::$strings["Location"] = "Posizione geografica"; +App::$strings["Share this event"] = "Condividi questo evento"; +App::$strings["Preview"] = "Anteprima"; +App::$strings["Permission settings"] = "Permessi dei tuoi contatti"; +App::$strings["Advanced Options"] = "Opzioni avanzate"; +App::$strings["Edit event"] = "Modifica l'evento"; +App::$strings["Delete event"] = "Elimina l'evento"; +App::$strings["calendar"] = "calendario"; +App::$strings["Event removed"] = "Evento eliminato"; +App::$strings["Failed to remove event"] = "Impossibile eliminare l'evento"; +App::$strings["Photos"] = "Foto"; +App::$strings["Cancel"] = "Annulla"; App::$strings["This site is not a directory server"] = "Questo non è un directory server"; App::$strings["This directory server requires an access token"] = "Questo directory server necessita di un token di autenticazione"; -App::$strings["You must be logged in to see this page."] = "Devi aver effettuato l'accesso per vedere questa pagina."; -App::$strings["Room not found"] = "Chat non trovata"; -App::$strings["Leave Room"] = "Lascia la chat"; -App::$strings["Delete Room"] = "Elimina questa chat"; -App::$strings["I am away right now"] = "Non sono presente"; -App::$strings["I am online"] = "Sono online"; -App::$strings["Bookmark this room"] = "Aggiungi questa chat ai segnalibri"; -App::$strings["Please enter a link URL:"] = "Inserisci l'indirizzo del link:"; -App::$strings["Encrypt text"] = "Cifratura del messaggio"; -App::$strings["Insert web link"] = "Inserisci un indirizzo web"; -App::$strings["Feature disabled."] = "Funzionalità disattivata."; -App::$strings["New Chatroom"] = "Nuova chat"; -App::$strings["Chatroom name"] = "Nome chat"; -App::$strings["Expiration of chats (minutes)"] = "Scadenza dei messaggi della chat (minuti)"; -App::$strings["Permissions"] = "Permessi"; -App::$strings["%1\$s's Chatrooms"] = "Le chat di %1\$s"; -App::$strings["No chatrooms available"] = "Nessuna chat disponibile"; -App::$strings["Create New"] = "Crea nuova"; -App::$strings["Expiration"] = "Scadenza"; -App::$strings["min"] = "min"; +App::$strings["Save to Folder:"] = "Salva nella cartella:"; +App::$strings["- select -"] = "- scegli -"; +App::$strings["Save"] = "Salva"; App::$strings["Invalid message"] = "Messaggio non valido"; App::$strings["no results"] = "nessun risultato"; +App::$strings["Delivery report for %1\$s"] = "Rapporto di consegna - %1\$s"; App::$strings["channel sync processed"] = "sincronizzazione del canale effettuata"; App::$strings["queued"] = "in coda"; App::$strings["posted"] = "inviato"; @@ -360,14 +310,14 @@ App::$strings["recipient not found"] = "Destinatario non trovato"; App::$strings["mail recalled"] = "messaggio richiamato dal mittente"; App::$strings["duplicate mail received"] = "ricevuto messaggio duplicato"; App::$strings["mail delivered"] = "messaggio recapitato"; -App::$strings["Delivery report for %1\$s"] = "Rapporto di consegna - %1\$s"; -App::$strings["Options"] = "Opzioni"; -App::$strings["Redeliver"] = "Reinvia"; App::$strings["Layout Name"] = "Nome layout"; App::$strings["Layout Description (Optional)"] = "Descrizione del layout (facoltativa)"; App::$strings["Edit Layout"] = "Modifica il layout"; App::$strings["Page link"] = "Link alla pagina"; App::$strings["Edit Webpage"] = "Modifica la pagina web"; +App::$strings["Channel added."] = "Canale aggiunto."; +App::$strings["network"] = "rete"; +App::$strings["RSS"] = "RSS"; App::$strings["Privacy group created."] = "Gruppo di canali creato."; App::$strings["Could not create privacy group."] = "Impossibile creare il gruppo di canali."; App::$strings["Privacy group not found."] = "Gruppo di canali non trovato."; @@ -381,33 +331,16 @@ App::$strings["Privacy group editor"] = "Editor dei gruppi di canali"; App::$strings["Members"] = "Membri"; App::$strings["All Connected Channels"] = "Tutti i canali connessi"; App::$strings["Click on a channel to add or remove."] = "Clicca su un canale per aggiungerlo o rimuoverlo."; -App::$strings["App installed."] = "App installata"; -App::$strings["Malformed app."] = "L'app contiene errori"; -App::$strings["Embed code"] = "Inserisci il codice"; -App::$strings["Edit App"] = "Modifica app"; -App::$strings["Create App"] = "Crea una app"; -App::$strings["Name of app"] = "Nome app"; -App::$strings["Location (URL) of app"] = "Indirizzo (URL) della app"; -App::$strings["Photo icon URL"] = "URL icona"; -App::$strings["80 x 80 pixels - optional"] = "80 x 80 pixel - facoltativa"; -App::$strings["Categories (optional, comma separated list)"] = "Categorie (facoltative, lista separata da virgole)"; -App::$strings["Version ID"] = "ID versione"; -App::$strings["Price of app"] = "Prezzo app"; -App::$strings["Location (URL) to purchase app"] = "Indirizzo (URL) per acquistare la app"; +App::$strings["Share content from Firefox to \$Projectname"] = "Condividi i contenuti su \$Projectname da Firefox"; +App::$strings["Activate the Firefox \$Projectname provider"] = "Attiva Firefox Share per \$Projectname"; +App::$strings["Authorize application connection"] = "Autorizza la app"; +App::$strings["Return to your app and insert this Securty Code:"] = "Torna alla app e inserisci questo codice di sicurezza:"; +App::$strings["Please login to continue."] = "Accedi al sito per continuare."; +App::$strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Vuoi autorizzare questa app ad accedere ai messaggi e ai contatti o creare nuovi messaggi per te?"; App::$strings["Documentation Search"] = "Ricerca nella guida"; App::$strings["Help:"] = "Guida:"; App::$strings["Help"] = "Guida"; App::$strings["\$Projectname Documentation"] = "Guida di \$Projectname"; -App::$strings["Item not available."] = "Elemento non disponibile."; -App::$strings["Layout updated."] = "Layout aggiornato."; -App::$strings["Edit System Page Description"] = "Modifica i layout di sistema"; -App::$strings["Layout not found."] = "Layout non trovato."; -App::$strings["Module Name:"] = "Nome del modulo:"; -App::$strings["Layout Help"] = "Guida al layout"; -App::$strings["Share content from Firefox to \$Projectname"] = "Condividi i contenuti su \$Projectname da Firefox"; -App::$strings["Activate the Firefox \$Projectname provider"] = "Attiva Firefox Share per \$Projectname"; -App::$strings["network"] = "rete"; -App::$strings["RSS"] = "RSS"; App::$strings["Permission Denied."] = "Permesso negato."; App::$strings["File not found."] = "File non trovato."; App::$strings["Edit file permissions"] = "Modifica i permessi del file"; @@ -419,100 +352,8 @@ App::$strings["Copy/paste this URL to link file from a web page"] = "Copia/incol App::$strings["Share this file"] = "Condividi questo file"; App::$strings["Show URL to this file"] = "Mostra l'URL del file"; App::$strings["Notify your contacts about this file"] = "Notifica ai contatti che hai caricato questo file"; -App::$strings["Layouts"] = "Layout"; -App::$strings["Comanche page description language help"] = "Guida di Comanche Page Description Language"; -App::$strings["Layout Description"] = "Descrizione del layout"; -App::$strings["Created"] = "Creato"; -App::$strings["Edited"] = "Modificato"; -App::$strings["Share"] = "Condividi"; -App::$strings["Download PDL file"] = "Scarica il file PDL"; -App::$strings["Like/Dislike"] = "Mi piace/Non mi piace"; -App::$strings["This action is restricted to members."] = "Questa funzionalità è riservata agli iscritti."; -App::$strings["Please login with your \$Projectname ID or register as a new \$Projectname member to continue."] = "Per continuare devi accedere con il tuo identificativo \$Projectname o registrarti come nuovo utente \$Projectname."; -App::$strings["Invalid request."] = "Richiesta non valida."; -App::$strings["channel"] = "il canale"; -App::$strings["thing"] = "Oggetto"; -App::$strings["Channel unavailable."] = "Canale non trovato."; -App::$strings["Previous action reversed."] = "Il comando precedente è stato annullato."; -App::$strings["photo"] = "la foto"; -App::$strings["status"] = "il messaggio di stato"; -App::$strings["%1\$s likes %2\$s's %3\$s"] = "A %1\$s piace %3\$s di %2\$s"; -App::$strings["%1\$s doesn't like %2\$s's %3\$s"] = "A %1\$s non piace %3\$s di %2\$s"; -App::$strings["%1\$s agrees with %2\$s's %3\$s"] = "%3\$s di %2\$s: %1\$s è d'accordo"; -App::$strings["%1\$s doesn't agree with %2\$s's %3\$s"] = "%3\$s di %2\$s: %1\$s non è d'accordo"; -App::$strings["%1\$s abstains from a decision on %2\$s's %3\$s"] = "%3\$s di %2\$s: %1\$s non si esprime"; -App::$strings["%1\$s is attending %2\$s's %3\$s"] = "%3\$s di %2\$s: %1\$s partecipa"; -App::$strings["%1\$s is not attending %2\$s's %3\$s"] = "%3\$s di %2\$s: %1\$s non partecipa"; -App::$strings["%1\$s may attend %2\$s's %3\$s"] = "%3\$s di %2\$s: %1\$s forse partecipa"; -App::$strings["Action completed."] = "Comando completato."; -App::$strings["Thank you."] = "Grazie."; -App::$strings["Profile not found."] = "Profilo non trovato."; -App::$strings["Profile deleted."] = "Profilo eliminato."; -App::$strings["Profile-"] = "Profilo-"; -App::$strings["New profile created."] = "Il nuovo profilo è stato creato."; -App::$strings["Profile unavailable to clone."] = "Impossibile duplicare il profilo."; -App::$strings["Profile unavailable to export."] = "Il profilo non è disponibile per l'export."; -App::$strings["Profile Name is required."] = "Il nome del profilo è obbligatorio."; -App::$strings["Marital Status"] = "Stato sentimentale"; -App::$strings["Romantic Partner"] = "Partner affettivo"; -App::$strings["Likes"] = "Mi piace"; -App::$strings["Dislikes"] = "Non mi piace"; -App::$strings["Work/Employment"] = "Lavoro/impiego"; -App::$strings["Religion"] = "Religione"; -App::$strings["Political Views"] = "Orientamento politico"; -App::$strings["Sexual Preference"] = "Preferenze sessuali"; -App::$strings["Homepage"] = "Home page"; -App::$strings["Interests"] = "Interessi"; -App::$strings["Address"] = "Indirizzo"; -App::$strings["Profile updated."] = "Profilo aggiornato."; -App::$strings["Hide your connections list from viewers of this profile"] = "Nascondi la tua lista di contatti ai visitatori di questo profilo"; -App::$strings["Edit Profile Details"] = "Modifica i dettagli del profilo"; -App::$strings["View this profile"] = "Guarda questo profilo"; -App::$strings["Edit visibility"] = "Cambia la visibilità"; -App::$strings["Profile Tools"] = "Gestione del profilo"; -App::$strings["Change cover photo"] = "Cambia la copertina del canale"; -App::$strings["Change profile photo"] = "Cambia la foto del profilo"; -App::$strings["Create a new profile using these settings"] = "Crea un nuovo profilo usando queste impostazioni"; -App::$strings["Clone this profile"] = "Clona questo profilo"; -App::$strings["Delete this profile"] = "Elimina questo profilo"; -App::$strings["Add profile things"] = "Aggiungi oggetti al profilo"; -App::$strings["Personal"] = "Personali"; -App::$strings["Relation"] = "Relazione"; -App::$strings["Miscellaneous"] = "Altro"; -App::$strings["Import profile from file"] = "Importa il profilo da un file"; -App::$strings["Export profile to file"] = "Esporta il profilo in un file"; -App::$strings["Your gender"] = "Sesso"; -App::$strings["Marital status"] = "Stato civile"; -App::$strings["Sexual preference"] = "Preferenze sessuali"; -App::$strings["Profile name"] = "Nome del profilo"; -App::$strings["This is your default profile."] = "Questo è il tuo profilo predefinito."; -App::$strings["Your full name"] = "Il tuo nome completo"; -App::$strings["Title/Description"] = "Titolo/descrizione"; -App::$strings["Street address"] = "Indirizzo (via/piazza)"; -App::$strings["Locality/City"] = "Località"; -App::$strings["Region/State"] = "Regione/stato"; -App::$strings["Postal/Zip code"] = "CAP"; -App::$strings["Country"] = "Nazione"; -App::$strings["Who (if applicable)"] = "Con chi (se possibile)"; -App::$strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Per esempio: cathy123, Cathy Williams, cathy@example.com"; -App::$strings["Since (date)"] = "dal (data)"; -App::$strings["Tell us about yourself"] = "Raccontaci di te..."; -App::$strings["Hometown"] = "Città dove vivo"; -App::$strings["Political views"] = "Orientamento politico"; -App::$strings["Religious views"] = "Orientamento religioso"; -App::$strings["Keywords used in directory listings"] = "Parole chiavi mostrate nell'elenco dei canali"; -App::$strings["Example: fishing photography software"] = "Per esempio: pesca fotografia programmazione"; -App::$strings["Musical interests"] = "Interessi musicali"; -App::$strings["Books, literature"] = "Libri, letteratura"; -App::$strings["Television"] = "Televisione"; -App::$strings["Film/Dance/Culture/Entertainment"] = "Film, danza, cultura, intrattenimento"; -App::$strings["Hobbies/Interests"] = "Hobby/interessi"; -App::$strings["Love/Romance"] = "Amore"; -App::$strings["School/Education"] = "Scuola/educazione"; -App::$strings["Contact information and social networks"] = "Contatti e social network"; -App::$strings["My other channels"] = "I miei altri canali"; -App::$strings["Profile Image"] = "Immagine del profilo"; -App::$strings["Edit Profiles"] = "Modifica i tuoi profili"; +App::$strings["Apps"] = "App"; +App::$strings["Item not available."] = "Elemento non disponibile."; App::$strings["Your service plan only allows %d channels."] = "Il tuo account permette di creare al massimo %d canali."; App::$strings["Nothing to import."] = "Non c'è niente da importare."; App::$strings["Unable to download data from old server"] = "Impossibile importare i dati dal vecchio hub"; @@ -533,8 +374,6 @@ App::$strings["For either option, please choose whether to make this hub your ne App::$strings["Make this hub my primary location"] = "Rendi questo hub il mio indirizzo primario"; App::$strings["Import existing posts if possible (experimental - limited by available memory"] = "Importa i contenuti pubblicati, se possibile (sperimentale)"; App::$strings["This process may take several minutes to complete. Please submit the form only once and leave this page open until finished."] = "Questa funzione potrebbe impiegare molto tempo a terminare. Per favore lanciala *una volta sola* e resta su questa pagina finché non avrà finito."; -App::$strings["\$Projectname"] = "\$Projectname"; -App::$strings["Welcome to %s"] = "%s ti dà il benvenuto"; App::$strings["Unable to locate original post."] = "Impossibile trovare il messaggio originale."; App::$strings["Empty post discarded."] = "Il post vuoto è stato ignorato."; App::$strings["Executable content type not permitted to this channel."] = "I contenuti eseguibili non sono permessi su questo canale."; @@ -543,11 +382,234 @@ App::$strings["System error. Post not saved."] = "Errore di sistema. Post non sa App::$strings["Unable to obtain post information from database."] = "Impossibile caricare il post dal database."; App::$strings["You have reached your limit of %1$.0f top level posts."] = "Hai raggiunto il limite massimo di %1$.0f post sulla pagina principale."; App::$strings["You have reached your limit of %1$.0f webpages."] = "Hai raggiunto il limite massimo di %1$.0f pagine web."; +App::$strings["Layouts"] = "Layout"; +App::$strings["Comanche page description language help"] = "Guida di Comanche Page Description Language"; +App::$strings["Layout Description"] = "Descrizione del layout"; +App::$strings["Download PDL file"] = "Scarica il file PDL"; +App::$strings["\$Projectname"] = "\$Projectname"; +App::$strings["Welcome to %s"] = "%s ti dà il benvenuto"; +App::$strings["First Name"] = "Nome"; +App::$strings["Last Name"] = "Cognome"; +App::$strings["Nickname"] = "Nick"; +App::$strings["Full Name"] = "Nome e cognome"; +App::$strings["Email"] = "Email"; +App::$strings["Profile Photo"] = "Foto del profilo"; +App::$strings["Profile Photo 16px"] = "Foto del profilo 16px"; +App::$strings["Profile Photo 32px"] = "Foto del profilo 32px"; +App::$strings["Profile Photo 48px"] = "Foto del profilo 48px"; +App::$strings["Profile Photo 64px"] = "Foto del profilo 64px"; +App::$strings["Profile Photo 80px"] = "Foto del profilo 80px"; +App::$strings["Profile Photo 128px"] = "Foto del profilo 128px"; +App::$strings["Timezone"] = "Fuso orario"; +App::$strings["Homepage URL"] = "Indirizzo home page"; +App::$strings["Language"] = "Lingua"; +App::$strings["Birth Year"] = "Anno di nascita"; +App::$strings["Birth Month"] = "Mese di nascita"; +App::$strings["Birth Day"] = "Giorno di nascita"; +App::$strings["Birthdate"] = "Data di nascita"; +App::$strings["Gender"] = "Sesso"; +App::$strings["Male"] = "Maschio"; +App::$strings["Female"] = "Femmina"; +App::$strings["webpage"] = "pagina web"; +App::$strings["block"] = "block"; +App::$strings["layout"] = "layout"; +App::$strings["menu"] = "menu"; +App::$strings["%s element installed"] = "%s elemento installato"; +App::$strings["%s element installation failed"] = "Elementi con installazione fallita: %s"; +App::$strings["Like/Dislike"] = "Mi piace/Non mi piace"; +App::$strings["This action is restricted to members."] = "Questa funzionalità è riservata agli iscritti."; +App::$strings["Please login with your \$Projectname ID or register as a new \$Projectname member to continue."] = "Per continuare devi accedere con il tuo identificativo \$Projectname o registrarti come nuovo utente \$Projectname."; +App::$strings["Invalid request."] = "Richiesta non valida."; +App::$strings["channel"] = "il canale"; +App::$strings["thing"] = "Oggetto"; +App::$strings["Channel unavailable."] = "Canale non trovato."; +App::$strings["Previous action reversed."] = "Il comando precedente è stato annullato."; +App::$strings["photo"] = "la foto"; +App::$strings["status"] = "il messaggio di stato"; +App::$strings["%1\$s likes %2\$s's %3\$s"] = "A %1\$s piace %3\$s di %2\$s"; +App::$strings["%1\$s doesn't like %2\$s's %3\$s"] = "A %1\$s non piace %3\$s di %2\$s"; +App::$strings["%1\$s agrees with %2\$s's %3\$s"] = "%3\$s di %2\$s: %1\$s è d'accordo"; +App::$strings["%1\$s doesn't agree with %2\$s's %3\$s"] = "%3\$s di %2\$s: %1\$s non è d'accordo"; +App::$strings["%1\$s abstains from a decision on %2\$s's %3\$s"] = "%3\$s di %2\$s: %1\$s non si esprime"; +App::$strings["%1\$s is attending %2\$s's %3\$s"] = "%3\$s di %2\$s: %1\$s partecipa"; +App::$strings["%1\$s is not attending %2\$s's %3\$s"] = "%3\$s di %2\$s: %1\$s non partecipa"; +App::$strings["%1\$s may attend %2\$s's %3\$s"] = "%3\$s di %2\$s: %1\$s forse partecipa"; +App::$strings["Action completed."] = "Comando completato."; +App::$strings["Thank you."] = "Grazie."; +App::$strings["Import completed"] = "Importazione completata"; +App::$strings["Import Items"] = "Importa i contenuti"; +App::$strings["Use this form to import existing posts and content from an export file."] = "Usa questa funzionalità per importare i vecchi contenuti e i post da un file esportato in precedenza."; +App::$strings["Total invitation limit exceeded."] = "Hai superato il numero massimo di inviti."; +App::$strings["%s : Not a valid email address."] = "%s: non è un indirizzo email valido."; +App::$strings["Please join us on \$Projectname"] = "Unisciti a noi su \$Projectname"; +App::$strings["Invitation limit exceeded. Please contact your site administrator."] = "Hai superato il numero massimo di inviti. Contatta l'amministratore se necessario."; +App::$strings["%s : Message delivery failed."] = "%s: la consegna del messaggio è fallita."; +App::$strings["%d message sent."] = array( + 0 => "%d messaggio inviato.", + 1 => "%d messaggi inviati.", +); +App::$strings["You have no more invitations available"] = "Non hai altri inviti disponibili"; +App::$strings["Send invitations"] = "Spedisci inviti"; +App::$strings["Enter email addresses, one per line:"] = "Inserisci gli indirizzi email, uno per riga:"; +App::$strings["Your message:"] = "Il tuo messaggio:"; +App::$strings["Please join my community on \$Projectname."] = "Entra nella mia comunità su \$Projectname."; +App::$strings["You will need to supply this invitation code:"] = "Dovrai fornire questo codice invito:"; +App::$strings["1. Register at any \$Projectname location (they are all inter-connected)"] = "1. Registrati su qualsiasi server \$Projectname (sono tutti interconnessi)"; +App::$strings["2. Enter my \$Projectname network address into the site searchbar."] = "2. Inserisci il mio indirizzo \$Projectname nel riquadro di ricerca del sito."; +App::$strings["or visit"] = "oppure visita"; +App::$strings["3. Click [Connect]"] = "3. Clicca su [Aggiungi]"; +App::$strings["Remote privacy information not available."] = "Le informazioni remote sulla privacy non sono disponibili."; +App::$strings["Visible to:"] = "Visibile a:"; +App::$strings["Location not found."] = "Indirizzo non trovato."; +App::$strings["Location lookup failed."] = "La ricerca dell'indirizzo è fallita."; +App::$strings["Please select another location to become primary before removing the primary location."] = "Prima di rimuovere il tuo canale primario assicurati di avere scelto una sua copia (clone) come primaria."; +App::$strings["Syncing locations"] = "Sincronizzazione tra hub"; +App::$strings["No locations found."] = "Nessun indirizzo trovato."; +App::$strings["Manage Channel Locations"] = "Modifica gli indirizzi del canale"; +App::$strings["Address"] = "Indirizzo"; +App::$strings["Primary"] = "Primario"; +App::$strings["Drop"] = "Elimina"; +App::$strings["Sync Now"] = "Sincronizza ora"; +App::$strings["Please wait several minutes between consecutive operations."] = "Si raccomanda di attendere alcuni minuti prima di effettuare una nuova sincronizzazione."; +App::$strings["When possible, drop a location by logging into that website/hub and removing your channel."] = "Quando possibile, riduci il numero di cloni del tuo canale effettuando il login sul relativo hub e rimuovendoli."; +App::$strings["Use this form to drop the location if the hub is no longer operating."] = "Usa questo modulo per abbandonare un canale su un hub che non è più funzionante."; +App::$strings["Hub not found."] = "Hub non trovato."; +App::$strings["Unable to lookup recipient."] = "Impossibile associare un destinatario."; +App::$strings["Unable to communicate with requested channel."] = "Impossibile comunicare con il canale richiesto."; +App::$strings["Cannot verify requested channel."] = "Impossibile verificare il canale richiesto."; +App::$strings["Selected channel has private message restrictions. Send failed."] = "Il canale ha delle regole restrittive per la ricezione dei messaggi privati. Invio fallito."; +App::$strings["Messages"] = "Messaggi"; +App::$strings["Message recalled."] = "Messaggio revocato."; +App::$strings["Conversation removed."] = "Conversazione rimossa."; +App::$strings["Expires YYYY-MM-DD HH:MM"] = "Scade il YYYY-MM-DD HH:MM"; +App::$strings["Requested channel is not in this network"] = "Il canale cercato non è in questa rete"; +App::$strings["Send Private Message"] = "Invia un messaggio privato"; +App::$strings["To:"] = "A:"; +App::$strings["Subject:"] = "Oggetto:"; +App::$strings["Attach file"] = "Allega file"; +App::$strings["Send"] = "Invia"; +App::$strings["Set expiration date"] = "Data di scadenza"; +App::$strings["Delete message"] = "Elimina il messaggio"; +App::$strings["Delivery report"] = "Rapporto di trasmissione"; +App::$strings["Recall message"] = "Revoca il messaggio"; +App::$strings["Message has been recalled."] = "Il messaggio è stato revocato."; +App::$strings["Delete Conversation"] = "Elimina la conversazione"; +App::$strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Non è disponibile alcun modo sicuro di comunicare con questo canale. Se possibile, prova a rispondere direttamente dalla pagina del profilo del mittente."; +App::$strings["Send Reply"] = "Invia la risposta"; +App::$strings["Your message for %s (%s):"] = "Il tuo messaggio per %s (%s):"; +App::$strings["You have created %1$.0f of %2$.0f allowed channels."] = "Hai creato %1$.0f dei %2$.0f canali permessi."; +App::$strings["Create a new channel"] = "Crea un nuovo canale"; +App::$strings["Channel Manager"] = "Gestione canali"; +App::$strings["Current Channel"] = "Canale attuale"; +App::$strings["Switch to one of your channels by selecting it."] = "Seleziona l'altro canale a cui vuoi passare."; +App::$strings["Default Channel"] = "Canale predefinito"; +App::$strings["Make Default"] = "Rendi predefinito"; +App::$strings["%d new messages"] = "%d nuovi messaggi"; +App::$strings["%d new introductions"] = "%d nuove richieste di entrare in contatto"; +App::$strings["Delegated Channel"] = "Canale delegato"; +App::$strings["No valid account found."] = "Nessun account valido trovato."; +App::$strings["Password reset request issued. Check your email."] = "La richiesta per reimpostare la password è stata inviata. Controlla la tua email."; +App::$strings["Site Member (%s)"] = "Utente del sito (%s)"; +App::$strings["Password reset requested at %s"] = "È stato richiesto di reimpostare password su %s"; +App::$strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "La richiesta non può essere verificata (potresti averla già usata precedentemente). La password non sarà reimpostata."; +App::$strings["Password Reset"] = "Reimposta la password"; +App::$strings["Your password has been reset as requested."] = "La password è stata reimpostata come richiesto."; +App::$strings["Your new password is"] = "La tua nuova password è"; +App::$strings["Save or copy your new password - and then"] = "Salva o copia la tua nuova password, quindi"; +App::$strings["click here to login"] = "clicca qui per accedere"; +App::$strings["Your password may be changed from the Settings page after successful login."] = "Puoi cambiare la tua password dalla pagina delle Impostazioni dopo aver effettuato l'accesso."; +App::$strings["Your password has changed at %s"] = "La tua password su %s è cambiata"; +App::$strings["Forgot your Password?"] = "Hai dimenticato la password?"; +App::$strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Inserisci il tuo indirizzo email per reimpostare la password. Dopo aver inviato la richiesta, controlla l'email e troverai le istruzioni per continuare."; +App::$strings["Email Address"] = "Indirizzo email"; +App::$strings["Reset"] = "Reimposta"; +App::$strings["Unable to update menu."] = "Impossibile aggiornare il menù."; +App::$strings["Unable to create menu."] = "Impossibile creare il menù."; +App::$strings["Menu Name"] = "Nome del menu"; +App::$strings["Unique name (not visible on webpage) - required"] = "Nome unico (non visibile sulla pagina) - obbligatorio"; +App::$strings["Menu Title"] = "Titolo del menu"; +App::$strings["Visible on webpage - leave empty for no title"] = "Visibile sulla pagina - lascia vuoto per non avere un titolo"; +App::$strings["Allow Bookmarks"] = "Permetti i segnalibri"; +App::$strings["Menu may be used to store saved bookmarks"] = "Puoi salvare i segnalibri nei menù"; +App::$strings["Submit and proceed"] = "Salva e procedi"; +App::$strings["Menus"] = "Menù"; +App::$strings["Bookmarks allowed"] = "Permetti segnalibri"; +App::$strings["Delete this menu"] = "Elimina questo menù"; +App::$strings["Edit menu contents"] = "Modifica i contenuti del menù"; +App::$strings["Edit this menu"] = "Modifica questo menù"; +App::$strings["Menu could not be deleted."] = "Il menù non può essere eliminato."; +App::$strings["Menu not found."] = "Menù non trovato."; +App::$strings["Edit Menu"] = "Modifica menù"; +App::$strings["Add or remove entries to this menu"] = "Aggiungi o rimuovi elementi di questo menù"; +App::$strings["Menu name"] = "Nome del menù"; +App::$strings["Must be unique, only seen by you"] = "Deve essere unico, lo vedrai solo tu"; +App::$strings["Menu title"] = "Titolo del menù"; +App::$strings["Menu title as seen by others"] = "Titolo del menù come comparirà a tutti"; +App::$strings["Allow bookmarks"] = "Permetti l'invio di segnalibri"; +App::$strings["Not found."] = "Non trovato."; +App::$strings["__ctx:mood__ %1\$s is %2\$s"] = "%1\$s è %2\$s"; +App::$strings["Mood"] = "Umore"; +App::$strings["Set your current mood and tell your friends"] = "Scegli il tuo umore attuale per mostrarlo agli amici"; +App::$strings["Profile Match"] = "Profili corrispondenti"; +App::$strings["No keywords to match. Please add keywords to your default profile."] = "Non hai scritto parole chiave. Aggiungi parole chiave al tuo profilo predefinito per comparire nelle ricerche."; +App::$strings["is interested in:"] = "interessi personali:"; +App::$strings["No matches"] = "Nessun risultato"; +App::$strings["No such group"] = "Impossibile trovare il gruppo di canali"; +App::$strings["No such channel"] = "Canale sconosciuto"; +App::$strings["forum"] = "forum"; +App::$strings["Search Results For:"] = "Cerca risultati con:"; +App::$strings["Privacy group is empty"] = "Il gruppo di canali è vuoto"; +App::$strings["Privacy group: "] = "Gruppo di canali:"; +App::$strings["Invalid connection."] = "Contatto non valido."; +App::$strings["No more system notifications."] = "Non ci sono nuove notifiche di sistema."; +App::$strings["System Notifications"] = "Notifiche di sistema"; +App::$strings["Unable to create element."] = "Impossibile creare l'elemento."; +App::$strings["Unable to update menu element."] = "Non è possibile aggiornare l'elemento del menù."; +App::$strings["Unable to add menu element."] = "Impossibile aggiungere l'elemento al menù."; +App::$strings["Menu Item Permissions"] = "Permessi del menu"; +App::$strings["(click to open/close)"] = "(clicca per aprire/chiudere)"; +App::$strings["Link Name"] = "Nome link"; +App::$strings["Link or Submenu Target"] = "Azione del link o del sottomenu"; +App::$strings["Enter URL of the link or select a menu name to create a submenu"] = "Inserisci l'indirizzo del link o scegli il nome di un sottomenu"; +App::$strings["Use magic-auth if available"] = "Usa l'autenticazione tramite il tuo hub, se disponibile"; +App::$strings["Open link in new window"] = "Apri il link in una nuova finestra"; +App::$strings["Order in list"] = "Ordine dell'elenco"; +App::$strings["Higher numbers will sink to bottom of listing"] = "I numeri più alti andranno in fondo all'elenco"; +App::$strings["Submit and finish"] = "Salva e termina"; +App::$strings["Submit and continue"] = "Salva e continua"; +App::$strings["Menu:"] = "Menu:"; +App::$strings["Link Target"] = "Destinazione link"; +App::$strings["Edit menu"] = "Modifica il menù"; +App::$strings["Edit element"] = "Modifica l'elemento"; +App::$strings["Drop element"] = "Elimina l'elemento"; +App::$strings["New element"] = "Nuovo elemento"; +App::$strings["Edit this menu container"] = "Modifica il contenitore del menù"; +App::$strings["Add menu element"] = "Aggiungi un elemento al menù"; +App::$strings["Delete this menu item"] = "Elimina questo elemento del menù"; +App::$strings["Edit this menu item"] = "Modifica questo elemento del menù"; +App::$strings["Menu item not found."] = "L'elemento del menù non è stato trovato."; +App::$strings["Menu item deleted."] = "L'elemento del menù è stato eliminato."; +App::$strings["Menu item could not be deleted."] = "L'elemento del menù non può essere eliminato."; +App::$strings["Edit Menu Element"] = "Modifica l'elemento del menù"; +App::$strings["Link text"] = "Testo del link"; +App::$strings["Name or caption"] = "Nome o titolo"; +App::$strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\""] = "Per esempio: \"Mario Rossi\", \"Lisa e le sue ricette\", \"Il campionato\", \"Il gruppo di escursionismo\""; +App::$strings["Choose a short nickname"] = "Scegli un nome breve"; +App::$strings["Your nickname will be used to create an easy to remember channel address e.g. nickname%s"] = "Il nome breve sarà usato per creare un indirizzo facile da ricordare per il tuo canale, per esempio nickname%s"; +App::$strings["Channel role and privacy"] = "Tipo di canale e privacy"; +App::$strings["Select a channel role with your privacy requirements."] = "Scegli il tipo di canale che vuoi e la privacy da applicare."; +App::$strings["Read more about roles"] = "Maggiori informazioni sui ruoli"; +App::$strings["Create Channel"] = "Crea un canale"; +App::$strings["A channel is your identity on this network. It can represent a person, a blog, or a forum to name a few. Channels can make connections with other channels to share information with highly detailed permissions."] = "Un canale è la tua identità su questa rete. Può rappresentare una persona, un blog o un forum, per esempio. Il tuo canale può essere in contatto con altri canali per condividere contenuti con permessi anche molto dettagliati."; +App::$strings["or import an existing channel from another location."] = "oppure importa un canale esistente da un altro server/hub."; +App::$strings["Invalid request identifier."] = "L'identificativo della richiesta non è valido."; +App::$strings["Discard"] = "Rifiuta"; +App::$strings["Mark all system notifications seen"] = "Segna come lette le notifiche di sistema"; App::$strings["Page owner information could not be retrieved."] = "Impossibile ottenere informazioni sul proprietario della pagina."; App::$strings["Profile Photos"] = "Foto del profilo"; App::$strings["Album not found."] = "Album non trovato."; App::$strings["Delete Album"] = "Elimina album"; -App::$strings["Multiple storage folders exist with this album name, but within different directories. Please remove the desired folder or folders using the Files manager"] = "Esistono più archivi con il nome di quest'album, ma dentro cartelle diverse. Per favore effettua la rimozione dall'Archivio file "; +App::$strings["Multiple storage folders exist with this album name, but within different directories. Please remove the desired folder or folders using the Files manager"] = "Esistono più archivi con il nome di quest'album, ma dentro cartelle diverse. Per favore rimuovili dall'Archivio file "; App::$strings["Delete Photo"] = "Elimina foto"; App::$strings["No photos selected"] = "Nessuna foto selezionata"; App::$strings["Access to this item is restricted."] = "Questo elemento non è visibile a tutti."; @@ -603,7 +665,7 @@ App::$strings["__ctx:noun__ Dislike"] = array( 0 => "Non mi piace", 1 => "Non mi piace", ); -App::$strings["Photo Tools"] = "Gestione foto"; +App::$strings["Photo Tools"] = "Gestione delle foto"; App::$strings["In This Photo:"] = "In questa foto:"; App::$strings["Map"] = "Mappa"; App::$strings["__ctx:noun__ Likes"] = "Mi piace"; @@ -611,164 +673,122 @@ App::$strings["__ctx:noun__ Dislikes"] = "Non mi piace"; App::$strings["Close"] = "Chiudi"; App::$strings["View Album"] = "Guarda l'album"; App::$strings["Recent Photos"] = "Foto recenti"; -App::$strings["Remote privacy information not available."] = "Le informazioni remote sulla privacy non sono disponibili."; -App::$strings["Visible to:"] = "Visibile a:"; -App::$strings["Import completed"] = "Importazione completata"; -App::$strings["Import Items"] = "Importa i contenuti"; -App::$strings["Use this form to import existing posts and content from an export file."] = "Usa questa funzionalità per importare i vecchi contenuti e i post da un file esportato in precedenza."; -App::$strings["Total invitation limit exceeded."] = "Hai superato il numero massimo di inviti."; -App::$strings["%s : Not a valid email address."] = "%s: non è un indirizzo email valido."; -App::$strings["Please join us on \$Projectname"] = "Unisciti a noi su \$Projectname"; -App::$strings["Invitation limit exceeded. Please contact your site administrator."] = "Hai superato il numero massimo di inviti. Contatta l'amministratore se necessario."; -App::$strings["%s : Message delivery failed."] = "%s: la consegna del messaggio è fallita."; -App::$strings["%d message sent."] = array( - 0 => "%d messaggio inviato.", - 1 => "%d messaggi inviati.", -); -App::$strings["You have no more invitations available"] = "Non hai altri inviti disponibili"; -App::$strings["Send invitations"] = "Spedisci inviti"; -App::$strings["Enter email addresses, one per line:"] = "Inserisci gli indirizzi email, uno per riga:"; -App::$strings["Your message:"] = "Il tuo messaggio:"; -App::$strings["Please join my community on \$Projectname."] = "Entra nella mia comunità su \$Projectname."; -App::$strings["You will need to supply this invitation code:"] = "Dovrai fornire questo codice invito:"; -App::$strings["1. Register at any \$Projectname location (they are all inter-connected)"] = "1. Registrati su qualsiasi server \$Projectname (sono tutti interconnessi)"; -App::$strings["2. Enter my \$Projectname network address into the site searchbar."] = "2. Inserisci il mio indirizzo \$Projectname nel riquadro di ricerca del sito."; -App::$strings["or visit"] = "oppure visita"; -App::$strings["3. Click [Connect]"] = "3. Clicca su [Aggiungi]"; -App::$strings["Location not found."] = "Indirizzo non trovato."; -App::$strings["Location lookup failed."] = "La ricerca dell'indirizzo è fallita."; -App::$strings["Please select another location to become primary before removing the primary location."] = "Prima di rimuovere il tuo canale primario assicurati di avere scelto una sua copia (clone) come primaria."; -App::$strings["Syncing locations"] = "Sincronizzazione tra hub"; -App::$strings["No locations found."] = "Nessun indirizzo trovato."; -App::$strings["Manage Channel Locations"] = "Modifica gli indirizzi del canale"; -App::$strings["Primary"] = "Primario"; -App::$strings["Drop"] = "Elimina"; -App::$strings["Sync Now"] = "Sincronizza ora"; -App::$strings["Please wait several minutes between consecutive operations."] = "Si raccomanda di attendere alcuni minuti prima di effettuare una nuova sincronizzazione."; -App::$strings["When possible, drop a location by logging into that website/hub and removing your channel."] = "Quando possibile, riduci il numero di cloni del tuo canale effettuando il login sul relativo hub e rimuovendoli."; -App::$strings["Use this form to drop the location if the hub is no longer operating."] = "Usa questo modulo per abbandonare un canale su un hub che non è più funzionante."; -App::$strings["Hub not found."] = "Hub non trovato."; -App::$strings["Unable to lookup recipient."] = "Impossibile associare un destinatario."; -App::$strings["Unable to communicate with requested channel."] = "Impossibile comunicare con il canale richiesto."; -App::$strings["Cannot verify requested channel."] = "Impossibile verificare il canale richiesto."; -App::$strings["Selected channel has private message restrictions. Send failed."] = "Il canale ha delle regole restrittive per la ricezione dei messaggi privati. Invio fallito."; -App::$strings["Messages"] = "Messaggi"; -App::$strings["Message recalled."] = "Messaggio revocato."; -App::$strings["Conversation removed."] = "Conversazione rimossa."; -App::$strings["Expires YYYY-MM-DD HH:MM"] = "Scade il YYYY-MM-DD HH:MM"; -App::$strings["Requested channel is not in this network"] = "Il canale cercato non è in questa rete"; -App::$strings["Send Private Message"] = "Invia un messaggio privato"; -App::$strings["To:"] = "A:"; -App::$strings["Subject:"] = "Oggetto:"; -App::$strings["Attach file"] = "Allega file"; -App::$strings["Send"] = "Invia"; -App::$strings["Set expiration date"] = "Data di scadenza"; -App::$strings["Delete message"] = "Elimina il messaggio"; -App::$strings["Delivery report"] = "Rapporto di trasmissione"; -App::$strings["Recall message"] = "Revoca il messaggio"; -App::$strings["Message has been recalled."] = "Il messaggio è stato revocato."; -App::$strings["Delete Conversation"] = "Elimina la conversazione"; -App::$strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Non è disponibile alcun modo sicuro di comunicare con questo canale. Se possibile, prova a rispondere direttamente dalla pagina del profilo del mittente."; -App::$strings["Send Reply"] = "Invia la risposta"; -App::$strings["Your message for %s (%s):"] = "Il tuo messaggio per %s (%s):"; -App::$strings["You have created %1$.0f of %2$.0f allowed channels."] = "Hai creato %1$.0f dei %2$.0f canali permessi."; -App::$strings["Create a new channel"] = "Crea un nuovo canale"; -App::$strings["Channel Manager"] = "Gestione canali"; -App::$strings["Current Channel"] = "Canale attuale"; -App::$strings["Switch to one of your channels by selecting it."] = "Seleziona l'altro canale a cui vuoi passare."; -App::$strings["Default Channel"] = "Canale predefinito"; -App::$strings["Make Default"] = "Rendi predefinito"; -App::$strings["%d new messages"] = "%d nuovi messaggi"; -App::$strings["%d new introductions"] = "%d nuove richieste di entrare in contatto"; -App::$strings["Delegated Channel"] = "Canale delegato"; -App::$strings["Unable to update menu."] = "Impossibile aggiornare il menù."; -App::$strings["Unable to create menu."] = "Impossibile creare il menù."; -App::$strings["Menu Name"] = "Nome del menu"; -App::$strings["Unique name (not visible on webpage) - required"] = "Nome unico (non visibile sulla pagina) - obbligatorio"; -App::$strings["Menu Title"] = "Titolo del menu"; -App::$strings["Visible on webpage - leave empty for no title"] = "Visibile sulla pagina - lascia vuoto per non avere un titolo"; -App::$strings["Allow Bookmarks"] = "Permetti i segnalibri"; -App::$strings["Menu may be used to store saved bookmarks"] = "Puoi salvare i segnalibri nei menù"; -App::$strings["Submit and proceed"] = "Salva e procedi"; -App::$strings["Menus"] = "Menù"; -App::$strings["Bookmarks allowed"] = "Permetti segnalibri"; -App::$strings["Delete this menu"] = "Elimina questo menù"; -App::$strings["Edit menu contents"] = "Modifica i contenuti del menù"; -App::$strings["Edit this menu"] = "Modifica questo menù"; -App::$strings["Menu could not be deleted."] = "Il menù non può essere eliminato."; -App::$strings["Menu not found."] = "Menù non trovato."; -App::$strings["Edit Menu"] = "Modifica menù"; -App::$strings["Add or remove entries to this menu"] = "Aggiungi o rimuovi elementi di questo menù"; -App::$strings["Menu name"] = "Nome del menù"; -App::$strings["Must be unique, only seen by you"] = "Deve essere unico, lo vedrai solo tu"; -App::$strings["Menu title"] = "Titolo del menù"; -App::$strings["Menu title as seen by others"] = "Titolo del menù come comparirà a tutti"; -App::$strings["Allow bookmarks"] = "Permetti l'invio di segnalibri"; -App::$strings["Not found."] = "Non trovato."; -App::$strings["No valid account found."] = "Nessun account valido trovato."; -App::$strings["Password reset request issued. Check your email."] = "La richiesta per reimpostare la password è stata inviata. Controlla la tua email."; -App::$strings["Site Member (%s)"] = "Utente del sito (%s)"; -App::$strings["Password reset requested at %s"] = "È stato richiesto di reimpostare password su %s"; -App::$strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "La richiesta non può essere verificata (potresti averla già usata precedentemente). La password non sarà reimpostata."; -App::$strings["Password Reset"] = "Reimposta la password"; -App::$strings["Your password has been reset as requested."] = "La password è stata reimpostata come richiesto."; -App::$strings["Your new password is"] = "La tua nuova password è"; -App::$strings["Save or copy your new password - and then"] = "Salva o copia la tua nuova password, quindi"; -App::$strings["click here to login"] = "clicca qui per accedere"; -App::$strings["Your password may be changed from the Settings page after successful login."] = "Puoi cambiare la tua password dalla pagina delle Impostazioni dopo aver effettuato l'accesso."; -App::$strings["Your password has changed at %s"] = "La tua password su %s è cambiata"; -App::$strings["Forgot your Password?"] = "Hai dimenticato la password?"; -App::$strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Inserisci il tuo indirizzo email per reimpostare la password. Dopo aver inviato la richiesta, controlla l'email e troverai le istruzioni per continuare."; -App::$strings["Email Address"] = "Indirizzo email"; -App::$strings["Reset"] = "Reimposta"; -App::$strings["__ctx:mood__ %1\$s is %2\$s"] = "%1\$s è %2\$s"; -App::$strings["Mood"] = "Umore"; -App::$strings["Set your current mood and tell your friends"] = "Scegli il tuo umore attuale per mostrarlo agli amici"; -App::$strings["No such group"] = "Impossibile trovare il gruppo di canali"; -App::$strings["No such channel"] = "Canale sconosciuto"; -App::$strings["forum"] = "forum"; -App::$strings["Search Results For:"] = "Cerca risultati con:"; -App::$strings["Privacy group is empty"] = "Il gruppo di canali è vuoto"; -App::$strings["Privacy group: "] = "Gruppo di canali:"; -App::$strings["Invalid connection."] = "Contatto non valido."; -App::$strings["No more system notifications."] = "Non ci sono nuove notifiche di sistema."; -App::$strings["System Notifications"] = "Notifiche di sistema"; -App::$strings["Profile Match"] = "Profili corrispondenti"; -App::$strings["No keywords to match. Please add keywords to your default profile."] = "Non hai scritto parole chiave. Aggiungi parole chiave al tuo profilo predefinito per comparire nelle ricerche."; -App::$strings["is interested in:"] = "interessi personali:"; -App::$strings["No matches"] = "Nessun risultato"; -App::$strings["Posts and comments"] = "Post e commenti"; -App::$strings["Only posts"] = "Solo post"; -App::$strings["Insufficient permissions. Request redirected to profile page."] = "Permessi insufficienti. Sarà visualizzata la pagina del profilo."; -App::$strings["Unable to create element."] = "Impossibile creare l'elemento."; -App::$strings["Unable to update menu element."] = "Non è possibile aggiornare l'elemento del menù."; -App::$strings["Unable to add menu element."] = "Impossibile aggiungere l'elemento al menù."; -App::$strings["Menu Item Permissions"] = "Permessi del menu"; -App::$strings["(click to open/close)"] = "(clicca per aprire/chiudere)"; -App::$strings["Link Name"] = "Nome link"; -App::$strings["Link or Submenu Target"] = "Azione del link o del sottomenu"; -App::$strings["Enter URL of the link or select a menu name to create a submenu"] = "Inserisci l'indirizzo del link o scegli il nome di un sottomenu"; -App::$strings["Use magic-auth if available"] = "Usa l'autenticazione tramite il tuo hub, se disponibile"; -App::$strings["Open link in new window"] = "Apri il link in una nuova finestra"; -App::$strings["Order in list"] = "Ordine dell'elenco"; -App::$strings["Higher numbers will sink to bottom of listing"] = "I numeri più alti andranno in fondo all'elenco"; -App::$strings["Submit and finish"] = "Salva e termina"; -App::$strings["Submit and continue"] = "Salva e continua"; -App::$strings["Menu:"] = "Menu:"; -App::$strings["Link Target"] = "Destinazione link"; -App::$strings["Edit menu"] = "Modifica il menù"; -App::$strings["Edit element"] = "Modifica l'elemento"; -App::$strings["Drop element"] = "Elimina l'elemento"; -App::$strings["New element"] = "Nuovo elemento"; -App::$strings["Edit this menu container"] = "Modifica il contenitore del menù"; -App::$strings["Add menu element"] = "Aggiungi un elemento al menù"; -App::$strings["Delete this menu item"] = "Elimina questo elemento del menù"; -App::$strings["Edit this menu item"] = "Modifica questo elemento del menù"; -App::$strings["Menu item not found."] = "L'elemento del menù non è stato trovato."; -App::$strings["Menu item deleted."] = "L'elemento del menù è stato eliminato."; -App::$strings["Menu item could not be deleted."] = "L'elemento del menù non può essere eliminato."; -App::$strings["Edit Menu Element"] = "Modifica l'elemento del menù"; -App::$strings["Link text"] = "Testo del link"; +App::$strings["sent you a private message"] = "ti ha inviato un messaggio privato"; +App::$strings["added your channel"] = "ha aggiunto il tuo canale"; +App::$strings["g A l F d"] = "g A l d F"; +App::$strings["[today]"] = "[oggi]"; +App::$strings["posted an event"] = "ha creato un evento"; +App::$strings["Unable to find your hub."] = "Impossibile raggiungere il tuo hub."; +App::$strings["Post successful."] = "Inviato!"; +App::$strings["OpenID protocol error. No ID returned."] = "Errore del protocollo OpenID. Nessun ID ricevuto in risposta."; +App::$strings["Login failed."] = "Accesso fallito."; +App::$strings["Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."] = "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."; +App::$strings["This setting requires special processing and editing has been blocked."] = "Questa impostazione è bloccata, richiede criteri di modifica speciali"; +App::$strings["Configuration Editor"] = "Editor di configurazione"; +App::$strings["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."] = "Attenzione: alcune delle impostazioni, se cambiate, potrebbero rendere questo canale non funzionante. Lascia questa pagina a meno che tu non sappia con assoluta certezza quali modifiche effettuare."; +App::$strings["Layout updated."] = "Layout aggiornato."; +App::$strings["Edit System Page Description"] = "Modifica i layout di sistema"; +App::$strings["Layout not found."] = "Layout non trovato."; +App::$strings["Module Name:"] = "Nome del modulo:"; +App::$strings["Layout Help"] = "Guida al layout"; +App::$strings["Poke"] = "Poke"; +App::$strings["Poke somebody"] = "Manda un poke"; +App::$strings["Poke/Prod"] = "Poke/Prod"; +App::$strings["Poke, prod or do other things to somebody"] = "Manda un poke o altro a qualcuno"; +App::$strings["Recipient"] = "Destinatario"; +App::$strings["Choose what you wish to do to recipient"] = "Scegli cosa vuoi inviare al destinatario"; +App::$strings["Make this post private"] = "Rendi privato questo post"; +App::$strings["Fetching URL returns error: %1\$s"] = "La chiamata all'URL restituisce questo errore: %1\$s"; +App::$strings["Profile not found."] = "Profilo non trovato."; +App::$strings["Profile deleted."] = "Profilo eliminato."; +App::$strings["Profile-"] = "Profilo-"; +App::$strings["New profile created."] = "Il nuovo profilo è stato creato."; +App::$strings["Profile unavailable to clone."] = "Impossibile duplicare il profilo."; +App::$strings["Profile unavailable to export."] = "Il profilo non è disponibile per l'export."; +App::$strings["Profile Name is required."] = "Il nome del profilo è obbligatorio."; +App::$strings["Marital Status"] = "Stato sentimentale"; +App::$strings["Romantic Partner"] = "Partner affettivo"; +App::$strings["Likes"] = "Mi piace"; +App::$strings["Dislikes"] = "Non mi piace"; +App::$strings["Work/Employment"] = "Lavoro/impiego"; +App::$strings["Religion"] = "Religione"; +App::$strings["Political Views"] = "Orientamento politico"; +App::$strings["Sexual Preference"] = "Preferenze sessuali"; +App::$strings["Homepage"] = "Home page"; +App::$strings["Interests"] = "Interessi"; +App::$strings["Profile updated."] = "Profilo aggiornato."; +App::$strings["Hide your connections list from viewers of this profile"] = "Nascondi la tua lista di contatti ai visitatori di questo profilo"; +App::$strings["Edit Profile Details"] = "Modifica i dettagli del profilo"; +App::$strings["View this profile"] = "Guarda questo profilo"; +App::$strings["Edit visibility"] = "Cambia la visibilità"; +App::$strings["Profile Tools"] = "Gestione del profilo"; +App::$strings["Change cover photo"] = "Cambia la copertina del canale"; +App::$strings["Change profile photo"] = "Cambia la foto del profilo"; +App::$strings["Create a new profile using these settings"] = "Crea un nuovo profilo usando queste impostazioni"; +App::$strings["Clone this profile"] = "Clona questo profilo"; +App::$strings["Delete this profile"] = "Elimina questo profilo"; +App::$strings["Add profile things"] = "Aggiungi oggetti al profilo"; +App::$strings["Personal"] = "Personali"; +App::$strings["Relation"] = "Relazione"; +App::$strings["Miscellaneous"] = "Altro"; +App::$strings["Import profile from file"] = "Importa il profilo da un file"; +App::$strings["Export profile to file"] = "Esporta il profilo in un file"; +App::$strings["Your gender"] = "Sesso"; +App::$strings["Marital status"] = "Stato civile"; +App::$strings["Sexual preference"] = "Preferenze sessuali"; +App::$strings["Profile name"] = "Nome del profilo"; +App::$strings["This is your default profile."] = "Questo è il tuo profilo predefinito."; +App::$strings["Your full name"] = "Il tuo nome completo"; +App::$strings["Title/Description"] = "Titolo/descrizione"; +App::$strings["Street address"] = "Indirizzo (via/piazza)"; +App::$strings["Locality/City"] = "Località"; +App::$strings["Region/State"] = "Regione/stato"; +App::$strings["Postal/Zip code"] = "CAP"; +App::$strings["Country"] = "Nazione"; +App::$strings["Who (if applicable)"] = "Con chi (se possibile)"; +App::$strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Per esempio: cathy123, Cathy Williams, cathy@example.com"; +App::$strings["Since (date)"] = "dal (data)"; +App::$strings["Tell us about yourself"] = "Raccontaci di te..."; +App::$strings["Hometown"] = "Città dove vivo"; +App::$strings["Political views"] = "Orientamento politico"; +App::$strings["Religious views"] = "Orientamento religioso"; +App::$strings["Keywords used in directory listings"] = "Parole chiavi mostrate nell'elenco dei canali"; +App::$strings["Example: fishing photography software"] = "Per esempio: pesca fotografia programmazione"; +App::$strings["Musical interests"] = "Interessi musicali"; +App::$strings["Books, literature"] = "Libri, letteratura"; +App::$strings["Television"] = "Televisione"; +App::$strings["Film/Dance/Culture/Entertainment"] = "Film, danza, cultura, intrattenimento"; +App::$strings["Hobbies/Interests"] = "Hobby/interessi"; +App::$strings["Love/Romance"] = "Amore"; +App::$strings["School/Education"] = "Scuola/educazione"; +App::$strings["Contact information and social networks"] = "Contatti e social network"; +App::$strings["My other channels"] = "I miei altri canali"; +App::$strings["Profile Image"] = "Immagine del profilo"; +App::$strings["Edit Profiles"] = "Modifica i tuoi profili"; +App::$strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Forza l'aggiornamento della pagina o cancella la cache del browser se la nuova foto non viene visualizzata immediatamente."; +App::$strings["Upload Profile Photo"] = "Carica la foto del profilo"; +App::$strings["Invalid profile identifier."] = "Indentificativo del profilo non valido."; +App::$strings["Profile Visibility Editor"] = "Modifica la visibilità del profilo"; +App::$strings["Profile"] = "Profilo"; +App::$strings["Click on a contact to add or remove."] = "Clicca su un contatto per aggiungerlo o rimuoverlo."; +App::$strings["Visible To"] = "Visibile a"; +App::$strings["Public Hubs"] = "Hub pubblici"; +App::$strings["The listed hubs allow public registration for the \$Projectname network. All hubs in the network are interlinked so membership on any of them conveys membership in the network as a whole. Some hubs may require subscription or provide tiered service plans. The hub itself may provide additional details."] = "I siti elencati permettono la registrazione libera sulla rete \$Projectname. Tutti questi hub sono interconnessi, quindi essere iscritti su uno equivale a una registrazione su tutta la rete. Alcuni siti potrebbero richiedere un abbonamento o dei servizi a pagamento. Per maggiori dettagli visita gli indirizzi nell'elenco."; +App::$strings["Hub URL"] = "URL del hub"; +App::$strings["Access Type"] = "Tipo di accesso"; +App::$strings["Registration Policy"] = "Politica di registrazione"; +App::$strings["Stats"] = ""; +App::$strings["Software"] = "Software"; +App::$strings["Ratings"] = "Valutazioni"; +App::$strings["Rate"] = "Valuta"; +App::$strings["Website:"] = "Sito web:"; +App::$strings["Remote Channel [%s] (not yet known on this site)"] = "Canale remoto [%s] (non ancora conosciuto da questo sito)"; +App::$strings["Rating (this information is public)"] = "Valutazione (visibile a tutti)"; +App::$strings["Optionally explain your rating (this information is public)"] = "Commento alla valutazione (facoltativo, visibile a tutti)"; +App::$strings["No ratings"] = "Nessuna valutazione"; +App::$strings["Rating: "] = "Valutazione:"; +App::$strings["Website: "] = "Sito web:"; +App::$strings["Description: "] = "Descrizione:"; App::$strings["Theme settings updated."] = "Le impostazioni del tema sono state aggiornate."; App::$strings["# Accounts"] = "# account"; App::$strings["# blocked accounts"] = "# account bloccati"; @@ -778,7 +798,7 @@ App::$strings["# Channels"] = "# canali"; App::$strings["# primary"] = "# primari"; App::$strings["# clones"] = "# cloni"; App::$strings["Message queues"] = "Coda messaggi in uscita"; -App::$strings["Your software should be updated"] = "Il tuo software necessita di un aggiornamento"; +App::$strings["Your software should be updated"] = "Il tuo software ha bisogno di essere aggiornato"; App::$strings["Administration"] = "Amministrazione"; App::$strings["Summary"] = "Riepilogo"; App::$strings["Registered accounts"] = "Account creati"; @@ -843,7 +863,7 @@ App::$strings["Import and allow access to public content pulled from other sites App::$strings["Login on Homepage"] = "Login sulla homepage"; App::$strings["Present a login box to visitors on the home page if no other content has been configured."] = "Presenta il modulo di login ai visitatori sulla homepage in mancanza di altri contenuti."; App::$strings["Enable context help"] = "Abilita la guida contestuale"; -App::$strings["Display contextual help for the current page when the help button is pressed."] = "Quando è premuto, il bottone della guida mostra quella relativa alla pagina corrente"; +App::$strings["Display contextual help for the current page when the help button is pressed."] = "Quando è premuto il bottone della guida mostra quella della pagina corrente"; App::$strings["Directory Server URL"] = "URL del directory server"; App::$strings["Default directory server"] = "Directory server predefinito"; App::$strings["Proxy user"] = "Utente proxy"; @@ -869,24 +889,24 @@ App::$strings["ID"] = "ID"; App::$strings["for channel"] = "per il canale"; App::$strings["on server"] = "sul server"; App::$strings["Server"] = "Server"; -App::$strings["By default, unfiltered HTML is allowed in embedded media. This is inherently insecure."] = "Il codice HTML degli oggetti multimediali incorporati nei post è consentito. Questo tipo di impostazione è insicura."; -App::$strings["The recommended setting is to only allow unfiltered HTML from the following sites:"] = "L'impostazione consigliata è di permettere HTML non filtrato solo dai seguenti siti:"; +App::$strings["By default, unfiltered HTML is allowed in embedded media. This is inherently insecure."] = ""; +App::$strings["The recommended setting is to only allow unfiltered HTML from the following sites:"] = "L'impostazione consigliata è di permettere HTML non filtrato solo dai siti seguenti:"; App::$strings["https://youtube.com/
https://www.youtube.com/
https://youtu.be/
https://vimeo.com/
https://soundcloud.com/
"] = "https://youtube.com/
https://www.youtube.com/
https://youtu.be/
https://vimeo.com/
https://soundcloud.com/
"; -App::$strings["All other embedded content will be filtered, unless embedded content from that site is explicitly blocked."] = "Tutti gli altri contenuti incorporati saranno filtrati a meno che il contenuto incorporato di quel sito non sia esplicitamente bloccato."; +App::$strings["All other embedded content will be filtered, unless embedded content from that site is explicitly blocked."] = "Tutti gli altri contenuti incorporati saranno filtrati a meno che il contenuto incorporato di quel sito non venga esplicitamente bloccato."; App::$strings["Security"] = "Sicurezza"; App::$strings["Block public"] = "Blocca pagine pubbliche"; App::$strings["Check to block public access to all otherwise public personal pages on this site unless you are currently authenticated."] = "Seleziona per impedire di vedere le pagine personali di questo sito a chi non ha effettuato l'accesso."; -App::$strings["Set \"Transport Security\" HTTP header"] = "Imposta il \"Transport Security\" HTTP header"; -App::$strings["Set \"Content Security Policy\" HTTP header"] = "Imposta il \"Content Security Policy\" HTTP header"; +App::$strings["Set \"Transport Security\" HTTP header"] = ""; +App::$strings["Set \"Content Security Policy\" HTTP header"] = ""; App::$strings["Allow communications only from these sites"] = "Permetti la comunicazione solo da questi siti"; App::$strings["One site per line. Leave empty to allow communication from anywhere by default"] = "Un sito per riga. Lascia vuoto per permettere la comunicazione con tutti"; App::$strings["Block communications from these sites"] = "Blocca la comunicazione da questi siti"; App::$strings["Allow communications only from these channels"] = "Permetti la comunicazione solo da questi canali"; App::$strings["One channel (hash) per line. Leave empty to allow from any channel by default"] = "Un canale (hash) per riga. Lascia vuoto per comunicare con tutti i canali"; App::$strings["Block communications from these channels"] = "Blocca la comunicazione da questi canali"; -App::$strings["Only allow embeds from secure (SSL) websites and links."] = "Permetti di incorporare contenuti solamente da siti sicuri (SSL)."; -App::$strings["Allow unfiltered embedded HTML content only from these domains"] = "Incorpora i contenuti HTML non filtrati solo da questi domini"; -App::$strings["One site per line. By default embedded content is filtered."] = "Un sito per riga. Normalmente i contenuti incorporati sono filtrati."; +App::$strings["Only allow embeds from secure (SSL) websites and links."] = ""; +App::$strings["Allow unfiltered embedded HTML content only from these domains"] = ""; +App::$strings["One site per line. By default embedded content is filtered."] = ""; App::$strings["Block embedded HTML from these domains"] = "Blocca i contenuti incorporati HTML da questi domini"; App::$strings["Update has been marked successful"] = "L'aggiornamento è stato marcato come eseguito."; App::$strings["Executing %s failed. Check system logs."] = "Fallita l'esecuzione di %s. Maggiori informazioni sui log di sistema."; @@ -918,7 +938,7 @@ App::$strings["Account '%s' blocked"] = "Aggiunto un blocco verso '%s'"; App::$strings["Account '%s' unblocked"] = "Rimosso il blocco verso '%s'"; App::$strings["Accounts"] = "Account"; App::$strings["select all"] = "seleziona tutti"; -App::$strings["Registrations waiting for confirm"] = "Registrazioni in attesa di conferma"; +App::$strings["Registrations waiting for confirm"] = ""; App::$strings["Request date"] = "Data richiesta"; App::$strings["No registrations."] = "Nessuna registrazione."; App::$strings["Deny"] = "Nega"; @@ -970,14 +990,14 @@ App::$strings["Maximum project version: "] = "Massima versione hubzilla"; App::$strings["Minimum PHP version: "] = "Minima versione PHP:"; App::$strings["Requires: "] = "Necessita di:"; App::$strings["Disabled - version incompatibility"] = "Disabilitato - incompatibilità di versione"; -App::$strings["Enter the public git repository URL of the plugin repo."] = "Inserisci lo URL del repository git dei plugin."; +App::$strings["Enter the public git repository URL of the plugin repo."] = ""; App::$strings["Plugin repo git URL"] = "URL git del repository del plugin"; App::$strings["Custom repo name"] = "Nome repository personalizzato"; App::$strings["(optional)"] = "(facoltativo)"; App::$strings["Download Plugin Repo"] = "Scarica il repository del plugin"; App::$strings["Install new repo"] = "Installa un nuovo repository"; App::$strings["Install"] = "Installa"; -App::$strings["Manage Repos"] = "Gestisci i repository"; +App::$strings["Manage Repos"] = "Gestisci i repsitory"; App::$strings["Installed Plugin Repositories"] = "Repository per i plugin installati"; App::$strings["Install a New Plugin Repository"] = "Installa un nuovo repository per i plugin"; App::$strings["Update"] = "Aggiorna"; @@ -992,7 +1012,7 @@ App::$strings["Logs"] = "Log"; App::$strings["Clear"] = "Pulisci"; App::$strings["Debugging"] = "Debugging"; App::$strings["Log file"] = "File di log"; -App::$strings["Must be writable by web server. Relative to your top-level webserver directory."] = "Relativo alla directory base del server web. Deve essere scrivibile."; +App::$strings["Must be writable by web server. Relative to your top-level webserver directory."] = ""; App::$strings["Log level"] = "Livello di log"; App::$strings["New Profile Field"] = "Nuovo campo del profilo"; App::$strings["Field nickname"] = "Nome breve del campo"; @@ -1011,91 +1031,19 @@ App::$strings["(In addition to basic fields)"] = "(In aggiunta ai campi di base) App::$strings["All available fields"] = "Tutti i campi disponibili"; App::$strings["Custom Fields"] = "Campi personalizzati"; App::$strings["Create Custom Field"] = "Aggiungi campo personalizzato"; -App::$strings["Name or caption"] = "Nome o titolo"; -App::$strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\""] = "Per esempio: \"Mario Rossi\", \"Lisa e le sue ricette\", \"Il campionato\", \"Il gruppo di escursionismo\""; -App::$strings["Choose a short nickname"] = "Scegli un nome breve"; -App::$strings["Your nickname will be used to create an easy to remember channel address e.g. nickname%s"] = "Il nome breve sarà usato per creare un indirizzo facile da ricordare per il tuo canale, per esempio nickname%s"; -App::$strings["Channel role and privacy"] = "Tipo di canale e privacy"; -App::$strings["Select a channel role with your privacy requirements."] = "Scegli il tipo di canale che vuoi e la privacy da applicare."; -App::$strings["Read more about roles"] = "Maggiori informazioni sui ruoli"; -App::$strings["Create Channel"] = "Crea un canale"; -App::$strings["A channel is your identity on this network. It can represent a person, a blog, or a forum to name a few. Channels can make connections with other channels to share information with highly detailed permissions."] = "Un canale è la tua identità su questa rete. Può rappresentare una persona, un blog o un forum, per esempio. Il tuo canale può essere in contatto con altri canali per condividere contenuti con permessi anche molto dettagliati."; -App::$strings["or import an existing channel from another location."] = "oppure importa un canale esistente da un altro server/hub."; -App::$strings["sent you a private message"] = "ti ha inviato un messaggio privato"; -App::$strings["added your channel"] = "ha aggiunto il tuo canale"; -App::$strings["g A l F d"] = "g A l d F"; -App::$strings["[today]"] = "[oggi]"; -App::$strings["posted an event"] = "ha creato un evento"; -App::$strings["Invalid request identifier."] = "L'identificativo della richiesta non è valido."; -App::$strings["Discard"] = "Rifiuta"; -App::$strings["Mark all system notifications seen"] = "Segna come lette le notifiche di sistema"; -App::$strings["Poke"] = "Poke"; -App::$strings["Poke somebody"] = "Manda un poke"; -App::$strings["Poke/Prod"] = "Poke/Prod"; -App::$strings["Poke, prod or do other things to somebody"] = "Manda un poke o altro a qualcuno"; -App::$strings["Recipient"] = "Destinatario"; -App::$strings["Choose what you wish to do to recipient"] = "Scegli cosa vuoi inviare al destinatario"; -App::$strings["Make this post private"] = "Rendi privato questo post"; -App::$strings["Unable to find your hub."] = "Impossibile raggiungere il tuo hub."; -App::$strings["Post successful."] = "Inviato!"; -App::$strings["OpenID protocol error. No ID returned."] = "Errore del protocollo OpenID. Nessun ID ricevuto in risposta."; -App::$strings["Login failed."] = "Accesso fallito."; -App::$strings["Invalid profile identifier."] = "Indentificativo del profilo non valido."; -App::$strings["Profile Visibility Editor"] = "Modifica la visibilità del profilo"; -App::$strings["Profile"] = "Profilo"; -App::$strings["Click on a contact to add or remove."] = "Clicca su un contatto per aggiungerlo o rimuoverlo."; -App::$strings["Visible To"] = "Visibile a"; -App::$strings["This setting requires special processing and editing has been blocked."] = "Questa impostazione è bloccata, richiede criteri di modifica speciali"; -App::$strings["Configuration Editor"] = "Editor di configurazione"; -App::$strings["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."] = "Attenzione: alcune delle impostazioni, se cambiate, potrebbero rendere questo canale non funzionante. Lascia questa pagina a meno che tu non sappia con assoluta certezza quali modifiche effettuare."; -App::$strings["Fetching URL returns error: %1\$s"] = "La chiamata all'URL restituisce questo errore: %1\$s"; -App::$strings["Version %s"] = "Versione %s"; -App::$strings["Installed plugins/addons/apps:"] = "App e componenti installati:"; -App::$strings["No installed plugins/addons/apps"] = "Nessuna app o componente installato"; -App::$strings["This is a hub of \$Projectname - a global cooperative network of decentralized privacy enhanced websites."] = "Questo è un hub di \$Projectname - una rete cooperativa e decentralizzata di siti ad elevata privacy. "; -App::$strings["Tag: "] = "Tag: "; -App::$strings["Last background fetch: "] = "Ultima acquisizione:"; -App::$strings["Current load average: "] = "Carico medio attuale:"; -App::$strings["Running at web location"] = "In esecuzione sull'indirizzo web"; -App::$strings["Please visit hubzilla.org to learn more about \$Projectname."] = "Visita hubzilla.org per maggiori informazioni su \$Projectname."; -App::$strings["Bug reports and issues: please visit"] = "Per segnalare bug e problemi: visita"; -App::$strings["\$projectname issues"] = "Problematiche note su \$projectname"; -App::$strings["Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com"] = "Per consigli, ringraziamenti, ecc. - scrivi a \"redmatrix\" at librelist - dot com"; -App::$strings["Site Administrators"] = "Amministratori del sito"; -App::$strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Non è possibile effettuare login con l'OpenID che hai fornito. Per favore controlla che sia scritto correttamente."; -App::$strings["The error message was:"] = "Messaggio di errore ricevuto:"; -App::$strings["Authentication failed."] = "Autenticazione fallita."; -App::$strings["Remote Authentication"] = "Accedi tramite il tuo hub"; -App::$strings["Enter your channel address (e.g. channel@example.com)"] = "Inserisci l'indirizzo del tuo canale (ad esempio lucia@esempio.com)"; -App::$strings["Authenticate"] = "Accedi"; -App::$strings["Public Hubs"] = "Hub pubblici"; -App::$strings["The listed hubs allow public registration for the \$Projectname network. All hubs in the network are interlinked so membership on any of them conveys membership in the network as a whole. Some hubs may require subscription or provide tiered service plans. The hub itself may provide additional details."] = "I siti elencati permettono la registrazione libera sulla rete \$Projectname. Tutti questi hub sono interconnessi, quindi essere iscritti su uno equivale a una registrazione su tutta la rete. Alcuni siti potrebbero richiedere un abbonamento o dei servizi a pagamento. Per maggiori dettagli visita gli indirizzi nell'elenco."; -App::$strings["Hub URL"] = "URL del hub"; -App::$strings["Access Type"] = "Tipo di accesso"; -App::$strings["Registration Policy"] = "Politica di registrazione"; -App::$strings["Stats"] = "Statistiche"; -App::$strings["Software"] = "Software"; -App::$strings["Ratings"] = "Valutazioni"; -App::$strings["Rate"] = "Valuta"; -App::$strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Forza l'aggiornamento della pagina o cancella la cache del browser se la nuova foto non viene visualizzata immediatamente."; -App::$strings["Upload Profile Photo"] = "Carica la foto del profilo"; -App::$strings["Block Name"] = "Nome del block"; -App::$strings["Blocks"] = "Block"; -App::$strings["Block Title"] = "Titolo del block"; -App::$strings["Website:"] = "Sito web:"; -App::$strings["Remote Channel [%s] (not yet known on this site)"] = "Canale remoto [%s] (non ancora conosciuto da questo sito)"; -App::$strings["Rating (this information is public)"] = "Valutazione (visibile a tutti)"; -App::$strings["Optionally explain your rating (this information is public)"] = "Commento alla valutazione (facoltativo, visibile a tutti)"; -App::$strings["No ratings"] = "Nessuna valutazione"; -App::$strings["Rating: "] = "Valutazione:"; -App::$strings["Website: "] = "Sito web:"; -App::$strings["Description: "] = "Descrizione:"; -App::$strings["Apps"] = "App"; -App::$strings["Title (optional)"] = "Titolo (facoltativo)"; -App::$strings["Edit Block"] = "Modifica il block"; -App::$strings["No channel."] = "Nessun canale."; -App::$strings["Common connections"] = "Contatti in comune"; -App::$strings["No connections in common."] = "Nessun contatto in comune."; +App::$strings["App installed."] = "App installata"; +App::$strings["Malformed app."] = "L'app contiene errori"; +App::$strings["Embed code"] = "Inserisci il codice"; +App::$strings["Edit App"] = "Modifica app"; +App::$strings["Create App"] = "Crea una app"; +App::$strings["Name of app"] = "Nome app"; +App::$strings["Location (URL) of app"] = "Indirizzo (URL) della app"; +App::$strings["Photo icon URL"] = "URL icona"; +App::$strings["80 x 80 pixels - optional"] = "80 x 80 pixel - facoltativa"; +App::$strings["Categories (optional, comma separated list)"] = "Categorie (facoltative, lista separata da virgole)"; +App::$strings["Version ID"] = "ID versione"; +App::$strings["Price of app"] = "Prezzo app"; +App::$strings["Location (URL) to purchase app"] = "Indirizzo (URL) per acquistare la app"; App::$strings["Select a bookmark folder"] = "Scegli una cartella di segnalibri"; App::$strings["Save Bookmark"] = "Salva segnalibro"; App::$strings["URL of bookmark"] = "URL del segnalibro"; @@ -1121,7 +1069,7 @@ App::$strings["no"] = "no"; App::$strings["yes"] = "sì"; App::$strings["Membership on this site is by invitation only."] = "Per registrarsi su questo hub è necessario un invito."; App::$strings["Register"] = "Registrati"; -App::$strings["This site may require email verification after submitting this form. If you are returned to a login page, please check your email for instructions."] = "Dopo aver inviato questo modulo, potrebbe esserti richiesta una verifica via email. Se ti sarà mostrata la pagina di login, segui le istruzioni sull'email per continuare."; +App::$strings["Proceed to create your first channel"] = "Continua e crea il tuo primo canale"; App::$strings["Please login."] = "Effettua l'accesso."; App::$strings["Account removals are not allowed within 48 hours of changing the account password."] = "Non è possibile eliminare il tuo account prima di 48 ore dall'ultimo cambio password."; App::$strings["Remove This Account"] = "Elimina questo account"; @@ -1138,23 +1086,17 @@ App::$strings["This channel will be completely removed from the network. "] = "Q App::$strings["Remove this channel and all its clones from the network"] = "Elimina questo canale e tutti i suoi cloni dalla rete"; App::$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"; App::$strings["Remove Channel"] = "Elimina questo canale"; -App::$strings["Export Channel"] = "Esporta il canale"; -App::$strings["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."] = "Esporta le informazioni di base del canale in un file. In pratica è un salvataggio delle tue connessioni, dei permessi che hai assegnato e del tuo profilo che così potrà essere importato su un altro server/hub. Il file non includerà i tuoi post e altri contenuti che hai creato o caricato."; -App::$strings["Export Content"] = "Esporta i contenuti"; -App::$strings["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."] = "Esporta il tuo canale e i contenuti recenti in un file di salvataggio che potrà essere importato su un altro server/hub. Sarà un backup dei tuoi contatti, dei permessi che hai assegnato, dei dati del profilo e dei post degli ultimi mesi. Il file potrebbe essere MOLTO grande. Sarà necessario attendere con pazienza - saranno necessari molti minuti prima che inizi lo scaricamento."; -App::$strings["Export your posts from a given year."] = "Esporta i tuoi post a partire dall'anno scelto."; -App::$strings["You may also export your posts and conversations for a particular year or month. Adjust the date in your browser location bar to select other dates. If the export fails (possibly due to memory exhaustion on your server hub), please try again selecting a more limited date range."] = "Puoi anche esportare post e conversazioni di un particolare anno o mese. Modifica la data nella barra dell'indirizzo del browser per scegliere date differenti. Se l'esportazione dovesse fallire (la memoria sul server potrebbe non bastare), riprova scegliendo un intervallo più breve tra le date."; -App::$strings["To select all posts for a given year, such as this year, visit %2\$s"] = "Per selezionare tutti i post di un anno, come per esempio quello in corso, visita %2\$s "; -App::$strings["To select all posts for a given month, such as January of this year, visit %2\$s"] = "Per selezionare tutti post di un dato mese, come per esempio gennaio di quest'anno, visita %2\$s"; -App::$strings["These content files may be imported or restored by visiting %2\$s on any site containing your channel. For best results please import or restore these in date order (oldest first)."] = "Questi contenuti potranno essere importati o ripristinati visitando %2\$s su qualsiasi sito/hub dove è presente il tuo canale. Per mantenere l'ordinamento originale fai attenzione ad importare i file secondo la data (prima il più vecchio)"; +App::$strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Non è possibile effettuare login con l'OpenID che hai fornito. Per favore controlla che sia scritto correttamente."; +App::$strings["The error message was:"] = "Messaggio di errore ricevuto:"; +App::$strings["Authentication failed."] = "Autenticazione fallita."; +App::$strings["Remote Authentication"] = "Accedi tramite il tuo hub"; +App::$strings["Enter your channel address (e.g. channel@example.com)"] = "Inserisci l'indirizzo del tuo canale (ad esempio lucia@esempio.com)"; +App::$strings["Authenticate"] = "Accedi"; App::$strings["Items tagged with: %s"] = "Elementi taggati con: %s"; App::$strings["Search results for: %s"] = "Risultati ricerca: %s"; App::$strings["No service class restrictions found."] = "Non esistono restrizioni su questa classe di account."; App::$strings["Name is required"] = "Il nome è obbligatorio"; App::$strings["Key and Secret are required"] = "Key e Secret sono richiesti"; -App::$strings["This channel is limited to %d tokens"] = "Questo canale è limitato a %d token"; -App::$strings["Name and Password are required."] = "Nome e password sono obbligatori."; -App::$strings["Token saved."] = "Token salvato."; App::$strings["Not valid email."] = "Email non valida."; App::$strings["Protected email address. Cannot change to that email."] = "È un indirizzo email riservato. Non puoi sceglierlo."; App::$strings["System failure storing new email. Please try again."] = "Errore di sistema. Non è stato possibile memorizzare il tuo messaggio, riprova per favore."; @@ -1187,12 +1129,6 @@ App::$strings["Confirm New Password"] = "Conferma la nuova password"; App::$strings["Leave password fields blank unless changing"] = "Lascia vuoti questi campi per non cambiare la password"; App::$strings["Email Address:"] = "Indirizzo email:"; App::$strings["Remove this account including all its channels"] = "Elimina questo account e tutti i suoi canali"; -App::$strings["Use this form to create temporary access identifiers to share things with non-members. These identities may be used in Access Control Lists and visitors may login using these credentials to access the private content."] = "Usa questo modulo per creare credenziali di accesso temporanee per condividere oggetti con chi non è utente. Queste identità possono essere gestite nelle Access Control List e i visitatori possono usare le credenziali per accedere ai contenuti privati."; -App::$strings["You may also provide dropbox style access links to friends and associates by adding the Login Password to any specific site URL as shown. Examples:"] = "Puoi anche fornire un accesso simile a dropbox agli amici o ai colleghi aggiungendo la password all'url che vuoi comunicare, come mostrato sotto. Esempi:"; -App::$strings["Guest Access Tokens"] = "Token di accesso ospite"; -App::$strings["Login Name"] = "Nome utente"; -App::$strings["Login Password"] = "Password"; -App::$strings["Expires (yyyy-mm-dd)"] = "Con scadenza (aaaa-mm-gg)"; App::$strings["Additional Features"] = "Funzionalità opzionali"; App::$strings["Connector Settings"] = "Impostazioni del connettore"; App::$strings["No special theme for mobile devices"] = "Nessun tema per dispositivi mobili"; @@ -1255,11 +1191,11 @@ App::$strings["Expire other channel content after this many days"] = "Giorni dop App::$strings["0 or blank to use the website limit."] = "0 o vuoto per usare i valori predefiniti."; App::$strings["This website expires after %d days."] = "Per questo sito la scadenza è %d giorni. "; App::$strings["This website does not expire imported content."] = "I contenuti di questo sito non hanno scadenza."; -App::$strings["The website limit takes precedence if lower than your limit."] = "Il limite del webserver ha la precedenza, se minore di quello impostato da te."; +App::$strings["The website limit takes precedence if lower than your limit."] = ""; App::$strings["Maximum Friend Requests/Day:"] = "Numero massimo giornaliero di richieste di amicizia:"; App::$strings["May reduce spam activity"] = "Serve a ridurre lo spam"; -App::$strings["Default Post and Publish Permissions"] = "Permessi predefiniti per postare e pubblicare"; -App::$strings["Use my default audience setting for the type of object published"] = "Mostra ai contatti secondo le impostazioni standard per questo tipo di contenuto"; +App::$strings["Default Post and Publish Permissions"] = ""; +App::$strings["Use my default audience setting for the type of object published"] = ""; App::$strings["Channel permissions category:"] = "Categorie di permessi dei canali:"; App::$strings["Maximum private messages per day from unknown people:"] = "Numero massimo giornaliero di messaggi privati da utenti sconosciuti:"; App::$strings["Useful to reduce spamming"] = "Serve e ridurre lo spam"; @@ -1334,7 +1270,7 @@ App::$strings["Please select a default timezone for your website"] = "Seleziona App::$strings["Site settings"] = "Impostazioni del hub"; App::$strings["Enable \$Projectname advanced features?"] = "Vuoi attivare le funzionalità avanzate di \$Projectname?"; App::$strings["Some advanced features, while useful - may be best suited for technically proficient audiences"] = "Alcune funzionalità avanzate, per quanto utili, potrebbero essere adatte solo a un pubblico tecnicamente preparato."; -App::$strings["PHP version 5.5 or greater is required."] = "E' necessario PHP in versione 5.5 o superiore."; +App::$strings["PHP version 5.5 or greater is required."] = ""; App::$strings["PHP version"] = "Versione PHP"; App::$strings["Could not find a command line version of PHP in the web server PATH."] = "Non è possibile trovare la versione di PHP da riga di comando nel PATH del server web"; App::$strings["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."] = "Se non hai installata la versione di PHP da riga di comando non potrai attivare il polling in background tramite cron."; @@ -1355,6 +1291,7 @@ App::$strings["GD graphics PHP module"] = "modulo PHP GD graphics"; App::$strings["OpenSSL PHP module"] = "modulo PHP OpenSSL"; App::$strings["mysqli or postgres PHP module"] = "modulo PHP per mysqli oppure prostgres"; App::$strings["mb_string PHP module"] = "modulo PHP mb_string"; +App::$strings["mcrypt PHP module"] = "modulo PHP mcrypt"; App::$strings["xml PHP module"] = "modulo xml PHP"; App::$strings["Apache mod_rewrite module"] = "modulo Apache mod_rewrite"; App::$strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Errore: il modulo mod-rewrite di Apache è richiesto ma non installato"; @@ -1365,6 +1302,7 @@ App::$strings["Error: GD graphics PHP module with JPEG support required but not App::$strings["Error: openssl PHP module required but not installed."] = "Errore: il modulo openssl di PHP è richiesto ma non installato."; App::$strings["Error: mysqli or postgres PHP module required but neither are installed."] = "Errore: il modulo PHP per mysqli o postgres è richiesto ma non installato"; App::$strings["Error: mb_string PHP module required but not installed."] = "Errore: il modulo PHP mb_string è richiesto ma non installato."; +App::$strings["Error: mcrypt PHP module required but not installed."] = "Errore: il modulo PHP mcrypt è richiesto ma non installato."; App::$strings["Error: xml PHP module required for DAV but not installed."] = "Errore: il modulo xml PHP è richiesto per DAV ma non è installato."; App::$strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "L'installazione web deve poter creare un file chiamato \".htconfig.php\" nella cartella di Hubzilla ma non è in grado di farlo."; App::$strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "Spesso ciò è dovuto ai permessi di accesso al disco: il web server potrebbe non aver diritto di scrivere il file nella cartella, anche se tu puoi."; @@ -1372,11 +1310,11 @@ App::$strings["At the end of this procedure, we will give you a text to save in App::$strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"install/INSTALL.txt\" for instructions."] = "Puoi anche saltare questa procedura ed effettuare un'installazione manuale. Guarda il file 'install/INSTALL.txt' per le istruzioni."; App::$strings[".htconfig.php is writable"] = ".htconfig.php è scrivibile"; App::$strings["Red uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Hubzilla usa il sistema Smarty3 per costruire i suoi template grafici. Smarty3 è molto veloce perché compila i template delle pagine direttamente in PHP."; -App::$strings["In order to store these compiled templates, the web server needs to have write access to the directory %s under the top level web folder."] = "Per poter memorizzare questi template, il server web deve avere i diritti di scrittura sulla directory %s"; +App::$strings["In order to store these compiled templates, the web server needs to have write access to the directory %s under the top level web folder."] = ""; App::$strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Assicurati che il tuo web server sia in esecuzione con un utente che ha diritto di scrittura su quella cartella (ad esempio www-data)."; App::$strings["Note: as a security measure, you should give the web server write access to %s only--not the template files (.tpl) that it contains."] = "Nota bene: come precauzione, dovresti dare i diritti di scrittura solamente su %s e non sui file template (.tpl) che contiene."; App::$strings["%s is writable"] = "%s è scrivibile"; -App::$strings["This software 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"] = "Questo software usa la cartella store per salvare i file caricati. Il server web deve avere i diritti di scrittura sulla cartella perché l'operazione avvenga con successo"; +App::$strings["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"] = "Hubzilla salva i file caricati nella cartella \"store\" sul server. Il server deve avere i diritti di scrittura su quella cartella che si trova dentro l'installazione di RedMatrix"; App::$strings["store is writable"] = "l'archivio è scrivibile"; App::$strings["SSL certificate cannot be validated. Fix certificate or disable https access to this site."] = "Il certificato SSL non può essere validato. Correggi l'errore o disabilita l'accesso https al sito."; App::$strings["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!"] = "Se abiliti https per il tuo sito o permetti connessioni TCP su port 443 (quella di https), DEVI usare un certificato riconosciuto dai browser internet. NON DEVI usare certificati self-signed generati da te!"; @@ -1384,7 +1322,6 @@ App::$strings["This restriction is incorporated because public posts from you ma App::$strings["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."] = "Se il tuo certificato non è riconosciuto, gli utenti che ti seguono da altri siti (che avranno certificati validi) riceveranno gravi avvisi di sicurezza dal browser."; App::$strings["This can cause usability issues elsewhere (not just on your own site) so we must insist on this requirement."] = "Ciò può creare seri problemi di usabilità (non solo sul tuo sito), quindi dobbiamo insistere su questo punto."; App::$strings["Providers are available that issue free certificates which are browser-valid."] = "Eventualmente, considera che esistono provider che rilasciano certificati gratuiti riconosciuti dai browser."; -App::$strings["If you are confident that the certificate is valid and signed by a trusted authority, check to see if you have failed to install an intermediate cert. These are not normally required by browsers, but are required for server-to-server communications."] = "Se credi che il certificato sia valido e firmato da una authority, verifica se hai sbagliato a installare i certificati intermedi. Normalmente non sono richiesti dai browser, ma sono necessari per la comunicazione server-to-server."; App::$strings["SSL certificate validation"] = "Validazione del certificato SSL"; App::$strings["Url rewrite in .htaccess is not working. Check your server configuration.Test: "] = "In .htaccess la funzionalità url rewrite non funziona. Controlla la configurazione del server. Test:"; App::$strings["Url rewrite is working"] = "Url rewrite funziona correttamente"; @@ -1396,20 +1333,19 @@ App::$strings["Files: shared with me"] = "File: condivisi con me"; App::$strings["NEW"] = "NOVITÀ"; App::$strings["Remove all files"] = "Elimina tutti i file"; App::$strings["Remove this file"] = "Elimina questo file"; -App::$strings["Thing updated"] = "L'oggetto è stato aggiornato"; -App::$strings["Object store: failed"] = "Impossibile memorizzare l'oggetto."; -App::$strings["Thing added"] = "L'Oggetto è stato aggiunto"; -App::$strings["OBJ: %1\$s %2\$s %3\$s"] = "OBJ: %1\$s %2\$s %3\$s"; -App::$strings["Show Thing"] = "Mostra l'oggetto"; -App::$strings["item not found."] = "non trovato."; -App::$strings["Edit Thing"] = "Modifica l'oggetto"; -App::$strings["Select a profile"] = "Scegli un profilo"; -App::$strings["Post an activity"] = "Pubblica un'attività"; -App::$strings["Only sends to viewers of the applicable profile"] = "Invia solo a chi può vedere il profilo scelto"; -App::$strings["Name of thing e.g. something"] = "Nome dell'oggetto"; -App::$strings["URL of thing (optional)"] = "Indirizzo web dell'oggetto (facoltativo)"; -App::$strings["URL for photo of thing (optional)"] = "Indirizzo di un'immagine dell'oggetto (facoltativo)"; -App::$strings["Add Thing to your Profile"] = "Aggiungi l'oggetto al tuo profilo"; +App::$strings["Version %s"] = "Versione %s"; +App::$strings["Installed plugins/addons/apps:"] = "App e componenti installati:"; +App::$strings["No installed plugins/addons/apps"] = "Nessuna app o componente installato"; +App::$strings["This is a hub of \$Projectname - a global cooperative network of decentralized privacy enhanced websites."] = "Questo è un hub di \$Projectname - una rete cooperativa e decentralizzata di siti ad elevata privacy. "; +App::$strings["Tag: "] = "Tag: "; +App::$strings["Last background fetch: "] = "Ultima acquisizione:"; +App::$strings["Current load average: "] = "Carico medio attuale:"; +App::$strings["Running at web location"] = "In esecuzione sull'indirizzo web"; +App::$strings["Please visit hubzilla.org to learn more about \$Projectname."] = "Visita hubzilla.org per maggiori informazioni su \$Projectname."; +App::$strings["Bug reports and issues: please visit"] = "Per segnalare bug e problemi: visita"; +App::$strings["\$projectname issues"] = "Problematiche note su \$projectname"; +App::$strings["Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com"] = "Per consigli, ringraziamenti, ecc. - scrivi a \"redmatrix\" at librelist - dot com"; +App::$strings["Site Administrators"] = "Amministratori del sito"; App::$strings["Failed to create source. No channel selected."] = "Impossibile creare la sorgente. Nessun canale selezionato."; App::$strings["Source created."] = "Sorgente creata."; App::$strings["Source updated."] = "Sorgente aggiornata."; @@ -1421,7 +1357,7 @@ App::$strings["Import all or selected content from the following channel into th App::$strings["Only import content with these words (one per line)"] = "Importa solo i contenuti che hanno queste parole (una per riga)"; App::$strings["Leave blank to import all public content"] = "Lascia vuoto per importare tutti i contenuti pubblici"; App::$strings["Channel Name"] = "Nome del canale"; -App::$strings["Add the following categories to posts imported from this source (comma separated)"] = "Aggiungi le seguenti categorie ai post importati da questa sorgente (separate da virgola)"; +App::$strings["Add the following categories to posts imported from this source (comma separated)"] = ""; App::$strings["Source not found."] = "Sorgente non trovata."; App::$strings["Edit Source"] = "Modifica la sorgente"; App::$strings["Delete Source"] = "Elimina la sorgente"; @@ -1437,38 +1373,60 @@ App::$strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s ha taggato %3\$s App::$strings["Tag removed"] = "Tag rimosso"; App::$strings["Remove Item Tag"] = "Rimuovi il tag"; App::$strings["Select a tag to remove: "] = "Seleziona un tag da rimuovere: "; -App::$strings["Webpages"] = "Pagine web"; -App::$strings["Actions"] = "Azioni"; -App::$strings["Page Link"] = "Link alla pagina"; -App::$strings["Page Title"] = "Titolo della pagina"; -App::$strings["Not found"] = "Non trovato"; -App::$strings["Wiki"] = "Wiki"; -App::$strings["Sandbox"] = "Sandbox"; -App::$strings["\"# Wiki Sandbox\\n\\nContent you **edit** and **preview** here *will not be saved*.\""] = "\"# Wiki Sandbox\\n\\nI contenuti che **modifichi** e che vedi in **anteprima** qui *non saranno salvati*.\""; -App::$strings["Revision Comparison"] = "Confronto tra revisioni"; -App::$strings["Revert"] = "Ripristina"; -App::$strings["Enter the name of your new wiki:"] = "Nome della tua nuova pagina wiki:"; -App::$strings["Enter the name of the new page:"] = "Nome della tua nuova pagina:"; -App::$strings["Enter the new name:"] = "Nuovo nome:"; -App::$strings["Embed image from photo albums"] = "Inserisci un'immagine dall'album foto"; -App::$strings["Embed an image from your albums"] = "Inserisci un'immagine dai tuoi album"; -App::$strings["OK"] = "OK"; -App::$strings["Choose images to embed"] = "Scegli le immagini da inserire"; -App::$strings["Choose an album"] = "Scegli un album"; -App::$strings["Choose a different album..."] = "Scegli un altro album..."; -App::$strings["Error getting album list"] = "Errore nell'ottenere l'elenco degli album"; -App::$strings["Error getting photo link"] = "Errore nell'ottenere il link alla foto"; -App::$strings["Error getting album"] = "Errore nell'ottenere l'album"; +App::$strings["Thing updated"] = "L'oggetto è stato aggiornato"; +App::$strings["Object store: failed"] = "Impossibile memorizzare l'oggetto."; +App::$strings["Thing added"] = "L'Oggetto è stato aggiunto"; +App::$strings["OBJ: %1\$s %2\$s %3\$s"] = "OBJ: %1\$s %2\$s %3\$s"; +App::$strings["Show Thing"] = "Mostra l'oggetto"; +App::$strings["item not found."] = "non trovato."; +App::$strings["Edit Thing"] = "Modifica l'oggetto"; +App::$strings["Select a profile"] = "Scegli un profilo"; +App::$strings["Post an activity"] = "Pubblica un'attività"; +App::$strings["Only sends to viewers of the applicable profile"] = "Invia solo a chi può vedere il profilo scelto"; +App::$strings["Name of thing e.g. something"] = "Nome dell'oggetto"; +App::$strings["URL of thing (optional)"] = "Indirizzo web dell'oggetto (facoltativo)"; +App::$strings["URL for photo of thing (optional)"] = "Indirizzo di un'immagine dell'oggetto (facoltativo)"; +App::$strings["Add Thing to your Profile"] = "Aggiungi l'oggetto al tuo profilo"; +App::$strings["Export Channel"] = "Esporta il canale"; +App::$strings["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."] = "Esporta le informazioni di base del canale in un file. In pratica è un salvataggio delle tue connessioni, dei permessi che hai assegnato e del tuo profilo che così potrà essere importato su un altro server/hub. Il file non includerà i tuoi post e altri contenuti che hai creato o caricato."; +App::$strings["Export Content"] = "Esporta i contenuti"; +App::$strings["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."] = "Esporta il tuo canale e i contenuti recenti in un file di salvataggio che potrà essere importato su un altro server/hub. Sarà un backup dei tuoi contatti, dei permessi che hai assegnato, dei dati del profilo e dei post degli ultimi mesi. Il file potrebbe essere MOLTO grande. Sarà necessario attendere con pazienza - saranno necessari molti minuti prima che inizi lo scaricamento."; +App::$strings["Export your posts from a given year."] = "Esporta i tuoi post a partire dall'anno scelto."; +App::$strings["You may also export your posts and conversations for a particular year or month. Adjust the date in your browser location bar to select other dates. If the export fails (possibly due to memory exhaustion on your server hub), please try again selecting a more limited date range."] = "Puoi anche esportare post e conversazioni di un particolare anno o mese. Modifica la data nella barra dell'indirizzo del browser per scegliere date differenti. Se l'esportazione dovesse fallire (la memoria sul server potrebbe non bastare), riprova scegliendo un intervallo più breve tra le date."; +App::$strings["To select all posts for a given year, such as this year, visit %2\$s"] = "Per selezionare tutti i post di un anno, come per esempio quello in corso, visita %2\$s "; +App::$strings["To select all posts for a given month, such as January of this year, visit %2\$s"] = "Per selezionare tutti post di un dato mese, come per esempio gennaio di quest'anno, visita %2\$s"; +App::$strings["These content files may be imported or restored by visiting %2\$s on any site containing your channel. For best results please import or restore these in date order (oldest first)."] = "Questi contenuti potranno essere importati o ripristinati visitando %2\$s su qualsiasi sito/hub dove è presente il tuo canale. Per mantenere l'ordinamento originale fai attenzione ad importare i file secondo la data (prima il più vecchio)"; App::$strings["No connections."] = "Nessun contatto."; App::$strings["Visit %s's profile [%s]"] = "Visita il profilo di %s [%s]"; App::$strings["View Connections"] = "Elenco contatti"; App::$strings["Source of Item"] = "Sorgente"; -App::$strings["Authorize application connection"] = "Autorizza la app"; -App::$strings["Return to your app and insert this Securty Code:"] = "Torna alla app e inserisci questo codice di sicurezza:"; -App::$strings["Please login to continue."] = "Accedi al sito per continuare."; -App::$strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Vuoi autorizzare questa app ad accedere ai messaggi e ai contatti o creare nuovi messaggi per te?"; +App::$strings["Webpages"] = "Pagine web"; +App::$strings["Actions"] = "Azioni"; +App::$strings["Page Link"] = "Link alla pagina"; +App::$strings["Page Title"] = "Titolo della pagina"; App::$strings["Xchan Lookup"] = "Ricerca canale"; App::$strings["Lookup xchan beginning with (or webbie): "] = "Cerca un canale (o un webbie) che inizia per:"; +App::$strings["Site Admin"] = "Amministrazione sito"; +App::$strings["Bug Report"] = "Bug Report"; +App::$strings["View Bookmarks"] = "Vedi i segnalibri"; +App::$strings["My Chatrooms"] = "Le mie aree chat"; +App::$strings["Firefox Share"] = ""; +App::$strings["Remote Diagnostics"] = ""; +App::$strings["Suggest Channels"] = "Suggerisci canali"; +App::$strings["Login"] = "Accedi"; +App::$strings["Grid"] = "Rete"; +App::$strings["Channel Home"] = "Bacheca del canale"; +App::$strings["Events"] = "Eventi"; +App::$strings["Directory"] = "Elenchi pubblici dei canali"; +App::$strings["Mail"] = "Messaggi"; +App::$strings["Chat"] = "Chat"; +App::$strings["Probe"] = "Diagnostica"; +App::$strings["Suggest"] = "Suggerisci"; +App::$strings["Random Channel"] = "Canale casuale"; +App::$strings["Invite"] = "Invita"; +App::$strings["Features"] = "Funzionalità"; +App::$strings["Post"] = "Post"; +App::$strings["Purchase"] = "Acquista"; App::$strings["Missing room name"] = "Chat senza nome"; App::$strings["Duplicate room name"] = "Il nome della chat è duplicato"; App::$strings["Invalid room specifier."] = "Il nome della chat non è valido."; @@ -1516,27 +1474,6 @@ App::$strings["Please visit %s to approve or reject the suggestion."] = "Visita App::$strings["[Hubzilla:Notify]"] = "[Hubzilla]"; App::$strings["created a new post"] = "Ha creato un nuovo post"; App::$strings["commented on %s's post"] = "ha commentato il post di %s"; -App::$strings["Site Admin"] = "Amministrazione sito"; -App::$strings["Bug Report"] = "Bug Report"; -App::$strings["View Bookmarks"] = "Vedi i segnalibri"; -App::$strings["My Chatrooms"] = "Le mie aree chat"; -App::$strings["Firefox Share"] = "Firefox Share"; -App::$strings["Remote Diagnostics"] = "Diagnostica remota"; -App::$strings["Suggest Channels"] = "Suggerisci canali"; -App::$strings["Login"] = "Accedi"; -App::$strings["Grid"] = "Rete"; -App::$strings["Channel Home"] = "Bacheca del canale"; -App::$strings["Events"] = "Eventi"; -App::$strings["Directory"] = "Elenchi pubblici dei canali"; -App::$strings["Mail"] = "Messaggi"; -App::$strings["Chat"] = "Chat"; -App::$strings["Probe"] = "Diagnostica"; -App::$strings["Suggest"] = "Suggerisci"; -App::$strings["Random Channel"] = "Canale casuale"; -App::$strings["Invite"] = "Invita"; -App::$strings["Features"] = "Funzionalità"; -App::$strings["Post"] = "Post"; -App::$strings["Purchase"] = "Acquista"; App::$strings["Private Message"] = "Messaggio privato"; App::$strings["Select"] = "Scegli"; App::$strings["Save to Folder"] = "Salva nella cartella"; @@ -1573,7 +1510,7 @@ App::$strings["Expires: %s"] = "Scadenza: %s"; App::$strings["Save Bookmarks"] = "Salva segnalibro"; App::$strings["Add to Calendar"] = "Aggiungi al calendario"; App::$strings["Mark all seen"] = "Marca tutto come letto"; -App::$strings["%s show all"] = "%s mostra tutto"; +App::$strings["[+] show all"] = "[+] mostra tutto"; App::$strings["Bold"] = "Grassetto"; App::$strings["Italic"] = "Corsivo"; App::$strings["Underline"] = "Sottolineato"; @@ -1582,93 +1519,9 @@ App::$strings["Code"] = "Codice"; App::$strings["Image"] = "Immagine"; App::$strings["Insert Link"] = "Collegamento"; App::$strings["Video"] = "Video"; -App::$strings["Visible to your default audience"] = "Visibile secondo le impostazioni predefinite"; -App::$strings["Only me"] = "Solo io"; -App::$strings["Public"] = "Pubblico"; -App::$strings["Anybody in the \$Projectname network"] = "Tutti sulla rete \$Projectname"; -App::$strings["Any account on %s"] = "Tutti gli account su %s"; -App::$strings["Any of my connections"] = "Chiunque tra i miei contatti"; -App::$strings["Only connections I specifically allow"] = "Solo chi riceve il mio permesso"; -App::$strings["Anybody authenticated (could include visitors from other networks)"] = "Chiunque sia autenticato (inclusi visitatori di altre reti)"; -App::$strings["Any connections including those who haven't yet been approved"] = "Tutti i contatti inclusi quelli non ancora approvati"; -App::$strings["This is your default setting for the audience of your normal stream, and posts."] = "Impostazione predefinita di chi può vedere ciò che pubblichi in bacheca"; -App::$strings["This is your default setting for who can view your default channel profile"] = "Impostazione predefinita di chi può vedere il profilo standard del tuo canale"; -App::$strings["This is your default setting for who can view your connections"] = "Impostazione predefinita di chi può vedere i tuoi contatti/amici"; -App::$strings["This is your default setting for who can view your file storage and photos"] = "Impostazione predefinita di chi può vedere le foto e il tuo archivio file"; -App::$strings["This is your default setting for the audience of your webpages"] = "Impostazione predefinita di chi può vedere le tue pagine web"; App::$strings["No username found in import file."] = "Impossibile trovare il nome utente nel file da importare."; App::$strings["Unable to create a unique channel address. Import failed."] = "Impossibile creare un indirizzo univoco per il canale. L'import è fallito."; App::$strings["Cannot locate DNS info for database server '%s'"] = "Non trovo le informazioni DNS per il database server '%s'"; -App::$strings["Image exceeds website size limit of %lu bytes"] = "L'immagine supera il limite massimo di %lu bytes"; -App::$strings["Image file is empty."] = "Il file dell'immagine è vuoto."; -App::$strings["Photo storage failed."] = "Impossibile salvare la foto."; -App::$strings["a new photo"] = "una nuova foto"; -App::$strings["__ctx:photo_upload__ %1\$s posted %2\$s to %3\$s"] = "%1\$s ha pubblicato %2\$s su %3\$s"; -App::$strings["Photo Albums"] = "Album foto"; -App::$strings["Upload New Photos"] = "Carica nuove foto"; -App::$strings["Logout"] = "Esci"; -App::$strings["End this session"] = "Chiudi questa sessione"; -App::$strings["Home"] = "Bacheca"; -App::$strings["Your posts and conversations"] = "I tuoi post e conversazioni"; -App::$strings["Your profile page"] = "Il tuo profilo"; -App::$strings["Manage/Edit profiles"] = "Gestisci i tuoi profili"; -App::$strings["Edit Profile"] = "Modifica il profilo"; -App::$strings["Edit your profile"] = "Modifica il tuo profilo"; -App::$strings["Your photos"] = "Le tue foto"; -App::$strings["Your files"] = "I tuoi file"; -App::$strings["Your chatrooms"] = "Le tue chat"; -App::$strings["Bookmarks"] = "Segnalibri"; -App::$strings["Your bookmarks"] = "I tuoi segnalibri"; -App::$strings["Your webpages"] = "Le tue pagine web"; -App::$strings["Your wiki"] = "La tua wiki"; -App::$strings["Sign in"] = "Accedi"; -App::$strings["%s - click to logout"] = "%s - clicca per uscire"; -App::$strings["Remote authentication"] = "Accedi dal tuo hub"; -App::$strings["Click to authenticate to your home hub"] = "Clicca per farti riconoscere dal tuo hub principale"; -App::$strings["Home Page"] = "Bacheca"; -App::$strings["Create an account"] = "Crea un account"; -App::$strings["Help and documentation"] = "Guida e documentazione"; -App::$strings["Applications, utilities, links, games"] = "Applicazioni, utilità, link, giochi"; -App::$strings["Search site @name, #tag, ?docs, content"] = "Cerca nel sito per @nome, #tag, ?guida o per contenuto"; -App::$strings["Channel Directory"] = "Elenchi pubblici dei canali"; -App::$strings["Your grid"] = "La tua rete"; -App::$strings["Mark all grid notifications seen"] = "Segna come lette le notifiche della tua rete"; -App::$strings["Channel home"] = "Bacheca del canale"; -App::$strings["Mark all channel notifications seen"] = "Segna come lette le notifiche del canale"; -App::$strings["Notices"] = "Avvisi"; -App::$strings["Notifications"] = "Notifiche"; -App::$strings["See all notifications"] = "Vedi tutte le notifiche"; -App::$strings["Private mail"] = "Messaggi privati"; -App::$strings["See all private messages"] = "Guarda tutti i messaggi privati"; -App::$strings["Mark all private messages seen"] = "Segna come letti tutti i messaggi privati"; -App::$strings["Inbox"] = "In arrivo"; -App::$strings["Outbox"] = "Inviati"; -App::$strings["New Message"] = "Nuovo messaggio"; -App::$strings["Event Calendar"] = "Calendario"; -App::$strings["See all events"] = "Guarda tutti gli eventi"; -App::$strings["Mark all events seen"] = "Marca come letti tutti gli eventi"; -App::$strings["Manage Your Channels"] = "Gestisci i tuoi canali"; -App::$strings["Account/Channel Settings"] = "Impostazioni dell'account e del canale"; -App::$strings["Admin"] = "Amministrazione"; -App::$strings["Site Setup and Configuration"] = "Installazione e configurazione del sito"; -App::$strings["Loading..."] = "Caricamento in corso..."; -App::$strings["@name, #tag, ?doc, content"] = "@nome, #tag, ?guida, contenuto"; -App::$strings["Please wait..."] = "Attendere..."; -App::$strings["view full size"] = "guarda nelle dimensioni reali"; -App::$strings["Administrator"] = "Amministratore"; -App::$strings["No Subject"] = "Nessun titolo"; -App::$strings["Friendica"] = "Friendica"; -App::$strings["OStatus"] = "OStatus"; -App::$strings["GNU-Social"] = "GNU-Social"; -App::$strings["RSS/Atom"] = "RSS/Atom"; -App::$strings["Diaspora"] = "Diaspora"; -App::$strings["Facebook"] = "Facebook"; -App::$strings["Zot"] = "Zot"; -App::$strings["LinkedIn"] = "LinkedIn"; -App::$strings["XMPP/IM"] = "XMPP/IM"; -App::$strings["MySpace"] = "MySpace"; -App::$strings["New Page"] = "Nuova pagina web"; -App::$strings["Title"] = "Titolo"; App::$strings["Categories"] = "Categorie"; App::$strings["Tags"] = "Tag"; App::$strings["Keywords"] = "Parole chiave"; @@ -1678,196 +1531,34 @@ App::$strings["want"] = "voglio"; App::$strings["wants"] = "vuole"; App::$strings["likes"] = "gli piace"; App::$strings["dislikes"] = "non gli piace"; -App::$strings["Unable to obtain identity information from database"] = "Impossibile ottenere le informazioni di identificazione dal database"; -App::$strings["Empty name"] = "Nome vuoto"; -App::$strings["Name too long"] = "Nome troppo lungo"; -App::$strings["No account identifier"] = "Account senza identificativo"; -App::$strings["Nickname is required."] = "Il nome dell'account è obbligatorio."; -App::$strings["Reserved nickname. Please choose another."] = "Nome utente riservato. Per favore scegline un altro."; -App::$strings["Nickname has unsupported characters or is already being used on this site."] = "Il nome dell'account è già in uso oppure ha dei caratteri non supportati."; -App::$strings["Unable to retrieve created identity"] = "Impossibile caricare l'identità creata"; -App::$strings["Default Profile"] = "Profilo predefinito"; -App::$strings["Requested channel is not available."] = "Il canale che cerchi non è disponibile."; -App::$strings["Create New Profile"] = "Crea un nuovo profilo"; -App::$strings["Visible to everybody"] = "Visibile a tutti"; -App::$strings["Gender:"] = "Sesso:"; -App::$strings["Status:"] = "Stato:"; -App::$strings["Homepage:"] = "Home page:"; -App::$strings["Online Now"] = "Online adesso"; -App::$strings["Like this channel"] = "Mi piace questo canale"; -App::$strings["j F, Y"] = "j F Y"; -App::$strings["j F"] = "j F"; -App::$strings["Birthday:"] = "Compleanno:"; -App::$strings["for %1\$d %2\$s"] = "per %1\$d %2\$s"; -App::$strings["Sexual Preference:"] = "Preferenze sessuali:"; -App::$strings["Tags:"] = "Tag:"; -App::$strings["Political Views:"] = "Orientamento politico:"; -App::$strings["Religion:"] = "Religione:"; -App::$strings["Hobbies/Interests:"] = "Interessi e hobby:"; -App::$strings["Likes:"] = "Mi piace:"; -App::$strings["Dislikes:"] = "Non mi piace:"; -App::$strings["Contact information and Social Networks:"] = "Contatti e social network:"; -App::$strings["My other channels:"] = "I miei altri canali:"; -App::$strings["Musical interests:"] = "Gusti musicali:"; -App::$strings["Books, literature:"] = "Libri, letteratura:"; -App::$strings["Television:"] = "Televisione:"; -App::$strings["Film/dance/culture/entertainment:"] = "Film, danza, cultura, intrattenimento:"; -App::$strings["Love/Romance:"] = "Amore:"; -App::$strings["Work/employment:"] = "Lavoro:"; -App::$strings["School/education:"] = "Scuola:"; -App::$strings["Like this thing"] = "Mi piace"; -App::$strings["New window"] = "Nuova finestra"; -App::$strings["Open the selected location in a different window or browser tab"] = "Apri l'indirizzo selezionato in una nuova scheda o finestra"; -App::$strings["User '%s' deleted"] = "Utente '%s' eliminato"; -App::$strings["%1\$s is now connected with %2\$s"] = "%1\$s adesso è connesso con %2\$s"; -App::$strings["%1\$s poked %2\$s"] = "%1\$s ha mandato un poke a %2\$s"; -App::$strings["poked"] = "ha mandato un poke"; -App::$strings["View %s's profile @ %s"] = "Vedi il profilo di %s @ %s"; -App::$strings["Categories:"] = "Categorie:"; -App::$strings["Filed under:"] = "Classificato come:"; -App::$strings["View in context"] = "Vedi nel contesto"; -App::$strings["remove"] = "rimuovi"; -App::$strings["Delete Selected Items"] = "Elimina gli oggetti selezionati"; -App::$strings["View Source"] = "Vedi il sorgente"; -App::$strings["Follow Thread"] = "Segui la discussione"; -App::$strings["Unfollow Thread"] = "Non seguire la discussione"; -App::$strings["Activity/Posts"] = "Attività e Post"; -App::$strings["Edit Connection"] = "Modifica il contatto"; -App::$strings["Message"] = "Messaggio"; -App::$strings["%s likes this."] = "Piace a %s."; -App::$strings["%s doesn't like this."] = "Non piace a %s."; -App::$strings["%2\$d people like this."] = array( - 0 => "", - 1 => "Piace a %2\$d persone.", -); -App::$strings["%2\$d people don't like this."] = array( - 0 => "", - 1 => "Non piace a %2\$d persone.", -); -App::$strings["and"] = "e"; -App::$strings[", and %d other people"] = array( - 0 => "", - 1 => "e altre %d persone", -); -App::$strings["%s like this."] = "Piace a %s."; -App::$strings["%s don't like this."] = "Non piace a %s."; -App::$strings["Set your location"] = "La tua località"; -App::$strings["Clear browser location"] = "Rimuovi la località data dal browser"; -App::$strings["Tag term:"] = "Tag:"; -App::$strings["Where are you right now?"] = "Dove sei ora?"; -App::$strings["Page link name"] = "Nome del link alla pagina"; -App::$strings["Post as"] = "Pubblica come "; -App::$strings["Toggle voting"] = "Abilita/disabilita il voto"; -App::$strings["Categories (optional, comma-separated list)"] = "Categorie (facoltative, lista separata da virgole)"; -App::$strings["Set publish date"] = "Data di uscita programmata"; -App::$strings["Discover"] = "Scopri"; -App::$strings["Imported public streams"] = "Contenuti pubblici importati"; -App::$strings["Commented Order"] = "Commenti recenti"; -App::$strings["Sort by Comment Date"] = "Per data del commento"; -App::$strings["Posted Order"] = "Post recenti"; -App::$strings["Sort by Post Date"] = "Per data di creazione"; -App::$strings["Posts that mention or involve you"] = "Post che ti riguardano"; -App::$strings["Activity Stream - by date"] = "Elenco attività - per data"; -App::$strings["Starred"] = "Preferiti"; -App::$strings["Favourite Posts"] = "Post preferiti"; -App::$strings["Spam"] = "Spam"; -App::$strings["Posts flagged as SPAM"] = "Post marcati come spam"; -App::$strings["Status Messages and Posts"] = "Post e messaggi di stato"; -App::$strings["About"] = "Informazioni"; -App::$strings["Profile Details"] = "Dettagli del profilo"; -App::$strings["Files and Storage"] = "Archivio file"; -App::$strings["Chatrooms"] = "Chat"; -App::$strings["Saved Bookmarks"] = "Segnalibri salvati"; -App::$strings["Manage Webpages"] = "Gestisci le pagine web"; -App::$strings["__ctx:noun__ Attending"] = array( - 0 => "Partecipa", - 1 => "Partecipano", -); -App::$strings["__ctx:noun__ Not Attending"] = array( - 0 => "Non partecipa", - 1 => "Non partecipano", -); -App::$strings["__ctx:noun__ Undecided"] = array( - 0 => "Indeciso", - 1 => "Indecisi", -); -App::$strings["__ctx:noun__ Agree"] = array( - 0 => "D'accordo", - 1 => "D'accordo", -); -App::$strings["__ctx:noun__ Disagree"] = array( - 0 => "Non d'accordo", - 1 => "Non d'accordo", -); -App::$strings["__ctx:noun__ Abstain"] = array( - 0 => "Astenuto", - 1 => "Astenuti", -); +App::$strings["l F d, Y \\@ g:i A"] = "l d F Y \\@ G:i"; +App::$strings["Starts:"] = "Inizio:"; +App::$strings["Finishes:"] = "Fine:"; +App::$strings["This event has been added to your calendar."] = "Questo evento è stato aggiunto al tuo calendario"; +App::$strings["Not specified"] = "Non specificato"; +App::$strings["Needs Action"] = "Necessita di un intervento"; +App::$strings["Completed"] = "Completato"; +App::$strings["In Process"] = "In corso"; +App::$strings["Cancelled"] = "Annullato"; App::$strings["Cannot create a duplicate channel identifier on this system. Import failed."] = "Non posso creare un canale con un identificativo che già esiste su questo sistema. L'importazione è fallita."; App::$strings["Channel clone failed. Import failed."] = "Impossibile clonare il canale. L'importazione è fallita."; -App::$strings["Frequently"] = "Frequentemente"; -App::$strings["Hourly"] = "Ogni ora"; -App::$strings["Twice daily"] = "Due volte al giorno"; -App::$strings["Daily"] = "Ogni giorno"; -App::$strings["Weekly"] = "Ogni settimana"; -App::$strings["Monthly"] = "Ogni mese"; -App::$strings["Currently Male"] = "Al momento maschio"; -App::$strings["Currently Female"] = "Al momento femmina"; -App::$strings["Mostly Male"] = "Prevalentemente maschio"; -App::$strings["Mostly Female"] = "Prevalentemente femmina"; -App::$strings["Transgender"] = "Transgender"; -App::$strings["Intersex"] = "Intersex"; -App::$strings["Transsexual"] = "Transessuale"; -App::$strings["Hermaphrodite"] = "Ermafrodito"; -App::$strings["Neuter"] = "Neutro"; -App::$strings["Non-specific"] = "Non specificato"; -App::$strings["Undecided"] = "Indeciso"; -App::$strings["Males"] = "Maschi"; -App::$strings["Females"] = "Femmine"; -App::$strings["Gay"] = "Gay"; -App::$strings["Lesbian"] = "Lesbica"; -App::$strings["No Preference"] = "Senza preferenza"; -App::$strings["Bisexual"] = "Bisessuale"; -App::$strings["Autosexual"] = "Autosessuale"; -App::$strings["Abstinent"] = "Astinente"; -App::$strings["Virgin"] = "Vergine"; -App::$strings["Deviant"] = "Deviato"; -App::$strings["Fetish"] = "Feticista"; -App::$strings["Oodles"] = "Un sacco"; -App::$strings["Nonsexual"] = "Asessuato"; -App::$strings["Single"] = "Single"; -App::$strings["Lonely"] = "Da solo"; -App::$strings["Available"] = "Disponibile"; -App::$strings["Unavailable"] = "Non disponibile"; -App::$strings["Has crush"] = "Ha una cotta"; -App::$strings["Infatuated"] = "Infatuato/a"; -App::$strings["Dating"] = "Disponibile a un incontro"; -App::$strings["Unfaithful"] = "Infedele"; -App::$strings["Sex Addict"] = "Sesso-dipendente"; -App::$strings["Friends/Benefits"] = "Amici con qualcosa in più"; -App::$strings["Casual"] = "Casual"; -App::$strings["Engaged"] = "Impegnato"; -App::$strings["Married"] = "Sposato/a"; -App::$strings["Imaginarily married"] = "Con matrimonio immaginario"; -App::$strings["Partners"] = "Partner"; -App::$strings["Cohabiting"] = "Convivente"; -App::$strings["Common law"] = "Matrimonio regolare"; -App::$strings["Happy"] = "Felice"; -App::$strings["Not looking"] = "Non in cerca"; -App::$strings["Swinger"] = "Scambista"; -App::$strings["Betrayed"] = "Tradito/a"; -App::$strings["Separated"] = "Separato/a"; -App::$strings["Unstable"] = "Instabile"; -App::$strings["Divorced"] = "Divorziato/a"; -App::$strings["Imaginarily divorced"] = "Sogna il divorzio"; -App::$strings["Widowed"] = "Vedovo/a"; -App::$strings["Uncertain"] = "Incerto/a"; -App::$strings["It's complicated"] = "Relazione complicata"; -App::$strings["Don't care"] = "Chi se ne frega"; -App::$strings["Ask me"] = "Chiedimelo"; -App::$strings["%1\$s's bookmarks"] = "I segnalibri di %1\$s"; -App::$strings["guest:"] = "ospite:"; -App::$strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "I controlli di sicurezza sono falliti. Probabilmente è accaduto perché la pagina è stata tenuta aperta troppo a lungo (ore?) prima di inviare il contenuto."; +App::$strings["(Unknown)"] = "(Sconosciuto)"; +App::$strings["Visible to anybody on the internet."] = "Visibile a chiunque su internet."; +App::$strings["Visible to you only."] = "Visibile solo a te."; +App::$strings["Visible to anybody in this network."] = "Visibile a tutti su questa rete."; +App::$strings["Visible to anybody authenticated."] = "Visibile a chiunque sia autenticato."; +App::$strings["Visible to anybody on %s."] = "Visibile a tutti su %s."; +App::$strings["Visible to all connections."] = "Visibile a tutti coloro che ti seguono."; +App::$strings["Visible to approved connections."] = "Visibile ai contatti approvati."; +App::$strings["Visible to specific connections."] = "Visibile ad alcuni contatti scelti."; +App::$strings["Privacy group is empty."] = "Gruppo di canali vuoto."; +App::$strings["Privacy group: %s"] = "Gruppo di canali: %s"; +App::$strings["Connection not found."] = "Contatto non trovato."; +App::$strings["profile photo"] = "foto del profilo"; +App::$strings["No recipient provided."] = "Devi scegliere un destinatario."; +App::$strings["[no subject]"] = "[nessun titolo]"; +App::$strings["Unable to determine sender."] = "Impossibile determinare il mittente."; +App::$strings["Stored post could not be verified."] = "Non è stato possibile verificare il post."; App::$strings["prev"] = "prec"; App::$strings["first"] = "inizio"; App::$strings["last"] = "fine"; @@ -1877,6 +1568,7 @@ App::$strings["newer"] = "più nuovi"; App::$strings["No connections"] = "Nessun contatto"; App::$strings["View all %s connections"] = "Mostra tutti i %s contatti"; App::$strings["poke"] = "poke"; +App::$strings["poked"] = "ha mandato un poke"; App::$strings["ping"] = "ping"; App::$strings["pinged"] = "ha effettuato un ping"; App::$strings["prod"] = "spintone"; @@ -1939,21 +1631,385 @@ App::$strings["Select an alternate language"] = "Seleziona una lingua diversa"; App::$strings["activity"] = "l'attività"; App::$strings["Design Tools"] = "Strumenti di design"; App::$strings["Pages"] = "Pagine"; -App::$strings["Logged out."] = "Uscita effettuata."; -App::$strings["Failed authentication"] = "Autenticazione fallita"; -App::$strings["Can view my normal stream and posts"] = "Può vedere i miei contenuti e i post normali"; -App::$strings["Can view my webpages"] = "Può vedere le mie pagine web"; -App::$strings["Can post on my channel page (\"wall\")"] = "Può scrivere sulla bacheca del mio canale"; -App::$strings["Can like/dislike stuff"] = "Può aggiungere \"mi piace\" a tutto il resto"; -App::$strings["Profiles and things other than posts/comments"] = "Può aggiungere \"mi piace\" a tutto ciò che non riguarda i post, come per esempio il profilo"; -App::$strings["Can forward to all my channel contacts via post @mentions"] = "Può inoltrare post a tutti i contatti del canale tramite una @menzione"; -App::$strings["Advanced - useful for creating group forum channels"] = "Impostazione avanzata - utile per creare un canale-forum di discussione"; -App::$strings["Can chat with me (when available)"] = "Può aprire una chat con me (se disponibile)"; -App::$strings["Can write to my file storage and photos"] = "Può modificare il mio archivio file e foto"; -App::$strings["Can edit my webpages"] = "Può modificare le mie pagine web"; -App::$strings["Somewhat advanced - very useful in open communities"] = "Piuttosto avanzato - molto utile nelle comunità aperte"; -App::$strings["Can administer my channel resources"] = "Può amministrare i contenuti del mio canale"; -App::$strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "Impostazione pericolosa - lasciare il valore predefinito se non si è assolutamente sicuri"; +App::$strings["System"] = "Sistema"; +App::$strings["New App"] = "Nuova app"; +App::$strings["Suggestions"] = "Suggerimenti"; +App::$strings["See more..."] = "Altro..."; +App::$strings["You have %1$.0f of %2$.0f allowed connections."] = "Hai attivato %1$.0f delle %2$.0f connessioni permesse."; +App::$strings["Add New Connection"] = "Aggiungi un contatto"; +App::$strings["Enter channel address"] = "Indirizzo del canale"; +App::$strings["Examples: bob@example.com, https://example.com/barbara"] = "Per esempio: bob@example.com, https://example.com/barbara"; +App::$strings["Notes"] = "Note"; +App::$strings["Remove term"] = "Rimuovi termine"; +App::$strings["Saved Searches"] = "Ricerche salvate"; +App::$strings["add"] = "aggiungi"; +App::$strings["Saved Folders"] = "Cartelle salvate"; +App::$strings["Everything"] = "Tutto"; +App::$strings["Archives"] = "Archivi"; +App::$strings["Refresh"] = "Aggiorna"; +App::$strings["Account settings"] = "Il tuo account"; +App::$strings["Channel settings"] = "Impostazioni del canale"; +App::$strings["Additional features"] = "Funzionalità opzionali"; +App::$strings["Feature/Addon settings"] = "Componenti aggiuntivi"; +App::$strings["Display settings"] = "Aspetto"; +App::$strings["Manage locations"] = "Gestione repliche"; +App::$strings["Export channel"] = "Esporta il canale"; +App::$strings["Connected apps"] = "App connesse"; +App::$strings["Premium Channel Settings"] = "Canale premium - impostazioni"; +App::$strings["Private Mail Menu"] = "Menu messaggi privati"; +App::$strings["Combined View"] = "Vista combinata"; +App::$strings["Inbox"] = "In arrivo"; +App::$strings["Outbox"] = "Inviati"; +App::$strings["New Message"] = "Nuovo messaggio"; +App::$strings["Conversations"] = "Conversazioni"; +App::$strings["Received Messages"] = "Ricevuti"; +App::$strings["Sent Messages"] = "Inviati"; +App::$strings["No messages."] = "Nessun messaggio."; +App::$strings["Delete conversation"] = "Elimina la conversazione"; +App::$strings["Events Menu"] = "Menu eventi"; +App::$strings["Day View"] = "Eventi del giorno"; +App::$strings["Week View"] = "Eventi della settimana"; +App::$strings["Month View"] = "Eventi del mese"; +App::$strings["Events Tools"] = "Gestione eventi"; +App::$strings["Export Calendar"] = "Esporta calendario"; +App::$strings["Import Calendar"] = "Importa calendario"; +App::$strings["Chatrooms"] = "Chat"; +App::$strings["Overview"] = "Riepilogo"; +App::$strings["Chat Members"] = "Partecipanti"; +App::$strings["Bookmarked Chatrooms"] = "Chat nei segnalibri"; +App::$strings["Suggested Chatrooms"] = "Chat suggerite"; +App::$strings["photo/image"] = "foto/immagine"; +App::$strings["Click to show more"] = "Clicca per mostrare tutto"; +App::$strings["Rating Tools"] = "Valutazione"; +App::$strings["Rate Me"] = "Valutami"; +App::$strings["View Ratings"] = "Vedi le valutazioni ricevute"; +App::$strings["Forums"] = "Forum"; +App::$strings["Tasks"] = "Attività"; +App::$strings["Documentation"] = "Guida"; +App::$strings["Project/Site Information"] = "Informazioni sul sito/progetto"; +App::$strings["For Members"] = "Per gli utenti"; +App::$strings["For Administrators"] = "Per gli amministratori"; +App::$strings["For Developers"] = "Per sviluppatori"; +App::$strings["Member registrations waiting for confirmation"] = "Richieste in attesa di conferma"; +App::$strings["Inspect queue"] = "Coda di attesa"; +App::$strings["DB updates"] = "Aggiornamenti al DB"; +App::$strings["Admin"] = "Amministrazione"; +App::$strings["Plugin Features"] = "Plugin"; +App::$strings["Channel is blocked on this site."] = "Il canale è bloccato per questo sito."; +App::$strings["Channel location missing."] = "Manca l'indirizzo del canale."; +App::$strings["Response from remote channel was incomplete."] = "La risposta dal canale non è completa."; +App::$strings["Channel was deleted and no longer exists."] = "Il canale è stato rimosso e non esiste più."; +App::$strings["Protocol disabled."] = "Protocollo disabilitato."; +App::$strings["Channel discovery failed."] = "La ricerca del canale non ha avuto successo."; +App::$strings["Cannot connect to yourself."] = "Non puoi connetterti a te stesso."; +App::$strings["%1\$s's bookmarks"] = "I segnalibri di %1\$s"; +App::$strings["Public Timeline"] = "Diario pubblico"; +App::$strings["Image/photo"] = "Immagine"; +App::$strings["Encrypted content"] = "Contenuto cifrato"; +App::$strings["Install %s element: "] = "Installa l'elemento %s:"; +App::$strings["This post contains an installable %s element, however you lack permissions to install it on this site."] = "Questo post contiene un elemento %s installabile, tuttavia non hai i permessi necessari per l'installazione."; +App::$strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s ha scritto %2\$s %3\$s"; +App::$strings["Click to open/close"] = "Clicca per aprire/chiudere"; +App::$strings["spoiler"] = "spoiler"; +App::$strings["Different viewers will see this text differently"] = "Ad altri questo testo potrebbe apparire in modo differente"; +App::$strings["$1 wrote:"] = "$1 ha scritto:"; +App::$strings["Directory Options"] = "Visibilità negli elenchi pubblici"; +App::$strings["Safe Mode"] = "Modalità SafeSearch"; +App::$strings["Public Forums Only"] = "Solo forum pubblici"; +App::$strings["This Website Only"] = "Solo in questo sito"; +App::$strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "I controlli di sicurezza sono falliti. Probabilmente è accaduto perché la pagina è stata tenuta aperta troppo a lungo (ore?) prima di inviare il contenuto."; +App::$strings["Logout"] = "Esci"; +App::$strings["End this session"] = "Chiudi questa sessione"; +App::$strings["Home"] = "Bacheca"; +App::$strings["Your posts and conversations"] = "I tuoi post e conversazioni"; +App::$strings["Your profile page"] = "Il tuo profilo"; +App::$strings["Manage/Edit profiles"] = "Gestisci i tuoi profili"; +App::$strings["Edit Profile"] = "Modifica il profilo"; +App::$strings["Edit your profile"] = "Modifica il tuo profilo"; +App::$strings["Your photos"] = "Le tue foto"; +App::$strings["Your files"] = "I tuoi file"; +App::$strings["Your chatrooms"] = "Le tue chat"; +App::$strings["Bookmarks"] = "Segnalibri"; +App::$strings["Your bookmarks"] = "I tuoi segnalibri"; +App::$strings["Your webpages"] = "Le tue pagine web"; +App::$strings["Sign in"] = "Accedi"; +App::$strings["%s - click to logout"] = "%s - clicca per uscire"; +App::$strings["Remote authentication"] = "Accedi dal tuo hub"; +App::$strings["Click to authenticate to your home hub"] = "Clicca per farti riconoscere dal tuo hub principale"; +App::$strings["Home Page"] = "Bacheca"; +App::$strings["Create an account"] = "Crea un account"; +App::$strings["Help and documentation"] = "Guida e documentazione"; +App::$strings["Applications, utilities, links, games"] = "Applicazioni, utilità, link, giochi"; +App::$strings["Search site @name, #tag, ?docs, content"] = "Cerca nel sito per @nome, #tag, ?guida o per contenuto"; +App::$strings["Channel Directory"] = "Elenchi pubblici dei canali"; +App::$strings["Your grid"] = "La tua rete"; +App::$strings["Mark all grid notifications seen"] = "Segna come lette le notifiche della tua rete"; +App::$strings["Channel home"] = "Bacheca del canale"; +App::$strings["Mark all channel notifications seen"] = "Segna come lette le notifiche del canale"; +App::$strings["Notices"] = "Avvisi"; +App::$strings["Notifications"] = "Notifiche"; +App::$strings["See all notifications"] = "Vedi tutte le notifiche"; +App::$strings["Private mail"] = "Messaggi privati"; +App::$strings["See all private messages"] = "Guarda tutti i messaggi privati"; +App::$strings["Mark all private messages seen"] = "Segna come letti tutti i messaggi privati"; +App::$strings["Event Calendar"] = "Calendario"; +App::$strings["See all events"] = "Guarda tutti gli eventi"; +App::$strings["Mark all events seen"] = "Marca come letti tutti gli eventi"; +App::$strings["Manage Your Channels"] = "Gestisci i tuoi canali"; +App::$strings["Account/Channel Settings"] = "Impostazioni dell'account e del canale"; +App::$strings["Site Setup and Configuration"] = "Installazione e configurazione del sito"; +App::$strings["Loading..."] = "Caricamento in corso..."; +App::$strings["@name, #tag, ?doc, content"] = "@nome, #tag, ?guida, contenuto"; +App::$strings["Please wait..."] = "Attendere..."; +App::$strings["New window"] = "Nuova finestra"; +App::$strings["Open the selected location in a different window or browser tab"] = "Apri l'indirizzo selezionato in una nuova scheda o finestra"; +App::$strings["User '%s' deleted"] = "Utente '%s' eliminato"; +App::$strings["%d invitation available"] = array( + 0 => "%d invito disponibile", + 1 => "%d inviti disponibili", +); +App::$strings["Find Channels"] = "Ricerca canali"; +App::$strings["Enter name or interest"] = "Scrivi un nome o un interesse"; +App::$strings["Connect/Follow"] = "Aggiungi"; +App::$strings["Examples: Robert Morgenstein, Fishing"] = "Per esempio: Mario Rossi, Pesca"; +App::$strings["Random Profile"] = "Profilo casuale"; +App::$strings["Invite Friends"] = "Invita amici"; +App::$strings["Advanced example: name=fred and country=iceland"] = "Per esempio: name=mario e country=italy"; +App::$strings["%d connection in common"] = array( + 0 => "%d contatto in comune", + 1 => "%d contatti in comune", +); +App::$strings["show more"] = "mostra tutto"; +App::$strings["%1\$s is now connected with %2\$s"] = "%1\$s adesso è connesso con %2\$s"; +App::$strings["%1\$s poked %2\$s"] = "%1\$s ha mandato un poke a %2\$s"; +App::$strings["View %s's profile @ %s"] = "Vedi il profilo di %s @ %s"; +App::$strings["Categories:"] = "Categorie:"; +App::$strings["Filed under:"] = "Classificato come:"; +App::$strings["View in context"] = "Vedi nel contesto"; +App::$strings["remove"] = "rimuovi"; +App::$strings["Delete Selected Items"] = "Elimina gli oggetti selezionati"; +App::$strings["View Source"] = "Vedi il sorgente"; +App::$strings["Follow Thread"] = "Segui la discussione"; +App::$strings["Unfollow Thread"] = "Non seguire la discussione"; +App::$strings["Activity/Posts"] = "Attività e Post"; +App::$strings["Edit Connection"] = "Modifica il contatto"; +App::$strings["Message"] = "Messaggio"; +App::$strings["%s likes this."] = "Piace a %s."; +App::$strings["%s doesn't like this."] = "Non piace a %s."; +App::$strings["%2\$d people like this."] = array( + 0 => "", + 1 => "Piace a %2\$d persone.", +); +App::$strings["%2\$d people don't like this."] = array( + 0 => "", + 1 => "Non piace a %2\$d persone.", +); +App::$strings["and"] = "e"; +App::$strings[", and %d other people"] = array( + 0 => "", + 1 => "e altre %d persone", +); +App::$strings["%s like this."] = "Piace a %s."; +App::$strings["%s don't like this."] = "Non piace a %s."; +App::$strings["Set your location"] = "La tua località"; +App::$strings["Clear browser location"] = "Rimuovi la località data dal browser"; +App::$strings["Tag term:"] = "Tag:"; +App::$strings["Where are you right now?"] = "Dove sei ora?"; +App::$strings["Page link name"] = "Nome del link alla pagina"; +App::$strings["Post as"] = "Pubblica come "; +App::$strings["Toggle voting"] = "Abilita/disabilita il voto"; +App::$strings["Categories (optional, comma-separated list)"] = "Categorie (facoltative, lista separata da virgole)"; +App::$strings["Set publish date"] = "Data di uscita programmata"; +App::$strings["OK"] = "OK"; +App::$strings["Discover"] = "Scopri"; +App::$strings["Imported public streams"] = "Contenuti pubblici importati"; +App::$strings["Commented Order"] = "Commenti recenti"; +App::$strings["Sort by Comment Date"] = "Per data del commento"; +App::$strings["Posted Order"] = "Post recenti"; +App::$strings["Sort by Post Date"] = "Per data di creazione"; +App::$strings["Posts that mention or involve you"] = "Post che ti riguardano"; +App::$strings["Activity Stream - by date"] = "Elenco attività - per data"; +App::$strings["Starred"] = "Preferiti"; +App::$strings["Favourite Posts"] = "Post preferiti"; +App::$strings["Spam"] = "Spam"; +App::$strings["Posts flagged as SPAM"] = "Post marcati come spam"; +App::$strings["Status Messages and Posts"] = "Post e messaggi di stato"; +App::$strings["About"] = "Informazioni"; +App::$strings["Profile Details"] = "Dettagli del profilo"; +App::$strings["Photo Albums"] = "Album foto"; +App::$strings["Files and Storage"] = "Archivio file"; +App::$strings["Saved Bookmarks"] = "Segnalibri salvati"; +App::$strings["Manage Webpages"] = "Gestisci le pagine web"; +App::$strings["__ctx:noun__ Attending"] = array( + 0 => "Partecipa", + 1 => "Partecipano", +); +App::$strings["__ctx:noun__ Not Attending"] = array( + 0 => "Non partecipa", + 1 => "Non partecipano", +); +App::$strings["__ctx:noun__ Undecided"] = array( + 0 => "Indeciso", + 1 => "Indecisi", +); +App::$strings["__ctx:noun__ Agree"] = array( + 0 => "D'accordo", + 1 => "D'accordo", +); +App::$strings["__ctx:noun__ Disagree"] = array( + 0 => "Non d'accordo", + 1 => "Non d'accordo", +); +App::$strings["__ctx:noun__ Abstain"] = array( + 0 => "Astenuto", + 1 => "Astenuti", +); +App::$strings["Frequently"] = "Frequentemente"; +App::$strings["Hourly"] = "Ogni ora"; +App::$strings["Twice daily"] = "Due volte al giorno"; +App::$strings["Daily"] = "Ogni giorno"; +App::$strings["Weekly"] = "Ogni settimana"; +App::$strings["Monthly"] = "Ogni mese"; +App::$strings["Currently Male"] = "Al momento maschio"; +App::$strings["Currently Female"] = "Al momento femmina"; +App::$strings["Mostly Male"] = "Prevalentemente maschio"; +App::$strings["Mostly Female"] = "Prevalentemente femmina"; +App::$strings["Transgender"] = "Transgender"; +App::$strings["Intersex"] = "Intersex"; +App::$strings["Transsexual"] = "Transessuale"; +App::$strings["Hermaphrodite"] = "Ermafrodito"; +App::$strings["Neuter"] = "Neutro"; +App::$strings["Non-specific"] = "Non specificato"; +App::$strings["Other"] = "Altro"; +App::$strings["Undecided"] = "Indeciso"; +App::$strings["Males"] = "Maschi"; +App::$strings["Females"] = "Femmine"; +App::$strings["Gay"] = "Gay"; +App::$strings["Lesbian"] = "Lesbica"; +App::$strings["No Preference"] = "Senza preferenza"; +App::$strings["Bisexual"] = "Bisessuale"; +App::$strings["Autosexual"] = "Autosessuale"; +App::$strings["Abstinent"] = "Astinente"; +App::$strings["Virgin"] = "Vergine"; +App::$strings["Deviant"] = "Deviato"; +App::$strings["Fetish"] = "Feticista"; +App::$strings["Oodles"] = "Un sacco"; +App::$strings["Nonsexual"] = "Asessuato"; +App::$strings["Single"] = "Single"; +App::$strings["Lonely"] = "Da solo"; +App::$strings["Available"] = "Disponibile"; +App::$strings["Unavailable"] = "Non disponibile"; +App::$strings["Has crush"] = "Ha una cotta"; +App::$strings["Infatuated"] = "Infatuato/a"; +App::$strings["Dating"] = "Disponibile a un incontro"; +App::$strings["Unfaithful"] = "Infedele"; +App::$strings["Sex Addict"] = "Sesso-dipendente"; +App::$strings["Friends/Benefits"] = "Amici con qualcosa in più"; +App::$strings["Casual"] = "Casual"; +App::$strings["Engaged"] = "Impegnato"; +App::$strings["Married"] = "Sposato/a"; +App::$strings["Imaginarily married"] = "Con matrimonio immaginario"; +App::$strings["Partners"] = "Partner"; +App::$strings["Cohabiting"] = "Convivente"; +App::$strings["Common law"] = "Matrimonio regolare"; +App::$strings["Happy"] = "Felice"; +App::$strings["Not looking"] = "Non in cerca"; +App::$strings["Swinger"] = "Scambista"; +App::$strings["Betrayed"] = "Tradito/a"; +App::$strings["Separated"] = "Separato/a"; +App::$strings["Unstable"] = "Instabile"; +App::$strings["Divorced"] = "Divorziato/a"; +App::$strings["Imaginarily divorced"] = "Sogna il divorzio"; +App::$strings["Widowed"] = "Vedovo/a"; +App::$strings["Uncertain"] = "Incerto/a"; +App::$strings["It's complicated"] = "Relazione complicata"; +App::$strings["Don't care"] = "Chi se ne frega"; +App::$strings["Ask me"] = "Chiedimelo"; +App::$strings["Visible to your default audience"] = "Visibile secondo le impostazioni predefinite"; +App::$strings["Only me"] = "Solo io"; +App::$strings["Public"] = "Pubblico"; +App::$strings["Anybody in the \$Projectname network"] = "Tutti sulla rete \$Projectname"; +App::$strings["Any account on %s"] = "Tutti gli account su %s"; +App::$strings["Any of my connections"] = "Chiunque tra i miei contatti"; +App::$strings["Only connections I specifically allow"] = "Solo chi riceve il mio permesso"; +App::$strings["Anybody authenticated (could include visitors from other networks)"] = "Chiunque sia autenticato (inclusi visitatori di altre reti)"; +App::$strings["Any connections including those who haven't yet been approved"] = "Tutti i contatti inclusi quelli non ancora approvati"; +App::$strings["This is your default setting for the audience of your normal stream, and posts."] = ""; +App::$strings["This is your default setting for who can view your default channel profile"] = ""; +App::$strings["This is your default setting for who can view your connections"] = ""; +App::$strings["This is your default setting for who can view your file storage and photos"] = ""; +App::$strings["This is your default setting for the audience of your webpages"] = ""; +App::$strings["Not a valid email address"] = "Email non valida"; +App::$strings["Your email domain is not among those allowed on this site"] = "Il dominio della tua email attualmente non è permesso su questo sito"; +App::$strings["Your email address is already registered at this site."] = "La tua email è già registrata su questo sito."; +App::$strings["An invitation is required."] = "È necessario un invito."; +App::$strings["Invitation could not be verified."] = "L'invito non può essere verificato."; +App::$strings["Please enter the required information."] = "Inserisci le informazioni richieste."; +App::$strings["Failed to store account information."] = "Non è stato possibile salvare le informazioni del tuo account."; +App::$strings["Registration confirmation for %s"] = "Registrazione di %s confermata"; +App::$strings["Registration request at %s"] = "Richiesta di registrazione su %s"; +App::$strings["Administrator"] = "Amministratore"; +App::$strings["your registration password"] = "la password di registrazione"; +App::$strings["Registration details for %s"] = "Dettagli della registrazione di %s"; +App::$strings["Account approved."] = "Account approvato."; +App::$strings["Registration revoked for %s"] = "Registrazione revocata per %s"; +App::$strings["Account verified. Please login."] = "Registrazione verificata. Adesso puoi effettuare login."; +App::$strings["Click here to upgrade."] = "Clicca qui per aggiornare."; +App::$strings["This action exceeds the limits set by your subscription plan."] = "Questa operazione supera i limiti del tuo abbonamento."; +App::$strings["This action is not available under your subscription plan."] = "Questa operazione non è prevista dal tuo abbonamento."; +App::$strings["Item was not found."] = "Elemento non trovato."; +App::$strings["No source file."] = "Nessun file di origine."; +App::$strings["Cannot locate file to replace"] = "Il file da sostituire non è stato trovato"; +App::$strings["Cannot locate file to revise/update"] = "Il file da aggiornare non è stato trovato"; +App::$strings["File exceeds size limit of %d"] = "Il file supera la dimensione massima di %d"; +App::$strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Hai raggiunto il limite complessivo di %1$.0f Mbytes per gli allegati."; +App::$strings["File upload failed. Possible system limit or action terminated."] = "Caricamento file fallito, potrebbe essere stato interrotto o potrebbe aver superato lo spazio assegnato."; +App::$strings["Stored file could not be verified. Upload failed."] = "Il file non può essere verificato. Caricamento fallito."; +App::$strings["Path not available."] = "Percorso non disponibile."; +App::$strings["Empty pathname"] = "Il percorso del file è vuoto"; +App::$strings["duplicate filename or path"] = "il file o il percorso del file è duplicato"; +App::$strings["Path not found."] = "Percorso del file non trovato."; +App::$strings["mkdir failed."] = "mkdir fallito."; +App::$strings["database storage failed."] = "scrittura su database fallita."; +App::$strings["Empty path"] = "La posizione è vuota"; +App::$strings["Unable to obtain identity information from database"] = "Impossibile ottenere le informazioni di identificazione dal database"; +App::$strings["Empty name"] = "Nome vuoto"; +App::$strings["Name too long"] = "Nome troppo lungo"; +App::$strings["No account identifier"] = "Account senza identificativo"; +App::$strings["Nickname is required."] = "Il nome dell'account è obbligatorio."; +App::$strings["Reserved nickname. Please choose another."] = "Nome utente riservato. Per favore scegline un altro."; +App::$strings["Nickname has unsupported characters or is already being used on this site."] = "Il nome dell'account è già in uso oppure ha dei caratteri non supportati."; +App::$strings["Unable to retrieve created identity"] = "Impossibile caricare l'identità creata"; +App::$strings["Default Profile"] = "Profilo predefinito"; +App::$strings["Requested channel is not available."] = "Il canale che cerchi non è disponibile."; +App::$strings["Create New Profile"] = "Crea un nuovo profilo"; +App::$strings["Visible to everybody"] = "Visibile a tutti"; +App::$strings["Gender:"] = "Sesso:"; +App::$strings["Status:"] = "Stato:"; +App::$strings["Homepage:"] = "Home page:"; +App::$strings["Online Now"] = "Online adesso"; +App::$strings["Like this channel"] = "Mi piace questo canale"; +App::$strings["j F, Y"] = "j F Y"; +App::$strings["j F"] = "j F"; +App::$strings["Birthday:"] = "Compleanno:"; +App::$strings["for %1\$d %2\$s"] = "per %1\$d %2\$s"; +App::$strings["Sexual Preference:"] = "Preferenze sessuali:"; +App::$strings["Tags:"] = "Tag:"; +App::$strings["Political Views:"] = "Orientamento politico:"; +App::$strings["Religion:"] = "Religione:"; +App::$strings["Hobbies/Interests:"] = "Interessi e hobby:"; +App::$strings["Likes:"] = "Mi piace:"; +App::$strings["Dislikes:"] = "Non mi piace:"; +App::$strings["Contact information and Social Networks:"] = "Contatti e social network:"; +App::$strings["My other channels:"] = "I miei altri canali:"; +App::$strings["Musical interests:"] = "Gusti musicali:"; +App::$strings["Books, literature:"] = "Libri, letteratura:"; +App::$strings["Television:"] = "Televisione:"; +App::$strings["Film/dance/culture/entertainment:"] = "Film, danza, cultura, intrattenimento:"; +App::$strings["Love/Romance:"] = "Amore:"; +App::$strings["Work/employment:"] = "Lavoro:"; +App::$strings["School/education:"] = "Scuola:"; +App::$strings["Like this thing"] = "Mi piace"; App::$strings["General Features"] = "Funzionalità di base"; App::$strings["Content Expiration"] = "Scadenza"; App::$strings["Remove posts/comments and/or private messages at a future time"] = "Elimina i post, i commenti o i messaggi privati dopo un lasso di tempo"; @@ -1965,7 +2021,6 @@ App::$strings["Profile Import/Export"] = "Importa/esporta il profilo"; App::$strings["Save and load profile details across sites/channels"] = "Salva o ripristina le informazioni del profilo su siti diversi"; App::$strings["Web Pages"] = "Pagine web"; App::$strings["Provide managed web pages on your channel"] = "Attiva la creazione di pagine web sul tuo canale"; -App::$strings["Provide a wiki for your channel"] = "Fornisce una wiki per il tuo canale"; App::$strings["Hide Rating"] = "Nascondi le valutazioni"; App::$strings["Hide the rating buttons on your channel and profile pages. Note: People can still rate you somewhere else."] = "Nascondi i bottoni delle valutazioni sul tuo canale e sul profilo. Nota: le persone potranno comunque esprimere una valutazione altrove."; App::$strings["Private Notes"] = "Note private"; @@ -1999,7 +2054,6 @@ App::$strings["Search by Date"] = "Ricerca per data"; App::$strings["Ability to select posts by date ranges"] = "Per selezionare i post in un intervallo tra date"; App::$strings["Privacy Groups"] = "Gruppi di canali"; App::$strings["Enable management and selection of privacy groups"] = "Abilita i gruppi di canali"; -App::$strings["Saved Searches"] = "Ricerche salvate"; App::$strings["Save search terms for re-use"] = "Salva i termini delle ricerche per poterle ripetere"; App::$strings["Network Personal Tab"] = "Attività personale"; App::$strings["Enable tab to display only Network posts that you've interacted on"] = "Abilita il link per mostrare solamente i contenuti con cui hai interagito"; @@ -2015,9 +2069,8 @@ App::$strings["Community Tagging"] = "Tag della comunità"; App::$strings["Ability to tag existing posts"] = "Permetti l'aggiunta di tag su post già esistenti"; App::$strings["Post Categories"] = "Categorie dei post"; App::$strings["Add categories to your posts"] = "Abilita le categorie per i tuoi post"; -App::$strings["Emoji Reactions"] = "Reazioni emoji"; -App::$strings["Add emoji reaction ability to posts"] = "Permetti le reazioni emoji ai post"; -App::$strings["Saved Folders"] = "Cartelle salvate"; +App::$strings["Emoji Reactions"] = ""; +App::$strings["Add emoji reaction ability to posts"] = ""; App::$strings["Ability to file posts under folders"] = "Abilita la raccolta dei tuoi articoli in cartelle"; App::$strings["Dislike Posts"] = "Non mi piace"; App::$strings["Ability to dislike posts/comments"] = "Abilità la funzionalità \"non mi piace\" per i tuoi post"; @@ -2025,149 +2078,63 @@ App::$strings["Star Posts"] = "Post con stella"; App::$strings["Ability to mark special posts with a star indicator"] = "Mostra la stella per segnare i post preferiti"; App::$strings["Tag Cloud"] = "Nuvola di tag"; App::$strings["Provide a personal tag cloud on your channel page"] = "Mostra la nuvola dei tag che usi di più sulla pagina del tuo canale"; +App::$strings["Embedded content"] = "Contenuti incorporati"; +App::$strings["Embedding disabled"] = "Disabilita la creazione di contenuti incorporati"; +App::$strings["Who can see this?"] = "Chi può vederlo?"; +App::$strings["Custom selection"] = "Selezione personalizzata"; +App::$strings["Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit the scope of \"Show\"."] = ""; +App::$strings["Show"] = "Mostra"; +App::$strings["Don't show"] = "Non mostrare"; +App::$strings["Other networks and post services"] = "Invio ad altre reti o a siti esterni"; +App::$strings["Post permissions %s cannot be changed %s after a post is shared.
These permissions set who is allowed to view the post."] = ""; +App::$strings["Logged out."] = "Uscita effettuata."; +App::$strings["Failed authentication"] = "Autenticazione fallita"; +App::$strings["Birthday"] = "Compleanno"; +App::$strings["Age: "] = "Età:"; +App::$strings["YYYY-MM-DD or MM-DD"] = "AAAA-MM-GG oppure MM-GG"; +App::$strings["never"] = "mai"; +App::$strings["less than a second ago"] = "meno di un secondo fa"; +App::$strings["__ctx:e.g. 22 hours ago, 1 minute ago__ %1\$d %2\$s ago"] = "%1\$d %2\$s fa"; +App::$strings["__ctx:relative_date__ year"] = array( + 0 => "anno", + 1 => "anni", +); +App::$strings["__ctx:relative_date__ month"] = array( + 0 => "mese", + 1 => "mesi", +); +App::$strings["__ctx:relative_date__ week"] = array( + 0 => "settimana", + 1 => "settimane", +); +App::$strings["__ctx:relative_date__ day"] = array( + 0 => "giorno", + 1 => "giorni", +); +App::$strings["__ctx:relative_date__ hour"] = array( + 0 => "ora", + 1 => "ore", +); +App::$strings["__ctx:relative_date__ minute"] = array( + 0 => "minuto", + 1 => "minuti", +); +App::$strings["__ctx:relative_date__ second"] = array( + 0 => "secondo", + 1 => "secondi", +); +App::$strings["%1\$s's birthday"] = "Compleanno di %1\$s"; +App::$strings["Happy Birthday %1\$s"] = "Buon compleanno %1\$s"; App::$strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Un gruppo di canali con lo stesso nome esisteva in precedenza ed è stato ripristinato. I vecchi permessi saranno applicati ai nuovi canali. Se non vuoi che ciò accada, devi creare un gruppo con un nome diverso."; App::$strings["Add new connections to this privacy group"] = "Aggiungi nuovi contatti a questo gruppo di canali"; App::$strings["edit"] = "modifica"; App::$strings["Edit group"] = "Modifica il gruppo"; App::$strings["Add privacy group"] = "Crea un gruppo di canali"; App::$strings["Channels not in any privacy group"] = "Canali che non sono in nessun gruppo"; -App::$strings["add"] = "aggiungi"; -App::$strings["l F d, Y \\@ g:i A"] = "l d F Y \\@ G:i"; -App::$strings["Starts:"] = "Inizio:"; -App::$strings["Finishes:"] = "Fine:"; -App::$strings["This event has been added to your calendar."] = "Questo evento è stato aggiunto al tuo calendario"; -App::$strings["Not specified"] = "Non specificato"; -App::$strings["Needs Action"] = "Necessita di un intervento"; -App::$strings["Completed"] = "Completato"; -App::$strings["In Process"] = "In corso"; -App::$strings["Cancelled"] = "Annullato"; -App::$strings["Not a valid email address"] = "Email non valida"; -App::$strings["Your email domain is not among those allowed on this site"] = "Il dominio della tua email attualmente non è permesso su questo sito"; -App::$strings["Your email address is already registered at this site."] = "La tua email è già registrata su questo sito."; -App::$strings["An invitation is required."] = "È necessario un invito."; -App::$strings["Invitation could not be verified."] = "L'invito non può essere verificato."; -App::$strings["Please enter the required information."] = "Inserisci le informazioni richieste."; -App::$strings["Failed to store account information."] = "Non è stato possibile salvare le informazioni del tuo account."; -App::$strings["Registration confirmation for %s"] = "Registrazione di %s confermata"; -App::$strings["Registration request at %s"] = "Richiesta di registrazione su %s"; -App::$strings["your registration password"] = "la password di registrazione"; -App::$strings["Registration details for %s"] = "Dettagli della registrazione di %s"; -App::$strings["Account approved."] = "Account approvato."; -App::$strings["Registration revoked for %s"] = "Registrazione revocata per %s"; -App::$strings["Click here to upgrade."] = "Clicca qui per aggiornare."; -App::$strings["This action exceeds the limits set by your subscription plan."] = "Questa operazione supera i limiti del tuo abbonamento."; -App::$strings["This action is not available under your subscription plan."] = "Questa operazione non è prevista dal tuo abbonamento."; -App::$strings["Channel is blocked on this site."] = "Il canale è bloccato per questo sito."; -App::$strings["Channel location missing."] = "Manca l'indirizzo del canale."; -App::$strings["Response from remote channel was incomplete."] = "La risposta dal canale non è completa."; -App::$strings["Channel was deleted and no longer exists."] = "Il canale è stato rimosso e non esiste più."; -App::$strings["Protocol disabled."] = "Protocollo disabilitato."; -App::$strings["Channel discovery failed."] = "La ricerca del canale non ha avuto successo."; -App::$strings["Cannot connect to yourself."] = "Non puoi connetterti a te stesso."; -App::$strings["Item was not found."] = "Elemento non trovato."; -App::$strings["No source file."] = "Nessun file di origine."; -App::$strings["Cannot locate file to replace"] = "Il file da sostituire non è stato trovato"; -App::$strings["Cannot locate file to revise/update"] = "Il file da aggiornare non è stato trovato"; -App::$strings["File exceeds size limit of %d"] = "Il file supera la dimensione massima di %d"; -App::$strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Hai raggiunto il limite complessivo di %1$.0f Mbytes per gli allegati."; -App::$strings["File upload failed. Possible system limit or action terminated."] = "Caricamento file fallito, potrebbe essere stato interrotto o potrebbe aver superato lo spazio assegnato."; -App::$strings["Stored file could not be verified. Upload failed."] = "Il file non può essere verificato. Caricamento fallito."; -App::$strings["Path not available."] = "Percorso non disponibile."; -App::$strings["Empty pathname"] = "Il percorso del file è vuoto"; -App::$strings["duplicate filename or path"] = "il file o il percorso del file è duplicato"; -App::$strings["Path not found."] = "Percorso del file non trovato."; -App::$strings["mkdir failed."] = "mkdir fallito."; -App::$strings["database storage failed."] = "scrittura su database fallita."; -App::$strings["Empty path"] = "La posizione è vuota"; -App::$strings["Image/photo"] = "Immagine"; -App::$strings["Encrypted content"] = "Contenuto cifrato"; -App::$strings["Install %s element: "] = "Installa l'elemento %s:"; -App::$strings["This post contains an installable %s element, however you lack permissions to install it on this site."] = "Questo post contiene un elemento %s installabile, tuttavia non hai i permessi necessari per l'installazione."; -App::$strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s ha scritto %2\$s %3\$s"; -App::$strings["Click to open/close"] = "Clicca per aprire/chiudere"; -App::$strings["spoiler"] = "spoiler"; -App::$strings["Different viewers will see this text differently"] = "Ad altri questo testo potrebbe apparire in modo differente"; -App::$strings["$1 wrote:"] = "$1 ha scritto:"; -App::$strings["(Unknown)"] = "(Sconosciuto)"; -App::$strings["Visible to anybody on the internet."] = "Visibile a chiunque su internet."; -App::$strings["Visible to you only."] = "Visibile solo a te."; -App::$strings["Visible to anybody in this network."] = "Visibile a tutti su questa rete."; -App::$strings["Visible to anybody authenticated."] = "Visibile a chiunque sia autenticato."; -App::$strings["Visible to anybody on %s."] = "Visibile a tutti su %s."; -App::$strings["Visible to all connections."] = "Visibile a tutti coloro che ti seguono."; -App::$strings["Visible to approved connections."] = "Visibile ai contatti approvati."; -App::$strings["Visible to specific connections."] = "Visibile ad alcuni contatti scelti."; -App::$strings["Privacy group is empty."] = "Gruppo di canali vuoto."; -App::$strings["Privacy group: %s"] = "Gruppo di canali: %s"; -App::$strings["Connection not found."] = "Contatto non trovato."; -App::$strings["profile photo"] = "foto del profilo"; -App::$strings["Embedded content"] = "Contenuti incorporati"; -App::$strings["Embedding disabled"] = "Disabilita la creazione di contenuti incorporati"; -App::$strings["System"] = "Sistema"; -App::$strings["New App"] = "Nuova app"; -App::$strings["Suggestions"] = "Suggerimenti"; -App::$strings["See more..."] = "Altro..."; -App::$strings["You have %1$.0f of %2$.0f allowed connections."] = "Hai attivato %1$.0f delle %2$.0f connessioni permesse."; -App::$strings["Add New Connection"] = "Aggiungi un contatto"; -App::$strings["Enter channel address"] = "Indirizzo del canale"; -App::$strings["Examples: bob@example.com, https://example.com/barbara"] = "Per esempio: bob@example.com, https://example.com/barbara"; -App::$strings["Notes"] = "Note"; -App::$strings["Remove term"] = "Rimuovi termine"; -App::$strings["Everything"] = "Tutto"; -App::$strings["Archives"] = "Archivi"; -App::$strings["Refresh"] = "Aggiorna"; -App::$strings["Account settings"] = "Il tuo account"; -App::$strings["Channel settings"] = "Impostazioni del canale"; -App::$strings["Additional features"] = "Funzionalità opzionali"; -App::$strings["Feature/Addon settings"] = "Componenti aggiuntivi"; -App::$strings["Display settings"] = "Aspetto"; -App::$strings["Manage locations"] = "Gestione repliche"; -App::$strings["Export channel"] = "Esporta il canale"; -App::$strings["Connected apps"] = "App connesse"; -App::$strings["Premium Channel Settings"] = "Canale premium - impostazioni"; -App::$strings["Private Mail Menu"] = "Menu messaggi privati"; -App::$strings["Combined View"] = "Vista combinata"; -App::$strings["Conversations"] = "Conversazioni"; -App::$strings["Received Messages"] = "Ricevuti"; -App::$strings["Sent Messages"] = "Inviati"; -App::$strings["No messages."] = "Nessun messaggio."; -App::$strings["Delete conversation"] = "Elimina la conversazione"; -App::$strings["Events Tools"] = "Gestione eventi"; -App::$strings["Export Calendar"] = "Esporta calendario"; -App::$strings["Import Calendar"] = "Importa calendario"; -App::$strings["Overview"] = "Riepilogo"; -App::$strings["Chat Members"] = "Partecipanti"; -App::$strings["Wiki List"] = "Elenco wiki"; -App::$strings["Wiki Pages"] = "Pagine wiki"; -App::$strings["Bookmarked Chatrooms"] = "Chat nei segnalibri"; -App::$strings["Suggested Chatrooms"] = "Chat suggerite"; -App::$strings["photo/image"] = "foto/immagine"; -App::$strings["Click to show more"] = "Clicca per mostrare tutto"; -App::$strings["Rating Tools"] = "Valutazione"; -App::$strings["Rate Me"] = "Valutami"; -App::$strings["View Ratings"] = "Vedi le valutazioni ricevute"; -App::$strings["Forums"] = "Forum"; -App::$strings["Tasks"] = "Attività"; -App::$strings["Documentation"] = "Guida"; -App::$strings["Project/Site Information"] = "Informazioni sul sito/progetto"; -App::$strings["For Members"] = "Per gli utenti"; -App::$strings["For Administrators"] = "Per gli amministratori"; -App::$strings["For Developers"] = "Per sviluppatori"; -App::$strings["Member registrations waiting for confirmation"] = "Richieste in attesa di conferma"; -App::$strings["Inspect queue"] = "Coda di attesa"; -App::$strings["DB updates"] = "Aggiornamenti al DB"; -App::$strings["Plugin Features"] = "Plugin"; -App::$strings[" and "] = "e"; -App::$strings["public profile"] = "profilo pubblico"; -App::$strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s ha cambiato %2\$s in “%3\$s”"; -App::$strings["Visit %1\$s's %2\$s"] = "Guarda %2\$s di %1\$s "; -App::$strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s ha aggiornato %2\$s cambiando %3\$s."; -App::$strings["Attachments:"] = "Allegati:"; -App::$strings["\$Projectname event notification:"] = "Notifica evento \$Projectname:"; App::$strings["Delete this item?"] = "Eliminare questo elemento?"; -App::$strings["%s show less"] = "%s riduci"; -App::$strings["%s expand"] = "%s mostra tutto"; -App::$strings["%s collapse"] = "%s minimizza"; +App::$strings["[-] show less"] = "[-] riduci"; +App::$strings["[+] expand"] = "[+] mostra tutto"; +App::$strings["[-] collapse"] = "[-] riduci"; App::$strings["Password too short"] = "Password troppo corta"; App::$strings["Passwords do not match"] = "Le password non corrispondono"; App::$strings["everybody"] = "tutti"; @@ -2222,78 +2189,72 @@ App::$strings["__ctx:calendar__ month"] = "mese"; App::$strings["__ctx:calendar__ week"] = "settimana"; App::$strings["__ctx:calendar__ day"] = "giorno"; App::$strings["__ctx:calendar__ All day"] = "Tutto il giorno"; -App::$strings["%d invitation available"] = array( - 0 => "%d invito disponibile", - 1 => "%d inviti disponibili", -); -App::$strings["Find Channels"] = "Ricerca canali"; -App::$strings["Enter name or interest"] = "Scrivi un nome o un interesse"; -App::$strings["Connect/Follow"] = "Aggiungi"; -App::$strings["Examples: Robert Morgenstein, Fishing"] = "Per esempio: Mario Rossi, Pesca"; -App::$strings["Random Profile"] = "Profilo casuale"; -App::$strings["Invite Friends"] = "Invita amici"; -App::$strings["Advanced example: name=fred and country=iceland"] = "Per esempio: name=mario e country=italy"; -App::$strings["%d connection in common"] = array( - 0 => "%d contatto in comune", - 1 => "%d contatti in comune", -); -App::$strings["show more"] = "mostra tutto"; -App::$strings["Directory Options"] = "Visibilità negli elenchi pubblici"; -App::$strings["Safe Mode"] = "Modalità SafeSearch"; -App::$strings["Public Forums Only"] = "Solo forum pubblici"; -App::$strings["This Website Only"] = "Solo in questo sito"; -App::$strings["No recipient provided."] = "Devi scegliere un destinatario."; -App::$strings["[no subject]"] = "[nessun titolo]"; -App::$strings["Unable to determine sender."] = "Impossibile determinare il mittente."; -App::$strings["Stored post could not be verified."] = "Non è stato possibile verificare il post."; -App::$strings["Who can see this?"] = "Chi può vederlo?"; -App::$strings["Custom selection"] = "Selezione personalizzata"; -App::$strings["Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit the scope of \"Show\"."] = "Scegli \"Mostra\" per permettere la visione. \"Non mostrare\" ha la precedenza e limita l'effetto di \"Mostra\"."; -App::$strings["Show"] = "Mostra"; -App::$strings["Don't show"] = "Non mostrare"; -App::$strings["Other networks and post services"] = "Invio ad altre reti o a siti esterni"; -App::$strings["Post permissions %s cannot be changed %s after a post is shared.
These permissions set who is allowed to view the post."] = "I permessi del post %s non possono essere cambiati %s dopo che un post è stato condiviso.
Questi permessi definiscono chi ha diritto di vedere il post."; -App::$strings["Birthday"] = "Compleanno"; -App::$strings["Age: "] = "Età:"; -App::$strings["YYYY-MM-DD or MM-DD"] = "AAAA-MM-GG oppure MM-GG"; -App::$strings["never"] = "mai"; -App::$strings["less than a second ago"] = "meno di un secondo fa"; -App::$strings["__ctx:e.g. 22 hours ago, 1 minute ago__ %1\$d %2\$s ago"] = "%1\$d %2\$s fa"; -App::$strings["__ctx:relative_date__ year"] = array( - 0 => "anno", - 1 => "anni", -); -App::$strings["__ctx:relative_date__ month"] = array( - 0 => "mese", - 1 => "mesi", -); -App::$strings["__ctx:relative_date__ week"] = array( - 0 => "settimana", - 1 => "settimane", -); -App::$strings["__ctx:relative_date__ day"] = array( - 0 => "giorno", - 1 => "giorni", -); -App::$strings["__ctx:relative_date__ hour"] = array( - 0 => "ora", - 1 => "ore", -); -App::$strings["__ctx:relative_date__ minute"] = array( - 0 => "minuto", - 1 => "minuti", -); -App::$strings["__ctx:relative_date__ second"] = array( - 0 => "secondo", - 1 => "secondi", -); -App::$strings["%1\$s's birthday"] = "Compleanno di %1\$s"; -App::$strings["Happy Birthday %1\$s"] = "Buon compleanno %1\$s"; -App::$strings["Public Timeline"] = "Diario pubblico"; +App::$strings["view full size"] = "guarda nelle dimensioni reali"; +App::$strings["No Subject"] = "Nessun titolo"; +App::$strings["Friendica"] = "Friendica"; +App::$strings["OStatus"] = "OStatus"; +App::$strings["GNU-Social"] = "GNU-Social"; +App::$strings["RSS/Atom"] = "RSS/Atom"; +App::$strings["Diaspora"] = "Diaspora"; +App::$strings["Facebook"] = "Facebook"; +App::$strings["Zot"] = "Zot"; +App::$strings["LinkedIn"] = "LinkedIn"; +App::$strings["XMPP/IM"] = "XMPP/IM"; +App::$strings["MySpace"] = "MySpace"; +App::$strings["Image exceeds website size limit of %lu bytes"] = "L'immagine supera il limite massimo di %lu bytes"; +App::$strings["Image file is empty."] = "Il file dell'immagine è vuoto."; +App::$strings["Photo storage failed."] = "Impossibile salvare la foto."; +App::$strings["a new photo"] = "una nuova foto"; +App::$strings["__ctx:photo_upload__ %1\$s posted %2\$s to %3\$s"] = "%1\$s ha pubblicato %2\$s su %3\$s"; +App::$strings["Upload New Photos"] = "Carica nuove foto"; App::$strings["Invalid data packet"] = "Dati ricevuti non validi"; App::$strings["Unable to verify channel signature"] = "Impossibile verificare la firma elettronica del canale"; App::$strings["Unable to verify site signature for %s"] = "Impossibile verificare la firma elettronica del sito %s"; App::$strings["invalid target signature"] = "la firma ricevuta non è valida"; +App::$strings["New Page"] = "Nuova pagina web"; +App::$strings["Title"] = "Titolo"; +App::$strings["Can view my normal stream and posts"] = "Può vedere i miei contenuti e i post normali"; +App::$strings["Can view my default channel profile"] = "Può vedere il profilo predefinito del canale"; +App::$strings["Can view my connections"] = "Può vedere i miei contatti"; +App::$strings["Can view my file storage and photos"] = "Può vedere il mio archivio file e foto"; +App::$strings["Can view my webpages"] = "Può vedere le mie pagine web"; +App::$strings["Can send me their channel stream and posts"] = "È tra i canali che seguo"; +App::$strings["Can post on my channel page (\"wall\")"] = "Può scrivere sulla bacheca del mio canale"; +App::$strings["Can comment on or like my posts"] = "Può commentare o aggiungere \"mi piace\" ai miei post"; +App::$strings["Can send me private mail messages"] = "Può inviarmi messaggi privati"; +App::$strings["Can like/dislike stuff"] = "Può aggiungere \"mi piace\" a tutto il resto"; +App::$strings["Profiles and things other than posts/comments"] = "Può aggiungere \"mi piace\" a tutto ciò che non riguarda i post, come per esempio il profilo"; +App::$strings["Can forward to all my channel contacts via post @mentions"] = "Può inoltrare post a tutti i contatti del canale tramite una @menzione"; +App::$strings["Advanced - useful for creating group forum channels"] = "Impostazione avanzata - utile per creare un canale-forum di discussione"; +App::$strings["Can chat with me (when available)"] = "Può aprire una chat con me (se disponibile)"; +App::$strings["Can write to my file storage and photos"] = "Può modificare il mio archivio file e foto"; +App::$strings["Can edit my webpages"] = "Può modificare le mie pagine web"; +App::$strings["Can source my public posts in derived channels"] = "Può usare i miei post pubblici per creare canali derivati"; +App::$strings["Somewhat advanced - very useful in open communities"] = "Piuttosto avanzato - molto utile nelle comunità aperte"; +App::$strings["Can administer my channel resources"] = "Può amministrare i contenuti del mio canale"; +App::$strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "Impostazione pericolosa - lasciare il valore predefinito se non si è assolutamente sicuri"; +App::$strings["Social Networking"] = "Social network"; +App::$strings["Social - Mostly Public"] = "Social - Prevalentemente pubblico"; +App::$strings["Social - Restricted"] = "Social - Con restrizioni"; +App::$strings["Social - Private"] = "Social - Privato"; +App::$strings["Community Forum"] = "Forum di discussione"; +App::$strings["Forum - Mostly Public"] = "Social - Prevalentemente pubblico"; +App::$strings["Forum - Restricted"] = "Forum - Con restrizioni"; +App::$strings["Forum - Private"] = "Forum - Privato"; +App::$strings["Feed Republish"] = "Aggregatore di feed esterni"; +App::$strings["Feed - Mostly Public"] = "Feed - Prevalentemente pubblico"; +App::$strings["Feed - Restricted"] = "Feed - Con restrizioni"; +App::$strings["Special Purpose"] = "Per finalità speciali"; +App::$strings["Special - Celebrity/Soapbox"] = "Speciale - Pagina per fan"; +App::$strings["Special - Group Repository"] = "Speciale - Repository di gruppo"; +App::$strings["Custom/Expert Mode"] = "Personalizzazione per esperti"; +App::$strings[" and "] = "e"; +App::$strings["public profile"] = "profilo pubblico"; +App::$strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s ha cambiato %2\$s in “%3\$s”"; +App::$strings["Visit %1\$s's %2\$s"] = "Guarda %2\$s di %1\$s "; +App::$strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s ha aggiornato %2\$s cambiando %3\$s."; +App::$strings["Attachments:"] = "Allegati:"; +App::$strings["\$Projectname event notification:"] = "Notifica evento \$Projectname:"; App::$strings["Focus (Hubzilla default)"] = "Focus (predefinito)"; App::$strings["Theme settings"] = "Impostazioni del tema"; App::$strings["Select scheme"] = "Scegli uno schema"; @@ -2333,7 +2294,6 @@ App::$strings["__ctx:opensearch__ \$Projectname"] = "\$Projectname"; App::$strings["Update %s failed. See error logs."] = "%s: aggiornamento fallito. Controlla i log di errore."; App::$strings["Update Error at %s"] = "Errore di aggiornamento su %s"; App::$strings["Create an account to access services and applications within the Hubzilla"] = "Registrati per accedere ai servizi e alle applicazioni di Hubzilla"; -App::$strings["Login/Email"] = "Login/Email"; App::$strings["Password"] = "Password"; App::$strings["Remember me"] = "Resta connesso"; App::$strings["Forgot your password?"] = "Hai dimenticato la password?"; diff --git a/view/js/main.js b/view/js/main.js index a3fade0ea..a288f98f5 100644 --- a/view/js/main.js +++ b/view/js/main.js @@ -659,7 +659,7 @@ function collapseHeight() { var position = $(window).scrollTop(); $(".wall-item-content, .directory-collapse").each(function() { - var orgHeight = $(this).outerHeight(true); + var orgHeight = parseInt($(this).css('height')); if(orgHeight > divmore_height) { if(! $(this).hasClass('divmore')) { @@ -679,7 +679,7 @@ function collapseHeight() { beforeToggle: function(trigger, element, expanded) { if(expanded) { if((($(element).offset().top + divmore_height) - $(window).scrollTop()) < 65 ) { - $(window).scrollTop($(window).scrollTop() - ($(element).outerHeight(true) - divmore_height)); + $(window).scrollTop($(window).scrollTop() - (orgHeight - divmore_height)); } } } diff --git a/view/js/mod_cloud.js b/view/js/mod_cloud.js deleted file mode 100644 index f7f9092c0..000000000 --- a/view/js/mod_cloud.js +++ /dev/null @@ -1,190 +0,0 @@ -/** - * JavaScript for mod/cloud - */ - -$(document).ready(function () { - // call initialization file - if (window.File && window.FileList && window.FileReader) { - UploadInit(); - } -}); - -// -// initialize -function UploadInit() { - - var fileselect = $("#files-upload"); - var filedrag = $("#cloud-drag-area"); - var submit = $("#upload-submit"); - - // is XHR2 available? - var xhr = new XMLHttpRequest(); - if (xhr.upload) { - - // file select - fileselect.on("change", UploadFileSelectHandler); - - // file submit - submit.on("click", fileselect, UploadFileSelectHandler); - - // file drop - filedrag.on("dragover", DragDropUploadFileHover); - filedrag.on("dragleave", DragDropUploadFileHover); - filedrag.on("drop", DragDropUploadFileSelectHandler); - } - - window.filesToUpload = 0; - window.fileUploadsCompleted = 0; -} - -// file drag hover -function DragDropUploadFileHover(e) { - e.stopPropagation(); - e.preventDefault(); - e.currentTarget.className = (e.type == "dragover" ? "hover" : ""); -} - -// file selection via drag/drop -function DragDropUploadFileSelectHandler(e) { - // cancel event and hover styling - DragDropUploadFileHover(e); - - // fetch FileList object - var files = e.target.files || e.originalEvent.dataTransfer.files; - - $('.new-upload').remove(); - - // process all File objects - for (var i = 0, f; f = files[i]; i++) { - prepareHtml(f, i); - UploadFile(f, i); - } -} - -// file selection via input -function UploadFileSelectHandler(e) { - // fetch FileList object - if(e.type === 'click') { - e.preventDefault(); - var files = e.data[0].files; - } - else { - var files = e.target.files; - } - - $('.new-upload').remove(); - - // process all File objects - for (var i = 0, f; f = files[i]; i++) { - prepareHtml(f, i); - if(e.type === 'click') - UploadFile(f, i); - } -} - -function prepareHtml(f, i) { - $("#cloud-index tr:nth-child(2)").after( - '' + - '' + - '' + f.name + '' + - '' + - '' + formatSizeUnits(f.size) + '' + - '' - ); -} - -function formatSizeUnits(bytes){ - if (bytes>=1000000000) {bytes=(bytes/1000000000).toFixed(2)+' GB';} - else if (bytes>=1000000) {bytes=(bytes/1000000).toFixed(2)+' MB';} - else if (bytes>=1000) {bytes=(bytes/1000).toFixed(2)+' KB';} - else if (bytes>1) {bytes=bytes+' bytes';} - else if (bytes==1) {bytes=bytes+' byte';} - else {bytes='0 byte';} - return bytes; -} - -// this is basically a js port of include/text.php getIconFromType() function -function getIconFromType(type) { - var map = { - //Common file - 'application/octet-stream': 'fa-file-o', - //Text - 'text/plain': 'fa-file-text-o', - 'application/msword': 'fa-file-word-o', - 'application/pdf': 'fa-file-pdf-o', - 'application/vnd.oasis.opendocument.text': 'fa-file-word-o', - 'application/epub+zip': 'fa-book', - //Spreadsheet - 'application/vnd.oasis.opendocument.spreadsheet': 'fa-file-excel-o', - 'application/vnd.ms-excel': 'fa-file-excel-o', - //Image - 'image/jpeg': 'fa-picture-o', - 'image/png': 'fa-picture-o', - 'image/gif': 'fa-picture-o', - 'image/svg+xml': 'fa-picture-o', - //Archive - 'application/zip': 'fa-file-archive-o', - 'application/x-rar-compressed': 'fa-file-archive-o', - //Audio - 'audio/mpeg': 'fa-file-audio-o', - 'audio/wav': 'fa-file-audio-o', - 'application/ogg': 'fa-file-audio-o', - 'audio/ogg': 'fa-file-audio-o', - 'audio/webm': 'fa-file-audio-o', - 'audio/mp4': 'fa-file-audio-o', - //Video - 'video/quicktime': 'fa-file-video-o', - 'video/webm': 'fa-file-video-o', - 'video/mp4': 'fa-file-video-o', - 'video/x-matroska': 'fa-file-video-o' - }; - - var iconFromType = 'fa-file-o'; - - if (type in map) { - iconFromType = map[type]; - } - - return iconFromType; -} - -// upload files -function UploadFile(file, idx) { - - window.filesToUpload = window.filesToUpload + 1; - - var xhr = new XMLHttpRequest(); - - xhr.withCredentials = true; // Include the SESSION cookie info for authentication - - (xhr.upload || xhr).addEventListener('progress', function (e) { - var done = e.position || e.loaded; - var total = e.totalSize || e.total; - // Dynamically update the percentage complete displayed in the file upload list - $('#upload-progress-' + idx).html(Math.round(done / total * 100) + '%'); - $('#new-upload-' + idx).css('background-size', Math.round(done / total * 100) + '%'); - }); - - xhr.addEventListener('load', function (e) { - - //console.log('xhr upload complete', e); - window.fileUploadsCompleted = window.fileUploadsCompleted + 1; - - // When all the uploads have completed, refresh the page - if (window.filesToUpload > 0 && window.fileUploadsCompleted === window.filesToUpload) { - window.fileUploadsCompleted = window.filesToUpload = 0; - - // After uploads complete, refresh browser window to display new files - window.location.href = window.location.href; - } - }); - - // POST to the entire cloud path - xhr.open('post', window.location.pathname, true); - - var data = new FormData(document.getElementById("ajax-upload-files")); - - data.append('file', file); - - xhr.send(data); -} diff --git a/view/nb-no/hmessages.po b/view/nb-no/hmessages.po index 7165d2647..bcb926d90 100644 --- a/view/nb-no/hmessages.po +++ b/view/nb-no/hmessages.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Redmatrix\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-07-22 00:02-0700\n" -"PO-Revision-Date: 2016-07-25 08:54+0000\n" +"POT-Creation-Date: 2016-06-10 00:02-0700\n" +"PO-Revision-Date: 2016-06-10 09:14+0000\n" "Last-Translator: fabrixxm \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/Friendica/red-matrix/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -18,156 +18,11 @@ msgstr "" "Language: nb_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ../../Zotlabs/Access/PermissionRoles.php:182 -#: ../../include/permissions.php:904 -msgid "Social Networking" -msgstr "Sosialt nettverk" - -#: ../../Zotlabs/Access/PermissionRoles.php:183 -#: ../../include/permissions.php:904 -msgid "Social - Mostly Public" -msgstr "Sosial - ganske offentlig" - -#: ../../Zotlabs/Access/PermissionRoles.php:184 -#: ../../include/permissions.php:904 -msgid "Social - Restricted" -msgstr "Sosial - begrenset" - -#: ../../Zotlabs/Access/PermissionRoles.php:185 -#: ../../include/permissions.php:904 -msgid "Social - Private" -msgstr "Sosial - privat" - -#: ../../Zotlabs/Access/PermissionRoles.php:188 -#: ../../include/permissions.php:905 -msgid "Community Forum" -msgstr "Forum for fellesskap" - -#: ../../Zotlabs/Access/PermissionRoles.php:189 -#: ../../include/permissions.php:905 -msgid "Forum - Mostly Public" -msgstr "Forum - ganske offentlig" - -#: ../../Zotlabs/Access/PermissionRoles.php:190 -#: ../../include/permissions.php:905 -msgid "Forum - Restricted" -msgstr "Forum - begrenset" - -#: ../../Zotlabs/Access/PermissionRoles.php:191 -#: ../../include/permissions.php:905 -msgid "Forum - Private" -msgstr "Forum - privat" - -#: ../../Zotlabs/Access/PermissionRoles.php:194 -#: ../../include/permissions.php:906 -msgid "Feed Republish" -msgstr "Republisering av strømmet innhold" - -#: ../../Zotlabs/Access/PermissionRoles.php:195 -#: ../../include/permissions.php:906 -msgid "Feed - Mostly Public" -msgstr "Strøm - ganske offentlig" - -#: ../../Zotlabs/Access/PermissionRoles.php:196 -#: ../../include/permissions.php:906 -msgid "Feed - Restricted" -msgstr "Strøm - begrenset" - -#: ../../Zotlabs/Access/PermissionRoles.php:199 -#: ../../include/permissions.php:907 -msgid "Special Purpose" -msgstr "Spesiell bruk" - -#: ../../Zotlabs/Access/PermissionRoles.php:200 -#: ../../include/permissions.php:907 -msgid "Special - Celebrity/Soapbox" -msgstr "Spesiell - kjendis/talerstol" - -#: ../../Zotlabs/Access/PermissionRoles.php:201 -#: ../../include/permissions.php:907 -msgid "Special - Group Repository" -msgstr "Spesiell - gruppelager" - -#: ../../Zotlabs/Access/PermissionRoles.php:204 ../../include/selectors.php:49 -#: ../../include/selectors.php:66 ../../include/selectors.php:104 -#: ../../include/selectors.php:140 ../../include/permissions.php:908 -msgid "Other" -msgstr "Annen" - -#: ../../Zotlabs/Access/PermissionRoles.php:205 -#: ../../include/permissions.php:908 -msgid "Custom/Expert Mode" -msgstr "Tilpasset/Ekspertmodus" - -#: ../../Zotlabs/Access/Permissions.php:30 -msgid "Can view my channel stream and posts" -msgstr "" - -#: ../../Zotlabs/Access/Permissions.php:31 ../../include/permissions.php:33 -msgid "Can send me their channel stream and posts" -msgstr "Kan sende meg deres kanalstrøm og innlegg" - -#: ../../Zotlabs/Access/Permissions.php:32 ../../include/permissions.php:27 -msgid "Can view my default channel profile" -msgstr "Kan se min standard kanalprofil" - -#: ../../Zotlabs/Access/Permissions.php:33 ../../include/permissions.php:28 -msgid "Can view my connections" -msgstr "Kan se mine forbindelser" - -#: ../../Zotlabs/Access/Permissions.php:34 ../../include/permissions.php:29 -msgid "Can view my file storage and photos" -msgstr "Kan se mine filer og bilder" - -#: ../../Zotlabs/Access/Permissions.php:35 -msgid "Can upload/modify my file storage and photos" -msgstr "" - -#: ../../Zotlabs/Access/Permissions.php:36 -msgid "Can view my channel webpages" -msgstr "" - -#: ../../Zotlabs/Access/Permissions.php:37 -msgid "Can create/edit my channel webpages" -msgstr "" - -#: ../../Zotlabs/Access/Permissions.php:38 -msgid "Can post on my channel (wall) page" -msgstr "" - -#: ../../Zotlabs/Access/Permissions.php:39 ../../include/permissions.php:35 -msgid "Can comment on or like my posts" -msgstr "Kan kommentere på eller like mine innlegg" - -#: ../../Zotlabs/Access/Permissions.php:40 ../../include/permissions.php:36 -msgid "Can send me private mail messages" -msgstr "Kan sende meg private meldinger" - -#: ../../Zotlabs/Access/Permissions.php:41 -msgid "Can like/dislike profiles and profile things" -msgstr "" - -#: ../../Zotlabs/Access/Permissions.php:42 -msgid "Can forward to all my channel connections via @+ mentions in posts" -msgstr "" - -#: ../../Zotlabs/Access/Permissions.php:43 -msgid "Can chat with me" -msgstr "" - -#: ../../Zotlabs/Access/Permissions.php:44 ../../include/permissions.php:44 -msgid "Can source my public posts in derived channels" -msgstr "Kan bruke mine offentlige innlegg som kanalkilde i egne kanaler" - -#: ../../Zotlabs/Access/Permissions.php:45 -msgid "Can administer my channel" -msgstr "" - #: ../../Zotlabs/Storage/Browser.php:107 ../../Zotlabs/Storage/Browser.php:239 msgid "parent" msgstr "opp et nivå" -#: ../../Zotlabs/Storage/Browser.php:131 ../../include/text.php:2605 +#: ../../Zotlabs/Storage/Browser.php:131 ../../include/text.php:2620 msgid "Collection" msgstr "Samling" @@ -191,17 +46,16 @@ msgstr "Tidsplan innboks" msgid "Schedule Outbox" msgstr "Tidsplan utboks" -#: ../../Zotlabs/Storage/Browser.php:164 ../../Zotlabs/Module/Photos.php:796 -#: ../../Zotlabs/Module/Photos.php:1241 -#: ../../Zotlabs/Module/Embedphotos.php:147 ../../Zotlabs/Lib/Apps.php:490 -#: ../../Zotlabs/Lib/Apps.php:565 ../../include/conversation.php:1035 -#: ../../include/widgets.php:1599 +#: ../../Zotlabs/Storage/Browser.php:164 ../../Zotlabs/Module/Photos.php:798 +#: ../../Zotlabs/Module/Photos.php:1243 ../../Zotlabs/Lib/Apps.php:486 +#: ../../Zotlabs/Lib/Apps.php:561 ../../include/widgets.php:1505 +#: ../../include/conversation.php:1032 msgid "Unknown" msgstr "Ukjent" #: ../../Zotlabs/Storage/Browser.php:226 ../../Zotlabs/Module/Fbrowser.php:85 -#: ../../Zotlabs/Lib/Apps.php:217 ../../include/nav.php:93 -#: ../../include/conversation.php:1654 +#: ../../Zotlabs/Lib/Apps.php:216 ../../include/nav.php:93 +#: ../../include/conversation.php:1639 msgid "Files" msgstr "Filer" @@ -214,23 +68,22 @@ msgid "Shared" msgstr "Delt" #: ../../Zotlabs/Storage/Browser.php:230 ../../Zotlabs/Storage/Browser.php:306 -#: ../../Zotlabs/Module/Layouts.php:184 ../../Zotlabs/Module/Menu.php:118 -#: ../../Zotlabs/Module/New_channel.php:142 -#: ../../Zotlabs/Module/Blocks.php:159 ../../Zotlabs/Module/Webpages.php:193 +#: ../../Zotlabs/Module/Blocks.php:156 ../../Zotlabs/Module/Layouts.php:182 +#: ../../Zotlabs/Module/Menu.php:118 ../../Zotlabs/Module/New_channel.php:142 +#: ../../Zotlabs/Module/Webpages.php:186 msgid "Create" msgstr "Lag" #: ../../Zotlabs/Storage/Browser.php:231 ../../Zotlabs/Storage/Browser.php:308 #: ../../Zotlabs/Module/Cover_photo.php:357 -#: ../../Zotlabs/Module/Photos.php:823 ../../Zotlabs/Module/Photos.php:1362 -#: ../../Zotlabs/Module/Profile_photo.php:390 -#: ../../Zotlabs/Module/Embedphotos.php:159 ../../include/widgets.php:1612 +#: ../../Zotlabs/Module/Photos.php:825 ../../Zotlabs/Module/Photos.php:1364 +#: ../../Zotlabs/Module/Profile_photo.php:368 ../../include/widgets.php:1518 msgid "Upload" msgstr "Last opp" #: ../../Zotlabs/Storage/Browser.php:235 ../../Zotlabs/Module/Chat.php:247 -#: ../../Zotlabs/Module/Admin.php:1223 ../../Zotlabs/Module/Settings.php:646 -#: ../../Zotlabs/Module/Settings.php:672 +#: ../../Zotlabs/Module/Admin.php:1223 ../../Zotlabs/Module/Settings.php:592 +#: ../../Zotlabs/Module/Settings.php:618 #: ../../Zotlabs/Module/Sharedwithme.php:99 msgid "Name" msgstr "Navn" @@ -240,7 +93,7 @@ msgid "Type" msgstr "Type" #: ../../Zotlabs/Storage/Browser.php:237 -#: ../../Zotlabs/Module/Sharedwithme.php:101 ../../include/text.php:1324 +#: ../../Zotlabs/Module/Sharedwithme.php:101 ../../include/text.php:1344 msgid "Size" msgstr "Størrelse" @@ -249,32 +102,34 @@ msgstr "Størrelse" msgid "Last Modified" msgstr "Sist endret" -#: ../../Zotlabs/Storage/Browser.php:240 ../../Zotlabs/Module/Editpost.php:84 +#: ../../Zotlabs/Storage/Browser.php:240 ../../Zotlabs/Module/Blocks.php:157 +#: ../../Zotlabs/Module/Editblock.php:109 #: ../../Zotlabs/Module/Connections.php:290 #: ../../Zotlabs/Module/Connections.php:310 -#: ../../Zotlabs/Module/Editlayout.php:114 -#: ../../Zotlabs/Module/Editwebpage.php:145 -#: ../../Zotlabs/Module/Layouts.php:192 ../../Zotlabs/Module/Menu.php:112 -#: ../../Zotlabs/Module/Admin.php:2113 ../../Zotlabs/Module/Blocks.php:160 -#: ../../Zotlabs/Module/Editblock.php:109 -#: ../../Zotlabs/Module/Settings.php:706 ../../Zotlabs/Module/Thing.php:260 -#: ../../Zotlabs/Module/Webpages.php:194 ../../Zotlabs/Lib/Apps.php:341 -#: ../../Zotlabs/Lib/ThreadItem.php:106 ../../include/page_widgets.php:9 -#: ../../include/page_widgets.php:39 ../../include/channel.php:976 -#: ../../include/channel.php:980 ../../include/menu.php:108 +#: ../../Zotlabs/Module/Editpost.php:84 +#: ../../Zotlabs/Module/Editlayout.php:113 +#: ../../Zotlabs/Module/Editwebpage.php:146 +#: ../../Zotlabs/Module/Layouts.php:190 ../../Zotlabs/Module/Menu.php:112 +#: ../../Zotlabs/Module/Admin.php:2113 ../../Zotlabs/Module/Settings.php:652 +#: ../../Zotlabs/Module/Thing.php:260 ../../Zotlabs/Module/Webpages.php:187 +#: ../../Zotlabs/Lib/Apps.php:337 ../../Zotlabs/Lib/ThreadItem.php:106 +#: ../../include/channel.php:937 ../../include/channel.php:941 +#: ../../include/menu.php:108 ../../include/page_widgets.php:8 +#: ../../include/page_widgets.php:36 msgid "Edit" msgstr "Endre" -#: ../../Zotlabs/Storage/Browser.php:241 ../../Zotlabs/Module/Connedit.php:602 +#: ../../Zotlabs/Storage/Browser.php:241 ../../Zotlabs/Module/Blocks.php:159 +#: ../../Zotlabs/Module/Connedit.php:572 +#: ../../Zotlabs/Module/Editblock.php:134 #: ../../Zotlabs/Module/Connections.php:263 -#: ../../Zotlabs/Module/Editlayout.php:137 -#: ../../Zotlabs/Module/Editwebpage.php:169 ../../Zotlabs/Module/Group.php:177 -#: ../../Zotlabs/Module/Photos.php:1171 ../../Zotlabs/Module/Admin.php:1039 +#: ../../Zotlabs/Module/Editlayout.php:136 +#: ../../Zotlabs/Module/Editwebpage.php:170 ../../Zotlabs/Module/Group.php:177 +#: ../../Zotlabs/Module/Photos.php:1173 ../../Zotlabs/Module/Admin.php:1039 #: ../../Zotlabs/Module/Admin.php:1213 ../../Zotlabs/Module/Admin.php:2114 -#: ../../Zotlabs/Module/Blocks.php:162 ../../Zotlabs/Module/Editblock.php:134 -#: ../../Zotlabs/Module/Settings.php:707 ../../Zotlabs/Module/Thing.php:261 -#: ../../Zotlabs/Module/Webpages.php:196 ../../Zotlabs/Lib/Apps.php:342 -#: ../../Zotlabs/Lib/ThreadItem.php:126 ../../include/conversation.php:660 +#: ../../Zotlabs/Module/Settings.php:653 ../../Zotlabs/Module/Thing.php:261 +#: ../../Zotlabs/Module/Webpages.php:189 ../../Zotlabs/Lib/Apps.php:338 +#: ../../Zotlabs/Lib/ThreadItem.php:126 ../../include/conversation.php:657 msgid "Delete" msgstr "Slett" @@ -300,73 +155,74 @@ msgstr "Lag ny mappe" msgid "Upload file" msgstr "Last opp fil" -#: ../../Zotlabs/Web/WebServer.php:127 ../../Zotlabs/Module/Dreport.php:10 -#: ../../Zotlabs/Module/Dreport.php:66 ../../Zotlabs/Module/Group.php:72 -#: ../../Zotlabs/Module/Like.php:283 ../../Zotlabs/Module/Import_items.php:114 +#: ../../Zotlabs/Web/WebServer.php:120 ../../Zotlabs/Module/Dreport.php:10 +#: ../../Zotlabs/Module/Dreport.php:49 ../../Zotlabs/Module/Group.php:72 +#: ../../Zotlabs/Module/Like.php:284 ../../Zotlabs/Module/Import_items.php:112 #: ../../Zotlabs/Module/Profperm.php:28 ../../Zotlabs/Module/Subthread.php:62 -#: ../../include/items.php:384 +#: ../../include/items.php:385 msgid "Permission denied" msgstr "Tillatelse avvist" -#: ../../Zotlabs/Web/WebServer.php:128 ../../Zotlabs/Web/Router.php:65 -#: ../../Zotlabs/Module/Achievements.php:34 -#: ../../Zotlabs/Module/Connedit.php:390 ../../Zotlabs/Module/Id.php:76 -#: ../../Zotlabs/Module/Authtest.php:16 ../../Zotlabs/Module/Events.php:264 -#: ../../Zotlabs/Module/Bookmarks.php:61 ../../Zotlabs/Module/Editpost.php:17 -#: ../../Zotlabs/Module/Page.php:35 ../../Zotlabs/Module/Page.php:91 -#: ../../Zotlabs/Module/Connections.php:33 +#: ../../Zotlabs/Web/WebServer.php:121 ../../Zotlabs/Web/Router.php:65 +#: ../../Zotlabs/Module/Achievements.php:34 ../../Zotlabs/Module/Blocks.php:73 +#: ../../Zotlabs/Module/Blocks.php:80 ../../Zotlabs/Module/Channel.php:105 +#: ../../Zotlabs/Module/Channel.php:226 ../../Zotlabs/Module/Channel.php:267 +#: ../../Zotlabs/Module/Chat.php:100 ../../Zotlabs/Module/Chat.php:105 +#: ../../Zotlabs/Module/Authtest.php:16 ../../Zotlabs/Module/Block.php:26 +#: ../../Zotlabs/Module/Block.php:76 ../../Zotlabs/Module/Bookmarks.php:61 +#: ../../Zotlabs/Module/Connedit.php:366 ../../Zotlabs/Module/Editblock.php:67 +#: ../../Zotlabs/Module/Common.php:39 ../../Zotlabs/Module/Connections.php:33 #: ../../Zotlabs/Module/Cover_photo.php:277 -#: ../../Zotlabs/Module/Cover_photo.php:290 ../../Zotlabs/Module/Chat.php:100 -#: ../../Zotlabs/Module/Chat.php:105 ../../Zotlabs/Module/Editlayout.php:67 +#: ../../Zotlabs/Module/Cover_photo.php:290 +#: ../../Zotlabs/Module/Editpost.php:17 ../../Zotlabs/Module/Events.php:265 +#: ../../Zotlabs/Module/Editlayout.php:67 #: ../../Zotlabs/Module/Editlayout.php:90 -#: ../../Zotlabs/Module/Editwebpage.php:68 -#: ../../Zotlabs/Module/Editwebpage.php:89 -#: ../../Zotlabs/Module/Editwebpage.php:104 -#: ../../Zotlabs/Module/Editwebpage.php:126 ../../Zotlabs/Module/Group.php:13 -#: ../../Zotlabs/Module/Appman.php:75 ../../Zotlabs/Module/Pdledit.php:26 -#: ../../Zotlabs/Module/Filestorage.php:23 -#: ../../Zotlabs/Module/Filestorage.php:78 -#: ../../Zotlabs/Module/Filestorage.php:93 -#: ../../Zotlabs/Module/Filestorage.php:120 +#: ../../Zotlabs/Module/Editwebpage.php:69 +#: ../../Zotlabs/Module/Editwebpage.php:90 +#: ../../Zotlabs/Module/Editwebpage.php:105 +#: ../../Zotlabs/Module/Editwebpage.php:127 ../../Zotlabs/Module/Group.php:13 +#: ../../Zotlabs/Module/Api.php:13 ../../Zotlabs/Module/Api.php:18 +#: ../../Zotlabs/Module/Filestorage.php:24 +#: ../../Zotlabs/Module/Filestorage.php:79 +#: ../../Zotlabs/Module/Filestorage.php:94 +#: ../../Zotlabs/Module/Filestorage.php:121 ../../Zotlabs/Module/Item.php:210 +#: ../../Zotlabs/Module/Item.php:218 ../../Zotlabs/Module/Item.php:1070 #: ../../Zotlabs/Module/Layouts.php:71 ../../Zotlabs/Module/Layouts.php:78 -#: ../../Zotlabs/Module/Layouts.php:89 ../../Zotlabs/Module/Like.php:181 -#: ../../Zotlabs/Module/Profiles.php:203 ../../Zotlabs/Module/Profiles.php:601 -#: ../../Zotlabs/Module/Item.php:213 ../../Zotlabs/Module/Item.php:221 -#: ../../Zotlabs/Module/Item.php:1071 ../../Zotlabs/Module/Photos.php:73 -#: ../../Zotlabs/Module/Invite.php:17 ../../Zotlabs/Module/Invite.php:91 -#: ../../Zotlabs/Module/Locs.php:87 ../../Zotlabs/Module/Mail.php:121 -#: ../../Zotlabs/Module/Manage.php:10 ../../Zotlabs/Module/Menu.php:78 -#: ../../Zotlabs/Module/Message.php:18 ../../Zotlabs/Module/Mood.php:116 -#: ../../Zotlabs/Module/Network.php:15 ../../Zotlabs/Module/Channel.php:104 -#: ../../Zotlabs/Module/Channel.php:225 ../../Zotlabs/Module/Channel.php:266 +#: ../../Zotlabs/Module/Layouts.php:89 ../../Zotlabs/Module/Id.php:76 +#: ../../Zotlabs/Module/Like.php:181 ../../Zotlabs/Module/Invite.php:17 +#: ../../Zotlabs/Module/Invite.php:91 ../../Zotlabs/Module/Locs.php:87 +#: ../../Zotlabs/Module/Mail.php:129 ../../Zotlabs/Module/Manage.php:10 +#: ../../Zotlabs/Module/Menu.php:78 ../../Zotlabs/Module/Message.php:18 +#: ../../Zotlabs/Module/Mood.php:116 ../../Zotlabs/Module/Network.php:17 #: ../../Zotlabs/Module/Mitem.php:115 ../../Zotlabs/Module/New_channel.php:77 #: ../../Zotlabs/Module/New_channel.php:104 -#: ../../Zotlabs/Module/Notifications.php:70 ../../Zotlabs/Module/Poke.php:137 -#: ../../Zotlabs/Module/Profile.php:68 ../../Zotlabs/Module/Profile.php:76 -#: ../../Zotlabs/Module/Block.php:26 ../../Zotlabs/Module/Block.php:76 -#: ../../Zotlabs/Module/Profile_photo.php:265 -#: ../../Zotlabs/Module/Profile_photo.php:278 -#: ../../Zotlabs/Module/Blocks.php:73 ../../Zotlabs/Module/Blocks.php:80 -#: ../../Zotlabs/Module/Rate.php:113 ../../Zotlabs/Module/Editblock.php:67 -#: ../../Zotlabs/Module/Common.php:39 ../../Zotlabs/Module/Register.php:77 -#: ../../Zotlabs/Module/Regmod.php:21 +#: ../../Zotlabs/Module/Notifications.php:70 +#: ../../Zotlabs/Module/Photos.php:75 ../../Zotlabs/Module/Page.php:35 +#: ../../Zotlabs/Module/Page.php:90 ../../Zotlabs/Module/Pdledit.php:26 +#: ../../Zotlabs/Module/Poke.php:137 ../../Zotlabs/Module/Profile.php:68 +#: ../../Zotlabs/Module/Profile.php:76 ../../Zotlabs/Module/Profiles.php:203 +#: ../../Zotlabs/Module/Profiles.php:601 +#: ../../Zotlabs/Module/Profile_photo.php:256 +#: ../../Zotlabs/Module/Profile_photo.php:269 +#: ../../Zotlabs/Module/Rate.php:113 ../../Zotlabs/Module/Appman.php:75 +#: ../../Zotlabs/Module/Register.php:77 ../../Zotlabs/Module/Regmod.php:21 #: ../../Zotlabs/Module/Service_limits.php:11 -#: ../../Zotlabs/Module/Settings.php:626 ../../Zotlabs/Module/Setup.php:215 -#: ../../Zotlabs/Module/Sharedwithme.php:11 ../../Zotlabs/Module/Thing.php:274 -#: ../../Zotlabs/Module/Thing.php:294 ../../Zotlabs/Module/Thing.php:331 +#: ../../Zotlabs/Module/Settings.php:572 ../../Zotlabs/Module/Setup.php:215 +#: ../../Zotlabs/Module/Sharedwithme.php:11 #: ../../Zotlabs/Module/Sources.php:74 ../../Zotlabs/Module/Suggest.php:30 -#: ../../Zotlabs/Module/Webpages.php:73 -#: ../../Zotlabs/Module/Viewconnections.php:28 -#: ../../Zotlabs/Module/Viewconnections.php:33 -#: ../../Zotlabs/Module/Viewsrc.php:18 ../../Zotlabs/Module/Api.php:13 -#: ../../Zotlabs/Module/Api.php:18 ../../Zotlabs/Lib/Chatroom.php:137 -#: ../../include/photos.php:27 ../../include/attach.php:141 -#: ../../include/attach.php:189 ../../include/attach.php:252 -#: ../../include/attach.php:266 ../../include/attach.php:273 -#: ../../include/attach.php:338 ../../include/attach.php:352 -#: ../../include/attach.php:359 ../../include/attach.php:439 -#: ../../include/attach.php:901 ../../include/attach.php:972 -#: ../../include/attach.php:1124 ../../include/items.php:3448 +#: ../../Zotlabs/Module/Thing.php:274 ../../Zotlabs/Module/Thing.php:294 +#: ../../Zotlabs/Module/Thing.php:331 +#: ../../Zotlabs/Module/Viewconnections.php:25 +#: ../../Zotlabs/Module/Viewconnections.php:30 +#: ../../Zotlabs/Module/Viewsrc.php:18 ../../Zotlabs/Module/Webpages.php:74 +#: ../../Zotlabs/Lib/Chatroom.php:137 ../../include/items.php:3438 +#: ../../include/attach.php:141 ../../include/attach.php:189 +#: ../../include/attach.php:252 ../../include/attach.php:266 +#: ../../include/attach.php:273 ../../include/attach.php:338 +#: ../../include/attach.php:352 ../../include/attach.php:359 +#: ../../include/attach.php:437 ../../include/attach.php:895 +#: ../../include/attach.php:966 ../../include/attach.php:1118 +#: ../../include/photos.php:27 msgid "Permission denied." msgstr "Tillatelse avslått." @@ -374,9 +230,9 @@ msgstr "Tillatelse avslått." msgid "Not Found" msgstr "Ikke funnet" -#: ../../Zotlabs/Web/Router.php:149 ../../Zotlabs/Module/Display.php:118 -#: ../../Zotlabs/Module/Page.php:94 ../../Zotlabs/Module/Help.php:97 -#: ../../Zotlabs/Module/Block.php:79 +#: ../../Zotlabs/Web/Router.php:149 ../../Zotlabs/Module/Block.php:79 +#: ../../Zotlabs/Module/Display.php:117 ../../Zotlabs/Module/Help.php:97 +#: ../../Zotlabs/Module/Page.php:93 msgid "Page not found." msgstr "Siden ikke funnet." @@ -392,13 +248,13 @@ msgstr "Fjernautentisering blokkert. Du er logget inn på dette nettstedet lokal msgid "Welcome %s. Remote authentication successful." msgstr "Velkommen %s. Ekstern autentisering er vellykket." -#: ../../Zotlabs/Module/Achievements.php:15 -#: ../../Zotlabs/Module/Connect.php:17 ../../Zotlabs/Module/Editlayout.php:31 -#: ../../Zotlabs/Module/Editwebpage.php:32 ../../Zotlabs/Module/Hcard.php:12 -#: ../../Zotlabs/Module/Filestorage.php:59 ../../Zotlabs/Module/Layouts.php:31 -#: ../../Zotlabs/Module/Profile.php:20 ../../Zotlabs/Module/Blocks.php:33 -#: ../../Zotlabs/Module/Editblock.php:31 ../../Zotlabs/Module/Webpages.php:33 -#: ../../include/channel.php:876 +#: ../../Zotlabs/Module/Achievements.php:15 ../../Zotlabs/Module/Blocks.php:33 +#: ../../Zotlabs/Module/Connect.php:17 ../../Zotlabs/Module/Editblock.php:31 +#: ../../Zotlabs/Module/Editlayout.php:31 +#: ../../Zotlabs/Module/Editwebpage.php:33 +#: ../../Zotlabs/Module/Filestorage.php:60 ../../Zotlabs/Module/Hcard.php:12 +#: ../../Zotlabs/Module/Layouts.php:31 ../../Zotlabs/Module/Profile.php:20 +#: ../../Zotlabs/Module/Webpages.php:34 ../../include/channel.php:837 msgid "Requested profile is not available." msgstr "Forespurt profil er ikke tilgjengelig." @@ -406,6 +262,229 @@ msgstr "Forespurt profil er ikke tilgjengelig." msgid "Some blurb about what to do when you're new here" msgstr "En standardtekst om hva du bør gjøre som ny her" +#: ../../Zotlabs/Module/Blocks.php:97 ../../Zotlabs/Module/Blocks.php:152 +#: ../../Zotlabs/Module/Editblock.php:108 +msgid "Block Name" +msgstr "Byggeklossens navn" + +#: ../../Zotlabs/Module/Blocks.php:151 ../../include/text.php:2265 +msgid "Blocks" +msgstr "Byggeklosser" + +#: ../../Zotlabs/Module/Blocks.php:153 +msgid "Block Title" +msgstr "Byggeklossens tittel" + +#: ../../Zotlabs/Module/Blocks.php:154 ../../Zotlabs/Module/Layouts.php:188 +#: ../../Zotlabs/Module/Menu.php:114 ../../Zotlabs/Module/Webpages.php:198 +#: ../../include/page_widgets.php:44 +msgid "Created" +msgstr "Laget" + +#: ../../Zotlabs/Module/Blocks.php:155 ../../Zotlabs/Module/Layouts.php:189 +#: ../../Zotlabs/Module/Menu.php:115 ../../Zotlabs/Module/Webpages.php:199 +#: ../../include/page_widgets.php:45 +msgid "Edited" +msgstr "Endret" + +#: ../../Zotlabs/Module/Blocks.php:158 ../../Zotlabs/Module/Layouts.php:191 +#: ../../Zotlabs/Module/Photos.php:1072 ../../Zotlabs/Module/Webpages.php:188 +#: ../../include/conversation.php:1208 +msgid "Share" +msgstr "Del" + +#: ../../Zotlabs/Module/Blocks.php:163 ../../Zotlabs/Module/Layouts.php:195 +#: ../../Zotlabs/Module/Pubsites.php:47 ../../Zotlabs/Module/Webpages.php:193 +#: ../../include/page_widgets.php:39 +msgid "View" +msgstr "Vis" + +#: ../../Zotlabs/Module/Cal.php:62 ../../Zotlabs/Module/Block.php:43 +#: ../../Zotlabs/Module/Page.php:56 ../../Zotlabs/Module/Wall_upload.php:33 +msgid "Channel not found." +msgstr "Kanalen ble ikke funnet." + +#: ../../Zotlabs/Module/Cal.php:69 +msgid "Permissions denied." +msgstr "Tillatelse avvist." + +#: ../../Zotlabs/Module/Cal.php:259 ../../Zotlabs/Module/Events.php:588 +msgid "l, F j" +msgstr "l, F j" + +#: ../../Zotlabs/Module/Cal.php:308 ../../Zotlabs/Module/Events.php:637 +#: ../../include/text.php:1732 +msgid "Link to Source" +msgstr "Lenke til kilde" + +#: ../../Zotlabs/Module/Cal.php:331 ../../Zotlabs/Module/Events.php:665 +msgid "Edit Event" +msgstr "Endre hendelse" + +#: ../../Zotlabs/Module/Cal.php:331 ../../Zotlabs/Module/Events.php:665 +msgid "Create Event" +msgstr "Lag hendelse" + +#: ../../Zotlabs/Module/Cal.php:332 ../../Zotlabs/Module/Cal.php:339 +#: ../../Zotlabs/Module/Events.php:666 ../../Zotlabs/Module/Events.php:673 +#: ../../Zotlabs/Module/Photos.php:949 +msgid "Previous" +msgstr "Forrige" + +#: ../../Zotlabs/Module/Cal.php:333 ../../Zotlabs/Module/Cal.php:340 +#: ../../Zotlabs/Module/Events.php:667 ../../Zotlabs/Module/Events.php:674 +#: ../../Zotlabs/Module/Photos.php:958 ../../Zotlabs/Module/Setup.php:267 +msgid "Next" +msgstr "Neste" + +#: ../../Zotlabs/Module/Cal.php:334 ../../Zotlabs/Module/Events.php:668 +#: ../../include/widgets.php:755 +msgid "Export" +msgstr "Eksport" + +#: ../../Zotlabs/Module/Cal.php:337 ../../Zotlabs/Module/Events.php:671 +#: ../../include/widgets.php:756 +msgid "Import" +msgstr "Importer" + +#: ../../Zotlabs/Module/Cal.php:338 ../../Zotlabs/Module/Chat.php:196 +#: ../../Zotlabs/Module/Chat.php:238 ../../Zotlabs/Module/Connect.php:98 +#: ../../Zotlabs/Module/Connedit.php:731 ../../Zotlabs/Module/Events.php:475 +#: ../../Zotlabs/Module/Events.php:672 ../../Zotlabs/Module/Group.php:85 +#: ../../Zotlabs/Module/Filestorage.php:162 +#: ../../Zotlabs/Module/Import.php:550 +#: ../../Zotlabs/Module/Import_items.php:120 +#: ../../Zotlabs/Module/Invite.php:146 ../../Zotlabs/Module/Locs.php:121 +#: ../../Zotlabs/Module/Mail.php:378 ../../Zotlabs/Module/Mood.php:139 +#: ../../Zotlabs/Module/Mitem.php:235 ../../Zotlabs/Module/Photos.php:677 +#: ../../Zotlabs/Module/Photos.php:1052 ../../Zotlabs/Module/Photos.php:1092 +#: ../../Zotlabs/Module/Photos.php:1210 ../../Zotlabs/Module/Pconfig.php:107 +#: ../../Zotlabs/Module/Pdledit.php:66 ../../Zotlabs/Module/Poke.php:186 +#: ../../Zotlabs/Module/Profiles.php:687 ../../Zotlabs/Module/Rate.php:170 +#: ../../Zotlabs/Module/Admin.php:492 ../../Zotlabs/Module/Admin.php:688 +#: ../../Zotlabs/Module/Admin.php:771 ../../Zotlabs/Module/Admin.php:1032 +#: ../../Zotlabs/Module/Admin.php:1211 ../../Zotlabs/Module/Admin.php:1421 +#: ../../Zotlabs/Module/Admin.php:1648 ../../Zotlabs/Module/Admin.php:1733 +#: ../../Zotlabs/Module/Admin.php:2116 ../../Zotlabs/Module/Appman.php:126 +#: ../../Zotlabs/Module/Settings.php:590 ../../Zotlabs/Module/Settings.php:703 +#: ../../Zotlabs/Module/Settings.php:731 ../../Zotlabs/Module/Settings.php:754 +#: ../../Zotlabs/Module/Settings.php:842 +#: ../../Zotlabs/Module/Settings.php:1034 ../../Zotlabs/Module/Setup.php:312 +#: ../../Zotlabs/Module/Setup.php:353 ../../Zotlabs/Module/Sources.php:114 +#: ../../Zotlabs/Module/Sources.php:149 ../../Zotlabs/Module/Thing.php:316 +#: ../../Zotlabs/Module/Thing.php:362 ../../Zotlabs/Module/Xchan.php:15 +#: ../../Zotlabs/Lib/ThreadItem.php:710 ../../include/widgets.php:757 +#: ../../include/widgets.php:769 ../../include/js_strings.php:22 +#: ../../view/theme/redbasic/php/config.php:99 +msgid "Submit" +msgstr "Send" + +#: ../../Zotlabs/Module/Cal.php:341 ../../Zotlabs/Module/Events.php:675 +msgid "Today" +msgstr "Idag" + +#: ../../Zotlabs/Module/Channel.php:29 ../../Zotlabs/Module/Chat.php:25 +msgid "You must be logged in to see this page." +msgstr "Du må være innloegget for å se denne siden." + +#: ../../Zotlabs/Module/Channel.php:41 +msgid "Posts and comments" +msgstr "" + +#: ../../Zotlabs/Module/Channel.php:42 +msgid "Only posts" +msgstr "" + +#: ../../Zotlabs/Module/Channel.php:102 +msgid "Insufficient permissions. Request redirected to profile page." +msgstr "Utilstrekkelig tillatelse. Forespørsel omdirigert til profilsiden." + +#: ../../Zotlabs/Module/Chat.php:181 +msgid "Room not found" +msgstr "Rommet ble ikke funnet" + +#: ../../Zotlabs/Module/Chat.php:197 +msgid "Leave Room" +msgstr "Forlat rom" + +#: ../../Zotlabs/Module/Chat.php:198 +msgid "Delete Room" +msgstr "" + +#: ../../Zotlabs/Module/Chat.php:199 +msgid "I am away right now" +msgstr "Jeg er borte akkurat nå" + +#: ../../Zotlabs/Module/Chat.php:200 +msgid "I am online" +msgstr "Jeg er online" + +#: ../../Zotlabs/Module/Chat.php:202 +msgid "Bookmark this room" +msgstr "Bokmerk dette rommet" + +#: ../../Zotlabs/Module/Chat.php:205 ../../Zotlabs/Module/Mail.php:205 +#: ../../Zotlabs/Module/Mail.php:314 ../../include/conversation.php:1176 +msgid "Please enter a link URL:" +msgstr "Vennligst skriv inn en lenke URL:" + +#: ../../Zotlabs/Module/Chat.php:206 ../../Zotlabs/Module/Mail.php:258 +#: ../../Zotlabs/Module/Mail.php:383 ../../Zotlabs/Lib/ThreadItem.php:722 +#: ../../include/conversation.php:1256 +msgid "Encrypt text" +msgstr "Krypter tekst" + +#: ../../Zotlabs/Module/Chat.php:207 ../../Zotlabs/Module/Editblock.php:111 +#: ../../Zotlabs/Module/Editwebpage.php:147 ../../Zotlabs/Module/Mail.php:252 +#: ../../Zotlabs/Module/Mail.php:377 ../../include/conversation.php:1143 +msgid "Insert web link" +msgstr "Sett inn web-lenke" + +#: ../../Zotlabs/Module/Chat.php:218 +msgid "Feature disabled." +msgstr "" + +#: ../../Zotlabs/Module/Chat.php:232 +msgid "New Chatroom" +msgstr "Nytt chatrom" + +#: ../../Zotlabs/Module/Chat.php:233 +msgid "Chatroom name" +msgstr "" + +#: ../../Zotlabs/Module/Chat.php:234 +msgid "Expiration of chats (minutes)" +msgstr "Chat utgår (antall minutter)" + +#: ../../Zotlabs/Module/Chat.php:235 ../../Zotlabs/Module/Filestorage.php:153 +#: ../../Zotlabs/Module/Photos.php:671 ../../Zotlabs/Module/Photos.php:1045 +#: ../../Zotlabs/Module/Thing.php:313 ../../Zotlabs/Module/Thing.php:359 +#: ../../include/acl_selectors.php:283 +msgid "Permissions" +msgstr "Tillatelser" + +#: ../../Zotlabs/Module/Chat.php:246 +#, php-format +msgid "%1$s's Chatrooms" +msgstr "%1$s sine chatrom" + +#: ../../Zotlabs/Module/Chat.php:251 +msgid "No chatrooms available" +msgstr "" + +#: ../../Zotlabs/Module/Chat.php:252 ../../Zotlabs/Module/Manage.php:143 +#: ../../Zotlabs/Module/Profiles.php:778 +msgid "Create New" +msgstr "" + +#: ../../Zotlabs/Module/Chat.php:255 +msgid "Expiration" +msgstr "" + +#: ../../Zotlabs/Module/Chat.php:256 +msgid "min" +msgstr "" + #: ../../Zotlabs/Module/Chatsvc.php:117 msgid "Away" msgstr "Borte" @@ -414,6 +493,65 @@ msgstr "Borte" msgid "Online" msgstr "Online" +#: ../../Zotlabs/Module/Block.php:31 ../../Zotlabs/Module/Page.php:40 +msgid "Invalid item." +msgstr "Ugyldig element." + +#: ../../Zotlabs/Module/Bookmarks.php:53 +msgid "Bookmark added" +msgstr "Bokmerke lagt til" + +#: ../../Zotlabs/Module/Bookmarks.php:75 +msgid "My Bookmarks" +msgstr "Mine bokmerker" + +#: ../../Zotlabs/Module/Bookmarks.php:86 +msgid "My Connections Bookmarks" +msgstr "Mine forbindelsers bokmerker" + +#: ../../Zotlabs/Module/Connect.php:61 ../../Zotlabs/Module/Connect.php:109 +msgid "Continue" +msgstr "Fortsett" + +#: ../../Zotlabs/Module/Connect.php:90 +msgid "Premium Channel Setup" +msgstr "Premiumkanal-oppsett" + +#: ../../Zotlabs/Module/Connect.php:92 +msgid "Enable premium channel connection restrictions" +msgstr "Slå på restriksjoner for forbindelse med premiumkanal" + +#: ../../Zotlabs/Module/Connect.php:93 +msgid "" +"Please enter your restrictions or conditions, such as paypal receipt, usage " +"guidelines, etc." +msgstr "Vennligst skriv dine restriksjoner og betingelser, slik som PayPal-kvittering, retningslinjer for bruk, og så videre." + +#: ../../Zotlabs/Module/Connect.php:95 ../../Zotlabs/Module/Connect.php:115 +msgid "" +"This channel may require additional steps or acknowledgement of the " +"following conditions prior to connecting:" +msgstr "Denne kanalen kan kreve ytterligere steg og bekreftelse av følgende betingelser før tilkobling:" + +#: ../../Zotlabs/Module/Connect.php:96 +msgid "" +"Potential connections will then see the following text before proceeding:" +msgstr "Potensielle forbindelser vil da se følgende tekst før de går videre:" + +#: ../../Zotlabs/Module/Connect.php:97 ../../Zotlabs/Module/Connect.php:118 +msgid "" +"By continuing, I certify that I have complied with any instructions provided" +" on this page." +msgstr "Ved å fortsette bekrefter jeg at jeg har oppfylt alle instruksjoner gitt på denne siden." + +#: ../../Zotlabs/Module/Connect.php:106 +msgid "(No specific instructions have been provided by the channel owner.)" +msgstr "(Ingen spesifikke instruksjoner er gitt av kanaleieren.)" + +#: ../../Zotlabs/Module/Connect.php:114 +msgid "Restricted or Premium Channel" +msgstr "Begrenset kanal eller premiumkanal" + #: ../../Zotlabs/Module/Connedit.php:80 msgid "Could not access contact record." msgstr "Fikk ikke tilgang til kontaktinformasjonen." @@ -422,350 +560,317 @@ msgstr "Fikk ikke tilgang til kontaktinformasjonen." msgid "Could not locate selected profile." msgstr "Fant ikke valgt profil." -#: ../../Zotlabs/Module/Connedit.php:248 +#: ../../Zotlabs/Module/Connedit.php:227 msgid "Connection updated." msgstr "Forbindelsen er oppdatert." -#: ../../Zotlabs/Module/Connedit.php:250 +#: ../../Zotlabs/Module/Connedit.php:229 msgid "Failed to update connection record." msgstr "Mislyktes med å oppdatere forbindelsesinformasjonen." -#: ../../Zotlabs/Module/Connedit.php:300 +#: ../../Zotlabs/Module/Connedit.php:276 msgid "is now connected to" msgstr "er nå forbundet til" -#: ../../Zotlabs/Module/Connedit.php:403 ../../Zotlabs/Module/Connedit.php:685 -#: ../../Zotlabs/Module/Events.php:458 ../../Zotlabs/Module/Events.php:459 -#: ../../Zotlabs/Module/Events.php:468 -#: ../../Zotlabs/Module/Filestorage.php:156 -#: ../../Zotlabs/Module/Filestorage.php:164 -#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Photos.php:664 -#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 -#: ../../Zotlabs/Module/Mitem.php:158 ../../Zotlabs/Module/Mitem.php:159 -#: ../../Zotlabs/Module/Mitem.php:232 ../../Zotlabs/Module/Mitem.php:233 -#: ../../Zotlabs/Module/Admin.php:459 ../../Zotlabs/Module/Removeme.php:63 -#: ../../Zotlabs/Module/Settings.php:635 ../../Zotlabs/Module/Api.php:89 +#: ../../Zotlabs/Module/Connedit.php:379 ../../Zotlabs/Module/Connedit.php:654 +#: ../../Zotlabs/Module/Events.php:459 ../../Zotlabs/Module/Events.php:460 +#: ../../Zotlabs/Module/Events.php:469 ../../Zotlabs/Module/Api.php:89 +#: ../../Zotlabs/Module/Filestorage.php:157 +#: ../../Zotlabs/Module/Filestorage.php:165 ../../Zotlabs/Module/Menu.php:100 +#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Mitem.php:158 +#: ../../Zotlabs/Module/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:232 +#: ../../Zotlabs/Module/Mitem.php:233 ../../Zotlabs/Module/Photos.php:666 +#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Admin.php:459 +#: ../../Zotlabs/Module/Removeme.php:61 ../../Zotlabs/Module/Settings.php:581 #: ../../include/dir_fns.php:143 ../../include/dir_fns.php:144 #: ../../include/dir_fns.php:145 ../../view/theme/redbasic/php/config.php:105 -#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1708 +#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1707 msgid "No" msgstr "Nei" -#: ../../Zotlabs/Module/Connedit.php:403 ../../Zotlabs/Module/Events.php:458 -#: ../../Zotlabs/Module/Events.php:459 ../../Zotlabs/Module/Events.php:468 -#: ../../Zotlabs/Module/Filestorage.php:156 -#: ../../Zotlabs/Module/Filestorage.php:164 -#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Photos.php:664 -#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 -#: ../../Zotlabs/Module/Mitem.php:158 ../../Zotlabs/Module/Mitem.php:159 -#: ../../Zotlabs/Module/Mitem.php:232 ../../Zotlabs/Module/Mitem.php:233 -#: ../../Zotlabs/Module/Admin.php:461 ../../Zotlabs/Module/Removeme.php:63 -#: ../../Zotlabs/Module/Settings.php:635 ../../Zotlabs/Module/Api.php:88 +#: ../../Zotlabs/Module/Connedit.php:379 ../../Zotlabs/Module/Events.php:459 +#: ../../Zotlabs/Module/Events.php:460 ../../Zotlabs/Module/Events.php:469 +#: ../../Zotlabs/Module/Api.php:88 ../../Zotlabs/Module/Filestorage.php:157 +#: ../../Zotlabs/Module/Filestorage.php:165 ../../Zotlabs/Module/Menu.php:100 +#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Mitem.php:158 +#: ../../Zotlabs/Module/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:232 +#: ../../Zotlabs/Module/Mitem.php:233 ../../Zotlabs/Module/Photos.php:666 +#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Admin.php:461 +#: ../../Zotlabs/Module/Removeme.php:61 ../../Zotlabs/Module/Settings.php:581 #: ../../include/dir_fns.php:143 ../../include/dir_fns.php:144 #: ../../include/dir_fns.php:145 ../../view/theme/redbasic/php/config.php:105 -#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1708 +#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1707 msgid "Yes" msgstr "Ja" -#: ../../Zotlabs/Module/Connedit.php:435 +#: ../../Zotlabs/Module/Connedit.php:411 msgid "Could not access address book record." msgstr "Fikk ikke tilgang til informasjonen i adresseboken." -#: ../../Zotlabs/Module/Connedit.php:455 +#: ../../Zotlabs/Module/Connedit.php:425 msgid "Refresh failed - channel is currently unavailable." msgstr "Oppfrisking mislyktes - kanalen er for øyeblikket utilgjengelig." -#: ../../Zotlabs/Module/Connedit.php:470 ../../Zotlabs/Module/Connedit.php:479 -#: ../../Zotlabs/Module/Connedit.php:488 ../../Zotlabs/Module/Connedit.php:497 -#: ../../Zotlabs/Module/Connedit.php:510 +#: ../../Zotlabs/Module/Connedit.php:440 ../../Zotlabs/Module/Connedit.php:449 +#: ../../Zotlabs/Module/Connedit.php:458 ../../Zotlabs/Module/Connedit.php:467 +#: ../../Zotlabs/Module/Connedit.php:480 msgid "Unable to set address book parameters." msgstr "Ikke i stand til å angi parametre for adresseboken." -#: ../../Zotlabs/Module/Connedit.php:533 +#: ../../Zotlabs/Module/Connedit.php:503 msgid "Connection has been removed." msgstr "Forbindelsen har blitt fjernet." -#: ../../Zotlabs/Module/Connedit.php:549 ../../Zotlabs/Lib/Apps.php:221 -#: ../../include/nav.php:86 ../../include/conversation.php:957 +#: ../../Zotlabs/Module/Connedit.php:519 ../../Zotlabs/Lib/Apps.php:219 +#: ../../include/nav.php:86 ../../include/conversation.php:954 msgid "View Profile" msgstr "Vis profil" -#: ../../Zotlabs/Module/Connedit.php:552 +#: ../../Zotlabs/Module/Connedit.php:522 #, php-format msgid "View %s's profile" msgstr "Vis %s sin profil" -#: ../../Zotlabs/Module/Connedit.php:556 +#: ../../Zotlabs/Module/Connedit.php:526 msgid "Refresh Permissions" msgstr "Oppfrisk tillatelser" -#: ../../Zotlabs/Module/Connedit.php:559 +#: ../../Zotlabs/Module/Connedit.php:529 msgid "Fetch updated permissions" msgstr "Hent oppdaterte tillatelser" -#: ../../Zotlabs/Module/Connedit.php:563 +#: ../../Zotlabs/Module/Connedit.php:533 msgid "Recent Activity" msgstr "Nylig aktivitet" -#: ../../Zotlabs/Module/Connedit.php:566 +#: ../../Zotlabs/Module/Connedit.php:536 msgid "View recent posts and comments" msgstr "Vis nylige innlegg og kommentarer" -#: ../../Zotlabs/Module/Connedit.php:570 ../../Zotlabs/Module/Admin.php:1041 +#: ../../Zotlabs/Module/Connedit.php:540 ../../Zotlabs/Module/Admin.php:1041 msgid "Unblock" msgstr "Ikke blokker lenger" -#: ../../Zotlabs/Module/Connedit.php:570 ../../Zotlabs/Module/Admin.php:1040 +#: ../../Zotlabs/Module/Connedit.php:540 ../../Zotlabs/Module/Admin.php:1040 msgid "Block" msgstr "Blokker" -#: ../../Zotlabs/Module/Connedit.php:573 +#: ../../Zotlabs/Module/Connedit.php:543 msgid "Block (or Unblock) all communications with this connection" msgstr "Blokker eller fjern blokkering av all kommunikasjon med denne forbindelsen" -#: ../../Zotlabs/Module/Connedit.php:574 +#: ../../Zotlabs/Module/Connedit.php:544 msgid "This connection is blocked!" msgstr "Denne forbindelsen er blokkert!" -#: ../../Zotlabs/Module/Connedit.php:578 +#: ../../Zotlabs/Module/Connedit.php:548 msgid "Unignore" msgstr "Ikke ignorer lenger" -#: ../../Zotlabs/Module/Connedit.php:578 +#: ../../Zotlabs/Module/Connedit.php:548 #: ../../Zotlabs/Module/Connections.php:277 #: ../../Zotlabs/Module/Notifications.php:55 msgid "Ignore" msgstr "Ignorer" -#: ../../Zotlabs/Module/Connedit.php:581 +#: ../../Zotlabs/Module/Connedit.php:551 msgid "Ignore (or Unignore) all inbound communications from this connection" msgstr "Ignorer eller fjern ignorering av all inngående kommunikasjon fra denne forbindelsen" -#: ../../Zotlabs/Module/Connedit.php:582 +#: ../../Zotlabs/Module/Connedit.php:552 msgid "This connection is ignored!" msgstr "Denne forbindelsen er ignorert!" -#: ../../Zotlabs/Module/Connedit.php:586 +#: ../../Zotlabs/Module/Connedit.php:556 msgid "Unarchive" msgstr "Ikke arkiver lenger" -#: ../../Zotlabs/Module/Connedit.php:586 +#: ../../Zotlabs/Module/Connedit.php:556 msgid "Archive" msgstr "Arkiver" -#: ../../Zotlabs/Module/Connedit.php:589 +#: ../../Zotlabs/Module/Connedit.php:559 msgid "" "Archive (or Unarchive) this connection - mark channel dead but keep content" msgstr "Arkiver eller fjern arkivering av denne forbindelsen - marker kanal som død, men behold innhold" -#: ../../Zotlabs/Module/Connedit.php:590 +#: ../../Zotlabs/Module/Connedit.php:560 msgid "This connection is archived!" msgstr "Denne forbindelsen er arkivert!" -#: ../../Zotlabs/Module/Connedit.php:594 +#: ../../Zotlabs/Module/Connedit.php:564 msgid "Unhide" msgstr "Ikke skjul lenger" -#: ../../Zotlabs/Module/Connedit.php:594 +#: ../../Zotlabs/Module/Connedit.php:564 msgid "Hide" msgstr "Skjul" -#: ../../Zotlabs/Module/Connedit.php:597 +#: ../../Zotlabs/Module/Connedit.php:567 msgid "Hide or Unhide this connection from your other connections" msgstr "Skjul eller fjern skjuling av denne forbindelsen fra dine andre forbindelser" -#: ../../Zotlabs/Module/Connedit.php:598 +#: ../../Zotlabs/Module/Connedit.php:568 msgid "This connection is hidden!" msgstr "Denne forbindelsen er skjult!" -#: ../../Zotlabs/Module/Connedit.php:605 +#: ../../Zotlabs/Module/Connedit.php:575 msgid "Delete this connection" msgstr "Slett denne forbindelsen" -#: ../../Zotlabs/Module/Connedit.php:620 ../../include/widgets.php:493 +#: ../../Zotlabs/Module/Connedit.php:590 ../../include/widgets.php:493 msgid "Me" msgstr "Meg" -#: ../../Zotlabs/Module/Connedit.php:621 ../../include/widgets.php:494 +#: ../../Zotlabs/Module/Connedit.php:591 ../../include/widgets.php:494 msgid "Family" msgstr "Familie" -#: ../../Zotlabs/Module/Connedit.php:622 ../../Zotlabs/Module/Settings.php:391 -#: ../../Zotlabs/Module/Settings.php:395 ../../Zotlabs/Module/Settings.php:396 -#: ../../Zotlabs/Module/Settings.php:399 ../../Zotlabs/Module/Settings.php:410 -#: ../../include/channel.php:402 ../../include/channel.php:403 -#: ../../include/channel.php:410 ../../include/selectors.php:123 -#: ../../include/widgets.php:495 +#: ../../Zotlabs/Module/Connedit.php:592 ../../Zotlabs/Module/Settings.php:342 +#: ../../Zotlabs/Module/Settings.php:346 ../../Zotlabs/Module/Settings.php:347 +#: ../../Zotlabs/Module/Settings.php:350 ../../Zotlabs/Module/Settings.php:361 +#: ../../include/widgets.php:495 ../../include/selectors.php:123 +#: ../../include/channel.php:389 ../../include/channel.php:390 +#: ../../include/channel.php:397 msgid "Friends" msgstr "Venner" -#: ../../Zotlabs/Module/Connedit.php:623 ../../include/widgets.php:496 +#: ../../Zotlabs/Module/Connedit.php:593 ../../include/widgets.php:496 msgid "Acquaintances" msgstr "Bekjente" -#: ../../Zotlabs/Module/Connedit.php:624 +#: ../../Zotlabs/Module/Connedit.php:594 #: ../../Zotlabs/Module/Connections.php:92 #: ../../Zotlabs/Module/Connections.php:107 ../../include/widgets.php:497 msgid "All" msgstr "Alle" -#: ../../Zotlabs/Module/Connedit.php:685 +#: ../../Zotlabs/Module/Connedit.php:654 msgid "Approve this connection" msgstr "Godta denne forbindelsen" -#: ../../Zotlabs/Module/Connedit.php:685 +#: ../../Zotlabs/Module/Connedit.php:654 msgid "Accept connection to allow communication" msgstr "Godta denne forbindelsen for å tillate kommunikasjon" -#: ../../Zotlabs/Module/Connedit.php:690 +#: ../../Zotlabs/Module/Connedit.php:659 msgid "Set Affinity" msgstr "Angi nærhet" -#: ../../Zotlabs/Module/Connedit.php:693 +#: ../../Zotlabs/Module/Connedit.php:662 msgid "Set Profile" msgstr "Angi profil" -#: ../../Zotlabs/Module/Connedit.php:696 +#: ../../Zotlabs/Module/Connedit.php:665 msgid "Set Affinity & Profile" msgstr "Angi nærhet og profil" -#: ../../Zotlabs/Module/Connedit.php:745 +#: ../../Zotlabs/Module/Connedit.php:698 msgid "none" msgstr "ingen" -#: ../../Zotlabs/Module/Connedit.php:749 ../../include/widgets.php:623 +#: ../../Zotlabs/Module/Connedit.php:702 ../../include/widgets.php:614 msgid "Connection Default Permissions" msgstr "Forbindelsens standard tillatelser" -#: ../../Zotlabs/Module/Connedit.php:749 ../../include/items.php:3935 +#: ../../Zotlabs/Module/Connedit.php:702 ../../include/items.php:3926 #, php-format msgid "Connection: %s" msgstr "Forbindelse: %s" -#: ../../Zotlabs/Module/Connedit.php:750 +#: ../../Zotlabs/Module/Connedit.php:703 msgid "Apply these permissions automatically" msgstr "Bruk disse tillatelsene automatisk" -#: ../../Zotlabs/Module/Connedit.php:750 +#: ../../Zotlabs/Module/Connedit.php:703 msgid "Connection requests will be approved without your interaction" msgstr "Forespørsler om forbindelse vil bli godkjent automatisk" -#: ../../Zotlabs/Module/Connedit.php:752 +#: ../../Zotlabs/Module/Connedit.php:705 msgid "This connection's primary address is" msgstr "Denne forbindelsens primære adresse er" -#: ../../Zotlabs/Module/Connedit.php:753 +#: ../../Zotlabs/Module/Connedit.php:706 msgid "Available locations:" msgstr "Tilgjengelige plasseringer:" -#: ../../Zotlabs/Module/Connedit.php:757 +#: ../../Zotlabs/Module/Connedit.php:710 msgid "" "The permissions indicated on this page will be applied to all new " "connections." msgstr "Tillatelsene angitt på denne siden gjøres gjeldende for alle nye forbindelser." -#: ../../Zotlabs/Module/Connedit.php:758 +#: ../../Zotlabs/Module/Connedit.php:711 msgid "Connection Tools" -msgstr "Forbindelsesverktøy" +msgstr "" -#: ../../Zotlabs/Module/Connedit.php:760 +#: ../../Zotlabs/Module/Connedit.php:713 msgid "Slide to adjust your degree of friendship" msgstr "Flytt for å justere din grad av vennskap" -#: ../../Zotlabs/Module/Connedit.php:761 ../../Zotlabs/Module/Rate.php:159 +#: ../../Zotlabs/Module/Connedit.php:714 ../../Zotlabs/Module/Rate.php:159 #: ../../include/js_strings.php:20 msgid "Rating" msgstr "Vurdering" -#: ../../Zotlabs/Module/Connedit.php:762 +#: ../../Zotlabs/Module/Connedit.php:715 msgid "Slide to adjust your rating" msgstr "Flytt for å justere din vurdering" -#: ../../Zotlabs/Module/Connedit.php:763 ../../Zotlabs/Module/Connedit.php:768 +#: ../../Zotlabs/Module/Connedit.php:716 ../../Zotlabs/Module/Connedit.php:721 msgid "Optionally explain your rating" msgstr "Velg om du vil forklare vurderingen" -#: ../../Zotlabs/Module/Connedit.php:765 +#: ../../Zotlabs/Module/Connedit.php:718 msgid "Custom Filter" msgstr "Tilpasset filter" -#: ../../Zotlabs/Module/Connedit.php:766 +#: ../../Zotlabs/Module/Connedit.php:719 msgid "Only import posts with this text" msgstr "Bare importer innlegg med disse ordene" -#: ../../Zotlabs/Module/Connedit.php:766 ../../Zotlabs/Module/Connedit.php:767 +#: ../../Zotlabs/Module/Connedit.php:719 ../../Zotlabs/Module/Connedit.php:720 msgid "" "words one per line or #tags or /patterns/ or lang=xx, leave blank to import " "all posts" msgstr "ord per linje eller #merkelapper eller /mønster/ eller språk lang=xx, la stå blankt for å importere alle innlegg" -#: ../../Zotlabs/Module/Connedit.php:767 +#: ../../Zotlabs/Module/Connedit.php:720 msgid "Do not import posts with this text" msgstr "Ikke importer innlegg med denne teksten" -#: ../../Zotlabs/Module/Connedit.php:769 +#: ../../Zotlabs/Module/Connedit.php:722 msgid "This information is public!" msgstr "Denne informasjonen er offentlig!" -#: ../../Zotlabs/Module/Connedit.php:774 +#: ../../Zotlabs/Module/Connedit.php:727 msgid "Connection Pending Approval" msgstr "Forbindelse venter på godkjenning" -#: ../../Zotlabs/Module/Connedit.php:777 +#: ../../Zotlabs/Module/Connedit.php:730 msgid "inherited" msgstr "arvet" -#: ../../Zotlabs/Module/Connedit.php:778 ../../Zotlabs/Module/Connect.php:98 -#: ../../Zotlabs/Module/Events.php:474 ../../Zotlabs/Module/Cal.php:338 -#: ../../Zotlabs/Module/Chat.php:196 ../../Zotlabs/Module/Chat.php:238 -#: ../../Zotlabs/Module/Group.php:85 ../../Zotlabs/Module/Appman.php:126 -#: ../../Zotlabs/Module/Pdledit.php:66 -#: ../../Zotlabs/Module/Filestorage.php:161 -#: ../../Zotlabs/Module/Profiles.php:687 ../../Zotlabs/Module/Import.php:560 -#: ../../Zotlabs/Module/Photos.php:675 ../../Zotlabs/Module/Photos.php:1050 -#: ../../Zotlabs/Module/Photos.php:1090 ../../Zotlabs/Module/Photos.php:1208 -#: ../../Zotlabs/Module/Import_items.php:122 -#: ../../Zotlabs/Module/Invite.php:146 ../../Zotlabs/Module/Locs.php:121 -#: ../../Zotlabs/Module/Mail.php:370 ../../Zotlabs/Module/Mood.php:139 -#: ../../Zotlabs/Module/Mitem.php:235 ../../Zotlabs/Module/Admin.php:492 -#: ../../Zotlabs/Module/Admin.php:688 ../../Zotlabs/Module/Admin.php:771 -#: ../../Zotlabs/Module/Admin.php:1032 ../../Zotlabs/Module/Admin.php:1211 -#: ../../Zotlabs/Module/Admin.php:1421 ../../Zotlabs/Module/Admin.php:1648 -#: ../../Zotlabs/Module/Admin.php:1733 ../../Zotlabs/Module/Admin.php:2116 -#: ../../Zotlabs/Module/Poke.php:186 ../../Zotlabs/Module/Pconfig.php:107 -#: ../../Zotlabs/Module/Rate.php:170 ../../Zotlabs/Module/Settings.php:644 -#: ../../Zotlabs/Module/Settings.php:757 ../../Zotlabs/Module/Settings.php:806 -#: ../../Zotlabs/Module/Settings.php:832 ../../Zotlabs/Module/Settings.php:855 -#: ../../Zotlabs/Module/Settings.php:943 -#: ../../Zotlabs/Module/Settings.php:1129 ../../Zotlabs/Module/Setup.php:312 -#: ../../Zotlabs/Module/Setup.php:353 ../../Zotlabs/Module/Thing.php:316 -#: ../../Zotlabs/Module/Thing.php:362 ../../Zotlabs/Module/Sources.php:114 -#: ../../Zotlabs/Module/Sources.php:149 ../../Zotlabs/Module/Xchan.php:15 -#: ../../Zotlabs/Lib/ThreadItem.php:710 ../../include/widgets.php:763 -#: ../../include/js_strings.php:22 ../../view/theme/redbasic/php/config.php:99 -msgid "Submit" -msgstr "Send" - -#: ../../Zotlabs/Module/Connedit.php:779 +#: ../../Zotlabs/Module/Connedit.php:732 #, php-format msgid "" "Please choose the profile you would like to display to %s when viewing your " "profile securely." msgstr "Vennligst velg profilen du ønsker å vise %s når profilen din ses på en sikret måte. " -#: ../../Zotlabs/Module/Connedit.php:781 +#: ../../Zotlabs/Module/Connedit.php:734 msgid "Their Settings" msgstr "Deres innstillinger" -#: ../../Zotlabs/Module/Connedit.php:782 +#: ../../Zotlabs/Module/Connedit.php:735 msgid "My Settings" msgstr "Mine innstillinger" -#: ../../Zotlabs/Module/Connedit.php:784 +#: ../../Zotlabs/Module/Connedit.php:737 msgid "Individual Permissions" msgstr "Individuelle tillatelser" -#: ../../Zotlabs/Module/Connedit.php:785 +#: ../../Zotlabs/Module/Connedit.php:738 msgid "" "Some permissions may be inherited from your channel's privacy settings, which have higher " @@ -773,7 +878,7 @@ msgid "" " settings here." msgstr "Noen tillatelser kan være arvet fra din kanals personverninnstillinger, som har høyere prioritet enn individuelle innstillinger. Du kan ikke endre arvede innstillingene her." -#: ../../Zotlabs/Module/Connedit.php:786 +#: ../../Zotlabs/Module/Connedit.php:739 msgid "" "Some permissions may be inherited from your channel's privacy settings, which have higher " @@ -781,121 +886,17 @@ msgid "" "they wont have any impact unless the inherited setting changes." msgstr "Noen tillatelser kan være arvet fra din kanals personverninnstillinger, som har høyere prioritet enn individuelle innstillinger. Du kan endre disse innstillingene her, men de vil ikke få noen effekt før de arvede innstillingene endres." -#: ../../Zotlabs/Module/Connedit.php:787 +#: ../../Zotlabs/Module/Connedit.php:740 msgid "Last update:" msgstr "Siste oppdatering:" -#: ../../Zotlabs/Module/Display.php:17 ../../Zotlabs/Module/Directory.php:63 -#: ../../Zotlabs/Module/Photos.php:520 ../../Zotlabs/Module/Ratings.php:86 +#: ../../Zotlabs/Module/Directory.php:63 ../../Zotlabs/Module/Display.php:17 +#: ../../Zotlabs/Module/Photos.php:522 ../../Zotlabs/Module/Ratings.php:86 #: ../../Zotlabs/Module/Search.php:17 -#: ../../Zotlabs/Module/Viewconnections.php:23 +#: ../../Zotlabs/Module/Viewconnections.php:20 msgid "Public access denied." msgstr "Offentlig tilgang avvist." -#: ../../Zotlabs/Module/Display.php:40 ../../Zotlabs/Module/Filestorage.php:32 -#: ../../Zotlabs/Module/Admin.php:164 ../../Zotlabs/Module/Admin.php:1255 -#: ../../Zotlabs/Module/Admin.php:1561 ../../Zotlabs/Module/Thing.php:89 -#: ../../Zotlabs/Module/Viewsrc.php:24 ../../include/items.php:3369 -msgid "Item not found." -msgstr "Elementet ble ikke funnet." - -#: ../../Zotlabs/Module/Id.php:13 -msgid "First Name" -msgstr "Fornavn" - -#: ../../Zotlabs/Module/Id.php:14 -msgid "Last Name" -msgstr "Etternavn" - -#: ../../Zotlabs/Module/Id.php:15 -msgid "Nickname" -msgstr "Kallenavn" - -#: ../../Zotlabs/Module/Id.php:16 -msgid "Full Name" -msgstr "Fullt navn" - -#: ../../Zotlabs/Module/Id.php:17 ../../Zotlabs/Module/Id.php:18 -#: ../../Zotlabs/Module/Admin.php:1035 ../../Zotlabs/Module/Admin.php:1047 -#: ../../include/network.php:2203 -msgid "Email" -msgstr "E-post" - -#: ../../Zotlabs/Module/Id.php:19 ../../Zotlabs/Module/Id.php:20 -#: ../../Zotlabs/Module/Id.php:21 ../../Zotlabs/Lib/Apps.php:238 -msgid "Profile Photo" -msgstr "Profilbilde" - -#: ../../Zotlabs/Module/Id.php:22 -msgid "Profile Photo 16px" -msgstr "Profilbilde 16px" - -#: ../../Zotlabs/Module/Id.php:23 -msgid "Profile Photo 32px" -msgstr "Profilbilde 32px" - -#: ../../Zotlabs/Module/Id.php:24 -msgid "Profile Photo 48px" -msgstr "Profilbilde 48px" - -#: ../../Zotlabs/Module/Id.php:25 -msgid "Profile Photo 64px" -msgstr "Profilbilde 64px" - -#: ../../Zotlabs/Module/Id.php:26 -msgid "Profile Photo 80px" -msgstr "Profilbilde 80px" - -#: ../../Zotlabs/Module/Id.php:27 -msgid "Profile Photo 128px" -msgstr "Profilbilde 128px" - -#: ../../Zotlabs/Module/Id.php:28 -msgid "Timezone" -msgstr "Tidssone" - -#: ../../Zotlabs/Module/Id.php:29 ../../Zotlabs/Module/Profiles.php:731 -msgid "Homepage URL" -msgstr "Hjemmeside URL" - -#: ../../Zotlabs/Module/Id.php:30 ../../Zotlabs/Lib/Apps.php:236 -msgid "Language" -msgstr "Språk" - -#: ../../Zotlabs/Module/Id.php:31 -msgid "Birth Year" -msgstr "Fødselsår" - -#: ../../Zotlabs/Module/Id.php:32 -msgid "Birth Month" -msgstr "Fødselsmåne" - -#: ../../Zotlabs/Module/Id.php:33 -msgid "Birth Day" -msgstr "Fødselsdag" - -#: ../../Zotlabs/Module/Id.php:34 -msgid "Birthdate" -msgstr "Fødselsdato" - -#: ../../Zotlabs/Module/Id.php:35 ../../Zotlabs/Module/Profiles.php:454 -msgid "Gender" -msgstr "Kjønn" - -#: ../../Zotlabs/Module/Id.php:108 ../../include/selectors.php:49 -#: ../../include/selectors.php:66 -msgid "Male" -msgstr "Mannlig" - -#: ../../Zotlabs/Module/Id.php:110 ../../include/selectors.php:49 -#: ../../include/selectors.php:66 -msgid "Female" -msgstr "Kvinnelig" - -#: ../../Zotlabs/Module/Follow.php:34 -msgid "Channel added." -msgstr "Kanal lagt til." - #: ../../Zotlabs/Module/Directory.php:243 #, php-format msgid "%d rating" @@ -915,12 +916,12 @@ msgstr "Status:" msgid "Homepage: " msgstr "Hjemmeside:" -#: ../../Zotlabs/Module/Directory.php:306 ../../include/channel.php:1223 +#: ../../Zotlabs/Module/Directory.php:306 ../../include/channel.php:1183 msgid "Age:" msgstr "Alder:" -#: ../../Zotlabs/Module/Directory.php:311 ../../include/channel.php:1066 -#: ../../include/event.php:52 ../../include/event.php:84 +#: ../../Zotlabs/Module/Directory.php:311 ../../include/event.php:52 +#: ../../include/event.php:84 ../../include/channel.php:1027 #: ../../include/bb2diaspora.php:507 msgid "Location:" msgstr "Plassering:" @@ -929,18 +930,18 @@ msgstr "Plassering:" msgid "Description:" msgstr "Beskrivelse:" -#: ../../Zotlabs/Module/Directory.php:322 ../../include/channel.php:1239 +#: ../../Zotlabs/Module/Directory.php:322 ../../include/channel.php:1199 msgid "Hometown:" msgstr "Hjemby:" -#: ../../Zotlabs/Module/Directory.php:324 ../../include/channel.php:1247 +#: ../../Zotlabs/Module/Directory.php:324 ../../include/channel.php:1207 msgid "About:" msgstr "Om:" #: ../../Zotlabs/Module/Directory.php:325 ../../Zotlabs/Module/Match.php:68 -#: ../../Zotlabs/Module/Suggest.php:56 ../../include/channel.php:1051 -#: ../../include/connections.php:78 ../../include/conversation.php:959 -#: ../../include/widgets.php:147 ../../include/widgets.php:184 +#: ../../Zotlabs/Module/Suggest.php:56 ../../include/widgets.php:147 +#: ../../include/widgets.php:184 ../../include/connections.php:78 +#: ../../include/conversation.php:956 ../../include/channel.php:1012 msgid "Connect" msgstr "Koble" @@ -1016,322 +1017,38 @@ msgstr "Eldst til nyest" msgid "No entries (some entries may be hidden)." msgstr "Ingen oppføringer (noen oppføringer kan være skjult)." -#: ../../Zotlabs/Module/Connect.php:61 ../../Zotlabs/Module/Connect.php:109 -msgid "Continue" -msgstr "Fortsett" +#: ../../Zotlabs/Module/Display.php:40 ../../Zotlabs/Module/Filestorage.php:33 +#: ../../Zotlabs/Module/Admin.php:164 ../../Zotlabs/Module/Admin.php:1255 +#: ../../Zotlabs/Module/Admin.php:1561 ../../Zotlabs/Module/Thing.php:89 +#: ../../Zotlabs/Module/Viewsrc.php:24 ../../include/items.php:3359 +msgid "Item not found." +msgstr "Elementet ble ikke funnet." -#: ../../Zotlabs/Module/Connect.php:90 -msgid "Premium Channel Setup" -msgstr "Premiumkanal-oppsett" - -#: ../../Zotlabs/Module/Connect.php:92 -msgid "Enable premium channel connection restrictions" -msgstr "Slå på restriksjoner for forbindelse med premiumkanal" - -#: ../../Zotlabs/Module/Connect.php:93 -msgid "" -"Please enter your restrictions or conditions, such as paypal receipt, usage " -"guidelines, etc." -msgstr "Vennligst skriv dine restriksjoner og betingelser, slik som PayPal-kvittering, retningslinjer for bruk, og så videre." - -#: ../../Zotlabs/Module/Connect.php:95 ../../Zotlabs/Module/Connect.php:115 -msgid "" -"This channel may require additional steps or acknowledgement of the " -"following conditions prior to connecting:" -msgstr "Denne kanalen kan kreve ytterligere steg og bekreftelse av følgende betingelser før tilkobling:" - -#: ../../Zotlabs/Module/Connect.php:96 -msgid "" -"Potential connections will then see the following text before proceeding:" -msgstr "Potensielle forbindelser vil da se følgende tekst før de går videre:" - -#: ../../Zotlabs/Module/Connect.php:97 ../../Zotlabs/Module/Connect.php:118 -msgid "" -"By continuing, I certify that I have complied with any instructions provided" -" on this page." -msgstr "Ved å fortsette bekrefter jeg at jeg har oppfylt alle instruksjoner gitt på denne siden." - -#: ../../Zotlabs/Module/Connect.php:106 -msgid "(No specific instructions have been provided by the channel owner.)" -msgstr "(Ingen spesifikke instruksjoner er gitt av kanaleieren.)" - -#: ../../Zotlabs/Module/Connect.php:114 -msgid "Restricted or Premium Channel" -msgstr "Begrenset kanal eller premiumkanal" - -#: ../../Zotlabs/Module/Events.php:25 -msgid "Calendar entries imported." -msgstr "Kalenderhendelsene er importert." - -#: ../../Zotlabs/Module/Events.php:27 -msgid "No calendar entries found." -msgstr "Ingen kalenderhendelser funnet." - -#: ../../Zotlabs/Module/Events.php:104 -msgid "Event can not end before it has started." -msgstr "Hendelsen kan ikke slutte før den starter." - -#: ../../Zotlabs/Module/Events.php:106 ../../Zotlabs/Module/Events.php:115 -#: ../../Zotlabs/Module/Events.php:135 -msgid "Unable to generate preview." -msgstr "Klarer ikke å lage forhåndsvisning." - -#: ../../Zotlabs/Module/Events.php:113 -msgid "Event title and start time are required." -msgstr "Hendelsestittel og starttidspunkt er påkrevd." - -#: ../../Zotlabs/Module/Events.php:133 ../../Zotlabs/Module/Events.php:258 -msgid "Event not found." -msgstr "Hendelsen ble ikke funnet." - -#: ../../Zotlabs/Module/Events.php:253 ../../Zotlabs/Module/Like.php:372 -#: ../../Zotlabs/Module/Tagger.php:51 ../../include/conversation.php:123 -#: ../../include/text.php:1924 ../../include/event.php:951 -msgid "event" -msgstr "hendelse" - -#: ../../Zotlabs/Module/Events.php:448 -msgid "Edit event title" -msgstr "Endre tittel på hendelse" - -#: ../../Zotlabs/Module/Events.php:448 -msgid "Event title" -msgstr "Tittel på hendelse" - -#: ../../Zotlabs/Module/Events.php:448 ../../Zotlabs/Module/Events.php:453 -#: ../../Zotlabs/Module/Appman.php:115 ../../Zotlabs/Module/Appman.php:116 -#: ../../Zotlabs/Module/Profiles.php:709 ../../Zotlabs/Module/Profiles.php:713 -#: ../../include/datetime.php:245 -msgid "Required" -msgstr "Påkrevd" - -#: ../../Zotlabs/Module/Events.php:450 -msgid "Categories (comma-separated list)" -msgstr "Kategorier (kommaseparert liste)" - -#: ../../Zotlabs/Module/Events.php:451 -msgid "Edit Category" -msgstr "Endre kategori" - -#: ../../Zotlabs/Module/Events.php:451 -msgid "Category" -msgstr "Kategori" - -#: ../../Zotlabs/Module/Events.php:454 -msgid "Edit start date and time" -msgstr "Endre startdato og tidspunkt" - -#: ../../Zotlabs/Module/Events.php:454 -msgid "Start date and time" -msgstr "Startdato og tidspunkt" - -#: ../../Zotlabs/Module/Events.php:455 ../../Zotlabs/Module/Events.php:458 -msgid "Finish date and time are not known or not relevant" -msgstr "Sluttdato og tidspunkt er ikke kjent eller ikke relevant" - -#: ../../Zotlabs/Module/Events.php:457 -msgid "Edit finish date and time" -msgstr "Endre sluttdato og tidspunkt" - -#: ../../Zotlabs/Module/Events.php:457 -msgid "Finish date and time" -msgstr "Sluttdato og tidspunkt" - -#: ../../Zotlabs/Module/Events.php:459 ../../Zotlabs/Module/Events.php:460 -msgid "Adjust for viewer timezone" -msgstr "Juster i forhold til tilskuerens tidssone" - -#: ../../Zotlabs/Module/Events.php:459 -msgid "" -"Important for events that happen in a particular place. Not practical for " -"global holidays." -msgstr "Viktig for hendelser som skjer på et bestemt sted. Ikke praktisk for globale ferier eller fridager." - -#: ../../Zotlabs/Module/Events.php:461 -msgid "Edit Description" -msgstr "Endre beskrivelse" - -#: ../../Zotlabs/Module/Events.php:461 ../../Zotlabs/Module/Appman.php:117 -#: ../../Zotlabs/Module/Rbmark.php:101 -msgid "Description" -msgstr "Beskrivelse" - -#: ../../Zotlabs/Module/Events.php:463 -msgid "Edit Location" -msgstr "Endre plassering" - -#: ../../Zotlabs/Module/Events.php:463 ../../Zotlabs/Module/Profiles.php:477 -#: ../../Zotlabs/Module/Profiles.php:698 ../../Zotlabs/Module/Locs.php:117 -#: ../../Zotlabs/Module/Pubsites.php:41 ../../include/js_strings.php:25 -msgid "Location" -msgstr "Plassering" - -#: ../../Zotlabs/Module/Events.php:466 ../../Zotlabs/Module/Events.php:468 -msgid "Share this event" -msgstr "Del denne hendelsen" - -#: ../../Zotlabs/Module/Events.php:469 ../../Zotlabs/Module/Photos.php:1091 -#: ../../Zotlabs/Module/Webpages.php:201 ../../Zotlabs/Lib/ThreadItem.php:719 -#: ../../include/page_widgets.php:43 ../../include/conversation.php:1198 -msgid "Preview" -msgstr "Forhåndsvisning" - -#: ../../Zotlabs/Module/Events.php:470 ../../include/conversation.php:1247 -msgid "Permission settings" -msgstr "Tillatelser - innstillinger" - -#: ../../Zotlabs/Module/Events.php:475 -msgid "Advanced Options" -msgstr "Avanserte alternativer" - -#: ../../Zotlabs/Module/Events.php:587 ../../Zotlabs/Module/Cal.php:259 -msgid "l, F j" -msgstr "l, F j" - -#: ../../Zotlabs/Module/Events.php:609 -msgid "Edit event" -msgstr "Endre hendelse" - -#: ../../Zotlabs/Module/Events.php:611 -msgid "Delete event" -msgstr "Slett hendelse" - -#: ../../Zotlabs/Module/Events.php:636 ../../Zotlabs/Module/Cal.php:308 -#: ../../include/text.php:1712 -msgid "Link to Source" -msgstr "Lenke til kilde" - -#: ../../Zotlabs/Module/Events.php:645 -msgid "calendar" -msgstr "kalender" - -#: ../../Zotlabs/Module/Events.php:664 ../../Zotlabs/Module/Cal.php:331 -msgid "Edit Event" -msgstr "Endre hendelse" - -#: ../../Zotlabs/Module/Events.php:664 ../../Zotlabs/Module/Cal.php:331 -msgid "Create Event" -msgstr "Lag hendelse" - -#: ../../Zotlabs/Module/Events.php:665 ../../Zotlabs/Module/Events.php:674 -#: ../../Zotlabs/Module/Cal.php:332 ../../Zotlabs/Module/Cal.php:339 -#: ../../Zotlabs/Module/Photos.php:947 -msgid "Previous" -msgstr "Forrige" - -#: ../../Zotlabs/Module/Events.php:666 ../../Zotlabs/Module/Events.php:675 -#: ../../Zotlabs/Module/Cal.php:333 ../../Zotlabs/Module/Cal.php:340 -#: ../../Zotlabs/Module/Photos.php:956 ../../Zotlabs/Module/Setup.php:267 -msgid "Next" -msgstr "Neste" - -#: ../../Zotlabs/Module/Events.php:667 ../../Zotlabs/Module/Cal.php:334 -msgid "Export" -msgstr "Eksport" - -#: ../../Zotlabs/Module/Events.php:670 ../../Zotlabs/Module/Layouts.php:197 -#: ../../Zotlabs/Module/Pubsites.php:47 ../../Zotlabs/Module/Blocks.php:166 -#: ../../Zotlabs/Module/Webpages.php:200 ../../include/page_widgets.php:42 -msgid "View" -msgstr "Vis" - -#: ../../Zotlabs/Module/Events.php:671 -msgid "Month" -msgstr "" - -#: ../../Zotlabs/Module/Events.php:672 -msgid "Week" -msgstr "" - -#: ../../Zotlabs/Module/Events.php:673 -msgid "Day" -msgstr "" - -#: ../../Zotlabs/Module/Events.php:676 ../../Zotlabs/Module/Cal.php:341 -msgid "Today" -msgstr "Idag" - -#: ../../Zotlabs/Module/Events.php:707 -msgid "Event removed" -msgstr "Hendelse slettet" - -#: ../../Zotlabs/Module/Events.php:710 -msgid "Failed to remove event" -msgstr "Mislyktes med å slette hendelse" - -#: ../../Zotlabs/Module/Bookmarks.php:53 -msgid "Bookmark added" -msgstr "Bokmerke lagt til" - -#: ../../Zotlabs/Module/Bookmarks.php:75 -msgid "My Bookmarks" -msgstr "Mine bokmerker" - -#: ../../Zotlabs/Module/Bookmarks.php:86 -msgid "My Connections Bookmarks" -msgstr "Mine forbindelsers bokmerker" - -#: ../../Zotlabs/Module/Editpost.php:24 ../../Zotlabs/Module/Editlayout.php:79 -#: ../../Zotlabs/Module/Editwebpage.php:80 #: ../../Zotlabs/Module/Editblock.php:79 ../../Zotlabs/Module/Editblock.php:95 +#: ../../Zotlabs/Module/Editpost.php:24 ../../Zotlabs/Module/Editlayout.php:79 +#: ../../Zotlabs/Module/Editwebpage.php:81 msgid "Item not found" msgstr "Elementet ble ikke funnet." -#: ../../Zotlabs/Module/Editpost.php:35 -msgid "Item is not editable" -msgstr "Elementet kan ikke endres" +#: ../../Zotlabs/Module/Editblock.php:124 ../../include/conversation.php:1228 +msgid "Title (optional)" +msgstr "Tittel (valgfri)" -#: ../../Zotlabs/Module/Editpost.php:106 ../../Zotlabs/Module/Rpost.php:134 -msgid "Edit post" -msgstr "Endre innlegg" +#: ../../Zotlabs/Module/Editblock.php:133 +msgid "Edit Block" +msgstr "Endre byggekloss" -#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:222 -#: ../../include/nav.php:92 ../../include/conversation.php:1647 -msgid "Photos" -msgstr "Bilder" +#: ../../Zotlabs/Module/Common.php:14 +msgid "No channel." +msgstr "Ingen kanal." -#: ../../Zotlabs/Module/Fbrowser.php:66 ../../Zotlabs/Module/Fbrowser.php:88 -#: ../../Zotlabs/Module/Admin.php:1406 ../../Zotlabs/Module/Settings.php:645 -#: ../../Zotlabs/Module/Settings.php:671 ../../Zotlabs/Module/Tagrm.php:15 -#: ../../Zotlabs/Module/Tagrm.php:138 ../../Zotlabs/Module/Wiki.php:166 -#: ../../Zotlabs/Module/Wiki.php:202 ../../include/conversation.php:1235 -#: ../../include/conversation.php:1274 -msgid "Cancel" -msgstr "Avbryt" +#: ../../Zotlabs/Module/Common.php:43 +msgid "Common connections" +msgstr "Felles forbindelser" -#: ../../Zotlabs/Module/Page.php:40 ../../Zotlabs/Module/Block.php:31 -msgid "Invalid item." -msgstr "Ugyldig element." - -#: ../../Zotlabs/Module/Page.php:56 ../../Zotlabs/Module/Cal.php:62 -#: ../../Zotlabs/Module/Block.php:43 ../../Zotlabs/Module/Wall_upload.php:33 -msgid "Channel not found." -msgstr "Kanalen ble ikke funnet." - -#: ../../Zotlabs/Module/Page.php:131 -msgid "" -"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod " -"tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam," -" quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo " -"consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse " -"cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat " -"non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." -msgstr "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." - -#: ../../Zotlabs/Module/Filer.php:52 -msgid "Save to Folder:" -msgstr "Lagre til mappe:" - -#: ../../Zotlabs/Module/Filer.php:52 -msgid "- select -" -msgstr "- velg -" - -#: ../../Zotlabs/Module/Filer.php:53 ../../Zotlabs/Module/Admin.php:2033 -#: ../../Zotlabs/Module/Admin.php:2053 ../../Zotlabs/Module/Rbmark.php:32 -#: ../../Zotlabs/Module/Rbmark.php:104 ../../include/text.php:926 -#: ../../include/text.php:938 ../../include/widgets.php:201 -msgid "Save" -msgstr "Lagre" +#: ../../Zotlabs/Module/Common.php:48 +msgid "No connections in common." +msgstr "Ingen forbindelser felles." #: ../../Zotlabs/Module/Connections.php:56 #: ../../Zotlabs/Module/Connections.php:161 @@ -1359,7 +1076,7 @@ msgstr "Arkivert" #: ../../Zotlabs/Module/Connections.php:76 #: ../../Zotlabs/Module/Connections.php:86 ../../Zotlabs/Module/Menu.php:116 -#: ../../include/conversation.php:1550 +#: ../../include/conversation.php:1535 msgid "New" msgstr "Nye" @@ -1446,15 +1163,15 @@ msgstr "Ignorer forbindelse" msgid "Recent activity" msgstr "Nylig aktivitet" -#: ../../Zotlabs/Module/Connections.php:302 ../../Zotlabs/Lib/Apps.php:209 -#: ../../include/nav.php:188 ../../include/text.php:855 +#: ../../Zotlabs/Module/Connections.php:302 ../../Zotlabs/Lib/Apps.php:208 +#: ../../include/text.php:875 ../../include/nav.php:186 msgid "Connections" msgstr "Forbindelser" #: ../../Zotlabs/Module/Connections.php:306 ../../Zotlabs/Module/Search.php:44 -#: ../../Zotlabs/Lib/Apps.php:230 ../../include/nav.php:167 -#: ../../include/text.php:925 ../../include/text.php:937 -#: ../../include/acl_selectors.php:274 +#: ../../Zotlabs/Lib/Apps.php:228 ../../include/text.php:945 +#: ../../include/text.php:957 ../../include/nav.php:165 +#: ../../include/acl_selectors.php:276 msgid "Search" msgstr "Søk" @@ -1467,7 +1184,7 @@ msgid "Connections search" msgstr "Søk blant forbindelser" #: ../../Zotlabs/Module/Cover_photo.php:58 -#: ../../Zotlabs/Module/Profile_photo.php:61 +#: ../../Zotlabs/Module/Profile_photo.php:79 msgid "Image uploaded but image cropping failed." msgstr "Bildet ble lastet opp, men beskjæring av bildet mislyktes." @@ -1477,66 +1194,66 @@ msgid "Cover Photos" msgstr "Forsidebilder" #: ../../Zotlabs/Module/Cover_photo.php:154 -#: ../../Zotlabs/Module/Profile_photo.php:135 +#: ../../Zotlabs/Module/Profile_photo.php:133 msgid "Image resize failed." msgstr "Endring av bildestørrelse mislyktes." #: ../../Zotlabs/Module/Cover_photo.php:168 -#: ../../Zotlabs/Module/Profile_photo.php:196 ../../include/photos.php:148 +#: ../../Zotlabs/Module/Profile_photo.php:192 ../../include/photos.php:144 msgid "Unable to process image" msgstr "Kan ikke behandle bildet" #: ../../Zotlabs/Module/Cover_photo.php:192 -#: ../../Zotlabs/Module/Profile_photo.php:223 +#: ../../Zotlabs/Module/Profile_photo.php:217 msgid "Image upload failed." msgstr "Opplasting av bildet mislyktes." #: ../../Zotlabs/Module/Cover_photo.php:210 -#: ../../Zotlabs/Module/Profile_photo.php:242 +#: ../../Zotlabs/Module/Profile_photo.php:236 msgid "Unable to process image." msgstr "Kan ikke behandle bildet." -#: ../../Zotlabs/Module/Cover_photo.php:233 ../../include/items.php:4283 +#: ../../Zotlabs/Module/Cover_photo.php:233 ../../include/items.php:4270 msgid "female" msgstr "kvinne" -#: ../../Zotlabs/Module/Cover_photo.php:234 ../../include/items.php:4284 +#: ../../Zotlabs/Module/Cover_photo.php:234 ../../include/items.php:4271 #, php-format msgid "%1$s updated her %2$s" msgstr "%1$s oppdaterte %2$s sitt" -#: ../../Zotlabs/Module/Cover_photo.php:235 ../../include/items.php:4285 +#: ../../Zotlabs/Module/Cover_photo.php:235 ../../include/items.php:4272 msgid "male" msgstr "mann" -#: ../../Zotlabs/Module/Cover_photo.php:236 ../../include/items.php:4286 +#: ../../Zotlabs/Module/Cover_photo.php:236 ../../include/items.php:4273 #, php-format msgid "%1$s updated his %2$s" msgstr "%1$s oppdaterte %2$s sitt" -#: ../../Zotlabs/Module/Cover_photo.php:238 ../../include/items.php:4288 +#: ../../Zotlabs/Module/Cover_photo.php:238 ../../include/items.php:4275 #, php-format msgid "%1$s updated their %2$s" msgstr "%1$s oppdaterte %2$s deres" -#: ../../Zotlabs/Module/Cover_photo.php:240 ../../include/channel.php:1726 +#: ../../Zotlabs/Module/Cover_photo.php:240 ../../include/channel.php:1661 msgid "cover photo" msgstr "forsidebilde" #: ../../Zotlabs/Module/Cover_photo.php:303 #: ../../Zotlabs/Module/Cover_photo.php:318 -#: ../../Zotlabs/Module/Profile_photo.php:300 -#: ../../Zotlabs/Module/Profile_photo.php:341 +#: ../../Zotlabs/Module/Profile_photo.php:283 +#: ../../Zotlabs/Module/Profile_photo.php:324 msgid "Photo not available." msgstr "Bildet er ikke tilgjengelig." #: ../../Zotlabs/Module/Cover_photo.php:354 -#: ../../Zotlabs/Module/Profile_photo.php:387 +#: ../../Zotlabs/Module/Profile_photo.php:365 msgid "Upload File:" msgstr "Last opp fil:" #: ../../Zotlabs/Module/Cover_photo.php:355 -#: ../../Zotlabs/Module/Profile_photo.php:388 +#: ../../Zotlabs/Module/Profile_photo.php:366 msgid "Select a profile:" msgstr "Velg en profil:" @@ -1545,69 +1262,200 @@ msgid "Upload Cover Photo" msgstr "Last opp forsidebilde" #: ../../Zotlabs/Module/Cover_photo.php:361 -#: ../../Zotlabs/Module/Profile_photo.php:396 -#: ../../Zotlabs/Module/Settings.php:1080 +#: ../../Zotlabs/Module/Profile_photo.php:374 +#: ../../Zotlabs/Module/Settings.php:985 msgid "or" msgstr "eller" #: ../../Zotlabs/Module/Cover_photo.php:361 -#: ../../Zotlabs/Module/Profile_photo.php:396 +#: ../../Zotlabs/Module/Profile_photo.php:374 msgid "skip this step" msgstr "hopp over dette steget" #: ../../Zotlabs/Module/Cover_photo.php:361 -#: ../../Zotlabs/Module/Profile_photo.php:396 +#: ../../Zotlabs/Module/Profile_photo.php:374 msgid "select a photo from your photo albums" msgstr "velg et bilde fra dine fotoalbum" #: ../../Zotlabs/Module/Cover_photo.php:377 -#: ../../Zotlabs/Module/Profile_photo.php:415 +#: ../../Zotlabs/Module/Profile_photo.php:390 msgid "Crop Image" msgstr "Beskjær bildet" #: ../../Zotlabs/Module/Cover_photo.php:378 -#: ../../Zotlabs/Module/Profile_photo.php:416 +#: ../../Zotlabs/Module/Profile_photo.php:391 msgid "Please adjust the image cropping for optimum viewing." msgstr "Vennligst juster bildebeskjæringen for optimal visning." #: ../../Zotlabs/Module/Cover_photo.php:380 -#: ../../Zotlabs/Module/Profile_photo.php:418 +#: ../../Zotlabs/Module/Profile_photo.php:393 msgid "Done Editing" msgstr "Avslutt redigering" -#: ../../Zotlabs/Module/Impel.php:41 ../../include/bbcode.php:192 -msgid "webpage" -msgstr "nettside" +#: ../../Zotlabs/Module/Editpost.php:35 +msgid "Item is not editable" +msgstr "Elementet kan ikke endres" -#: ../../Zotlabs/Module/Impel.php:46 ../../include/bbcode.php:198 -msgid "block" -msgstr "byggekloss" +#: ../../Zotlabs/Module/Editpost.php:106 ../../Zotlabs/Module/Rpost.php:135 +msgid "Edit post" +msgstr "Endre innlegg" -#: ../../Zotlabs/Module/Impel.php:51 ../../include/bbcode.php:195 -msgid "layout" -msgstr "layout" +#: ../../Zotlabs/Module/Events.php:26 +msgid "Calendar entries imported." +msgstr "Kalenderhendelsene er importert." -#: ../../Zotlabs/Module/Impel.php:58 ../../include/bbcode.php:201 -msgid "menu" -msgstr "meny" +#: ../../Zotlabs/Module/Events.php:28 +msgid "No calendar entries found." +msgstr "Ingen kalenderhendelser funnet." -#: ../../Zotlabs/Module/Impel.php:187 -#, php-format -msgid "%s element installed" -msgstr "%s element installert" +#: ../../Zotlabs/Module/Events.php:105 +msgid "Event can not end before it has started." +msgstr "Hendelsen kan ikke slutte før den starter." -#: ../../Zotlabs/Module/Impel.php:190 -#, php-format -msgid "%s element installation failed" -msgstr "Installasjon av %s-element mislyktes" +#: ../../Zotlabs/Module/Events.php:107 ../../Zotlabs/Module/Events.php:116 +#: ../../Zotlabs/Module/Events.php:136 +msgid "Unable to generate preview." +msgstr "Klarer ikke å lage forhåndsvisning." -#: ../../Zotlabs/Module/Cal.php:69 -msgid "Permissions denied." -msgstr "Tillatelse avvist." +#: ../../Zotlabs/Module/Events.php:114 +msgid "Event title and start time are required." +msgstr "Hendelsestittel og starttidspunkt er påkrevd." -#: ../../Zotlabs/Module/Cal.php:337 -msgid "Import" -msgstr "Importer" +#: ../../Zotlabs/Module/Events.php:134 ../../Zotlabs/Module/Events.php:259 +msgid "Event not found." +msgstr "Hendelsen ble ikke funnet." + +#: ../../Zotlabs/Module/Events.php:254 ../../Zotlabs/Module/Like.php:373 +#: ../../Zotlabs/Module/Tagger.php:51 ../../include/event.php:949 +#: ../../include/text.php:1943 ../../include/conversation.php:123 +msgid "event" +msgstr "hendelse" + +#: ../../Zotlabs/Module/Events.php:449 +msgid "Edit event title" +msgstr "Endre tittel på hendelse" + +#: ../../Zotlabs/Module/Events.php:449 +msgid "Event title" +msgstr "Tittel på hendelse" + +#: ../../Zotlabs/Module/Events.php:449 ../../Zotlabs/Module/Events.php:454 +#: ../../Zotlabs/Module/Profiles.php:709 ../../Zotlabs/Module/Profiles.php:713 +#: ../../Zotlabs/Module/Appman.php:115 ../../Zotlabs/Module/Appman.php:116 +#: ../../include/datetime.php:245 +msgid "Required" +msgstr "Påkrevd" + +#: ../../Zotlabs/Module/Events.php:451 +msgid "Categories (comma-separated list)" +msgstr "Kategorier (kommaseparert liste)" + +#: ../../Zotlabs/Module/Events.php:452 +msgid "Edit Category" +msgstr "Endre kategori" + +#: ../../Zotlabs/Module/Events.php:452 +msgid "Category" +msgstr "Kategori" + +#: ../../Zotlabs/Module/Events.php:455 +msgid "Edit start date and time" +msgstr "Endre startdato og tidspunkt" + +#: ../../Zotlabs/Module/Events.php:455 +msgid "Start date and time" +msgstr "Startdato og tidspunkt" + +#: ../../Zotlabs/Module/Events.php:456 ../../Zotlabs/Module/Events.php:459 +msgid "Finish date and time are not known or not relevant" +msgstr "Sluttdato og tidspunkt er ikke kjent eller ikke relevant" + +#: ../../Zotlabs/Module/Events.php:458 +msgid "Edit finish date and time" +msgstr "Endre sluttdato og tidspunkt" + +#: ../../Zotlabs/Module/Events.php:458 +msgid "Finish date and time" +msgstr "Sluttdato og tidspunkt" + +#: ../../Zotlabs/Module/Events.php:460 ../../Zotlabs/Module/Events.php:461 +msgid "Adjust for viewer timezone" +msgstr "Juster i forhold til tilskuerens tidssone" + +#: ../../Zotlabs/Module/Events.php:460 +msgid "" +"Important for events that happen in a particular place. Not practical for " +"global holidays." +msgstr "Viktig for hendelser som skjer på et bestemt sted. Ikke praktisk for globale ferier eller fridager." + +#: ../../Zotlabs/Module/Events.php:462 +msgid "Edit Description" +msgstr "Endre beskrivelse" + +#: ../../Zotlabs/Module/Events.php:462 ../../Zotlabs/Module/Appman.php:117 +#: ../../Zotlabs/Module/Rbmark.php:101 +msgid "Description" +msgstr "Beskrivelse" + +#: ../../Zotlabs/Module/Events.php:464 +msgid "Edit Location" +msgstr "Endre plassering" + +#: ../../Zotlabs/Module/Events.php:464 ../../Zotlabs/Module/Locs.php:117 +#: ../../Zotlabs/Module/Profiles.php:477 ../../Zotlabs/Module/Profiles.php:698 +#: ../../Zotlabs/Module/Pubsites.php:41 ../../include/js_strings.php:25 +msgid "Location" +msgstr "Plassering" + +#: ../../Zotlabs/Module/Events.php:467 ../../Zotlabs/Module/Events.php:469 +msgid "Share this event" +msgstr "Del denne hendelsen" + +#: ../../Zotlabs/Module/Events.php:470 ../../Zotlabs/Module/Photos.php:1093 +#: ../../Zotlabs/Module/Webpages.php:194 ../../Zotlabs/Lib/ThreadItem.php:719 +#: ../../include/conversation.php:1187 ../../include/page_widgets.php:40 +msgid "Preview" +msgstr "Forhåndsvisning" + +#: ../../Zotlabs/Module/Events.php:471 ../../include/conversation.php:1232 +msgid "Permission settings" +msgstr "Tillatelser - innstillinger" + +#: ../../Zotlabs/Module/Events.php:476 +msgid "Advanced Options" +msgstr "Avanserte alternativer" + +#: ../../Zotlabs/Module/Events.php:610 +msgid "Edit event" +msgstr "Endre hendelse" + +#: ../../Zotlabs/Module/Events.php:612 +msgid "Delete event" +msgstr "Slett hendelse" + +#: ../../Zotlabs/Module/Events.php:646 +msgid "calendar" +msgstr "kalender" + +#: ../../Zotlabs/Module/Events.php:706 +msgid "Event removed" +msgstr "Hendelse slettet" + +#: ../../Zotlabs/Module/Events.php:709 +msgid "Failed to remove event" +msgstr "Mislyktes med å slette hendelse" + +#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:220 +#: ../../include/nav.php:92 ../../include/conversation.php:1632 +msgid "Photos" +msgstr "Bilder" + +#: ../../Zotlabs/Module/Fbrowser.php:66 ../../Zotlabs/Module/Fbrowser.php:88 +#: ../../Zotlabs/Module/Admin.php:1406 ../../Zotlabs/Module/Settings.php:591 +#: ../../Zotlabs/Module/Settings.php:617 ../../Zotlabs/Module/Tagrm.php:15 +#: ../../Zotlabs/Module/Tagrm.php:138 ../../include/conversation.php:1259 +msgid "Cancel" +msgstr "Avbryt" #: ../../Zotlabs/Module/Dirsearch.php:25 ../../Zotlabs/Module/Regdir.php:49 msgid "This site is not a directory server" @@ -1617,184 +1465,112 @@ msgstr "Dette nettstedet er ikke en katalogtjener" msgid "This directory server requires an access token" msgstr "Denne katalogtjeneren krever en tilgangsnøkkel (access token)" -#: ../../Zotlabs/Module/Chat.php:25 ../../Zotlabs/Module/Channel.php:28 -#: ../../Zotlabs/Module/Wiki.php:20 -msgid "You must be logged in to see this page." -msgstr "Du må være innloegget for å se denne siden." +#: ../../Zotlabs/Module/Filer.php:52 +msgid "Save to Folder:" +msgstr "Lagre til mappe:" -#: ../../Zotlabs/Module/Chat.php:181 -msgid "Room not found" -msgstr "Rommet ble ikke funnet" +#: ../../Zotlabs/Module/Filer.php:52 +msgid "- select -" +msgstr "- velg -" -#: ../../Zotlabs/Module/Chat.php:197 -msgid "Leave Room" -msgstr "Forlat rom" +#: ../../Zotlabs/Module/Filer.php:53 ../../Zotlabs/Module/Admin.php:2033 +#: ../../Zotlabs/Module/Admin.php:2053 ../../Zotlabs/Module/Rbmark.php:32 +#: ../../Zotlabs/Module/Rbmark.php:104 ../../include/text.php:946 +#: ../../include/text.php:958 ../../include/widgets.php:201 +msgid "Save" +msgstr "Lagre" -#: ../../Zotlabs/Module/Chat.php:198 -msgid "Delete Room" -msgstr "Slett rom" - -#: ../../Zotlabs/Module/Chat.php:199 -msgid "I am away right now" -msgstr "Jeg er borte akkurat nå" - -#: ../../Zotlabs/Module/Chat.php:200 -msgid "I am online" -msgstr "Jeg er online" - -#: ../../Zotlabs/Module/Chat.php:202 -msgid "Bookmark this room" -msgstr "Bokmerk dette rommet" - -#: ../../Zotlabs/Module/Chat.php:205 ../../Zotlabs/Module/Mail.php:197 -#: ../../Zotlabs/Module/Mail.php:306 ../../include/conversation.php:1181 -msgid "Please enter a link URL:" -msgstr "Vennligst skriv inn en lenke URL:" - -#: ../../Zotlabs/Module/Chat.php:206 ../../Zotlabs/Module/Mail.php:250 -#: ../../Zotlabs/Module/Mail.php:375 ../../Zotlabs/Lib/ThreadItem.php:722 -#: ../../include/conversation.php:1271 -msgid "Encrypt text" -msgstr "Krypter tekst" - -#: ../../Zotlabs/Module/Chat.php:207 ../../Zotlabs/Module/Editwebpage.php:146 -#: ../../Zotlabs/Module/Mail.php:244 ../../Zotlabs/Module/Mail.php:369 -#: ../../Zotlabs/Module/Editblock.php:111 ../../include/conversation.php:1146 -msgid "Insert web link" -msgstr "Sett inn web-lenke" - -#: ../../Zotlabs/Module/Chat.php:218 -msgid "Feature disabled." -msgstr "Funksjonen er avskrudd." - -#: ../../Zotlabs/Module/Chat.php:232 -msgid "New Chatroom" -msgstr "Nytt chatrom" - -#: ../../Zotlabs/Module/Chat.php:233 -msgid "Chatroom name" -msgstr "Navn på chatrom" - -#: ../../Zotlabs/Module/Chat.php:234 -msgid "Expiration of chats (minutes)" -msgstr "Chat utgår (antall minutter)" - -#: ../../Zotlabs/Module/Chat.php:235 ../../Zotlabs/Module/Filestorage.php:152 -#: ../../Zotlabs/Module/Photos.php:669 ../../Zotlabs/Module/Photos.php:1043 -#: ../../Zotlabs/Module/Thing.php:313 ../../Zotlabs/Module/Thing.php:359 -#: ../../include/acl_selectors.php:281 -msgid "Permissions" -msgstr "Tillatelser" - -#: ../../Zotlabs/Module/Chat.php:246 -#, php-format -msgid "%1$s's Chatrooms" -msgstr "%1$s sine chatrom" - -#: ../../Zotlabs/Module/Chat.php:251 -msgid "No chatrooms available" -msgstr "Ingen tilgjengelige chatrom" - -#: ../../Zotlabs/Module/Chat.php:252 ../../Zotlabs/Module/Profiles.php:778 -#: ../../Zotlabs/Module/Manage.php:143 -msgid "Create New" -msgstr "Lag ny" - -#: ../../Zotlabs/Module/Chat.php:255 -msgid "Expiration" -msgstr "Utløper" - -#: ../../Zotlabs/Module/Chat.php:256 -msgid "min" -msgstr "min" - -#: ../../Zotlabs/Module/Dreport.php:44 +#: ../../Zotlabs/Module/Dreport.php:27 msgid "Invalid message" msgstr "Ugyldig melding" -#: ../../Zotlabs/Module/Dreport.php:76 +#: ../../Zotlabs/Module/Dreport.php:59 msgid "no results" msgstr "ingen resultater" -#: ../../Zotlabs/Module/Dreport.php:91 -msgid "channel sync processed" -msgstr "Kanalsynkronisering er behandlet" - -#: ../../Zotlabs/Module/Dreport.php:95 -msgid "queued" -msgstr "lagt i kø" - -#: ../../Zotlabs/Module/Dreport.php:99 -msgid "posted" -msgstr "lagt inn" - -#: ../../Zotlabs/Module/Dreport.php:103 -msgid "accepted for delivery" -msgstr "akseptert for levering" - -#: ../../Zotlabs/Module/Dreport.php:107 -msgid "updated" -msgstr "oppdatert" - -#: ../../Zotlabs/Module/Dreport.php:110 -msgid "update ignored" -msgstr "oppdatering ignorert" - -#: ../../Zotlabs/Module/Dreport.php:113 -msgid "permission denied" -msgstr "tillatelse avvist" - -#: ../../Zotlabs/Module/Dreport.php:117 -msgid "recipient not found" -msgstr "mottaker ble ikke funnet" - -#: ../../Zotlabs/Module/Dreport.php:120 -msgid "mail recalled" -msgstr "melding tilbakekalt" - -#: ../../Zotlabs/Module/Dreport.php:123 -msgid "duplicate mail received" -msgstr "duplikat av melding mottatt" - -#: ../../Zotlabs/Module/Dreport.php:126 -msgid "mail delivered" -msgstr "melding mottatt" - -#: ../../Zotlabs/Module/Dreport.php:146 +#: ../../Zotlabs/Module/Dreport.php:64 #, php-format msgid "Delivery report for %1$s" msgstr "Leveringsrapport for %1$s" -#: ../../Zotlabs/Module/Dreport.php:149 -msgid "Options" -msgstr "" +#: ../../Zotlabs/Module/Dreport.php:78 +msgid "channel sync processed" +msgstr "Kanalsynkronisering er behandlet" -#: ../../Zotlabs/Module/Dreport.php:150 -msgid "Redeliver" -msgstr "" +#: ../../Zotlabs/Module/Dreport.php:82 +msgid "queued" +msgstr "lagt i kø" -#: ../../Zotlabs/Module/Editlayout.php:127 -#: ../../Zotlabs/Module/Layouts.php:128 ../../Zotlabs/Module/Layouts.php:188 +#: ../../Zotlabs/Module/Dreport.php:86 +msgid "posted" +msgstr "lagt inn" + +#: ../../Zotlabs/Module/Dreport.php:90 +msgid "accepted for delivery" +msgstr "akseptert for levering" + +#: ../../Zotlabs/Module/Dreport.php:94 +msgid "updated" +msgstr "oppdatert" + +#: ../../Zotlabs/Module/Dreport.php:97 +msgid "update ignored" +msgstr "oppdatering ignorert" + +#: ../../Zotlabs/Module/Dreport.php:100 +msgid "permission denied" +msgstr "tillatelse avvist" + +#: ../../Zotlabs/Module/Dreport.php:104 +msgid "recipient not found" +msgstr "mottaker ble ikke funnet" + +#: ../../Zotlabs/Module/Dreport.php:107 +msgid "mail recalled" +msgstr "melding tilbakekalt" + +#: ../../Zotlabs/Module/Dreport.php:110 +msgid "duplicate mail received" +msgstr "duplikat av melding mottatt" + +#: ../../Zotlabs/Module/Dreport.php:113 +msgid "mail delivered" +msgstr "melding mottatt" + +#: ../../Zotlabs/Module/Editlayout.php:126 +#: ../../Zotlabs/Module/Layouts.php:127 ../../Zotlabs/Module/Layouts.php:186 msgid "Layout Name" msgstr "Layout-navn" -#: ../../Zotlabs/Module/Editlayout.php:128 -#: ../../Zotlabs/Module/Layouts.php:131 +#: ../../Zotlabs/Module/Editlayout.php:127 +#: ../../Zotlabs/Module/Layouts.php:130 msgid "Layout Description (Optional)" msgstr "Layoutens beskrivelse (valgfritt)" -#: ../../Zotlabs/Module/Editlayout.php:136 +#: ../../Zotlabs/Module/Editlayout.php:135 msgid "Edit Layout" msgstr "Endre layout" -#: ../../Zotlabs/Module/Editwebpage.php:142 +#: ../../Zotlabs/Module/Editwebpage.php:143 msgid "Page link" -msgstr "Sidelenke" +msgstr "" -#: ../../Zotlabs/Module/Editwebpage.php:168 +#: ../../Zotlabs/Module/Editwebpage.php:169 msgid "Edit Webpage" msgstr "Endre webside" +#: ../../Zotlabs/Module/Follow.php:34 +msgid "Channel added." +msgstr "Kanal lagt til." + +#: ../../Zotlabs/Module/Acl.php:227 +msgid "network" +msgstr "nettverk" + +#: ../../Zotlabs/Module/Acl.php:237 +msgid "RSS" +msgstr "RSS" + #: ../../Zotlabs/Module/Group.php:24 msgid "Privacy group created." msgstr "Personverngruppen er opprettet." @@ -1804,7 +1580,7 @@ msgid "Could not create privacy group." msgstr "Kunne ikke opprette personverngruppen." #: ../../Zotlabs/Module/Group.php:42 ../../Zotlabs/Module/Group.php:141 -#: ../../include/items.php:3902 +#: ../../include/items.php:3893 msgid "Privacy group not found." msgstr "Personverngruppen ble ikke funnet" @@ -1848,57 +1624,31 @@ msgstr "Alle tilkoblede kanaler" msgid "Click on a channel to add or remove." msgstr "Klikk på en kanal for å legge til eller fjerne." -#: ../../Zotlabs/Module/Appman.php:37 ../../Zotlabs/Module/Appman.php:53 -msgid "App installed." -msgstr "App installert." +#: ../../Zotlabs/Module/Ffsapi.php:12 +msgid "Share content from Firefox to $Projectname" +msgstr "Del innhold fra Firefox til $Projectname" -#: ../../Zotlabs/Module/Appman.php:46 -msgid "Malformed app." -msgstr "Feil oppsett for app-en." +#: ../../Zotlabs/Module/Ffsapi.php:15 +msgid "Activate the Firefox $Projectname provider" +msgstr "Skru på Firefox $Projectname tilbyderen" -#: ../../Zotlabs/Module/Appman.php:104 -msgid "Embed code" -msgstr "Innbyggingskode" +#: ../../Zotlabs/Module/Api.php:61 ../../Zotlabs/Module/Api.php:85 +msgid "Authorize application connection" +msgstr "Tillat programforbindelse" -#: ../../Zotlabs/Module/Appman.php:110 ../../include/widgets.php:107 -msgid "Edit App" -msgstr "Endre app" +#: ../../Zotlabs/Module/Api.php:62 +msgid "Return to your app and insert this Securty Code:" +msgstr "Gå tilbake til din app og legg inn denne sikkerhetskoden:" -#: ../../Zotlabs/Module/Appman.php:110 -msgid "Create App" -msgstr "Lag app" +#: ../../Zotlabs/Module/Api.php:72 +msgid "Please login to continue." +msgstr "Vennligst logg inn for å fortsette." -#: ../../Zotlabs/Module/Appman.php:115 -msgid "Name of app" -msgstr "Navn på app" - -#: ../../Zotlabs/Module/Appman.php:116 -msgid "Location (URL) of app" -msgstr "Plassering (URL) til app" - -#: ../../Zotlabs/Module/Appman.php:118 -msgid "Photo icon URL" -msgstr "Bildeikon URL" - -#: ../../Zotlabs/Module/Appman.php:118 -msgid "80 x 80 pixels - optional" -msgstr "80 x80 pixler - valgfritt" - -#: ../../Zotlabs/Module/Appman.php:119 -msgid "Categories (optional, comma separated list)" -msgstr "Kategorier (valgfri, kommaseparert liste)" - -#: ../../Zotlabs/Module/Appman.php:120 -msgid "Version ID" -msgstr "Versjons-ID" - -#: ../../Zotlabs/Module/Appman.php:121 -msgid "Price of app" -msgstr "Pris på app" - -#: ../../Zotlabs/Module/Appman.php:122 -msgid "Location (URL) to purchase app" -msgstr "Plassering (URL) for å kjøpe app" +#: ../../Zotlabs/Module/Api.php:87 +msgid "" +"Do you want to authorize this application to access your posts and contacts," +" and/or create new posts for you?" +msgstr "Vil du tillate dette programmet å få tilgang til dine innlegg og kontakter, og/eller lage nye innlegg for deg?" #: ../../Zotlabs/Module/Help.php:26 msgid "Documentation Search" @@ -1910,8 +1660,8 @@ msgid "Help:" msgstr "Hjelp:" #: ../../Zotlabs/Module/Help.php:85 ../../Zotlabs/Module/Help.php:90 -#: ../../Zotlabs/Module/Layouts.php:185 ../../Zotlabs/Lib/Apps.php:225 -#: ../../include/nav.php:161 +#: ../../Zotlabs/Module/Layouts.php:183 ../../Zotlabs/Lib/Apps.php:223 +#: ../../include/nav.php:159 msgid "Help" msgstr "Hjelp" @@ -1919,124 +1669,335 @@ msgstr "Hjelp" msgid "$Projectname Documentation" msgstr "$Projectname dokumentasjon" +#: ../../Zotlabs/Module/Filestorage.php:88 +msgid "Permission Denied." +msgstr "Tillatelse avvist." + +#: ../../Zotlabs/Module/Filestorage.php:104 +msgid "File not found." +msgstr "Filen ble ikke funnet." + +#: ../../Zotlabs/Module/Filestorage.php:147 +msgid "Edit file permissions" +msgstr "Endre filtillatelser" + +#: ../../Zotlabs/Module/Filestorage.php:156 +msgid "Set/edit permissions" +msgstr "Angi/endre tillatelser" + +#: ../../Zotlabs/Module/Filestorage.php:157 +msgid "Include all files and sub folders" +msgstr "Inkluder alle filer og undermapper" + +#: ../../Zotlabs/Module/Filestorage.php:158 +msgid "Return to file list" +msgstr "Gå tilbake til filoversikten" + +#: ../../Zotlabs/Module/Filestorage.php:160 +msgid "Copy/paste this code to attach file to a post" +msgstr "Kopier og lim inn denne koden for å legge til filen i et innlegg" + +#: ../../Zotlabs/Module/Filestorage.php:161 +msgid "Copy/paste this URL to link file from a web page" +msgstr "Kopier og lim inn denne URL-en for å lenke til filen fra en webside" + +#: ../../Zotlabs/Module/Filestorage.php:163 +msgid "Share this file" +msgstr "Del denne filen" + +#: ../../Zotlabs/Module/Filestorage.php:164 +msgid "Show URL to this file" +msgstr "Vis URLen til denne filen" + +#: ../../Zotlabs/Module/Filestorage.php:165 +msgid "Notify your contacts about this file" +msgstr "Varsle dine kontakter om denne filen" + +#: ../../Zotlabs/Module/Apps.php:47 ../../include/widgets.php:102 +#: ../../include/nav.php:163 +msgid "Apps" +msgstr "Apper" + #: ../../Zotlabs/Module/Attach.php:13 msgid "Item not available." msgstr "Elementet er ikke tilgjengelig." -#: ../../Zotlabs/Module/Pdledit.php:18 -msgid "Layout updated." -msgstr "Layout er oppdatert." +#: ../../Zotlabs/Module/Import.php:32 +#, php-format +msgid "Your service plan only allows %d channels." +msgstr "Din tjenesteplan tillater bare %d kanaler." -#: ../../Zotlabs/Module/Pdledit.php:34 ../../Zotlabs/Module/Pdledit.php:61 -msgid "Edit System Page Description" -msgstr "Endre beskrivelsen av systemsiden" +#: ../../Zotlabs/Module/Import.php:70 ../../Zotlabs/Module/Import_items.php:42 +msgid "Nothing to import." +msgstr "Ingenting å importere." -#: ../../Zotlabs/Module/Pdledit.php:56 -msgid "Layout not found." -msgstr "Layouten ble ikke funnet." +#: ../../Zotlabs/Module/Import.php:94 ../../Zotlabs/Module/Import_items.php:66 +msgid "Unable to download data from old server" +msgstr "Ikke i stand til å laste ned data fra gammel tjener" -#: ../../Zotlabs/Module/Pdledit.php:62 -msgid "Module Name:" -msgstr "Modulnavn:" +#: ../../Zotlabs/Module/Import.php:100 +#: ../../Zotlabs/Module/Import_items.php:72 +msgid "Imported file is empty." +msgstr "Importert fil er tom." -#: ../../Zotlabs/Module/Pdledit.php:63 -msgid "Layout Help" -msgstr "Layout-hjelp" +#: ../../Zotlabs/Module/Import.php:122 +#: ../../Zotlabs/Module/Import_items.php:86 +#, php-format +msgid "Warning: Database versions differ by %1$d updates." +msgstr "Advarsel: databaseversjoner avviker med %1$d oppdateringer." -#: ../../Zotlabs/Module/Ffsapi.php:12 -msgid "Share content from Firefox to $Projectname" -msgstr "Del innhold fra Firefox til $Projectname" +#: ../../Zotlabs/Module/Import.php:150 ../../include/import.php:86 +msgid "Cloned channel not found. Import failed." +msgstr "Klonet kanal ble ikke funnet. Import mislyktes." -#: ../../Zotlabs/Module/Ffsapi.php:15 -msgid "Activate the Firefox $Projectname provider" -msgstr "Skru på Firefox $Projectname tilbyderen" +#: ../../Zotlabs/Module/Import.php:160 +msgid "No channel. Import failed." +msgstr "Ingen kanal. Import mislyktes." -#: ../../Zotlabs/Module/Acl.php:312 -msgid "network" -msgstr "nettverk" +#: ../../Zotlabs/Module/Import.php:510 +#: ../../include/Import/import_diaspora.php:142 +msgid "Import completed." +msgstr "Import ferdig." -#: ../../Zotlabs/Module/Acl.php:322 -msgid "RSS" -msgstr "RSS" +#: ../../Zotlabs/Module/Import.php:532 +msgid "You must be logged in to use this feature." +msgstr "Du må være innlogget for å bruke denne funksjonen." -#: ../../Zotlabs/Module/Filestorage.php:87 -msgid "Permission Denied." -msgstr "Tillatelse avvist." +#: ../../Zotlabs/Module/Import.php:537 +msgid "Import Channel" +msgstr "Importer kanal" -#: ../../Zotlabs/Module/Filestorage.php:103 -msgid "File not found." -msgstr "Filen ble ikke funnet." +#: ../../Zotlabs/Module/Import.php:538 +msgid "" +"Use this form to import an existing channel from a different server/hub. You" +" may retrieve the channel identity from the old server/hub via the network " +"or provide an export file." +msgstr "Bruk dette skjemaet for å importere en eksisterende kanal fra en annen tjener/hub. Du kan hente inn kanalidentiteten fra den gamle tjeneren/huben via nettverket eller ved å bruke en eksportfil." -#: ../../Zotlabs/Module/Filestorage.php:146 -msgid "Edit file permissions" -msgstr "Endre filtillatelser" +#: ../../Zotlabs/Module/Import.php:539 +#: ../../Zotlabs/Module/Import_items.php:119 +msgid "File to Upload" +msgstr "Fil som skal lastes opp" -#: ../../Zotlabs/Module/Filestorage.php:155 -msgid "Set/edit permissions" -msgstr "Angi/endre tillatelser" +#: ../../Zotlabs/Module/Import.php:540 +msgid "Or provide the old server/hub details" +msgstr "Eller oppgi detaljene fra den gamle tjeneren/hub-en" -#: ../../Zotlabs/Module/Filestorage.php:156 -msgid "Include all files and sub folders" -msgstr "Inkluder alle filer og undermapper" +#: ../../Zotlabs/Module/Import.php:541 +msgid "Your old identity address (xyz@example.com)" +msgstr "Din gamle identitetsadresse (xyz@example.com)" -#: ../../Zotlabs/Module/Filestorage.php:157 -msgid "Return to file list" -msgstr "Gå tilbake til filoversikten" +#: ../../Zotlabs/Module/Import.php:542 +msgid "Your old login email address" +msgstr "Din gamle innloggings e-postadresse" -#: ../../Zotlabs/Module/Filestorage.php:159 -msgid "Copy/paste this code to attach file to a post" -msgstr "Kopier og lim inn denne koden for å legge til filen i et innlegg" +#: ../../Zotlabs/Module/Import.php:543 +msgid "Your old login password" +msgstr "Ditt gamle innloggingspassord" -#: ../../Zotlabs/Module/Filestorage.php:160 -msgid "Copy/paste this URL to link file from a web page" -msgstr "Kopier og lim inn denne URL-en for å lenke til filen fra en webside" +#: ../../Zotlabs/Module/Import.php:544 +msgid "" +"For either option, please choose whether to make this hub your new primary " +"address, or whether your old location should continue this role. You will be" +" able to post from either location, but only one can be marked as the " +"primary location for files, photos, and media." +msgstr "Enten du tar det ene eller det andre valget, vennligst angi om du vil at denne hubben skal være din nye primære adresse, eller om din gamle plassering skal fortsette å ha denne rollen. Du kan lage innlegg fra den ene eller den andre plasseringen, men bare en av dem kan markeres som den primære plasseringen for filer, bilder og media." -#: ../../Zotlabs/Module/Filestorage.php:162 -msgid "Share this file" -msgstr "Del denne filen" +#: ../../Zotlabs/Module/Import.php:545 +msgid "Make this hub my primary location" +msgstr "Gjør dette nettstedet til min primære plassering" -#: ../../Zotlabs/Module/Filestorage.php:163 -msgid "Show URL to this file" -msgstr "Vis URLen til denne filen" +#: ../../Zotlabs/Module/Import.php:546 +msgid "" +"Import existing posts if possible (experimental - limited by available " +"memory" +msgstr "Importer eksisterende innlegg om mulig (eksperimentelt - begrenset av tilgjengelig minne)" -#: ../../Zotlabs/Module/Filestorage.php:164 -msgid "Notify your contacts about this file" -msgstr "Varsle dine kontakter om denne filen" +#: ../../Zotlabs/Module/Import.php:547 +msgid "" +"This process may take several minutes to complete. Please submit the form " +"only once and leave this page open until finished." +msgstr "Denne prosessen kan ta flere minutter å fullføre. Vennligst send inn dette skjemaet bare en gang og la siden være åpen inntil den er ferdig." -#: ../../Zotlabs/Module/Layouts.php:183 ../../include/text.php:2240 +#: ../../Zotlabs/Module/Item.php:178 +msgid "Unable to locate original post." +msgstr "Ikke i stand til å finne opprinnelig innlegg." + +#: ../../Zotlabs/Module/Item.php:427 +msgid "Empty post discarded." +msgstr "Tomt innlegg forkastet." + +#: ../../Zotlabs/Module/Item.php:467 +msgid "Executable content type not permitted to this channel." +msgstr "Kjørbar innholdstype er ikke tillat for denne kanalen." + +#: ../../Zotlabs/Module/Item.php:847 +msgid "Duplicate post suppressed." +msgstr "Duplikat av innlegg forhindret." + +#: ../../Zotlabs/Module/Item.php:977 +msgid "System error. Post not saved." +msgstr "Systemfeil. Innlegg ble ikke lagret." + +#: ../../Zotlabs/Module/Item.php:1241 +msgid "Unable to obtain post information from database." +msgstr "Ikke i stand til å få tak i informasjon om innlegg fra databasen." + +#: ../../Zotlabs/Module/Item.php:1248 +#, php-format +msgid "You have reached your limit of %1$.0f top level posts." +msgstr "Du har nådd din grense på %1$.0f startinnlegg." + +#: ../../Zotlabs/Module/Item.php:1255 +#, php-format +msgid "You have reached your limit of %1$.0f webpages." +msgstr "Du har nådd din grense på %1$.0f websider." + +#: ../../Zotlabs/Module/Layouts.php:181 ../../include/text.php:2267 msgid "Layouts" msgstr "Layout" -#: ../../Zotlabs/Module/Layouts.php:185 +#: ../../Zotlabs/Module/Layouts.php:183 msgid "Comanche page description language help" msgstr "Hjelp med Comanche sidebeskrivelsesspråk" -#: ../../Zotlabs/Module/Layouts.php:189 +#: ../../Zotlabs/Module/Layouts.php:187 msgid "Layout Description" msgstr "Layout-beskrivelse" -#: ../../Zotlabs/Module/Layouts.php:190 ../../Zotlabs/Module/Menu.php:114 -#: ../../Zotlabs/Module/Blocks.php:157 ../../Zotlabs/Module/Webpages.php:205 -#: ../../include/page_widgets.php:47 -msgid "Created" -msgstr "Laget" - -#: ../../Zotlabs/Module/Layouts.php:191 ../../Zotlabs/Module/Menu.php:115 -#: ../../Zotlabs/Module/Blocks.php:158 ../../Zotlabs/Module/Webpages.php:206 -#: ../../include/page_widgets.php:48 -msgid "Edited" -msgstr "Endret" - -#: ../../Zotlabs/Module/Layouts.php:193 ../../Zotlabs/Module/Photos.php:1070 -#: ../../Zotlabs/Module/Blocks.php:161 ../../Zotlabs/Module/Webpages.php:195 -#: ../../include/conversation.php:1219 -msgid "Share" -msgstr "Del" - -#: ../../Zotlabs/Module/Layouts.php:194 +#: ../../Zotlabs/Module/Layouts.php:192 msgid "Download PDL file" msgstr "Last ned PDL-fil" +#: ../../Zotlabs/Module/Home.php:61 ../../Zotlabs/Module/Home.php:69 +#: ../../Zotlabs/Module/Siteinfo.php:65 +msgid "$Projectname" +msgstr "$Projectname" + +#: ../../Zotlabs/Module/Home.php:79 +#, php-format +msgid "Welcome to %s" +msgstr "Velkommen til %s" + +#: ../../Zotlabs/Module/Id.php:13 +msgid "First Name" +msgstr "Fornavn" + +#: ../../Zotlabs/Module/Id.php:14 +msgid "Last Name" +msgstr "Etternavn" + +#: ../../Zotlabs/Module/Id.php:15 +msgid "Nickname" +msgstr "Kallenavn" + +#: ../../Zotlabs/Module/Id.php:16 +msgid "Full Name" +msgstr "Fullt navn" + +#: ../../Zotlabs/Module/Id.php:17 ../../Zotlabs/Module/Id.php:18 +#: ../../Zotlabs/Module/Admin.php:1035 ../../Zotlabs/Module/Admin.php:1047 +#: ../../include/network.php:2151 ../../boot.php:1705 +msgid "Email" +msgstr "E-post" + +#: ../../Zotlabs/Module/Id.php:19 ../../Zotlabs/Module/Id.php:20 +#: ../../Zotlabs/Module/Id.php:21 ../../Zotlabs/Lib/Apps.php:236 +msgid "Profile Photo" +msgstr "Profilbilde" + +#: ../../Zotlabs/Module/Id.php:22 +msgid "Profile Photo 16px" +msgstr "Profilbilde 16px" + +#: ../../Zotlabs/Module/Id.php:23 +msgid "Profile Photo 32px" +msgstr "Profilbilde 32px" + +#: ../../Zotlabs/Module/Id.php:24 +msgid "Profile Photo 48px" +msgstr "Profilbilde 48px" + +#: ../../Zotlabs/Module/Id.php:25 +msgid "Profile Photo 64px" +msgstr "Profilbilde 64px" + +#: ../../Zotlabs/Module/Id.php:26 +msgid "Profile Photo 80px" +msgstr "Profilbilde 80px" + +#: ../../Zotlabs/Module/Id.php:27 +msgid "Profile Photo 128px" +msgstr "Profilbilde 128px" + +#: ../../Zotlabs/Module/Id.php:28 +msgid "Timezone" +msgstr "Tidssone" + +#: ../../Zotlabs/Module/Id.php:29 ../../Zotlabs/Module/Profiles.php:731 +msgid "Homepage URL" +msgstr "Hjemmeside URL" + +#: ../../Zotlabs/Module/Id.php:30 ../../Zotlabs/Lib/Apps.php:234 +msgid "Language" +msgstr "Språk" + +#: ../../Zotlabs/Module/Id.php:31 +msgid "Birth Year" +msgstr "Fødselsår" + +#: ../../Zotlabs/Module/Id.php:32 +msgid "Birth Month" +msgstr "Fødselsmåne" + +#: ../../Zotlabs/Module/Id.php:33 +msgid "Birth Day" +msgstr "Fødselsdag" + +#: ../../Zotlabs/Module/Id.php:34 +msgid "Birthdate" +msgstr "Fødselsdato" + +#: ../../Zotlabs/Module/Id.php:35 ../../Zotlabs/Module/Profiles.php:454 +msgid "Gender" +msgstr "Kjønn" + +#: ../../Zotlabs/Module/Id.php:108 ../../include/selectors.php:49 +#: ../../include/selectors.php:66 +msgid "Male" +msgstr "Mannlig" + +#: ../../Zotlabs/Module/Id.php:110 ../../include/selectors.php:49 +#: ../../include/selectors.php:66 +msgid "Female" +msgstr "Kvinnelig" + +#: ../../Zotlabs/Module/Impel.php:41 ../../include/bbcode.php:192 +msgid "webpage" +msgstr "nettside" + +#: ../../Zotlabs/Module/Impel.php:46 ../../include/bbcode.php:198 +msgid "block" +msgstr "byggekloss" + +#: ../../Zotlabs/Module/Impel.php:51 ../../include/bbcode.php:195 +msgid "layout" +msgstr "layout" + +#: ../../Zotlabs/Module/Impel.php:58 ../../include/bbcode.php:201 +msgid "menu" +msgstr "meny" + +#: ../../Zotlabs/Module/Impel.php:196 +#, php-format +msgid "%s element installed" +msgstr "%s element installert" + +#: ../../Zotlabs/Module/Impel.php:199 +#, php-format +msgid "%s element installation failed" +msgstr "Installasjon av %s-element mislyktes" + #: ../../Zotlabs/Module/Like.php:19 msgid "Like/Dislike" msgstr "Liker/Liker ikke" @@ -2072,782 +2033,74 @@ msgstr "Kanalen er utilgjengelig." msgid "Previous action reversed." msgstr "Forrige handling er omgjort." -#: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87 -#: ../../Zotlabs/Module/Tagger.php:47 ../../include/conversation.php:120 -#: ../../include/text.php:1921 +#: ../../Zotlabs/Module/Like.php:371 ../../Zotlabs/Module/Subthread.php:87 +#: ../../Zotlabs/Module/Tagger.php:47 ../../include/text.php:1940 +#: ../../include/conversation.php:120 msgid "photo" msgstr "foto" -#: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87 -#: ../../include/conversation.php:148 ../../include/text.php:1927 +#: ../../Zotlabs/Module/Like.php:371 ../../Zotlabs/Module/Subthread.php:87 +#: ../../include/text.php:1946 ../../include/conversation.php:148 msgid "status" msgstr "status" -#: ../../Zotlabs/Module/Like.php:419 ../../include/conversation.php:164 +#: ../../Zotlabs/Module/Like.php:420 ../../include/conversation.php:164 #, php-format msgid "%1$s likes %2$s's %3$s" msgstr "%1$s liker %2$s sin %3$s" -#: ../../Zotlabs/Module/Like.php:421 ../../include/conversation.php:167 +#: ../../Zotlabs/Module/Like.php:422 ../../include/conversation.php:167 #, php-format msgid "%1$s doesn't like %2$s's %3$s" msgstr "%1$s liker ikke %2$s sin %3$s" -#: ../../Zotlabs/Module/Like.php:423 +#: ../../Zotlabs/Module/Like.php:424 #, php-format msgid "%1$s agrees with %2$s's %3$s" msgstr "%1$s er enig med %2$s sin %3$s" -#: ../../Zotlabs/Module/Like.php:425 +#: ../../Zotlabs/Module/Like.php:426 #, php-format msgid "%1$s doesn't agree with %2$s's %3$s" msgstr "%1$s er ikke enig med %2$s sin %3$s" -#: ../../Zotlabs/Module/Like.php:427 +#: ../../Zotlabs/Module/Like.php:428 #, php-format msgid "%1$s abstains from a decision on %2$s's %3$s" msgstr "%1$s avstår fra å mene noe om %2$s sin %3$s" -#: ../../Zotlabs/Module/Like.php:429 +#: ../../Zotlabs/Module/Like.php:430 #, php-format msgid "%1$s is attending %2$s's %3$s" msgstr "%1$s deltar på %2$ss %3$s" -#: ../../Zotlabs/Module/Like.php:431 +#: ../../Zotlabs/Module/Like.php:432 #, php-format msgid "%1$s is not attending %2$s's %3$s" msgstr "%1$s deltar ikke på %2$ss %3$s" -#: ../../Zotlabs/Module/Like.php:433 +#: ../../Zotlabs/Module/Like.php:434 #, php-format msgid "%1$s may attend %2$s's %3$s" msgstr "%1$s deltar kanskje på %2$ss %3$s" -#: ../../Zotlabs/Module/Like.php:536 +#: ../../Zotlabs/Module/Like.php:537 msgid "Action completed." msgstr "Handling ferdig." -#: ../../Zotlabs/Module/Like.php:537 +#: ../../Zotlabs/Module/Like.php:538 msgid "Thank you." msgstr "Tusen takk." -#: ../../Zotlabs/Module/Profiles.php:24 ../../Zotlabs/Module/Profiles.php:189 -#: ../../Zotlabs/Module/Profiles.php:246 ../../Zotlabs/Module/Profiles.php:625 -msgid "Profile not found." -msgstr "Profilen ble ikke funnet." - -#: ../../Zotlabs/Module/Profiles.php:44 -msgid "Profile deleted." -msgstr "Profilen er slettet." - -#: ../../Zotlabs/Module/Profiles.php:68 ../../Zotlabs/Module/Profiles.php:104 -msgid "Profile-" -msgstr "Profil-" - -#: ../../Zotlabs/Module/Profiles.php:89 ../../Zotlabs/Module/Profiles.php:132 -msgid "New profile created." -msgstr "Ny profil opprettet." - -#: ../../Zotlabs/Module/Profiles.php:110 -msgid "Profile unavailable to clone." -msgstr "Profilen er utilgjengelig for klonen." - -#: ../../Zotlabs/Module/Profiles.php:151 -msgid "Profile unavailable to export." -msgstr "Profilen er utilgjengelig for eksport." - -#: ../../Zotlabs/Module/Profiles.php:256 -msgid "Profile Name is required." -msgstr "Profilnavn er påkrevd." - -#: ../../Zotlabs/Module/Profiles.php:427 -msgid "Marital Status" -msgstr "Sivilstand" - -#: ../../Zotlabs/Module/Profiles.php:431 -msgid "Romantic Partner" -msgstr "Romantisk partner" - -#: ../../Zotlabs/Module/Profiles.php:435 ../../Zotlabs/Module/Profiles.php:736 -msgid "Likes" -msgstr "Liker" - -#: ../../Zotlabs/Module/Profiles.php:439 ../../Zotlabs/Module/Profiles.php:737 -msgid "Dislikes" -msgstr "Liker ikke" - -#: ../../Zotlabs/Module/Profiles.php:443 ../../Zotlabs/Module/Profiles.php:744 -msgid "Work/Employment" -msgstr "Arbeid/sysselsetting" - -#: ../../Zotlabs/Module/Profiles.php:446 -msgid "Religion" -msgstr "Religion" - -#: ../../Zotlabs/Module/Profiles.php:450 -msgid "Political Views" -msgstr "Politiske synspunkter" - -#: ../../Zotlabs/Module/Profiles.php:458 -msgid "Sexual Preference" -msgstr "Seksuelle preferanser" - -#: ../../Zotlabs/Module/Profiles.php:462 -msgid "Homepage" -msgstr "Hjemmeside" - -#: ../../Zotlabs/Module/Profiles.php:466 -msgid "Interests" -msgstr "Interesser" - -#: ../../Zotlabs/Module/Profiles.php:470 ../../Zotlabs/Module/Locs.php:118 -#: ../../Zotlabs/Module/Admin.php:1224 -msgid "Address" -msgstr "Adresse" - -#: ../../Zotlabs/Module/Profiles.php:560 -msgid "Profile updated." -msgstr "Profilen er oppdatert." - -#: ../../Zotlabs/Module/Profiles.php:644 -msgid "Hide your connections list from viewers of this profile" -msgstr "Skjul listen med forbindelser fra besøkende som ser denne profilen" - -#: ../../Zotlabs/Module/Profiles.php:686 -msgid "Edit Profile Details" -msgstr "Endre profildetaljer" - -#: ../../Zotlabs/Module/Profiles.php:688 -msgid "View this profile" -msgstr "Vis denne profilen" - -#: ../../Zotlabs/Module/Profiles.php:689 ../../Zotlabs/Module/Profiles.php:771 -#: ../../include/channel.php:998 -msgid "Edit visibility" -msgstr "Endre synlighet" - -#: ../../Zotlabs/Module/Profiles.php:690 -msgid "Profile Tools" -msgstr "Profilverktøy" - -#: ../../Zotlabs/Module/Profiles.php:691 -msgid "Change cover photo" -msgstr "Endre forsidebilde" - -#: ../../Zotlabs/Module/Profiles.php:692 ../../include/channel.php:969 -msgid "Change profile photo" -msgstr "Endre profilbilde" - -#: ../../Zotlabs/Module/Profiles.php:693 -msgid "Create a new profile using these settings" -msgstr "Lag en ny profil ved å bruke disse innstillingene" - -#: ../../Zotlabs/Module/Profiles.php:694 -msgid "Clone this profile" -msgstr "Klon denne profilen" - -#: ../../Zotlabs/Module/Profiles.php:695 -msgid "Delete this profile" -msgstr "Slett denne profilen" - -#: ../../Zotlabs/Module/Profiles.php:696 -msgid "Add profile things" -msgstr "Legg til profilting" - -#: ../../Zotlabs/Module/Profiles.php:697 ../../include/conversation.php:1541 -#: ../../include/widgets.php:105 -msgid "Personal" -msgstr "Personlig" - -#: ../../Zotlabs/Module/Profiles.php:699 -msgid "Relation" -msgstr "Forhold" - -#: ../../Zotlabs/Module/Profiles.php:700 ../../include/datetime.php:48 -msgid "Miscellaneous" -msgstr "Forskjellig" - -#: ../../Zotlabs/Module/Profiles.php:702 -msgid "Import profile from file" -msgstr "Importer profil fra fil" - -#: ../../Zotlabs/Module/Profiles.php:703 -msgid "Export profile to file" -msgstr "Eksporter profil til fil" - -#: ../../Zotlabs/Module/Profiles.php:704 -msgid "Your gender" -msgstr "Ditt kjønn" - -#: ../../Zotlabs/Module/Profiles.php:705 -msgid "Marital status" -msgstr "Sivilstand" - -#: ../../Zotlabs/Module/Profiles.php:706 -msgid "Sexual preference" -msgstr "Seksuelle preferanser" - -#: ../../Zotlabs/Module/Profiles.php:709 -msgid "Profile name" -msgstr "Profilnavn" - -#: ../../Zotlabs/Module/Profiles.php:711 -msgid "This is your default profile." -msgstr "Dette er din standardprofil." - -#: ../../Zotlabs/Module/Profiles.php:713 -msgid "Your full name" -msgstr "Ditt fulle navn" - -#: ../../Zotlabs/Module/Profiles.php:714 -msgid "Title/Description" -msgstr "Tittel/beskrivelse" - -#: ../../Zotlabs/Module/Profiles.php:717 -msgid "Street address" -msgstr "Gateadresse" - -#: ../../Zotlabs/Module/Profiles.php:718 -msgid "Locality/City" -msgstr "Sted/by" - -#: ../../Zotlabs/Module/Profiles.php:719 -msgid "Region/State" -msgstr "Region/fylke" - -#: ../../Zotlabs/Module/Profiles.php:720 -msgid "Postal/Zip code" -msgstr "Postnummer/ZIP-kode" - -#: ../../Zotlabs/Module/Profiles.php:721 -msgid "Country" -msgstr "Land" - -#: ../../Zotlabs/Module/Profiles.php:726 -msgid "Who (if applicable)" -msgstr "Hvem (hvis det er aktuelt)" - -#: ../../Zotlabs/Module/Profiles.php:726 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" -msgstr "Eksempler: kari123, Kari Villiamsen, kari@example.com" - -#: ../../Zotlabs/Module/Profiles.php:727 -msgid "Since (date)" -msgstr "Siden (dato)" - -#: ../../Zotlabs/Module/Profiles.php:730 -msgid "Tell us about yourself" -msgstr "Fortell oss om deg selv" - -#: ../../Zotlabs/Module/Profiles.php:732 -msgid "Hometown" -msgstr "Hjemby" - -#: ../../Zotlabs/Module/Profiles.php:733 -msgid "Political views" -msgstr "Politiske synspunkter" - -#: ../../Zotlabs/Module/Profiles.php:734 -msgid "Religious views" -msgstr "Religiøse synspunkter" - -#: ../../Zotlabs/Module/Profiles.php:735 -msgid "Keywords used in directory listings" -msgstr "Nøkkelord bruk i katalogoppføringer" - -#: ../../Zotlabs/Module/Profiles.php:735 -msgid "Example: fishing photography software" -msgstr "Eksempel: fisking fotografering programvare" - -#: ../../Zotlabs/Module/Profiles.php:738 -msgid "Musical interests" -msgstr "Musikkinteresser" - -#: ../../Zotlabs/Module/Profiles.php:739 -msgid "Books, literature" -msgstr "Bøker, litteratur" - -#: ../../Zotlabs/Module/Profiles.php:740 -msgid "Television" -msgstr "TV/fjernsyn" - -#: ../../Zotlabs/Module/Profiles.php:741 -msgid "Film/Dance/Culture/Entertainment" -msgstr "Film/dans/kultur/underholdning" - -#: ../../Zotlabs/Module/Profiles.php:742 -msgid "Hobbies/Interests" -msgstr "Hobbier/Interesser" - -#: ../../Zotlabs/Module/Profiles.php:743 -msgid "Love/Romance" -msgstr "Kjærlighet/romantikk" - -#: ../../Zotlabs/Module/Profiles.php:745 -msgid "School/Education" -msgstr "Skole/utdanning" - -#: ../../Zotlabs/Module/Profiles.php:746 -msgid "Contact information and social networks" -msgstr "Kontaktinformasjon og sosiale nettverk" - -#: ../../Zotlabs/Module/Profiles.php:747 -msgid "My other channels" -msgstr "Mine andre kanaler" - -#: ../../Zotlabs/Module/Profiles.php:767 ../../include/channel.php:994 -msgid "Profile Image" -msgstr "Profilbilde" - -#: ../../Zotlabs/Module/Profiles.php:777 ../../include/nav.php:88 -#: ../../include/channel.php:976 -msgid "Edit Profiles" -msgstr "Endre profiler" - -#: ../../Zotlabs/Module/Import.php:33 -#, php-format -msgid "Your service plan only allows %d channels." -msgstr "Din tjenesteplan tillater bare %d kanaler." - -#: ../../Zotlabs/Module/Import.php:71 ../../Zotlabs/Module/Import_items.php:42 -msgid "Nothing to import." -msgstr "Ingenting å importere." - -#: ../../Zotlabs/Module/Import.php:95 ../../Zotlabs/Module/Import_items.php:66 -msgid "Unable to download data from old server" -msgstr "Ikke i stand til å laste ned data fra gammel tjener" - -#: ../../Zotlabs/Module/Import.php:101 -#: ../../Zotlabs/Module/Import_items.php:72 -msgid "Imported file is empty." -msgstr "Importert fil er tom." - -#: ../../Zotlabs/Module/Import.php:123 -#: ../../Zotlabs/Module/Import_items.php:88 -#, php-format -msgid "Warning: Database versions differ by %1$d updates." -msgstr "Advarsel: databaseversjoner avviker med %1$d oppdateringer." - -#: ../../Zotlabs/Module/Import.php:153 ../../include/import.php:107 -msgid "Cloned channel not found. Import failed." -msgstr "Klonet kanal ble ikke funnet. Import mislyktes." - -#: ../../Zotlabs/Module/Import.php:163 -msgid "No channel. Import failed." -msgstr "Ingen kanal. Import mislyktes." - -#: ../../Zotlabs/Module/Import.php:520 -#: ../../include/Import/import_diaspora.php:142 -msgid "Import completed." -msgstr "Import ferdig." - -#: ../../Zotlabs/Module/Import.php:542 -msgid "You must be logged in to use this feature." -msgstr "Du må være innlogget for å bruke denne funksjonen." - -#: ../../Zotlabs/Module/Import.php:547 -msgid "Import Channel" -msgstr "Importer kanal" - -#: ../../Zotlabs/Module/Import.php:548 -msgid "" -"Use this form to import an existing channel from a different server/hub. You" -" may retrieve the channel identity from the old server/hub via the network " -"or provide an export file." -msgstr "Bruk dette skjemaet for å importere en eksisterende kanal fra en annen tjener/hub. Du kan hente inn kanalidentiteten fra den gamle tjeneren/huben via nettverket eller ved å bruke en eksportfil." - -#: ../../Zotlabs/Module/Import.php:549 -#: ../../Zotlabs/Module/Import_items.php:121 -msgid "File to Upload" -msgstr "Fil som skal lastes opp" - -#: ../../Zotlabs/Module/Import.php:550 -msgid "Or provide the old server/hub details" -msgstr "Eller oppgi detaljene fra den gamle tjeneren/hub-en" - -#: ../../Zotlabs/Module/Import.php:551 -msgid "Your old identity address (xyz@example.com)" -msgstr "Din gamle identitetsadresse (xyz@example.com)" - -#: ../../Zotlabs/Module/Import.php:552 -msgid "Your old login email address" -msgstr "Din gamle innloggings e-postadresse" - -#: ../../Zotlabs/Module/Import.php:553 -msgid "Your old login password" -msgstr "Ditt gamle innloggingspassord" - -#: ../../Zotlabs/Module/Import.php:554 -msgid "" -"For either option, please choose whether to make this hub your new primary " -"address, or whether your old location should continue this role. You will be" -" able to post from either location, but only one can be marked as the " -"primary location for files, photos, and media." -msgstr "Enten du tar det ene eller det andre valget, vennligst angi om du vil at denne hubben skal være din nye primære adresse, eller om din gamle plassering skal fortsette å ha denne rollen. Du kan lage innlegg fra den ene eller den andre plasseringen, men bare en av dem kan markeres som den primære plasseringen for filer, bilder og media." - -#: ../../Zotlabs/Module/Import.php:555 -msgid "Make this hub my primary location" -msgstr "Gjør dette nettstedet til min primære plassering" - -#: ../../Zotlabs/Module/Import.php:556 -msgid "" -"Import existing posts if possible (experimental - limited by available " -"memory" -msgstr "Importer eksisterende innlegg om mulig (eksperimentelt - begrenset av tilgjengelig minne)" - -#: ../../Zotlabs/Module/Import.php:557 -msgid "" -"This process may take several minutes to complete. Please submit the form " -"only once and leave this page open until finished." -msgstr "Denne prosessen kan ta flere minutter å fullføre. Vennligst send inn dette skjemaet bare en gang og la siden være åpen inntil den er ferdig." - -#: ../../Zotlabs/Module/Home.php:74 ../../Zotlabs/Module/Home.php:82 -#: ../../Zotlabs/Module/Siteinfo.php:48 -msgid "$Projectname" -msgstr "$Projectname" - -#: ../../Zotlabs/Module/Home.php:92 -#, php-format -msgid "Welcome to %s" -msgstr "Velkommen til %s" - -#: ../../Zotlabs/Module/Item.php:179 -msgid "Unable to locate original post." -msgstr "Ikke i stand til å finne opprinnelig innlegg." - -#: ../../Zotlabs/Module/Item.php:432 -msgid "Empty post discarded." -msgstr "Tomt innlegg forkastet." - -#: ../../Zotlabs/Module/Item.php:472 -msgid "Executable content type not permitted to this channel." -msgstr "Kjørbar innholdstype er ikke tillat for denne kanalen." - -#: ../../Zotlabs/Module/Item.php:856 -msgid "Duplicate post suppressed." -msgstr "Duplikat av innlegg forhindret." - -#: ../../Zotlabs/Module/Item.php:989 -msgid "System error. Post not saved." -msgstr "Systemfeil. Innlegg ble ikke lagret." - -#: ../../Zotlabs/Module/Item.php:1242 -msgid "Unable to obtain post information from database." -msgstr "Ikke i stand til å få tak i informasjon om innlegg fra databasen." - -#: ../../Zotlabs/Module/Item.php:1249 -#, php-format -msgid "You have reached your limit of %1$.0f top level posts." -msgstr "Du har nådd din grense på %1$.0f startinnlegg." - -#: ../../Zotlabs/Module/Item.php:1256 -#, php-format -msgid "You have reached your limit of %1$.0f webpages." -msgstr "Du har nådd din grense på %1$.0f websider." - -#: ../../Zotlabs/Module/Photos.php:82 -msgid "Page owner information could not be retrieved." -msgstr "Informasjon om sideeier kunne ikke hentes." - -#: ../../Zotlabs/Module/Photos.php:97 ../../Zotlabs/Module/Photos.php:741 -#: ../../Zotlabs/Module/Profile_photo.php:115 -#: ../../Zotlabs/Module/Profile_photo.php:212 -#: ../../Zotlabs/Module/Profile_photo.php:311 -#: ../../include/photo/photo_driver.php:718 -msgid "Profile Photos" -msgstr "Profilbilder" - -#: ../../Zotlabs/Module/Photos.php:103 ../../Zotlabs/Module/Photos.php:147 -msgid "Album not found." -msgstr "Albumet ble ikke funnet." - -#: ../../Zotlabs/Module/Photos.php:130 -msgid "Delete Album" -msgstr "Slett album" - -#: ../../Zotlabs/Module/Photos.php:151 -msgid "" -"Multiple storage folders exist with this album name, but within different " -"directories. Please remove the desired folder or folders using the Files " -"manager" -msgstr "Flere lagringsmapper finnes med dette albumnavnet, men i ulike mapper. Vennligst fjern den ønskede mappen eller mappene med filbehandleren." - -#: ../../Zotlabs/Module/Photos.php:208 ../../Zotlabs/Module/Photos.php:1051 -msgid "Delete Photo" -msgstr "Slett bilde" - -#: ../../Zotlabs/Module/Photos.php:531 -msgid "No photos selected" -msgstr "Ingen bilder valgt" - -#: ../../Zotlabs/Module/Photos.php:580 -msgid "Access to this item is restricted." -msgstr "Tilgang til dette elementet er begrenset." - -#: ../../Zotlabs/Module/Photos.php:619 -#, php-format -msgid "%1$.2f MB of %2$.2f MB photo storage used." -msgstr "%1$.2f MB av %2$.2f MB lagringsplass til bilder er brukt." - -#: ../../Zotlabs/Module/Photos.php:622 -#, php-format -msgid "%1$.2f MB photo storage used." -msgstr "%1$.2f MB lagringsplass til bilder er brukt." - -#: ../../Zotlabs/Module/Photos.php:658 -msgid "Upload Photos" -msgstr "Last opp bilder" - -#: ../../Zotlabs/Module/Photos.php:662 -msgid "Enter an album name" -msgstr "Skriv et albumnavn" - -#: ../../Zotlabs/Module/Photos.php:663 -msgid "or select an existing album (doubleclick)" -msgstr "eller velg et eksisterende album (dobbeltklikk)" - -#: ../../Zotlabs/Module/Photos.php:664 -msgid "Create a status post for this upload" -msgstr "Lag et statusinnlegg for denne opplastingen" - -#: ../../Zotlabs/Module/Photos.php:665 -msgid "Caption (optional):" -msgstr "Bildetekst (valgfritt):" - -#: ../../Zotlabs/Module/Photos.php:666 -msgid "Description (optional):" -msgstr "Beskrivelse (valgfritt):" - -#: ../../Zotlabs/Module/Photos.php:693 -msgid "Album name could not be decoded" -msgstr "Albumnavnet kunne ikke dekodes" - -#: ../../Zotlabs/Module/Photos.php:741 -msgid "Contact Photos" -msgstr "Kontaktbilder" - -#: ../../Zotlabs/Module/Photos.php:764 -msgid "Show Newest First" -msgstr "Vis nyeste først" - -#: ../../Zotlabs/Module/Photos.php:766 -msgid "Show Oldest First" -msgstr "Vis eldste først" - -#: ../../Zotlabs/Module/Photos.php:790 ../../Zotlabs/Module/Photos.php:1329 -#: ../../Zotlabs/Module/Embedphotos.php:141 ../../include/widgets.php:1593 -msgid "View Photo" -msgstr "Vis foto" - -#: ../../Zotlabs/Module/Photos.php:821 -#: ../../Zotlabs/Module/Embedphotos.php:157 ../../include/widgets.php:1610 -msgid "Edit Album" -msgstr "Endre album" - -#: ../../Zotlabs/Module/Photos.php:868 -msgid "Permission denied. Access to this item may be restricted." -msgstr "Tillatelse avvist. Tilgang til dette elementet kan være begrenset." - -#: ../../Zotlabs/Module/Photos.php:870 -msgid "Photo not available" -msgstr "Bilde er utilgjengelig" - -#: ../../Zotlabs/Module/Photos.php:928 -msgid "Use as profile photo" -msgstr "Bruk som profilbilde" - -#: ../../Zotlabs/Module/Photos.php:929 -msgid "Use as cover photo" -msgstr "Bruk som forsidebilde" - -#: ../../Zotlabs/Module/Photos.php:936 -msgid "Private Photo" -msgstr "Privat bilde" - -#: ../../Zotlabs/Module/Photos.php:951 -msgid "View Full Size" -msgstr "Vis i full størrelse" - -#: ../../Zotlabs/Module/Photos.php:996 ../../Zotlabs/Module/Admin.php:1437 -#: ../../Zotlabs/Module/Tagrm.php:137 -msgid "Remove" -msgstr "Fjern" - -#: ../../Zotlabs/Module/Photos.php:1030 -msgid "Edit photo" -msgstr "Endre bilde" - -#: ../../Zotlabs/Module/Photos.php:1032 -msgid "Rotate CW (right)" -msgstr "Roter med klokka (mot høyre)" - -#: ../../Zotlabs/Module/Photos.php:1033 -msgid "Rotate CCW (left)" -msgstr "Roter mot klokka (venstre)" - -#: ../../Zotlabs/Module/Photos.php:1036 -msgid "Enter a new album name" -msgstr "Skriv et nytt albumnavn" - -#: ../../Zotlabs/Module/Photos.php:1037 -msgid "or select an existing one (doubleclick)" -msgstr "eller velg et eksisterende album (dobbeltklikk)" - -#: ../../Zotlabs/Module/Photos.php:1040 -msgid "Caption" -msgstr "Overskrift" - -#: ../../Zotlabs/Module/Photos.php:1042 -msgid "Add a Tag" -msgstr "Legg til merkelapp" - -#: ../../Zotlabs/Module/Photos.php:1046 -msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" -msgstr "Eksempel: @bob, @Barbara_Jensen, @jim@example.com" - -#: ../../Zotlabs/Module/Photos.php:1049 -msgid "Flag as adult in album view" -msgstr "Flag som voksent i albumvisning" - -#: ../../Zotlabs/Module/Photos.php:1068 ../../Zotlabs/Lib/ThreadItem.php:261 -msgid "I like this (toggle)" -msgstr "Jeg liker dette (skru av og på)" - -#: ../../Zotlabs/Module/Photos.php:1069 ../../Zotlabs/Lib/ThreadItem.php:262 -msgid "I don't like this (toggle)" -msgstr "Jeg liker ikke dette (skru av og på)" - -#: ../../Zotlabs/Module/Photos.php:1071 ../../Zotlabs/Lib/ThreadItem.php:397 -#: ../../include/conversation.php:743 -msgid "Please wait" -msgstr "Vennligst vent" - -#: ../../Zotlabs/Module/Photos.php:1087 ../../Zotlabs/Module/Photos.php:1205 -#: ../../Zotlabs/Lib/ThreadItem.php:707 -msgid "This is you" -msgstr "Dette er deg" - -#: ../../Zotlabs/Module/Photos.php:1089 ../../Zotlabs/Module/Photos.php:1207 -#: ../../Zotlabs/Lib/ThreadItem.php:709 ../../include/js_strings.php:6 -msgid "Comment" -msgstr "Kommentar" - -#: ../../Zotlabs/Module/Photos.php:1105 ../../include/conversation.php:577 -msgctxt "title" -msgid "Likes" -msgstr "Liker" - -#: ../../Zotlabs/Module/Photos.php:1105 ../../include/conversation.php:577 -msgctxt "title" -msgid "Dislikes" -msgstr "Liker ikke" - -#: ../../Zotlabs/Module/Photos.php:1106 ../../include/conversation.php:578 -msgctxt "title" -msgid "Agree" -msgstr "Enig" - -#: ../../Zotlabs/Module/Photos.php:1106 ../../include/conversation.php:578 -msgctxt "title" -msgid "Disagree" -msgstr "Uenig" - -#: ../../Zotlabs/Module/Photos.php:1106 ../../include/conversation.php:578 -msgctxt "title" -msgid "Abstain" -msgstr "Avstår" - -#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:579 -msgctxt "title" -msgid "Attending" -msgstr "Deltar" - -#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:579 -msgctxt "title" -msgid "Not attending" -msgstr "Deltar ikke" - -#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:579 -msgctxt "title" -msgid "Might attend" -msgstr "Deltar kanskje" - -#: ../../Zotlabs/Module/Photos.php:1124 ../../Zotlabs/Module/Photos.php:1136 -#: ../../Zotlabs/Lib/ThreadItem.php:181 ../../Zotlabs/Lib/ThreadItem.php:193 -#: ../../include/conversation.php:1738 -msgid "View all" -msgstr "Vis alle" - -#: ../../Zotlabs/Module/Photos.php:1128 ../../Zotlabs/Lib/ThreadItem.php:185 -#: ../../include/taxonomy.php:403 ../../include/channel.php:1198 -#: ../../include/conversation.php:1762 -msgctxt "noun" -msgid "Like" -msgid_plural "Likes" -msgstr[0] "Liker" -msgstr[1] "Liker" - -#: ../../Zotlabs/Module/Photos.php:1133 ../../Zotlabs/Lib/ThreadItem.php:190 -#: ../../include/conversation.php:1765 -msgctxt "noun" -msgid "Dislike" -msgid_plural "Dislikes" -msgstr[0] "Liker ikke" -msgstr[1] "Liker ikke" - -#: ../../Zotlabs/Module/Photos.php:1233 -msgid "Photo Tools" -msgstr "Fotoverktøy" - -#: ../../Zotlabs/Module/Photos.php:1242 -msgid "In This Photo:" -msgstr "I dette bildet:" - -#: ../../Zotlabs/Module/Photos.php:1247 -msgid "Map" -msgstr "Kart" - -#: ../../Zotlabs/Module/Photos.php:1255 ../../Zotlabs/Lib/ThreadItem.php:386 -msgctxt "noun" -msgid "Likes" -msgstr "Liker" - -#: ../../Zotlabs/Module/Photos.php:1256 ../../Zotlabs/Lib/ThreadItem.php:387 -msgctxt "noun" -msgid "Dislikes" -msgstr "Liker ikke" - -#: ../../Zotlabs/Module/Photos.php:1261 ../../Zotlabs/Lib/ThreadItem.php:392 -#: ../../include/acl_selectors.php:283 -msgid "Close" -msgstr "Lukk" - -#: ../../Zotlabs/Module/Photos.php:1335 -msgid "View Album" -msgstr "Vis album" - -#: ../../Zotlabs/Module/Photos.php:1346 ../../Zotlabs/Module/Photos.php:1359 -#: ../../Zotlabs/Module/Photos.php:1360 -msgid "Recent Photos" -msgstr "Nye bilder" - -#: ../../Zotlabs/Module/Lockview.php:75 -msgid "Remote privacy information not available." -msgstr "Ekstern personverninformasjon er ikke tilgjengelig." - -#: ../../Zotlabs/Module/Lockview.php:96 -msgid "Visible to:" -msgstr "Synlig for:" - -#: ../../Zotlabs/Module/Import_items.php:104 +#: ../../Zotlabs/Module/Import_items.php:102 msgid "Import completed" msgstr "Import ferdig" -#: ../../Zotlabs/Module/Import_items.php:119 +#: ../../Zotlabs/Module/Import_items.php:117 msgid "Import Items" msgstr "Importer elementer" -#: ../../Zotlabs/Module/Import_items.php:120 +#: ../../Zotlabs/Module/Import_items.php:118 msgid "" "Use this form to import existing posts and content from an export file." msgstr "Bruk dette skjemaet for å importere eksisterende innlegg og innhold fra en eksportfil." @@ -2893,7 +2146,7 @@ msgstr "Send invitasjoner" msgid "Enter email addresses, one per line:" msgstr "Skriv e-postadresser, en per linje:" -#: ../../Zotlabs/Module/Invite.php:135 ../../Zotlabs/Module/Mail.php:241 +#: ../../Zotlabs/Module/Invite.php:135 ../../Zotlabs/Module/Mail.php:249 msgid "Your message:" msgstr "Din melding:" @@ -2922,6 +2175,14 @@ msgstr "eller besøke" msgid "3. Click [Connect]" msgstr "3. Klikk [Forbindelse]" +#: ../../Zotlabs/Module/Lockview.php:61 +msgid "Remote privacy information not available." +msgstr "Ekstern personverninformasjon er ikke tilgjengelig." + +#: ../../Zotlabs/Module/Lockview.php:82 +msgid "Visible to:" +msgstr "Synlig for:" + #: ../../Zotlabs/Module/Locs.php:25 ../../Zotlabs/Module/Locs.php:54 msgid "Location not found." msgstr "Plassering er ikke funnet." @@ -2948,9 +2209,14 @@ msgstr "Ingen plasseringer ble funnet." msgid "Manage Channel Locations" msgstr "Håndter kanalplasseringer" +#: ../../Zotlabs/Module/Locs.php:118 ../../Zotlabs/Module/Profiles.php:470 +#: ../../Zotlabs/Module/Admin.php:1224 +msgid "Address" +msgstr "Adresse" + #: ../../Zotlabs/Module/Locs.php:119 msgid "Primary" -msgstr "Hoved" +msgstr "" #: ../../Zotlabs/Module/Locs.php:120 ../../Zotlabs/Module/Menu.php:113 msgid "Drop" @@ -2958,7 +2224,7 @@ msgstr "Slett" #: ../../Zotlabs/Module/Locs.php:122 msgid "Sync Now" -msgstr "Synkroniser nå" +msgstr "" #: ../../Zotlabs/Module/Locs.php:123 msgid "Please wait several minutes between consecutive operations." @@ -2990,87 +2256,87 @@ msgstr "Ikke i stand til å kommunisere med forespurt kanal." msgid "Cannot verify requested channel." msgstr "Kan ikke bekrefte forespurt kanal." -#: ../../Zotlabs/Module/Mail.php:70 +#: ../../Zotlabs/Module/Mail.php:78 msgid "Selected channel has private message restrictions. Send failed." msgstr "Valgt kanal har restriksjoner for private meldinger. Sending feilet." -#: ../../Zotlabs/Module/Mail.php:135 +#: ../../Zotlabs/Module/Mail.php:143 msgid "Messages" msgstr "Meldinger" -#: ../../Zotlabs/Module/Mail.php:170 +#: ../../Zotlabs/Module/Mail.php:178 msgid "Message recalled." msgstr "Innlegg tilbakekalt." -#: ../../Zotlabs/Module/Mail.php:183 +#: ../../Zotlabs/Module/Mail.php:191 msgid "Conversation removed." msgstr "Samtale fjernet." -#: ../../Zotlabs/Module/Mail.php:198 ../../Zotlabs/Module/Mail.php:307 +#: ../../Zotlabs/Module/Mail.php:206 ../../Zotlabs/Module/Mail.php:315 msgid "Expires YYYY-MM-DD HH:MM" msgstr "Utløper YYYY-MM-DD HH:MM" -#: ../../Zotlabs/Module/Mail.php:226 +#: ../../Zotlabs/Module/Mail.php:234 msgid "Requested channel is not in this network" msgstr "Forespurt kanal er ikke tilgjengelig i dette nettverket." -#: ../../Zotlabs/Module/Mail.php:234 +#: ../../Zotlabs/Module/Mail.php:242 msgid "Send Private Message" msgstr "Send privat melding" -#: ../../Zotlabs/Module/Mail.php:235 ../../Zotlabs/Module/Mail.php:360 +#: ../../Zotlabs/Module/Mail.php:243 ../../Zotlabs/Module/Mail.php:368 msgid "To:" msgstr "Til:" -#: ../../Zotlabs/Module/Mail.php:238 ../../Zotlabs/Module/Mail.php:362 +#: ../../Zotlabs/Module/Mail.php:246 ../../Zotlabs/Module/Mail.php:370 msgid "Subject:" msgstr "Emne:" -#: ../../Zotlabs/Module/Mail.php:243 ../../Zotlabs/Module/Mail.php:368 -#: ../../include/conversation.php:1231 +#: ../../Zotlabs/Module/Mail.php:251 ../../Zotlabs/Module/Mail.php:376 +#: ../../include/conversation.php:1220 msgid "Attach file" msgstr "Legg ved fil" -#: ../../Zotlabs/Module/Mail.php:245 +#: ../../Zotlabs/Module/Mail.php:253 msgid "Send" msgstr "Send" -#: ../../Zotlabs/Module/Mail.php:248 ../../Zotlabs/Module/Mail.php:373 -#: ../../include/conversation.php:1266 +#: ../../Zotlabs/Module/Mail.php:256 ../../Zotlabs/Module/Mail.php:381 +#: ../../include/conversation.php:1251 msgid "Set expiration date" msgstr "Angi utløpsdato" -#: ../../Zotlabs/Module/Mail.php:332 +#: ../../Zotlabs/Module/Mail.php:340 msgid "Delete message" msgstr "Slett melding" -#: ../../Zotlabs/Module/Mail.php:333 +#: ../../Zotlabs/Module/Mail.php:341 msgid "Delivery report" msgstr "Leveringsrapport" -#: ../../Zotlabs/Module/Mail.php:334 +#: ../../Zotlabs/Module/Mail.php:342 msgid "Recall message" msgstr "Tilbakekall innlegg" -#: ../../Zotlabs/Module/Mail.php:336 +#: ../../Zotlabs/Module/Mail.php:344 msgid "Message has been recalled." msgstr "Innlegget har blitt tilbakekalt." -#: ../../Zotlabs/Module/Mail.php:353 +#: ../../Zotlabs/Module/Mail.php:361 msgid "Delete Conversation" msgstr "Slett samtale" -#: ../../Zotlabs/Module/Mail.php:355 +#: ../../Zotlabs/Module/Mail.php:363 msgid "" "No secure communications available. You may be able to " "respond from the sender's profile page." msgstr "Ingen sikret kommunikasjon tilgjengelig. Du kan muligens greie å svare via senderens profilside." -#: ../../Zotlabs/Module/Mail.php:359 +#: ../../Zotlabs/Module/Mail.php:367 msgid "Send Reply" msgstr "Send svar" -#: ../../Zotlabs/Module/Mail.php:364 +#: ../../Zotlabs/Module/Mail.php:372 #, php-format msgid "Your message for %s (%s):" msgstr "Din melding til %s (%s):" @@ -3085,8 +2351,8 @@ msgstr "Du har laget %1$.0f av %2$.0f tillatte kanaler." msgid "Create a new channel" msgstr "Lag en ny kanal" -#: ../../Zotlabs/Module/Manage.php:164 ../../Zotlabs/Lib/Apps.php:214 -#: ../../include/nav.php:208 +#: ../../Zotlabs/Module/Manage.php:164 ../../Zotlabs/Lib/Apps.php:213 +#: ../../include/nav.php:206 msgid "Channel Manager" msgstr "Kanalstyring" @@ -3118,7 +2384,80 @@ msgstr "%d nye introduksjoner" #: ../../Zotlabs/Module/Manage.php:175 msgid "Delegated Channel" -msgstr "Delegert kanal" +msgstr "" + +#: ../../Zotlabs/Module/Lostpass.php:19 +msgid "No valid account found." +msgstr "Ingen gyldig konto funnet." + +#: ../../Zotlabs/Module/Lostpass.php:33 +msgid "Password reset request issued. Check your email." +msgstr "Forespørsel om å tilbakestille passord er mottatt. Sjekk e-posten din." + +#: ../../Zotlabs/Module/Lostpass.php:39 ../../Zotlabs/Module/Lostpass.php:107 +#, php-format +msgid "Site Member (%s)" +msgstr "Nettstedsmedlem (%s)" + +#: ../../Zotlabs/Module/Lostpass.php:44 +#, php-format +msgid "Password reset requested at %s" +msgstr "Forespurt om å tilbakestille passord hos %s" + +#: ../../Zotlabs/Module/Lostpass.php:67 +msgid "" +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." +msgstr "Forespørsel kunne ikke bekreftes. (Du kan ha sendt den inn tidligere.) Tilbakestilling av passord mislyktes." + +#: ../../Zotlabs/Module/Lostpass.php:90 ../../boot.php:1711 +msgid "Password Reset" +msgstr "Tilbakestill passord" + +#: ../../Zotlabs/Module/Lostpass.php:91 +msgid "Your password has been reset as requested." +msgstr "Ditt passord har blitt tilbakestilt som forespurt." + +#: ../../Zotlabs/Module/Lostpass.php:92 +msgid "Your new password is" +msgstr "Ditt nye passord er" + +#: ../../Zotlabs/Module/Lostpass.php:93 +msgid "Save or copy your new password - and then" +msgstr "Lagre eller kopier ditt nye passord, og deretter kan du" + +#: ../../Zotlabs/Module/Lostpass.php:94 +msgid "click here to login" +msgstr "klikke her for å logge inn" + +#: ../../Zotlabs/Module/Lostpass.php:95 +msgid "" +"Your password may be changed from the Settings page after " +"successful login." +msgstr "Ditt passord kan endres på siden Innstillinger etter vellykket innlogging." + +#: ../../Zotlabs/Module/Lostpass.php:112 +#, php-format +msgid "Your password has changed at %s" +msgstr "Ditt passord er endret hos %s" + +#: ../../Zotlabs/Module/Lostpass.php:127 +msgid "Forgot your Password?" +msgstr "Glemt passord ditt?" + +#: ../../Zotlabs/Module/Lostpass.php:128 +msgid "" +"Enter your email address and submit to have your password reset. Then check " +"your email for further instructions." +msgstr "Skriv e-postadressen din og send inn for å tilbakestille passordet ditt. Sjekk deretter din e-post for videre instruksjoner." + +#: ../../Zotlabs/Module/Lostpass.php:129 +msgid "Email Address" +msgstr "E-postadresse" + +#: ../../Zotlabs/Module/Lostpass.php:130 +msgid "Reset" +msgstr "Tilbakestill" #: ../../Zotlabs/Module/Menu.php:49 msgid "Unable to update menu." @@ -3156,7 +2495,7 @@ msgstr "Menyen kan brukes til å lagre lagrede bokmerker" msgid "Submit and proceed" msgstr "Send inn og fortsett" -#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2239 +#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2266 msgid "Menus" msgstr "Menyer" @@ -3217,86 +2556,13 @@ msgstr "Tillat bokmerker" msgid "Not found." msgstr "Ikke funnet." -#: ../../Zotlabs/Module/Lostpass.php:19 -msgid "No valid account found." -msgstr "Ingen gyldig konto funnet." - -#: ../../Zotlabs/Module/Lostpass.php:33 -msgid "Password reset request issued. Check your email." -msgstr "Forespørsel om å tilbakestille passord er mottatt. Sjekk e-posten din." - -#: ../../Zotlabs/Module/Lostpass.php:39 ../../Zotlabs/Module/Lostpass.php:107 -#, php-format -msgid "Site Member (%s)" -msgstr "Nettstedsmedlem (%s)" - -#: ../../Zotlabs/Module/Lostpass.php:44 -#, php-format -msgid "Password reset requested at %s" -msgstr "Forespurt om å tilbakestille passord hos %s" - -#: ../../Zotlabs/Module/Lostpass.php:67 -msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." -msgstr "Forespørsel kunne ikke bekreftes. (Du kan ha sendt den inn tidligere.) Tilbakestilling av passord mislyktes." - -#: ../../Zotlabs/Module/Lostpass.php:90 ../../boot.php:1712 -msgid "Password Reset" -msgstr "Tilbakestill passord" - -#: ../../Zotlabs/Module/Lostpass.php:91 -msgid "Your password has been reset as requested." -msgstr "Ditt passord har blitt tilbakestilt som forespurt." - -#: ../../Zotlabs/Module/Lostpass.php:92 -msgid "Your new password is" -msgstr "Ditt nye passord er" - -#: ../../Zotlabs/Module/Lostpass.php:93 -msgid "Save or copy your new password - and then" -msgstr "Lagre eller kopier ditt nye passord, og deretter kan du" - -#: ../../Zotlabs/Module/Lostpass.php:94 -msgid "click here to login" -msgstr "klikke her for å logge inn" - -#: ../../Zotlabs/Module/Lostpass.php:95 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." -msgstr "Ditt passord kan endres på siden Innstillinger etter vellykket innlogging." - -#: ../../Zotlabs/Module/Lostpass.php:112 -#, php-format -msgid "Your password has changed at %s" -msgstr "Ditt passord er endret hos %s" - -#: ../../Zotlabs/Module/Lostpass.php:127 -msgid "Forgot your Password?" -msgstr "Glemt passord ditt?" - -#: ../../Zotlabs/Module/Lostpass.php:128 -msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." -msgstr "Skriv e-postadressen din og send inn for å tilbakestille passordet ditt. Sjekk deretter din e-post for videre instruksjoner." - -#: ../../Zotlabs/Module/Lostpass.php:129 -msgid "Email Address" -msgstr "E-postadresse" - -#: ../../Zotlabs/Module/Lostpass.php:130 -msgid "Reset" -msgstr "Tilbakestill" - #: ../../Zotlabs/Module/Mood.php:67 ../../include/conversation.php:260 #, php-format msgctxt "mood" msgid "%1$s is %2$s" msgstr "%1$s er %2$s" -#: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Lib/Apps.php:227 +#: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Lib/Apps.php:225 msgid "Mood" msgstr "Stemning" @@ -3304,44 +2570,6 @@ msgstr "Stemning" msgid "Set your current mood and tell your friends" msgstr "Angi ditt nåværende humør og fortell dine venner" -#: ../../Zotlabs/Module/Network.php:94 -msgid "No such group" -msgstr "Gruppen finnes ikke" - -#: ../../Zotlabs/Module/Network.php:134 -msgid "No such channel" -msgstr "Ingen slik kanal" - -#: ../../Zotlabs/Module/Network.php:139 -msgid "forum" -msgstr "forum" - -#: ../../Zotlabs/Module/Network.php:151 -msgid "Search Results For:" -msgstr "Søkeresultat for:" - -#: ../../Zotlabs/Module/Network.php:215 -msgid "Privacy group is empty" -msgstr "Personverngruppen er tom" - -#: ../../Zotlabs/Module/Network.php:224 -msgid "Privacy group: " -msgstr "Personverngruppe:" - -#: ../../Zotlabs/Module/Network.php:250 -msgid "Invalid connection." -msgstr "Ugyldig forbindelse." - -#: ../../Zotlabs/Module/Notify.php:57 -#: ../../Zotlabs/Module/Notifications.php:98 -msgid "No more system notifications." -msgstr "Ingen flere systemvarsler." - -#: ../../Zotlabs/Module/Notify.php:61 -#: ../../Zotlabs/Module/Notifications.php:102 -msgid "System Notifications" -msgstr "Systemvarsler" - #: ../../Zotlabs/Module/Match.php:26 msgid "Profile Match" msgstr "Profiltreff" @@ -3358,17 +2586,43 @@ msgstr "er interessert i:" msgid "No matches" msgstr "Ingen treff" -#: ../../Zotlabs/Module/Channel.php:40 -msgid "Posts and comments" -msgstr "Innlegg og kommentarer" +#: ../../Zotlabs/Module/Network.php:96 +msgid "No such group" +msgstr "Gruppen finnes ikke" -#: ../../Zotlabs/Module/Channel.php:41 -msgid "Only posts" -msgstr "Bare innlegg" +#: ../../Zotlabs/Module/Network.php:136 +msgid "No such channel" +msgstr "Ingen slik kanal" -#: ../../Zotlabs/Module/Channel.php:101 -msgid "Insufficient permissions. Request redirected to profile page." -msgstr "Utilstrekkelig tillatelse. Forespørsel omdirigert til profilsiden." +#: ../../Zotlabs/Module/Network.php:141 +msgid "forum" +msgstr "forum" + +#: ../../Zotlabs/Module/Network.php:153 +msgid "Search Results For:" +msgstr "Søkeresultat for:" + +#: ../../Zotlabs/Module/Network.php:217 +msgid "Privacy group is empty" +msgstr "Personverngruppen er tom" + +#: ../../Zotlabs/Module/Network.php:226 +msgid "Privacy group: " +msgstr "Personverngruppe:" + +#: ../../Zotlabs/Module/Network.php:252 +msgid "Invalid connection." +msgstr "Ugyldig forbindelse." + +#: ../../Zotlabs/Module/Notify.php:57 +#: ../../Zotlabs/Module/Notifications.php:98 +msgid "No more system notifications." +msgstr "Ingen flere systemvarsler." + +#: ../../Zotlabs/Module/Notify.php:61 +#: ../../Zotlabs/Module/Notifications.php:102 +msgid "System Notifications" +msgstr "Systemvarsler" #: ../../Zotlabs/Module/Mitem.php:52 msgid "Unable to create element." @@ -3387,7 +2641,7 @@ msgid "Menu Item Permissions" msgstr "Menyelement Tillatelser" #: ../../Zotlabs/Module/Mitem.php:154 ../../Zotlabs/Module/Mitem.php:227 -#: ../../Zotlabs/Module/Settings.php:1163 +#: ../../Zotlabs/Module/Settings.php:1068 msgid "(click to open/close)" msgstr "(klikk for å åpne/lukke)" @@ -3487,6 +2741,845 @@ msgstr "Endre menyelement" msgid "Link text" msgstr "Lenketekst" +#: ../../Zotlabs/Module/New_channel.php:128 +#: ../../Zotlabs/Module/Register.php:231 +msgid "Name or caption" +msgstr "Navn eller overskrift" + +#: ../../Zotlabs/Module/New_channel.php:128 +#: ../../Zotlabs/Module/Register.php:231 +msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\"" +msgstr "Eksempel: \"Ola Nordmann\", \"Lisa og hestene hennes\", \"Fotball\", \"Sykkelgruppa\"" + +#: ../../Zotlabs/Module/New_channel.php:130 +#: ../../Zotlabs/Module/Register.php:233 +msgid "Choose a short nickname" +msgstr "Velg et kort kallenavn" + +#: ../../Zotlabs/Module/New_channel.php:130 +#: ../../Zotlabs/Module/Register.php:233 +#, php-format +msgid "" +"Your nickname will be used to create an easy to remember channel address " +"e.g. nickname%s" +msgstr "Ditt kallenavn brukes til å lage en kanaladresse som er enkel å huske, for eksempel kallenavn%s" + +#: ../../Zotlabs/Module/New_channel.php:132 +#: ../../Zotlabs/Module/Register.php:235 +msgid "Channel role and privacy" +msgstr "Kanalrolle og personvern" + +#: ../../Zotlabs/Module/New_channel.php:132 +#: ../../Zotlabs/Module/Register.php:235 +msgid "Select a channel role with your privacy requirements." +msgstr "Velg en kanalrolle for ditt personvernbehov." + +#: ../../Zotlabs/Module/New_channel.php:132 +#: ../../Zotlabs/Module/Register.php:235 +msgid "Read more about roles" +msgstr "Les mer om roller" + +#: ../../Zotlabs/Module/New_channel.php:135 +msgid "Create Channel" +msgstr "Lag kanal" + +#: ../../Zotlabs/Module/New_channel.php:136 +msgid "" +"A channel is your identity on this network. It can represent a person, a " +"blog, or a forum to name a few. Channels can make connections with other " +"channels to share information with highly detailed permissions." +msgstr "En kanal er din identitet i dette nettverket. Den kan representere en person, en blogg eller et forum for å nevne noe. Kanaler kan ha forbindelser til andre kanaler for å dele informasjon, og med svært detaljerte tillatelser." + +#: ../../Zotlabs/Module/New_channel.php:137 +msgid "" +"or import an existing channel from another location." +msgstr "eller importer en eksisterende kanal fra et annet sted." + +#: ../../Zotlabs/Module/Notifications.php:30 +msgid "Invalid request identifier." +msgstr "Ugyldig forespørselsidentifikator." + +#: ../../Zotlabs/Module/Notifications.php:39 +msgid "Discard" +msgstr "Forkast" + +#: ../../Zotlabs/Module/Notifications.php:103 ../../include/nav.php:191 +msgid "Mark all system notifications seen" +msgstr "Merk alle systemvarsler som sett" + +#: ../../Zotlabs/Module/Photos.php:84 +msgid "Page owner information could not be retrieved." +msgstr "Informasjon om sideeier kunne ikke hentes." + +#: ../../Zotlabs/Module/Photos.php:99 ../../Zotlabs/Module/Photos.php:743 +#: ../../Zotlabs/Module/Profile_photo.php:114 +#: ../../Zotlabs/Module/Profile_photo.php:206 +#: ../../Zotlabs/Module/Profile_photo.php:294 +#: ../../include/photo/photo_driver.php:718 +msgid "Profile Photos" +msgstr "Profilbilder" + +#: ../../Zotlabs/Module/Photos.php:105 ../../Zotlabs/Module/Photos.php:149 +msgid "Album not found." +msgstr "Albumet ble ikke funnet." + +#: ../../Zotlabs/Module/Photos.php:132 +msgid "Delete Album" +msgstr "Slett album" + +#: ../../Zotlabs/Module/Photos.php:153 +msgid "" +"Multiple storage folders exist with this album name, but within different " +"directories. Please remove the desired folder or folders using the Files " +"manager" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:210 ../../Zotlabs/Module/Photos.php:1053 +msgid "Delete Photo" +msgstr "Slett bilde" + +#: ../../Zotlabs/Module/Photos.php:533 +msgid "No photos selected" +msgstr "Ingen bilder valgt" + +#: ../../Zotlabs/Module/Photos.php:582 +msgid "Access to this item is restricted." +msgstr "Tilgang til dette elementet er begrenset." + +#: ../../Zotlabs/Module/Photos.php:621 +#, php-format +msgid "%1$.2f MB of %2$.2f MB photo storage used." +msgstr "%1$.2f MB av %2$.2f MB lagringsplass til bilder er brukt." + +#: ../../Zotlabs/Module/Photos.php:624 +#, php-format +msgid "%1$.2f MB photo storage used." +msgstr "%1$.2f MB lagringsplass til bilder er brukt." + +#: ../../Zotlabs/Module/Photos.php:660 +msgid "Upload Photos" +msgstr "Last opp bilder" + +#: ../../Zotlabs/Module/Photos.php:664 +msgid "Enter an album name" +msgstr "Skriv et albumnavn" + +#: ../../Zotlabs/Module/Photos.php:665 +msgid "or select an existing album (doubleclick)" +msgstr "eller velg et eksisterende album (dobbeltklikk)" + +#: ../../Zotlabs/Module/Photos.php:666 +msgid "Create a status post for this upload" +msgstr "Lag et statusinnlegg for denne opplastingen" + +#: ../../Zotlabs/Module/Photos.php:667 +msgid "Caption (optional):" +msgstr "Bildetekst (valgfritt):" + +#: ../../Zotlabs/Module/Photos.php:668 +msgid "Description (optional):" +msgstr "Beskrivelse (valgfritt):" + +#: ../../Zotlabs/Module/Photos.php:695 +msgid "Album name could not be decoded" +msgstr "Albumnavnet kunne ikke dekodes" + +#: ../../Zotlabs/Module/Photos.php:743 +msgid "Contact Photos" +msgstr "Kontaktbilder" + +#: ../../Zotlabs/Module/Photos.php:766 +msgid "Show Newest First" +msgstr "Vis nyeste først" + +#: ../../Zotlabs/Module/Photos.php:768 +msgid "Show Oldest First" +msgstr "Vis eldste først" + +#: ../../Zotlabs/Module/Photos.php:792 ../../Zotlabs/Module/Photos.php:1331 +#: ../../include/widgets.php:1499 +msgid "View Photo" +msgstr "Vis foto" + +#: ../../Zotlabs/Module/Photos.php:823 ../../include/widgets.php:1516 +msgid "Edit Album" +msgstr "Endre album" + +#: ../../Zotlabs/Module/Photos.php:870 +msgid "Permission denied. Access to this item may be restricted." +msgstr "Tillatelse avvist. Tilgang til dette elementet kan være begrenset." + +#: ../../Zotlabs/Module/Photos.php:872 +msgid "Photo not available" +msgstr "Bilde er utilgjengelig" + +#: ../../Zotlabs/Module/Photos.php:930 +msgid "Use as profile photo" +msgstr "Bruk som profilbilde" + +#: ../../Zotlabs/Module/Photos.php:931 +msgid "Use as cover photo" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:938 +msgid "Private Photo" +msgstr "Privat bilde" + +#: ../../Zotlabs/Module/Photos.php:953 +msgid "View Full Size" +msgstr "Vis i full størrelse" + +#: ../../Zotlabs/Module/Photos.php:998 ../../Zotlabs/Module/Admin.php:1437 +#: ../../Zotlabs/Module/Tagrm.php:137 +msgid "Remove" +msgstr "Fjern" + +#: ../../Zotlabs/Module/Photos.php:1032 +msgid "Edit photo" +msgstr "Endre bilde" + +#: ../../Zotlabs/Module/Photos.php:1034 +msgid "Rotate CW (right)" +msgstr "Roter med klokka (mot høyre)" + +#: ../../Zotlabs/Module/Photos.php:1035 +msgid "Rotate CCW (left)" +msgstr "Roter mot klokka (venstre)" + +#: ../../Zotlabs/Module/Photos.php:1038 +msgid "Enter a new album name" +msgstr "Skriv et nytt albumnavn" + +#: ../../Zotlabs/Module/Photos.php:1039 +msgid "or select an existing one (doubleclick)" +msgstr "eller velg et eksisterende album (dobbeltklikk)" + +#: ../../Zotlabs/Module/Photos.php:1042 +msgid "Caption" +msgstr "Overskrift" + +#: ../../Zotlabs/Module/Photos.php:1044 +msgid "Add a Tag" +msgstr "Legg til merkelapp" + +#: ../../Zotlabs/Module/Photos.php:1048 +msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" +msgstr "Eksempel: @bob, @Barbara_Jensen, @jim@example.com" + +#: ../../Zotlabs/Module/Photos.php:1051 +msgid "Flag as adult in album view" +msgstr "Flag som voksent i albumvisning" + +#: ../../Zotlabs/Module/Photos.php:1070 ../../Zotlabs/Lib/ThreadItem.php:261 +msgid "I like this (toggle)" +msgstr "Jeg liker dette (skru av og på)" + +#: ../../Zotlabs/Module/Photos.php:1071 ../../Zotlabs/Lib/ThreadItem.php:262 +msgid "I don't like this (toggle)" +msgstr "Jeg liker ikke dette (skru av og på)" + +#: ../../Zotlabs/Module/Photos.php:1073 ../../Zotlabs/Lib/ThreadItem.php:397 +#: ../../include/conversation.php:740 +msgid "Please wait" +msgstr "Vennligst vent" + +#: ../../Zotlabs/Module/Photos.php:1089 ../../Zotlabs/Module/Photos.php:1207 +#: ../../Zotlabs/Lib/ThreadItem.php:707 +msgid "This is you" +msgstr "Dette er deg" + +#: ../../Zotlabs/Module/Photos.php:1091 ../../Zotlabs/Module/Photos.php:1209 +#: ../../Zotlabs/Lib/ThreadItem.php:709 ../../include/js_strings.php:6 +msgid "Comment" +msgstr "Kommentar" + +#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:574 +msgctxt "title" +msgid "Likes" +msgstr "Liker" + +#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:574 +msgctxt "title" +msgid "Dislikes" +msgstr "Liker ikke" + +#: ../../Zotlabs/Module/Photos.php:1108 ../../include/conversation.php:575 +msgctxt "title" +msgid "Agree" +msgstr "Enig" + +#: ../../Zotlabs/Module/Photos.php:1108 ../../include/conversation.php:575 +msgctxt "title" +msgid "Disagree" +msgstr "Uenig" + +#: ../../Zotlabs/Module/Photos.php:1108 ../../include/conversation.php:575 +msgctxt "title" +msgid "Abstain" +msgstr "Avstår" + +#: ../../Zotlabs/Module/Photos.php:1109 ../../include/conversation.php:576 +msgctxt "title" +msgid "Attending" +msgstr "Deltar" + +#: ../../Zotlabs/Module/Photos.php:1109 ../../include/conversation.php:576 +msgctxt "title" +msgid "Not attending" +msgstr "Deltar ikke" + +#: ../../Zotlabs/Module/Photos.php:1109 ../../include/conversation.php:576 +msgctxt "title" +msgid "Might attend" +msgstr "Deltar kanskje" + +#: ../../Zotlabs/Module/Photos.php:1126 ../../Zotlabs/Module/Photos.php:1138 +#: ../../Zotlabs/Lib/ThreadItem.php:181 ../../Zotlabs/Lib/ThreadItem.php:193 +#: ../../include/conversation.php:1717 +msgid "View all" +msgstr "Vis alle" + +#: ../../Zotlabs/Module/Photos.php:1130 ../../Zotlabs/Lib/ThreadItem.php:185 +#: ../../include/taxonomy.php:403 ../../include/conversation.php:1741 +#: ../../include/channel.php:1158 +msgctxt "noun" +msgid "Like" +msgid_plural "Likes" +msgstr[0] "Liker" +msgstr[1] "Liker" + +#: ../../Zotlabs/Module/Photos.php:1135 ../../Zotlabs/Lib/ThreadItem.php:190 +#: ../../include/conversation.php:1744 +msgctxt "noun" +msgid "Dislike" +msgid_plural "Dislikes" +msgstr[0] "Liker ikke" +msgstr[1] "Liker ikke" + +#: ../../Zotlabs/Module/Photos.php:1235 +msgid "Photo Tools" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1244 +msgid "In This Photo:" +msgstr "I dette bildet:" + +#: ../../Zotlabs/Module/Photos.php:1249 +msgid "Map" +msgstr "Kart" + +#: ../../Zotlabs/Module/Photos.php:1257 ../../Zotlabs/Lib/ThreadItem.php:386 +msgctxt "noun" +msgid "Likes" +msgstr "Liker" + +#: ../../Zotlabs/Module/Photos.php:1258 ../../Zotlabs/Lib/ThreadItem.php:387 +msgctxt "noun" +msgid "Dislikes" +msgstr "Liker ikke" + +#: ../../Zotlabs/Module/Photos.php:1263 ../../Zotlabs/Lib/ThreadItem.php:392 +#: ../../include/acl_selectors.php:285 +msgid "Close" +msgstr "Lukk" + +#: ../../Zotlabs/Module/Photos.php:1337 +msgid "View Album" +msgstr "Vis album" + +#: ../../Zotlabs/Module/Photos.php:1348 ../../Zotlabs/Module/Photos.php:1361 +#: ../../Zotlabs/Module/Photos.php:1362 +msgid "Recent Photos" +msgstr "Nye bilder" + +#: ../../Zotlabs/Module/Ping.php:265 +msgid "sent you a private message" +msgstr "sendte deg en privat melding" + +#: ../../Zotlabs/Module/Ping.php:313 +msgid "added your channel" +msgstr "la til din kanal" + +#: ../../Zotlabs/Module/Ping.php:323 +msgid "g A l F d" +msgstr "g A l F d" + +#: ../../Zotlabs/Module/Ping.php:346 +msgid "[today]" +msgstr "[idag]" + +#: ../../Zotlabs/Module/Ping.php:355 +msgid "posted an event" +msgstr "la ut en hendelse" + +#: ../../Zotlabs/Module/Oexchange.php:27 +msgid "Unable to find your hub." +msgstr "Ikke i stand til å finne hubben din." + +#: ../../Zotlabs/Module/Oexchange.php:41 +msgid "Post successful." +msgstr "Innlegg vellykket." + +#: ../../Zotlabs/Module/Openid.php:30 +msgid "OpenID protocol error. No ID returned." +msgstr "OpenID protokollfeil. Ingen ID ble returnert." + +#: ../../Zotlabs/Module/Openid.php:193 ../../include/auth.php:226 +msgid "Login failed." +msgstr "Innlogging mislyktes." + +#: ../../Zotlabs/Module/Page.php:133 +msgid "" +"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod " +"tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam," +" quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo " +"consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse " +"cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat " +"non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." +msgstr "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." + +#: ../../Zotlabs/Module/Pconfig.php:26 ../../Zotlabs/Module/Pconfig.php:59 +msgid "This setting requires special processing and editing has been blocked." +msgstr "Denne innstillingen krever spesiell behandling og redigering har blitt blokkert." + +#: ../../Zotlabs/Module/Pconfig.php:48 +msgid "Configuration Editor" +msgstr "Konfigurasjonsbehandler" + +#: ../../Zotlabs/Module/Pconfig.php:49 +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 "Advarsel: kanalen din kan slutte å virke ved endring av enkelte innstillinger. Vennligst forlat denne siden med mindre du er komfortabel med dette og vet hvordan du bruker denne funksjonen riktig." + +#: ../../Zotlabs/Module/Pdledit.php:18 +msgid "Layout updated." +msgstr "Layout er oppdatert." + +#: ../../Zotlabs/Module/Pdledit.php:34 ../../Zotlabs/Module/Pdledit.php:61 +msgid "Edit System Page Description" +msgstr "Endre beskrivelsen av systemsiden" + +#: ../../Zotlabs/Module/Pdledit.php:56 +msgid "Layout not found." +msgstr "Layouten ble ikke funnet." + +#: ../../Zotlabs/Module/Pdledit.php:62 +msgid "Module Name:" +msgstr "Modulnavn:" + +#: ../../Zotlabs/Module/Pdledit.php:63 +msgid "Layout Help" +msgstr "Layout-hjelp" + +#: ../../Zotlabs/Module/Poke.php:168 ../../Zotlabs/Lib/Apps.php:226 +#: ../../include/conversation.php:960 +msgid "Poke" +msgstr "Prikk" + +#: ../../Zotlabs/Module/Poke.php:169 +msgid "Poke somebody" +msgstr "Dult noen" + +#: ../../Zotlabs/Module/Poke.php:172 +msgid "Poke/Prod" +msgstr "Prikke/oppildne" + +#: ../../Zotlabs/Module/Poke.php:173 +msgid "Poke, prod or do other things to somebody" +msgstr "Dult, prikk eller gjør andre ting med noen" + +#: ../../Zotlabs/Module/Poke.php:180 +msgid "Recipient" +msgstr "Mottaker" + +#: ../../Zotlabs/Module/Poke.php:181 +msgid "Choose what you wish to do to recipient" +msgstr "Velg hva du ønsker å gjøre med mottakeren" + +#: ../../Zotlabs/Module/Poke.php:184 ../../Zotlabs/Module/Poke.php:185 +msgid "Make this post private" +msgstr "Gjør dette innlegget privat" + +#: ../../Zotlabs/Module/Probe.php:30 ../../Zotlabs/Module/Probe.php:34 +#, php-format +msgid "Fetching URL returns error: %1$s" +msgstr "Henting av URL gir følgende feil: %1$s" + +#: ../../Zotlabs/Module/Profiles.php:24 ../../Zotlabs/Module/Profiles.php:189 +#: ../../Zotlabs/Module/Profiles.php:246 ../../Zotlabs/Module/Profiles.php:625 +msgid "Profile not found." +msgstr "Profilen ble ikke funnet." + +#: ../../Zotlabs/Module/Profiles.php:44 +msgid "Profile deleted." +msgstr "Profilen er slettet." + +#: ../../Zotlabs/Module/Profiles.php:68 ../../Zotlabs/Module/Profiles.php:104 +msgid "Profile-" +msgstr "Profil-" + +#: ../../Zotlabs/Module/Profiles.php:89 ../../Zotlabs/Module/Profiles.php:132 +msgid "New profile created." +msgstr "Ny profil opprettet." + +#: ../../Zotlabs/Module/Profiles.php:110 +msgid "Profile unavailable to clone." +msgstr "Profilen er utilgjengelig for klonen." + +#: ../../Zotlabs/Module/Profiles.php:151 +msgid "Profile unavailable to export." +msgstr "Profilen er utilgjengelig for eksport." + +#: ../../Zotlabs/Module/Profiles.php:256 +msgid "Profile Name is required." +msgstr "Profilnavn er påkrevd." + +#: ../../Zotlabs/Module/Profiles.php:427 +msgid "Marital Status" +msgstr "Sivilstand" + +#: ../../Zotlabs/Module/Profiles.php:431 +msgid "Romantic Partner" +msgstr "Romantisk partner" + +#: ../../Zotlabs/Module/Profiles.php:435 ../../Zotlabs/Module/Profiles.php:736 +msgid "Likes" +msgstr "Liker" + +#: ../../Zotlabs/Module/Profiles.php:439 ../../Zotlabs/Module/Profiles.php:737 +msgid "Dislikes" +msgstr "Liker ikke" + +#: ../../Zotlabs/Module/Profiles.php:443 ../../Zotlabs/Module/Profiles.php:744 +msgid "Work/Employment" +msgstr "Arbeid/sysselsetting" + +#: ../../Zotlabs/Module/Profiles.php:446 +msgid "Religion" +msgstr "Religion" + +#: ../../Zotlabs/Module/Profiles.php:450 +msgid "Political Views" +msgstr "Politiske synspunkter" + +#: ../../Zotlabs/Module/Profiles.php:458 +msgid "Sexual Preference" +msgstr "Seksuelle preferanser" + +#: ../../Zotlabs/Module/Profiles.php:462 +msgid "Homepage" +msgstr "Hjemmeside" + +#: ../../Zotlabs/Module/Profiles.php:466 +msgid "Interests" +msgstr "Interesser" + +#: ../../Zotlabs/Module/Profiles.php:560 +msgid "Profile updated." +msgstr "Profilen er oppdatert." + +#: ../../Zotlabs/Module/Profiles.php:644 +msgid "Hide your connections list from viewers of this profile" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:686 +msgid "Edit Profile Details" +msgstr "Endre profildetaljer" + +#: ../../Zotlabs/Module/Profiles.php:688 +msgid "View this profile" +msgstr "Vis denne profilen" + +#: ../../Zotlabs/Module/Profiles.php:689 ../../Zotlabs/Module/Profiles.php:771 +#: ../../include/channel.php:959 +msgid "Edit visibility" +msgstr "Endre synlighet" + +#: ../../Zotlabs/Module/Profiles.php:690 +msgid "Profile Tools" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:691 +msgid "Change cover photo" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:692 ../../include/channel.php:930 +msgid "Change profile photo" +msgstr "Endre profilbilde" + +#: ../../Zotlabs/Module/Profiles.php:693 +msgid "Create a new profile using these settings" +msgstr "Lag en ny profil ved å bruke disse innstillingene" + +#: ../../Zotlabs/Module/Profiles.php:694 +msgid "Clone this profile" +msgstr "Klon denne profilen" + +#: ../../Zotlabs/Module/Profiles.php:695 +msgid "Delete this profile" +msgstr "Slett denne profilen" + +#: ../../Zotlabs/Module/Profiles.php:696 +msgid "Add profile things" +msgstr "Legg til profilting" + +#: ../../Zotlabs/Module/Profiles.php:697 ../../include/widgets.php:105 +#: ../../include/conversation.php:1526 +msgid "Personal" +msgstr "Personlig" + +#: ../../Zotlabs/Module/Profiles.php:699 +msgid "Relation" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:700 ../../include/datetime.php:48 +msgid "Miscellaneous" +msgstr "Forskjellig" + +#: ../../Zotlabs/Module/Profiles.php:702 +msgid "Import profile from file" +msgstr "Importer profil fra fil" + +#: ../../Zotlabs/Module/Profiles.php:703 +msgid "Export profile to file" +msgstr "Eksporter profil til fil" + +#: ../../Zotlabs/Module/Profiles.php:704 +msgid "Your gender" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:705 +msgid "Marital status" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:706 +msgid "Sexual preference" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:709 +msgid "Profile name" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:711 +msgid "This is your default profile." +msgstr "Dette er din standardprofil." + +#: ../../Zotlabs/Module/Profiles.php:713 +msgid "Your full name" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:714 +msgid "Title/Description" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:717 +msgid "Street address" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:718 +msgid "Locality/City" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:719 +msgid "Region/State" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:720 +msgid "Postal/Zip code" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:721 +msgid "Country" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:726 +msgid "Who (if applicable)" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:726 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +msgstr "Eksempler: kari123, Kari Villiamsen, kari@example.com" + +#: ../../Zotlabs/Module/Profiles.php:727 +msgid "Since (date)" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:730 +msgid "Tell us about yourself" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:732 +msgid "Hometown" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:733 +msgid "Political views" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:734 +msgid "Religious views" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:735 +msgid "Keywords used in directory listings" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:735 +msgid "Example: fishing photography software" +msgstr "Eksempel: fisking fotografering programvare" + +#: ../../Zotlabs/Module/Profiles.php:738 +msgid "Musical interests" +msgstr "Musikkinteresser" + +#: ../../Zotlabs/Module/Profiles.php:739 +msgid "Books, literature" +msgstr "Bøker, litteratur" + +#: ../../Zotlabs/Module/Profiles.php:740 +msgid "Television" +msgstr "TV/fjernsyn" + +#: ../../Zotlabs/Module/Profiles.php:741 +msgid "Film/Dance/Culture/Entertainment" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:742 +msgid "Hobbies/Interests" +msgstr "Hobbier/Interesser" + +#: ../../Zotlabs/Module/Profiles.php:743 +msgid "Love/Romance" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:745 +msgid "School/Education" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:746 +msgid "Contact information and social networks" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:747 +msgid "My other channels" +msgstr "Mine andre kanaler" + +#: ../../Zotlabs/Module/Profiles.php:767 ../../include/channel.php:955 +msgid "Profile Image" +msgstr "Profilbilde" + +#: ../../Zotlabs/Module/Profiles.php:777 ../../include/nav.php:88 +#: ../../include/channel.php:937 +msgid "Edit Profiles" +msgstr "Endre profiler" + +#: ../../Zotlabs/Module/Profile_photo.php:179 +msgid "" +"Shift-reload the page or clear browser cache if the new photo does not " +"display immediately." +msgstr "Hold nede Shift-knappen og last siden på nytt eller tøm nettleserens mellomlager hvis det nye bildet ikke vises umiddelbart." + +#: ../../Zotlabs/Module/Profile_photo.php:367 +msgid "Upload Profile Photo" +msgstr "Last opp profilbilde:" + +#: ../../Zotlabs/Module/Profperm.php:34 ../../Zotlabs/Module/Profperm.php:63 +msgid "Invalid profile identifier." +msgstr "Ugyldig profil-identifikator." + +#: ../../Zotlabs/Module/Profperm.php:115 +msgid "Profile Visibility Editor" +msgstr "Endre profilsynlighet" + +#: ../../Zotlabs/Module/Profperm.php:117 ../../include/channel.php:1249 +msgid "Profile" +msgstr "Profil" + +#: ../../Zotlabs/Module/Profperm.php:119 +msgid "Click on a contact to add or remove." +msgstr "Klikk på en kontakt for å legge til eller fjerne." + +#: ../../Zotlabs/Module/Profperm.php:128 +msgid "Visible To" +msgstr "Synlig for" + +#: ../../Zotlabs/Module/Pubsites.php:22 ../../include/widgets.php:1270 +msgid "Public Hubs" +msgstr "Offentlige huber" + +#: ../../Zotlabs/Module/Pubsites.php:25 +msgid "" +"The listed hubs allow public registration for the $Projectname network. All " +"hubs in the network are interlinked so membership on any of them conveys " +"membership in the network as a whole. Some hubs may require subscription or " +"provide tiered service plans. The hub itself may provide " +"additional details." +msgstr "Nettstedene på listen tillater offentlig registrering i $Projectname-nettverket. Alle nettsteder i nettverket er forbundet så medlemskap på enhver av dem formidler medlemskap i nettverket som helhet. Noen nettsteder kan kreve abonnement eller tilby lagdelte tjenesteavtaler. Nettstedene selv kan gi tilleggsopplysninger." + +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Hub URL" +msgstr "Nettstedets URL" + +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Access Type" +msgstr "Tilgangstype" + +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Registration Policy" +msgstr "Retningslinjer for registrering" + +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Stats" +msgstr "" + +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Software" +msgstr "" + +#: ../../Zotlabs/Module/Pubsites.php:31 ../../Zotlabs/Module/Ratings.php:103 +#: ../../include/conversation.php:959 +msgid "Ratings" +msgstr "Vurderinger" + +#: ../../Zotlabs/Module/Pubsites.php:38 +msgid "Rate" +msgstr "Vurder" + +#: ../../Zotlabs/Module/Rate.php:160 +msgid "Website:" +msgstr "Nettsted:" + +#: ../../Zotlabs/Module/Rate.php:163 +#, php-format +msgid "Remote Channel [%s] (not yet known on this site)" +msgstr "Fjerntliggende kanal [%s] (foreløpig ikke kjent på dette nettstedet)" + +#: ../../Zotlabs/Module/Rate.php:164 +msgid "Rating (this information is public)" +msgstr "Vurdering (denne informasjonen er offentlig)" + +#: ../../Zotlabs/Module/Rate.php:165 +msgid "Optionally explain your rating (this information is public)" +msgstr "Velg om du vil forklare din vurdering (denne informasjonen er offentlig)" + +#: ../../Zotlabs/Module/Ratings.php:73 +msgid "No ratings" +msgstr "Ingen vurderinger" + +#: ../../Zotlabs/Module/Ratings.php:104 +msgid "Rating: " +msgstr "Vurdering:" + +#: ../../Zotlabs/Module/Ratings.php:105 +msgid "Website: " +msgstr "Nettsted:" + +#: ../../Zotlabs/Module/Ratings.php:107 +msgid "Description: " +msgstr "Beskrivelse:" + #: ../../Zotlabs/Module/Admin.php:77 msgid "Theme settings updated." msgstr "Temainnstillinger er oppdatert." @@ -3525,7 +3618,7 @@ msgstr "Meldingskøer" #: ../../Zotlabs/Module/Admin.php:236 msgid "Your software should be updated" -msgstr "Programvaren din bør oppdateres" +msgstr "" #: ../../Zotlabs/Module/Admin.php:241 ../../Zotlabs/Module/Admin.php:490 #: ../../Zotlabs/Module/Admin.php:711 ../../Zotlabs/Module/Admin.php:755 @@ -3562,21 +3655,21 @@ msgstr "Versjon" #: ../../Zotlabs/Module/Admin.php:250 msgid "Repository version (master)" -msgstr "Depotversjon (master)" +msgstr "" #: ../../Zotlabs/Module/Admin.php:251 msgid "Repository version (dev)" -msgstr "Depotversjon (dev)" +msgstr "" #: ../../Zotlabs/Module/Admin.php:373 msgid "Site settings updated." msgstr "Nettstedsinnstillinger er oppdatert." -#: ../../Zotlabs/Module/Admin.php:400 ../../include/text.php:2829 +#: ../../Zotlabs/Module/Admin.php:400 ../../include/text.php:2841 msgid "Default" msgstr "Standard" -#: ../../Zotlabs/Module/Admin.php:410 ../../Zotlabs/Module/Settings.php:899 +#: ../../Zotlabs/Module/Admin.php:410 ../../Zotlabs/Module/Settings.php:798 msgid "mobile" msgstr "mobil" @@ -3608,7 +3701,7 @@ msgstr "Mitt nettsted har kun gratis tilgang" msgid "My site offers free accounts with optional paid upgrades" msgstr "Mitt nettsted tilbyr gratis konto med valgfri oppgradering til betalt tjeneste" -#: ../../Zotlabs/Module/Admin.php:491 ../../include/widgets.php:1476 +#: ../../Zotlabs/Module/Admin.php:491 ../../include/widgets.php:1382 msgid "Site" msgstr "Nettsted" @@ -3804,7 +3897,7 @@ msgstr "Importer og gi tilgang til offentlig innhold trukket inn fra andre netts #: ../../Zotlabs/Module/Admin.php:522 msgid "Login on Homepage" -msgstr "Logg inn på hjemmesiden" +msgstr "" #: ../../Zotlabs/Module/Admin.php:522 msgid "" @@ -3814,13 +3907,13 @@ msgstr "Presenter en innloggingsboks til besøkende på hjemmesiden hvis ikke no #: ../../Zotlabs/Module/Admin.php:523 msgid "Enable context help" -msgstr "Skru på kontekstsensitiv hjelp" +msgstr "" #: ../../Zotlabs/Module/Admin.php:523 msgid "" "Display contextual help for the current page when the help button is " "pressed." -msgstr "Vis hjelp for den gjeldende siden når Hjelp-knappen trykkes." +msgstr "" #: ../../Zotlabs/Module/Admin.php:525 msgid "Directory Server URL" @@ -3896,12 +3989,12 @@ msgid "0 for no expiration of imported content" msgstr "0 dersom importert innhold ikke skal utgå" #: ../../Zotlabs/Module/Admin.php:677 ../../Zotlabs/Module/Admin.php:678 -#: ../../Zotlabs/Module/Settings.php:823 +#: ../../Zotlabs/Module/Settings.php:722 msgid "Off" msgstr "Av" #: ../../Zotlabs/Module/Admin.php:677 ../../Zotlabs/Module/Admin.php:678 -#: ../../Zotlabs/Module/Settings.php:823 +#: ../../Zotlabs/Module/Settings.php:722 msgid "On" msgstr "På" @@ -3938,27 +4031,27 @@ msgstr "Tjener" msgid "" "By default, unfiltered HTML is allowed in embedded media. This is inherently" " insecure." -msgstr "Standardinnstillingen er at ufiltrert HTML er tillat ved innebygging av media. Dette er grunnleggende usikkert." +msgstr "" #: ../../Zotlabs/Module/Admin.php:749 msgid "" "The recommended setting is to only allow unfiltered HTML from the following " "sites:" -msgstr "Anbefalt innstilling er å bare tillate ufiltrert HTML fra følgende nettsteder:" +msgstr "" #: ../../Zotlabs/Module/Admin.php:750 msgid "" "https://youtube.com/
https://www.youtube.com/
https://youtu.be/https://vimeo.com/
https://soundcloud.com/
" -msgstr "https://youtube.com/
https://www.youtube.com/
https://youtu.be/
https://vimeo.com/
https://soundcloud.com/
" +msgstr "" #: ../../Zotlabs/Module/Admin.php:751 msgid "" "All other embedded content will be filtered, unless " "embedded content from that site is explicitly blocked." -msgstr "Alt annet innebygget innhold vil bli filtrert, med mindre innebygget innhold fra det nettstedet er eksplisitt blokkert." +msgstr "" -#: ../../Zotlabs/Module/Admin.php:756 ../../include/widgets.php:1479 +#: ../../Zotlabs/Module/Admin.php:756 ../../include/widgets.php:1385 msgid "Security" msgstr "Sikkerhet" @@ -3974,11 +4067,11 @@ msgstr "Kryss av for å blokkere tilgang til alle personlige sider som ellers vi #: ../../Zotlabs/Module/Admin.php:759 msgid "Set \"Transport Security\" HTTP header" -msgstr "Sett HTTP header \"Transport Security\"" +msgstr "" #: ../../Zotlabs/Module/Admin.php:760 msgid "Set \"Content Security Policy\" HTTP header" -msgstr "Sett HTTP header \"Content Security Policy\"" +msgstr "" #: ../../Zotlabs/Module/Admin.php:761 msgid "Allow communications only from these sites" @@ -4010,15 +4103,15 @@ msgstr "Blokker kommunikasjon fra disse kanalene" #: ../../Zotlabs/Module/Admin.php:765 msgid "Only allow embeds from secure (SSL) websites and links." -msgstr "Bare tillat innebygging fra sikrede (SSL) nettsteder og lenker." +msgstr "" #: ../../Zotlabs/Module/Admin.php:766 msgid "Allow unfiltered embedded HTML content only from these domains" -msgstr "Tillat ufiltrert innebygging av HTML-innhold bare fra disse domenene" +msgstr "" #: ../../Zotlabs/Module/Admin.php:766 msgid "One site per line. By default embedded content is filtered." -msgstr "Et nettsted per linje. Det er standard at innebygget innhold er filtrert." +msgstr "" #: ../../Zotlabs/Module/Admin.php:767 msgid "Block embedded HTML from these domains" @@ -4126,7 +4219,7 @@ msgid "Account '%s' unblocked" msgstr "Kontoen '%s' er ikke blokkert lenger" #: ../../Zotlabs/Module/Admin.php:1031 ../../Zotlabs/Module/Admin.php:1044 -#: ../../include/widgets.php:1477 +#: ../../include/widgets.php:1383 msgid "Accounts" msgstr "Kontoer" @@ -4136,7 +4229,7 @@ msgstr "velg alle" #: ../../Zotlabs/Module/Admin.php:1034 msgid "Registrations waiting for confirm" -msgstr "Registreringer venter på bekreftelse" +msgstr "" #: ../../Zotlabs/Module/Admin.php:1035 msgid "Request date" @@ -4232,7 +4325,7 @@ msgstr "Kanal '%s' kode tillatt" msgid "Channel '%s' code disallowed" msgstr "Kanal '%s' kode ikke tillatt" -#: ../../Zotlabs/Module/Admin.php:1210 ../../include/widgets.php:1478 +#: ../../Zotlabs/Module/Admin.php:1210 ../../include/widgets.php:1384 msgid "Channels" msgstr "Kanaler" @@ -4252,7 +4345,7 @@ msgstr "Tillat kode" msgid "Disallow Code" msgstr "Ikke tillat kode" -#: ../../Zotlabs/Module/Admin.php:1218 ../../include/conversation.php:1626 +#: ../../Zotlabs/Module/Admin.php:1218 ../../include/conversation.php:1611 msgid "Channel" msgstr "Kanal" @@ -4291,7 +4384,7 @@ msgid "Enable" msgstr "Skru på" #: ../../Zotlabs/Module/Admin.php:1330 ../../Zotlabs/Module/Admin.php:1420 -#: ../../include/widgets.php:1481 +#: ../../include/widgets.php:1387 msgid "Plugins" msgstr "Tilleggsfunksjoner" @@ -4300,8 +4393,8 @@ msgid "Toggle" msgstr "Skru av og på" #: ../../Zotlabs/Module/Admin.php:1332 ../../Zotlabs/Module/Admin.php:1615 -#: ../../Zotlabs/Lib/Apps.php:216 ../../include/nav.php:210 -#: ../../include/widgets.php:647 +#: ../../Zotlabs/Lib/Apps.php:215 ../../include/widgets.php:638 +#: ../../include/nav.php:208 msgid "Settings" msgstr "Innstillinger" @@ -4335,52 +4428,52 @@ msgstr "Skrudd av - versjonsinkompatibilitet" #: ../../Zotlabs/Module/Admin.php:1394 msgid "Enter the public git repository URL of the plugin repo." -msgstr "Skriv inn URL-en til det offentlige git-depoet til tillegget." +msgstr "" #: ../../Zotlabs/Module/Admin.php:1395 msgid "Plugin repo git URL" -msgstr "Git-URL-en til tillegget" +msgstr "" #: ../../Zotlabs/Module/Admin.php:1396 msgid "Custom repo name" -msgstr "Tilpasset depotnavn" +msgstr "" #: ../../Zotlabs/Module/Admin.php:1396 msgid "(optional)" -msgstr "(valgfritt)" +msgstr "" #: ../../Zotlabs/Module/Admin.php:1397 msgid "Download Plugin Repo" -msgstr "Last ned depotet til tillegget" +msgstr "" #: ../../Zotlabs/Module/Admin.php:1404 msgid "Install new repo" -msgstr "Installer nytt depot" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:1405 ../../Zotlabs/Lib/Apps.php:334 +#: ../../Zotlabs/Module/Admin.php:1405 ../../Zotlabs/Lib/Apps.php:330 msgid "Install" msgstr "Installer" #: ../../Zotlabs/Module/Admin.php:1427 msgid "Manage Repos" -msgstr "Håndter depoter" +msgstr "" #: ../../Zotlabs/Module/Admin.php:1428 msgid "Installed Plugin Repositories" -msgstr "Installerede tilleggsdepoter" +msgstr "" #: ../../Zotlabs/Module/Admin.php:1429 msgid "Install a New Plugin Repository" -msgstr "Installer et nytt tillleggsdepot" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:1435 ../../Zotlabs/Module/Settings.php:72 -#: ../../Zotlabs/Module/Settings.php:670 ../../Zotlabs/Lib/Apps.php:334 +#: ../../Zotlabs/Module/Admin.php:1435 ../../Zotlabs/Module/Settings.php:77 +#: ../../Zotlabs/Module/Settings.php:616 ../../Zotlabs/Lib/Apps.php:330 msgid "Update" msgstr "Oppdater" #: ../../Zotlabs/Module/Admin.php:1436 msgid "Switch branch" -msgstr "Bytt gren" +msgstr "" #: ../../Zotlabs/Module/Admin.php:1550 msgid "No themes found." @@ -4391,7 +4484,7 @@ msgid "Screenshot" msgstr "Skjermbilde" #: ../../Zotlabs/Module/Admin.php:1613 ../../Zotlabs/Module/Admin.php:1647 -#: ../../include/widgets.php:1482 +#: ../../include/widgets.php:1388 msgid "Themes" msgstr "Temaer" @@ -4407,8 +4500,8 @@ msgstr "[Ingen støtte]" msgid "Log settings updated." msgstr "Logginnstillinger er oppdatert." -#: ../../Zotlabs/Module/Admin.php:1732 ../../include/widgets.php:1503 -#: ../../include/widgets.php:1513 +#: ../../Zotlabs/Module/Admin.php:1732 ../../include/widgets.php:1409 +#: ../../include/widgets.php:1419 msgid "Logs" msgstr "Logger" @@ -4428,7 +4521,7 @@ msgstr "Loggfil" msgid "" "Must be writable by web server. Relative to your top-level webserver " "directory." -msgstr "Må kunne skrives til av webtjenesten. Relativ til din toppnivåkatalog på webtjeneren." +msgstr "" #: ../../Zotlabs/Module/Admin.php:1742 msgid "Log level" @@ -4474,412 +4567,85 @@ msgstr "Feltdefinisjonen ble ikke funnet" msgid "Edit Profile Field" msgstr "Endre profilfelt" -#: ../../Zotlabs/Module/Admin.php:2106 ../../include/widgets.php:1484 +#: ../../Zotlabs/Module/Admin.php:2106 ../../include/widgets.php:1390 msgid "Profile Fields" -msgstr "Profilfelter" +msgstr "" #: ../../Zotlabs/Module/Admin.php:2107 msgid "Basic Profile Fields" -msgstr "Grunnleggende profilfelter" +msgstr "" #: ../../Zotlabs/Module/Admin.php:2108 msgid "Advanced Profile Fields" -msgstr "Avanserte profilfelter" +msgstr "" #: ../../Zotlabs/Module/Admin.php:2108 msgid "(In addition to basic fields)" -msgstr "(i tillegg til grunnleggende felter)" +msgstr "" #: ../../Zotlabs/Module/Admin.php:2110 msgid "All available fields" -msgstr "Alle tilgjengelige felter" +msgstr "" #: ../../Zotlabs/Module/Admin.php:2111 msgid "Custom Fields" -msgstr "Tilpassede felter" +msgstr "" #: ../../Zotlabs/Module/Admin.php:2115 msgid "Create Custom Field" -msgstr "Lag tilpasset felt" +msgstr "" -#: ../../Zotlabs/Module/New_channel.php:128 -#: ../../Zotlabs/Module/Register.php:231 -msgid "Name or caption" -msgstr "Navn eller overskrift" +#: ../../Zotlabs/Module/Appman.php:37 ../../Zotlabs/Module/Appman.php:53 +msgid "App installed." +msgstr "App installert." -#: ../../Zotlabs/Module/New_channel.php:128 -#: ../../Zotlabs/Module/Register.php:231 -msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\"" -msgstr "Eksempel: \"Ola Nordmann\", \"Lisa og hestene hennes\", \"Fotball\", \"Sykkelgruppa\"" +#: ../../Zotlabs/Module/Appman.php:46 +msgid "Malformed app." +msgstr "Feil oppsett for app-en." -#: ../../Zotlabs/Module/New_channel.php:130 -#: ../../Zotlabs/Module/Register.php:233 -msgid "Choose a short nickname" -msgstr "Velg et kort kallenavn" +#: ../../Zotlabs/Module/Appman.php:104 +msgid "Embed code" +msgstr "Innbyggingskode" -#: ../../Zotlabs/Module/New_channel.php:130 -#: ../../Zotlabs/Module/Register.php:233 -#, php-format -msgid "" -"Your nickname will be used to create an easy to remember channel address " -"e.g. nickname%s" -msgstr "Ditt kallenavn brukes til å lage en kanaladresse som er enkel å huske, for eksempel kallenavn%s" +#: ../../Zotlabs/Module/Appman.php:110 ../../include/widgets.php:107 +msgid "Edit App" +msgstr "Endre app" -#: ../../Zotlabs/Module/New_channel.php:132 -#: ../../Zotlabs/Module/Register.php:235 -msgid "Channel role and privacy" -msgstr "Kanalrolle og personvern" +#: ../../Zotlabs/Module/Appman.php:110 +msgid "Create App" +msgstr "Lag app" -#: ../../Zotlabs/Module/New_channel.php:132 -#: ../../Zotlabs/Module/Register.php:235 -msgid "Select a channel role with your privacy requirements." -msgstr "Velg en kanalrolle for ditt personvernbehov." +#: ../../Zotlabs/Module/Appman.php:115 +msgid "Name of app" +msgstr "Navn på app" -#: ../../Zotlabs/Module/New_channel.php:132 -#: ../../Zotlabs/Module/Register.php:235 -msgid "Read more about roles" -msgstr "Les mer om roller" +#: ../../Zotlabs/Module/Appman.php:116 +msgid "Location (URL) of app" +msgstr "Plassering (URL) til app" -#: ../../Zotlabs/Module/New_channel.php:135 -msgid "Create Channel" -msgstr "Lag kanal" +#: ../../Zotlabs/Module/Appman.php:118 +msgid "Photo icon URL" +msgstr "Bildeikon URL" -#: ../../Zotlabs/Module/New_channel.php:136 -msgid "" -"A channel is your identity on this network. It can represent a person, a " -"blog, or a forum to name a few. Channels can make connections with other " -"channels to share information with highly detailed permissions." -msgstr "En kanal er din identitet i dette nettverket. Den kan representere en person, en blogg eller et forum for å nevne noe. Kanaler kan ha forbindelser til andre kanaler for å dele informasjon, og med svært detaljerte tillatelser." +#: ../../Zotlabs/Module/Appman.php:118 +msgid "80 x 80 pixels - optional" +msgstr "80 x80 pixler - valgfritt" -#: ../../Zotlabs/Module/New_channel.php:137 -msgid "" -"or import an existing channel from another location." -msgstr "eller importer en eksisterende kanal fra et annet sted." +#: ../../Zotlabs/Module/Appman.php:119 +msgid "Categories (optional, comma separated list)" +msgstr "" -#: ../../Zotlabs/Module/Ping.php:265 -msgid "sent you a private message" -msgstr "sendte deg en privat melding" +#: ../../Zotlabs/Module/Appman.php:120 +msgid "Version ID" +msgstr "Versjons-ID" -#: ../../Zotlabs/Module/Ping.php:313 -msgid "added your channel" -msgstr "la til din kanal" +#: ../../Zotlabs/Module/Appman.php:121 +msgid "Price of app" +msgstr "Pris på app" -#: ../../Zotlabs/Module/Ping.php:323 -msgid "g A l F d" -msgstr "g A l F d" - -#: ../../Zotlabs/Module/Ping.php:346 -msgid "[today]" -msgstr "[idag]" - -#: ../../Zotlabs/Module/Ping.php:355 -msgid "posted an event" -msgstr "la ut en hendelse" - -#: ../../Zotlabs/Module/Notifications.php:30 -msgid "Invalid request identifier." -msgstr "Ugyldig forespørselsidentifikator." - -#: ../../Zotlabs/Module/Notifications.php:39 -msgid "Discard" -msgstr "Forkast" - -#: ../../Zotlabs/Module/Notifications.php:103 ../../include/nav.php:193 -msgid "Mark all system notifications seen" -msgstr "Merk alle systemvarsler som sett" - -#: ../../Zotlabs/Module/Poke.php:168 ../../Zotlabs/Lib/Apps.php:228 -#: ../../include/conversation.php:963 -msgid "Poke" -msgstr "Prikk" - -#: ../../Zotlabs/Module/Poke.php:169 -msgid "Poke somebody" -msgstr "Dult noen" - -#: ../../Zotlabs/Module/Poke.php:172 -msgid "Poke/Prod" -msgstr "Prikke/oppildne" - -#: ../../Zotlabs/Module/Poke.php:173 -msgid "Poke, prod or do other things to somebody" -msgstr "Dult, prikk eller gjør andre ting med noen" - -#: ../../Zotlabs/Module/Poke.php:180 -msgid "Recipient" -msgstr "Mottaker" - -#: ../../Zotlabs/Module/Poke.php:181 -msgid "Choose what you wish to do to recipient" -msgstr "Velg hva du ønsker å gjøre med mottakeren" - -#: ../../Zotlabs/Module/Poke.php:184 ../../Zotlabs/Module/Poke.php:185 -msgid "Make this post private" -msgstr "Gjør dette innlegget privat" - -#: ../../Zotlabs/Module/Oexchange.php:27 -msgid "Unable to find your hub." -msgstr "Ikke i stand til å finne hubben din." - -#: ../../Zotlabs/Module/Oexchange.php:41 -msgid "Post successful." -msgstr "Innlegg vellykket." - -#: ../../Zotlabs/Module/Openid.php:30 -msgid "OpenID protocol error. No ID returned." -msgstr "OpenID protokollfeil. Ingen ID ble returnert." - -#: ../../Zotlabs/Module/Openid.php:193 ../../include/auth.php:285 -msgid "Login failed." -msgstr "Innlogging mislyktes." - -#: ../../Zotlabs/Module/Profperm.php:34 ../../Zotlabs/Module/Profperm.php:63 -msgid "Invalid profile identifier." -msgstr "Ugyldig profil-identifikator." - -#: ../../Zotlabs/Module/Profperm.php:115 -msgid "Profile Visibility Editor" -msgstr "Endre profilsynlighet" - -#: ../../Zotlabs/Module/Profperm.php:117 ../../include/channel.php:1290 -msgid "Profile" -msgstr "Profil" - -#: ../../Zotlabs/Module/Profperm.php:119 -msgid "Click on a contact to add or remove." -msgstr "Klikk på en kontakt for å legge til eller fjerne." - -#: ../../Zotlabs/Module/Profperm.php:128 -msgid "Visible To" -msgstr "Synlig for" - -#: ../../Zotlabs/Module/Pconfig.php:26 ../../Zotlabs/Module/Pconfig.php:59 -msgid "This setting requires special processing and editing has been blocked." -msgstr "Denne innstillingen krever spesiell behandling og redigering har blitt blokkert." - -#: ../../Zotlabs/Module/Pconfig.php:48 -msgid "Configuration Editor" -msgstr "Konfigurasjonsbehandler" - -#: ../../Zotlabs/Module/Pconfig.php:49 -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 "Advarsel: kanalen din kan slutte å virke ved endring av enkelte innstillinger. Vennligst forlat denne siden med mindre du er komfortabel med dette og vet hvordan du bruker denne funksjonen riktig." - -#: ../../Zotlabs/Module/Probe.php:28 ../../Zotlabs/Module/Probe.php:32 -#, php-format -msgid "Fetching URL returns error: %1$s" -msgstr "Henting av URL gir følgende feil: %1$s" - -#: ../../Zotlabs/Module/Siteinfo.php:19 -#, php-format -msgid "Version %s" -msgstr "Versjon %s" - -#: ../../Zotlabs/Module/Siteinfo.php:34 -msgid "Installed plugins/addons/apps:" -msgstr "Installerte tilleggsfunksjoner/tillegg/apper:" - -#: ../../Zotlabs/Module/Siteinfo.php:36 -msgid "No installed plugins/addons/apps" -msgstr "Ingen installerte tilleggsfunksjoner/tillegg/apper" - -#: ../../Zotlabs/Module/Siteinfo.php:49 -msgid "" -"This is a hub of $Projectname - a global cooperative network of " -"decentralized privacy enhanced websites." -msgstr "Dette er en $Projectname-hub - et globalt samhandlende nettverk av desentraliserte nettsteder med innbygget personvern." - -#: ../../Zotlabs/Module/Siteinfo.php:51 -msgid "Tag: " -msgstr "Merkelapp:" - -#: ../../Zotlabs/Module/Siteinfo.php:53 -msgid "Last background fetch: " -msgstr "Siste innhenting i bakgrunnen:" - -#: ../../Zotlabs/Module/Siteinfo.php:55 -msgid "Current load average: " -msgstr "Gjeldende belastningsgjennomsnitt:" - -#: ../../Zotlabs/Module/Siteinfo.php:58 -msgid "Running at web location" -msgstr "Kjører på webplasseringen" - -#: ../../Zotlabs/Module/Siteinfo.php:59 -msgid "" -"Please visit hubzilla.org to learn more " -"about $Projectname." -msgstr "Vennligst besøk hubzilla.org for å lære mer om $Projectname." - -#: ../../Zotlabs/Module/Siteinfo.php:60 -msgid "Bug reports and issues: please visit" -msgstr "Feilmeldinger og feilretting: vennligst besøk" - -#: ../../Zotlabs/Module/Siteinfo.php:62 -msgid "$projectname issues" -msgstr "$projectname problemer" - -#: ../../Zotlabs/Module/Siteinfo.php:63 -msgid "" -"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot " -"com" -msgstr "Forslag, ros og så videre - vennligst e-post \"redmatrix\" hos librelist - punktum com" - -#: ../../Zotlabs/Module/Siteinfo.php:65 -msgid "Site Administrators" -msgstr "Nettstedsadministratorer" - -#: ../../Zotlabs/Module/Rmagic.php:44 -msgid "" -"We encountered a problem while logging in with the OpenID you provided. " -"Please check the correct spelling of the ID." -msgstr "Vi støtte på et problem under innloggingen med din OpenID. Vennligst sjekk at ID-en er stavet riktig." - -#: ../../Zotlabs/Module/Rmagic.php:44 -msgid "The error message was:" -msgstr "Feilmeldingen var:" - -#: ../../Zotlabs/Module/Rmagic.php:48 -msgid "Authentication failed." -msgstr "Autentisering mislyktes." - -#: ../../Zotlabs/Module/Rmagic.php:88 -msgid "Remote Authentication" -msgstr "Fjernautentisering" - -#: ../../Zotlabs/Module/Rmagic.php:89 -msgid "Enter your channel address (e.g. channel@example.com)" -msgstr "Skriv din kanaladresse (for eksempel channel@exampel.com)" - -#: ../../Zotlabs/Module/Rmagic.php:90 -msgid "Authenticate" -msgstr "Autentiser" - -#: ../../Zotlabs/Module/Pubsites.php:22 ../../include/widgets.php:1337 -msgid "Public Hubs" -msgstr "Offentlige huber" - -#: ../../Zotlabs/Module/Pubsites.php:25 -msgid "" -"The listed hubs allow public registration for the $Projectname network. All " -"hubs in the network are interlinked so membership on any of them conveys " -"membership in the network as a whole. Some hubs may require subscription or " -"provide tiered service plans. The hub itself may provide " -"additional details." -msgstr "Nettstedene på listen tillater offentlig registrering i $Projectname-nettverket. Alle nettsteder i nettverket er forbundet så medlemskap på enhver av dem formidler medlemskap i nettverket som helhet. Noen nettsteder kan kreve abonnement eller tilby lagdelte tjenesteavtaler. Nettstedene selv kan gi tilleggsopplysninger." - -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Hub URL" -msgstr "Nettstedets URL" - -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Access Type" -msgstr "Tilgangstype" - -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Registration Policy" -msgstr "Retningslinjer for registrering" - -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Stats" -msgstr "Statistikk" - -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Software" -msgstr "Programvare" - -#: ../../Zotlabs/Module/Pubsites.php:31 ../../Zotlabs/Module/Ratings.php:103 -#: ../../include/conversation.php:962 -msgid "Ratings" -msgstr "Vurderinger" - -#: ../../Zotlabs/Module/Pubsites.php:38 -msgid "Rate" -msgstr "Vurder" - -#: ../../Zotlabs/Module/Profile_photo.php:186 -msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." -msgstr "Hold nede Shift-knappen og last siden på nytt eller tøm nettleserens mellomlager hvis det nye bildet ikke vises umiddelbart." - -#: ../../Zotlabs/Module/Profile_photo.php:389 -msgid "Upload Profile Photo" -msgstr "Last opp profilbilde:" - -#: ../../Zotlabs/Module/Blocks.php:97 ../../Zotlabs/Module/Blocks.php:155 -#: ../../Zotlabs/Module/Editblock.php:108 -msgid "Block Name" -msgstr "Byggeklossens navn" - -#: ../../Zotlabs/Module/Blocks.php:154 ../../include/text.php:2238 -msgid "Blocks" -msgstr "Byggeklosser" - -#: ../../Zotlabs/Module/Blocks.php:156 -msgid "Block Title" -msgstr "Byggeklossens tittel" - -#: ../../Zotlabs/Module/Rate.php:160 -msgid "Website:" -msgstr "Nettsted:" - -#: ../../Zotlabs/Module/Rate.php:163 -#, php-format -msgid "Remote Channel [%s] (not yet known on this site)" -msgstr "Fjerntliggende kanal [%s] (foreløpig ikke kjent på dette nettstedet)" - -#: ../../Zotlabs/Module/Rate.php:164 -msgid "Rating (this information is public)" -msgstr "Vurdering (denne informasjonen er offentlig)" - -#: ../../Zotlabs/Module/Rate.php:165 -msgid "Optionally explain your rating (this information is public)" -msgstr "Velg om du vil forklare din vurdering (denne informasjonen er offentlig)" - -#: ../../Zotlabs/Module/Ratings.php:73 -msgid "No ratings" -msgstr "Ingen vurderinger" - -#: ../../Zotlabs/Module/Ratings.php:104 -msgid "Rating: " -msgstr "Vurdering:" - -#: ../../Zotlabs/Module/Ratings.php:105 -msgid "Website: " -msgstr "Nettsted:" - -#: ../../Zotlabs/Module/Ratings.php:107 -msgid "Description: " -msgstr "Beskrivelse:" - -#: ../../Zotlabs/Module/Apps.php:47 ../../include/nav.php:165 -#: ../../include/widgets.php:102 -msgid "Apps" -msgstr "Apper" - -#: ../../Zotlabs/Module/Editblock.php:124 ../../include/conversation.php:1243 -msgid "Title (optional)" -msgstr "Tittel (valgfri)" - -#: ../../Zotlabs/Module/Editblock.php:133 -msgid "Edit Block" -msgstr "Endre byggekloss" - -#: ../../Zotlabs/Module/Common.php:14 -msgid "No channel." -msgstr "Ingen kanal." - -#: ../../Zotlabs/Module/Common.php:43 -msgid "Common connections" -msgstr "Felles forbindelser" - -#: ../../Zotlabs/Module/Common.php:48 -msgid "No connections in common." -msgstr "Ingen forbindelser felles." +#: ../../Zotlabs/Module/Appman.php:122 +msgid "Location (URL) to purchase app" +msgstr "Plassering (URL) for å kjøpe app" #: ../../Zotlabs/Module/Rbmark.php:94 msgid "Select a bookmark folder" @@ -4984,154 +4750,120 @@ msgstr "ja" msgid "Membership on this site is by invitation only." msgstr "Medlemskap ved dette nettstedet skjer kun via invitasjon." -#: ../../Zotlabs/Module/Register.php:262 ../../include/nav.php:149 -#: ../../boot.php:1686 +#: ../../Zotlabs/Module/Register.php:262 ../../include/nav.php:147 +#: ../../boot.php:1685 msgid "Register" msgstr "Registrer" -#: ../../Zotlabs/Module/Register.php:263 -msgid "" -"This site may require email verification after submitting this form. If you " -"are returned to a login page, please check your email for instructions." -msgstr "" +#: ../../Zotlabs/Module/Register.php:262 +msgid "Proceed to create your first channel" +msgstr "Gå videre for å lage din første kanal" #: ../../Zotlabs/Module/Regmod.php:15 msgid "Please login." msgstr "Vennligst logg inn." -#: ../../Zotlabs/Module/Removeaccount.php:35 +#: ../../Zotlabs/Module/Removeaccount.php:34 msgid "" "Account removals are not allowed within 48 hours of changing the account " "password." msgstr "Sletting av kontoer er ikke tillatt innen 48 timer etter endring av kontopassordet." -#: ../../Zotlabs/Module/Removeaccount.php:57 +#: ../../Zotlabs/Module/Removeaccount.php:56 msgid "Remove This Account" msgstr "Slett denne kontoen" -#: ../../Zotlabs/Module/Removeaccount.php:58 -#: ../../Zotlabs/Module/Removeme.php:61 +#: ../../Zotlabs/Module/Removeaccount.php:57 +#: ../../Zotlabs/Module/Removeme.php:59 msgid "WARNING: " msgstr "ADVARSEL:" -#: ../../Zotlabs/Module/Removeaccount.php:58 +#: ../../Zotlabs/Module/Removeaccount.php:57 msgid "" "This account and all its channels will be completely removed from the " "network. " msgstr "Denne kontoen og alle dens kanaler vil bli fullstendig fjernet fra nettverket." -#: ../../Zotlabs/Module/Removeaccount.php:58 -#: ../../Zotlabs/Module/Removeme.php:61 +#: ../../Zotlabs/Module/Removeaccount.php:57 +#: ../../Zotlabs/Module/Removeme.php:59 msgid "This action is permanent and can not be undone!" msgstr "Denne handlingen er permanent og kan ikke angres!" -#: ../../Zotlabs/Module/Removeaccount.php:59 -#: ../../Zotlabs/Module/Removeme.php:62 +#: ../../Zotlabs/Module/Removeaccount.php:58 +#: ../../Zotlabs/Module/Removeme.php:60 msgid "Please enter your password for verification:" msgstr "Vennligst skriv ditt passord for å få bekreftelse:" -#: ../../Zotlabs/Module/Removeaccount.php:60 +#: ../../Zotlabs/Module/Removeaccount.php:59 msgid "" "Remove this account, all its channels and all its channel clones from the " "network" msgstr "Slett denne kontoen, alle dens kanaler og alle dens kanalkloner fra dette nettverket" -#: ../../Zotlabs/Module/Removeaccount.php:60 +#: ../../Zotlabs/Module/Removeaccount.php:59 msgid "" "By default only the instances of the channels located on this hub will be " "removed from the network" msgstr "Som standard vil bare forekomster av kanalene lokalisert på denne hubben bli slettet fra nettverket" -#: ../../Zotlabs/Module/Removeaccount.php:61 -#: ../../Zotlabs/Module/Settings.php:759 +#: ../../Zotlabs/Module/Removeaccount.php:60 +#: ../../Zotlabs/Module/Settings.php:705 msgid "Remove Account" msgstr "Slett konto" -#: ../../Zotlabs/Module/Removeme.php:35 +#: ../../Zotlabs/Module/Removeme.php:33 msgid "" "Channel removals are not allowed within 48 hours of changing the account " "password." msgstr "Fjerning av kanaler er ikke tillatt innen 48 timer etter endring av kontopassordet." -#: ../../Zotlabs/Module/Removeme.php:60 +#: ../../Zotlabs/Module/Removeme.php:58 msgid "Remove This Channel" msgstr "Fjern denne kanalen" -#: ../../Zotlabs/Module/Removeme.php:61 +#: ../../Zotlabs/Module/Removeme.php:59 msgid "This channel will be completely removed from the network. " msgstr "Denne kanalen vil bli fullstendig fjernet fra nettverket." -#: ../../Zotlabs/Module/Removeme.php:63 +#: ../../Zotlabs/Module/Removeme.php:61 msgid "Remove this channel and all its clones from the network" msgstr "Fjern denne kanalen og alle dens kloner fra nettverket" -#: ../../Zotlabs/Module/Removeme.php:63 +#: ../../Zotlabs/Module/Removeme.php:61 msgid "" "By default only the instance of the channel located on this hub will be " "removed from the network" msgstr "Som standard vil bare forekomsten av denne kanalen lokalisert på denne hubben bli fjernet fra nettverket" -#: ../../Zotlabs/Module/Removeme.php:64 ../../Zotlabs/Module/Settings.php:1219 +#: ../../Zotlabs/Module/Removeme.php:62 ../../Zotlabs/Module/Settings.php:1124 msgid "Remove Channel" msgstr "Fjern kanal" -#: ../../Zotlabs/Module/Uexport.php:55 ../../Zotlabs/Module/Uexport.php:56 -msgid "Export Channel" -msgstr "Eksporter kanal" - -#: ../../Zotlabs/Module/Uexport.php:57 +#: ../../Zotlabs/Module/Rmagic.php:44 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 "Eksporter grunnleggende informasjon om kanalen din til en fil. Denne er en sikkerhetskopi av dine forbindelser, tillatelser, profil og grunnleggende data, som kan brukes til å importere dine data til en ny hub, men den tar ikke med innholdet." +"We encountered a problem while logging in with the OpenID you provided. " +"Please check the correct spelling of the ID." +msgstr "Vi støtte på et problem under innloggingen med din OpenID. Vennligst sjekk at ID-en er stavet riktig." -#: ../../Zotlabs/Module/Uexport.php:58 -msgid "Export Content" -msgstr "Eksporter innhold" +#: ../../Zotlabs/Module/Rmagic.php:44 +msgid "The error message was:" +msgstr "Feilmeldingen var:" -#: ../../Zotlabs/Module/Uexport.php:59 -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 "Eksporter din kanalinformasjon og det nyeste innholdet til en JSON-sikkerhetskopi, som kan gjenopprettes eller importeres til en annen hub. Denne lager en sikkerhetskopi av alle dine forbindelser, tillatelser, profildata og flere måneder av innholdet ditt. Denne filen kan være SVÆRT stor. Vennligst vær tålmodig - det kan ta flere minutter før denne nedlastningen begynner." +#: ../../Zotlabs/Module/Rmagic.php:48 +msgid "Authentication failed." +msgstr "Autentisering mislyktes." -#: ../../Zotlabs/Module/Uexport.php:60 -msgid "Export your posts from a given year." -msgstr "Eksporter dine innlegg fra et bestemt år" +#: ../../Zotlabs/Module/Rmagic.php:88 +msgid "Remote Authentication" +msgstr "Fjernautentisering" -#: ../../Zotlabs/Module/Uexport.php:62 -msgid "" -"You may also export your posts and conversations for a particular year or " -"month. Adjust the date in your browser location bar to select other dates. " -"If the export fails (possibly due to memory exhaustion on your server hub), " -"please try again selecting a more limited date range." -msgstr "Du kan også eksportere dine innlegg og samtaler for et bestemt år eller måned. Juster datoen i din nettlesers adresselinje for å velge andre datoer. Hvis eksporten feiler (muligens på grunn av utilstrekkelig minne på din hub), vennligst prøv igjen med et mer begrenset datoområde." +#: ../../Zotlabs/Module/Rmagic.php:89 +msgid "Enter your channel address (e.g. channel@example.com)" +msgstr "Skriv din kanaladresse (for eksempel channel@exampel.com)" -#: ../../Zotlabs/Module/Uexport.php:63 -#, php-format -msgid "" -"To select all posts for a given year, such as this year, visit %2$s" -msgstr "For å velge alle innlegg for et gitt år, slik som iår, besøk %2$s" - -#: ../../Zotlabs/Module/Uexport.php:64 -#, php-format -msgid "" -"To select all posts for a given month, such as January of this year, visit " -"%2$s" -msgstr "For å velge alle innlegg fra en gitt måned, slik som januar i år, besøk %2$s" - -#: ../../Zotlabs/Module/Uexport.php:65 -#, php-format -msgid "" -"These content files may be imported or restored by visiting %2$s on any site containing your channel. For best results" -" please import or restore these in date order (oldest first)." -msgstr "Disse innholdsfilene kan importeres eller gjenopprettes ved å besøke %2$s på ethvert nettsted som inneholder din kanal. For best resultat, vennligst importer eller gjenopprett disse etter dato (eldste først)." +#: ../../Zotlabs/Module/Rmagic.php:90 +msgid "Authenticate" +msgstr "Autentiser" #: ../../Zotlabs/Module/Search.php:216 #, php-format @@ -5147,652 +4879,609 @@ msgstr "Søkeresultater for: %s" msgid "No service class restrictions found." msgstr "Ingen restriksjoner er funnet i tjenesteklasse." -#: ../../Zotlabs/Module/Settings.php:64 +#: ../../Zotlabs/Module/Settings.php:69 msgid "Name is required" msgstr "Navn er påkrevd" -#: ../../Zotlabs/Module/Settings.php:68 +#: ../../Zotlabs/Module/Settings.php:73 msgid "Key and Secret are required" msgstr "Nøkkel og hemmelighet er påkrevd" -#: ../../Zotlabs/Module/Settings.php:138 -#, php-format -msgid "This channel is limited to %d tokens" -msgstr "" - -#: ../../Zotlabs/Module/Settings.php:144 -msgid "Name and Password are required." -msgstr "" - -#: ../../Zotlabs/Module/Settings.php:168 -msgid "Token saved." -msgstr "" - -#: ../../Zotlabs/Module/Settings.php:274 +#: ../../Zotlabs/Module/Settings.php:225 msgid "Not valid email." msgstr "Ikke gyldig e-post." -#: ../../Zotlabs/Module/Settings.php:277 +#: ../../Zotlabs/Module/Settings.php:228 msgid "Protected email address. Cannot change to that email." msgstr "Beskyttet e-postadresse. Kan ikke endre til den e-postadressen." -#: ../../Zotlabs/Module/Settings.php:286 +#: ../../Zotlabs/Module/Settings.php:237 msgid "System failure storing new email. Please try again." msgstr "Systemfeil ved lagring av ny e-post. Vennligst prøv igjen." -#: ../../Zotlabs/Module/Settings.php:303 +#: ../../Zotlabs/Module/Settings.php:254 msgid "Password verification failed." msgstr "Passordbekreftelsen mislyktes." -#: ../../Zotlabs/Module/Settings.php:310 +#: ../../Zotlabs/Module/Settings.php:261 msgid "Passwords do not match. Password unchanged." msgstr "Passordene stemmer ikke overens. Passord uforandret." -#: ../../Zotlabs/Module/Settings.php:314 +#: ../../Zotlabs/Module/Settings.php:265 msgid "Empty passwords are not allowed. Password unchanged." msgstr "Tomme passord er ikke tillatt. Passord uforandret." -#: ../../Zotlabs/Module/Settings.php:328 +#: ../../Zotlabs/Module/Settings.php:279 msgid "Password changed." msgstr "Passord endret." -#: ../../Zotlabs/Module/Settings.php:330 +#: ../../Zotlabs/Module/Settings.php:281 msgid "Password update failed. Please try again." msgstr "Passord oppdatering mislyktes. Vennligst prøv igjen." -#: ../../Zotlabs/Module/Settings.php:579 +#: ../../Zotlabs/Module/Settings.php:525 msgid "Settings updated." msgstr "Innstillinger oppdatert." -#: ../../Zotlabs/Module/Settings.php:643 ../../Zotlabs/Module/Settings.php:669 -#: ../../Zotlabs/Module/Settings.php:705 +#: ../../Zotlabs/Module/Settings.php:589 ../../Zotlabs/Module/Settings.php:615 +#: ../../Zotlabs/Module/Settings.php:651 msgid "Add application" msgstr "Legg til program" -#: ../../Zotlabs/Module/Settings.php:646 +#: ../../Zotlabs/Module/Settings.php:592 msgid "Name of application" msgstr "Navn på program" -#: ../../Zotlabs/Module/Settings.php:647 ../../Zotlabs/Module/Settings.php:673 +#: ../../Zotlabs/Module/Settings.php:593 ../../Zotlabs/Module/Settings.php:619 msgid "Consumer Key" msgstr "Consumer Key" -#: ../../Zotlabs/Module/Settings.php:647 ../../Zotlabs/Module/Settings.php:648 +#: ../../Zotlabs/Module/Settings.php:593 ../../Zotlabs/Module/Settings.php:594 msgid "Automatically generated - change if desired. Max length 20" msgstr "Automatisk laget - kan endres om du vil. Største lengde 20" -#: ../../Zotlabs/Module/Settings.php:648 ../../Zotlabs/Module/Settings.php:674 +#: ../../Zotlabs/Module/Settings.php:594 ../../Zotlabs/Module/Settings.php:620 msgid "Consumer Secret" msgstr "Consumer Secret" -#: ../../Zotlabs/Module/Settings.php:649 ../../Zotlabs/Module/Settings.php:675 +#: ../../Zotlabs/Module/Settings.php:595 ../../Zotlabs/Module/Settings.php:621 msgid "Redirect" msgstr "Omdirigering" -#: ../../Zotlabs/Module/Settings.php:649 +#: ../../Zotlabs/Module/Settings.php:595 msgid "" "Redirect URI - leave blank unless your application specifically requires " "this" msgstr "Omdirigerings-URI - la stå tomt hvis ikke ditt program spesifikt krever dette" -#: ../../Zotlabs/Module/Settings.php:650 ../../Zotlabs/Module/Settings.php:676 +#: ../../Zotlabs/Module/Settings.php:596 ../../Zotlabs/Module/Settings.php:622 msgid "Icon url" msgstr "Ikon-URL" -#: ../../Zotlabs/Module/Settings.php:650 ../../Zotlabs/Module/Sources.php:112 +#: ../../Zotlabs/Module/Settings.php:596 ../../Zotlabs/Module/Sources.php:112 #: ../../Zotlabs/Module/Sources.php:147 msgid "Optional" msgstr "Valgfritt" -#: ../../Zotlabs/Module/Settings.php:661 +#: ../../Zotlabs/Module/Settings.php:607 msgid "Application not found." msgstr "Programmet ble ikke funnet." -#: ../../Zotlabs/Module/Settings.php:704 +#: ../../Zotlabs/Module/Settings.php:650 msgid "Connected Apps" msgstr "Tilkoblede app-er" -#: ../../Zotlabs/Module/Settings.php:708 +#: ../../Zotlabs/Module/Settings.php:654 msgid "Client key starts with" msgstr "Klientnøkkel starter med" -#: ../../Zotlabs/Module/Settings.php:709 +#: ../../Zotlabs/Module/Settings.php:655 msgid "No name" msgstr "Ikke noe navn" -#: ../../Zotlabs/Module/Settings.php:710 +#: ../../Zotlabs/Module/Settings.php:656 msgid "Remove authorization" msgstr "Fjern tillatelse" -#: ../../Zotlabs/Module/Settings.php:723 +#: ../../Zotlabs/Module/Settings.php:669 msgid "No feature settings configured" msgstr "Ingen funksjonsinnstillinger er konfigurert" -#: ../../Zotlabs/Module/Settings.php:730 +#: ../../Zotlabs/Module/Settings.php:676 msgid "Feature/Addon Settings" msgstr "Funksjons-/Tilleggsinnstillinger" -#: ../../Zotlabs/Module/Settings.php:753 +#: ../../Zotlabs/Module/Settings.php:699 msgid "Account Settings" msgstr "Kontoinnstillinger" -#: ../../Zotlabs/Module/Settings.php:754 +#: ../../Zotlabs/Module/Settings.php:700 msgid "Current Password" msgstr "Nåværende passord" -#: ../../Zotlabs/Module/Settings.php:755 +#: ../../Zotlabs/Module/Settings.php:701 msgid "Enter New Password" msgstr "Skriv nytt passord" -#: ../../Zotlabs/Module/Settings.php:756 +#: ../../Zotlabs/Module/Settings.php:702 msgid "Confirm New Password" msgstr "Bekreft nytt passord" -#: ../../Zotlabs/Module/Settings.php:756 +#: ../../Zotlabs/Module/Settings.php:702 msgid "Leave password fields blank unless changing" msgstr "La passordfeltene stå blanke om det ikke skal endres" -#: ../../Zotlabs/Module/Settings.php:758 -#: ../../Zotlabs/Module/Settings.php:1136 +#: ../../Zotlabs/Module/Settings.php:704 +#: ../../Zotlabs/Module/Settings.php:1041 msgid "Email Address:" msgstr "E-postadresse:" -#: ../../Zotlabs/Module/Settings.php:760 +#: ../../Zotlabs/Module/Settings.php:706 msgid "Remove this account including all its channels" msgstr "Slett denne kontoen inkludert alle dens kanaler" -#: ../../Zotlabs/Module/Settings.php:789 -msgid "" -"Use this form to create temporary access identifiers to share things with " -"non-members. These identities may be used in Access Control Lists and " -"visitors may login using these credentials to access the private content." -msgstr "" - -#: ../../Zotlabs/Module/Settings.php:791 -msgid "" -"You may also provide dropbox style access links to friends and " -"associates by adding the Login Password to any specific site URL as shown. " -"Examples:" -msgstr "" - -#: ../../Zotlabs/Module/Settings.php:796 ../../include/widgets.php:614 -msgid "Guest Access Tokens" -msgstr "" - -#: ../../Zotlabs/Module/Settings.php:803 -msgid "Login Name" -msgstr "" - -#: ../../Zotlabs/Module/Settings.php:804 -msgid "Login Password" -msgstr "" - -#: ../../Zotlabs/Module/Settings.php:805 -msgid "Expires (yyyy-mm-dd)" -msgstr "" - -#: ../../Zotlabs/Module/Settings.php:830 +#: ../../Zotlabs/Module/Settings.php:729 msgid "Additional Features" msgstr "Ekstra funksjoner" -#: ../../Zotlabs/Module/Settings.php:854 +#: ../../Zotlabs/Module/Settings.php:753 msgid "Connector Settings" msgstr "Koblingsinnstillinger" -#: ../../Zotlabs/Module/Settings.php:893 +#: ../../Zotlabs/Module/Settings.php:792 msgid "No special theme for mobile devices" msgstr "Ikke noe spesielt tema for mobile enheter" -#: ../../Zotlabs/Module/Settings.php:896 +#: ../../Zotlabs/Module/Settings.php:795 #, php-format msgid "%s - (Experimental)" msgstr "%s - (Eksperimentelt)" -#: ../../Zotlabs/Module/Settings.php:938 +#: ../../Zotlabs/Module/Settings.php:837 msgid "Display Settings" msgstr "Visningsinnstillinger" -#: ../../Zotlabs/Module/Settings.php:939 +#: ../../Zotlabs/Module/Settings.php:838 msgid "Theme Settings" msgstr "Temainnstillinger" -#: ../../Zotlabs/Module/Settings.php:940 +#: ../../Zotlabs/Module/Settings.php:839 msgid "Custom Theme Settings" msgstr "Tilpassede temainnstillinger" -#: ../../Zotlabs/Module/Settings.php:941 +#: ../../Zotlabs/Module/Settings.php:840 msgid "Content Settings" msgstr "Innholdsinnstillinger" -#: ../../Zotlabs/Module/Settings.php:947 +#: ../../Zotlabs/Module/Settings.php:846 msgid "Display Theme:" msgstr "Visningstema:" -#: ../../Zotlabs/Module/Settings.php:948 +#: ../../Zotlabs/Module/Settings.php:847 msgid "Mobile Theme:" msgstr "Mobiltema:" -#: ../../Zotlabs/Module/Settings.php:949 +#: ../../Zotlabs/Module/Settings.php:848 msgid "Preload images before rendering the page" msgstr "Last inn bildene før gjengivelsen av siden" -#: ../../Zotlabs/Module/Settings.php:949 +#: ../../Zotlabs/Module/Settings.php:848 msgid "" "The subjective page load time will be longer but the page will be ready when" " displayed" msgstr "Den personlige opplevelsen av lastetiden vil være lenger, men siden vil være klar når den vises" -#: ../../Zotlabs/Module/Settings.php:950 +#: ../../Zotlabs/Module/Settings.php:849 msgid "Enable user zoom on mobile devices" msgstr "Skru på brukerstyrt zoom på mobile enheter" -#: ../../Zotlabs/Module/Settings.php:951 +#: ../../Zotlabs/Module/Settings.php:850 msgid "Update browser every xx seconds" msgstr "Oppdater nettleser hvert xx sekunder" -#: ../../Zotlabs/Module/Settings.php:951 +#: ../../Zotlabs/Module/Settings.php:850 msgid "Minimum of 10 seconds, no maximum" msgstr "Minimum 10 sekunder, ikke noe maksimum" -#: ../../Zotlabs/Module/Settings.php:952 +#: ../../Zotlabs/Module/Settings.php:851 msgid "Maximum number of conversations to load at any time:" msgstr "Maksimalt antall samtaler å laste samtidig:" -#: ../../Zotlabs/Module/Settings.php:952 +#: ../../Zotlabs/Module/Settings.php:851 msgid "Maximum of 100 items" msgstr "Maksimum 100 elementer" -#: ../../Zotlabs/Module/Settings.php:953 +#: ../../Zotlabs/Module/Settings.php:852 msgid "Show emoticons (smilies) as images" msgstr "Vis emoticons (smilefjes) som bilder" -#: ../../Zotlabs/Module/Settings.php:954 +#: ../../Zotlabs/Module/Settings.php:853 msgid "Link post titles to source" msgstr "Lenk innleggets tittel til kilden" -#: ../../Zotlabs/Module/Settings.php:955 +#: ../../Zotlabs/Module/Settings.php:854 msgid "System Page Layout Editor - (advanced)" msgstr "Systemsidens layoutbehandler - (avansert)" -#: ../../Zotlabs/Module/Settings.php:958 +#: ../../Zotlabs/Module/Settings.php:857 msgid "Use blog/list mode on channel page" msgstr "Bruk blogg-/listemodus på kanalsiden" -#: ../../Zotlabs/Module/Settings.php:958 ../../Zotlabs/Module/Settings.php:959 +#: ../../Zotlabs/Module/Settings.php:857 ../../Zotlabs/Module/Settings.php:858 msgid "(comments displayed separately)" msgstr "(kommentarer vist separat)" -#: ../../Zotlabs/Module/Settings.php:959 +#: ../../Zotlabs/Module/Settings.php:858 msgid "Use blog/list mode on grid page" msgstr "Bruk blogg-/liste-modus på nettverkssiden" -#: ../../Zotlabs/Module/Settings.php:960 +#: ../../Zotlabs/Module/Settings.php:859 msgid "Channel page max height of content (in pixels)" msgstr "Kanalsidens makshøyde for innhold (i pixler)" -#: ../../Zotlabs/Module/Settings.php:960 ../../Zotlabs/Module/Settings.php:961 +#: ../../Zotlabs/Module/Settings.php:859 ../../Zotlabs/Module/Settings.php:860 msgid "click to expand content exceeding this height" msgstr "klikk for å utvide innhold som overstiger denne høyden" -#: ../../Zotlabs/Module/Settings.php:961 +#: ../../Zotlabs/Module/Settings.php:860 msgid "Grid page max height of content (in pixels)" msgstr "Nettverkssidens makshøyde for innhold (i piksler)" -#: ../../Zotlabs/Module/Settings.php:990 +#: ../../Zotlabs/Module/Settings.php:894 msgid "Nobody except yourself" msgstr "Ingen unntatt deg selv" -#: ../../Zotlabs/Module/Settings.php:991 +#: ../../Zotlabs/Module/Settings.php:895 msgid "Only those you specifically allow" msgstr "Bare de du spesifikt tillater" -#: ../../Zotlabs/Module/Settings.php:992 +#: ../../Zotlabs/Module/Settings.php:896 msgid "Approved connections" msgstr "Godkjente forbindelser" -#: ../../Zotlabs/Module/Settings.php:993 +#: ../../Zotlabs/Module/Settings.php:897 msgid "Any connections" msgstr "Enhver forbindelse" -#: ../../Zotlabs/Module/Settings.php:994 +#: ../../Zotlabs/Module/Settings.php:898 msgid "Anybody on this website" msgstr "Enhver ved dette nettstedet" -#: ../../Zotlabs/Module/Settings.php:995 +#: ../../Zotlabs/Module/Settings.php:899 msgid "Anybody in this network" msgstr "Enhver i dette nettverket" -#: ../../Zotlabs/Module/Settings.php:996 +#: ../../Zotlabs/Module/Settings.php:900 msgid "Anybody authenticated" msgstr "Enhver som er autentisert" -#: ../../Zotlabs/Module/Settings.php:997 +#: ../../Zotlabs/Module/Settings.php:901 msgid "Anybody on the internet" msgstr "Enhver på Internett" -#: ../../Zotlabs/Module/Settings.php:1071 +#: ../../Zotlabs/Module/Settings.php:976 msgid "Publish your default profile in the network directory" msgstr "Publiser din standardprofil i nettverkskatalogen" -#: ../../Zotlabs/Module/Settings.php:1076 +#: ../../Zotlabs/Module/Settings.php:981 msgid "Allow us to suggest you as a potential friend to new members?" msgstr "Tillat oss å foreslå deg som en mulig venn til nye medlemmer?" -#: ../../Zotlabs/Module/Settings.php:1085 +#: ../../Zotlabs/Module/Settings.php:990 msgid "Your channel address is" msgstr "Din kanaladresse er" -#: ../../Zotlabs/Module/Settings.php:1127 +#: ../../Zotlabs/Module/Settings.php:1032 msgid "Channel Settings" msgstr "Kanalinnstillinger" -#: ../../Zotlabs/Module/Settings.php:1134 +#: ../../Zotlabs/Module/Settings.php:1039 msgid "Basic Settings" msgstr "Grunninnstillinger" -#: ../../Zotlabs/Module/Settings.php:1135 ../../include/channel.php:1180 +#: ../../Zotlabs/Module/Settings.php:1040 ../../include/channel.php:1140 msgid "Full Name:" msgstr "Fullt navn:" -#: ../../Zotlabs/Module/Settings.php:1137 +#: ../../Zotlabs/Module/Settings.php:1042 msgid "Your Timezone:" msgstr "Din tidssone:" -#: ../../Zotlabs/Module/Settings.php:1138 +#: ../../Zotlabs/Module/Settings.php:1043 msgid "Default Post Location:" msgstr "Standard plassering ved innlegg:" -#: ../../Zotlabs/Module/Settings.php:1138 +#: ../../Zotlabs/Module/Settings.php:1043 msgid "Geographical location to display on your posts" msgstr "Geografisk plassering som vises på dine innlegg" -#: ../../Zotlabs/Module/Settings.php:1139 +#: ../../Zotlabs/Module/Settings.php:1044 msgid "Use Browser Location:" msgstr "Bruk nettleseren sin plassering:" -#: ../../Zotlabs/Module/Settings.php:1141 +#: ../../Zotlabs/Module/Settings.php:1046 msgid "Adult Content" msgstr "Voksent innhold" -#: ../../Zotlabs/Module/Settings.php:1141 +#: ../../Zotlabs/Module/Settings.php:1046 msgid "" "This channel frequently or regularly publishes adult content. (Please tag " "any adult material and/or nudity with #NSFW)" msgstr "Denne kanalen vil ofte eller jevnlig publisere voksent innhold. (Vennligst merk alt voksent materiale og/eller nakenhet med #NSFW)" -#: ../../Zotlabs/Module/Settings.php:1143 +#: ../../Zotlabs/Module/Settings.php:1048 msgid "Security and Privacy Settings" msgstr "Sikkerhets- og personverninnstillinger" -#: ../../Zotlabs/Module/Settings.php:1146 +#: ../../Zotlabs/Module/Settings.php:1051 msgid "Your permissions are already configured. Click to view/adjust" msgstr "Dine tillatelser er allerede satt. Klikk for å se/justere." -#: ../../Zotlabs/Module/Settings.php:1148 +#: ../../Zotlabs/Module/Settings.php:1053 msgid "Hide my online presence" msgstr "Skjul min tilstedeværelse online" -#: ../../Zotlabs/Module/Settings.php:1148 +#: ../../Zotlabs/Module/Settings.php:1053 msgid "Prevents displaying in your profile that you are online" msgstr "Forhindrer visning på din profil av at du er online " -#: ../../Zotlabs/Module/Settings.php:1150 +#: ../../Zotlabs/Module/Settings.php:1055 msgid "Simple Privacy Settings:" msgstr "Enkle personverninnstillinger:" -#: ../../Zotlabs/Module/Settings.php:1151 +#: ../../Zotlabs/Module/Settings.php:1056 msgid "" "Very Public - extremely permissive (should be used with caution)" msgstr "Svært offentlig - ekstremt åpent (bør brukes med varsomhet)" -#: ../../Zotlabs/Module/Settings.php:1152 +#: ../../Zotlabs/Module/Settings.php:1057 msgid "" "Typical - default public, privacy when desired (similar to social " "network permissions but with improved privacy)" msgstr "Typisk - standard er offentlig, personvern når ønsket (likner på tillatelser i sosiale nettverk, men med forbedret personvern)" -#: ../../Zotlabs/Module/Settings.php:1153 +#: ../../Zotlabs/Module/Settings.php:1058 msgid "Private - default private, never open or public" msgstr "Privat - standard er privat, aldri åpen eller offentlig" -#: ../../Zotlabs/Module/Settings.php:1154 +#: ../../Zotlabs/Module/Settings.php:1059 msgid "Blocked - default blocked to/from everybody" msgstr "Blokkert - standard blokkert til/fra alle" -#: ../../Zotlabs/Module/Settings.php:1156 +#: ../../Zotlabs/Module/Settings.php:1061 msgid "Allow others to tag your posts" msgstr "Tillat andre å merke dine innlegg" -#: ../../Zotlabs/Module/Settings.php:1156 +#: ../../Zotlabs/Module/Settings.php:1061 msgid "" "Often used by the community to retro-actively flag inappropriate content" msgstr "Ofte brukt av fellesskapet for å merke upassende innhold i etterkant" -#: ../../Zotlabs/Module/Settings.php:1158 +#: ../../Zotlabs/Module/Settings.php:1063 msgid "Advanced Privacy Settings" msgstr "Avanserte personverninnstillinger" -#: ../../Zotlabs/Module/Settings.php:1160 +#: ../../Zotlabs/Module/Settings.php:1065 msgid "Expire other channel content after this many days" msgstr "Annet kanal innhold utløper etter så mange dager" -#: ../../Zotlabs/Module/Settings.php:1160 +#: ../../Zotlabs/Module/Settings.php:1065 msgid "0 or blank to use the website limit." -msgstr "0 eller ikke noe for å bruke nettstedets grense." +msgstr "" -#: ../../Zotlabs/Module/Settings.php:1160 +#: ../../Zotlabs/Module/Settings.php:1065 #, php-format msgid "This website expires after %d days." -msgstr "Dette nettstedet utgår etter %d dager." +msgstr "" -#: ../../Zotlabs/Module/Settings.php:1160 +#: ../../Zotlabs/Module/Settings.php:1065 msgid "This website does not expire imported content." -msgstr "Dette nettstedet lar ikke importert innhold utgå." +msgstr "" -#: ../../Zotlabs/Module/Settings.php:1160 +#: ../../Zotlabs/Module/Settings.php:1065 msgid "The website limit takes precedence if lower than your limit." -msgstr "Nettstedets grense bestemmer hvis lavere enn din grense." +msgstr "" -#: ../../Zotlabs/Module/Settings.php:1161 +#: ../../Zotlabs/Module/Settings.php:1066 msgid "Maximum Friend Requests/Day:" msgstr "Maksimalt antall venneforespørsler per dag:" -#: ../../Zotlabs/Module/Settings.php:1161 +#: ../../Zotlabs/Module/Settings.php:1066 msgid "May reduce spam activity" msgstr "Kan redusere søppelpostaktivitet" -#: ../../Zotlabs/Module/Settings.php:1162 +#: ../../Zotlabs/Module/Settings.php:1067 msgid "Default Post and Publish Permissions" -msgstr "Standard innleggs- og publiseringstillatelser" +msgstr "" -#: ../../Zotlabs/Module/Settings.php:1164 +#: ../../Zotlabs/Module/Settings.php:1069 msgid "Use my default audience setting for the type of object published" -msgstr "Bruk min standard målgruppeinnstilling for objekttypen som publiseres" +msgstr "" -#: ../../Zotlabs/Module/Settings.php:1167 +#: ../../Zotlabs/Module/Settings.php:1072 msgid "Channel permissions category:" msgstr "Kategori med kanaltillatelser:" -#: ../../Zotlabs/Module/Settings.php:1173 +#: ../../Zotlabs/Module/Settings.php:1078 msgid "Maximum private messages per day from unknown people:" msgstr "Maksimalt antall private meldinger per dag fra ukjente personer:" -#: ../../Zotlabs/Module/Settings.php:1173 +#: ../../Zotlabs/Module/Settings.php:1078 msgid "Useful to reduce spamming" msgstr "Nyttig for å redusere søppelpost" -#: ../../Zotlabs/Module/Settings.php:1176 +#: ../../Zotlabs/Module/Settings.php:1081 msgid "Notification Settings" msgstr "Varslingsinnstillinger" -#: ../../Zotlabs/Module/Settings.php:1177 +#: ../../Zotlabs/Module/Settings.php:1082 msgid "By default post a status message when:" msgstr "Legg inn en statusmelding når du:" -#: ../../Zotlabs/Module/Settings.php:1178 +#: ../../Zotlabs/Module/Settings.php:1083 msgid "accepting a friend request" msgstr "aksepterer en venneforespørsel" -#: ../../Zotlabs/Module/Settings.php:1179 +#: ../../Zotlabs/Module/Settings.php:1084 msgid "joining a forum/community" msgstr "blir med i et forum/miljø" -#: ../../Zotlabs/Module/Settings.php:1180 +#: ../../Zotlabs/Module/Settings.php:1085 msgid "making an interesting profile change" msgstr "gjør en interessant profilendring" -#: ../../Zotlabs/Module/Settings.php:1181 +#: ../../Zotlabs/Module/Settings.php:1086 msgid "Send a notification email when:" msgstr "Send en varsel-e-post når:" -#: ../../Zotlabs/Module/Settings.php:1182 +#: ../../Zotlabs/Module/Settings.php:1087 msgid "You receive a connection request" msgstr "Du har mottatt en forespørsel om forbindelse" -#: ../../Zotlabs/Module/Settings.php:1183 +#: ../../Zotlabs/Module/Settings.php:1088 msgid "Your connections are confirmed" msgstr "Dine forbindelser er bekreftet" -#: ../../Zotlabs/Module/Settings.php:1184 +#: ../../Zotlabs/Module/Settings.php:1089 msgid "Someone writes on your profile wall" msgstr "Noen skriver på din profilvegg" -#: ../../Zotlabs/Module/Settings.php:1185 +#: ../../Zotlabs/Module/Settings.php:1090 msgid "Someone writes a followup comment" msgstr "Noen skriver en oppfølgende kommentar" -#: ../../Zotlabs/Module/Settings.php:1186 +#: ../../Zotlabs/Module/Settings.php:1091 msgid "You receive a private message" msgstr "Du mottar en privat melding" -#: ../../Zotlabs/Module/Settings.php:1187 +#: ../../Zotlabs/Module/Settings.php:1092 msgid "You receive a friend suggestion" msgstr "Du mottok et venneforslag" -#: ../../Zotlabs/Module/Settings.php:1188 +#: ../../Zotlabs/Module/Settings.php:1093 msgid "You are tagged in a post" msgstr "Du merkes i et innlegg" -#: ../../Zotlabs/Module/Settings.php:1189 +#: ../../Zotlabs/Module/Settings.php:1094 msgid "You are poked/prodded/etc. in a post" msgstr "Du ble prikket/oppildnet/og så vider i et innlegg" -#: ../../Zotlabs/Module/Settings.php:1192 +#: ../../Zotlabs/Module/Settings.php:1097 msgid "Show visual notifications including:" msgstr "Vis visuelle varslinger om:" -#: ../../Zotlabs/Module/Settings.php:1194 +#: ../../Zotlabs/Module/Settings.php:1099 msgid "Unseen grid activity" msgstr "Usett nettverksaktivitet" -#: ../../Zotlabs/Module/Settings.php:1195 +#: ../../Zotlabs/Module/Settings.php:1100 msgid "Unseen channel activity" msgstr "Usett kanalaktivitet" -#: ../../Zotlabs/Module/Settings.php:1196 +#: ../../Zotlabs/Module/Settings.php:1101 msgid "Unseen private messages" msgstr "Usette private meldinger" -#: ../../Zotlabs/Module/Settings.php:1196 -#: ../../Zotlabs/Module/Settings.php:1201 -#: ../../Zotlabs/Module/Settings.php:1202 -#: ../../Zotlabs/Module/Settings.php:1203 +#: ../../Zotlabs/Module/Settings.php:1101 +#: ../../Zotlabs/Module/Settings.php:1106 +#: ../../Zotlabs/Module/Settings.php:1107 +#: ../../Zotlabs/Module/Settings.php:1108 msgid "Recommended" msgstr "Anbefalt" -#: ../../Zotlabs/Module/Settings.php:1197 +#: ../../Zotlabs/Module/Settings.php:1102 msgid "Upcoming events" msgstr "Kommende hendelser" -#: ../../Zotlabs/Module/Settings.php:1198 +#: ../../Zotlabs/Module/Settings.php:1103 msgid "Events today" msgstr "Hendelser idag" -#: ../../Zotlabs/Module/Settings.php:1199 +#: ../../Zotlabs/Module/Settings.php:1104 msgid "Upcoming birthdays" msgstr "Kommende fødselsdager" -#: ../../Zotlabs/Module/Settings.php:1199 +#: ../../Zotlabs/Module/Settings.php:1104 msgid "Not available in all themes" msgstr "Ikke tilgjengelig i alle temaer" -#: ../../Zotlabs/Module/Settings.php:1200 +#: ../../Zotlabs/Module/Settings.php:1105 msgid "System (personal) notifications" msgstr "System (personlige) varslinger" -#: ../../Zotlabs/Module/Settings.php:1201 +#: ../../Zotlabs/Module/Settings.php:1106 msgid "System info messages" msgstr "System infomeldinger" -#: ../../Zotlabs/Module/Settings.php:1202 +#: ../../Zotlabs/Module/Settings.php:1107 msgid "System critical alerts" msgstr "System kritiske varsel" -#: ../../Zotlabs/Module/Settings.php:1203 +#: ../../Zotlabs/Module/Settings.php:1108 msgid "New connections" msgstr "Nye forbindelser" -#: ../../Zotlabs/Module/Settings.php:1204 +#: ../../Zotlabs/Module/Settings.php:1109 msgid "System Registrations" msgstr "Systemregistreringer" -#: ../../Zotlabs/Module/Settings.php:1205 +#: ../../Zotlabs/Module/Settings.php:1110 msgid "" "Also show new wall posts, private messages and connections under Notices" msgstr "Vis også nye vegginnlegg, private meldinger og forbindelser under Varsler" -#: ../../Zotlabs/Module/Settings.php:1207 +#: ../../Zotlabs/Module/Settings.php:1112 msgid "Notify me of events this many days in advance" msgstr "Varsle meg om hendelser dette antall dager på forhånd" -#: ../../Zotlabs/Module/Settings.php:1207 +#: ../../Zotlabs/Module/Settings.php:1112 msgid "Must be greater than 0" msgstr "Må være større enn 0" -#: ../../Zotlabs/Module/Settings.php:1209 +#: ../../Zotlabs/Module/Settings.php:1114 msgid "Advanced Account/Page Type Settings" msgstr "Avanserte innstillinger for konto/sidetype" -#: ../../Zotlabs/Module/Settings.php:1210 +#: ../../Zotlabs/Module/Settings.php:1115 msgid "Change the behaviour of this account for special situations" msgstr "Endre oppførselen til denne kontoen i spesielle situasjoner" -#: ../../Zotlabs/Module/Settings.php:1213 +#: ../../Zotlabs/Module/Settings.php:1118 msgid "" "Please enable expert mode (in Settings > " "Additional features) to adjust!" msgstr "Vennligst skru på ekspertmodus (under Innstillinger > Ekstra funksjoner) for å justere!" -#: ../../Zotlabs/Module/Settings.php:1214 +#: ../../Zotlabs/Module/Settings.php:1119 msgid "Miscellaneous Settings" msgstr "Diverse innstillinger" -#: ../../Zotlabs/Module/Settings.php:1215 +#: ../../Zotlabs/Module/Settings.php:1120 msgid "Default photo upload folder" msgstr "Standard mappe for opplasting av bilder" -#: ../../Zotlabs/Module/Settings.php:1215 -#: ../../Zotlabs/Module/Settings.php:1216 +#: ../../Zotlabs/Module/Settings.php:1120 +#: ../../Zotlabs/Module/Settings.php:1121 msgid "%Y - current year, %m - current month" msgstr "%Y - nåværende år, %m - nåværende måned" -#: ../../Zotlabs/Module/Settings.php:1216 +#: ../../Zotlabs/Module/Settings.php:1121 msgid "Default file upload folder" msgstr "Standard mappe for opplasting av filer" -#: ../../Zotlabs/Module/Settings.php:1218 +#: ../../Zotlabs/Module/Settings.php:1123 msgid "Personal menu to display in your channel pages" msgstr "Personlig meny som kan vises på dine kanalsider" -#: ../../Zotlabs/Module/Settings.php:1220 +#: ../../Zotlabs/Module/Settings.php:1125 msgid "Remove this channel." msgstr "Fjern denne kanalen." -#: ../../Zotlabs/Module/Settings.php:1221 +#: ../../Zotlabs/Module/Settings.php:1126 msgid "Firefox Share $Projectname provider" msgstr "$Projectname Firefox Share tilbyder" -#: ../../Zotlabs/Module/Settings.php:1222 +#: ../../Zotlabs/Module/Settings.php:1127 msgid "Start calendar week on monday" msgstr "Start uken med mandag i kalenderen" @@ -5825,7 +5514,7 @@ msgid "" msgstr "Du må kanskje importere filen \"install/schmea_xxx.sql\" manuelt ved å bruke en databaseklient." #: ../../Zotlabs/Module/Setup.php:204 ../../Zotlabs/Module/Setup.php:266 -#: ../../Zotlabs/Module/Setup.php:722 +#: ../../Zotlabs/Module/Setup.php:721 msgid "Please see the file \"install/INSTALL.txt\"." msgstr "Vennligst les filen \"install/INSTALL.txt\"." @@ -5929,11 +5618,11 @@ msgstr "Noen avanserte egenskaper, som - selv om de er nyttige - kanskje passer #: ../../Zotlabs/Module/Setup.php:388 msgid "PHP version 5.5 or greater is required." -msgstr "PHP-versjon 5.5 eller høyere er påkrevet." +msgstr "" #: ../../Zotlabs/Module/Setup.php:389 msgid "PHP version" -msgstr "PHP-versjon" +msgstr "" #: ../../Zotlabs/Module/Setup.php:404 msgid "Could not find a command line version of PHP in the web server PATH." @@ -6025,200 +5714,199 @@ msgid "mb_string PHP module" msgstr "mb_string PHP-modul" #: ../../Zotlabs/Module/Setup.php:496 +msgid "mcrypt PHP module" +msgstr "mcrypt PHP-modul" + +#: ../../Zotlabs/Module/Setup.php:497 msgid "xml PHP module" msgstr "XML PHP modul" -#: ../../Zotlabs/Module/Setup.php:500 ../../Zotlabs/Module/Setup.php:502 +#: ../../Zotlabs/Module/Setup.php:501 ../../Zotlabs/Module/Setup.php:503 msgid "Apache mod_rewrite module" msgstr "Apache mod_rewrite-modul" -#: ../../Zotlabs/Module/Setup.php:500 +#: ../../Zotlabs/Module/Setup.php:501 msgid "" "Error: Apache webserver mod-rewrite module is required but not installed." msgstr "Feil: Apache web-tjenerens mod-rewrite-modul er påkrevd, men ikke installert." -#: ../../Zotlabs/Module/Setup.php:506 ../../Zotlabs/Module/Setup.php:509 +#: ../../Zotlabs/Module/Setup.php:507 ../../Zotlabs/Module/Setup.php:510 msgid "proc_open" msgstr "proc_open" -#: ../../Zotlabs/Module/Setup.php:506 +#: ../../Zotlabs/Module/Setup.php:507 msgid "" "Error: proc_open is required but is either not installed or has been " "disabled in php.ini" msgstr "Feil: proc_open er påkrevd, men er enten ikke installert eller har blitt avskrudd i php.ini" -#: ../../Zotlabs/Module/Setup.php:514 +#: ../../Zotlabs/Module/Setup.php:515 msgid "Error: libCURL PHP module required but not installed." msgstr "Feil: libCURL PHP-modul er påkrevd, men er ikke installert." -#: ../../Zotlabs/Module/Setup.php:518 +#: ../../Zotlabs/Module/Setup.php:519 msgid "" "Error: GD graphics PHP module with JPEG support required but not installed." msgstr "Feil: GD graphics PHP-modul med JPEG-støtte er påkrevd, men er ikke installert." -#: ../../Zotlabs/Module/Setup.php:522 +#: ../../Zotlabs/Module/Setup.php:523 msgid "Error: openssl PHP module required but not installed." msgstr "Feil: openssl PHP-modul er påkrevd, men er ikke installert." -#: ../../Zotlabs/Module/Setup.php:526 +#: ../../Zotlabs/Module/Setup.php:527 msgid "" "Error: mysqli or postgres PHP module required but neither are installed." msgstr "Feil: mysqli eller postgres PHP modul er påkrevd, men ingen av dem er installert." -#: ../../Zotlabs/Module/Setup.php:530 +#: ../../Zotlabs/Module/Setup.php:531 msgid "Error: mb_string PHP module required but not installed." msgstr "Feil: mb_string PHP-modul er påkrevd, men er ikke installert." -#: ../../Zotlabs/Module/Setup.php:534 +#: ../../Zotlabs/Module/Setup.php:535 +msgid "Error: mcrypt PHP module required but not installed." +msgstr "Feil: mcrypt PHP-modul er påkrevd, men er ikke installert." + +#: ../../Zotlabs/Module/Setup.php:539 msgid "Error: xml PHP module required for DAV but not installed." msgstr "Feil: XML PHP modul er påkrevet for DAV, men den er ikke installert." -#: ../../Zotlabs/Module/Setup.php:552 +#: ../../Zotlabs/Module/Setup.php:557 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 "Web-installasjonen må kunne lage en fil kalt \".htconfig.php\" i toppkatalogen til web-tjeneren din, men dette får den ikke til." -#: ../../Zotlabs/Module/Setup.php:553 +#: ../../Zotlabs/Module/Setup.php:558 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 "Dette er oftest tillatelsesinnstilling, ettersom webtjeneren kanskje kan skrive til filer i din mappe - selv om du kan." -#: ../../Zotlabs/Module/Setup.php:554 +#: ../../Zotlabs/Module/Setup.php:559 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 "På slutten av denne prosedyren vil vi gi deg en tekst til å lagre i en fil kalt .htconfig.php i toppkatalogen til din Red." -#: ../../Zotlabs/Module/Setup.php:555 +#: ../../Zotlabs/Module/Setup.php:560 msgid "" "You can alternatively skip this procedure and perform a manual installation." " Please see the file \"install/INSTALL.txt\" for instructions." msgstr "Alternativt, så kan du hoppe over denne prosedyren og gjennomføre en manuell installasjon. Vennligst se filen \"install/INSTALL.txt\" for instruksjoner." -#: ../../Zotlabs/Module/Setup.php:558 +#: ../../Zotlabs/Module/Setup.php:563 msgid ".htconfig.php is writable" msgstr ".htconfig.php kan skrives til" -#: ../../Zotlabs/Module/Setup.php:572 +#: ../../Zotlabs/Module/Setup.php:577 msgid "" "Red uses the Smarty3 template engine to render its web views. Smarty3 " "compiles templates to PHP to speed up rendering." msgstr "Red bruker malmotoren Smarty3 for å gjengi sine webvisninger. Smarty3 kompilerer malene om til PHP for å framskynde gjengivelsen." -#: ../../Zotlabs/Module/Setup.php:573 +#: ../../Zotlabs/Module/Setup.php:578 #, php-format msgid "" "In order to store these compiled templates, the web server needs to have " "write access to the directory %s under the top level web folder." -msgstr "For å kunne lagre disse kompilerte malene, så må webtjeneren ha skrivetilgang til katalogen %s under hovedmappen." +msgstr "" -#: ../../Zotlabs/Module/Setup.php:574 ../../Zotlabs/Module/Setup.php:595 +#: ../../Zotlabs/Module/Setup.php:579 ../../Zotlabs/Module/Setup.php:600 msgid "" "Please ensure that the user that your web server runs as (e.g. www-data) has" " write access to this folder." msgstr "Vennligst sikre at brukeren som din web-tjeneste kjører som (for eksempel www-data) har skrivetilgang til denne katalogen." -#: ../../Zotlabs/Module/Setup.php:575 +#: ../../Zotlabs/Module/Setup.php:580 #, 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 "Merknad: som et sikkerhetstiltak bør du bare gi webtjerenn skrivetilgang til %s - ikke til malfilene (.tpl) som den inneholder." -#: ../../Zotlabs/Module/Setup.php:578 +#: ../../Zotlabs/Module/Setup.php:583 #, php-format msgid "%s is writable" msgstr "%s kan skrives til" -#: ../../Zotlabs/Module/Setup.php:594 +#: ../../Zotlabs/Module/Setup.php:599 msgid "" -"This software 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 "" +"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 "Red bruker lagringsmappen for å lagre opplastede filer. Webtjeneren trenger å ha skrivetilgang til lagringsmappen under Red sin toppnivåmappe." -#: ../../Zotlabs/Module/Setup.php:598 +#: ../../Zotlabs/Module/Setup.php:603 msgid "store is writable" msgstr "lageret kan skrives til" -#: ../../Zotlabs/Module/Setup.php:631 +#: ../../Zotlabs/Module/Setup.php:636 msgid "" "SSL certificate cannot be validated. Fix certificate or disable https access" " to this site." msgstr "SSL-sertifikatet kan ikke kontrolleres. Fiks sertifikatet eller skru av https tilgang til dette nettstedet." -#: ../../Zotlabs/Module/Setup.php:632 +#: ../../Zotlabs/Module/Setup.php:637 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 "Hvis du har HTTPS-tilgang til ditt nettsted eller tillater forbindelser til TCP port 443 (HTTPS-porten), så MÅ du bruke nettlesergodkjent sertifkater. Du MÅ IKKE bruke egensignert sertifikater!" -#: ../../Zotlabs/Module/Setup.php:633 +#: ../../Zotlabs/Module/Setup.php:638 msgid "" "This restriction is incorporated because public posts from you may for " "example contain references to images on your own hub." msgstr "Denne begrensningen er tatt inn fordi offentlige innlegg fra deg kan for eksempel inneholde referanser til bilder på din egen hub." -#: ../../Zotlabs/Module/Setup.php:634 +#: ../../Zotlabs/Module/Setup.php:639 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." msgstr "Hvis sertifikatet ditt ikke gjenkjennes, så vil medlemmer på andre nettsteder (som selv kan ha godkjente sertifikater) få en beskjed med en advarsel på deres eget nettsted som klager over sikkerhetsproblemer." -#: ../../Zotlabs/Module/Setup.php:635 +#: ../../Zotlabs/Module/Setup.php:640 msgid "" "This can cause usability issues elsewhere (not just on your own site) so we " "must insist on this requirement." msgstr "Dette kan gi problemer med brukervennlighet (ikke bare på ditt eget nettsted), så vi må insistere på dette kravet." -#: ../../Zotlabs/Module/Setup.php:636 +#: ../../Zotlabs/Module/Setup.php:641 msgid "" "Providers are available that issue free certificates which are browser-" "valid." msgstr "Det finnes tilbydere som utsteder gratis sertifikater som er gyldige i nettlesere." -#: ../../Zotlabs/Module/Setup.php:638 -msgid "" -"If you are confident that the certificate is valid and signed by a trusted " -"authority, check to see if you have failed to install an intermediate cert. " -"These are not normally required by browsers, but are required for server-to-" -"server communications." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:641 +#: ../../Zotlabs/Module/Setup.php:643 msgid "SSL certificate validation" msgstr "SSL sertifikat-kontroll" -#: ../../Zotlabs/Module/Setup.php:647 +#: ../../Zotlabs/Module/Setup.php:649 msgid "" "Url rewrite in .htaccess is not working. Check your server " "configuration.Test: " msgstr "URL omskriving (rewrite) i .htaccess virker ikke. Sjekk konfigurasjonen til tjeneren din. Test:" -#: ../../Zotlabs/Module/Setup.php:650 +#: ../../Zotlabs/Module/Setup.php:652 msgid "Url rewrite is working" msgstr "URL rewrite virker" -#: ../../Zotlabs/Module/Setup.php:659 +#: ../../Zotlabs/Module/Setup.php:661 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 "Databasekonfigurasjonsfilen \".htconfig.php\" kunne ikke skrives. Vennligst bruk den medfølgende teksten for å lage en konfigurasjonsfil i toppkatalogen av din web-tjener." -#: ../../Zotlabs/Module/Setup.php:683 +#: ../../Zotlabs/Module/Setup.php:685 msgid "Errors encountered creating database tables." msgstr "Feil oppstod under opprettelsen av databasetabeller." -#: ../../Zotlabs/Module/Setup.php:720 +#: ../../Zotlabs/Module/Setup.php:719 msgid "

What next

" msgstr "

Hva gjenstår

" -#: ../../Zotlabs/Module/Setup.php:721 +#: ../../Zotlabs/Module/Setup.php:720 msgid "" "IMPORTANT: You will need to [manually] setup a scheduled task for the " "poller." @@ -6240,6 +5928,184 @@ msgstr "Fjern alle filer" msgid "Remove this file" msgstr "Fjern denne filen" +#: ../../Zotlabs/Module/Siteinfo.php:19 +#, php-format +msgid "Version %s" +msgstr "Versjon %s" + +#: ../../Zotlabs/Module/Siteinfo.php:40 +msgid "Installed plugins/addons/apps:" +msgstr "Installerte tilleggsfunksjoner/tillegg/apper:" + +#: ../../Zotlabs/Module/Siteinfo.php:53 +msgid "No installed plugins/addons/apps" +msgstr "Ingen installerte tilleggsfunksjoner/tillegg/apper" + +#: ../../Zotlabs/Module/Siteinfo.php:66 +msgid "" +"This is a hub of $Projectname - a global cooperative network of " +"decentralized privacy enhanced websites." +msgstr "Dette er en $Projectname-hub - et globalt samhandlende nettverk av desentraliserte nettsteder med innbygget personvern." + +#: ../../Zotlabs/Module/Siteinfo.php:68 +msgid "Tag: " +msgstr "Merkelapp:" + +#: ../../Zotlabs/Module/Siteinfo.php:70 +msgid "Last background fetch: " +msgstr "Siste innhenting i bakgrunnen:" + +#: ../../Zotlabs/Module/Siteinfo.php:72 +msgid "Current load average: " +msgstr "Gjeldende belastningsgjennomsnitt:" + +#: ../../Zotlabs/Module/Siteinfo.php:75 +msgid "Running at web location" +msgstr "Kjører på webplasseringen" + +#: ../../Zotlabs/Module/Siteinfo.php:76 +msgid "" +"Please visit hubzilla.org to learn more " +"about $Projectname." +msgstr "Vennligst besøk hubzilla.org for å lære mer om $Projectname." + +#: ../../Zotlabs/Module/Siteinfo.php:77 +msgid "Bug reports and issues: please visit" +msgstr "Feilmeldinger og feilretting: vennligst besøk" + +#: ../../Zotlabs/Module/Siteinfo.php:79 +msgid "$projectname issues" +msgstr "$projectname problemer" + +#: ../../Zotlabs/Module/Siteinfo.php:80 +msgid "" +"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot " +"com" +msgstr "Forslag, ros og så videre - vennligst e-post \"redmatrix\" hos librelist - punktum com" + +#: ../../Zotlabs/Module/Siteinfo.php:82 +msgid "Site Administrators" +msgstr "Nettstedsadministratorer" + +#: ../../Zotlabs/Module/Sources.php:37 +msgid "Failed to create source. No channel selected." +msgstr "Mislyktes med å lage kilde. Ingen kanal er valgt." + +#: ../../Zotlabs/Module/Sources.php:51 +msgid "Source created." +msgstr "Kilden er laget." + +#: ../../Zotlabs/Module/Sources.php:64 +msgid "Source updated." +msgstr "Kilden er oppdatert." + +#: ../../Zotlabs/Module/Sources.php:90 +msgid "*" +msgstr "*" + +#: ../../Zotlabs/Module/Sources.php:96 ../../include/widgets.php:630 +#: ../../include/features.php:71 +msgid "Channel Sources" +msgstr "Kanalkilder" + +#: ../../Zotlabs/Module/Sources.php:97 +msgid "Manage remote sources of content for your channel." +msgstr "Håndtere eksterne innholdskilder til din kanal." + +#: ../../Zotlabs/Module/Sources.php:98 ../../Zotlabs/Module/Sources.php:108 +msgid "New Source" +msgstr "Ny kilde" + +#: ../../Zotlabs/Module/Sources.php:109 ../../Zotlabs/Module/Sources.php:143 +msgid "" +"Import all or selected content from the following channel into this channel " +"and distribute it according to your channel settings." +msgstr "Importer alt eller et utvalgt av innhold fra følgende kanal inn i denne kanalen og distribuer det i henhold til dine egne kanalinnstillinger." + +#: ../../Zotlabs/Module/Sources.php:110 ../../Zotlabs/Module/Sources.php:144 +msgid "Only import content with these words (one per line)" +msgstr "Bare importer innhold med disse ordene (ett ord per linje)" + +#: ../../Zotlabs/Module/Sources.php:110 ../../Zotlabs/Module/Sources.php:144 +msgid "Leave blank to import all public content" +msgstr "La stå tomt for å importere alt offentlig innhold" + +#: ../../Zotlabs/Module/Sources.php:111 ../../Zotlabs/Module/Sources.php:148 +msgid "Channel Name" +msgstr "Kanalnavn" + +#: ../../Zotlabs/Module/Sources.php:112 ../../Zotlabs/Module/Sources.php:147 +msgid "" +"Add the following categories to posts imported from this source (comma " +"separated)" +msgstr "" + +#: ../../Zotlabs/Module/Sources.php:133 ../../Zotlabs/Module/Sources.php:161 +msgid "Source not found." +msgstr "Kilden ble ikke funnet." + +#: ../../Zotlabs/Module/Sources.php:140 +msgid "Edit Source" +msgstr "Endre kilde" + +#: ../../Zotlabs/Module/Sources.php:141 +msgid "Delete Source" +msgstr "Slett kilde" + +#: ../../Zotlabs/Module/Sources.php:169 +msgid "Source removed" +msgstr "Kilden er fjernet" + +#: ../../Zotlabs/Module/Sources.php:171 +msgid "Unable to remove source." +msgstr "Ikke i stand til å fjerne kilde." + +#: ../../Zotlabs/Module/Subthread.php:118 +#, php-format +msgid "%1$s is following %2$s's %3$s" +msgstr "%1$s følger %2$s sin %3$s" + +#: ../../Zotlabs/Module/Subthread.php:120 +#, php-format +msgid "%1$s stopped following %2$s's %3$s" +msgstr "%1$s stopped å følge %2$s sin %3$s" + +#: ../../Zotlabs/Module/Suggest.php:39 +msgid "" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." +msgstr "Ingen forslag tilgjengelige. Hvis dette er et nytt nettsted, vennligst prøv igjen om 24 timer." + +#: ../../Zotlabs/Module/Suggest.php:58 ../../include/widgets.php:149 +msgid "Ignore/Hide" +msgstr "Ignorer/Skjul" + +#: ../../Zotlabs/Module/Tagger.php:55 ../../include/bbcode.php:256 +msgid "post" +msgstr "innlegg" + +#: ../../Zotlabs/Module/Tagger.php:57 ../../include/text.php:1948 +#: ../../include/conversation.php:150 +msgid "comment" +msgstr "kommentar" + +#: ../../Zotlabs/Module/Tagger.php:100 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "%1$s merket %3$s til %2$s med %4$s" + +#: ../../Zotlabs/Module/Tagrm.php:48 ../../Zotlabs/Module/Tagrm.php:98 +msgid "Tag removed" +msgstr "Merkelapp fjernet" + +#: ../../Zotlabs/Module/Tagrm.php:123 +msgid "Remove Item Tag" +msgstr "Fjern merkelapp fra element" + +#: ../../Zotlabs/Module/Tagrm.php:125 +msgid "Select a tag to remove: " +msgstr "Velg merkelapp å fjerne:" + #: ../../Zotlabs/Module/Thing.php:114 msgid "Thing updated" msgstr "Tingen er oppdatert" @@ -6297,229 +6163,74 @@ msgstr "URL til bilde av ting (valgfritt)" msgid "Add Thing to your Profile" msgstr "Legg til ting i din profil" -#: ../../Zotlabs/Module/Sources.php:37 -msgid "Failed to create source. No channel selected." -msgstr "Mislyktes med å lage kilde. Ingen kanal er valgt." +#: ../../Zotlabs/Module/Uexport.php:55 ../../Zotlabs/Module/Uexport.php:56 +msgid "Export Channel" +msgstr "Eksporter kanal" -#: ../../Zotlabs/Module/Sources.php:51 -msgid "Source created." -msgstr "Kilden er laget." - -#: ../../Zotlabs/Module/Sources.php:64 -msgid "Source updated." -msgstr "Kilden er oppdatert." - -#: ../../Zotlabs/Module/Sources.php:90 -msgid "*" -msgstr "*" - -#: ../../Zotlabs/Module/Sources.php:96 ../../include/features.php:72 -#: ../../include/widgets.php:639 -msgid "Channel Sources" -msgstr "Kanalkilder" - -#: ../../Zotlabs/Module/Sources.php:97 -msgid "Manage remote sources of content for your channel." -msgstr "Håndtere eksterne innholdskilder til din kanal." - -#: ../../Zotlabs/Module/Sources.php:98 ../../Zotlabs/Module/Sources.php:108 -msgid "New Source" -msgstr "Ny kilde" - -#: ../../Zotlabs/Module/Sources.php:109 ../../Zotlabs/Module/Sources.php:143 +#: ../../Zotlabs/Module/Uexport.php:57 msgid "" -"Import all or selected content from the following channel into this channel " -"and distribute it according to your channel settings." -msgstr "Importer alt eller et utvalgt av innhold fra følgende kanal inn i denne kanalen og distribuer det i henhold til dine egne kanalinnstillinger." +"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 "Eksporter grunnleggende informasjon om kanalen din til en fil. Denne er en sikkerhetskopi av dine forbindelser, tillatelser, profil og grunnleggende data, som kan brukes til å importere dine data til en ny hub, men den tar ikke med innholdet." -#: ../../Zotlabs/Module/Sources.php:110 ../../Zotlabs/Module/Sources.php:144 -msgid "Only import content with these words (one per line)" -msgstr "Bare importer innhold med disse ordene (ett ord per linje)" +#: ../../Zotlabs/Module/Uexport.php:58 +msgid "Export Content" +msgstr "Eksporter innhold" -#: ../../Zotlabs/Module/Sources.php:110 ../../Zotlabs/Module/Sources.php:144 -msgid "Leave blank to import all public content" -msgstr "La stå tomt for å importere alt offentlig innhold" - -#: ../../Zotlabs/Module/Sources.php:111 ../../Zotlabs/Module/Sources.php:148 -msgid "Channel Name" -msgstr "Kanalnavn" - -#: ../../Zotlabs/Module/Sources.php:112 ../../Zotlabs/Module/Sources.php:147 +#: ../../Zotlabs/Module/Uexport.php:59 msgid "" -"Add the following categories to posts imported from this source (comma " -"separated)" -msgstr "Legg til følgende kategorier til innlegg importert fra denne kilden (kommeseparert)" +"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 "Eksporter din kanalinformasjon og det nyeste innholdet til en JSON-sikkerhetskopi, som kan gjenopprettes eller importeres til en annen hub. Denne lager en sikkerhetskopi av alle dine forbindelser, tillatelser, profildata og flere måneder av innholdet ditt. Denne filen kan være SVÆRT stor. Vennligst vær tålmodig - det kan ta flere minutter før denne nedlastningen begynner." -#: ../../Zotlabs/Module/Sources.php:133 ../../Zotlabs/Module/Sources.php:161 -msgid "Source not found." -msgstr "Kilden ble ikke funnet." +#: ../../Zotlabs/Module/Uexport.php:60 +msgid "Export your posts from a given year." +msgstr "Eksporter dine innlegg fra et bestemt år" -#: ../../Zotlabs/Module/Sources.php:140 -msgid "Edit Source" -msgstr "Endre kilde" +#: ../../Zotlabs/Module/Uexport.php:62 +msgid "" +"You may also export your posts and conversations for a particular year or " +"month. Adjust the date in your browser location bar to select other dates. " +"If the export fails (possibly due to memory exhaustion on your server hub), " +"please try again selecting a more limited date range." +msgstr "Du kan også eksportere dine innlegg og samtaler for et bestemt år eller måned. Juster datoen i din nettlesers adresselinje for å velge andre datoer. Hvis eksporten feiler (muligens på grunn av utilstrekkelig minne på din hub), vennligst prøv igjen med et mer begrenset datoområde." -#: ../../Zotlabs/Module/Sources.php:141 -msgid "Delete Source" -msgstr "Slett kilde" - -#: ../../Zotlabs/Module/Sources.php:169 -msgid "Source removed" -msgstr "Kilden er fjernet" - -#: ../../Zotlabs/Module/Sources.php:171 -msgid "Unable to remove source." -msgstr "Ikke i stand til å fjerne kilde." - -#: ../../Zotlabs/Module/Subthread.php:118 +#: ../../Zotlabs/Module/Uexport.php:63 #, php-format -msgid "%1$s is following %2$s's %3$s" -msgstr "%1$s følger %2$s sin %3$s" - -#: ../../Zotlabs/Module/Subthread.php:120 -#, php-format -msgid "%1$s stopped following %2$s's %3$s" -msgstr "%1$s stopped å følge %2$s sin %3$s" - -#: ../../Zotlabs/Module/Suggest.php:39 msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "Ingen forslag tilgjengelige. Hvis dette er et nytt nettsted, vennligst prøv igjen om 24 timer." +"To select all posts for a given year, such as this year, visit %2$s" +msgstr "For å velge alle innlegg for et gitt år, slik som iår, besøk %2$s" -#: ../../Zotlabs/Module/Suggest.php:58 ../../include/widgets.php:149 -msgid "Ignore/Hide" -msgstr "Ignorer/Skjul" - -#: ../../Zotlabs/Module/Tagger.php:55 ../../include/bbcode.php:263 -msgid "post" -msgstr "innlegg" - -#: ../../Zotlabs/Module/Tagger.php:57 ../../include/conversation.php:150 -#: ../../include/text.php:1929 -msgid "comment" -msgstr "kommentar" - -#: ../../Zotlabs/Module/Tagger.php:100 +#: ../../Zotlabs/Module/Uexport.php:64 #, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "%1$s merket %3$s til %2$s med %4$s" - -#: ../../Zotlabs/Module/Tagrm.php:48 ../../Zotlabs/Module/Tagrm.php:98 -msgid "Tag removed" -msgstr "Merkelapp fjernet" - -#: ../../Zotlabs/Module/Tagrm.php:123 -msgid "Remove Item Tag" -msgstr "Fjern merkelapp fra element" - -#: ../../Zotlabs/Module/Tagrm.php:125 -msgid "Select a tag to remove: " -msgstr "Velg merkelapp å fjerne:" - -#: ../../Zotlabs/Module/Webpages.php:191 ../../Zotlabs/Lib/Apps.php:218 -#: ../../include/nav.php:106 ../../include/conversation.php:1700 -msgid "Webpages" -msgstr "Websider" - -#: ../../Zotlabs/Module/Webpages.php:202 ../../include/page_widgets.php:44 -msgid "Actions" -msgstr "Handlinger" - -#: ../../Zotlabs/Module/Webpages.php:203 ../../include/page_widgets.php:45 -msgid "Page Link" -msgstr "Sidelenke" - -#: ../../Zotlabs/Module/Webpages.php:204 -msgid "Page Title" -msgstr "Sidetittel" - -#: ../../Zotlabs/Module/Wiki.php:34 -msgid "Not found" -msgstr "" - -#: ../../Zotlabs/Module/Wiki.php:92 ../../Zotlabs/Lib/Apps.php:219 -#: ../../include/nav.php:108 ../../include/conversation.php:1710 -#: ../../include/conversation.php:1713 ../../include/features.php:55 -msgid "Wiki" -msgstr "" - -#: ../../Zotlabs/Module/Wiki.php:93 -msgid "Sandbox" -msgstr "" - -#: ../../Zotlabs/Module/Wiki.php:95 msgid "" -"\"# Wiki Sandbox\\n\\nContent you **edit** and **preview** here *will not be" -" saved*.\"" -msgstr "" +"To select all posts for a given month, such as January of this year, visit " +"%2$s" +msgstr "For å velge alle innlegg fra en gitt måned, slik som januar i år, besøk %2$s" -#: ../../Zotlabs/Module/Wiki.php:164 -msgid "Revision Comparison" -msgstr "" +#: ../../Zotlabs/Module/Uexport.php:65 +#, php-format +msgid "" +"These content files may be imported or restored by visiting %2$s on any site containing your channel. For best results" +" please import or restore these in date order (oldest first)." +msgstr "Disse innholdsfilene kan importeres eller gjenopprettes ved å besøke %2$s på ethvert nettsted som inneholder din kanal. For best resultat, vennligst importer eller gjenopprett disse etter dato (eldste først)." -#: ../../Zotlabs/Module/Wiki.php:165 -msgid "Revert" -msgstr "" - -#: ../../Zotlabs/Module/Wiki.php:192 -msgid "Enter the name of your new wiki:" -msgstr "" - -#: ../../Zotlabs/Module/Wiki.php:193 -msgid "Enter the name of the new page:" -msgstr "" - -#: ../../Zotlabs/Module/Wiki.php:194 -msgid "Enter the new name:" -msgstr "" - -#: ../../Zotlabs/Module/Wiki.php:200 ../../include/conversation.php:1150 -msgid "Embed image from photo albums" -msgstr "" - -#: ../../Zotlabs/Module/Wiki.php:201 ../../include/conversation.php:1234 -msgid "Embed an image from your albums" -msgstr "" - -#: ../../Zotlabs/Module/Wiki.php:203 ../../include/conversation.php:1236 -#: ../../include/conversation.php:1273 -msgid "OK" -msgstr "OK" - -#: ../../Zotlabs/Module/Wiki.php:204 ../../include/conversation.php:1186 -msgid "Choose images to embed" -msgstr "" - -#: ../../Zotlabs/Module/Wiki.php:205 ../../include/conversation.php:1187 -msgid "Choose an album" -msgstr "" - -#: ../../Zotlabs/Module/Wiki.php:206 ../../include/conversation.php:1188 -msgid "Choose a different album..." -msgstr "" - -#: ../../Zotlabs/Module/Wiki.php:207 ../../include/conversation.php:1189 -msgid "Error getting album list" -msgstr "" - -#: ../../Zotlabs/Module/Wiki.php:208 ../../include/conversation.php:1190 -msgid "Error getting photo link" -msgstr "" - -#: ../../Zotlabs/Module/Wiki.php:209 ../../include/conversation.php:1191 -msgid "Error getting album" -msgstr "" - -#: ../../Zotlabs/Module/Viewconnections.php:65 +#: ../../Zotlabs/Module/Viewconnections.php:62 msgid "No connections." msgstr "Ingen forbindelser." -#: ../../Zotlabs/Module/Viewconnections.php:78 +#: ../../Zotlabs/Module/Viewconnections.php:75 #, php-format msgid "Visit %s's profile [%s]" msgstr "Besøk %s sin profil [%s]" -#: ../../Zotlabs/Module/Viewconnections.php:107 +#: ../../Zotlabs/Module/Viewconnections.php:104 msgid "View Connections" msgstr "Vis forbindelser" @@ -6527,23 +6238,22 @@ msgstr "Vis forbindelser" msgid "Source of Item" msgstr "Kilde til element" -#: ../../Zotlabs/Module/Api.php:61 ../../Zotlabs/Module/Api.php:85 -msgid "Authorize application connection" -msgstr "Tillat programforbindelse" +#: ../../Zotlabs/Module/Webpages.php:184 ../../Zotlabs/Lib/Apps.php:217 +#: ../../include/nav.php:106 ../../include/conversation.php:1685 +msgid "Webpages" +msgstr "Websider" -#: ../../Zotlabs/Module/Api.php:62 -msgid "Return to your app and insert this Securty Code:" -msgstr "Gå tilbake til din app og legg inn denne sikkerhetskoden:" +#: ../../Zotlabs/Module/Webpages.php:195 ../../include/page_widgets.php:41 +msgid "Actions" +msgstr "Handlinger" -#: ../../Zotlabs/Module/Api.php:72 -msgid "Please login to continue." -msgstr "Vennligst logg inn for å fortsette." +#: ../../Zotlabs/Module/Webpages.php:196 ../../include/page_widgets.php:42 +msgid "Page Link" +msgstr "Sidelenke" -#: ../../Zotlabs/Module/Api.php:87 -msgid "" -"Do you want to authorize this application to access your posts and contacts," -" and/or create new posts for you?" -msgstr "Vil du tillate dette programmet å få tilgang til dine innlegg og kontakter, og/eller lage nye innlegg for deg?" +#: ../../Zotlabs/Module/Webpages.php:197 +msgid "Page Title" +msgstr "Sidetittel" #: ../../Zotlabs/Module/Xchan.php:10 msgid "Xchan Lookup" @@ -6553,6 +6263,92 @@ msgstr "Xchan oppslag" msgid "Lookup xchan beginning with (or webbie): " msgstr "Slå opp xchan som begynner med (eller webbie):" +#: ../../Zotlabs/Lib/Apps.php:204 +msgid "Site Admin" +msgstr "Nettstedsadministrator" + +#: ../../Zotlabs/Lib/Apps.php:205 +msgid "Bug Report" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:206 +msgid "View Bookmarks" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:207 +msgid "My Chatrooms" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:209 +msgid "Firefox Share" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:210 +msgid "Remote Diagnostics" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:211 ../../include/features.php:89 +msgid "Suggest Channels" +msgstr "Foreslå kanaler" + +#: ../../Zotlabs/Lib/Apps.php:212 ../../include/nav.php:110 +#: ../../boot.php:1703 +msgid "Login" +msgstr "Logg inn" + +#: ../../Zotlabs/Lib/Apps.php:214 ../../include/nav.php:179 +msgid "Grid" +msgstr "Nett" + +#: ../../Zotlabs/Lib/Apps.php:218 ../../include/nav.php:182 +msgid "Channel Home" +msgstr "Kanalhjem" + +#: ../../Zotlabs/Lib/Apps.php:221 ../../include/nav.php:201 +#: ../../include/conversation.php:1649 ../../include/conversation.php:1652 +msgid "Events" +msgstr "Hendelser" + +#: ../../Zotlabs/Lib/Apps.php:222 ../../include/nav.php:167 +msgid "Directory" +msgstr "Katalog" + +#: ../../Zotlabs/Lib/Apps.php:224 ../../include/nav.php:193 +msgid "Mail" +msgstr "Melding" + +#: ../../Zotlabs/Lib/Apps.php:227 ../../include/nav.php:96 +msgid "Chat" +msgstr "Chat" + +#: ../../Zotlabs/Lib/Apps.php:229 +msgid "Probe" +msgstr "Undersøk" + +#: ../../Zotlabs/Lib/Apps.php:230 +msgid "Suggest" +msgstr "Forreslå" + +#: ../../Zotlabs/Lib/Apps.php:231 +msgid "Random Channel" +msgstr "Tilfeldig kanal" + +#: ../../Zotlabs/Lib/Apps.php:232 +msgid "Invite" +msgstr "Inviter" + +#: ../../Zotlabs/Lib/Apps.php:233 ../../include/widgets.php:1386 +msgid "Features" +msgstr "Funksjoner" + +#: ../../Zotlabs/Lib/Apps.php:235 +msgid "Post" +msgstr "Innlegg" + +#: ../../Zotlabs/Lib/Apps.php:335 +msgid "Purchase" +msgstr "Kjøp" + #: ../../Zotlabs/Lib/Chatroom.php:27 msgid "Missing room name" msgstr "Mangler romnavn" @@ -6573,19 +6369,19 @@ msgstr "Rommet ble ikke funnet." msgid "Room is full" msgstr "Rommet er fullt" -#: ../../Zotlabs/Lib/Enotify.php:60 ../../include/network.php:1882 +#: ../../Zotlabs/Lib/Enotify.php:60 ../../include/network.php:1823 msgid "$Projectname Notification" msgstr "$Projectname varsling" -#: ../../Zotlabs/Lib/Enotify.php:61 ../../include/network.php:1883 +#: ../../Zotlabs/Lib/Enotify.php:61 ../../include/network.php:1824 msgid "$projectname" msgstr "$projectname" -#: ../../Zotlabs/Lib/Enotify.php:63 ../../include/network.php:1885 +#: ../../Zotlabs/Lib/Enotify.php:63 ../../include/network.php:1826 msgid "Thank You," msgstr "Tusen takk," -#: ../../Zotlabs/Lib/Enotify.php:65 ../../include/network.php:1887 +#: ../../Zotlabs/Lib/Enotify.php:65 ../../include/network.php:1828 #, php-format msgid "%s Administrator" msgstr "%s administrator" @@ -6778,97 +6574,11 @@ msgstr "laget et nytt innlegg" msgid "commented on %s's post" msgstr "kommenterte på %s sitt innlegg" -#: ../../Zotlabs/Lib/Apps.php:205 -msgid "Site Admin" -msgstr "Nettstedsadministrator" - -#: ../../Zotlabs/Lib/Apps.php:206 -msgid "Bug Report" -msgstr "Feilmelding" - -#: ../../Zotlabs/Lib/Apps.php:207 -msgid "View Bookmarks" -msgstr "Vis bokmerker" - -#: ../../Zotlabs/Lib/Apps.php:208 -msgid "My Chatrooms" -msgstr "Mine chatrom" - -#: ../../Zotlabs/Lib/Apps.php:210 -msgid "Firefox Share" -msgstr "Firefox-deling" - -#: ../../Zotlabs/Lib/Apps.php:211 -msgid "Remote Diagnostics" -msgstr "Fjerndiagnostisering" - -#: ../../Zotlabs/Lib/Apps.php:212 ../../include/features.php:90 -msgid "Suggest Channels" -msgstr "Foreslå kanaler" - -#: ../../Zotlabs/Lib/Apps.php:213 ../../include/nav.php:112 -#: ../../boot.php:1704 -msgid "Login" -msgstr "Logg inn" - -#: ../../Zotlabs/Lib/Apps.php:215 ../../include/nav.php:181 -msgid "Grid" -msgstr "Nett" - -#: ../../Zotlabs/Lib/Apps.php:220 ../../include/nav.php:184 -msgid "Channel Home" -msgstr "Kanalhjem" - -#: ../../Zotlabs/Lib/Apps.php:223 ../../include/nav.php:203 -#: ../../include/conversation.php:1664 ../../include/conversation.php:1667 -msgid "Events" -msgstr "Hendelser" - -#: ../../Zotlabs/Lib/Apps.php:224 ../../include/nav.php:169 -msgid "Directory" -msgstr "Katalog" - -#: ../../Zotlabs/Lib/Apps.php:226 ../../include/nav.php:195 -msgid "Mail" -msgstr "Melding" - -#: ../../Zotlabs/Lib/Apps.php:229 ../../include/nav.php:96 -msgid "Chat" -msgstr "Chat" - -#: ../../Zotlabs/Lib/Apps.php:231 -msgid "Probe" -msgstr "Undersøk" - -#: ../../Zotlabs/Lib/Apps.php:232 -msgid "Suggest" -msgstr "Forreslå" - -#: ../../Zotlabs/Lib/Apps.php:233 -msgid "Random Channel" -msgstr "Tilfeldig kanal" - -#: ../../Zotlabs/Lib/Apps.php:234 -msgid "Invite" -msgstr "Inviter" - -#: ../../Zotlabs/Lib/Apps.php:235 ../../include/widgets.php:1480 -msgid "Features" -msgstr "Funksjoner" - -#: ../../Zotlabs/Lib/Apps.php:237 -msgid "Post" -msgstr "Innlegg" - -#: ../../Zotlabs/Lib/Apps.php:339 -msgid "Purchase" -msgstr "Kjøp" - -#: ../../Zotlabs/Lib/ThreadItem.php:95 ../../include/conversation.php:667 +#: ../../Zotlabs/Lib/ThreadItem.php:95 ../../include/conversation.php:664 msgid "Private Message" msgstr "Privat melding" -#: ../../Zotlabs/Lib/ThreadItem.php:132 ../../include/conversation.php:659 +#: ../../Zotlabs/Lib/ThreadItem.php:132 ../../include/conversation.php:656 msgid "Select" msgstr "Velg" @@ -6916,11 +6626,11 @@ msgstr "Skru av og på stjernestatus" msgid "starred" msgstr "stjernemerket" -#: ../../Zotlabs/Lib/ThreadItem.php:234 ../../include/conversation.php:674 +#: ../../Zotlabs/Lib/ThreadItem.php:234 ../../include/conversation.php:671 msgid "Message signature validated" msgstr "Innleggets signatur er bekreftet" -#: ../../Zotlabs/Lib/ThreadItem.php:235 ../../include/conversation.php:675 +#: ../../Zotlabs/Lib/ThreadItem.php:235 ../../include/conversation.php:672 msgid "Message signature incorrect" msgstr "Innleggets signatur er feil" @@ -6976,17 +6686,17 @@ msgstr "vegg-til-vegg" msgid "via Wall-To-Wall:" msgstr "via vegg-til-vegg:" -#: ../../Zotlabs/Lib/ThreadItem.php:341 ../../include/conversation.php:722 +#: ../../Zotlabs/Lib/ThreadItem.php:341 ../../include/conversation.php:719 #, php-format msgid "from %s" msgstr "fra %s" -#: ../../Zotlabs/Lib/ThreadItem.php:344 ../../include/conversation.php:725 +#: ../../Zotlabs/Lib/ThreadItem.php:344 ../../include/conversation.php:722 #, php-format msgid "last edited: %s" msgstr "sist endret: %s" -#: ../../Zotlabs/Lib/ThreadItem.php:345 ../../include/conversation.php:726 +#: ../../Zotlabs/Lib/ThreadItem.php:345 ../../include/conversation.php:723 #, php-format msgid "Expires: %s" msgstr "Utløper: %s" @@ -7004,27 +6714,26 @@ msgid "Mark all seen" msgstr "Merk alle som sett" #: ../../Zotlabs/Lib/ThreadItem.php:421 ../../include/js_strings.php:7 -#, php-format -msgid "%s show all" -msgstr "" +msgid "[+] show all" +msgstr "[+] Vis alle" -#: ../../Zotlabs/Lib/ThreadItem.php:711 ../../include/conversation.php:1226 +#: ../../Zotlabs/Lib/ThreadItem.php:711 ../../include/conversation.php:1215 msgid "Bold" msgstr "Uthevet" -#: ../../Zotlabs/Lib/ThreadItem.php:712 ../../include/conversation.php:1227 +#: ../../Zotlabs/Lib/ThreadItem.php:712 ../../include/conversation.php:1216 msgid "Italic" msgstr "Kursiv" -#: ../../Zotlabs/Lib/ThreadItem.php:713 ../../include/conversation.php:1228 +#: ../../Zotlabs/Lib/ThreadItem.php:713 ../../include/conversation.php:1217 msgid "Underline" msgstr "Understreket" -#: ../../Zotlabs/Lib/ThreadItem.php:714 ../../include/conversation.php:1229 +#: ../../Zotlabs/Lib/ThreadItem.php:714 ../../include/conversation.php:1218 msgid "Quote" msgstr "Sitat" -#: ../../Zotlabs/Lib/ThreadItem.php:715 ../../include/conversation.php:1230 +#: ../../Zotlabs/Lib/ThreadItem.php:715 ../../include/conversation.php:1219 msgid "Code" msgstr "Kode" @@ -7040,74 +6749,11 @@ msgstr "Sett inn lenke" msgid "Video" msgstr "Video" -#: ../../Zotlabs/Lib/PermissionDescription.php:31 -#: ../../include/acl_selectors.php:230 -msgid "Visible to your default audience" -msgstr "Synlig for ditt standard publikum" - -#: ../../Zotlabs/Lib/PermissionDescription.php:106 -#: ../../include/acl_selectors.php:266 -msgid "Only me" -msgstr "Bare meg" - -#: ../../Zotlabs/Lib/PermissionDescription.php:107 -msgid "Public" -msgstr "Offentlig" - -#: ../../Zotlabs/Lib/PermissionDescription.php:108 -msgid "Anybody in the $Projectname network" -msgstr "Enhver i $Projectname -nettverket" - -#: ../../Zotlabs/Lib/PermissionDescription.php:109 -#, php-format -msgid "Any account on %s" -msgstr "Enhver konto på %s" - -#: ../../Zotlabs/Lib/PermissionDescription.php:110 -msgid "Any of my connections" -msgstr "Enhver av mine forbindelser" - -#: ../../Zotlabs/Lib/PermissionDescription.php:111 -msgid "Only connections I specifically allow" -msgstr "Bare forbindelser som jeg spesifikt tillater" - -#: ../../Zotlabs/Lib/PermissionDescription.php:112 -msgid "Anybody authenticated (could include visitors from other networks)" -msgstr "Enhver som er autentisert (kan inkludere besøkende fra andre nettverk)" - -#: ../../Zotlabs/Lib/PermissionDescription.php:113 -msgid "Any connections including those who haven't yet been approved" -msgstr "Enhver forbindelse inkluder de som ennå ikke er blitt godkjent" - -#: ../../Zotlabs/Lib/PermissionDescription.php:152 -msgid "" -"This is your default setting for the audience of your normal stream, and " -"posts." -msgstr "Dette er dine standardinnstillinger for publikumet til din normale strøm og innlegg." - -#: ../../Zotlabs/Lib/PermissionDescription.php:153 -msgid "" -"This is your default setting for who can view your default channel profile" -msgstr "Dette er din standardinnstilling for hvem som kan se din standard kanalprofil" - -#: ../../Zotlabs/Lib/PermissionDescription.php:154 -msgid "This is your default setting for who can view your connections" -msgstr "Dette er din standardinnstilling for hvem som kan se dine forbindelser" - -#: ../../Zotlabs/Lib/PermissionDescription.php:155 -msgid "" -"This is your default setting for who can view your file storage and photos" -msgstr "Dette er din standardinnstilling for hvem som kan se fillagreret ditt og bilder" - -#: ../../Zotlabs/Lib/PermissionDescription.php:156 -msgid "This is your default setting for the audience of your webpages" -msgstr "Dette er din standardinnstilling for besøkende til dine websider" - #: ../../include/Import/import_diaspora.php:16 msgid "No username found in import file." msgstr "Ingen brukernavn ble funnet i importfilen." -#: ../../include/Import/import_diaspora.php:41 ../../include/import.php:51 +#: ../../include/Import/import_diaspora.php:41 ../../include/import.php:50 msgid "Unable to create a unique channel address. Import failed." msgstr "Klarte ikke å lage en unik kanaladresse. Import mislyktes." @@ -7116,291 +6762,6 @@ msgstr "Klarte ikke å lage en unik kanaladresse. Import mislyktes." msgid "Cannot locate DNS info for database server '%s'" msgstr "Kan ikke finne DNS-informasjon om databasetjener '%s'" -#: ../../include/photos.php:114 -#, php-format -msgid "Image exceeds website size limit of %lu bytes" -msgstr "Bilde overstiger nettstedets størrelsesbegrensning på %lu bytes" - -#: ../../include/photos.php:121 -msgid "Image file is empty." -msgstr "Bildefilen er tom." - -#: ../../include/photos.php:259 -msgid "Photo storage failed." -msgstr "Bildelagring mislyktes." - -#: ../../include/photos.php:299 -msgid "a new photo" -msgstr "et nytt bilde" - -#: ../../include/photos.php:303 -#, php-format -msgctxt "photo_upload" -msgid "%1$s posted %2$s to %3$s" -msgstr "%1$s la inn %2$s til %3$s" - -#: ../../include/photos.php:506 ../../include/conversation.php:1650 -msgid "Photo Albums" -msgstr "Fotoalbum" - -#: ../../include/photos.php:510 -msgid "Upload New Photos" -msgstr "Last opp nye bilder" - -#: ../../include/nav.php:82 ../../include/nav.php:115 ../../boot.php:1703 -msgid "Logout" -msgstr "Logg ut" - -#: ../../include/nav.php:82 ../../include/nav.php:115 -msgid "End this session" -msgstr "Avslutt denne økten" - -#: ../../include/nav.php:85 ../../include/nav.php:146 -msgid "Home" -msgstr "Hjem" - -#: ../../include/nav.php:85 -msgid "Your posts and conversations" -msgstr "Dine innlegg og samtaler" - -#: ../../include/nav.php:86 -msgid "Your profile page" -msgstr "Din profilside" - -#: ../../include/nav.php:88 -msgid "Manage/Edit profiles" -msgstr "Håndter/endre profiler" - -#: ../../include/nav.php:90 ../../include/channel.php:980 -msgid "Edit Profile" -msgstr "Endre profil" - -#: ../../include/nav.php:90 -msgid "Edit your profile" -msgstr "Endre din profil" - -#: ../../include/nav.php:92 -msgid "Your photos" -msgstr "Dine bilder" - -#: ../../include/nav.php:93 -msgid "Your files" -msgstr "Dine filer" - -#: ../../include/nav.php:96 -msgid "Your chatrooms" -msgstr "Dine chatterom" - -#: ../../include/nav.php:102 ../../include/conversation.php:1690 -msgid "Bookmarks" -msgstr "Bokmerker" - -#: ../../include/nav.php:102 -msgid "Your bookmarks" -msgstr "Dine bokmerker" - -#: ../../include/nav.php:106 -msgid "Your webpages" -msgstr "Dine websider" - -#: ../../include/nav.php:108 -msgid "Your wiki" -msgstr "" - -#: ../../include/nav.php:112 -msgid "Sign in" -msgstr "Logg på" - -#: ../../include/nav.php:129 -#, php-format -msgid "%s - click to logout" -msgstr "%s - klikk for å logge ut" - -#: ../../include/nav.php:132 -msgid "Remote authentication" -msgstr "Fjernautentisering" - -#: ../../include/nav.php:132 -msgid "Click to authenticate to your home hub" -msgstr "Klikk for å godkjennes mot din hjemme-hub" - -#: ../../include/nav.php:146 -msgid "Home Page" -msgstr "Hjemmeside" - -#: ../../include/nav.php:149 -msgid "Create an account" -msgstr "Lag en konto" - -#: ../../include/nav.php:161 -msgid "Help and documentation" -msgstr "Hjelp og dokumentasjon" - -#: ../../include/nav.php:165 -msgid "Applications, utilities, links, games" -msgstr "Programmer, verktøy, lenker, spill" - -#: ../../include/nav.php:167 -msgid "Search site @name, #tag, ?docs, content" -msgstr "Søk nettstedet for @navn, #merkelapp, ?dokumentasjon, innhold" - -#: ../../include/nav.php:169 -msgid "Channel Directory" -msgstr "Kanalkatalog" - -#: ../../include/nav.php:181 -msgid "Your grid" -msgstr "Ditt nett" - -#: ../../include/nav.php:182 -msgid "Mark all grid notifications seen" -msgstr "Marker alle nettvarsler som sett" - -#: ../../include/nav.php:184 -msgid "Channel home" -msgstr "Kanalhjem" - -#: ../../include/nav.php:185 -msgid "Mark all channel notifications seen" -msgstr "Merk alle kanalvarsler som sett" - -#: ../../include/nav.php:191 -msgid "Notices" -msgstr "Varsel" - -#: ../../include/nav.php:191 -msgid "Notifications" -msgstr "Varsler" - -#: ../../include/nav.php:192 -msgid "See all notifications" -msgstr "Se alle varsler" - -#: ../../include/nav.php:195 -msgid "Private mail" -msgstr "Privat post" - -#: ../../include/nav.php:196 -msgid "See all private messages" -msgstr "Se alle private meldinger" - -#: ../../include/nav.php:197 -msgid "Mark all private messages seen" -msgstr "Merk alle private meldinger som sett" - -#: ../../include/nav.php:198 ../../include/widgets.php:667 -msgid "Inbox" -msgstr "Innboks" - -#: ../../include/nav.php:199 ../../include/widgets.php:672 -msgid "Outbox" -msgstr "Utboks" - -#: ../../include/nav.php:200 ../../include/widgets.php:677 -msgid "New Message" -msgstr "Ny melding" - -#: ../../include/nav.php:203 -msgid "Event Calendar" -msgstr "Kalender" - -#: ../../include/nav.php:204 -msgid "See all events" -msgstr "Se alle hendelser" - -#: ../../include/nav.php:205 -msgid "Mark all events seen" -msgstr "Merk alle hendelser som sett" - -#: ../../include/nav.php:208 -msgid "Manage Your Channels" -msgstr "Håndter dine kanaler" - -#: ../../include/nav.php:210 -msgid "Account/Channel Settings" -msgstr "Konto-/kanal-innstillinger" - -#: ../../include/nav.php:218 ../../include/widgets.php:1510 -msgid "Admin" -msgstr "Administrator" - -#: ../../include/nav.php:218 -msgid "Site Setup and Configuration" -msgstr "Nettstedsoppsett og -konfigurasjon" - -#: ../../include/nav.php:249 ../../include/conversation.php:854 -msgid "Loading..." -msgstr "Laster..." - -#: ../../include/nav.php:254 -msgid "@name, #tag, ?doc, content" -msgstr "@navn, #merkelapp, ?dokumentasjon, innhold" - -#: ../../include/nav.php:255 -msgid "Please wait..." -msgstr "Vennligst vent..." - -#: ../../include/network.php:704 -msgid "view full size" -msgstr "vis full størrelse" - -#: ../../include/network.php:1930 ../../include/account.php:317 -#: ../../include/account.php:344 ../../include/account.php:404 -msgid "Administrator" -msgstr "Administrator" - -#: ../../include/network.php:1944 -msgid "No Subject" -msgstr "Uten emne" - -#: ../../include/network.php:2198 ../../include/network.php:2199 -msgid "Friendica" -msgstr "Friendica" - -#: ../../include/network.php:2200 -msgid "OStatus" -msgstr "OStatus" - -#: ../../include/network.php:2201 -msgid "GNU-Social" -msgstr "GNU-Social" - -#: ../../include/network.php:2202 -msgid "RSS/Atom" -msgstr "RSS/Atom" - -#: ../../include/network.php:2204 -msgid "Diaspora" -msgstr "Diaspora" - -#: ../../include/network.php:2205 -msgid "Facebook" -msgstr "Facebook" - -#: ../../include/network.php:2206 -msgid "Zot" -msgstr "Zot" - -#: ../../include/network.php:2207 -msgid "LinkedIn" -msgstr "LinkedIn" - -#: ../../include/network.php:2208 -msgid "XMPP/IM" -msgstr "XMPP/IM" - -#: ../../include/network.php:2209 -msgid "MySpace" -msgstr "MySpace" - -#: ../../include/page_widgets.php:7 -msgid "New Page" -msgstr "Ny side" - -#: ../../include/page_widgets.php:46 -msgid "Title" -msgstr "Tittel" - #: ../../include/taxonomy.php:188 ../../include/taxonomy.php:270 #: ../../include/widgets.php:46 ../../include/widgets.php:429 #: ../../include/contact_widgets.php:91 @@ -7439,159 +6800,952 @@ msgstr "liker" msgid "dislikes" msgstr "misliker" -#: ../../include/channel.php:33 -msgid "Unable to obtain identity information from database" -msgstr "Klarer ikke å få tak i identitetsinformasjon fra databasen" +#: ../../include/event.php:22 ../../include/event.php:69 +#: ../../include/bb2diaspora.php:485 +msgid "l F d, Y \\@ g:i A" +msgstr "l F d, Y \\@ g:i A" -#: ../../include/channel.php:67 -msgid "Empty name" -msgstr "Mangler navn" +#: ../../include/event.php:30 ../../include/event.php:73 +#: ../../include/bb2diaspora.php:491 +msgid "Starts:" +msgstr "Starter:" -#: ../../include/channel.php:70 -msgid "Name too long" -msgstr "Navnet er for langt" +#: ../../include/event.php:40 ../../include/event.php:77 +#: ../../include/bb2diaspora.php:499 +msgid "Finishes:" +msgstr "Slutter:" -#: ../../include/channel.php:181 -msgid "No account identifier" -msgstr "Ingen kontoidentifikator" +#: ../../include/event.php:812 +msgid "This event has been added to your calendar." +msgstr "Denne hendelsen er lagt til i din kalender." -#: ../../include/channel.php:193 -msgid "Nickname is required." -msgstr "Kallenavn er påkrevd." +#: ../../include/event.php:1012 +msgid "Not specified" +msgstr "Ikke spesifisert" -#: ../../include/channel.php:207 -msgid "Reserved nickname. Please choose another." -msgstr "Reservert kallenavn. Vennligst velg et annet." +#: ../../include/event.php:1013 +msgid "Needs Action" +msgstr "Trenger handling" -#: ../../include/channel.php:212 +#: ../../include/event.php:1014 +msgid "Completed" +msgstr "Ferdig" + +#: ../../include/event.php:1015 +msgid "In Process" +msgstr "Igang" + +#: ../../include/event.php:1016 +msgid "Cancelled" +msgstr "Avbrutt" + +#: ../../include/import.php:29 msgid "" -"Nickname has unsupported characters or is already being used on this site." -msgstr "Kallenavnet inneholder tegn som ikke er støttet eller det er allerede i bruk på dette nettstedet." +"Cannot create a duplicate channel identifier on this system. Import failed." +msgstr "Kan ikke lage en kopi av kanal-identifikatoren på dette systemet. Import mislyktes." -#: ../../include/channel.php:272 -msgid "Unable to retrieve created identity" -msgstr "Klarer ikke å hente den lagede identiteten" +#: ../../include/import.php:76 +msgid "Channel clone failed. Import failed." +msgstr "Kanalkloning mislyktes. Import mislyktes." -#: ../../include/channel.php:341 -msgid "Default Profile" -msgstr "Standardprofil" +#: ../../include/items.php:892 ../../include/items.php:937 +msgid "(Unknown)" +msgstr "(Ukjent)" -#: ../../include/channel.php:830 -msgid "Requested channel is not available." -msgstr "Forespurt kanal er ikke tilgjengelig." +#: ../../include/items.php:1136 +msgid "Visible to anybody on the internet." +msgstr "Synlig for enhver på Internett." -#: ../../include/channel.php:977 -msgid "Create New Profile" -msgstr "Lag ny profil" +#: ../../include/items.php:1138 +msgid "Visible to you only." +msgstr "Synlig bare for deg." -#: ../../include/channel.php:997 -msgid "Visible to everybody" -msgstr "Synlig for alle" +#: ../../include/items.php:1140 +msgid "Visible to anybody in this network." +msgstr "Synlig for enhver i dette nettverket." -#: ../../include/channel.php:1070 ../../include/channel.php:1182 -msgid "Gender:" -msgstr "Kjønn:" +#: ../../include/items.php:1142 +msgid "Visible to anybody authenticated." +msgstr "Synlig for enhver som er autentisert." -#: ../../include/channel.php:1071 ../../include/channel.php:1226 -msgid "Status:" -msgstr "Status:" - -#: ../../include/channel.php:1072 ../../include/channel.php:1237 -msgid "Homepage:" -msgstr "Hjemmeside:" - -#: ../../include/channel.php:1073 -msgid "Online Now" -msgstr "Online nå" - -#: ../../include/channel.php:1187 -msgid "Like this channel" -msgstr "Lik denne kanalen" - -#: ../../include/channel.php:1211 -msgid "j F, Y" -msgstr "j F, Y" - -#: ../../include/channel.php:1212 -msgid "j F" -msgstr "j F" - -#: ../../include/channel.php:1219 -msgid "Birthday:" -msgstr "Fødselsdag:" - -#: ../../include/channel.php:1232 +#: ../../include/items.php:1144 #, php-format -msgid "for %1$d %2$s" -msgstr "for %1$d %2$s" +msgid "Visible to anybody on %s." +msgstr "Synlig for alle på %s." -#: ../../include/channel.php:1235 -msgid "Sexual Preference:" -msgstr "Seksuell preferanse:" +#: ../../include/items.php:1146 +msgid "Visible to all connections." +msgstr "Synlig for alle forbindelser." -#: ../../include/channel.php:1241 -msgid "Tags:" -msgstr "Merkelapper:" +#: ../../include/items.php:1148 +msgid "Visible to approved connections." +msgstr "Synlig for godkjente forbindelser." -#: ../../include/channel.php:1243 -msgid "Political Views:" -msgstr "Politiske synspunkter:" +#: ../../include/items.php:1150 +msgid "Visible to specific connections." +msgstr "Synlig for spesifikke forbindelser." -#: ../../include/channel.php:1245 -msgid "Religion:" -msgstr "Religion:" +#: ../../include/items.php:3909 +msgid "Privacy group is empty." +msgstr "Personverngruppen er tom." -#: ../../include/channel.php:1249 -msgid "Hobbies/Interests:" -msgstr "Hobbyer/interesser:" +#: ../../include/items.php:3916 +#, php-format +msgid "Privacy group: %s" +msgstr "Personverngruppe: %s" -#: ../../include/channel.php:1251 -msgid "Likes:" -msgstr "Liker:" +#: ../../include/items.php:3928 +msgid "Connection not found." +msgstr "Forbindelsen ble ikke funnet." -#: ../../include/channel.php:1253 -msgid "Dislikes:" -msgstr "Misliker:" +#: ../../include/items.php:4277 +msgid "profile photo" +msgstr "profilbilde" -#: ../../include/channel.php:1255 -msgid "Contact information and Social Networks:" -msgstr "Kontaktinformasjon og sosiale nettverk:" +#: ../../include/message.php:20 +msgid "No recipient provided." +msgstr "Ingen mottaker angitt." -#: ../../include/channel.php:1257 -msgid "My other channels:" -msgstr "Mine andre kanaler:" +#: ../../include/message.php:25 +msgid "[no subject]" +msgstr "[ikke noe emne]" -#: ../../include/channel.php:1259 -msgid "Musical interests:" -msgstr "Musikkinteresse:" +#: ../../include/message.php:45 +msgid "Unable to determine sender." +msgstr "Kan ikke avgjøre avsender." -#: ../../include/channel.php:1261 -msgid "Books, literature:" -msgstr "Bøker, litteratur:" +#: ../../include/message.php:222 +msgid "Stored post could not be verified." +msgstr "Lagret innlegg kunne ikke bekreftes." -#: ../../include/channel.php:1263 -msgid "Television:" -msgstr "TV:" +#: ../../include/text.php:428 +msgid "prev" +msgstr "forrige" -#: ../../include/channel.php:1265 -msgid "Film/dance/culture/entertainment:" -msgstr "Film/dans/kultur/underholdning:" +#: ../../include/text.php:430 +msgid "first" +msgstr "første" -#: ../../include/channel.php:1267 -msgid "Love/Romance:" -msgstr "Kjærlighet/romantikk:" +#: ../../include/text.php:459 +msgid "last" +msgstr "siste" -#: ../../include/channel.php:1269 -msgid "Work/employment:" -msgstr "Arbeid/sysselsetting:" +#: ../../include/text.php:462 +msgid "next" +msgstr "neste" -#: ../../include/channel.php:1271 -msgid "School/education:" -msgstr "Skole/utdannelse:" +#: ../../include/text.php:472 +msgid "older" +msgstr "eldre" -#: ../../include/channel.php:1292 -msgid "Like this thing" -msgstr "Lik denne tingen" +#: ../../include/text.php:474 +msgid "newer" +msgstr "nyere" + +#: ../../include/text.php:863 +msgid "No connections" +msgstr "Ingen forbindelser" + +#: ../../include/text.php:888 +#, php-format +msgid "View all %s connections" +msgstr "Vis alle %s forbindelser" + +#: ../../include/text.php:1033 ../../include/text.php:1038 +msgid "poke" +msgstr "prikk" + +#: ../../include/text.php:1033 ../../include/text.php:1038 +#: ../../include/conversation.php:243 +msgid "poked" +msgstr "prikket" + +#: ../../include/text.php:1039 +msgid "ping" +msgstr "varsle" + +#: ../../include/text.php:1039 +msgid "pinged" +msgstr "varslet" + +#: ../../include/text.php:1040 +msgid "prod" +msgstr "oppildne" + +#: ../../include/text.php:1040 +msgid "prodded" +msgstr "oppildnet" + +#: ../../include/text.php:1041 +msgid "slap" +msgstr "daske" + +#: ../../include/text.php:1041 +msgid "slapped" +msgstr "dasket" + +#: ../../include/text.php:1042 +msgid "finger" +msgstr "fingre" + +#: ../../include/text.php:1042 +msgid "fingered" +msgstr "fingret" + +#: ../../include/text.php:1043 +msgid "rebuff" +msgstr "tilbakevise" + +#: ../../include/text.php:1043 +msgid "rebuffed" +msgstr "tilbakeviste" + +#: ../../include/text.php:1055 +msgid "happy" +msgstr "glad" + +#: ../../include/text.php:1056 +msgid "sad" +msgstr "trist" + +#: ../../include/text.php:1057 +msgid "mellow" +msgstr "dempet" + +#: ../../include/text.php:1058 +msgid "tired" +msgstr "trøtt" + +#: ../../include/text.php:1059 +msgid "perky" +msgstr "oppkvikket" + +#: ../../include/text.php:1060 +msgid "angry" +msgstr "sint" + +#: ../../include/text.php:1061 +msgid "stupefied" +msgstr "lamslått" + +#: ../../include/text.php:1062 +msgid "puzzled" +msgstr "forundret" + +#: ../../include/text.php:1063 +msgid "interested" +msgstr "interessert" + +#: ../../include/text.php:1064 +msgid "bitter" +msgstr "bitter" + +#: ../../include/text.php:1065 +msgid "cheerful" +msgstr "munter" + +#: ../../include/text.php:1066 +msgid "alive" +msgstr "levende" + +#: ../../include/text.php:1067 +msgid "annoyed" +msgstr "irritert" + +#: ../../include/text.php:1068 +msgid "anxious" +msgstr "nervøs" + +#: ../../include/text.php:1069 +msgid "cranky" +msgstr "gretten" + +#: ../../include/text.php:1070 +msgid "disturbed" +msgstr "foruroliget" + +#: ../../include/text.php:1071 +msgid "frustrated" +msgstr "frustrert" + +#: ../../include/text.php:1072 +msgid "depressed" +msgstr "lei seg" + +#: ../../include/text.php:1073 +msgid "motivated" +msgstr "motivert" + +#: ../../include/text.php:1074 +msgid "relaxed" +msgstr "avslappet" + +#: ../../include/text.php:1075 +msgid "surprised" +msgstr "overrasket" + +#: ../../include/text.php:1257 ../../include/js_strings.php:70 +msgid "Monday" +msgstr "mandag" + +#: ../../include/text.php:1257 ../../include/js_strings.php:71 +msgid "Tuesday" +msgstr "tirsdag" + +#: ../../include/text.php:1257 ../../include/js_strings.php:72 +msgid "Wednesday" +msgstr "onsdag" + +#: ../../include/text.php:1257 ../../include/js_strings.php:73 +msgid "Thursday" +msgstr "torsdag" + +#: ../../include/text.php:1257 ../../include/js_strings.php:74 +msgid "Friday" +msgstr "fredag" + +#: ../../include/text.php:1257 ../../include/js_strings.php:75 +msgid "Saturday" +msgstr "lørdag" + +#: ../../include/text.php:1257 ../../include/js_strings.php:69 +msgid "Sunday" +msgstr "søndag" + +#: ../../include/text.php:1261 ../../include/js_strings.php:45 +msgid "January" +msgstr "januar" + +#: ../../include/text.php:1261 ../../include/js_strings.php:46 +msgid "February" +msgstr "februar" + +#: ../../include/text.php:1261 ../../include/js_strings.php:47 +msgid "March" +msgstr "mars" + +#: ../../include/text.php:1261 ../../include/js_strings.php:48 +msgid "April" +msgstr "april" + +#: ../../include/text.php:1261 +msgid "May" +msgstr "mai" + +#: ../../include/text.php:1261 ../../include/js_strings.php:50 +msgid "June" +msgstr "juni" + +#: ../../include/text.php:1261 ../../include/js_strings.php:51 +msgid "July" +msgstr "juli" + +#: ../../include/text.php:1261 ../../include/js_strings.php:52 +msgid "August" +msgstr "august" + +#: ../../include/text.php:1261 ../../include/js_strings.php:53 +msgid "September" +msgstr "september" + +#: ../../include/text.php:1261 ../../include/js_strings.php:54 +msgid "October" +msgstr "oktober" + +#: ../../include/text.php:1261 ../../include/js_strings.php:55 +msgid "November" +msgstr "november" + +#: ../../include/text.php:1261 ../../include/js_strings.php:56 +msgid "December" +msgstr "desember" + +#: ../../include/text.php:1338 ../../include/text.php:1342 +msgid "Unknown Attachment" +msgstr "Ukjent vedlegg" + +#: ../../include/text.php:1344 +msgid "unknown" +msgstr "ukjent" + +#: ../../include/text.php:1380 +msgid "remove category" +msgstr "fjern kategori" + +#: ../../include/text.php:1457 +msgid "remove from file" +msgstr "fjern fra fil" + +#: ../../include/text.php:1753 ../../include/text.php:1824 +msgid "default" +msgstr "standard" + +#: ../../include/text.php:1761 +msgid "Page layout" +msgstr "Sidens layout" + +#: ../../include/text.php:1761 +msgid "You can create your own with the layouts tool" +msgstr "Du kan lage din egen med layout-verktøyet" + +#: ../../include/text.php:1803 +msgid "Page content type" +msgstr "Sidens innholdstype" + +#: ../../include/text.php:1836 +msgid "Select an alternate language" +msgstr "Velg et annet språk" + +#: ../../include/text.php:1953 +msgid "activity" +msgstr "aktivitet" + +#: ../../include/text.php:2262 +msgid "Design Tools" +msgstr "Designverktøy" + +#: ../../include/text.php:2268 +msgid "Pages" +msgstr "Sider" + +#: ../../include/widgets.php:103 +msgid "System" +msgstr "System" + +#: ../../include/widgets.php:106 +msgid "New App" +msgstr "" + +#: ../../include/widgets.php:154 +msgid "Suggestions" +msgstr "Forslag" + +#: ../../include/widgets.php:155 +msgid "See more..." +msgstr "Se mer..." + +#: ../../include/widgets.php:175 +#, php-format +msgid "You have %1$.0f of %2$.0f allowed connections." +msgstr "Du har %1$.0f av %2$.0f tillate forbindelser." + +#: ../../include/widgets.php:181 +msgid "Add New Connection" +msgstr "Legg til ny forbindelse" + +#: ../../include/widgets.php:182 +msgid "Enter channel address" +msgstr "Skriv kanaladressen" + +#: ../../include/widgets.php:183 +msgid "Examples: bob@example.com, https://example.com/barbara" +msgstr "Eksempel: ola@eksempel.no, https://eksempel.no/kari" + +#: ../../include/widgets.php:199 +msgid "Notes" +msgstr "Merknader" + +#: ../../include/widgets.php:273 +msgid "Remove term" +msgstr "Fjern begrep" + +#: ../../include/widgets.php:281 ../../include/features.php:84 +msgid "Saved Searches" +msgstr "Lagrede søk" + +#: ../../include/widgets.php:282 ../../include/group.php:316 +msgid "add" +msgstr "legg til" + +#: ../../include/widgets.php:310 ../../include/contact_widgets.php:53 +#: ../../include/features.php:98 +msgid "Saved Folders" +msgstr "Lagrede mapper" + +#: ../../include/widgets.php:313 ../../include/widgets.php:432 +#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:94 +msgid "Everything" +msgstr "Alt" + +#: ../../include/widgets.php:354 +msgid "Archives" +msgstr "Arkiv" + +#: ../../include/widgets.php:516 +msgid "Refresh" +msgstr "Forny" + +#: ../../include/widgets.php:556 +msgid "Account settings" +msgstr "Kontoinnstillinger" + +#: ../../include/widgets.php:562 +msgid "Channel settings" +msgstr "Kanalinnstillinger" + +#: ../../include/widgets.php:571 +msgid "Additional features" +msgstr "Tilleggsfunksjoner" + +#: ../../include/widgets.php:578 +msgid "Feature/Addon settings" +msgstr "Funksjons-/Tilleggsinnstillinger" + +#: ../../include/widgets.php:584 +msgid "Display settings" +msgstr "Visningsinnstillinger" + +#: ../../include/widgets.php:591 +msgid "Manage locations" +msgstr "" + +#: ../../include/widgets.php:600 +msgid "Export channel" +msgstr "Eksporter kanal" + +#: ../../include/widgets.php:607 +msgid "Connected apps" +msgstr "Tilkoblede app-er" + +#: ../../include/widgets.php:622 +msgid "Premium Channel Settings" +msgstr "Premiumkanal-innstillinger" + +#: ../../include/widgets.php:651 +msgid "Private Mail Menu" +msgstr "Meny for privat post" + +#: ../../include/widgets.php:653 +msgid "Combined View" +msgstr "Kombinert visning" + +#: ../../include/widgets.php:658 ../../include/nav.php:196 +msgid "Inbox" +msgstr "Innboks" + +#: ../../include/widgets.php:663 ../../include/nav.php:197 +msgid "Outbox" +msgstr "Utboks" + +#: ../../include/widgets.php:668 ../../include/nav.php:198 +msgid "New Message" +msgstr "Ny melding" + +#: ../../include/widgets.php:685 ../../include/widgets.php:697 +msgid "Conversations" +msgstr "Samtaler" + +#: ../../include/widgets.php:689 +msgid "Received Messages" +msgstr "Mottatte meldinger" + +#: ../../include/widgets.php:693 +msgid "Sent Messages" +msgstr "Sendte meldinger" + +#: ../../include/widgets.php:707 +msgid "No messages." +msgstr "Ingen meldinger." + +#: ../../include/widgets.php:725 +msgid "Delete conversation" +msgstr "Slett samtale" + +#: ../../include/widgets.php:751 +msgid "Events Menu" +msgstr "Meny for hendelser" + +#: ../../include/widgets.php:752 +msgid "Day View" +msgstr "Dag" + +#: ../../include/widgets.php:753 +msgid "Week View" +msgstr "Uke" + +#: ../../include/widgets.php:754 +msgid "Month View" +msgstr "Måned" + +#: ../../include/widgets.php:766 +msgid "Events Tools" +msgstr "Kalenderverktøy" + +#: ../../include/widgets.php:767 +msgid "Export Calendar" +msgstr "Eksporter kalender" + +#: ../../include/widgets.php:768 +msgid "Import Calendar" +msgstr "Importer kalender" + +#: ../../include/widgets.php:842 ../../include/conversation.php:1662 +#: ../../include/conversation.php:1665 +msgid "Chatrooms" +msgstr "Chatrom" + +#: ../../include/widgets.php:846 +msgid "Overview" +msgstr "" + +#: ../../include/widgets.php:853 +msgid "Chat Members" +msgstr "" + +#: ../../include/widgets.php:876 +msgid "Bookmarked Chatrooms" +msgstr "Bokmerkede chatrom" + +#: ../../include/widgets.php:899 +msgid "Suggested Chatrooms" +msgstr "Foreslåtte chatrom" + +#: ../../include/widgets.php:1044 ../../include/widgets.php:1156 +msgid "photo/image" +msgstr "foto/bilde" + +#: ../../include/widgets.php:1099 +msgid "Click to show more" +msgstr "" + +#: ../../include/widgets.php:1250 +msgid "Rating Tools" +msgstr "Vurderingsverktøy" + +#: ../../include/widgets.php:1254 ../../include/widgets.php:1256 +msgid "Rate Me" +msgstr "Vurder meg" + +#: ../../include/widgets.php:1259 +msgid "View Ratings" +msgstr "Vis vurderinger" + +#: ../../include/widgets.php:1316 +msgid "Forums" +msgstr "Forum" + +#: ../../include/widgets.php:1345 +msgid "Tasks" +msgstr "Oppgaver" + +#: ../../include/widgets.php:1354 +msgid "Documentation" +msgstr "Dokumentasjon" + +#: ../../include/widgets.php:1356 +msgid "Project/Site Information" +msgstr "Prosjekt-/Nettstedsinformasjon" + +#: ../../include/widgets.php:1357 +msgid "For Members" +msgstr "For medlemmer" + +#: ../../include/widgets.php:1358 +msgid "For Administrators" +msgstr "For administratorer" + +#: ../../include/widgets.php:1359 +msgid "For Developers" +msgstr "For utviklere" + +#: ../../include/widgets.php:1383 ../../include/widgets.php:1421 +msgid "Member registrations waiting for confirmation" +msgstr "" + +#: ../../include/widgets.php:1389 +msgid "Inspect queue" +msgstr "Inspiser kø" + +#: ../../include/widgets.php:1391 +msgid "DB updates" +msgstr "Databaseoppdateringer" + +#: ../../include/widgets.php:1416 ../../include/nav.php:216 +msgid "Admin" +msgstr "Administrator" + +#: ../../include/widgets.php:1417 +msgid "Plugin Features" +msgstr "Tilleggsfunksjoner" + +#: ../../include/follow.php:27 +msgid "Channel is blocked on this site." +msgstr "Kanalen er blokkert på dette nettstedet." + +#: ../../include/follow.php:32 +msgid "Channel location missing." +msgstr "Kanalplassering mangler." + +#: ../../include/follow.php:81 +msgid "Response from remote channel was incomplete." +msgstr "Svaret fra den andre kanalen var ikke komplett." + +#: ../../include/follow.php:98 +msgid "Channel was deleted and no longer exists." +msgstr "Kanalen er slettet og finnes ikke lenger." + +#: ../../include/follow.php:154 ../../include/follow.php:190 +msgid "Protocol disabled." +msgstr "Protokollen er avskrudd." + +#: ../../include/follow.php:178 +msgid "Channel discovery failed." +msgstr "Kanaloppdagelse mislyktes." + +#: ../../include/follow.php:216 +msgid "Cannot connect to yourself." +msgstr "Kan ikke lage forbindelse med deg selv." + +#: ../../include/bookmarks.php:35 +#, php-format +msgid "%1$s's bookmarks" +msgstr "%1$s sine bokmerker" + +#: ../../include/api.php:1336 +msgid "Public Timeline" +msgstr "Offentlig tidslinje" + +#: ../../include/bbcode.php:123 ../../include/bbcode.php:844 +#: ../../include/bbcode.php:847 ../../include/bbcode.php:852 +#: ../../include/bbcode.php:855 ../../include/bbcode.php:858 +#: ../../include/bbcode.php:861 ../../include/bbcode.php:866 +#: ../../include/bbcode.php:869 ../../include/bbcode.php:874 +#: ../../include/bbcode.php:877 ../../include/bbcode.php:880 +#: ../../include/bbcode.php:883 +msgid "Image/photo" +msgstr "Bilde/fotografi" + +#: ../../include/bbcode.php:162 ../../include/bbcode.php:894 +msgid "Encrypted content" +msgstr "Kryptert innhold" + +#: ../../include/bbcode.php:178 +#, php-format +msgid "Install %s element: " +msgstr "Installer %s element:" + +#: ../../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 "Dette innlegget inneholder det installerbare elementet %s, men du mangler tillatelse til å installere det på dette nettstedet." + +#: ../../include/bbcode.php:254 +#, php-format +msgid "%1$s wrote the following %2$s %3$s" +msgstr "%1$s skrev følgende %2$s %3$s" + +#: ../../include/bbcode.php:331 ../../include/bbcode.php:339 +msgid "Click to open/close" +msgstr "Klikk for å åpne/lukke" + +#: ../../include/bbcode.php:339 +msgid "spoiler" +msgstr "" + +#: ../../include/bbcode.php:585 +msgid "Different viewers will see this text differently" +msgstr "Denne teksten vil se forskjellig ut for ulike besøkende" + +#: ../../include/bbcode.php:832 +msgid "$1 wrote:" +msgstr "$1 skrev:" + +#: ../../include/dir_fns.php:141 +msgid "Directory Options" +msgstr "Kataloginnstillinger" + +#: ../../include/dir_fns.php:143 +msgid "Safe Mode" +msgstr "Trygt modus" + +#: ../../include/dir_fns.php:144 +msgid "Public Forums Only" +msgstr "Bare offentlige forum" + +#: ../../include/dir_fns.php:145 +msgid "This Website Only" +msgstr "Kun dette nettstedet" + +#: ../../include/security.php:383 +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 "Skjemaets sikkerhetspollett var ikke gyldig. Dette skjedde antakelig fordi skjemaet har vært åpnet for lenge (>3 timer) før det ble sendt inn." + +#: ../../include/nav.php:82 ../../include/nav.php:113 ../../boot.php:1702 +msgid "Logout" +msgstr "Logg ut" + +#: ../../include/nav.php:82 ../../include/nav.php:113 +msgid "End this session" +msgstr "Avslutt denne økten" + +#: ../../include/nav.php:85 ../../include/nav.php:144 +msgid "Home" +msgstr "Hjem" + +#: ../../include/nav.php:85 +msgid "Your posts and conversations" +msgstr "Dine innlegg og samtaler" + +#: ../../include/nav.php:86 +msgid "Your profile page" +msgstr "Din profilside" + +#: ../../include/nav.php:88 +msgid "Manage/Edit profiles" +msgstr "Håndter/endre profiler" + +#: ../../include/nav.php:90 ../../include/channel.php:941 +msgid "Edit Profile" +msgstr "Endre profil" + +#: ../../include/nav.php:90 +msgid "Edit your profile" +msgstr "Endre din profil" + +#: ../../include/nav.php:92 +msgid "Your photos" +msgstr "Dine bilder" + +#: ../../include/nav.php:93 +msgid "Your files" +msgstr "Dine filer" + +#: ../../include/nav.php:96 +msgid "Your chatrooms" +msgstr "Dine chatterom" + +#: ../../include/nav.php:102 ../../include/conversation.php:1675 +msgid "Bookmarks" +msgstr "Bokmerker" + +#: ../../include/nav.php:102 +msgid "Your bookmarks" +msgstr "Dine bokmerker" + +#: ../../include/nav.php:106 +msgid "Your webpages" +msgstr "Dine websider" + +#: ../../include/nav.php:110 +msgid "Sign in" +msgstr "Logg på" + +#: ../../include/nav.php:127 +#, php-format +msgid "%s - click to logout" +msgstr "%s - klikk for å logge ut" + +#: ../../include/nav.php:130 +msgid "Remote authentication" +msgstr "Fjernautentisering" + +#: ../../include/nav.php:130 +msgid "Click to authenticate to your home hub" +msgstr "Klikk for å godkjennes mot din hjemme-hub" + +#: ../../include/nav.php:144 +msgid "Home Page" +msgstr "Hjemmeside" + +#: ../../include/nav.php:147 +msgid "Create an account" +msgstr "Lag en konto" + +#: ../../include/nav.php:159 +msgid "Help and documentation" +msgstr "Hjelp og dokumentasjon" + +#: ../../include/nav.php:163 +msgid "Applications, utilities, links, games" +msgstr "Programmer, verktøy, lenker, spill" + +#: ../../include/nav.php:165 +msgid "Search site @name, #tag, ?docs, content" +msgstr "Søk nettstedet for @navn, #merkelapp, ?dokumentasjon, innhold" + +#: ../../include/nav.php:167 +msgid "Channel Directory" +msgstr "Kanalkatalog" + +#: ../../include/nav.php:179 +msgid "Your grid" +msgstr "Ditt nett" + +#: ../../include/nav.php:180 +msgid "Mark all grid notifications seen" +msgstr "Marker alle nettvarsler som sett" + +#: ../../include/nav.php:182 +msgid "Channel home" +msgstr "Kanalhjem" + +#: ../../include/nav.php:183 +msgid "Mark all channel notifications seen" +msgstr "Merk alle kanalvarsler som sett" + +#: ../../include/nav.php:189 +msgid "Notices" +msgstr "Varsel" + +#: ../../include/nav.php:189 +msgid "Notifications" +msgstr "Varsler" + +#: ../../include/nav.php:190 +msgid "See all notifications" +msgstr "Se alle varsler" + +#: ../../include/nav.php:193 +msgid "Private mail" +msgstr "Privat post" + +#: ../../include/nav.php:194 +msgid "See all private messages" +msgstr "Se alle private meldinger" + +#: ../../include/nav.php:195 +msgid "Mark all private messages seen" +msgstr "Merk alle private meldinger som sett" + +#: ../../include/nav.php:201 +msgid "Event Calendar" +msgstr "Kalender" + +#: ../../include/nav.php:202 +msgid "See all events" +msgstr "Se alle hendelser" + +#: ../../include/nav.php:203 +msgid "Mark all events seen" +msgstr "Merk alle hendelser som sett" + +#: ../../include/nav.php:206 +msgid "Manage Your Channels" +msgstr "Håndter dine kanaler" + +#: ../../include/nav.php:208 +msgid "Account/Channel Settings" +msgstr "Konto-/kanal-innstillinger" + +#: ../../include/nav.php:216 +msgid "Site Setup and Configuration" +msgstr "Nettstedsoppsett og -konfigurasjon" + +#: ../../include/nav.php:247 ../../include/conversation.php:851 +msgid "Loading..." +msgstr "Laster..." + +#: ../../include/nav.php:252 +msgid "@name, #tag, ?doc, content" +msgstr "@navn, #merkelapp, ?dokumentasjon, innhold" + +#: ../../include/nav.php:253 +msgid "Please wait..." +msgstr "Vennligst vent..." #: ../../include/connections.php:95 msgid "New window" @@ -7606,6 +7760,52 @@ msgstr "Åpne det valgte stedet i et annet vindu eller nettleser-fane" msgid "User '%s' deleted" msgstr "Brukeren '%s' er slettet" +#: ../../include/contact_widgets.php:11 +#, php-format +msgid "%d invitation available" +msgid_plural "%d invitations available" +msgstr[0] "%d invitasjon tilgjengelig" +msgstr[1] "%d invitasjoner tilgjengelig" + +#: ../../include/contact_widgets.php:19 +msgid "Find Channels" +msgstr "Finn kanaler" + +#: ../../include/contact_widgets.php:20 +msgid "Enter name or interest" +msgstr "Skriv navn eller interesse" + +#: ../../include/contact_widgets.php:21 +msgid "Connect/Follow" +msgstr "Forbindelse/Følg" + +#: ../../include/contact_widgets.php:22 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "Eksempler: Ola Nordmann, fisking" + +#: ../../include/contact_widgets.php:26 +msgid "Random Profile" +msgstr "Tilfeldig profil" + +#: ../../include/contact_widgets.php:27 +msgid "Invite Friends" +msgstr "Inviter venner" + +#: ../../include/contact_widgets.php:29 +msgid "Advanced example: name=fred and country=iceland" +msgstr "Avansert eksempel: navn=fred og land=island" + +#: ../../include/contact_widgets.php:122 +#, php-format +msgid "%d connection in common" +msgid_plural "%d connections in common" +msgstr[0] "%d forbindelse felles" +msgstr[1] "%d forbindelser felles" + +#: ../../include/contact_widgets.php:127 +msgid "show more" +msgstr "vis mer" + #: ../../include/conversation.php:204 #, php-format msgid "%1$s is now connected with %2$s" @@ -7616,269 +7816,258 @@ msgstr "%1$s er nå forbundet med %2$s" msgid "%1$s poked %2$s" msgstr "%1$s prikket %2$s" -#: ../../include/conversation.php:243 ../../include/text.php:1013 -#: ../../include/text.php:1018 -msgid "poked" -msgstr "prikket" - -#: ../../include/conversation.php:694 +#: ../../include/conversation.php:691 #, php-format msgid "View %s's profile @ %s" msgstr "Vis %s sin profile @ %s" -#: ../../include/conversation.php:713 +#: ../../include/conversation.php:710 msgid "Categories:" msgstr "Kategorier:" -#: ../../include/conversation.php:714 +#: ../../include/conversation.php:711 msgid "Filed under:" msgstr "Sortert under:" -#: ../../include/conversation.php:741 +#: ../../include/conversation.php:738 msgid "View in context" msgstr "Vis i sammenheng" -#: ../../include/conversation.php:850 +#: ../../include/conversation.php:847 msgid "remove" msgstr "fjern" -#: ../../include/conversation.php:855 +#: ../../include/conversation.php:852 msgid "Delete Selected Items" msgstr "Slett valgte elementer" -#: ../../include/conversation.php:951 +#: ../../include/conversation.php:948 msgid "View Source" msgstr "Vis kilde" -#: ../../include/conversation.php:952 +#: ../../include/conversation.php:949 msgid "Follow Thread" msgstr "Følg tråd" -#: ../../include/conversation.php:953 +#: ../../include/conversation.php:950 msgid "Unfollow Thread" msgstr "Ikke følg tråd" -#: ../../include/conversation.php:958 +#: ../../include/conversation.php:955 msgid "Activity/Posts" msgstr "Aktivitet/Innlegg" -#: ../../include/conversation.php:960 +#: ../../include/conversation.php:957 msgid "Edit Connection" msgstr "Endre forbindelse" -#: ../../include/conversation.php:961 +#: ../../include/conversation.php:958 msgid "Message" msgstr "Melding" -#: ../../include/conversation.php:1078 +#: ../../include/conversation.php:1075 #, php-format msgid "%s likes this." msgstr "%s liker dette." -#: ../../include/conversation.php:1078 +#: ../../include/conversation.php:1075 #, php-format msgid "%s doesn't like this." msgstr "%s liker ikke dette." -#: ../../include/conversation.php:1082 +#: ../../include/conversation.php:1079 #, php-format msgid "%2$d people like this." msgid_plural "%2$d people like this." msgstr[0] "%2$d person liker dette." msgstr[1] "%2$d personer liker dette." -#: ../../include/conversation.php:1084 +#: ../../include/conversation.php:1081 #, php-format msgid "%2$d people don't like this." msgid_plural "%2$d people don't like this." msgstr[0] "%2$d person liker ikke dette." msgstr[1] "%2$d personer liker ikke dette." -#: ../../include/conversation.php:1090 +#: ../../include/conversation.php:1087 msgid "and" msgstr "og" -#: ../../include/conversation.php:1093 +#: ../../include/conversation.php:1090 #, php-format msgid ", and %d other people" msgid_plural ", and %d other people" msgstr[0] ", og %d annen person" msgstr[1] ", og %d andre personer" -#: ../../include/conversation.php:1094 +#: ../../include/conversation.php:1091 #, php-format msgid "%s like this." msgstr "%s liker dette." -#: ../../include/conversation.php:1094 +#: ../../include/conversation.php:1091 #, php-format msgid "%s don't like this." msgstr "%s liker ikke dette." -#: ../../include/conversation.php:1133 +#: ../../include/conversation.php:1130 msgid "Set your location" msgstr "Angi din plassering" -#: ../../include/conversation.php:1134 +#: ../../include/conversation.php:1131 msgid "Clear browser location" msgstr "Fjern nettleserplassering" -#: ../../include/conversation.php:1182 +#: ../../include/conversation.php:1177 msgid "Tag term:" msgstr "Merkelapp:" -#: ../../include/conversation.php:1183 +#: ../../include/conversation.php:1178 msgid "Where are you right now?" msgstr "Hvor er du akkurat nå?" -#: ../../include/conversation.php:1221 +#: ../../include/conversation.php:1210 msgid "Page link name" msgstr "Sidens lenkenavn" -#: ../../include/conversation.php:1224 +#: ../../include/conversation.php:1213 msgid "Post as" msgstr "Lag innlegg som" -#: ../../include/conversation.php:1238 +#: ../../include/conversation.php:1223 msgid "Toggle voting" msgstr "Skru av eller på stemming" -#: ../../include/conversation.php:1246 +#: ../../include/conversation.php:1231 msgid "Categories (optional, comma-separated list)" msgstr "Kategorier (valgfri, kommaseparert liste)" -#: ../../include/conversation.php:1269 +#: ../../include/conversation.php:1254 msgid "Set publish date" msgstr "Angi publiseringsdato" -#: ../../include/conversation.php:1518 +#: ../../include/conversation.php:1258 +msgid "OK" +msgstr "OK" + +#: ../../include/conversation.php:1503 msgid "Discover" msgstr "Oppdage" -#: ../../include/conversation.php:1521 +#: ../../include/conversation.php:1506 msgid "Imported public streams" msgstr "Importerte offentlige strømmer" -#: ../../include/conversation.php:1526 +#: ../../include/conversation.php:1511 msgid "Commented Order" msgstr "Kommentert" -#: ../../include/conversation.php:1529 +#: ../../include/conversation.php:1514 msgid "Sort by Comment Date" msgstr "Sorter etter kommentert dato" -#: ../../include/conversation.php:1533 +#: ../../include/conversation.php:1518 msgid "Posted Order" msgstr "Lagt inn" -#: ../../include/conversation.php:1536 +#: ../../include/conversation.php:1521 msgid "Sort by Post Date" msgstr "Sorter etter innleggsdato" -#: ../../include/conversation.php:1544 +#: ../../include/conversation.php:1529 msgid "Posts that mention or involve you" msgstr "Innlegg som nevner eller involverer deg" -#: ../../include/conversation.php:1553 +#: ../../include/conversation.php:1538 msgid "Activity Stream - by date" msgstr "Aktivitetsstrøm - etter dato" -#: ../../include/conversation.php:1559 +#: ../../include/conversation.php:1544 msgid "Starred" msgstr "Stjerne" -#: ../../include/conversation.php:1562 +#: ../../include/conversation.php:1547 msgid "Favourite Posts" msgstr "Favorittinnlegg" -#: ../../include/conversation.php:1569 +#: ../../include/conversation.php:1554 msgid "Spam" msgstr "Søppel" -#: ../../include/conversation.php:1572 +#: ../../include/conversation.php:1557 msgid "Posts flagged as SPAM" msgstr "Innlegg merket som SØPPEL" -#: ../../include/conversation.php:1629 +#: ../../include/conversation.php:1614 msgid "Status Messages and Posts" msgstr "Statusmeldinger og -innlegg" -#: ../../include/conversation.php:1638 +#: ../../include/conversation.php:1623 msgid "About" msgstr "Om" -#: ../../include/conversation.php:1641 +#: ../../include/conversation.php:1626 msgid "Profile Details" msgstr "Profildetaljer" -#: ../../include/conversation.php:1657 +#: ../../include/conversation.php:1635 ../../include/photos.php:502 +msgid "Photo Albums" +msgstr "Fotoalbum" + +#: ../../include/conversation.php:1642 msgid "Files and Storage" msgstr "Filer og lagring" -#: ../../include/conversation.php:1677 ../../include/conversation.php:1680 -#: ../../include/widgets.php:836 -msgid "Chatrooms" -msgstr "Chatrom" - -#: ../../include/conversation.php:1693 +#: ../../include/conversation.php:1678 msgid "Saved Bookmarks" msgstr "Lagrede bokmerker" -#: ../../include/conversation.php:1703 +#: ../../include/conversation.php:1688 msgid "Manage Webpages" msgstr "Håndtere websider" -#: ../../include/conversation.php:1768 +#: ../../include/conversation.php:1747 msgctxt "noun" msgid "Attending" msgid_plural "Attending" msgstr[0] "Deltar" msgstr[1] "Deltar" -#: ../../include/conversation.php:1771 +#: ../../include/conversation.php:1750 msgctxt "noun" msgid "Not Attending" msgid_plural "Not Attending" msgstr[0] "Deltar ikke" msgstr[1] "Deltar ikke" -#: ../../include/conversation.php:1774 +#: ../../include/conversation.php:1753 msgctxt "noun" msgid "Undecided" msgid_plural "Undecided" msgstr[0] "Ikke bestemt" msgstr[1] "Ikke bestemt" -#: ../../include/conversation.php:1777 +#: ../../include/conversation.php:1756 msgctxt "noun" msgid "Agree" msgid_plural "Agrees" msgstr[0] "Enig" msgstr[1] "Enige" -#: ../../include/conversation.php:1780 +#: ../../include/conversation.php:1759 msgctxt "noun" msgid "Disagree" msgid_plural "Disagrees" msgstr[0] "Uenig" msgstr[1] "Uenige" -#: ../../include/conversation.php:1783 +#: ../../include/conversation.php:1762 msgctxt "noun" msgid "Abstain" msgid_plural "Abstains" msgstr[0] "Avstår" msgstr[1] "Avstår" -#: ../../include/import.php:30 -msgid "" -"Cannot create a duplicate channel identifier on this system. Import failed." -msgstr "Kan ikke lage en kopi av kanal-identifikatoren på dette systemet. Import mislyktes." - -#: ../../include/import.php:97 -msgid "Channel clone failed. Import failed." -msgstr "Kanalkloning mislyktes. Import mislyktes." - #: ../../include/selectors.php:30 msgid "Frequently" msgstr "Ofte" @@ -7943,6 +8132,12 @@ msgstr "Intetkjønn" msgid "Non-specific" msgstr "Ubestemt" +#: ../../include/selectors.php:49 ../../include/selectors.php:66 +#: ../../include/selectors.php:104 ../../include/selectors.php:140 +#: ../../include/permissions.php:881 +msgid "Other" +msgstr "Annen" + #: ../../include/selectors.php:49 msgid "Undecided" msgstr "Ubestemt" @@ -8119,366 +8314,361 @@ msgstr "Bryr meg ikke" msgid "Ask me" msgstr "Spør meg" -#: ../../include/bookmarks.php:35 -#, php-format -msgid "%1$s's bookmarks" -msgstr "%1$s sine bokmerker" +#: ../../include/PermissionDescription.php:31 +#: ../../include/acl_selectors.php:232 +msgid "Visible to your default audience" +msgstr "Synlig for ditt standard publikum" -#: ../../include/security.php:109 -msgid "guest:" +#: ../../include/PermissionDescription.php:115 +#: ../../include/acl_selectors.php:268 +msgid "Only me" msgstr "" -#: ../../include/security.php:427 -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 "Skjemaets sikkerhetspollett var ikke gyldig. Dette skjedde antakelig fordi skjemaet har vært åpnet for lenge (>3 timer) før det ble sendt inn." +#: ../../include/PermissionDescription.php:116 +msgid "Public" +msgstr "Offentlig" -#: ../../include/text.php:404 -msgid "prev" -msgstr "forrige" +#: ../../include/PermissionDescription.php:117 +msgid "Anybody in the $Projectname network" +msgstr "" -#: ../../include/text.php:406 -msgid "first" -msgstr "første" - -#: ../../include/text.php:435 -msgid "last" -msgstr "siste" - -#: ../../include/text.php:438 -msgid "next" -msgstr "neste" - -#: ../../include/text.php:448 -msgid "older" -msgstr "eldre" - -#: ../../include/text.php:450 -msgid "newer" -msgstr "nyere" - -#: ../../include/text.php:843 -msgid "No connections" -msgstr "Ingen forbindelser" - -#: ../../include/text.php:868 +#: ../../include/PermissionDescription.php:118 #, php-format -msgid "View all %s connections" -msgstr "Vis alle %s forbindelser" +msgid "Any account on %s" +msgstr "" -#: ../../include/text.php:1013 ../../include/text.php:1018 -msgid "poke" -msgstr "prikk" +#: ../../include/PermissionDescription.php:119 +msgid "Any of my connections" +msgstr "" -#: ../../include/text.php:1019 -msgid "ping" -msgstr "varsle" +#: ../../include/PermissionDescription.php:120 +msgid "Only connections I specifically allow" +msgstr "" -#: ../../include/text.php:1019 -msgid "pinged" -msgstr "varslet" +#: ../../include/PermissionDescription.php:121 +msgid "Anybody authenticated (could include visitors from other networks)" +msgstr "" -#: ../../include/text.php:1020 -msgid "prod" -msgstr "oppildne" +#: ../../include/PermissionDescription.php:122 +msgid "Any connections including those who haven't yet been approved" +msgstr "" -#: ../../include/text.php:1020 -msgid "prodded" -msgstr "oppildnet" - -#: ../../include/text.php:1021 -msgid "slap" -msgstr "daske" - -#: ../../include/text.php:1021 -msgid "slapped" -msgstr "dasket" - -#: ../../include/text.php:1022 -msgid "finger" -msgstr "fingre" - -#: ../../include/text.php:1022 -msgid "fingered" -msgstr "fingret" - -#: ../../include/text.php:1023 -msgid "rebuff" -msgstr "tilbakevise" - -#: ../../include/text.php:1023 -msgid "rebuffed" -msgstr "tilbakeviste" - -#: ../../include/text.php:1035 -msgid "happy" -msgstr "glad" - -#: ../../include/text.php:1036 -msgid "sad" -msgstr "trist" - -#: ../../include/text.php:1037 -msgid "mellow" -msgstr "dempet" - -#: ../../include/text.php:1038 -msgid "tired" -msgstr "trøtt" - -#: ../../include/text.php:1039 -msgid "perky" -msgstr "oppkvikket" - -#: ../../include/text.php:1040 -msgid "angry" -msgstr "sint" - -#: ../../include/text.php:1041 -msgid "stupefied" -msgstr "lamslått" - -#: ../../include/text.php:1042 -msgid "puzzled" -msgstr "forundret" - -#: ../../include/text.php:1043 -msgid "interested" -msgstr "interessert" - -#: ../../include/text.php:1044 -msgid "bitter" -msgstr "bitter" - -#: ../../include/text.php:1045 -msgid "cheerful" -msgstr "munter" - -#: ../../include/text.php:1046 -msgid "alive" -msgstr "levende" - -#: ../../include/text.php:1047 -msgid "annoyed" -msgstr "irritert" - -#: ../../include/text.php:1048 -msgid "anxious" -msgstr "nervøs" - -#: ../../include/text.php:1049 -msgid "cranky" -msgstr "gretten" - -#: ../../include/text.php:1050 -msgid "disturbed" -msgstr "foruroliget" - -#: ../../include/text.php:1051 -msgid "frustrated" -msgstr "frustrert" - -#: ../../include/text.php:1052 -msgid "depressed" -msgstr "lei seg" - -#: ../../include/text.php:1053 -msgid "motivated" -msgstr "motivert" - -#: ../../include/text.php:1054 -msgid "relaxed" -msgstr "avslappet" - -#: ../../include/text.php:1055 -msgid "surprised" -msgstr "overrasket" - -#: ../../include/text.php:1237 ../../include/js_strings.php:70 -msgid "Monday" -msgstr "mandag" - -#: ../../include/text.php:1237 ../../include/js_strings.php:71 -msgid "Tuesday" -msgstr "tirsdag" - -#: ../../include/text.php:1237 ../../include/js_strings.php:72 -msgid "Wednesday" -msgstr "onsdag" - -#: ../../include/text.php:1237 ../../include/js_strings.php:73 -msgid "Thursday" -msgstr "torsdag" - -#: ../../include/text.php:1237 ../../include/js_strings.php:74 -msgid "Friday" -msgstr "fredag" - -#: ../../include/text.php:1237 ../../include/js_strings.php:75 -msgid "Saturday" -msgstr "lørdag" - -#: ../../include/text.php:1237 ../../include/js_strings.php:69 -msgid "Sunday" -msgstr "søndag" - -#: ../../include/text.php:1241 ../../include/js_strings.php:45 -msgid "January" -msgstr "januar" - -#: ../../include/text.php:1241 ../../include/js_strings.php:46 -msgid "February" -msgstr "februar" - -#: ../../include/text.php:1241 ../../include/js_strings.php:47 -msgid "March" -msgstr "mars" - -#: ../../include/text.php:1241 ../../include/js_strings.php:48 -msgid "April" -msgstr "april" - -#: ../../include/text.php:1241 -msgid "May" -msgstr "mai" - -#: ../../include/text.php:1241 ../../include/js_strings.php:50 -msgid "June" -msgstr "juni" - -#: ../../include/text.php:1241 ../../include/js_strings.php:51 -msgid "July" -msgstr "juli" - -#: ../../include/text.php:1241 ../../include/js_strings.php:52 -msgid "August" -msgstr "august" - -#: ../../include/text.php:1241 ../../include/js_strings.php:53 -msgid "September" -msgstr "september" - -#: ../../include/text.php:1241 ../../include/js_strings.php:54 -msgid "October" -msgstr "oktober" - -#: ../../include/text.php:1241 ../../include/js_strings.php:55 -msgid "November" -msgstr "november" - -#: ../../include/text.php:1241 ../../include/js_strings.php:56 -msgid "December" -msgstr "desember" - -#: ../../include/text.php:1318 ../../include/text.php:1322 -msgid "Unknown Attachment" -msgstr "Ukjent vedlegg" - -#: ../../include/text.php:1324 -msgid "unknown" -msgstr "ukjent" - -#: ../../include/text.php:1360 -msgid "remove category" -msgstr "fjern kategori" - -#: ../../include/text.php:1437 -msgid "remove from file" -msgstr "fjern fra fil" - -#: ../../include/text.php:1734 ../../include/text.php:1805 -msgid "default" -msgstr "standard" - -#: ../../include/text.php:1742 -msgid "Page layout" -msgstr "Sidens layout" - -#: ../../include/text.php:1742 -msgid "You can create your own with the layouts tool" -msgstr "Du kan lage din egen med layout-verktøyet" - -#: ../../include/text.php:1784 -msgid "Page content type" -msgstr "Sidens innholdstype" - -#: ../../include/text.php:1817 -msgid "Select an alternate language" -msgstr "Velg et annet språk" - -#: ../../include/text.php:1934 -msgid "activity" -msgstr "aktivitet" - -#: ../../include/text.php:2235 -msgid "Design Tools" -msgstr "Designverktøy" - -#: ../../include/text.php:2241 -msgid "Pages" -msgstr "Sider" - -#: ../../include/auth.php:147 -msgid "Logged out." -msgstr "Logget ut." - -#: ../../include/auth.php:274 -msgid "Failed authentication" -msgstr "Mislykket autentisering" - -#: ../../include/permissions.php:26 -msgid "Can view my normal stream and posts" -msgstr "Kan se min normale strøm og innlegg" - -#: ../../include/permissions.php:30 -msgid "Can view my webpages" -msgstr "Kan se mine websider" - -#: ../../include/permissions.php:34 -msgid "Can post on my channel page (\"wall\")" -msgstr "Kan lage innlegg på min kanalside (\"vegg\")" - -#: ../../include/permissions.php:37 -msgid "Can like/dislike stuff" -msgstr "Kan like/ikke like forskjellige greier" - -#: ../../include/permissions.php:37 -msgid "Profiles and things other than posts/comments" -msgstr "Profiler og andre ting enn innlegg/kommentarer" - -#: ../../include/permissions.php:39 -msgid "Can forward to all my channel contacts via post @mentions" -msgstr "Kan videresende til alle mine kanalkontakter via @navn i innlegg" - -#: ../../include/permissions.php:39 -msgid "Advanced - useful for creating group forum channels" -msgstr "Avansert - nyttig for å lage forumkanaler for grupper" - -#: ../../include/permissions.php:40 -msgid "Can chat with me (when available)" -msgstr "Kan chatte/sende lynmeldinger til meg (når tilgjengelig)" - -#: ../../include/permissions.php:41 -msgid "Can write to my file storage and photos" -msgstr "Kan skrive til mitt lager for filer og bilder" - -#: ../../include/permissions.php:42 -msgid "Can edit my webpages" -msgstr "Kan endre mine websider" - -#: ../../include/permissions.php:44 -msgid "Somewhat advanced - very useful in open communities" -msgstr "Litt avansert - svært nyttig i åpne fellesskap" - -#: ../../include/permissions.php:46 -msgid "Can administer my channel resources" -msgstr "Kan administrere mine kanalressurser" - -#: ../../include/permissions.php:46 +#: ../../include/PermissionDescription.php:161 msgid "" -"Extremely advanced. Leave this alone unless you know what you are doing" -msgstr "Ekstremt avansert. La dette være med mindre du vet hva du gjør" +"This is your default setting for the audience of your normal stream, and " +"posts." +msgstr "" + +#: ../../include/PermissionDescription.php:162 +msgid "" +"This is your default setting for who can view your default channel profile" +msgstr "" + +#: ../../include/PermissionDescription.php:163 +msgid "This is your default setting for who can view your connections" +msgstr "" + +#: ../../include/PermissionDescription.php:164 +msgid "" +"This is your default setting for who can view your file storage and photos" +msgstr "" + +#: ../../include/PermissionDescription.php:165 +msgid "This is your default setting for the audience of your webpages" +msgstr "" + +#: ../../include/account.php:28 +msgid "Not a valid email address" +msgstr "Ikke en gyldig e-postadresse" + +#: ../../include/account.php:30 +msgid "Your email domain is not among those allowed on this site" +msgstr "Ditt e-postdomene er ikke blant de som er tillatt på dette stedet" + +#: ../../include/account.php:36 +msgid "Your email address is already registered at this site." +msgstr "Din e-postadresse er allerede registrert på dette nettstedet." + +#: ../../include/account.php:68 +msgid "An invitation is required." +msgstr "En invitasjon er påkrevd." + +#: ../../include/account.php:72 +msgid "Invitation could not be verified." +msgstr "Invitasjon kunne ikke bekreftes." + +#: ../../include/account.php:122 +msgid "Please enter the required information." +msgstr "Vennligst skriv inn nødvendig informasjon." + +#: ../../include/account.php:189 +msgid "Failed to store account information." +msgstr "Mislyktes med å lagre kontoinformasjon." + +#: ../../include/account.php:249 +#, php-format +msgid "Registration confirmation for %s" +msgstr "Registreringsbekreftelse for %s" + +#: ../../include/account.php:315 +#, php-format +msgid "Registration request at %s" +msgstr "Registreringsforespørsel hos %s" + +#: ../../include/account.php:317 ../../include/account.php:344 +#: ../../include/account.php:404 ../../include/network.php:1871 +msgid "Administrator" +msgstr "Administrator" + +#: ../../include/account.php:339 +msgid "your registration password" +msgstr "ditt registreringspassord" + +#: ../../include/account.php:342 ../../include/account.php:402 +#, php-format +msgid "Registration details for %s" +msgstr "Registreringsdetaljer for %s" + +#: ../../include/account.php:414 +msgid "Account approved." +msgstr "Konto godkjent." + +#: ../../include/account.php:454 +#, php-format +msgid "Registration revoked for %s" +msgstr "Registrering trukket tilbake for %s" + +#: ../../include/account.php:506 +msgid "Account verified. Please login." +msgstr "Konto bekreftet. Vennligst logg inn." + +#: ../../include/account.php:723 ../../include/account.php:725 +msgid "Click here to upgrade." +msgstr "Klikk her for å oppgradere." + +#: ../../include/account.php:731 +msgid "This action exceeds the limits set by your subscription plan." +msgstr "Denne handlingen går utenfor grensene satt i din abonnementsplan." + +#: ../../include/account.php:736 +msgid "This action is not available under your subscription plan." +msgstr "Denne handlingen er ikke tilgjengelig i din abonnementsplan." + +#: ../../include/attach.php:247 ../../include/attach.php:333 +msgid "Item was not found." +msgstr "Elementet ble ikke funnet." + +#: ../../include/attach.php:497 +msgid "No source file." +msgstr "Ingen kildefil." + +#: ../../include/attach.php:519 +msgid "Cannot locate file to replace" +msgstr "Kan ikke finne filen som skal byttes ut" + +#: ../../include/attach.php:537 +msgid "Cannot locate file to revise/update" +msgstr "Finner ikke filen som skal revideres/oppdateres" + +#: ../../include/attach.php:672 +#, php-format +msgid "File exceeds size limit of %d" +msgstr "Filens størrelse overgår grensen på %d" + +#: ../../include/attach.php:686 +#, php-format +msgid "You have reached your limit of %1$.0f Mbytes attachment storage." +msgstr "Du har nådd din lagringsgrense for vedlegg på %1$.0f Mbytes." + +#: ../../include/attach.php:842 +msgid "File upload failed. Possible system limit or action terminated." +msgstr "Mislyktes med å laste opp filen. Mulig systemgrense eller handling avbrutt." + +#: ../../include/attach.php:855 +msgid "Stored file could not be verified. Upload failed." +msgstr "Lagret fil kunne ikke bekreftes. Opplasting mislyktes." + +#: ../../include/attach.php:909 ../../include/attach.php:925 +msgid "Path not available." +msgstr "Stien er ikke tilgjengelig." + +#: ../../include/attach.php:971 ../../include/attach.php:1123 +msgid "Empty pathname" +msgstr "Tomt sti-navn" + +#: ../../include/attach.php:997 +msgid "duplicate filename or path" +msgstr "duplikat av filnavn eller sti" + +#: ../../include/attach.php:1019 +msgid "Path not found." +msgstr "Stien ble ikke funnet." + +#: ../../include/attach.php:1077 +msgid "mkdir failed." +msgstr "mkdir mislyktes." + +#: ../../include/attach.php:1081 +msgid "database storage failed." +msgstr "databaselagring mislyktes." + +#: ../../include/attach.php:1129 +msgid "Empty path" +msgstr "Tom sti" + +#: ../../include/channel.php:32 +msgid "Unable to obtain identity information from database" +msgstr "Klarer ikke å få tak i identitetsinformasjon fra databasen" + +#: ../../include/channel.php:66 +msgid "Empty name" +msgstr "Mangler navn" + +#: ../../include/channel.php:69 +msgid "Name too long" +msgstr "Navnet er for langt" + +#: ../../include/channel.php:180 +msgid "No account identifier" +msgstr "Ingen kontoidentifikator" + +#: ../../include/channel.php:192 +msgid "Nickname is required." +msgstr "Kallenavn er påkrevd." + +#: ../../include/channel.php:206 +msgid "Reserved nickname. Please choose another." +msgstr "Reservert kallenavn. Vennligst velg et annet." + +#: ../../include/channel.php:211 +msgid "" +"Nickname has unsupported characters or is already being used on this site." +msgstr "Kallenavnet inneholder tegn som ikke er støttet eller det er allerede i bruk på dette nettstedet." + +#: ../../include/channel.php:287 +msgid "Unable to retrieve created identity" +msgstr "Klarer ikke å hente den lagede identiteten" + +#: ../../include/channel.php:345 +msgid "Default Profile" +msgstr "Standardprofil" + +#: ../../include/channel.php:791 +msgid "Requested channel is not available." +msgstr "Forespurt kanal er ikke tilgjengelig." + +#: ../../include/channel.php:938 +msgid "Create New Profile" +msgstr "Lag ny profil" + +#: ../../include/channel.php:958 +msgid "Visible to everybody" +msgstr "" + +#: ../../include/channel.php:1031 ../../include/channel.php:1142 +msgid "Gender:" +msgstr "Kjønn:" + +#: ../../include/channel.php:1032 ../../include/channel.php:1186 +msgid "Status:" +msgstr "Status:" + +#: ../../include/channel.php:1033 ../../include/channel.php:1197 +msgid "Homepage:" +msgstr "Hjemmeside:" + +#: ../../include/channel.php:1034 +msgid "Online Now" +msgstr "Online nå" + +#: ../../include/channel.php:1147 +msgid "Like this channel" +msgstr "Lik denne kanalen" + +#: ../../include/channel.php:1171 +msgid "j F, Y" +msgstr "j F, Y" + +#: ../../include/channel.php:1172 +msgid "j F" +msgstr "j F" + +#: ../../include/channel.php:1179 +msgid "Birthday:" +msgstr "Fødselsdag:" + +#: ../../include/channel.php:1192 +#, php-format +msgid "for %1$d %2$s" +msgstr "for %1$d %2$s" + +#: ../../include/channel.php:1195 +msgid "Sexual Preference:" +msgstr "Seksuell preferanse:" + +#: ../../include/channel.php:1201 +msgid "Tags:" +msgstr "Merkelapper:" + +#: ../../include/channel.php:1203 +msgid "Political Views:" +msgstr "Politiske synspunkter:" + +#: ../../include/channel.php:1205 +msgid "Religion:" +msgstr "Religion:" + +#: ../../include/channel.php:1209 +msgid "Hobbies/Interests:" +msgstr "Hobbyer/interesser:" + +#: ../../include/channel.php:1211 +msgid "Likes:" +msgstr "Liker:" + +#: ../../include/channel.php:1213 +msgid "Dislikes:" +msgstr "Misliker:" + +#: ../../include/channel.php:1215 +msgid "Contact information and Social Networks:" +msgstr "Kontaktinformasjon og sosiale nettverk:" + +#: ../../include/channel.php:1217 +msgid "My other channels:" +msgstr "Mine andre kanaler:" + +#: ../../include/channel.php:1219 +msgid "Musical interests:" +msgstr "Musikkinteresse:" + +#: ../../include/channel.php:1221 +msgid "Books, literature:" +msgstr "Bøker, litteratur:" + +#: ../../include/channel.php:1223 +msgid "Television:" +msgstr "TV:" + +#: ../../include/channel.php:1225 +msgid "Film/dance/culture/entertainment:" +msgstr "Film/dans/kultur/underholdning:" + +#: ../../include/channel.php:1227 +msgid "Love/Romance:" +msgstr "Kjærlighet/romantikk:" + +#: ../../include/channel.php:1229 +msgid "Work/employment:" +msgstr "Arbeid/sysselsetting:" + +#: ../../include/channel.php:1231 +msgid "School/education:" +msgstr "Skole/utdannelse:" + +#: ../../include/channel.php:1251 +msgid "Like this thing" +msgstr "Lik denne tingen" #: ../../include/features.php:48 msgid "General Features" @@ -8525,257 +8715,378 @@ msgid "Provide managed web pages on your channel" msgstr "Tilby kontrollerte web-sider på din kanal" #: ../../include/features.php:55 -msgid "Provide a wiki for your channel" -msgstr "" - -#: ../../include/features.php:56 msgid "Hide Rating" msgstr "Skjul vurdering" -#: ../../include/features.php:56 +#: ../../include/features.php:55 msgid "" "Hide the rating buttons on your channel and profile pages. Note: People can " "still rate you somewhere else." msgstr "Skjul vurderingsknappene for din kanal og profilsider. Merknad: folk kan fortsatt vurdere deg et annet sted." -#: ../../include/features.php:57 +#: ../../include/features.php:56 msgid "Private Notes" msgstr "Private merknader" -#: ../../include/features.php:57 +#: ../../include/features.php:56 msgid "Enables a tool to store notes and reminders (note: not encrypted)" msgstr "Skru på et verktøy for å lagre notater og påminnelser (merknad: ikke kryptert)" -#: ../../include/features.php:58 +#: ../../include/features.php:57 msgid "Navigation Channel Select" msgstr "Navigasjon kanalvalg" -#: ../../include/features.php:58 +#: ../../include/features.php:57 msgid "Change channels directly from within the navigation dropdown menu" msgstr "Endre kanaler direkte fra navigasjonsmenyen" -#: ../../include/features.php:59 +#: ../../include/features.php:58 msgid "Photo Location" msgstr "Bildeplassering" -#: ../../include/features.php:59 +#: ../../include/features.php:58 msgid "If location data is available on uploaded photos, link this to a map." msgstr "Hvis plasseringsdata er tilgjengelige i opplastede bilder, plasser dette på et kart." -#: ../../include/features.php:60 +#: ../../include/features.php:59 msgid "Access Controlled Chatrooms" -msgstr "Tilgangsstyrte chatrom" +msgstr "" + +#: ../../include/features.php:59 +msgid "Provide chatrooms and chat services with access control." +msgstr "" #: ../../include/features.php:60 -msgid "Provide chatrooms and chat services with access control." -msgstr "Tilby chatrom og chattjenester med tilgangskontroll." - -#: ../../include/features.php:61 msgid "Smart Birthdays" -msgstr "Smarte fødselsdager" +msgstr "" -#: ../../include/features.php:61 +#: ../../include/features.php:60 msgid "" "Make birthday events timezone aware in case your friends are scattered " "across the planet." -msgstr "Gjør fødselsdagshendelser oppmerksom på tidsoner i tilfelle dine venner er spredt rundt planeten." +msgstr "" -#: ../../include/features.php:62 +#: ../../include/features.php:61 msgid "Expert Mode" msgstr "Ekspertmodus" -#: ../../include/features.php:62 +#: ../../include/features.php:61 msgid "Enable Expert Mode to provide advanced configuration options" msgstr "Skru på Ekspertmodus for å tilby avanserte konfigurasjonsvalg" -#: ../../include/features.php:63 +#: ../../include/features.php:62 msgid "Premium Channel" msgstr "Premiumkanal" -#: ../../include/features.php:63 +#: ../../include/features.php:62 msgid "" "Allows you to set restrictions and terms on those that connect with your " "channel" msgstr "Lar deg angi restriksjoner og betingelser for de som kobler seg til din kanal" -#: ../../include/features.php:68 +#: ../../include/features.php:67 msgid "Post Composition Features" msgstr "Funksjoner for å lage innlegg" -#: ../../include/features.php:71 +#: ../../include/features.php:70 msgid "Large Photos" msgstr "Store bilder" -#: ../../include/features.php:71 +#: ../../include/features.php:70 msgid "" "Include large (1024px) photo thumbnails in posts. If not enabled, use small " "(640px) photo thumbnails" msgstr "Inkluder store (1024px) småbilder i innlegg. Hvis denne ikke er påskrudd, bruk små (640px) småbilder." -#: ../../include/features.php:72 +#: ../../include/features.php:71 msgid "Automatically import channel content from other channels or feeds" msgstr "Automatisk import av kanalinnhold fra andre kanaler eller strømmer" -#: ../../include/features.php:73 +#: ../../include/features.php:72 msgid "Even More Encryption" msgstr "Enda mer kryptering" -#: ../../include/features.php:73 +#: ../../include/features.php:72 msgid "" "Allow optional encryption of content end-to-end with a shared secret key" msgstr "Tillat valgfri kryptering av innhold ende-til-ende via en delt hemmelig nøkkel" -#: ../../include/features.php:74 +#: ../../include/features.php:73 msgid "Enable Voting Tools" msgstr "Skru på verktøy for å stemme" -#: ../../include/features.php:74 +#: ../../include/features.php:73 msgid "Provide a class of post which others can vote on" msgstr "Tilby en type innlegg som andre kan stemme på" -#: ../../include/features.php:75 +#: ../../include/features.php:74 msgid "Delayed Posting" msgstr "Tidfest publisering" -#: ../../include/features.php:75 +#: ../../include/features.php:74 msgid "Allow posts to be published at a later date" msgstr "Tillat innlegg å bli publisert på et senere tidspunkt" -#: ../../include/features.php:76 +#: ../../include/features.php:75 msgid "Suppress Duplicate Posts/Comments" msgstr "Forhindre duplikat av innlegg/kommentarer" -#: ../../include/features.php:76 +#: ../../include/features.php:75 msgid "" "Prevent posts with identical content to be published with less than two " "minutes in between submissions." msgstr "Forhindre innlegg med identisk innhold fra å bli publisert hvis det er mindre enn to minutter mellom innsendingene." -#: ../../include/features.php:82 +#: ../../include/features.php:81 msgid "Network and Stream Filtering" msgstr "Nettverk- og strømfiltrering" -#: ../../include/features.php:83 +#: ../../include/features.php:82 msgid "Search by Date" msgstr "Søk etter dato" -#: ../../include/features.php:83 +#: ../../include/features.php:82 msgid "Ability to select posts by date ranges" msgstr "Mulighet for å velge innlegg etter datoområde" -#: ../../include/features.php:84 ../../include/group.php:311 +#: ../../include/features.php:83 ../../include/group.php:311 msgid "Privacy Groups" msgstr "Personverngrupper" -#: ../../include/features.php:84 +#: ../../include/features.php:83 msgid "Enable management and selection of privacy groups" msgstr "Skru på håndtering og valg av personverngrupper" -#: ../../include/features.php:85 ../../include/widgets.php:281 -msgid "Saved Searches" -msgstr "Lagrede søk" - -#: ../../include/features.php:85 +#: ../../include/features.php:84 msgid "Save search terms for re-use" msgstr "Lagre søkeuttrykk for senere bruk" -#: ../../include/features.php:86 +#: ../../include/features.php:85 msgid "Network Personal Tab" msgstr "Nettverk personlig fane" -#: ../../include/features.php:86 +#: ../../include/features.php:85 msgid "Enable tab to display only Network posts that you've interacted on" msgstr "Skru på fane for å bare vise Nettverksinnlegg som du har deltatt i" -#: ../../include/features.php:87 +#: ../../include/features.php:86 msgid "Network New Tab" msgstr "Nettverk Ny fane" -#: ../../include/features.php:87 +#: ../../include/features.php:86 msgid "Enable tab to display all new Network activity" msgstr "Skru på fane for å vise all ny nettverksaktivitet" -#: ../../include/features.php:88 +#: ../../include/features.php:87 msgid "Affinity Tool" msgstr "Nærhetsverktøy" -#: ../../include/features.php:88 +#: ../../include/features.php:87 msgid "Filter stream activity by depth of relationships" msgstr "Filtrer strømaktiviteten etter releasjonsdybde" -#: ../../include/features.php:89 +#: ../../include/features.php:88 msgid "Connection Filtering" msgstr "Filtrer forbindelser" -#: ../../include/features.php:89 +#: ../../include/features.php:88 msgid "Filter incoming posts from connections based on keywords/content" msgstr "Filtrer innkommende innlegg fra forbindelser basert på nøkkelord/innhold" -#: ../../include/features.php:90 +#: ../../include/features.php:89 msgid "Show channel suggestions" msgstr "Vis kanalforslag" -#: ../../include/features.php:95 +#: ../../include/features.php:94 msgid "Post/Comment Tools" msgstr "Innlegg-/Kommentar-verktøy" -#: ../../include/features.php:96 +#: ../../include/features.php:95 msgid "Community Tagging" msgstr "Felleskapsmerkelapper" -#: ../../include/features.php:96 +#: ../../include/features.php:95 msgid "Ability to tag existing posts" msgstr "Mulighet til å merke eksisterende meldinger" -#: ../../include/features.php:97 +#: ../../include/features.php:96 msgid "Post Categories" msgstr "Innleggskategorier" -#: ../../include/features.php:97 +#: ../../include/features.php:96 msgid "Add categories to your posts" msgstr "Legg kategorier til dine innlegg" -#: ../../include/features.php:98 +#: ../../include/features.php:97 msgid "Emoji Reactions" -msgstr "Emoji-reaksjoner" +msgstr "" + +#: ../../include/features.php:97 +msgid "Add emoji reaction ability to posts" +msgstr "" #: ../../include/features.php:98 -msgid "Add emoji reaction ability to posts" -msgstr "Legg til muligheten for emoji-reaksjoner på innlegg" - -#: ../../include/features.php:99 ../../include/widgets.php:310 -#: ../../include/contact_widgets.php:53 -msgid "Saved Folders" -msgstr "Lagrede mapper" - -#: ../../include/features.php:99 msgid "Ability to file posts under folders" msgstr "Mulighet til å sortere innlegg i mapper" -#: ../../include/features.php:100 +#: ../../include/features.php:99 msgid "Dislike Posts" msgstr "Mislik innlegg" -#: ../../include/features.php:100 +#: ../../include/features.php:99 msgid "Ability to dislike posts/comments" msgstr "Mulighet til å mislike innlegg/kommentarer" -#: ../../include/features.php:101 +#: ../../include/features.php:100 msgid "Star Posts" msgstr "Stjerneinnlegg" -#: ../../include/features.php:101 +#: ../../include/features.php:100 msgid "Ability to mark special posts with a star indicator" msgstr "Mulighet til å merke spesielle innlegg med en stjerne" -#: ../../include/features.php:102 +#: ../../include/features.php:101 msgid "Tag Cloud" msgstr "Merkelappsky" -#: ../../include/features.php:102 +#: ../../include/features.php:101 msgid "Provide a personal tag cloud on your channel page" msgstr "Tilby en personlig merkelappsky på din kanalside" +#: ../../include/oembed.php:324 +msgid "Embedded content" +msgstr "Innebygget innhold" + +#: ../../include/oembed.php:333 +msgid "Embedding disabled" +msgstr "Innbygging avskrudd" + +#: ../../include/acl_selectors.php:271 +msgid "Who can see this?" +msgstr "" + +#: ../../include/acl_selectors.php:272 +msgid "Custom selection" +msgstr "" + +#: ../../include/acl_selectors.php:273 +msgid "" +"Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit" +" the scope of \"Show\"." +msgstr "" + +#: ../../include/acl_selectors.php:274 +msgid "Show" +msgstr "Vis" + +#: ../../include/acl_selectors.php:275 +msgid "Don't show" +msgstr "Ikke vis" + +#: ../../include/acl_selectors.php:281 +msgid "Other networks and post services" +msgstr "Andre nettverk og innleggstjenester" + +#: ../../include/acl_selectors.php:311 +#, php-format +msgid "" +"Post permissions %s cannot be changed %s after a post is shared.
These" +" permissions set who is allowed to view the post." +msgstr "" + +#: ../../include/auth.php:105 +msgid "Logged out." +msgstr "Logget ut." + +#: ../../include/auth.php:212 +msgid "Failed authentication" +msgstr "Mislykket autentisering" + +#: ../../include/datetime.php:135 +msgid "Birthday" +msgstr "" + +#: ../../include/datetime.php:137 +msgid "Age: " +msgstr "Alder:" + +#: ../../include/datetime.php:139 +msgid "YYYY-MM-DD or MM-DD" +msgstr "YYYY-MM-DD eller MM-DD" + +#: ../../include/datetime.php:272 ../../boot.php:2470 +msgid "never" +msgstr "aldri" + +#: ../../include/datetime.php:278 +msgid "less than a second ago" +msgstr "for mindre enn ett sekund siden" + +#: ../../include/datetime.php:296 +#, php-format +msgctxt "e.g. 22 hours ago, 1 minute ago" +msgid "%1$d %2$s ago" +msgstr "%1$d %2$s siden" + +#: ../../include/datetime.php:307 +msgctxt "relative_date" +msgid "year" +msgid_plural "years" +msgstr[0] "år" +msgstr[1] "år" + +#: ../../include/datetime.php:310 +msgctxt "relative_date" +msgid "month" +msgid_plural "months" +msgstr[0] "måned" +msgstr[1] "måneder" + +#: ../../include/datetime.php:313 +msgctxt "relative_date" +msgid "week" +msgid_plural "weeks" +msgstr[0] "uke" +msgstr[1] "uker" + +#: ../../include/datetime.php:316 +msgctxt "relative_date" +msgid "day" +msgid_plural "days" +msgstr[0] "dag" +msgstr[1] "dager" + +#: ../../include/datetime.php:319 +msgctxt "relative_date" +msgid "hour" +msgid_plural "hours" +msgstr[0] "time" +msgstr[1] "timer" + +#: ../../include/datetime.php:322 +msgctxt "relative_date" +msgid "minute" +msgid_plural "minutes" +msgstr[0] "minutt" +msgstr[1] "minutter" + +#: ../../include/datetime.php:325 +msgctxt "relative_date" +msgid "second" +msgid_plural "seconds" +msgstr[0] "sekund" +msgstr[1] "sekunder" + +#: ../../include/datetime.php:562 +#, php-format +msgid "%1$s's birthday" +msgstr "%1$s sin fødselsdag" + +#: ../../include/datetime.php:563 +#, php-format +msgid "Happy Birthday %1$s" +msgstr "Gratulerer med dagen, %1$s !" + #: ../../include/group.php:26 msgid "" "A deleted group with this name was revived. Existing item permissions " @@ -8803,583 +9114,21 @@ msgstr "Legg til personverngruppe" msgid "Channels not in any privacy group" msgstr "Kanaler uten personverngruppe" -#: ../../include/group.php:316 ../../include/widgets.php:282 -msgid "add" -msgstr "legg til" - -#: ../../include/event.php:22 ../../include/event.php:69 -#: ../../include/bb2diaspora.php:485 -msgid "l F d, Y \\@ g:i A" -msgstr "l F d, Y \\@ g:i A" - -#: ../../include/event.php:30 ../../include/event.php:73 -#: ../../include/bb2diaspora.php:491 -msgid "Starts:" -msgstr "Starter:" - -#: ../../include/event.php:40 ../../include/event.php:77 -#: ../../include/bb2diaspora.php:499 -msgid "Finishes:" -msgstr "Slutter:" - -#: ../../include/event.php:814 -msgid "This event has been added to your calendar." -msgstr "Denne hendelsen er lagt til i din kalender." - -#: ../../include/event.php:1014 -msgid "Not specified" -msgstr "Ikke spesifisert" - -#: ../../include/event.php:1015 -msgid "Needs Action" -msgstr "Trenger handling" - -#: ../../include/event.php:1016 -msgid "Completed" -msgstr "Ferdig" - -#: ../../include/event.php:1017 -msgid "In Process" -msgstr "Igang" - -#: ../../include/event.php:1018 -msgid "Cancelled" -msgstr "Avbrutt" - -#: ../../include/account.php:28 -msgid "Not a valid email address" -msgstr "Ikke en gyldig e-postadresse" - -#: ../../include/account.php:30 -msgid "Your email domain is not among those allowed on this site" -msgstr "Ditt e-postdomene er ikke blant de som er tillatt på dette stedet" - -#: ../../include/account.php:36 -msgid "Your email address is already registered at this site." -msgstr "Din e-postadresse er allerede registrert på dette nettstedet." - -#: ../../include/account.php:68 -msgid "An invitation is required." -msgstr "En invitasjon er påkrevd." - -#: ../../include/account.php:72 -msgid "Invitation could not be verified." -msgstr "Invitasjon kunne ikke bekreftes." - -#: ../../include/account.php:122 -msgid "Please enter the required information." -msgstr "Vennligst skriv inn nødvendig informasjon." - -#: ../../include/account.php:189 -msgid "Failed to store account information." -msgstr "Mislyktes med å lagre kontoinformasjon." - -#: ../../include/account.php:249 -#, php-format -msgid "Registration confirmation for %s" -msgstr "Registreringsbekreftelse for %s" - -#: ../../include/account.php:315 -#, php-format -msgid "Registration request at %s" -msgstr "Registreringsforespørsel hos %s" - -#: ../../include/account.php:339 -msgid "your registration password" -msgstr "ditt registreringspassord" - -#: ../../include/account.php:342 ../../include/account.php:402 -#, php-format -msgid "Registration details for %s" -msgstr "Registreringsdetaljer for %s" - -#: ../../include/account.php:414 -msgid "Account approved." -msgstr "Konto godkjent." - -#: ../../include/account.php:454 -#, php-format -msgid "Registration revoked for %s" -msgstr "Registrering trukket tilbake for %s" - -#: ../../include/account.php:739 ../../include/account.php:741 -msgid "Click here to upgrade." -msgstr "Klikk her for å oppgradere." - -#: ../../include/account.php:747 -msgid "This action exceeds the limits set by your subscription plan." -msgstr "Denne handlingen går utenfor grensene satt i din abonnementsplan." - -#: ../../include/account.php:752 -msgid "This action is not available under your subscription plan." -msgstr "Denne handlingen er ikke tilgjengelig i din abonnementsplan." - -#: ../../include/follow.php:27 -msgid "Channel is blocked on this site." -msgstr "Kanalen er blokkert på dette nettstedet." - -#: ../../include/follow.php:32 -msgid "Channel location missing." -msgstr "Kanalplassering mangler." - -#: ../../include/follow.php:80 -msgid "Response from remote channel was incomplete." -msgstr "Svaret fra den andre kanalen var ikke komplett." - -#: ../../include/follow.php:97 -msgid "Channel was deleted and no longer exists." -msgstr "Kanalen er slettet og finnes ikke lenger." - -#: ../../include/follow.php:147 ../../include/follow.php:183 -msgid "Protocol disabled." -msgstr "Protokollen er avskrudd." - -#: ../../include/follow.php:171 -msgid "Channel discovery failed." -msgstr "Kanaloppdagelse mislyktes." - -#: ../../include/follow.php:210 -msgid "Cannot connect to yourself." -msgstr "Kan ikke lage forbindelse med deg selv." - -#: ../../include/attach.php:247 ../../include/attach.php:333 -msgid "Item was not found." -msgstr "Elementet ble ikke funnet." - -#: ../../include/attach.php:499 -msgid "No source file." -msgstr "Ingen kildefil." - -#: ../../include/attach.php:521 -msgid "Cannot locate file to replace" -msgstr "Kan ikke finne filen som skal byttes ut" - -#: ../../include/attach.php:539 -msgid "Cannot locate file to revise/update" -msgstr "Finner ikke filen som skal revideres/oppdateres" - -#: ../../include/attach.php:674 -#, php-format -msgid "File exceeds size limit of %d" -msgstr "Filens størrelse overgår grensen på %d" - -#: ../../include/attach.php:688 -#, php-format -msgid "You have reached your limit of %1$.0f Mbytes attachment storage." -msgstr "Du har nådd din lagringsgrense for vedlegg på %1$.0f Mbytes." - -#: ../../include/attach.php:846 -msgid "File upload failed. Possible system limit or action terminated." -msgstr "Mislyktes med å laste opp filen. Mulig systemgrense eller handling avbrutt." - -#: ../../include/attach.php:859 -msgid "Stored file could not be verified. Upload failed." -msgstr "Lagret fil kunne ikke bekreftes. Opplasting mislyktes." - -#: ../../include/attach.php:915 ../../include/attach.php:931 -msgid "Path not available." -msgstr "Stien er ikke tilgjengelig." - -#: ../../include/attach.php:977 ../../include/attach.php:1129 -msgid "Empty pathname" -msgstr "Tomt sti-navn" - -#: ../../include/attach.php:1003 -msgid "duplicate filename or path" -msgstr "duplikat av filnavn eller sti" - -#: ../../include/attach.php:1025 -msgid "Path not found." -msgstr "Stien ble ikke funnet." - -#: ../../include/attach.php:1083 -msgid "mkdir failed." -msgstr "mkdir mislyktes." - -#: ../../include/attach.php:1087 -msgid "database storage failed." -msgstr "databaselagring mislyktes." - -#: ../../include/attach.php:1135 -msgid "Empty path" -msgstr "Tom sti" - -#: ../../include/bbcode.php:123 ../../include/bbcode.php:878 -#: ../../include/bbcode.php:881 ../../include/bbcode.php:886 -#: ../../include/bbcode.php:889 ../../include/bbcode.php:892 -#: ../../include/bbcode.php:895 ../../include/bbcode.php:900 -#: ../../include/bbcode.php:903 ../../include/bbcode.php:908 -#: ../../include/bbcode.php:911 ../../include/bbcode.php:914 -#: ../../include/bbcode.php:917 -msgid "Image/photo" -msgstr "Bilde/fotografi" - -#: ../../include/bbcode.php:162 ../../include/bbcode.php:928 -msgid "Encrypted content" -msgstr "Kryptert innhold" - -#: ../../include/bbcode.php:178 -#, php-format -msgid "Install %s element: " -msgstr "Installer %s element:" - -#: ../../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 "Dette innlegget inneholder det installerbare elementet %s, men du mangler tillatelse til å installere det på dette nettstedet." - -#: ../../include/bbcode.php:261 -#, php-format -msgid "%1$s wrote the following %2$s %3$s" -msgstr "%1$s skrev følgende %2$s %3$s" - -#: ../../include/bbcode.php:338 ../../include/bbcode.php:346 -msgid "Click to open/close" -msgstr "Klikk for å åpne/lukke" - -#: ../../include/bbcode.php:346 -msgid "spoiler" -msgstr "avsløring" - -#: ../../include/bbcode.php:619 -msgid "Different viewers will see this text differently" -msgstr "Denne teksten vil se forskjellig ut for ulike besøkende" - -#: ../../include/bbcode.php:866 -msgid "$1 wrote:" -msgstr "$1 skrev:" - -#: ../../include/items.php:897 ../../include/items.php:942 -msgid "(Unknown)" -msgstr "(Ukjent)" - -#: ../../include/items.php:1141 -msgid "Visible to anybody on the internet." -msgstr "Synlig for enhver på Internett." - -#: ../../include/items.php:1143 -msgid "Visible to you only." -msgstr "Synlig bare for deg." - -#: ../../include/items.php:1145 -msgid "Visible to anybody in this network." -msgstr "Synlig for enhver i dette nettverket." - -#: ../../include/items.php:1147 -msgid "Visible to anybody authenticated." -msgstr "Synlig for enhver som er autentisert." - -#: ../../include/items.php:1149 -#, php-format -msgid "Visible to anybody on %s." -msgstr "Synlig for alle på %s." - -#: ../../include/items.php:1151 -msgid "Visible to all connections." -msgstr "Synlig for alle forbindelser." - -#: ../../include/items.php:1153 -msgid "Visible to approved connections." -msgstr "Synlig for godkjente forbindelser." - -#: ../../include/items.php:1155 -msgid "Visible to specific connections." -msgstr "Synlig for spesifikke forbindelser." - -#: ../../include/items.php:3918 -msgid "Privacy group is empty." -msgstr "Personverngruppen er tom." - -#: ../../include/items.php:3925 -#, php-format -msgid "Privacy group: %s" -msgstr "Personverngruppe: %s" - -#: ../../include/items.php:3937 -msgid "Connection not found." -msgstr "Forbindelsen ble ikke funnet." - -#: ../../include/items.php:4290 -msgid "profile photo" -msgstr "profilbilde" - -#: ../../include/oembed.php:336 -msgid "Embedded content" -msgstr "Innebygget innhold" - -#: ../../include/oembed.php:345 -msgid "Embedding disabled" -msgstr "Innbygging avskrudd" - -#: ../../include/widgets.php:103 -msgid "System" -msgstr "System" - -#: ../../include/widgets.php:106 -msgid "New App" -msgstr "Ny app" - -#: ../../include/widgets.php:154 -msgid "Suggestions" -msgstr "Forslag" - -#: ../../include/widgets.php:155 -msgid "See more..." -msgstr "Se mer..." - -#: ../../include/widgets.php:175 -#, php-format -msgid "You have %1$.0f of %2$.0f allowed connections." -msgstr "Du har %1$.0f av %2$.0f tillate forbindelser." - -#: ../../include/widgets.php:181 -msgid "Add New Connection" -msgstr "Legg til ny forbindelse" - -#: ../../include/widgets.php:182 -msgid "Enter channel address" -msgstr "Skriv kanaladressen" - -#: ../../include/widgets.php:183 -msgid "Examples: bob@example.com, https://example.com/barbara" -msgstr "Eksempel: ola@eksempel.no, https://eksempel.no/kari" - -#: ../../include/widgets.php:199 -msgid "Notes" -msgstr "Merknader" - -#: ../../include/widgets.php:273 -msgid "Remove term" -msgstr "Fjern begrep" - -#: ../../include/widgets.php:313 ../../include/widgets.php:432 -#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:94 -msgid "Everything" -msgstr "Alt" - -#: ../../include/widgets.php:354 -msgid "Archives" -msgstr "Arkiv" - -#: ../../include/widgets.php:516 -msgid "Refresh" -msgstr "Forny" - -#: ../../include/widgets.php:556 -msgid "Account settings" -msgstr "Kontoinnstillinger" - -#: ../../include/widgets.php:562 -msgid "Channel settings" -msgstr "Kanalinnstillinger" - -#: ../../include/widgets.php:571 -msgid "Additional features" -msgstr "Tilleggsfunksjoner" - -#: ../../include/widgets.php:578 -msgid "Feature/Addon settings" -msgstr "Funksjons-/Tilleggsinnstillinger" - -#: ../../include/widgets.php:584 -msgid "Display settings" -msgstr "Visningsinnstillinger" - -#: ../../include/widgets.php:591 -msgid "Manage locations" -msgstr "Håndter plasseringer" - -#: ../../include/widgets.php:600 -msgid "Export channel" -msgstr "Eksporter kanal" - -#: ../../include/widgets.php:607 -msgid "Connected apps" -msgstr "Tilkoblede app-er" - -#: ../../include/widgets.php:631 -msgid "Premium Channel Settings" -msgstr "Premiumkanal-innstillinger" - -#: ../../include/widgets.php:660 -msgid "Private Mail Menu" -msgstr "Meny for privat post" - -#: ../../include/widgets.php:662 -msgid "Combined View" -msgstr "Kombinert visning" - -#: ../../include/widgets.php:694 ../../include/widgets.php:706 -msgid "Conversations" -msgstr "Samtaler" - -#: ../../include/widgets.php:698 -msgid "Received Messages" -msgstr "Mottatte meldinger" - -#: ../../include/widgets.php:702 -msgid "Sent Messages" -msgstr "Sendte meldinger" - -#: ../../include/widgets.php:716 -msgid "No messages." -msgstr "Ingen meldinger." - -#: ../../include/widgets.php:734 -msgid "Delete conversation" -msgstr "Slett samtale" - -#: ../../include/widgets.php:760 -msgid "Events Tools" -msgstr "Kalenderverktøy" - -#: ../../include/widgets.php:761 -msgid "Export Calendar" -msgstr "Eksporter kalender" - -#: ../../include/widgets.php:762 -msgid "Import Calendar" -msgstr "Importer kalender" - -#: ../../include/widgets.php:840 -msgid "Overview" -msgstr "Overblikk" - -#: ../../include/widgets.php:847 -msgid "Chat Members" -msgstr "Chatmedlemmer" - -#: ../../include/widgets.php:869 -msgid "Wiki List" -msgstr "" - -#: ../../include/widgets.php:907 -msgid "Wiki Pages" -msgstr "" - -#: ../../include/widgets.php:942 -msgid "Bookmarked Chatrooms" -msgstr "Bokmerkede chatrom" - -#: ../../include/widgets.php:965 -msgid "Suggested Chatrooms" -msgstr "Foreslåtte chatrom" - -#: ../../include/widgets.php:1111 ../../include/widgets.php:1223 -msgid "photo/image" -msgstr "foto/bilde" - -#: ../../include/widgets.php:1166 -msgid "Click to show more" -msgstr "Klikk for å vise mer" - -#: ../../include/widgets.php:1317 -msgid "Rating Tools" -msgstr "Vurderingsverktøy" - -#: ../../include/widgets.php:1321 ../../include/widgets.php:1323 -msgid "Rate Me" -msgstr "Vurder meg" - -#: ../../include/widgets.php:1326 -msgid "View Ratings" -msgstr "Vis vurderinger" - -#: ../../include/widgets.php:1410 -msgid "Forums" -msgstr "Forum" - -#: ../../include/widgets.php:1439 -msgid "Tasks" -msgstr "Oppgaver" - -#: ../../include/widgets.php:1448 -msgid "Documentation" -msgstr "Dokumentasjon" - -#: ../../include/widgets.php:1450 -msgid "Project/Site Information" -msgstr "Prosjekt-/Nettstedsinformasjon" - -#: ../../include/widgets.php:1451 -msgid "For Members" -msgstr "For medlemmer" - -#: ../../include/widgets.php:1452 -msgid "For Administrators" -msgstr "For administratorer" - -#: ../../include/widgets.php:1453 -msgid "For Developers" -msgstr "For utviklere" - -#: ../../include/widgets.php:1477 ../../include/widgets.php:1515 -msgid "Member registrations waiting for confirmation" -msgstr "Medlemsregistreringer venter på bekreftelse" - -#: ../../include/widgets.php:1483 -msgid "Inspect queue" -msgstr "Inspiser kø" - -#: ../../include/widgets.php:1485 -msgid "DB updates" -msgstr "Databaseoppdateringer" - -#: ../../include/widgets.php:1511 -msgid "Plugin Features" -msgstr "Tilleggsfunksjoner" - -#: ../../include/activities.php:41 -msgid " and " -msgstr "og" - -#: ../../include/activities.php:49 -msgid "public profile" -msgstr "offentlig profil" - -#: ../../include/activities.php:58 -#, php-format -msgid "%1$s changed %2$s to “%3$s”" -msgstr "%1$s endret %2$s til “%3$s”" - -#: ../../include/activities.php:59 -#, php-format -msgid "Visit %1$s's %2$s" -msgstr "Besøk %1$s sitt %2$s" - -#: ../../include/activities.php:62 -#, php-format -msgid "%1$s has an updated %2$s, changing %3$s." -msgstr "%1$s har oppdatert %2$s, endret %3$s." - -#: ../../include/bb2diaspora.php:398 -msgid "Attachments:" -msgstr "Vedlegg:" - -#: ../../include/bb2diaspora.php:487 -msgid "$Projectname event notification:" -msgstr "$Projectname hendelsesvarsling:" - #: ../../include/js_strings.php:5 msgid "Delete this item?" msgstr "Slett dette elementet?" #: ../../include/js_strings.php:8 -#, php-format -msgid "%s show less" -msgstr "" +msgid "[-] show less" +msgstr "[-] Vis mindre" #: ../../include/js_strings.php:9 -#, php-format -msgid "%s expand" -msgstr "" +msgid "[+] expand" +msgstr "[+] Utvid" #: ../../include/js_strings.php:10 -#, php-format -msgid "%s collapse" -msgstr "" +msgid "[-] collapse" +msgstr "[-] Lukk" #: ../../include/js_strings.php:11 msgid "Password too short" @@ -9609,223 +9358,278 @@ msgctxt "calendar" msgid "All day" msgstr "Hele dagen" -#: ../../include/contact_widgets.php:11 +#: ../../include/network.php:657 +msgid "view full size" +msgstr "vis full størrelse" + +#: ../../include/network.php:1885 +msgid "No Subject" +msgstr "Uten emne" + +#: ../../include/network.php:2146 ../../include/network.php:2147 +msgid "Friendica" +msgstr "Friendica" + +#: ../../include/network.php:2148 +msgid "OStatus" +msgstr "OStatus" + +#: ../../include/network.php:2149 +msgid "GNU-Social" +msgstr "" + +#: ../../include/network.php:2150 +msgid "RSS/Atom" +msgstr "RSS/Atom" + +#: ../../include/network.php:2152 +msgid "Diaspora" +msgstr "Diaspora" + +#: ../../include/network.php:2153 +msgid "Facebook" +msgstr "Facebook" + +#: ../../include/network.php:2154 +msgid "Zot" +msgstr "Zot" + +#: ../../include/network.php:2155 +msgid "LinkedIn" +msgstr "LinkedIn" + +#: ../../include/network.php:2156 +msgid "XMPP/IM" +msgstr "XMPP/IM" + +#: ../../include/network.php:2157 +msgid "MySpace" +msgstr "MySpace" + +#: ../../include/photos.php:110 #, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "%d invitasjon tilgjengelig" -msgstr[1] "%d invitasjoner tilgjengelig" +msgid "Image exceeds website size limit of %lu bytes" +msgstr "Bilde overstiger nettstedets størrelsesbegrensning på %lu bytes" -#: ../../include/contact_widgets.php:19 -msgid "Find Channels" -msgstr "Finn kanaler" +#: ../../include/photos.php:117 +msgid "Image file is empty." +msgstr "Bildefilen er tom." -#: ../../include/contact_widgets.php:20 -msgid "Enter name or interest" -msgstr "Skriv navn eller interesse" +#: ../../include/photos.php:255 +msgid "Photo storage failed." +msgstr "Bildelagring mislyktes." -#: ../../include/contact_widgets.php:21 -msgid "Connect/Follow" -msgstr "Forbindelse/Følg" +#: ../../include/photos.php:295 +msgid "a new photo" +msgstr "et nytt bilde" -#: ../../include/contact_widgets.php:22 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "Eksempler: Ola Nordmann, fisking" - -#: ../../include/contact_widgets.php:26 -msgid "Random Profile" -msgstr "Tilfeldig profil" - -#: ../../include/contact_widgets.php:27 -msgid "Invite Friends" -msgstr "Inviter venner" - -#: ../../include/contact_widgets.php:29 -msgid "Advanced example: name=fred and country=iceland" -msgstr "Avansert eksempel: navn=fred og land=island" - -#: ../../include/contact_widgets.php:122 +#: ../../include/photos.php:299 #, php-format -msgid "%d connection in common" -msgid_plural "%d connections in common" -msgstr[0] "%d forbindelse felles" -msgstr[1] "%d forbindelser felles" +msgctxt "photo_upload" +msgid "%1$s posted %2$s to %3$s" +msgstr "%1$s la inn %2$s til %3$s" -#: ../../include/contact_widgets.php:127 -msgid "show more" -msgstr "vis mer" +#: ../../include/photos.php:506 +msgid "Upload New Photos" +msgstr "Last opp nye bilder" -#: ../../include/dir_fns.php:141 -msgid "Directory Options" -msgstr "Kataloginnstillinger" - -#: ../../include/dir_fns.php:143 -msgid "Safe Mode" -msgstr "Trygt modus" - -#: ../../include/dir_fns.php:144 -msgid "Public Forums Only" -msgstr "Bare offentlige forum" - -#: ../../include/dir_fns.php:145 -msgid "This Website Only" -msgstr "Kun dette nettstedet" - -#: ../../include/message.php:20 -msgid "No recipient provided." -msgstr "Ingen mottaker angitt." - -#: ../../include/message.php:25 -msgid "[no subject]" -msgstr "[ikke noe emne]" - -#: ../../include/message.php:45 -msgid "Unable to determine sender." -msgstr "Kan ikke avgjøre avsender." - -#: ../../include/message.php:222 -msgid "Stored post could not be verified." -msgstr "Lagret innlegg kunne ikke bekreftes." - -#: ../../include/acl_selectors.php:269 -msgid "Who can see this?" -msgstr "Hvem kan se dette?" - -#: ../../include/acl_selectors.php:270 -msgid "Custom selection" -msgstr "Tilpasset utvalg" - -#: ../../include/acl_selectors.php:271 -msgid "" -"Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit" -" the scope of \"Show\"." -msgstr "Velg \"Vis\" for å tillate visning. \"Ikke vis\" lar deg overstyre og avgrense omfanget av \"Vis\"." - -#: ../../include/acl_selectors.php:272 -msgid "Show" -msgstr "Vis" - -#: ../../include/acl_selectors.php:273 -msgid "Don't show" -msgstr "Ikke vis" - -#: ../../include/acl_selectors.php:279 -msgid "Other networks and post services" -msgstr "Andre nettverk og innleggstjenester" - -#: ../../include/acl_selectors.php:309 -#, php-format -msgid "" -"Post permissions %s cannot be changed %s after a post is shared.
These" -" permissions set who is allowed to view the post." -msgstr "Innleggstillatelsene %s kan ikke endres %s etter at et innlegg er delt.
Disse innstillingene angir hvem som har tillatelse til å se innlegget." - -#: ../../include/datetime.php:135 -msgid "Birthday" -msgstr "Fødselsdag" - -#: ../../include/datetime.php:137 -msgid "Age: " -msgstr "Alder:" - -#: ../../include/datetime.php:139 -msgid "YYYY-MM-DD or MM-DD" -msgstr "YYYY-MM-DD eller MM-DD" - -#: ../../include/datetime.php:272 ../../boot.php:2479 -msgid "never" -msgstr "aldri" - -#: ../../include/datetime.php:278 -msgid "less than a second ago" -msgstr "for mindre enn ett sekund siden" - -#: ../../include/datetime.php:296 -#, php-format -msgctxt "e.g. 22 hours ago, 1 minute ago" -msgid "%1$d %2$s ago" -msgstr "%1$d %2$s siden" - -#: ../../include/datetime.php:307 -msgctxt "relative_date" -msgid "year" -msgid_plural "years" -msgstr[0] "år" -msgstr[1] "år" - -#: ../../include/datetime.php:310 -msgctxt "relative_date" -msgid "month" -msgid_plural "months" -msgstr[0] "måned" -msgstr[1] "måneder" - -#: ../../include/datetime.php:313 -msgctxt "relative_date" -msgid "week" -msgid_plural "weeks" -msgstr[0] "uke" -msgstr[1] "uker" - -#: ../../include/datetime.php:316 -msgctxt "relative_date" -msgid "day" -msgid_plural "days" -msgstr[0] "dag" -msgstr[1] "dager" - -#: ../../include/datetime.php:319 -msgctxt "relative_date" -msgid "hour" -msgid_plural "hours" -msgstr[0] "time" -msgstr[1] "timer" - -#: ../../include/datetime.php:322 -msgctxt "relative_date" -msgid "minute" -msgid_plural "minutes" -msgstr[0] "minutt" -msgstr[1] "minutter" - -#: ../../include/datetime.php:325 -msgctxt "relative_date" -msgid "second" -msgid_plural "seconds" -msgstr[0] "sekund" -msgstr[1] "sekunder" - -#: ../../include/datetime.php:562 -#, php-format -msgid "%1$s's birthday" -msgstr "%1$s sin fødselsdag" - -#: ../../include/datetime.php:563 -#, php-format -msgid "Happy Birthday %1$s" -msgstr "Gratulerer med dagen, %1$s !" - -#: ../../include/api.php:1327 -msgid "Public Timeline" -msgstr "Offentlig tidslinje" - -#: ../../include/zot.php:697 +#: ../../include/zot.php:699 msgid "Invalid data packet" msgstr "Ugyldig datapakke" -#: ../../include/zot.php:713 +#: ../../include/zot.php:715 msgid "Unable to verify channel signature" msgstr "Ikke i stand til å sjekke kanalsignaturen" -#: ../../include/zot.php:2326 +#: ../../include/zot.php:2363 #, php-format msgid "Unable to verify site signature for %s" msgstr "Ikke i stand til å bekrefte signaturen til %s" -#: ../../include/zot.php:3703 +#: ../../include/zot.php:3712 msgid "invalid target signature" msgstr "Målets signatur er ugyldig" +#: ../../include/page_widgets.php:6 +msgid "New Page" +msgstr "Ny side" + +#: ../../include/page_widgets.php:43 +msgid "Title" +msgstr "Tittel" + +#: ../../include/permissions.php:26 +msgid "Can view my normal stream and posts" +msgstr "Kan se min normale strøm og innlegg" + +#: ../../include/permissions.php:27 +msgid "Can view my default channel profile" +msgstr "Kan se min standard kanalprofil" + +#: ../../include/permissions.php:28 +msgid "Can view my connections" +msgstr "Kan se mine forbindelser" + +#: ../../include/permissions.php:29 +msgid "Can view my file storage and photos" +msgstr "Kan se mine filer og bilder" + +#: ../../include/permissions.php:30 +msgid "Can view my webpages" +msgstr "Kan se mine websider" + +#: ../../include/permissions.php:33 +msgid "Can send me their channel stream and posts" +msgstr "Kan sende meg deres kanalstrøm og innlegg" + +#: ../../include/permissions.php:34 +msgid "Can post on my channel page (\"wall\")" +msgstr "Kan lage innlegg på min kanalside (\"vegg\")" + +#: ../../include/permissions.php:35 +msgid "Can comment on or like my posts" +msgstr "Kan kommentere på eller like mine innlegg" + +#: ../../include/permissions.php:36 +msgid "Can send me private mail messages" +msgstr "Kan sende meg private meldinger" + +#: ../../include/permissions.php:37 +msgid "Can like/dislike stuff" +msgstr "Kan like/ikke like forskjellige greier" + +#: ../../include/permissions.php:37 +msgid "Profiles and things other than posts/comments" +msgstr "Profiler og andre ting enn innlegg/kommentarer" + +#: ../../include/permissions.php:39 +msgid "Can forward to all my channel contacts via post @mentions" +msgstr "Kan videresende til alle mine kanalkontakter via @navn i innlegg" + +#: ../../include/permissions.php:39 +msgid "Advanced - useful for creating group forum channels" +msgstr "Avansert - nyttig for å lage forumkanaler for grupper" + +#: ../../include/permissions.php:40 +msgid "Can chat with me (when available)" +msgstr "Kan chatte/sende lynmeldinger til meg (når tilgjengelig)" + +#: ../../include/permissions.php:41 +msgid "Can write to my file storage and photos" +msgstr "Kan skrive til mitt lager for filer og bilder" + +#: ../../include/permissions.php:42 +msgid "Can edit my webpages" +msgstr "Kan endre mine websider" + +#: ../../include/permissions.php:44 +msgid "Can source my public posts in derived channels" +msgstr "Kan bruke mine offentlige innlegg som kanalkilde i egne kanaler" + +#: ../../include/permissions.php:44 +msgid "Somewhat advanced - very useful in open communities" +msgstr "Litt avansert - svært nyttig i åpne fellesskap" + +#: ../../include/permissions.php:46 +msgid "Can administer my channel resources" +msgstr "Kan administrere mine kanalressurser" + +#: ../../include/permissions.php:46 +msgid "" +"Extremely advanced. Leave this alone unless you know what you are doing" +msgstr "Ekstremt avansert. La dette være med mindre du vet hva du gjør" + +#: ../../include/permissions.php:877 +msgid "Social Networking" +msgstr "Sosialt nettverk" + +#: ../../include/permissions.php:877 +msgid "Social - Mostly Public" +msgstr "Sosial - ganske offentlig" + +#: ../../include/permissions.php:877 +msgid "Social - Restricted" +msgstr "Sosial - begrenset" + +#: ../../include/permissions.php:877 +msgid "Social - Private" +msgstr "Sosial - privat" + +#: ../../include/permissions.php:878 +msgid "Community Forum" +msgstr "Forum for fellesskap" + +#: ../../include/permissions.php:878 +msgid "Forum - Mostly Public" +msgstr "Forum - ganske offentlig" + +#: ../../include/permissions.php:878 +msgid "Forum - Restricted" +msgstr "Forum - begrenset" + +#: ../../include/permissions.php:878 +msgid "Forum - Private" +msgstr "Forum - privat" + +#: ../../include/permissions.php:879 +msgid "Feed Republish" +msgstr "Republisering av strømmet innhold" + +#: ../../include/permissions.php:879 +msgid "Feed - Mostly Public" +msgstr "Strøm - ganske offentlig" + +#: ../../include/permissions.php:879 +msgid "Feed - Restricted" +msgstr "Strøm - begrenset" + +#: ../../include/permissions.php:880 +msgid "Special Purpose" +msgstr "Spesiell bruk" + +#: ../../include/permissions.php:880 +msgid "Special - Celebrity/Soapbox" +msgstr "Spesiell - kjendis/talerstol" + +#: ../../include/permissions.php:880 +msgid "Special - Group Repository" +msgstr "Spesiell - gruppelager" + +#: ../../include/permissions.php:881 +msgid "Custom/Expert Mode" +msgstr "Tilpasset/Ekspertmodus" + +#: ../../include/activities.php:41 +msgid " and " +msgstr "og" + +#: ../../include/activities.php:49 +msgid "public profile" +msgstr "offentlig profil" + +#: ../../include/activities.php:58 +#, php-format +msgid "%1$s changed %2$s to “%3$s”" +msgstr "%1$s endret %2$s til “%3$s”" + +#: ../../include/activities.php:59 +#, php-format +msgid "Visit %1$s's %2$s" +msgstr "Besøk %1$s sitt %2$s" + +#: ../../include/activities.php:62 +#, php-format +msgid "%1$s has an updated %2$s, changing %3$s." +msgstr "%1$s har oppdatert %2$s, endret %3$s." + +#: ../../include/bb2diaspora.php:398 +msgid "Attachments:" +msgstr "Vedlegg:" + +#: ../../include/bb2diaspora.php:487 +msgid "$Projectname event notification:" +msgstr "$Projectname hendelsesvarsling:" + #: ../../view/theme/redbasic/php/config.php:82 msgid "Focus (Hubzilla default)" msgstr "Focus (Hubzilla standardtema)" @@ -9962,66 +9766,62 @@ msgstr "Angi størrelsen for samtalens forfatterbilde" msgid "Set size of followup author photos" msgstr "Angi størrelsen på forfatterbilder ved oppfølging" -#: ../../boot.php:1163 +#: ../../boot.php:1162 #, php-format msgctxt "opensearch" msgid "Search %1$s (%2$s)" -msgstr "Søk %1$s (%2$s)" +msgstr "" -#: ../../boot.php:1163 +#: ../../boot.php:1162 msgctxt "opensearch" msgid "$Projectname" -msgstr "$Projectname" +msgstr "" -#: ../../boot.php:1481 +#: ../../boot.php:1480 #, php-format msgid "Update %s failed. See error logs." msgstr "Oppdatering %s mislyktes. Se feilloggen." -#: ../../boot.php:1484 +#: ../../boot.php:1483 #, php-format msgid "Update Error at %s" msgstr "Oppdateringsfeil ved %s" -#: ../../boot.php:1685 +#: ../../boot.php:1684 msgid "" "Create an account to access services and applications within the Hubzilla" msgstr "Lag en konto for å få tilgang til tjenester og programmer i Hubzilla" #: ../../boot.php:1706 -msgid "Login/Email" -msgstr "" - -#: ../../boot.php:1707 msgid "Password" msgstr "Passord" -#: ../../boot.php:1708 +#: ../../boot.php:1707 msgid "Remember me" msgstr "Husk meg" -#: ../../boot.php:1711 +#: ../../boot.php:1710 msgid "Forgot your password?" msgstr "Glemt passordet ditt?" -#: ../../boot.php:2277 +#: ../../boot.php:2276 msgid "toggle mobile" msgstr "Skru på mobil" -#: ../../boot.php:2432 +#: ../../boot.php:2425 msgid "Website SSL certificate is not valid. Please correct." msgstr "Nettstedets SSL-sertifikat er ikke gyldig. Vennligst fiks dette." -#: ../../boot.php:2435 +#: ../../boot.php:2428 #, php-format msgid "[hubzilla] Website SSL error for %s" msgstr "[hubzilla] SSL-feil ved nettsted hos %s" -#: ../../boot.php:2478 +#: ../../boot.php:2469 msgid "Cron/Scheduled tasks not running." msgstr "Cron/planlagte oppgaver kjører ikke." -#: ../../boot.php:2482 +#: ../../boot.php:2473 #, php-format msgid "[hubzilla] Cron tasks not running on %s" msgstr "[hubzilla] Cron-oppgaver kjører ikke på %s" diff --git a/view/nb-no/hstrings.php b/view/nb-no/hstrings.php index 53aae8c0e..e03ba321d 100644 --- a/view/nb-no/hstrings.php +++ b/view/nb-no/hstrings.php @@ -4,39 +4,7 @@ if(! function_exists("string_plural_select_nb_no")) { function string_plural_select_nb_no($n){ return ($n != 1);; }} -App::$rtl = 0; -App::$strings["Social Networking"] = "Sosialt nettverk"; -App::$strings["Social - Mostly Public"] = "Sosial - ganske offentlig"; -App::$strings["Social - Restricted"] = "Sosial - begrenset"; -App::$strings["Social - Private"] = "Sosial - privat"; -App::$strings["Community Forum"] = "Forum for fellesskap"; -App::$strings["Forum - Mostly Public"] = "Forum - ganske offentlig"; -App::$strings["Forum - Restricted"] = "Forum - begrenset"; -App::$strings["Forum - Private"] = "Forum - privat"; -App::$strings["Feed Republish"] = "Republisering av strømmet innhold"; -App::$strings["Feed - Mostly Public"] = "Strøm - ganske offentlig"; -App::$strings["Feed - Restricted"] = "Strøm - begrenset"; -App::$strings["Special Purpose"] = "Spesiell bruk"; -App::$strings["Special - Celebrity/Soapbox"] = "Spesiell - kjendis/talerstol"; -App::$strings["Special - Group Repository"] = "Spesiell - gruppelager"; -App::$strings["Other"] = "Annen"; -App::$strings["Custom/Expert Mode"] = "Tilpasset/Ekspertmodus"; -App::$strings["Can view my channel stream and posts"] = ""; -App::$strings["Can send me their channel stream and posts"] = "Kan sende meg deres kanalstrøm og innlegg"; -App::$strings["Can view my default channel profile"] = "Kan se min standard kanalprofil"; -App::$strings["Can view my connections"] = "Kan se mine forbindelser"; -App::$strings["Can view my file storage and photos"] = "Kan se mine filer og bilder"; -App::$strings["Can upload/modify my file storage and photos"] = ""; -App::$strings["Can view my channel webpages"] = ""; -App::$strings["Can create/edit my channel webpages"] = ""; -App::$strings["Can post on my channel (wall) page"] = ""; -App::$strings["Can comment on or like my posts"] = "Kan kommentere på eller like mine innlegg"; -App::$strings["Can send me private mail messages"] = "Kan sende meg private meldinger"; -App::$strings["Can like/dislike profiles and profile things"] = ""; -App::$strings["Can forward to all my channel connections via @+ mentions in posts"] = ""; -App::$strings["Can chat with me"] = ""; -App::$strings["Can source my public posts in derived channels"] = "Kan bruke mine offentlige innlegg som kanalkilde i egne kanaler"; -App::$strings["Can administer my channel"] = ""; +; App::$strings["parent"] = "opp et nivå"; App::$strings["Collection"] = "Samling"; App::$strings["Principal"] = "Viktigste"; @@ -69,8 +37,63 @@ App::$strings["Remote authentication blocked. You are logged into this site loca App::$strings["Welcome %s. Remote authentication successful."] = "Velkommen %s. Ekstern autentisering er vellykket."; App::$strings["Requested profile is not available."] = "Forespurt profil er ikke tilgjengelig."; App::$strings["Some blurb about what to do when you're new here"] = "En standardtekst om hva du bør gjøre som ny her"; +App::$strings["Block Name"] = "Byggeklossens navn"; +App::$strings["Blocks"] = "Byggeklosser"; +App::$strings["Block Title"] = "Byggeklossens tittel"; +App::$strings["Created"] = "Laget"; +App::$strings["Edited"] = "Endret"; +App::$strings["Share"] = "Del"; +App::$strings["View"] = "Vis"; +App::$strings["Channel not found."] = "Kanalen ble ikke funnet."; +App::$strings["Permissions denied."] = "Tillatelse avvist."; +App::$strings["l, F j"] = "l, F j"; +App::$strings["Link to Source"] = "Lenke til kilde"; +App::$strings["Edit Event"] = "Endre hendelse"; +App::$strings["Create Event"] = "Lag hendelse"; +App::$strings["Previous"] = "Forrige"; +App::$strings["Next"] = "Neste"; +App::$strings["Export"] = "Eksport"; +App::$strings["Import"] = "Importer"; +App::$strings["Submit"] = "Send"; +App::$strings["Today"] = "Idag"; +App::$strings["You must be logged in to see this page."] = "Du må være innloegget for å se denne siden."; +App::$strings["Posts and comments"] = ""; +App::$strings["Only posts"] = ""; +App::$strings["Insufficient permissions. Request redirected to profile page."] = "Utilstrekkelig tillatelse. Forespørsel omdirigert til profilsiden."; +App::$strings["Room not found"] = "Rommet ble ikke funnet"; +App::$strings["Leave Room"] = "Forlat rom"; +App::$strings["Delete Room"] = ""; +App::$strings["I am away right now"] = "Jeg er borte akkurat nå"; +App::$strings["I am online"] = "Jeg er online"; +App::$strings["Bookmark this room"] = "Bokmerk dette rommet"; +App::$strings["Please enter a link URL:"] = "Vennligst skriv inn en lenke URL:"; +App::$strings["Encrypt text"] = "Krypter tekst"; +App::$strings["Insert web link"] = "Sett inn web-lenke"; +App::$strings["Feature disabled."] = ""; +App::$strings["New Chatroom"] = "Nytt chatrom"; +App::$strings["Chatroom name"] = ""; +App::$strings["Expiration of chats (minutes)"] = "Chat utgår (antall minutter)"; +App::$strings["Permissions"] = "Tillatelser"; +App::$strings["%1\$s's Chatrooms"] = "%1\$s sine chatrom"; +App::$strings["No chatrooms available"] = ""; +App::$strings["Create New"] = ""; +App::$strings["Expiration"] = ""; +App::$strings["min"] = ""; App::$strings["Away"] = "Borte"; App::$strings["Online"] = "Online"; +App::$strings["Invalid item."] = "Ugyldig element."; +App::$strings["Bookmark added"] = "Bokmerke lagt til"; +App::$strings["My Bookmarks"] = "Mine bokmerker"; +App::$strings["My Connections Bookmarks"] = "Mine forbindelsers bokmerker"; +App::$strings["Continue"] = "Fortsett"; +App::$strings["Premium Channel Setup"] = "Premiumkanal-oppsett"; +App::$strings["Enable premium channel connection restrictions"] = "Slå på restriksjoner for forbindelse med premiumkanal"; +App::$strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = "Vennligst skriv dine restriksjoner og betingelser, slik som PayPal-kvittering, retningslinjer for bruk, og så videre."; +App::$strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = "Denne kanalen kan kreve ytterligere steg og bekreftelse av følgende betingelser før tilkobling:"; +App::$strings["Potential connections will then see the following text before proceeding:"] = "Potensielle forbindelser vil da se følgende tekst før de går videre:"; +App::$strings["By continuing, I certify that I have complied with any instructions provided on this page."] = "Ved å fortsette bekrefter jeg at jeg har oppfylt alle instruksjoner gitt på denne siden."; +App::$strings["(No specific instructions have been provided by the channel owner.)"] = "(Ingen spesifikke instruksjoner er gitt av kanaleieren.)"; +App::$strings["Restricted or Premium Channel"] = "Begrenset kanal eller premiumkanal"; App::$strings["Could not access contact record."] = "Fikk ikke tilgang til kontaktinformasjonen."; App::$strings["Could not locate selected profile."] = "Fant ikke valgt profil."; App::$strings["Connection updated."] = "Forbindelsen er oppdatert."; @@ -123,7 +146,7 @@ App::$strings["Connection requests will be approved without your interaction"] = App::$strings["This connection's primary address is"] = "Denne forbindelsens primære adresse er"; App::$strings["Available locations:"] = "Tilgjengelige plasseringer:"; App::$strings["The permissions indicated on this page will be applied to all new connections."] = "Tillatelsene angitt på denne siden gjøres gjeldende for alle nye forbindelser."; -App::$strings["Connection Tools"] = "Forbindelsesverktøy"; +App::$strings["Connection Tools"] = ""; App::$strings["Slide to adjust your degree of friendship"] = "Flytt for å justere din grad av vennskap"; App::$strings["Rating"] = "Vurdering"; App::$strings["Slide to adjust your rating"] = "Flytt for å justere din vurdering"; @@ -135,7 +158,6 @@ App::$strings["Do not import posts with this text"] = "Ikke importer innlegg med App::$strings["This information is public!"] = "Denne informasjonen er offentlig!"; App::$strings["Connection Pending Approval"] = "Forbindelse venter på godkjenning"; App::$strings["inherited"] = "arvet"; -App::$strings["Submit"] = "Send"; App::$strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Vennligst velg profilen du ønsker å vise %s når profilen din ses på en sikret måte. "; App::$strings["Their Settings"] = "Deres innstillinger"; App::$strings["My Settings"] = "Mine innstillinger"; @@ -144,30 +166,6 @@ App::$strings["Some permissions may be inherited from your channel's privacy settings, which have higher priority than individual settings. You can change those settings here but they wont have any impact unless the inherited setting changes."] = "Noen tillatelser kan være arvet fra din kanals personverninnstillinger, som har høyere prioritet enn individuelle innstillinger. Du kan endre disse innstillingene her, men de vil ikke få noen effekt før de arvede innstillingene endres."; App::$strings["Last update:"] = "Siste oppdatering:"; App::$strings["Public access denied."] = "Offentlig tilgang avvist."; -App::$strings["Item not found."] = "Elementet ble ikke funnet."; -App::$strings["First Name"] = "Fornavn"; -App::$strings["Last Name"] = "Etternavn"; -App::$strings["Nickname"] = "Kallenavn"; -App::$strings["Full Name"] = "Fullt navn"; -App::$strings["Email"] = "E-post"; -App::$strings["Profile Photo"] = "Profilbilde"; -App::$strings["Profile Photo 16px"] = "Profilbilde 16px"; -App::$strings["Profile Photo 32px"] = "Profilbilde 32px"; -App::$strings["Profile Photo 48px"] = "Profilbilde 48px"; -App::$strings["Profile Photo 64px"] = "Profilbilde 64px"; -App::$strings["Profile Photo 80px"] = "Profilbilde 80px"; -App::$strings["Profile Photo 128px"] = "Profilbilde 128px"; -App::$strings["Timezone"] = "Tidssone"; -App::$strings["Homepage URL"] = "Hjemmeside URL"; -App::$strings["Language"] = "Språk"; -App::$strings["Birth Year"] = "Fødselsår"; -App::$strings["Birth Month"] = "Fødselsmåne"; -App::$strings["Birth Day"] = "Fødselsdag"; -App::$strings["Birthdate"] = "Fødselsdato"; -App::$strings["Gender"] = "Kjønn"; -App::$strings["Male"] = "Mannlig"; -App::$strings["Female"] = "Kvinnelig"; -App::$strings["Channel added."] = "Kanal lagt til."; App::$strings["%d rating"] = array( 0 => "%d vurdering", 1 => "%d vurderinger", @@ -198,74 +196,13 @@ App::$strings["Reverse Alphabetic"] = "Omvendt alfabetisk"; App::$strings["Newest to Oldest"] = "Nyest til eldst"; App::$strings["Oldest to Newest"] = "Eldst til nyest"; App::$strings["No entries (some entries may be hidden)."] = "Ingen oppføringer (noen oppføringer kan være skjult)."; -App::$strings["Continue"] = "Fortsett"; -App::$strings["Premium Channel Setup"] = "Premiumkanal-oppsett"; -App::$strings["Enable premium channel connection restrictions"] = "Slå på restriksjoner for forbindelse med premiumkanal"; -App::$strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = "Vennligst skriv dine restriksjoner og betingelser, slik som PayPal-kvittering, retningslinjer for bruk, og så videre."; -App::$strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = "Denne kanalen kan kreve ytterligere steg og bekreftelse av følgende betingelser før tilkobling:"; -App::$strings["Potential connections will then see the following text before proceeding:"] = "Potensielle forbindelser vil da se følgende tekst før de går videre:"; -App::$strings["By continuing, I certify that I have complied with any instructions provided on this page."] = "Ved å fortsette bekrefter jeg at jeg har oppfylt alle instruksjoner gitt på denne siden."; -App::$strings["(No specific instructions have been provided by the channel owner.)"] = "(Ingen spesifikke instruksjoner er gitt av kanaleieren.)"; -App::$strings["Restricted or Premium Channel"] = "Begrenset kanal eller premiumkanal"; -App::$strings["Calendar entries imported."] = "Kalenderhendelsene er importert."; -App::$strings["No calendar entries found."] = "Ingen kalenderhendelser funnet."; -App::$strings["Event can not end before it has started."] = "Hendelsen kan ikke slutte før den starter."; -App::$strings["Unable to generate preview."] = "Klarer ikke å lage forhåndsvisning."; -App::$strings["Event title and start time are required."] = "Hendelsestittel og starttidspunkt er påkrevd."; -App::$strings["Event not found."] = "Hendelsen ble ikke funnet."; -App::$strings["event"] = "hendelse"; -App::$strings["Edit event title"] = "Endre tittel på hendelse"; -App::$strings["Event title"] = "Tittel på hendelse"; -App::$strings["Required"] = "Påkrevd"; -App::$strings["Categories (comma-separated list)"] = "Kategorier (kommaseparert liste)"; -App::$strings["Edit Category"] = "Endre kategori"; -App::$strings["Category"] = "Kategori"; -App::$strings["Edit start date and time"] = "Endre startdato og tidspunkt"; -App::$strings["Start date and time"] = "Startdato og tidspunkt"; -App::$strings["Finish date and time are not known or not relevant"] = "Sluttdato og tidspunkt er ikke kjent eller ikke relevant"; -App::$strings["Edit finish date and time"] = "Endre sluttdato og tidspunkt"; -App::$strings["Finish date and time"] = "Sluttdato og tidspunkt"; -App::$strings["Adjust for viewer timezone"] = "Juster i forhold til tilskuerens tidssone"; -App::$strings["Important for events that happen in a particular place. Not practical for global holidays."] = "Viktig for hendelser som skjer på et bestemt sted. Ikke praktisk for globale ferier eller fridager."; -App::$strings["Edit Description"] = "Endre beskrivelse"; -App::$strings["Description"] = "Beskrivelse"; -App::$strings["Edit Location"] = "Endre plassering"; -App::$strings["Location"] = "Plassering"; -App::$strings["Share this event"] = "Del denne hendelsen"; -App::$strings["Preview"] = "Forhåndsvisning"; -App::$strings["Permission settings"] = "Tillatelser - innstillinger"; -App::$strings["Advanced Options"] = "Avanserte alternativer"; -App::$strings["l, F j"] = "l, F j"; -App::$strings["Edit event"] = "Endre hendelse"; -App::$strings["Delete event"] = "Slett hendelse"; -App::$strings["Link to Source"] = "Lenke til kilde"; -App::$strings["calendar"] = "kalender"; -App::$strings["Edit Event"] = "Endre hendelse"; -App::$strings["Create Event"] = "Lag hendelse"; -App::$strings["Previous"] = "Forrige"; -App::$strings["Next"] = "Neste"; -App::$strings["Export"] = "Eksport"; -App::$strings["View"] = "Vis"; -App::$strings["Month"] = ""; -App::$strings["Week"] = ""; -App::$strings["Day"] = ""; -App::$strings["Today"] = "Idag"; -App::$strings["Event removed"] = "Hendelse slettet"; -App::$strings["Failed to remove event"] = "Mislyktes med å slette hendelse"; -App::$strings["Bookmark added"] = "Bokmerke lagt til"; -App::$strings["My Bookmarks"] = "Mine bokmerker"; -App::$strings["My Connections Bookmarks"] = "Mine forbindelsers bokmerker"; +App::$strings["Item not found."] = "Elementet ble ikke funnet."; App::$strings["Item not found"] = "Elementet ble ikke funnet."; -App::$strings["Item is not editable"] = "Elementet kan ikke endres"; -App::$strings["Edit post"] = "Endre innlegg"; -App::$strings["Photos"] = "Bilder"; -App::$strings["Cancel"] = "Avbryt"; -App::$strings["Invalid item."] = "Ugyldig element."; -App::$strings["Channel not found."] = "Kanalen ble ikke funnet."; -App::$strings["Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."] = "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."; -App::$strings["Save to Folder:"] = "Lagre til mappe:"; -App::$strings["- select -"] = "- velg -"; -App::$strings["Save"] = "Lagre"; +App::$strings["Title (optional)"] = "Tittel (valgfri)"; +App::$strings["Edit Block"] = "Endre byggekloss"; +App::$strings["No channel."] = "Ingen kanal."; +App::$strings["Common connections"] = "Felles forbindelser"; +App::$strings["No connections in common."] = "Ingen forbindelser felles."; App::$strings["Blocked"] = "Blokkert"; App::$strings["Ignored"] = "Ignorert"; App::$strings["Hidden"] = "Skjult"; @@ -317,38 +254,51 @@ App::$strings["select a photo from your photo albums"] = "velg et bilde fra dine App::$strings["Crop Image"] = "Beskjær bildet"; App::$strings["Please adjust the image cropping for optimum viewing."] = "Vennligst juster bildebeskjæringen for optimal visning."; App::$strings["Done Editing"] = "Avslutt redigering"; -App::$strings["webpage"] = "nettside"; -App::$strings["block"] = "byggekloss"; -App::$strings["layout"] = "layout"; -App::$strings["menu"] = "meny"; -App::$strings["%s element installed"] = "%s element installert"; -App::$strings["%s element installation failed"] = "Installasjon av %s-element mislyktes"; -App::$strings["Permissions denied."] = "Tillatelse avvist."; -App::$strings["Import"] = "Importer"; +App::$strings["Item is not editable"] = "Elementet kan ikke endres"; +App::$strings["Edit post"] = "Endre innlegg"; +App::$strings["Calendar entries imported."] = "Kalenderhendelsene er importert."; +App::$strings["No calendar entries found."] = "Ingen kalenderhendelser funnet."; +App::$strings["Event can not end before it has started."] = "Hendelsen kan ikke slutte før den starter."; +App::$strings["Unable to generate preview."] = "Klarer ikke å lage forhåndsvisning."; +App::$strings["Event title and start time are required."] = "Hendelsestittel og starttidspunkt er påkrevd."; +App::$strings["Event not found."] = "Hendelsen ble ikke funnet."; +App::$strings["event"] = "hendelse"; +App::$strings["Edit event title"] = "Endre tittel på hendelse"; +App::$strings["Event title"] = "Tittel på hendelse"; +App::$strings["Required"] = "Påkrevd"; +App::$strings["Categories (comma-separated list)"] = "Kategorier (kommaseparert liste)"; +App::$strings["Edit Category"] = "Endre kategori"; +App::$strings["Category"] = "Kategori"; +App::$strings["Edit start date and time"] = "Endre startdato og tidspunkt"; +App::$strings["Start date and time"] = "Startdato og tidspunkt"; +App::$strings["Finish date and time are not known or not relevant"] = "Sluttdato og tidspunkt er ikke kjent eller ikke relevant"; +App::$strings["Edit finish date and time"] = "Endre sluttdato og tidspunkt"; +App::$strings["Finish date and time"] = "Sluttdato og tidspunkt"; +App::$strings["Adjust for viewer timezone"] = "Juster i forhold til tilskuerens tidssone"; +App::$strings["Important for events that happen in a particular place. Not practical for global holidays."] = "Viktig for hendelser som skjer på et bestemt sted. Ikke praktisk for globale ferier eller fridager."; +App::$strings["Edit Description"] = "Endre beskrivelse"; +App::$strings["Description"] = "Beskrivelse"; +App::$strings["Edit Location"] = "Endre plassering"; +App::$strings["Location"] = "Plassering"; +App::$strings["Share this event"] = "Del denne hendelsen"; +App::$strings["Preview"] = "Forhåndsvisning"; +App::$strings["Permission settings"] = "Tillatelser - innstillinger"; +App::$strings["Advanced Options"] = "Avanserte alternativer"; +App::$strings["Edit event"] = "Endre hendelse"; +App::$strings["Delete event"] = "Slett hendelse"; +App::$strings["calendar"] = "kalender"; +App::$strings["Event removed"] = "Hendelse slettet"; +App::$strings["Failed to remove event"] = "Mislyktes med å slette hendelse"; +App::$strings["Photos"] = "Bilder"; +App::$strings["Cancel"] = "Avbryt"; App::$strings["This site is not a directory server"] = "Dette nettstedet er ikke en katalogtjener"; App::$strings["This directory server requires an access token"] = "Denne katalogtjeneren krever en tilgangsnøkkel (access token)"; -App::$strings["You must be logged in to see this page."] = "Du må være innloegget for å se denne siden."; -App::$strings["Room not found"] = "Rommet ble ikke funnet"; -App::$strings["Leave Room"] = "Forlat rom"; -App::$strings["Delete Room"] = "Slett rom"; -App::$strings["I am away right now"] = "Jeg er borte akkurat nå"; -App::$strings["I am online"] = "Jeg er online"; -App::$strings["Bookmark this room"] = "Bokmerk dette rommet"; -App::$strings["Please enter a link URL:"] = "Vennligst skriv inn en lenke URL:"; -App::$strings["Encrypt text"] = "Krypter tekst"; -App::$strings["Insert web link"] = "Sett inn web-lenke"; -App::$strings["Feature disabled."] = "Funksjonen er avskrudd."; -App::$strings["New Chatroom"] = "Nytt chatrom"; -App::$strings["Chatroom name"] = "Navn på chatrom"; -App::$strings["Expiration of chats (minutes)"] = "Chat utgår (antall minutter)"; -App::$strings["Permissions"] = "Tillatelser"; -App::$strings["%1\$s's Chatrooms"] = "%1\$s sine chatrom"; -App::$strings["No chatrooms available"] = "Ingen tilgjengelige chatrom"; -App::$strings["Create New"] = "Lag ny"; -App::$strings["Expiration"] = "Utløper"; -App::$strings["min"] = "min"; +App::$strings["Save to Folder:"] = "Lagre til mappe:"; +App::$strings["- select -"] = "- velg -"; +App::$strings["Save"] = "Lagre"; App::$strings["Invalid message"] = "Ugyldig melding"; App::$strings["no results"] = "ingen resultater"; +App::$strings["Delivery report for %1\$s"] = "Leveringsrapport for %1\$s"; App::$strings["channel sync processed"] = "Kanalsynkronisering er behandlet"; App::$strings["queued"] = "lagt i kø"; App::$strings["posted"] = "lagt inn"; @@ -360,14 +310,14 @@ App::$strings["recipient not found"] = "mottaker ble ikke funnet"; App::$strings["mail recalled"] = "melding tilbakekalt"; App::$strings["duplicate mail received"] = "duplikat av melding mottatt"; App::$strings["mail delivered"] = "melding mottatt"; -App::$strings["Delivery report for %1\$s"] = "Leveringsrapport for %1\$s"; -App::$strings["Options"] = ""; -App::$strings["Redeliver"] = ""; App::$strings["Layout Name"] = "Layout-navn"; App::$strings["Layout Description (Optional)"] = "Layoutens beskrivelse (valgfritt)"; App::$strings["Edit Layout"] = "Endre layout"; -App::$strings["Page link"] = "Sidelenke"; +App::$strings["Page link"] = ""; App::$strings["Edit Webpage"] = "Endre webside"; +App::$strings["Channel added."] = "Kanal lagt til."; +App::$strings["network"] = "nettverk"; +App::$strings["RSS"] = "RSS"; App::$strings["Privacy group created."] = "Personverngruppen er opprettet."; App::$strings["Could not create privacy group."] = "Kunne ikke opprette personverngruppen."; App::$strings["Privacy group not found."] = "Personverngruppen ble ikke funnet"; @@ -381,33 +331,16 @@ App::$strings["Privacy group editor"] = "Personverngruppebehandler"; App::$strings["Members"] = "Medlemmer"; App::$strings["All Connected Channels"] = "Alle tilkoblede kanaler"; App::$strings["Click on a channel to add or remove."] = "Klikk på en kanal for å legge til eller fjerne."; -App::$strings["App installed."] = "App installert."; -App::$strings["Malformed app."] = "Feil oppsett for app-en."; -App::$strings["Embed code"] = "Innbyggingskode"; -App::$strings["Edit App"] = "Endre app"; -App::$strings["Create App"] = "Lag app"; -App::$strings["Name of app"] = "Navn på app"; -App::$strings["Location (URL) of app"] = "Plassering (URL) til app"; -App::$strings["Photo icon URL"] = "Bildeikon URL"; -App::$strings["80 x 80 pixels - optional"] = "80 x80 pixler - valgfritt"; -App::$strings["Categories (optional, comma separated list)"] = "Kategorier (valgfri, kommaseparert liste)"; -App::$strings["Version ID"] = "Versjons-ID"; -App::$strings["Price of app"] = "Pris på app"; -App::$strings["Location (URL) to purchase app"] = "Plassering (URL) for å kjøpe app"; +App::$strings["Share content from Firefox to \$Projectname"] = "Del innhold fra Firefox til \$Projectname"; +App::$strings["Activate the Firefox \$Projectname provider"] = "Skru på Firefox \$Projectname tilbyderen"; +App::$strings["Authorize application connection"] = "Tillat programforbindelse"; +App::$strings["Return to your app and insert this Securty Code:"] = "Gå tilbake til din app og legg inn denne sikkerhetskoden:"; +App::$strings["Please login to continue."] = "Vennligst logg inn for å fortsette."; +App::$strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Vil du tillate dette programmet å få tilgang til dine innlegg og kontakter, og/eller lage nye innlegg for deg?"; App::$strings["Documentation Search"] = "Søk i dokumentasjon"; App::$strings["Help:"] = "Hjelp:"; App::$strings["Help"] = "Hjelp"; App::$strings["\$Projectname Documentation"] = "\$Projectname dokumentasjon"; -App::$strings["Item not available."] = "Elementet er ikke tilgjengelig."; -App::$strings["Layout updated."] = "Layout er oppdatert."; -App::$strings["Edit System Page Description"] = "Endre beskrivelsen av systemsiden"; -App::$strings["Layout not found."] = "Layouten ble ikke funnet."; -App::$strings["Module Name:"] = "Modulnavn:"; -App::$strings["Layout Help"] = "Layout-hjelp"; -App::$strings["Share content from Firefox to \$Projectname"] = "Del innhold fra Firefox til \$Projectname"; -App::$strings["Activate the Firefox \$Projectname provider"] = "Skru på Firefox \$Projectname tilbyderen"; -App::$strings["network"] = "nettverk"; -App::$strings["RSS"] = "RSS"; App::$strings["Permission Denied."] = "Tillatelse avvist."; App::$strings["File not found."] = "Filen ble ikke funnet."; App::$strings["Edit file permissions"] = "Endre filtillatelser"; @@ -419,100 +352,8 @@ App::$strings["Copy/paste this URL to link file from a web page"] = "Kopier og l App::$strings["Share this file"] = "Del denne filen"; App::$strings["Show URL to this file"] = "Vis URLen til denne filen"; App::$strings["Notify your contacts about this file"] = "Varsle dine kontakter om denne filen"; -App::$strings["Layouts"] = "Layout"; -App::$strings["Comanche page description language help"] = "Hjelp med Comanche sidebeskrivelsesspråk"; -App::$strings["Layout Description"] = "Layout-beskrivelse"; -App::$strings["Created"] = "Laget"; -App::$strings["Edited"] = "Endret"; -App::$strings["Share"] = "Del"; -App::$strings["Download PDL file"] = "Last ned PDL-fil"; -App::$strings["Like/Dislike"] = "Liker/Liker ikke"; -App::$strings["This action is restricted to members."] = "Denne handlingen er begrenset til medlemmer."; -App::$strings["Please login with your \$Projectname ID or register as a new \$Projectname member to continue."] = "Vennligst logg inn med din \$Projectname ID eller registrer deg som et nytt \$Projectname-medlem for å fortsette"; -App::$strings["Invalid request."] = "Ugyldig forespørsel."; -App::$strings["channel"] = "kanal"; -App::$strings["thing"] = "ting"; -App::$strings["Channel unavailable."] = "Kanalen er utilgjengelig."; -App::$strings["Previous action reversed."] = "Forrige handling er omgjort."; -App::$strings["photo"] = "foto"; -App::$strings["status"] = "status"; -App::$strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s liker %2\$s sin %3\$s"; -App::$strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s liker ikke %2\$s sin %3\$s"; -App::$strings["%1\$s agrees with %2\$s's %3\$s"] = "%1\$s er enig med %2\$s sin %3\$s"; -App::$strings["%1\$s doesn't agree with %2\$s's %3\$s"] = "%1\$s er ikke enig med %2\$s sin %3\$s"; -App::$strings["%1\$s abstains from a decision on %2\$s's %3\$s"] = "%1\$s avstår fra å mene noe om %2\$s sin %3\$s"; -App::$strings["%1\$s is attending %2\$s's %3\$s"] = "%1\$s deltar på %2\$ss %3\$s"; -App::$strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$s deltar ikke på %2\$ss %3\$s"; -App::$strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$s deltar kanskje på %2\$ss %3\$s"; -App::$strings["Action completed."] = "Handling ferdig."; -App::$strings["Thank you."] = "Tusen takk."; -App::$strings["Profile not found."] = "Profilen ble ikke funnet."; -App::$strings["Profile deleted."] = "Profilen er slettet."; -App::$strings["Profile-"] = "Profil-"; -App::$strings["New profile created."] = "Ny profil opprettet."; -App::$strings["Profile unavailable to clone."] = "Profilen er utilgjengelig for klonen."; -App::$strings["Profile unavailable to export."] = "Profilen er utilgjengelig for eksport."; -App::$strings["Profile Name is required."] = "Profilnavn er påkrevd."; -App::$strings["Marital Status"] = "Sivilstand"; -App::$strings["Romantic Partner"] = "Romantisk partner"; -App::$strings["Likes"] = "Liker"; -App::$strings["Dislikes"] = "Liker ikke"; -App::$strings["Work/Employment"] = "Arbeid/sysselsetting"; -App::$strings["Religion"] = "Religion"; -App::$strings["Political Views"] = "Politiske synspunkter"; -App::$strings["Sexual Preference"] = "Seksuelle preferanser"; -App::$strings["Homepage"] = "Hjemmeside"; -App::$strings["Interests"] = "Interesser"; -App::$strings["Address"] = "Adresse"; -App::$strings["Profile updated."] = "Profilen er oppdatert."; -App::$strings["Hide your connections list from viewers of this profile"] = "Skjul listen med forbindelser fra besøkende som ser denne profilen"; -App::$strings["Edit Profile Details"] = "Endre profildetaljer"; -App::$strings["View this profile"] = "Vis denne profilen"; -App::$strings["Edit visibility"] = "Endre synlighet"; -App::$strings["Profile Tools"] = "Profilverktøy"; -App::$strings["Change cover photo"] = "Endre forsidebilde"; -App::$strings["Change profile photo"] = "Endre profilbilde"; -App::$strings["Create a new profile using these settings"] = "Lag en ny profil ved å bruke disse innstillingene"; -App::$strings["Clone this profile"] = "Klon denne profilen"; -App::$strings["Delete this profile"] = "Slett denne profilen"; -App::$strings["Add profile things"] = "Legg til profilting"; -App::$strings["Personal"] = "Personlig"; -App::$strings["Relation"] = "Forhold"; -App::$strings["Miscellaneous"] = "Forskjellig"; -App::$strings["Import profile from file"] = "Importer profil fra fil"; -App::$strings["Export profile to file"] = "Eksporter profil til fil"; -App::$strings["Your gender"] = "Ditt kjønn"; -App::$strings["Marital status"] = "Sivilstand"; -App::$strings["Sexual preference"] = "Seksuelle preferanser"; -App::$strings["Profile name"] = "Profilnavn"; -App::$strings["This is your default profile."] = "Dette er din standardprofil."; -App::$strings["Your full name"] = "Ditt fulle navn"; -App::$strings["Title/Description"] = "Tittel/beskrivelse"; -App::$strings["Street address"] = "Gateadresse"; -App::$strings["Locality/City"] = "Sted/by"; -App::$strings["Region/State"] = "Region/fylke"; -App::$strings["Postal/Zip code"] = "Postnummer/ZIP-kode"; -App::$strings["Country"] = "Land"; -App::$strings["Who (if applicable)"] = "Hvem (hvis det er aktuelt)"; -App::$strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Eksempler: kari123, Kari Villiamsen, kari@example.com"; -App::$strings["Since (date)"] = "Siden (dato)"; -App::$strings["Tell us about yourself"] = "Fortell oss om deg selv"; -App::$strings["Hometown"] = "Hjemby"; -App::$strings["Political views"] = "Politiske synspunkter"; -App::$strings["Religious views"] = "Religiøse synspunkter"; -App::$strings["Keywords used in directory listings"] = "Nøkkelord bruk i katalogoppføringer"; -App::$strings["Example: fishing photography software"] = "Eksempel: fisking fotografering programvare"; -App::$strings["Musical interests"] = "Musikkinteresser"; -App::$strings["Books, literature"] = "Bøker, litteratur"; -App::$strings["Television"] = "TV/fjernsyn"; -App::$strings["Film/Dance/Culture/Entertainment"] = "Film/dans/kultur/underholdning"; -App::$strings["Hobbies/Interests"] = "Hobbier/Interesser"; -App::$strings["Love/Romance"] = "Kjærlighet/romantikk"; -App::$strings["School/Education"] = "Skole/utdanning"; -App::$strings["Contact information and social networks"] = "Kontaktinformasjon og sosiale nettverk"; -App::$strings["My other channels"] = "Mine andre kanaler"; -App::$strings["Profile Image"] = "Profilbilde"; -App::$strings["Edit Profiles"] = "Endre profiler"; +App::$strings["Apps"] = "Apper"; +App::$strings["Item not available."] = "Elementet er ikke tilgjengelig."; App::$strings["Your service plan only allows %d channels."] = "Din tjenesteplan tillater bare %d kanaler."; App::$strings["Nothing to import."] = "Ingenting å importere."; App::$strings["Unable to download data from old server"] = "Ikke i stand til å laste ned data fra gammel tjener"; @@ -533,8 +374,6 @@ App::$strings["For either option, please choose whether to make this hub your ne App::$strings["Make this hub my primary location"] = "Gjør dette nettstedet til min primære plassering"; App::$strings["Import existing posts if possible (experimental - limited by available memory"] = "Importer eksisterende innlegg om mulig (eksperimentelt - begrenset av tilgjengelig minne)"; App::$strings["This process may take several minutes to complete. Please submit the form only once and leave this page open until finished."] = "Denne prosessen kan ta flere minutter å fullføre. Vennligst send inn dette skjemaet bare en gang og la siden være åpen inntil den er ferdig."; -App::$strings["\$Projectname"] = "\$Projectname"; -App::$strings["Welcome to %s"] = "Velkommen til %s"; App::$strings["Unable to locate original post."] = "Ikke i stand til å finne opprinnelig innlegg."; App::$strings["Empty post discarded."] = "Tomt innlegg forkastet."; App::$strings["Executable content type not permitted to this channel."] = "Kjørbar innholdstype er ikke tillat for denne kanalen."; @@ -543,76 +382,60 @@ App::$strings["System error. Post not saved."] = "Systemfeil. Innlegg ble ikke l App::$strings["Unable to obtain post information from database."] = "Ikke i stand til å få tak i informasjon om innlegg fra databasen."; App::$strings["You have reached your limit of %1$.0f top level posts."] = "Du har nådd din grense på %1$.0f startinnlegg."; App::$strings["You have reached your limit of %1$.0f webpages."] = "Du har nådd din grense på %1$.0f websider."; -App::$strings["Page owner information could not be retrieved."] = "Informasjon om sideeier kunne ikke hentes."; -App::$strings["Profile Photos"] = "Profilbilder"; -App::$strings["Album not found."] = "Albumet ble ikke funnet."; -App::$strings["Delete Album"] = "Slett album"; -App::$strings["Multiple storage folders exist with this album name, but within different directories. Please remove the desired folder or folders using the Files manager"] = "Flere lagringsmapper finnes med dette albumnavnet, men i ulike mapper. Vennligst fjern den ønskede mappen eller mappene med filbehandleren."; -App::$strings["Delete Photo"] = "Slett bilde"; -App::$strings["No photos selected"] = "Ingen bilder valgt"; -App::$strings["Access to this item is restricted."] = "Tilgang til dette elementet er begrenset."; -App::$strings["%1$.2f MB of %2$.2f MB photo storage used."] = "%1$.2f MB av %2$.2f MB lagringsplass til bilder er brukt."; -App::$strings["%1$.2f MB photo storage used."] = "%1$.2f MB lagringsplass til bilder er brukt."; -App::$strings["Upload Photos"] = "Last opp bilder"; -App::$strings["Enter an album name"] = "Skriv et albumnavn"; -App::$strings["or select an existing album (doubleclick)"] = "eller velg et eksisterende album (dobbeltklikk)"; -App::$strings["Create a status post for this upload"] = "Lag et statusinnlegg for denne opplastingen"; -App::$strings["Caption (optional):"] = "Bildetekst (valgfritt):"; -App::$strings["Description (optional):"] = "Beskrivelse (valgfritt):"; -App::$strings["Album name could not be decoded"] = "Albumnavnet kunne ikke dekodes"; -App::$strings["Contact Photos"] = "Kontaktbilder"; -App::$strings["Show Newest First"] = "Vis nyeste først"; -App::$strings["Show Oldest First"] = "Vis eldste først"; -App::$strings["View Photo"] = "Vis foto"; -App::$strings["Edit Album"] = "Endre album"; -App::$strings["Permission denied. Access to this item may be restricted."] = "Tillatelse avvist. Tilgang til dette elementet kan være begrenset."; -App::$strings["Photo not available"] = "Bilde er utilgjengelig"; -App::$strings["Use as profile photo"] = "Bruk som profilbilde"; -App::$strings["Use as cover photo"] = "Bruk som forsidebilde"; -App::$strings["Private Photo"] = "Privat bilde"; -App::$strings["View Full Size"] = "Vis i full størrelse"; -App::$strings["Remove"] = "Fjern"; -App::$strings["Edit photo"] = "Endre bilde"; -App::$strings["Rotate CW (right)"] = "Roter med klokka (mot høyre)"; -App::$strings["Rotate CCW (left)"] = "Roter mot klokka (venstre)"; -App::$strings["Enter a new album name"] = "Skriv et nytt albumnavn"; -App::$strings["or select an existing one (doubleclick)"] = "eller velg et eksisterende album (dobbeltklikk)"; -App::$strings["Caption"] = "Overskrift"; -App::$strings["Add a Tag"] = "Legg til merkelapp"; -App::$strings["Example: @bob, @Barbara_Jensen, @jim@example.com"] = "Eksempel: @bob, @Barbara_Jensen, @jim@example.com"; -App::$strings["Flag as adult in album view"] = "Flag som voksent i albumvisning"; -App::$strings["I like this (toggle)"] = "Jeg liker dette (skru av og på)"; -App::$strings["I don't like this (toggle)"] = "Jeg liker ikke dette (skru av og på)"; -App::$strings["Please wait"] = "Vennligst vent"; -App::$strings["This is you"] = "Dette er deg"; -App::$strings["Comment"] = "Kommentar"; -App::$strings["__ctx:title__ Likes"] = "Liker"; -App::$strings["__ctx:title__ Dislikes"] = "Liker ikke"; -App::$strings["__ctx:title__ Agree"] = "Enig"; -App::$strings["__ctx:title__ Disagree"] = "Uenig"; -App::$strings["__ctx:title__ Abstain"] = "Avstår"; -App::$strings["__ctx:title__ Attending"] = "Deltar"; -App::$strings["__ctx:title__ Not attending"] = "Deltar ikke"; -App::$strings["__ctx:title__ Might attend"] = "Deltar kanskje"; -App::$strings["View all"] = "Vis alle"; -App::$strings["__ctx:noun__ Like"] = array( - 0 => "Liker", - 1 => "Liker", -); -App::$strings["__ctx:noun__ Dislike"] = array( - 0 => "Liker ikke", - 1 => "Liker ikke", -); -App::$strings["Photo Tools"] = "Fotoverktøy"; -App::$strings["In This Photo:"] = "I dette bildet:"; -App::$strings["Map"] = "Kart"; -App::$strings["__ctx:noun__ Likes"] = "Liker"; -App::$strings["__ctx:noun__ Dislikes"] = "Liker ikke"; -App::$strings["Close"] = "Lukk"; -App::$strings["View Album"] = "Vis album"; -App::$strings["Recent Photos"] = "Nye bilder"; -App::$strings["Remote privacy information not available."] = "Ekstern personverninformasjon er ikke tilgjengelig."; -App::$strings["Visible to:"] = "Synlig for:"; +App::$strings["Layouts"] = "Layout"; +App::$strings["Comanche page description language help"] = "Hjelp med Comanche sidebeskrivelsesspråk"; +App::$strings["Layout Description"] = "Layout-beskrivelse"; +App::$strings["Download PDL file"] = "Last ned PDL-fil"; +App::$strings["\$Projectname"] = "\$Projectname"; +App::$strings["Welcome to %s"] = "Velkommen til %s"; +App::$strings["First Name"] = "Fornavn"; +App::$strings["Last Name"] = "Etternavn"; +App::$strings["Nickname"] = "Kallenavn"; +App::$strings["Full Name"] = "Fullt navn"; +App::$strings["Email"] = "E-post"; +App::$strings["Profile Photo"] = "Profilbilde"; +App::$strings["Profile Photo 16px"] = "Profilbilde 16px"; +App::$strings["Profile Photo 32px"] = "Profilbilde 32px"; +App::$strings["Profile Photo 48px"] = "Profilbilde 48px"; +App::$strings["Profile Photo 64px"] = "Profilbilde 64px"; +App::$strings["Profile Photo 80px"] = "Profilbilde 80px"; +App::$strings["Profile Photo 128px"] = "Profilbilde 128px"; +App::$strings["Timezone"] = "Tidssone"; +App::$strings["Homepage URL"] = "Hjemmeside URL"; +App::$strings["Language"] = "Språk"; +App::$strings["Birth Year"] = "Fødselsår"; +App::$strings["Birth Month"] = "Fødselsmåne"; +App::$strings["Birth Day"] = "Fødselsdag"; +App::$strings["Birthdate"] = "Fødselsdato"; +App::$strings["Gender"] = "Kjønn"; +App::$strings["Male"] = "Mannlig"; +App::$strings["Female"] = "Kvinnelig"; +App::$strings["webpage"] = "nettside"; +App::$strings["block"] = "byggekloss"; +App::$strings["layout"] = "layout"; +App::$strings["menu"] = "meny"; +App::$strings["%s element installed"] = "%s element installert"; +App::$strings["%s element installation failed"] = "Installasjon av %s-element mislyktes"; +App::$strings["Like/Dislike"] = "Liker/Liker ikke"; +App::$strings["This action is restricted to members."] = "Denne handlingen er begrenset til medlemmer."; +App::$strings["Please login with your \$Projectname ID or register as a new \$Projectname member to continue."] = "Vennligst logg inn med din \$Projectname ID eller registrer deg som et nytt \$Projectname-medlem for å fortsette"; +App::$strings["Invalid request."] = "Ugyldig forespørsel."; +App::$strings["channel"] = "kanal"; +App::$strings["thing"] = "ting"; +App::$strings["Channel unavailable."] = "Kanalen er utilgjengelig."; +App::$strings["Previous action reversed."] = "Forrige handling er omgjort."; +App::$strings["photo"] = "foto"; +App::$strings["status"] = "status"; +App::$strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s liker %2\$s sin %3\$s"; +App::$strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s liker ikke %2\$s sin %3\$s"; +App::$strings["%1\$s agrees with %2\$s's %3\$s"] = "%1\$s er enig med %2\$s sin %3\$s"; +App::$strings["%1\$s doesn't agree with %2\$s's %3\$s"] = "%1\$s er ikke enig med %2\$s sin %3\$s"; +App::$strings["%1\$s abstains from a decision on %2\$s's %3\$s"] = "%1\$s avstår fra å mene noe om %2\$s sin %3\$s"; +App::$strings["%1\$s is attending %2\$s's %3\$s"] = "%1\$s deltar på %2\$ss %3\$s"; +App::$strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$s deltar ikke på %2\$ss %3\$s"; +App::$strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$s deltar kanskje på %2\$ss %3\$s"; +App::$strings["Action completed."] = "Handling ferdig."; +App::$strings["Thank you."] = "Tusen takk."; App::$strings["Import completed"] = "Import ferdig"; App::$strings["Import Items"] = "Importer elementer"; App::$strings["Use this form to import existing posts and content from an export file."] = "Bruk dette skjemaet for å importere eksisterende innlegg og innhold fra en eksportfil."; @@ -635,15 +458,18 @@ App::$strings["1. Register at any \$Projectname location (they are all inter-con App::$strings["2. Enter my \$Projectname network address into the site searchbar."] = "2. Skriv inn min \$Projectname-adresse i nettstedets søkefelt."; App::$strings["or visit"] = "eller besøke"; App::$strings["3. Click [Connect]"] = "3. Klikk [Forbindelse]"; +App::$strings["Remote privacy information not available."] = "Ekstern personverninformasjon er ikke tilgjengelig."; +App::$strings["Visible to:"] = "Synlig for:"; App::$strings["Location not found."] = "Plassering er ikke funnet."; App::$strings["Location lookup failed."] = "Oppslag på plassering mislyktes."; App::$strings["Please select another location to become primary before removing the primary location."] = "Vennligst velg en annen plassering som primær før du sletter gjeldende primære plassering."; App::$strings["Syncing locations"] = "Synkroniserer plasseringer"; App::$strings["No locations found."] = "Ingen plasseringer ble funnet."; App::$strings["Manage Channel Locations"] = "Håndter kanalplasseringer"; -App::$strings["Primary"] = "Hoved"; +App::$strings["Address"] = "Adresse"; +App::$strings["Primary"] = ""; App::$strings["Drop"] = "Slett"; -App::$strings["Sync Now"] = "Synkroniser nå"; +App::$strings["Sync Now"] = ""; App::$strings["Please wait several minutes between consecutive operations."] = "Vennligst vent flere minutter mellom hver etterfølgende operasjon."; App::$strings["When possible, drop a location by logging into that website/hub and removing your channel."] = "Når mulig, fjern en plassering ved å logge inn på det nettstedet eller den hub-en og fjern din kanal."; App::$strings["Use this form to drop the location if the hub is no longer operating."] = "Bruk dette skjemaet for å fjerne plasseringen hvis huben ikke er i drift lenger."; @@ -680,7 +506,23 @@ App::$strings["Default Channel"] = "Standardkanal"; App::$strings["Make Default"] = "Gjør til standard"; App::$strings["%d new messages"] = "%d nye meldinger"; App::$strings["%d new introductions"] = "%d nye introduksjoner"; -App::$strings["Delegated Channel"] = "Delegert kanal"; +App::$strings["Delegated Channel"] = ""; +App::$strings["No valid account found."] = "Ingen gyldig konto funnet."; +App::$strings["Password reset request issued. Check your email."] = "Forespørsel om å tilbakestille passord er mottatt. Sjekk e-posten din."; +App::$strings["Site Member (%s)"] = "Nettstedsmedlem (%s)"; +App::$strings["Password reset requested at %s"] = "Forespurt om å tilbakestille passord hos %s"; +App::$strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Forespørsel kunne ikke bekreftes. (Du kan ha sendt den inn tidligere.) Tilbakestilling av passord mislyktes."; +App::$strings["Password Reset"] = "Tilbakestill passord"; +App::$strings["Your password has been reset as requested."] = "Ditt passord har blitt tilbakestilt som forespurt."; +App::$strings["Your new password is"] = "Ditt nye passord er"; +App::$strings["Save or copy your new password - and then"] = "Lagre eller kopier ditt nye passord, og deretter kan du"; +App::$strings["click here to login"] = "klikke her for å logge inn"; +App::$strings["Your password may be changed from the Settings page after successful login."] = "Ditt passord kan endres på siden Innstillinger etter vellykket innlogging."; +App::$strings["Your password has changed at %s"] = "Ditt passord er endret hos %s"; +App::$strings["Forgot your Password?"] = "Glemt passord ditt?"; +App::$strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Skriv e-postadressen din og send inn for å tilbakestille passordet ditt. Sjekk deretter din e-post for videre instruksjoner."; +App::$strings["Email Address"] = "E-postadresse"; +App::$strings["Reset"] = "Tilbakestill"; App::$strings["Unable to update menu."] = "Ikke i stand til å oppdatere meny."; App::$strings["Unable to create menu."] = "Ikke i stand til å lage meny."; App::$strings["Menu Name"] = "Menynavn"; @@ -705,25 +547,13 @@ App::$strings["Menu title"] = "Menytittel"; App::$strings["Menu title as seen by others"] = "Menytittelen andre ser"; App::$strings["Allow bookmarks"] = "Tillat bokmerker"; App::$strings["Not found."] = "Ikke funnet."; -App::$strings["No valid account found."] = "Ingen gyldig konto funnet."; -App::$strings["Password reset request issued. Check your email."] = "Forespørsel om å tilbakestille passord er mottatt. Sjekk e-posten din."; -App::$strings["Site Member (%s)"] = "Nettstedsmedlem (%s)"; -App::$strings["Password reset requested at %s"] = "Forespurt om å tilbakestille passord hos %s"; -App::$strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Forespørsel kunne ikke bekreftes. (Du kan ha sendt den inn tidligere.) Tilbakestilling av passord mislyktes."; -App::$strings["Password Reset"] = "Tilbakestill passord"; -App::$strings["Your password has been reset as requested."] = "Ditt passord har blitt tilbakestilt som forespurt."; -App::$strings["Your new password is"] = "Ditt nye passord er"; -App::$strings["Save or copy your new password - and then"] = "Lagre eller kopier ditt nye passord, og deretter kan du"; -App::$strings["click here to login"] = "klikke her for å logge inn"; -App::$strings["Your password may be changed from the Settings page after successful login."] = "Ditt passord kan endres på siden Innstillinger etter vellykket innlogging."; -App::$strings["Your password has changed at %s"] = "Ditt passord er endret hos %s"; -App::$strings["Forgot your Password?"] = "Glemt passord ditt?"; -App::$strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Skriv e-postadressen din og send inn for å tilbakestille passordet ditt. Sjekk deretter din e-post for videre instruksjoner."; -App::$strings["Email Address"] = "E-postadresse"; -App::$strings["Reset"] = "Tilbakestill"; App::$strings["__ctx:mood__ %1\$s is %2\$s"] = "%1\$s er %2\$s"; App::$strings["Mood"] = "Stemning"; App::$strings["Set your current mood and tell your friends"] = "Angi ditt nåværende humør og fortell dine venner"; +App::$strings["Profile Match"] = "Profiltreff"; +App::$strings["No keywords to match. Please add keywords to your default profile."] = "Ingen nøkkelord å sammenlikne. Vennligst legg til nøkkelord til din standardprofil."; +App::$strings["is interested in:"] = "er interessert i:"; +App::$strings["No matches"] = "Ingen treff"; App::$strings["No such group"] = "Gruppen finnes ikke"; App::$strings["No such channel"] = "Ingen slik kanal"; App::$strings["forum"] = "forum"; @@ -733,13 +563,6 @@ App::$strings["Privacy group: "] = "Personverngruppe:"; App::$strings["Invalid connection."] = "Ugyldig forbindelse."; App::$strings["No more system notifications."] = "Ingen flere systemvarsler."; App::$strings["System Notifications"] = "Systemvarsler"; -App::$strings["Profile Match"] = "Profiltreff"; -App::$strings["No keywords to match. Please add keywords to your default profile."] = "Ingen nøkkelord å sammenlikne. Vennligst legg til nøkkelord til din standardprofil."; -App::$strings["is interested in:"] = "er interessert i:"; -App::$strings["No matches"] = "Ingen treff"; -App::$strings["Posts and comments"] = "Innlegg og kommentarer"; -App::$strings["Only posts"] = "Bare innlegg"; -App::$strings["Insufficient permissions. Request redirected to profile page."] = "Utilstrekkelig tillatelse. Forespørsel omdirigert til profilsiden."; App::$strings["Unable to create element."] = "Klarer ikke å lage element."; App::$strings["Unable to update menu element."] = "Ikke i stand til å oppdatere menyelement."; App::$strings["Unable to add menu element."] = "Ikke i stand til å legge til menyelement."; @@ -769,6 +592,203 @@ App::$strings["Menu item deleted."] = "Menyelement slettet."; App::$strings["Menu item could not be deleted."] = "Menyelement kunne ikke bli slettet."; App::$strings["Edit Menu Element"] = "Endre menyelement"; App::$strings["Link text"] = "Lenketekst"; +App::$strings["Name or caption"] = "Navn eller overskrift"; +App::$strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\""] = "Eksempel: \"Ola Nordmann\", \"Lisa og hestene hennes\", \"Fotball\", \"Sykkelgruppa\""; +App::$strings["Choose a short nickname"] = "Velg et kort kallenavn"; +App::$strings["Your nickname will be used to create an easy to remember channel address e.g. nickname%s"] = "Ditt kallenavn brukes til å lage en kanaladresse som er enkel å huske, for eksempel kallenavn%s"; +App::$strings["Channel role and privacy"] = "Kanalrolle og personvern"; +App::$strings["Select a channel role with your privacy requirements."] = "Velg en kanalrolle for ditt personvernbehov."; +App::$strings["Read more about roles"] = "Les mer om roller"; +App::$strings["Create Channel"] = "Lag kanal"; +App::$strings["A channel is your identity on this network. It can represent a person, a blog, or a forum to name a few. Channels can make connections with other channels to share information with highly detailed permissions."] = "En kanal er din identitet i dette nettverket. Den kan representere en person, en blogg eller et forum for å nevne noe. Kanaler kan ha forbindelser til andre kanaler for å dele informasjon, og med svært detaljerte tillatelser."; +App::$strings["or import an existing channel from another location."] = "eller importer en eksisterende kanal fra et annet sted."; +App::$strings["Invalid request identifier."] = "Ugyldig forespørselsidentifikator."; +App::$strings["Discard"] = "Forkast"; +App::$strings["Mark all system notifications seen"] = "Merk alle systemvarsler som sett"; +App::$strings["Page owner information could not be retrieved."] = "Informasjon om sideeier kunne ikke hentes."; +App::$strings["Profile Photos"] = "Profilbilder"; +App::$strings["Album not found."] = "Albumet ble ikke funnet."; +App::$strings["Delete Album"] = "Slett album"; +App::$strings["Multiple storage folders exist with this album name, but within different directories. Please remove the desired folder or folders using the Files manager"] = ""; +App::$strings["Delete Photo"] = "Slett bilde"; +App::$strings["No photos selected"] = "Ingen bilder valgt"; +App::$strings["Access to this item is restricted."] = "Tilgang til dette elementet er begrenset."; +App::$strings["%1$.2f MB of %2$.2f MB photo storage used."] = "%1$.2f MB av %2$.2f MB lagringsplass til bilder er brukt."; +App::$strings["%1$.2f MB photo storage used."] = "%1$.2f MB lagringsplass til bilder er brukt."; +App::$strings["Upload Photos"] = "Last opp bilder"; +App::$strings["Enter an album name"] = "Skriv et albumnavn"; +App::$strings["or select an existing album (doubleclick)"] = "eller velg et eksisterende album (dobbeltklikk)"; +App::$strings["Create a status post for this upload"] = "Lag et statusinnlegg for denne opplastingen"; +App::$strings["Caption (optional):"] = "Bildetekst (valgfritt):"; +App::$strings["Description (optional):"] = "Beskrivelse (valgfritt):"; +App::$strings["Album name could not be decoded"] = "Albumnavnet kunne ikke dekodes"; +App::$strings["Contact Photos"] = "Kontaktbilder"; +App::$strings["Show Newest First"] = "Vis nyeste først"; +App::$strings["Show Oldest First"] = "Vis eldste først"; +App::$strings["View Photo"] = "Vis foto"; +App::$strings["Edit Album"] = "Endre album"; +App::$strings["Permission denied. Access to this item may be restricted."] = "Tillatelse avvist. Tilgang til dette elementet kan være begrenset."; +App::$strings["Photo not available"] = "Bilde er utilgjengelig"; +App::$strings["Use as profile photo"] = "Bruk som profilbilde"; +App::$strings["Use as cover photo"] = ""; +App::$strings["Private Photo"] = "Privat bilde"; +App::$strings["View Full Size"] = "Vis i full størrelse"; +App::$strings["Remove"] = "Fjern"; +App::$strings["Edit photo"] = "Endre bilde"; +App::$strings["Rotate CW (right)"] = "Roter med klokka (mot høyre)"; +App::$strings["Rotate CCW (left)"] = "Roter mot klokka (venstre)"; +App::$strings["Enter a new album name"] = "Skriv et nytt albumnavn"; +App::$strings["or select an existing one (doubleclick)"] = "eller velg et eksisterende album (dobbeltklikk)"; +App::$strings["Caption"] = "Overskrift"; +App::$strings["Add a Tag"] = "Legg til merkelapp"; +App::$strings["Example: @bob, @Barbara_Jensen, @jim@example.com"] = "Eksempel: @bob, @Barbara_Jensen, @jim@example.com"; +App::$strings["Flag as adult in album view"] = "Flag som voksent i albumvisning"; +App::$strings["I like this (toggle)"] = "Jeg liker dette (skru av og på)"; +App::$strings["I don't like this (toggle)"] = "Jeg liker ikke dette (skru av og på)"; +App::$strings["Please wait"] = "Vennligst vent"; +App::$strings["This is you"] = "Dette er deg"; +App::$strings["Comment"] = "Kommentar"; +App::$strings["__ctx:title__ Likes"] = "Liker"; +App::$strings["__ctx:title__ Dislikes"] = "Liker ikke"; +App::$strings["__ctx:title__ Agree"] = "Enig"; +App::$strings["__ctx:title__ Disagree"] = "Uenig"; +App::$strings["__ctx:title__ Abstain"] = "Avstår"; +App::$strings["__ctx:title__ Attending"] = "Deltar"; +App::$strings["__ctx:title__ Not attending"] = "Deltar ikke"; +App::$strings["__ctx:title__ Might attend"] = "Deltar kanskje"; +App::$strings["View all"] = "Vis alle"; +App::$strings["__ctx:noun__ Like"] = array( + 0 => "Liker", + 1 => "Liker", +); +App::$strings["__ctx:noun__ Dislike"] = array( + 0 => "Liker ikke", + 1 => "Liker ikke", +); +App::$strings["Photo Tools"] = ""; +App::$strings["In This Photo:"] = "I dette bildet:"; +App::$strings["Map"] = "Kart"; +App::$strings["__ctx:noun__ Likes"] = "Liker"; +App::$strings["__ctx:noun__ Dislikes"] = "Liker ikke"; +App::$strings["Close"] = "Lukk"; +App::$strings["View Album"] = "Vis album"; +App::$strings["Recent Photos"] = "Nye bilder"; +App::$strings["sent you a private message"] = "sendte deg en privat melding"; +App::$strings["added your channel"] = "la til din kanal"; +App::$strings["g A l F d"] = "g A l F d"; +App::$strings["[today]"] = "[idag]"; +App::$strings["posted an event"] = "la ut en hendelse"; +App::$strings["Unable to find your hub."] = "Ikke i stand til å finne hubben din."; +App::$strings["Post successful."] = "Innlegg vellykket."; +App::$strings["OpenID protocol error. No ID returned."] = "OpenID protokollfeil. Ingen ID ble returnert."; +App::$strings["Login failed."] = "Innlogging mislyktes."; +App::$strings["Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."] = "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."; +App::$strings["This setting requires special processing and editing has been blocked."] = "Denne innstillingen krever spesiell behandling og redigering har blitt blokkert."; +App::$strings["Configuration Editor"] = "Konfigurasjonsbehandler"; +App::$strings["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."] = "Advarsel: kanalen din kan slutte å virke ved endring av enkelte innstillinger. Vennligst forlat denne siden med mindre du er komfortabel med dette og vet hvordan du bruker denne funksjonen riktig."; +App::$strings["Layout updated."] = "Layout er oppdatert."; +App::$strings["Edit System Page Description"] = "Endre beskrivelsen av systemsiden"; +App::$strings["Layout not found."] = "Layouten ble ikke funnet."; +App::$strings["Module Name:"] = "Modulnavn:"; +App::$strings["Layout Help"] = "Layout-hjelp"; +App::$strings["Poke"] = "Prikk"; +App::$strings["Poke somebody"] = "Dult noen"; +App::$strings["Poke/Prod"] = "Prikke/oppildne"; +App::$strings["Poke, prod or do other things to somebody"] = "Dult, prikk eller gjør andre ting med noen"; +App::$strings["Recipient"] = "Mottaker"; +App::$strings["Choose what you wish to do to recipient"] = "Velg hva du ønsker å gjøre med mottakeren"; +App::$strings["Make this post private"] = "Gjør dette innlegget privat"; +App::$strings["Fetching URL returns error: %1\$s"] = "Henting av URL gir følgende feil: %1\$s"; +App::$strings["Profile not found."] = "Profilen ble ikke funnet."; +App::$strings["Profile deleted."] = "Profilen er slettet."; +App::$strings["Profile-"] = "Profil-"; +App::$strings["New profile created."] = "Ny profil opprettet."; +App::$strings["Profile unavailable to clone."] = "Profilen er utilgjengelig for klonen."; +App::$strings["Profile unavailable to export."] = "Profilen er utilgjengelig for eksport."; +App::$strings["Profile Name is required."] = "Profilnavn er påkrevd."; +App::$strings["Marital Status"] = "Sivilstand"; +App::$strings["Romantic Partner"] = "Romantisk partner"; +App::$strings["Likes"] = "Liker"; +App::$strings["Dislikes"] = "Liker ikke"; +App::$strings["Work/Employment"] = "Arbeid/sysselsetting"; +App::$strings["Religion"] = "Religion"; +App::$strings["Political Views"] = "Politiske synspunkter"; +App::$strings["Sexual Preference"] = "Seksuelle preferanser"; +App::$strings["Homepage"] = "Hjemmeside"; +App::$strings["Interests"] = "Interesser"; +App::$strings["Profile updated."] = "Profilen er oppdatert."; +App::$strings["Hide your connections list from viewers of this profile"] = ""; +App::$strings["Edit Profile Details"] = "Endre profildetaljer"; +App::$strings["View this profile"] = "Vis denne profilen"; +App::$strings["Edit visibility"] = "Endre synlighet"; +App::$strings["Profile Tools"] = ""; +App::$strings["Change cover photo"] = ""; +App::$strings["Change profile photo"] = "Endre profilbilde"; +App::$strings["Create a new profile using these settings"] = "Lag en ny profil ved å bruke disse innstillingene"; +App::$strings["Clone this profile"] = "Klon denne profilen"; +App::$strings["Delete this profile"] = "Slett denne profilen"; +App::$strings["Add profile things"] = "Legg til profilting"; +App::$strings["Personal"] = "Personlig"; +App::$strings["Relation"] = ""; +App::$strings["Miscellaneous"] = "Forskjellig"; +App::$strings["Import profile from file"] = "Importer profil fra fil"; +App::$strings["Export profile to file"] = "Eksporter profil til fil"; +App::$strings["Your gender"] = ""; +App::$strings["Marital status"] = ""; +App::$strings["Sexual preference"] = ""; +App::$strings["Profile name"] = ""; +App::$strings["This is your default profile."] = "Dette er din standardprofil."; +App::$strings["Your full name"] = ""; +App::$strings["Title/Description"] = ""; +App::$strings["Street address"] = ""; +App::$strings["Locality/City"] = ""; +App::$strings["Region/State"] = ""; +App::$strings["Postal/Zip code"] = ""; +App::$strings["Country"] = ""; +App::$strings["Who (if applicable)"] = ""; +App::$strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Eksempler: kari123, Kari Villiamsen, kari@example.com"; +App::$strings["Since (date)"] = ""; +App::$strings["Tell us about yourself"] = ""; +App::$strings["Hometown"] = ""; +App::$strings["Political views"] = ""; +App::$strings["Religious views"] = ""; +App::$strings["Keywords used in directory listings"] = ""; +App::$strings["Example: fishing photography software"] = "Eksempel: fisking fotografering programvare"; +App::$strings["Musical interests"] = "Musikkinteresser"; +App::$strings["Books, literature"] = "Bøker, litteratur"; +App::$strings["Television"] = "TV/fjernsyn"; +App::$strings["Film/Dance/Culture/Entertainment"] = ""; +App::$strings["Hobbies/Interests"] = "Hobbier/Interesser"; +App::$strings["Love/Romance"] = ""; +App::$strings["School/Education"] = ""; +App::$strings["Contact information and social networks"] = ""; +App::$strings["My other channels"] = "Mine andre kanaler"; +App::$strings["Profile Image"] = "Profilbilde"; +App::$strings["Edit Profiles"] = "Endre profiler"; +App::$strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Hold nede Shift-knappen og last siden på nytt eller tøm nettleserens mellomlager hvis det nye bildet ikke vises umiddelbart."; +App::$strings["Upload Profile Photo"] = "Last opp profilbilde:"; +App::$strings["Invalid profile identifier."] = "Ugyldig profil-identifikator."; +App::$strings["Profile Visibility Editor"] = "Endre profilsynlighet"; +App::$strings["Profile"] = "Profil"; +App::$strings["Click on a contact to add or remove."] = "Klikk på en kontakt for å legge til eller fjerne."; +App::$strings["Visible To"] = "Synlig for"; +App::$strings["Public Hubs"] = "Offentlige huber"; +App::$strings["The listed hubs allow public registration for the \$Projectname network. All hubs in the network are interlinked so membership on any of them conveys membership in the network as a whole. Some hubs may require subscription or provide tiered service plans. The hub itself may provide additional details."] = "Nettstedene på listen tillater offentlig registrering i \$Projectname-nettverket. Alle nettsteder i nettverket er forbundet så medlemskap på enhver av dem formidler medlemskap i nettverket som helhet. Noen nettsteder kan kreve abonnement eller tilby lagdelte tjenesteavtaler. Nettstedene selv kan gi tilleggsopplysninger."; +App::$strings["Hub URL"] = "Nettstedets URL"; +App::$strings["Access Type"] = "Tilgangstype"; +App::$strings["Registration Policy"] = "Retningslinjer for registrering"; +App::$strings["Stats"] = ""; +App::$strings["Software"] = ""; +App::$strings["Ratings"] = "Vurderinger"; +App::$strings["Rate"] = "Vurder"; +App::$strings["Website:"] = "Nettsted:"; +App::$strings["Remote Channel [%s] (not yet known on this site)"] = "Fjerntliggende kanal [%s] (foreløpig ikke kjent på dette nettstedet)"; +App::$strings["Rating (this information is public)"] = "Vurdering (denne informasjonen er offentlig)"; +App::$strings["Optionally explain your rating (this information is public)"] = "Velg om du vil forklare din vurdering (denne informasjonen er offentlig)"; +App::$strings["No ratings"] = "Ingen vurderinger"; +App::$strings["Rating: "] = "Vurdering:"; +App::$strings["Website: "] = "Nettsted:"; +App::$strings["Description: "] = "Beskrivelse:"; App::$strings["Theme settings updated."] = "Temainnstillinger er oppdatert."; App::$strings["# Accounts"] = "# Kontoer"; App::$strings["# blocked accounts"] = "# blokkerte kontoer"; @@ -778,7 +798,7 @@ App::$strings["# Channels"] = "# Kanaler"; App::$strings["# primary"] = "# hoved"; App::$strings["# clones"] = "# kloner"; App::$strings["Message queues"] = "Meldingskøer"; -App::$strings["Your software should be updated"] = "Programvaren din bør oppdateres"; +App::$strings["Your software should be updated"] = ""; App::$strings["Administration"] = "Administrasjon"; App::$strings["Summary"] = "Sammendrag"; App::$strings["Registered accounts"] = "Registrerte kontoer"; @@ -786,8 +806,8 @@ App::$strings["Pending registrations"] = "Ventende registreringer"; App::$strings["Registered channels"] = "Registrerte kanaler"; App::$strings["Active plugins"] = "Aktive tilleggsfunksjoner"; App::$strings["Version"] = "Versjon"; -App::$strings["Repository version (master)"] = "Depotversjon (master)"; -App::$strings["Repository version (dev)"] = "Depotversjon (dev)"; +App::$strings["Repository version (master)"] = ""; +App::$strings["Repository version (dev)"] = ""; App::$strings["Site settings updated."] = "Nettstedsinnstillinger er oppdatert."; App::$strings["Default"] = "Standard"; App::$strings["mobile"] = "mobil"; @@ -840,10 +860,10 @@ App::$strings["Force publish"] = "Tving publisering"; App::$strings["Check to force all profiles on this site to be listed in the site directory."] = "Kryss av for å tvinge alle profiler på dette nettstedet til å bli oppført i nettstedet sin katalog."; App::$strings["Import Public Streams"] = "Importer offentlige innholdsstrømmer"; App::$strings["Import and allow access to public content pulled from other sites. Warning: this content is unmoderated."] = "Importer og gi tilgang til offentlig innhold trukket inn fra andre nettsteder. Advarsel: dette innholdet er ikke moderert."; -App::$strings["Login on Homepage"] = "Logg inn på hjemmesiden"; +App::$strings["Login on Homepage"] = ""; App::$strings["Present a login box to visitors on the home page if no other content has been configured."] = "Presenter en innloggingsboks til besøkende på hjemmesiden hvis ikke noe annet innhold har blitt konfigurert."; -App::$strings["Enable context help"] = "Skru på kontekstsensitiv hjelp"; -App::$strings["Display contextual help for the current page when the help button is pressed."] = "Vis hjelp for den gjeldende siden når Hjelp-knappen trykkes."; +App::$strings["Enable context help"] = ""; +App::$strings["Display contextual help for the current page when the help button is pressed."] = ""; App::$strings["Directory Server URL"] = "Katalogtjener URL"; App::$strings["Default directory server"] = "Standard katalogtjener"; App::$strings["Proxy user"] = "Brukernavn mellomtjener"; @@ -869,24 +889,24 @@ App::$strings["ID"] = "ID"; App::$strings["for channel"] = "for kanalen"; App::$strings["on server"] = "på tjener"; App::$strings["Server"] = "Tjener"; -App::$strings["By default, unfiltered HTML is allowed in embedded media. This is inherently insecure."] = "Standardinnstillingen er at ufiltrert HTML er tillat ved innebygging av media. Dette er grunnleggende usikkert."; -App::$strings["The recommended setting is to only allow unfiltered HTML from the following sites:"] = "Anbefalt innstilling er å bare tillate ufiltrert HTML fra følgende nettsteder:"; -App::$strings["https://youtube.com/
https://www.youtube.com/
https://youtu.be/
https://vimeo.com/
https://soundcloud.com/
"] = "https://youtube.com/
https://www.youtube.com/
https://youtu.be/
https://vimeo.com/
https://soundcloud.com/
"; -App::$strings["All other embedded content will be filtered, unless embedded content from that site is explicitly blocked."] = "Alt annet innebygget innhold vil bli filtrert, med mindre innebygget innhold fra det nettstedet er eksplisitt blokkert."; +App::$strings["By default, unfiltered HTML is allowed in embedded media. This is inherently insecure."] = ""; +App::$strings["The recommended setting is to only allow unfiltered HTML from the following sites:"] = ""; +App::$strings["https://youtube.com/
https://www.youtube.com/
https://youtu.be/
https://vimeo.com/
https://soundcloud.com/
"] = ""; +App::$strings["All other embedded content will be filtered, unless embedded content from that site is explicitly blocked."] = ""; App::$strings["Security"] = "Sikkerhet"; App::$strings["Block public"] = "Blokker offentlig tilgang"; App::$strings["Check to block public access to all otherwise public personal pages on this site unless you are currently authenticated."] = "Kryss av for å blokkere tilgang til alle personlige sider som ellers ville vært offentlig tilgjengelige på dette nettstedet med mindre du er logget inn."; -App::$strings["Set \"Transport Security\" HTTP header"] = "Sett HTTP header \"Transport Security\""; -App::$strings["Set \"Content Security Policy\" HTTP header"] = "Sett HTTP header \"Content Security Policy\""; +App::$strings["Set \"Transport Security\" HTTP header"] = ""; +App::$strings["Set \"Content Security Policy\" HTTP header"] = ""; App::$strings["Allow communications only from these sites"] = "Tillat kommunikasjon med bare disse nettstedene"; App::$strings["One site per line. Leave empty to allow communication from anywhere by default"] = "Et nettsted per linje. La det stå tomt for å tillate kommunikasjon med ethvert nettsted som standard"; App::$strings["Block communications from these sites"] = "Blokker kommunikasjon fra disse nettstedene"; App::$strings["Allow communications only from these channels"] = "Tillat kommunikasjon med bare disse kanalene"; App::$strings["One channel (hash) per line. Leave empty to allow from any channel by default"] = "En kanal (hash) per linje. La det stå tomt for å tillate enhver kanal som standard"; App::$strings["Block communications from these channels"] = "Blokker kommunikasjon fra disse kanalene"; -App::$strings["Only allow embeds from secure (SSL) websites and links."] = "Bare tillat innebygging fra sikrede (SSL) nettsteder og lenker."; -App::$strings["Allow unfiltered embedded HTML content only from these domains"] = "Tillat ufiltrert innebygging av HTML-innhold bare fra disse domenene"; -App::$strings["One site per line. By default embedded content is filtered."] = "Et nettsted per linje. Det er standard at innebygget innhold er filtrert."; +App::$strings["Only allow embeds from secure (SSL) websites and links."] = ""; +App::$strings["Allow unfiltered embedded HTML content only from these domains"] = ""; +App::$strings["One site per line. By default embedded content is filtered."] = ""; App::$strings["Block embedded HTML from these domains"] = "Blokker innbygget HTML fra disse domenene"; App::$strings["Update has been marked successful"] = "Oppdateringen har blitt merket som en suksess"; App::$strings["Executing %s failed. Check system logs."] = "Utføring av %s feilet. Sjekk systemlogger."; @@ -918,7 +938,7 @@ App::$strings["Account '%s' blocked"] = "Kontoen '%s' blokkert"; App::$strings["Account '%s' unblocked"] = "Kontoen '%s' er ikke blokkert lenger"; App::$strings["Accounts"] = "Kontoer"; App::$strings["select all"] = "velg alle"; -App::$strings["Registrations waiting for confirm"] = "Registreringer venter på bekreftelse"; +App::$strings["Registrations waiting for confirm"] = ""; App::$strings["Request date"] = "Dato for forespørsel"; App::$strings["No registrations."] = "Ingen registreringer."; App::$strings["Deny"] = "Avslå"; @@ -970,18 +990,18 @@ App::$strings["Maximum project version: "] = "Maksimum prosjektversjon:"; App::$strings["Minimum PHP version: "] = "Minimum PHP-versjon:"; App::$strings["Requires: "] = "Krever:"; App::$strings["Disabled - version incompatibility"] = "Skrudd av - versjonsinkompatibilitet"; -App::$strings["Enter the public git repository URL of the plugin repo."] = "Skriv inn URL-en til det offentlige git-depoet til tillegget."; -App::$strings["Plugin repo git URL"] = "Git-URL-en til tillegget"; -App::$strings["Custom repo name"] = "Tilpasset depotnavn"; -App::$strings["(optional)"] = "(valgfritt)"; -App::$strings["Download Plugin Repo"] = "Last ned depotet til tillegget"; -App::$strings["Install new repo"] = "Installer nytt depot"; +App::$strings["Enter the public git repository URL of the plugin repo."] = ""; +App::$strings["Plugin repo git URL"] = ""; +App::$strings["Custom repo name"] = ""; +App::$strings["(optional)"] = ""; +App::$strings["Download Plugin Repo"] = ""; +App::$strings["Install new repo"] = ""; App::$strings["Install"] = "Installer"; -App::$strings["Manage Repos"] = "Håndter depoter"; -App::$strings["Installed Plugin Repositories"] = "Installerede tilleggsdepoter"; -App::$strings["Install a New Plugin Repository"] = "Installer et nytt tillleggsdepot"; +App::$strings["Manage Repos"] = ""; +App::$strings["Installed Plugin Repositories"] = ""; +App::$strings["Install a New Plugin Repository"] = ""; App::$strings["Update"] = "Oppdater"; -App::$strings["Switch branch"] = "Bytt gren"; +App::$strings["Switch branch"] = ""; App::$strings["No themes found."] = "Ingen temaer er funnet."; App::$strings["Screenshot"] = "Skjermbilde"; App::$strings["Themes"] = "Temaer"; @@ -992,7 +1012,7 @@ App::$strings["Logs"] = "Logger"; App::$strings["Clear"] = "Tøm"; App::$strings["Debugging"] = "Feilsøking"; App::$strings["Log file"] = "Loggfil"; -App::$strings["Must be writable by web server. Relative to your top-level webserver directory."] = "Må kunne skrives til av webtjenesten. Relativ til din toppnivåkatalog på webtjeneren."; +App::$strings["Must be writable by web server. Relative to your top-level webserver directory."] = ""; App::$strings["Log level"] = "Loggnivå"; App::$strings["New Profile Field"] = "Nytt profilfelt"; App::$strings["Field nickname"] = "Feltets kallenavn"; @@ -1004,98 +1024,26 @@ App::$strings["Help text"] = "Hjelpetekst"; App::$strings["Additional info (optional)"] = "Tilleggsinformasjon (valgfritt)"; App::$strings["Field definition not found"] = "Feltdefinisjonen ble ikke funnet"; App::$strings["Edit Profile Field"] = "Endre profilfelt"; -App::$strings["Profile Fields"] = "Profilfelter"; -App::$strings["Basic Profile Fields"] = "Grunnleggende profilfelter"; -App::$strings["Advanced Profile Fields"] = "Avanserte profilfelter"; -App::$strings["(In addition to basic fields)"] = "(i tillegg til grunnleggende felter)"; -App::$strings["All available fields"] = "Alle tilgjengelige felter"; -App::$strings["Custom Fields"] = "Tilpassede felter"; -App::$strings["Create Custom Field"] = "Lag tilpasset felt"; -App::$strings["Name or caption"] = "Navn eller overskrift"; -App::$strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\""] = "Eksempel: \"Ola Nordmann\", \"Lisa og hestene hennes\", \"Fotball\", \"Sykkelgruppa\""; -App::$strings["Choose a short nickname"] = "Velg et kort kallenavn"; -App::$strings["Your nickname will be used to create an easy to remember channel address e.g. nickname%s"] = "Ditt kallenavn brukes til å lage en kanaladresse som er enkel å huske, for eksempel kallenavn%s"; -App::$strings["Channel role and privacy"] = "Kanalrolle og personvern"; -App::$strings["Select a channel role with your privacy requirements."] = "Velg en kanalrolle for ditt personvernbehov."; -App::$strings["Read more about roles"] = "Les mer om roller"; -App::$strings["Create Channel"] = "Lag kanal"; -App::$strings["A channel is your identity on this network. It can represent a person, a blog, or a forum to name a few. Channels can make connections with other channels to share information with highly detailed permissions."] = "En kanal er din identitet i dette nettverket. Den kan representere en person, en blogg eller et forum for å nevne noe. Kanaler kan ha forbindelser til andre kanaler for å dele informasjon, og med svært detaljerte tillatelser."; -App::$strings["or import an existing channel from another location."] = "eller importer en eksisterende kanal fra et annet sted."; -App::$strings["sent you a private message"] = "sendte deg en privat melding"; -App::$strings["added your channel"] = "la til din kanal"; -App::$strings["g A l F d"] = "g A l F d"; -App::$strings["[today]"] = "[idag]"; -App::$strings["posted an event"] = "la ut en hendelse"; -App::$strings["Invalid request identifier."] = "Ugyldig forespørselsidentifikator."; -App::$strings["Discard"] = "Forkast"; -App::$strings["Mark all system notifications seen"] = "Merk alle systemvarsler som sett"; -App::$strings["Poke"] = "Prikk"; -App::$strings["Poke somebody"] = "Dult noen"; -App::$strings["Poke/Prod"] = "Prikke/oppildne"; -App::$strings["Poke, prod or do other things to somebody"] = "Dult, prikk eller gjør andre ting med noen"; -App::$strings["Recipient"] = "Mottaker"; -App::$strings["Choose what you wish to do to recipient"] = "Velg hva du ønsker å gjøre med mottakeren"; -App::$strings["Make this post private"] = "Gjør dette innlegget privat"; -App::$strings["Unable to find your hub."] = "Ikke i stand til å finne hubben din."; -App::$strings["Post successful."] = "Innlegg vellykket."; -App::$strings["OpenID protocol error. No ID returned."] = "OpenID protokollfeil. Ingen ID ble returnert."; -App::$strings["Login failed."] = "Innlogging mislyktes."; -App::$strings["Invalid profile identifier."] = "Ugyldig profil-identifikator."; -App::$strings["Profile Visibility Editor"] = "Endre profilsynlighet"; -App::$strings["Profile"] = "Profil"; -App::$strings["Click on a contact to add or remove."] = "Klikk på en kontakt for å legge til eller fjerne."; -App::$strings["Visible To"] = "Synlig for"; -App::$strings["This setting requires special processing and editing has been blocked."] = "Denne innstillingen krever spesiell behandling og redigering har blitt blokkert."; -App::$strings["Configuration Editor"] = "Konfigurasjonsbehandler"; -App::$strings["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."] = "Advarsel: kanalen din kan slutte å virke ved endring av enkelte innstillinger. Vennligst forlat denne siden med mindre du er komfortabel med dette og vet hvordan du bruker denne funksjonen riktig."; -App::$strings["Fetching URL returns error: %1\$s"] = "Henting av URL gir følgende feil: %1\$s"; -App::$strings["Version %s"] = "Versjon %s"; -App::$strings["Installed plugins/addons/apps:"] = "Installerte tilleggsfunksjoner/tillegg/apper:"; -App::$strings["No installed plugins/addons/apps"] = "Ingen installerte tilleggsfunksjoner/tillegg/apper"; -App::$strings["This is a hub of \$Projectname - a global cooperative network of decentralized privacy enhanced websites."] = "Dette er en \$Projectname-hub - et globalt samhandlende nettverk av desentraliserte nettsteder med innbygget personvern."; -App::$strings["Tag: "] = "Merkelapp:"; -App::$strings["Last background fetch: "] = "Siste innhenting i bakgrunnen:"; -App::$strings["Current load average: "] = "Gjeldende belastningsgjennomsnitt:"; -App::$strings["Running at web location"] = "Kjører på webplasseringen"; -App::$strings["Please visit hubzilla.org to learn more about \$Projectname."] = "Vennligst besøk hubzilla.org for å lære mer om \$Projectname."; -App::$strings["Bug reports and issues: please visit"] = "Feilmeldinger og feilretting: vennligst besøk"; -App::$strings["\$projectname issues"] = "\$projectname problemer"; -App::$strings["Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com"] = "Forslag, ros og så videre - vennligst e-post \"redmatrix\" hos librelist - punktum com"; -App::$strings["Site Administrators"] = "Nettstedsadministratorer"; -App::$strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Vi støtte på et problem under innloggingen med din OpenID. Vennligst sjekk at ID-en er stavet riktig."; -App::$strings["The error message was:"] = "Feilmeldingen var:"; -App::$strings["Authentication failed."] = "Autentisering mislyktes."; -App::$strings["Remote Authentication"] = "Fjernautentisering"; -App::$strings["Enter your channel address (e.g. channel@example.com)"] = "Skriv din kanaladresse (for eksempel channel@exampel.com)"; -App::$strings["Authenticate"] = "Autentiser"; -App::$strings["Public Hubs"] = "Offentlige huber"; -App::$strings["The listed hubs allow public registration for the \$Projectname network. All hubs in the network are interlinked so membership on any of them conveys membership in the network as a whole. Some hubs may require subscription or provide tiered service plans. The hub itself may provide additional details."] = "Nettstedene på listen tillater offentlig registrering i \$Projectname-nettverket. Alle nettsteder i nettverket er forbundet så medlemskap på enhver av dem formidler medlemskap i nettverket som helhet. Noen nettsteder kan kreve abonnement eller tilby lagdelte tjenesteavtaler. Nettstedene selv kan gi tilleggsopplysninger."; -App::$strings["Hub URL"] = "Nettstedets URL"; -App::$strings["Access Type"] = "Tilgangstype"; -App::$strings["Registration Policy"] = "Retningslinjer for registrering"; -App::$strings["Stats"] = "Statistikk"; -App::$strings["Software"] = "Programvare"; -App::$strings["Ratings"] = "Vurderinger"; -App::$strings["Rate"] = "Vurder"; -App::$strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Hold nede Shift-knappen og last siden på nytt eller tøm nettleserens mellomlager hvis det nye bildet ikke vises umiddelbart."; -App::$strings["Upload Profile Photo"] = "Last opp profilbilde:"; -App::$strings["Block Name"] = "Byggeklossens navn"; -App::$strings["Blocks"] = "Byggeklosser"; -App::$strings["Block Title"] = "Byggeklossens tittel"; -App::$strings["Website:"] = "Nettsted:"; -App::$strings["Remote Channel [%s] (not yet known on this site)"] = "Fjerntliggende kanal [%s] (foreløpig ikke kjent på dette nettstedet)"; -App::$strings["Rating (this information is public)"] = "Vurdering (denne informasjonen er offentlig)"; -App::$strings["Optionally explain your rating (this information is public)"] = "Velg om du vil forklare din vurdering (denne informasjonen er offentlig)"; -App::$strings["No ratings"] = "Ingen vurderinger"; -App::$strings["Rating: "] = "Vurdering:"; -App::$strings["Website: "] = "Nettsted:"; -App::$strings["Description: "] = "Beskrivelse:"; -App::$strings["Apps"] = "Apper"; -App::$strings["Title (optional)"] = "Tittel (valgfri)"; -App::$strings["Edit Block"] = "Endre byggekloss"; -App::$strings["No channel."] = "Ingen kanal."; -App::$strings["Common connections"] = "Felles forbindelser"; -App::$strings["No connections in common."] = "Ingen forbindelser felles."; +App::$strings["Profile Fields"] = ""; +App::$strings["Basic Profile Fields"] = ""; +App::$strings["Advanced Profile Fields"] = ""; +App::$strings["(In addition to basic fields)"] = ""; +App::$strings["All available fields"] = ""; +App::$strings["Custom Fields"] = ""; +App::$strings["Create Custom Field"] = ""; +App::$strings["App installed."] = "App installert."; +App::$strings["Malformed app."] = "Feil oppsett for app-en."; +App::$strings["Embed code"] = "Innbyggingskode"; +App::$strings["Edit App"] = "Endre app"; +App::$strings["Create App"] = "Lag app"; +App::$strings["Name of app"] = "Navn på app"; +App::$strings["Location (URL) of app"] = "Plassering (URL) til app"; +App::$strings["Photo icon URL"] = "Bildeikon URL"; +App::$strings["80 x 80 pixels - optional"] = "80 x80 pixler - valgfritt"; +App::$strings["Categories (optional, comma separated list)"] = ""; +App::$strings["Version ID"] = "Versjons-ID"; +App::$strings["Price of app"] = "Pris på app"; +App::$strings["Location (URL) to purchase app"] = "Plassering (URL) for å kjøpe app"; App::$strings["Select a bookmark folder"] = "Velg en bokmerkemappe"; App::$strings["Save Bookmark"] = "Lagre bokmerke"; App::$strings["URL of bookmark"] = "URL-en til bokmerket"; @@ -1121,7 +1069,7 @@ App::$strings["no"] = "nei"; App::$strings["yes"] = "ja"; App::$strings["Membership on this site is by invitation only."] = "Medlemskap ved dette nettstedet skjer kun via invitasjon."; App::$strings["Register"] = "Registrer"; -App::$strings["This site may require email verification after submitting this form. If you are returned to a login page, please check your email for instructions."] = ""; +App::$strings["Proceed to create your first channel"] = "Gå videre for å lage din første kanal"; App::$strings["Please login."] = "Vennligst logg inn."; App::$strings["Account removals are not allowed within 48 hours of changing the account password."] = "Sletting av kontoer er ikke tillatt innen 48 timer etter endring av kontopassordet."; App::$strings["Remove This Account"] = "Slett denne kontoen"; @@ -1138,23 +1086,17 @@ App::$strings["This channel will be completely removed from the network. "] = "D App::$strings["Remove this channel and all its clones from the network"] = "Fjern denne kanalen og alle dens kloner fra nettverket"; App::$strings["By default only the instance of the channel located on this hub will be removed from the network"] = "Som standard vil bare forekomsten av denne kanalen lokalisert på denne hubben bli fjernet fra nettverket"; App::$strings["Remove Channel"] = "Fjern kanal"; -App::$strings["Export Channel"] = "Eksporter kanal"; -App::$strings["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."] = "Eksporter grunnleggende informasjon om kanalen din til en fil. Denne er en sikkerhetskopi av dine forbindelser, tillatelser, profil og grunnleggende data, som kan brukes til å importere dine data til en ny hub, men den tar ikke med innholdet."; -App::$strings["Export Content"] = "Eksporter innhold"; -App::$strings["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."] = "Eksporter din kanalinformasjon og det nyeste innholdet til en JSON-sikkerhetskopi, som kan gjenopprettes eller importeres til en annen hub. Denne lager en sikkerhetskopi av alle dine forbindelser, tillatelser, profildata og flere måneder av innholdet ditt. Denne filen kan være SVÆRT stor. Vennligst vær tålmodig - det kan ta flere minutter før denne nedlastningen begynner."; -App::$strings["Export your posts from a given year."] = "Eksporter dine innlegg fra et bestemt år"; -App::$strings["You may also export your posts and conversations for a particular year or month. Adjust the date in your browser location bar to select other dates. If the export fails (possibly due to memory exhaustion on your server hub), please try again selecting a more limited date range."] = "Du kan også eksportere dine innlegg og samtaler for et bestemt år eller måned. Juster datoen i din nettlesers adresselinje for å velge andre datoer. Hvis eksporten feiler (muligens på grunn av utilstrekkelig minne på din hub), vennligst prøv igjen med et mer begrenset datoområde."; -App::$strings["To select all posts for a given year, such as this year, visit %2\$s"] = "For å velge alle innlegg for et gitt år, slik som iår, besøk %2\$s"; -App::$strings["To select all posts for a given month, such as January of this year, visit %2\$s"] = "For å velge alle innlegg fra en gitt måned, slik som januar i år, besøk %2\$s"; -App::$strings["These content files may be imported or restored by visiting %2\$s on any site containing your channel. For best results please import or restore these in date order (oldest first)."] = "Disse innholdsfilene kan importeres eller gjenopprettes ved å besøke %2\$s på ethvert nettsted som inneholder din kanal. For best resultat, vennligst importer eller gjenopprett disse etter dato (eldste først)."; +App::$strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Vi støtte på et problem under innloggingen med din OpenID. Vennligst sjekk at ID-en er stavet riktig."; +App::$strings["The error message was:"] = "Feilmeldingen var:"; +App::$strings["Authentication failed."] = "Autentisering mislyktes."; +App::$strings["Remote Authentication"] = "Fjernautentisering"; +App::$strings["Enter your channel address (e.g. channel@example.com)"] = "Skriv din kanaladresse (for eksempel channel@exampel.com)"; +App::$strings["Authenticate"] = "Autentiser"; App::$strings["Items tagged with: %s"] = "Elementer merket med: %s"; App::$strings["Search results for: %s"] = "Søkeresultater for: %s"; App::$strings["No service class restrictions found."] = "Ingen restriksjoner er funnet i tjenesteklasse."; App::$strings["Name is required"] = "Navn er påkrevd"; App::$strings["Key and Secret are required"] = "Nøkkel og hemmelighet er påkrevd"; -App::$strings["This channel is limited to %d tokens"] = ""; -App::$strings["Name and Password are required."] = ""; -App::$strings["Token saved."] = ""; App::$strings["Not valid email."] = "Ikke gyldig e-post."; App::$strings["Protected email address. Cannot change to that email."] = "Beskyttet e-postadresse. Kan ikke endre til den e-postadressen."; App::$strings["System failure storing new email. Please try again."] = "Systemfeil ved lagring av ny e-post. Vennligst prøv igjen."; @@ -1187,12 +1129,6 @@ App::$strings["Confirm New Password"] = "Bekreft nytt passord"; App::$strings["Leave password fields blank unless changing"] = "La passordfeltene stå blanke om det ikke skal endres"; App::$strings["Email Address:"] = "E-postadresse:"; App::$strings["Remove this account including all its channels"] = "Slett denne kontoen inkludert alle dens kanaler"; -App::$strings["Use this form to create temporary access identifiers to share things with non-members. These identities may be used in Access Control Lists and visitors may login using these credentials to access the private content."] = ""; -App::$strings["You may also provide dropbox style access links to friends and associates by adding the Login Password to any specific site URL as shown. Examples:"] = ""; -App::$strings["Guest Access Tokens"] = ""; -App::$strings["Login Name"] = ""; -App::$strings["Login Password"] = ""; -App::$strings["Expires (yyyy-mm-dd)"] = ""; App::$strings["Additional Features"] = "Ekstra funksjoner"; App::$strings["Connector Settings"] = "Koblingsinnstillinger"; App::$strings["No special theme for mobile devices"] = "Ikke noe spesielt tema for mobile enheter"; @@ -1252,14 +1188,14 @@ App::$strings["Allow others to tag your posts"] = "Tillat andre å merke dine in App::$strings["Often used by the community to retro-actively flag inappropriate content"] = "Ofte brukt av fellesskapet for å merke upassende innhold i etterkant"; App::$strings["Advanced Privacy Settings"] = "Avanserte personverninnstillinger"; App::$strings["Expire other channel content after this many days"] = "Annet kanal innhold utløper etter så mange dager"; -App::$strings["0 or blank to use the website limit."] = "0 eller ikke noe for å bruke nettstedets grense."; -App::$strings["This website expires after %d days."] = "Dette nettstedet utgår etter %d dager."; -App::$strings["This website does not expire imported content."] = "Dette nettstedet lar ikke importert innhold utgå."; -App::$strings["The website limit takes precedence if lower than your limit."] = "Nettstedets grense bestemmer hvis lavere enn din grense."; +App::$strings["0 or blank to use the website limit."] = ""; +App::$strings["This website expires after %d days."] = ""; +App::$strings["This website does not expire imported content."] = ""; +App::$strings["The website limit takes precedence if lower than your limit."] = ""; App::$strings["Maximum Friend Requests/Day:"] = "Maksimalt antall venneforespørsler per dag:"; App::$strings["May reduce spam activity"] = "Kan redusere søppelpostaktivitet"; -App::$strings["Default Post and Publish Permissions"] = "Standard innleggs- og publiseringstillatelser"; -App::$strings["Use my default audience setting for the type of object published"] = "Bruk min standard målgruppeinnstilling for objekttypen som publiseres"; +App::$strings["Default Post and Publish Permissions"] = ""; +App::$strings["Use my default audience setting for the type of object published"] = ""; App::$strings["Channel permissions category:"] = "Kategori med kanaltillatelser:"; App::$strings["Maximum private messages per day from unknown people:"] = "Maksimalt antall private meldinger per dag fra ukjente personer:"; App::$strings["Useful to reduce spamming"] = "Nyttig for å redusere søppelpost"; @@ -1334,8 +1270,8 @@ App::$strings["Please select a default timezone for your website"] = "Vennligst App::$strings["Site settings"] = "Nettstedets innstillinger"; App::$strings["Enable \$Projectname advanced features?"] = "Skru på avansertehubzilla.org to learn more about \$Projectname."] = "Vennligst besøk hubzilla.org for å lære mer om \$Projectname."; +App::$strings["Bug reports and issues: please visit"] = "Feilmeldinger og feilretting: vennligst besøk"; +App::$strings["\$projectname issues"] = "\$projectname problemer"; +App::$strings["Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com"] = "Forslag, ros og så videre - vennligst e-post \"redmatrix\" hos librelist - punktum com"; +App::$strings["Site Administrators"] = "Nettstedsadministratorer"; App::$strings["Failed to create source. No channel selected."] = "Mislyktes med å lage kilde. Ingen kanal er valgt."; App::$strings["Source created."] = "Kilden er laget."; App::$strings["Source updated."] = "Kilden er oppdatert."; @@ -1421,7 +1357,7 @@ App::$strings["Import all or selected content from the following channel into th App::$strings["Only import content with these words (one per line)"] = "Bare importer innhold med disse ordene (ett ord per linje)"; App::$strings["Leave blank to import all public content"] = "La stå tomt for å importere alt offentlig innhold"; App::$strings["Channel Name"] = "Kanalnavn"; -App::$strings["Add the following categories to posts imported from this source (comma separated)"] = "Legg til følgende kategorier til innlegg importert fra denne kilden (kommeseparert)"; +App::$strings["Add the following categories to posts imported from this source (comma separated)"] = ""; App::$strings["Source not found."] = "Kilden ble ikke funnet."; App::$strings["Edit Source"] = "Endre kilde"; App::$strings["Delete Source"] = "Slett kilde"; @@ -1437,38 +1373,60 @@ App::$strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s merket %3\$s til App::$strings["Tag removed"] = "Merkelapp fjernet"; App::$strings["Remove Item Tag"] = "Fjern merkelapp fra element"; App::$strings["Select a tag to remove: "] = "Velg merkelapp å fjerne:"; -App::$strings["Webpages"] = "Websider"; -App::$strings["Actions"] = "Handlinger"; -App::$strings["Page Link"] = "Sidelenke"; -App::$strings["Page Title"] = "Sidetittel"; -App::$strings["Not found"] = ""; -App::$strings["Wiki"] = ""; -App::$strings["Sandbox"] = ""; -App::$strings["\"# Wiki Sandbox\\n\\nContent you **edit** and **preview** here *will not be saved*.\""] = ""; -App::$strings["Revision Comparison"] = ""; -App::$strings["Revert"] = ""; -App::$strings["Enter the name of your new wiki:"] = ""; -App::$strings["Enter the name of the new page:"] = ""; -App::$strings["Enter the new name:"] = ""; -App::$strings["Embed image from photo albums"] = ""; -App::$strings["Embed an image from your albums"] = ""; -App::$strings["OK"] = "OK"; -App::$strings["Choose images to embed"] = ""; -App::$strings["Choose an album"] = ""; -App::$strings["Choose a different album..."] = ""; -App::$strings["Error getting album list"] = ""; -App::$strings["Error getting photo link"] = ""; -App::$strings["Error getting album"] = ""; +App::$strings["Thing updated"] = "Tingen er oppdatert"; +App::$strings["Object store: failed"] = "Objektlagring: mislyktes"; +App::$strings["Thing added"] = "Ting lagt til"; +App::$strings["OBJ: %1\$s %2\$s %3\$s"] = "OBJ: %1\$s %2\$s %3\$s"; +App::$strings["Show Thing"] = "Vis ting"; +App::$strings["item not found."] = "element ble ikke funnet."; +App::$strings["Edit Thing"] = "Endre ting"; +App::$strings["Select a profile"] = "Velg en profil"; +App::$strings["Post an activity"] = "Legg inn en aktivitet"; +App::$strings["Only sends to viewers of the applicable profile"] = "Sender bare til seere av den aktuelle profilen"; +App::$strings["Name of thing e.g. something"] = "Navn på ting for eksempel noe"; +App::$strings["URL of thing (optional)"] = "URL til ting (valgfritt)"; +App::$strings["URL for photo of thing (optional)"] = "URL til bilde av ting (valgfritt)"; +App::$strings["Add Thing to your Profile"] = "Legg til ting i din profil"; +App::$strings["Export Channel"] = "Eksporter kanal"; +App::$strings["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."] = "Eksporter grunnleggende informasjon om kanalen din til en fil. Denne er en sikkerhetskopi av dine forbindelser, tillatelser, profil og grunnleggende data, som kan brukes til å importere dine data til en ny hub, men den tar ikke med innholdet."; +App::$strings["Export Content"] = "Eksporter innhold"; +App::$strings["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."] = "Eksporter din kanalinformasjon og det nyeste innholdet til en JSON-sikkerhetskopi, som kan gjenopprettes eller importeres til en annen hub. Denne lager en sikkerhetskopi av alle dine forbindelser, tillatelser, profildata og flere måneder av innholdet ditt. Denne filen kan være SVÆRT stor. Vennligst vær tålmodig - det kan ta flere minutter før denne nedlastningen begynner."; +App::$strings["Export your posts from a given year."] = "Eksporter dine innlegg fra et bestemt år"; +App::$strings["You may also export your posts and conversations for a particular year or month. Adjust the date in your browser location bar to select other dates. If the export fails (possibly due to memory exhaustion on your server hub), please try again selecting a more limited date range."] = "Du kan også eksportere dine innlegg og samtaler for et bestemt år eller måned. Juster datoen i din nettlesers adresselinje for å velge andre datoer. Hvis eksporten feiler (muligens på grunn av utilstrekkelig minne på din hub), vennligst prøv igjen med et mer begrenset datoområde."; +App::$strings["To select all posts for a given year, such as this year, visit %2\$s"] = "For å velge alle innlegg for et gitt år, slik som iår, besøk %2\$s"; +App::$strings["To select all posts for a given month, such as January of this year, visit %2\$s"] = "For å velge alle innlegg fra en gitt måned, slik som januar i år, besøk %2\$s"; +App::$strings["These content files may be imported or restored by visiting %2\$s on any site containing your channel. For best results please import or restore these in date order (oldest first)."] = "Disse innholdsfilene kan importeres eller gjenopprettes ved å besøke %2\$s på ethvert nettsted som inneholder din kanal. For best resultat, vennligst importer eller gjenopprett disse etter dato (eldste først)."; App::$strings["No connections."] = "Ingen forbindelser."; App::$strings["Visit %s's profile [%s]"] = "Besøk %s sin profil [%s]"; App::$strings["View Connections"] = "Vis forbindelser"; App::$strings["Source of Item"] = "Kilde til element"; -App::$strings["Authorize application connection"] = "Tillat programforbindelse"; -App::$strings["Return to your app and insert this Securty Code:"] = "Gå tilbake til din app og legg inn denne sikkerhetskoden:"; -App::$strings["Please login to continue."] = "Vennligst logg inn for å fortsette."; -App::$strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Vil du tillate dette programmet å få tilgang til dine innlegg og kontakter, og/eller lage nye innlegg for deg?"; +App::$strings["Webpages"] = "Websider"; +App::$strings["Actions"] = "Handlinger"; +App::$strings["Page Link"] = "Sidelenke"; +App::$strings["Page Title"] = "Sidetittel"; App::$strings["Xchan Lookup"] = "Xchan oppslag"; App::$strings["Lookup xchan beginning with (or webbie): "] = "Slå opp xchan som begynner med (eller webbie):"; +App::$strings["Site Admin"] = "Nettstedsadministrator"; +App::$strings["Bug Report"] = ""; +App::$strings["View Bookmarks"] = ""; +App::$strings["My Chatrooms"] = ""; +App::$strings["Firefox Share"] = ""; +App::$strings["Remote Diagnostics"] = ""; +App::$strings["Suggest Channels"] = "Foreslå kanaler"; +App::$strings["Login"] = "Logg inn"; +App::$strings["Grid"] = "Nett"; +App::$strings["Channel Home"] = "Kanalhjem"; +App::$strings["Events"] = "Hendelser"; +App::$strings["Directory"] = "Katalog"; +App::$strings["Mail"] = "Melding"; +App::$strings["Chat"] = "Chat"; +App::$strings["Probe"] = "Undersøk"; +App::$strings["Suggest"] = "Forreslå"; +App::$strings["Random Channel"] = "Tilfeldig kanal"; +App::$strings["Invite"] = "Inviter"; +App::$strings["Features"] = "Funksjoner"; +App::$strings["Post"] = "Innlegg"; +App::$strings["Purchase"] = "Kjøp"; App::$strings["Missing room name"] = "Mangler romnavn"; App::$strings["Duplicate room name"] = "Duplikat romnavn"; App::$strings["Invalid room specifier."] = "Ugyldig rom-spesifisering"; @@ -1516,27 +1474,6 @@ App::$strings["Please visit %s to approve or reject the suggestion."] = "Vennlig App::$strings["[Hubzilla:Notify]"] = "[Hubzilla:Notify]"; App::$strings["created a new post"] = "laget et nytt innlegg"; App::$strings["commented on %s's post"] = "kommenterte på %s sitt innlegg"; -App::$strings["Site Admin"] = "Nettstedsadministrator"; -App::$strings["Bug Report"] = "Feilmelding"; -App::$strings["View Bookmarks"] = "Vis bokmerker"; -App::$strings["My Chatrooms"] = "Mine chatrom"; -App::$strings["Firefox Share"] = "Firefox-deling"; -App::$strings["Remote Diagnostics"] = "Fjerndiagnostisering"; -App::$strings["Suggest Channels"] = "Foreslå kanaler"; -App::$strings["Login"] = "Logg inn"; -App::$strings["Grid"] = "Nett"; -App::$strings["Channel Home"] = "Kanalhjem"; -App::$strings["Events"] = "Hendelser"; -App::$strings["Directory"] = "Katalog"; -App::$strings["Mail"] = "Melding"; -App::$strings["Chat"] = "Chat"; -App::$strings["Probe"] = "Undersøk"; -App::$strings["Suggest"] = "Forreslå"; -App::$strings["Random Channel"] = "Tilfeldig kanal"; -App::$strings["Invite"] = "Inviter"; -App::$strings["Features"] = "Funksjoner"; -App::$strings["Post"] = "Innlegg"; -App::$strings["Purchase"] = "Kjøp"; App::$strings["Private Message"] = "Privat melding"; App::$strings["Select"] = "Velg"; App::$strings["Save to Folder"] = "Lagre i mappe"; @@ -1573,7 +1510,7 @@ App::$strings["Expires: %s"] = "Utløper: %s"; App::$strings["Save Bookmarks"] = "Lagre bokmerker"; App::$strings["Add to Calendar"] = "Legg til i kalender"; App::$strings["Mark all seen"] = "Merk alle som sett"; -App::$strings["%s show all"] = ""; +App::$strings["[+] show all"] = "[+] Vis alle"; App::$strings["Bold"] = "Uthevet"; App::$strings["Italic"] = "Kursiv"; App::$strings["Underline"] = "Understreket"; @@ -1582,93 +1519,9 @@ App::$strings["Code"] = "Kode"; App::$strings["Image"] = "Bilde"; App::$strings["Insert Link"] = "Sett inn lenke"; App::$strings["Video"] = "Video"; -App::$strings["Visible to your default audience"] = "Synlig for ditt standard publikum"; -App::$strings["Only me"] = "Bare meg"; -App::$strings["Public"] = "Offentlig"; -App::$strings["Anybody in the \$Projectname network"] = "Enhver i \$Projectname -nettverket"; -App::$strings["Any account on %s"] = "Enhver konto på %s"; -App::$strings["Any of my connections"] = "Enhver av mine forbindelser"; -App::$strings["Only connections I specifically allow"] = "Bare forbindelser som jeg spesifikt tillater"; -App::$strings["Anybody authenticated (could include visitors from other networks)"] = "Enhver som er autentisert (kan inkludere besøkende fra andre nettverk)"; -App::$strings["Any connections including those who haven't yet been approved"] = "Enhver forbindelse inkluder de som ennå ikke er blitt godkjent"; -App::$strings["This is your default setting for the audience of your normal stream, and posts."] = "Dette er dine standardinnstillinger for publikumet til din normale strøm og innlegg."; -App::$strings["This is your default setting for who can view your default channel profile"] = "Dette er din standardinnstilling for hvem som kan se din standard kanalprofil"; -App::$strings["This is your default setting for who can view your connections"] = "Dette er din standardinnstilling for hvem som kan se dine forbindelser"; -App::$strings["This is your default setting for who can view your file storage and photos"] = "Dette er din standardinnstilling for hvem som kan se fillagreret ditt og bilder"; -App::$strings["This is your default setting for the audience of your webpages"] = "Dette er din standardinnstilling for besøkende til dine websider"; App::$strings["No username found in import file."] = "Ingen brukernavn ble funnet i importfilen."; App::$strings["Unable to create a unique channel address. Import failed."] = "Klarte ikke å lage en unik kanaladresse. Import mislyktes."; App::$strings["Cannot locate DNS info for database server '%s'"] = "Kan ikke finne DNS-informasjon om databasetjener '%s'"; -App::$strings["Image exceeds website size limit of %lu bytes"] = "Bilde overstiger nettstedets størrelsesbegrensning på %lu bytes"; -App::$strings["Image file is empty."] = "Bildefilen er tom."; -App::$strings["Photo storage failed."] = "Bildelagring mislyktes."; -App::$strings["a new photo"] = "et nytt bilde"; -App::$strings["__ctx:photo_upload__ %1\$s posted %2\$s to %3\$s"] = "%1\$s la inn %2\$s til %3\$s"; -App::$strings["Photo Albums"] = "Fotoalbum"; -App::$strings["Upload New Photos"] = "Last opp nye bilder"; -App::$strings["Logout"] = "Logg ut"; -App::$strings["End this session"] = "Avslutt denne økten"; -App::$strings["Home"] = "Hjem"; -App::$strings["Your posts and conversations"] = "Dine innlegg og samtaler"; -App::$strings["Your profile page"] = "Din profilside"; -App::$strings["Manage/Edit profiles"] = "Håndter/endre profiler"; -App::$strings["Edit Profile"] = "Endre profil"; -App::$strings["Edit your profile"] = "Endre din profil"; -App::$strings["Your photos"] = "Dine bilder"; -App::$strings["Your files"] = "Dine filer"; -App::$strings["Your chatrooms"] = "Dine chatterom"; -App::$strings["Bookmarks"] = "Bokmerker"; -App::$strings["Your bookmarks"] = "Dine bokmerker"; -App::$strings["Your webpages"] = "Dine websider"; -App::$strings["Your wiki"] = ""; -App::$strings["Sign in"] = "Logg på"; -App::$strings["%s - click to logout"] = "%s - klikk for å logge ut"; -App::$strings["Remote authentication"] = "Fjernautentisering"; -App::$strings["Click to authenticate to your home hub"] = "Klikk for å godkjennes mot din hjemme-hub"; -App::$strings["Home Page"] = "Hjemmeside"; -App::$strings["Create an account"] = "Lag en konto"; -App::$strings["Help and documentation"] = "Hjelp og dokumentasjon"; -App::$strings["Applications, utilities, links, games"] = "Programmer, verktøy, lenker, spill"; -App::$strings["Search site @name, #tag, ?docs, content"] = "Søk nettstedet for @navn, #merkelapp, ?dokumentasjon, innhold"; -App::$strings["Channel Directory"] = "Kanalkatalog"; -App::$strings["Your grid"] = "Ditt nett"; -App::$strings["Mark all grid notifications seen"] = "Marker alle nettvarsler som sett"; -App::$strings["Channel home"] = "Kanalhjem"; -App::$strings["Mark all channel notifications seen"] = "Merk alle kanalvarsler som sett"; -App::$strings["Notices"] = "Varsel"; -App::$strings["Notifications"] = "Varsler"; -App::$strings["See all notifications"] = "Se alle varsler"; -App::$strings["Private mail"] = "Privat post"; -App::$strings["See all private messages"] = "Se alle private meldinger"; -App::$strings["Mark all private messages seen"] = "Merk alle private meldinger som sett"; -App::$strings["Inbox"] = "Innboks"; -App::$strings["Outbox"] = "Utboks"; -App::$strings["New Message"] = "Ny melding"; -App::$strings["Event Calendar"] = "Kalender"; -App::$strings["See all events"] = "Se alle hendelser"; -App::$strings["Mark all events seen"] = "Merk alle hendelser som sett"; -App::$strings["Manage Your Channels"] = "Håndter dine kanaler"; -App::$strings["Account/Channel Settings"] = "Konto-/kanal-innstillinger"; -App::$strings["Admin"] = "Administrator"; -App::$strings["Site Setup and Configuration"] = "Nettstedsoppsett og -konfigurasjon"; -App::$strings["Loading..."] = "Laster..."; -App::$strings["@name, #tag, ?doc, content"] = "@navn, #merkelapp, ?dokumentasjon, innhold"; -App::$strings["Please wait..."] = "Vennligst vent..."; -App::$strings["view full size"] = "vis full størrelse"; -App::$strings["Administrator"] = "Administrator"; -App::$strings["No Subject"] = "Uten emne"; -App::$strings["Friendica"] = "Friendica"; -App::$strings["OStatus"] = "OStatus"; -App::$strings["GNU-Social"] = "GNU-Social"; -App::$strings["RSS/Atom"] = "RSS/Atom"; -App::$strings["Diaspora"] = "Diaspora"; -App::$strings["Facebook"] = "Facebook"; -App::$strings["Zot"] = "Zot"; -App::$strings["LinkedIn"] = "LinkedIn"; -App::$strings["XMPP/IM"] = "XMPP/IM"; -App::$strings["MySpace"] = "MySpace"; -App::$strings["New Page"] = "Ny side"; -App::$strings["Title"] = "Tittel"; App::$strings["Categories"] = "Kategorier"; App::$strings["Tags"] = "Merkelapper"; App::$strings["Keywords"] = "Nøkkelord"; @@ -1678,196 +1531,34 @@ App::$strings["want"] = "ønsker"; App::$strings["wants"] = "ønsker"; App::$strings["likes"] = "liker"; App::$strings["dislikes"] = "misliker"; -App::$strings["Unable to obtain identity information from database"] = "Klarer ikke å få tak i identitetsinformasjon fra databasen"; -App::$strings["Empty name"] = "Mangler navn"; -App::$strings["Name too long"] = "Navnet er for langt"; -App::$strings["No account identifier"] = "Ingen kontoidentifikator"; -App::$strings["Nickname is required."] = "Kallenavn er påkrevd."; -App::$strings["Reserved nickname. Please choose another."] = "Reservert kallenavn. Vennligst velg et annet."; -App::$strings["Nickname has unsupported characters or is already being used on this site."] = "Kallenavnet inneholder tegn som ikke er støttet eller det er allerede i bruk på dette nettstedet."; -App::$strings["Unable to retrieve created identity"] = "Klarer ikke å hente den lagede identiteten"; -App::$strings["Default Profile"] = "Standardprofil"; -App::$strings["Requested channel is not available."] = "Forespurt kanal er ikke tilgjengelig."; -App::$strings["Create New Profile"] = "Lag ny profil"; -App::$strings["Visible to everybody"] = "Synlig for alle"; -App::$strings["Gender:"] = "Kjønn:"; -App::$strings["Status:"] = "Status:"; -App::$strings["Homepage:"] = "Hjemmeside:"; -App::$strings["Online Now"] = "Online nå"; -App::$strings["Like this channel"] = "Lik denne kanalen"; -App::$strings["j F, Y"] = "j F, Y"; -App::$strings["j F"] = "j F"; -App::$strings["Birthday:"] = "Fødselsdag:"; -App::$strings["for %1\$d %2\$s"] = "for %1\$d %2\$s"; -App::$strings["Sexual Preference:"] = "Seksuell preferanse:"; -App::$strings["Tags:"] = "Merkelapper:"; -App::$strings["Political Views:"] = "Politiske synspunkter:"; -App::$strings["Religion:"] = "Religion:"; -App::$strings["Hobbies/Interests:"] = "Hobbyer/interesser:"; -App::$strings["Likes:"] = "Liker:"; -App::$strings["Dislikes:"] = "Misliker:"; -App::$strings["Contact information and Social Networks:"] = "Kontaktinformasjon og sosiale nettverk:"; -App::$strings["My other channels:"] = "Mine andre kanaler:"; -App::$strings["Musical interests:"] = "Musikkinteresse:"; -App::$strings["Books, literature:"] = "Bøker, litteratur:"; -App::$strings["Television:"] = "TV:"; -App::$strings["Film/dance/culture/entertainment:"] = "Film/dans/kultur/underholdning:"; -App::$strings["Love/Romance:"] = "Kjærlighet/romantikk:"; -App::$strings["Work/employment:"] = "Arbeid/sysselsetting:"; -App::$strings["School/education:"] = "Skole/utdannelse:"; -App::$strings["Like this thing"] = "Lik denne tingen"; -App::$strings["New window"] = "Nytt vindu"; -App::$strings["Open the selected location in a different window or browser tab"] = "Åpne det valgte stedet i et annet vindu eller nettleser-fane"; -App::$strings["User '%s' deleted"] = "Brukeren '%s' er slettet"; -App::$strings["%1\$s is now connected with %2\$s"] = "%1\$s er nå forbundet med %2\$s"; -App::$strings["%1\$s poked %2\$s"] = "%1\$s prikket %2\$s"; -App::$strings["poked"] = "prikket"; -App::$strings["View %s's profile @ %s"] = "Vis %s sin profile @ %s"; -App::$strings["Categories:"] = "Kategorier:"; -App::$strings["Filed under:"] = "Sortert under:"; -App::$strings["View in context"] = "Vis i sammenheng"; -App::$strings["remove"] = "fjern"; -App::$strings["Delete Selected Items"] = "Slett valgte elementer"; -App::$strings["View Source"] = "Vis kilde"; -App::$strings["Follow Thread"] = "Følg tråd"; -App::$strings["Unfollow Thread"] = "Ikke følg tråd"; -App::$strings["Activity/Posts"] = "Aktivitet/Innlegg"; -App::$strings["Edit Connection"] = "Endre forbindelse"; -App::$strings["Message"] = "Melding"; -App::$strings["%s likes this."] = "%s liker dette."; -App::$strings["%s doesn't like this."] = "%s liker ikke dette."; -App::$strings["%2\$d people like this."] = array( - 0 => "%2\$d person liker dette.", - 1 => "%2\$d personer liker dette.", -); -App::$strings["%2\$d people don't like this."] = array( - 0 => "%2\$d person liker ikke dette.", - 1 => "%2\$d personer liker ikke dette.", -); -App::$strings["and"] = "og"; -App::$strings[", and %d other people"] = array( - 0 => ", og %d annen person", - 1 => ", og %d andre personer", -); -App::$strings["%s like this."] = "%s liker dette."; -App::$strings["%s don't like this."] = "%s liker ikke dette."; -App::$strings["Set your location"] = "Angi din plassering"; -App::$strings["Clear browser location"] = "Fjern nettleserplassering"; -App::$strings["Tag term:"] = "Merkelapp:"; -App::$strings["Where are you right now?"] = "Hvor er du akkurat nå?"; -App::$strings["Page link name"] = "Sidens lenkenavn"; -App::$strings["Post as"] = "Lag innlegg som"; -App::$strings["Toggle voting"] = "Skru av eller på stemming"; -App::$strings["Categories (optional, comma-separated list)"] = "Kategorier (valgfri, kommaseparert liste)"; -App::$strings["Set publish date"] = "Angi publiseringsdato"; -App::$strings["Discover"] = "Oppdage"; -App::$strings["Imported public streams"] = "Importerte offentlige strømmer"; -App::$strings["Commented Order"] = "Kommentert"; -App::$strings["Sort by Comment Date"] = "Sorter etter kommentert dato"; -App::$strings["Posted Order"] = "Lagt inn"; -App::$strings["Sort by Post Date"] = "Sorter etter innleggsdato"; -App::$strings["Posts that mention or involve you"] = "Innlegg som nevner eller involverer deg"; -App::$strings["Activity Stream - by date"] = "Aktivitetsstrøm - etter dato"; -App::$strings["Starred"] = "Stjerne"; -App::$strings["Favourite Posts"] = "Favorittinnlegg"; -App::$strings["Spam"] = "Søppel"; -App::$strings["Posts flagged as SPAM"] = "Innlegg merket som SØPPEL"; -App::$strings["Status Messages and Posts"] = "Statusmeldinger og -innlegg"; -App::$strings["About"] = "Om"; -App::$strings["Profile Details"] = "Profildetaljer"; -App::$strings["Files and Storage"] = "Filer og lagring"; -App::$strings["Chatrooms"] = "Chatrom"; -App::$strings["Saved Bookmarks"] = "Lagrede bokmerker"; -App::$strings["Manage Webpages"] = "Håndtere websider"; -App::$strings["__ctx:noun__ Attending"] = array( - 0 => "Deltar", - 1 => "Deltar", -); -App::$strings["__ctx:noun__ Not Attending"] = array( - 0 => "Deltar ikke", - 1 => "Deltar ikke", -); -App::$strings["__ctx:noun__ Undecided"] = array( - 0 => "Ikke bestemt", - 1 => "Ikke bestemt", -); -App::$strings["__ctx:noun__ Agree"] = array( - 0 => "Enig", - 1 => "Enige", -); -App::$strings["__ctx:noun__ Disagree"] = array( - 0 => "Uenig", - 1 => "Uenige", -); -App::$strings["__ctx:noun__ Abstain"] = array( - 0 => "Avstår", - 1 => "Avstår", -); +App::$strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A"; +App::$strings["Starts:"] = "Starter:"; +App::$strings["Finishes:"] = "Slutter:"; +App::$strings["This event has been added to your calendar."] = "Denne hendelsen er lagt til i din kalender."; +App::$strings["Not specified"] = "Ikke spesifisert"; +App::$strings["Needs Action"] = "Trenger handling"; +App::$strings["Completed"] = "Ferdig"; +App::$strings["In Process"] = "Igang"; +App::$strings["Cancelled"] = "Avbrutt"; App::$strings["Cannot create a duplicate channel identifier on this system. Import failed."] = "Kan ikke lage en kopi av kanal-identifikatoren på dette systemet. Import mislyktes."; App::$strings["Channel clone failed. Import failed."] = "Kanalkloning mislyktes. Import mislyktes."; -App::$strings["Frequently"] = "Ofte"; -App::$strings["Hourly"] = "Hver time"; -App::$strings["Twice daily"] = "To ganger daglig"; -App::$strings["Daily"] = "Daglig"; -App::$strings["Weekly"] = "Ukentlig"; -App::$strings["Monthly"] = "Månedlig"; -App::$strings["Currently Male"] = "For tiden mann"; -App::$strings["Currently Female"] = "For tiden kvinne"; -App::$strings["Mostly Male"] = "For det meste mann"; -App::$strings["Mostly Female"] = "For det meste kvinne"; -App::$strings["Transgender"] = "Transkjønnet"; -App::$strings["Intersex"] = "interkjønnet"; -App::$strings["Transsexual"] = "Transseksuell"; -App::$strings["Hermaphrodite"] = "Hermafroditt"; -App::$strings["Neuter"] = "Intetkjønn"; -App::$strings["Non-specific"] = "Ubestemt"; -App::$strings["Undecided"] = "Ubestemt"; -App::$strings["Males"] = "Menn"; -App::$strings["Females"] = "Kvinner"; -App::$strings["Gay"] = "Homo"; -App::$strings["Lesbian"] = "Lesbisk"; -App::$strings["No Preference"] = "Ingen preferanse"; -App::$strings["Bisexual"] = "Biseksuell"; -App::$strings["Autosexual"] = "Autoseksuell"; -App::$strings["Abstinent"] = "Avholdende"; -App::$strings["Virgin"] = "Jomfru"; -App::$strings["Deviant"] = "Avviker"; -App::$strings["Fetish"] = "Fetisj"; -App::$strings["Oodles"] = "Masse"; -App::$strings["Nonsexual"] = "Ikke-seksuell"; -App::$strings["Single"] = "Enslig"; -App::$strings["Lonely"] = "Ensom"; -App::$strings["Available"] = "Tilgjengelig"; -App::$strings["Unavailable"] = "Ikke tilgjengelig"; -App::$strings["Has crush"] = "Er forelsket"; -App::$strings["Infatuated"] = "Betatt"; -App::$strings["Dating"] = "Sammen med"; -App::$strings["Unfaithful"] = "Utro"; -App::$strings["Sex Addict"] = "Sexavhengig"; -App::$strings["Friends/Benefits"] = "Venner med frynsegoder"; -App::$strings["Casual"] = "Tilfeldig"; -App::$strings["Engaged"] = "Forlovet"; -App::$strings["Married"] = "Gift"; -App::$strings["Imaginarily married"] = "Gift i fantasien"; -App::$strings["Partners"] = "Partnere"; -App::$strings["Cohabiting"] = "Samboer"; -App::$strings["Common law"] = "Samboer"; -App::$strings["Happy"] = "Lykkelig"; -App::$strings["Not looking"] = "Ikke på utkikk"; -App::$strings["Swinger"] = "Partnerbytte"; -App::$strings["Betrayed"] = "Bedratt"; -App::$strings["Separated"] = "Separert"; -App::$strings["Unstable"] = "Ustabilt"; -App::$strings["Divorced"] = "Skilt"; -App::$strings["Imaginarily divorced"] = "Skilt i fantasien"; -App::$strings["Widowed"] = "Enke"; -App::$strings["Uncertain"] = "Usikkert"; -App::$strings["It's complicated"] = "Det er komplisert"; -App::$strings["Don't care"] = "Bryr meg ikke"; -App::$strings["Ask me"] = "Spør meg"; -App::$strings["%1\$s's bookmarks"] = "%1\$s sine bokmerker"; -App::$strings["guest:"] = ""; -App::$strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "Skjemaets sikkerhetspollett var ikke gyldig. Dette skjedde antakelig fordi skjemaet har vært åpnet for lenge (>3 timer) før det ble sendt inn."; +App::$strings["(Unknown)"] = "(Ukjent)"; +App::$strings["Visible to anybody on the internet."] = "Synlig for enhver på Internett."; +App::$strings["Visible to you only."] = "Synlig bare for deg."; +App::$strings["Visible to anybody in this network."] = "Synlig for enhver i dette nettverket."; +App::$strings["Visible to anybody authenticated."] = "Synlig for enhver som er autentisert."; +App::$strings["Visible to anybody on %s."] = "Synlig for alle på %s."; +App::$strings["Visible to all connections."] = "Synlig for alle forbindelser."; +App::$strings["Visible to approved connections."] = "Synlig for godkjente forbindelser."; +App::$strings["Visible to specific connections."] = "Synlig for spesifikke forbindelser."; +App::$strings["Privacy group is empty."] = "Personverngruppen er tom."; +App::$strings["Privacy group: %s"] = "Personverngruppe: %s"; +App::$strings["Connection not found."] = "Forbindelsen ble ikke funnet."; +App::$strings["profile photo"] = "profilbilde"; +App::$strings["No recipient provided."] = "Ingen mottaker angitt."; +App::$strings["[no subject]"] = "[ikke noe emne]"; +App::$strings["Unable to determine sender."] = "Kan ikke avgjøre avsender."; +App::$strings["Stored post could not be verified."] = "Lagret innlegg kunne ikke bekreftes."; App::$strings["prev"] = "forrige"; App::$strings["first"] = "første"; App::$strings["last"] = "siste"; @@ -1877,6 +1568,7 @@ App::$strings["newer"] = "nyere"; App::$strings["No connections"] = "Ingen forbindelser"; App::$strings["View all %s connections"] = "Vis alle %s forbindelser"; App::$strings["poke"] = "prikk"; +App::$strings["poked"] = "prikket"; App::$strings["ping"] = "varsle"; App::$strings["pinged"] = "varslet"; App::$strings["prod"] = "oppildne"; @@ -1939,21 +1631,385 @@ App::$strings["Select an alternate language"] = "Velg et annet språk"; App::$strings["activity"] = "aktivitet"; App::$strings["Design Tools"] = "Designverktøy"; App::$strings["Pages"] = "Sider"; -App::$strings["Logged out."] = "Logget ut."; -App::$strings["Failed authentication"] = "Mislykket autentisering"; -App::$strings["Can view my normal stream and posts"] = "Kan se min normale strøm og innlegg"; -App::$strings["Can view my webpages"] = "Kan se mine websider"; -App::$strings["Can post on my channel page (\"wall\")"] = "Kan lage innlegg på min kanalside (\"vegg\")"; -App::$strings["Can like/dislike stuff"] = "Kan like/ikke like forskjellige greier"; -App::$strings["Profiles and things other than posts/comments"] = "Profiler og andre ting enn innlegg/kommentarer"; -App::$strings["Can forward to all my channel contacts via post @mentions"] = "Kan videresende til alle mine kanalkontakter via @navn i innlegg"; -App::$strings["Advanced - useful for creating group forum channels"] = "Avansert - nyttig for å lage forumkanaler for grupper"; -App::$strings["Can chat with me (when available)"] = "Kan chatte/sende lynmeldinger til meg (når tilgjengelig)"; -App::$strings["Can write to my file storage and photos"] = "Kan skrive til mitt lager for filer og bilder"; -App::$strings["Can edit my webpages"] = "Kan endre mine websider"; -App::$strings["Somewhat advanced - very useful in open communities"] = "Litt avansert - svært nyttig i åpne fellesskap"; -App::$strings["Can administer my channel resources"] = "Kan administrere mine kanalressurser"; -App::$strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "Ekstremt avansert. La dette være med mindre du vet hva du gjør"; +App::$strings["System"] = "System"; +App::$strings["New App"] = ""; +App::$strings["Suggestions"] = "Forslag"; +App::$strings["See more..."] = "Se mer..."; +App::$strings["You have %1$.0f of %2$.0f allowed connections."] = "Du har %1$.0f av %2$.0f tillate forbindelser."; +App::$strings["Add New Connection"] = "Legg til ny forbindelse"; +App::$strings["Enter channel address"] = "Skriv kanaladressen"; +App::$strings["Examples: bob@example.com, https://example.com/barbara"] = "Eksempel: ola@eksempel.no, https://eksempel.no/kari"; +App::$strings["Notes"] = "Merknader"; +App::$strings["Remove term"] = "Fjern begrep"; +App::$strings["Saved Searches"] = "Lagrede søk"; +App::$strings["add"] = "legg til"; +App::$strings["Saved Folders"] = "Lagrede mapper"; +App::$strings["Everything"] = "Alt"; +App::$strings["Archives"] = "Arkiv"; +App::$strings["Refresh"] = "Forny"; +App::$strings["Account settings"] = "Kontoinnstillinger"; +App::$strings["Channel settings"] = "Kanalinnstillinger"; +App::$strings["Additional features"] = "Tilleggsfunksjoner"; +App::$strings["Feature/Addon settings"] = "Funksjons-/Tilleggsinnstillinger"; +App::$strings["Display settings"] = "Visningsinnstillinger"; +App::$strings["Manage locations"] = ""; +App::$strings["Export channel"] = "Eksporter kanal"; +App::$strings["Connected apps"] = "Tilkoblede app-er"; +App::$strings["Premium Channel Settings"] = "Premiumkanal-innstillinger"; +App::$strings["Private Mail Menu"] = "Meny for privat post"; +App::$strings["Combined View"] = "Kombinert visning"; +App::$strings["Inbox"] = "Innboks"; +App::$strings["Outbox"] = "Utboks"; +App::$strings["New Message"] = "Ny melding"; +App::$strings["Conversations"] = "Samtaler"; +App::$strings["Received Messages"] = "Mottatte meldinger"; +App::$strings["Sent Messages"] = "Sendte meldinger"; +App::$strings["No messages."] = "Ingen meldinger."; +App::$strings["Delete conversation"] = "Slett samtale"; +App::$strings["Events Menu"] = "Meny for hendelser"; +App::$strings["Day View"] = "Dag"; +App::$strings["Week View"] = "Uke"; +App::$strings["Month View"] = "Måned"; +App::$strings["Events Tools"] = "Kalenderverktøy"; +App::$strings["Export Calendar"] = "Eksporter kalender"; +App::$strings["Import Calendar"] = "Importer kalender"; +App::$strings["Chatrooms"] = "Chatrom"; +App::$strings["Overview"] = ""; +App::$strings["Chat Members"] = ""; +App::$strings["Bookmarked Chatrooms"] = "Bokmerkede chatrom"; +App::$strings["Suggested Chatrooms"] = "Foreslåtte chatrom"; +App::$strings["photo/image"] = "foto/bilde"; +App::$strings["Click to show more"] = ""; +App::$strings["Rating Tools"] = "Vurderingsverktøy"; +App::$strings["Rate Me"] = "Vurder meg"; +App::$strings["View Ratings"] = "Vis vurderinger"; +App::$strings["Forums"] = "Forum"; +App::$strings["Tasks"] = "Oppgaver"; +App::$strings["Documentation"] = "Dokumentasjon"; +App::$strings["Project/Site Information"] = "Prosjekt-/Nettstedsinformasjon"; +App::$strings["For Members"] = "For medlemmer"; +App::$strings["For Administrators"] = "For administratorer"; +App::$strings["For Developers"] = "For utviklere"; +App::$strings["Member registrations waiting for confirmation"] = ""; +App::$strings["Inspect queue"] = "Inspiser kø"; +App::$strings["DB updates"] = "Databaseoppdateringer"; +App::$strings["Admin"] = "Administrator"; +App::$strings["Plugin Features"] = "Tilleggsfunksjoner"; +App::$strings["Channel is blocked on this site."] = "Kanalen er blokkert på dette nettstedet."; +App::$strings["Channel location missing."] = "Kanalplassering mangler."; +App::$strings["Response from remote channel was incomplete."] = "Svaret fra den andre kanalen var ikke komplett."; +App::$strings["Channel was deleted and no longer exists."] = "Kanalen er slettet og finnes ikke lenger."; +App::$strings["Protocol disabled."] = "Protokollen er avskrudd."; +App::$strings["Channel discovery failed."] = "Kanaloppdagelse mislyktes."; +App::$strings["Cannot connect to yourself."] = "Kan ikke lage forbindelse med deg selv."; +App::$strings["%1\$s's bookmarks"] = "%1\$s sine bokmerker"; +App::$strings["Public Timeline"] = "Offentlig tidslinje"; +App::$strings["Image/photo"] = "Bilde/fotografi"; +App::$strings["Encrypted content"] = "Kryptert innhold"; +App::$strings["Install %s element: "] = "Installer %s element:"; +App::$strings["This post contains an installable %s element, however you lack permissions to install it on this site."] = "Dette innlegget inneholder det installerbare elementet %s, men du mangler tillatelse til å installere det på dette nettstedet."; +App::$strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s skrev følgende %2\$s %3\$s"; +App::$strings["Click to open/close"] = "Klikk for å åpne/lukke"; +App::$strings["spoiler"] = ""; +App::$strings["Different viewers will see this text differently"] = "Denne teksten vil se forskjellig ut for ulike besøkende"; +App::$strings["$1 wrote:"] = "$1 skrev:"; +App::$strings["Directory Options"] = "Kataloginnstillinger"; +App::$strings["Safe Mode"] = "Trygt modus"; +App::$strings["Public Forums Only"] = "Bare offentlige forum"; +App::$strings["This Website Only"] = "Kun dette nettstedet"; +App::$strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "Skjemaets sikkerhetspollett var ikke gyldig. Dette skjedde antakelig fordi skjemaet har vært åpnet for lenge (>3 timer) før det ble sendt inn."; +App::$strings["Logout"] = "Logg ut"; +App::$strings["End this session"] = "Avslutt denne økten"; +App::$strings["Home"] = "Hjem"; +App::$strings["Your posts and conversations"] = "Dine innlegg og samtaler"; +App::$strings["Your profile page"] = "Din profilside"; +App::$strings["Manage/Edit profiles"] = "Håndter/endre profiler"; +App::$strings["Edit Profile"] = "Endre profil"; +App::$strings["Edit your profile"] = "Endre din profil"; +App::$strings["Your photos"] = "Dine bilder"; +App::$strings["Your files"] = "Dine filer"; +App::$strings["Your chatrooms"] = "Dine chatterom"; +App::$strings["Bookmarks"] = "Bokmerker"; +App::$strings["Your bookmarks"] = "Dine bokmerker"; +App::$strings["Your webpages"] = "Dine websider"; +App::$strings["Sign in"] = "Logg på"; +App::$strings["%s - click to logout"] = "%s - klikk for å logge ut"; +App::$strings["Remote authentication"] = "Fjernautentisering"; +App::$strings["Click to authenticate to your home hub"] = "Klikk for å godkjennes mot din hjemme-hub"; +App::$strings["Home Page"] = "Hjemmeside"; +App::$strings["Create an account"] = "Lag en konto"; +App::$strings["Help and documentation"] = "Hjelp og dokumentasjon"; +App::$strings["Applications, utilities, links, games"] = "Programmer, verktøy, lenker, spill"; +App::$strings["Search site @name, #tag, ?docs, content"] = "Søk nettstedet for @navn, #merkelapp, ?dokumentasjon, innhold"; +App::$strings["Channel Directory"] = "Kanalkatalog"; +App::$strings["Your grid"] = "Ditt nett"; +App::$strings["Mark all grid notifications seen"] = "Marker alle nettvarsler som sett"; +App::$strings["Channel home"] = "Kanalhjem"; +App::$strings["Mark all channel notifications seen"] = "Merk alle kanalvarsler som sett"; +App::$strings["Notices"] = "Varsel"; +App::$strings["Notifications"] = "Varsler"; +App::$strings["See all notifications"] = "Se alle varsler"; +App::$strings["Private mail"] = "Privat post"; +App::$strings["See all private messages"] = "Se alle private meldinger"; +App::$strings["Mark all private messages seen"] = "Merk alle private meldinger som sett"; +App::$strings["Event Calendar"] = "Kalender"; +App::$strings["See all events"] = "Se alle hendelser"; +App::$strings["Mark all events seen"] = "Merk alle hendelser som sett"; +App::$strings["Manage Your Channels"] = "Håndter dine kanaler"; +App::$strings["Account/Channel Settings"] = "Konto-/kanal-innstillinger"; +App::$strings["Site Setup and Configuration"] = "Nettstedsoppsett og -konfigurasjon"; +App::$strings["Loading..."] = "Laster..."; +App::$strings["@name, #tag, ?doc, content"] = "@navn, #merkelapp, ?dokumentasjon, innhold"; +App::$strings["Please wait..."] = "Vennligst vent..."; +App::$strings["New window"] = "Nytt vindu"; +App::$strings["Open the selected location in a different window or browser tab"] = "Åpne det valgte stedet i et annet vindu eller nettleser-fane"; +App::$strings["User '%s' deleted"] = "Brukeren '%s' er slettet"; +App::$strings["%d invitation available"] = array( + 0 => "%d invitasjon tilgjengelig", + 1 => "%d invitasjoner tilgjengelig", +); +App::$strings["Find Channels"] = "Finn kanaler"; +App::$strings["Enter name or interest"] = "Skriv navn eller interesse"; +App::$strings["Connect/Follow"] = "Forbindelse/Følg"; +App::$strings["Examples: Robert Morgenstein, Fishing"] = "Eksempler: Ola Nordmann, fisking"; +App::$strings["Random Profile"] = "Tilfeldig profil"; +App::$strings["Invite Friends"] = "Inviter venner"; +App::$strings["Advanced example: name=fred and country=iceland"] = "Avansert eksempel: navn=fred og land=island"; +App::$strings["%d connection in common"] = array( + 0 => "%d forbindelse felles", + 1 => "%d forbindelser felles", +); +App::$strings["show more"] = "vis mer"; +App::$strings["%1\$s is now connected with %2\$s"] = "%1\$s er nå forbundet med %2\$s"; +App::$strings["%1\$s poked %2\$s"] = "%1\$s prikket %2\$s"; +App::$strings["View %s's profile @ %s"] = "Vis %s sin profile @ %s"; +App::$strings["Categories:"] = "Kategorier:"; +App::$strings["Filed under:"] = "Sortert under:"; +App::$strings["View in context"] = "Vis i sammenheng"; +App::$strings["remove"] = "fjern"; +App::$strings["Delete Selected Items"] = "Slett valgte elementer"; +App::$strings["View Source"] = "Vis kilde"; +App::$strings["Follow Thread"] = "Følg tråd"; +App::$strings["Unfollow Thread"] = "Ikke følg tråd"; +App::$strings["Activity/Posts"] = "Aktivitet/Innlegg"; +App::$strings["Edit Connection"] = "Endre forbindelse"; +App::$strings["Message"] = "Melding"; +App::$strings["%s likes this."] = "%s liker dette."; +App::$strings["%s doesn't like this."] = "%s liker ikke dette."; +App::$strings["%2\$d people like this."] = array( + 0 => "%2\$d person liker dette.", + 1 => "%2\$d personer liker dette.", +); +App::$strings["%2\$d people don't like this."] = array( + 0 => "%2\$d person liker ikke dette.", + 1 => "%2\$d personer liker ikke dette.", +); +App::$strings["and"] = "og"; +App::$strings[", and %d other people"] = array( + 0 => ", og %d annen person", + 1 => ", og %d andre personer", +); +App::$strings["%s like this."] = "%s liker dette."; +App::$strings["%s don't like this."] = "%s liker ikke dette."; +App::$strings["Set your location"] = "Angi din plassering"; +App::$strings["Clear browser location"] = "Fjern nettleserplassering"; +App::$strings["Tag term:"] = "Merkelapp:"; +App::$strings["Where are you right now?"] = "Hvor er du akkurat nå?"; +App::$strings["Page link name"] = "Sidens lenkenavn"; +App::$strings["Post as"] = "Lag innlegg som"; +App::$strings["Toggle voting"] = "Skru av eller på stemming"; +App::$strings["Categories (optional, comma-separated list)"] = "Kategorier (valgfri, kommaseparert liste)"; +App::$strings["Set publish date"] = "Angi publiseringsdato"; +App::$strings["OK"] = "OK"; +App::$strings["Discover"] = "Oppdage"; +App::$strings["Imported public streams"] = "Importerte offentlige strømmer"; +App::$strings["Commented Order"] = "Kommentert"; +App::$strings["Sort by Comment Date"] = "Sorter etter kommentert dato"; +App::$strings["Posted Order"] = "Lagt inn"; +App::$strings["Sort by Post Date"] = "Sorter etter innleggsdato"; +App::$strings["Posts that mention or involve you"] = "Innlegg som nevner eller involverer deg"; +App::$strings["Activity Stream - by date"] = "Aktivitetsstrøm - etter dato"; +App::$strings["Starred"] = "Stjerne"; +App::$strings["Favourite Posts"] = "Favorittinnlegg"; +App::$strings["Spam"] = "Søppel"; +App::$strings["Posts flagged as SPAM"] = "Innlegg merket som SØPPEL"; +App::$strings["Status Messages and Posts"] = "Statusmeldinger og -innlegg"; +App::$strings["About"] = "Om"; +App::$strings["Profile Details"] = "Profildetaljer"; +App::$strings["Photo Albums"] = "Fotoalbum"; +App::$strings["Files and Storage"] = "Filer og lagring"; +App::$strings["Saved Bookmarks"] = "Lagrede bokmerker"; +App::$strings["Manage Webpages"] = "Håndtere websider"; +App::$strings["__ctx:noun__ Attending"] = array( + 0 => "Deltar", + 1 => "Deltar", +); +App::$strings["__ctx:noun__ Not Attending"] = array( + 0 => "Deltar ikke", + 1 => "Deltar ikke", +); +App::$strings["__ctx:noun__ Undecided"] = array( + 0 => "Ikke bestemt", + 1 => "Ikke bestemt", +); +App::$strings["__ctx:noun__ Agree"] = array( + 0 => "Enig", + 1 => "Enige", +); +App::$strings["__ctx:noun__ Disagree"] = array( + 0 => "Uenig", + 1 => "Uenige", +); +App::$strings["__ctx:noun__ Abstain"] = array( + 0 => "Avstår", + 1 => "Avstår", +); +App::$strings["Frequently"] = "Ofte"; +App::$strings["Hourly"] = "Hver time"; +App::$strings["Twice daily"] = "To ganger daglig"; +App::$strings["Daily"] = "Daglig"; +App::$strings["Weekly"] = "Ukentlig"; +App::$strings["Monthly"] = "Månedlig"; +App::$strings["Currently Male"] = "For tiden mann"; +App::$strings["Currently Female"] = "For tiden kvinne"; +App::$strings["Mostly Male"] = "For det meste mann"; +App::$strings["Mostly Female"] = "For det meste kvinne"; +App::$strings["Transgender"] = "Transkjønnet"; +App::$strings["Intersex"] = "interkjønnet"; +App::$strings["Transsexual"] = "Transseksuell"; +App::$strings["Hermaphrodite"] = "Hermafroditt"; +App::$strings["Neuter"] = "Intetkjønn"; +App::$strings["Non-specific"] = "Ubestemt"; +App::$strings["Other"] = "Annen"; +App::$strings["Undecided"] = "Ubestemt"; +App::$strings["Males"] = "Menn"; +App::$strings["Females"] = "Kvinner"; +App::$strings["Gay"] = "Homo"; +App::$strings["Lesbian"] = "Lesbisk"; +App::$strings["No Preference"] = "Ingen preferanse"; +App::$strings["Bisexual"] = "Biseksuell"; +App::$strings["Autosexual"] = "Autoseksuell"; +App::$strings["Abstinent"] = "Avholdende"; +App::$strings["Virgin"] = "Jomfru"; +App::$strings["Deviant"] = "Avviker"; +App::$strings["Fetish"] = "Fetisj"; +App::$strings["Oodles"] = "Masse"; +App::$strings["Nonsexual"] = "Ikke-seksuell"; +App::$strings["Single"] = "Enslig"; +App::$strings["Lonely"] = "Ensom"; +App::$strings["Available"] = "Tilgjengelig"; +App::$strings["Unavailable"] = "Ikke tilgjengelig"; +App::$strings["Has crush"] = "Er forelsket"; +App::$strings["Infatuated"] = "Betatt"; +App::$strings["Dating"] = "Sammen med"; +App::$strings["Unfaithful"] = "Utro"; +App::$strings["Sex Addict"] = "Sexavhengig"; +App::$strings["Friends/Benefits"] = "Venner med frynsegoder"; +App::$strings["Casual"] = "Tilfeldig"; +App::$strings["Engaged"] = "Forlovet"; +App::$strings["Married"] = "Gift"; +App::$strings["Imaginarily married"] = "Gift i fantasien"; +App::$strings["Partners"] = "Partnere"; +App::$strings["Cohabiting"] = "Samboer"; +App::$strings["Common law"] = "Samboer"; +App::$strings["Happy"] = "Lykkelig"; +App::$strings["Not looking"] = "Ikke på utkikk"; +App::$strings["Swinger"] = "Partnerbytte"; +App::$strings["Betrayed"] = "Bedratt"; +App::$strings["Separated"] = "Separert"; +App::$strings["Unstable"] = "Ustabilt"; +App::$strings["Divorced"] = "Skilt"; +App::$strings["Imaginarily divorced"] = "Skilt i fantasien"; +App::$strings["Widowed"] = "Enke"; +App::$strings["Uncertain"] = "Usikkert"; +App::$strings["It's complicated"] = "Det er komplisert"; +App::$strings["Don't care"] = "Bryr meg ikke"; +App::$strings["Ask me"] = "Spør meg"; +App::$strings["Visible to your default audience"] = "Synlig for ditt standard publikum"; +App::$strings["Only me"] = ""; +App::$strings["Public"] = "Offentlig"; +App::$strings["Anybody in the \$Projectname network"] = ""; +App::$strings["Any account on %s"] = ""; +App::$strings["Any of my connections"] = ""; +App::$strings["Only connections I specifically allow"] = ""; +App::$strings["Anybody authenticated (could include visitors from other networks)"] = ""; +App::$strings["Any connections including those who haven't yet been approved"] = ""; +App::$strings["This is your default setting for the audience of your normal stream, and posts."] = ""; +App::$strings["This is your default setting for who can view your default channel profile"] = ""; +App::$strings["This is your default setting for who can view your connections"] = ""; +App::$strings["This is your default setting for who can view your file storage and photos"] = ""; +App::$strings["This is your default setting for the audience of your webpages"] = ""; +App::$strings["Not a valid email address"] = "Ikke en gyldig e-postadresse"; +App::$strings["Your email domain is not among those allowed on this site"] = "Ditt e-postdomene er ikke blant de som er tillatt på dette stedet"; +App::$strings["Your email address is already registered at this site."] = "Din e-postadresse er allerede registrert på dette nettstedet."; +App::$strings["An invitation is required."] = "En invitasjon er påkrevd."; +App::$strings["Invitation could not be verified."] = "Invitasjon kunne ikke bekreftes."; +App::$strings["Please enter the required information."] = "Vennligst skriv inn nødvendig informasjon."; +App::$strings["Failed to store account information."] = "Mislyktes med å lagre kontoinformasjon."; +App::$strings["Registration confirmation for %s"] = "Registreringsbekreftelse for %s"; +App::$strings["Registration request at %s"] = "Registreringsforespørsel hos %s"; +App::$strings["Administrator"] = "Administrator"; +App::$strings["your registration password"] = "ditt registreringspassord"; +App::$strings["Registration details for %s"] = "Registreringsdetaljer for %s"; +App::$strings["Account approved."] = "Konto godkjent."; +App::$strings["Registration revoked for %s"] = "Registrering trukket tilbake for %s"; +App::$strings["Account verified. Please login."] = "Konto bekreftet. Vennligst logg inn."; +App::$strings["Click here to upgrade."] = "Klikk her for å oppgradere."; +App::$strings["This action exceeds the limits set by your subscription plan."] = "Denne handlingen går utenfor grensene satt i din abonnementsplan."; +App::$strings["This action is not available under your subscription plan."] = "Denne handlingen er ikke tilgjengelig i din abonnementsplan."; +App::$strings["Item was not found."] = "Elementet ble ikke funnet."; +App::$strings["No source file."] = "Ingen kildefil."; +App::$strings["Cannot locate file to replace"] = "Kan ikke finne filen som skal byttes ut"; +App::$strings["Cannot locate file to revise/update"] = "Finner ikke filen som skal revideres/oppdateres"; +App::$strings["File exceeds size limit of %d"] = "Filens størrelse overgår grensen på %d"; +App::$strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Du har nådd din lagringsgrense for vedlegg på %1$.0f Mbytes."; +App::$strings["File upload failed. Possible system limit or action terminated."] = "Mislyktes med å laste opp filen. Mulig systemgrense eller handling avbrutt."; +App::$strings["Stored file could not be verified. Upload failed."] = "Lagret fil kunne ikke bekreftes. Opplasting mislyktes."; +App::$strings["Path not available."] = "Stien er ikke tilgjengelig."; +App::$strings["Empty pathname"] = "Tomt sti-navn"; +App::$strings["duplicate filename or path"] = "duplikat av filnavn eller sti"; +App::$strings["Path not found."] = "Stien ble ikke funnet."; +App::$strings["mkdir failed."] = "mkdir mislyktes."; +App::$strings["database storage failed."] = "databaselagring mislyktes."; +App::$strings["Empty path"] = "Tom sti"; +App::$strings["Unable to obtain identity information from database"] = "Klarer ikke å få tak i identitetsinformasjon fra databasen"; +App::$strings["Empty name"] = "Mangler navn"; +App::$strings["Name too long"] = "Navnet er for langt"; +App::$strings["No account identifier"] = "Ingen kontoidentifikator"; +App::$strings["Nickname is required."] = "Kallenavn er påkrevd."; +App::$strings["Reserved nickname. Please choose another."] = "Reservert kallenavn. Vennligst velg et annet."; +App::$strings["Nickname has unsupported characters or is already being used on this site."] = "Kallenavnet inneholder tegn som ikke er støttet eller det er allerede i bruk på dette nettstedet."; +App::$strings["Unable to retrieve created identity"] = "Klarer ikke å hente den lagede identiteten"; +App::$strings["Default Profile"] = "Standardprofil"; +App::$strings["Requested channel is not available."] = "Forespurt kanal er ikke tilgjengelig."; +App::$strings["Create New Profile"] = "Lag ny profil"; +App::$strings["Visible to everybody"] = ""; +App::$strings["Gender:"] = "Kjønn:"; +App::$strings["Status:"] = "Status:"; +App::$strings["Homepage:"] = "Hjemmeside:"; +App::$strings["Online Now"] = "Online nå"; +App::$strings["Like this channel"] = "Lik denne kanalen"; +App::$strings["j F, Y"] = "j F, Y"; +App::$strings["j F"] = "j F"; +App::$strings["Birthday:"] = "Fødselsdag:"; +App::$strings["for %1\$d %2\$s"] = "for %1\$d %2\$s"; +App::$strings["Sexual Preference:"] = "Seksuell preferanse:"; +App::$strings["Tags:"] = "Merkelapper:"; +App::$strings["Political Views:"] = "Politiske synspunkter:"; +App::$strings["Religion:"] = "Religion:"; +App::$strings["Hobbies/Interests:"] = "Hobbyer/interesser:"; +App::$strings["Likes:"] = "Liker:"; +App::$strings["Dislikes:"] = "Misliker:"; +App::$strings["Contact information and Social Networks:"] = "Kontaktinformasjon og sosiale nettverk:"; +App::$strings["My other channels:"] = "Mine andre kanaler:"; +App::$strings["Musical interests:"] = "Musikkinteresse:"; +App::$strings["Books, literature:"] = "Bøker, litteratur:"; +App::$strings["Television:"] = "TV:"; +App::$strings["Film/dance/culture/entertainment:"] = "Film/dans/kultur/underholdning:"; +App::$strings["Love/Romance:"] = "Kjærlighet/romantikk:"; +App::$strings["Work/employment:"] = "Arbeid/sysselsetting:"; +App::$strings["School/education:"] = "Skole/utdannelse:"; +App::$strings["Like this thing"] = "Lik denne tingen"; App::$strings["General Features"] = "Generelle funksjoner"; App::$strings["Content Expiration"] = "Innholdet utløper"; App::$strings["Remove posts/comments and/or private messages at a future time"] = "Fjern innlegg/kommentarer og/eller private meldinger på et angitt tidspunkt i fremtiden"; @@ -1965,7 +2021,6 @@ App::$strings["Profile Import/Export"] = "Profil-import/-eksport"; App::$strings["Save and load profile details across sites/channels"] = "Lagre og åpne profildetaljer på tvers av nettsteder/kanaler"; App::$strings["Web Pages"] = "Web-sider"; App::$strings["Provide managed web pages on your channel"] = "Tilby kontrollerte web-sider på din kanal"; -App::$strings["Provide a wiki for your channel"] = ""; App::$strings["Hide Rating"] = "Skjul vurdering"; App::$strings["Hide the rating buttons on your channel and profile pages. Note: People can still rate you somewhere else."] = "Skjul vurderingsknappene for din kanal og profilsider. Merknad: folk kan fortsatt vurdere deg et annet sted."; App::$strings["Private Notes"] = "Private merknader"; @@ -1974,10 +2029,10 @@ App::$strings["Navigation Channel Select"] = "Navigasjon kanalvalg"; App::$strings["Change channels directly from within the navigation dropdown menu"] = "Endre kanaler direkte fra navigasjonsmenyen"; App::$strings["Photo Location"] = "Bildeplassering"; App::$strings["If location data is available on uploaded photos, link this to a map."] = "Hvis plasseringsdata er tilgjengelige i opplastede bilder, plasser dette på et kart."; -App::$strings["Access Controlled Chatrooms"] = "Tilgangsstyrte chatrom"; -App::$strings["Provide chatrooms and chat services with access control."] = "Tilby chatrom og chattjenester med tilgangskontroll."; -App::$strings["Smart Birthdays"] = "Smarte fødselsdager"; -App::$strings["Make birthday events timezone aware in case your friends are scattered across the planet."] = "Gjør fødselsdagshendelser oppmerksom på tidsoner i tilfelle dine venner er spredt rundt planeten."; +App::$strings["Access Controlled Chatrooms"] = ""; +App::$strings["Provide chatrooms and chat services with access control."] = ""; +App::$strings["Smart Birthdays"] = ""; +App::$strings["Make birthday events timezone aware in case your friends are scattered across the planet."] = ""; App::$strings["Expert Mode"] = "Ekspertmodus"; App::$strings["Enable Expert Mode to provide advanced configuration options"] = "Skru på Ekspertmodus for å tilby avanserte konfigurasjonsvalg"; App::$strings["Premium Channel"] = "Premiumkanal"; @@ -1999,7 +2054,6 @@ App::$strings["Search by Date"] = "Søk etter dato"; App::$strings["Ability to select posts by date ranges"] = "Mulighet for å velge innlegg etter datoområde"; App::$strings["Privacy Groups"] = "Personverngrupper"; App::$strings["Enable management and selection of privacy groups"] = "Skru på håndtering og valg av personverngrupper"; -App::$strings["Saved Searches"] = "Lagrede søk"; App::$strings["Save search terms for re-use"] = "Lagre søkeuttrykk for senere bruk"; App::$strings["Network Personal Tab"] = "Nettverk personlig fane"; App::$strings["Enable tab to display only Network posts that you've interacted on"] = "Skru på fane for å bare vise Nettverksinnlegg som du har deltatt i"; @@ -2015,9 +2069,8 @@ App::$strings["Community Tagging"] = "Felleskapsmerkelapper"; App::$strings["Ability to tag existing posts"] = "Mulighet til å merke eksisterende meldinger"; App::$strings["Post Categories"] = "Innleggskategorier"; App::$strings["Add categories to your posts"] = "Legg kategorier til dine innlegg"; -App::$strings["Emoji Reactions"] = "Emoji-reaksjoner"; -App::$strings["Add emoji reaction ability to posts"] = "Legg til muligheten for emoji-reaksjoner på innlegg"; -App::$strings["Saved Folders"] = "Lagrede mapper"; +App::$strings["Emoji Reactions"] = ""; +App::$strings["Add emoji reaction ability to posts"] = ""; App::$strings["Ability to file posts under folders"] = "Mulighet til å sortere innlegg i mapper"; App::$strings["Dislike Posts"] = "Mislik innlegg"; App::$strings["Ability to dislike posts/comments"] = "Mulighet til å mislike innlegg/kommentarer"; @@ -2025,149 +2078,63 @@ App::$strings["Star Posts"] = "Stjerneinnlegg"; App::$strings["Ability to mark special posts with a star indicator"] = "Mulighet til å merke spesielle innlegg med en stjerne"; App::$strings["Tag Cloud"] = "Merkelappsky"; App::$strings["Provide a personal tag cloud on your channel page"] = "Tilby en personlig merkelappsky på din kanalside"; +App::$strings["Embedded content"] = "Innebygget innhold"; +App::$strings["Embedding disabled"] = "Innbygging avskrudd"; +App::$strings["Who can see this?"] = ""; +App::$strings["Custom selection"] = ""; +App::$strings["Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit the scope of \"Show\"."] = ""; +App::$strings["Show"] = "Vis"; +App::$strings["Don't show"] = "Ikke vis"; +App::$strings["Other networks and post services"] = "Andre nettverk og innleggstjenester"; +App::$strings["Post permissions %s cannot be changed %s after a post is shared.
These permissions set who is allowed to view the post."] = ""; +App::$strings["Logged out."] = "Logget ut."; +App::$strings["Failed authentication"] = "Mislykket autentisering"; +App::$strings["Birthday"] = ""; +App::$strings["Age: "] = "Alder:"; +App::$strings["YYYY-MM-DD or MM-DD"] = "YYYY-MM-DD eller MM-DD"; +App::$strings["never"] = "aldri"; +App::$strings["less than a second ago"] = "for mindre enn ett sekund siden"; +App::$strings["__ctx:e.g. 22 hours ago, 1 minute ago__ %1\$d %2\$s ago"] = "%1\$d %2\$s siden"; +App::$strings["__ctx:relative_date__ year"] = array( + 0 => "år", + 1 => "år", +); +App::$strings["__ctx:relative_date__ month"] = array( + 0 => "måned", + 1 => "måneder", +); +App::$strings["__ctx:relative_date__ week"] = array( + 0 => "uke", + 1 => "uker", +); +App::$strings["__ctx:relative_date__ day"] = array( + 0 => "dag", + 1 => "dager", +); +App::$strings["__ctx:relative_date__ hour"] = array( + 0 => "time", + 1 => "timer", +); +App::$strings["__ctx:relative_date__ minute"] = array( + 0 => "minutt", + 1 => "minutter", +); +App::$strings["__ctx:relative_date__ second"] = array( + 0 => "sekund", + 1 => "sekunder", +); +App::$strings["%1\$s's birthday"] = "%1\$s sin fødselsdag"; +App::$strings["Happy Birthday %1\$s"] = "Gratulerer med dagen, %1\$s !"; App::$strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "En slettet gruppe med dette navnet ble gjenopprettet. Eksisterende tillatelser for elementet kan gjelde for denne gruppen og fremtidige medlemmer. Hvis du ønsket noe annet, vennligst lag en ny gruppe med et annet navn."; App::$strings["Add new connections to this privacy group"] = "Legg nye forbindelser i denne personverngruppen"; App::$strings["edit"] = "endre"; App::$strings["Edit group"] = "Endre gruppe"; App::$strings["Add privacy group"] = "Legg til personverngruppe"; App::$strings["Channels not in any privacy group"] = "Kanaler uten personverngruppe"; -App::$strings["add"] = "legg til"; -App::$strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A"; -App::$strings["Starts:"] = "Starter:"; -App::$strings["Finishes:"] = "Slutter:"; -App::$strings["This event has been added to your calendar."] = "Denne hendelsen er lagt til i din kalender."; -App::$strings["Not specified"] = "Ikke spesifisert"; -App::$strings["Needs Action"] = "Trenger handling"; -App::$strings["Completed"] = "Ferdig"; -App::$strings["In Process"] = "Igang"; -App::$strings["Cancelled"] = "Avbrutt"; -App::$strings["Not a valid email address"] = "Ikke en gyldig e-postadresse"; -App::$strings["Your email domain is not among those allowed on this site"] = "Ditt e-postdomene er ikke blant de som er tillatt på dette stedet"; -App::$strings["Your email address is already registered at this site."] = "Din e-postadresse er allerede registrert på dette nettstedet."; -App::$strings["An invitation is required."] = "En invitasjon er påkrevd."; -App::$strings["Invitation could not be verified."] = "Invitasjon kunne ikke bekreftes."; -App::$strings["Please enter the required information."] = "Vennligst skriv inn nødvendig informasjon."; -App::$strings["Failed to store account information."] = "Mislyktes med å lagre kontoinformasjon."; -App::$strings["Registration confirmation for %s"] = "Registreringsbekreftelse for %s"; -App::$strings["Registration request at %s"] = "Registreringsforespørsel hos %s"; -App::$strings["your registration password"] = "ditt registreringspassord"; -App::$strings["Registration details for %s"] = "Registreringsdetaljer for %s"; -App::$strings["Account approved."] = "Konto godkjent."; -App::$strings["Registration revoked for %s"] = "Registrering trukket tilbake for %s"; -App::$strings["Click here to upgrade."] = "Klikk her for å oppgradere."; -App::$strings["This action exceeds the limits set by your subscription plan."] = "Denne handlingen går utenfor grensene satt i din abonnementsplan."; -App::$strings["This action is not available under your subscription plan."] = "Denne handlingen er ikke tilgjengelig i din abonnementsplan."; -App::$strings["Channel is blocked on this site."] = "Kanalen er blokkert på dette nettstedet."; -App::$strings["Channel location missing."] = "Kanalplassering mangler."; -App::$strings["Response from remote channel was incomplete."] = "Svaret fra den andre kanalen var ikke komplett."; -App::$strings["Channel was deleted and no longer exists."] = "Kanalen er slettet og finnes ikke lenger."; -App::$strings["Protocol disabled."] = "Protokollen er avskrudd."; -App::$strings["Channel discovery failed."] = "Kanaloppdagelse mislyktes."; -App::$strings["Cannot connect to yourself."] = "Kan ikke lage forbindelse med deg selv."; -App::$strings["Item was not found."] = "Elementet ble ikke funnet."; -App::$strings["No source file."] = "Ingen kildefil."; -App::$strings["Cannot locate file to replace"] = "Kan ikke finne filen som skal byttes ut"; -App::$strings["Cannot locate file to revise/update"] = "Finner ikke filen som skal revideres/oppdateres"; -App::$strings["File exceeds size limit of %d"] = "Filens størrelse overgår grensen på %d"; -App::$strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Du har nådd din lagringsgrense for vedlegg på %1$.0f Mbytes."; -App::$strings["File upload failed. Possible system limit or action terminated."] = "Mislyktes med å laste opp filen. Mulig systemgrense eller handling avbrutt."; -App::$strings["Stored file could not be verified. Upload failed."] = "Lagret fil kunne ikke bekreftes. Opplasting mislyktes."; -App::$strings["Path not available."] = "Stien er ikke tilgjengelig."; -App::$strings["Empty pathname"] = "Tomt sti-navn"; -App::$strings["duplicate filename or path"] = "duplikat av filnavn eller sti"; -App::$strings["Path not found."] = "Stien ble ikke funnet."; -App::$strings["mkdir failed."] = "mkdir mislyktes."; -App::$strings["database storage failed."] = "databaselagring mislyktes."; -App::$strings["Empty path"] = "Tom sti"; -App::$strings["Image/photo"] = "Bilde/fotografi"; -App::$strings["Encrypted content"] = "Kryptert innhold"; -App::$strings["Install %s element: "] = "Installer %s element:"; -App::$strings["This post contains an installable %s element, however you lack permissions to install it on this site."] = "Dette innlegget inneholder det installerbare elementet %s, men du mangler tillatelse til å installere det på dette nettstedet."; -App::$strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s skrev følgende %2\$s %3\$s"; -App::$strings["Click to open/close"] = "Klikk for å åpne/lukke"; -App::$strings["spoiler"] = "avsløring"; -App::$strings["Different viewers will see this text differently"] = "Denne teksten vil se forskjellig ut for ulike besøkende"; -App::$strings["$1 wrote:"] = "$1 skrev:"; -App::$strings["(Unknown)"] = "(Ukjent)"; -App::$strings["Visible to anybody on the internet."] = "Synlig for enhver på Internett."; -App::$strings["Visible to you only."] = "Synlig bare for deg."; -App::$strings["Visible to anybody in this network."] = "Synlig for enhver i dette nettverket."; -App::$strings["Visible to anybody authenticated."] = "Synlig for enhver som er autentisert."; -App::$strings["Visible to anybody on %s."] = "Synlig for alle på %s."; -App::$strings["Visible to all connections."] = "Synlig for alle forbindelser."; -App::$strings["Visible to approved connections."] = "Synlig for godkjente forbindelser."; -App::$strings["Visible to specific connections."] = "Synlig for spesifikke forbindelser."; -App::$strings["Privacy group is empty."] = "Personverngruppen er tom."; -App::$strings["Privacy group: %s"] = "Personverngruppe: %s"; -App::$strings["Connection not found."] = "Forbindelsen ble ikke funnet."; -App::$strings["profile photo"] = "profilbilde"; -App::$strings["Embedded content"] = "Innebygget innhold"; -App::$strings["Embedding disabled"] = "Innbygging avskrudd"; -App::$strings["System"] = "System"; -App::$strings["New App"] = "Ny app"; -App::$strings["Suggestions"] = "Forslag"; -App::$strings["See more..."] = "Se mer..."; -App::$strings["You have %1$.0f of %2$.0f allowed connections."] = "Du har %1$.0f av %2$.0f tillate forbindelser."; -App::$strings["Add New Connection"] = "Legg til ny forbindelse"; -App::$strings["Enter channel address"] = "Skriv kanaladressen"; -App::$strings["Examples: bob@example.com, https://example.com/barbara"] = "Eksempel: ola@eksempel.no, https://eksempel.no/kari"; -App::$strings["Notes"] = "Merknader"; -App::$strings["Remove term"] = "Fjern begrep"; -App::$strings["Everything"] = "Alt"; -App::$strings["Archives"] = "Arkiv"; -App::$strings["Refresh"] = "Forny"; -App::$strings["Account settings"] = "Kontoinnstillinger"; -App::$strings["Channel settings"] = "Kanalinnstillinger"; -App::$strings["Additional features"] = "Tilleggsfunksjoner"; -App::$strings["Feature/Addon settings"] = "Funksjons-/Tilleggsinnstillinger"; -App::$strings["Display settings"] = "Visningsinnstillinger"; -App::$strings["Manage locations"] = "Håndter plasseringer"; -App::$strings["Export channel"] = "Eksporter kanal"; -App::$strings["Connected apps"] = "Tilkoblede app-er"; -App::$strings["Premium Channel Settings"] = "Premiumkanal-innstillinger"; -App::$strings["Private Mail Menu"] = "Meny for privat post"; -App::$strings["Combined View"] = "Kombinert visning"; -App::$strings["Conversations"] = "Samtaler"; -App::$strings["Received Messages"] = "Mottatte meldinger"; -App::$strings["Sent Messages"] = "Sendte meldinger"; -App::$strings["No messages."] = "Ingen meldinger."; -App::$strings["Delete conversation"] = "Slett samtale"; -App::$strings["Events Tools"] = "Kalenderverktøy"; -App::$strings["Export Calendar"] = "Eksporter kalender"; -App::$strings["Import Calendar"] = "Importer kalender"; -App::$strings["Overview"] = "Overblikk"; -App::$strings["Chat Members"] = "Chatmedlemmer"; -App::$strings["Wiki List"] = ""; -App::$strings["Wiki Pages"] = ""; -App::$strings["Bookmarked Chatrooms"] = "Bokmerkede chatrom"; -App::$strings["Suggested Chatrooms"] = "Foreslåtte chatrom"; -App::$strings["photo/image"] = "foto/bilde"; -App::$strings["Click to show more"] = "Klikk for å vise mer"; -App::$strings["Rating Tools"] = "Vurderingsverktøy"; -App::$strings["Rate Me"] = "Vurder meg"; -App::$strings["View Ratings"] = "Vis vurderinger"; -App::$strings["Forums"] = "Forum"; -App::$strings["Tasks"] = "Oppgaver"; -App::$strings["Documentation"] = "Dokumentasjon"; -App::$strings["Project/Site Information"] = "Prosjekt-/Nettstedsinformasjon"; -App::$strings["For Members"] = "For medlemmer"; -App::$strings["For Administrators"] = "For administratorer"; -App::$strings["For Developers"] = "For utviklere"; -App::$strings["Member registrations waiting for confirmation"] = "Medlemsregistreringer venter på bekreftelse"; -App::$strings["Inspect queue"] = "Inspiser kø"; -App::$strings["DB updates"] = "Databaseoppdateringer"; -App::$strings["Plugin Features"] = "Tilleggsfunksjoner"; -App::$strings[" and "] = "og"; -App::$strings["public profile"] = "offentlig profil"; -App::$strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s endret %2\$s til “%3\$s”"; -App::$strings["Visit %1\$s's %2\$s"] = "Besøk %1\$s sitt %2\$s"; -App::$strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s har oppdatert %2\$s, endret %3\$s."; -App::$strings["Attachments:"] = "Vedlegg:"; -App::$strings["\$Projectname event notification:"] = "\$Projectname hendelsesvarsling:"; App::$strings["Delete this item?"] = "Slett dette elementet?"; -App::$strings["%s show less"] = ""; -App::$strings["%s expand"] = ""; -App::$strings["%s collapse"] = ""; +App::$strings["[-] show less"] = "[-] Vis mindre"; +App::$strings["[+] expand"] = "[+] Utvid"; +App::$strings["[-] collapse"] = "[-] Lukk"; App::$strings["Password too short"] = "Passordet er for kort"; App::$strings["Passwords do not match"] = "Passordene er ikke like"; App::$strings["everybody"] = "alle"; @@ -2222,78 +2189,72 @@ App::$strings["__ctx:calendar__ month"] = "måned"; App::$strings["__ctx:calendar__ week"] = "uke"; App::$strings["__ctx:calendar__ day"] = "dag"; App::$strings["__ctx:calendar__ All day"] = "Hele dagen"; -App::$strings["%d invitation available"] = array( - 0 => "%d invitasjon tilgjengelig", - 1 => "%d invitasjoner tilgjengelig", -); -App::$strings["Find Channels"] = "Finn kanaler"; -App::$strings["Enter name or interest"] = "Skriv navn eller interesse"; -App::$strings["Connect/Follow"] = "Forbindelse/Følg"; -App::$strings["Examples: Robert Morgenstein, Fishing"] = "Eksempler: Ola Nordmann, fisking"; -App::$strings["Random Profile"] = "Tilfeldig profil"; -App::$strings["Invite Friends"] = "Inviter venner"; -App::$strings["Advanced example: name=fred and country=iceland"] = "Avansert eksempel: navn=fred og land=island"; -App::$strings["%d connection in common"] = array( - 0 => "%d forbindelse felles", - 1 => "%d forbindelser felles", -); -App::$strings["show more"] = "vis mer"; -App::$strings["Directory Options"] = "Kataloginnstillinger"; -App::$strings["Safe Mode"] = "Trygt modus"; -App::$strings["Public Forums Only"] = "Bare offentlige forum"; -App::$strings["This Website Only"] = "Kun dette nettstedet"; -App::$strings["No recipient provided."] = "Ingen mottaker angitt."; -App::$strings["[no subject]"] = "[ikke noe emne]"; -App::$strings["Unable to determine sender."] = "Kan ikke avgjøre avsender."; -App::$strings["Stored post could not be verified."] = "Lagret innlegg kunne ikke bekreftes."; -App::$strings["Who can see this?"] = "Hvem kan se dette?"; -App::$strings["Custom selection"] = "Tilpasset utvalg"; -App::$strings["Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit the scope of \"Show\"."] = "Velg \"Vis\" for å tillate visning. \"Ikke vis\" lar deg overstyre og avgrense omfanget av \"Vis\"."; -App::$strings["Show"] = "Vis"; -App::$strings["Don't show"] = "Ikke vis"; -App::$strings["Other networks and post services"] = "Andre nettverk og innleggstjenester"; -App::$strings["Post permissions %s cannot be changed %s after a post is shared.
These permissions set who is allowed to view the post."] = "Innleggstillatelsene %s kan ikke endres %s etter at et innlegg er delt.
Disse innstillingene angir hvem som har tillatelse til å se innlegget."; -App::$strings["Birthday"] = "Fødselsdag"; -App::$strings["Age: "] = "Alder:"; -App::$strings["YYYY-MM-DD or MM-DD"] = "YYYY-MM-DD eller MM-DD"; -App::$strings["never"] = "aldri"; -App::$strings["less than a second ago"] = "for mindre enn ett sekund siden"; -App::$strings["__ctx:e.g. 22 hours ago, 1 minute ago__ %1\$d %2\$s ago"] = "%1\$d %2\$s siden"; -App::$strings["__ctx:relative_date__ year"] = array( - 0 => "år", - 1 => "år", -); -App::$strings["__ctx:relative_date__ month"] = array( - 0 => "måned", - 1 => "måneder", -); -App::$strings["__ctx:relative_date__ week"] = array( - 0 => "uke", - 1 => "uker", -); -App::$strings["__ctx:relative_date__ day"] = array( - 0 => "dag", - 1 => "dager", -); -App::$strings["__ctx:relative_date__ hour"] = array( - 0 => "time", - 1 => "timer", -); -App::$strings["__ctx:relative_date__ minute"] = array( - 0 => "minutt", - 1 => "minutter", -); -App::$strings["__ctx:relative_date__ second"] = array( - 0 => "sekund", - 1 => "sekunder", -); -App::$strings["%1\$s's birthday"] = "%1\$s sin fødselsdag"; -App::$strings["Happy Birthday %1\$s"] = "Gratulerer med dagen, %1\$s !"; -App::$strings["Public Timeline"] = "Offentlig tidslinje"; +App::$strings["view full size"] = "vis full størrelse"; +App::$strings["No Subject"] = "Uten emne"; +App::$strings["Friendica"] = "Friendica"; +App::$strings["OStatus"] = "OStatus"; +App::$strings["GNU-Social"] = ""; +App::$strings["RSS/Atom"] = "RSS/Atom"; +App::$strings["Diaspora"] = "Diaspora"; +App::$strings["Facebook"] = "Facebook"; +App::$strings["Zot"] = "Zot"; +App::$strings["LinkedIn"] = "LinkedIn"; +App::$strings["XMPP/IM"] = "XMPP/IM"; +App::$strings["MySpace"] = "MySpace"; +App::$strings["Image exceeds website size limit of %lu bytes"] = "Bilde overstiger nettstedets størrelsesbegrensning på %lu bytes"; +App::$strings["Image file is empty."] = "Bildefilen er tom."; +App::$strings["Photo storage failed."] = "Bildelagring mislyktes."; +App::$strings["a new photo"] = "et nytt bilde"; +App::$strings["__ctx:photo_upload__ %1\$s posted %2\$s to %3\$s"] = "%1\$s la inn %2\$s til %3\$s"; +App::$strings["Upload New Photos"] = "Last opp nye bilder"; App::$strings["Invalid data packet"] = "Ugyldig datapakke"; App::$strings["Unable to verify channel signature"] = "Ikke i stand til å sjekke kanalsignaturen"; App::$strings["Unable to verify site signature for %s"] = "Ikke i stand til å bekrefte signaturen til %s"; App::$strings["invalid target signature"] = "Målets signatur er ugyldig"; +App::$strings["New Page"] = "Ny side"; +App::$strings["Title"] = "Tittel"; +App::$strings["Can view my normal stream and posts"] = "Kan se min normale strøm og innlegg"; +App::$strings["Can view my default channel profile"] = "Kan se min standard kanalprofil"; +App::$strings["Can view my connections"] = "Kan se mine forbindelser"; +App::$strings["Can view my file storage and photos"] = "Kan se mine filer og bilder"; +App::$strings["Can view my webpages"] = "Kan se mine websider"; +App::$strings["Can send me their channel stream and posts"] = "Kan sende meg deres kanalstrøm og innlegg"; +App::$strings["Can post on my channel page (\"wall\")"] = "Kan lage innlegg på min kanalside (\"vegg\")"; +App::$strings["Can comment on or like my posts"] = "Kan kommentere på eller like mine innlegg"; +App::$strings["Can send me private mail messages"] = "Kan sende meg private meldinger"; +App::$strings["Can like/dislike stuff"] = "Kan like/ikke like forskjellige greier"; +App::$strings["Profiles and things other than posts/comments"] = "Profiler og andre ting enn innlegg/kommentarer"; +App::$strings["Can forward to all my channel contacts via post @mentions"] = "Kan videresende til alle mine kanalkontakter via @navn i innlegg"; +App::$strings["Advanced - useful for creating group forum channels"] = "Avansert - nyttig for å lage forumkanaler for grupper"; +App::$strings["Can chat with me (when available)"] = "Kan chatte/sende lynmeldinger til meg (når tilgjengelig)"; +App::$strings["Can write to my file storage and photos"] = "Kan skrive til mitt lager for filer og bilder"; +App::$strings["Can edit my webpages"] = "Kan endre mine websider"; +App::$strings["Can source my public posts in derived channels"] = "Kan bruke mine offentlige innlegg som kanalkilde i egne kanaler"; +App::$strings["Somewhat advanced - very useful in open communities"] = "Litt avansert - svært nyttig i åpne fellesskap"; +App::$strings["Can administer my channel resources"] = "Kan administrere mine kanalressurser"; +App::$strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "Ekstremt avansert. La dette være med mindre du vet hva du gjør"; +App::$strings["Social Networking"] = "Sosialt nettverk"; +App::$strings["Social - Mostly Public"] = "Sosial - ganske offentlig"; +App::$strings["Social - Restricted"] = "Sosial - begrenset"; +App::$strings["Social - Private"] = "Sosial - privat"; +App::$strings["Community Forum"] = "Forum for fellesskap"; +App::$strings["Forum - Mostly Public"] = "Forum - ganske offentlig"; +App::$strings["Forum - Restricted"] = "Forum - begrenset"; +App::$strings["Forum - Private"] = "Forum - privat"; +App::$strings["Feed Republish"] = "Republisering av strømmet innhold"; +App::$strings["Feed - Mostly Public"] = "Strøm - ganske offentlig"; +App::$strings["Feed - Restricted"] = "Strøm - begrenset"; +App::$strings["Special Purpose"] = "Spesiell bruk"; +App::$strings["Special - Celebrity/Soapbox"] = "Spesiell - kjendis/talerstol"; +App::$strings["Special - Group Repository"] = "Spesiell - gruppelager"; +App::$strings["Custom/Expert Mode"] = "Tilpasset/Ekspertmodus"; +App::$strings[" and "] = "og"; +App::$strings["public profile"] = "offentlig profil"; +App::$strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s endret %2\$s til “%3\$s”"; +App::$strings["Visit %1\$s's %2\$s"] = "Besøk %1\$s sitt %2\$s"; +App::$strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s har oppdatert %2\$s, endret %3\$s."; +App::$strings["Attachments:"] = "Vedlegg:"; +App::$strings["\$Projectname event notification:"] = "\$Projectname hendelsesvarsling:"; App::$strings["Focus (Hubzilla default)"] = "Focus (Hubzilla standardtema)"; App::$strings["Theme settings"] = "Temainnstillinger"; App::$strings["Select scheme"] = "Velg skjema"; @@ -2328,12 +2289,11 @@ App::$strings["Left align page content"] = "Venstrejuster sideinnhold"; App::$strings["Set minimum opacity of nav bar - to hide it"] = "Angi minste dekkevne for navigasjonslinjen - for å skjule den"; App::$strings["Set size of conversation author photo"] = "Angi størrelsen for samtalens forfatterbilde"; App::$strings["Set size of followup author photos"] = "Angi størrelsen på forfatterbilder ved oppfølging"; -App::$strings["__ctx:opensearch__ Search %1\$s (%2\$s)"] = "Søk %1\$s (%2\$s)"; -App::$strings["__ctx:opensearch__ \$Projectname"] = "\$Projectname"; +App::$strings["__ctx:opensearch__ Search %1\$s (%2\$s)"] = ""; +App::$strings["__ctx:opensearch__ \$Projectname"] = ""; App::$strings["Update %s failed. See error logs."] = "Oppdatering %s mislyktes. Se feilloggen."; App::$strings["Update Error at %s"] = "Oppdateringsfeil ved %s"; App::$strings["Create an account to access services and applications within the Hubzilla"] = "Lag en konto for å få tilgang til tjenester og programmer i Hubzilla"; -App::$strings["Login/Email"] = ""; App::$strings["Password"] = "Passord"; App::$strings["Remember me"] = "Husk meg"; App::$strings["Forgot your password?"] = "Glemt passordet ditt?"; diff --git a/view/nl/hmessages.po b/view/nl/hmessages.po index 858724e05..9219a1c06 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: 2016-07-22 00:02-0700\n" -"PO-Revision-Date: 2016-07-26 00:17+0000\n" +"POT-Creation-Date: 2016-06-10 00:02-0700\n" +"PO-Revision-Date: 2016-06-10 13:57+0000\n" "Last-Translator: jeroenpraat \n" "Language-Team: Dutch (http://www.transifex.com/Friendica/red-matrix/language/nl/)\n" "MIME-Version: 1.0\n" @@ -18,156 +18,11 @@ msgstr "" "Language: nl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ../../Zotlabs/Access/PermissionRoles.php:182 -#: ../../include/permissions.php:904 -msgid "Social Networking" -msgstr "Sociaal netwerk" - -#: ../../Zotlabs/Access/PermissionRoles.php:183 -#: ../../include/permissions.php:904 -msgid "Social - Mostly Public" -msgstr "Sociaal - Vrijwel alles openbaar" - -#: ../../Zotlabs/Access/PermissionRoles.php:184 -#: ../../include/permissions.php:904 -msgid "Social - Restricted" -msgstr "Sociaal - Beperkt zichtbaar" - -#: ../../Zotlabs/Access/PermissionRoles.php:185 -#: ../../include/permissions.php:904 -msgid "Social - Private" -msgstr "Sociaal - Verborgen kanaal" - -#: ../../Zotlabs/Access/PermissionRoles.php:188 -#: ../../include/permissions.php:905 -msgid "Community Forum" -msgstr "Groepsforum" - -#: ../../Zotlabs/Access/PermissionRoles.php:189 -#: ../../include/permissions.php:905 -msgid "Forum - Mostly Public" -msgstr "Forum - Vrijwel alles openbaar" - -#: ../../Zotlabs/Access/PermissionRoles.php:190 -#: ../../include/permissions.php:905 -msgid "Forum - Restricted" -msgstr "Forum - Beperkt zichtbaar" - -#: ../../Zotlabs/Access/PermissionRoles.php:191 -#: ../../include/permissions.php:905 -msgid "Forum - Private" -msgstr "Forum - Verborgen kanaal" - -#: ../../Zotlabs/Access/PermissionRoles.php:194 -#: ../../include/permissions.php:906 -msgid "Feed Republish" -msgstr "Feed herpubliceren" - -#: ../../Zotlabs/Access/PermissionRoles.php:195 -#: ../../include/permissions.php:906 -msgid "Feed - Mostly Public" -msgstr "Feed - Vrijwel alles openbaar" - -#: ../../Zotlabs/Access/PermissionRoles.php:196 -#: ../../include/permissions.php:906 -msgid "Feed - Restricted" -msgstr "Feed - Beperkt zichtbaar" - -#: ../../Zotlabs/Access/PermissionRoles.php:199 -#: ../../include/permissions.php:907 -msgid "Special Purpose" -msgstr "Speciaal doel" - -#: ../../Zotlabs/Access/PermissionRoles.php:200 -#: ../../include/permissions.php:907 -msgid "Special - Celebrity/Soapbox" -msgstr "Speciaal - Beroemdheid/alleen volgen" - -#: ../../Zotlabs/Access/PermissionRoles.php:201 -#: ../../include/permissions.php:907 -msgid "Special - Group Repository" -msgstr "Speciaal - Groepsopslag" - -#: ../../Zotlabs/Access/PermissionRoles.php:204 ../../include/selectors.php:49 -#: ../../include/selectors.php:66 ../../include/selectors.php:104 -#: ../../include/selectors.php:140 ../../include/permissions.php:908 -msgid "Other" -msgstr "Anders" - -#: ../../Zotlabs/Access/PermissionRoles.php:205 -#: ../../include/permissions.php:908 -msgid "Custom/Expert Mode" -msgstr "Expertmodus/handmatig aanpassen" - -#: ../../Zotlabs/Access/Permissions.php:30 -msgid "Can view my channel stream and posts" -msgstr "Kan mijn kanaal en berichten bekijken" - -#: ../../Zotlabs/Access/Permissions.php:31 ../../include/permissions.php:33 -msgid "Can send me their channel stream and posts" -msgstr "Kan mij de inhoud van hun kanaal en berichten sturen" - -#: ../../Zotlabs/Access/Permissions.php:32 ../../include/permissions.php:27 -msgid "Can view my default channel profile" -msgstr "Kan mijn standaard kanaalprofiel bekijken" - -#: ../../Zotlabs/Access/Permissions.php:33 ../../include/permissions.php:28 -msgid "Can view my connections" -msgstr "Kan een lijst met mijn connecties bekijken" - -#: ../../Zotlabs/Access/Permissions.php:34 ../../include/permissions.php:29 -msgid "Can view my file storage and photos" -msgstr "Kan mijn foto's en andere bestanden bekijken" - -#: ../../Zotlabs/Access/Permissions.php:35 -msgid "Can upload/modify my file storage and photos" -msgstr "Kan foto's en andere bestanden aan mijn bestandsopslag toevoegen" - -#: ../../Zotlabs/Access/Permissions.php:36 -msgid "Can view my channel webpages" -msgstr "Kan de webpagina's van mijn kanaal bekijken" - -#: ../../Zotlabs/Access/Permissions.php:37 -msgid "Can create/edit my channel webpages" -msgstr "Kan wegpagina's van mijn kanaal aanmaken en bewerken" - -#: ../../Zotlabs/Access/Permissions.php:38 -msgid "Can post on my channel (wall) page" -msgstr "Kan een bericht in mijn kanaal plaatsen" - -#: ../../Zotlabs/Access/Permissions.php:39 ../../include/permissions.php:35 -msgid "Can comment on or like my posts" -msgstr "Kan op mijn berichten reageren of deze (niet) leuk vinden" - -#: ../../Zotlabs/Access/Permissions.php:40 ../../include/permissions.php:36 -msgid "Can send me private mail messages" -msgstr "Kan mij privéberichten sturen" - -#: ../../Zotlabs/Access/Permissions.php:41 -msgid "Can like/dislike profiles and profile things" -msgstr "Kan profielen en profieldingen leuk en niet leuk vinden " - -#: ../../Zotlabs/Access/Permissions.php:42 -msgid "Can forward to all my channel connections via @+ mentions in posts" -msgstr "Kan naar al mijn kanaalconnecties berichten doorsturen met behulp van @vermeldingen+" - -#: ../../Zotlabs/Access/Permissions.php:43 -msgid "Can chat with me" -msgstr "Kan met mij chatten" - -#: ../../Zotlabs/Access/Permissions.php:44 ../../include/permissions.php:44 -msgid "Can source my public posts in derived channels" -msgstr "Kan mijn openbare berichten als bron voor andere kanalen gebruiken" - -#: ../../Zotlabs/Access/Permissions.php:45 -msgid "Can administer my channel" -msgstr "Kan mijn kanaal beheren" - #: ../../Zotlabs/Storage/Browser.php:107 ../../Zotlabs/Storage/Browser.php:239 msgid "parent" msgstr "omhoog" -#: ../../Zotlabs/Storage/Browser.php:131 ../../include/text.php:2605 +#: ../../Zotlabs/Storage/Browser.php:131 ../../include/text.php:2620 msgid "Collection" msgstr "map" @@ -191,17 +46,16 @@ msgstr "Planning-postvak IN" msgid "Schedule Outbox" msgstr "Planning-postvak UIT" -#: ../../Zotlabs/Storage/Browser.php:164 ../../Zotlabs/Module/Photos.php:796 -#: ../../Zotlabs/Module/Photos.php:1241 -#: ../../Zotlabs/Module/Embedphotos.php:147 ../../Zotlabs/Lib/Apps.php:490 -#: ../../Zotlabs/Lib/Apps.php:565 ../../include/conversation.php:1035 -#: ../../include/widgets.php:1599 +#: ../../Zotlabs/Storage/Browser.php:164 ../../Zotlabs/Module/Photos.php:798 +#: ../../Zotlabs/Module/Photos.php:1243 ../../Zotlabs/Lib/Apps.php:486 +#: ../../Zotlabs/Lib/Apps.php:561 ../../include/widgets.php:1505 +#: ../../include/conversation.php:1032 msgid "Unknown" msgstr "Onbekend" #: ../../Zotlabs/Storage/Browser.php:226 ../../Zotlabs/Module/Fbrowser.php:85 -#: ../../Zotlabs/Lib/Apps.php:217 ../../include/nav.php:93 -#: ../../include/conversation.php:1654 +#: ../../Zotlabs/Lib/Apps.php:216 ../../include/nav.php:93 +#: ../../include/conversation.php:1639 msgid "Files" msgstr "Bestanden" @@ -214,23 +68,22 @@ msgid "Shared" msgstr "Gedeeld" #: ../../Zotlabs/Storage/Browser.php:230 ../../Zotlabs/Storage/Browser.php:306 -#: ../../Zotlabs/Module/Layouts.php:184 ../../Zotlabs/Module/Menu.php:118 -#: ../../Zotlabs/Module/New_channel.php:142 -#: ../../Zotlabs/Module/Blocks.php:159 ../../Zotlabs/Module/Webpages.php:193 +#: ../../Zotlabs/Module/Blocks.php:156 ../../Zotlabs/Module/Layouts.php:182 +#: ../../Zotlabs/Module/Menu.php:118 ../../Zotlabs/Module/New_channel.php:142 +#: ../../Zotlabs/Module/Webpages.php:186 msgid "Create" msgstr "Aanmaken" #: ../../Zotlabs/Storage/Browser.php:231 ../../Zotlabs/Storage/Browser.php:308 #: ../../Zotlabs/Module/Cover_photo.php:357 -#: ../../Zotlabs/Module/Photos.php:823 ../../Zotlabs/Module/Photos.php:1362 -#: ../../Zotlabs/Module/Profile_photo.php:390 -#: ../../Zotlabs/Module/Embedphotos.php:159 ../../include/widgets.php:1612 +#: ../../Zotlabs/Module/Photos.php:825 ../../Zotlabs/Module/Photos.php:1364 +#: ../../Zotlabs/Module/Profile_photo.php:368 ../../include/widgets.php:1518 msgid "Upload" msgstr "Uploaden" #: ../../Zotlabs/Storage/Browser.php:235 ../../Zotlabs/Module/Chat.php:247 -#: ../../Zotlabs/Module/Admin.php:1223 ../../Zotlabs/Module/Settings.php:646 -#: ../../Zotlabs/Module/Settings.php:672 +#: ../../Zotlabs/Module/Admin.php:1223 ../../Zotlabs/Module/Settings.php:592 +#: ../../Zotlabs/Module/Settings.php:618 #: ../../Zotlabs/Module/Sharedwithme.php:99 msgid "Name" msgstr "Naam" @@ -240,7 +93,7 @@ msgid "Type" msgstr "Type" #: ../../Zotlabs/Storage/Browser.php:237 -#: ../../Zotlabs/Module/Sharedwithme.php:101 ../../include/text.php:1324 +#: ../../Zotlabs/Module/Sharedwithme.php:101 ../../include/text.php:1344 msgid "Size" msgstr "Grootte" @@ -249,32 +102,34 @@ msgstr "Grootte" msgid "Last Modified" msgstr "Laatst gewijzigd" -#: ../../Zotlabs/Storage/Browser.php:240 ../../Zotlabs/Module/Editpost.php:84 +#: ../../Zotlabs/Storage/Browser.php:240 ../../Zotlabs/Module/Blocks.php:157 +#: ../../Zotlabs/Module/Editblock.php:109 #: ../../Zotlabs/Module/Connections.php:290 #: ../../Zotlabs/Module/Connections.php:310 -#: ../../Zotlabs/Module/Editlayout.php:114 -#: ../../Zotlabs/Module/Editwebpage.php:145 -#: ../../Zotlabs/Module/Layouts.php:192 ../../Zotlabs/Module/Menu.php:112 -#: ../../Zotlabs/Module/Admin.php:2113 ../../Zotlabs/Module/Blocks.php:160 -#: ../../Zotlabs/Module/Editblock.php:109 -#: ../../Zotlabs/Module/Settings.php:706 ../../Zotlabs/Module/Thing.php:260 -#: ../../Zotlabs/Module/Webpages.php:194 ../../Zotlabs/Lib/Apps.php:341 -#: ../../Zotlabs/Lib/ThreadItem.php:106 ../../include/page_widgets.php:9 -#: ../../include/page_widgets.php:39 ../../include/channel.php:976 -#: ../../include/channel.php:980 ../../include/menu.php:108 +#: ../../Zotlabs/Module/Editpost.php:84 +#: ../../Zotlabs/Module/Editlayout.php:113 +#: ../../Zotlabs/Module/Editwebpage.php:146 +#: ../../Zotlabs/Module/Layouts.php:190 ../../Zotlabs/Module/Menu.php:112 +#: ../../Zotlabs/Module/Admin.php:2113 ../../Zotlabs/Module/Settings.php:652 +#: ../../Zotlabs/Module/Thing.php:260 ../../Zotlabs/Module/Webpages.php:187 +#: ../../Zotlabs/Lib/Apps.php:337 ../../Zotlabs/Lib/ThreadItem.php:106 +#: ../../include/channel.php:937 ../../include/channel.php:941 +#: ../../include/menu.php:108 ../../include/page_widgets.php:8 +#: ../../include/page_widgets.php:36 msgid "Edit" msgstr "Bewerken" -#: ../../Zotlabs/Storage/Browser.php:241 ../../Zotlabs/Module/Connedit.php:602 +#: ../../Zotlabs/Storage/Browser.php:241 ../../Zotlabs/Module/Blocks.php:159 +#: ../../Zotlabs/Module/Connedit.php:572 +#: ../../Zotlabs/Module/Editblock.php:134 #: ../../Zotlabs/Module/Connections.php:263 -#: ../../Zotlabs/Module/Editlayout.php:137 -#: ../../Zotlabs/Module/Editwebpage.php:169 ../../Zotlabs/Module/Group.php:177 -#: ../../Zotlabs/Module/Photos.php:1171 ../../Zotlabs/Module/Admin.php:1039 +#: ../../Zotlabs/Module/Editlayout.php:136 +#: ../../Zotlabs/Module/Editwebpage.php:170 ../../Zotlabs/Module/Group.php:177 +#: ../../Zotlabs/Module/Photos.php:1173 ../../Zotlabs/Module/Admin.php:1039 #: ../../Zotlabs/Module/Admin.php:1213 ../../Zotlabs/Module/Admin.php:2114 -#: ../../Zotlabs/Module/Blocks.php:162 ../../Zotlabs/Module/Editblock.php:134 -#: ../../Zotlabs/Module/Settings.php:707 ../../Zotlabs/Module/Thing.php:261 -#: ../../Zotlabs/Module/Webpages.php:196 ../../Zotlabs/Lib/Apps.php:342 -#: ../../Zotlabs/Lib/ThreadItem.php:126 ../../include/conversation.php:660 +#: ../../Zotlabs/Module/Settings.php:653 ../../Zotlabs/Module/Thing.php:261 +#: ../../Zotlabs/Module/Webpages.php:189 ../../Zotlabs/Lib/Apps.php:338 +#: ../../Zotlabs/Lib/ThreadItem.php:126 ../../include/conversation.php:657 msgid "Delete" msgstr "Verwijderen" @@ -300,73 +155,74 @@ msgstr "Nieuwe map aanmaken" msgid "Upload file" msgstr "Bestand uploaden" -#: ../../Zotlabs/Web/WebServer.php:127 ../../Zotlabs/Module/Dreport.php:10 -#: ../../Zotlabs/Module/Dreport.php:66 ../../Zotlabs/Module/Group.php:72 -#: ../../Zotlabs/Module/Like.php:283 ../../Zotlabs/Module/Import_items.php:114 +#: ../../Zotlabs/Web/WebServer.php:120 ../../Zotlabs/Module/Dreport.php:10 +#: ../../Zotlabs/Module/Dreport.php:49 ../../Zotlabs/Module/Group.php:72 +#: ../../Zotlabs/Module/Like.php:284 ../../Zotlabs/Module/Import_items.php:112 #: ../../Zotlabs/Module/Profperm.php:28 ../../Zotlabs/Module/Subthread.php:62 -#: ../../include/items.php:384 +#: ../../include/items.php:385 msgid "Permission denied" msgstr "Toegang geweigerd" -#: ../../Zotlabs/Web/WebServer.php:128 ../../Zotlabs/Web/Router.php:65 -#: ../../Zotlabs/Module/Achievements.php:34 -#: ../../Zotlabs/Module/Connedit.php:390 ../../Zotlabs/Module/Id.php:76 -#: ../../Zotlabs/Module/Authtest.php:16 ../../Zotlabs/Module/Events.php:264 -#: ../../Zotlabs/Module/Bookmarks.php:61 ../../Zotlabs/Module/Editpost.php:17 -#: ../../Zotlabs/Module/Page.php:35 ../../Zotlabs/Module/Page.php:91 -#: ../../Zotlabs/Module/Connections.php:33 +#: ../../Zotlabs/Web/WebServer.php:121 ../../Zotlabs/Web/Router.php:65 +#: ../../Zotlabs/Module/Achievements.php:34 ../../Zotlabs/Module/Blocks.php:73 +#: ../../Zotlabs/Module/Blocks.php:80 ../../Zotlabs/Module/Channel.php:105 +#: ../../Zotlabs/Module/Channel.php:226 ../../Zotlabs/Module/Channel.php:267 +#: ../../Zotlabs/Module/Chat.php:100 ../../Zotlabs/Module/Chat.php:105 +#: ../../Zotlabs/Module/Authtest.php:16 ../../Zotlabs/Module/Block.php:26 +#: ../../Zotlabs/Module/Block.php:76 ../../Zotlabs/Module/Bookmarks.php:61 +#: ../../Zotlabs/Module/Connedit.php:366 ../../Zotlabs/Module/Editblock.php:67 +#: ../../Zotlabs/Module/Common.php:39 ../../Zotlabs/Module/Connections.php:33 #: ../../Zotlabs/Module/Cover_photo.php:277 -#: ../../Zotlabs/Module/Cover_photo.php:290 ../../Zotlabs/Module/Chat.php:100 -#: ../../Zotlabs/Module/Chat.php:105 ../../Zotlabs/Module/Editlayout.php:67 +#: ../../Zotlabs/Module/Cover_photo.php:290 +#: ../../Zotlabs/Module/Editpost.php:17 ../../Zotlabs/Module/Events.php:265 +#: ../../Zotlabs/Module/Editlayout.php:67 #: ../../Zotlabs/Module/Editlayout.php:90 -#: ../../Zotlabs/Module/Editwebpage.php:68 -#: ../../Zotlabs/Module/Editwebpage.php:89 -#: ../../Zotlabs/Module/Editwebpage.php:104 -#: ../../Zotlabs/Module/Editwebpage.php:126 ../../Zotlabs/Module/Group.php:13 -#: ../../Zotlabs/Module/Appman.php:75 ../../Zotlabs/Module/Pdledit.php:26 -#: ../../Zotlabs/Module/Filestorage.php:23 -#: ../../Zotlabs/Module/Filestorage.php:78 -#: ../../Zotlabs/Module/Filestorage.php:93 -#: ../../Zotlabs/Module/Filestorage.php:120 +#: ../../Zotlabs/Module/Editwebpage.php:69 +#: ../../Zotlabs/Module/Editwebpage.php:90 +#: ../../Zotlabs/Module/Editwebpage.php:105 +#: ../../Zotlabs/Module/Editwebpage.php:127 ../../Zotlabs/Module/Group.php:13 +#: ../../Zotlabs/Module/Api.php:13 ../../Zotlabs/Module/Api.php:18 +#: ../../Zotlabs/Module/Filestorage.php:24 +#: ../../Zotlabs/Module/Filestorage.php:79 +#: ../../Zotlabs/Module/Filestorage.php:94 +#: ../../Zotlabs/Module/Filestorage.php:121 ../../Zotlabs/Module/Item.php:210 +#: ../../Zotlabs/Module/Item.php:218 ../../Zotlabs/Module/Item.php:1070 #: ../../Zotlabs/Module/Layouts.php:71 ../../Zotlabs/Module/Layouts.php:78 -#: ../../Zotlabs/Module/Layouts.php:89 ../../Zotlabs/Module/Like.php:181 -#: ../../Zotlabs/Module/Profiles.php:203 ../../Zotlabs/Module/Profiles.php:601 -#: ../../Zotlabs/Module/Item.php:213 ../../Zotlabs/Module/Item.php:221 -#: ../../Zotlabs/Module/Item.php:1071 ../../Zotlabs/Module/Photos.php:73 -#: ../../Zotlabs/Module/Invite.php:17 ../../Zotlabs/Module/Invite.php:91 -#: ../../Zotlabs/Module/Locs.php:87 ../../Zotlabs/Module/Mail.php:121 -#: ../../Zotlabs/Module/Manage.php:10 ../../Zotlabs/Module/Menu.php:78 -#: ../../Zotlabs/Module/Message.php:18 ../../Zotlabs/Module/Mood.php:116 -#: ../../Zotlabs/Module/Network.php:15 ../../Zotlabs/Module/Channel.php:104 -#: ../../Zotlabs/Module/Channel.php:225 ../../Zotlabs/Module/Channel.php:266 +#: ../../Zotlabs/Module/Layouts.php:89 ../../Zotlabs/Module/Id.php:76 +#: ../../Zotlabs/Module/Like.php:181 ../../Zotlabs/Module/Invite.php:17 +#: ../../Zotlabs/Module/Invite.php:91 ../../Zotlabs/Module/Locs.php:87 +#: ../../Zotlabs/Module/Mail.php:129 ../../Zotlabs/Module/Manage.php:10 +#: ../../Zotlabs/Module/Menu.php:78 ../../Zotlabs/Module/Message.php:18 +#: ../../Zotlabs/Module/Mood.php:116 ../../Zotlabs/Module/Network.php:17 #: ../../Zotlabs/Module/Mitem.php:115 ../../Zotlabs/Module/New_channel.php:77 #: ../../Zotlabs/Module/New_channel.php:104 -#: ../../Zotlabs/Module/Notifications.php:70 ../../Zotlabs/Module/Poke.php:137 -#: ../../Zotlabs/Module/Profile.php:68 ../../Zotlabs/Module/Profile.php:76 -#: ../../Zotlabs/Module/Block.php:26 ../../Zotlabs/Module/Block.php:76 -#: ../../Zotlabs/Module/Profile_photo.php:265 -#: ../../Zotlabs/Module/Profile_photo.php:278 -#: ../../Zotlabs/Module/Blocks.php:73 ../../Zotlabs/Module/Blocks.php:80 -#: ../../Zotlabs/Module/Rate.php:113 ../../Zotlabs/Module/Editblock.php:67 -#: ../../Zotlabs/Module/Common.php:39 ../../Zotlabs/Module/Register.php:77 -#: ../../Zotlabs/Module/Regmod.php:21 +#: ../../Zotlabs/Module/Notifications.php:70 +#: ../../Zotlabs/Module/Photos.php:75 ../../Zotlabs/Module/Page.php:35 +#: ../../Zotlabs/Module/Page.php:90 ../../Zotlabs/Module/Pdledit.php:26 +#: ../../Zotlabs/Module/Poke.php:137 ../../Zotlabs/Module/Profile.php:68 +#: ../../Zotlabs/Module/Profile.php:76 ../../Zotlabs/Module/Profiles.php:203 +#: ../../Zotlabs/Module/Profiles.php:601 +#: ../../Zotlabs/Module/Profile_photo.php:256 +#: ../../Zotlabs/Module/Profile_photo.php:269 +#: ../../Zotlabs/Module/Rate.php:113 ../../Zotlabs/Module/Appman.php:75 +#: ../../Zotlabs/Module/Register.php:77 ../../Zotlabs/Module/Regmod.php:21 #: ../../Zotlabs/Module/Service_limits.php:11 -#: ../../Zotlabs/Module/Settings.php:626 ../../Zotlabs/Module/Setup.php:215 -#: ../../Zotlabs/Module/Sharedwithme.php:11 ../../Zotlabs/Module/Thing.php:274 -#: ../../Zotlabs/Module/Thing.php:294 ../../Zotlabs/Module/Thing.php:331 +#: ../../Zotlabs/Module/Settings.php:572 ../../Zotlabs/Module/Setup.php:215 +#: ../../Zotlabs/Module/Sharedwithme.php:11 #: ../../Zotlabs/Module/Sources.php:74 ../../Zotlabs/Module/Suggest.php:30 -#: ../../Zotlabs/Module/Webpages.php:73 -#: ../../Zotlabs/Module/Viewconnections.php:28 -#: ../../Zotlabs/Module/Viewconnections.php:33 -#: ../../Zotlabs/Module/Viewsrc.php:18 ../../Zotlabs/Module/Api.php:13 -#: ../../Zotlabs/Module/Api.php:18 ../../Zotlabs/Lib/Chatroom.php:137 -#: ../../include/photos.php:27 ../../include/attach.php:141 -#: ../../include/attach.php:189 ../../include/attach.php:252 -#: ../../include/attach.php:266 ../../include/attach.php:273 -#: ../../include/attach.php:338 ../../include/attach.php:352 -#: ../../include/attach.php:359 ../../include/attach.php:439 -#: ../../include/attach.php:901 ../../include/attach.php:972 -#: ../../include/attach.php:1124 ../../include/items.php:3448 +#: ../../Zotlabs/Module/Thing.php:274 ../../Zotlabs/Module/Thing.php:294 +#: ../../Zotlabs/Module/Thing.php:331 +#: ../../Zotlabs/Module/Viewconnections.php:25 +#: ../../Zotlabs/Module/Viewconnections.php:30 +#: ../../Zotlabs/Module/Viewsrc.php:18 ../../Zotlabs/Module/Webpages.php:74 +#: ../../Zotlabs/Lib/Chatroom.php:137 ../../include/items.php:3438 +#: ../../include/attach.php:141 ../../include/attach.php:189 +#: ../../include/attach.php:252 ../../include/attach.php:266 +#: ../../include/attach.php:273 ../../include/attach.php:338 +#: ../../include/attach.php:352 ../../include/attach.php:359 +#: ../../include/attach.php:437 ../../include/attach.php:895 +#: ../../include/attach.php:966 ../../include/attach.php:1118 +#: ../../include/photos.php:27 msgid "Permission denied." msgstr "Toegang geweigerd." @@ -374,9 +230,9 @@ msgstr "Toegang geweigerd." msgid "Not Found" msgstr "Niet gevonden" -#: ../../Zotlabs/Web/Router.php:149 ../../Zotlabs/Module/Display.php:118 -#: ../../Zotlabs/Module/Page.php:94 ../../Zotlabs/Module/Help.php:97 -#: ../../Zotlabs/Module/Block.php:79 +#: ../../Zotlabs/Web/Router.php:149 ../../Zotlabs/Module/Block.php:79 +#: ../../Zotlabs/Module/Display.php:117 ../../Zotlabs/Module/Help.php:97 +#: ../../Zotlabs/Module/Page.php:93 msgid "Page not found." msgstr "Pagina niet gevonden." @@ -392,13 +248,13 @@ msgstr "Authenticatie op afstand geblokkeerd. Je bent lokaal op deze hub ingelog msgid "Welcome %s. Remote authentication successful." msgstr "Welkom %s. Authenticatie op afstand geslaagd." -#: ../../Zotlabs/Module/Achievements.php:15 -#: ../../Zotlabs/Module/Connect.php:17 ../../Zotlabs/Module/Editlayout.php:31 -#: ../../Zotlabs/Module/Editwebpage.php:32 ../../Zotlabs/Module/Hcard.php:12 -#: ../../Zotlabs/Module/Filestorage.php:59 ../../Zotlabs/Module/Layouts.php:31 -#: ../../Zotlabs/Module/Profile.php:20 ../../Zotlabs/Module/Blocks.php:33 -#: ../../Zotlabs/Module/Editblock.php:31 ../../Zotlabs/Module/Webpages.php:33 -#: ../../include/channel.php:876 +#: ../../Zotlabs/Module/Achievements.php:15 ../../Zotlabs/Module/Blocks.php:33 +#: ../../Zotlabs/Module/Connect.php:17 ../../Zotlabs/Module/Editblock.php:31 +#: ../../Zotlabs/Module/Editlayout.php:31 +#: ../../Zotlabs/Module/Editwebpage.php:33 +#: ../../Zotlabs/Module/Filestorage.php:60 ../../Zotlabs/Module/Hcard.php:12 +#: ../../Zotlabs/Module/Layouts.php:31 ../../Zotlabs/Module/Profile.php:20 +#: ../../Zotlabs/Module/Webpages.php:34 ../../include/channel.php:837 msgid "Requested profile is not available." msgstr "Opgevraagd profiel is niet beschikbaar" @@ -406,6 +262,229 @@ msgstr "Opgevraagd profiel is niet beschikbaar" msgid "Some blurb about what to do when you're new here" msgstr "Welkom op $Projectname. Klik op de tab ontdekken of klik rechtsboven op de kanalengids, om kanalen te vinden. Rechtsboven vind je ook apps, waar je vrijwel alle functies van $Projectname kunt vinden. Voor hulp met $Projectname klik je op het vraagteken." +#: ../../Zotlabs/Module/Blocks.php:97 ../../Zotlabs/Module/Blocks.php:152 +#: ../../Zotlabs/Module/Editblock.php:108 +msgid "Block Name" +msgstr "Bloknaam" + +#: ../../Zotlabs/Module/Blocks.php:151 ../../include/text.php:2265 +msgid "Blocks" +msgstr "Blokken" + +#: ../../Zotlabs/Module/Blocks.php:153 +msgid "Block Title" +msgstr "Bloktitel" + +#: ../../Zotlabs/Module/Blocks.php:154 ../../Zotlabs/Module/Layouts.php:188 +#: ../../Zotlabs/Module/Menu.php:114 ../../Zotlabs/Module/Webpages.php:198 +#: ../../include/page_widgets.php:44 +msgid "Created" +msgstr "Aangemaakt" + +#: ../../Zotlabs/Module/Blocks.php:155 ../../Zotlabs/Module/Layouts.php:189 +#: ../../Zotlabs/Module/Menu.php:115 ../../Zotlabs/Module/Webpages.php:199 +#: ../../include/page_widgets.php:45 +msgid "Edited" +msgstr "Bewerkt" + +#: ../../Zotlabs/Module/Blocks.php:158 ../../Zotlabs/Module/Layouts.php:191 +#: ../../Zotlabs/Module/Photos.php:1072 ../../Zotlabs/Module/Webpages.php:188 +#: ../../include/conversation.php:1208 +msgid "Share" +msgstr "Delen" + +#: ../../Zotlabs/Module/Blocks.php:163 ../../Zotlabs/Module/Layouts.php:195 +#: ../../Zotlabs/Module/Pubsites.php:47 ../../Zotlabs/Module/Webpages.php:193 +#: ../../include/page_widgets.php:39 +msgid "View" +msgstr "Weergeven" + +#: ../../Zotlabs/Module/Cal.php:62 ../../Zotlabs/Module/Block.php:43 +#: ../../Zotlabs/Module/Page.php:56 ../../Zotlabs/Module/Wall_upload.php:33 +msgid "Channel not found." +msgstr "Kanaal niet gevonden." + +#: ../../Zotlabs/Module/Cal.php:69 +msgid "Permissions denied." +msgstr "Permissies niet toegestaan" + +#: ../../Zotlabs/Module/Cal.php:259 ../../Zotlabs/Module/Events.php:588 +msgid "l, F j" +msgstr "l j F" + +#: ../../Zotlabs/Module/Cal.php:308 ../../Zotlabs/Module/Events.php:637 +#: ../../include/text.php:1732 +msgid "Link to Source" +msgstr "Originele locatie" + +#: ../../Zotlabs/Module/Cal.php:331 ../../Zotlabs/Module/Events.php:665 +msgid "Edit Event" +msgstr "Gebeurtenis bewerken" + +#: ../../Zotlabs/Module/Cal.php:331 ../../Zotlabs/Module/Events.php:665 +msgid "Create Event" +msgstr "Gebeurtenis aanmaken" + +#: ../../Zotlabs/Module/Cal.php:332 ../../Zotlabs/Module/Cal.php:339 +#: ../../Zotlabs/Module/Events.php:666 ../../Zotlabs/Module/Events.php:673 +#: ../../Zotlabs/Module/Photos.php:949 +msgid "Previous" +msgstr "Vorige" + +#: ../../Zotlabs/Module/Cal.php:333 ../../Zotlabs/Module/Cal.php:340 +#: ../../Zotlabs/Module/Events.php:667 ../../Zotlabs/Module/Events.php:674 +#: ../../Zotlabs/Module/Photos.php:958 ../../Zotlabs/Module/Setup.php:267 +msgid "Next" +msgstr "Volgende" + +#: ../../Zotlabs/Module/Cal.php:334 ../../Zotlabs/Module/Events.php:668 +#: ../../include/widgets.php:755 +msgid "Export" +msgstr "Exporteren" + +#: ../../Zotlabs/Module/Cal.php:337 ../../Zotlabs/Module/Events.php:671 +#: ../../include/widgets.php:756 +msgid "Import" +msgstr "Importeren" + +#: ../../Zotlabs/Module/Cal.php:338 ../../Zotlabs/Module/Chat.php:196 +#: ../../Zotlabs/Module/Chat.php:238 ../../Zotlabs/Module/Connect.php:98 +#: ../../Zotlabs/Module/Connedit.php:731 ../../Zotlabs/Module/Events.php:475 +#: ../../Zotlabs/Module/Events.php:672 ../../Zotlabs/Module/Group.php:85 +#: ../../Zotlabs/Module/Filestorage.php:162 +#: ../../Zotlabs/Module/Import.php:550 +#: ../../Zotlabs/Module/Import_items.php:120 +#: ../../Zotlabs/Module/Invite.php:146 ../../Zotlabs/Module/Locs.php:121 +#: ../../Zotlabs/Module/Mail.php:378 ../../Zotlabs/Module/Mood.php:139 +#: ../../Zotlabs/Module/Mitem.php:235 ../../Zotlabs/Module/Photos.php:677 +#: ../../Zotlabs/Module/Photos.php:1052 ../../Zotlabs/Module/Photos.php:1092 +#: ../../Zotlabs/Module/Photos.php:1210 ../../Zotlabs/Module/Pconfig.php:107 +#: ../../Zotlabs/Module/Pdledit.php:66 ../../Zotlabs/Module/Poke.php:186 +#: ../../Zotlabs/Module/Profiles.php:687 ../../Zotlabs/Module/Rate.php:170 +#: ../../Zotlabs/Module/Admin.php:492 ../../Zotlabs/Module/Admin.php:688 +#: ../../Zotlabs/Module/Admin.php:771 ../../Zotlabs/Module/Admin.php:1032 +#: ../../Zotlabs/Module/Admin.php:1211 ../../Zotlabs/Module/Admin.php:1421 +#: ../../Zotlabs/Module/Admin.php:1648 ../../Zotlabs/Module/Admin.php:1733 +#: ../../Zotlabs/Module/Admin.php:2116 ../../Zotlabs/Module/Appman.php:126 +#: ../../Zotlabs/Module/Settings.php:590 ../../Zotlabs/Module/Settings.php:703 +#: ../../Zotlabs/Module/Settings.php:731 ../../Zotlabs/Module/Settings.php:754 +#: ../../Zotlabs/Module/Settings.php:842 +#: ../../Zotlabs/Module/Settings.php:1034 ../../Zotlabs/Module/Setup.php:312 +#: ../../Zotlabs/Module/Setup.php:353 ../../Zotlabs/Module/Sources.php:114 +#: ../../Zotlabs/Module/Sources.php:149 ../../Zotlabs/Module/Thing.php:316 +#: ../../Zotlabs/Module/Thing.php:362 ../../Zotlabs/Module/Xchan.php:15 +#: ../../Zotlabs/Lib/ThreadItem.php:710 ../../include/widgets.php:757 +#: ../../include/widgets.php:769 ../../include/js_strings.php:22 +#: ../../view/theme/redbasic/php/config.php:99 +msgid "Submit" +msgstr "Opslaan" + +#: ../../Zotlabs/Module/Cal.php:341 ../../Zotlabs/Module/Events.php:675 +msgid "Today" +msgstr "Vandaag" + +#: ../../Zotlabs/Module/Channel.php:29 ../../Zotlabs/Module/Chat.php:25 +msgid "You must be logged in to see this page." +msgstr "Je moet zijn ingelogd om deze pagina te kunnen bekijken." + +#: ../../Zotlabs/Module/Channel.php:41 +msgid "Posts and comments" +msgstr "Berichten en reacties" + +#: ../../Zotlabs/Module/Channel.php:42 +msgid "Only posts" +msgstr "Alleen berichten" + +#: ../../Zotlabs/Module/Channel.php:102 +msgid "Insufficient permissions. Request redirected to profile page." +msgstr "Onvoldoende permissies. Doorgestuurd naar profielpagina." + +#: ../../Zotlabs/Module/Chat.php:181 +msgid "Room not found" +msgstr "Chatkanaal niet gevonden" + +#: ../../Zotlabs/Module/Chat.php:197 +msgid "Leave Room" +msgstr "Chatkanaal verlaten" + +#: ../../Zotlabs/Module/Chat.php:198 +msgid "Delete Room" +msgstr "Chatkanaal verwijderen" + +#: ../../Zotlabs/Module/Chat.php:199 +msgid "I am away right now" +msgstr "Ik ben momenteel afwezig" + +#: ../../Zotlabs/Module/Chat.php:200 +msgid "I am online" +msgstr "Ik ben online" + +#: ../../Zotlabs/Module/Chat.php:202 +msgid "Bookmark this room" +msgstr "Chatkanaal aan bladwijzers toevoegen" + +#: ../../Zotlabs/Module/Chat.php:205 ../../Zotlabs/Module/Mail.php:205 +#: ../../Zotlabs/Module/Mail.php:314 ../../include/conversation.php:1176 +msgid "Please enter a link URL:" +msgstr "Vul een URL in:" + +#: ../../Zotlabs/Module/Chat.php:206 ../../Zotlabs/Module/Mail.php:258 +#: ../../Zotlabs/Module/Mail.php:383 ../../Zotlabs/Lib/ThreadItem.php:722 +#: ../../include/conversation.php:1256 +msgid "Encrypt text" +msgstr "Tekst versleutelen" + +#: ../../Zotlabs/Module/Chat.php:207 ../../Zotlabs/Module/Editblock.php:111 +#: ../../Zotlabs/Module/Editwebpage.php:147 ../../Zotlabs/Module/Mail.php:252 +#: ../../Zotlabs/Module/Mail.php:377 ../../include/conversation.php:1143 +msgid "Insert web link" +msgstr "Weblink invoegen" + +#: ../../Zotlabs/Module/Chat.php:218 +msgid "Feature disabled." +msgstr "Functie uitgeschakeld." + +#: ../../Zotlabs/Module/Chat.php:232 +msgid "New Chatroom" +msgstr "Nieuw chatkanaal" + +#: ../../Zotlabs/Module/Chat.php:233 +msgid "Chatroom name" +msgstr "Naam chatkanaal" + +#: ../../Zotlabs/Module/Chat.php:234 +msgid "Expiration of chats (minutes)" +msgstr "Aantal minuten voordat chatberichten worden verwijderd" + +#: ../../Zotlabs/Module/Chat.php:235 ../../Zotlabs/Module/Filestorage.php:153 +#: ../../Zotlabs/Module/Photos.php:671 ../../Zotlabs/Module/Photos.php:1045 +#: ../../Zotlabs/Module/Thing.php:313 ../../Zotlabs/Module/Thing.php:359 +#: ../../include/acl_selectors.php:283 +msgid "Permissions" +msgstr "Permissies" + +#: ../../Zotlabs/Module/Chat.php:246 +#, php-format +msgid "%1$s's Chatrooms" +msgstr "Chatkanalen van %1$s" + +#: ../../Zotlabs/Module/Chat.php:251 +msgid "No chatrooms available" +msgstr "Geen chatkanalen beschikbaar" + +#: ../../Zotlabs/Module/Chat.php:252 ../../Zotlabs/Module/Manage.php:143 +#: ../../Zotlabs/Module/Profiles.php:778 +msgid "Create New" +msgstr "Nieuwe aanmaken" + +#: ../../Zotlabs/Module/Chat.php:255 +msgid "Expiration" +msgstr "Verloopt na" + +#: ../../Zotlabs/Module/Chat.php:256 +msgid "min" +msgstr "min" + #: ../../Zotlabs/Module/Chatsvc.php:117 msgid "Away" msgstr "Afwezig" @@ -414,6 +493,65 @@ msgstr "Afwezig" msgid "Online" msgstr "Online" +#: ../../Zotlabs/Module/Block.php:31 ../../Zotlabs/Module/Page.php:40 +msgid "Invalid item." +msgstr "Ongeldig item." + +#: ../../Zotlabs/Module/Bookmarks.php:53 +msgid "Bookmark added" +msgstr "Bladwijzer toegevoegd" + +#: ../../Zotlabs/Module/Bookmarks.php:75 +msgid "My Bookmarks" +msgstr "Mijn bladwijzers" + +#: ../../Zotlabs/Module/Bookmarks.php:86 +msgid "My Connections Bookmarks" +msgstr "Bladwijzers van mijn connecties" + +#: ../../Zotlabs/Module/Connect.php:61 ../../Zotlabs/Module/Connect.php:109 +msgid "Continue" +msgstr "Ga verder" + +#: ../../Zotlabs/Module/Connect.php:90 +msgid "Premium Channel Setup" +msgstr "Instellen premiumkanaal " + +#: ../../Zotlabs/Module/Connect.php:92 +msgid "Enable premium channel connection restrictions" +msgstr "Restricties voor connecties van premiumkanaal toestaan" + +#: ../../Zotlabs/Module/Connect.php:93 +msgid "" +"Please enter your restrictions or conditions, such as paypal receipt, usage " +"guidelines, etc." +msgstr "Vul je restricties of voorwaarden in, zoals een paypal-afschrift, voorschriften voor leden, enz." + +#: ../../Zotlabs/Module/Connect.php:95 ../../Zotlabs/Module/Connect.php:115 +msgid "" +"This channel may require additional steps or acknowledgement of the " +"following conditions prior to connecting:" +msgstr "Dit kanaal kan extra stappen of het accepteren van de volgende voorwaarden vereisen, voordat de connectie wordt geaccepteerd:" + +#: ../../Zotlabs/Module/Connect.php:96 +msgid "" +"Potential connections will then see the following text before proceeding:" +msgstr "Mogelijke connecties zullen dan de volgende tekst zien voordat ze verder kunnen:" + +#: ../../Zotlabs/Module/Connect.php:97 ../../Zotlabs/Module/Connect.php:118 +msgid "" +"By continuing, I certify that I have complied with any instructions provided" +" on this page." +msgstr "Door verder te gaan ga ik automatisch akkoord met alle voorwaarden en aanwijzingen op deze pagina." + +#: ../../Zotlabs/Module/Connect.php:106 +msgid "(No specific instructions have been provided by the channel owner.)" +msgstr "(Er zijn geen speciale voorwaarden en aanwijzingen door de kanaal-eigenaar verstrekt) " + +#: ../../Zotlabs/Module/Connect.php:114 +msgid "Restricted or Premium Channel" +msgstr "Beperkt of premiumkanaal" + #: ../../Zotlabs/Module/Connedit.php:80 msgid "Could not access contact record." msgstr "Kon geen toegang krijgen tot de connectie-gegevens." @@ -422,350 +560,317 @@ msgstr "Kon geen toegang krijgen tot de connectie-gegevens." msgid "Could not locate selected profile." msgstr "Kon het gekozen profiel niet vinden." -#: ../../Zotlabs/Module/Connedit.php:248 +#: ../../Zotlabs/Module/Connedit.php:227 msgid "Connection updated." msgstr "Connectie bijgewerkt." -#: ../../Zotlabs/Module/Connedit.php:250 +#: ../../Zotlabs/Module/Connedit.php:229 msgid "Failed to update connection record." msgstr "Bijwerken van connectie-gegevens mislukt." -#: ../../Zotlabs/Module/Connedit.php:300 +#: ../../Zotlabs/Module/Connedit.php:276 msgid "is now connected to" msgstr "is nu verbonden met" -#: ../../Zotlabs/Module/Connedit.php:403 ../../Zotlabs/Module/Connedit.php:685 -#: ../../Zotlabs/Module/Events.php:458 ../../Zotlabs/Module/Events.php:459 -#: ../../Zotlabs/Module/Events.php:468 -#: ../../Zotlabs/Module/Filestorage.php:156 -#: ../../Zotlabs/Module/Filestorage.php:164 -#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Photos.php:664 -#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 -#: ../../Zotlabs/Module/Mitem.php:158 ../../Zotlabs/Module/Mitem.php:159 -#: ../../Zotlabs/Module/Mitem.php:232 ../../Zotlabs/Module/Mitem.php:233 -#: ../../Zotlabs/Module/Admin.php:459 ../../Zotlabs/Module/Removeme.php:63 -#: ../../Zotlabs/Module/Settings.php:635 ../../Zotlabs/Module/Api.php:89 +#: ../../Zotlabs/Module/Connedit.php:379 ../../Zotlabs/Module/Connedit.php:654 +#: ../../Zotlabs/Module/Events.php:459 ../../Zotlabs/Module/Events.php:460 +#: ../../Zotlabs/Module/Events.php:469 ../../Zotlabs/Module/Api.php:89 +#: ../../Zotlabs/Module/Filestorage.php:157 +#: ../../Zotlabs/Module/Filestorage.php:165 ../../Zotlabs/Module/Menu.php:100 +#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Mitem.php:158 +#: ../../Zotlabs/Module/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:232 +#: ../../Zotlabs/Module/Mitem.php:233 ../../Zotlabs/Module/Photos.php:666 +#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Admin.php:459 +#: ../../Zotlabs/Module/Removeme.php:61 ../../Zotlabs/Module/Settings.php:581 #: ../../include/dir_fns.php:143 ../../include/dir_fns.php:144 #: ../../include/dir_fns.php:145 ../../view/theme/redbasic/php/config.php:105 -#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1708 +#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1707 msgid "No" msgstr "Nee" -#: ../../Zotlabs/Module/Connedit.php:403 ../../Zotlabs/Module/Events.php:458 -#: ../../Zotlabs/Module/Events.php:459 ../../Zotlabs/Module/Events.php:468 -#: ../../Zotlabs/Module/Filestorage.php:156 -#: ../../Zotlabs/Module/Filestorage.php:164 -#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Photos.php:664 -#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 -#: ../../Zotlabs/Module/Mitem.php:158 ../../Zotlabs/Module/Mitem.php:159 -#: ../../Zotlabs/Module/Mitem.php:232 ../../Zotlabs/Module/Mitem.php:233 -#: ../../Zotlabs/Module/Admin.php:461 ../../Zotlabs/Module/Removeme.php:63 -#: ../../Zotlabs/Module/Settings.php:635 ../../Zotlabs/Module/Api.php:88 +#: ../../Zotlabs/Module/Connedit.php:379 ../../Zotlabs/Module/Events.php:459 +#: ../../Zotlabs/Module/Events.php:460 ../../Zotlabs/Module/Events.php:469 +#: ../../Zotlabs/Module/Api.php:88 ../../Zotlabs/Module/Filestorage.php:157 +#: ../../Zotlabs/Module/Filestorage.php:165 ../../Zotlabs/Module/Menu.php:100 +#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Mitem.php:158 +#: ../../Zotlabs/Module/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:232 +#: ../../Zotlabs/Module/Mitem.php:233 ../../Zotlabs/Module/Photos.php:666 +#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Admin.php:461 +#: ../../Zotlabs/Module/Removeme.php:61 ../../Zotlabs/Module/Settings.php:581 #: ../../include/dir_fns.php:143 ../../include/dir_fns.php:144 #: ../../include/dir_fns.php:145 ../../view/theme/redbasic/php/config.php:105 -#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1708 +#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1707 msgid "Yes" msgstr "Ja" -#: ../../Zotlabs/Module/Connedit.php:435 +#: ../../Zotlabs/Module/Connedit.php:411 msgid "Could not access address book record." msgstr "Kon geen toegang krijgen tot de record van de connectie." -#: ../../Zotlabs/Module/Connedit.php:455 +#: ../../Zotlabs/Module/Connedit.php:425 msgid "Refresh failed - channel is currently unavailable." msgstr "Vernieuwen mislukt - kanaal is momenteel niet beschikbaar" -#: ../../Zotlabs/Module/Connedit.php:470 ../../Zotlabs/Module/Connedit.php:479 -#: ../../Zotlabs/Module/Connedit.php:488 ../../Zotlabs/Module/Connedit.php:497 -#: ../../Zotlabs/Module/Connedit.php:510 +#: ../../Zotlabs/Module/Connedit.php:440 ../../Zotlabs/Module/Connedit.php:449 +#: ../../Zotlabs/Module/Connedit.php:458 ../../Zotlabs/Module/Connedit.php:467 +#: ../../Zotlabs/Module/Connedit.php:480 msgid "Unable to set address book parameters." msgstr "Niet in staat om de parameters van connecties in te stellen." -#: ../../Zotlabs/Module/Connedit.php:533 +#: ../../Zotlabs/Module/Connedit.php:503 msgid "Connection has been removed." msgstr "Connectie is verwijderd" -#: ../../Zotlabs/Module/Connedit.php:549 ../../Zotlabs/Lib/Apps.php:221 -#: ../../include/nav.php:86 ../../include/conversation.php:957 +#: ../../Zotlabs/Module/Connedit.php:519 ../../Zotlabs/Lib/Apps.php:219 +#: ../../include/nav.php:86 ../../include/conversation.php:954 msgid "View Profile" msgstr "Profiel weergeven" -#: ../../Zotlabs/Module/Connedit.php:552 +#: ../../Zotlabs/Module/Connedit.php:522 #, php-format msgid "View %s's profile" msgstr "Profiel van %s weergeven" -#: ../../Zotlabs/Module/Connedit.php:556 +#: ../../Zotlabs/Module/Connedit.php:526 msgid "Refresh Permissions" msgstr "Permissies vernieuwen" -#: ../../Zotlabs/Module/Connedit.php:559 +#: ../../Zotlabs/Module/Connedit.php:529 msgid "Fetch updated permissions" msgstr "Aangepaste permissies ophalen" -#: ../../Zotlabs/Module/Connedit.php:563 +#: ../../Zotlabs/Module/Connedit.php:533 msgid "Recent Activity" msgstr "Recente activiteit/berichten" -#: ../../Zotlabs/Module/Connedit.php:566 +#: ../../Zotlabs/Module/Connedit.php:536 msgid "View recent posts and comments" msgstr "Recente berichten en reacties weergeven" -#: ../../Zotlabs/Module/Connedit.php:570 ../../Zotlabs/Module/Admin.php:1041 +#: ../../Zotlabs/Module/Connedit.php:540 ../../Zotlabs/Module/Admin.php:1041 msgid "Unblock" msgstr "Deblokkeren" -#: ../../Zotlabs/Module/Connedit.php:570 ../../Zotlabs/Module/Admin.php:1040 +#: ../../Zotlabs/Module/Connedit.php:540 ../../Zotlabs/Module/Admin.php:1040 msgid "Block" msgstr "Blokkeren" -#: ../../Zotlabs/Module/Connedit.php:573 +#: ../../Zotlabs/Module/Connedit.php:543 msgid "Block (or Unblock) all communications with this connection" msgstr "Blokkeer (of deblokkeer) alle communicatie met deze connectie" -#: ../../Zotlabs/Module/Connedit.php:574 +#: ../../Zotlabs/Module/Connedit.php:544 msgid "This connection is blocked!" msgstr "Deze connectie is geblokkeerd!" -#: ../../Zotlabs/Module/Connedit.php:578 +#: ../../Zotlabs/Module/Connedit.php:548 msgid "Unignore" msgstr "Niet meer negeren" -#: ../../Zotlabs/Module/Connedit.php:578 +#: ../../Zotlabs/Module/Connedit.php:548 #: ../../Zotlabs/Module/Connections.php:277 #: ../../Zotlabs/Module/Notifications.php:55 msgid "Ignore" msgstr "Negeren" -#: ../../Zotlabs/Module/Connedit.php:581 +#: ../../Zotlabs/Module/Connedit.php:551 msgid "Ignore (or Unignore) all inbound communications from this connection" msgstr "Negeer (of negeer niet meer) alle inkomende communicatie van deze connectie" -#: ../../Zotlabs/Module/Connedit.php:582 +#: ../../Zotlabs/Module/Connedit.php:552 msgid "This connection is ignored!" msgstr "Deze connectie wordt genegeerd!" -#: ../../Zotlabs/Module/Connedit.php:586 +#: ../../Zotlabs/Module/Connedit.php:556 msgid "Unarchive" msgstr "Niet meer archiveren" -#: ../../Zotlabs/Module/Connedit.php:586 +#: ../../Zotlabs/Module/Connedit.php:556 msgid "Archive" msgstr "Archiveren" -#: ../../Zotlabs/Module/Connedit.php:589 +#: ../../Zotlabs/Module/Connedit.php:559 msgid "" "Archive (or Unarchive) this connection - mark channel dead but keep content" msgstr "Archiveer (of dearchiveer) deze connectie - markeer het kanaal als dood, maar bewaar de inhoud" -#: ../../Zotlabs/Module/Connedit.php:590 +#: ../../Zotlabs/Module/Connedit.php:560 msgid "This connection is archived!" msgstr "Deze connectie is gearchiveerd!" -#: ../../Zotlabs/Module/Connedit.php:594 +#: ../../Zotlabs/Module/Connedit.php:564 msgid "Unhide" msgstr "Niet meer verbergen" -#: ../../Zotlabs/Module/Connedit.php:594 +#: ../../Zotlabs/Module/Connedit.php:564 msgid "Hide" msgstr "Verbergen" -#: ../../Zotlabs/Module/Connedit.php:597 +#: ../../Zotlabs/Module/Connedit.php:567 msgid "Hide or Unhide this connection from your other connections" msgstr "Deze connectie verbergen (of niet meer verbergen) voor jouw andere connecties" -#: ../../Zotlabs/Module/Connedit.php:598 +#: ../../Zotlabs/Module/Connedit.php:568 msgid "This connection is hidden!" msgstr "Deze connectie is verborgen!" -#: ../../Zotlabs/Module/Connedit.php:605 +#: ../../Zotlabs/Module/Connedit.php:575 msgid "Delete this connection" msgstr "Deze connectie verwijderen" -#: ../../Zotlabs/Module/Connedit.php:620 ../../include/widgets.php:493 +#: ../../Zotlabs/Module/Connedit.php:590 ../../include/widgets.php:493 msgid "Me" msgstr "Ik" -#: ../../Zotlabs/Module/Connedit.php:621 ../../include/widgets.php:494 +#: ../../Zotlabs/Module/Connedit.php:591 ../../include/widgets.php:494 msgid "Family" msgstr "Familie" -#: ../../Zotlabs/Module/Connedit.php:622 ../../Zotlabs/Module/Settings.php:391 -#: ../../Zotlabs/Module/Settings.php:395 ../../Zotlabs/Module/Settings.php:396 -#: ../../Zotlabs/Module/Settings.php:399 ../../Zotlabs/Module/Settings.php:410 -#: ../../include/channel.php:402 ../../include/channel.php:403 -#: ../../include/channel.php:410 ../../include/selectors.php:123 -#: ../../include/widgets.php:495 +#: ../../Zotlabs/Module/Connedit.php:592 ../../Zotlabs/Module/Settings.php:342 +#: ../../Zotlabs/Module/Settings.php:346 ../../Zotlabs/Module/Settings.php:347 +#: ../../Zotlabs/Module/Settings.php:350 ../../Zotlabs/Module/Settings.php:361 +#: ../../include/widgets.php:495 ../../include/selectors.php:123 +#: ../../include/channel.php:389 ../../include/channel.php:390 +#: ../../include/channel.php:397 msgid "Friends" msgstr "Vrienden" -#: ../../Zotlabs/Module/Connedit.php:623 ../../include/widgets.php:496 +#: ../../Zotlabs/Module/Connedit.php:593 ../../include/widgets.php:496 msgid "Acquaintances" msgstr "Kennissen" -#: ../../Zotlabs/Module/Connedit.php:624 +#: ../../Zotlabs/Module/Connedit.php:594 #: ../../Zotlabs/Module/Connections.php:92 #: ../../Zotlabs/Module/Connections.php:107 ../../include/widgets.php:497 msgid "All" msgstr "Alles" -#: ../../Zotlabs/Module/Connedit.php:685 +#: ../../Zotlabs/Module/Connedit.php:654 msgid "Approve this connection" msgstr "Deze connectie accepteren" -#: ../../Zotlabs/Module/Connedit.php:685 +#: ../../Zotlabs/Module/Connedit.php:654 msgid "Accept connection to allow communication" msgstr "Keur deze connectie goed om communicatie toe te staan" -#: ../../Zotlabs/Module/Connedit.php:690 +#: ../../Zotlabs/Module/Connedit.php:659 msgid "Set Affinity" msgstr "Verwantschapsfilter instellen" -#: ../../Zotlabs/Module/Connedit.php:693 +#: ../../Zotlabs/Module/Connedit.php:662 msgid "Set Profile" msgstr "Profiel instellen" -#: ../../Zotlabs/Module/Connedit.php:696 +#: ../../Zotlabs/Module/Connedit.php:665 msgid "Set Affinity & Profile" msgstr "Verwantschapsfilter en profiel instellen" -#: ../../Zotlabs/Module/Connedit.php:745 +#: ../../Zotlabs/Module/Connedit.php:698 msgid "none" msgstr "geen" -#: ../../Zotlabs/Module/Connedit.php:749 ../../include/widgets.php:623 +#: ../../Zotlabs/Module/Connedit.php:702 ../../include/widgets.php:614 msgid "Connection Default Permissions" msgstr "Standaard permissies voor connecties" -#: ../../Zotlabs/Module/Connedit.php:749 ../../include/items.php:3935 +#: ../../Zotlabs/Module/Connedit.php:702 ../../include/items.php:3926 #, php-format msgid "Connection: %s" msgstr "Connectie: %s" -#: ../../Zotlabs/Module/Connedit.php:750 +#: ../../Zotlabs/Module/Connedit.php:703 msgid "Apply these permissions automatically" msgstr "Deze permissies automatisch toepassen" -#: ../../Zotlabs/Module/Connedit.php:750 +#: ../../Zotlabs/Module/Connedit.php:703 msgid "Connection requests will be approved without your interaction" msgstr "Connectieverzoeken zullen automatisch worden geaccepteerd" -#: ../../Zotlabs/Module/Connedit.php:752 +#: ../../Zotlabs/Module/Connedit.php:705 msgid "This connection's primary address is" msgstr "Het primaire kanaaladres van deze connectie is" -#: ../../Zotlabs/Module/Connedit.php:753 +#: ../../Zotlabs/Module/Connedit.php:706 msgid "Available locations:" msgstr "Beschikbare locaties:" -#: ../../Zotlabs/Module/Connedit.php:757 +#: ../../Zotlabs/Module/Connedit.php:710 msgid "" "The permissions indicated on this page will be applied to all new " "connections." msgstr "Permissies die op deze pagina staan vermeld worden op alle nieuwe connecties toegepast." -#: ../../Zotlabs/Module/Connedit.php:758 +#: ../../Zotlabs/Module/Connedit.php:711 msgid "Connection Tools" msgstr "Hulpmiddelen" -#: ../../Zotlabs/Module/Connedit.php:760 +#: ../../Zotlabs/Module/Connedit.php:713 msgid "Slide to adjust your degree of friendship" msgstr "Schuif om te bepalen hoe goed je iemand kent en/of mag" -#: ../../Zotlabs/Module/Connedit.php:761 ../../Zotlabs/Module/Rate.php:159 +#: ../../Zotlabs/Module/Connedit.php:714 ../../Zotlabs/Module/Rate.php:159 #: ../../include/js_strings.php:20 msgid "Rating" msgstr "Beoordeling" -#: ../../Zotlabs/Module/Connedit.php:762 +#: ../../Zotlabs/Module/Connedit.php:715 msgid "Slide to adjust your rating" msgstr "Gebruik de schuif om je beoordeling te geven" -#: ../../Zotlabs/Module/Connedit.php:763 ../../Zotlabs/Module/Connedit.php:768 +#: ../../Zotlabs/Module/Connedit.php:716 ../../Zotlabs/Module/Connedit.php:721 msgid "Optionally explain your rating" msgstr "Verklaar jouw beoordeling (niet verplicht)" -#: ../../Zotlabs/Module/Connedit.php:765 +#: ../../Zotlabs/Module/Connedit.php:718 msgid "Custom Filter" msgstr "Berichtenfilter" -#: ../../Zotlabs/Module/Connedit.php:766 +#: ../../Zotlabs/Module/Connedit.php:719 msgid "Only import posts with this text" msgstr "Importeer alleen berichten met deze tekst" -#: ../../Zotlabs/Module/Connedit.php:766 ../../Zotlabs/Module/Connedit.php:767 +#: ../../Zotlabs/Module/Connedit.php:719 ../../Zotlabs/Module/Connedit.php:720 msgid "" "words one per line or #tags or /patterns/ or lang=xx, leave blank to import " "all posts" msgstr "woorden (één per regel), #tags, /regex/ of talen (lang=iso639-1) - laat leeg om alle berichten te importeren" -#: ../../Zotlabs/Module/Connedit.php:767 +#: ../../Zotlabs/Module/Connedit.php:720 msgid "Do not import posts with this text" msgstr "Importeer geen berichten met deze tekst" -#: ../../Zotlabs/Module/Connedit.php:769 +#: ../../Zotlabs/Module/Connedit.php:722 msgid "This information is public!" msgstr "Deze informatie is openbaar!" -#: ../../Zotlabs/Module/Connedit.php:774 +#: ../../Zotlabs/Module/Connedit.php:727 msgid "Connection Pending Approval" msgstr "Connectie moet nog geaccepteerd worden" -#: ../../Zotlabs/Module/Connedit.php:777 +#: ../../Zotlabs/Module/Connedit.php:730 msgid "inherited" msgstr "geërfd" -#: ../../Zotlabs/Module/Connedit.php:778 ../../Zotlabs/Module/Connect.php:98 -#: ../../Zotlabs/Module/Events.php:474 ../../Zotlabs/Module/Cal.php:338 -#: ../../Zotlabs/Module/Chat.php:196 ../../Zotlabs/Module/Chat.php:238 -#: ../../Zotlabs/Module/Group.php:85 ../../Zotlabs/Module/Appman.php:126 -#: ../../Zotlabs/Module/Pdledit.php:66 -#: ../../Zotlabs/Module/Filestorage.php:161 -#: ../../Zotlabs/Module/Profiles.php:687 ../../Zotlabs/Module/Import.php:560 -#: ../../Zotlabs/Module/Photos.php:675 ../../Zotlabs/Module/Photos.php:1050 -#: ../../Zotlabs/Module/Photos.php:1090 ../../Zotlabs/Module/Photos.php:1208 -#: ../../Zotlabs/Module/Import_items.php:122 -#: ../../Zotlabs/Module/Invite.php:146 ../../Zotlabs/Module/Locs.php:121 -#: ../../Zotlabs/Module/Mail.php:370 ../../Zotlabs/Module/Mood.php:139 -#: ../../Zotlabs/Module/Mitem.php:235 ../../Zotlabs/Module/Admin.php:492 -#: ../../Zotlabs/Module/Admin.php:688 ../../Zotlabs/Module/Admin.php:771 -#: ../../Zotlabs/Module/Admin.php:1032 ../../Zotlabs/Module/Admin.php:1211 -#: ../../Zotlabs/Module/Admin.php:1421 ../../Zotlabs/Module/Admin.php:1648 -#: ../../Zotlabs/Module/Admin.php:1733 ../../Zotlabs/Module/Admin.php:2116 -#: ../../Zotlabs/Module/Poke.php:186 ../../Zotlabs/Module/Pconfig.php:107 -#: ../../Zotlabs/Module/Rate.php:170 ../../Zotlabs/Module/Settings.php:644 -#: ../../Zotlabs/Module/Settings.php:757 ../../Zotlabs/Module/Settings.php:806 -#: ../../Zotlabs/Module/Settings.php:832 ../../Zotlabs/Module/Settings.php:855 -#: ../../Zotlabs/Module/Settings.php:943 -#: ../../Zotlabs/Module/Settings.php:1129 ../../Zotlabs/Module/Setup.php:312 -#: ../../Zotlabs/Module/Setup.php:353 ../../Zotlabs/Module/Thing.php:316 -#: ../../Zotlabs/Module/Thing.php:362 ../../Zotlabs/Module/Sources.php:114 -#: ../../Zotlabs/Module/Sources.php:149 ../../Zotlabs/Module/Xchan.php:15 -#: ../../Zotlabs/Lib/ThreadItem.php:710 ../../include/widgets.php:763 -#: ../../include/js_strings.php:22 ../../view/theme/redbasic/php/config.php:99 -msgid "Submit" -msgstr "Opslaan" - -#: ../../Zotlabs/Module/Connedit.php:779 +#: ../../Zotlabs/Module/Connedit.php:732 #, php-format msgid "" "Please choose the profile you would like to display to %s when viewing your " "profile securely." msgstr "Kies het profiel dat je aan %s wil tonen wanneer hij/zij ingelogd jouw profiel wil bekijken." -#: ../../Zotlabs/Module/Connedit.php:781 +#: ../../Zotlabs/Module/Connedit.php:734 msgid "Their Settings" msgstr "Hun instellingen" -#: ../../Zotlabs/Module/Connedit.php:782 +#: ../../Zotlabs/Module/Connedit.php:735 msgid "My Settings" msgstr "Mijn instellingen" -#: ../../Zotlabs/Module/Connedit.php:784 +#: ../../Zotlabs/Module/Connedit.php:737 msgid "Individual Permissions" msgstr "Individuele permissies" -#: ../../Zotlabs/Module/Connedit.php:785 +#: ../../Zotlabs/Module/Connedit.php:738 msgid "" "Some permissions may be inherited from your channel's privacy settings, which have higher " @@ -773,7 +878,7 @@ msgid "" " settings here." msgstr "Sommige permissies worden mogelijk overgeërfd van de privacy-instellingen van jouw kanaal, die een hogere prioriteit hebben dan deze individuele instellingen. Je kan je deze overgeërfde permissies hier niet veranderen." -#: ../../Zotlabs/Module/Connedit.php:786 +#: ../../Zotlabs/Module/Connedit.php:739 msgid "" "Some permissions may be inherited from your channel's privacy settings, which have higher " @@ -781,121 +886,17 @@ msgid "" "they wont have any impact unless the inherited setting changes." msgstr "Sommige permissies worden mogelijk overgeërfd van de privacy-instellingen van jouw kanaal, die een hogere prioriteit hebben dan deze individuele permissies. Je kan de permissies hier veranderen, maar die hebben geen effect, tenzij de overgeërfde permissies worden veranderd. " -#: ../../Zotlabs/Module/Connedit.php:787 +#: ../../Zotlabs/Module/Connedit.php:740 msgid "Last update:" msgstr "Laatste wijziging:" -#: ../../Zotlabs/Module/Display.php:17 ../../Zotlabs/Module/Directory.php:63 -#: ../../Zotlabs/Module/Photos.php:520 ../../Zotlabs/Module/Ratings.php:86 +#: ../../Zotlabs/Module/Directory.php:63 ../../Zotlabs/Module/Display.php:17 +#: ../../Zotlabs/Module/Photos.php:522 ../../Zotlabs/Module/Ratings.php:86 #: ../../Zotlabs/Module/Search.php:17 -#: ../../Zotlabs/Module/Viewconnections.php:23 +#: ../../Zotlabs/Module/Viewconnections.php:20 msgid "Public access denied." msgstr "Openbare toegang geweigerd." -#: ../../Zotlabs/Module/Display.php:40 ../../Zotlabs/Module/Filestorage.php:32 -#: ../../Zotlabs/Module/Admin.php:164 ../../Zotlabs/Module/Admin.php:1255 -#: ../../Zotlabs/Module/Admin.php:1561 ../../Zotlabs/Module/Thing.php:89 -#: ../../Zotlabs/Module/Viewsrc.php:24 ../../include/items.php:3369 -msgid "Item not found." -msgstr "Item niet gevonden." - -#: ../../Zotlabs/Module/Id.php:13 -msgid "First Name" -msgstr "Voornaam" - -#: ../../Zotlabs/Module/Id.php:14 -msgid "Last Name" -msgstr "Achternaam" - -#: ../../Zotlabs/Module/Id.php:15 -msgid "Nickname" -msgstr "Bijnaam" - -#: ../../Zotlabs/Module/Id.php:16 -msgid "Full Name" -msgstr "Volledige naam" - -#: ../../Zotlabs/Module/Id.php:17 ../../Zotlabs/Module/Id.php:18 -#: ../../Zotlabs/Module/Admin.php:1035 ../../Zotlabs/Module/Admin.php:1047 -#: ../../include/network.php:2203 -msgid "Email" -msgstr "E-mail" - -#: ../../Zotlabs/Module/Id.php:19 ../../Zotlabs/Module/Id.php:20 -#: ../../Zotlabs/Module/Id.php:21 ../../Zotlabs/Lib/Apps.php:238 -msgid "Profile Photo" -msgstr "Profielfoto" - -#: ../../Zotlabs/Module/Id.php:22 -msgid "Profile Photo 16px" -msgstr "Profielfoto 16px" - -#: ../../Zotlabs/Module/Id.php:23 -msgid "Profile Photo 32px" -msgstr "Profielfoto 32px" - -#: ../../Zotlabs/Module/Id.php:24 -msgid "Profile Photo 48px" -msgstr "Profielfoto 48px" - -#: ../../Zotlabs/Module/Id.php:25 -msgid "Profile Photo 64px" -msgstr "Profielfoto 64px" - -#: ../../Zotlabs/Module/Id.php:26 -msgid "Profile Photo 80px" -msgstr "Profielfoto 80px" - -#: ../../Zotlabs/Module/Id.php:27 -msgid "Profile Photo 128px" -msgstr "Profielfoto 128px" - -#: ../../Zotlabs/Module/Id.php:28 -msgid "Timezone" -msgstr "Tijdzone" - -#: ../../Zotlabs/Module/Id.php:29 ../../Zotlabs/Module/Profiles.php:731 -msgid "Homepage URL" -msgstr "URL homepagina" - -#: ../../Zotlabs/Module/Id.php:30 ../../Zotlabs/Lib/Apps.php:236 -msgid "Language" -msgstr "Taal" - -#: ../../Zotlabs/Module/Id.php:31 -msgid "Birth Year" -msgstr "Geboortejaar" - -#: ../../Zotlabs/Module/Id.php:32 -msgid "Birth Month" -msgstr "Geboortemaand" - -#: ../../Zotlabs/Module/Id.php:33 -msgid "Birth Day" -msgstr "Geboortedag" - -#: ../../Zotlabs/Module/Id.php:34 -msgid "Birthdate" -msgstr "Geboortedatum" - -#: ../../Zotlabs/Module/Id.php:35 ../../Zotlabs/Module/Profiles.php:454 -msgid "Gender" -msgstr "Geslacht" - -#: ../../Zotlabs/Module/Id.php:108 ../../include/selectors.php:49 -#: ../../include/selectors.php:66 -msgid "Male" -msgstr "Man" - -#: ../../Zotlabs/Module/Id.php:110 ../../include/selectors.php:49 -#: ../../include/selectors.php:66 -msgid "Female" -msgstr "Vrouw" - -#: ../../Zotlabs/Module/Follow.php:34 -msgid "Channel added." -msgstr "Kanaal toegevoegd." - #: ../../Zotlabs/Module/Directory.php:243 #, php-format msgid "%d rating" @@ -915,12 +916,12 @@ msgstr "Status: " msgid "Homepage: " msgstr "Homepage: " -#: ../../Zotlabs/Module/Directory.php:306 ../../include/channel.php:1223 +#: ../../Zotlabs/Module/Directory.php:306 ../../include/channel.php:1183 msgid "Age:" msgstr "Leeftijd:" -#: ../../Zotlabs/Module/Directory.php:311 ../../include/channel.php:1066 -#: ../../include/event.php:52 ../../include/event.php:84 +#: ../../Zotlabs/Module/Directory.php:311 ../../include/event.php:52 +#: ../../include/event.php:84 ../../include/channel.php:1027 #: ../../include/bb2diaspora.php:507 msgid "Location:" msgstr "Plaats:" @@ -929,18 +930,18 @@ msgstr "Plaats:" msgid "Description:" msgstr "Omschrijving:" -#: ../../Zotlabs/Module/Directory.php:322 ../../include/channel.php:1239 +#: ../../Zotlabs/Module/Directory.php:322 ../../include/channel.php:1199 msgid "Hometown:" msgstr "Oorspronkelijk uit:" -#: ../../Zotlabs/Module/Directory.php:324 ../../include/channel.php:1247 +#: ../../Zotlabs/Module/Directory.php:324 ../../include/channel.php:1207 msgid "About:" msgstr "Over:" #: ../../Zotlabs/Module/Directory.php:325 ../../Zotlabs/Module/Match.php:68 -#: ../../Zotlabs/Module/Suggest.php:56 ../../include/channel.php:1051 -#: ../../include/connections.php:78 ../../include/conversation.php:959 -#: ../../include/widgets.php:147 ../../include/widgets.php:184 +#: ../../Zotlabs/Module/Suggest.php:56 ../../include/widgets.php:147 +#: ../../include/widgets.php:184 ../../include/connections.php:78 +#: ../../include/conversation.php:956 ../../include/channel.php:1012 msgid "Connect" msgstr "Verbinden" @@ -1016,322 +1017,38 @@ msgstr "Oud naar nieuw" msgid "No entries (some entries may be hidden)." msgstr "Niets gevonden (sommige kanalen kunnen verborgen zijn)." -#: ../../Zotlabs/Module/Connect.php:61 ../../Zotlabs/Module/Connect.php:109 -msgid "Continue" -msgstr "Ga verder" +#: ../../Zotlabs/Module/Display.php:40 ../../Zotlabs/Module/Filestorage.php:33 +#: ../../Zotlabs/Module/Admin.php:164 ../../Zotlabs/Module/Admin.php:1255 +#: ../../Zotlabs/Module/Admin.php:1561 ../../Zotlabs/Module/Thing.php:89 +#: ../../Zotlabs/Module/Viewsrc.php:24 ../../include/items.php:3359 +msgid "Item not found." +msgstr "Item niet gevonden." -#: ../../Zotlabs/Module/Connect.php:90 -msgid "Premium Channel Setup" -msgstr "Instellen premiumkanaal " - -#: ../../Zotlabs/Module/Connect.php:92 -msgid "Enable premium channel connection restrictions" -msgstr "Restricties voor connecties van premiumkanaal toestaan" - -#: ../../Zotlabs/Module/Connect.php:93 -msgid "" -"Please enter your restrictions or conditions, such as paypal receipt, usage " -"guidelines, etc." -msgstr "Vul je restricties of voorwaarden in, zoals een paypal-afschrift, voorschriften voor leden, enz." - -#: ../../Zotlabs/Module/Connect.php:95 ../../Zotlabs/Module/Connect.php:115 -msgid "" -"This channel may require additional steps or acknowledgement of the " -"following conditions prior to connecting:" -msgstr "Dit kanaal kan extra stappen of het accepteren van de volgende voorwaarden vereisen, voordat de connectie wordt geaccepteerd:" - -#: ../../Zotlabs/Module/Connect.php:96 -msgid "" -"Potential connections will then see the following text before proceeding:" -msgstr "Mogelijke connecties zullen dan de volgende tekst zien voordat ze verder kunnen:" - -#: ../../Zotlabs/Module/Connect.php:97 ../../Zotlabs/Module/Connect.php:118 -msgid "" -"By continuing, I certify that I have complied with any instructions provided" -" on this page." -msgstr "Door verder te gaan ga ik automatisch akkoord met alle voorwaarden en aanwijzingen op deze pagina." - -#: ../../Zotlabs/Module/Connect.php:106 -msgid "(No specific instructions have been provided by the channel owner.)" -msgstr "(Er zijn geen speciale voorwaarden en aanwijzingen door de kanaal-eigenaar verstrekt) " - -#: ../../Zotlabs/Module/Connect.php:114 -msgid "Restricted or Premium Channel" -msgstr "Beperkt of premiumkanaal" - -#: ../../Zotlabs/Module/Events.php:25 -msgid "Calendar entries imported." -msgstr "Agenda-items geïmporteerd." - -#: ../../Zotlabs/Module/Events.php:27 -msgid "No calendar entries found." -msgstr "Geen agenda-items gevonden." - -#: ../../Zotlabs/Module/Events.php:104 -msgid "Event can not end before it has started." -msgstr "Gebeurtenis kan niet eindigen voordat het is begonnen" - -#: ../../Zotlabs/Module/Events.php:106 ../../Zotlabs/Module/Events.php:115 -#: ../../Zotlabs/Module/Events.php:135 -msgid "Unable to generate preview." -msgstr "Niet in staat om voorvertoning te genereren" - -#: ../../Zotlabs/Module/Events.php:113 -msgid "Event title and start time are required." -msgstr "Titel en begintijd van gebeurtenis zijn vereist." - -#: ../../Zotlabs/Module/Events.php:133 ../../Zotlabs/Module/Events.php:258 -msgid "Event not found." -msgstr "Gebeurtenis niet gevonden" - -#: ../../Zotlabs/Module/Events.php:253 ../../Zotlabs/Module/Like.php:372 -#: ../../Zotlabs/Module/Tagger.php:51 ../../include/conversation.php:123 -#: ../../include/text.php:1924 ../../include/event.php:951 -msgid "event" -msgstr "gebeurtenis" - -#: ../../Zotlabs/Module/Events.php:448 -msgid "Edit event title" -msgstr "Titel bewerken" - -#: ../../Zotlabs/Module/Events.php:448 -msgid "Event title" -msgstr "Titel" - -#: ../../Zotlabs/Module/Events.php:448 ../../Zotlabs/Module/Events.php:453 -#: ../../Zotlabs/Module/Appman.php:115 ../../Zotlabs/Module/Appman.php:116 -#: ../../Zotlabs/Module/Profiles.php:709 ../../Zotlabs/Module/Profiles.php:713 -#: ../../include/datetime.php:245 -msgid "Required" -msgstr "Vereist" - -#: ../../Zotlabs/Module/Events.php:450 -msgid "Categories (comma-separated list)" -msgstr "Categorieën (door komma's gescheiden lijst)" - -#: ../../Zotlabs/Module/Events.php:451 -msgid "Edit Category" -msgstr "Categorie" - -#: ../../Zotlabs/Module/Events.php:451 -msgid "Category" -msgstr "Categorie" - -#: ../../Zotlabs/Module/Events.php:454 -msgid "Edit start date and time" -msgstr "Begindatum en -tijd bewerken" - -#: ../../Zotlabs/Module/Events.php:454 -msgid "Start date and time" -msgstr "Begindatum en -tijd" - -#: ../../Zotlabs/Module/Events.php:455 ../../Zotlabs/Module/Events.php:458 -msgid "Finish date and time are not known or not relevant" -msgstr "Einddatum en -tijd zijn niet bekend of niet van toepassing" - -#: ../../Zotlabs/Module/Events.php:457 -msgid "Edit finish date and time" -msgstr "Einddatum en -tijd bewerken" - -#: ../../Zotlabs/Module/Events.php:457 -msgid "Finish date and time" -msgstr "Einddatum en -tijd" - -#: ../../Zotlabs/Module/Events.php:459 ../../Zotlabs/Module/Events.php:460 -msgid "Adjust for viewer timezone" -msgstr "Aanpassen aan de tijdzone van wie deze gebeurtenis bekijkt" - -#: ../../Zotlabs/Module/Events.php:459 -msgid "" -"Important for events that happen in a particular place. Not practical for " -"global holidays." -msgstr "Belangrijk voor gebeurtenissen die op een bepaalde locatie plaatsvinden. Niet praktisch voor wereldwijde feestdagen." - -#: ../../Zotlabs/Module/Events.php:461 -msgid "Edit Description" -msgstr "Omschrijving bewerken" - -#: ../../Zotlabs/Module/Events.php:461 ../../Zotlabs/Module/Appman.php:117 -#: ../../Zotlabs/Module/Rbmark.php:101 -msgid "Description" -msgstr "Omschrijving" - -#: ../../Zotlabs/Module/Events.php:463 -msgid "Edit Location" -msgstr "Locatie bewerken" - -#: ../../Zotlabs/Module/Events.php:463 ../../Zotlabs/Module/Profiles.php:477 -#: ../../Zotlabs/Module/Profiles.php:698 ../../Zotlabs/Module/Locs.php:117 -#: ../../Zotlabs/Module/Pubsites.php:41 ../../include/js_strings.php:25 -msgid "Location" -msgstr "Locatie" - -#: ../../Zotlabs/Module/Events.php:466 ../../Zotlabs/Module/Events.php:468 -msgid "Share this event" -msgstr "Deel deze gebeurtenis" - -#: ../../Zotlabs/Module/Events.php:469 ../../Zotlabs/Module/Photos.php:1091 -#: ../../Zotlabs/Module/Webpages.php:201 ../../Zotlabs/Lib/ThreadItem.php:719 -#: ../../include/page_widgets.php:43 ../../include/conversation.php:1198 -msgid "Preview" -msgstr "Voorvertoning" - -#: ../../Zotlabs/Module/Events.php:470 ../../include/conversation.php:1247 -msgid "Permission settings" -msgstr "Permissies" - -#: ../../Zotlabs/Module/Events.php:475 -msgid "Advanced Options" -msgstr "Geavanceerde opties" - -#: ../../Zotlabs/Module/Events.php:587 ../../Zotlabs/Module/Cal.php:259 -msgid "l, F j" -msgstr "l j F" - -#: ../../Zotlabs/Module/Events.php:609 -msgid "Edit event" -msgstr "Gebeurtenis bewerken" - -#: ../../Zotlabs/Module/Events.php:611 -msgid "Delete event" -msgstr "Gebeurtenis verwijderen" - -#: ../../Zotlabs/Module/Events.php:636 ../../Zotlabs/Module/Cal.php:308 -#: ../../include/text.php:1712 -msgid "Link to Source" -msgstr "Originele locatie" - -#: ../../Zotlabs/Module/Events.php:645 -msgid "calendar" -msgstr "agenda" - -#: ../../Zotlabs/Module/Events.php:664 ../../Zotlabs/Module/Cal.php:331 -msgid "Edit Event" -msgstr "Gebeurtenis bewerken" - -#: ../../Zotlabs/Module/Events.php:664 ../../Zotlabs/Module/Cal.php:331 -msgid "Create Event" -msgstr "Gebeurtenis aanmaken" - -#: ../../Zotlabs/Module/Events.php:665 ../../Zotlabs/Module/Events.php:674 -#: ../../Zotlabs/Module/Cal.php:332 ../../Zotlabs/Module/Cal.php:339 -#: ../../Zotlabs/Module/Photos.php:947 -msgid "Previous" -msgstr "Vorige" - -#: ../../Zotlabs/Module/Events.php:666 ../../Zotlabs/Module/Events.php:675 -#: ../../Zotlabs/Module/Cal.php:333 ../../Zotlabs/Module/Cal.php:340 -#: ../../Zotlabs/Module/Photos.php:956 ../../Zotlabs/Module/Setup.php:267 -msgid "Next" -msgstr "Volgende" - -#: ../../Zotlabs/Module/Events.php:667 ../../Zotlabs/Module/Cal.php:334 -msgid "Export" -msgstr "Exporteren" - -#: ../../Zotlabs/Module/Events.php:670 ../../Zotlabs/Module/Layouts.php:197 -#: ../../Zotlabs/Module/Pubsites.php:47 ../../Zotlabs/Module/Blocks.php:166 -#: ../../Zotlabs/Module/Webpages.php:200 ../../include/page_widgets.php:42 -msgid "View" -msgstr "Weergeven" - -#: ../../Zotlabs/Module/Events.php:671 -msgid "Month" -msgstr "Maand" - -#: ../../Zotlabs/Module/Events.php:672 -msgid "Week" -msgstr "Week" - -#: ../../Zotlabs/Module/Events.php:673 -msgid "Day" -msgstr "Dag" - -#: ../../Zotlabs/Module/Events.php:676 ../../Zotlabs/Module/Cal.php:341 -msgid "Today" -msgstr "Vandaag" - -#: ../../Zotlabs/Module/Events.php:707 -msgid "Event removed" -msgstr "Gebeurtenis verwijderd" - -#: ../../Zotlabs/Module/Events.php:710 -msgid "Failed to remove event" -msgstr "Verwijderen gebeurtenis mislukt" - -#: ../../Zotlabs/Module/Bookmarks.php:53 -msgid "Bookmark added" -msgstr "Bladwijzer toegevoegd" - -#: ../../Zotlabs/Module/Bookmarks.php:75 -msgid "My Bookmarks" -msgstr "Mijn bladwijzers" - -#: ../../Zotlabs/Module/Bookmarks.php:86 -msgid "My Connections Bookmarks" -msgstr "Bladwijzers van mijn connecties" - -#: ../../Zotlabs/Module/Editpost.php:24 ../../Zotlabs/Module/Editlayout.php:79 -#: ../../Zotlabs/Module/Editwebpage.php:80 #: ../../Zotlabs/Module/Editblock.php:79 ../../Zotlabs/Module/Editblock.php:95 +#: ../../Zotlabs/Module/Editpost.php:24 ../../Zotlabs/Module/Editlayout.php:79 +#: ../../Zotlabs/Module/Editwebpage.php:81 msgid "Item not found" msgstr "Item niet gevonden" -#: ../../Zotlabs/Module/Editpost.php:35 -msgid "Item is not editable" -msgstr "Item is niet te bewerken" +#: ../../Zotlabs/Module/Editblock.php:124 ../../include/conversation.php:1228 +msgid "Title (optional)" +msgstr "Titel (optioneel)" -#: ../../Zotlabs/Module/Editpost.php:106 ../../Zotlabs/Module/Rpost.php:134 -msgid "Edit post" -msgstr "Bericht bewerken" +#: ../../Zotlabs/Module/Editblock.php:133 +msgid "Edit Block" +msgstr "Blok bewerken" -#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:222 -#: ../../include/nav.php:92 ../../include/conversation.php:1647 -msgid "Photos" -msgstr "Foto's" +#: ../../Zotlabs/Module/Common.php:14 +msgid "No channel." +msgstr "Geen kanaal." -#: ../../Zotlabs/Module/Fbrowser.php:66 ../../Zotlabs/Module/Fbrowser.php:88 -#: ../../Zotlabs/Module/Admin.php:1406 ../../Zotlabs/Module/Settings.php:645 -#: ../../Zotlabs/Module/Settings.php:671 ../../Zotlabs/Module/Tagrm.php:15 -#: ../../Zotlabs/Module/Tagrm.php:138 ../../Zotlabs/Module/Wiki.php:166 -#: ../../Zotlabs/Module/Wiki.php:202 ../../include/conversation.php:1235 -#: ../../include/conversation.php:1274 -msgid "Cancel" -msgstr "Annuleren" +#: ../../Zotlabs/Module/Common.php:43 +msgid "Common connections" +msgstr "Veel voorkomende connecties" -#: ../../Zotlabs/Module/Page.php:40 ../../Zotlabs/Module/Block.php:31 -msgid "Invalid item." -msgstr "Ongeldig item." - -#: ../../Zotlabs/Module/Page.php:56 ../../Zotlabs/Module/Cal.php:62 -#: ../../Zotlabs/Module/Block.php:43 ../../Zotlabs/Module/Wall_upload.php:33 -msgid "Channel not found." -msgstr "Kanaal niet gevonden." - -#: ../../Zotlabs/Module/Page.php:131 -msgid "" -"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod " -"tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam," -" quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo " -"consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse " -"cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat " -"non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." -msgstr "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." - -#: ../../Zotlabs/Module/Filer.php:52 -msgid "Save to Folder:" -msgstr "Bewaar in map: " - -#: ../../Zotlabs/Module/Filer.php:52 -msgid "- select -" -msgstr "- kies map -" - -#: ../../Zotlabs/Module/Filer.php:53 ../../Zotlabs/Module/Admin.php:2033 -#: ../../Zotlabs/Module/Admin.php:2053 ../../Zotlabs/Module/Rbmark.php:32 -#: ../../Zotlabs/Module/Rbmark.php:104 ../../include/text.php:926 -#: ../../include/text.php:938 ../../include/widgets.php:201 -msgid "Save" -msgstr "Opslaan" +#: ../../Zotlabs/Module/Common.php:48 +msgid "No connections in common." +msgstr "Geen gemeenschappelijke connecties." #: ../../Zotlabs/Module/Connections.php:56 #: ../../Zotlabs/Module/Connections.php:161 @@ -1359,7 +1076,7 @@ msgstr "Gearchiveerd" #: ../../Zotlabs/Module/Connections.php:76 #: ../../Zotlabs/Module/Connections.php:86 ../../Zotlabs/Module/Menu.php:116 -#: ../../include/conversation.php:1550 +#: ../../include/conversation.php:1535 msgid "New" msgstr "Nieuw" @@ -1446,15 +1163,15 @@ msgstr "Connectie negeren" msgid "Recent activity" msgstr "Recente activiteit" -#: ../../Zotlabs/Module/Connections.php:302 ../../Zotlabs/Lib/Apps.php:209 -#: ../../include/nav.php:188 ../../include/text.php:855 +#: ../../Zotlabs/Module/Connections.php:302 ../../Zotlabs/Lib/Apps.php:208 +#: ../../include/text.php:875 ../../include/nav.php:186 msgid "Connections" msgstr "Connecties" #: ../../Zotlabs/Module/Connections.php:306 ../../Zotlabs/Module/Search.php:44 -#: ../../Zotlabs/Lib/Apps.php:230 ../../include/nav.php:167 -#: ../../include/text.php:925 ../../include/text.php:937 -#: ../../include/acl_selectors.php:274 +#: ../../Zotlabs/Lib/Apps.php:228 ../../include/text.php:945 +#: ../../include/text.php:957 ../../include/nav.php:165 +#: ../../include/acl_selectors.php:276 msgid "Search" msgstr "Zoeken" @@ -1467,7 +1184,7 @@ msgid "Connections search" msgstr "Connecties zoeken" #: ../../Zotlabs/Module/Cover_photo.php:58 -#: ../../Zotlabs/Module/Profile_photo.php:61 +#: ../../Zotlabs/Module/Profile_photo.php:79 msgid "Image uploaded but image cropping failed." msgstr "Afbeelding geüpload, maar afbeelding kon niet worden bijgesneden. " @@ -1477,66 +1194,66 @@ msgid "Cover Photos" msgstr "Omslagfoto's" #: ../../Zotlabs/Module/Cover_photo.php:154 -#: ../../Zotlabs/Module/Profile_photo.php:135 +#: ../../Zotlabs/Module/Profile_photo.php:133 msgid "Image resize failed." msgstr "Afbeelding kon niet van grootte veranderd worden." #: ../../Zotlabs/Module/Cover_photo.php:168 -#: ../../Zotlabs/Module/Profile_photo.php:196 ../../include/photos.php:148 +#: ../../Zotlabs/Module/Profile_photo.php:192 ../../include/photos.php:144 msgid "Unable to process image" msgstr "Afbeelding kan niet verwerkt worden" #: ../../Zotlabs/Module/Cover_photo.php:192 -#: ../../Zotlabs/Module/Profile_photo.php:223 +#: ../../Zotlabs/Module/Profile_photo.php:217 msgid "Image upload failed." msgstr "Uploaden afbeelding mislukt" #: ../../Zotlabs/Module/Cover_photo.php:210 -#: ../../Zotlabs/Module/Profile_photo.php:242 +#: ../../Zotlabs/Module/Profile_photo.php:236 msgid "Unable to process image." msgstr "Niet in staat om afbeelding te verwerken." -#: ../../Zotlabs/Module/Cover_photo.php:233 ../../include/items.php:4283 +#: ../../Zotlabs/Module/Cover_photo.php:233 ../../include/items.php:4270 msgid "female" msgstr "vrouw" -#: ../../Zotlabs/Module/Cover_photo.php:234 ../../include/items.php:4284 +#: ../../Zotlabs/Module/Cover_photo.php:234 ../../include/items.php:4271 #, php-format msgid "%1$s updated her %2$s" msgstr "%1$s heeft haar %2$s bijgewerkt" -#: ../../Zotlabs/Module/Cover_photo.php:235 ../../include/items.php:4285 +#: ../../Zotlabs/Module/Cover_photo.php:235 ../../include/items.php:4272 msgid "male" msgstr "man" -#: ../../Zotlabs/Module/Cover_photo.php:236 ../../include/items.php:4286 +#: ../../Zotlabs/Module/Cover_photo.php:236 ../../include/items.php:4273 #, php-format msgid "%1$s updated his %2$s" msgstr "%1$s heeft zijn %2$s bijgewerkt" -#: ../../Zotlabs/Module/Cover_photo.php:238 ../../include/items.php:4288 +#: ../../Zotlabs/Module/Cover_photo.php:238 ../../include/items.php:4275 #, php-format msgid "%1$s updated their %2$s" msgstr "De %2$s van %1$s is bijgewerkt" -#: ../../Zotlabs/Module/Cover_photo.php:240 ../../include/channel.php:1726 +#: ../../Zotlabs/Module/Cover_photo.php:240 ../../include/channel.php:1661 msgid "cover photo" msgstr "omslagfoto" #: ../../Zotlabs/Module/Cover_photo.php:303 #: ../../Zotlabs/Module/Cover_photo.php:318 -#: ../../Zotlabs/Module/Profile_photo.php:300 -#: ../../Zotlabs/Module/Profile_photo.php:341 +#: ../../Zotlabs/Module/Profile_photo.php:283 +#: ../../Zotlabs/Module/Profile_photo.php:324 msgid "Photo not available." msgstr "Foto niet beschikbaar." #: ../../Zotlabs/Module/Cover_photo.php:354 -#: ../../Zotlabs/Module/Profile_photo.php:387 +#: ../../Zotlabs/Module/Profile_photo.php:365 msgid "Upload File:" msgstr "Bestand uploaden:" #: ../../Zotlabs/Module/Cover_photo.php:355 -#: ../../Zotlabs/Module/Profile_photo.php:388 +#: ../../Zotlabs/Module/Profile_photo.php:366 msgid "Select a profile:" msgstr "Kies een profiel:" @@ -1545,69 +1262,200 @@ msgid "Upload Cover Photo" msgstr "Omslagfoto uploaden" #: ../../Zotlabs/Module/Cover_photo.php:361 -#: ../../Zotlabs/Module/Profile_photo.php:396 -#: ../../Zotlabs/Module/Settings.php:1080 +#: ../../Zotlabs/Module/Profile_photo.php:374 +#: ../../Zotlabs/Module/Settings.php:985 msgid "or" msgstr "of" #: ../../Zotlabs/Module/Cover_photo.php:361 -#: ../../Zotlabs/Module/Profile_photo.php:396 +#: ../../Zotlabs/Module/Profile_photo.php:374 msgid "skip this step" msgstr "sla deze stap over" #: ../../Zotlabs/Module/Cover_photo.php:361 -#: ../../Zotlabs/Module/Profile_photo.php:396 +#: ../../Zotlabs/Module/Profile_photo.php:374 msgid "select a photo from your photo albums" msgstr "Kies een foto uit jouw fotoalbums" #: ../../Zotlabs/Module/Cover_photo.php:377 -#: ../../Zotlabs/Module/Profile_photo.php:415 +#: ../../Zotlabs/Module/Profile_photo.php:390 msgid "Crop Image" msgstr "Afbeelding bijsnijden" #: ../../Zotlabs/Module/Cover_photo.php:378 -#: ../../Zotlabs/Module/Profile_photo.php:416 +#: ../../Zotlabs/Module/Profile_photo.php:391 msgid "Please adjust the image cropping for optimum viewing." msgstr "Snij de afbeelding zo uit dat deze optimaal wordt weergegeven." #: ../../Zotlabs/Module/Cover_photo.php:380 -#: ../../Zotlabs/Module/Profile_photo.php:418 +#: ../../Zotlabs/Module/Profile_photo.php:393 msgid "Done Editing" msgstr "Klaar met bewerken" -#: ../../Zotlabs/Module/Impel.php:41 ../../include/bbcode.php:192 -msgid "webpage" -msgstr "Webpagina" +#: ../../Zotlabs/Module/Editpost.php:35 +msgid "Item is not editable" +msgstr "Item is niet te bewerken" -#: ../../Zotlabs/Module/Impel.php:46 ../../include/bbcode.php:198 -msgid "block" -msgstr "blok" +#: ../../Zotlabs/Module/Editpost.php:106 ../../Zotlabs/Module/Rpost.php:135 +msgid "Edit post" +msgstr "Bericht bewerken" -#: ../../Zotlabs/Module/Impel.php:51 ../../include/bbcode.php:195 -msgid "layout" -msgstr "lay-out" +#: ../../Zotlabs/Module/Events.php:26 +msgid "Calendar entries imported." +msgstr "Agenda-items geïmporteerd." -#: ../../Zotlabs/Module/Impel.php:58 ../../include/bbcode.php:201 -msgid "menu" -msgstr "menu" +#: ../../Zotlabs/Module/Events.php:28 +msgid "No calendar entries found." +msgstr "Geen agenda-items gevonden." -#: ../../Zotlabs/Module/Impel.php:187 -#, php-format -msgid "%s element installed" -msgstr "%s onderdeel geïnstalleerd" +#: ../../Zotlabs/Module/Events.php:105 +msgid "Event can not end before it has started." +msgstr "Gebeurtenis kan niet eindigen voordat het is begonnen" -#: ../../Zotlabs/Module/Impel.php:190 -#, php-format -msgid "%s element installation failed" -msgstr "Installatie %s-element mislukt" +#: ../../Zotlabs/Module/Events.php:107 ../../Zotlabs/Module/Events.php:116 +#: ../../Zotlabs/Module/Events.php:136 +msgid "Unable to generate preview." +msgstr "Niet in staat om voorvertoning te genereren" -#: ../../Zotlabs/Module/Cal.php:69 -msgid "Permissions denied." -msgstr "Permissies niet toegestaan" +#: ../../Zotlabs/Module/Events.php:114 +msgid "Event title and start time are required." +msgstr "Titel en begintijd van gebeurtenis zijn vereist." -#: ../../Zotlabs/Module/Cal.php:337 -msgid "Import" -msgstr "Importeren" +#: ../../Zotlabs/Module/Events.php:134 ../../Zotlabs/Module/Events.php:259 +msgid "Event not found." +msgstr "Gebeurtenis niet gevonden" + +#: ../../Zotlabs/Module/Events.php:254 ../../Zotlabs/Module/Like.php:373 +#: ../../Zotlabs/Module/Tagger.php:51 ../../include/event.php:949 +#: ../../include/text.php:1943 ../../include/conversation.php:123 +msgid "event" +msgstr "gebeurtenis" + +#: ../../Zotlabs/Module/Events.php:449 +msgid "Edit event title" +msgstr "Titel bewerken" + +#: ../../Zotlabs/Module/Events.php:449 +msgid "Event title" +msgstr "Titel" + +#: ../../Zotlabs/Module/Events.php:449 ../../Zotlabs/Module/Events.php:454 +#: ../../Zotlabs/Module/Profiles.php:709 ../../Zotlabs/Module/Profiles.php:713 +#: ../../Zotlabs/Module/Appman.php:115 ../../Zotlabs/Module/Appman.php:116 +#: ../../include/datetime.php:245 +msgid "Required" +msgstr "Vereist" + +#: ../../Zotlabs/Module/Events.php:451 +msgid "Categories (comma-separated list)" +msgstr "Categorieën (door komma's gescheiden lijst)" + +#: ../../Zotlabs/Module/Events.php:452 +msgid "Edit Category" +msgstr "Categorie" + +#: ../../Zotlabs/Module/Events.php:452 +msgid "Category" +msgstr "Categorie" + +#: ../../Zotlabs/Module/Events.php:455 +msgid "Edit start date and time" +msgstr "Begindatum en -tijd bewerken" + +#: ../../Zotlabs/Module/Events.php:455 +msgid "Start date and time" +msgstr "Begindatum en -tijd" + +#: ../../Zotlabs/Module/Events.php:456 ../../Zotlabs/Module/Events.php:459 +msgid "Finish date and time are not known or not relevant" +msgstr "Einddatum en -tijd zijn niet bekend of niet van toepassing" + +#: ../../Zotlabs/Module/Events.php:458 +msgid "Edit finish date and time" +msgstr "Einddatum en -tijd bewerken" + +#: ../../Zotlabs/Module/Events.php:458 +msgid "Finish date and time" +msgstr "Einddatum en -tijd" + +#: ../../Zotlabs/Module/Events.php:460 ../../Zotlabs/Module/Events.php:461 +msgid "Adjust for viewer timezone" +msgstr "Aanpassen aan de tijdzone van wie deze gebeurtenis bekijkt" + +#: ../../Zotlabs/Module/Events.php:460 +msgid "" +"Important for events that happen in a particular place. Not practical for " +"global holidays." +msgstr "Belangrijk voor gebeurtenissen die op een bepaalde locatie plaatsvinden. Niet praktisch voor wereldwijde feestdagen." + +#: ../../Zotlabs/Module/Events.php:462 +msgid "Edit Description" +msgstr "Omschrijving bewerken" + +#: ../../Zotlabs/Module/Events.php:462 ../../Zotlabs/Module/Appman.php:117 +#: ../../Zotlabs/Module/Rbmark.php:101 +msgid "Description" +msgstr "Omschrijving" + +#: ../../Zotlabs/Module/Events.php:464 +msgid "Edit Location" +msgstr "Locatie bewerken" + +#: ../../Zotlabs/Module/Events.php:464 ../../Zotlabs/Module/Locs.php:117 +#: ../../Zotlabs/Module/Profiles.php:477 ../../Zotlabs/Module/Profiles.php:698 +#: ../../Zotlabs/Module/Pubsites.php:41 ../../include/js_strings.php:25 +msgid "Location" +msgstr "Locatie" + +#: ../../Zotlabs/Module/Events.php:467 ../../Zotlabs/Module/Events.php:469 +msgid "Share this event" +msgstr "Deel deze gebeurtenis" + +#: ../../Zotlabs/Module/Events.php:470 ../../Zotlabs/Module/Photos.php:1093 +#: ../../Zotlabs/Module/Webpages.php:194 ../../Zotlabs/Lib/ThreadItem.php:719 +#: ../../include/conversation.php:1187 ../../include/page_widgets.php:40 +msgid "Preview" +msgstr "Voorvertoning" + +#: ../../Zotlabs/Module/Events.php:471 ../../include/conversation.php:1232 +msgid "Permission settings" +msgstr "Permissies" + +#: ../../Zotlabs/Module/Events.php:476 +msgid "Advanced Options" +msgstr "Geavanceerde opties" + +#: ../../Zotlabs/Module/Events.php:610 +msgid "Edit event" +msgstr "Gebeurtenis bewerken" + +#: ../../Zotlabs/Module/Events.php:612 +msgid "Delete event" +msgstr "Gebeurtenis verwijderen" + +#: ../../Zotlabs/Module/Events.php:646 +msgid "calendar" +msgstr "agenda" + +#: ../../Zotlabs/Module/Events.php:706 +msgid "Event removed" +msgstr "Gebeurtenis verwijderd" + +#: ../../Zotlabs/Module/Events.php:709 +msgid "Failed to remove event" +msgstr "Verwijderen gebeurtenis mislukt" + +#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:220 +#: ../../include/nav.php:92 ../../include/conversation.php:1632 +msgid "Photos" +msgstr "Foto's" + +#: ../../Zotlabs/Module/Fbrowser.php:66 ../../Zotlabs/Module/Fbrowser.php:88 +#: ../../Zotlabs/Module/Admin.php:1406 ../../Zotlabs/Module/Settings.php:591 +#: ../../Zotlabs/Module/Settings.php:617 ../../Zotlabs/Module/Tagrm.php:15 +#: ../../Zotlabs/Module/Tagrm.php:138 ../../include/conversation.php:1259 +msgid "Cancel" +msgstr "Annuleren" #: ../../Zotlabs/Module/Dirsearch.php:25 ../../Zotlabs/Module/Regdir.php:49 msgid "This site is not a directory server" @@ -1617,184 +1465,112 @@ msgstr "Deze hub is geen kanalengidshub (directoryserver)" msgid "This directory server requires an access token" msgstr "Deze kanalengidshub (directoryserver) heeft een toegangs-token nodig" -#: ../../Zotlabs/Module/Chat.php:25 ../../Zotlabs/Module/Channel.php:28 -#: ../../Zotlabs/Module/Wiki.php:20 -msgid "You must be logged in to see this page." -msgstr "Je moet zijn ingelogd om deze pagina te kunnen bekijken." +#: ../../Zotlabs/Module/Filer.php:52 +msgid "Save to Folder:" +msgstr "Bewaar in map: " -#: ../../Zotlabs/Module/Chat.php:181 -msgid "Room not found" -msgstr "Chatkanaal niet gevonden" +#: ../../Zotlabs/Module/Filer.php:52 +msgid "- select -" +msgstr "- kies map -" -#: ../../Zotlabs/Module/Chat.php:197 -msgid "Leave Room" -msgstr "Chatkanaal verlaten" +#: ../../Zotlabs/Module/Filer.php:53 ../../Zotlabs/Module/Admin.php:2033 +#: ../../Zotlabs/Module/Admin.php:2053 ../../Zotlabs/Module/Rbmark.php:32 +#: ../../Zotlabs/Module/Rbmark.php:104 ../../include/text.php:946 +#: ../../include/text.php:958 ../../include/widgets.php:201 +msgid "Save" +msgstr "Opslaan" -#: ../../Zotlabs/Module/Chat.php:198 -msgid "Delete Room" -msgstr "Chatkanaal verwijderen" - -#: ../../Zotlabs/Module/Chat.php:199 -msgid "I am away right now" -msgstr "Ik ben momenteel afwezig" - -#: ../../Zotlabs/Module/Chat.php:200 -msgid "I am online" -msgstr "Ik ben online" - -#: ../../Zotlabs/Module/Chat.php:202 -msgid "Bookmark this room" -msgstr "Chatkanaal aan bladwijzers toevoegen" - -#: ../../Zotlabs/Module/Chat.php:205 ../../Zotlabs/Module/Mail.php:197 -#: ../../Zotlabs/Module/Mail.php:306 ../../include/conversation.php:1181 -msgid "Please enter a link URL:" -msgstr "Vul een URL in:" - -#: ../../Zotlabs/Module/Chat.php:206 ../../Zotlabs/Module/Mail.php:250 -#: ../../Zotlabs/Module/Mail.php:375 ../../Zotlabs/Lib/ThreadItem.php:722 -#: ../../include/conversation.php:1271 -msgid "Encrypt text" -msgstr "Tekst versleutelen" - -#: ../../Zotlabs/Module/Chat.php:207 ../../Zotlabs/Module/Editwebpage.php:146 -#: ../../Zotlabs/Module/Mail.php:244 ../../Zotlabs/Module/Mail.php:369 -#: ../../Zotlabs/Module/Editblock.php:111 ../../include/conversation.php:1146 -msgid "Insert web link" -msgstr "Weblink invoegen" - -#: ../../Zotlabs/Module/Chat.php:218 -msgid "Feature disabled." -msgstr "Functie uitgeschakeld." - -#: ../../Zotlabs/Module/Chat.php:232 -msgid "New Chatroom" -msgstr "Nieuw chatkanaal" - -#: ../../Zotlabs/Module/Chat.php:233 -msgid "Chatroom name" -msgstr "Naam chatkanaal" - -#: ../../Zotlabs/Module/Chat.php:234 -msgid "Expiration of chats (minutes)" -msgstr "Aantal minuten voordat chatberichten worden verwijderd" - -#: ../../Zotlabs/Module/Chat.php:235 ../../Zotlabs/Module/Filestorage.php:152 -#: ../../Zotlabs/Module/Photos.php:669 ../../Zotlabs/Module/Photos.php:1043 -#: ../../Zotlabs/Module/Thing.php:313 ../../Zotlabs/Module/Thing.php:359 -#: ../../include/acl_selectors.php:281 -msgid "Permissions" -msgstr "Permissies" - -#: ../../Zotlabs/Module/Chat.php:246 -#, php-format -msgid "%1$s's Chatrooms" -msgstr "Chatkanalen van %1$s" - -#: ../../Zotlabs/Module/Chat.php:251 -msgid "No chatrooms available" -msgstr "Geen chatkanalen beschikbaar" - -#: ../../Zotlabs/Module/Chat.php:252 ../../Zotlabs/Module/Profiles.php:778 -#: ../../Zotlabs/Module/Manage.php:143 -msgid "Create New" -msgstr "Nieuwe aanmaken" - -#: ../../Zotlabs/Module/Chat.php:255 -msgid "Expiration" -msgstr "Verloopt na" - -#: ../../Zotlabs/Module/Chat.php:256 -msgid "min" -msgstr "min" - -#: ../../Zotlabs/Module/Dreport.php:44 +#: ../../Zotlabs/Module/Dreport.php:27 msgid "Invalid message" msgstr "Ongeldig bericht" -#: ../../Zotlabs/Module/Dreport.php:76 +#: ../../Zotlabs/Module/Dreport.php:59 msgid "no results" msgstr "geen resultaten" -#: ../../Zotlabs/Module/Dreport.php:91 -msgid "channel sync processed" -msgstr "kanaalsync verwerkt" - -#: ../../Zotlabs/Module/Dreport.php:95 -msgid "queued" -msgstr "in wachtrij" - -#: ../../Zotlabs/Module/Dreport.php:99 -msgid "posted" -msgstr "verstuurd" - -#: ../../Zotlabs/Module/Dreport.php:103 -msgid "accepted for delivery" -msgstr "geaccepteerd om afgeleverd te worden" - -#: ../../Zotlabs/Module/Dreport.php:107 -msgid "updated" -msgstr "geüpdatet" - -#: ../../Zotlabs/Module/Dreport.php:110 -msgid "update ignored" -msgstr "update genegeerd" - -#: ../../Zotlabs/Module/Dreport.php:113 -msgid "permission denied" -msgstr "toegang geweigerd" - -#: ../../Zotlabs/Module/Dreport.php:117 -msgid "recipient not found" -msgstr "ontvanger niet gevonden" - -#: ../../Zotlabs/Module/Dreport.php:120 -msgid "mail recalled" -msgstr "Privébericht ingetrokken" - -#: ../../Zotlabs/Module/Dreport.php:123 -msgid "duplicate mail received" -msgstr "dubbel privébericht ontvangen" - -#: ../../Zotlabs/Module/Dreport.php:126 -msgid "mail delivered" -msgstr "privébericht afgeleverd" - -#: ../../Zotlabs/Module/Dreport.php:146 +#: ../../Zotlabs/Module/Dreport.php:64 #, php-format msgid "Delivery report for %1$s" msgstr "Afleveringsrapport voor %1$s" -#: ../../Zotlabs/Module/Dreport.php:149 -msgid "Options" -msgstr "Opties" +#: ../../Zotlabs/Module/Dreport.php:78 +msgid "channel sync processed" +msgstr "kanaalsync verwerkt" -#: ../../Zotlabs/Module/Dreport.php:150 -msgid "Redeliver" -msgstr "Opnieuw afleveren" +#: ../../Zotlabs/Module/Dreport.php:82 +msgid "queued" +msgstr "in wachtrij" -#: ../../Zotlabs/Module/Editlayout.php:127 -#: ../../Zotlabs/Module/Layouts.php:128 ../../Zotlabs/Module/Layouts.php:188 +#: ../../Zotlabs/Module/Dreport.php:86 +msgid "posted" +msgstr "verstuurd" + +#: ../../Zotlabs/Module/Dreport.php:90 +msgid "accepted for delivery" +msgstr "geaccepteerd om afgeleverd te worden" + +#: ../../Zotlabs/Module/Dreport.php:94 +msgid "updated" +msgstr "geüpdatet" + +#: ../../Zotlabs/Module/Dreport.php:97 +msgid "update ignored" +msgstr "update genegeerd" + +#: ../../Zotlabs/Module/Dreport.php:100 +msgid "permission denied" +msgstr "toegang geweigerd" + +#: ../../Zotlabs/Module/Dreport.php:104 +msgid "recipient not found" +msgstr "ontvanger niet gevonden" + +#: ../../Zotlabs/Module/Dreport.php:107 +msgid "mail recalled" +msgstr "Privébericht ingetrokken" + +#: ../../Zotlabs/Module/Dreport.php:110 +msgid "duplicate mail received" +msgstr "dubbel privébericht ontvangen" + +#: ../../Zotlabs/Module/Dreport.php:113 +msgid "mail delivered" +msgstr "privébericht afgeleverd" + +#: ../../Zotlabs/Module/Editlayout.php:126 +#: ../../Zotlabs/Module/Layouts.php:127 ../../Zotlabs/Module/Layouts.php:186 msgid "Layout Name" msgstr "Naam lay-out" -#: ../../Zotlabs/Module/Editlayout.php:128 -#: ../../Zotlabs/Module/Layouts.php:131 +#: ../../Zotlabs/Module/Editlayout.php:127 +#: ../../Zotlabs/Module/Layouts.php:130 msgid "Layout Description (Optional)" msgstr "Lay-out-omschrijving (optioneel)" -#: ../../Zotlabs/Module/Editlayout.php:136 +#: ../../Zotlabs/Module/Editlayout.php:135 msgid "Edit Layout" msgstr "Lay-out bewerken" -#: ../../Zotlabs/Module/Editwebpage.php:142 +#: ../../Zotlabs/Module/Editwebpage.php:143 msgid "Page link" msgstr "Paginalink" -#: ../../Zotlabs/Module/Editwebpage.php:168 +#: ../../Zotlabs/Module/Editwebpage.php:169 msgid "Edit Webpage" msgstr "Webpagina bewerken" +#: ../../Zotlabs/Module/Follow.php:34 +msgid "Channel added." +msgstr "Kanaal toegevoegd." + +#: ../../Zotlabs/Module/Acl.php:227 +msgid "network" +msgstr "netwerk" + +#: ../../Zotlabs/Module/Acl.php:237 +msgid "RSS" +msgstr "RSS" + #: ../../Zotlabs/Module/Group.php:24 msgid "Privacy group created." msgstr "Privacygroep aangemaakt" @@ -1804,7 +1580,7 @@ msgid "Could not create privacy group." msgstr "Kon privacygroep niet aanmaken" #: ../../Zotlabs/Module/Group.php:42 ../../Zotlabs/Module/Group.php:141 -#: ../../include/items.php:3902 +#: ../../include/items.php:3893 msgid "Privacy group not found." msgstr "Privacygroep niet gevonden" @@ -1848,57 +1624,31 @@ msgstr "Alle kanaalconnecties" msgid "Click on a channel to add or remove." msgstr "Klik op een kanaal om deze toe te voegen of te verwijderen." -#: ../../Zotlabs/Module/Appman.php:37 ../../Zotlabs/Module/Appman.php:53 -msgid "App installed." -msgstr "App geïnstalleerd" +#: ../../Zotlabs/Module/Ffsapi.php:12 +msgid "Share content from Firefox to $Projectname" +msgstr "Deel webpagina's vanuit Firefox met " -#: ../../Zotlabs/Module/Appman.php:46 -msgid "Malformed app." -msgstr "Misvormde app." +#: ../../Zotlabs/Module/Ffsapi.php:15 +msgid "Activate the Firefox $Projectname provider" +msgstr "Activeer de $Projectname-service in Firefox" -#: ../../Zotlabs/Module/Appman.php:104 -msgid "Embed code" -msgstr "Insluitcode" +#: ../../Zotlabs/Module/Api.php:61 ../../Zotlabs/Module/Api.php:85 +msgid "Authorize application connection" +msgstr "Geef toestemming voor applicatiekoppeling" -#: ../../Zotlabs/Module/Appman.php:110 ../../include/widgets.php:107 -msgid "Edit App" -msgstr "App bewerken" +#: ../../Zotlabs/Module/Api.php:62 +msgid "Return to your app and insert this Securty Code:" +msgstr "Ga terug naar je app en voeg deze beveiligingscode in:" -#: ../../Zotlabs/Module/Appman.php:110 -msgid "Create App" -msgstr "App maken" +#: ../../Zotlabs/Module/Api.php:72 +msgid "Please login to continue." +msgstr "Inloggen om verder te kunnen gaan." -#: ../../Zotlabs/Module/Appman.php:115 -msgid "Name of app" -msgstr "Naam van app" - -#: ../../Zotlabs/Module/Appman.php:116 -msgid "Location (URL) of app" -msgstr "Locatie (URL) van app" - -#: ../../Zotlabs/Module/Appman.php:118 -msgid "Photo icon URL" -msgstr "URL van pictogram" - -#: ../../Zotlabs/Module/Appman.php:118 -msgid "80 x 80 pixels - optional" -msgstr "80 x 80 pixels (optioneel)" - -#: ../../Zotlabs/Module/Appman.php:119 -msgid "Categories (optional, comma separated list)" -msgstr "Categorieën (optioneel, door komma's gescheiden lijst)" - -#: ../../Zotlabs/Module/Appman.php:120 -msgid "Version ID" -msgstr "Versie-ID" - -#: ../../Zotlabs/Module/Appman.php:121 -msgid "Price of app" -msgstr "Prijs van de app" - -#: ../../Zotlabs/Module/Appman.php:122 -msgid "Location (URL) to purchase app" -msgstr "Locatie (URL) om de app aan te schaffen" +#: ../../Zotlabs/Module/Api.php:87 +msgid "" +"Do you want to authorize this application to access your posts and contacts," +" and/or create new posts for you?" +msgstr "Wil je deze applicatie toestemming geven om jouw berichten en connecties te zien, en/of nieuwe berichten voor jou te plaatsen?" #: ../../Zotlabs/Module/Help.php:26 msgid "Documentation Search" @@ -1910,8 +1660,8 @@ msgid "Help:" msgstr "Hulp:" #: ../../Zotlabs/Module/Help.php:85 ../../Zotlabs/Module/Help.php:90 -#: ../../Zotlabs/Module/Layouts.php:185 ../../Zotlabs/Lib/Apps.php:225 -#: ../../include/nav.php:161 +#: ../../Zotlabs/Module/Layouts.php:183 ../../Zotlabs/Lib/Apps.php:223 +#: ../../include/nav.php:159 msgid "Help" msgstr "Hulp" @@ -1919,124 +1669,335 @@ msgstr "Hulp" msgid "$Projectname Documentation" msgstr "$Projectname-documentatie" +#: ../../Zotlabs/Module/Filestorage.php:88 +msgid "Permission Denied." +msgstr "Toegang geweigerd" + +#: ../../Zotlabs/Module/Filestorage.php:104 +msgid "File not found." +msgstr "Bestand niet gevonden." + +#: ../../Zotlabs/Module/Filestorage.php:147 +msgid "Edit file permissions" +msgstr "Bestandsrechten bewerken" + +#: ../../Zotlabs/Module/Filestorage.php:156 +msgid "Set/edit permissions" +msgstr "Rechten instellen/bewerken" + +#: ../../Zotlabs/Module/Filestorage.php:157 +msgid "Include all files and sub folders" +msgstr "Toepassen op alle bestanden en submappen" + +#: ../../Zotlabs/Module/Filestorage.php:158 +msgid "Return to file list" +msgstr "Terugkeren naar bestandlijst " + +#: ../../Zotlabs/Module/Filestorage.php:160 +msgid "Copy/paste this code to attach file to a post" +msgstr "Kopieer/plak deze code om het bestand aan een bericht te koppelen" + +#: ../../Zotlabs/Module/Filestorage.php:161 +msgid "Copy/paste this URL to link file from a web page" +msgstr "Kopieer/plak deze URL om het bestand aan een externe webpagina te koppelen" + +#: ../../Zotlabs/Module/Filestorage.php:163 +msgid "Share this file" +msgstr "Dit bestand delen" + +#: ../../Zotlabs/Module/Filestorage.php:164 +msgid "Show URL to this file" +msgstr "Toon URL van dit bestand" + +#: ../../Zotlabs/Module/Filestorage.php:165 +msgid "Notify your contacts about this file" +msgstr "Jouw connecties over dit bestand berichten" + +#: ../../Zotlabs/Module/Apps.php:47 ../../include/widgets.php:102 +#: ../../include/nav.php:163 +msgid "Apps" +msgstr "Apps" + #: ../../Zotlabs/Module/Attach.php:13 msgid "Item not available." msgstr "Item is niet aanwezig." -#: ../../Zotlabs/Module/Pdledit.php:18 -msgid "Layout updated." -msgstr "Lay-out bijgewerkt." +#: ../../Zotlabs/Module/Import.php:32 +#, php-format +msgid "Your service plan only allows %d channels." +msgstr "Jouw abonnement staat maar %d kanalen toe." -#: ../../Zotlabs/Module/Pdledit.php:34 ../../Zotlabs/Module/Pdledit.php:61 -msgid "Edit System Page Description" -msgstr "Systeempagina's bewerken" +#: ../../Zotlabs/Module/Import.php:70 ../../Zotlabs/Module/Import_items.php:42 +msgid "Nothing to import." +msgstr "Niets gevonden om te importeren" -#: ../../Zotlabs/Module/Pdledit.php:56 -msgid "Layout not found." -msgstr "Lay-out niet gevonden." +#: ../../Zotlabs/Module/Import.php:94 ../../Zotlabs/Module/Import_items.php:66 +msgid "Unable to download data from old server" +msgstr "Niet in staat om gegevens van de oude hub te downloaden" -#: ../../Zotlabs/Module/Pdledit.php:62 -msgid "Module Name:" -msgstr "Modulenaam:" +#: ../../Zotlabs/Module/Import.php:100 +#: ../../Zotlabs/Module/Import_items.php:72 +msgid "Imported file is empty." +msgstr "Geïmporteerde bestand is leeg" -#: ../../Zotlabs/Module/Pdledit.php:63 -msgid "Layout Help" -msgstr "Lay-out-hulp" +#: ../../Zotlabs/Module/Import.php:122 +#: ../../Zotlabs/Module/Import_items.php:86 +#, php-format +msgid "Warning: Database versions differ by %1$d updates." +msgstr "Waarschuwing: database-versies lopen %1$d updates achter." -#: ../../Zotlabs/Module/Ffsapi.php:12 -msgid "Share content from Firefox to $Projectname" -msgstr "Deel webpagina's vanuit Firefox met " +#: ../../Zotlabs/Module/Import.php:150 ../../include/import.php:86 +msgid "Cloned channel not found. Import failed." +msgstr "Gekloond kanaal niet gevonden. Importeren mislukt." -#: ../../Zotlabs/Module/Ffsapi.php:15 -msgid "Activate the Firefox $Projectname provider" -msgstr "Activeer de $Projectname-service in Firefox" +#: ../../Zotlabs/Module/Import.php:160 +msgid "No channel. Import failed." +msgstr "Geen kanaal. Importeren mislukt." -#: ../../Zotlabs/Module/Acl.php:312 -msgid "network" -msgstr "netwerk" +#: ../../Zotlabs/Module/Import.php:510 +#: ../../include/Import/import_diaspora.php:142 +msgid "Import completed." +msgstr "Import voltooid." -#: ../../Zotlabs/Module/Acl.php:322 -msgid "RSS" -msgstr "RSS" +#: ../../Zotlabs/Module/Import.php:532 +msgid "You must be logged in to use this feature." +msgstr "Je moet ingelogd zijn om dit onderdeel te kunnen gebruiken." -#: ../../Zotlabs/Module/Filestorage.php:87 -msgid "Permission Denied." -msgstr "Toegang geweigerd" +#: ../../Zotlabs/Module/Import.php:537 +msgid "Import Channel" +msgstr "Kanaal importeren" -#: ../../Zotlabs/Module/Filestorage.php:103 -msgid "File not found." -msgstr "Bestand niet gevonden." +#: ../../Zotlabs/Module/Import.php:538 +msgid "" +"Use this form to import an existing channel from a different server/hub. You" +" may retrieve the channel identity from the old server/hub via the network " +"or provide an export file." +msgstr "Gebruik dit formulier om een bestaand kanaal te importeren van een andere hub. Je kan de kanaal-identiteit van de oude hub via het netwerk ontvangen of een exportbestand verstrekken." -#: ../../Zotlabs/Module/Filestorage.php:146 -msgid "Edit file permissions" -msgstr "Bestandsrechten bewerken" +#: ../../Zotlabs/Module/Import.php:539 +#: ../../Zotlabs/Module/Import_items.php:119 +msgid "File to Upload" +msgstr "Bestand om te uploaden" -#: ../../Zotlabs/Module/Filestorage.php:155 -msgid "Set/edit permissions" -msgstr "Rechten instellen/bewerken" +#: ../../Zotlabs/Module/Import.php:540 +msgid "Or provide the old server/hub details" +msgstr "Of vul de gegevens van de oude hub in" -#: ../../Zotlabs/Module/Filestorage.php:156 -msgid "Include all files and sub folders" -msgstr "Toepassen op alle bestanden en submappen" +#: ../../Zotlabs/Module/Import.php:541 +msgid "Your old identity address (xyz@example.com)" +msgstr "Jouw oude kanaaladres (xyz@example.com)" -#: ../../Zotlabs/Module/Filestorage.php:157 -msgid "Return to file list" -msgstr "Terugkeren naar bestandlijst " +#: ../../Zotlabs/Module/Import.php:542 +msgid "Your old login email address" +msgstr "Het e-mailadres van je oude account" -#: ../../Zotlabs/Module/Filestorage.php:159 -msgid "Copy/paste this code to attach file to a post" -msgstr "Kopieer/plak deze code om het bestand aan een bericht te koppelen" +#: ../../Zotlabs/Module/Import.php:543 +msgid "Your old login password" +msgstr "Wachtwoord van jouw oude account" -#: ../../Zotlabs/Module/Filestorage.php:160 -msgid "Copy/paste this URL to link file from a web page" -msgstr "Kopieer/plak deze URL om het bestand aan een externe webpagina te koppelen" +#: ../../Zotlabs/Module/Import.php:544 +msgid "" +"For either option, please choose whether to make this hub your new primary " +"address, or whether your old location should continue this role. You will be" +" able to post from either location, but only one can be marked as the " +"primary location for files, photos, and media." +msgstr "Voor elke optie geldt dat je moet kiezen of je jouw primaire kanaaladres op deze hub wil instellen of dat jouw oude hub deze rol blijft vervullen." -#: ../../Zotlabs/Module/Filestorage.php:162 -msgid "Share this file" -msgstr "Dit bestand delen" +#: ../../Zotlabs/Module/Import.php:545 +msgid "Make this hub my primary location" +msgstr "Stel deze hub als mijn primaire locatie in" -#: ../../Zotlabs/Module/Filestorage.php:163 -msgid "Show URL to this file" -msgstr "Toon URL van dit bestand" +#: ../../Zotlabs/Module/Import.php:546 +msgid "" +"Import existing posts if possible (experimental - limited by available " +"memory" +msgstr "Importeer bestaande berichten wanneer mogelijk (experimenteel - afhankelijk van beschikbaar servergeheugen)" -#: ../../Zotlabs/Module/Filestorage.php:164 -msgid "Notify your contacts about this file" -msgstr "Jouw connecties over dit bestand berichten" +#: ../../Zotlabs/Module/Import.php:547 +msgid "" +"This process may take several minutes to complete. Please submit the form " +"only once and leave this page open until finished." +msgstr "Dit proces kan enkele minuten in beslag nemen. Klik maar één keer op opslaan en verlaat deze pagina niet alvorens het proces is voltooid." -#: ../../Zotlabs/Module/Layouts.php:183 ../../include/text.php:2240 +#: ../../Zotlabs/Module/Item.php:178 +msgid "Unable to locate original post." +msgstr "Niet in staat om de originele locatie van het bericht te vinden. " + +#: ../../Zotlabs/Module/Item.php:427 +msgid "Empty post discarded." +msgstr "Leeg bericht geannuleerd" + +#: ../../Zotlabs/Module/Item.php:467 +msgid "Executable content type not permitted to this channel." +msgstr "Uitvoerbare bestanden zijn niet toegestaan op dit kanaal." + +#: ../../Zotlabs/Module/Item.php:847 +msgid "Duplicate post suppressed." +msgstr "Dubbel bericht tegengehouden." + +#: ../../Zotlabs/Module/Item.php:977 +msgid "System error. Post not saved." +msgstr "Systeemfout. Bericht niet opgeslagen." + +#: ../../Zotlabs/Module/Item.php:1241 +msgid "Unable to obtain post information from database." +msgstr "Niet in staat om informatie over dit bericht uit de database te verkrijgen." + +#: ../../Zotlabs/Module/Item.php:1248 +#, php-format +msgid "You have reached your limit of %1$.0f top level posts." +msgstr "Je hebt jouw limiet van %1$.0f berichten bereikt." + +#: ../../Zotlabs/Module/Item.php:1255 +#, php-format +msgid "You have reached your limit of %1$.0f webpages." +msgstr "Je hebt jouw limiet van %1$.0f webpagina's bereikt." + +#: ../../Zotlabs/Module/Layouts.php:181 ../../include/text.php:2267 msgid "Layouts" msgstr "Lay-outs" -#: ../../Zotlabs/Module/Layouts.php:185 +#: ../../Zotlabs/Module/Layouts.php:183 msgid "Comanche page description language help" msgstr "Hulp met de paginabeschrijvingstaal Comanche" -#: ../../Zotlabs/Module/Layouts.php:189 +#: ../../Zotlabs/Module/Layouts.php:187 msgid "Layout Description" msgstr "Lay-out-omschrijving" -#: ../../Zotlabs/Module/Layouts.php:190 ../../Zotlabs/Module/Menu.php:114 -#: ../../Zotlabs/Module/Blocks.php:157 ../../Zotlabs/Module/Webpages.php:205 -#: ../../include/page_widgets.php:47 -msgid "Created" -msgstr "Aangemaakt" - -#: ../../Zotlabs/Module/Layouts.php:191 ../../Zotlabs/Module/Menu.php:115 -#: ../../Zotlabs/Module/Blocks.php:158 ../../Zotlabs/Module/Webpages.php:206 -#: ../../include/page_widgets.php:48 -msgid "Edited" -msgstr "Bewerkt" - -#: ../../Zotlabs/Module/Layouts.php:193 ../../Zotlabs/Module/Photos.php:1070 -#: ../../Zotlabs/Module/Blocks.php:161 ../../Zotlabs/Module/Webpages.php:195 -#: ../../include/conversation.php:1219 -msgid "Share" -msgstr "Delen" - -#: ../../Zotlabs/Module/Layouts.php:194 +#: ../../Zotlabs/Module/Layouts.php:192 msgid "Download PDL file" msgstr "Download PDL-bestand" +#: ../../Zotlabs/Module/Home.php:61 ../../Zotlabs/Module/Home.php:69 +#: ../../Zotlabs/Module/Siteinfo.php:65 +msgid "$Projectname" +msgstr "$Projectname" + +#: ../../Zotlabs/Module/Home.php:79 +#, php-format +msgid "Welcome to %s" +msgstr "Welkom op %s" + +#: ../../Zotlabs/Module/Id.php:13 +msgid "First Name" +msgstr "Voornaam" + +#: ../../Zotlabs/Module/Id.php:14 +msgid "Last Name" +msgstr "Achternaam" + +#: ../../Zotlabs/Module/Id.php:15 +msgid "Nickname" +msgstr "Bijnaam" + +#: ../../Zotlabs/Module/Id.php:16 +msgid "Full Name" +msgstr "Volledige naam" + +#: ../../Zotlabs/Module/Id.php:17 ../../Zotlabs/Module/Id.php:18 +#: ../../Zotlabs/Module/Admin.php:1035 ../../Zotlabs/Module/Admin.php:1047 +#: ../../include/network.php:2151 ../../boot.php:1705 +msgid "Email" +msgstr "E-mail" + +#: ../../Zotlabs/Module/Id.php:19 ../../Zotlabs/Module/Id.php:20 +#: ../../Zotlabs/Module/Id.php:21 ../../Zotlabs/Lib/Apps.php:236 +msgid "Profile Photo" +msgstr "Profielfoto" + +#: ../../Zotlabs/Module/Id.php:22 +msgid "Profile Photo 16px" +msgstr "Profielfoto 16px" + +#: ../../Zotlabs/Module/Id.php:23 +msgid "Profile Photo 32px" +msgstr "Profielfoto 32px" + +#: ../../Zotlabs/Module/Id.php:24 +msgid "Profile Photo 48px" +msgstr "Profielfoto 48px" + +#: ../../Zotlabs/Module/Id.php:25 +msgid "Profile Photo 64px" +msgstr "Profielfoto 64px" + +#: ../../Zotlabs/Module/Id.php:26 +msgid "Profile Photo 80px" +msgstr "Profielfoto 80px" + +#: ../../Zotlabs/Module/Id.php:27 +msgid "Profile Photo 128px" +msgstr "Profielfoto 128px" + +#: ../../Zotlabs/Module/Id.php:28 +msgid "Timezone" +msgstr "Tijdzone" + +#: ../../Zotlabs/Module/Id.php:29 ../../Zotlabs/Module/Profiles.php:731 +msgid "Homepage URL" +msgstr "URL homepagina" + +#: ../../Zotlabs/Module/Id.php:30 ../../Zotlabs/Lib/Apps.php:234 +msgid "Language" +msgstr "Taal" + +#: ../../Zotlabs/Module/Id.php:31 +msgid "Birth Year" +msgstr "Geboortejaar" + +#: ../../Zotlabs/Module/Id.php:32 +msgid "Birth Month" +msgstr "Geboortemaand" + +#: ../../Zotlabs/Module/Id.php:33 +msgid "Birth Day" +msgstr "Geboortedag" + +#: ../../Zotlabs/Module/Id.php:34 +msgid "Birthdate" +msgstr "Geboortedatum" + +#: ../../Zotlabs/Module/Id.php:35 ../../Zotlabs/Module/Profiles.php:454 +msgid "Gender" +msgstr "Geslacht" + +#: ../../Zotlabs/Module/Id.php:108 ../../include/selectors.php:49 +#: ../../include/selectors.php:66 +msgid "Male" +msgstr "Man" + +#: ../../Zotlabs/Module/Id.php:110 ../../include/selectors.php:49 +#: ../../include/selectors.php:66 +msgid "Female" +msgstr "Vrouw" + +#: ../../Zotlabs/Module/Impel.php:41 ../../include/bbcode.php:192 +msgid "webpage" +msgstr "Webpagina" + +#: ../../Zotlabs/Module/Impel.php:46 ../../include/bbcode.php:198 +msgid "block" +msgstr "blok" + +#: ../../Zotlabs/Module/Impel.php:51 ../../include/bbcode.php:195 +msgid "layout" +msgstr "lay-out" + +#: ../../Zotlabs/Module/Impel.php:58 ../../include/bbcode.php:201 +msgid "menu" +msgstr "menu" + +#: ../../Zotlabs/Module/Impel.php:196 +#, php-format +msgid "%s element installed" +msgstr "%s onderdeel geïnstalleerd" + +#: ../../Zotlabs/Module/Impel.php:199 +#, php-format +msgid "%s element installation failed" +msgstr "Installatie %s-element mislukt" + #: ../../Zotlabs/Module/Like.php:19 msgid "Like/Dislike" msgstr "Leuk/niet leuk" @@ -2072,65 +2033,1180 @@ msgstr "Kanaal niet beschikbaar." msgid "Previous action reversed." msgstr "Vorige actie omgedraaid" -#: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87 -#: ../../Zotlabs/Module/Tagger.php:47 ../../include/conversation.php:120 -#: ../../include/text.php:1921 +#: ../../Zotlabs/Module/Like.php:371 ../../Zotlabs/Module/Subthread.php:87 +#: ../../Zotlabs/Module/Tagger.php:47 ../../include/text.php:1940 +#: ../../include/conversation.php:120 msgid "photo" msgstr "foto" -#: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87 -#: ../../include/conversation.php:148 ../../include/text.php:1927 +#: ../../Zotlabs/Module/Like.php:371 ../../Zotlabs/Module/Subthread.php:87 +#: ../../include/text.php:1946 ../../include/conversation.php:148 msgid "status" msgstr "bericht" -#: ../../Zotlabs/Module/Like.php:419 ../../include/conversation.php:164 +#: ../../Zotlabs/Module/Like.php:420 ../../include/conversation.php:164 #, php-format msgid "%1$s likes %2$s's %3$s" msgstr "%1$s vindt %3$s van %2$s leuk" -#: ../../Zotlabs/Module/Like.php:421 ../../include/conversation.php:167 +#: ../../Zotlabs/Module/Like.php:422 ../../include/conversation.php:167 #, php-format msgid "%1$s doesn't like %2$s's %3$s" msgstr "%1$s vindt %3$s van %2$s niet leuk" -#: ../../Zotlabs/Module/Like.php:423 +#: ../../Zotlabs/Module/Like.php:424 #, php-format msgid "%1$s agrees with %2$s's %3$s" msgstr "%1$s is het eens met %2$s's %3$s" -#: ../../Zotlabs/Module/Like.php:425 +#: ../../Zotlabs/Module/Like.php:426 #, php-format msgid "%1$s doesn't agree with %2$s's %3$s" msgstr "%1$s is het niet eens met %2$s's %3$s" -#: ../../Zotlabs/Module/Like.php:427 +#: ../../Zotlabs/Module/Like.php:428 #, php-format msgid "%1$s abstains from a decision on %2$s's %3$s" msgstr "%1$s onthoudt zich van een besluit over %2$s's %3$s" -#: ../../Zotlabs/Module/Like.php:429 +#: ../../Zotlabs/Module/Like.php:430 #, php-format msgid "%1$s is attending %2$s's %3$s" msgstr "%1$s is aanwezig op %2$s's %3$s" -#: ../../Zotlabs/Module/Like.php:431 +#: ../../Zotlabs/Module/Like.php:432 #, php-format msgid "%1$s is not attending %2$s's %3$s" msgstr "%1$s is niet aanwezig op %2$s's %3$s" -#: ../../Zotlabs/Module/Like.php:433 +#: ../../Zotlabs/Module/Like.php:434 #, php-format msgid "%1$s may attend %2$s's %3$s" msgstr "%1$s is mogelijk aanwezig op %2$s's %3$s" -#: ../../Zotlabs/Module/Like.php:536 +#: ../../Zotlabs/Module/Like.php:537 msgid "Action completed." msgstr "Actie voltooid" -#: ../../Zotlabs/Module/Like.php:537 +#: ../../Zotlabs/Module/Like.php:538 msgid "Thank you." msgstr "Bedankt" +#: ../../Zotlabs/Module/Import_items.php:102 +msgid "Import completed" +msgstr "Importeren voltooid" + +#: ../../Zotlabs/Module/Import_items.php:117 +msgid "Import Items" +msgstr "Importeer items" + +#: ../../Zotlabs/Module/Import_items.php:118 +msgid "" +"Use this form to import existing posts and content from an export file." +msgstr "Gebruik dit formulier om bestaande berichten en andere inhoud vanuit een exportbestand te importeren." + +#: ../../Zotlabs/Module/Invite.php:29 +msgid "Total invitation limit exceeded." +msgstr "Limiet voor aantal uitnodigingen overschreden." + +#: ../../Zotlabs/Module/Invite.php:53 +#, php-format +msgid "%s : Not a valid email address." +msgstr "%s : Geen geldig e-mailadres." + +#: ../../Zotlabs/Module/Invite.php:63 +msgid "Please join us on $Projectname" +msgstr "Uitnodiging voor $Projectname" + +#: ../../Zotlabs/Module/Invite.php:74 +msgid "Invitation limit exceeded. Please contact your site administrator." +msgstr "Limiet voor aantal uitnodigingen overschreden. Neem contact op met je hub-beheerder." + +#: ../../Zotlabs/Module/Invite.php:79 +#, php-format +msgid "%s : Message delivery failed." +msgstr "%s: Aflevering bericht mislukt." + +#: ../../Zotlabs/Module/Invite.php:83 +#, php-format +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "%d bericht verzonden." +msgstr[1] "%d berichten verzonden." + +#: ../../Zotlabs/Module/Invite.php:102 +msgid "You have no more invitations available" +msgstr "Je hebt geen uitnodigingen meer beschikbaar" + +#: ../../Zotlabs/Module/Invite.php:133 +msgid "Send invitations" +msgstr "Uitnodigingen verzenden" + +#: ../../Zotlabs/Module/Invite.php:134 +msgid "Enter email addresses, one per line:" +msgstr "Voer e-mailadressen in, één per regel:" + +#: ../../Zotlabs/Module/Invite.php:135 ../../Zotlabs/Module/Mail.php:249 +msgid "Your message:" +msgstr "Jouw bericht:" + +#: ../../Zotlabs/Module/Invite.php:136 +msgid "Please join my community on $Projectname." +msgstr "Hierbij nodig ik je uit om mij, en andere vrienden en kennissen, op $Projectname te vergezellen. Lees meer over $Projectname op http://hubzilla.org" + +#: ../../Zotlabs/Module/Invite.php:138 +msgid "You will need to supply this invitation code:" +msgstr "Je moet deze uitnodigingscode opgeven:" + +#: ../../Zotlabs/Module/Invite.php:139 +msgid "" +"1. Register at any $Projectname location (they are all inter-connected)" +msgstr "1. Registreer je op een willekeurige $Projectname-hub (ze zijn allemaal onderling met elkaar verbonden):" + +#: ../../Zotlabs/Module/Invite.php:141 +msgid "2. Enter my $Projectname network address into the site searchbar." +msgstr "2. Nadat je bent ingelogd en een kanaal hebt aangemaakt kan je mijn $Projectname-kanaaladres in het zoekveld invullen:" + +#: ../../Zotlabs/Module/Invite.php:142 +msgid "or visit" +msgstr "of bezoek" + +#: ../../Zotlabs/Module/Invite.php:144 +msgid "3. Click [Connect]" +msgstr "3. Klik op [+ Verbinden]" + +#: ../../Zotlabs/Module/Lockview.php:61 +msgid "Remote privacy information not available." +msgstr "Privacy-informatie op afstand niet beschikbaar." + +#: ../../Zotlabs/Module/Lockview.php:82 +msgid "Visible to:" +msgstr "Zichtbaar voor:" + +#: ../../Zotlabs/Module/Locs.php:25 ../../Zotlabs/Module/Locs.php:54 +msgid "Location not found." +msgstr "Locatie niet gevonden." + +#: ../../Zotlabs/Module/Locs.php:62 +msgid "Location lookup failed." +msgstr "Opzoeken locatie mislukt" + +#: ../../Zotlabs/Module/Locs.php:66 +msgid "" +"Please select another location to become primary before removing the primary" +" location." +msgstr "Kies eerst een andere primaire locatie alvorens de huidige primaire locatie te verwijderen." + +#: ../../Zotlabs/Module/Locs.php:95 +msgid "Syncing locations" +msgstr "Locaties synchronizeren" + +#: ../../Zotlabs/Module/Locs.php:105 +msgid "No locations found." +msgstr "Geen locaties gevonden." + +#: ../../Zotlabs/Module/Locs.php:116 +msgid "Manage Channel Locations" +msgstr "Kanaallocaties beheren" + +#: ../../Zotlabs/Module/Locs.php:118 ../../Zotlabs/Module/Profiles.php:470 +#: ../../Zotlabs/Module/Admin.php:1224 +msgid "Address" +msgstr "Kanaaladres" + +#: ../../Zotlabs/Module/Locs.php:119 +msgid "Primary" +msgstr "Primair" + +#: ../../Zotlabs/Module/Locs.php:120 ../../Zotlabs/Module/Menu.php:113 +msgid "Drop" +msgstr "Verwijderen" + +#: ../../Zotlabs/Module/Locs.php:122 +msgid "Sync Now" +msgstr "Nu synchroniseren" + +#: ../../Zotlabs/Module/Locs.php:123 +msgid "Please wait several minutes between consecutive operations." +msgstr "Wacht enkele minuten tussen opeenvolgende handelingen." + +#: ../../Zotlabs/Module/Locs.php:124 +msgid "" +"When possible, drop a location by logging into that website/hub and removing" +" your channel." +msgstr "Wij adviseren, wanneer dit (nog) mogelijk is, de locatie te verwijderen door op de hub van de kloon in te loggen en het kanaal daar te verwijderen." + +#: ../../Zotlabs/Module/Locs.php:125 +msgid "Use this form to drop the location if the hub is no longer operating." +msgstr "Gebruik dit formulier om de locatie te verwijderen wanneer de hub van de kloon niet meer operationeel is." + +#: ../../Zotlabs/Module/Magic.php:71 +msgid "Hub not found." +msgstr "Hub niet gevonden." + +#: ../../Zotlabs/Module/Mail.php:38 +msgid "Unable to lookup recipient." +msgstr "Niet in staat om ontvanger op te zoeken." + +#: ../../Zotlabs/Module/Mail.php:45 +msgid "Unable to communicate with requested channel." +msgstr "Niet in staat om met het aangevraagde kanaal te communiceren." + +#: ../../Zotlabs/Module/Mail.php:52 +msgid "Cannot verify requested channel." +msgstr "Kan opgevraagd kanaal niet verifieren" + +#: ../../Zotlabs/Module/Mail.php:78 +msgid "Selected channel has private message restrictions. Send failed." +msgstr "Gekozen kanaal heeft restricties voor privéberichten. Verzenden mislukt." + +#: ../../Zotlabs/Module/Mail.php:143 +msgid "Messages" +msgstr "Berichten" + +#: ../../Zotlabs/Module/Mail.php:178 +msgid "Message recalled." +msgstr "Bericht ingetrokken." + +#: ../../Zotlabs/Module/Mail.php:191 +msgid "Conversation removed." +msgstr "Conversatie verwijderd" + +#: ../../Zotlabs/Module/Mail.php:206 ../../Zotlabs/Module/Mail.php:315 +msgid "Expires YYYY-MM-DD HH:MM" +msgstr "Verloopt op DD-MM-YYYY om HH:MM" + +#: ../../Zotlabs/Module/Mail.php:234 +msgid "Requested channel is not in this network" +msgstr "Opgevraagd kanaal is niet in dit netwerk beschikbaar" + +#: ../../Zotlabs/Module/Mail.php:242 +msgid "Send Private Message" +msgstr "Privébericht versturen" + +#: ../../Zotlabs/Module/Mail.php:243 ../../Zotlabs/Module/Mail.php:368 +msgid "To:" +msgstr "Aan:" + +#: ../../Zotlabs/Module/Mail.php:246 ../../Zotlabs/Module/Mail.php:370 +msgid "Subject:" +msgstr "Onderwerp:" + +#: ../../Zotlabs/Module/Mail.php:251 ../../Zotlabs/Module/Mail.php:376 +#: ../../include/conversation.php:1220 +msgid "Attach file" +msgstr "Bestand toevoegen" + +#: ../../Zotlabs/Module/Mail.php:253 +msgid "Send" +msgstr "Verzenden" + +#: ../../Zotlabs/Module/Mail.php:256 ../../Zotlabs/Module/Mail.php:381 +#: ../../include/conversation.php:1251 +msgid "Set expiration date" +msgstr "Verloopdatum instellen" + +#: ../../Zotlabs/Module/Mail.php:340 +msgid "Delete message" +msgstr "Bericht verwijderen" + +#: ../../Zotlabs/Module/Mail.php:341 +msgid "Delivery report" +msgstr "Afleveringsrapport" + +#: ../../Zotlabs/Module/Mail.php:342 +msgid "Recall message" +msgstr "Bericht intrekken" + +#: ../../Zotlabs/Module/Mail.php:344 +msgid "Message has been recalled." +msgstr "Bericht is ingetrokken." + +#: ../../Zotlabs/Module/Mail.php:361 +msgid "Delete Conversation" +msgstr "Verwijder conversatie" + +#: ../../Zotlabs/Module/Mail.php:363 +msgid "" +"No secure communications available. You may be able to " +"respond from the sender's profile page." +msgstr "Geen veilige communicatie beschikbaar. Mogelijk kan je reageren op de kanaalpagina van de afzender." + +#: ../../Zotlabs/Module/Mail.php:367 +msgid "Send Reply" +msgstr "Antwoord versturen" + +#: ../../Zotlabs/Module/Mail.php:372 +#, php-format +msgid "Your message for %s (%s):" +msgstr "Jouw privébericht aan %s (%s):" + +#: ../../Zotlabs/Module/Manage.php:136 +#: ../../Zotlabs/Module/New_channel.php:121 +#, php-format +msgid "You have created %1$.0f of %2$.0f allowed channels." +msgstr "Je hebt %1$.0f van totaal %2$.0f toegestane kanalen aangemaakt." + +#: ../../Zotlabs/Module/Manage.php:143 +msgid "Create a new channel" +msgstr "Nieuw kanaal aanmaken" + +#: ../../Zotlabs/Module/Manage.php:164 ../../Zotlabs/Lib/Apps.php:213 +#: ../../include/nav.php:206 +msgid "Channel Manager" +msgstr "Kanaalbeheer" + +#: ../../Zotlabs/Module/Manage.php:165 +msgid "Current Channel" +msgstr "Huidig kanaal" + +#: ../../Zotlabs/Module/Manage.php:167 +msgid "Switch to one of your channels by selecting it." +msgstr "Activeer een van jouw andere kanalen door er op te klikken." + +#: ../../Zotlabs/Module/Manage.php:168 +msgid "Default Channel" +msgstr "Standaardkanaal" + +#: ../../Zotlabs/Module/Manage.php:169 +msgid "Make Default" +msgstr "Als standaard instellen" + +#: ../../Zotlabs/Module/Manage.php:172 +#, php-format +msgid "%d new messages" +msgstr "%d nieuwe berichten" + +#: ../../Zotlabs/Module/Manage.php:173 +#, php-format +msgid "%d new introductions" +msgstr "%d nieuwe connectieverzoeken" + +#: ../../Zotlabs/Module/Manage.php:175 +msgid "Delegated Channel" +msgstr "Uitbesteed kanaal" + +#: ../../Zotlabs/Module/Lostpass.php:19 +msgid "No valid account found." +msgstr "Geen geldige account gevonden." + +#: ../../Zotlabs/Module/Lostpass.php:33 +msgid "Password reset request issued. Check your email." +msgstr "Het verzoek om je wachtwoord opnieuw in te stellen is behandeld. Controleer je e-mail." + +#: ../../Zotlabs/Module/Lostpass.php:39 ../../Zotlabs/Module/Lostpass.php:107 +#, php-format +msgid "Site Member (%s)" +msgstr "Lid van hub (%s)" + +#: ../../Zotlabs/Module/Lostpass.php:44 +#, php-format +msgid "Password reset requested at %s" +msgstr "Verzoek tot het opnieuw instellen van een wachtwoord op %s is ingediend" + +#: ../../Zotlabs/Module/Lostpass.php:67 +msgid "" +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." +msgstr "Het verzoek kon niet worden geverifieerd. (Mogelijk heb je al eerder een verzoek ingediend.) Opnieuw instellen van wachtwoord is mislukt." + +#: ../../Zotlabs/Module/Lostpass.php:90 ../../boot.php:1711 +msgid "Password Reset" +msgstr "Wachtwoord vergeten?" + +#: ../../Zotlabs/Module/Lostpass.php:91 +msgid "Your password has been reset as requested." +msgstr "Jouw wachtwoord is opnieuw ingesteld zoals je had verzocht." + +#: ../../Zotlabs/Module/Lostpass.php:92 +msgid "Your new password is" +msgstr "Jouw nieuwe wachtwoord is" + +#: ../../Zotlabs/Module/Lostpass.php:93 +msgid "Save or copy your new password - and then" +msgstr "Kopieer of sla je nieuwe wachtwoord op - en" + +#: ../../Zotlabs/Module/Lostpass.php:94 +msgid "click here to login" +msgstr "klik dan hier om in te loggen" + +#: ../../Zotlabs/Module/Lostpass.php:95 +msgid "" +"Your password may be changed from the Settings page after " +"successful login." +msgstr "Jouw wachtwoord kan worden veranderd onder instellingen, nadat je succesvol bent ingelogd." + +#: ../../Zotlabs/Module/Lostpass.php:112 +#, php-format +msgid "Your password has changed at %s" +msgstr "Jouw wachtwoord op %s is veranderd" + +#: ../../Zotlabs/Module/Lostpass.php:127 +msgid "Forgot your Password?" +msgstr "Wachtwoord vergeten?" + +#: ../../Zotlabs/Module/Lostpass.php:128 +msgid "" +"Enter your email address and submit to have your password reset. Then check " +"your email for further instructions." +msgstr "Voer je e-mailadres in en verstuur deze om je wachtwoord opnieuw in te stellen. Controleer hierna hier je e-mail voor verdere instructies." + +#: ../../Zotlabs/Module/Lostpass.php:129 +msgid "Email Address" +msgstr "E-mailadres" + +#: ../../Zotlabs/Module/Lostpass.php:130 +msgid "Reset" +msgstr "Opnieuw instellen" + +#: ../../Zotlabs/Module/Menu.php:49 +msgid "Unable to update menu." +msgstr "Niet in staat om menu aan te passen" + +#: ../../Zotlabs/Module/Menu.php:60 +msgid "Unable to create menu." +msgstr "Niet in staat om menu aan te maken." + +#: ../../Zotlabs/Module/Menu.php:98 ../../Zotlabs/Module/Menu.php:110 +msgid "Menu Name" +msgstr "Menunaam" + +#: ../../Zotlabs/Module/Menu.php:98 +msgid "Unique name (not visible on webpage) - required" +msgstr "Unieke naam vereist (niet zichtbaar op webpagina)" + +#: ../../Zotlabs/Module/Menu.php:99 ../../Zotlabs/Module/Menu.php:111 +msgid "Menu Title" +msgstr "Menutitel" + +#: ../../Zotlabs/Module/Menu.php:99 +msgid "Visible on webpage - leave empty for no title" +msgstr "Zichtbaar op webpagina (leeg laten voor geen titel)" + +#: ../../Zotlabs/Module/Menu.php:100 +msgid "Allow Bookmarks" +msgstr "Bladwijzers toestaan" + +#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 +msgid "Menu may be used to store saved bookmarks" +msgstr "Menu kan gebruikt worden om bladwijzers in op te slaan" + +#: ../../Zotlabs/Module/Menu.php:101 ../../Zotlabs/Module/Menu.php:159 +msgid "Submit and proceed" +msgstr "Opslaan en doorgaan" + +#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2266 +msgid "Menus" +msgstr "Menu's" + +#: ../../Zotlabs/Module/Menu.php:117 +msgid "Bookmarks allowed" +msgstr "Bladwijzers toegestaan" + +#: ../../Zotlabs/Module/Menu.php:119 +msgid "Delete this menu" +msgstr "Menu verwijderen" + +#: ../../Zotlabs/Module/Menu.php:120 ../../Zotlabs/Module/Menu.php:154 +msgid "Edit menu contents" +msgstr "Bewerk de inhoud van het menu" + +#: ../../Zotlabs/Module/Menu.php:121 +msgid "Edit this menu" +msgstr "Dit menu bewerken" + +#: ../../Zotlabs/Module/Menu.php:136 +msgid "Menu could not be deleted." +msgstr "Menu kon niet verwijderd worden." + +#: ../../Zotlabs/Module/Menu.php:144 ../../Zotlabs/Module/Mitem.php:28 +msgid "Menu not found." +msgstr "Menu niet gevonden." + +#: ../../Zotlabs/Module/Menu.php:149 +msgid "Edit Menu" +msgstr "Menu bewerken" + +#: ../../Zotlabs/Module/Menu.php:153 +msgid "Add or remove entries to this menu" +msgstr "Items aan dit menu toevoegen of verwijder" + +#: ../../Zotlabs/Module/Menu.php:155 +msgid "Menu name" +msgstr "Naam van menu" + +#: ../../Zotlabs/Module/Menu.php:155 +msgid "Must be unique, only seen by you" +msgstr "Moet uniek zijn en is alleen zichtbaar voor jou." + +#: ../../Zotlabs/Module/Menu.php:156 +msgid "Menu title" +msgstr "Titel van menu" + +#: ../../Zotlabs/Module/Menu.php:156 +msgid "Menu title as seen by others" +msgstr "Titel van menu zoals anderen dat zien." + +#: ../../Zotlabs/Module/Menu.php:157 +msgid "Allow bookmarks" +msgstr "Bladwijzers toestaan" + +#: ../../Zotlabs/Module/Menu.php:166 ../../Zotlabs/Module/Mitem.php:120 +#: ../../Zotlabs/Module/Xchan.php:41 +msgid "Not found." +msgstr "Niet gevonden." + +#: ../../Zotlabs/Module/Mood.php:67 ../../include/conversation.php:260 +#, php-format +msgctxt "mood" +msgid "%1$s is %2$s" +msgstr "%1$s is %2$s" + +#: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Lib/Apps.php:225 +msgid "Mood" +msgstr "Stemming" + +#: ../../Zotlabs/Module/Mood.php:136 +msgid "Set your current mood and tell your friends" +msgstr "Noteer je huidige stemming en toon het aan je connecties" + +#: ../../Zotlabs/Module/Match.php:26 +msgid "Profile Match" +msgstr "Profielovereenkomst" + +#: ../../Zotlabs/Module/Match.php:35 +msgid "No keywords to match. Please add keywords to your default profile." +msgstr "Je hebt geen trefwoorden waarmee overeenkomsten gevonden kunnen worden. Voeg enkele trefwoorden aan je standaardprofiel toe." + +#: ../../Zotlabs/Module/Match.php:67 +msgid "is interested in:" +msgstr "is geïnteresseerd in:" + +#: ../../Zotlabs/Module/Match.php:74 +msgid "No matches" +msgstr "Geen overeenkomsten" + +#: ../../Zotlabs/Module/Network.php:96 +msgid "No such group" +msgstr "Collectie niet gevonden" + +#: ../../Zotlabs/Module/Network.php:136 +msgid "No such channel" +msgstr "Niet zo'n kanaal" + +#: ../../Zotlabs/Module/Network.php:141 +msgid "forum" +msgstr "forum" + +#: ../../Zotlabs/Module/Network.php:153 +msgid "Search Results For:" +msgstr "Zoekresultaten voor:" + +#: ../../Zotlabs/Module/Network.php:217 +msgid "Privacy group is empty" +msgstr "Privacygroep is leeg" + +#: ../../Zotlabs/Module/Network.php:226 +msgid "Privacy group: " +msgstr "Privacygroep: " + +#: ../../Zotlabs/Module/Network.php:252 +msgid "Invalid connection." +msgstr "Ongeldige connectie." + +#: ../../Zotlabs/Module/Notify.php:57 +#: ../../Zotlabs/Module/Notifications.php:98 +msgid "No more system notifications." +msgstr "Geen systeemnotificaties meer." + +#: ../../Zotlabs/Module/Notify.php:61 +#: ../../Zotlabs/Module/Notifications.php:102 +msgid "System Notifications" +msgstr "Systeemnotificaties" + +#: ../../Zotlabs/Module/Mitem.php:52 +msgid "Unable to create element." +msgstr "Niet in staat om onderdeel aan te maken." + +#: ../../Zotlabs/Module/Mitem.php:76 +msgid "Unable to update menu element." +msgstr "Menu-onderdeel kan niet worden geüpdatet." + +#: ../../Zotlabs/Module/Mitem.php:92 +msgid "Unable to add menu element." +msgstr "Menu-onderdeel kan niet worden toegevoegd." + +#: ../../Zotlabs/Module/Mitem.php:153 ../../Zotlabs/Module/Mitem.php:226 +msgid "Menu Item Permissions" +msgstr "Permissies menu-item" + +#: ../../Zotlabs/Module/Mitem.php:154 ../../Zotlabs/Module/Mitem.php:227 +#: ../../Zotlabs/Module/Settings.php:1068 +msgid "(click to open/close)" +msgstr "(klik om te openen/sluiten)" + +#: ../../Zotlabs/Module/Mitem.php:156 ../../Zotlabs/Module/Mitem.php:172 +msgid "Link Name" +msgstr "Linknaam" + +#: ../../Zotlabs/Module/Mitem.php:157 ../../Zotlabs/Module/Mitem.php:231 +msgid "Link or Submenu Target" +msgstr "Linkdoel of submenu-doel" + +#: ../../Zotlabs/Module/Mitem.php:157 +msgid "Enter URL of the link or select a menu name to create a submenu" +msgstr "Geef de URL van de link of kies een menunaam om een submenu aan te maken" + +#: ../../Zotlabs/Module/Mitem.php:158 ../../Zotlabs/Module/Mitem.php:232 +msgid "Use magic-auth if available" +msgstr "Gebruik magic-auth wanneer beschikbaar" + +#: ../../Zotlabs/Module/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:233 +msgid "Open link in new window" +msgstr "Open link in nieuw venster" + +#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:234 +msgid "Order in list" +msgstr "Volgorde in lijst" + +#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:234 +msgid "Higher numbers will sink to bottom of listing" +msgstr "Hogere nummers komen onderaan de lijst terecht" + +#: ../../Zotlabs/Module/Mitem.php:161 +msgid "Submit and finish" +msgstr "Opslaan en afsluiten" + +#: ../../Zotlabs/Module/Mitem.php:162 +msgid "Submit and continue" +msgstr "Opslaan en doorgaan" + +#: ../../Zotlabs/Module/Mitem.php:170 +msgid "Menu:" +msgstr "Menu:" + +#: ../../Zotlabs/Module/Mitem.php:173 +msgid "Link Target" +msgstr "Linkdoel" + +#: ../../Zotlabs/Module/Mitem.php:176 +msgid "Edit menu" +msgstr "Menu bewerken" + +#: ../../Zotlabs/Module/Mitem.php:179 +msgid "Edit element" +msgstr "Onderdeel bewerken" + +#: ../../Zotlabs/Module/Mitem.php:180 +msgid "Drop element" +msgstr "Onderdeel verwijderen" + +#: ../../Zotlabs/Module/Mitem.php:181 +msgid "New element" +msgstr "Nieuw element" + +#: ../../Zotlabs/Module/Mitem.php:182 +msgid "Edit this menu container" +msgstr "Deze menu-container bewerken" + +#: ../../Zotlabs/Module/Mitem.php:183 +msgid "Add menu element" +msgstr "Menu-element toevoegen" + +#: ../../Zotlabs/Module/Mitem.php:184 +msgid "Delete this menu item" +msgstr "Dit menu-item verwijderen" + +#: ../../Zotlabs/Module/Mitem.php:185 +msgid "Edit this menu item" +msgstr "Dit menu-item bewerken" + +#: ../../Zotlabs/Module/Mitem.php:202 +msgid "Menu item not found." +msgstr "Menu-item niet gevonden." + +#: ../../Zotlabs/Module/Mitem.php:215 +msgid "Menu item deleted." +msgstr "Menu-item verwijderd." + +#: ../../Zotlabs/Module/Mitem.php:217 +msgid "Menu item could not be deleted." +msgstr "Menu-item kon niet worden verwijderd." + +#: ../../Zotlabs/Module/Mitem.php:224 +msgid "Edit Menu Element" +msgstr "Menu-element bewerken" + +#: ../../Zotlabs/Module/Mitem.php:230 +msgid "Link text" +msgstr "Linktekst" + +#: ../../Zotlabs/Module/New_channel.php:128 +#: ../../Zotlabs/Module/Register.php:231 +msgid "Name or caption" +msgstr "Naam" + +#: ../../Zotlabs/Module/New_channel.php:128 +#: ../../Zotlabs/Module/Register.php:231 +msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\"" +msgstr "Voorbeelden: \"Jan Pietersen\", \"Willems weblog\", \"Computerforum\"" + +#: ../../Zotlabs/Module/New_channel.php:130 +#: ../../Zotlabs/Module/Register.php:233 +msgid "Choose a short nickname" +msgstr "Korte bijnaam" + +#: ../../Zotlabs/Module/New_channel.php:130 +#: ../../Zotlabs/Module/Register.php:233 +#, php-format +msgid "" +"Your nickname will be used to create an easy to remember channel address " +"e.g. nickname%s" +msgstr "Deze bijnaam wordt gebruikt om een makkelijk te onthouden kanaaladres van jouw kanaal aan te maken, die je dan met anderen kunt delen. Bijvoorbeeld: bijnaam%s" + +#: ../../Zotlabs/Module/New_channel.php:132 +#: ../../Zotlabs/Module/Register.php:235 +msgid "Channel role and privacy" +msgstr "Kanaaltype en privacy" + +#: ../../Zotlabs/Module/New_channel.php:132 +#: ../../Zotlabs/Module/Register.php:235 +msgid "Select a channel role with your privacy requirements." +msgstr "Kies een kanaaltype met het door jou gewenste privacyniveau." + +#: ../../Zotlabs/Module/New_channel.php:132 +#: ../../Zotlabs/Module/Register.php:235 +msgid "Read more about roles" +msgstr "Lees meer over kanaaltypes" + +#: ../../Zotlabs/Module/New_channel.php:135 +msgid "Create Channel" +msgstr "Kanaal aanmaken" + +#: ../../Zotlabs/Module/New_channel.php:136 +msgid "" +"A channel is your identity on this network. It can represent a person, a " +"blog, or a forum to name a few. Channels can make connections with other " +"channels to share information with highly detailed permissions." +msgstr "Een kanaal is jouw identiteit in dit netwerk. Het kan bijvoorbeeld een persoon, een blog of een forum vertegenwoordigen. Door met elkaar te verbinden kunnen kanalen, met behulp van uitgebreide permissies, informatie uitwisselen." + +#: ../../Zotlabs/Module/New_channel.php:137 +msgid "" +"or import an existing channel from another location." +msgstr "Of importeer een bestaand kanaal vanaf een andere locatie" + +#: ../../Zotlabs/Module/Notifications.php:30 +msgid "Invalid request identifier." +msgstr "Ongeldige verzoek identificator (request identifier)" + +#: ../../Zotlabs/Module/Notifications.php:39 +msgid "Discard" +msgstr "Annuleren" + +#: ../../Zotlabs/Module/Notifications.php:103 ../../include/nav.php:191 +msgid "Mark all system notifications seen" +msgstr "Markeer alle systeemnotificaties als bekeken" + +#: ../../Zotlabs/Module/Photos.php:84 +msgid "Page owner information could not be retrieved." +msgstr "Informatie over de pagina-eigenaar werd niet ontvangen." + +#: ../../Zotlabs/Module/Photos.php:99 ../../Zotlabs/Module/Photos.php:743 +#: ../../Zotlabs/Module/Profile_photo.php:114 +#: ../../Zotlabs/Module/Profile_photo.php:206 +#: ../../Zotlabs/Module/Profile_photo.php:294 +#: ../../include/photo/photo_driver.php:718 +msgid "Profile Photos" +msgstr "Profielfoto's" + +#: ../../Zotlabs/Module/Photos.php:105 ../../Zotlabs/Module/Photos.php:149 +msgid "Album not found." +msgstr "Album niet gevonden." + +#: ../../Zotlabs/Module/Photos.php:132 +msgid "Delete Album" +msgstr "Verwijder album" + +#: ../../Zotlabs/Module/Photos.php:153 +msgid "" +"Multiple storage folders exist with this album name, but within different " +"directories. Please remove the desired folder or folders using the Files " +"manager" +msgstr "Er bestaan meerdere submappen met deze albumnaam, maar verspreidt over verschillende mappen. Verwijder de gewenste map(pen) met de bestandsbeheerder." + +#: ../../Zotlabs/Module/Photos.php:210 ../../Zotlabs/Module/Photos.php:1053 +msgid "Delete Photo" +msgstr "Verwijder foto" + +#: ../../Zotlabs/Module/Photos.php:533 +msgid "No photos selected" +msgstr "Geen foto's geselecteerd" + +#: ../../Zotlabs/Module/Photos.php:582 +msgid "Access to this item is restricted." +msgstr "Toegang tot dit item is beperkt." + +#: ../../Zotlabs/Module/Photos.php:621 +#, php-format +msgid "%1$.2f MB of %2$.2f MB photo storage used." +msgstr "%1$.2f MB van %2$.2f MB aan foto-opslag gebruikt." + +#: ../../Zotlabs/Module/Photos.php:624 +#, php-format +msgid "%1$.2f MB photo storage used." +msgstr "%1$.2f MB aan foto-opslag gebruikt." + +#: ../../Zotlabs/Module/Photos.php:660 +msgid "Upload Photos" +msgstr "Foto's uploaden" + +#: ../../Zotlabs/Module/Photos.php:664 +msgid "Enter an album name" +msgstr "Vul een albumnaam in" + +#: ../../Zotlabs/Module/Photos.php:665 +msgid "or select an existing album (doubleclick)" +msgstr "of kies een bestaand album (dubbelklikken)" + +#: ../../Zotlabs/Module/Photos.php:666 +msgid "Create a status post for this upload" +msgstr "Plaats een bericht voor deze upload." + +#: ../../Zotlabs/Module/Photos.php:667 +msgid "Caption (optional):" +msgstr "Bijschrift (optioneel):" + +#: ../../Zotlabs/Module/Photos.php:668 +msgid "Description (optional):" +msgstr "Omschrijving (optioneel):" + +#: ../../Zotlabs/Module/Photos.php:695 +msgid "Album name could not be decoded" +msgstr "Albumnaam kon niet gedecodeerd worden" + +#: ../../Zotlabs/Module/Photos.php:743 +msgid "Contact Photos" +msgstr "Connectiefoto's" + +#: ../../Zotlabs/Module/Photos.php:766 +msgid "Show Newest First" +msgstr "Nieuwste eerst weergeven" + +#: ../../Zotlabs/Module/Photos.php:768 +msgid "Show Oldest First" +msgstr "Oudste eerst weergeven" + +#: ../../Zotlabs/Module/Photos.php:792 ../../Zotlabs/Module/Photos.php:1331 +#: ../../include/widgets.php:1499 +msgid "View Photo" +msgstr "Foto weergeven" + +#: ../../Zotlabs/Module/Photos.php:823 ../../include/widgets.php:1516 +msgid "Edit Album" +msgstr "Album bewerken" + +#: ../../Zotlabs/Module/Photos.php:870 +msgid "Permission denied. Access to this item may be restricted." +msgstr "Toegang geweigerd. Toegang tot dit item kan zijn beperkt." + +#: ../../Zotlabs/Module/Photos.php:872 +msgid "Photo not available" +msgstr "Foto niet aanwezig" + +#: ../../Zotlabs/Module/Photos.php:930 +msgid "Use as profile photo" +msgstr "Als profielfoto gebruiken" + +#: ../../Zotlabs/Module/Photos.php:931 +msgid "Use as cover photo" +msgstr "Als omslagfoto gebruiken" + +#: ../../Zotlabs/Module/Photos.php:938 +msgid "Private Photo" +msgstr "Privéfoto" + +#: ../../Zotlabs/Module/Photos.php:953 +msgid "View Full Size" +msgstr "Volledige grootte weergeven" + +#: ../../Zotlabs/Module/Photos.php:998 ../../Zotlabs/Module/Admin.php:1437 +#: ../../Zotlabs/Module/Tagrm.php:137 +msgid "Remove" +msgstr "Verwijderen" + +#: ../../Zotlabs/Module/Photos.php:1032 +msgid "Edit photo" +msgstr "Foto bewerken" + +#: ../../Zotlabs/Module/Photos.php:1034 +msgid "Rotate CW (right)" +msgstr "Draai met de klok mee (naar rechts)" + +#: ../../Zotlabs/Module/Photos.php:1035 +msgid "Rotate CCW (left)" +msgstr "Draai tegen de klok in (naar links)" + +#: ../../Zotlabs/Module/Photos.php:1038 +msgid "Enter a new album name" +msgstr "Vul een nieuwe albumnaam in" + +#: ../../Zotlabs/Module/Photos.php:1039 +msgid "or select an existing one (doubleclick)" +msgstr "of kies een bestaand album (dubbelklikken)" + +#: ../../Zotlabs/Module/Photos.php:1042 +msgid "Caption" +msgstr "Bijschrift" + +#: ../../Zotlabs/Module/Photos.php:1044 +msgid "Add a Tag" +msgstr "Tag toevoegen" + +#: ../../Zotlabs/Module/Photos.php:1048 +msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" +msgstr "Voorbeeld: @bob, @Barbara_Jansen, @jan@voorbeeld.nl" + +#: ../../Zotlabs/Module/Photos.php:1051 +msgid "Flag as adult in album view" +msgstr "Markeer als voor volwassenen in albumweergave" + +#: ../../Zotlabs/Module/Photos.php:1070 ../../Zotlabs/Lib/ThreadItem.php:261 +msgid "I like this (toggle)" +msgstr "Vind ik leuk" + +#: ../../Zotlabs/Module/Photos.php:1071 ../../Zotlabs/Lib/ThreadItem.php:262 +msgid "I don't like this (toggle)" +msgstr "Vind ik niet leuk" + +#: ../../Zotlabs/Module/Photos.php:1073 ../../Zotlabs/Lib/ThreadItem.php:397 +#: ../../include/conversation.php:740 +msgid "Please wait" +msgstr "Even wachten" + +#: ../../Zotlabs/Module/Photos.php:1089 ../../Zotlabs/Module/Photos.php:1207 +#: ../../Zotlabs/Lib/ThreadItem.php:707 +msgid "This is you" +msgstr "Dit ben jij" + +#: ../../Zotlabs/Module/Photos.php:1091 ../../Zotlabs/Module/Photos.php:1209 +#: ../../Zotlabs/Lib/ThreadItem.php:709 ../../include/js_strings.php:6 +msgid "Comment" +msgstr "Reactie" + +#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:574 +msgctxt "title" +msgid "Likes" +msgstr "vinden dit leuk" + +#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:574 +msgctxt "title" +msgid "Dislikes" +msgstr "vinden dit niet leuk" + +#: ../../Zotlabs/Module/Photos.php:1108 ../../include/conversation.php:575 +msgctxt "title" +msgid "Agree" +msgstr "eens" + +#: ../../Zotlabs/Module/Photos.php:1108 ../../include/conversation.php:575 +msgctxt "title" +msgid "Disagree" +msgstr "oneens" + +#: ../../Zotlabs/Module/Photos.php:1108 ../../include/conversation.php:575 +msgctxt "title" +msgid "Abstain" +msgstr "onthoudingen" + +#: ../../Zotlabs/Module/Photos.php:1109 ../../include/conversation.php:576 +msgctxt "title" +msgid "Attending" +msgstr "aanwezig" + +#: ../../Zotlabs/Module/Photos.php:1109 ../../include/conversation.php:576 +msgctxt "title" +msgid "Not attending" +msgstr "niet aanwezig" + +#: ../../Zotlabs/Module/Photos.php:1109 ../../include/conversation.php:576 +msgctxt "title" +msgid "Might attend" +msgstr "mogelijk aanwezig" + +#: ../../Zotlabs/Module/Photos.php:1126 ../../Zotlabs/Module/Photos.php:1138 +#: ../../Zotlabs/Lib/ThreadItem.php:181 ../../Zotlabs/Lib/ThreadItem.php:193 +#: ../../include/conversation.php:1717 +msgid "View all" +msgstr "Toon alles" + +#: ../../Zotlabs/Module/Photos.php:1130 ../../Zotlabs/Lib/ThreadItem.php:185 +#: ../../include/taxonomy.php:403 ../../include/conversation.php:1741 +#: ../../include/channel.php:1158 +msgctxt "noun" +msgid "Like" +msgid_plural "Likes" +msgstr[0] "vindt dit leuk" +msgstr[1] "vinden dit leuk" + +#: ../../Zotlabs/Module/Photos.php:1135 ../../Zotlabs/Lib/ThreadItem.php:190 +#: ../../include/conversation.php:1744 +msgctxt "noun" +msgid "Dislike" +msgid_plural "Dislikes" +msgstr[0] "vindt dit niet leuk" +msgstr[1] "vinden dit niet leuk" + +#: ../../Zotlabs/Module/Photos.php:1235 +msgid "Photo Tools" +msgstr "Hulpmiddelen" + +#: ../../Zotlabs/Module/Photos.php:1244 +msgid "In This Photo:" +msgstr "Op deze foto:" + +#: ../../Zotlabs/Module/Photos.php:1249 +msgid "Map" +msgstr "Kaart" + +#: ../../Zotlabs/Module/Photos.php:1257 ../../Zotlabs/Lib/ThreadItem.php:386 +msgctxt "noun" +msgid "Likes" +msgstr "vinden dit leuk" + +#: ../../Zotlabs/Module/Photos.php:1258 ../../Zotlabs/Lib/ThreadItem.php:387 +msgctxt "noun" +msgid "Dislikes" +msgstr "vinden dit niet leuk" + +#: ../../Zotlabs/Module/Photos.php:1263 ../../Zotlabs/Lib/ThreadItem.php:392 +#: ../../include/acl_selectors.php:285 +msgid "Close" +msgstr "Sluiten" + +#: ../../Zotlabs/Module/Photos.php:1337 +msgid "View Album" +msgstr "Album weergeven" + +#: ../../Zotlabs/Module/Photos.php:1348 ../../Zotlabs/Module/Photos.php:1361 +#: ../../Zotlabs/Module/Photos.php:1362 +msgid "Recent Photos" +msgstr "Recente foto's" + +#: ../../Zotlabs/Module/Ping.php:265 +msgid "sent you a private message" +msgstr "stuurde jou een privébericht" + +#: ../../Zotlabs/Module/Ping.php:313 +msgid "added your channel" +msgstr "voegde jouw kanaal toe" + +#: ../../Zotlabs/Module/Ping.php:323 +msgid "g A l F d" +msgstr "G:i, l d F" + +#: ../../Zotlabs/Module/Ping.php:346 +msgid "[today]" +msgstr "[vandaag]" + +#: ../../Zotlabs/Module/Ping.php:355 +msgid "posted an event" +msgstr "plaatste een gebeurtenis" + +#: ../../Zotlabs/Module/Oexchange.php:27 +msgid "Unable to find your hub." +msgstr "Niet in staat om je hub te vinden" + +#: ../../Zotlabs/Module/Oexchange.php:41 +msgid "Post successful." +msgstr "Verzenden bericht geslaagd." + +#: ../../Zotlabs/Module/Openid.php:30 +msgid "OpenID protocol error. No ID returned." +msgstr "OpenID-protocolfout. Geen ID terugontvangen." + +#: ../../Zotlabs/Module/Openid.php:193 ../../include/auth.php:226 +msgid "Login failed." +msgstr "Inloggen mislukt." + +#: ../../Zotlabs/Module/Page.php:133 +msgid "" +"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod " +"tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam," +" quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo " +"consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse " +"cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat " +"non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." +msgstr "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." + +#: ../../Zotlabs/Module/Pconfig.php:26 ../../Zotlabs/Module/Pconfig.php:59 +msgid "This setting requires special processing and editing has been blocked." +msgstr "Deze instelling vereist een speciaal proces en bewerken is geblokkeerd." + +#: ../../Zotlabs/Module/Pconfig.php:48 +msgid "Configuration Editor" +msgstr "Configuratiebewerker" + +#: ../../Zotlabs/Module/Pconfig.php:49 +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 "Waarschuwing: het veranderen van sommige instellingen kunnen jouw kanaal onklaar maken. Verlaat deze pagina, tenzij je weet waar je mee bezig bent en voldoende kennis bezit over hoe je deze functies moet gebruiken. " + +#: ../../Zotlabs/Module/Pdledit.php:18 +msgid "Layout updated." +msgstr "Lay-out bijgewerkt." + +#: ../../Zotlabs/Module/Pdledit.php:34 ../../Zotlabs/Module/Pdledit.php:61 +msgid "Edit System Page Description" +msgstr "Systeempagina's bewerken" + +#: ../../Zotlabs/Module/Pdledit.php:56 +msgid "Layout not found." +msgstr "Lay-out niet gevonden." + +#: ../../Zotlabs/Module/Pdledit.php:62 +msgid "Module Name:" +msgstr "Modulenaam:" + +#: ../../Zotlabs/Module/Pdledit.php:63 +msgid "Layout Help" +msgstr "Lay-out-hulp" + +#: ../../Zotlabs/Module/Poke.php:168 ../../Zotlabs/Lib/Apps.php:226 +#: ../../include/conversation.php:960 +msgid "Poke" +msgstr "Aanstoten" + +#: ../../Zotlabs/Module/Poke.php:169 +msgid "Poke somebody" +msgstr "Iemand aanstoten" + +#: ../../Zotlabs/Module/Poke.php:172 +msgid "Poke/Prod" +msgstr "Aanstoten/porren" + +#: ../../Zotlabs/Module/Poke.php:173 +msgid "Poke, prod or do other things to somebody" +msgstr "Iemand bijvoorbeeld aanstoten of poren" + +#: ../../Zotlabs/Module/Poke.php:180 +msgid "Recipient" +msgstr "Ontvanger" + +#: ../../Zotlabs/Module/Poke.php:181 +msgid "Choose what you wish to do to recipient" +msgstr "Kies wat je met de ontvanger wil doen" + +#: ../../Zotlabs/Module/Poke.php:184 ../../Zotlabs/Module/Poke.php:185 +msgid "Make this post private" +msgstr "Maak dit bericht privé" + +#: ../../Zotlabs/Module/Probe.php:30 ../../Zotlabs/Module/Probe.php:34 +#, php-format +msgid "Fetching URL returns error: %1$s" +msgstr "Ophalen URL gaf een foutmelding terug: %1$s" + #: ../../Zotlabs/Module/Profiles.php:24 ../../Zotlabs/Module/Profiles.php:189 #: ../../Zotlabs/Module/Profiles.php:246 ../../Zotlabs/Module/Profiles.php:625 msgid "Profile not found." @@ -2200,11 +3276,6 @@ msgstr "Homepage" msgid "Interests" msgstr "Interesses" -#: ../../Zotlabs/Module/Profiles.php:470 ../../Zotlabs/Module/Locs.php:118 -#: ../../Zotlabs/Module/Admin.php:1224 -msgid "Address" -msgstr "Kanaaladres" - #: ../../Zotlabs/Module/Profiles.php:560 msgid "Profile updated." msgstr "Profiel bijgewerkt" @@ -2222,7 +3293,7 @@ msgid "View this profile" msgstr "Profiel weergeven" #: ../../Zotlabs/Module/Profiles.php:689 ../../Zotlabs/Module/Profiles.php:771 -#: ../../include/channel.php:998 +#: ../../include/channel.php:959 msgid "Edit visibility" msgstr "Zichtbaarheid bewerken" @@ -2234,7 +3305,7 @@ msgstr "Hulpmiddelen" msgid "Change cover photo" msgstr "Omslagfoto wijzigen" -#: ../../Zotlabs/Module/Profiles.php:692 ../../include/channel.php:969 +#: ../../Zotlabs/Module/Profiles.php:692 ../../include/channel.php:930 msgid "Change profile photo" msgstr "Profielfoto veranderen" @@ -2254,8 +3325,8 @@ msgstr "Dit profiel verwijderen" msgid "Add profile things" msgstr "Dingen aan je profiel toevoegen" -#: ../../Zotlabs/Module/Profiles.php:697 ../../include/conversation.php:1541 -#: ../../include/widgets.php:105 +#: ../../Zotlabs/Module/Profiles.php:697 ../../include/widgets.php:105 +#: ../../include/conversation.php:1526 msgid "Personal" msgstr "Persoonlijk" @@ -2395,1097 +3466,119 @@ msgstr "Contactinformatie en sociale netwerken" msgid "My other channels" msgstr "Mijn andere kanalen" -#: ../../Zotlabs/Module/Profiles.php:767 ../../include/channel.php:994 +#: ../../Zotlabs/Module/Profiles.php:767 ../../include/channel.php:955 msgid "Profile Image" msgstr "Profielfoto" #: ../../Zotlabs/Module/Profiles.php:777 ../../include/nav.php:88 -#: ../../include/channel.php:976 +#: ../../include/channel.php:937 msgid "Edit Profiles" msgstr "Bewerk profielen" -#: ../../Zotlabs/Module/Import.php:33 -#, php-format -msgid "Your service plan only allows %d channels." -msgstr "Jouw abonnement staat maar %d kanalen toe." - -#: ../../Zotlabs/Module/Import.php:71 ../../Zotlabs/Module/Import_items.php:42 -msgid "Nothing to import." -msgstr "Niets gevonden om te importeren" - -#: ../../Zotlabs/Module/Import.php:95 ../../Zotlabs/Module/Import_items.php:66 -msgid "Unable to download data from old server" -msgstr "Niet in staat om gegevens van de oude hub te downloaden" - -#: ../../Zotlabs/Module/Import.php:101 -#: ../../Zotlabs/Module/Import_items.php:72 -msgid "Imported file is empty." -msgstr "Geïmporteerde bestand is leeg" - -#: ../../Zotlabs/Module/Import.php:123 -#: ../../Zotlabs/Module/Import_items.php:88 -#, php-format -msgid "Warning: Database versions differ by %1$d updates." -msgstr "Waarschuwing: database-versies lopen %1$d updates achter." - -#: ../../Zotlabs/Module/Import.php:153 ../../include/import.php:107 -msgid "Cloned channel not found. Import failed." -msgstr "Gekloond kanaal niet gevonden. Importeren mislukt." - -#: ../../Zotlabs/Module/Import.php:163 -msgid "No channel. Import failed." -msgstr "Geen kanaal. Importeren mislukt." - -#: ../../Zotlabs/Module/Import.php:520 -#: ../../include/Import/import_diaspora.php:142 -msgid "Import completed." -msgstr "Import voltooid." - -#: ../../Zotlabs/Module/Import.php:542 -msgid "You must be logged in to use this feature." -msgstr "Je moet ingelogd zijn om dit onderdeel te kunnen gebruiken." - -#: ../../Zotlabs/Module/Import.php:547 -msgid "Import Channel" -msgstr "Kanaal importeren" - -#: ../../Zotlabs/Module/Import.php:548 +#: ../../Zotlabs/Module/Profile_photo.php:179 msgid "" -"Use this form to import an existing channel from a different server/hub. You" -" may retrieve the channel identity from the old server/hub via the network " -"or provide an export file." -msgstr "Gebruik dit formulier om een bestaand kanaal te importeren van een andere hub. Je kan de kanaal-identiteit van de oude hub via het netwerk ontvangen of een exportbestand verstrekken." +"Shift-reload the page or clear browser cache if the new photo does not " +"display immediately." +msgstr "Vernieuw de pagina met shift+R of shift+F5, of leeg je browserbuffer, wanneer de nieuwe foto niet meteen wordt weergegeven." -#: ../../Zotlabs/Module/Import.php:549 -#: ../../Zotlabs/Module/Import_items.php:121 -msgid "File to Upload" -msgstr "Bestand om te uploaden" +#: ../../Zotlabs/Module/Profile_photo.php:367 +msgid "Upload Profile Photo" +msgstr "Profielfoto uploaden" -#: ../../Zotlabs/Module/Import.php:550 -msgid "Or provide the old server/hub details" -msgstr "Of vul de gegevens van de oude hub in" +#: ../../Zotlabs/Module/Profperm.php:34 ../../Zotlabs/Module/Profperm.php:63 +msgid "Invalid profile identifier." +msgstr "Ongeldige profiel-identificator" -#: ../../Zotlabs/Module/Import.php:551 -msgid "Your old identity address (xyz@example.com)" -msgstr "Jouw oude kanaaladres (xyz@example.com)" +#: ../../Zotlabs/Module/Profperm.php:115 +msgid "Profile Visibility Editor" +msgstr "Zichtbaarheid profiel " -#: ../../Zotlabs/Module/Import.php:552 -msgid "Your old login email address" -msgstr "Het e-mailadres van je oude account" +#: ../../Zotlabs/Module/Profperm.php:117 ../../include/channel.php:1249 +msgid "Profile" +msgstr "Profiel" -#: ../../Zotlabs/Module/Import.php:553 -msgid "Your old login password" -msgstr "Wachtwoord van jouw oude account" +#: ../../Zotlabs/Module/Profperm.php:119 +msgid "Click on a contact to add or remove." +msgstr "Klik op een connectie om deze toe te voegen of te verwijderen" -#: ../../Zotlabs/Module/Import.php:554 +#: ../../Zotlabs/Module/Profperm.php:128 +msgid "Visible To" +msgstr "Zichtbaar voor" + +#: ../../Zotlabs/Module/Pubsites.php:22 ../../include/widgets.php:1270 +msgid "Public Hubs" +msgstr "Openbare hubs" + +#: ../../Zotlabs/Module/Pubsites.php:25 msgid "" -"For either option, please choose whether to make this hub your new primary " -"address, or whether your old location should continue this role. You will be" -" able to post from either location, but only one can be marked as the " -"primary location for files, photos, and media." -msgstr "Voor elke optie geldt dat je moet kiezen of je jouw primaire kanaaladres op deze hub wil instellen of dat jouw oude hub deze rol blijft vervullen." +"The listed hubs allow public registration for the $Projectname network. All " +"hubs in the network are interlinked so membership on any of them conveys " +"membership in the network as a whole. Some hubs may require subscription or " +"provide tiered service plans. The hub itself may provide " +"additional details." +msgstr "Op de hier weergegeven hubs kan iedereen zich voor het $Projectname-netwerk aanmelden. Alle hubs in het netwerk zijn met elkaar verbonden, dus maakt het qua lidmaatschap niet uit waar je je aanmeldt. Op sommige hubs heb je eerst goedkeuring nodig en sommige hubs vereisen een financiële tegemoetkoming voor bepaalde uitbreidingen. Mogelijk wordt hierover op de hub zelf meer informatie gegeven." -#: ../../Zotlabs/Module/Import.php:555 -msgid "Make this hub my primary location" -msgstr "Stel deze hub als mijn primaire locatie in" +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Hub URL" +msgstr "Hub-URL" -#: ../../Zotlabs/Module/Import.php:556 -msgid "" -"Import existing posts if possible (experimental - limited by available " -"memory" -msgstr "Importeer bestaande berichten wanneer mogelijk (experimenteel - afhankelijk van beschikbaar servergeheugen)" +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Access Type" +msgstr "Toegangs-
 type" -#: ../../Zotlabs/Module/Import.php:557 -msgid "" -"This process may take several minutes to complete. Please submit the form " -"only once and leave this page open until finished." -msgstr "Dit proces kan enkele minuten in beslag nemen. Klik maar één keer op opslaan en verlaat deze pagina niet alvorens het proces is voltooid." +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Registration Policy" +msgstr "Registratie-
 beleid" -#: ../../Zotlabs/Module/Home.php:74 ../../Zotlabs/Module/Home.php:82 -#: ../../Zotlabs/Module/Siteinfo.php:48 -msgid "$Projectname" -msgstr "$Projectname" +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Stats" +msgstr "Stats" -#: ../../Zotlabs/Module/Home.php:92 +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Software" +msgstr "Software" + +#: ../../Zotlabs/Module/Pubsites.php:31 ../../Zotlabs/Module/Ratings.php:103 +#: ../../include/conversation.php:959 +msgid "Ratings" +msgstr "Beoordelingen" + +#: ../../Zotlabs/Module/Pubsites.php:38 +msgid "Rate" +msgstr "Beoordeel" + +#: ../../Zotlabs/Module/Rate.php:160 +msgid "Website:" +msgstr "Website:" + +#: ../../Zotlabs/Module/Rate.php:163 #, php-format -msgid "Welcome to %s" -msgstr "Welkom op %s" +msgid "Remote Channel [%s] (not yet known on this site)" +msgstr "Kanaal op afstand [%s] (nog niet op deze hub bekend)" -#: ../../Zotlabs/Module/Item.php:179 -msgid "Unable to locate original post." -msgstr "Niet in staat om de originele locatie van het bericht te vinden. " +#: ../../Zotlabs/Module/Rate.php:164 +msgid "Rating (this information is public)" +msgstr "Beoordeling (deze informatie is openbaar)" -#: ../../Zotlabs/Module/Item.php:432 -msgid "Empty post discarded." -msgstr "Leeg bericht geannuleerd" +#: ../../Zotlabs/Module/Rate.php:165 +msgid "Optionally explain your rating (this information is public)" +msgstr "Verklaar jouw beoordeling (niet verplicht, deze informatie is openbaar)" -#: ../../Zotlabs/Module/Item.php:472 -msgid "Executable content type not permitted to this channel." -msgstr "Uitvoerbare bestanden zijn niet toegestaan op dit kanaal." +#: ../../Zotlabs/Module/Ratings.php:73 +msgid "No ratings" +msgstr "Geen beoordelingen" -#: ../../Zotlabs/Module/Item.php:856 -msgid "Duplicate post suppressed." -msgstr "Dubbel bericht tegengehouden." +#: ../../Zotlabs/Module/Ratings.php:104 +msgid "Rating: " +msgstr "Beoordeling: " -#: ../../Zotlabs/Module/Item.php:989 -msgid "System error. Post not saved." -msgstr "Systeemfout. Bericht niet opgeslagen." +#: ../../Zotlabs/Module/Ratings.php:105 +msgid "Website: " +msgstr "Website: " -#: ../../Zotlabs/Module/Item.php:1242 -msgid "Unable to obtain post information from database." -msgstr "Niet in staat om informatie over dit bericht uit de database te verkrijgen." - -#: ../../Zotlabs/Module/Item.php:1249 -#, php-format -msgid "You have reached your limit of %1$.0f top level posts." -msgstr "Je hebt jouw limiet van %1$.0f berichten bereikt." - -#: ../../Zotlabs/Module/Item.php:1256 -#, php-format -msgid "You have reached your limit of %1$.0f webpages." -msgstr "Je hebt jouw limiet van %1$.0f webpagina's bereikt." - -#: ../../Zotlabs/Module/Photos.php:82 -msgid "Page owner information could not be retrieved." -msgstr "Informatie over de pagina-eigenaar werd niet ontvangen." - -#: ../../Zotlabs/Module/Photos.php:97 ../../Zotlabs/Module/Photos.php:741 -#: ../../Zotlabs/Module/Profile_photo.php:115 -#: ../../Zotlabs/Module/Profile_photo.php:212 -#: ../../Zotlabs/Module/Profile_photo.php:311 -#: ../../include/photo/photo_driver.php:718 -msgid "Profile Photos" -msgstr "Profielfoto's" - -#: ../../Zotlabs/Module/Photos.php:103 ../../Zotlabs/Module/Photos.php:147 -msgid "Album not found." -msgstr "Album niet gevonden." - -#: ../../Zotlabs/Module/Photos.php:130 -msgid "Delete Album" -msgstr "Verwijder album" - -#: ../../Zotlabs/Module/Photos.php:151 -msgid "" -"Multiple storage folders exist with this album name, but within different " -"directories. Please remove the desired folder or folders using the Files " -"manager" -msgstr "Er bestaan meerdere submappen met deze albumnaam, maar verspreidt over verschillende mappen. Verwijder de gewenste map(pen) met de bestandsbeheerder." - -#: ../../Zotlabs/Module/Photos.php:208 ../../Zotlabs/Module/Photos.php:1051 -msgid "Delete Photo" -msgstr "Verwijder foto" - -#: ../../Zotlabs/Module/Photos.php:531 -msgid "No photos selected" -msgstr "Geen foto's geselecteerd" - -#: ../../Zotlabs/Module/Photos.php:580 -msgid "Access to this item is restricted." -msgstr "Toegang tot dit item is beperkt." - -#: ../../Zotlabs/Module/Photos.php:619 -#, php-format -msgid "%1$.2f MB of %2$.2f MB photo storage used." -msgstr "%1$.2f MB van %2$.2f MB aan foto-opslag gebruikt." - -#: ../../Zotlabs/Module/Photos.php:622 -#, php-format -msgid "%1$.2f MB photo storage used." -msgstr "%1$.2f MB aan foto-opslag gebruikt." - -#: ../../Zotlabs/Module/Photos.php:658 -msgid "Upload Photos" -msgstr "Foto's uploaden" - -#: ../../Zotlabs/Module/Photos.php:662 -msgid "Enter an album name" -msgstr "Vul een albumnaam in" - -#: ../../Zotlabs/Module/Photos.php:663 -msgid "or select an existing album (doubleclick)" -msgstr "of kies een bestaand album (dubbelklikken)" - -#: ../../Zotlabs/Module/Photos.php:664 -msgid "Create a status post for this upload" -msgstr "Plaats een bericht voor deze upload." - -#: ../../Zotlabs/Module/Photos.php:665 -msgid "Caption (optional):" -msgstr "Bijschrift (optioneel):" - -#: ../../Zotlabs/Module/Photos.php:666 -msgid "Description (optional):" -msgstr "Omschrijving (optioneel):" - -#: ../../Zotlabs/Module/Photos.php:693 -msgid "Album name could not be decoded" -msgstr "Albumnaam kon niet gedecodeerd worden" - -#: ../../Zotlabs/Module/Photos.php:741 -msgid "Contact Photos" -msgstr "Connectiefoto's" - -#: ../../Zotlabs/Module/Photos.php:764 -msgid "Show Newest First" -msgstr "Nieuwste eerst weergeven" - -#: ../../Zotlabs/Module/Photos.php:766 -msgid "Show Oldest First" -msgstr "Oudste eerst weergeven" - -#: ../../Zotlabs/Module/Photos.php:790 ../../Zotlabs/Module/Photos.php:1329 -#: ../../Zotlabs/Module/Embedphotos.php:141 ../../include/widgets.php:1593 -msgid "View Photo" -msgstr "Foto weergeven" - -#: ../../Zotlabs/Module/Photos.php:821 -#: ../../Zotlabs/Module/Embedphotos.php:157 ../../include/widgets.php:1610 -msgid "Edit Album" -msgstr "Album bewerken" - -#: ../../Zotlabs/Module/Photos.php:868 -msgid "Permission denied. Access to this item may be restricted." -msgstr "Toegang geweigerd. Toegang tot dit item kan zijn beperkt." - -#: ../../Zotlabs/Module/Photos.php:870 -msgid "Photo not available" -msgstr "Foto niet aanwezig" - -#: ../../Zotlabs/Module/Photos.php:928 -msgid "Use as profile photo" -msgstr "Als profielfoto gebruiken" - -#: ../../Zotlabs/Module/Photos.php:929 -msgid "Use as cover photo" -msgstr "Als omslagfoto gebruiken" - -#: ../../Zotlabs/Module/Photos.php:936 -msgid "Private Photo" -msgstr "Privéfoto" - -#: ../../Zotlabs/Module/Photos.php:951 -msgid "View Full Size" -msgstr "Volledige grootte weergeven" - -#: ../../Zotlabs/Module/Photos.php:996 ../../Zotlabs/Module/Admin.php:1437 -#: ../../Zotlabs/Module/Tagrm.php:137 -msgid "Remove" -msgstr "Verwijderen" - -#: ../../Zotlabs/Module/Photos.php:1030 -msgid "Edit photo" -msgstr "Foto bewerken" - -#: ../../Zotlabs/Module/Photos.php:1032 -msgid "Rotate CW (right)" -msgstr "Draai met de klok mee (naar rechts)" - -#: ../../Zotlabs/Module/Photos.php:1033 -msgid "Rotate CCW (left)" -msgstr "Draai tegen de klok in (naar links)" - -#: ../../Zotlabs/Module/Photos.php:1036 -msgid "Enter a new album name" -msgstr "Vul een nieuwe albumnaam in" - -#: ../../Zotlabs/Module/Photos.php:1037 -msgid "or select an existing one (doubleclick)" -msgstr "of kies een bestaand album (dubbelklikken)" - -#: ../../Zotlabs/Module/Photos.php:1040 -msgid "Caption" -msgstr "Bijschrift" - -#: ../../Zotlabs/Module/Photos.php:1042 -msgid "Add a Tag" -msgstr "Tag toevoegen" - -#: ../../Zotlabs/Module/Photos.php:1046 -msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" -msgstr "Voorbeeld: @bob, @Barbara_Jansen, @jan@voorbeeld.nl" - -#: ../../Zotlabs/Module/Photos.php:1049 -msgid "Flag as adult in album view" -msgstr "Markeer als voor volwassenen in albumweergave" - -#: ../../Zotlabs/Module/Photos.php:1068 ../../Zotlabs/Lib/ThreadItem.php:261 -msgid "I like this (toggle)" -msgstr "Vind ik leuk" - -#: ../../Zotlabs/Module/Photos.php:1069 ../../Zotlabs/Lib/ThreadItem.php:262 -msgid "I don't like this (toggle)" -msgstr "Vind ik niet leuk" - -#: ../../Zotlabs/Module/Photos.php:1071 ../../Zotlabs/Lib/ThreadItem.php:397 -#: ../../include/conversation.php:743 -msgid "Please wait" -msgstr "Even wachten" - -#: ../../Zotlabs/Module/Photos.php:1087 ../../Zotlabs/Module/Photos.php:1205 -#: ../../Zotlabs/Lib/ThreadItem.php:707 -msgid "This is you" -msgstr "Dit ben jij" - -#: ../../Zotlabs/Module/Photos.php:1089 ../../Zotlabs/Module/Photos.php:1207 -#: ../../Zotlabs/Lib/ThreadItem.php:709 ../../include/js_strings.php:6 -msgid "Comment" -msgstr "Reactie" - -#: ../../Zotlabs/Module/Photos.php:1105 ../../include/conversation.php:577 -msgctxt "title" -msgid "Likes" -msgstr "vinden dit leuk" - -#: ../../Zotlabs/Module/Photos.php:1105 ../../include/conversation.php:577 -msgctxt "title" -msgid "Dislikes" -msgstr "vinden dit niet leuk" - -#: ../../Zotlabs/Module/Photos.php:1106 ../../include/conversation.php:578 -msgctxt "title" -msgid "Agree" -msgstr "eens" - -#: ../../Zotlabs/Module/Photos.php:1106 ../../include/conversation.php:578 -msgctxt "title" -msgid "Disagree" -msgstr "oneens" - -#: ../../Zotlabs/Module/Photos.php:1106 ../../include/conversation.php:578 -msgctxt "title" -msgid "Abstain" -msgstr "onthoudingen" - -#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:579 -msgctxt "title" -msgid "Attending" -msgstr "aanwezig" - -#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:579 -msgctxt "title" -msgid "Not attending" -msgstr "niet aanwezig" - -#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:579 -msgctxt "title" -msgid "Might attend" -msgstr "mogelijk aanwezig" - -#: ../../Zotlabs/Module/Photos.php:1124 ../../Zotlabs/Module/Photos.php:1136 -#: ../../Zotlabs/Lib/ThreadItem.php:181 ../../Zotlabs/Lib/ThreadItem.php:193 -#: ../../include/conversation.php:1738 -msgid "View all" -msgstr "Toon alles" - -#: ../../Zotlabs/Module/Photos.php:1128 ../../Zotlabs/Lib/ThreadItem.php:185 -#: ../../include/taxonomy.php:403 ../../include/channel.php:1198 -#: ../../include/conversation.php:1762 -msgctxt "noun" -msgid "Like" -msgid_plural "Likes" -msgstr[0] "vindt dit leuk" -msgstr[1] "vinden dit leuk" - -#: ../../Zotlabs/Module/Photos.php:1133 ../../Zotlabs/Lib/ThreadItem.php:190 -#: ../../include/conversation.php:1765 -msgctxt "noun" -msgid "Dislike" -msgid_plural "Dislikes" -msgstr[0] "vindt dit niet leuk" -msgstr[1] "vinden dit niet leuk" - -#: ../../Zotlabs/Module/Photos.php:1233 -msgid "Photo Tools" -msgstr "Hulpmiddelen" - -#: ../../Zotlabs/Module/Photos.php:1242 -msgid "In This Photo:" -msgstr "Op deze foto:" - -#: ../../Zotlabs/Module/Photos.php:1247 -msgid "Map" -msgstr "Kaart" - -#: ../../Zotlabs/Module/Photos.php:1255 ../../Zotlabs/Lib/ThreadItem.php:386 -msgctxt "noun" -msgid "Likes" -msgstr "vinden dit leuk" - -#: ../../Zotlabs/Module/Photos.php:1256 ../../Zotlabs/Lib/ThreadItem.php:387 -msgctxt "noun" -msgid "Dislikes" -msgstr "vinden dit niet leuk" - -#: ../../Zotlabs/Module/Photos.php:1261 ../../Zotlabs/Lib/ThreadItem.php:392 -#: ../../include/acl_selectors.php:283 -msgid "Close" -msgstr "Sluiten" - -#: ../../Zotlabs/Module/Photos.php:1335 -msgid "View Album" -msgstr "Album weergeven" - -#: ../../Zotlabs/Module/Photos.php:1346 ../../Zotlabs/Module/Photos.php:1359 -#: ../../Zotlabs/Module/Photos.php:1360 -msgid "Recent Photos" -msgstr "Recente foto's" - -#: ../../Zotlabs/Module/Lockview.php:75 -msgid "Remote privacy information not available." -msgstr "Privacy-informatie op afstand niet beschikbaar." - -#: ../../Zotlabs/Module/Lockview.php:96 -msgid "Visible to:" -msgstr "Zichtbaar voor:" - -#: ../../Zotlabs/Module/Import_items.php:104 -msgid "Import completed" -msgstr "Importeren voltooid" - -#: ../../Zotlabs/Module/Import_items.php:119 -msgid "Import Items" -msgstr "Importeer items" - -#: ../../Zotlabs/Module/Import_items.php:120 -msgid "" -"Use this form to import existing posts and content from an export file." -msgstr "Gebruik dit formulier om bestaande berichten en andere inhoud vanuit een exportbestand te importeren." - -#: ../../Zotlabs/Module/Invite.php:29 -msgid "Total invitation limit exceeded." -msgstr "Limiet voor aantal uitnodigingen overschreden." - -#: ../../Zotlabs/Module/Invite.php:53 -#, php-format -msgid "%s : Not a valid email address." -msgstr "%s : Geen geldig e-mailadres." - -#: ../../Zotlabs/Module/Invite.php:63 -msgid "Please join us on $Projectname" -msgstr "Uitnodiging voor $Projectname" - -#: ../../Zotlabs/Module/Invite.php:74 -msgid "Invitation limit exceeded. Please contact your site administrator." -msgstr "Limiet voor aantal uitnodigingen overschreden. Neem contact op met je hub-beheerder." - -#: ../../Zotlabs/Module/Invite.php:79 -#, php-format -msgid "%s : Message delivery failed." -msgstr "%s: Aflevering bericht mislukt." - -#: ../../Zotlabs/Module/Invite.php:83 -#, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "%d bericht verzonden." -msgstr[1] "%d berichten verzonden." - -#: ../../Zotlabs/Module/Invite.php:102 -msgid "You have no more invitations available" -msgstr "Je hebt geen uitnodigingen meer beschikbaar" - -#: ../../Zotlabs/Module/Invite.php:133 -msgid "Send invitations" -msgstr "Uitnodigingen verzenden" - -#: ../../Zotlabs/Module/Invite.php:134 -msgid "Enter email addresses, one per line:" -msgstr "Voer e-mailadressen in, één per regel:" - -#: ../../Zotlabs/Module/Invite.php:135 ../../Zotlabs/Module/Mail.php:241 -msgid "Your message:" -msgstr "Jouw bericht:" - -#: ../../Zotlabs/Module/Invite.php:136 -msgid "Please join my community on $Projectname." -msgstr "Hierbij nodig ik je uit om mij, en andere vrienden en kennissen, op $Projectname te vergezellen. Lees meer over $Projectname op http://hubzilla.org" - -#: ../../Zotlabs/Module/Invite.php:138 -msgid "You will need to supply this invitation code:" -msgstr "Je moet deze uitnodigingscode opgeven:" - -#: ../../Zotlabs/Module/Invite.php:139 -msgid "" -"1. Register at any $Projectname location (they are all inter-connected)" -msgstr "1. Registreer je op een willekeurige $Projectname-hub (ze zijn allemaal onderling met elkaar verbonden):" - -#: ../../Zotlabs/Module/Invite.php:141 -msgid "2. Enter my $Projectname network address into the site searchbar." -msgstr "2. Nadat je bent ingelogd en een kanaal hebt aangemaakt kan je mijn $Projectname-kanaaladres in het zoekveld invullen:" - -#: ../../Zotlabs/Module/Invite.php:142 -msgid "or visit" -msgstr "of bezoek" - -#: ../../Zotlabs/Module/Invite.php:144 -msgid "3. Click [Connect]" -msgstr "3. Klik op [+ Verbinden]" - -#: ../../Zotlabs/Module/Locs.php:25 ../../Zotlabs/Module/Locs.php:54 -msgid "Location not found." -msgstr "Locatie niet gevonden." - -#: ../../Zotlabs/Module/Locs.php:62 -msgid "Location lookup failed." -msgstr "Opzoeken locatie mislukt" - -#: ../../Zotlabs/Module/Locs.php:66 -msgid "" -"Please select another location to become primary before removing the primary" -" location." -msgstr "Kies eerst een andere primaire locatie alvorens de huidige primaire locatie te verwijderen." - -#: ../../Zotlabs/Module/Locs.php:95 -msgid "Syncing locations" -msgstr "Locaties synchronizeren" - -#: ../../Zotlabs/Module/Locs.php:105 -msgid "No locations found." -msgstr "Geen locaties gevonden." - -#: ../../Zotlabs/Module/Locs.php:116 -msgid "Manage Channel Locations" -msgstr "Kanaallocaties beheren" - -#: ../../Zotlabs/Module/Locs.php:119 -msgid "Primary" -msgstr "Primair" - -#: ../../Zotlabs/Module/Locs.php:120 ../../Zotlabs/Module/Menu.php:113 -msgid "Drop" -msgstr "Verwijderen" - -#: ../../Zotlabs/Module/Locs.php:122 -msgid "Sync Now" -msgstr "Nu synchroniseren" - -#: ../../Zotlabs/Module/Locs.php:123 -msgid "Please wait several minutes between consecutive operations." -msgstr "Wacht enkele minuten tussen opeenvolgende handelingen." - -#: ../../Zotlabs/Module/Locs.php:124 -msgid "" -"When possible, drop a location by logging into that website/hub and removing" -" your channel." -msgstr "Wij adviseren, wanneer dit (nog) mogelijk is, de locatie te verwijderen door op de hub van de kloon in te loggen en het kanaal daar te verwijderen." - -#: ../../Zotlabs/Module/Locs.php:125 -msgid "Use this form to drop the location if the hub is no longer operating." -msgstr "Gebruik dit formulier om de locatie te verwijderen wanneer de hub van de kloon niet meer operationeel is." - -#: ../../Zotlabs/Module/Magic.php:71 -msgid "Hub not found." -msgstr "Hub niet gevonden." - -#: ../../Zotlabs/Module/Mail.php:38 -msgid "Unable to lookup recipient." -msgstr "Niet in staat om ontvanger op te zoeken." - -#: ../../Zotlabs/Module/Mail.php:45 -msgid "Unable to communicate with requested channel." -msgstr "Niet in staat om met het aangevraagde kanaal te communiceren." - -#: ../../Zotlabs/Module/Mail.php:52 -msgid "Cannot verify requested channel." -msgstr "Kan opgevraagd kanaal niet verifieren" - -#: ../../Zotlabs/Module/Mail.php:70 -msgid "Selected channel has private message restrictions. Send failed." -msgstr "Gekozen kanaal heeft restricties voor privéberichten. Verzenden mislukt." - -#: ../../Zotlabs/Module/Mail.php:135 -msgid "Messages" -msgstr "Berichten" - -#: ../../Zotlabs/Module/Mail.php:170 -msgid "Message recalled." -msgstr "Bericht ingetrokken." - -#: ../../Zotlabs/Module/Mail.php:183 -msgid "Conversation removed." -msgstr "Conversatie verwijderd" - -#: ../../Zotlabs/Module/Mail.php:198 ../../Zotlabs/Module/Mail.php:307 -msgid "Expires YYYY-MM-DD HH:MM" -msgstr "Verloopt op DD-MM-YYYY om HH:MM" - -#: ../../Zotlabs/Module/Mail.php:226 -msgid "Requested channel is not in this network" -msgstr "Opgevraagd kanaal is niet in dit netwerk beschikbaar" - -#: ../../Zotlabs/Module/Mail.php:234 -msgid "Send Private Message" -msgstr "Privébericht versturen" - -#: ../../Zotlabs/Module/Mail.php:235 ../../Zotlabs/Module/Mail.php:360 -msgid "To:" -msgstr "Aan:" - -#: ../../Zotlabs/Module/Mail.php:238 ../../Zotlabs/Module/Mail.php:362 -msgid "Subject:" -msgstr "Onderwerp:" - -#: ../../Zotlabs/Module/Mail.php:243 ../../Zotlabs/Module/Mail.php:368 -#: ../../include/conversation.php:1231 -msgid "Attach file" -msgstr "Bestand toevoegen" - -#: ../../Zotlabs/Module/Mail.php:245 -msgid "Send" -msgstr "Verzenden" - -#: ../../Zotlabs/Module/Mail.php:248 ../../Zotlabs/Module/Mail.php:373 -#: ../../include/conversation.php:1266 -msgid "Set expiration date" -msgstr "Verloopdatum instellen" - -#: ../../Zotlabs/Module/Mail.php:332 -msgid "Delete message" -msgstr "Bericht verwijderen" - -#: ../../Zotlabs/Module/Mail.php:333 -msgid "Delivery report" -msgstr "Afleveringsrapport" - -#: ../../Zotlabs/Module/Mail.php:334 -msgid "Recall message" -msgstr "Bericht intrekken" - -#: ../../Zotlabs/Module/Mail.php:336 -msgid "Message has been recalled." -msgstr "Bericht is ingetrokken." - -#: ../../Zotlabs/Module/Mail.php:353 -msgid "Delete Conversation" -msgstr "Verwijder conversatie" - -#: ../../Zotlabs/Module/Mail.php:355 -msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." -msgstr "Geen veilige communicatie beschikbaar. Mogelijk kan je reageren op de kanaalpagina van de afzender." - -#: ../../Zotlabs/Module/Mail.php:359 -msgid "Send Reply" -msgstr "Antwoord versturen" - -#: ../../Zotlabs/Module/Mail.php:364 -#, php-format -msgid "Your message for %s (%s):" -msgstr "Jouw privébericht aan %s (%s):" - -#: ../../Zotlabs/Module/Manage.php:136 -#: ../../Zotlabs/Module/New_channel.php:121 -#, php-format -msgid "You have created %1$.0f of %2$.0f allowed channels." -msgstr "Je hebt %1$.0f van totaal %2$.0f toegestane kanalen aangemaakt." - -#: ../../Zotlabs/Module/Manage.php:143 -msgid "Create a new channel" -msgstr "Nieuw kanaal aanmaken" - -#: ../../Zotlabs/Module/Manage.php:164 ../../Zotlabs/Lib/Apps.php:214 -#: ../../include/nav.php:208 -msgid "Channel Manager" -msgstr "Kanaalbeheer" - -#: ../../Zotlabs/Module/Manage.php:165 -msgid "Current Channel" -msgstr "Huidig kanaal" - -#: ../../Zotlabs/Module/Manage.php:167 -msgid "Switch to one of your channels by selecting it." -msgstr "Activeer een van jouw andere kanalen door er op te klikken." - -#: ../../Zotlabs/Module/Manage.php:168 -msgid "Default Channel" -msgstr "Standaardkanaal" - -#: ../../Zotlabs/Module/Manage.php:169 -msgid "Make Default" -msgstr "Als standaard instellen" - -#: ../../Zotlabs/Module/Manage.php:172 -#, php-format -msgid "%d new messages" -msgstr "%d nieuwe berichten" - -#: ../../Zotlabs/Module/Manage.php:173 -#, php-format -msgid "%d new introductions" -msgstr "%d nieuwe connectieverzoeken" - -#: ../../Zotlabs/Module/Manage.php:175 -msgid "Delegated Channel" -msgstr "Uitbesteed kanaal" - -#: ../../Zotlabs/Module/Menu.php:49 -msgid "Unable to update menu." -msgstr "Niet in staat om menu aan te passen" - -#: ../../Zotlabs/Module/Menu.php:60 -msgid "Unable to create menu." -msgstr "Niet in staat om menu aan te maken." - -#: ../../Zotlabs/Module/Menu.php:98 ../../Zotlabs/Module/Menu.php:110 -msgid "Menu Name" -msgstr "Menunaam" - -#: ../../Zotlabs/Module/Menu.php:98 -msgid "Unique name (not visible on webpage) - required" -msgstr "Unieke naam vereist (niet zichtbaar op webpagina)" - -#: ../../Zotlabs/Module/Menu.php:99 ../../Zotlabs/Module/Menu.php:111 -msgid "Menu Title" -msgstr "Menutitel" - -#: ../../Zotlabs/Module/Menu.php:99 -msgid "Visible on webpage - leave empty for no title" -msgstr "Zichtbaar op webpagina (leeg laten voor geen titel)" - -#: ../../Zotlabs/Module/Menu.php:100 -msgid "Allow Bookmarks" -msgstr "Bladwijzers toestaan" - -#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 -msgid "Menu may be used to store saved bookmarks" -msgstr "Menu kan gebruikt worden om bladwijzers in op te slaan" - -#: ../../Zotlabs/Module/Menu.php:101 ../../Zotlabs/Module/Menu.php:159 -msgid "Submit and proceed" -msgstr "Opslaan en doorgaan" - -#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2239 -msgid "Menus" -msgstr "Menu's" - -#: ../../Zotlabs/Module/Menu.php:117 -msgid "Bookmarks allowed" -msgstr "Bladwijzers toegestaan" - -#: ../../Zotlabs/Module/Menu.php:119 -msgid "Delete this menu" -msgstr "Menu verwijderen" - -#: ../../Zotlabs/Module/Menu.php:120 ../../Zotlabs/Module/Menu.php:154 -msgid "Edit menu contents" -msgstr "Bewerk de inhoud van het menu" - -#: ../../Zotlabs/Module/Menu.php:121 -msgid "Edit this menu" -msgstr "Dit menu bewerken" - -#: ../../Zotlabs/Module/Menu.php:136 -msgid "Menu could not be deleted." -msgstr "Menu kon niet verwijderd worden." - -#: ../../Zotlabs/Module/Menu.php:144 ../../Zotlabs/Module/Mitem.php:28 -msgid "Menu not found." -msgstr "Menu niet gevonden." - -#: ../../Zotlabs/Module/Menu.php:149 -msgid "Edit Menu" -msgstr "Menu bewerken" - -#: ../../Zotlabs/Module/Menu.php:153 -msgid "Add or remove entries to this menu" -msgstr "Items aan dit menu toevoegen of verwijder" - -#: ../../Zotlabs/Module/Menu.php:155 -msgid "Menu name" -msgstr "Naam van menu" - -#: ../../Zotlabs/Module/Menu.php:155 -msgid "Must be unique, only seen by you" -msgstr "Moet uniek zijn en is alleen zichtbaar voor jou." - -#: ../../Zotlabs/Module/Menu.php:156 -msgid "Menu title" -msgstr "Titel van menu" - -#: ../../Zotlabs/Module/Menu.php:156 -msgid "Menu title as seen by others" -msgstr "Titel van menu zoals anderen dat zien." - -#: ../../Zotlabs/Module/Menu.php:157 -msgid "Allow bookmarks" -msgstr "Bladwijzers toestaan" - -#: ../../Zotlabs/Module/Menu.php:166 ../../Zotlabs/Module/Mitem.php:120 -#: ../../Zotlabs/Module/Xchan.php:41 -msgid "Not found." -msgstr "Niet gevonden." - -#: ../../Zotlabs/Module/Lostpass.php:19 -msgid "No valid account found." -msgstr "Geen geldige account gevonden." - -#: ../../Zotlabs/Module/Lostpass.php:33 -msgid "Password reset request issued. Check your email." -msgstr "Het verzoek om je wachtwoord opnieuw in te stellen is behandeld. Controleer je e-mail." - -#: ../../Zotlabs/Module/Lostpass.php:39 ../../Zotlabs/Module/Lostpass.php:107 -#, php-format -msgid "Site Member (%s)" -msgstr "Lid van hub (%s)" - -#: ../../Zotlabs/Module/Lostpass.php:44 -#, php-format -msgid "Password reset requested at %s" -msgstr "Verzoek tot het opnieuw instellen van een wachtwoord op %s is ingediend" - -#: ../../Zotlabs/Module/Lostpass.php:67 -msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." -msgstr "Het verzoek kon niet worden geverifieerd. (Mogelijk heb je al eerder een verzoek ingediend.) Opnieuw instellen van wachtwoord is mislukt." - -#: ../../Zotlabs/Module/Lostpass.php:90 ../../boot.php:1712 -msgid "Password Reset" -msgstr "Wachtwoord vergeten?" - -#: ../../Zotlabs/Module/Lostpass.php:91 -msgid "Your password has been reset as requested." -msgstr "Jouw wachtwoord is opnieuw ingesteld zoals je had verzocht." - -#: ../../Zotlabs/Module/Lostpass.php:92 -msgid "Your new password is" -msgstr "Jouw nieuwe wachtwoord is" - -#: ../../Zotlabs/Module/Lostpass.php:93 -msgid "Save or copy your new password - and then" -msgstr "Kopieer of sla je nieuwe wachtwoord op - en" - -#: ../../Zotlabs/Module/Lostpass.php:94 -msgid "click here to login" -msgstr "klik dan hier om in te loggen" - -#: ../../Zotlabs/Module/Lostpass.php:95 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." -msgstr "Jouw wachtwoord kan worden veranderd onder instellingen, nadat je succesvol bent ingelogd." - -#: ../../Zotlabs/Module/Lostpass.php:112 -#, php-format -msgid "Your password has changed at %s" -msgstr "Jouw wachtwoord op %s is veranderd" - -#: ../../Zotlabs/Module/Lostpass.php:127 -msgid "Forgot your Password?" -msgstr "Wachtwoord vergeten?" - -#: ../../Zotlabs/Module/Lostpass.php:128 -msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." -msgstr "Voer je e-mailadres in en verstuur deze om je wachtwoord opnieuw in te stellen. Controleer hierna hier je e-mail voor verdere instructies." - -#: ../../Zotlabs/Module/Lostpass.php:129 -msgid "Email Address" -msgstr "E-mailadres" - -#: ../../Zotlabs/Module/Lostpass.php:130 -msgid "Reset" -msgstr "Opnieuw instellen" - -#: ../../Zotlabs/Module/Mood.php:67 ../../include/conversation.php:260 -#, php-format -msgctxt "mood" -msgid "%1$s is %2$s" -msgstr "%1$s is %2$s" - -#: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Lib/Apps.php:227 -msgid "Mood" -msgstr "Stemming" - -#: ../../Zotlabs/Module/Mood.php:136 -msgid "Set your current mood and tell your friends" -msgstr "Noteer je huidige stemming en toon het aan je connecties" - -#: ../../Zotlabs/Module/Network.php:94 -msgid "No such group" -msgstr "Collectie niet gevonden" - -#: ../../Zotlabs/Module/Network.php:134 -msgid "No such channel" -msgstr "Niet zo'n kanaal" - -#: ../../Zotlabs/Module/Network.php:139 -msgid "forum" -msgstr "forum" - -#: ../../Zotlabs/Module/Network.php:151 -msgid "Search Results For:" -msgstr "Zoekresultaten voor:" - -#: ../../Zotlabs/Module/Network.php:215 -msgid "Privacy group is empty" -msgstr "Privacygroep is leeg" - -#: ../../Zotlabs/Module/Network.php:224 -msgid "Privacy group: " -msgstr "Privacygroep: " - -#: ../../Zotlabs/Module/Network.php:250 -msgid "Invalid connection." -msgstr "Ongeldige connectie." - -#: ../../Zotlabs/Module/Notify.php:57 -#: ../../Zotlabs/Module/Notifications.php:98 -msgid "No more system notifications." -msgstr "Geen systeemnotificaties meer." - -#: ../../Zotlabs/Module/Notify.php:61 -#: ../../Zotlabs/Module/Notifications.php:102 -msgid "System Notifications" -msgstr "Systeemnotificaties" - -#: ../../Zotlabs/Module/Match.php:26 -msgid "Profile Match" -msgstr "Profielovereenkomst" - -#: ../../Zotlabs/Module/Match.php:35 -msgid "No keywords to match. Please add keywords to your default profile." -msgstr "Je hebt geen trefwoorden waarmee overeenkomsten gevonden kunnen worden. Voeg enkele trefwoorden aan je standaardprofiel toe." - -#: ../../Zotlabs/Module/Match.php:67 -msgid "is interested in:" -msgstr "is geïnteresseerd in:" - -#: ../../Zotlabs/Module/Match.php:74 -msgid "No matches" -msgstr "Geen overeenkomsten" - -#: ../../Zotlabs/Module/Channel.php:40 -msgid "Posts and comments" -msgstr "Berichten en reacties" - -#: ../../Zotlabs/Module/Channel.php:41 -msgid "Only posts" -msgstr "Alleen berichten" - -#: ../../Zotlabs/Module/Channel.php:101 -msgid "Insufficient permissions. Request redirected to profile page." -msgstr "Onvoldoende permissies. Doorgestuurd naar profielpagina." - -#: ../../Zotlabs/Module/Mitem.php:52 -msgid "Unable to create element." -msgstr "Niet in staat om onderdeel aan te maken." - -#: ../../Zotlabs/Module/Mitem.php:76 -msgid "Unable to update menu element." -msgstr "Menu-onderdeel kan niet worden geüpdatet." - -#: ../../Zotlabs/Module/Mitem.php:92 -msgid "Unable to add menu element." -msgstr "Menu-onderdeel kan niet worden toegevoegd." - -#: ../../Zotlabs/Module/Mitem.php:153 ../../Zotlabs/Module/Mitem.php:226 -msgid "Menu Item Permissions" -msgstr "Permissies menu-item" - -#: ../../Zotlabs/Module/Mitem.php:154 ../../Zotlabs/Module/Mitem.php:227 -#: ../../Zotlabs/Module/Settings.php:1163 -msgid "(click to open/close)" -msgstr "(klik om te openen/sluiten)" - -#: ../../Zotlabs/Module/Mitem.php:156 ../../Zotlabs/Module/Mitem.php:172 -msgid "Link Name" -msgstr "Linknaam" - -#: ../../Zotlabs/Module/Mitem.php:157 ../../Zotlabs/Module/Mitem.php:231 -msgid "Link or Submenu Target" -msgstr "Linkdoel of submenu-doel" - -#: ../../Zotlabs/Module/Mitem.php:157 -msgid "Enter URL of the link or select a menu name to create a submenu" -msgstr "Geef de URL van de link of kies een menunaam om een submenu aan te maken" - -#: ../../Zotlabs/Module/Mitem.php:158 ../../Zotlabs/Module/Mitem.php:232 -msgid "Use magic-auth if available" -msgstr "Gebruik magic-auth wanneer beschikbaar" - -#: ../../Zotlabs/Module/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:233 -msgid "Open link in new window" -msgstr "Open link in nieuw venster" - -#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:234 -msgid "Order in list" -msgstr "Volgorde in lijst" - -#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:234 -msgid "Higher numbers will sink to bottom of listing" -msgstr "Hogere nummers komen onderaan de lijst terecht" - -#: ../../Zotlabs/Module/Mitem.php:161 -msgid "Submit and finish" -msgstr "Opslaan en afsluiten" - -#: ../../Zotlabs/Module/Mitem.php:162 -msgid "Submit and continue" -msgstr "Opslaan en doorgaan" - -#: ../../Zotlabs/Module/Mitem.php:170 -msgid "Menu:" -msgstr "Menu:" - -#: ../../Zotlabs/Module/Mitem.php:173 -msgid "Link Target" -msgstr "Linkdoel" - -#: ../../Zotlabs/Module/Mitem.php:176 -msgid "Edit menu" -msgstr "Menu bewerken" - -#: ../../Zotlabs/Module/Mitem.php:179 -msgid "Edit element" -msgstr "Onderdeel bewerken" - -#: ../../Zotlabs/Module/Mitem.php:180 -msgid "Drop element" -msgstr "Onderdeel verwijderen" - -#: ../../Zotlabs/Module/Mitem.php:181 -msgid "New element" -msgstr "Nieuw element" - -#: ../../Zotlabs/Module/Mitem.php:182 -msgid "Edit this menu container" -msgstr "Deze menu-container bewerken" - -#: ../../Zotlabs/Module/Mitem.php:183 -msgid "Add menu element" -msgstr "Menu-element toevoegen" - -#: ../../Zotlabs/Module/Mitem.php:184 -msgid "Delete this menu item" -msgstr "Dit menu-item verwijderen" - -#: ../../Zotlabs/Module/Mitem.php:185 -msgid "Edit this menu item" -msgstr "Dit menu-item bewerken" - -#: ../../Zotlabs/Module/Mitem.php:202 -msgid "Menu item not found." -msgstr "Menu-item niet gevonden." - -#: ../../Zotlabs/Module/Mitem.php:215 -msgid "Menu item deleted." -msgstr "Menu-item verwijderd." - -#: ../../Zotlabs/Module/Mitem.php:217 -msgid "Menu item could not be deleted." -msgstr "Menu-item kon niet worden verwijderd." - -#: ../../Zotlabs/Module/Mitem.php:224 -msgid "Edit Menu Element" -msgstr "Menu-element bewerken" - -#: ../../Zotlabs/Module/Mitem.php:230 -msgid "Link text" -msgstr "Linktekst" +#: ../../Zotlabs/Module/Ratings.php:107 +msgid "Description: " +msgstr "Omschrijving: " #: ../../Zotlabs/Module/Admin.php:77 msgid "Theme settings updated." @@ -3572,11 +3665,11 @@ msgstr "Versie repository (dev)" msgid "Site settings updated." msgstr "Hub-instellingen bijgewerkt." -#: ../../Zotlabs/Module/Admin.php:400 ../../include/text.php:2829 +#: ../../Zotlabs/Module/Admin.php:400 ../../include/text.php:2841 msgid "Default" msgstr "Standaard" -#: ../../Zotlabs/Module/Admin.php:410 ../../Zotlabs/Module/Settings.php:899 +#: ../../Zotlabs/Module/Admin.php:410 ../../Zotlabs/Module/Settings.php:798 msgid "mobile" msgstr "mobiel" @@ -3608,7 +3701,7 @@ msgstr "Mijn $Projectname-hub kent alleen gratis toegang" msgid "My site offers free accounts with optional paid upgrades" msgstr "Mijn $Projectname-hub biedt gratis accounts aan met betaalde uitbreidingen als optie" -#: ../../Zotlabs/Module/Admin.php:491 ../../include/widgets.php:1476 +#: ../../Zotlabs/Module/Admin.php:491 ../../include/widgets.php:1382 msgid "Site" msgstr "Hub-instellingen" @@ -3896,12 +3989,12 @@ msgid "0 for no expiration of imported content" msgstr "Dit geldt alleen voor inhoud van andere kanalen, dus niet voor iemands eigen kanaal. 0 voor het niet verwijderen van geïmporteerde inhoud." #: ../../Zotlabs/Module/Admin.php:677 ../../Zotlabs/Module/Admin.php:678 -#: ../../Zotlabs/Module/Settings.php:823 +#: ../../Zotlabs/Module/Settings.php:722 msgid "Off" msgstr "Uit" #: ../../Zotlabs/Module/Admin.php:677 ../../Zotlabs/Module/Admin.php:678 -#: ../../Zotlabs/Module/Settings.php:823 +#: ../../Zotlabs/Module/Settings.php:722 msgid "On" msgstr "Aan" @@ -3958,7 +4051,7 @@ msgid "" "embedded content from that site is explicitly blocked." msgstr "Alle andere ingesloten (embedded) inhoud wordt gefilterd, tenzij ingesloten (embedded) inhoud van een website expliciet wordt geblokkeerd." -#: ../../Zotlabs/Module/Admin.php:756 ../../include/widgets.php:1479 +#: ../../Zotlabs/Module/Admin.php:756 ../../include/widgets.php:1385 msgid "Security" msgstr "Beveiliging" @@ -4126,7 +4219,7 @@ msgid "Account '%s' unblocked" msgstr "Account '%s' gedeblokkeerd" #: ../../Zotlabs/Module/Admin.php:1031 ../../Zotlabs/Module/Admin.php:1044 -#: ../../include/widgets.php:1477 +#: ../../include/widgets.php:1383 msgid "Accounts" msgstr "Accounts" @@ -4232,7 +4325,7 @@ msgstr "Scripts toegestaan voor kanaal '%s'" msgid "Channel '%s' code disallowed" msgstr "Scripts niet toegestaan voor kanaal '%s'" -#: ../../Zotlabs/Module/Admin.php:1210 ../../include/widgets.php:1478 +#: ../../Zotlabs/Module/Admin.php:1210 ../../include/widgets.php:1384 msgid "Channels" msgstr "Kanalen" @@ -4252,7 +4345,7 @@ msgstr "Scripts toestaan" msgid "Disallow Code" msgstr "Scripts niet toestaan" -#: ../../Zotlabs/Module/Admin.php:1218 ../../include/conversation.php:1626 +#: ../../Zotlabs/Module/Admin.php:1218 ../../include/conversation.php:1611 msgid "Channel" msgstr "Kanaal" @@ -4291,7 +4384,7 @@ msgid "Enable" msgstr "Inschakelen" #: ../../Zotlabs/Module/Admin.php:1330 ../../Zotlabs/Module/Admin.php:1420 -#: ../../include/widgets.php:1481 +#: ../../include/widgets.php:1387 msgid "Plugins" msgstr "Plugins" @@ -4300,8 +4393,8 @@ msgid "Toggle" msgstr "Omschakelen" #: ../../Zotlabs/Module/Admin.php:1332 ../../Zotlabs/Module/Admin.php:1615 -#: ../../Zotlabs/Lib/Apps.php:216 ../../include/nav.php:210 -#: ../../include/widgets.php:647 +#: ../../Zotlabs/Lib/Apps.php:215 ../../include/widgets.php:638 +#: ../../include/nav.php:208 msgid "Settings" msgstr "Instellingen" @@ -4357,7 +4450,7 @@ msgstr "Plugin-repository downloaden" msgid "Install new repo" msgstr "Nieuwe repository installeren" -#: ../../Zotlabs/Module/Admin.php:1405 ../../Zotlabs/Lib/Apps.php:334 +#: ../../Zotlabs/Module/Admin.php:1405 ../../Zotlabs/Lib/Apps.php:330 msgid "Install" msgstr "Installeren" @@ -4373,8 +4466,8 @@ msgstr "Toegevoegde plugin-repositories" msgid "Install a New Plugin Repository" msgstr "Nieuwe plugin-repository toevoegen" -#: ../../Zotlabs/Module/Admin.php:1435 ../../Zotlabs/Module/Settings.php:72 -#: ../../Zotlabs/Module/Settings.php:670 ../../Zotlabs/Lib/Apps.php:334 +#: ../../Zotlabs/Module/Admin.php:1435 ../../Zotlabs/Module/Settings.php:77 +#: ../../Zotlabs/Module/Settings.php:616 ../../Zotlabs/Lib/Apps.php:330 msgid "Update" msgstr "Bijwerken" @@ -4391,7 +4484,7 @@ msgid "Screenshot" msgstr "Schermafdruk" #: ../../Zotlabs/Module/Admin.php:1613 ../../Zotlabs/Module/Admin.php:1647 -#: ../../include/widgets.php:1482 +#: ../../include/widgets.php:1388 msgid "Themes" msgstr "Thema's" @@ -4407,8 +4500,8 @@ msgstr "[Niet ondersteund]" msgid "Log settings updated." msgstr "Logboek-instellingen bijgewerkt." -#: ../../Zotlabs/Module/Admin.php:1732 ../../include/widgets.php:1503 -#: ../../include/widgets.php:1513 +#: ../../Zotlabs/Module/Admin.php:1732 ../../include/widgets.php:1409 +#: ../../include/widgets.php:1419 msgid "Logs" msgstr "Logboeken" @@ -4474,7 +4567,7 @@ msgstr "Velddefinitie niet gevonden" msgid "Edit Profile Field" msgstr "Profielveld bewerken" -#: ../../Zotlabs/Module/Admin.php:2106 ../../include/widgets.php:1484 +#: ../../Zotlabs/Module/Admin.php:2106 ../../include/widgets.php:1390 msgid "Profile Fields" msgstr "Profielvelden" @@ -4502,384 +4595,57 @@ msgstr "Extra (handmatig toegevoegde) velden" msgid "Create Custom Field" msgstr "Extra velden aanmaken" -#: ../../Zotlabs/Module/New_channel.php:128 -#: ../../Zotlabs/Module/Register.php:231 -msgid "Name or caption" -msgstr "Naam" +#: ../../Zotlabs/Module/Appman.php:37 ../../Zotlabs/Module/Appman.php:53 +msgid "App installed." +msgstr "App geïnstalleerd" -#: ../../Zotlabs/Module/New_channel.php:128 -#: ../../Zotlabs/Module/Register.php:231 -msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\"" -msgstr "Voorbeelden: \"Jan Pietersen\", \"Willems weblog\", \"Computerforum\"" +#: ../../Zotlabs/Module/Appman.php:46 +msgid "Malformed app." +msgstr "Misvormde app." -#: ../../Zotlabs/Module/New_channel.php:130 -#: ../../Zotlabs/Module/Register.php:233 -msgid "Choose a short nickname" -msgstr "Korte bijnaam" +#: ../../Zotlabs/Module/Appman.php:104 +msgid "Embed code" +msgstr "Insluitcode" -#: ../../Zotlabs/Module/New_channel.php:130 -#: ../../Zotlabs/Module/Register.php:233 -#, php-format -msgid "" -"Your nickname will be used to create an easy to remember channel address " -"e.g. nickname%s" -msgstr "Deze bijnaam wordt gebruikt om een makkelijk te onthouden kanaaladres van jouw kanaal aan te maken, die je dan met anderen kunt delen. Bijvoorbeeld: bijnaam%s" +#: ../../Zotlabs/Module/Appman.php:110 ../../include/widgets.php:107 +msgid "Edit App" +msgstr "App bewerken" -#: ../../Zotlabs/Module/New_channel.php:132 -#: ../../Zotlabs/Module/Register.php:235 -msgid "Channel role and privacy" -msgstr "Kanaaltype en privacy" +#: ../../Zotlabs/Module/Appman.php:110 +msgid "Create App" +msgstr "App maken" -#: ../../Zotlabs/Module/New_channel.php:132 -#: ../../Zotlabs/Module/Register.php:235 -msgid "Select a channel role with your privacy requirements." -msgstr "Kies een kanaaltype met het door jou gewenste privacyniveau." +#: ../../Zotlabs/Module/Appman.php:115 +msgid "Name of app" +msgstr "Naam van app" -#: ../../Zotlabs/Module/New_channel.php:132 -#: ../../Zotlabs/Module/Register.php:235 -msgid "Read more about roles" -msgstr "Lees meer over kanaaltypes" +#: ../../Zotlabs/Module/Appman.php:116 +msgid "Location (URL) of app" +msgstr "Locatie (URL) van app" -#: ../../Zotlabs/Module/New_channel.php:135 -msgid "Create Channel" -msgstr "Kanaal aanmaken" +#: ../../Zotlabs/Module/Appman.php:118 +msgid "Photo icon URL" +msgstr "URL van pictogram" -#: ../../Zotlabs/Module/New_channel.php:136 -msgid "" -"A channel is your identity on this network. It can represent a person, a " -"blog, or a forum to name a few. Channels can make connections with other " -"channels to share information with highly detailed permissions." -msgstr "Een kanaal is jouw identiteit in dit netwerk. Het kan bijvoorbeeld een persoon, een blog of een forum vertegenwoordigen. Door met elkaar te verbinden kunnen kanalen, met behulp van uitgebreide permissies, informatie uitwisselen." +#: ../../Zotlabs/Module/Appman.php:118 +msgid "80 x 80 pixels - optional" +msgstr "80 x 80 pixels (optioneel)" -#: ../../Zotlabs/Module/New_channel.php:137 -msgid "" -"or import an existing channel from another location." -msgstr "Of importeer een bestaand kanaal vanaf een andere locatie" +#: ../../Zotlabs/Module/Appman.php:119 +msgid "Categories (optional, comma separated list)" +msgstr "Categorieën (optioneel, door komma's gescheiden lijst)" -#: ../../Zotlabs/Module/Ping.php:265 -msgid "sent you a private message" -msgstr "stuurde jou een privébericht" +#: ../../Zotlabs/Module/Appman.php:120 +msgid "Version ID" +msgstr "Versie-ID" -#: ../../Zotlabs/Module/Ping.php:313 -msgid "added your channel" -msgstr "voegde jouw kanaal toe" +#: ../../Zotlabs/Module/Appman.php:121 +msgid "Price of app" +msgstr "Prijs van de app" -#: ../../Zotlabs/Module/Ping.php:323 -msgid "g A l F d" -msgstr "G:i, l d F" - -#: ../../Zotlabs/Module/Ping.php:346 -msgid "[today]" -msgstr "[vandaag]" - -#: ../../Zotlabs/Module/Ping.php:355 -msgid "posted an event" -msgstr "plaatste een gebeurtenis" - -#: ../../Zotlabs/Module/Notifications.php:30 -msgid "Invalid request identifier." -msgstr "Ongeldige verzoek identificator (request identifier)" - -#: ../../Zotlabs/Module/Notifications.php:39 -msgid "Discard" -msgstr "Annuleren" - -#: ../../Zotlabs/Module/Notifications.php:103 ../../include/nav.php:193 -msgid "Mark all system notifications seen" -msgstr "Markeer alle systeemnotificaties als bekeken" - -#: ../../Zotlabs/Module/Poke.php:168 ../../Zotlabs/Lib/Apps.php:228 -#: ../../include/conversation.php:963 -msgid "Poke" -msgstr "Aanstoten" - -#: ../../Zotlabs/Module/Poke.php:169 -msgid "Poke somebody" -msgstr "Iemand aanstoten" - -#: ../../Zotlabs/Module/Poke.php:172 -msgid "Poke/Prod" -msgstr "Aanstoten/porren" - -#: ../../Zotlabs/Module/Poke.php:173 -msgid "Poke, prod or do other things to somebody" -msgstr "Iemand bijvoorbeeld aanstoten of poren" - -#: ../../Zotlabs/Module/Poke.php:180 -msgid "Recipient" -msgstr "Ontvanger" - -#: ../../Zotlabs/Module/Poke.php:181 -msgid "Choose what you wish to do to recipient" -msgstr "Kies wat je met de ontvanger wil doen" - -#: ../../Zotlabs/Module/Poke.php:184 ../../Zotlabs/Module/Poke.php:185 -msgid "Make this post private" -msgstr "Maak dit bericht privé" - -#: ../../Zotlabs/Module/Oexchange.php:27 -msgid "Unable to find your hub." -msgstr "Niet in staat om je hub te vinden" - -#: ../../Zotlabs/Module/Oexchange.php:41 -msgid "Post successful." -msgstr "Verzenden bericht geslaagd." - -#: ../../Zotlabs/Module/Openid.php:30 -msgid "OpenID protocol error. No ID returned." -msgstr "OpenID-protocolfout. Geen ID terugontvangen." - -#: ../../Zotlabs/Module/Openid.php:193 ../../include/auth.php:285 -msgid "Login failed." -msgstr "Inloggen mislukt." - -#: ../../Zotlabs/Module/Profperm.php:34 ../../Zotlabs/Module/Profperm.php:63 -msgid "Invalid profile identifier." -msgstr "Ongeldige profiel-identificator" - -#: ../../Zotlabs/Module/Profperm.php:115 -msgid "Profile Visibility Editor" -msgstr "Zichtbaarheid profiel " - -#: ../../Zotlabs/Module/Profperm.php:117 ../../include/channel.php:1290 -msgid "Profile" -msgstr "Profiel" - -#: ../../Zotlabs/Module/Profperm.php:119 -msgid "Click on a contact to add or remove." -msgstr "Klik op een connectie om deze toe te voegen of te verwijderen" - -#: ../../Zotlabs/Module/Profperm.php:128 -msgid "Visible To" -msgstr "Zichtbaar voor" - -#: ../../Zotlabs/Module/Pconfig.php:26 ../../Zotlabs/Module/Pconfig.php:59 -msgid "This setting requires special processing and editing has been blocked." -msgstr "Deze instelling vereist een speciaal proces en bewerken is geblokkeerd." - -#: ../../Zotlabs/Module/Pconfig.php:48 -msgid "Configuration Editor" -msgstr "Configuratiebewerker" - -#: ../../Zotlabs/Module/Pconfig.php:49 -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 "Waarschuwing: het veranderen van sommige instellingen kunnen jouw kanaal onklaar maken. Verlaat deze pagina, tenzij je weet waar je mee bezig bent en voldoende kennis bezit over hoe je deze functies moet gebruiken. " - -#: ../../Zotlabs/Module/Probe.php:28 ../../Zotlabs/Module/Probe.php:32 -#, php-format -msgid "Fetching URL returns error: %1$s" -msgstr "Ophalen URL gaf een foutmelding terug: %1$s" - -#: ../../Zotlabs/Module/Siteinfo.php:19 -#, php-format -msgid "Version %s" -msgstr "Versie %s" - -#: ../../Zotlabs/Module/Siteinfo.php:34 -msgid "Installed plugins/addons/apps:" -msgstr "Ingeschakelde plugins en apps:" - -#: ../../Zotlabs/Module/Siteinfo.php:36 -msgid "No installed plugins/addons/apps" -msgstr "Geen ingeschakelde plugins en apps" - -#: ../../Zotlabs/Module/Siteinfo.php:49 -msgid "" -"This is a hub of $Projectname - a global cooperative network of " -"decentralized privacy enhanced websites." -msgstr "Dit is een $Projectname-hub - $Projectname is een wereldwijd coöperatief netwerk van gedecentraliseerde websites (hubs) met verbeterde privacy." - -#: ../../Zotlabs/Module/Siteinfo.php:51 -msgid "Tag: " -msgstr "Tag: " - -#: ../../Zotlabs/Module/Siteinfo.php:53 -msgid "Last background fetch: " -msgstr "Meest recente achtergrond-fetch:" - -#: ../../Zotlabs/Module/Siteinfo.php:55 -msgid "Current load average: " -msgstr "Gemiddelde systeembelasting is nu:" - -#: ../../Zotlabs/Module/Siteinfo.php:58 -msgid "Running at web location" -msgstr "Draaiend op weblocatie" - -#: ../../Zotlabs/Module/Siteinfo.php:59 -msgid "" -"Please visit hubzilla.org to learn more " -"about $Projectname." -msgstr "Bezoek hubzilla.org " - -#: ../../Zotlabs/Module/Siteinfo.php:60 -msgid "Bug reports and issues: please visit" -msgstr "Bugrapporten en andere kwesties: bezoek" - -#: ../../Zotlabs/Module/Siteinfo.php:62 -msgid "$projectname issues" -msgstr "$projectname-issues" - -#: ../../Zotlabs/Module/Siteinfo.php:63 -msgid "" -"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot " -"com" -msgstr "Voorstellen, lofbetuigingen, enz. - e-mail \"redmatrix\" at librelist - dot com" - -#: ../../Zotlabs/Module/Siteinfo.php:65 -msgid "Site Administrators" -msgstr "Hubbeheerders: " - -#: ../../Zotlabs/Module/Rmagic.php:44 -msgid "" -"We encountered a problem while logging in with the OpenID you provided. " -"Please check the correct spelling of the ID." -msgstr "We hebben een probleem ontdekt tijdens het inloggen met de OpenID die je hebt verstrekt. Controleer de ID op typefouten." - -#: ../../Zotlabs/Module/Rmagic.php:44 -msgid "The error message was:" -msgstr "Het foutbericht was:" - -#: ../../Zotlabs/Module/Rmagic.php:48 -msgid "Authentication failed." -msgstr "Authenticatie mislukt." - -#: ../../Zotlabs/Module/Rmagic.php:88 -msgid "Remote Authentication" -msgstr "Authenticatie op afstand" - -#: ../../Zotlabs/Module/Rmagic.php:89 -msgid "Enter your channel address (e.g. channel@example.com)" -msgstr "Vul jouw kanaaladres in (bijv. channel@example.com)" - -#: ../../Zotlabs/Module/Rmagic.php:90 -msgid "Authenticate" -msgstr "Authenticeren" - -#: ../../Zotlabs/Module/Pubsites.php:22 ../../include/widgets.php:1337 -msgid "Public Hubs" -msgstr "Openbare hubs" - -#: ../../Zotlabs/Module/Pubsites.php:25 -msgid "" -"The listed hubs allow public registration for the $Projectname network. All " -"hubs in the network are interlinked so membership on any of them conveys " -"membership in the network as a whole. Some hubs may require subscription or " -"provide tiered service plans. The hub itself may provide " -"additional details." -msgstr "Op de hier weergegeven hubs kan iedereen zich voor het $Projectname-netwerk aanmelden. Alle hubs in het netwerk zijn met elkaar verbonden, dus maakt het qua lidmaatschap niet uit waar je je aanmeldt. Op sommige hubs heb je eerst goedkeuring nodig en sommige hubs vereisen een financiële tegemoetkoming voor bepaalde uitbreidingen. Mogelijk wordt hierover op de hub zelf meer informatie gegeven." - -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Hub URL" -msgstr "Hub-URL" - -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Access Type" -msgstr "Toegangs-
 type" - -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Registration Policy" -msgstr "Registratie-
 beleid" - -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Stats" -msgstr "Stats" - -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Software" -msgstr "Software" - -#: ../../Zotlabs/Module/Pubsites.php:31 ../../Zotlabs/Module/Ratings.php:103 -#: ../../include/conversation.php:962 -msgid "Ratings" -msgstr "Beoordelingen" - -#: ../../Zotlabs/Module/Pubsites.php:38 -msgid "Rate" -msgstr "Beoordeel" - -#: ../../Zotlabs/Module/Profile_photo.php:186 -msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." -msgstr "Vernieuw de pagina met shift+R of shift+F5, of leeg je browserbuffer, wanneer de nieuwe foto niet meteen wordt weergegeven." - -#: ../../Zotlabs/Module/Profile_photo.php:389 -msgid "Upload Profile Photo" -msgstr "Profielfoto uploaden" - -#: ../../Zotlabs/Module/Blocks.php:97 ../../Zotlabs/Module/Blocks.php:155 -#: ../../Zotlabs/Module/Editblock.php:108 -msgid "Block Name" -msgstr "Bloknaam" - -#: ../../Zotlabs/Module/Blocks.php:154 ../../include/text.php:2238 -msgid "Blocks" -msgstr "Blokken" - -#: ../../Zotlabs/Module/Blocks.php:156 -msgid "Block Title" -msgstr "Bloktitel" - -#: ../../Zotlabs/Module/Rate.php:160 -msgid "Website:" -msgstr "Website:" - -#: ../../Zotlabs/Module/Rate.php:163 -#, php-format -msgid "Remote Channel [%s] (not yet known on this site)" -msgstr "Kanaal op afstand [%s] (nog niet op deze hub bekend)" - -#: ../../Zotlabs/Module/Rate.php:164 -msgid "Rating (this information is public)" -msgstr "Beoordeling (deze informatie is openbaar)" - -#: ../../Zotlabs/Module/Rate.php:165 -msgid "Optionally explain your rating (this information is public)" -msgstr "Verklaar jouw beoordeling (niet verplicht, deze informatie is openbaar)" - -#: ../../Zotlabs/Module/Ratings.php:73 -msgid "No ratings" -msgstr "Geen beoordelingen" - -#: ../../Zotlabs/Module/Ratings.php:104 -msgid "Rating: " -msgstr "Beoordeling: " - -#: ../../Zotlabs/Module/Ratings.php:105 -msgid "Website: " -msgstr "Website: " - -#: ../../Zotlabs/Module/Ratings.php:107 -msgid "Description: " -msgstr "Omschrijving: " - -#: ../../Zotlabs/Module/Apps.php:47 ../../include/nav.php:165 -#: ../../include/widgets.php:102 -msgid "Apps" -msgstr "Apps" - -#: ../../Zotlabs/Module/Editblock.php:124 ../../include/conversation.php:1243 -msgid "Title (optional)" -msgstr "Titel (optioneel)" - -#: ../../Zotlabs/Module/Editblock.php:133 -msgid "Edit Block" -msgstr "Blok bewerken" - -#: ../../Zotlabs/Module/Common.php:14 -msgid "No channel." -msgstr "Geen kanaal." - -#: ../../Zotlabs/Module/Common.php:43 -msgid "Common connections" -msgstr "Veel voorkomende connecties" - -#: ../../Zotlabs/Module/Common.php:48 -msgid "No connections in common." -msgstr "Geen gemeenschappelijke connecties." +#: ../../Zotlabs/Module/Appman.php:122 +msgid "Location (URL) to purchase app" +msgstr "Locatie (URL) om de app aan te schaffen" #: ../../Zotlabs/Module/Rbmark.php:94 msgid "Select a bookmark folder" @@ -4984,154 +4750,120 @@ msgstr "Ja" msgid "Membership on this site is by invitation only." msgstr "Registreren op deze $Projectname-hub kan alleen op uitnodiging." -#: ../../Zotlabs/Module/Register.php:262 ../../include/nav.php:149 -#: ../../boot.php:1686 +#: ../../Zotlabs/Module/Register.php:262 ../../include/nav.php:147 +#: ../../boot.php:1685 msgid "Register" msgstr "Registreren" -#: ../../Zotlabs/Module/Register.php:263 -msgid "" -"This site may require email verification after submitting this form. If you " -"are returned to a login page, please check your email for instructions." -msgstr "Mogelijk moet op deze hub eerst jouw e-mail geverifieerd worden. Wanneer je na het indienen van dit formulier op de inlogpagina terecht komt, dan dien je jouw e-mail te controleren voor instructies. Controleer eventueel ook jouw spamfolder." +#: ../../Zotlabs/Module/Register.php:262 +msgid "Proceed to create your first channel" +msgstr "Volgende stap: aanmaken van jouw eerste kanaal" #: ../../Zotlabs/Module/Regmod.php:15 msgid "Please login." msgstr "Inloggen." -#: ../../Zotlabs/Module/Removeaccount.php:35 +#: ../../Zotlabs/Module/Removeaccount.php:34 msgid "" "Account removals are not allowed within 48 hours of changing the account " "password." msgstr "Het verwijderen van een account is niet toegestaan binnen 48 uur nadat het wachtwoord is veranderd." -#: ../../Zotlabs/Module/Removeaccount.php:57 +#: ../../Zotlabs/Module/Removeaccount.php:56 msgid "Remove This Account" msgstr "Verwijder dit account" -#: ../../Zotlabs/Module/Removeaccount.php:58 -#: ../../Zotlabs/Module/Removeme.php:61 +#: ../../Zotlabs/Module/Removeaccount.php:57 +#: ../../Zotlabs/Module/Removeme.php:59 msgid "WARNING: " msgstr "WAARSCHUWING: " -#: ../../Zotlabs/Module/Removeaccount.php:58 +#: ../../Zotlabs/Module/Removeaccount.php:57 msgid "" "This account and all its channels will be completely removed from the " "network. " msgstr "Dit account en al zijn kanalen worden volledig uit het $Projectname-netwerk verwijderd." -#: ../../Zotlabs/Module/Removeaccount.php:58 -#: ../../Zotlabs/Module/Removeme.php:61 +#: ../../Zotlabs/Module/Removeaccount.php:57 +#: ../../Zotlabs/Module/Removeme.php:59 msgid "This action is permanent and can not be undone!" msgstr "Deze handeling is van permanente aard en kan niet meer worden teruggedraaid!" -#: ../../Zotlabs/Module/Removeaccount.php:59 -#: ../../Zotlabs/Module/Removeme.php:62 +#: ../../Zotlabs/Module/Removeaccount.php:58 +#: ../../Zotlabs/Module/Removeme.php:60 msgid "Please enter your password for verification:" msgstr "Vul je wachtwoord in ter verificatie:" -#: ../../Zotlabs/Module/Removeaccount.php:60 +#: ../../Zotlabs/Module/Removeaccount.php:59 msgid "" "Remove this account, all its channels and all its channel clones from the " "network" msgstr "Dit account, al zijn kanalen en alle klonen van zijn kanalen uit het $Projectname-netwerk verwijderen" -#: ../../Zotlabs/Module/Removeaccount.php:60 +#: ../../Zotlabs/Module/Removeaccount.php:59 msgid "" "By default only the instances of the channels located on this hub will be " "removed from the network" msgstr "Standaard worden alleen de kanalen die zich op deze hub bevinden uit het $Projectname-netwerk verwijderd" -#: ../../Zotlabs/Module/Removeaccount.php:61 -#: ../../Zotlabs/Module/Settings.php:759 +#: ../../Zotlabs/Module/Removeaccount.php:60 +#: ../../Zotlabs/Module/Settings.php:705 msgid "Remove Account" msgstr "Account verwijderen" -#: ../../Zotlabs/Module/Removeme.php:35 +#: ../../Zotlabs/Module/Removeme.php:33 msgid "" "Channel removals are not allowed within 48 hours of changing the account " "password." msgstr "Het verwijderen van een kanaal is niet toegestaan binnen 48 uur nadat het wachtwoord van het account is veranderd." -#: ../../Zotlabs/Module/Removeme.php:60 +#: ../../Zotlabs/Module/Removeme.php:58 msgid "Remove This Channel" msgstr "Verwijder dit kanaal" -#: ../../Zotlabs/Module/Removeme.php:61 +#: ../../Zotlabs/Module/Removeme.php:59 msgid "This channel will be completely removed from the network. " msgstr "Dit kanaal wordt volledig uit het $Projectname-netwerk verwijderd." -#: ../../Zotlabs/Module/Removeme.php:63 +#: ../../Zotlabs/Module/Removeme.php:61 msgid "Remove this channel and all its clones from the network" msgstr "Dit kanaal en alle klonen hiervan uit het $Projectname-netwerk verwijderen" -#: ../../Zotlabs/Module/Removeme.php:63 +#: ../../Zotlabs/Module/Removeme.php:61 msgid "" "By default only the instance of the channel located on this hub will be " "removed from the network" msgstr "Standaard wordt alleen het kanaal dat zich op deze hub bevindt uit het $Projectname-netwerk verwijderd" -#: ../../Zotlabs/Module/Removeme.php:64 ../../Zotlabs/Module/Settings.php:1219 +#: ../../Zotlabs/Module/Removeme.php:62 ../../Zotlabs/Module/Settings.php:1124 msgid "Remove Channel" msgstr "Kanaal verwijderen" -#: ../../Zotlabs/Module/Uexport.php:55 ../../Zotlabs/Module/Uexport.php:56 -msgid "Export Channel" -msgstr "Kanaal exporteren" - -#: ../../Zotlabs/Module/Uexport.php:57 +#: ../../Zotlabs/Module/Rmagic.php:44 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 "Exporteer de basisinformatie van jouw kanaal naar een bestand. Dit fungeert als een back-up van jouw connecties, permissies, profiel en basisgegevens, die gebruikt kan worden om op een nieuwe hub jouw gegevens te importeren. Deze back-up bevat echter niet de inhoud van jouw kanaal." +"We encountered a problem while logging in with the OpenID you provided. " +"Please check the correct spelling of the ID." +msgstr "We hebben een probleem ontdekt tijdens het inloggen met de OpenID die je hebt verstrekt. Controleer de ID op typefouten." -#: ../../Zotlabs/Module/Uexport.php:58 -msgid "Export Content" -msgstr "Inhoud exporteren" +#: ../../Zotlabs/Module/Rmagic.php:44 +msgid "The error message was:" +msgstr "Het foutbericht was:" -#: ../../Zotlabs/Module/Uexport.php:59 -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 "Exporteer informatie en recente inhoud van jouw kanaal naar een JSON-back-up, wat kan worden gebruikt om jouw kanaal te herstellen of te importeren op een andere hub. Dit slaat al jouw connecties, permissies, profielgegevens en enkele maanden aan inhoud van jouw kanaal op. Dit bestand kan ZEER groot worden. Wees geduldig - het kan enkele minuten duren voordat de download begint." +#: ../../Zotlabs/Module/Rmagic.php:48 +msgid "Authentication failed." +msgstr "Authenticatie mislukt." -#: ../../Zotlabs/Module/Uexport.php:60 -msgid "Export your posts from a given year." -msgstr "Exporteer jouw berichten uit een bepaald jaar." +#: ../../Zotlabs/Module/Rmagic.php:88 +msgid "Remote Authentication" +msgstr "Authenticatie op afstand" -#: ../../Zotlabs/Module/Uexport.php:62 -msgid "" -"You may also export your posts and conversations for a particular year or " -"month. Adjust the date in your browser location bar to select other dates. " -"If the export fails (possibly due to memory exhaustion on your server hub), " -"please try again selecting a more limited date range." -msgstr "Je kan ook berichten en conversaties uit een bepaald jaar of van een bepaalde maand exporteren. Verander de datum in de adresbalk van jouw webbrowser om andere jaren en maanden te selecteren. Wanneer het exporteren mislukt (waarschijnlijk door een gebrek aan beschikbaar servergeheugen), probeer het dan nogmaals met een beperkter tijdvak." +#: ../../Zotlabs/Module/Rmagic.php:89 +msgid "Enter your channel address (e.g. channel@example.com)" +msgstr "Vul jouw kanaaladres in (bijv. channel@example.com)" -#: ../../Zotlabs/Module/Uexport.php:63 -#, php-format -msgid "" -"To select all posts for a given year, such as this year, visit %2$s" -msgstr "Bezoek %2$s om alle berichten van bijvoorbeeld dit jaar te selecteren. " - -#: ../../Zotlabs/Module/Uexport.php:64 -#, php-format -msgid "" -"To select all posts for a given month, such as January of this year, visit " -"%2$s" -msgstr "Bezoek %2$s om alle berichten van bijvoorbeeld januari dit jaar te selecteren." - -#: ../../Zotlabs/Module/Uexport.php:65 -#, php-format -msgid "" -"These content files may be imported or restored by visiting %2$s on any site containing your channel. For best results" -" please import or restore these in date order (oldest first)." -msgstr "Deze back-up-bestanden kunnen geïmporteerd of hersteld worden door op jouw hub en met jouw kanaal %2$s te bezoeken. Voor het beste resultaat kan je de bestanden in chronologische volgorde importeren of herstellen." +#: ../../Zotlabs/Module/Rmagic.php:90 +msgid "Authenticate" +msgstr "Authenticeren" #: ../../Zotlabs/Module/Search.php:216 #, php-format @@ -5147,652 +4879,609 @@ msgstr "Zoekresultaten voor %s" msgid "No service class restrictions found." msgstr "Geen abonnementsbeperkingen gevonden." -#: ../../Zotlabs/Module/Settings.php:64 +#: ../../Zotlabs/Module/Settings.php:69 msgid "Name is required" msgstr "Naam is vereist" -#: ../../Zotlabs/Module/Settings.php:68 +#: ../../Zotlabs/Module/Settings.php:73 msgid "Key and Secret are required" msgstr "Key en secret zijn vereist" -#: ../../Zotlabs/Module/Settings.php:138 -#, php-format -msgid "This channel is limited to %d tokens" -msgstr "Dit kanaal heeft een limiet van %d tokens" - -#: ../../Zotlabs/Module/Settings.php:144 -msgid "Name and Password are required." -msgstr "Naam en wachtwoord zijn vereist" - -#: ../../Zotlabs/Module/Settings.php:168 -msgid "Token saved." -msgstr "Token opgeslagen." - -#: ../../Zotlabs/Module/Settings.php:274 +#: ../../Zotlabs/Module/Settings.php:225 msgid "Not valid email." msgstr "Geen geldig e-mailadres." -#: ../../Zotlabs/Module/Settings.php:277 +#: ../../Zotlabs/Module/Settings.php:228 msgid "Protected email address. Cannot change to that email." msgstr "Beschermd e-mailadres. Kan dat e-mailadres niet gebruiken." -#: ../../Zotlabs/Module/Settings.php:286 +#: ../../Zotlabs/Module/Settings.php:237 msgid "System failure storing new email. Please try again." msgstr "Systeemfout opslaan van nieuwe e-mail. Probeer het nog een keer." -#: ../../Zotlabs/Module/Settings.php:303 +#: ../../Zotlabs/Module/Settings.php:254 msgid "Password verification failed." msgstr "Wachtwoordverificatie mislukt" -#: ../../Zotlabs/Module/Settings.php:310 +#: ../../Zotlabs/Module/Settings.php:261 msgid "Passwords do not match. Password unchanged." msgstr "Wachtwoorden komen niet overeen. Wachtwoord onveranderd." -#: ../../Zotlabs/Module/Settings.php:314 +#: ../../Zotlabs/Module/Settings.php:265 msgid "Empty passwords are not allowed. Password unchanged." msgstr "Lege wachtwoorden zijn niet toegestaan. Wachtwoord onveranderd." -#: ../../Zotlabs/Module/Settings.php:328 +#: ../../Zotlabs/Module/Settings.php:279 msgid "Password changed." msgstr "Wachtwoord veranderd." -#: ../../Zotlabs/Module/Settings.php:330 +#: ../../Zotlabs/Module/Settings.php:281 msgid "Password update failed. Please try again." msgstr "Bijwerken wachtwoord mislukt. Probeer opnieuw." -#: ../../Zotlabs/Module/Settings.php:579 +#: ../../Zotlabs/Module/Settings.php:525 msgid "Settings updated." msgstr "Instellingen bijgewerkt." -#: ../../Zotlabs/Module/Settings.php:643 ../../Zotlabs/Module/Settings.php:669 -#: ../../Zotlabs/Module/Settings.php:705 +#: ../../Zotlabs/Module/Settings.php:589 ../../Zotlabs/Module/Settings.php:615 +#: ../../Zotlabs/Module/Settings.php:651 msgid "Add application" msgstr "Applicatie toevoegen" -#: ../../Zotlabs/Module/Settings.php:646 +#: ../../Zotlabs/Module/Settings.php:592 msgid "Name of application" msgstr "Naam van applicatie" -#: ../../Zotlabs/Module/Settings.php:647 ../../Zotlabs/Module/Settings.php:673 +#: ../../Zotlabs/Module/Settings.php:593 ../../Zotlabs/Module/Settings.php:619 msgid "Consumer Key" msgstr "Consumer key" -#: ../../Zotlabs/Module/Settings.php:647 ../../Zotlabs/Module/Settings.php:648 +#: ../../Zotlabs/Module/Settings.php:593 ../../Zotlabs/Module/Settings.php:594 msgid "Automatically generated - change if desired. Max length 20" msgstr "Automatische gegenereerd - verander wanneer gewenst. Maximale lengte is 20" -#: ../../Zotlabs/Module/Settings.php:648 ../../Zotlabs/Module/Settings.php:674 +#: ../../Zotlabs/Module/Settings.php:594 ../../Zotlabs/Module/Settings.php:620 msgid "Consumer Secret" msgstr "Consumer secret" -#: ../../Zotlabs/Module/Settings.php:649 ../../Zotlabs/Module/Settings.php:675 +#: ../../Zotlabs/Module/Settings.php:595 ../../Zotlabs/Module/Settings.php:621 msgid "Redirect" msgstr "Redirect/doorverwijzing" -#: ../../Zotlabs/Module/Settings.php:649 +#: ../../Zotlabs/Module/Settings.php:595 msgid "" "Redirect URI - leave blank unless your application specifically requires " "this" msgstr "URI voor redirect - laat leeg, behalve wanneer de applicatie dit vereist" -#: ../../Zotlabs/Module/Settings.php:650 ../../Zotlabs/Module/Settings.php:676 +#: ../../Zotlabs/Module/Settings.php:596 ../../Zotlabs/Module/Settings.php:622 msgid "Icon url" msgstr "Pictogram-URL" -#: ../../Zotlabs/Module/Settings.php:650 ../../Zotlabs/Module/Sources.php:112 +#: ../../Zotlabs/Module/Settings.php:596 ../../Zotlabs/Module/Sources.php:112 #: ../../Zotlabs/Module/Sources.php:147 msgid "Optional" msgstr "Optioneel" -#: ../../Zotlabs/Module/Settings.php:661 +#: ../../Zotlabs/Module/Settings.php:607 msgid "Application not found." msgstr "Applicatie niet gevonden." -#: ../../Zotlabs/Module/Settings.php:704 +#: ../../Zotlabs/Module/Settings.php:650 msgid "Connected Apps" msgstr "Verbonden applicaties" -#: ../../Zotlabs/Module/Settings.php:708 +#: ../../Zotlabs/Module/Settings.php:654 msgid "Client key starts with" msgstr "Client key begint met" -#: ../../Zotlabs/Module/Settings.php:709 +#: ../../Zotlabs/Module/Settings.php:655 msgid "No name" msgstr "Geen naam" -#: ../../Zotlabs/Module/Settings.php:710 +#: ../../Zotlabs/Module/Settings.php:656 msgid "Remove authorization" msgstr "Autorisatie verwijderen" -#: ../../Zotlabs/Module/Settings.php:723 +#: ../../Zotlabs/Module/Settings.php:669 msgid "No feature settings configured" msgstr "Geen plugin-instellingen aanwezig" -#: ../../Zotlabs/Module/Settings.php:730 +#: ../../Zotlabs/Module/Settings.php:676 msgid "Feature/Addon Settings" msgstr "Plugin-instellingen" -#: ../../Zotlabs/Module/Settings.php:753 +#: ../../Zotlabs/Module/Settings.php:699 msgid "Account Settings" msgstr "Account-instellingen" -#: ../../Zotlabs/Module/Settings.php:754 +#: ../../Zotlabs/Module/Settings.php:700 msgid "Current Password" msgstr "Huidig wachtwoord" -#: ../../Zotlabs/Module/Settings.php:755 +#: ../../Zotlabs/Module/Settings.php:701 msgid "Enter New Password" msgstr "Nieuw wachtwoord invoeren" -#: ../../Zotlabs/Module/Settings.php:756 +#: ../../Zotlabs/Module/Settings.php:702 msgid "Confirm New Password" msgstr "Nieuw wachtwoord bevestigen" -#: ../../Zotlabs/Module/Settings.php:756 +#: ../../Zotlabs/Module/Settings.php:702 msgid "Leave password fields blank unless changing" msgstr "Laat de wachtwoordvelden leeg, behalve wanneer je deze wil veranderen" -#: ../../Zotlabs/Module/Settings.php:758 -#: ../../Zotlabs/Module/Settings.php:1136 +#: ../../Zotlabs/Module/Settings.php:704 +#: ../../Zotlabs/Module/Settings.php:1041 msgid "Email Address:" msgstr "E-mailadres:" -#: ../../Zotlabs/Module/Settings.php:760 +#: ../../Zotlabs/Module/Settings.php:706 msgid "Remove this account including all its channels" msgstr "Dit account en al zijn kanalen verwijderen" -#: ../../Zotlabs/Module/Settings.php:789 -msgid "" -"Use this form to create temporary access identifiers to share things with " -"non-members. These identities may be used in Access Control Lists and " -"visitors may login using these credentials to access the private content." -msgstr "Gebruik dit formulier om tijdelijke identiteiten aan te maken, waarmee je bepaalde informatie met niet-leden kan delen. Deze identiteiten kunnen onder Permissies (handmatige selectie) worden gebruikt. Gasten kunnen inloggen met onderstaande gegevens om zo toegang te krijgen tot de privéinhoud." - -#: ../../Zotlabs/Module/Settings.php:791 -msgid "" -"You may also provide dropbox style access links to friends and " -"associates by adding the Login Password to any specific site URL as shown. " -"Examples:" -msgstr "Je kan ook dropbox-achtige links aan mensen geven door bovenstaand wachtwoord op onderstaande manier aan een hub-URL toe te voegen. Voorbeelden:" - -#: ../../Zotlabs/Module/Settings.php:796 ../../include/widgets.php:614 -msgid "Guest Access Tokens" -msgstr "Gasttoegang" - -#: ../../Zotlabs/Module/Settings.php:803 -msgid "Login Name" -msgstr "Inlognaam" - -#: ../../Zotlabs/Module/Settings.php:804 -msgid "Login Password" -msgstr "Wachtwoord:" - -#: ../../Zotlabs/Module/Settings.php:805 -msgid "Expires (yyyy-mm-dd)" -msgstr "Geldig t/m (yyyy-mm-dd)" - -#: ../../Zotlabs/Module/Settings.php:830 +#: ../../Zotlabs/Module/Settings.php:729 msgid "Additional Features" msgstr "Extra functies" -#: ../../Zotlabs/Module/Settings.php:854 +#: ../../Zotlabs/Module/Settings.php:753 msgid "Connector Settings" msgstr "Instellingen externe koppelingen" -#: ../../Zotlabs/Module/Settings.php:893 +#: ../../Zotlabs/Module/Settings.php:792 msgid "No special theme for mobile devices" msgstr "Geen speciaal thema voor mobiele apparaten" -#: ../../Zotlabs/Module/Settings.php:896 +#: ../../Zotlabs/Module/Settings.php:795 #, php-format msgid "%s - (Experimental)" msgstr "%s - (experimenteel)" -#: ../../Zotlabs/Module/Settings.php:938 +#: ../../Zotlabs/Module/Settings.php:837 msgid "Display Settings" msgstr "Weergave-instellingen" -#: ../../Zotlabs/Module/Settings.php:939 +#: ../../Zotlabs/Module/Settings.php:838 msgid "Theme Settings" msgstr "Thema-instellingen" -#: ../../Zotlabs/Module/Settings.php:940 +#: ../../Zotlabs/Module/Settings.php:839 msgid "Custom Theme Settings" msgstr "Handmatige thema-instellingen" -#: ../../Zotlabs/Module/Settings.php:941 +#: ../../Zotlabs/Module/Settings.php:840 msgid "Content Settings" msgstr "Inhoudsinstellingen" -#: ../../Zotlabs/Module/Settings.php:947 +#: ../../Zotlabs/Module/Settings.php:846 msgid "Display Theme:" msgstr "Gebruik thema:" -#: ../../Zotlabs/Module/Settings.php:948 +#: ../../Zotlabs/Module/Settings.php:847 msgid "Mobile Theme:" msgstr "Mobiel thema:" -#: ../../Zotlabs/Module/Settings.php:949 +#: ../../Zotlabs/Module/Settings.php:848 msgid "Preload images before rendering the page" msgstr "Afbeeldingen laden voordat de pagina wordt weergegeven" -#: ../../Zotlabs/Module/Settings.php:949 +#: ../../Zotlabs/Module/Settings.php:848 msgid "" "The subjective page load time will be longer but the page will be ready when" " displayed" msgstr "De laadtijd van een pagina lijkt langer, maar de pagina is wel meteen helemaal geladen wanneer deze wordt weergeven" -#: ../../Zotlabs/Module/Settings.php:950 +#: ../../Zotlabs/Module/Settings.php:849 msgid "Enable user zoom on mobile devices" msgstr "Inzoomen op smartphones en tablets toestaan" -#: ../../Zotlabs/Module/Settings.php:951 +#: ../../Zotlabs/Module/Settings.php:850 msgid "Update browser every xx seconds" msgstr "Ververs de webbrowser om de zoveel seconde" -#: ../../Zotlabs/Module/Settings.php:951 +#: ../../Zotlabs/Module/Settings.php:850 msgid "Minimum of 10 seconds, no maximum" msgstr "Minimaal 10 seconde, geen maximum" -#: ../../Zotlabs/Module/Settings.php:952 +#: ../../Zotlabs/Module/Settings.php:851 msgid "Maximum number of conversations to load at any time:" msgstr "Maximaal aantal conversaties die per keer geladen worden:" -#: ../../Zotlabs/Module/Settings.php:952 +#: ../../Zotlabs/Module/Settings.php:851 msgid "Maximum of 100 items" msgstr "Maximaal 100 conversaties" -#: ../../Zotlabs/Module/Settings.php:953 +#: ../../Zotlabs/Module/Settings.php:852 msgid "Show emoticons (smilies) as images" msgstr "Toon emoticons (smilies) als afbeeldingen" -#: ../../Zotlabs/Module/Settings.php:954 +#: ../../Zotlabs/Module/Settings.php:853 msgid "Link post titles to source" msgstr "Berichtkoppen naar originele locatie linken" -#: ../../Zotlabs/Module/Settings.php:955 +#: ../../Zotlabs/Module/Settings.php:854 msgid "System Page Layout Editor - (advanced)" msgstr "Lay-out bewerken van systeempagina's (geavanceerd)" -#: ../../Zotlabs/Module/Settings.php:958 +#: ../../Zotlabs/Module/Settings.php:857 msgid "Use blog/list mode on channel page" msgstr "Gebruik blog/lijst-modus op kanaalpagina" -#: ../../Zotlabs/Module/Settings.php:958 ../../Zotlabs/Module/Settings.php:959 +#: ../../Zotlabs/Module/Settings.php:857 ../../Zotlabs/Module/Settings.php:858 msgid "(comments displayed separately)" msgstr "(reacties worden afzonderlijk weergeven)" -#: ../../Zotlabs/Module/Settings.php:959 +#: ../../Zotlabs/Module/Settings.php:858 msgid "Use blog/list mode on grid page" msgstr "Gebruik blog/lijst-modus op gridpagina" -#: ../../Zotlabs/Module/Settings.php:960 +#: ../../Zotlabs/Module/Settings.php:859 msgid "Channel page max height of content (in pixels)" msgstr "Maximale hoogte berichtinhoud op kanaalpagina (in pixels)" -#: ../../Zotlabs/Module/Settings.php:960 ../../Zotlabs/Module/Settings.php:961 +#: ../../Zotlabs/Module/Settings.php:859 ../../Zotlabs/Module/Settings.php:860 msgid "click to expand content exceeding this height" msgstr "klik om inhoud uit te klappen die deze hoogte overschrijdt" -#: ../../Zotlabs/Module/Settings.php:961 +#: ../../Zotlabs/Module/Settings.php:860 msgid "Grid page max height of content (in pixels)" msgstr "Maximale hoogte berichtinhoud op gridpagina (in pixels)" -#: ../../Zotlabs/Module/Settings.php:990 +#: ../../Zotlabs/Module/Settings.php:894 msgid "Nobody except yourself" msgstr "Niemand, behalve jezelf" -#: ../../Zotlabs/Module/Settings.php:991 +#: ../../Zotlabs/Module/Settings.php:895 msgid "Only those you specifically allow" msgstr "Alleen connecties met uitdrukkelijke toestemming" -#: ../../Zotlabs/Module/Settings.php:992 +#: ../../Zotlabs/Module/Settings.php:896 msgid "Approved connections" msgstr "Geaccepteerde connecties" -#: ../../Zotlabs/Module/Settings.php:993 +#: ../../Zotlabs/Module/Settings.php:897 msgid "Any connections" msgstr "Alle connecties" -#: ../../Zotlabs/Module/Settings.php:994 +#: ../../Zotlabs/Module/Settings.php:898 msgid "Anybody on this website" msgstr "Iedereen op deze hub" -#: ../../Zotlabs/Module/Settings.php:995 +#: ../../Zotlabs/Module/Settings.php:899 msgid "Anybody in this network" msgstr "Iedereen in dit netwerk" -#: ../../Zotlabs/Module/Settings.php:996 +#: ../../Zotlabs/Module/Settings.php:900 msgid "Anybody authenticated" msgstr "Geauthenticeerd" -#: ../../Zotlabs/Module/Settings.php:997 +#: ../../Zotlabs/Module/Settings.php:901 msgid "Anybody on the internet" msgstr "Iedereen op het internet" -#: ../../Zotlabs/Module/Settings.php:1071 +#: ../../Zotlabs/Module/Settings.php:976 msgid "Publish your default profile in the network directory" msgstr "Publiceer je standaardprofiel in de kanalengids" -#: ../../Zotlabs/Module/Settings.php:1076 +#: ../../Zotlabs/Module/Settings.php:981 msgid "Allow us to suggest you as a potential friend to new members?" msgstr "Sta ons toe om jouw kanaal als mogelijke connectie voor te stellen aan nieuwe kanalen" -#: ../../Zotlabs/Module/Settings.php:1085 +#: ../../Zotlabs/Module/Settings.php:990 msgid "Your channel address is" msgstr "Jouw kanaaladres is" -#: ../../Zotlabs/Module/Settings.php:1127 +#: ../../Zotlabs/Module/Settings.php:1032 msgid "Channel Settings" msgstr "Kanaal-instellingen" -#: ../../Zotlabs/Module/Settings.php:1134 +#: ../../Zotlabs/Module/Settings.php:1039 msgid "Basic Settings" msgstr "Basis-instellingen" -#: ../../Zotlabs/Module/Settings.php:1135 ../../include/channel.php:1180 +#: ../../Zotlabs/Module/Settings.php:1040 ../../include/channel.php:1140 msgid "Full Name:" msgstr "Volledige naam:" -#: ../../Zotlabs/Module/Settings.php:1137 +#: ../../Zotlabs/Module/Settings.php:1042 msgid "Your Timezone:" msgstr "Jouw tijdzone:" -#: ../../Zotlabs/Module/Settings.php:1138 +#: ../../Zotlabs/Module/Settings.php:1043 msgid "Default Post Location:" msgstr "Standaardlocatie bericht:" -#: ../../Zotlabs/Module/Settings.php:1138 +#: ../../Zotlabs/Module/Settings.php:1043 msgid "Geographical location to display on your posts" msgstr "Geografische locatie die bij het bericht moet worden vermeld" -#: ../../Zotlabs/Module/Settings.php:1139 +#: ../../Zotlabs/Module/Settings.php:1044 msgid "Use Browser Location:" msgstr "Locatie van webbrowser gebruiken:" -#: ../../Zotlabs/Module/Settings.php:1141 +#: ../../Zotlabs/Module/Settings.php:1046 msgid "Adult Content" msgstr "Inhoud voor volwassenen" -#: ../../Zotlabs/Module/Settings.php:1141 +#: ../../Zotlabs/Module/Settings.php:1046 msgid "" "This channel frequently or regularly publishes adult content. (Please tag " "any adult material and/or nudity with #NSFW)" msgstr "Dit kanaal publiceert regelmatig of vaak materiaal dat alleen geschikt is voor volwassenen. (Gebruik de tag #NSFW in berichten met een seksueel getinte inhoud of ander voor minderjarigen ongeschikt materiaal)" -#: ../../Zotlabs/Module/Settings.php:1143 +#: ../../Zotlabs/Module/Settings.php:1048 msgid "Security and Privacy Settings" msgstr "Veiligheids- en privacy-instellingen" -#: ../../Zotlabs/Module/Settings.php:1146 +#: ../../Zotlabs/Module/Settings.php:1051 msgid "Your permissions are already configured. Click to view/adjust" msgstr "Jouw permissies zijn al ingesteld. Klik om ze te bekijken of aan te passen." -#: ../../Zotlabs/Module/Settings.php:1148 +#: ../../Zotlabs/Module/Settings.php:1053 msgid "Hide my online presence" msgstr "Verberg mijn aanwezigheid" -#: ../../Zotlabs/Module/Settings.php:1148 +#: ../../Zotlabs/Module/Settings.php:1053 msgid "Prevents displaying in your profile that you are online" msgstr "Voorkomt dat op je kanaalpagina te zien valt dat je momenteel op $Projectname aanwezig bent" -#: ../../Zotlabs/Module/Settings.php:1150 +#: ../../Zotlabs/Module/Settings.php:1055 msgid "Simple Privacy Settings:" msgstr "Eenvoudige privacy-instellingen:" -#: ../../Zotlabs/Module/Settings.php:1151 +#: ../../Zotlabs/Module/Settings.php:1056 msgid "" "Very Public - extremely permissive (should be used with caution)" msgstr "Zeer openbaar (kanaal staat volledig open - moet met grote zorgvuldigheid gebruikt worden)" -#: ../../Zotlabs/Module/Settings.php:1152 +#: ../../Zotlabs/Module/Settings.php:1057 msgid "" "Typical - default public, privacy when desired (similar to social " "network permissions but with improved privacy)" msgstr "Normaal (standaard openbaar, maar privacy wanneer noodzakelijk - vergelijkbaar met die van sociale netwerken, maar met verbeterde privacy)" -#: ../../Zotlabs/Module/Settings.php:1153 +#: ../../Zotlabs/Module/Settings.php:1058 msgid "Private - default private, never open or public" msgstr "Privé (standaard privé en nooit openbaar)" -#: ../../Zotlabs/Module/Settings.php:1154 +#: ../../Zotlabs/Module/Settings.php:1059 msgid "Blocked - default blocked to/from everybody" msgstr "Geblokkeerd (standaard geblokkeerd naar/van iedereen)" -#: ../../Zotlabs/Module/Settings.php:1156 +#: ../../Zotlabs/Module/Settings.php:1061 msgid "Allow others to tag your posts" msgstr "Anderen toestaan om je berichten te taggen" -#: ../../Zotlabs/Module/Settings.php:1156 +#: ../../Zotlabs/Module/Settings.php:1061 msgid "" "Often used by the community to retro-actively flag inappropriate content" msgstr "Vaak in groepen/forums gebruikt om met terugwerkende kracht ongepast materiaal te markeren" -#: ../../Zotlabs/Module/Settings.php:1158 +#: ../../Zotlabs/Module/Settings.php:1063 msgid "Advanced Privacy Settings" msgstr "Geavanceerde privacy-instellingen" -#: ../../Zotlabs/Module/Settings.php:1160 +#: ../../Zotlabs/Module/Settings.php:1065 msgid "Expire other channel content after this many days" msgstr "Inhoud van andere kanalen na zoveel aantal dagen laten verlopen:" -#: ../../Zotlabs/Module/Settings.php:1160 +#: ../../Zotlabs/Module/Settings.php:1065 msgid "0 or blank to use the website limit." msgstr "0 of leeg om het standaard aantal dagen van deze hub te gebruiken." -#: ../../Zotlabs/Module/Settings.php:1160 +#: ../../Zotlabs/Module/Settings.php:1065 #, php-format msgid "This website expires after %d days." msgstr "Deze hub laat de inhoud van andere kanalen na %d dagen verlopen." -#: ../../Zotlabs/Module/Settings.php:1160 +#: ../../Zotlabs/Module/Settings.php:1065 msgid "This website does not expire imported content." msgstr "Deze hub laat de inhoud van andere kanalen niet verlopen." -#: ../../Zotlabs/Module/Settings.php:1160 +#: ../../Zotlabs/Module/Settings.php:1065 msgid "The website limit takes precedence if lower than your limit." msgstr "Wanneer de standaard aantal dagen van deze hub lager ligt dan jouw aantal, dan heeft de limiet van deze hub voorrang." -#: ../../Zotlabs/Module/Settings.php:1161 +#: ../../Zotlabs/Module/Settings.php:1066 msgid "Maximum Friend Requests/Day:" msgstr "Maximum aantal connectieverzoeken per dag:" -#: ../../Zotlabs/Module/Settings.php:1161 +#: ../../Zotlabs/Module/Settings.php:1066 msgid "May reduce spam activity" msgstr "Kan eventuele spam verminderen" -#: ../../Zotlabs/Module/Settings.php:1162 +#: ../../Zotlabs/Module/Settings.php:1067 msgid "Default Post and Publish Permissions" msgstr "Standaard permissies voor nieuwe berichten en publicaties" -#: ../../Zotlabs/Module/Settings.php:1164 +#: ../../Zotlabs/Module/Settings.php:1069 msgid "Use my default audience setting for the type of object published" msgstr "Gebruik mijn standaard privacy-instelling voor dit type publicatie" -#: ../../Zotlabs/Module/Settings.php:1167 +#: ../../Zotlabs/Module/Settings.php:1072 msgid "Channel permissions category:" msgstr "Kanaaltype en -permissies:" -#: ../../Zotlabs/Module/Settings.php:1173 +#: ../../Zotlabs/Module/Settings.php:1078 msgid "Maximum private messages per day from unknown people:" msgstr "Maximum aantal privé-berichten per dag van onbekende personen:" -#: ../../Zotlabs/Module/Settings.php:1173 +#: ../../Zotlabs/Module/Settings.php:1078 msgid "Useful to reduce spamming" msgstr "Kan eventuele spam verminderen" -#: ../../Zotlabs/Module/Settings.php:1176 +#: ../../Zotlabs/Module/Settings.php:1081 msgid "Notification Settings" msgstr "Notificatie-instellingen" -#: ../../Zotlabs/Module/Settings.php:1177 +#: ../../Zotlabs/Module/Settings.php:1082 msgid "By default post a status message when:" msgstr "Plaats automatisch een bericht wanneer:" -#: ../../Zotlabs/Module/Settings.php:1178 +#: ../../Zotlabs/Module/Settings.php:1083 msgid "accepting a friend request" msgstr "Een connectieverzoek wordt geaccepteerd" -#: ../../Zotlabs/Module/Settings.php:1179 +#: ../../Zotlabs/Module/Settings.php:1084 msgid "joining a forum/community" msgstr "Je lid wordt van een forum/groep" -#: ../../Zotlabs/Module/Settings.php:1180 +#: ../../Zotlabs/Module/Settings.php:1085 msgid "making an interesting profile change" msgstr "Er sprake is van een interessante profielwijziging" -#: ../../Zotlabs/Module/Settings.php:1181 +#: ../../Zotlabs/Module/Settings.php:1086 msgid "Send a notification email when:" msgstr "Verzend een notificatie per e-mail wanneer:" -#: ../../Zotlabs/Module/Settings.php:1182 +#: ../../Zotlabs/Module/Settings.php:1087 msgid "You receive a connection request" msgstr "Je een connectieverzoek ontvangt" -#: ../../Zotlabs/Module/Settings.php:1183 +#: ../../Zotlabs/Module/Settings.php:1088 msgid "Your connections are confirmed" msgstr "Jouw connecties zijn bevestigd" -#: ../../Zotlabs/Module/Settings.php:1184 +#: ../../Zotlabs/Module/Settings.php:1089 msgid "Someone writes on your profile wall" msgstr "Iemand iets op jouw kanaal heeft geschreven" -#: ../../Zotlabs/Module/Settings.php:1185 +#: ../../Zotlabs/Module/Settings.php:1090 msgid "Someone writes a followup comment" msgstr "Iemand een reactie schrijft" -#: ../../Zotlabs/Module/Settings.php:1186 +#: ../../Zotlabs/Module/Settings.php:1091 msgid "You receive a private message" msgstr "Je een privé-bericht ontvangt" -#: ../../Zotlabs/Module/Settings.php:1187 +#: ../../Zotlabs/Module/Settings.php:1092 msgid "You receive a friend suggestion" msgstr "Je een kanaalvoorstel ontvangt" -#: ../../Zotlabs/Module/Settings.php:1188 +#: ../../Zotlabs/Module/Settings.php:1093 msgid "You are tagged in a post" msgstr "Je expliciet in een bericht bent genoemd" -#: ../../Zotlabs/Module/Settings.php:1189 +#: ../../Zotlabs/Module/Settings.php:1094 msgid "You are poked/prodded/etc. in a post" msgstr "Je bent in een bericht aangestoten/gepord/etc." -#: ../../Zotlabs/Module/Settings.php:1192 +#: ../../Zotlabs/Module/Settings.php:1097 msgid "Show visual notifications including:" msgstr "Toon de volgende zichtbare notificaties:" -#: ../../Zotlabs/Module/Settings.php:1194 +#: ../../Zotlabs/Module/Settings.php:1099 msgid "Unseen grid activity" msgstr "Niet bekeken grid-activiteit" -#: ../../Zotlabs/Module/Settings.php:1195 +#: ../../Zotlabs/Module/Settings.php:1100 msgid "Unseen channel activity" msgstr "Niet bekeken kanaal-activiteit" -#: ../../Zotlabs/Module/Settings.php:1196 +#: ../../Zotlabs/Module/Settings.php:1101 msgid "Unseen private messages" msgstr "Niet bekeken privéberichten" -#: ../../Zotlabs/Module/Settings.php:1196 -#: ../../Zotlabs/Module/Settings.php:1201 -#: ../../Zotlabs/Module/Settings.php:1202 -#: ../../Zotlabs/Module/Settings.php:1203 +#: ../../Zotlabs/Module/Settings.php:1101 +#: ../../Zotlabs/Module/Settings.php:1106 +#: ../../Zotlabs/Module/Settings.php:1107 +#: ../../Zotlabs/Module/Settings.php:1108 msgid "Recommended" msgstr "Aanbevolen" -#: ../../Zotlabs/Module/Settings.php:1197 +#: ../../Zotlabs/Module/Settings.php:1102 msgid "Upcoming events" msgstr "Aankomende gebeurtenissen" -#: ../../Zotlabs/Module/Settings.php:1198 +#: ../../Zotlabs/Module/Settings.php:1103 msgid "Events today" msgstr "Gebeurtenissen van vandaag" -#: ../../Zotlabs/Module/Settings.php:1199 +#: ../../Zotlabs/Module/Settings.php:1104 msgid "Upcoming birthdays" msgstr "Aankomende verjaardagen" -#: ../../Zotlabs/Module/Settings.php:1199 +#: ../../Zotlabs/Module/Settings.php:1104 msgid "Not available in all themes" msgstr "Niet in alle thema's beschikbaar" -#: ../../Zotlabs/Module/Settings.php:1200 +#: ../../Zotlabs/Module/Settings.php:1105 msgid "System (personal) notifications" msgstr "(Persoonlijke) systeemnotificaties" -#: ../../Zotlabs/Module/Settings.php:1201 +#: ../../Zotlabs/Module/Settings.php:1106 msgid "System info messages" msgstr "Systeemmededelingen" -#: ../../Zotlabs/Module/Settings.php:1202 +#: ../../Zotlabs/Module/Settings.php:1107 msgid "System critical alerts" msgstr "Kritische systeemwaarschuwingen" -#: ../../Zotlabs/Module/Settings.php:1203 +#: ../../Zotlabs/Module/Settings.php:1108 msgid "New connections" msgstr "Nieuwe connecties" -#: ../../Zotlabs/Module/Settings.php:1204 +#: ../../Zotlabs/Module/Settings.php:1109 msgid "System Registrations" msgstr "Nieuwe accountregistraties op deze hub" -#: ../../Zotlabs/Module/Settings.php:1205 +#: ../../Zotlabs/Module/Settings.php:1110 msgid "" "Also show new wall posts, private messages and connections under Notices" msgstr "Toon tevens nieuwe kanaalberichten, privéberichten en connecties onder Notificaties" -#: ../../Zotlabs/Module/Settings.php:1207 +#: ../../Zotlabs/Module/Settings.php:1112 msgid "Notify me of events this many days in advance" msgstr "Herinner mij zoveel dagen van te voren aan gebeurtenissen" -#: ../../Zotlabs/Module/Settings.php:1207 +#: ../../Zotlabs/Module/Settings.php:1112 msgid "Must be greater than 0" msgstr "Moet hoger dan 0 zijn" -#: ../../Zotlabs/Module/Settings.php:1209 +#: ../../Zotlabs/Module/Settings.php:1114 msgid "Advanced Account/Page Type Settings" msgstr "Instellingen geavanceerd account/paginatype" -#: ../../Zotlabs/Module/Settings.php:1210 +#: ../../Zotlabs/Module/Settings.php:1115 msgid "Change the behaviour of this account for special situations" msgstr "Verander het gedrag van dit account voor speciale situaties" -#: ../../Zotlabs/Module/Settings.php:1213 +#: ../../Zotlabs/Module/Settings.php:1118 msgid "" "Please enable expert mode (in Settings > " "Additional features) to adjust!" msgstr "Schakel de expertmodus in (in Instellingen > Extra functies) om aan te kunnen passen!" -#: ../../Zotlabs/Module/Settings.php:1214 +#: ../../Zotlabs/Module/Settings.php:1119 msgid "Miscellaneous Settings" msgstr "Diverse instellingen" -#: ../../Zotlabs/Module/Settings.php:1215 +#: ../../Zotlabs/Module/Settings.php:1120 msgid "Default photo upload folder" msgstr "Standaard fotoalbum voor uploads" -#: ../../Zotlabs/Module/Settings.php:1215 -#: ../../Zotlabs/Module/Settings.php:1216 +#: ../../Zotlabs/Module/Settings.php:1120 +#: ../../Zotlabs/Module/Settings.php:1121 msgid "%Y - current year, %m - current month" msgstr "%Y - dit jaar, %m - deze maand" -#: ../../Zotlabs/Module/Settings.php:1216 +#: ../../Zotlabs/Module/Settings.php:1121 msgid "Default file upload folder" msgstr "Standaard bestandsmap voor uploads" -#: ../../Zotlabs/Module/Settings.php:1218 +#: ../../Zotlabs/Module/Settings.php:1123 msgid "Personal menu to display in your channel pages" msgstr "Persoonlijk menu om op je kanaalpagina's weer te geven" -#: ../../Zotlabs/Module/Settings.php:1220 +#: ../../Zotlabs/Module/Settings.php:1125 msgid "Remove this channel." msgstr "Verwijder dit kanaal." -#: ../../Zotlabs/Module/Settings.php:1221 +#: ../../Zotlabs/Module/Settings.php:1126 msgid "Firefox Share $Projectname provider" msgstr "$Projectname-service voor Firefox Share" -#: ../../Zotlabs/Module/Settings.php:1222 +#: ../../Zotlabs/Module/Settings.php:1127 msgid "Start calendar week on monday" msgstr "Begin in de agenda de week op maandag" @@ -5825,7 +5514,7 @@ msgid "" msgstr "You may need to import the file \"install/schema_xxx.sql\" manually using a database client." #: ../../Zotlabs/Module/Setup.php:204 ../../Zotlabs/Module/Setup.php:266 -#: ../../Zotlabs/Module/Setup.php:722 +#: ../../Zotlabs/Module/Setup.php:721 msgid "Please see the file \"install/INSTALL.txt\"." msgstr "Please see the file \"install/INSTALL.txt\"." @@ -6025,200 +5714,199 @@ msgid "mb_string PHP module" msgstr "mb_string PHP module" #: ../../Zotlabs/Module/Setup.php:496 +msgid "mcrypt PHP module" +msgstr "mcrypt PHP module" + +#: ../../Zotlabs/Module/Setup.php:497 msgid "xml PHP module" msgstr "xml PHP module" -#: ../../Zotlabs/Module/Setup.php:500 ../../Zotlabs/Module/Setup.php:502 +#: ../../Zotlabs/Module/Setup.php:501 ../../Zotlabs/Module/Setup.php:503 msgid "Apache mod_rewrite module" msgstr "Apache mod_rewrite module" -#: ../../Zotlabs/Module/Setup.php:500 +#: ../../Zotlabs/Module/Setup.php:501 msgid "" "Error: Apache webserver mod-rewrite module is required but not installed." msgstr "Error: Apache webserver mod-rewrite module is required but not installed." -#: ../../Zotlabs/Module/Setup.php:506 ../../Zotlabs/Module/Setup.php:509 +#: ../../Zotlabs/Module/Setup.php:507 ../../Zotlabs/Module/Setup.php:510 msgid "proc_open" msgstr "proc_open" -#: ../../Zotlabs/Module/Setup.php:506 +#: ../../Zotlabs/Module/Setup.php:507 msgid "" "Error: proc_open is required but is either not installed or has been " "disabled in php.ini" msgstr "Error: proc_open is required but is either not installed or has been disabled in php.ini" -#: ../../Zotlabs/Module/Setup.php:514 +#: ../../Zotlabs/Module/Setup.php:515 msgid "Error: libCURL PHP module required but not installed." msgstr "Error: libCURL PHP module required but not installed." -#: ../../Zotlabs/Module/Setup.php:518 +#: ../../Zotlabs/Module/Setup.php:519 msgid "" "Error: GD graphics PHP module with JPEG support required but not installed." msgstr "Error: GD graphics PHP module with JPEG support required but not installed." -#: ../../Zotlabs/Module/Setup.php:522 +#: ../../Zotlabs/Module/Setup.php:523 msgid "Error: openssl PHP module required but not installed." msgstr "Error: openssl PHP module required but not installed." -#: ../../Zotlabs/Module/Setup.php:526 +#: ../../Zotlabs/Module/Setup.php:527 msgid "" "Error: mysqli or postgres PHP module required but neither are installed." msgstr "Error: mysqli or postgres PHP module required but neither are installed." -#: ../../Zotlabs/Module/Setup.php:530 +#: ../../Zotlabs/Module/Setup.php:531 msgid "Error: mb_string PHP module required but not installed." msgstr "Error: mb_string PHP module required but not installed." -#: ../../Zotlabs/Module/Setup.php:534 +#: ../../Zotlabs/Module/Setup.php:535 +msgid "Error: mcrypt PHP module required but not installed." +msgstr "Error: mcrypt PHP module required but not installed." + +#: ../../Zotlabs/Module/Setup.php:539 msgid "Error: xml PHP module required for DAV but not installed." msgstr "Error: xml PHP module required for DAV but not installed." -#: ../../Zotlabs/Module/Setup.php:552 +#: ../../Zotlabs/Module/Setup.php:557 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 "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." -#: ../../Zotlabs/Module/Setup.php:553 +#: ../../Zotlabs/Module/Setup.php:558 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 "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." -#: ../../Zotlabs/Module/Setup.php:554 +#: ../../Zotlabs/Module/Setup.php:559 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 "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." -#: ../../Zotlabs/Module/Setup.php:555 +#: ../../Zotlabs/Module/Setup.php:560 msgid "" "You can alternatively skip this procedure and perform a manual installation." " Please see the file \"install/INSTALL.txt\" for instructions." msgstr "You can alternatively skip this procedure and perform a manual installation. Please see the file \"install/INSTALL.txt\" for instructions." -#: ../../Zotlabs/Module/Setup.php:558 +#: ../../Zotlabs/Module/Setup.php:563 msgid ".htconfig.php is writable" msgstr ".htconfig.php is writable" -#: ../../Zotlabs/Module/Setup.php:572 +#: ../../Zotlabs/Module/Setup.php:577 msgid "" "Red uses the Smarty3 template engine to render its web views. Smarty3 " "compiles templates to PHP to speed up rendering." msgstr "Red uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering." -#: ../../Zotlabs/Module/Setup.php:573 +#: ../../Zotlabs/Module/Setup.php:578 #, php-format msgid "" "In order to store these compiled templates, the web server needs to have " "write access to the directory %s under the top level web folder." msgstr "In order to store these compiled templates, the web server needs to have write access to the directory %s under the top level web folder." -#: ../../Zotlabs/Module/Setup.php:574 ../../Zotlabs/Module/Setup.php:595 +#: ../../Zotlabs/Module/Setup.php:579 ../../Zotlabs/Module/Setup.php:600 msgid "" "Please ensure that the user that your web server runs as (e.g. www-data) has" " write access to this folder." msgstr "Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder." -#: ../../Zotlabs/Module/Setup.php:575 +#: ../../Zotlabs/Module/Setup.php:580 #, 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 "Note: as a security measure, you should give the web server write access to %s only--not the template files (.tpl) that it contains." -#: ../../Zotlabs/Module/Setup.php:578 +#: ../../Zotlabs/Module/Setup.php:583 #, php-format msgid "%s is writable" msgstr "%s is writable" -#: ../../Zotlabs/Module/Setup.php:594 +#: ../../Zotlabs/Module/Setup.php:599 msgid "" -"This software 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 "This software 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" +"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 "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" -#: ../../Zotlabs/Module/Setup.php:598 +#: ../../Zotlabs/Module/Setup.php:603 msgid "store is writable" msgstr "store is writable" -#: ../../Zotlabs/Module/Setup.php:631 +#: ../../Zotlabs/Module/Setup.php:636 msgid "" "SSL certificate cannot be validated. Fix certificate or disable https access" " to this site." msgstr "SSL certificate cannot be validated. Fix certificate or disable https access to this hub." -#: ../../Zotlabs/Module/Setup.php:632 +#: ../../Zotlabs/Module/Setup.php:637 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 "If you have https access to your hub or allow connections to TCP port 443 (the https: port), you MUST use a browser-valid certificate. You MUST NOT use self-signed certificates!" -#: ../../Zotlabs/Module/Setup.php:633 +#: ../../Zotlabs/Module/Setup.php:638 msgid "" "This restriction is incorporated because public posts from you may for " "example contain references to images on your own hub." msgstr "This restriction is incorporated because public posts from you may for example contain references to images on your own hub." -#: ../../Zotlabs/Module/Setup.php:634 +#: ../../Zotlabs/Module/Setup.php:639 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." msgstr "If your certificate is not recognized, members of other hubs (who may themselves have valid certificates) will get a warning message on their own hub complaining about security issues." -#: ../../Zotlabs/Module/Setup.php:635 +#: ../../Zotlabs/Module/Setup.php:640 msgid "" "This can cause usability issues elsewhere (not just on your own site) so we " "must insist on this requirement." msgstr "This can cause usability issues elsewhere (not just on your own hub) so we must insist on this requirement." -#: ../../Zotlabs/Module/Setup.php:636 +#: ../../Zotlabs/Module/Setup.php:641 msgid "" "Providers are available that issue free certificates which are browser-" "valid." msgstr "Providers are available that issue free certificates which are browser-valid." -#: ../../Zotlabs/Module/Setup.php:638 -msgid "" -"If you are confident that the certificate is valid and signed by a trusted " -"authority, check to see if you have failed to install an intermediate cert. " -"These are not normally required by browsers, but are required for server-to-" -"server communications." -msgstr "If you are confident that the certificate is valid and signed by a trusted authority, check to see if you have failed to install an intermediate cert. These are not normally required by browsers, but are required for server-to-server communications." - -#: ../../Zotlabs/Module/Setup.php:641 +#: ../../Zotlabs/Module/Setup.php:643 msgid "SSL certificate validation" msgstr "SSL certificate validation" -#: ../../Zotlabs/Module/Setup.php:647 +#: ../../Zotlabs/Module/Setup.php:649 msgid "" "Url rewrite in .htaccess is not working. Check your server " "configuration.Test: " msgstr "Url rewrite in .htaccess is not working. Check your server configuration.Test: " -#: ../../Zotlabs/Module/Setup.php:650 +#: ../../Zotlabs/Module/Setup.php:652 msgid "Url rewrite is working" msgstr "Url rewrite is working" -#: ../../Zotlabs/Module/Setup.php:659 +#: ../../Zotlabs/Module/Setup.php:661 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 "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." -#: ../../Zotlabs/Module/Setup.php:683 +#: ../../Zotlabs/Module/Setup.php:685 msgid "Errors encountered creating database tables." msgstr "Errors encountered creating database tables." -#: ../../Zotlabs/Module/Setup.php:720 +#: ../../Zotlabs/Module/Setup.php:719 msgid "

What next

" msgstr "

What next

" -#: ../../Zotlabs/Module/Setup.php:721 +#: ../../Zotlabs/Module/Setup.php:720 msgid "" "IMPORTANT: You will need to [manually] setup a scheduled task for the " "poller." @@ -6240,62 +5928,64 @@ msgstr "Verwijder alle bestanden" msgid "Remove this file" msgstr "Verwijder dit bestand" -#: ../../Zotlabs/Module/Thing.php:114 -msgid "Thing updated" -msgstr "Ding bijgewerkt" - -#: ../../Zotlabs/Module/Thing.php:166 -msgid "Object store: failed" -msgstr "Opslaan van ding mislukt" - -#: ../../Zotlabs/Module/Thing.php:170 -msgid "Thing added" -msgstr "Ding toegevoegd" - -#: ../../Zotlabs/Module/Thing.php:196 +#: ../../Zotlabs/Module/Siteinfo.php:19 #, php-format -msgid "OBJ: %1$s %2$s %3$s" -msgstr "OBJ: %1$s %2$s %3$s" +msgid "Version %s" +msgstr "Versie %s" -#: ../../Zotlabs/Module/Thing.php:259 -msgid "Show Thing" -msgstr "Ding weergeven" +#: ../../Zotlabs/Module/Siteinfo.php:40 +msgid "Installed plugins/addons/apps:" +msgstr "Ingeschakelde plugins en apps:" -#: ../../Zotlabs/Module/Thing.php:266 -msgid "item not found." -msgstr "Item niet gevonden" +#: ../../Zotlabs/Module/Siteinfo.php:53 +msgid "No installed plugins/addons/apps" +msgstr "Geen ingeschakelde plugins en apps" -#: ../../Zotlabs/Module/Thing.php:299 -msgid "Edit Thing" -msgstr "Ding bewerken" +#: ../../Zotlabs/Module/Siteinfo.php:66 +msgid "" +"This is a hub of $Projectname - a global cooperative network of " +"decentralized privacy enhanced websites." +msgstr "Dit is een $Projectname-hub - $Projectname is een wereldwijd coöperatief netwerk van gedecentraliseerde websites (hubs) met verbeterde privacy." -#: ../../Zotlabs/Module/Thing.php:301 ../../Zotlabs/Module/Thing.php:351 -msgid "Select a profile" -msgstr "Kies een profiel" +#: ../../Zotlabs/Module/Siteinfo.php:68 +msgid "Tag: " +msgstr "Tag: " -#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:354 -msgid "Post an activity" -msgstr "Plaats een bericht" +#: ../../Zotlabs/Module/Siteinfo.php:70 +msgid "Last background fetch: " +msgstr "Meest recente achtergrond-fetch:" -#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:354 -msgid "Only sends to viewers of the applicable profile" -msgstr "Toont dit alleen aan diegene die het gekozen profiel mogen zien." +#: ../../Zotlabs/Module/Siteinfo.php:72 +msgid "Current load average: " +msgstr "Gemiddelde systeembelasting is nu:" -#: ../../Zotlabs/Module/Thing.php:307 ../../Zotlabs/Module/Thing.php:356 -msgid "Name of thing e.g. something" -msgstr "Naam van ding" +#: ../../Zotlabs/Module/Siteinfo.php:75 +msgid "Running at web location" +msgstr "Draaiend op weblocatie" -#: ../../Zotlabs/Module/Thing.php:309 ../../Zotlabs/Module/Thing.php:357 -msgid "URL of thing (optional)" -msgstr "URL van ding (optioneel)" +#: ../../Zotlabs/Module/Siteinfo.php:76 +msgid "" +"Please visit hubzilla.org to learn more " +"about $Projectname." +msgstr "Bezoek hubzilla.org " -#: ../../Zotlabs/Module/Thing.php:311 ../../Zotlabs/Module/Thing.php:358 -msgid "URL for photo of thing (optional)" -msgstr "URL voor foto van ding (optioneel)" +#: ../../Zotlabs/Module/Siteinfo.php:77 +msgid "Bug reports and issues: please visit" +msgstr "Bugrapporten en andere kwesties: bezoek" -#: ../../Zotlabs/Module/Thing.php:349 -msgid "Add Thing to your Profile" -msgstr "Ding aan je profiel toevoegen" +#: ../../Zotlabs/Module/Siteinfo.php:79 +msgid "$projectname issues" +msgstr "$projectname-issues" + +#: ../../Zotlabs/Module/Siteinfo.php:80 +msgid "" +"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot " +"com" +msgstr "Voorstellen, lofbetuigingen, enz. - e-mail \"redmatrix\" at librelist - dot com" + +#: ../../Zotlabs/Module/Siteinfo.php:82 +msgid "Site Administrators" +msgstr "Hubbeheerders: " #: ../../Zotlabs/Module/Sources.php:37 msgid "Failed to create source. No channel selected." @@ -6313,8 +6003,8 @@ msgstr "Bron aangemaakt." msgid "*" msgstr "*" -#: ../../Zotlabs/Module/Sources.php:96 ../../include/features.php:72 -#: ../../include/widgets.php:639 +#: ../../Zotlabs/Module/Sources.php:96 ../../include/widgets.php:630 +#: ../../include/features.php:71 msgid "Channel Sources" msgstr "Kanaalbronnen" @@ -6390,12 +6080,12 @@ msgstr "Geen voorgestelde kanalen gevonden. Wanneer dit een nieuwe hub is, probe msgid "Ignore/Hide" msgstr "Negeren/Verbergen" -#: ../../Zotlabs/Module/Tagger.php:55 ../../include/bbcode.php:263 +#: ../../Zotlabs/Module/Tagger.php:55 ../../include/bbcode.php:256 msgid "post" msgstr "bericht" -#: ../../Zotlabs/Module/Tagger.php:57 ../../include/conversation.php:150 -#: ../../include/text.php:1929 +#: ../../Zotlabs/Module/Tagger.php:57 ../../include/text.php:1948 +#: ../../include/conversation.php:150 msgid "comment" msgstr "reactie" @@ -6416,110 +6106,131 @@ msgstr "Verwijder item-tag" msgid "Select a tag to remove: " msgstr "Kies een tag om te verwijderen" -#: ../../Zotlabs/Module/Webpages.php:191 ../../Zotlabs/Lib/Apps.php:218 -#: ../../include/nav.php:106 ../../include/conversation.php:1700 -msgid "Webpages" -msgstr "Webpagina's" +#: ../../Zotlabs/Module/Thing.php:114 +msgid "Thing updated" +msgstr "Ding bijgewerkt" -#: ../../Zotlabs/Module/Webpages.php:202 ../../include/page_widgets.php:44 -msgid "Actions" -msgstr "Acties" +#: ../../Zotlabs/Module/Thing.php:166 +msgid "Object store: failed" +msgstr "Opslaan van ding mislukt" -#: ../../Zotlabs/Module/Webpages.php:203 ../../include/page_widgets.php:45 -msgid "Page Link" -msgstr "Paginalink" +#: ../../Zotlabs/Module/Thing.php:170 +msgid "Thing added" +msgstr "Ding toegevoegd" -#: ../../Zotlabs/Module/Webpages.php:204 -msgid "Page Title" -msgstr "Paginatitel" +#: ../../Zotlabs/Module/Thing.php:196 +#, php-format +msgid "OBJ: %1$s %2$s %3$s" +msgstr "OBJ: %1$s %2$s %3$s" -#: ../../Zotlabs/Module/Wiki.php:34 -msgid "Not found" -msgstr "Niet gevonden" +#: ../../Zotlabs/Module/Thing.php:259 +msgid "Show Thing" +msgstr "Ding weergeven" -#: ../../Zotlabs/Module/Wiki.php:92 ../../Zotlabs/Lib/Apps.php:219 -#: ../../include/nav.php:108 ../../include/conversation.php:1710 -#: ../../include/conversation.php:1713 ../../include/features.php:55 -msgid "Wiki" -msgstr "Wiki" +#: ../../Zotlabs/Module/Thing.php:266 +msgid "item not found." +msgstr "Item niet gevonden" -#: ../../Zotlabs/Module/Wiki.php:93 -msgid "Sandbox" -msgstr "Zandbak" +#: ../../Zotlabs/Module/Thing.php:299 +msgid "Edit Thing" +msgstr "Ding bewerken" -#: ../../Zotlabs/Module/Wiki.php:95 +#: ../../Zotlabs/Module/Thing.php:301 ../../Zotlabs/Module/Thing.php:351 +msgid "Select a profile" +msgstr "Kies een profiel" + +#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:354 +msgid "Post an activity" +msgstr "Plaats een bericht" + +#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:354 +msgid "Only sends to viewers of the applicable profile" +msgstr "Toont dit alleen aan diegene die het gekozen profiel mogen zien." + +#: ../../Zotlabs/Module/Thing.php:307 ../../Zotlabs/Module/Thing.php:356 +msgid "Name of thing e.g. something" +msgstr "Naam van ding" + +#: ../../Zotlabs/Module/Thing.php:309 ../../Zotlabs/Module/Thing.php:357 +msgid "URL of thing (optional)" +msgstr "URL van ding (optioneel)" + +#: ../../Zotlabs/Module/Thing.php:311 ../../Zotlabs/Module/Thing.php:358 +msgid "URL for photo of thing (optional)" +msgstr "URL voor foto van ding (optioneel)" + +#: ../../Zotlabs/Module/Thing.php:349 +msgid "Add Thing to your Profile" +msgstr "Ding aan je profiel toevoegen" + +#: ../../Zotlabs/Module/Uexport.php:55 ../../Zotlabs/Module/Uexport.php:56 +msgid "Export Channel" +msgstr "Kanaal exporteren" + +#: ../../Zotlabs/Module/Uexport.php:57 msgid "" -"\"# Wiki Sandbox\\n\\nContent you **edit** and **preview** here *will not be" -" saved*.\"" -msgstr "\"# Wiki Sandbox\\n\\nWat er hier onder **edit** en **preview** staat *wordt niet opgeslagen*.\"" +"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 "Exporteer de basisinformatie van jouw kanaal naar een bestand. Dit fungeert als een back-up van jouw connecties, permissies, profiel en basisgegevens, die gebruikt kan worden om op een nieuwe hub jouw gegevens te importeren. Deze back-up bevat echter niet de inhoud van jouw kanaal." -#: ../../Zotlabs/Module/Wiki.php:164 -msgid "Revision Comparison" -msgstr "Revisies vergelijken" +#: ../../Zotlabs/Module/Uexport.php:58 +msgid "Export Content" +msgstr "Inhoud exporteren" -#: ../../Zotlabs/Module/Wiki.php:165 -msgid "Revert" -msgstr "Ongedaan maken" +#: ../../Zotlabs/Module/Uexport.php:59 +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 "Exporteer informatie en recente inhoud van jouw kanaal naar een JSON-back-up, wat kan worden gebruikt om jouw kanaal te herstellen of te importeren op een andere hub. Dit slaat al jouw connecties, permissies, profielgegevens en enkele maanden aan inhoud van jouw kanaal op. Dit bestand kan ZEER groot worden. Wees geduldig - het kan enkele minuten duren voordat de download begint." -#: ../../Zotlabs/Module/Wiki.php:192 -msgid "Enter the name of your new wiki:" -msgstr "Vul de naam in van jouw nieuwe wiki:" +#: ../../Zotlabs/Module/Uexport.php:60 +msgid "Export your posts from a given year." +msgstr "Exporteer jouw berichten uit een bepaald jaar." -#: ../../Zotlabs/Module/Wiki.php:193 -msgid "Enter the name of the new page:" -msgstr "Vul de naam in van de nieuwe pagina:" +#: ../../Zotlabs/Module/Uexport.php:62 +msgid "" +"You may also export your posts and conversations for a particular year or " +"month. Adjust the date in your browser location bar to select other dates. " +"If the export fails (possibly due to memory exhaustion on your server hub), " +"please try again selecting a more limited date range." +msgstr "Je kan ook berichten en conversaties uit een bepaald jaar of van een bepaalde maand exporteren. Verander de datum in de adresbalk van jouw webbrowser om andere jaren en maanden te selecteren. Wanneer het exporteren mislukt (waarschijnlijk door een gebrek aan beschikbaar servergeheugen), probeer het dan nogmaals met een beperkter tijdvak." -#: ../../Zotlabs/Module/Wiki.php:194 -msgid "Enter the new name:" -msgstr "Vul de nieuwe naam in:" +#: ../../Zotlabs/Module/Uexport.php:63 +#, php-format +msgid "" +"To select all posts for a given year, such as this year, visit %2$s" +msgstr "Bezoek %2$s om alle berichten van bijvoorbeeld dit jaar te selecteren. " -#: ../../Zotlabs/Module/Wiki.php:200 ../../include/conversation.php:1150 -msgid "Embed image from photo albums" -msgstr "Afbeelding uit een fotoalbum invoegen" +#: ../../Zotlabs/Module/Uexport.php:64 +#, php-format +msgid "" +"To select all posts for a given month, such as January of this year, visit " +"%2$s" +msgstr "Bezoek %2$s om alle berichten van bijvoorbeeld januari dit jaar te selecteren." -#: ../../Zotlabs/Module/Wiki.php:201 ../../include/conversation.php:1234 -msgid "Embed an image from your albums" -msgstr "Afbeelding uit jouw albums invoegen" +#: ../../Zotlabs/Module/Uexport.php:65 +#, php-format +msgid "" +"These content files may be imported or restored by visiting %2$s on any site containing your channel. For best results" +" please import or restore these in date order (oldest first)." +msgstr "Deze back-up-bestanden kunnen geïmporteerd of hersteld worden door op jouw hub en met jouw kanaal %2$s te bezoeken. Voor het beste resultaat kan je de bestanden in chronologische volgorde importeren of herstellen." -#: ../../Zotlabs/Module/Wiki.php:203 ../../include/conversation.php:1236 -#: ../../include/conversation.php:1273 -msgid "OK" -msgstr "OK" - -#: ../../Zotlabs/Module/Wiki.php:204 ../../include/conversation.php:1186 -msgid "Choose images to embed" -msgstr "Kies afbeeldingen om in te voegen" - -#: ../../Zotlabs/Module/Wiki.php:205 ../../include/conversation.php:1187 -msgid "Choose an album" -msgstr "Kies een album" - -#: ../../Zotlabs/Module/Wiki.php:206 ../../include/conversation.php:1188 -msgid "Choose a different album..." -msgstr "Kies een ander album..." - -#: ../../Zotlabs/Module/Wiki.php:207 ../../include/conversation.php:1189 -msgid "Error getting album list" -msgstr "Fout met ophalen albumlijst" - -#: ../../Zotlabs/Module/Wiki.php:208 ../../include/conversation.php:1190 -msgid "Error getting photo link" -msgstr "Fout met ophalen fotolink" - -#: ../../Zotlabs/Module/Wiki.php:209 ../../include/conversation.php:1191 -msgid "Error getting album" -msgstr "Fout met ophalen album" - -#: ../../Zotlabs/Module/Viewconnections.php:65 +#: ../../Zotlabs/Module/Viewconnections.php:62 msgid "No connections." msgstr "Geen connecties." -#: ../../Zotlabs/Module/Viewconnections.php:78 +#: ../../Zotlabs/Module/Viewconnections.php:75 #, php-format msgid "Visit %s's profile [%s]" msgstr "Bezoek het profiel van %s [%s]" -#: ../../Zotlabs/Module/Viewconnections.php:107 +#: ../../Zotlabs/Module/Viewconnections.php:104 msgid "View Connections" msgstr "Connecties weergeven" @@ -6527,23 +6238,22 @@ msgstr "Connecties weergeven" msgid "Source of Item" msgstr "Bron van item" -#: ../../Zotlabs/Module/Api.php:61 ../../Zotlabs/Module/Api.php:85 -msgid "Authorize application connection" -msgstr "Geef toestemming voor applicatiekoppeling" +#: ../../Zotlabs/Module/Webpages.php:184 ../../Zotlabs/Lib/Apps.php:217 +#: ../../include/nav.php:106 ../../include/conversation.php:1685 +msgid "Webpages" +msgstr "Webpagina's" -#: ../../Zotlabs/Module/Api.php:62 -msgid "Return to your app and insert this Securty Code:" -msgstr "Ga terug naar je app en voeg deze beveiligingscode in:" +#: ../../Zotlabs/Module/Webpages.php:195 ../../include/page_widgets.php:41 +msgid "Actions" +msgstr "Acties" -#: ../../Zotlabs/Module/Api.php:72 -msgid "Please login to continue." -msgstr "Inloggen om verder te kunnen gaan." +#: ../../Zotlabs/Module/Webpages.php:196 ../../include/page_widgets.php:42 +msgid "Page Link" +msgstr "Paginalink" -#: ../../Zotlabs/Module/Api.php:87 -msgid "" -"Do you want to authorize this application to access your posts and contacts," -" and/or create new posts for you?" -msgstr "Wil je deze applicatie toestemming geven om jouw berichten en connecties te zien, en/of nieuwe berichten voor jou te plaatsen?" +#: ../../Zotlabs/Module/Webpages.php:197 +msgid "Page Title" +msgstr "Paginatitel" #: ../../Zotlabs/Module/Xchan.php:10 msgid "Xchan Lookup" @@ -6553,6 +6263,92 @@ msgstr "Xchan opzoeken" msgid "Lookup xchan beginning with (or webbie): " msgstr "Zoek een xchan (of webbie) die begint met:" +#: ../../Zotlabs/Lib/Apps.php:204 +msgid "Site Admin" +msgstr "Hubbeheerder" + +#: ../../Zotlabs/Lib/Apps.php:205 +msgid "Bug Report" +msgstr "Bugrapport" + +#: ../../Zotlabs/Lib/Apps.php:206 +msgid "View Bookmarks" +msgstr "Bladwijzers bekijken" + +#: ../../Zotlabs/Lib/Apps.php:207 +msgid "My Chatrooms" +msgstr "Mijn chatkanalen" + +#: ../../Zotlabs/Lib/Apps.php:209 +msgid "Firefox Share" +msgstr "Firefox Share" + +#: ../../Zotlabs/Lib/Apps.php:210 +msgid "Remote Diagnostics" +msgstr "Diagnose op afstand" + +#: ../../Zotlabs/Lib/Apps.php:211 ../../include/features.php:89 +msgid "Suggest Channels" +msgstr "Kanalen voorstellen" + +#: ../../Zotlabs/Lib/Apps.php:212 ../../include/nav.php:110 +#: ../../boot.php:1703 +msgid "Login" +msgstr "Inloggen" + +#: ../../Zotlabs/Lib/Apps.php:214 ../../include/nav.php:179 +msgid "Grid" +msgstr "Grid" + +#: ../../Zotlabs/Lib/Apps.php:218 ../../include/nav.php:182 +msgid "Channel Home" +msgstr "Jouw kanaal" + +#: ../../Zotlabs/Lib/Apps.php:221 ../../include/nav.php:201 +#: ../../include/conversation.php:1649 ../../include/conversation.php:1652 +msgid "Events" +msgstr "Agenda" + +#: ../../Zotlabs/Lib/Apps.php:222 ../../include/nav.php:167 +msgid "Directory" +msgstr "Kanalengids" + +#: ../../Zotlabs/Lib/Apps.php:224 ../../include/nav.php:193 +msgid "Mail" +msgstr "Privéberichten" + +#: ../../Zotlabs/Lib/Apps.php:227 ../../include/nav.php:96 +msgid "Chat" +msgstr "Chatten" + +#: ../../Zotlabs/Lib/Apps.php:229 +msgid "Probe" +msgstr "Onderzoeken" + +#: ../../Zotlabs/Lib/Apps.php:230 +msgid "Suggest" +msgstr "Voorstellen" + +#: ../../Zotlabs/Lib/Apps.php:231 +msgid "Random Channel" +msgstr "Willekeurig kanaal" + +#: ../../Zotlabs/Lib/Apps.php:232 +msgid "Invite" +msgstr "Uitnodigen " + +#: ../../Zotlabs/Lib/Apps.php:233 ../../include/widgets.php:1386 +msgid "Features" +msgstr "Extra functies" + +#: ../../Zotlabs/Lib/Apps.php:235 +msgid "Post" +msgstr "Bericht" + +#: ../../Zotlabs/Lib/Apps.php:335 +msgid "Purchase" +msgstr "Aanschaffen" + #: ../../Zotlabs/Lib/Chatroom.php:27 msgid "Missing room name" msgstr "Naam chatkanaal ontbreekt" @@ -6573,19 +6369,19 @@ msgstr "Chatkanaal niet gevonden" msgid "Room is full" msgstr "Chatkanaal is vol" -#: ../../Zotlabs/Lib/Enotify.php:60 ../../include/network.php:1882 +#: ../../Zotlabs/Lib/Enotify.php:60 ../../include/network.php:1823 msgid "$Projectname Notification" msgstr "$Projectname-notificatie" -#: ../../Zotlabs/Lib/Enotify.php:61 ../../include/network.php:1883 +#: ../../Zotlabs/Lib/Enotify.php:61 ../../include/network.php:1824 msgid "$projectname" msgstr "$projectname" -#: ../../Zotlabs/Lib/Enotify.php:63 ../../include/network.php:1885 +#: ../../Zotlabs/Lib/Enotify.php:63 ../../include/network.php:1826 msgid "Thank You," msgstr "Bedankt," -#: ../../Zotlabs/Lib/Enotify.php:65 ../../include/network.php:1887 +#: ../../Zotlabs/Lib/Enotify.php:65 ../../include/network.php:1828 #, php-format msgid "%s Administrator" msgstr "Beheerder %s" @@ -6778,97 +6574,11 @@ msgstr "maakte een nieuw bericht aan" msgid "commented on %s's post" msgstr "gaf een reactie op een bericht van %s" -#: ../../Zotlabs/Lib/Apps.php:205 -msgid "Site Admin" -msgstr "Hubbeheerder" - -#: ../../Zotlabs/Lib/Apps.php:206 -msgid "Bug Report" -msgstr "Bugrapport" - -#: ../../Zotlabs/Lib/Apps.php:207 -msgid "View Bookmarks" -msgstr "Bladwijzers bekijken" - -#: ../../Zotlabs/Lib/Apps.php:208 -msgid "My Chatrooms" -msgstr "Mijn chatkanalen" - -#: ../../Zotlabs/Lib/Apps.php:210 -msgid "Firefox Share" -msgstr "Firefox Share" - -#: ../../Zotlabs/Lib/Apps.php:211 -msgid "Remote Diagnostics" -msgstr "Diagnose op afstand" - -#: ../../Zotlabs/Lib/Apps.php:212 ../../include/features.php:90 -msgid "Suggest Channels" -msgstr "Kanalen voorstellen" - -#: ../../Zotlabs/Lib/Apps.php:213 ../../include/nav.php:112 -#: ../../boot.php:1704 -msgid "Login" -msgstr "Inloggen" - -#: ../../Zotlabs/Lib/Apps.php:215 ../../include/nav.php:181 -msgid "Grid" -msgstr "Grid" - -#: ../../Zotlabs/Lib/Apps.php:220 ../../include/nav.php:184 -msgid "Channel Home" -msgstr "Jouw kanaal" - -#: ../../Zotlabs/Lib/Apps.php:223 ../../include/nav.php:203 -#: ../../include/conversation.php:1664 ../../include/conversation.php:1667 -msgid "Events" -msgstr "Agenda" - -#: ../../Zotlabs/Lib/Apps.php:224 ../../include/nav.php:169 -msgid "Directory" -msgstr "Kanalengids" - -#: ../../Zotlabs/Lib/Apps.php:226 ../../include/nav.php:195 -msgid "Mail" -msgstr "Privéberichten" - -#: ../../Zotlabs/Lib/Apps.php:229 ../../include/nav.php:96 -msgid "Chat" -msgstr "Chatten" - -#: ../../Zotlabs/Lib/Apps.php:231 -msgid "Probe" -msgstr "Onderzoeken" - -#: ../../Zotlabs/Lib/Apps.php:232 -msgid "Suggest" -msgstr "Voorstellen" - -#: ../../Zotlabs/Lib/Apps.php:233 -msgid "Random Channel" -msgstr "Willekeurig kanaal" - -#: ../../Zotlabs/Lib/Apps.php:234 -msgid "Invite" -msgstr "Uitnodigen " - -#: ../../Zotlabs/Lib/Apps.php:235 ../../include/widgets.php:1480 -msgid "Features" -msgstr "Extra functies" - -#: ../../Zotlabs/Lib/Apps.php:237 -msgid "Post" -msgstr "Bericht" - -#: ../../Zotlabs/Lib/Apps.php:339 -msgid "Purchase" -msgstr "Aanschaffen" - -#: ../../Zotlabs/Lib/ThreadItem.php:95 ../../include/conversation.php:667 +#: ../../Zotlabs/Lib/ThreadItem.php:95 ../../include/conversation.php:664 msgid "Private Message" msgstr "Niet voor iedereen zichtbaar" -#: ../../Zotlabs/Lib/ThreadItem.php:132 ../../include/conversation.php:659 +#: ../../Zotlabs/Lib/ThreadItem.php:132 ../../include/conversation.php:656 msgid "Select" msgstr "Kies" @@ -6916,11 +6626,11 @@ msgstr "Ster toevoegen of verwijderen" msgid "starred" msgstr "met ster" -#: ../../Zotlabs/Lib/ThreadItem.php:234 ../../include/conversation.php:674 +#: ../../Zotlabs/Lib/ThreadItem.php:234 ../../include/conversation.php:671 msgid "Message signature validated" msgstr "Berichtkenmerk gevalideerd" -#: ../../Zotlabs/Lib/ThreadItem.php:235 ../../include/conversation.php:675 +#: ../../Zotlabs/Lib/ThreadItem.php:235 ../../include/conversation.php:672 msgid "Message signature incorrect" msgstr "Berichtkenmerk onjuist" @@ -6976,17 +6686,17 @@ msgstr "Kanaal-naar-kanaal" msgid "via Wall-To-Wall:" msgstr "via kanaal-naar-kanaal" -#: ../../Zotlabs/Lib/ThreadItem.php:341 ../../include/conversation.php:722 +#: ../../Zotlabs/Lib/ThreadItem.php:341 ../../include/conversation.php:719 #, php-format msgid "from %s" msgstr "van %s" -#: ../../Zotlabs/Lib/ThreadItem.php:344 ../../include/conversation.php:725 +#: ../../Zotlabs/Lib/ThreadItem.php:344 ../../include/conversation.php:722 #, php-format msgid "last edited: %s" msgstr "laatst bewerkt: %s" -#: ../../Zotlabs/Lib/ThreadItem.php:345 ../../include/conversation.php:726 +#: ../../Zotlabs/Lib/ThreadItem.php:345 ../../include/conversation.php:723 #, php-format msgid "Expires: %s" msgstr "Verloopt: %s" @@ -7004,27 +6714,26 @@ msgid "Mark all seen" msgstr "Markeer alles als bekeken" #: ../../Zotlabs/Lib/ThreadItem.php:421 ../../include/js_strings.php:7 -#, php-format -msgid "%s show all" -msgstr "%s alle" +msgid "[+] show all" +msgstr "[+] alle" -#: ../../Zotlabs/Lib/ThreadItem.php:711 ../../include/conversation.php:1226 +#: ../../Zotlabs/Lib/ThreadItem.php:711 ../../include/conversation.php:1215 msgid "Bold" msgstr "Vet" -#: ../../Zotlabs/Lib/ThreadItem.php:712 ../../include/conversation.php:1227 +#: ../../Zotlabs/Lib/ThreadItem.php:712 ../../include/conversation.php:1216 msgid "Italic" msgstr "Cursief" -#: ../../Zotlabs/Lib/ThreadItem.php:713 ../../include/conversation.php:1228 +#: ../../Zotlabs/Lib/ThreadItem.php:713 ../../include/conversation.php:1217 msgid "Underline" msgstr "Onderstrepen" -#: ../../Zotlabs/Lib/ThreadItem.php:714 ../../include/conversation.php:1229 +#: ../../Zotlabs/Lib/ThreadItem.php:714 ../../include/conversation.php:1218 msgid "Quote" msgstr "Citeren" -#: ../../Zotlabs/Lib/ThreadItem.php:715 ../../include/conversation.php:1230 +#: ../../Zotlabs/Lib/ThreadItem.php:715 ../../include/conversation.php:1219 msgid "Code" msgstr "Broncode" @@ -7040,74 +6749,11 @@ msgstr "Link invoegen" msgid "Video" msgstr "Video" -#: ../../Zotlabs/Lib/PermissionDescription.php:31 -#: ../../include/acl_selectors.php:230 -msgid "Visible to your default audience" -msgstr "Voor iedereen zichtbaar, mits niet anders ingesteld" - -#: ../../Zotlabs/Lib/PermissionDescription.php:106 -#: ../../include/acl_selectors.php:266 -msgid "Only me" -msgstr "Alleen ik" - -#: ../../Zotlabs/Lib/PermissionDescription.php:107 -msgid "Public" -msgstr "Openbaar" - -#: ../../Zotlabs/Lib/PermissionDescription.php:108 -msgid "Anybody in the $Projectname network" -msgstr "Iedereen in het $Projectname-netwerk" - -#: ../../Zotlabs/Lib/PermissionDescription.php:109 -#, php-format -msgid "Any account on %s" -msgstr "Iedereen op %s" - -#: ../../Zotlabs/Lib/PermissionDescription.php:110 -msgid "Any of my connections" -msgstr "Al mijn geaccepteerde connecties" - -#: ../../Zotlabs/Lib/PermissionDescription.php:111 -msgid "Only connections I specifically allow" -msgstr "Alleen connecties die uitdrukkelijk door jou zijn toegestaan" - -#: ../../Zotlabs/Lib/PermissionDescription.php:112 -msgid "Anybody authenticated (could include visitors from other networks)" -msgstr "Geauthenticeerde leden (kan bezoekers van andere netwerken bevatten)" - -#: ../../Zotlabs/Lib/PermissionDescription.php:113 -msgid "Any connections including those who haven't yet been approved" -msgstr "Al mijn geaccepteerde en nog niet geaccepteerde connecties" - -#: ../../Zotlabs/Lib/PermissionDescription.php:152 -msgid "" -"This is your default setting for the audience of your normal stream, and " -"posts." -msgstr "Dit is de standaard privacy-instelling voor wie jouw berichten kan bekijken" - -#: ../../Zotlabs/Lib/PermissionDescription.php:153 -msgid "" -"This is your default setting for who can view your default channel profile" -msgstr "Dit is de standaard privacy-instelling voor wie jouw standaardprofiel kan bekijken" - -#: ../../Zotlabs/Lib/PermissionDescription.php:154 -msgid "This is your default setting for who can view your connections" -msgstr "Dit is de standaard privacy-instelling voor wie een lijst met jouw connecties kan bekijken" - -#: ../../Zotlabs/Lib/PermissionDescription.php:155 -msgid "" -"This is your default setting for who can view your file storage and photos" -msgstr "Dit is de standaard privacy-instelling voor wie jouw bestanden en foto's kan bekijken" - -#: ../../Zotlabs/Lib/PermissionDescription.php:156 -msgid "This is your default setting for the audience of your webpages" -msgstr "Dit is de standaard privacy-instelling voor wie jouw webpagina's kan bekijken" - #: ../../include/Import/import_diaspora.php:16 msgid "No username found in import file." msgstr "Geen gebruikersnaam in het importbestand gevonden." -#: ../../include/Import/import_diaspora.php:41 ../../include/import.php:51 +#: ../../include/Import/import_diaspora.php:41 ../../include/import.php:50 msgid "Unable to create a unique channel address. Import failed." msgstr "Niet in staat om een uniek kanaaladres aan te maken. Importeren is mislukt." @@ -7116,291 +6762,6 @@ msgstr "Niet in staat om een uniek kanaaladres aan te maken. Importeren is mislu msgid "Cannot locate DNS info for database server '%s'" msgstr "Kan DNS-informatie voor databaseserver '%s' niet vinden" -#: ../../include/photos.php:114 -#, php-format -msgid "Image exceeds website size limit of %lu bytes" -msgstr "Afbeelding is groter dan op deze hub toegestane limiet van %lu bytes" - -#: ../../include/photos.php:121 -msgid "Image file is empty." -msgstr "Afbeeldingsbestand is leeg" - -#: ../../include/photos.php:259 -msgid "Photo storage failed." -msgstr "Foto kan niet worden opgeslagen" - -#: ../../include/photos.php:299 -msgid "a new photo" -msgstr "een nieuwe foto" - -#: ../../include/photos.php:303 -#, php-format -msgctxt "photo_upload" -msgid "%1$s posted %2$s to %3$s" -msgstr "%1$s plaatste %2$s op %3$s" - -#: ../../include/photos.php:506 ../../include/conversation.php:1650 -msgid "Photo Albums" -msgstr "Fotoalbums" - -#: ../../include/photos.php:510 -msgid "Upload New Photos" -msgstr "Nieuwe foto's uploaden" - -#: ../../include/nav.php:82 ../../include/nav.php:115 ../../boot.php:1703 -msgid "Logout" -msgstr "Uitloggen" - -#: ../../include/nav.php:82 ../../include/nav.php:115 -msgid "End this session" -msgstr "Beëindig deze sessie" - -#: ../../include/nav.php:85 ../../include/nav.php:146 -msgid "Home" -msgstr "Home" - -#: ../../include/nav.php:85 -msgid "Your posts and conversations" -msgstr "Jouw kanaal" - -#: ../../include/nav.php:86 -msgid "Your profile page" -msgstr "Jouw profielpagina" - -#: ../../include/nav.php:88 -msgid "Manage/Edit profiles" -msgstr "Beheer/wijzig profielen" - -#: ../../include/nav.php:90 ../../include/channel.php:980 -msgid "Edit Profile" -msgstr "Profiel bewerken" - -#: ../../include/nav.php:90 -msgid "Edit your profile" -msgstr "Jouw profiel bewerken" - -#: ../../include/nav.php:92 -msgid "Your photos" -msgstr "Jouw foto's" - -#: ../../include/nav.php:93 -msgid "Your files" -msgstr "Jouw bestanden" - -#: ../../include/nav.php:96 -msgid "Your chatrooms" -msgstr "Jouw chatkanalen" - -#: ../../include/nav.php:102 ../../include/conversation.php:1690 -msgid "Bookmarks" -msgstr "Bladwijzers" - -#: ../../include/nav.php:102 -msgid "Your bookmarks" -msgstr "Jouw bladwijzers" - -#: ../../include/nav.php:106 -msgid "Your webpages" -msgstr "Jouw webpagina's" - -#: ../../include/nav.php:108 -msgid "Your wiki" -msgstr "Jouw wiki" - -#: ../../include/nav.php:112 -msgid "Sign in" -msgstr "Inloggen" - -#: ../../include/nav.php:129 -#, php-format -msgid "%s - click to logout" -msgstr "%s - klik om uit te loggen" - -#: ../../include/nav.php:132 -msgid "Remote authentication" -msgstr "Authenticatie op afstand" - -#: ../../include/nav.php:132 -msgid "Click to authenticate to your home hub" -msgstr "Authenticeer jezelf via (bijvoorbeeld) jouw hub" - -#: ../../include/nav.php:146 -msgid "Home Page" -msgstr "Homepage" - -#: ../../include/nav.php:149 -msgid "Create an account" -msgstr "Maak een account aan" - -#: ../../include/nav.php:161 -msgid "Help and documentation" -msgstr "Hulp en documentatie" - -#: ../../include/nav.php:165 -msgid "Applications, utilities, links, games" -msgstr "Apps" - -#: ../../include/nav.php:167 -msgid "Search site @name, #tag, ?docs, content" -msgstr "Zoek een @kanaal, doorzoek inhoud hub met tekst en #tags, of doorzoek ?documentatie " - -#: ../../include/nav.php:169 -msgid "Channel Directory" -msgstr "Kanalengids" - -#: ../../include/nav.php:181 -msgid "Your grid" -msgstr "Jouw grid" - -#: ../../include/nav.php:182 -msgid "Mark all grid notifications seen" -msgstr "Markeer alle gridnotificaties als bekeken" - -#: ../../include/nav.php:184 -msgid "Channel home" -msgstr "Jouw kanaal" - -#: ../../include/nav.php:185 -msgid "Mark all channel notifications seen" -msgstr "Alle kanaalnotificaties als gelezen markeren" - -#: ../../include/nav.php:191 -msgid "Notices" -msgstr "Notificaties" - -#: ../../include/nav.php:191 -msgid "Notifications" -msgstr "Notificaties" - -#: ../../include/nav.php:192 -msgid "See all notifications" -msgstr "Alle notificaties weergeven" - -#: ../../include/nav.php:195 -msgid "Private mail" -msgstr "Privéberichten" - -#: ../../include/nav.php:196 -msgid "See all private messages" -msgstr "Alle privéberichten weergeven" - -#: ../../include/nav.php:197 -msgid "Mark all private messages seen" -msgstr "Markeer alle privéberichten als bekeken" - -#: ../../include/nav.php:198 ../../include/widgets.php:667 -msgid "Inbox" -msgstr "Postvak IN" - -#: ../../include/nav.php:199 ../../include/widgets.php:672 -msgid "Outbox" -msgstr "Postvak UIT" - -#: ../../include/nav.php:200 ../../include/widgets.php:677 -msgid "New Message" -msgstr "Nieuw bericht" - -#: ../../include/nav.php:203 -msgid "Event Calendar" -msgstr "Agenda" - -#: ../../include/nav.php:204 -msgid "See all events" -msgstr "Alle gebeurtenissen weergeven" - -#: ../../include/nav.php:205 -msgid "Mark all events seen" -msgstr "Markeer alle gebeurtenissen als bekeken" - -#: ../../include/nav.php:208 -msgid "Manage Your Channels" -msgstr "Beheer je kanalen" - -#: ../../include/nav.php:210 -msgid "Account/Channel Settings" -msgstr "Account-/kanaal-instellingen" - -#: ../../include/nav.php:218 ../../include/widgets.php:1510 -msgid "Admin" -msgstr "Beheer" - -#: ../../include/nav.php:218 -msgid "Site Setup and Configuration" -msgstr "Hub instellen en beheren" - -#: ../../include/nav.php:249 ../../include/conversation.php:854 -msgid "Loading..." -msgstr "Aan het laden..." - -#: ../../include/nav.php:254 -msgid "@name, #tag, ?doc, content" -msgstr "@kanaal, #tag, inhoud, ?hulp" - -#: ../../include/nav.php:255 -msgid "Please wait..." -msgstr "Wachten aub..." - -#: ../../include/network.php:704 -msgid "view full size" -msgstr "volledige grootte tonen" - -#: ../../include/network.php:1930 ../../include/account.php:317 -#: ../../include/account.php:344 ../../include/account.php:404 -msgid "Administrator" -msgstr "Beheerder" - -#: ../../include/network.php:1944 -msgid "No Subject" -msgstr "Geen onderwerp" - -#: ../../include/network.php:2198 ../../include/network.php:2199 -msgid "Friendica" -msgstr "Friendica" - -#: ../../include/network.php:2200 -msgid "OStatus" -msgstr "OStatus" - -#: ../../include/network.php:2201 -msgid "GNU-Social" -msgstr "GNU social" - -#: ../../include/network.php:2202 -msgid "RSS/Atom" -msgstr "RSS/Atom" - -#: ../../include/network.php:2204 -msgid "Diaspora" -msgstr "Diaspora" - -#: ../../include/network.php:2205 -msgid "Facebook" -msgstr "Facebook" - -#: ../../include/network.php:2206 -msgid "Zot" -msgstr "Zot" - -#: ../../include/network.php:2207 -msgid "LinkedIn" -msgstr "LinkedIn" - -#: ../../include/network.php:2208 -msgid "XMPP/IM" -msgstr "XMPP/IM" - -#: ../../include/network.php:2209 -msgid "MySpace" -msgstr "MySpace" - -#: ../../include/page_widgets.php:7 -msgid "New Page" -msgstr "Nieuwe pagina" - -#: ../../include/page_widgets.php:46 -msgid "Title" -msgstr "Titel" - #: ../../include/taxonomy.php:188 ../../include/taxonomy.php:270 #: ../../include/widgets.php:46 ../../include/widgets.php:429 #: ../../include/contact_widgets.php:91 @@ -7439,159 +6800,952 @@ msgstr "vindt dit leuk" msgid "dislikes" msgstr "vindt dit niet leuk" -#: ../../include/channel.php:33 -msgid "Unable to obtain identity information from database" -msgstr "Niet in staat om identiteitsinformatie uit de database te verkrijgen" +#: ../../include/event.php:22 ../../include/event.php:69 +#: ../../include/bb2diaspora.php:485 +msgid "l F d, Y \\@ g:i A" +msgstr "l d F Y \\@ G:i" -#: ../../include/channel.php:67 -msgid "Empty name" -msgstr "Ontbrekende naam" +#: ../../include/event.php:30 ../../include/event.php:73 +#: ../../include/bb2diaspora.php:491 +msgid "Starts:" +msgstr "Start:" -#: ../../include/channel.php:70 -msgid "Name too long" -msgstr "Naam te lang" +#: ../../include/event.php:40 ../../include/event.php:77 +#: ../../include/bb2diaspora.php:499 +msgid "Finishes:" +msgstr "Einde:" -#: ../../include/channel.php:181 -msgid "No account identifier" -msgstr "Geen account-identificator" +#: ../../include/event.php:812 +msgid "This event has been added to your calendar." +msgstr "Dit evenement is aan jouw agenda toegevoegd." -#: ../../include/channel.php:193 -msgid "Nickname is required." -msgstr "Bijnaam is verplicht" +#: ../../include/event.php:1012 +msgid "Not specified" +msgstr "Niet aangegeven" -#: ../../include/channel.php:207 -msgid "Reserved nickname. Please choose another." -msgstr "Deze naam is gereserveerd. Kies een andere." +#: ../../include/event.php:1013 +msgid "Needs Action" +msgstr "Actie vereist" -#: ../../include/channel.php:212 +#: ../../include/event.php:1014 +msgid "Completed" +msgstr "Voltooid" + +#: ../../include/event.php:1015 +msgid "In Process" +msgstr "In behandeling" + +#: ../../include/event.php:1016 +msgid "Cancelled" +msgstr "Geannuleerd" + +#: ../../include/import.php:29 msgid "" -"Nickname has unsupported characters or is already being used on this site." -msgstr "Deze naam heeft niet ondersteunde karakters of is al op deze hub in gebruik." +"Cannot create a duplicate channel identifier on this system. Import failed." +msgstr "Kan geen dubbele kanaal-identificator op deze hub aanmaken. Importeren mislukt." -#: ../../include/channel.php:272 -msgid "Unable to retrieve created identity" -msgstr "Niet in staat om aangemaakte identiteit te vinden" +#: ../../include/import.php:76 +msgid "Channel clone failed. Import failed." +msgstr "Het klonen van het kanaal is mislukt. Importeren mislukt." -#: ../../include/channel.php:341 -msgid "Default Profile" -msgstr "Standaardprofiel" +#: ../../include/items.php:892 ../../include/items.php:937 +msgid "(Unknown)" +msgstr "(Onbekend)" -#: ../../include/channel.php:830 -msgid "Requested channel is not available." -msgstr "Opgevraagd kanaal is niet beschikbaar." +#: ../../include/items.php:1136 +msgid "Visible to anybody on the internet." +msgstr "Voor iedereen op het internet zichtbaar." -#: ../../include/channel.php:977 -msgid "Create New Profile" -msgstr "Nieuw profiel aanmaken" +#: ../../include/items.php:1138 +msgid "Visible to you only." +msgstr "Alleen voor jou zichtbaar." -#: ../../include/channel.php:997 -msgid "Visible to everybody" -msgstr "Voor iedereen zichtbaar" +#: ../../include/items.php:1140 +msgid "Visible to anybody in this network." +msgstr "Voor iedereen in dit netwerk zichtbaar." -#: ../../include/channel.php:1070 ../../include/channel.php:1182 -msgid "Gender:" -msgstr "Geslacht:" +#: ../../include/items.php:1142 +msgid "Visible to anybody authenticated." +msgstr "Voor iedereen die geauthenticeerd is zichtbaar." -#: ../../include/channel.php:1071 ../../include/channel.php:1226 -msgid "Status:" -msgstr "Status:" - -#: ../../include/channel.php:1072 ../../include/channel.php:1237 -msgid "Homepage:" -msgstr "Homepagina:" - -#: ../../include/channel.php:1073 -msgid "Online Now" -msgstr "Nu online" - -#: ../../include/channel.php:1187 -msgid "Like this channel" -msgstr "Vind dit kanaal leuk" - -#: ../../include/channel.php:1211 -msgid "j F, Y" -msgstr "F j Y" - -#: ../../include/channel.php:1212 -msgid "j F" -msgstr "F j" - -#: ../../include/channel.php:1219 -msgid "Birthday:" -msgstr "Geboortedatum:" - -#: ../../include/channel.php:1232 +#: ../../include/items.php:1144 #, php-format -msgid "for %1$d %2$s" -msgstr "voor %1$d %2$s" +msgid "Visible to anybody on %s." +msgstr "Voor iedereen op %s zichtbaar." -#: ../../include/channel.php:1235 -msgid "Sexual Preference:" -msgstr "Seksuele voorkeur:" +#: ../../include/items.php:1146 +msgid "Visible to all connections." +msgstr "Voor alle connecties zichtbaar." -#: ../../include/channel.php:1241 -msgid "Tags:" -msgstr "Tags:" +#: ../../include/items.php:1148 +msgid "Visible to approved connections." +msgstr "Voor alle geaccepteerde connecties zichtbaar." -#: ../../include/channel.php:1243 -msgid "Political Views:" -msgstr "Politieke overtuigingen:" +#: ../../include/items.php:1150 +msgid "Visible to specific connections." +msgstr "Voor specifieke connecties zichtbaar." -#: ../../include/channel.php:1245 -msgid "Religion:" -msgstr "Religie:" +#: ../../include/items.php:3909 +msgid "Privacy group is empty." +msgstr "Privacygroep is leeg" -#: ../../include/channel.php:1249 -msgid "Hobbies/Interests:" -msgstr "Hobby's/interesses:" +#: ../../include/items.php:3916 +#, php-format +msgid "Privacy group: %s" +msgstr "Privacygroep: %s" -#: ../../include/channel.php:1251 -msgid "Likes:" -msgstr "Houdt van:" +#: ../../include/items.php:3928 +msgid "Connection not found." +msgstr "Connectie niet gevonden." -#: ../../include/channel.php:1253 -msgid "Dislikes:" -msgstr "Houdt niet van:" +#: ../../include/items.php:4277 +msgid "profile photo" +msgstr "profielfoto" -#: ../../include/channel.php:1255 -msgid "Contact information and Social Networks:" -msgstr "Contactinformatie en sociale netwerken:" +#: ../../include/message.php:20 +msgid "No recipient provided." +msgstr "Geen ontvanger opgegeven." -#: ../../include/channel.php:1257 -msgid "My other channels:" -msgstr "Mijn andere kanalen" +#: ../../include/message.php:25 +msgid "[no subject]" +msgstr "[geen onderwerp]" -#: ../../include/channel.php:1259 -msgid "Musical interests:" -msgstr "Muzikale interesses:" +#: ../../include/message.php:45 +msgid "Unable to determine sender." +msgstr "Afzender kan niet bepaald worden." -#: ../../include/channel.php:1261 -msgid "Books, literature:" -msgstr "Boeken, literatuur:" +#: ../../include/message.php:222 +msgid "Stored post could not be verified." +msgstr "Opgeslagen bericht kon niet worden geverifieerd." -#: ../../include/channel.php:1263 -msgid "Television:" -msgstr "Televisie:" +#: ../../include/text.php:428 +msgid "prev" +msgstr "vorige" -#: ../../include/channel.php:1265 -msgid "Film/dance/culture/entertainment:" -msgstr "Films/dansen/cultuur/vermaak:" +#: ../../include/text.php:430 +msgid "first" +msgstr "eerste" -#: ../../include/channel.php:1267 -msgid "Love/Romance:" -msgstr "Liefde/romantiek:" +#: ../../include/text.php:459 +msgid "last" +msgstr "laatste" -#: ../../include/channel.php:1269 -msgid "Work/employment:" -msgstr "Werk/beroep:" +#: ../../include/text.php:462 +msgid "next" +msgstr "volgende" -#: ../../include/channel.php:1271 -msgid "School/education:" -msgstr "School/opleiding:" +#: ../../include/text.php:472 +msgid "older" +msgstr "ouder" -#: ../../include/channel.php:1292 -msgid "Like this thing" -msgstr "Vind dit ding leuk" +#: ../../include/text.php:474 +msgid "newer" +msgstr "nieuwer" + +#: ../../include/text.php:863 +msgid "No connections" +msgstr "Geen connecties" + +#: ../../include/text.php:888 +#, php-format +msgid "View all %s connections" +msgstr "Toon alle %s connecties" + +#: ../../include/text.php:1033 ../../include/text.php:1038 +msgid "poke" +msgstr "aanstoten" + +#: ../../include/text.php:1033 ../../include/text.php:1038 +#: ../../include/conversation.php:243 +msgid "poked" +msgstr "aangestoten" + +#: ../../include/text.php:1039 +msgid "ping" +msgstr "ping" + +#: ../../include/text.php:1039 +msgid "pinged" +msgstr "gepingd" + +#: ../../include/text.php:1040 +msgid "prod" +msgstr "por" + +#: ../../include/text.php:1040 +msgid "prodded" +msgstr "gepord" + +#: ../../include/text.php:1041 +msgid "slap" +msgstr "slaan" + +#: ../../include/text.php:1041 +msgid "slapped" +msgstr "sloeg" + +#: ../../include/text.php:1042 +msgid "finger" +msgstr "finger" + +#: ../../include/text.php:1042 +msgid "fingered" +msgstr "gefingerd" + +#: ../../include/text.php:1043 +msgid "rebuff" +msgstr "afpoeieren" + +#: ../../include/text.php:1043 +msgid "rebuffed" +msgstr "afgepoeierd" + +#: ../../include/text.php:1055 +msgid "happy" +msgstr "gelukkig" + +#: ../../include/text.php:1056 +msgid "sad" +msgstr "bedroefd" + +#: ../../include/text.php:1057 +msgid "mellow" +msgstr "mellow" + +#: ../../include/text.php:1058 +msgid "tired" +msgstr "moe" + +#: ../../include/text.php:1059 +msgid "perky" +msgstr "parmantig" + +#: ../../include/text.php:1060 +msgid "angry" +msgstr "boos" + +#: ../../include/text.php:1061 +msgid "stupefied" +msgstr "verbijsterd" + +#: ../../include/text.php:1062 +msgid "puzzled" +msgstr "verward" + +#: ../../include/text.php:1063 +msgid "interested" +msgstr "geïnteresseerd" + +#: ../../include/text.php:1064 +msgid "bitter" +msgstr "verbitterd" + +#: ../../include/text.php:1065 +msgid "cheerful" +msgstr "vrolijk" + +#: ../../include/text.php:1066 +msgid "alive" +msgstr "levendig" + +#: ../../include/text.php:1067 +msgid "annoyed" +msgstr "geërgerd" + +#: ../../include/text.php:1068 +msgid "anxious" +msgstr "bezorgd" + +#: ../../include/text.php:1069 +msgid "cranky" +msgstr "humeurig" + +#: ../../include/text.php:1070 +msgid "disturbed" +msgstr "verontrust" + +#: ../../include/text.php:1071 +msgid "frustrated" +msgstr "gefrustreerd " + +#: ../../include/text.php:1072 +msgid "depressed" +msgstr "gedeprimeerd" + +#: ../../include/text.php:1073 +msgid "motivated" +msgstr "gemotiveerd" + +#: ../../include/text.php:1074 +msgid "relaxed" +msgstr "ontspannen" + +#: ../../include/text.php:1075 +msgid "surprised" +msgstr "verrast" + +#: ../../include/text.php:1257 ../../include/js_strings.php:70 +msgid "Monday" +msgstr "maandag" + +#: ../../include/text.php:1257 ../../include/js_strings.php:71 +msgid "Tuesday" +msgstr "dinsdag" + +#: ../../include/text.php:1257 ../../include/js_strings.php:72 +msgid "Wednesday" +msgstr "woensdag" + +#: ../../include/text.php:1257 ../../include/js_strings.php:73 +msgid "Thursday" +msgstr "donderdag" + +#: ../../include/text.php:1257 ../../include/js_strings.php:74 +msgid "Friday" +msgstr "vrijdag" + +#: ../../include/text.php:1257 ../../include/js_strings.php:75 +msgid "Saturday" +msgstr "zaterdag" + +#: ../../include/text.php:1257 ../../include/js_strings.php:69 +msgid "Sunday" +msgstr "zondag" + +#: ../../include/text.php:1261 ../../include/js_strings.php:45 +msgid "January" +msgstr "januari" + +#: ../../include/text.php:1261 ../../include/js_strings.php:46 +msgid "February" +msgstr "februari" + +#: ../../include/text.php:1261 ../../include/js_strings.php:47 +msgid "March" +msgstr "maart" + +#: ../../include/text.php:1261 ../../include/js_strings.php:48 +msgid "April" +msgstr "april" + +#: ../../include/text.php:1261 +msgid "May" +msgstr "mei" + +#: ../../include/text.php:1261 ../../include/js_strings.php:50 +msgid "June" +msgstr "juni" + +#: ../../include/text.php:1261 ../../include/js_strings.php:51 +msgid "July" +msgstr "juli" + +#: ../../include/text.php:1261 ../../include/js_strings.php:52 +msgid "August" +msgstr "augustus" + +#: ../../include/text.php:1261 ../../include/js_strings.php:53 +msgid "September" +msgstr "september" + +#: ../../include/text.php:1261 ../../include/js_strings.php:54 +msgid "October" +msgstr "oktober" + +#: ../../include/text.php:1261 ../../include/js_strings.php:55 +msgid "November" +msgstr "november" + +#: ../../include/text.php:1261 ../../include/js_strings.php:56 +msgid "December" +msgstr "december" + +#: ../../include/text.php:1338 ../../include/text.php:1342 +msgid "Unknown Attachment" +msgstr "Onbekende bijlage" + +#: ../../include/text.php:1344 +msgid "unknown" +msgstr "onbekend" + +#: ../../include/text.php:1380 +msgid "remove category" +msgstr "categorie verwijderen" + +#: ../../include/text.php:1457 +msgid "remove from file" +msgstr "uit map verwijderen" + +#: ../../include/text.php:1753 ../../include/text.php:1824 +msgid "default" +msgstr "standaard" + +#: ../../include/text.php:1761 +msgid "Page layout" +msgstr "Pagina-lay-out" + +#: ../../include/text.php:1761 +msgid "You can create your own with the layouts tool" +msgstr "Je kan jouw eigen lay-out ontwerpen onder lay-outs" + +#: ../../include/text.php:1803 +msgid "Page content type" +msgstr "Opmaaktype pagina" + +#: ../../include/text.php:1836 +msgid "Select an alternate language" +msgstr "Kies een andere taal" + +#: ../../include/text.php:1953 +msgid "activity" +msgstr "activiteit" + +#: ../../include/text.php:2262 +msgid "Design Tools" +msgstr "Ontwerp-hulpmiddelen" + +#: ../../include/text.php:2268 +msgid "Pages" +msgstr "Pagina's" + +#: ../../include/widgets.php:103 +msgid "System" +msgstr "Systeem" + +#: ../../include/widgets.php:106 +msgid "New App" +msgstr "Nieuwe app" + +#: ../../include/widgets.php:154 +msgid "Suggestions" +msgstr "Voorgestelde kanalen" + +#: ../../include/widgets.php:155 +msgid "See more..." +msgstr "Meer..." + +#: ../../include/widgets.php:175 +#, php-format +msgid "You have %1$.0f of %2$.0f allowed connections." +msgstr "Je hebt %1$.0f van de %2$.0f toegestane connecties." + +#: ../../include/widgets.php:181 +msgid "Add New Connection" +msgstr "Nieuwe connectie toevoegen" + +#: ../../include/widgets.php:182 +msgid "Enter channel address" +msgstr "Vul kanaaladres in" + +#: ../../include/widgets.php:183 +msgid "Examples: bob@example.com, https://example.com/barbara" +msgstr "Voorbeelden: bob@example.com, http://example.com/barbara" + +#: ../../include/widgets.php:199 +msgid "Notes" +msgstr "Aantekeningen" + +#: ../../include/widgets.php:273 +msgid "Remove term" +msgstr "Verwijder zoekterm" + +#: ../../include/widgets.php:281 ../../include/features.php:84 +msgid "Saved Searches" +msgstr "Opgeslagen zoekopdrachten" + +#: ../../include/widgets.php:282 ../../include/group.php:316 +msgid "add" +msgstr "toevoegen" + +#: ../../include/widgets.php:310 ../../include/contact_widgets.php:53 +#: ../../include/features.php:98 +msgid "Saved Folders" +msgstr "Bewaarde mappen" + +#: ../../include/widgets.php:313 ../../include/widgets.php:432 +#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:94 +msgid "Everything" +msgstr "Alles" + +#: ../../include/widgets.php:354 +msgid "Archives" +msgstr "Archieven" + +#: ../../include/widgets.php:516 +msgid "Refresh" +msgstr "Vernieuwen" + +#: ../../include/widgets.php:556 +msgid "Account settings" +msgstr "Account" + +#: ../../include/widgets.php:562 +msgid "Channel settings" +msgstr "Kanaal" + +#: ../../include/widgets.php:571 +msgid "Additional features" +msgstr "Extra functies" + +#: ../../include/widgets.php:578 +msgid "Feature/Addon settings" +msgstr "Plugin-instellingen" + +#: ../../include/widgets.php:584 +msgid "Display settings" +msgstr "Weergave" + +#: ../../include/widgets.php:591 +msgid "Manage locations" +msgstr "Locaties beheren" + +#: ../../include/widgets.php:600 +msgid "Export channel" +msgstr "Kanaal exporteren" + +#: ../../include/widgets.php:607 +msgid "Connected apps" +msgstr "Verbonden applicaties" + +#: ../../include/widgets.php:622 +msgid "Premium Channel Settings" +msgstr "Instellingen premiumkanaal" + +#: ../../include/widgets.php:651 +msgid "Private Mail Menu" +msgstr "Privéberichten" + +#: ../../include/widgets.php:653 +msgid "Combined View" +msgstr "Gecombineerd postvak" + +#: ../../include/widgets.php:658 ../../include/nav.php:196 +msgid "Inbox" +msgstr "Postvak IN" + +#: ../../include/widgets.php:663 ../../include/nav.php:197 +msgid "Outbox" +msgstr "Postvak UIT" + +#: ../../include/widgets.php:668 ../../include/nav.php:198 +msgid "New Message" +msgstr "Nieuw bericht" + +#: ../../include/widgets.php:685 ../../include/widgets.php:697 +msgid "Conversations" +msgstr "Conversaties" + +#: ../../include/widgets.php:689 +msgid "Received Messages" +msgstr "Ontvangen berichten" + +#: ../../include/widgets.php:693 +msgid "Sent Messages" +msgstr "Verzonden berichten" + +#: ../../include/widgets.php:707 +msgid "No messages." +msgstr "Geen berichten" + +#: ../../include/widgets.php:725 +msgid "Delete conversation" +msgstr "Verwijder conversatie" + +#: ../../include/widgets.php:751 +msgid "Events Menu" +msgstr "Agenda-menu" + +#: ../../include/widgets.php:752 +msgid "Day View" +msgstr "Dag tonen" + +#: ../../include/widgets.php:753 +msgid "Week View" +msgstr "Week tonen" + +#: ../../include/widgets.php:754 +msgid "Month View" +msgstr "Maand tonen" + +#: ../../include/widgets.php:766 +msgid "Events Tools" +msgstr "Agenda-hulpmiddelen" + +#: ../../include/widgets.php:767 +msgid "Export Calendar" +msgstr "Exporteren" + +#: ../../include/widgets.php:768 +msgid "Import Calendar" +msgstr "Importeren" + +#: ../../include/widgets.php:842 ../../include/conversation.php:1662 +#: ../../include/conversation.php:1665 +msgid "Chatrooms" +msgstr "Chatkanalen" + +#: ../../include/widgets.php:846 +msgid "Overview" +msgstr "Overzicht" + +#: ../../include/widgets.php:853 +msgid "Chat Members" +msgstr "Chatleden" + +#: ../../include/widgets.php:876 +msgid "Bookmarked Chatrooms" +msgstr "Bladwijzers van chatkanalen" + +#: ../../include/widgets.php:899 +msgid "Suggested Chatrooms" +msgstr "Voorgestelde chatkanalen" + +#: ../../include/widgets.php:1044 ../../include/widgets.php:1156 +msgid "photo/image" +msgstr "foto/afbeelding" + +#: ../../include/widgets.php:1099 +msgid "Click to show more" +msgstr "Klik voor meer" + +#: ../../include/widgets.php:1250 +msgid "Rating Tools" +msgstr "Beoordelingen" + +#: ../../include/widgets.php:1254 ../../include/widgets.php:1256 +msgid "Rate Me" +msgstr "Beoordeel mij" + +#: ../../include/widgets.php:1259 +msgid "View Ratings" +msgstr "Bekijk beoordelingen" + +#: ../../include/widgets.php:1316 +msgid "Forums" +msgstr "Forums" + +#: ../../include/widgets.php:1345 +msgid "Tasks" +msgstr "Taken" + +#: ../../include/widgets.php:1354 +msgid "Documentation" +msgstr "Documentatie" + +#: ../../include/widgets.php:1356 +msgid "Project/Site Information" +msgstr "Project- en hub-informatie" + +#: ../../include/widgets.php:1357 +msgid "For Members" +msgstr "Voor leden" + +#: ../../include/widgets.php:1358 +msgid "For Administrators" +msgstr "Voor beheerders" + +#: ../../include/widgets.php:1359 +msgid "For Developers" +msgstr "Voor ontwikkelaars" + +#: ../../include/widgets.php:1383 ../../include/widgets.php:1421 +msgid "Member registrations waiting for confirmation" +msgstr "Accounts die op goedkeuring wachten" + +#: ../../include/widgets.php:1389 +msgid "Inspect queue" +msgstr "Inspecteer berichtenwachtrij" + +#: ../../include/widgets.php:1391 +msgid "DB updates" +msgstr "Database-updates" + +#: ../../include/widgets.php:1416 ../../include/nav.php:216 +msgid "Admin" +msgstr "Beheer" + +#: ../../include/widgets.php:1417 +msgid "Plugin Features" +msgstr "Plugin-opties" + +#: ../../include/follow.php:27 +msgid "Channel is blocked on this site." +msgstr "Kanaal is op deze hub geblokkeerd." + +#: ../../include/follow.php:32 +msgid "Channel location missing." +msgstr "Ontbrekende kanaallocatie." + +#: ../../include/follow.php:81 +msgid "Response from remote channel was incomplete." +msgstr "Antwoord van het kanaal op afstand was niet volledig." + +#: ../../include/follow.php:98 +msgid "Channel was deleted and no longer exists." +msgstr "Kanaal is verwijderd en bestaat niet meer." + +#: ../../include/follow.php:154 ../../include/follow.php:190 +msgid "Protocol disabled." +msgstr "Protocol uitgeschakeld." + +#: ../../include/follow.php:178 +msgid "Channel discovery failed." +msgstr "Kanaal ontdekken mislukt." + +#: ../../include/follow.php:216 +msgid "Cannot connect to yourself." +msgstr "Kan niet met jezelf verbinden" + +#: ../../include/bookmarks.php:35 +#, php-format +msgid "%1$s's bookmarks" +msgstr "Bladwijzers van %1$s" + +#: ../../include/api.php:1336 +msgid "Public Timeline" +msgstr "Openbare tijdlijn" + +#: ../../include/bbcode.php:123 ../../include/bbcode.php:844 +#: ../../include/bbcode.php:847 ../../include/bbcode.php:852 +#: ../../include/bbcode.php:855 ../../include/bbcode.php:858 +#: ../../include/bbcode.php:861 ../../include/bbcode.php:866 +#: ../../include/bbcode.php:869 ../../include/bbcode.php:874 +#: ../../include/bbcode.php:877 ../../include/bbcode.php:880 +#: ../../include/bbcode.php:883 +msgid "Image/photo" +msgstr "Afbeelding/foto" + +#: ../../include/bbcode.php:162 ../../include/bbcode.php:894 +msgid "Encrypted content" +msgstr "Versleutelde inhoud" + +#: ../../include/bbcode.php:178 +#, php-format +msgid "Install %s element: " +msgstr "Installeer %s-element: " + +#: ../../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 "Dit bericht heeft een te installeren %s-element, maar je hebt geen permissies om het op deze hub te installeren." + +#: ../../include/bbcode.php:254 +#, php-format +msgid "%1$s wrote the following %2$s %3$s" +msgstr "%1$s schreef het volgende %2$s %3$s" + +#: ../../include/bbcode.php:331 ../../include/bbcode.php:339 +msgid "Click to open/close" +msgstr "Klik om te openen of te sluiten" + +#: ../../include/bbcode.php:339 +msgid "spoiler" +msgstr "spoiler" + +#: ../../include/bbcode.php:585 +msgid "Different viewers will see this text differently" +msgstr "Deze tekst wordt per persoon anders weergeven." + +#: ../../include/bbcode.php:832 +msgid "$1 wrote:" +msgstr "$1 schreef:" + +#: ../../include/dir_fns.php:141 +msgid "Directory Options" +msgstr "Opties kanalengids" + +#: ../../include/dir_fns.php:143 +msgid "Safe Mode" +msgstr "Veilig zoeken" + +#: ../../include/dir_fns.php:144 +msgid "Public Forums Only" +msgstr "Alleen openbare forums" + +#: ../../include/dir_fns.php:145 +msgid "This Website Only" +msgstr "Alleen deze hub" + +#: ../../include/security.php:383 +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 "De beveiligings-token van het tekstvak was ongeldig. Dit is mogelijk het gevolg van dat er te lang (meer dan 3 uur) gewacht is om de tekst op te slaan. " + +#: ../../include/nav.php:82 ../../include/nav.php:113 ../../boot.php:1702 +msgid "Logout" +msgstr "Uitloggen" + +#: ../../include/nav.php:82 ../../include/nav.php:113 +msgid "End this session" +msgstr "Beëindig deze sessie" + +#: ../../include/nav.php:85 ../../include/nav.php:144 +msgid "Home" +msgstr "Home" + +#: ../../include/nav.php:85 +msgid "Your posts and conversations" +msgstr "Jouw kanaal" + +#: ../../include/nav.php:86 +msgid "Your profile page" +msgstr "Jouw profielpagina" + +#: ../../include/nav.php:88 +msgid "Manage/Edit profiles" +msgstr "Beheer/wijzig profielen" + +#: ../../include/nav.php:90 ../../include/channel.php:941 +msgid "Edit Profile" +msgstr "Profiel bewerken" + +#: ../../include/nav.php:90 +msgid "Edit your profile" +msgstr "Jouw profiel bewerken" + +#: ../../include/nav.php:92 +msgid "Your photos" +msgstr "Jouw foto's" + +#: ../../include/nav.php:93 +msgid "Your files" +msgstr "Jouw bestanden" + +#: ../../include/nav.php:96 +msgid "Your chatrooms" +msgstr "Jouw chatkanalen" + +#: ../../include/nav.php:102 ../../include/conversation.php:1675 +msgid "Bookmarks" +msgstr "Bladwijzers" + +#: ../../include/nav.php:102 +msgid "Your bookmarks" +msgstr "Jouw bladwijzers" + +#: ../../include/nav.php:106 +msgid "Your webpages" +msgstr "Jouw webpagina's" + +#: ../../include/nav.php:110 +msgid "Sign in" +msgstr "Inloggen" + +#: ../../include/nav.php:127 +#, php-format +msgid "%s - click to logout" +msgstr "%s - klik om uit te loggen" + +#: ../../include/nav.php:130 +msgid "Remote authentication" +msgstr "Authenticatie op afstand" + +#: ../../include/nav.php:130 +msgid "Click to authenticate to your home hub" +msgstr "Authenticeer jezelf via (bijvoorbeeld) jouw hub" + +#: ../../include/nav.php:144 +msgid "Home Page" +msgstr "Homepage" + +#: ../../include/nav.php:147 +msgid "Create an account" +msgstr "Maak een account aan" + +#: ../../include/nav.php:159 +msgid "Help and documentation" +msgstr "Hulp en documentatie" + +#: ../../include/nav.php:163 +msgid "Applications, utilities, links, games" +msgstr "Apps" + +#: ../../include/nav.php:165 +msgid "Search site @name, #tag, ?docs, content" +msgstr "Zoek een @kanaal, doorzoek inhoud hub met tekst en #tags, of doorzoek ?documentatie " + +#: ../../include/nav.php:167 +msgid "Channel Directory" +msgstr "Kanalengids" + +#: ../../include/nav.php:179 +msgid "Your grid" +msgstr "Jouw grid" + +#: ../../include/nav.php:180 +msgid "Mark all grid notifications seen" +msgstr "Markeer alle gridnotificaties als bekeken" + +#: ../../include/nav.php:182 +msgid "Channel home" +msgstr "Jouw kanaal" + +#: ../../include/nav.php:183 +msgid "Mark all channel notifications seen" +msgstr "Alle kanaalnotificaties als gelezen markeren" + +#: ../../include/nav.php:189 +msgid "Notices" +msgstr "Notificaties" + +#: ../../include/nav.php:189 +msgid "Notifications" +msgstr "Notificaties" + +#: ../../include/nav.php:190 +msgid "See all notifications" +msgstr "Alle notificaties weergeven" + +#: ../../include/nav.php:193 +msgid "Private mail" +msgstr "Privéberichten" + +#: ../../include/nav.php:194 +msgid "See all private messages" +msgstr "Alle privéberichten weergeven" + +#: ../../include/nav.php:195 +msgid "Mark all private messages seen" +msgstr "Markeer alle privéberichten als bekeken" + +#: ../../include/nav.php:201 +msgid "Event Calendar" +msgstr "Agenda" + +#: ../../include/nav.php:202 +msgid "See all events" +msgstr "Alle gebeurtenissen weergeven" + +#: ../../include/nav.php:203 +msgid "Mark all events seen" +msgstr "Markeer alle gebeurtenissen als bekeken" + +#: ../../include/nav.php:206 +msgid "Manage Your Channels" +msgstr "Beheer je kanalen" + +#: ../../include/nav.php:208 +msgid "Account/Channel Settings" +msgstr "Account-/kanaal-instellingen" + +#: ../../include/nav.php:216 +msgid "Site Setup and Configuration" +msgstr "Hub instellen en beheren" + +#: ../../include/nav.php:247 ../../include/conversation.php:851 +msgid "Loading..." +msgstr "Aan het laden..." + +#: ../../include/nav.php:252 +msgid "@name, #tag, ?doc, content" +msgstr "@kanaal, #tag, inhoud, ?hulp" + +#: ../../include/nav.php:253 +msgid "Please wait..." +msgstr "Wachten aub..." #: ../../include/connections.php:95 msgid "New window" @@ -7606,6 +7760,52 @@ msgstr "Open de geselecteerde locatie in een ander venster of tab" msgid "User '%s' deleted" msgstr "Account '%s' verwijderd" +#: ../../include/contact_widgets.php:11 +#, php-format +msgid "%d invitation available" +msgid_plural "%d invitations available" +msgstr[0] "%d uitnodiging beschikbaar" +msgstr[1] "%d uitnodigingen beschikbaar" + +#: ../../include/contact_widgets.php:19 +msgid "Find Channels" +msgstr "Kanalen vinden" + +#: ../../include/contact_widgets.php:20 +msgid "Enter name or interest" +msgstr "Vul naam of interesse in" + +#: ../../include/contact_widgets.php:21 +msgid "Connect/Follow" +msgstr "Verbinden/volgen" + +#: ../../include/contact_widgets.php:22 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "Voorbeeld: Robert Morgenstein, vissen" + +#: ../../include/contact_widgets.php:26 +msgid "Random Profile" +msgstr "Willekeurig profiel" + +#: ../../include/contact_widgets.php:27 +msgid "Invite Friends" +msgstr "Vrienden uitnodigen" + +#: ../../include/contact_widgets.php:29 +msgid "Advanced example: name=fred and country=iceland" +msgstr "Geavanceerd voorbeeld (Engels): name=jan en country=nederland" + +#: ../../include/contact_widgets.php:122 +#, php-format +msgid "%d connection in common" +msgid_plural "%d connections in common" +msgstr[0] "%d gemeenschappelijke connectie" +msgstr[1] "%d gemeenschappelijke connecties" + +#: ../../include/contact_widgets.php:127 +msgid "show more" +msgstr "meer connecties weergeven" + #: ../../include/conversation.php:204 #, php-format msgid "%1$s is now connected with %2$s" @@ -7616,269 +7816,258 @@ msgstr "%1$s is nu met %2$s verbonden" msgid "%1$s poked %2$s" msgstr "%1$s heeft %2$s aangestoten" -#: ../../include/conversation.php:243 ../../include/text.php:1013 -#: ../../include/text.php:1018 -msgid "poked" -msgstr "aangestoten" - -#: ../../include/conversation.php:694 +#: ../../include/conversation.php:691 #, php-format msgid "View %s's profile @ %s" msgstr "Bekijk het profiel van %s @ %s" -#: ../../include/conversation.php:713 +#: ../../include/conversation.php:710 msgid "Categories:" msgstr "Categorieën:" -#: ../../include/conversation.php:714 +#: ../../include/conversation.php:711 msgid "Filed under:" msgstr "Bewaard onder:" -#: ../../include/conversation.php:741 +#: ../../include/conversation.php:738 msgid "View in context" msgstr "In context bekijken" -#: ../../include/conversation.php:850 +#: ../../include/conversation.php:847 msgid "remove" msgstr "verwijderen" -#: ../../include/conversation.php:855 +#: ../../include/conversation.php:852 msgid "Delete Selected Items" msgstr "Verwijder de geselecteerde items" -#: ../../include/conversation.php:951 +#: ../../include/conversation.php:948 msgid "View Source" msgstr "Bron weergeven" -#: ../../include/conversation.php:952 +#: ../../include/conversation.php:949 msgid "Follow Thread" msgstr "Conversatie volgen" -#: ../../include/conversation.php:953 +#: ../../include/conversation.php:950 msgid "Unfollow Thread" msgstr "Conversatie niet meer volgen" -#: ../../include/conversation.php:958 +#: ../../include/conversation.php:955 msgid "Activity/Posts" msgstr "Activiteit/berichten connectie" -#: ../../include/conversation.php:960 +#: ../../include/conversation.php:957 msgid "Edit Connection" msgstr "Connectie bewerken" -#: ../../include/conversation.php:961 +#: ../../include/conversation.php:958 msgid "Message" msgstr "Bericht" -#: ../../include/conversation.php:1078 +#: ../../include/conversation.php:1075 #, php-format msgid "%s likes this." msgstr "%s vindt dit leuk." -#: ../../include/conversation.php:1078 +#: ../../include/conversation.php:1075 #, php-format msgid "%s doesn't like this." msgstr "%s vindt dit niet leuk." -#: ../../include/conversation.php:1082 +#: ../../include/conversation.php:1079 #, php-format msgid "%2$d people like this." msgid_plural "%2$d people like this." msgstr[0] "%2$d persoon vindt dit leuk." msgstr[1] "%2$d personen vinden dit leuk." -#: ../../include/conversation.php:1084 +#: ../../include/conversation.php:1081 #, php-format msgid "%2$d people don't like this." msgid_plural "%2$d people don't like this." msgstr[0] "%2$d persoon vindt dit niet leuk." msgstr[1] "%2$d personen vinden dit niet leuk." -#: ../../include/conversation.php:1090 +#: ../../include/conversation.php:1087 msgid "and" msgstr "en" -#: ../../include/conversation.php:1093 +#: ../../include/conversation.php:1090 #, php-format msgid ", and %d other people" msgid_plural ", and %d other people" msgstr[0] ", en %d ander persoon" msgstr[1] ", en %d andere personen" -#: ../../include/conversation.php:1094 +#: ../../include/conversation.php:1091 #, php-format msgid "%s like this." msgstr "%s vinden dit leuk." -#: ../../include/conversation.php:1094 +#: ../../include/conversation.php:1091 #, php-format msgid "%s don't like this." msgstr "%s vinden dit niet leuk." -#: ../../include/conversation.php:1133 +#: ../../include/conversation.php:1130 msgid "Set your location" msgstr "Locatie instellen" -#: ../../include/conversation.php:1134 +#: ../../include/conversation.php:1131 msgid "Clear browser location" msgstr "Locatie van webbrowser wissen" -#: ../../include/conversation.php:1182 +#: ../../include/conversation.php:1177 msgid "Tag term:" msgstr "Tag:" -#: ../../include/conversation.php:1183 +#: ../../include/conversation.php:1178 msgid "Where are you right now?" msgstr "Waar bevind je je op dit moment?" -#: ../../include/conversation.php:1221 +#: ../../include/conversation.php:1210 msgid "Page link name" msgstr "Linknaam pagina" -#: ../../include/conversation.php:1224 +#: ../../include/conversation.php:1213 msgid "Post as" msgstr "Bericht plaatsen als" -#: ../../include/conversation.php:1238 +#: ../../include/conversation.php:1223 msgid "Toggle voting" msgstr "Peiling in- of uitschakelen" -#: ../../include/conversation.php:1246 +#: ../../include/conversation.php:1231 msgid "Categories (optional, comma-separated list)" msgstr "Categorieën (optioneel, door komma's gescheiden lijst)" -#: ../../include/conversation.php:1269 +#: ../../include/conversation.php:1254 msgid "Set publish date" msgstr "Publicatiedatum instellen" -#: ../../include/conversation.php:1518 +#: ../../include/conversation.php:1258 +msgid "OK" +msgstr "OK" + +#: ../../include/conversation.php:1503 msgid "Discover" msgstr "Ontdekken" -#: ../../include/conversation.php:1521 +#: ../../include/conversation.php:1506 msgid "Imported public streams" msgstr "Openbare streams importeren" -#: ../../include/conversation.php:1526 +#: ../../include/conversation.php:1511 msgid "Commented Order" msgstr "Nieuwe reacties bovenaan" -#: ../../include/conversation.php:1529 +#: ../../include/conversation.php:1514 msgid "Sort by Comment Date" msgstr "Berichten met nieuwe reacties bovenaan" -#: ../../include/conversation.php:1533 +#: ../../include/conversation.php:1518 msgid "Posted Order" msgstr "Nieuwe berichten bovenaan" -#: ../../include/conversation.php:1536 +#: ../../include/conversation.php:1521 msgid "Sort by Post Date" msgstr "Nieuwe berichten bovenaan" -#: ../../include/conversation.php:1544 +#: ../../include/conversation.php:1529 msgid "Posts that mention or involve you" msgstr "Alleen berichten die jou vermelden of waar je op een andere manier bij betrokken bent" -#: ../../include/conversation.php:1553 +#: ../../include/conversation.php:1538 msgid "Activity Stream - by date" msgstr "Activiteitenstroom - volgens datum" -#: ../../include/conversation.php:1559 +#: ../../include/conversation.php:1544 msgid "Starred" msgstr "Met ster" -#: ../../include/conversation.php:1562 +#: ../../include/conversation.php:1547 msgid "Favourite Posts" msgstr "Favoriete berichten" -#: ../../include/conversation.php:1569 +#: ../../include/conversation.php:1554 msgid "Spam" msgstr "Spam" -#: ../../include/conversation.php:1572 +#: ../../include/conversation.php:1557 msgid "Posts flagged as SPAM" msgstr "Berichten gemarkeerd als SPAM" -#: ../../include/conversation.php:1629 +#: ../../include/conversation.php:1614 msgid "Status Messages and Posts" msgstr "Berichten in dit kanaal" -#: ../../include/conversation.php:1638 +#: ../../include/conversation.php:1623 msgid "About" msgstr "Over" -#: ../../include/conversation.php:1641 +#: ../../include/conversation.php:1626 msgid "Profile Details" msgstr "Profiel" -#: ../../include/conversation.php:1657 +#: ../../include/conversation.php:1635 ../../include/photos.php:502 +msgid "Photo Albums" +msgstr "Fotoalbums" + +#: ../../include/conversation.php:1642 msgid "Files and Storage" msgstr "Bestanden en opslagruimte" -#: ../../include/conversation.php:1677 ../../include/conversation.php:1680 -#: ../../include/widgets.php:836 -msgid "Chatrooms" -msgstr "Chatkanalen" - -#: ../../include/conversation.php:1693 +#: ../../include/conversation.php:1678 msgid "Saved Bookmarks" msgstr "Opgeslagen bladwijzers" -#: ../../include/conversation.php:1703 +#: ../../include/conversation.php:1688 msgid "Manage Webpages" msgstr "Webpagina's beheren" -#: ../../include/conversation.php:1768 +#: ../../include/conversation.php:1747 msgctxt "noun" msgid "Attending" msgid_plural "Attending" msgstr[0] "aanwezig" msgstr[1] "aanwezig" -#: ../../include/conversation.php:1771 +#: ../../include/conversation.php:1750 msgctxt "noun" msgid "Not Attending" msgid_plural "Not Attending" msgstr[0] "niet aanwezig" msgstr[1] "niet aanwezig" -#: ../../include/conversation.php:1774 +#: ../../include/conversation.php:1753 msgctxt "noun" msgid "Undecided" msgid_plural "Undecided" msgstr[0] "nog niet beslist" msgstr[1] "nog niet beslist" -#: ../../include/conversation.php:1777 +#: ../../include/conversation.php:1756 msgctxt "noun" msgid "Agree" msgid_plural "Agrees" msgstr[0] "eens" msgstr[1] "eens" -#: ../../include/conversation.php:1780 +#: ../../include/conversation.php:1759 msgctxt "noun" msgid "Disagree" msgid_plural "Disagrees" msgstr[0] "oneens" msgstr[1] "oneens" -#: ../../include/conversation.php:1783 +#: ../../include/conversation.php:1762 msgctxt "noun" msgid "Abstain" msgid_plural "Abstains" msgstr[0] "onthouding" msgstr[1] "onthoudingen" -#: ../../include/import.php:30 -msgid "" -"Cannot create a duplicate channel identifier on this system. Import failed." -msgstr "Kan geen dubbele kanaal-identificator op deze hub aanmaken. Importeren mislukt." - -#: ../../include/import.php:97 -msgid "Channel clone failed. Import failed." -msgstr "Het klonen van het kanaal is mislukt. Importeren mislukt." - #: ../../include/selectors.php:30 msgid "Frequently" msgstr "Regelmatig" @@ -7943,6 +8132,12 @@ msgstr "Genderneutraal" msgid "Non-specific" msgstr "Niet gespecificeerd" +#: ../../include/selectors.php:49 ../../include/selectors.php:66 +#: ../../include/selectors.php:104 ../../include/selectors.php:140 +#: ../../include/permissions.php:881 +msgid "Other" +msgstr "Anders" + #: ../../include/selectors.php:49 msgid "Undecided" msgstr "Nog niet beslist" @@ -8119,366 +8314,361 @@ msgstr "Maakt mij niks uit" msgid "Ask me" msgstr "Vraag het me" -#: ../../include/bookmarks.php:35 +#: ../../include/PermissionDescription.php:31 +#: ../../include/acl_selectors.php:232 +msgid "Visible to your default audience" +msgstr "Voor iedereen zichtbaar, mits niet anders ingesteld" + +#: ../../include/PermissionDescription.php:115 +#: ../../include/acl_selectors.php:268 +msgid "Only me" +msgstr "Alleen ik" + +#: ../../include/PermissionDescription.php:116 +msgid "Public" +msgstr "Openbaar" + +#: ../../include/PermissionDescription.php:117 +msgid "Anybody in the $Projectname network" +msgstr "Iedereen in het $Projectname-netwerk" + +#: ../../include/PermissionDescription.php:118 #, php-format -msgid "%1$s's bookmarks" -msgstr "Bladwijzers van %1$s" +msgid "Any account on %s" +msgstr "Iedereen op %s" -#: ../../include/security.php:109 -msgid "guest:" -msgstr "gast:" +#: ../../include/PermissionDescription.php:119 +msgid "Any of my connections" +msgstr "Al mijn geaccepteerde connecties" -#: ../../include/security.php:427 +#: ../../include/PermissionDescription.php:120 +msgid "Only connections I specifically allow" +msgstr "Alleen connecties die uitdrukkelijk door jou zijn toegestaan" + +#: ../../include/PermissionDescription.php:121 +msgid "Anybody authenticated (could include visitors from other networks)" +msgstr "Geauthenticeerde leden (kan bezoekers van andere netwerken bevatten)" + +#: ../../include/PermissionDescription.php:122 +msgid "Any connections including those who haven't yet been approved" +msgstr "Al mijn geaccepteerde en nog niet geaccepteerde connecties" + +#: ../../include/PermissionDescription.php:161 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 "De beveiligings-token van het tekstvak was ongeldig. Dit is mogelijk het gevolg van dat er te lang (meer dan 3 uur) gewacht is om de tekst op te slaan. " +"This is your default setting for the audience of your normal stream, and " +"posts." +msgstr "Dit is de standaard privacy-instelling voor wie jouw berichten kan bekijken" -#: ../../include/text.php:404 -msgid "prev" -msgstr "vorige" +#: ../../include/PermissionDescription.php:162 +msgid "" +"This is your default setting for who can view your default channel profile" +msgstr "Dit is de standaard privacy-instelling voor wie jouw standaardprofiel kan bekijken" -#: ../../include/text.php:406 -msgid "first" -msgstr "eerste" +#: ../../include/PermissionDescription.php:163 +msgid "This is your default setting for who can view your connections" +msgstr "Dit is de standaard privacy-instelling voor wie een lijst met jouw connecties kan bekijken" -#: ../../include/text.php:435 -msgid "last" -msgstr "laatste" +#: ../../include/PermissionDescription.php:164 +msgid "" +"This is your default setting for who can view your file storage and photos" +msgstr "Dit is de standaard privacy-instelling voor wie jouw bestanden en foto's kan bekijken" -#: ../../include/text.php:438 -msgid "next" -msgstr "volgende" +#: ../../include/PermissionDescription.php:165 +msgid "This is your default setting for the audience of your webpages" +msgstr "Dit is de standaard privacy-instelling voor wie jouw webpagina's kan bekijken" -#: ../../include/text.php:448 -msgid "older" -msgstr "ouder" +#: ../../include/account.php:28 +msgid "Not a valid email address" +msgstr "Geen geldig e-mailadres" -#: ../../include/text.php:450 -msgid "newer" -msgstr "nieuwer" +#: ../../include/account.php:30 +msgid "Your email domain is not among those allowed on this site" +msgstr "Jouw e-maildomein is op deze hub niet toegestaan" -#: ../../include/text.php:843 -msgid "No connections" -msgstr "Geen connecties" +#: ../../include/account.php:36 +msgid "Your email address is already registered at this site." +msgstr "Jouw e-mailadres is al op deze hub geregistreerd." -#: ../../include/text.php:868 +#: ../../include/account.php:68 +msgid "An invitation is required." +msgstr "Een uitnodiging is vereist" + +#: ../../include/account.php:72 +msgid "Invitation could not be verified." +msgstr "Uitnodiging kon niet geverifieerd worden" + +#: ../../include/account.php:122 +msgid "Please enter the required information." +msgstr "Vul de vereiste informatie in." + +#: ../../include/account.php:189 +msgid "Failed to store account information." +msgstr "Account-informatie kon niet opgeslagen worden." + +#: ../../include/account.php:249 #, php-format -msgid "View all %s connections" -msgstr "Toon alle %s connecties" +msgid "Registration confirmation for %s" +msgstr "Registratiebevestiging voor %s" + +#: ../../include/account.php:315 +#, php-format +msgid "Registration request at %s" +msgstr "Registratiebevestiging voor %s" + +#: ../../include/account.php:317 ../../include/account.php:344 +#: ../../include/account.php:404 ../../include/network.php:1871 +msgid "Administrator" +msgstr "Beheerder" + +#: ../../include/account.php:339 +msgid "your registration password" +msgstr "jouw registratiewachtwoord" + +#: ../../include/account.php:342 ../../include/account.php:402 +#, php-format +msgid "Registration details for %s" +msgstr "Registratiegegevens voor %s" + +#: ../../include/account.php:414 +msgid "Account approved." +msgstr "Account goedgekeurd" + +#: ../../include/account.php:454 +#, php-format +msgid "Registration revoked for %s" +msgstr "Registratie ingetrokken voor %s" + +#: ../../include/account.php:506 +msgid "Account verified. Please login." +msgstr "Account is geverifieerd. Je kan inloggen." + +#: ../../include/account.php:723 ../../include/account.php:725 +msgid "Click here to upgrade." +msgstr "Klik hier om te upgraden." + +#: ../../include/account.php:731 +msgid "This action exceeds the limits set by your subscription plan." +msgstr "Deze handeling overschrijdt de beperkingen die voor jouw abonnement gelden." + +#: ../../include/account.php:736 +msgid "This action is not available under your subscription plan." +msgstr "Deze handeling is niet mogelijk met jouw abonnement." + +#: ../../include/attach.php:247 ../../include/attach.php:333 +msgid "Item was not found." +msgstr "Item niet gevonden" + +#: ../../include/attach.php:497 +msgid "No source file." +msgstr "Geen bronbestand." + +#: ../../include/attach.php:519 +msgid "Cannot locate file to replace" +msgstr "Kan het te vervangen bestand niet vinden" + +#: ../../include/attach.php:537 +msgid "Cannot locate file to revise/update" +msgstr "Kan het bestand wat aangepast moet worden niet vinden" + +#: ../../include/attach.php:672 +#, php-format +msgid "File exceeds size limit of %d" +msgstr "Bestand is groter dan de toegelaten %d" + +#: ../../include/attach.php:686 +#, php-format +msgid "You have reached your limit of %1$.0f Mbytes attachment storage." +msgstr "Je hebt jouw limiet van %1$.0f MB opslagruimte voor bijlagen bereikt." + +#: ../../include/attach.php:842 +msgid "File upload failed. Possible system limit or action terminated." +msgstr "Uploaden van bestand mislukt. Mogelijk systeemlimiet bereikt of actie afgebroken." + +#: ../../include/attach.php:855 +msgid "Stored file could not be verified. Upload failed." +msgstr "Opgeslagen bestand kon niet worden geverifieerd. Uploaden mislukt." + +#: ../../include/attach.php:909 ../../include/attach.php:925 +msgid "Path not available." +msgstr "Pad niet beschikbaar." + +#: ../../include/attach.php:971 ../../include/attach.php:1123 +msgid "Empty pathname" +msgstr "Padnaam leeg" + +#: ../../include/attach.php:997 +msgid "duplicate filename or path" +msgstr "dubbele bestandsnaam of pad" + +#: ../../include/attach.php:1019 +msgid "Path not found." +msgstr "Pad niet gevonden" + +#: ../../include/attach.php:1077 +msgid "mkdir failed." +msgstr "directory aanmaken (mkdir) mislukt." + +#: ../../include/attach.php:1081 +msgid "database storage failed." +msgstr "opslag in database mislukt." + +#: ../../include/attach.php:1129 +msgid "Empty path" +msgstr "Ontbrekend bestandspad" + +#: ../../include/channel.php:32 +msgid "Unable to obtain identity information from database" +msgstr "Niet in staat om identiteitsinformatie uit de database te verkrijgen" -#: ../../include/text.php:1013 ../../include/text.php:1018 -msgid "poke" -msgstr "aanstoten" +#: ../../include/channel.php:66 +msgid "Empty name" +msgstr "Ontbrekende naam" -#: ../../include/text.php:1019 -msgid "ping" -msgstr "ping" +#: ../../include/channel.php:69 +msgid "Name too long" +msgstr "Naam te lang" -#: ../../include/text.php:1019 -msgid "pinged" -msgstr "gepingd" +#: ../../include/channel.php:180 +msgid "No account identifier" +msgstr "Geen account-identificator" -#: ../../include/text.php:1020 -msgid "prod" -msgstr "por" +#: ../../include/channel.php:192 +msgid "Nickname is required." +msgstr "Bijnaam is verplicht" -#: ../../include/text.php:1020 -msgid "prodded" -msgstr "gepord" +#: ../../include/channel.php:206 +msgid "Reserved nickname. Please choose another." +msgstr "Deze naam is gereserveerd. Kies een andere." -#: ../../include/text.php:1021 -msgid "slap" -msgstr "slaan" - -#: ../../include/text.php:1021 -msgid "slapped" -msgstr "sloeg" - -#: ../../include/text.php:1022 -msgid "finger" -msgstr "finger" - -#: ../../include/text.php:1022 -msgid "fingered" -msgstr "gefingerd" - -#: ../../include/text.php:1023 -msgid "rebuff" -msgstr "afpoeieren" - -#: ../../include/text.php:1023 -msgid "rebuffed" -msgstr "afgepoeierd" - -#: ../../include/text.php:1035 -msgid "happy" -msgstr "gelukkig" - -#: ../../include/text.php:1036 -msgid "sad" -msgstr "bedroefd" - -#: ../../include/text.php:1037 -msgid "mellow" -msgstr "mellow" - -#: ../../include/text.php:1038 -msgid "tired" -msgstr "moe" - -#: ../../include/text.php:1039 -msgid "perky" -msgstr "parmantig" - -#: ../../include/text.php:1040 -msgid "angry" -msgstr "boos" - -#: ../../include/text.php:1041 -msgid "stupefied" -msgstr "verbijsterd" - -#: ../../include/text.php:1042 -msgid "puzzled" -msgstr "verward" - -#: ../../include/text.php:1043 -msgid "interested" -msgstr "geïnteresseerd" - -#: ../../include/text.php:1044 -msgid "bitter" -msgstr "verbitterd" - -#: ../../include/text.php:1045 -msgid "cheerful" -msgstr "vrolijk" - -#: ../../include/text.php:1046 -msgid "alive" -msgstr "levendig" - -#: ../../include/text.php:1047 -msgid "annoyed" -msgstr "geërgerd" - -#: ../../include/text.php:1048 -msgid "anxious" -msgstr "bezorgd" - -#: ../../include/text.php:1049 -msgid "cranky" -msgstr "humeurig" - -#: ../../include/text.php:1050 -msgid "disturbed" -msgstr "verontrust" - -#: ../../include/text.php:1051 -msgid "frustrated" -msgstr "gefrustreerd " - -#: ../../include/text.php:1052 -msgid "depressed" -msgstr "gedeprimeerd" - -#: ../../include/text.php:1053 -msgid "motivated" -msgstr "gemotiveerd" - -#: ../../include/text.php:1054 -msgid "relaxed" -msgstr "ontspannen" - -#: ../../include/text.php:1055 -msgid "surprised" -msgstr "verrast" - -#: ../../include/text.php:1237 ../../include/js_strings.php:70 -msgid "Monday" -msgstr "maandag" - -#: ../../include/text.php:1237 ../../include/js_strings.php:71 -msgid "Tuesday" -msgstr "dinsdag" - -#: ../../include/text.php:1237 ../../include/js_strings.php:72 -msgid "Wednesday" -msgstr "woensdag" - -#: ../../include/text.php:1237 ../../include/js_strings.php:73 -msgid "Thursday" -msgstr "donderdag" - -#: ../../include/text.php:1237 ../../include/js_strings.php:74 -msgid "Friday" -msgstr "vrijdag" - -#: ../../include/text.php:1237 ../../include/js_strings.php:75 -msgid "Saturday" -msgstr "zaterdag" - -#: ../../include/text.php:1237 ../../include/js_strings.php:69 -msgid "Sunday" -msgstr "zondag" - -#: ../../include/text.php:1241 ../../include/js_strings.php:45 -msgid "January" -msgstr "januari" - -#: ../../include/text.php:1241 ../../include/js_strings.php:46 -msgid "February" -msgstr "februari" - -#: ../../include/text.php:1241 ../../include/js_strings.php:47 -msgid "March" -msgstr "maart" - -#: ../../include/text.php:1241 ../../include/js_strings.php:48 -msgid "April" -msgstr "april" - -#: ../../include/text.php:1241 -msgid "May" -msgstr "mei" - -#: ../../include/text.php:1241 ../../include/js_strings.php:50 -msgid "June" -msgstr "juni" - -#: ../../include/text.php:1241 ../../include/js_strings.php:51 -msgid "July" -msgstr "juli" - -#: ../../include/text.php:1241 ../../include/js_strings.php:52 -msgid "August" -msgstr "augustus" - -#: ../../include/text.php:1241 ../../include/js_strings.php:53 -msgid "September" -msgstr "september" - -#: ../../include/text.php:1241 ../../include/js_strings.php:54 -msgid "October" -msgstr "oktober" - -#: ../../include/text.php:1241 ../../include/js_strings.php:55 -msgid "November" -msgstr "november" - -#: ../../include/text.php:1241 ../../include/js_strings.php:56 -msgid "December" -msgstr "december" - -#: ../../include/text.php:1318 ../../include/text.php:1322 -msgid "Unknown Attachment" -msgstr "Onbekende bijlage" - -#: ../../include/text.php:1324 -msgid "unknown" -msgstr "onbekend" - -#: ../../include/text.php:1360 -msgid "remove category" -msgstr "categorie verwijderen" - -#: ../../include/text.php:1437 -msgid "remove from file" -msgstr "uit map verwijderen" - -#: ../../include/text.php:1734 ../../include/text.php:1805 -msgid "default" -msgstr "standaard" - -#: ../../include/text.php:1742 -msgid "Page layout" -msgstr "Pagina-lay-out" - -#: ../../include/text.php:1742 -msgid "You can create your own with the layouts tool" -msgstr "Je kan jouw eigen lay-out ontwerpen onder lay-outs" - -#: ../../include/text.php:1784 -msgid "Page content type" -msgstr "Opmaaktype pagina" - -#: ../../include/text.php:1817 -msgid "Select an alternate language" -msgstr "Kies een andere taal" - -#: ../../include/text.php:1934 -msgid "activity" -msgstr "activiteit" - -#: ../../include/text.php:2235 -msgid "Design Tools" -msgstr "Ontwerp-hulpmiddelen" - -#: ../../include/text.php:2241 -msgid "Pages" -msgstr "Pagina's" - -#: ../../include/auth.php:147 -msgid "Logged out." -msgstr "Uitgelogd." - -#: ../../include/auth.php:274 -msgid "Failed authentication" -msgstr "Mislukte authenticatie" - -#: ../../include/permissions.php:26 -msgid "Can view my normal stream and posts" -msgstr "Kan mijn normale kanaalstream en berichten bekijken" - -#: ../../include/permissions.php:30 -msgid "Can view my webpages" -msgstr "Kan mijn pagina's bekijken" - -#: ../../include/permissions.php:34 -msgid "Can post on my channel page (\"wall\")" -msgstr "Kan een bericht in mijn kanaal plaatsen" - -#: ../../include/permissions.php:37 -msgid "Can like/dislike stuff" -msgstr "Kan dingen leuk of niet leuk vinden" - -#: ../../include/permissions.php:37 -msgid "Profiles and things other than posts/comments" -msgstr "Profielen en dingen, buiten berichten en reacties" - -#: ../../include/permissions.php:39 -msgid "Can forward to all my channel contacts via post @mentions" -msgstr "Kan naar al mijn kanaalconnecties berichten doorsturen met behulp van @vermeldingen+" - -#: ../../include/permissions.php:39 -msgid "Advanced - useful for creating group forum channels" -msgstr "Geavanceerd - nuttig voor groepforums" - -#: ../../include/permissions.php:40 -msgid "Can chat with me (when available)" -msgstr "Kan met mij chatten (wanneer beschikbaar)" - -#: ../../include/permissions.php:41 -msgid "Can write to my file storage and photos" -msgstr "Kan foto's en andere bestanden aan mijn bestandsopslag toevoegen" - -#: ../../include/permissions.php:42 -msgid "Can edit my webpages" -msgstr "Kan mijn pagina's bewerken" - -#: ../../include/permissions.php:44 -msgid "Somewhat advanced - very useful in open communities" -msgstr "Enigszins geavanceerd (erg nuttig voor kanalen van forums/groepen)" - -#: ../../include/permissions.php:46 -msgid "Can administer my channel resources" -msgstr "Kan mijn kanaal beheren" - -#: ../../include/permissions.php:46 +#: ../../include/channel.php:211 msgid "" -"Extremely advanced. Leave this alone unless you know what you are doing" -msgstr "Zeer geavanceerd. Laat dit met rust, behalve als je weet wat je doet." +"Nickname has unsupported characters or is already being used on this site." +msgstr "Deze naam heeft niet ondersteunde karakters of is al op deze hub in gebruik." + +#: ../../include/channel.php:287 +msgid "Unable to retrieve created identity" +msgstr "Niet in staat om aangemaakte identiteit te vinden" + +#: ../../include/channel.php:345 +msgid "Default Profile" +msgstr "Standaardprofiel" + +#: ../../include/channel.php:791 +msgid "Requested channel is not available." +msgstr "Opgevraagd kanaal is niet beschikbaar." + +#: ../../include/channel.php:938 +msgid "Create New Profile" +msgstr "Nieuw profiel aanmaken" + +#: ../../include/channel.php:958 +msgid "Visible to everybody" +msgstr "Voor iedereen zichtbaar" + +#: ../../include/channel.php:1031 ../../include/channel.php:1142 +msgid "Gender:" +msgstr "Geslacht:" + +#: ../../include/channel.php:1032 ../../include/channel.php:1186 +msgid "Status:" +msgstr "Status:" + +#: ../../include/channel.php:1033 ../../include/channel.php:1197 +msgid "Homepage:" +msgstr "Homepagina:" + +#: ../../include/channel.php:1034 +msgid "Online Now" +msgstr "Nu online" + +#: ../../include/channel.php:1147 +msgid "Like this channel" +msgstr "Vind dit kanaal leuk" + +#: ../../include/channel.php:1171 +msgid "j F, Y" +msgstr "F j Y" + +#: ../../include/channel.php:1172 +msgid "j F" +msgstr "F j" + +#: ../../include/channel.php:1179 +msgid "Birthday:" +msgstr "Geboortedatum:" + +#: ../../include/channel.php:1192 +#, php-format +msgid "for %1$d %2$s" +msgstr "voor %1$d %2$s" + +#: ../../include/channel.php:1195 +msgid "Sexual Preference:" +msgstr "Seksuele voorkeur:" + +#: ../../include/channel.php:1201 +msgid "Tags:" +msgstr "Tags:" + +#: ../../include/channel.php:1203 +msgid "Political Views:" +msgstr "Politieke overtuigingen:" + +#: ../../include/channel.php:1205 +msgid "Religion:" +msgstr "Religie:" + +#: ../../include/channel.php:1209 +msgid "Hobbies/Interests:" +msgstr "Hobby's/interesses:" + +#: ../../include/channel.php:1211 +msgid "Likes:" +msgstr "Houdt van:" + +#: ../../include/channel.php:1213 +msgid "Dislikes:" +msgstr "Houdt niet van:" + +#: ../../include/channel.php:1215 +msgid "Contact information and Social Networks:" +msgstr "Contactinformatie en sociale netwerken:" + +#: ../../include/channel.php:1217 +msgid "My other channels:" +msgstr "Mijn andere kanalen" + +#: ../../include/channel.php:1219 +msgid "Musical interests:" +msgstr "Muzikale interesses:" + +#: ../../include/channel.php:1221 +msgid "Books, literature:" +msgstr "Boeken, literatuur:" + +#: ../../include/channel.php:1223 +msgid "Television:" +msgstr "Televisie:" + +#: ../../include/channel.php:1225 +msgid "Film/dance/culture/entertainment:" +msgstr "Films/dansen/cultuur/vermaak:" + +#: ../../include/channel.php:1227 +msgid "Love/Romance:" +msgstr "Liefde/romantiek:" + +#: ../../include/channel.php:1229 +msgid "Work/employment:" +msgstr "Werk/beroep:" + +#: ../../include/channel.php:1231 +msgid "School/education:" +msgstr "School/opleiding:" + +#: ../../include/channel.php:1251 +msgid "Like this thing" +msgstr "Vind dit ding leuk" #: ../../include/features.php:48 msgid "General Features" @@ -8525,257 +8715,378 @@ msgid "Provide managed web pages on your channel" msgstr "Sta beheerde webpagina's op jouw kanaal toe" #: ../../include/features.php:55 -msgid "Provide a wiki for your channel" -msgstr "Voeg een wiki aan jouw kanaal toe" - -#: ../../include/features.php:56 msgid "Hide Rating" msgstr "Beoordelingen verbergen" -#: ../../include/features.php:56 +#: ../../include/features.php:55 msgid "" "Hide the rating buttons on your channel and profile pages. Note: People can " "still rate you somewhere else." msgstr "Verbergt de beoordelingsknoppen op jouw kanaal- en profielpagina's. Let op: Mensen kunnen jou nog steeds ergens anders beoordelen. " -#: ../../include/features.php:57 +#: ../../include/features.php:56 msgid "Private Notes" msgstr "Privé-aantekeningen" -#: ../../include/features.php:57 +#: ../../include/features.php:56 msgid "Enables a tool to store notes and reminders (note: not encrypted)" msgstr "Een eenvoudige toepassing om aantekeningen en herinneringen in te bewaren (let op: niet versleuteld)" -#: ../../include/features.php:58 +#: ../../include/features.php:57 msgid "Navigation Channel Select" msgstr "Kanaal kiezen in navigatiemenu" -#: ../../include/features.php:58 +#: ../../include/features.php:57 msgid "Change channels directly from within the navigation dropdown menu" msgstr "Kies een ander kanaal direct vanuit het dropdown-menu op de navigatiebalk" -#: ../../include/features.php:59 +#: ../../include/features.php:58 msgid "Photo Location" msgstr "Fotolocatie" -#: ../../include/features.php:59 +#: ../../include/features.php:58 msgid "If location data is available on uploaded photos, link this to a map." msgstr "Wanneer in de geüploade foto's locatiegegevens aanwezig zijn, link dit dan aan een kaart." -#: ../../include/features.php:60 +#: ../../include/features.php:59 msgid "Access Controlled Chatrooms" msgstr "Chatkanalen met toegangscontrole " -#: ../../include/features.php:60 +#: ../../include/features.php:59 msgid "Provide chatrooms and chat services with access control." msgstr "Chatkanalen en chatdiensten met toegangscontrole aanbieden." -#: ../../include/features.php:61 +#: ../../include/features.php:60 msgid "Smart Birthdays" msgstr "Slimme verjaardagen" -#: ../../include/features.php:61 +#: ../../include/features.php:60 msgid "" "Make birthday events timezone aware in case your friends are scattered " "across the planet." msgstr "Maak verjaardagen bewust van tijdzones. Voor het geval dat jouw vrienden over de hele wereld verspreid zijn." -#: ../../include/features.php:62 +#: ../../include/features.php:61 msgid "Expert Mode" msgstr "Expertmodus" -#: ../../include/features.php:62 +#: ../../include/features.php:61 msgid "Enable Expert Mode to provide advanced configuration options" msgstr "Schakel de expertmodus in voor geavanceerde instellingen" -#: ../../include/features.php:63 +#: ../../include/features.php:62 msgid "Premium Channel" msgstr "Premiumkanaal" -#: ../../include/features.php:63 +#: ../../include/features.php:62 msgid "" "Allows you to set restrictions and terms on those that connect with your " "channel" msgstr "Stelt je in staat om beperkingen en voorwaarden in te stellen voor jouw kanaal" -#: ../../include/features.php:68 +#: ../../include/features.php:67 msgid "Post Composition Features" msgstr "Functies voor het opstellen van berichten" -#: ../../include/features.php:71 +#: ../../include/features.php:70 msgid "Large Photos" msgstr "Grote foto's" -#: ../../include/features.php:71 +#: ../../include/features.php:70 msgid "" "Include large (1024px) photo thumbnails in posts. If not enabled, use small " "(640px) photo thumbnails" msgstr "Gebruik grotere foto's (1024px) in berichten. Wanneer dit is uitgeschakeld worden er kleinere foto's (640px) gebruikt." -#: ../../include/features.php:72 +#: ../../include/features.php:71 msgid "Automatically import channel content from other channels or feeds" msgstr "Automatisch inhoud uit andere kanalen of feeds importeren." -#: ../../include/features.php:73 +#: ../../include/features.php:72 msgid "Even More Encryption" msgstr "Extra encryptie" -#: ../../include/features.php:73 +#: ../../include/features.php:72 msgid "" "Allow optional encryption of content end-to-end with a shared secret key" msgstr "Sta toe dat inhoud extra end-to-end wordt versleuteld met een gedeelde geheime sleutel." -#: ../../include/features.php:74 +#: ../../include/features.php:73 msgid "Enable Voting Tools" msgstr "Peilingen inschakelen" -#: ../../include/features.php:74 +#: ../../include/features.php:73 msgid "Provide a class of post which others can vote on" msgstr "Maakt het mogelijk om een bericht op te stellen, waar mensen op kunnen stemmen." -#: ../../include/features.php:75 +#: ../../include/features.php:74 msgid "Delayed Posting" msgstr "Berichten uitstellen" -#: ../../include/features.php:75 +#: ../../include/features.php:74 msgid "Allow posts to be published at a later date" msgstr "Maakt het mogelijk dat berichten op een toekomstig moment gepubliceerd kunnen worden." -#: ../../include/features.php:76 +#: ../../include/features.php:75 msgid "Suppress Duplicate Posts/Comments" msgstr "Dubbele berichten/reacties tegenhouden" -#: ../../include/features.php:76 +#: ../../include/features.php:75 msgid "" "Prevent posts with identical content to be published with less than two " "minutes in between submissions." msgstr "Voorkomt dat berichten en reacties met identieke inhoud en die binnen twee minuten zijn verstuurd, worden gepubliceerd. " -#: ../../include/features.php:82 +#: ../../include/features.php:81 msgid "Network and Stream Filtering" msgstr "Netwerk- en streamfilter" -#: ../../include/features.php:83 +#: ../../include/features.php:82 msgid "Search by Date" msgstr "Zoek op datum" -#: ../../include/features.php:83 +#: ../../include/features.php:82 msgid "Ability to select posts by date ranges" msgstr "Mogelijkheid om berichten op datum te filteren " -#: ../../include/features.php:84 ../../include/group.php:311 +#: ../../include/features.php:83 ../../include/group.php:311 msgid "Privacy Groups" msgstr "Privacygroepen" -#: ../../include/features.php:84 +#: ../../include/features.php:83 msgid "Enable management and selection of privacy groups" msgstr "Beheer en selectie van privacygroepen inschakelen" -#: ../../include/features.php:85 ../../include/widgets.php:281 -msgid "Saved Searches" -msgstr "Opgeslagen zoekopdrachten" - -#: ../../include/features.php:85 +#: ../../include/features.php:84 msgid "Save search terms for re-use" msgstr "Sla zoekopdrachten op voor hergebruik" -#: ../../include/features.php:86 +#: ../../include/features.php:85 msgid "Network Personal Tab" msgstr "Persoonlijke netwerktab" -#: ../../include/features.php:86 +#: ../../include/features.php:85 msgid "Enable tab to display only Network posts that you've interacted on" msgstr "Sta het toe dat de tab netwerkberichten toont waarmee je interactie had" -#: ../../include/features.php:87 +#: ../../include/features.php:86 msgid "Network New Tab" msgstr "Nieuwe netwerktab" -#: ../../include/features.php:87 +#: ../../include/features.php:86 msgid "Enable tab to display all new Network activity" msgstr "Laat de tab alle nieuwe netwerkactiviteit tonen" -#: ../../include/features.php:88 +#: ../../include/features.php:87 msgid "Affinity Tool" msgstr "Verwantschapsfilter" -#: ../../include/features.php:88 +#: ../../include/features.php:87 msgid "Filter stream activity by depth of relationships" msgstr "Filter wat je in jouw grid ziet op hoe goed je iemand kent of mag" -#: ../../include/features.php:89 +#: ../../include/features.php:88 msgid "Connection Filtering" msgstr "Berichtenfilters" -#: ../../include/features.php:89 +#: ../../include/features.php:88 msgid "Filter incoming posts from connections based on keywords/content" msgstr "Filter binnenkomende berichten van connecties aan de hand van trefwoorden en taal" -#: ../../include/features.php:90 +#: ../../include/features.php:89 msgid "Show channel suggestions" msgstr "Voor jou mogelijk interessante kanalen voorstellen" -#: ../../include/features.php:95 +#: ../../include/features.php:94 msgid "Post/Comment Tools" msgstr "Bericht- en reactiehulpmiddelen" -#: ../../include/features.php:96 +#: ../../include/features.php:95 msgid "Community Tagging" msgstr "Taggen door anderen" -#: ../../include/features.php:96 +#: ../../include/features.php:95 msgid "Ability to tag existing posts" msgstr "Geeft andere mensen de mogelijkheid om jouw (bestaande) berichten te taggen" -#: ../../include/features.php:97 +#: ../../include/features.php:96 msgid "Post Categories" msgstr "Categorieën berichten" -#: ../../include/features.php:97 +#: ../../include/features.php:96 msgid "Add categories to your posts" msgstr "Voeg categorieën toe aan je berichten" -#: ../../include/features.php:98 +#: ../../include/features.php:97 msgid "Emoji Reactions" msgstr "Emoji-reacties" -#: ../../include/features.php:98 +#: ../../include/features.php:97 msgid "Add emoji reaction ability to posts" msgstr "Emoji-reacties in berichten toestaan" -#: ../../include/features.php:99 ../../include/widgets.php:310 -#: ../../include/contact_widgets.php:53 -msgid "Saved Folders" -msgstr "Bewaarde mappen" - -#: ../../include/features.php:99 +#: ../../include/features.php:98 msgid "Ability to file posts under folders" msgstr "Mogelijkheid om berichten in mappen op te slaan" -#: ../../include/features.php:100 +#: ../../include/features.php:99 msgid "Dislike Posts" msgstr "Vind berichten niet leuk" -#: ../../include/features.php:100 +#: ../../include/features.php:99 msgid "Ability to dislike posts/comments" msgstr "Mogelijkheid om berichten en reacties niet leuk te vinden" -#: ../../include/features.php:101 +#: ../../include/features.php:100 msgid "Star Posts" msgstr "Geef berichten een ster" -#: ../../include/features.php:101 +#: ../../include/features.php:100 msgid "Ability to mark special posts with a star indicator" msgstr "Mogelijkheid om speciale berichten met een ster te markeren" -#: ../../include/features.php:102 +#: ../../include/features.php:101 msgid "Tag Cloud" msgstr "Tagwolk" -#: ../../include/features.php:102 +#: ../../include/features.php:101 msgid "Provide a personal tag cloud on your channel page" msgstr "Zorgt voor een persoonlijke wolk met tags op jouw kanaalpagina" +#: ../../include/oembed.php:324 +msgid "Embedded content" +msgstr "Ingesloten (embedded) inhoud" + +#: ../../include/oembed.php:333 +msgid "Embedding disabled" +msgstr "Insluiten (embedding) uitgeschakeld" + +#: ../../include/acl_selectors.php:271 +msgid "Who can see this?" +msgstr "Wie kan dit zien?" + +#: ../../include/acl_selectors.php:272 +msgid "Custom selection" +msgstr "Handmatige selectie" + +#: ../../include/acl_selectors.php:273 +msgid "" +"Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit" +" the scope of \"Show\"." +msgstr "Kies \"Tonen\" om weergave toe te staan. Met \"Niet tonen\" kan je uitzonderingen maken op \"Tonen\"." + +#: ../../include/acl_selectors.php:274 +msgid "Show" +msgstr "Tonen" + +#: ../../include/acl_selectors.php:275 +msgid "Don't show" +msgstr "Niet tonen" + +#: ../../include/acl_selectors.php:281 +msgid "Other networks and post services" +msgstr "Andere netwerken en diensten" + +#: ../../include/acl_selectors.php:311 +#, php-format +msgid "" +"Post permissions %s cannot be changed %s after a post is shared.
These" +" permissions set who is allowed to view the post." +msgstr "Permissies van berichten %s zijn niet meer te veranderen %s nadat een bericht is gedeeld.
Met deze permissies bepaal je wie het bericht kan zien." + +#: ../../include/auth.php:105 +msgid "Logged out." +msgstr "Uitgelogd." + +#: ../../include/auth.php:212 +msgid "Failed authentication" +msgstr "Mislukte authenticatie" + +#: ../../include/datetime.php:135 +msgid "Birthday" +msgstr "Verjaardag of geboortedatum" + +#: ../../include/datetime.php:137 +msgid "Age: " +msgstr "Leeftijd:" + +#: ../../include/datetime.php:139 +msgid "YYYY-MM-DD or MM-DD" +msgstr "JJJJ-MM-DD of MM-DD" + +#: ../../include/datetime.php:272 ../../boot.php:2470 +msgid "never" +msgstr "nooit" + +#: ../../include/datetime.php:278 +msgid "less than a second ago" +msgstr "minder dan een seconde geleden" + +#: ../../include/datetime.php:296 +#, php-format +msgctxt "e.g. 22 hours ago, 1 minute ago" +msgid "%1$d %2$s ago" +msgstr "%1$d %2$s geleden" + +#: ../../include/datetime.php:307 +msgctxt "relative_date" +msgid "year" +msgid_plural "years" +msgstr[0] "jaar" +msgstr[1] "jaren" + +#: ../../include/datetime.php:310 +msgctxt "relative_date" +msgid "month" +msgid_plural "months" +msgstr[0] "maand" +msgstr[1] "maanden" + +#: ../../include/datetime.php:313 +msgctxt "relative_date" +msgid "week" +msgid_plural "weeks" +msgstr[0] "week" +msgstr[1] "weken" + +#: ../../include/datetime.php:316 +msgctxt "relative_date" +msgid "day" +msgid_plural "days" +msgstr[0] "dag" +msgstr[1] "dagen" + +#: ../../include/datetime.php:319 +msgctxt "relative_date" +msgid "hour" +msgid_plural "hours" +msgstr[0] "uur" +msgstr[1] "uren" + +#: ../../include/datetime.php:322 +msgctxt "relative_date" +msgid "minute" +msgid_plural "minutes" +msgstr[0] "minuut" +msgstr[1] "minuten" + +#: ../../include/datetime.php:325 +msgctxt "relative_date" +msgid "second" +msgid_plural "seconds" +msgstr[0] "seconde" +msgstr[1] "seconden" + +#: ../../include/datetime.php:562 +#, php-format +msgid "%1$s's birthday" +msgstr "Verjaardag van %1$s" + +#: ../../include/datetime.php:563 +#, php-format +msgid "Happy Birthday %1$s" +msgstr "Gefeliciteerd met je verjaardag %1$s" + #: ../../include/group.php:26 msgid "" "A deleted group with this name was revived. Existing item permissions " @@ -8803,583 +9114,21 @@ msgstr "Privacygroep toevoegen" msgid "Channels not in any privacy group" msgstr "Kanalen die zich in geen enkele privacygroep bevinden" -#: ../../include/group.php:316 ../../include/widgets.php:282 -msgid "add" -msgstr "toevoegen" - -#: ../../include/event.php:22 ../../include/event.php:69 -#: ../../include/bb2diaspora.php:485 -msgid "l F d, Y \\@ g:i A" -msgstr "l d F Y \\@ G:i" - -#: ../../include/event.php:30 ../../include/event.php:73 -#: ../../include/bb2diaspora.php:491 -msgid "Starts:" -msgstr "Start:" - -#: ../../include/event.php:40 ../../include/event.php:77 -#: ../../include/bb2diaspora.php:499 -msgid "Finishes:" -msgstr "Einde:" - -#: ../../include/event.php:814 -msgid "This event has been added to your calendar." -msgstr "Dit evenement is aan jouw agenda toegevoegd." - -#: ../../include/event.php:1014 -msgid "Not specified" -msgstr "Niet aangegeven" - -#: ../../include/event.php:1015 -msgid "Needs Action" -msgstr "Actie vereist" - -#: ../../include/event.php:1016 -msgid "Completed" -msgstr "Voltooid" - -#: ../../include/event.php:1017 -msgid "In Process" -msgstr "In behandeling" - -#: ../../include/event.php:1018 -msgid "Cancelled" -msgstr "Geannuleerd" - -#: ../../include/account.php:28 -msgid "Not a valid email address" -msgstr "Geen geldig e-mailadres" - -#: ../../include/account.php:30 -msgid "Your email domain is not among those allowed on this site" -msgstr "Jouw e-maildomein is op deze hub niet toegestaan" - -#: ../../include/account.php:36 -msgid "Your email address is already registered at this site." -msgstr "Jouw e-mailadres is al op deze hub geregistreerd." - -#: ../../include/account.php:68 -msgid "An invitation is required." -msgstr "Een uitnodiging is vereist" - -#: ../../include/account.php:72 -msgid "Invitation could not be verified." -msgstr "Uitnodiging kon niet geverifieerd worden" - -#: ../../include/account.php:122 -msgid "Please enter the required information." -msgstr "Vul de vereiste informatie in." - -#: ../../include/account.php:189 -msgid "Failed to store account information." -msgstr "Account-informatie kon niet opgeslagen worden." - -#: ../../include/account.php:249 -#, php-format -msgid "Registration confirmation for %s" -msgstr "Registratiebevestiging voor %s" - -#: ../../include/account.php:315 -#, php-format -msgid "Registration request at %s" -msgstr "Registratiebevestiging voor %s" - -#: ../../include/account.php:339 -msgid "your registration password" -msgstr "jouw registratiewachtwoord" - -#: ../../include/account.php:342 ../../include/account.php:402 -#, php-format -msgid "Registration details for %s" -msgstr "Registratiegegevens voor %s" - -#: ../../include/account.php:414 -msgid "Account approved." -msgstr "Account goedgekeurd" - -#: ../../include/account.php:454 -#, php-format -msgid "Registration revoked for %s" -msgstr "Registratie ingetrokken voor %s" - -#: ../../include/account.php:739 ../../include/account.php:741 -msgid "Click here to upgrade." -msgstr "Klik hier om te upgraden." - -#: ../../include/account.php:747 -msgid "This action exceeds the limits set by your subscription plan." -msgstr "Deze handeling overschrijdt de beperkingen die voor jouw abonnement gelden." - -#: ../../include/account.php:752 -msgid "This action is not available under your subscription plan." -msgstr "Deze handeling is niet mogelijk met jouw abonnement." - -#: ../../include/follow.php:27 -msgid "Channel is blocked on this site." -msgstr "Kanaal is op deze hub geblokkeerd." - -#: ../../include/follow.php:32 -msgid "Channel location missing." -msgstr "Ontbrekende kanaallocatie." - -#: ../../include/follow.php:80 -msgid "Response from remote channel was incomplete." -msgstr "Antwoord van het kanaal op afstand was niet volledig." - -#: ../../include/follow.php:97 -msgid "Channel was deleted and no longer exists." -msgstr "Kanaal is verwijderd en bestaat niet meer." - -#: ../../include/follow.php:147 ../../include/follow.php:183 -msgid "Protocol disabled." -msgstr "Protocol uitgeschakeld." - -#: ../../include/follow.php:171 -msgid "Channel discovery failed." -msgstr "Kanaal ontdekken mislukt." - -#: ../../include/follow.php:210 -msgid "Cannot connect to yourself." -msgstr "Kan niet met jezelf verbinden" - -#: ../../include/attach.php:247 ../../include/attach.php:333 -msgid "Item was not found." -msgstr "Item niet gevonden" - -#: ../../include/attach.php:499 -msgid "No source file." -msgstr "Geen bronbestand." - -#: ../../include/attach.php:521 -msgid "Cannot locate file to replace" -msgstr "Kan het te vervangen bestand niet vinden" - -#: ../../include/attach.php:539 -msgid "Cannot locate file to revise/update" -msgstr "Kan het bestand wat aangepast moet worden niet vinden" - -#: ../../include/attach.php:674 -#, php-format -msgid "File exceeds size limit of %d" -msgstr "Bestand is groter dan de toegelaten %d" - -#: ../../include/attach.php:688 -#, php-format -msgid "You have reached your limit of %1$.0f Mbytes attachment storage." -msgstr "Je hebt jouw limiet van %1$.0f MB opslagruimte voor bijlagen bereikt." - -#: ../../include/attach.php:846 -msgid "File upload failed. Possible system limit or action terminated." -msgstr "Uploaden van bestand mislukt. Mogelijk systeemlimiet bereikt of actie afgebroken." - -#: ../../include/attach.php:859 -msgid "Stored file could not be verified. Upload failed." -msgstr "Opgeslagen bestand kon niet worden geverifieerd. Uploaden mislukt." - -#: ../../include/attach.php:915 ../../include/attach.php:931 -msgid "Path not available." -msgstr "Pad niet beschikbaar." - -#: ../../include/attach.php:977 ../../include/attach.php:1129 -msgid "Empty pathname" -msgstr "Padnaam leeg" - -#: ../../include/attach.php:1003 -msgid "duplicate filename or path" -msgstr "dubbele bestandsnaam of pad" - -#: ../../include/attach.php:1025 -msgid "Path not found." -msgstr "Pad niet gevonden" - -#: ../../include/attach.php:1083 -msgid "mkdir failed." -msgstr "directory aanmaken (mkdir) mislukt." - -#: ../../include/attach.php:1087 -msgid "database storage failed." -msgstr "opslag in database mislukt." - -#: ../../include/attach.php:1135 -msgid "Empty path" -msgstr "Ontbrekend bestandspad" - -#: ../../include/bbcode.php:123 ../../include/bbcode.php:878 -#: ../../include/bbcode.php:881 ../../include/bbcode.php:886 -#: ../../include/bbcode.php:889 ../../include/bbcode.php:892 -#: ../../include/bbcode.php:895 ../../include/bbcode.php:900 -#: ../../include/bbcode.php:903 ../../include/bbcode.php:908 -#: ../../include/bbcode.php:911 ../../include/bbcode.php:914 -#: ../../include/bbcode.php:917 -msgid "Image/photo" -msgstr "Afbeelding/foto" - -#: ../../include/bbcode.php:162 ../../include/bbcode.php:928 -msgid "Encrypted content" -msgstr "Versleutelde inhoud" - -#: ../../include/bbcode.php:178 -#, php-format -msgid "Install %s element: " -msgstr "Installeer %s-element: " - -#: ../../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 "Dit bericht heeft een te installeren %s-element, maar je hebt geen permissies om het op deze hub te installeren." - -#: ../../include/bbcode.php:261 -#, php-format -msgid "%1$s wrote the following %2$s %3$s" -msgstr "%1$s schreef het volgende %2$s %3$s" - -#: ../../include/bbcode.php:338 ../../include/bbcode.php:346 -msgid "Click to open/close" -msgstr "Klik om te openen of te sluiten" - -#: ../../include/bbcode.php:346 -msgid "spoiler" -msgstr "spoiler" - -#: ../../include/bbcode.php:619 -msgid "Different viewers will see this text differently" -msgstr "Deze tekst wordt per persoon anders weergeven." - -#: ../../include/bbcode.php:866 -msgid "$1 wrote:" -msgstr "$1 schreef:" - -#: ../../include/items.php:897 ../../include/items.php:942 -msgid "(Unknown)" -msgstr "(Onbekend)" - -#: ../../include/items.php:1141 -msgid "Visible to anybody on the internet." -msgstr "Voor iedereen op het internet zichtbaar." - -#: ../../include/items.php:1143 -msgid "Visible to you only." -msgstr "Alleen voor jou zichtbaar." - -#: ../../include/items.php:1145 -msgid "Visible to anybody in this network." -msgstr "Voor iedereen in dit netwerk zichtbaar." - -#: ../../include/items.php:1147 -msgid "Visible to anybody authenticated." -msgstr "Voor iedereen die geauthenticeerd is zichtbaar." - -#: ../../include/items.php:1149 -#, php-format -msgid "Visible to anybody on %s." -msgstr "Voor iedereen op %s zichtbaar." - -#: ../../include/items.php:1151 -msgid "Visible to all connections." -msgstr "Voor alle connecties zichtbaar." - -#: ../../include/items.php:1153 -msgid "Visible to approved connections." -msgstr "Voor alle geaccepteerde connecties zichtbaar." - -#: ../../include/items.php:1155 -msgid "Visible to specific connections." -msgstr "Voor specifieke connecties zichtbaar." - -#: ../../include/items.php:3918 -msgid "Privacy group is empty." -msgstr "Privacygroep is leeg" - -#: ../../include/items.php:3925 -#, php-format -msgid "Privacy group: %s" -msgstr "Privacygroep: %s" - -#: ../../include/items.php:3937 -msgid "Connection not found." -msgstr "Connectie niet gevonden." - -#: ../../include/items.php:4290 -msgid "profile photo" -msgstr "profielfoto" - -#: ../../include/oembed.php:336 -msgid "Embedded content" -msgstr "Ingesloten (embedded) inhoud" - -#: ../../include/oembed.php:345 -msgid "Embedding disabled" -msgstr "Insluiten (embedding) uitgeschakeld" - -#: ../../include/widgets.php:103 -msgid "System" -msgstr "Systeem" - -#: ../../include/widgets.php:106 -msgid "New App" -msgstr "Nieuwe app" - -#: ../../include/widgets.php:154 -msgid "Suggestions" -msgstr "Voorgestelde kanalen" - -#: ../../include/widgets.php:155 -msgid "See more..." -msgstr "Meer..." - -#: ../../include/widgets.php:175 -#, php-format -msgid "You have %1$.0f of %2$.0f allowed connections." -msgstr "Je hebt %1$.0f van de %2$.0f toegestane connecties." - -#: ../../include/widgets.php:181 -msgid "Add New Connection" -msgstr "Nieuwe connectie toevoegen" - -#: ../../include/widgets.php:182 -msgid "Enter channel address" -msgstr "Vul kanaaladres in" - -#: ../../include/widgets.php:183 -msgid "Examples: bob@example.com, https://example.com/barbara" -msgstr "Voorbeelden: bob@example.com, http://example.com/barbara" - -#: ../../include/widgets.php:199 -msgid "Notes" -msgstr "Aantekeningen" - -#: ../../include/widgets.php:273 -msgid "Remove term" -msgstr "Verwijder zoekterm" - -#: ../../include/widgets.php:313 ../../include/widgets.php:432 -#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:94 -msgid "Everything" -msgstr "Alles" - -#: ../../include/widgets.php:354 -msgid "Archives" -msgstr "Archieven" - -#: ../../include/widgets.php:516 -msgid "Refresh" -msgstr "Vernieuwen" - -#: ../../include/widgets.php:556 -msgid "Account settings" -msgstr "Account" - -#: ../../include/widgets.php:562 -msgid "Channel settings" -msgstr "Kanaal" - -#: ../../include/widgets.php:571 -msgid "Additional features" -msgstr "Extra functies" - -#: ../../include/widgets.php:578 -msgid "Feature/Addon settings" -msgstr "Plugin-instellingen" - -#: ../../include/widgets.php:584 -msgid "Display settings" -msgstr "Weergave" - -#: ../../include/widgets.php:591 -msgid "Manage locations" -msgstr "Locaties beheren" - -#: ../../include/widgets.php:600 -msgid "Export channel" -msgstr "Kanaal exporteren" - -#: ../../include/widgets.php:607 -msgid "Connected apps" -msgstr "Verbonden applicaties" - -#: ../../include/widgets.php:631 -msgid "Premium Channel Settings" -msgstr "Instellingen premiumkanaal" - -#: ../../include/widgets.php:660 -msgid "Private Mail Menu" -msgstr "Privéberichten" - -#: ../../include/widgets.php:662 -msgid "Combined View" -msgstr "Gecombineerd postvak" - -#: ../../include/widgets.php:694 ../../include/widgets.php:706 -msgid "Conversations" -msgstr "Conversaties" - -#: ../../include/widgets.php:698 -msgid "Received Messages" -msgstr "Ontvangen berichten" - -#: ../../include/widgets.php:702 -msgid "Sent Messages" -msgstr "Verzonden berichten" - -#: ../../include/widgets.php:716 -msgid "No messages." -msgstr "Geen berichten" - -#: ../../include/widgets.php:734 -msgid "Delete conversation" -msgstr "Verwijder conversatie" - -#: ../../include/widgets.php:760 -msgid "Events Tools" -msgstr "Agenda-hulpmiddelen" - -#: ../../include/widgets.php:761 -msgid "Export Calendar" -msgstr "Exporteren" - -#: ../../include/widgets.php:762 -msgid "Import Calendar" -msgstr "Importeren" - -#: ../../include/widgets.php:840 -msgid "Overview" -msgstr "Overzicht" - -#: ../../include/widgets.php:847 -msgid "Chat Members" -msgstr "Chatleden" - -#: ../../include/widgets.php:869 -msgid "Wiki List" -msgstr "Wiki's" - -#: ../../include/widgets.php:907 -msgid "Wiki Pages" -msgstr "Wikipagina's" - -#: ../../include/widgets.php:942 -msgid "Bookmarked Chatrooms" -msgstr "Bladwijzers van chatkanalen" - -#: ../../include/widgets.php:965 -msgid "Suggested Chatrooms" -msgstr "Voorgestelde chatkanalen" - -#: ../../include/widgets.php:1111 ../../include/widgets.php:1223 -msgid "photo/image" -msgstr "foto/afbeelding" - -#: ../../include/widgets.php:1166 -msgid "Click to show more" -msgstr "Klik voor meer" - -#: ../../include/widgets.php:1317 -msgid "Rating Tools" -msgstr "Beoordelingen" - -#: ../../include/widgets.php:1321 ../../include/widgets.php:1323 -msgid "Rate Me" -msgstr "Beoordeel mij" - -#: ../../include/widgets.php:1326 -msgid "View Ratings" -msgstr "Bekijk beoordelingen" - -#: ../../include/widgets.php:1410 -msgid "Forums" -msgstr "Forums" - -#: ../../include/widgets.php:1439 -msgid "Tasks" -msgstr "Taken" - -#: ../../include/widgets.php:1448 -msgid "Documentation" -msgstr "Documentatie" - -#: ../../include/widgets.php:1450 -msgid "Project/Site Information" -msgstr "Project- en hub-informatie" - -#: ../../include/widgets.php:1451 -msgid "For Members" -msgstr "Voor leden" - -#: ../../include/widgets.php:1452 -msgid "For Administrators" -msgstr "Voor beheerders" - -#: ../../include/widgets.php:1453 -msgid "For Developers" -msgstr "Voor ontwikkelaars" - -#: ../../include/widgets.php:1477 ../../include/widgets.php:1515 -msgid "Member registrations waiting for confirmation" -msgstr "Accounts die op goedkeuring wachten" - -#: ../../include/widgets.php:1483 -msgid "Inspect queue" -msgstr "Inspecteer berichtenwachtrij" - -#: ../../include/widgets.php:1485 -msgid "DB updates" -msgstr "Database-updates" - -#: ../../include/widgets.php:1511 -msgid "Plugin Features" -msgstr "Plugin-opties" - -#: ../../include/activities.php:41 -msgid " and " -msgstr " en " - -#: ../../include/activities.php:49 -msgid "public profile" -msgstr "openbaar profiel" - -#: ../../include/activities.php:58 -#, php-format -msgid "%1$s changed %2$s to “%3$s”" -msgstr "%1$s veranderde %2$s naar “%3$s”" - -#: ../../include/activities.php:59 -#, php-format -msgid "Visit %1$s's %2$s" -msgstr "Bezoek het %2$s van %1$s" - -#: ../../include/activities.php:62 -#, php-format -msgid "%1$s has an updated %2$s, changing %3$s." -msgstr "%1$s heeft een aangepaste %2$s, %3$s veranderd." - -#: ../../include/bb2diaspora.php:398 -msgid "Attachments:" -msgstr "Bijlagen:" - -#: ../../include/bb2diaspora.php:487 -msgid "$Projectname event notification:" -msgstr "Notificatie $Projectname-gebeurtenis:" - #: ../../include/js_strings.php:5 msgid "Delete this item?" msgstr "Dit item verwijderen?" #: ../../include/js_strings.php:8 -#, php-format -msgid "%s show less" -msgstr "%s minder reacties weergeven" +msgid "[-] show less" +msgstr "[-] minder reacties weergeven" #: ../../include/js_strings.php:9 -#, php-format -msgid "%s expand" -msgstr "%s uitklappen" +msgid "[+] expand" +msgstr "[+] uitklappen" #: ../../include/js_strings.php:10 -#, php-format -msgid "%s collapse" -msgstr "%s inklappen" +msgid "[-] collapse" +msgstr "[-] inklappen" #: ../../include/js_strings.php:11 msgid "Password too short" @@ -9609,223 +9358,278 @@ msgctxt "calendar" msgid "All day" msgstr "hele dag" -#: ../../include/contact_widgets.php:11 +#: ../../include/network.php:657 +msgid "view full size" +msgstr "volledige grootte tonen" + +#: ../../include/network.php:1885 +msgid "No Subject" +msgstr "Geen onderwerp" + +#: ../../include/network.php:2146 ../../include/network.php:2147 +msgid "Friendica" +msgstr "Friendica" + +#: ../../include/network.php:2148 +msgid "OStatus" +msgstr "OStatus" + +#: ../../include/network.php:2149 +msgid "GNU-Social" +msgstr "GNU social" + +#: ../../include/network.php:2150 +msgid "RSS/Atom" +msgstr "RSS/Atom" + +#: ../../include/network.php:2152 +msgid "Diaspora" +msgstr "Diaspora" + +#: ../../include/network.php:2153 +msgid "Facebook" +msgstr "Facebook" + +#: ../../include/network.php:2154 +msgid "Zot" +msgstr "Zot" + +#: ../../include/network.php:2155 +msgid "LinkedIn" +msgstr "LinkedIn" + +#: ../../include/network.php:2156 +msgid "XMPP/IM" +msgstr "XMPP/IM" + +#: ../../include/network.php:2157 +msgid "MySpace" +msgstr "MySpace" + +#: ../../include/photos.php:110 #, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "%d uitnodiging beschikbaar" -msgstr[1] "%d uitnodigingen beschikbaar" +msgid "Image exceeds website size limit of %lu bytes" +msgstr "Afbeelding is groter dan op deze hub toegestane limiet van %lu bytes" -#: ../../include/contact_widgets.php:19 -msgid "Find Channels" -msgstr "Kanalen vinden" +#: ../../include/photos.php:117 +msgid "Image file is empty." +msgstr "Afbeeldingsbestand is leeg" -#: ../../include/contact_widgets.php:20 -msgid "Enter name or interest" -msgstr "Vul naam of interesse in" +#: ../../include/photos.php:255 +msgid "Photo storage failed." +msgstr "Foto kan niet worden opgeslagen" -#: ../../include/contact_widgets.php:21 -msgid "Connect/Follow" -msgstr "Verbinden/volgen" +#: ../../include/photos.php:295 +msgid "a new photo" +msgstr "een nieuwe foto" -#: ../../include/contact_widgets.php:22 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "Voorbeeld: Robert Morgenstein, vissen" - -#: ../../include/contact_widgets.php:26 -msgid "Random Profile" -msgstr "Willekeurig profiel" - -#: ../../include/contact_widgets.php:27 -msgid "Invite Friends" -msgstr "Vrienden uitnodigen" - -#: ../../include/contact_widgets.php:29 -msgid "Advanced example: name=fred and country=iceland" -msgstr "Geavanceerd voorbeeld (Engels): name=jan en country=nederland" - -#: ../../include/contact_widgets.php:122 +#: ../../include/photos.php:299 #, php-format -msgid "%d connection in common" -msgid_plural "%d connections in common" -msgstr[0] "%d gemeenschappelijke connectie" -msgstr[1] "%d gemeenschappelijke connecties" +msgctxt "photo_upload" +msgid "%1$s posted %2$s to %3$s" +msgstr "%1$s plaatste %2$s op %3$s" -#: ../../include/contact_widgets.php:127 -msgid "show more" -msgstr "meer connecties weergeven" +#: ../../include/photos.php:506 +msgid "Upload New Photos" +msgstr "Nieuwe foto's uploaden" -#: ../../include/dir_fns.php:141 -msgid "Directory Options" -msgstr "Opties kanalengids" - -#: ../../include/dir_fns.php:143 -msgid "Safe Mode" -msgstr "Veilig zoeken" - -#: ../../include/dir_fns.php:144 -msgid "Public Forums Only" -msgstr "Alleen openbare forums" - -#: ../../include/dir_fns.php:145 -msgid "This Website Only" -msgstr "Alleen deze hub" - -#: ../../include/message.php:20 -msgid "No recipient provided." -msgstr "Geen ontvanger opgegeven." - -#: ../../include/message.php:25 -msgid "[no subject]" -msgstr "[geen onderwerp]" - -#: ../../include/message.php:45 -msgid "Unable to determine sender." -msgstr "Afzender kan niet bepaald worden." - -#: ../../include/message.php:222 -msgid "Stored post could not be verified." -msgstr "Opgeslagen bericht kon niet worden geverifieerd." - -#: ../../include/acl_selectors.php:269 -msgid "Who can see this?" -msgstr "Wie kan dit zien?" - -#: ../../include/acl_selectors.php:270 -msgid "Custom selection" -msgstr "Handmatige selectie" - -#: ../../include/acl_selectors.php:271 -msgid "" -"Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit" -" the scope of \"Show\"." -msgstr "Kies \"Tonen\" om weergave toe te staan. Met \"Niet tonen\" kan je uitzonderingen maken op \"Tonen\"." - -#: ../../include/acl_selectors.php:272 -msgid "Show" -msgstr "Tonen" - -#: ../../include/acl_selectors.php:273 -msgid "Don't show" -msgstr "Niet tonen" - -#: ../../include/acl_selectors.php:279 -msgid "Other networks and post services" -msgstr "Andere netwerken en diensten" - -#: ../../include/acl_selectors.php:309 -#, php-format -msgid "" -"Post permissions %s cannot be changed %s after a post is shared.
These" -" permissions set who is allowed to view the post." -msgstr "Permissies van berichten %s zijn niet meer te veranderen %s nadat een bericht is gedeeld.
Met deze permissies bepaal je wie het bericht kan zien." - -#: ../../include/datetime.php:135 -msgid "Birthday" -msgstr "Verjaardag of geboortedatum" - -#: ../../include/datetime.php:137 -msgid "Age: " -msgstr "Leeftijd:" - -#: ../../include/datetime.php:139 -msgid "YYYY-MM-DD or MM-DD" -msgstr "JJJJ-MM-DD of MM-DD" - -#: ../../include/datetime.php:272 ../../boot.php:2479 -msgid "never" -msgstr "nooit" - -#: ../../include/datetime.php:278 -msgid "less than a second ago" -msgstr "minder dan een seconde geleden" - -#: ../../include/datetime.php:296 -#, php-format -msgctxt "e.g. 22 hours ago, 1 minute ago" -msgid "%1$d %2$s ago" -msgstr "%1$d %2$s geleden" - -#: ../../include/datetime.php:307 -msgctxt "relative_date" -msgid "year" -msgid_plural "years" -msgstr[0] "jaar" -msgstr[1] "jaren" - -#: ../../include/datetime.php:310 -msgctxt "relative_date" -msgid "month" -msgid_plural "months" -msgstr[0] "maand" -msgstr[1] "maanden" - -#: ../../include/datetime.php:313 -msgctxt "relative_date" -msgid "week" -msgid_plural "weeks" -msgstr[0] "week" -msgstr[1] "weken" - -#: ../../include/datetime.php:316 -msgctxt "relative_date" -msgid "day" -msgid_plural "days" -msgstr[0] "dag" -msgstr[1] "dagen" - -#: ../../include/datetime.php:319 -msgctxt "relative_date" -msgid "hour" -msgid_plural "hours" -msgstr[0] "uur" -msgstr[1] "uren" - -#: ../../include/datetime.php:322 -msgctxt "relative_date" -msgid "minute" -msgid_plural "minutes" -msgstr[0] "minuut" -msgstr[1] "minuten" - -#: ../../include/datetime.php:325 -msgctxt "relative_date" -msgid "second" -msgid_plural "seconds" -msgstr[0] "seconde" -msgstr[1] "seconden" - -#: ../../include/datetime.php:562 -#, php-format -msgid "%1$s's birthday" -msgstr "Verjaardag van %1$s" - -#: ../../include/datetime.php:563 -#, php-format -msgid "Happy Birthday %1$s" -msgstr "Gefeliciteerd met je verjaardag %1$s" - -#: ../../include/api.php:1327 -msgid "Public Timeline" -msgstr "Openbare tijdlijn" - -#: ../../include/zot.php:697 +#: ../../include/zot.php:699 msgid "Invalid data packet" msgstr "Datapakket ongeldig" -#: ../../include/zot.php:713 +#: ../../include/zot.php:715 msgid "Unable to verify channel signature" msgstr "Kanaalkenmerk kon niet worden geverifieerd. " -#: ../../include/zot.php:2326 +#: ../../include/zot.php:2363 #, php-format msgid "Unable to verify site signature for %s" msgstr "Hubkenmerk voor %s kon niet worden geverifieerd" -#: ../../include/zot.php:3703 +#: ../../include/zot.php:3712 msgid "invalid target signature" msgstr "ongeldig doelkenmerk" +#: ../../include/page_widgets.php:6 +msgid "New Page" +msgstr "Nieuwe pagina" + +#: ../../include/page_widgets.php:43 +msgid "Title" +msgstr "Titel" + +#: ../../include/permissions.php:26 +msgid "Can view my normal stream and posts" +msgstr "Kan mijn normale kanaalstream en berichten bekijken" + +#: ../../include/permissions.php:27 +msgid "Can view my default channel profile" +msgstr "Kan mijn standaard kanaalprofiel bekijken" + +#: ../../include/permissions.php:28 +msgid "Can view my connections" +msgstr "Kan een lijst met mijn connecties bekijken" + +#: ../../include/permissions.php:29 +msgid "Can view my file storage and photos" +msgstr "Kan mijn foto's en andere bestanden bekijken" + +#: ../../include/permissions.php:30 +msgid "Can view my webpages" +msgstr "Kan mijn pagina's bekijken" + +#: ../../include/permissions.php:33 +msgid "Can send me their channel stream and posts" +msgstr "Kan mij de inhoud van hun kanaal en berichten sturen" + +#: ../../include/permissions.php:34 +msgid "Can post on my channel page (\"wall\")" +msgstr "Kan een bericht in mijn kanaal plaatsen" + +#: ../../include/permissions.php:35 +msgid "Can comment on or like my posts" +msgstr "Kan op mijn berichten reageren of deze (niet) leuk vinden" + +#: ../../include/permissions.php:36 +msgid "Can send me private mail messages" +msgstr "Kan mij privéberichten sturen" + +#: ../../include/permissions.php:37 +msgid "Can like/dislike stuff" +msgstr "Kan dingen leuk of niet leuk vinden" + +#: ../../include/permissions.php:37 +msgid "Profiles and things other than posts/comments" +msgstr "Profielen en dingen, buiten berichten en reacties" + +#: ../../include/permissions.php:39 +msgid "Can forward to all my channel contacts via post @mentions" +msgstr "Kan naar al mijn kanaalconnecties berichten doorsturen met behulp van @vermeldingen+" + +#: ../../include/permissions.php:39 +msgid "Advanced - useful for creating group forum channels" +msgstr "Geavanceerd - nuttig voor groepforums" + +#: ../../include/permissions.php:40 +msgid "Can chat with me (when available)" +msgstr "Kan met mij chatten (wanneer beschikbaar)" + +#: ../../include/permissions.php:41 +msgid "Can write to my file storage and photos" +msgstr "Kan foto's en andere bestanden aan mijn bestandsopslag toevoegen" + +#: ../../include/permissions.php:42 +msgid "Can edit my webpages" +msgstr "Kan mijn pagina's bewerken" + +#: ../../include/permissions.php:44 +msgid "Can source my public posts in derived channels" +msgstr "Kan mijn openbare berichten als bron voor andere kanalen gebruiken" + +#: ../../include/permissions.php:44 +msgid "Somewhat advanced - very useful in open communities" +msgstr "Enigszins geavanceerd (erg nuttig voor kanalen van forums/groepen)" + +#: ../../include/permissions.php:46 +msgid "Can administer my channel resources" +msgstr "Kan mijn kanaal beheren" + +#: ../../include/permissions.php:46 +msgid "" +"Extremely advanced. Leave this alone unless you know what you are doing" +msgstr "Zeer geavanceerd. Laat dit met rust, behalve als je weet wat je doet." + +#: ../../include/permissions.php:877 +msgid "Social Networking" +msgstr "Sociaal netwerk" + +#: ../../include/permissions.php:877 +msgid "Social - Mostly Public" +msgstr "Sociaal - Vrijwel alles openbaar" + +#: ../../include/permissions.php:877 +msgid "Social - Restricted" +msgstr "Sociaal - Beperkt zichtbaar" + +#: ../../include/permissions.php:877 +msgid "Social - Private" +msgstr "Sociaal - Verborgen kanaal" + +#: ../../include/permissions.php:878 +msgid "Community Forum" +msgstr "Groepsforum" + +#: ../../include/permissions.php:878 +msgid "Forum - Mostly Public" +msgstr "Forum - Vrijwel alles openbaar" + +#: ../../include/permissions.php:878 +msgid "Forum - Restricted" +msgstr "Forum - Beperkt zichtbaar" + +#: ../../include/permissions.php:878 +msgid "Forum - Private" +msgstr "Forum - Verborgen kanaal" + +#: ../../include/permissions.php:879 +msgid "Feed Republish" +msgstr "Feed herpubliceren" + +#: ../../include/permissions.php:879 +msgid "Feed - Mostly Public" +msgstr "Feed - Vrijwel alles openbaar" + +#: ../../include/permissions.php:879 +msgid "Feed - Restricted" +msgstr "Feed - Beperkt zichtbaar" + +#: ../../include/permissions.php:880 +msgid "Special Purpose" +msgstr "Speciaal doel" + +#: ../../include/permissions.php:880 +msgid "Special - Celebrity/Soapbox" +msgstr "Speciaal - Beroemdheid/alleen volgen" + +#: ../../include/permissions.php:880 +msgid "Special - Group Repository" +msgstr "Speciaal - Groepsopslag" + +#: ../../include/permissions.php:881 +msgid "Custom/Expert Mode" +msgstr "Expertmodus/handmatig aanpassen" + +#: ../../include/activities.php:41 +msgid " and " +msgstr " en " + +#: ../../include/activities.php:49 +msgid "public profile" +msgstr "openbaar profiel" + +#: ../../include/activities.php:58 +#, php-format +msgid "%1$s changed %2$s to “%3$s”" +msgstr "%1$s veranderde %2$s naar “%3$s”" + +#: ../../include/activities.php:59 +#, php-format +msgid "Visit %1$s's %2$s" +msgstr "Bezoek het %2$s van %1$s" + +#: ../../include/activities.php:62 +#, php-format +msgid "%1$s has an updated %2$s, changing %3$s." +msgstr "%1$s heeft een aangepaste %2$s, %3$s veranderd." + +#: ../../include/bb2diaspora.php:398 +msgid "Attachments:" +msgstr "Bijlagen:" + +#: ../../include/bb2diaspora.php:487 +msgid "$Projectname event notification:" +msgstr "Notificatie $Projectname-gebeurtenis:" + #: ../../view/theme/redbasic/php/config.php:82 msgid "Focus (Hubzilla default)" msgstr "Focus (Hubzilla-standaard)" @@ -9962,66 +9766,62 @@ msgstr "Grootte profielfoto's van berichten instellen" msgid "Set size of followup author photos" msgstr "Grootte profielfoto's van reacties instellen" -#: ../../boot.php:1163 +#: ../../boot.php:1162 #, php-format msgctxt "opensearch" msgid "Search %1$s (%2$s)" msgstr "Zoek %1$s (%2$s)" -#: ../../boot.php:1163 +#: ../../boot.php:1162 msgctxt "opensearch" msgid "$Projectname" msgstr "$Projectname" -#: ../../boot.php:1481 +#: ../../boot.php:1480 #, php-format msgid "Update %s failed. See error logs." msgstr "Update %s mislukt. Zie foutenlogboek." -#: ../../boot.php:1484 +#: ../../boot.php:1483 #, php-format msgid "Update Error at %s" msgstr "Update-fout op %s" -#: ../../boot.php:1685 +#: ../../boot.php:1684 msgid "" "Create an account to access services and applications within the Hubzilla" msgstr "Maak een account aan om toegang te krijgen tot diensten en toepassingen van Hubzilla" #: ../../boot.php:1706 -msgid "Login/Email" -msgstr "E-mailadres of inlognaam" - -#: ../../boot.php:1707 msgid "Password" msgstr "Wachtwoord" -#: ../../boot.php:1708 +#: ../../boot.php:1707 msgid "Remember me" msgstr "Aangemeld blijven" -#: ../../boot.php:1711 +#: ../../boot.php:1710 msgid "Forgot your password?" msgstr "Wachtwoord vergeten?" -#: ../../boot.php:2277 +#: ../../boot.php:2276 msgid "toggle mobile" msgstr "mobiele weergave omschakelen" -#: ../../boot.php:2432 +#: ../../boot.php:2425 msgid "Website SSL certificate is not valid. Please correct." msgstr "Het SSL-certificaat van deze website is ongeldig. Corrigeer dit a.u.b." -#: ../../boot.php:2435 +#: ../../boot.php:2428 #, php-format msgid "[hubzilla] Website SSL error for %s" msgstr "[hubzilla] Probleem met SSL-certificaat voor %s" -#: ../../boot.php:2478 +#: ../../boot.php:2469 msgid "Cron/Scheduled tasks not running." msgstr "Cron is niet actief" -#: ../../boot.php:2482 +#: ../../boot.php:2473 #, php-format msgid "[hubzilla] Cron tasks not running on %s" msgstr "[hubzilla] Cron-taken zijn niet actief op %s" diff --git a/view/nl/hstrings.php b/view/nl/hstrings.php index 6cbc6425e..4ff83f788 100644 --- a/view/nl/hstrings.php +++ b/view/nl/hstrings.php @@ -4,39 +4,7 @@ if(! function_exists("string_plural_select_nl")) { function string_plural_select_nl($n){ return ($n != 1);; }} -App::$rtl = 0; -App::$strings["Social Networking"] = "Sociaal netwerk"; -App::$strings["Social - Mostly Public"] = "Sociaal - Vrijwel alles openbaar"; -App::$strings["Social - Restricted"] = "Sociaal - Beperkt zichtbaar"; -App::$strings["Social - Private"] = "Sociaal - Verborgen kanaal"; -App::$strings["Community Forum"] = "Groepsforum"; -App::$strings["Forum - Mostly Public"] = "Forum - Vrijwel alles openbaar"; -App::$strings["Forum - Restricted"] = "Forum - Beperkt zichtbaar"; -App::$strings["Forum - Private"] = "Forum - Verborgen kanaal"; -App::$strings["Feed Republish"] = "Feed herpubliceren"; -App::$strings["Feed - Mostly Public"] = "Feed - Vrijwel alles openbaar"; -App::$strings["Feed - Restricted"] = "Feed - Beperkt zichtbaar"; -App::$strings["Special Purpose"] = "Speciaal doel"; -App::$strings["Special - Celebrity/Soapbox"] = "Speciaal - Beroemdheid/alleen volgen"; -App::$strings["Special - Group Repository"] = "Speciaal - Groepsopslag"; -App::$strings["Other"] = "Anders"; -App::$strings["Custom/Expert Mode"] = "Expertmodus/handmatig aanpassen"; -App::$strings["Can view my channel stream and posts"] = "Kan mijn kanaal en berichten bekijken"; -App::$strings["Can send me their channel stream and posts"] = "Kan mij de inhoud van hun kanaal en berichten sturen"; -App::$strings["Can view my default channel profile"] = "Kan mijn standaard kanaalprofiel bekijken"; -App::$strings["Can view my connections"] = "Kan een lijst met mijn connecties bekijken"; -App::$strings["Can view my file storage and photos"] = "Kan mijn foto's en andere bestanden bekijken"; -App::$strings["Can upload/modify my file storage and photos"] = "Kan foto's en andere bestanden aan mijn bestandsopslag toevoegen"; -App::$strings["Can view my channel webpages"] = "Kan de webpagina's van mijn kanaal bekijken"; -App::$strings["Can create/edit my channel webpages"] = "Kan wegpagina's van mijn kanaal aanmaken en bewerken"; -App::$strings["Can post on my channel (wall) page"] = "Kan een bericht in mijn kanaal plaatsen"; -App::$strings["Can comment on or like my posts"] = "Kan op mijn berichten reageren of deze (niet) leuk vinden"; -App::$strings["Can send me private mail messages"] = "Kan mij privéberichten sturen"; -App::$strings["Can like/dislike profiles and profile things"] = "Kan profielen en profieldingen leuk en niet leuk vinden "; -App::$strings["Can forward to all my channel connections via @+ mentions in posts"] = "Kan naar al mijn kanaalconnecties berichten doorsturen met behulp van @vermeldingen+"; -App::$strings["Can chat with me"] = "Kan met mij chatten"; -App::$strings["Can source my public posts in derived channels"] = "Kan mijn openbare berichten als bron voor andere kanalen gebruiken"; -App::$strings["Can administer my channel"] = "Kan mijn kanaal beheren"; +; App::$strings["parent"] = "omhoog"; App::$strings["Collection"] = "map"; App::$strings["Principal"] = "principal"; @@ -69,8 +37,63 @@ App::$strings["Remote authentication blocked. You are logged into this site loca App::$strings["Welcome %s. Remote authentication successful."] = "Welkom %s. Authenticatie op afstand geslaagd."; App::$strings["Requested profile is not available."] = "Opgevraagd profiel is niet beschikbaar"; App::$strings["Some blurb about what to do when you're new here"] = "Welkom op \$Projectname. Klik op de tab ontdekken of klik rechtsboven op de kanalengids, om kanalen te vinden. Rechtsboven vind je ook apps, waar je vrijwel alle functies van \$Projectname kunt vinden. Voor hulp met \$Projectname klik je op het vraagteken."; +App::$strings["Block Name"] = "Bloknaam"; +App::$strings["Blocks"] = "Blokken"; +App::$strings["Block Title"] = "Bloktitel"; +App::$strings["Created"] = "Aangemaakt"; +App::$strings["Edited"] = "Bewerkt"; +App::$strings["Share"] = "Delen"; +App::$strings["View"] = "Weergeven"; +App::$strings["Channel not found."] = "Kanaal niet gevonden."; +App::$strings["Permissions denied."] = "Permissies niet toegestaan"; +App::$strings["l, F j"] = "l j F"; +App::$strings["Link to Source"] = "Originele locatie"; +App::$strings["Edit Event"] = "Gebeurtenis bewerken"; +App::$strings["Create Event"] = "Gebeurtenis aanmaken"; +App::$strings["Previous"] = "Vorige"; +App::$strings["Next"] = "Volgende"; +App::$strings["Export"] = "Exporteren"; +App::$strings["Import"] = "Importeren"; +App::$strings["Submit"] = "Opslaan"; +App::$strings["Today"] = "Vandaag"; +App::$strings["You must be logged in to see this page."] = "Je moet zijn ingelogd om deze pagina te kunnen bekijken."; +App::$strings["Posts and comments"] = "Berichten en reacties"; +App::$strings["Only posts"] = "Alleen berichten"; +App::$strings["Insufficient permissions. Request redirected to profile page."] = "Onvoldoende permissies. Doorgestuurd naar profielpagina."; +App::$strings["Room not found"] = "Chatkanaal niet gevonden"; +App::$strings["Leave Room"] = "Chatkanaal verlaten"; +App::$strings["Delete Room"] = "Chatkanaal verwijderen"; +App::$strings["I am away right now"] = "Ik ben momenteel afwezig"; +App::$strings["I am online"] = "Ik ben online"; +App::$strings["Bookmark this room"] = "Chatkanaal aan bladwijzers toevoegen"; +App::$strings["Please enter a link URL:"] = "Vul een URL in:"; +App::$strings["Encrypt text"] = "Tekst versleutelen"; +App::$strings["Insert web link"] = "Weblink invoegen"; +App::$strings["Feature disabled."] = "Functie uitgeschakeld."; +App::$strings["New Chatroom"] = "Nieuw chatkanaal"; +App::$strings["Chatroom name"] = "Naam chatkanaal"; +App::$strings["Expiration of chats (minutes)"] = "Aantal minuten voordat chatberichten worden verwijderd"; +App::$strings["Permissions"] = "Permissies"; +App::$strings["%1\$s's Chatrooms"] = "Chatkanalen van %1\$s"; +App::$strings["No chatrooms available"] = "Geen chatkanalen beschikbaar"; +App::$strings["Create New"] = "Nieuwe aanmaken"; +App::$strings["Expiration"] = "Verloopt na"; +App::$strings["min"] = "min"; App::$strings["Away"] = "Afwezig"; App::$strings["Online"] = "Online"; +App::$strings["Invalid item."] = "Ongeldig item."; +App::$strings["Bookmark added"] = "Bladwijzer toegevoegd"; +App::$strings["My Bookmarks"] = "Mijn bladwijzers"; +App::$strings["My Connections Bookmarks"] = "Bladwijzers van mijn connecties"; +App::$strings["Continue"] = "Ga verder"; +App::$strings["Premium Channel Setup"] = "Instellen premiumkanaal "; +App::$strings["Enable premium channel connection restrictions"] = "Restricties voor connecties van premiumkanaal toestaan"; +App::$strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = "Vul je restricties of voorwaarden in, zoals een paypal-afschrift, voorschriften voor leden, enz."; +App::$strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = "Dit kanaal kan extra stappen of het accepteren van de volgende voorwaarden vereisen, voordat de connectie wordt geaccepteerd:"; +App::$strings["Potential connections will then see the following text before proceeding:"] = "Mogelijke connecties zullen dan de volgende tekst zien voordat ze verder kunnen:"; +App::$strings["By continuing, I certify that I have complied with any instructions provided on this page."] = "Door verder te gaan ga ik automatisch akkoord met alle voorwaarden en aanwijzingen op deze pagina."; +App::$strings["(No specific instructions have been provided by the channel owner.)"] = "(Er zijn geen speciale voorwaarden en aanwijzingen door de kanaal-eigenaar verstrekt) "; +App::$strings["Restricted or Premium Channel"] = "Beperkt of premiumkanaal"; App::$strings["Could not access contact record."] = "Kon geen toegang krijgen tot de connectie-gegevens."; App::$strings["Could not locate selected profile."] = "Kon het gekozen profiel niet vinden."; App::$strings["Connection updated."] = "Connectie bijgewerkt."; @@ -135,7 +158,6 @@ App::$strings["Do not import posts with this text"] = "Importeer geen berichten App::$strings["This information is public!"] = "Deze informatie is openbaar!"; App::$strings["Connection Pending Approval"] = "Connectie moet nog geaccepteerd worden"; App::$strings["inherited"] = "geërfd"; -App::$strings["Submit"] = "Opslaan"; App::$strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Kies het profiel dat je aan %s wil tonen wanneer hij/zij ingelogd jouw profiel wil bekijken."; App::$strings["Their Settings"] = "Hun instellingen"; App::$strings["My Settings"] = "Mijn instellingen"; @@ -144,30 +166,6 @@ App::$strings["Some permissions may be inherited from your channel's privacy settings, which have higher priority than individual settings. You can change those settings here but they wont have any impact unless the inherited setting changes."] = "Sommige permissies worden mogelijk overgeërfd van de privacy-instellingen van jouw kanaal, die een hogere prioriteit hebben dan deze individuele permissies. Je kan de permissies hier veranderen, maar die hebben geen effect, tenzij de overgeërfde permissies worden veranderd. "; App::$strings["Last update:"] = "Laatste wijziging:"; App::$strings["Public access denied."] = "Openbare toegang geweigerd."; -App::$strings["Item not found."] = "Item niet gevonden."; -App::$strings["First Name"] = "Voornaam"; -App::$strings["Last Name"] = "Achternaam"; -App::$strings["Nickname"] = "Bijnaam"; -App::$strings["Full Name"] = "Volledige naam"; -App::$strings["Email"] = "E-mail"; -App::$strings["Profile Photo"] = "Profielfoto"; -App::$strings["Profile Photo 16px"] = "Profielfoto 16px"; -App::$strings["Profile Photo 32px"] = "Profielfoto 32px"; -App::$strings["Profile Photo 48px"] = "Profielfoto 48px"; -App::$strings["Profile Photo 64px"] = "Profielfoto 64px"; -App::$strings["Profile Photo 80px"] = "Profielfoto 80px"; -App::$strings["Profile Photo 128px"] = "Profielfoto 128px"; -App::$strings["Timezone"] = "Tijdzone"; -App::$strings["Homepage URL"] = "URL homepagina"; -App::$strings["Language"] = "Taal"; -App::$strings["Birth Year"] = "Geboortejaar"; -App::$strings["Birth Month"] = "Geboortemaand"; -App::$strings["Birth Day"] = "Geboortedag"; -App::$strings["Birthdate"] = "Geboortedatum"; -App::$strings["Gender"] = "Geslacht"; -App::$strings["Male"] = "Man"; -App::$strings["Female"] = "Vrouw"; -App::$strings["Channel added."] = "Kanaal toegevoegd."; App::$strings["%d rating"] = array( 0 => "%d beoordeling", 1 => "%d beoordelingen", @@ -198,74 +196,13 @@ App::$strings["Reverse Alphabetic"] = "Omgekeerd alfabetisch"; App::$strings["Newest to Oldest"] = "Nieuw naar oud"; App::$strings["Oldest to Newest"] = "Oud naar nieuw"; App::$strings["No entries (some entries may be hidden)."] = "Niets gevonden (sommige kanalen kunnen verborgen zijn)."; -App::$strings["Continue"] = "Ga verder"; -App::$strings["Premium Channel Setup"] = "Instellen premiumkanaal "; -App::$strings["Enable premium channel connection restrictions"] = "Restricties voor connecties van premiumkanaal toestaan"; -App::$strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = "Vul je restricties of voorwaarden in, zoals een paypal-afschrift, voorschriften voor leden, enz."; -App::$strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = "Dit kanaal kan extra stappen of het accepteren van de volgende voorwaarden vereisen, voordat de connectie wordt geaccepteerd:"; -App::$strings["Potential connections will then see the following text before proceeding:"] = "Mogelijke connecties zullen dan de volgende tekst zien voordat ze verder kunnen:"; -App::$strings["By continuing, I certify that I have complied with any instructions provided on this page."] = "Door verder te gaan ga ik automatisch akkoord met alle voorwaarden en aanwijzingen op deze pagina."; -App::$strings["(No specific instructions have been provided by the channel owner.)"] = "(Er zijn geen speciale voorwaarden en aanwijzingen door de kanaal-eigenaar verstrekt) "; -App::$strings["Restricted or Premium Channel"] = "Beperkt of premiumkanaal"; -App::$strings["Calendar entries imported."] = "Agenda-items geïmporteerd."; -App::$strings["No calendar entries found."] = "Geen agenda-items gevonden."; -App::$strings["Event can not end before it has started."] = "Gebeurtenis kan niet eindigen voordat het is begonnen"; -App::$strings["Unable to generate preview."] = "Niet in staat om voorvertoning te genereren"; -App::$strings["Event title and start time are required."] = "Titel en begintijd van gebeurtenis zijn vereist."; -App::$strings["Event not found."] = "Gebeurtenis niet gevonden"; -App::$strings["event"] = "gebeurtenis"; -App::$strings["Edit event title"] = "Titel bewerken"; -App::$strings["Event title"] = "Titel"; -App::$strings["Required"] = "Vereist"; -App::$strings["Categories (comma-separated list)"] = "Categorieën (door komma's gescheiden lijst)"; -App::$strings["Edit Category"] = "Categorie"; -App::$strings["Category"] = "Categorie"; -App::$strings["Edit start date and time"] = "Begindatum en -tijd bewerken"; -App::$strings["Start date and time"] = "Begindatum en -tijd"; -App::$strings["Finish date and time are not known or not relevant"] = "Einddatum en -tijd zijn niet bekend of niet van toepassing"; -App::$strings["Edit finish date and time"] = "Einddatum en -tijd bewerken"; -App::$strings["Finish date and time"] = "Einddatum en -tijd"; -App::$strings["Adjust for viewer timezone"] = "Aanpassen aan de tijdzone van wie deze gebeurtenis bekijkt"; -App::$strings["Important for events that happen in a particular place. Not practical for global holidays."] = "Belangrijk voor gebeurtenissen die op een bepaalde locatie plaatsvinden. Niet praktisch voor wereldwijde feestdagen."; -App::$strings["Edit Description"] = "Omschrijving bewerken"; -App::$strings["Description"] = "Omschrijving"; -App::$strings["Edit Location"] = "Locatie bewerken"; -App::$strings["Location"] = "Locatie"; -App::$strings["Share this event"] = "Deel deze gebeurtenis"; -App::$strings["Preview"] = "Voorvertoning"; -App::$strings["Permission settings"] = "Permissies"; -App::$strings["Advanced Options"] = "Geavanceerde opties"; -App::$strings["l, F j"] = "l j F"; -App::$strings["Edit event"] = "Gebeurtenis bewerken"; -App::$strings["Delete event"] = "Gebeurtenis verwijderen"; -App::$strings["Link to Source"] = "Originele locatie"; -App::$strings["calendar"] = "agenda"; -App::$strings["Edit Event"] = "Gebeurtenis bewerken"; -App::$strings["Create Event"] = "Gebeurtenis aanmaken"; -App::$strings["Previous"] = "Vorige"; -App::$strings["Next"] = "Volgende"; -App::$strings["Export"] = "Exporteren"; -App::$strings["View"] = "Weergeven"; -App::$strings["Month"] = "Maand"; -App::$strings["Week"] = "Week"; -App::$strings["Day"] = "Dag"; -App::$strings["Today"] = "Vandaag"; -App::$strings["Event removed"] = "Gebeurtenis verwijderd"; -App::$strings["Failed to remove event"] = "Verwijderen gebeurtenis mislukt"; -App::$strings["Bookmark added"] = "Bladwijzer toegevoegd"; -App::$strings["My Bookmarks"] = "Mijn bladwijzers"; -App::$strings["My Connections Bookmarks"] = "Bladwijzers van mijn connecties"; +App::$strings["Item not found."] = "Item niet gevonden."; App::$strings["Item not found"] = "Item niet gevonden"; -App::$strings["Item is not editable"] = "Item is niet te bewerken"; -App::$strings["Edit post"] = "Bericht bewerken"; -App::$strings["Photos"] = "Foto's"; -App::$strings["Cancel"] = "Annuleren"; -App::$strings["Invalid item."] = "Ongeldig item."; -App::$strings["Channel not found."] = "Kanaal niet gevonden."; -App::$strings["Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."] = "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."; -App::$strings["Save to Folder:"] = "Bewaar in map: "; -App::$strings["- select -"] = "- kies map -"; -App::$strings["Save"] = "Opslaan"; +App::$strings["Title (optional)"] = "Titel (optioneel)"; +App::$strings["Edit Block"] = "Blok bewerken"; +App::$strings["No channel."] = "Geen kanaal."; +App::$strings["Common connections"] = "Veel voorkomende connecties"; +App::$strings["No connections in common."] = "Geen gemeenschappelijke connecties."; App::$strings["Blocked"] = "Geblokkeerd"; App::$strings["Ignored"] = "Genegeerd"; App::$strings["Hidden"] = "Verborgen"; @@ -317,38 +254,51 @@ App::$strings["select a photo from your photo albums"] = "Kies een foto uit jouw App::$strings["Crop Image"] = "Afbeelding bijsnijden"; App::$strings["Please adjust the image cropping for optimum viewing."] = "Snij de afbeelding zo uit dat deze optimaal wordt weergegeven."; App::$strings["Done Editing"] = "Klaar met bewerken"; -App::$strings["webpage"] = "Webpagina"; -App::$strings["block"] = "blok"; -App::$strings["layout"] = "lay-out"; -App::$strings["menu"] = "menu"; -App::$strings["%s element installed"] = "%s onderdeel geïnstalleerd"; -App::$strings["%s element installation failed"] = "Installatie %s-element mislukt"; -App::$strings["Permissions denied."] = "Permissies niet toegestaan"; -App::$strings["Import"] = "Importeren"; +App::$strings["Item is not editable"] = "Item is niet te bewerken"; +App::$strings["Edit post"] = "Bericht bewerken"; +App::$strings["Calendar entries imported."] = "Agenda-items geïmporteerd."; +App::$strings["No calendar entries found."] = "Geen agenda-items gevonden."; +App::$strings["Event can not end before it has started."] = "Gebeurtenis kan niet eindigen voordat het is begonnen"; +App::$strings["Unable to generate preview."] = "Niet in staat om voorvertoning te genereren"; +App::$strings["Event title and start time are required."] = "Titel en begintijd van gebeurtenis zijn vereist."; +App::$strings["Event not found."] = "Gebeurtenis niet gevonden"; +App::$strings["event"] = "gebeurtenis"; +App::$strings["Edit event title"] = "Titel bewerken"; +App::$strings["Event title"] = "Titel"; +App::$strings["Required"] = "Vereist"; +App::$strings["Categories (comma-separated list)"] = "Categorieën (door komma's gescheiden lijst)"; +App::$strings["Edit Category"] = "Categorie"; +App::$strings["Category"] = "Categorie"; +App::$strings["Edit start date and time"] = "Begindatum en -tijd bewerken"; +App::$strings["Start date and time"] = "Begindatum en -tijd"; +App::$strings["Finish date and time are not known or not relevant"] = "Einddatum en -tijd zijn niet bekend of niet van toepassing"; +App::$strings["Edit finish date and time"] = "Einddatum en -tijd bewerken"; +App::$strings["Finish date and time"] = "Einddatum en -tijd"; +App::$strings["Adjust for viewer timezone"] = "Aanpassen aan de tijdzone van wie deze gebeurtenis bekijkt"; +App::$strings["Important for events that happen in a particular place. Not practical for global holidays."] = "Belangrijk voor gebeurtenissen die op een bepaalde locatie plaatsvinden. Niet praktisch voor wereldwijde feestdagen."; +App::$strings["Edit Description"] = "Omschrijving bewerken"; +App::$strings["Description"] = "Omschrijving"; +App::$strings["Edit Location"] = "Locatie bewerken"; +App::$strings["Location"] = "Locatie"; +App::$strings["Share this event"] = "Deel deze gebeurtenis"; +App::$strings["Preview"] = "Voorvertoning"; +App::$strings["Permission settings"] = "Permissies"; +App::$strings["Advanced Options"] = "Geavanceerde opties"; +App::$strings["Edit event"] = "Gebeurtenis bewerken"; +App::$strings["Delete event"] = "Gebeurtenis verwijderen"; +App::$strings["calendar"] = "agenda"; +App::$strings["Event removed"] = "Gebeurtenis verwijderd"; +App::$strings["Failed to remove event"] = "Verwijderen gebeurtenis mislukt"; +App::$strings["Photos"] = "Foto's"; +App::$strings["Cancel"] = "Annuleren"; App::$strings["This site is not a directory server"] = "Deze hub is geen kanalengidshub (directoryserver)"; App::$strings["This directory server requires an access token"] = "Deze kanalengidshub (directoryserver) heeft een toegangs-token nodig"; -App::$strings["You must be logged in to see this page."] = "Je moet zijn ingelogd om deze pagina te kunnen bekijken."; -App::$strings["Room not found"] = "Chatkanaal niet gevonden"; -App::$strings["Leave Room"] = "Chatkanaal verlaten"; -App::$strings["Delete Room"] = "Chatkanaal verwijderen"; -App::$strings["I am away right now"] = "Ik ben momenteel afwezig"; -App::$strings["I am online"] = "Ik ben online"; -App::$strings["Bookmark this room"] = "Chatkanaal aan bladwijzers toevoegen"; -App::$strings["Please enter a link URL:"] = "Vul een URL in:"; -App::$strings["Encrypt text"] = "Tekst versleutelen"; -App::$strings["Insert web link"] = "Weblink invoegen"; -App::$strings["Feature disabled."] = "Functie uitgeschakeld."; -App::$strings["New Chatroom"] = "Nieuw chatkanaal"; -App::$strings["Chatroom name"] = "Naam chatkanaal"; -App::$strings["Expiration of chats (minutes)"] = "Aantal minuten voordat chatberichten worden verwijderd"; -App::$strings["Permissions"] = "Permissies"; -App::$strings["%1\$s's Chatrooms"] = "Chatkanalen van %1\$s"; -App::$strings["No chatrooms available"] = "Geen chatkanalen beschikbaar"; -App::$strings["Create New"] = "Nieuwe aanmaken"; -App::$strings["Expiration"] = "Verloopt na"; -App::$strings["min"] = "min"; +App::$strings["Save to Folder:"] = "Bewaar in map: "; +App::$strings["- select -"] = "- kies map -"; +App::$strings["Save"] = "Opslaan"; App::$strings["Invalid message"] = "Ongeldig bericht"; App::$strings["no results"] = "geen resultaten"; +App::$strings["Delivery report for %1\$s"] = "Afleveringsrapport voor %1\$s"; App::$strings["channel sync processed"] = "kanaalsync verwerkt"; App::$strings["queued"] = "in wachtrij"; App::$strings["posted"] = "verstuurd"; @@ -360,14 +310,14 @@ App::$strings["recipient not found"] = "ontvanger niet gevonden"; App::$strings["mail recalled"] = "Privébericht ingetrokken"; App::$strings["duplicate mail received"] = "dubbel privébericht ontvangen"; App::$strings["mail delivered"] = "privébericht afgeleverd"; -App::$strings["Delivery report for %1\$s"] = "Afleveringsrapport voor %1\$s"; -App::$strings["Options"] = "Opties"; -App::$strings["Redeliver"] = "Opnieuw afleveren"; App::$strings["Layout Name"] = "Naam lay-out"; App::$strings["Layout Description (Optional)"] = "Lay-out-omschrijving (optioneel)"; App::$strings["Edit Layout"] = "Lay-out bewerken"; App::$strings["Page link"] = "Paginalink"; App::$strings["Edit Webpage"] = "Webpagina bewerken"; +App::$strings["Channel added."] = "Kanaal toegevoegd."; +App::$strings["network"] = "netwerk"; +App::$strings["RSS"] = "RSS"; App::$strings["Privacy group created."] = "Privacygroep aangemaakt"; App::$strings["Could not create privacy group."] = "Kon privacygroep niet aanmaken"; App::$strings["Privacy group not found."] = "Privacygroep niet gevonden"; @@ -381,33 +331,16 @@ App::$strings["Privacy group editor"] = "Privacygroep bewerken"; App::$strings["Members"] = "Kanalen"; App::$strings["All Connected Channels"] = "Alle kanaalconnecties"; App::$strings["Click on a channel to add or remove."] = "Klik op een kanaal om deze toe te voegen of te verwijderen."; -App::$strings["App installed."] = "App geïnstalleerd"; -App::$strings["Malformed app."] = "Misvormde app."; -App::$strings["Embed code"] = "Insluitcode"; -App::$strings["Edit App"] = "App bewerken"; -App::$strings["Create App"] = "App maken"; -App::$strings["Name of app"] = "Naam van app"; -App::$strings["Location (URL) of app"] = "Locatie (URL) van app"; -App::$strings["Photo icon URL"] = "URL van pictogram"; -App::$strings["80 x 80 pixels - optional"] = "80 x 80 pixels (optioneel)"; -App::$strings["Categories (optional, comma separated list)"] = "Categorieën (optioneel, door komma's gescheiden lijst)"; -App::$strings["Version ID"] = "Versie-ID"; -App::$strings["Price of app"] = "Prijs van de app"; -App::$strings["Location (URL) to purchase app"] = "Locatie (URL) om de app aan te schaffen"; +App::$strings["Share content from Firefox to \$Projectname"] = "Deel webpagina's vanuit Firefox met "; +App::$strings["Activate the Firefox \$Projectname provider"] = "Activeer de \$Projectname-service in Firefox"; +App::$strings["Authorize application connection"] = "Geef toestemming voor applicatiekoppeling"; +App::$strings["Return to your app and insert this Securty Code:"] = "Ga terug naar je app en voeg deze beveiligingscode in:"; +App::$strings["Please login to continue."] = "Inloggen om verder te kunnen gaan."; +App::$strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Wil je deze applicatie toestemming geven om jouw berichten en connecties te zien, en/of nieuwe berichten voor jou te plaatsen?"; App::$strings["Documentation Search"] = "Zoek documentatie"; App::$strings["Help:"] = "Hulp:"; App::$strings["Help"] = "Hulp"; App::$strings["\$Projectname Documentation"] = "\$Projectname-documentatie"; -App::$strings["Item not available."] = "Item is niet aanwezig."; -App::$strings["Layout updated."] = "Lay-out bijgewerkt."; -App::$strings["Edit System Page Description"] = "Systeempagina's bewerken"; -App::$strings["Layout not found."] = "Lay-out niet gevonden."; -App::$strings["Module Name:"] = "Modulenaam:"; -App::$strings["Layout Help"] = "Lay-out-hulp"; -App::$strings["Share content from Firefox to \$Projectname"] = "Deel webpagina's vanuit Firefox met "; -App::$strings["Activate the Firefox \$Projectname provider"] = "Activeer de \$Projectname-service in Firefox"; -App::$strings["network"] = "netwerk"; -App::$strings["RSS"] = "RSS"; App::$strings["Permission Denied."] = "Toegang geweigerd"; App::$strings["File not found."] = "Bestand niet gevonden."; App::$strings["Edit file permissions"] = "Bestandsrechten bewerken"; @@ -419,100 +352,8 @@ App::$strings["Copy/paste this URL to link file from a web page"] = "Kopieer/pla App::$strings["Share this file"] = "Dit bestand delen"; App::$strings["Show URL to this file"] = "Toon URL van dit bestand"; App::$strings["Notify your contacts about this file"] = "Jouw connecties over dit bestand berichten"; -App::$strings["Layouts"] = "Lay-outs"; -App::$strings["Comanche page description language help"] = "Hulp met de paginabeschrijvingstaal Comanche"; -App::$strings["Layout Description"] = "Lay-out-omschrijving"; -App::$strings["Created"] = "Aangemaakt"; -App::$strings["Edited"] = "Bewerkt"; -App::$strings["Share"] = "Delen"; -App::$strings["Download PDL file"] = "Download PDL-bestand"; -App::$strings["Like/Dislike"] = "Leuk/niet leuk"; -App::$strings["This action is restricted to members."] = "Deze actie kan alleen door \$Projectname-leden worden uitgevoerd."; -App::$strings["Please login with your \$Projectname ID or register as a new \$Projectname member to continue."] = "Je dient in te loggen met je \$Projectname-account of een nieuw \$Projectname-account aan te maken om verder te kunnen gaan."; -App::$strings["Invalid request."] = "Ongeldig verzoek"; -App::$strings["channel"] = "kanaal"; -App::$strings["thing"] = "ding"; -App::$strings["Channel unavailable."] = "Kanaal niet beschikbaar."; -App::$strings["Previous action reversed."] = "Vorige actie omgedraaid"; -App::$strings["photo"] = "foto"; -App::$strings["status"] = "bericht"; -App::$strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s vindt %3\$s van %2\$s leuk"; -App::$strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s vindt %3\$s van %2\$s niet leuk"; -App::$strings["%1\$s agrees with %2\$s's %3\$s"] = "%1\$s is het eens met %2\$s's %3\$s"; -App::$strings["%1\$s doesn't agree with %2\$s's %3\$s"] = "%1\$s is het niet eens met %2\$s's %3\$s"; -App::$strings["%1\$s abstains from a decision on %2\$s's %3\$s"] = "%1\$s onthoudt zich van een besluit over %2\$s's %3\$s"; -App::$strings["%1\$s is attending %2\$s's %3\$s"] = "%1\$s is aanwezig op %2\$s's %3\$s"; -App::$strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$s is niet aanwezig op %2\$s's %3\$s"; -App::$strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$s is mogelijk aanwezig op %2\$s's %3\$s"; -App::$strings["Action completed."] = "Actie voltooid"; -App::$strings["Thank you."] = "Bedankt"; -App::$strings["Profile not found."] = "Profiel niet gevonden."; -App::$strings["Profile deleted."] = "Profiel verwijderd."; -App::$strings["Profile-"] = "Profiel-"; -App::$strings["New profile created."] = "Nieuw profiel aangemaakt."; -App::$strings["Profile unavailable to clone."] = "Profiel niet beschikbaar om te klonen"; -App::$strings["Profile unavailable to export."] = "Geen profiel beschikbaar om te exporteren"; -App::$strings["Profile Name is required."] = "Profielnaam is vereist"; -App::$strings["Marital Status"] = "Huwelijke status"; -App::$strings["Romantic Partner"] = "Romantische partner"; -App::$strings["Likes"] = "Houdt van"; -App::$strings["Dislikes"] = "Houdt niet van"; -App::$strings["Work/Employment"] = "Werk/arbeid"; -App::$strings["Religion"] = "Religie"; -App::$strings["Political Views"] = "Politieke overtuigingen"; -App::$strings["Sexual Preference"] = "Seksuele voorkeur"; -App::$strings["Homepage"] = "Homepage"; -App::$strings["Interests"] = "Interesses"; -App::$strings["Address"] = "Kanaaladres"; -App::$strings["Profile updated."] = "Profiel bijgewerkt"; -App::$strings["Hide your connections list from viewers of this profile"] = "Laat de lijst met connecties niet aan bezoekers van dit profiel zien."; -App::$strings["Edit Profile Details"] = "Profiel bewerken"; -App::$strings["View this profile"] = "Profiel weergeven"; -App::$strings["Edit visibility"] = "Zichtbaarheid bewerken"; -App::$strings["Profile Tools"] = "Hulpmiddelen"; -App::$strings["Change cover photo"] = "Omslagfoto wijzigen"; -App::$strings["Change profile photo"] = "Profielfoto veranderen"; -App::$strings["Create a new profile using these settings"] = "Een nieuw profiel aanmaken met dit profiel als basis"; -App::$strings["Clone this profile"] = "Dit profiel klonen"; -App::$strings["Delete this profile"] = "Dit profiel verwijderen"; -App::$strings["Add profile things"] = "Dingen aan je profiel toevoegen"; -App::$strings["Personal"] = "Persoonlijk"; -App::$strings["Relation"] = "Relatie"; -App::$strings["Miscellaneous"] = "Diversen"; -App::$strings["Import profile from file"] = "Profiel vanuit bestand importeren"; -App::$strings["Export profile to file"] = "Profiel naar bestand exporteren"; -App::$strings["Your gender"] = "Jouw geslacht"; -App::$strings["Marital status"] = "Burgerlijke staat"; -App::$strings["Sexual preference"] = "Seksuele voorkeur"; -App::$strings["Profile name"] = "Profielnaam"; -App::$strings["This is your default profile."] = "Dit is jouw standaardprofiel"; -App::$strings["Your full name"] = "Jouw volledige naam"; -App::$strings["Title/Description"] = "Titel/omschrijving"; -App::$strings["Street address"] = "Straat en huisnummer"; -App::$strings["Locality/City"] = "Woonplaats"; -App::$strings["Region/State"] = "Provincie/gewest/deelstaat"; -App::$strings["Postal/Zip code"] = "Postcode"; -App::$strings["Country"] = "Land"; -App::$strings["Who (if applicable)"] = "Wie (wanneer van toepassing)"; -App::$strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Voorbeelden: petra123, Petra Jansen, petra@voorbeeld.nl"; -App::$strings["Since (date)"] = "Sinds (datum)"; -App::$strings["Tell us about yourself"] = "Vertel ons iets over jezelf"; -App::$strings["Hometown"] = "Oorspronkelijk uit"; -App::$strings["Political views"] = "Politieke overtuigingen"; -App::$strings["Religious views"] = "Religieuze overtuigingen"; -App::$strings["Keywords used in directory listings"] = "Trefwoorden voor in de kanalengids"; -App::$strings["Example: fishing photography software"] = "Voorbeeld: muziek, fotografie, software"; -App::$strings["Musical interests"] = "Muzikale interesses"; -App::$strings["Books, literature"] = "Boeken/literatuur"; -App::$strings["Television"] = "Televisie"; -App::$strings["Film/Dance/Culture/Entertainment"] = "Film/dans/cultuur/entertainment"; -App::$strings["Hobbies/Interests"] = "Hobby's/interesses"; -App::$strings["Love/Romance"] = "Liefde/romantiek"; -App::$strings["School/Education"] = "School/opleiding"; -App::$strings["Contact information and social networks"] = "Contactinformatie en sociale netwerken"; -App::$strings["My other channels"] = "Mijn andere kanalen"; -App::$strings["Profile Image"] = "Profielfoto"; -App::$strings["Edit Profiles"] = "Bewerk profielen"; +App::$strings["Apps"] = "Apps"; +App::$strings["Item not available."] = "Item is niet aanwezig."; App::$strings["Your service plan only allows %d channels."] = "Jouw abonnement staat maar %d kanalen toe."; App::$strings["Nothing to import."] = "Niets gevonden om te importeren"; App::$strings["Unable to download data from old server"] = "Niet in staat om gegevens van de oude hub te downloaden"; @@ -533,8 +374,6 @@ App::$strings["For either option, please choose whether to make this hub your ne App::$strings["Make this hub my primary location"] = "Stel deze hub als mijn primaire locatie in"; App::$strings["Import existing posts if possible (experimental - limited by available memory"] = "Importeer bestaande berichten wanneer mogelijk (experimenteel - afhankelijk van beschikbaar servergeheugen)"; App::$strings["This process may take several minutes to complete. Please submit the form only once and leave this page open until finished."] = "Dit proces kan enkele minuten in beslag nemen. Klik maar één keer op opslaan en verlaat deze pagina niet alvorens het proces is voltooid."; -App::$strings["\$Projectname"] = "\$Projectname"; -App::$strings["Welcome to %s"] = "Welkom op %s"; App::$strings["Unable to locate original post."] = "Niet in staat om de originele locatie van het bericht te vinden. "; App::$strings["Empty post discarded."] = "Leeg bericht geannuleerd"; App::$strings["Executable content type not permitted to this channel."] = "Uitvoerbare bestanden zijn niet toegestaan op dit kanaal."; @@ -543,6 +382,229 @@ App::$strings["System error. Post not saved."] = "Systeemfout. Bericht niet opge App::$strings["Unable to obtain post information from database."] = "Niet in staat om informatie over dit bericht uit de database te verkrijgen."; App::$strings["You have reached your limit of %1$.0f top level posts."] = "Je hebt jouw limiet van %1$.0f berichten bereikt."; App::$strings["You have reached your limit of %1$.0f webpages."] = "Je hebt jouw limiet van %1$.0f webpagina's bereikt."; +App::$strings["Layouts"] = "Lay-outs"; +App::$strings["Comanche page description language help"] = "Hulp met de paginabeschrijvingstaal Comanche"; +App::$strings["Layout Description"] = "Lay-out-omschrijving"; +App::$strings["Download PDL file"] = "Download PDL-bestand"; +App::$strings["\$Projectname"] = "\$Projectname"; +App::$strings["Welcome to %s"] = "Welkom op %s"; +App::$strings["First Name"] = "Voornaam"; +App::$strings["Last Name"] = "Achternaam"; +App::$strings["Nickname"] = "Bijnaam"; +App::$strings["Full Name"] = "Volledige naam"; +App::$strings["Email"] = "E-mail"; +App::$strings["Profile Photo"] = "Profielfoto"; +App::$strings["Profile Photo 16px"] = "Profielfoto 16px"; +App::$strings["Profile Photo 32px"] = "Profielfoto 32px"; +App::$strings["Profile Photo 48px"] = "Profielfoto 48px"; +App::$strings["Profile Photo 64px"] = "Profielfoto 64px"; +App::$strings["Profile Photo 80px"] = "Profielfoto 80px"; +App::$strings["Profile Photo 128px"] = "Profielfoto 128px"; +App::$strings["Timezone"] = "Tijdzone"; +App::$strings["Homepage URL"] = "URL homepagina"; +App::$strings["Language"] = "Taal"; +App::$strings["Birth Year"] = "Geboortejaar"; +App::$strings["Birth Month"] = "Geboortemaand"; +App::$strings["Birth Day"] = "Geboortedag"; +App::$strings["Birthdate"] = "Geboortedatum"; +App::$strings["Gender"] = "Geslacht"; +App::$strings["Male"] = "Man"; +App::$strings["Female"] = "Vrouw"; +App::$strings["webpage"] = "Webpagina"; +App::$strings["block"] = "blok"; +App::$strings["layout"] = "lay-out"; +App::$strings["menu"] = "menu"; +App::$strings["%s element installed"] = "%s onderdeel geïnstalleerd"; +App::$strings["%s element installation failed"] = "Installatie %s-element mislukt"; +App::$strings["Like/Dislike"] = "Leuk/niet leuk"; +App::$strings["This action is restricted to members."] = "Deze actie kan alleen door \$Projectname-leden worden uitgevoerd."; +App::$strings["Please login with your \$Projectname ID or register as a new \$Projectname member to continue."] = "Je dient in te loggen met je \$Projectname-account of een nieuw \$Projectname-account aan te maken om verder te kunnen gaan."; +App::$strings["Invalid request."] = "Ongeldig verzoek"; +App::$strings["channel"] = "kanaal"; +App::$strings["thing"] = "ding"; +App::$strings["Channel unavailable."] = "Kanaal niet beschikbaar."; +App::$strings["Previous action reversed."] = "Vorige actie omgedraaid"; +App::$strings["photo"] = "foto"; +App::$strings["status"] = "bericht"; +App::$strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s vindt %3\$s van %2\$s leuk"; +App::$strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s vindt %3\$s van %2\$s niet leuk"; +App::$strings["%1\$s agrees with %2\$s's %3\$s"] = "%1\$s is het eens met %2\$s's %3\$s"; +App::$strings["%1\$s doesn't agree with %2\$s's %3\$s"] = "%1\$s is het niet eens met %2\$s's %3\$s"; +App::$strings["%1\$s abstains from a decision on %2\$s's %3\$s"] = "%1\$s onthoudt zich van een besluit over %2\$s's %3\$s"; +App::$strings["%1\$s is attending %2\$s's %3\$s"] = "%1\$s is aanwezig op %2\$s's %3\$s"; +App::$strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$s is niet aanwezig op %2\$s's %3\$s"; +App::$strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$s is mogelijk aanwezig op %2\$s's %3\$s"; +App::$strings["Action completed."] = "Actie voltooid"; +App::$strings["Thank you."] = "Bedankt"; +App::$strings["Import completed"] = "Importeren voltooid"; +App::$strings["Import Items"] = "Importeer items"; +App::$strings["Use this form to import existing posts and content from an export file."] = "Gebruik dit formulier om bestaande berichten en andere inhoud vanuit een exportbestand te importeren."; +App::$strings["Total invitation limit exceeded."] = "Limiet voor aantal uitnodigingen overschreden."; +App::$strings["%s : Not a valid email address."] = "%s : Geen geldig e-mailadres."; +App::$strings["Please join us on \$Projectname"] = "Uitnodiging voor \$Projectname"; +App::$strings["Invitation limit exceeded. Please contact your site administrator."] = "Limiet voor aantal uitnodigingen overschreden. Neem contact op met je hub-beheerder."; +App::$strings["%s : Message delivery failed."] = "%s: Aflevering bericht mislukt."; +App::$strings["%d message sent."] = array( + 0 => "%d bericht verzonden.", + 1 => "%d berichten verzonden.", +); +App::$strings["You have no more invitations available"] = "Je hebt geen uitnodigingen meer beschikbaar"; +App::$strings["Send invitations"] = "Uitnodigingen verzenden"; +App::$strings["Enter email addresses, one per line:"] = "Voer e-mailadressen in, één per regel:"; +App::$strings["Your message:"] = "Jouw bericht:"; +App::$strings["Please join my community on \$Projectname."] = "Hierbij nodig ik je uit om mij, en andere vrienden en kennissen, op \$Projectname te vergezellen. Lees meer over \$Projectname op http://hubzilla.org"; +App::$strings["You will need to supply this invitation code:"] = "Je moet deze uitnodigingscode opgeven:"; +App::$strings["1. Register at any \$Projectname location (they are all inter-connected)"] = "1. Registreer je op een willekeurige \$Projectname-hub (ze zijn allemaal onderling met elkaar verbonden):"; +App::$strings["2. Enter my \$Projectname network address into the site searchbar."] = "2. Nadat je bent ingelogd en een kanaal hebt aangemaakt kan je mijn \$Projectname-kanaaladres in het zoekveld invullen:"; +App::$strings["or visit"] = "of bezoek"; +App::$strings["3. Click [Connect]"] = "3. Klik op [+ Verbinden]"; +App::$strings["Remote privacy information not available."] = "Privacy-informatie op afstand niet beschikbaar."; +App::$strings["Visible to:"] = "Zichtbaar voor:"; +App::$strings["Location not found."] = "Locatie niet gevonden."; +App::$strings["Location lookup failed."] = "Opzoeken locatie mislukt"; +App::$strings["Please select another location to become primary before removing the primary location."] = "Kies eerst een andere primaire locatie alvorens de huidige primaire locatie te verwijderen."; +App::$strings["Syncing locations"] = "Locaties synchronizeren"; +App::$strings["No locations found."] = "Geen locaties gevonden."; +App::$strings["Manage Channel Locations"] = "Kanaallocaties beheren"; +App::$strings["Address"] = "Kanaaladres"; +App::$strings["Primary"] = "Primair"; +App::$strings["Drop"] = "Verwijderen"; +App::$strings["Sync Now"] = "Nu synchroniseren"; +App::$strings["Please wait several minutes between consecutive operations."] = "Wacht enkele minuten tussen opeenvolgende handelingen."; +App::$strings["When possible, drop a location by logging into that website/hub and removing your channel."] = "Wij adviseren, wanneer dit (nog) mogelijk is, de locatie te verwijderen door op de hub van de kloon in te loggen en het kanaal daar te verwijderen."; +App::$strings["Use this form to drop the location if the hub is no longer operating."] = "Gebruik dit formulier om de locatie te verwijderen wanneer de hub van de kloon niet meer operationeel is."; +App::$strings["Hub not found."] = "Hub niet gevonden."; +App::$strings["Unable to lookup recipient."] = "Niet in staat om ontvanger op te zoeken."; +App::$strings["Unable to communicate with requested channel."] = "Niet in staat om met het aangevraagde kanaal te communiceren."; +App::$strings["Cannot verify requested channel."] = "Kan opgevraagd kanaal niet verifieren"; +App::$strings["Selected channel has private message restrictions. Send failed."] = "Gekozen kanaal heeft restricties voor privéberichten. Verzenden mislukt."; +App::$strings["Messages"] = "Berichten"; +App::$strings["Message recalled."] = "Bericht ingetrokken."; +App::$strings["Conversation removed."] = "Conversatie verwijderd"; +App::$strings["Expires YYYY-MM-DD HH:MM"] = "Verloopt op DD-MM-YYYY om HH:MM"; +App::$strings["Requested channel is not in this network"] = "Opgevraagd kanaal is niet in dit netwerk beschikbaar"; +App::$strings["Send Private Message"] = "Privébericht versturen"; +App::$strings["To:"] = "Aan:"; +App::$strings["Subject:"] = "Onderwerp:"; +App::$strings["Attach file"] = "Bestand toevoegen"; +App::$strings["Send"] = "Verzenden"; +App::$strings["Set expiration date"] = "Verloopdatum instellen"; +App::$strings["Delete message"] = "Bericht verwijderen"; +App::$strings["Delivery report"] = "Afleveringsrapport"; +App::$strings["Recall message"] = "Bericht intrekken"; +App::$strings["Message has been recalled."] = "Bericht is ingetrokken."; +App::$strings["Delete Conversation"] = "Verwijder conversatie"; +App::$strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Geen veilige communicatie beschikbaar. Mogelijk kan je reageren op de kanaalpagina van de afzender."; +App::$strings["Send Reply"] = "Antwoord versturen"; +App::$strings["Your message for %s (%s):"] = "Jouw privébericht aan %s (%s):"; +App::$strings["You have created %1$.0f of %2$.0f allowed channels."] = "Je hebt %1$.0f van totaal %2$.0f toegestane kanalen aangemaakt."; +App::$strings["Create a new channel"] = "Nieuw kanaal aanmaken"; +App::$strings["Channel Manager"] = "Kanaalbeheer"; +App::$strings["Current Channel"] = "Huidig kanaal"; +App::$strings["Switch to one of your channels by selecting it."] = "Activeer een van jouw andere kanalen door er op te klikken."; +App::$strings["Default Channel"] = "Standaardkanaal"; +App::$strings["Make Default"] = "Als standaard instellen"; +App::$strings["%d new messages"] = "%d nieuwe berichten"; +App::$strings["%d new introductions"] = "%d nieuwe connectieverzoeken"; +App::$strings["Delegated Channel"] = "Uitbesteed kanaal"; +App::$strings["No valid account found."] = "Geen geldige account gevonden."; +App::$strings["Password reset request issued. Check your email."] = "Het verzoek om je wachtwoord opnieuw in te stellen is behandeld. Controleer je e-mail."; +App::$strings["Site Member (%s)"] = "Lid van hub (%s)"; +App::$strings["Password reset requested at %s"] = "Verzoek tot het opnieuw instellen van een wachtwoord op %s is ingediend"; +App::$strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Het verzoek kon niet worden geverifieerd. (Mogelijk heb je al eerder een verzoek ingediend.) Opnieuw instellen van wachtwoord is mislukt."; +App::$strings["Password Reset"] = "Wachtwoord vergeten?"; +App::$strings["Your password has been reset as requested."] = "Jouw wachtwoord is opnieuw ingesteld zoals je had verzocht."; +App::$strings["Your new password is"] = "Jouw nieuwe wachtwoord is"; +App::$strings["Save or copy your new password - and then"] = "Kopieer of sla je nieuwe wachtwoord op - en"; +App::$strings["click here to login"] = "klik dan hier om in te loggen"; +App::$strings["Your password may be changed from the Settings page after successful login."] = "Jouw wachtwoord kan worden veranderd onder instellingen, nadat je succesvol bent ingelogd."; +App::$strings["Your password has changed at %s"] = "Jouw wachtwoord op %s is veranderd"; +App::$strings["Forgot your Password?"] = "Wachtwoord vergeten?"; +App::$strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Voer je e-mailadres in en verstuur deze om je wachtwoord opnieuw in te stellen. Controleer hierna hier je e-mail voor verdere instructies."; +App::$strings["Email Address"] = "E-mailadres"; +App::$strings["Reset"] = "Opnieuw instellen"; +App::$strings["Unable to update menu."] = "Niet in staat om menu aan te passen"; +App::$strings["Unable to create menu."] = "Niet in staat om menu aan te maken."; +App::$strings["Menu Name"] = "Menunaam"; +App::$strings["Unique name (not visible on webpage) - required"] = "Unieke naam vereist (niet zichtbaar op webpagina)"; +App::$strings["Menu Title"] = "Menutitel"; +App::$strings["Visible on webpage - leave empty for no title"] = "Zichtbaar op webpagina (leeg laten voor geen titel)"; +App::$strings["Allow Bookmarks"] = "Bladwijzers toestaan"; +App::$strings["Menu may be used to store saved bookmarks"] = "Menu kan gebruikt worden om bladwijzers in op te slaan"; +App::$strings["Submit and proceed"] = "Opslaan en doorgaan"; +App::$strings["Menus"] = "Menu's"; +App::$strings["Bookmarks allowed"] = "Bladwijzers toegestaan"; +App::$strings["Delete this menu"] = "Menu verwijderen"; +App::$strings["Edit menu contents"] = "Bewerk de inhoud van het menu"; +App::$strings["Edit this menu"] = "Dit menu bewerken"; +App::$strings["Menu could not be deleted."] = "Menu kon niet verwijderd worden."; +App::$strings["Menu not found."] = "Menu niet gevonden."; +App::$strings["Edit Menu"] = "Menu bewerken"; +App::$strings["Add or remove entries to this menu"] = "Items aan dit menu toevoegen of verwijder"; +App::$strings["Menu name"] = "Naam van menu"; +App::$strings["Must be unique, only seen by you"] = "Moet uniek zijn en is alleen zichtbaar voor jou."; +App::$strings["Menu title"] = "Titel van menu"; +App::$strings["Menu title as seen by others"] = "Titel van menu zoals anderen dat zien."; +App::$strings["Allow bookmarks"] = "Bladwijzers toestaan"; +App::$strings["Not found."] = "Niet gevonden."; +App::$strings["__ctx:mood__ %1\$s is %2\$s"] = "%1\$s is %2\$s"; +App::$strings["Mood"] = "Stemming"; +App::$strings["Set your current mood and tell your friends"] = "Noteer je huidige stemming en toon het aan je connecties"; +App::$strings["Profile Match"] = "Profielovereenkomst"; +App::$strings["No keywords to match. Please add keywords to your default profile."] = "Je hebt geen trefwoorden waarmee overeenkomsten gevonden kunnen worden. Voeg enkele trefwoorden aan je standaardprofiel toe."; +App::$strings["is interested in:"] = "is geïnteresseerd in:"; +App::$strings["No matches"] = "Geen overeenkomsten"; +App::$strings["No such group"] = "Collectie niet gevonden"; +App::$strings["No such channel"] = "Niet zo'n kanaal"; +App::$strings["forum"] = "forum"; +App::$strings["Search Results For:"] = "Zoekresultaten voor:"; +App::$strings["Privacy group is empty"] = "Privacygroep is leeg"; +App::$strings["Privacy group: "] = "Privacygroep: "; +App::$strings["Invalid connection."] = "Ongeldige connectie."; +App::$strings["No more system notifications."] = "Geen systeemnotificaties meer."; +App::$strings["System Notifications"] = "Systeemnotificaties"; +App::$strings["Unable to create element."] = "Niet in staat om onderdeel aan te maken."; +App::$strings["Unable to update menu element."] = "Menu-onderdeel kan niet worden geüpdatet."; +App::$strings["Unable to add menu element."] = "Menu-onderdeel kan niet worden toegevoegd."; +App::$strings["Menu Item Permissions"] = "Permissies menu-item"; +App::$strings["(click to open/close)"] = "(klik om te openen/sluiten)"; +App::$strings["Link Name"] = "Linknaam"; +App::$strings["Link or Submenu Target"] = "Linkdoel of submenu-doel"; +App::$strings["Enter URL of the link or select a menu name to create a submenu"] = "Geef de URL van de link of kies een menunaam om een submenu aan te maken"; +App::$strings["Use magic-auth if available"] = "Gebruik magic-auth wanneer beschikbaar"; +App::$strings["Open link in new window"] = "Open link in nieuw venster"; +App::$strings["Order in list"] = "Volgorde in lijst"; +App::$strings["Higher numbers will sink to bottom of listing"] = "Hogere nummers komen onderaan de lijst terecht"; +App::$strings["Submit and finish"] = "Opslaan en afsluiten"; +App::$strings["Submit and continue"] = "Opslaan en doorgaan"; +App::$strings["Menu:"] = "Menu:"; +App::$strings["Link Target"] = "Linkdoel"; +App::$strings["Edit menu"] = "Menu bewerken"; +App::$strings["Edit element"] = "Onderdeel bewerken"; +App::$strings["Drop element"] = "Onderdeel verwijderen"; +App::$strings["New element"] = "Nieuw element"; +App::$strings["Edit this menu container"] = "Deze menu-container bewerken"; +App::$strings["Add menu element"] = "Menu-element toevoegen"; +App::$strings["Delete this menu item"] = "Dit menu-item verwijderen"; +App::$strings["Edit this menu item"] = "Dit menu-item bewerken"; +App::$strings["Menu item not found."] = "Menu-item niet gevonden."; +App::$strings["Menu item deleted."] = "Menu-item verwijderd."; +App::$strings["Menu item could not be deleted."] = "Menu-item kon niet worden verwijderd."; +App::$strings["Edit Menu Element"] = "Menu-element bewerken"; +App::$strings["Link text"] = "Linktekst"; +App::$strings["Name or caption"] = "Naam"; +App::$strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\""] = "Voorbeelden: \"Jan Pietersen\", \"Willems weblog\", \"Computerforum\""; +App::$strings["Choose a short nickname"] = "Korte bijnaam"; +App::$strings["Your nickname will be used to create an easy to remember channel address e.g. nickname%s"] = "Deze bijnaam wordt gebruikt om een makkelijk te onthouden kanaaladres van jouw kanaal aan te maken, die je dan met anderen kunt delen. Bijvoorbeeld: bijnaam%s"; +App::$strings["Channel role and privacy"] = "Kanaaltype en privacy"; +App::$strings["Select a channel role with your privacy requirements."] = "Kies een kanaaltype met het door jou gewenste privacyniveau."; +App::$strings["Read more about roles"] = "Lees meer over kanaaltypes"; +App::$strings["Create Channel"] = "Kanaal aanmaken"; +App::$strings["A channel is your identity on this network. It can represent a person, a blog, or a forum to name a few. Channels can make connections with other channels to share information with highly detailed permissions."] = "Een kanaal is jouw identiteit in dit netwerk. Het kan bijvoorbeeld een persoon, een blog of een forum vertegenwoordigen. Door met elkaar te verbinden kunnen kanalen, met behulp van uitgebreide permissies, informatie uitwisselen."; +App::$strings["or import an existing channel from another location."] = "Of importeer een bestaand kanaal vanaf een andere locatie"; +App::$strings["Invalid request identifier."] = "Ongeldige verzoek identificator (request identifier)"; +App::$strings["Discard"] = "Annuleren"; +App::$strings["Mark all system notifications seen"] = "Markeer alle systeemnotificaties als bekeken"; App::$strings["Page owner information could not be retrieved."] = "Informatie over de pagina-eigenaar werd niet ontvangen."; App::$strings["Profile Photos"] = "Profielfoto's"; App::$strings["Album not found."] = "Album niet gevonden."; @@ -611,164 +673,122 @@ App::$strings["__ctx:noun__ Dislikes"] = "vinden dit niet leuk"; App::$strings["Close"] = "Sluiten"; App::$strings["View Album"] = "Album weergeven"; App::$strings["Recent Photos"] = "Recente foto's"; -App::$strings["Remote privacy information not available."] = "Privacy-informatie op afstand niet beschikbaar."; -App::$strings["Visible to:"] = "Zichtbaar voor:"; -App::$strings["Import completed"] = "Importeren voltooid"; -App::$strings["Import Items"] = "Importeer items"; -App::$strings["Use this form to import existing posts and content from an export file."] = "Gebruik dit formulier om bestaande berichten en andere inhoud vanuit een exportbestand te importeren."; -App::$strings["Total invitation limit exceeded."] = "Limiet voor aantal uitnodigingen overschreden."; -App::$strings["%s : Not a valid email address."] = "%s : Geen geldig e-mailadres."; -App::$strings["Please join us on \$Projectname"] = "Uitnodiging voor \$Projectname"; -App::$strings["Invitation limit exceeded. Please contact your site administrator."] = "Limiet voor aantal uitnodigingen overschreden. Neem contact op met je hub-beheerder."; -App::$strings["%s : Message delivery failed."] = "%s: Aflevering bericht mislukt."; -App::$strings["%d message sent."] = array( - 0 => "%d bericht verzonden.", - 1 => "%d berichten verzonden.", -); -App::$strings["You have no more invitations available"] = "Je hebt geen uitnodigingen meer beschikbaar"; -App::$strings["Send invitations"] = "Uitnodigingen verzenden"; -App::$strings["Enter email addresses, one per line:"] = "Voer e-mailadressen in, één per regel:"; -App::$strings["Your message:"] = "Jouw bericht:"; -App::$strings["Please join my community on \$Projectname."] = "Hierbij nodig ik je uit om mij, en andere vrienden en kennissen, op \$Projectname te vergezellen. Lees meer over \$Projectname op http://hubzilla.org"; -App::$strings["You will need to supply this invitation code:"] = "Je moet deze uitnodigingscode opgeven:"; -App::$strings["1. Register at any \$Projectname location (they are all inter-connected)"] = "1. Registreer je op een willekeurige \$Projectname-hub (ze zijn allemaal onderling met elkaar verbonden):"; -App::$strings["2. Enter my \$Projectname network address into the site searchbar."] = "2. Nadat je bent ingelogd en een kanaal hebt aangemaakt kan je mijn \$Projectname-kanaaladres in het zoekveld invullen:"; -App::$strings["or visit"] = "of bezoek"; -App::$strings["3. Click [Connect]"] = "3. Klik op [+ Verbinden]"; -App::$strings["Location not found."] = "Locatie niet gevonden."; -App::$strings["Location lookup failed."] = "Opzoeken locatie mislukt"; -App::$strings["Please select another location to become primary before removing the primary location."] = "Kies eerst een andere primaire locatie alvorens de huidige primaire locatie te verwijderen."; -App::$strings["Syncing locations"] = "Locaties synchronizeren"; -App::$strings["No locations found."] = "Geen locaties gevonden."; -App::$strings["Manage Channel Locations"] = "Kanaallocaties beheren"; -App::$strings["Primary"] = "Primair"; -App::$strings["Drop"] = "Verwijderen"; -App::$strings["Sync Now"] = "Nu synchroniseren"; -App::$strings["Please wait several minutes between consecutive operations."] = "Wacht enkele minuten tussen opeenvolgende handelingen."; -App::$strings["When possible, drop a location by logging into that website/hub and removing your channel."] = "Wij adviseren, wanneer dit (nog) mogelijk is, de locatie te verwijderen door op de hub van de kloon in te loggen en het kanaal daar te verwijderen."; -App::$strings["Use this form to drop the location if the hub is no longer operating."] = "Gebruik dit formulier om de locatie te verwijderen wanneer de hub van de kloon niet meer operationeel is."; -App::$strings["Hub not found."] = "Hub niet gevonden."; -App::$strings["Unable to lookup recipient."] = "Niet in staat om ontvanger op te zoeken."; -App::$strings["Unable to communicate with requested channel."] = "Niet in staat om met het aangevraagde kanaal te communiceren."; -App::$strings["Cannot verify requested channel."] = "Kan opgevraagd kanaal niet verifieren"; -App::$strings["Selected channel has private message restrictions. Send failed."] = "Gekozen kanaal heeft restricties voor privéberichten. Verzenden mislukt."; -App::$strings["Messages"] = "Berichten"; -App::$strings["Message recalled."] = "Bericht ingetrokken."; -App::$strings["Conversation removed."] = "Conversatie verwijderd"; -App::$strings["Expires YYYY-MM-DD HH:MM"] = "Verloopt op DD-MM-YYYY om HH:MM"; -App::$strings["Requested channel is not in this network"] = "Opgevraagd kanaal is niet in dit netwerk beschikbaar"; -App::$strings["Send Private Message"] = "Privébericht versturen"; -App::$strings["To:"] = "Aan:"; -App::$strings["Subject:"] = "Onderwerp:"; -App::$strings["Attach file"] = "Bestand toevoegen"; -App::$strings["Send"] = "Verzenden"; -App::$strings["Set expiration date"] = "Verloopdatum instellen"; -App::$strings["Delete message"] = "Bericht verwijderen"; -App::$strings["Delivery report"] = "Afleveringsrapport"; -App::$strings["Recall message"] = "Bericht intrekken"; -App::$strings["Message has been recalled."] = "Bericht is ingetrokken."; -App::$strings["Delete Conversation"] = "Verwijder conversatie"; -App::$strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Geen veilige communicatie beschikbaar. Mogelijk kan je reageren op de kanaalpagina van de afzender."; -App::$strings["Send Reply"] = "Antwoord versturen"; -App::$strings["Your message for %s (%s):"] = "Jouw privébericht aan %s (%s):"; -App::$strings["You have created %1$.0f of %2$.0f allowed channels."] = "Je hebt %1$.0f van totaal %2$.0f toegestane kanalen aangemaakt."; -App::$strings["Create a new channel"] = "Nieuw kanaal aanmaken"; -App::$strings["Channel Manager"] = "Kanaalbeheer"; -App::$strings["Current Channel"] = "Huidig kanaal"; -App::$strings["Switch to one of your channels by selecting it."] = "Activeer een van jouw andere kanalen door er op te klikken."; -App::$strings["Default Channel"] = "Standaardkanaal"; -App::$strings["Make Default"] = "Als standaard instellen"; -App::$strings["%d new messages"] = "%d nieuwe berichten"; -App::$strings["%d new introductions"] = "%d nieuwe connectieverzoeken"; -App::$strings["Delegated Channel"] = "Uitbesteed kanaal"; -App::$strings["Unable to update menu."] = "Niet in staat om menu aan te passen"; -App::$strings["Unable to create menu."] = "Niet in staat om menu aan te maken."; -App::$strings["Menu Name"] = "Menunaam"; -App::$strings["Unique name (not visible on webpage) - required"] = "Unieke naam vereist (niet zichtbaar op webpagina)"; -App::$strings["Menu Title"] = "Menutitel"; -App::$strings["Visible on webpage - leave empty for no title"] = "Zichtbaar op webpagina (leeg laten voor geen titel)"; -App::$strings["Allow Bookmarks"] = "Bladwijzers toestaan"; -App::$strings["Menu may be used to store saved bookmarks"] = "Menu kan gebruikt worden om bladwijzers in op te slaan"; -App::$strings["Submit and proceed"] = "Opslaan en doorgaan"; -App::$strings["Menus"] = "Menu's"; -App::$strings["Bookmarks allowed"] = "Bladwijzers toegestaan"; -App::$strings["Delete this menu"] = "Menu verwijderen"; -App::$strings["Edit menu contents"] = "Bewerk de inhoud van het menu"; -App::$strings["Edit this menu"] = "Dit menu bewerken"; -App::$strings["Menu could not be deleted."] = "Menu kon niet verwijderd worden."; -App::$strings["Menu not found."] = "Menu niet gevonden."; -App::$strings["Edit Menu"] = "Menu bewerken"; -App::$strings["Add or remove entries to this menu"] = "Items aan dit menu toevoegen of verwijder"; -App::$strings["Menu name"] = "Naam van menu"; -App::$strings["Must be unique, only seen by you"] = "Moet uniek zijn en is alleen zichtbaar voor jou."; -App::$strings["Menu title"] = "Titel van menu"; -App::$strings["Menu title as seen by others"] = "Titel van menu zoals anderen dat zien."; -App::$strings["Allow bookmarks"] = "Bladwijzers toestaan"; -App::$strings["Not found."] = "Niet gevonden."; -App::$strings["No valid account found."] = "Geen geldige account gevonden."; -App::$strings["Password reset request issued. Check your email."] = "Het verzoek om je wachtwoord opnieuw in te stellen is behandeld. Controleer je e-mail."; -App::$strings["Site Member (%s)"] = "Lid van hub (%s)"; -App::$strings["Password reset requested at %s"] = "Verzoek tot het opnieuw instellen van een wachtwoord op %s is ingediend"; -App::$strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Het verzoek kon niet worden geverifieerd. (Mogelijk heb je al eerder een verzoek ingediend.) Opnieuw instellen van wachtwoord is mislukt."; -App::$strings["Password Reset"] = "Wachtwoord vergeten?"; -App::$strings["Your password has been reset as requested."] = "Jouw wachtwoord is opnieuw ingesteld zoals je had verzocht."; -App::$strings["Your new password is"] = "Jouw nieuwe wachtwoord is"; -App::$strings["Save or copy your new password - and then"] = "Kopieer of sla je nieuwe wachtwoord op - en"; -App::$strings["click here to login"] = "klik dan hier om in te loggen"; -App::$strings["Your password may be changed from the Settings page after successful login."] = "Jouw wachtwoord kan worden veranderd onder instellingen, nadat je succesvol bent ingelogd."; -App::$strings["Your password has changed at %s"] = "Jouw wachtwoord op %s is veranderd"; -App::$strings["Forgot your Password?"] = "Wachtwoord vergeten?"; -App::$strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Voer je e-mailadres in en verstuur deze om je wachtwoord opnieuw in te stellen. Controleer hierna hier je e-mail voor verdere instructies."; -App::$strings["Email Address"] = "E-mailadres"; -App::$strings["Reset"] = "Opnieuw instellen"; -App::$strings["__ctx:mood__ %1\$s is %2\$s"] = "%1\$s is %2\$s"; -App::$strings["Mood"] = "Stemming"; -App::$strings["Set your current mood and tell your friends"] = "Noteer je huidige stemming en toon het aan je connecties"; -App::$strings["No such group"] = "Collectie niet gevonden"; -App::$strings["No such channel"] = "Niet zo'n kanaal"; -App::$strings["forum"] = "forum"; -App::$strings["Search Results For:"] = "Zoekresultaten voor:"; -App::$strings["Privacy group is empty"] = "Privacygroep is leeg"; -App::$strings["Privacy group: "] = "Privacygroep: "; -App::$strings["Invalid connection."] = "Ongeldige connectie."; -App::$strings["No more system notifications."] = "Geen systeemnotificaties meer."; -App::$strings["System Notifications"] = "Systeemnotificaties"; -App::$strings["Profile Match"] = "Profielovereenkomst"; -App::$strings["No keywords to match. Please add keywords to your default profile."] = "Je hebt geen trefwoorden waarmee overeenkomsten gevonden kunnen worden. Voeg enkele trefwoorden aan je standaardprofiel toe."; -App::$strings["is interested in:"] = "is geïnteresseerd in:"; -App::$strings["No matches"] = "Geen overeenkomsten"; -App::$strings["Posts and comments"] = "Berichten en reacties"; -App::$strings["Only posts"] = "Alleen berichten"; -App::$strings["Insufficient permissions. Request redirected to profile page."] = "Onvoldoende permissies. Doorgestuurd naar profielpagina."; -App::$strings["Unable to create element."] = "Niet in staat om onderdeel aan te maken."; -App::$strings["Unable to update menu element."] = "Menu-onderdeel kan niet worden geüpdatet."; -App::$strings["Unable to add menu element."] = "Menu-onderdeel kan niet worden toegevoegd."; -App::$strings["Menu Item Permissions"] = "Permissies menu-item"; -App::$strings["(click to open/close)"] = "(klik om te openen/sluiten)"; -App::$strings["Link Name"] = "Linknaam"; -App::$strings["Link or Submenu Target"] = "Linkdoel of submenu-doel"; -App::$strings["Enter URL of the link or select a menu name to create a submenu"] = "Geef de URL van de link of kies een menunaam om een submenu aan te maken"; -App::$strings["Use magic-auth if available"] = "Gebruik magic-auth wanneer beschikbaar"; -App::$strings["Open link in new window"] = "Open link in nieuw venster"; -App::$strings["Order in list"] = "Volgorde in lijst"; -App::$strings["Higher numbers will sink to bottom of listing"] = "Hogere nummers komen onderaan de lijst terecht"; -App::$strings["Submit and finish"] = "Opslaan en afsluiten"; -App::$strings["Submit and continue"] = "Opslaan en doorgaan"; -App::$strings["Menu:"] = "Menu:"; -App::$strings["Link Target"] = "Linkdoel"; -App::$strings["Edit menu"] = "Menu bewerken"; -App::$strings["Edit element"] = "Onderdeel bewerken"; -App::$strings["Drop element"] = "Onderdeel verwijderen"; -App::$strings["New element"] = "Nieuw element"; -App::$strings["Edit this menu container"] = "Deze menu-container bewerken"; -App::$strings["Add menu element"] = "Menu-element toevoegen"; -App::$strings["Delete this menu item"] = "Dit menu-item verwijderen"; -App::$strings["Edit this menu item"] = "Dit menu-item bewerken"; -App::$strings["Menu item not found."] = "Menu-item niet gevonden."; -App::$strings["Menu item deleted."] = "Menu-item verwijderd."; -App::$strings["Menu item could not be deleted."] = "Menu-item kon niet worden verwijderd."; -App::$strings["Edit Menu Element"] = "Menu-element bewerken"; -App::$strings["Link text"] = "Linktekst"; +App::$strings["sent you a private message"] = "stuurde jou een privébericht"; +App::$strings["added your channel"] = "voegde jouw kanaal toe"; +App::$strings["g A l F d"] = "G:i, l d F"; +App::$strings["[today]"] = "[vandaag]"; +App::$strings["posted an event"] = "plaatste een gebeurtenis"; +App::$strings["Unable to find your hub."] = "Niet in staat om je hub te vinden"; +App::$strings["Post successful."] = "Verzenden bericht geslaagd."; +App::$strings["OpenID protocol error. No ID returned."] = "OpenID-protocolfout. Geen ID terugontvangen."; +App::$strings["Login failed."] = "Inloggen mislukt."; +App::$strings["Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."] = "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."; +App::$strings["This setting requires special processing and editing has been blocked."] = "Deze instelling vereist een speciaal proces en bewerken is geblokkeerd."; +App::$strings["Configuration Editor"] = "Configuratiebewerker"; +App::$strings["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."] = "Waarschuwing: het veranderen van sommige instellingen kunnen jouw kanaal onklaar maken. Verlaat deze pagina, tenzij je weet waar je mee bezig bent en voldoende kennis bezit over hoe je deze functies moet gebruiken. "; +App::$strings["Layout updated."] = "Lay-out bijgewerkt."; +App::$strings["Edit System Page Description"] = "Systeempagina's bewerken"; +App::$strings["Layout not found."] = "Lay-out niet gevonden."; +App::$strings["Module Name:"] = "Modulenaam:"; +App::$strings["Layout Help"] = "Lay-out-hulp"; +App::$strings["Poke"] = "Aanstoten"; +App::$strings["Poke somebody"] = "Iemand aanstoten"; +App::$strings["Poke/Prod"] = "Aanstoten/porren"; +App::$strings["Poke, prod or do other things to somebody"] = "Iemand bijvoorbeeld aanstoten of poren"; +App::$strings["Recipient"] = "Ontvanger"; +App::$strings["Choose what you wish to do to recipient"] = "Kies wat je met de ontvanger wil doen"; +App::$strings["Make this post private"] = "Maak dit bericht privé"; +App::$strings["Fetching URL returns error: %1\$s"] = "Ophalen URL gaf een foutmelding terug: %1\$s"; +App::$strings["Profile not found."] = "Profiel niet gevonden."; +App::$strings["Profile deleted."] = "Profiel verwijderd."; +App::$strings["Profile-"] = "Profiel-"; +App::$strings["New profile created."] = "Nieuw profiel aangemaakt."; +App::$strings["Profile unavailable to clone."] = "Profiel niet beschikbaar om te klonen"; +App::$strings["Profile unavailable to export."] = "Geen profiel beschikbaar om te exporteren"; +App::$strings["Profile Name is required."] = "Profielnaam is vereist"; +App::$strings["Marital Status"] = "Huwelijke status"; +App::$strings["Romantic Partner"] = "Romantische partner"; +App::$strings["Likes"] = "Houdt van"; +App::$strings["Dislikes"] = "Houdt niet van"; +App::$strings["Work/Employment"] = "Werk/arbeid"; +App::$strings["Religion"] = "Religie"; +App::$strings["Political Views"] = "Politieke overtuigingen"; +App::$strings["Sexual Preference"] = "Seksuele voorkeur"; +App::$strings["Homepage"] = "Homepage"; +App::$strings["Interests"] = "Interesses"; +App::$strings["Profile updated."] = "Profiel bijgewerkt"; +App::$strings["Hide your connections list from viewers of this profile"] = "Laat de lijst met connecties niet aan bezoekers van dit profiel zien."; +App::$strings["Edit Profile Details"] = "Profiel bewerken"; +App::$strings["View this profile"] = "Profiel weergeven"; +App::$strings["Edit visibility"] = "Zichtbaarheid bewerken"; +App::$strings["Profile Tools"] = "Hulpmiddelen"; +App::$strings["Change cover photo"] = "Omslagfoto wijzigen"; +App::$strings["Change profile photo"] = "Profielfoto veranderen"; +App::$strings["Create a new profile using these settings"] = "Een nieuw profiel aanmaken met dit profiel als basis"; +App::$strings["Clone this profile"] = "Dit profiel klonen"; +App::$strings["Delete this profile"] = "Dit profiel verwijderen"; +App::$strings["Add profile things"] = "Dingen aan je profiel toevoegen"; +App::$strings["Personal"] = "Persoonlijk"; +App::$strings["Relation"] = "Relatie"; +App::$strings["Miscellaneous"] = "Diversen"; +App::$strings["Import profile from file"] = "Profiel vanuit bestand importeren"; +App::$strings["Export profile to file"] = "Profiel naar bestand exporteren"; +App::$strings["Your gender"] = "Jouw geslacht"; +App::$strings["Marital status"] = "Burgerlijke staat"; +App::$strings["Sexual preference"] = "Seksuele voorkeur"; +App::$strings["Profile name"] = "Profielnaam"; +App::$strings["This is your default profile."] = "Dit is jouw standaardprofiel"; +App::$strings["Your full name"] = "Jouw volledige naam"; +App::$strings["Title/Description"] = "Titel/omschrijving"; +App::$strings["Street address"] = "Straat en huisnummer"; +App::$strings["Locality/City"] = "Woonplaats"; +App::$strings["Region/State"] = "Provincie/gewest/deelstaat"; +App::$strings["Postal/Zip code"] = "Postcode"; +App::$strings["Country"] = "Land"; +App::$strings["Who (if applicable)"] = "Wie (wanneer van toepassing)"; +App::$strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Voorbeelden: petra123, Petra Jansen, petra@voorbeeld.nl"; +App::$strings["Since (date)"] = "Sinds (datum)"; +App::$strings["Tell us about yourself"] = "Vertel ons iets over jezelf"; +App::$strings["Hometown"] = "Oorspronkelijk uit"; +App::$strings["Political views"] = "Politieke overtuigingen"; +App::$strings["Religious views"] = "Religieuze overtuigingen"; +App::$strings["Keywords used in directory listings"] = "Trefwoorden voor in de kanalengids"; +App::$strings["Example: fishing photography software"] = "Voorbeeld: muziek, fotografie, software"; +App::$strings["Musical interests"] = "Muzikale interesses"; +App::$strings["Books, literature"] = "Boeken/literatuur"; +App::$strings["Television"] = "Televisie"; +App::$strings["Film/Dance/Culture/Entertainment"] = "Film/dans/cultuur/entertainment"; +App::$strings["Hobbies/Interests"] = "Hobby's/interesses"; +App::$strings["Love/Romance"] = "Liefde/romantiek"; +App::$strings["School/Education"] = "School/opleiding"; +App::$strings["Contact information and social networks"] = "Contactinformatie en sociale netwerken"; +App::$strings["My other channels"] = "Mijn andere kanalen"; +App::$strings["Profile Image"] = "Profielfoto"; +App::$strings["Edit Profiles"] = "Bewerk profielen"; +App::$strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Vernieuw de pagina met shift+R of shift+F5, of leeg je browserbuffer, wanneer de nieuwe foto niet meteen wordt weergegeven."; +App::$strings["Upload Profile Photo"] = "Profielfoto uploaden"; +App::$strings["Invalid profile identifier."] = "Ongeldige profiel-identificator"; +App::$strings["Profile Visibility Editor"] = "Zichtbaarheid profiel "; +App::$strings["Profile"] = "Profiel"; +App::$strings["Click on a contact to add or remove."] = "Klik op een connectie om deze toe te voegen of te verwijderen"; +App::$strings["Visible To"] = "Zichtbaar voor"; +App::$strings["Public Hubs"] = "Openbare hubs"; +App::$strings["The listed hubs allow public registration for the \$Projectname network. All hubs in the network are interlinked so membership on any of them conveys membership in the network as a whole. Some hubs may require subscription or provide tiered service plans. The hub itself may provide additional details."] = "Op de hier weergegeven hubs kan iedereen zich voor het \$Projectname-netwerk aanmelden. Alle hubs in het netwerk zijn met elkaar verbonden, dus maakt het qua lidmaatschap niet uit waar je je aanmeldt. Op sommige hubs heb je eerst goedkeuring nodig en sommige hubs vereisen een financiële tegemoetkoming voor bepaalde uitbreidingen. Mogelijk wordt hierover op de hub zelf meer informatie gegeven."; +App::$strings["Hub URL"] = "Hub-URL"; +App::$strings["Access Type"] = "Toegangs-
 type"; +App::$strings["Registration Policy"] = "Registratie-
 beleid"; +App::$strings["Stats"] = "Stats"; +App::$strings["Software"] = "Software"; +App::$strings["Ratings"] = "Beoordelingen"; +App::$strings["Rate"] = "Beoordeel"; +App::$strings["Website:"] = "Website:"; +App::$strings["Remote Channel [%s] (not yet known on this site)"] = "Kanaal op afstand [%s] (nog niet op deze hub bekend)"; +App::$strings["Rating (this information is public)"] = "Beoordeling (deze informatie is openbaar)"; +App::$strings["Optionally explain your rating (this information is public)"] = "Verklaar jouw beoordeling (niet verplicht, deze informatie is openbaar)"; +App::$strings["No ratings"] = "Geen beoordelingen"; +App::$strings["Rating: "] = "Beoordeling: "; +App::$strings["Website: "] = "Website: "; +App::$strings["Description: "] = "Omschrijving: "; App::$strings["Theme settings updated."] = "Thema-instellingen bijgewerkt."; App::$strings["# Accounts"] = "# accounts"; App::$strings["# blocked accounts"] = "# geblokkeerde accounts"; @@ -1011,91 +1031,19 @@ App::$strings["(In addition to basic fields)"] = "(als toevoeging op de standaar App::$strings["All available fields"] = "Alle beschikbare velden"; App::$strings["Custom Fields"] = "Extra (handmatig toegevoegde) velden"; App::$strings["Create Custom Field"] = "Extra velden aanmaken"; -App::$strings["Name or caption"] = "Naam"; -App::$strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\""] = "Voorbeelden: \"Jan Pietersen\", \"Willems weblog\", \"Computerforum\""; -App::$strings["Choose a short nickname"] = "Korte bijnaam"; -App::$strings["Your nickname will be used to create an easy to remember channel address e.g. nickname%s"] = "Deze bijnaam wordt gebruikt om een makkelijk te onthouden kanaaladres van jouw kanaal aan te maken, die je dan met anderen kunt delen. Bijvoorbeeld: bijnaam%s"; -App::$strings["Channel role and privacy"] = "Kanaaltype en privacy"; -App::$strings["Select a channel role with your privacy requirements."] = "Kies een kanaaltype met het door jou gewenste privacyniveau."; -App::$strings["Read more about roles"] = "Lees meer over kanaaltypes"; -App::$strings["Create Channel"] = "Kanaal aanmaken"; -App::$strings["A channel is your identity on this network. It can represent a person, a blog, or a forum to name a few. Channels can make connections with other channels to share information with highly detailed permissions."] = "Een kanaal is jouw identiteit in dit netwerk. Het kan bijvoorbeeld een persoon, een blog of een forum vertegenwoordigen. Door met elkaar te verbinden kunnen kanalen, met behulp van uitgebreide permissies, informatie uitwisselen."; -App::$strings["or import an existing channel from another location."] = "Of importeer een bestaand kanaal vanaf een andere locatie"; -App::$strings["sent you a private message"] = "stuurde jou een privébericht"; -App::$strings["added your channel"] = "voegde jouw kanaal toe"; -App::$strings["g A l F d"] = "G:i, l d F"; -App::$strings["[today]"] = "[vandaag]"; -App::$strings["posted an event"] = "plaatste een gebeurtenis"; -App::$strings["Invalid request identifier."] = "Ongeldige verzoek identificator (request identifier)"; -App::$strings["Discard"] = "Annuleren"; -App::$strings["Mark all system notifications seen"] = "Markeer alle systeemnotificaties als bekeken"; -App::$strings["Poke"] = "Aanstoten"; -App::$strings["Poke somebody"] = "Iemand aanstoten"; -App::$strings["Poke/Prod"] = "Aanstoten/porren"; -App::$strings["Poke, prod or do other things to somebody"] = "Iemand bijvoorbeeld aanstoten of poren"; -App::$strings["Recipient"] = "Ontvanger"; -App::$strings["Choose what you wish to do to recipient"] = "Kies wat je met de ontvanger wil doen"; -App::$strings["Make this post private"] = "Maak dit bericht privé"; -App::$strings["Unable to find your hub."] = "Niet in staat om je hub te vinden"; -App::$strings["Post successful."] = "Verzenden bericht geslaagd."; -App::$strings["OpenID protocol error. No ID returned."] = "OpenID-protocolfout. Geen ID terugontvangen."; -App::$strings["Login failed."] = "Inloggen mislukt."; -App::$strings["Invalid profile identifier."] = "Ongeldige profiel-identificator"; -App::$strings["Profile Visibility Editor"] = "Zichtbaarheid profiel "; -App::$strings["Profile"] = "Profiel"; -App::$strings["Click on a contact to add or remove."] = "Klik op een connectie om deze toe te voegen of te verwijderen"; -App::$strings["Visible To"] = "Zichtbaar voor"; -App::$strings["This setting requires special processing and editing has been blocked."] = "Deze instelling vereist een speciaal proces en bewerken is geblokkeerd."; -App::$strings["Configuration Editor"] = "Configuratiebewerker"; -App::$strings["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."] = "Waarschuwing: het veranderen van sommige instellingen kunnen jouw kanaal onklaar maken. Verlaat deze pagina, tenzij je weet waar je mee bezig bent en voldoende kennis bezit over hoe je deze functies moet gebruiken. "; -App::$strings["Fetching URL returns error: %1\$s"] = "Ophalen URL gaf een foutmelding terug: %1\$s"; -App::$strings["Version %s"] = "Versie %s"; -App::$strings["Installed plugins/addons/apps:"] = "Ingeschakelde plugins en apps:"; -App::$strings["No installed plugins/addons/apps"] = "Geen ingeschakelde plugins en apps"; -App::$strings["This is a hub of \$Projectname - a global cooperative network of decentralized privacy enhanced websites."] = "Dit is een \$Projectname-hub - \$Projectname is een wereldwijd coöperatief netwerk van gedecentraliseerde websites (hubs) met verbeterde privacy."; -App::$strings["Tag: "] = "Tag: "; -App::$strings["Last background fetch: "] = "Meest recente achtergrond-fetch:"; -App::$strings["Current load average: "] = "Gemiddelde systeembelasting is nu:"; -App::$strings["Running at web location"] = "Draaiend op weblocatie"; -App::$strings["Please visit hubzilla.org to learn more about \$Projectname."] = "Bezoek hubzilla.org "; -App::$strings["Bug reports and issues: please visit"] = "Bugrapporten en andere kwesties: bezoek"; -App::$strings["\$projectname issues"] = "\$projectname-issues"; -App::$strings["Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com"] = "Voorstellen, lofbetuigingen, enz. - e-mail \"redmatrix\" at librelist - dot com"; -App::$strings["Site Administrators"] = "Hubbeheerders: "; -App::$strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "We hebben een probleem ontdekt tijdens het inloggen met de OpenID die je hebt verstrekt. Controleer de ID op typefouten."; -App::$strings["The error message was:"] = "Het foutbericht was:"; -App::$strings["Authentication failed."] = "Authenticatie mislukt."; -App::$strings["Remote Authentication"] = "Authenticatie op afstand"; -App::$strings["Enter your channel address (e.g. channel@example.com)"] = "Vul jouw kanaaladres in (bijv. channel@example.com)"; -App::$strings["Authenticate"] = "Authenticeren"; -App::$strings["Public Hubs"] = "Openbare hubs"; -App::$strings["The listed hubs allow public registration for the \$Projectname network. All hubs in the network are interlinked so membership on any of them conveys membership in the network as a whole. Some hubs may require subscription or provide tiered service plans. The hub itself may provide additional details."] = "Op de hier weergegeven hubs kan iedereen zich voor het \$Projectname-netwerk aanmelden. Alle hubs in het netwerk zijn met elkaar verbonden, dus maakt het qua lidmaatschap niet uit waar je je aanmeldt. Op sommige hubs heb je eerst goedkeuring nodig en sommige hubs vereisen een financiële tegemoetkoming voor bepaalde uitbreidingen. Mogelijk wordt hierover op de hub zelf meer informatie gegeven."; -App::$strings["Hub URL"] = "Hub-URL"; -App::$strings["Access Type"] = "Toegangs-
 type"; -App::$strings["Registration Policy"] = "Registratie-
 beleid"; -App::$strings["Stats"] = "Stats"; -App::$strings["Software"] = "Software"; -App::$strings["Ratings"] = "Beoordelingen"; -App::$strings["Rate"] = "Beoordeel"; -App::$strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Vernieuw de pagina met shift+R of shift+F5, of leeg je browserbuffer, wanneer de nieuwe foto niet meteen wordt weergegeven."; -App::$strings["Upload Profile Photo"] = "Profielfoto uploaden"; -App::$strings["Block Name"] = "Bloknaam"; -App::$strings["Blocks"] = "Blokken"; -App::$strings["Block Title"] = "Bloktitel"; -App::$strings["Website:"] = "Website:"; -App::$strings["Remote Channel [%s] (not yet known on this site)"] = "Kanaal op afstand [%s] (nog niet op deze hub bekend)"; -App::$strings["Rating (this information is public)"] = "Beoordeling (deze informatie is openbaar)"; -App::$strings["Optionally explain your rating (this information is public)"] = "Verklaar jouw beoordeling (niet verplicht, deze informatie is openbaar)"; -App::$strings["No ratings"] = "Geen beoordelingen"; -App::$strings["Rating: "] = "Beoordeling: "; -App::$strings["Website: "] = "Website: "; -App::$strings["Description: "] = "Omschrijving: "; -App::$strings["Apps"] = "Apps"; -App::$strings["Title (optional)"] = "Titel (optioneel)"; -App::$strings["Edit Block"] = "Blok bewerken"; -App::$strings["No channel."] = "Geen kanaal."; -App::$strings["Common connections"] = "Veel voorkomende connecties"; -App::$strings["No connections in common."] = "Geen gemeenschappelijke connecties."; +App::$strings["App installed."] = "App geïnstalleerd"; +App::$strings["Malformed app."] = "Misvormde app."; +App::$strings["Embed code"] = "Insluitcode"; +App::$strings["Edit App"] = "App bewerken"; +App::$strings["Create App"] = "App maken"; +App::$strings["Name of app"] = "Naam van app"; +App::$strings["Location (URL) of app"] = "Locatie (URL) van app"; +App::$strings["Photo icon URL"] = "URL van pictogram"; +App::$strings["80 x 80 pixels - optional"] = "80 x 80 pixels (optioneel)"; +App::$strings["Categories (optional, comma separated list)"] = "Categorieën (optioneel, door komma's gescheiden lijst)"; +App::$strings["Version ID"] = "Versie-ID"; +App::$strings["Price of app"] = "Prijs van de app"; +App::$strings["Location (URL) to purchase app"] = "Locatie (URL) om de app aan te schaffen"; App::$strings["Select a bookmark folder"] = "Kies een bladwijzermap"; App::$strings["Save Bookmark"] = "Bladwijzer opslaan"; App::$strings["URL of bookmark"] = "URL van bladwijzer"; @@ -1121,7 +1069,7 @@ App::$strings["no"] = "Nee"; App::$strings["yes"] = "Ja"; App::$strings["Membership on this site is by invitation only."] = "Registreren op deze \$Projectname-hub kan alleen op uitnodiging."; App::$strings["Register"] = "Registreren"; -App::$strings["This site may require email verification after submitting this form. If you are returned to a login page, please check your email for instructions."] = "Mogelijk moet op deze hub eerst jouw e-mail geverifieerd worden. Wanneer je na het indienen van dit formulier op de inlogpagina terecht komt, dan dien je jouw e-mail te controleren voor instructies. Controleer eventueel ook jouw spamfolder."; +App::$strings["Proceed to create your first channel"] = "Volgende stap: aanmaken van jouw eerste kanaal"; App::$strings["Please login."] = "Inloggen."; App::$strings["Account removals are not allowed within 48 hours of changing the account password."] = "Het verwijderen van een account is niet toegestaan binnen 48 uur nadat het wachtwoord is veranderd."; App::$strings["Remove This Account"] = "Verwijder dit account"; @@ -1138,23 +1086,17 @@ App::$strings["This channel will be completely removed from the network. "] = "D App::$strings["Remove this channel and all its clones from the network"] = "Dit kanaal en alle klonen hiervan uit het \$Projectname-netwerk verwijderen"; App::$strings["By default only the instance of the channel located on this hub will be removed from the network"] = "Standaard wordt alleen het kanaal dat zich op deze hub bevindt uit het \$Projectname-netwerk verwijderd"; App::$strings["Remove Channel"] = "Kanaal verwijderen"; -App::$strings["Export Channel"] = "Kanaal exporteren"; -App::$strings["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."] = "Exporteer de basisinformatie van jouw kanaal naar een bestand. Dit fungeert als een back-up van jouw connecties, permissies, profiel en basisgegevens, die gebruikt kan worden om op een nieuwe hub jouw gegevens te importeren. Deze back-up bevat echter niet de inhoud van jouw kanaal."; -App::$strings["Export Content"] = "Inhoud exporteren"; -App::$strings["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."] = "Exporteer informatie en recente inhoud van jouw kanaal naar een JSON-back-up, wat kan worden gebruikt om jouw kanaal te herstellen of te importeren op een andere hub. Dit slaat al jouw connecties, permissies, profielgegevens en enkele maanden aan inhoud van jouw kanaal op. Dit bestand kan ZEER groot worden. Wees geduldig - het kan enkele minuten duren voordat de download begint."; -App::$strings["Export your posts from a given year."] = "Exporteer jouw berichten uit een bepaald jaar."; -App::$strings["You may also export your posts and conversations for a particular year or month. Adjust the date in your browser location bar to select other dates. If the export fails (possibly due to memory exhaustion on your server hub), please try again selecting a more limited date range."] = "Je kan ook berichten en conversaties uit een bepaald jaar of van een bepaalde maand exporteren. Verander de datum in de adresbalk van jouw webbrowser om andere jaren en maanden te selecteren. Wanneer het exporteren mislukt (waarschijnlijk door een gebrek aan beschikbaar servergeheugen), probeer het dan nogmaals met een beperkter tijdvak."; -App::$strings["To select all posts for a given year, such as this year, visit %2\$s"] = "Bezoek %2\$s om alle berichten van bijvoorbeeld dit jaar te selecteren. "; -App::$strings["To select all posts for a given month, such as January of this year, visit %2\$s"] = "Bezoek %2\$s om alle berichten van bijvoorbeeld januari dit jaar te selecteren."; -App::$strings["These content files may be imported or restored by visiting %2\$s on any site containing your channel. For best results please import or restore these in date order (oldest first)."] = "Deze back-up-bestanden kunnen geïmporteerd of hersteld worden door op jouw hub en met jouw kanaal %2\$s te bezoeken. Voor het beste resultaat kan je de bestanden in chronologische volgorde importeren of herstellen."; +App::$strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "We hebben een probleem ontdekt tijdens het inloggen met de OpenID die je hebt verstrekt. Controleer de ID op typefouten."; +App::$strings["The error message was:"] = "Het foutbericht was:"; +App::$strings["Authentication failed."] = "Authenticatie mislukt."; +App::$strings["Remote Authentication"] = "Authenticatie op afstand"; +App::$strings["Enter your channel address (e.g. channel@example.com)"] = "Vul jouw kanaaladres in (bijv. channel@example.com)"; +App::$strings["Authenticate"] = "Authenticeren"; App::$strings["Items tagged with: %s"] = "Items getagd met %s"; App::$strings["Search results for: %s"] = "Zoekresultaten voor %s"; App::$strings["No service class restrictions found."] = "Geen abonnementsbeperkingen gevonden."; App::$strings["Name is required"] = "Naam is vereist"; App::$strings["Key and Secret are required"] = "Key en secret zijn vereist"; -App::$strings["This channel is limited to %d tokens"] = "Dit kanaal heeft een limiet van %d tokens"; -App::$strings["Name and Password are required."] = "Naam en wachtwoord zijn vereist"; -App::$strings["Token saved."] = "Token opgeslagen."; App::$strings["Not valid email."] = "Geen geldig e-mailadres."; App::$strings["Protected email address. Cannot change to that email."] = "Beschermd e-mailadres. Kan dat e-mailadres niet gebruiken."; App::$strings["System failure storing new email. Please try again."] = "Systeemfout opslaan van nieuwe e-mail. Probeer het nog een keer."; @@ -1187,12 +1129,6 @@ App::$strings["Confirm New Password"] = "Nieuw wachtwoord bevestigen"; App::$strings["Leave password fields blank unless changing"] = "Laat de wachtwoordvelden leeg, behalve wanneer je deze wil veranderen"; App::$strings["Email Address:"] = "E-mailadres:"; App::$strings["Remove this account including all its channels"] = "Dit account en al zijn kanalen verwijderen"; -App::$strings["Use this form to create temporary access identifiers to share things with non-members. These identities may be used in Access Control Lists and visitors may login using these credentials to access the private content."] = "Gebruik dit formulier om tijdelijke identiteiten aan te maken, waarmee je bepaalde informatie met niet-leden kan delen. Deze identiteiten kunnen onder Permissies (handmatige selectie) worden gebruikt. Gasten kunnen inloggen met onderstaande gegevens om zo toegang te krijgen tot de privéinhoud."; -App::$strings["You may also provide dropbox style access links to friends and associates by adding the Login Password to any specific site URL as shown. Examples:"] = "Je kan ook dropbox-achtige links aan mensen geven door bovenstaand wachtwoord op onderstaande manier aan een hub-URL toe te voegen. Voorbeelden:"; -App::$strings["Guest Access Tokens"] = "Gasttoegang"; -App::$strings["Login Name"] = "Inlognaam"; -App::$strings["Login Password"] = "Wachtwoord:"; -App::$strings["Expires (yyyy-mm-dd)"] = "Geldig t/m (yyyy-mm-dd)"; App::$strings["Additional Features"] = "Extra functies"; App::$strings["Connector Settings"] = "Instellingen externe koppelingen"; App::$strings["No special theme for mobile devices"] = "Geen speciaal thema voor mobiele apparaten"; @@ -1355,6 +1291,7 @@ App::$strings["GD graphics PHP module"] = "GD graphics PHP module"; App::$strings["OpenSSL PHP module"] = "OpenSSL PHP module"; App::$strings["mysqli or postgres PHP module"] = "mysqli or postgres PHP module"; App::$strings["mb_string PHP module"] = "mb_string PHP module"; +App::$strings["mcrypt PHP module"] = "mcrypt PHP module"; App::$strings["xml PHP module"] = "xml PHP module"; App::$strings["Apache mod_rewrite module"] = "Apache mod_rewrite module"; App::$strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Error: Apache webserver mod-rewrite module is required but not installed."; @@ -1365,6 +1302,7 @@ App::$strings["Error: GD graphics PHP module with JPEG support required but not App::$strings["Error: openssl PHP module required but not installed."] = "Error: openssl PHP module required but not installed."; App::$strings["Error: mysqli or postgres PHP module required but neither are installed."] = "Error: mysqli or postgres PHP module required but neither are installed."; App::$strings["Error: mb_string PHP module required but not installed."] = "Error: mb_string PHP module required but not installed."; +App::$strings["Error: mcrypt PHP module required but not installed."] = "Error: mcrypt PHP module required but not installed."; App::$strings["Error: xml PHP module required for DAV but not installed."] = "Error: xml PHP module required for DAV but not installed."; App::$strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."; App::$strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."; @@ -1376,7 +1314,7 @@ App::$strings["In order to store these compiled templates, the web server needs App::$strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."; App::$strings["Note: as a security measure, you should give the web server write access to %s only--not the template files (.tpl) that it contains."] = "Note: as a security measure, you should give the web server write access to %s only--not the template files (.tpl) that it contains."; App::$strings["%s is writable"] = "%s is writable"; -App::$strings["This software 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"] = "This software 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"; +App::$strings["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"] = "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"; App::$strings["store is writable"] = "store is writable"; App::$strings["SSL certificate cannot be validated. Fix certificate or disable https access to this site."] = "SSL certificate cannot be validated. Fix certificate or disable https access to this hub."; App::$strings["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!"] = "If you have https access to your hub or allow connections to TCP port 443 (the https: port), you MUST use a browser-valid certificate. You MUST NOT use self-signed certificates!"; @@ -1384,7 +1322,6 @@ App::$strings["This restriction is incorporated because public posts from you ma App::$strings["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."] = "If your certificate is not recognized, members of other hubs (who may themselves have valid certificates) will get a warning message on their own hub complaining about security issues."; App::$strings["This can cause usability issues elsewhere (not just on your own site) so we must insist on this requirement."] = "This can cause usability issues elsewhere (not just on your own hub) so we must insist on this requirement."; App::$strings["Providers are available that issue free certificates which are browser-valid."] = "Providers are available that issue free certificates which are browser-valid."; -App::$strings["If you are confident that the certificate is valid and signed by a trusted authority, check to see if you have failed to install an intermediate cert. These are not normally required by browsers, but are required for server-to-server communications."] = "If you are confident that the certificate is valid and signed by a trusted authority, check to see if you have failed to install an intermediate cert. These are not normally required by browsers, but are required for server-to-server communications."; App::$strings["SSL certificate validation"] = "SSL certificate validation"; App::$strings["Url rewrite in .htaccess is not working. Check your server configuration.Test: "] = "Url rewrite in .htaccess is not working. Check your server configuration.Test: "; App::$strings["Url rewrite is working"] = "Url rewrite is working"; @@ -1396,20 +1333,19 @@ App::$strings["Files: shared with me"] = "Bestanden: met mij gedeeld"; App::$strings["NEW"] = "NIEUW"; App::$strings["Remove all files"] = "Verwijder alle bestanden"; App::$strings["Remove this file"] = "Verwijder dit bestand"; -App::$strings["Thing updated"] = "Ding bijgewerkt"; -App::$strings["Object store: failed"] = "Opslaan van ding mislukt"; -App::$strings["Thing added"] = "Ding toegevoegd"; -App::$strings["OBJ: %1\$s %2\$s %3\$s"] = "OBJ: %1\$s %2\$s %3\$s"; -App::$strings["Show Thing"] = "Ding weergeven"; -App::$strings["item not found."] = "Item niet gevonden"; -App::$strings["Edit Thing"] = "Ding bewerken"; -App::$strings["Select a profile"] = "Kies een profiel"; -App::$strings["Post an activity"] = "Plaats een bericht"; -App::$strings["Only sends to viewers of the applicable profile"] = "Toont dit alleen aan diegene die het gekozen profiel mogen zien."; -App::$strings["Name of thing e.g. something"] = "Naam van ding"; -App::$strings["URL of thing (optional)"] = "URL van ding (optioneel)"; -App::$strings["URL for photo of thing (optional)"] = "URL voor foto van ding (optioneel)"; -App::$strings["Add Thing to your Profile"] = "Ding aan je profiel toevoegen"; +App::$strings["Version %s"] = "Versie %s"; +App::$strings["Installed plugins/addons/apps:"] = "Ingeschakelde plugins en apps:"; +App::$strings["No installed plugins/addons/apps"] = "Geen ingeschakelde plugins en apps"; +App::$strings["This is a hub of \$Projectname - a global cooperative network of decentralized privacy enhanced websites."] = "Dit is een \$Projectname-hub - \$Projectname is een wereldwijd coöperatief netwerk van gedecentraliseerde websites (hubs) met verbeterde privacy."; +App::$strings["Tag: "] = "Tag: "; +App::$strings["Last background fetch: "] = "Meest recente achtergrond-fetch:"; +App::$strings["Current load average: "] = "Gemiddelde systeembelasting is nu:"; +App::$strings["Running at web location"] = "Draaiend op weblocatie"; +App::$strings["Please visit hubzilla.org to learn more about \$Projectname."] = "Bezoek hubzilla.org "; +App::$strings["Bug reports and issues: please visit"] = "Bugrapporten en andere kwesties: bezoek"; +App::$strings["\$projectname issues"] = "\$projectname-issues"; +App::$strings["Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com"] = "Voorstellen, lofbetuigingen, enz. - e-mail \"redmatrix\" at librelist - dot com"; +App::$strings["Site Administrators"] = "Hubbeheerders: "; App::$strings["Failed to create source. No channel selected."] = "Aanmaken bron mislukt. Geen kanaal geselecteerd."; App::$strings["Source created."] = "Bron aangemaakt."; App::$strings["Source updated."] = "Bron aangemaakt."; @@ -1437,38 +1373,60 @@ App::$strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s heeft het %3\$s App::$strings["Tag removed"] = "Tag verwijderd"; App::$strings["Remove Item Tag"] = "Verwijder item-tag"; App::$strings["Select a tag to remove: "] = "Kies een tag om te verwijderen"; -App::$strings["Webpages"] = "Webpagina's"; -App::$strings["Actions"] = "Acties"; -App::$strings["Page Link"] = "Paginalink"; -App::$strings["Page Title"] = "Paginatitel"; -App::$strings["Not found"] = "Niet gevonden"; -App::$strings["Wiki"] = "Wiki"; -App::$strings["Sandbox"] = "Zandbak"; -App::$strings["\"# Wiki Sandbox\\n\\nContent you **edit** and **preview** here *will not be saved*.\""] = "\"# Wiki Sandbox\\n\\nWat er hier onder **edit** en **preview** staat *wordt niet opgeslagen*.\""; -App::$strings["Revision Comparison"] = "Revisies vergelijken"; -App::$strings["Revert"] = "Ongedaan maken"; -App::$strings["Enter the name of your new wiki:"] = "Vul de naam in van jouw nieuwe wiki:"; -App::$strings["Enter the name of the new page:"] = "Vul de naam in van de nieuwe pagina:"; -App::$strings["Enter the new name:"] = "Vul de nieuwe naam in:"; -App::$strings["Embed image from photo albums"] = "Afbeelding uit een fotoalbum invoegen"; -App::$strings["Embed an image from your albums"] = "Afbeelding uit jouw albums invoegen"; -App::$strings["OK"] = "OK"; -App::$strings["Choose images to embed"] = "Kies afbeeldingen om in te voegen"; -App::$strings["Choose an album"] = "Kies een album"; -App::$strings["Choose a different album..."] = "Kies een ander album..."; -App::$strings["Error getting album list"] = "Fout met ophalen albumlijst"; -App::$strings["Error getting photo link"] = "Fout met ophalen fotolink"; -App::$strings["Error getting album"] = "Fout met ophalen album"; +App::$strings["Thing updated"] = "Ding bijgewerkt"; +App::$strings["Object store: failed"] = "Opslaan van ding mislukt"; +App::$strings["Thing added"] = "Ding toegevoegd"; +App::$strings["OBJ: %1\$s %2\$s %3\$s"] = "OBJ: %1\$s %2\$s %3\$s"; +App::$strings["Show Thing"] = "Ding weergeven"; +App::$strings["item not found."] = "Item niet gevonden"; +App::$strings["Edit Thing"] = "Ding bewerken"; +App::$strings["Select a profile"] = "Kies een profiel"; +App::$strings["Post an activity"] = "Plaats een bericht"; +App::$strings["Only sends to viewers of the applicable profile"] = "Toont dit alleen aan diegene die het gekozen profiel mogen zien."; +App::$strings["Name of thing e.g. something"] = "Naam van ding"; +App::$strings["URL of thing (optional)"] = "URL van ding (optioneel)"; +App::$strings["URL for photo of thing (optional)"] = "URL voor foto van ding (optioneel)"; +App::$strings["Add Thing to your Profile"] = "Ding aan je profiel toevoegen"; +App::$strings["Export Channel"] = "Kanaal exporteren"; +App::$strings["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."] = "Exporteer de basisinformatie van jouw kanaal naar een bestand. Dit fungeert als een back-up van jouw connecties, permissies, profiel en basisgegevens, die gebruikt kan worden om op een nieuwe hub jouw gegevens te importeren. Deze back-up bevat echter niet de inhoud van jouw kanaal."; +App::$strings["Export Content"] = "Inhoud exporteren"; +App::$strings["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."] = "Exporteer informatie en recente inhoud van jouw kanaal naar een JSON-back-up, wat kan worden gebruikt om jouw kanaal te herstellen of te importeren op een andere hub. Dit slaat al jouw connecties, permissies, profielgegevens en enkele maanden aan inhoud van jouw kanaal op. Dit bestand kan ZEER groot worden. Wees geduldig - het kan enkele minuten duren voordat de download begint."; +App::$strings["Export your posts from a given year."] = "Exporteer jouw berichten uit een bepaald jaar."; +App::$strings["You may also export your posts and conversations for a particular year or month. Adjust the date in your browser location bar to select other dates. If the export fails (possibly due to memory exhaustion on your server hub), please try again selecting a more limited date range."] = "Je kan ook berichten en conversaties uit een bepaald jaar of van een bepaalde maand exporteren. Verander de datum in de adresbalk van jouw webbrowser om andere jaren en maanden te selecteren. Wanneer het exporteren mislukt (waarschijnlijk door een gebrek aan beschikbaar servergeheugen), probeer het dan nogmaals met een beperkter tijdvak."; +App::$strings["To select all posts for a given year, such as this year, visit %2\$s"] = "Bezoek %2\$s om alle berichten van bijvoorbeeld dit jaar te selecteren. "; +App::$strings["To select all posts for a given month, such as January of this year, visit %2\$s"] = "Bezoek %2\$s om alle berichten van bijvoorbeeld januari dit jaar te selecteren."; +App::$strings["These content files may be imported or restored by visiting %2\$s on any site containing your channel. For best results please import or restore these in date order (oldest first)."] = "Deze back-up-bestanden kunnen geïmporteerd of hersteld worden door op jouw hub en met jouw kanaal %2\$s te bezoeken. Voor het beste resultaat kan je de bestanden in chronologische volgorde importeren of herstellen."; App::$strings["No connections."] = "Geen connecties."; App::$strings["Visit %s's profile [%s]"] = "Bezoek het profiel van %s [%s]"; App::$strings["View Connections"] = "Connecties weergeven"; App::$strings["Source of Item"] = "Bron van item"; -App::$strings["Authorize application connection"] = "Geef toestemming voor applicatiekoppeling"; -App::$strings["Return to your app and insert this Securty Code:"] = "Ga terug naar je app en voeg deze beveiligingscode in:"; -App::$strings["Please login to continue."] = "Inloggen om verder te kunnen gaan."; -App::$strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Wil je deze applicatie toestemming geven om jouw berichten en connecties te zien, en/of nieuwe berichten voor jou te plaatsen?"; +App::$strings["Webpages"] = "Webpagina's"; +App::$strings["Actions"] = "Acties"; +App::$strings["Page Link"] = "Paginalink"; +App::$strings["Page Title"] = "Paginatitel"; App::$strings["Xchan Lookup"] = "Xchan opzoeken"; App::$strings["Lookup xchan beginning with (or webbie): "] = "Zoek een xchan (of webbie) die begint met:"; +App::$strings["Site Admin"] = "Hubbeheerder"; +App::$strings["Bug Report"] = "Bugrapport"; +App::$strings["View Bookmarks"] = "Bladwijzers bekijken"; +App::$strings["My Chatrooms"] = "Mijn chatkanalen"; +App::$strings["Firefox Share"] = "Firefox Share"; +App::$strings["Remote Diagnostics"] = "Diagnose op afstand"; +App::$strings["Suggest Channels"] = "Kanalen voorstellen"; +App::$strings["Login"] = "Inloggen"; +App::$strings["Grid"] = "Grid"; +App::$strings["Channel Home"] = "Jouw kanaal"; +App::$strings["Events"] = "Agenda"; +App::$strings["Directory"] = "Kanalengids"; +App::$strings["Mail"] = "Privéberichten"; +App::$strings["Chat"] = "Chatten"; +App::$strings["Probe"] = "Onderzoeken"; +App::$strings["Suggest"] = "Voorstellen"; +App::$strings["Random Channel"] = "Willekeurig kanaal"; +App::$strings["Invite"] = "Uitnodigen "; +App::$strings["Features"] = "Extra functies"; +App::$strings["Post"] = "Bericht"; +App::$strings["Purchase"] = "Aanschaffen"; App::$strings["Missing room name"] = "Naam chatkanaal ontbreekt"; App::$strings["Duplicate room name"] = "Naam chatkanaal bestaat al"; App::$strings["Invalid room specifier."] = "Ongeldige omschrijving chatkanaal"; @@ -1516,27 +1474,6 @@ App::$strings["Please visit %s to approve or reject the suggestion."] = "Bezoek App::$strings["[Hubzilla:Notify]"] = "[Hubzilla:Notificatie]"; App::$strings["created a new post"] = "maakte een nieuw bericht aan"; App::$strings["commented on %s's post"] = "gaf een reactie op een bericht van %s"; -App::$strings["Site Admin"] = "Hubbeheerder"; -App::$strings["Bug Report"] = "Bugrapport"; -App::$strings["View Bookmarks"] = "Bladwijzers bekijken"; -App::$strings["My Chatrooms"] = "Mijn chatkanalen"; -App::$strings["Firefox Share"] = "Firefox Share"; -App::$strings["Remote Diagnostics"] = "Diagnose op afstand"; -App::$strings["Suggest Channels"] = "Kanalen voorstellen"; -App::$strings["Login"] = "Inloggen"; -App::$strings["Grid"] = "Grid"; -App::$strings["Channel Home"] = "Jouw kanaal"; -App::$strings["Events"] = "Agenda"; -App::$strings["Directory"] = "Kanalengids"; -App::$strings["Mail"] = "Privéberichten"; -App::$strings["Chat"] = "Chatten"; -App::$strings["Probe"] = "Onderzoeken"; -App::$strings["Suggest"] = "Voorstellen"; -App::$strings["Random Channel"] = "Willekeurig kanaal"; -App::$strings["Invite"] = "Uitnodigen "; -App::$strings["Features"] = "Extra functies"; -App::$strings["Post"] = "Bericht"; -App::$strings["Purchase"] = "Aanschaffen"; App::$strings["Private Message"] = "Niet voor iedereen zichtbaar"; App::$strings["Select"] = "Kies"; App::$strings["Save to Folder"] = "In map opslaan"; @@ -1573,7 +1510,7 @@ App::$strings["Expires: %s"] = "Verloopt: %s"; App::$strings["Save Bookmarks"] = "Bladwijzers opslaan"; App::$strings["Add to Calendar"] = "Aan agenda toevoegen"; App::$strings["Mark all seen"] = "Markeer alles als bekeken"; -App::$strings["%s show all"] = "%s alle"; +App::$strings["[+] show all"] = "[+] alle"; App::$strings["Bold"] = "Vet"; App::$strings["Italic"] = "Cursief"; App::$strings["Underline"] = "Onderstrepen"; @@ -1582,93 +1519,9 @@ App::$strings["Code"] = "Broncode"; App::$strings["Image"] = "Afbeelding"; App::$strings["Insert Link"] = "Link invoegen"; App::$strings["Video"] = "Video"; -App::$strings["Visible to your default audience"] = "Voor iedereen zichtbaar, mits niet anders ingesteld"; -App::$strings["Only me"] = "Alleen ik"; -App::$strings["Public"] = "Openbaar"; -App::$strings["Anybody in the \$Projectname network"] = "Iedereen in het \$Projectname-netwerk"; -App::$strings["Any account on %s"] = "Iedereen op %s"; -App::$strings["Any of my connections"] = "Al mijn geaccepteerde connecties"; -App::$strings["Only connections I specifically allow"] = "Alleen connecties die uitdrukkelijk door jou zijn toegestaan"; -App::$strings["Anybody authenticated (could include visitors from other networks)"] = "Geauthenticeerde leden (kan bezoekers van andere netwerken bevatten)"; -App::$strings["Any connections including those who haven't yet been approved"] = "Al mijn geaccepteerde en nog niet geaccepteerde connecties"; -App::$strings["This is your default setting for the audience of your normal stream, and posts."] = "Dit is de standaard privacy-instelling voor wie jouw berichten kan bekijken"; -App::$strings["This is your default setting for who can view your default channel profile"] = "Dit is de standaard privacy-instelling voor wie jouw standaardprofiel kan bekijken"; -App::$strings["This is your default setting for who can view your connections"] = "Dit is de standaard privacy-instelling voor wie een lijst met jouw connecties kan bekijken"; -App::$strings["This is your default setting for who can view your file storage and photos"] = "Dit is de standaard privacy-instelling voor wie jouw bestanden en foto's kan bekijken"; -App::$strings["This is your default setting for the audience of your webpages"] = "Dit is de standaard privacy-instelling voor wie jouw webpagina's kan bekijken"; App::$strings["No username found in import file."] = "Geen gebruikersnaam in het importbestand gevonden."; App::$strings["Unable to create a unique channel address. Import failed."] = "Niet in staat om een uniek kanaaladres aan te maken. Importeren is mislukt."; App::$strings["Cannot locate DNS info for database server '%s'"] = "Kan DNS-informatie voor databaseserver '%s' niet vinden"; -App::$strings["Image exceeds website size limit of %lu bytes"] = "Afbeelding is groter dan op deze hub toegestane limiet van %lu bytes"; -App::$strings["Image file is empty."] = "Afbeeldingsbestand is leeg"; -App::$strings["Photo storage failed."] = "Foto kan niet worden opgeslagen"; -App::$strings["a new photo"] = "een nieuwe foto"; -App::$strings["__ctx:photo_upload__ %1\$s posted %2\$s to %3\$s"] = "%1\$s plaatste %2\$s op %3\$s"; -App::$strings["Photo Albums"] = "Fotoalbums"; -App::$strings["Upload New Photos"] = "Nieuwe foto's uploaden"; -App::$strings["Logout"] = "Uitloggen"; -App::$strings["End this session"] = "Beëindig deze sessie"; -App::$strings["Home"] = "Home"; -App::$strings["Your posts and conversations"] = "Jouw kanaal"; -App::$strings["Your profile page"] = "Jouw profielpagina"; -App::$strings["Manage/Edit profiles"] = "Beheer/wijzig profielen"; -App::$strings["Edit Profile"] = "Profiel bewerken"; -App::$strings["Edit your profile"] = "Jouw profiel bewerken"; -App::$strings["Your photos"] = "Jouw foto's"; -App::$strings["Your files"] = "Jouw bestanden"; -App::$strings["Your chatrooms"] = "Jouw chatkanalen"; -App::$strings["Bookmarks"] = "Bladwijzers"; -App::$strings["Your bookmarks"] = "Jouw bladwijzers"; -App::$strings["Your webpages"] = "Jouw webpagina's"; -App::$strings["Your wiki"] = "Jouw wiki"; -App::$strings["Sign in"] = "Inloggen"; -App::$strings["%s - click to logout"] = "%s - klik om uit te loggen"; -App::$strings["Remote authentication"] = "Authenticatie op afstand"; -App::$strings["Click to authenticate to your home hub"] = "Authenticeer jezelf via (bijvoorbeeld) jouw hub"; -App::$strings["Home Page"] = "Homepage"; -App::$strings["Create an account"] = "Maak een account aan"; -App::$strings["Help and documentation"] = "Hulp en documentatie"; -App::$strings["Applications, utilities, links, games"] = "Apps"; -App::$strings["Search site @name, #tag, ?docs, content"] = "Zoek een @kanaal, doorzoek inhoud hub met tekst en #tags, of doorzoek ?documentatie "; -App::$strings["Channel Directory"] = "Kanalengids"; -App::$strings["Your grid"] = "Jouw grid"; -App::$strings["Mark all grid notifications seen"] = "Markeer alle gridnotificaties als bekeken"; -App::$strings["Channel home"] = "Jouw kanaal"; -App::$strings["Mark all channel notifications seen"] = "Alle kanaalnotificaties als gelezen markeren"; -App::$strings["Notices"] = "Notificaties"; -App::$strings["Notifications"] = "Notificaties"; -App::$strings["See all notifications"] = "Alle notificaties weergeven"; -App::$strings["Private mail"] = "Privéberichten"; -App::$strings["See all private messages"] = "Alle privéberichten weergeven"; -App::$strings["Mark all private messages seen"] = "Markeer alle privéberichten als bekeken"; -App::$strings["Inbox"] = "Postvak IN"; -App::$strings["Outbox"] = "Postvak UIT"; -App::$strings["New Message"] = "Nieuw bericht"; -App::$strings["Event Calendar"] = "Agenda"; -App::$strings["See all events"] = "Alle gebeurtenissen weergeven"; -App::$strings["Mark all events seen"] = "Markeer alle gebeurtenissen als bekeken"; -App::$strings["Manage Your Channels"] = "Beheer je kanalen"; -App::$strings["Account/Channel Settings"] = "Account-/kanaal-instellingen"; -App::$strings["Admin"] = "Beheer"; -App::$strings["Site Setup and Configuration"] = "Hub instellen en beheren"; -App::$strings["Loading..."] = "Aan het laden..."; -App::$strings["@name, #tag, ?doc, content"] = "@kanaal, #tag, inhoud, ?hulp"; -App::$strings["Please wait..."] = "Wachten aub..."; -App::$strings["view full size"] = "volledige grootte tonen"; -App::$strings["Administrator"] = "Beheerder"; -App::$strings["No Subject"] = "Geen onderwerp"; -App::$strings["Friendica"] = "Friendica"; -App::$strings["OStatus"] = "OStatus"; -App::$strings["GNU-Social"] = "GNU social"; -App::$strings["RSS/Atom"] = "RSS/Atom"; -App::$strings["Diaspora"] = "Diaspora"; -App::$strings["Facebook"] = "Facebook"; -App::$strings["Zot"] = "Zot"; -App::$strings["LinkedIn"] = "LinkedIn"; -App::$strings["XMPP/IM"] = "XMPP/IM"; -App::$strings["MySpace"] = "MySpace"; -App::$strings["New Page"] = "Nieuwe pagina"; -App::$strings["Title"] = "Titel"; App::$strings["Categories"] = "Categorieën"; App::$strings["Tags"] = "Tags"; App::$strings["Keywords"] = "Trefwoorden"; @@ -1678,196 +1531,34 @@ App::$strings["want"] = "wil"; App::$strings["wants"] = "wil"; App::$strings["likes"] = "vindt dit leuk"; App::$strings["dislikes"] = "vindt dit niet leuk"; -App::$strings["Unable to obtain identity information from database"] = "Niet in staat om identiteitsinformatie uit de database te verkrijgen"; -App::$strings["Empty name"] = "Ontbrekende naam"; -App::$strings["Name too long"] = "Naam te lang"; -App::$strings["No account identifier"] = "Geen account-identificator"; -App::$strings["Nickname is required."] = "Bijnaam is verplicht"; -App::$strings["Reserved nickname. Please choose another."] = "Deze naam is gereserveerd. Kies een andere."; -App::$strings["Nickname has unsupported characters or is already being used on this site."] = "Deze naam heeft niet ondersteunde karakters of is al op deze hub in gebruik."; -App::$strings["Unable to retrieve created identity"] = "Niet in staat om aangemaakte identiteit te vinden"; -App::$strings["Default Profile"] = "Standaardprofiel"; -App::$strings["Requested channel is not available."] = "Opgevraagd kanaal is niet beschikbaar."; -App::$strings["Create New Profile"] = "Nieuw profiel aanmaken"; -App::$strings["Visible to everybody"] = "Voor iedereen zichtbaar"; -App::$strings["Gender:"] = "Geslacht:"; -App::$strings["Status:"] = "Status:"; -App::$strings["Homepage:"] = "Homepagina:"; -App::$strings["Online Now"] = "Nu online"; -App::$strings["Like this channel"] = "Vind dit kanaal leuk"; -App::$strings["j F, Y"] = "F j Y"; -App::$strings["j F"] = "F j"; -App::$strings["Birthday:"] = "Geboortedatum:"; -App::$strings["for %1\$d %2\$s"] = "voor %1\$d %2\$s"; -App::$strings["Sexual Preference:"] = "Seksuele voorkeur:"; -App::$strings["Tags:"] = "Tags:"; -App::$strings["Political Views:"] = "Politieke overtuigingen:"; -App::$strings["Religion:"] = "Religie:"; -App::$strings["Hobbies/Interests:"] = "Hobby's/interesses:"; -App::$strings["Likes:"] = "Houdt van:"; -App::$strings["Dislikes:"] = "Houdt niet van:"; -App::$strings["Contact information and Social Networks:"] = "Contactinformatie en sociale netwerken:"; -App::$strings["My other channels:"] = "Mijn andere kanalen"; -App::$strings["Musical interests:"] = "Muzikale interesses:"; -App::$strings["Books, literature:"] = "Boeken, literatuur:"; -App::$strings["Television:"] = "Televisie:"; -App::$strings["Film/dance/culture/entertainment:"] = "Films/dansen/cultuur/vermaak:"; -App::$strings["Love/Romance:"] = "Liefde/romantiek:"; -App::$strings["Work/employment:"] = "Werk/beroep:"; -App::$strings["School/education:"] = "School/opleiding:"; -App::$strings["Like this thing"] = "Vind dit ding leuk"; -App::$strings["New window"] = "Nieuw venster"; -App::$strings["Open the selected location in a different window or browser tab"] = "Open de geselecteerde locatie in een ander venster of tab"; -App::$strings["User '%s' deleted"] = "Account '%s' verwijderd"; -App::$strings["%1\$s is now connected with %2\$s"] = "%1\$s is nu met %2\$s verbonden"; -App::$strings["%1\$s poked %2\$s"] = "%1\$s heeft %2\$s aangestoten"; -App::$strings["poked"] = "aangestoten"; -App::$strings["View %s's profile @ %s"] = "Bekijk het profiel van %s @ %s"; -App::$strings["Categories:"] = "Categorieën:"; -App::$strings["Filed under:"] = "Bewaard onder:"; -App::$strings["View in context"] = "In context bekijken"; -App::$strings["remove"] = "verwijderen"; -App::$strings["Delete Selected Items"] = "Verwijder de geselecteerde items"; -App::$strings["View Source"] = "Bron weergeven"; -App::$strings["Follow Thread"] = "Conversatie volgen"; -App::$strings["Unfollow Thread"] = "Conversatie niet meer volgen"; -App::$strings["Activity/Posts"] = "Activiteit/berichten connectie"; -App::$strings["Edit Connection"] = "Connectie bewerken"; -App::$strings["Message"] = "Bericht"; -App::$strings["%s likes this."] = "%s vindt dit leuk."; -App::$strings["%s doesn't like this."] = "%s vindt dit niet leuk."; -App::$strings["%2\$d people like this."] = array( - 0 => "%2\$d persoon vindt dit leuk.", - 1 => "%2\$d personen vinden dit leuk.", -); -App::$strings["%2\$d people don't like this."] = array( - 0 => "%2\$d persoon vindt dit niet leuk.", - 1 => "%2\$d personen vinden dit niet leuk.", -); -App::$strings["and"] = "en"; -App::$strings[", and %d other people"] = array( - 0 => ", en %d ander persoon", - 1 => ", en %d andere personen", -); -App::$strings["%s like this."] = "%s vinden dit leuk."; -App::$strings["%s don't like this."] = "%s vinden dit niet leuk."; -App::$strings["Set your location"] = "Locatie instellen"; -App::$strings["Clear browser location"] = "Locatie van webbrowser wissen"; -App::$strings["Tag term:"] = "Tag:"; -App::$strings["Where are you right now?"] = "Waar bevind je je op dit moment?"; -App::$strings["Page link name"] = "Linknaam pagina"; -App::$strings["Post as"] = "Bericht plaatsen als"; -App::$strings["Toggle voting"] = "Peiling in- of uitschakelen"; -App::$strings["Categories (optional, comma-separated list)"] = "Categorieën (optioneel, door komma's gescheiden lijst)"; -App::$strings["Set publish date"] = "Publicatiedatum instellen"; -App::$strings["Discover"] = "Ontdekken"; -App::$strings["Imported public streams"] = "Openbare streams importeren"; -App::$strings["Commented Order"] = "Nieuwe reacties bovenaan"; -App::$strings["Sort by Comment Date"] = "Berichten met nieuwe reacties bovenaan"; -App::$strings["Posted Order"] = "Nieuwe berichten bovenaan"; -App::$strings["Sort by Post Date"] = "Nieuwe berichten bovenaan"; -App::$strings["Posts that mention or involve you"] = "Alleen berichten die jou vermelden of waar je op een andere manier bij betrokken bent"; -App::$strings["Activity Stream - by date"] = "Activiteitenstroom - volgens datum"; -App::$strings["Starred"] = "Met ster"; -App::$strings["Favourite Posts"] = "Favoriete berichten"; -App::$strings["Spam"] = "Spam"; -App::$strings["Posts flagged as SPAM"] = "Berichten gemarkeerd als SPAM"; -App::$strings["Status Messages and Posts"] = "Berichten in dit kanaal"; -App::$strings["About"] = "Over"; -App::$strings["Profile Details"] = "Profiel"; -App::$strings["Files and Storage"] = "Bestanden en opslagruimte"; -App::$strings["Chatrooms"] = "Chatkanalen"; -App::$strings["Saved Bookmarks"] = "Opgeslagen bladwijzers"; -App::$strings["Manage Webpages"] = "Webpagina's beheren"; -App::$strings["__ctx:noun__ Attending"] = array( - 0 => "aanwezig", - 1 => "aanwezig", -); -App::$strings["__ctx:noun__ Not Attending"] = array( - 0 => "niet aanwezig", - 1 => "niet aanwezig", -); -App::$strings["__ctx:noun__ Undecided"] = array( - 0 => "nog niet beslist", - 1 => "nog niet beslist", -); -App::$strings["__ctx:noun__ Agree"] = array( - 0 => "eens", - 1 => "eens", -); -App::$strings["__ctx:noun__ Disagree"] = array( - 0 => "oneens", - 1 => "oneens", -); -App::$strings["__ctx:noun__ Abstain"] = array( - 0 => "onthouding", - 1 => "onthoudingen", -); +App::$strings["l F d, Y \\@ g:i A"] = "l d F Y \\@ G:i"; +App::$strings["Starts:"] = "Start:"; +App::$strings["Finishes:"] = "Einde:"; +App::$strings["This event has been added to your calendar."] = "Dit evenement is aan jouw agenda toegevoegd."; +App::$strings["Not specified"] = "Niet aangegeven"; +App::$strings["Needs Action"] = "Actie vereist"; +App::$strings["Completed"] = "Voltooid"; +App::$strings["In Process"] = "In behandeling"; +App::$strings["Cancelled"] = "Geannuleerd"; App::$strings["Cannot create a duplicate channel identifier on this system. Import failed."] = "Kan geen dubbele kanaal-identificator op deze hub aanmaken. Importeren mislukt."; App::$strings["Channel clone failed. Import failed."] = "Het klonen van het kanaal is mislukt. Importeren mislukt."; -App::$strings["Frequently"] = "Regelmatig"; -App::$strings["Hourly"] = "Elk uur"; -App::$strings["Twice daily"] = "Twee keer per dag"; -App::$strings["Daily"] = "Dagelijks"; -App::$strings["Weekly"] = "Wekelijks"; -App::$strings["Monthly"] = "Maandelijks"; -App::$strings["Currently Male"] = "Momenteel man"; -App::$strings["Currently Female"] = "Momenteel vrouw"; -App::$strings["Mostly Male"] = "Voornamelijk man"; -App::$strings["Mostly Female"] = "Voornamelijk vrouw"; -App::$strings["Transgender"] = "Transgender"; -App::$strings["Intersex"] = "Interseksueel"; -App::$strings["Transsexual"] = "Transseksueel"; -App::$strings["Hermaphrodite"] = "Hermafrodiet"; -App::$strings["Neuter"] = "Genderneutraal"; -App::$strings["Non-specific"] = "Niet gespecificeerd"; -App::$strings["Undecided"] = "Nog niet beslist"; -App::$strings["Males"] = "Mannen"; -App::$strings["Females"] = "Vrouwen"; -App::$strings["Gay"] = "Homoseksueel"; -App::$strings["Lesbian"] = "Lesbisch"; -App::$strings["No Preference"] = "Geen voorkeur"; -App::$strings["Bisexual"] = "Biseksueel"; -App::$strings["Autosexual"] = "Autoseksueel"; -App::$strings["Abstinent"] = "Seksuele onthouding"; -App::$strings["Virgin"] = "Maagd"; -App::$strings["Deviant"] = "Afwijkend"; -App::$strings["Fetish"] = "Fetisj"; -App::$strings["Oodles"] = "Veel"; -App::$strings["Nonsexual"] = "Aseksueel"; -App::$strings["Single"] = "Alleen"; -App::$strings["Lonely"] = "Eenzaam"; -App::$strings["Available"] = "Beschikbaar"; -App::$strings["Unavailable"] = "Niet beschikbaar"; -App::$strings["Has crush"] = "Heeft een oogje op iemand"; -App::$strings["Infatuated"] = "Smoorverliefd"; -App::$strings["Dating"] = "Aan het daten"; -App::$strings["Unfaithful"] = "Ontrouw"; -App::$strings["Sex Addict"] = "Seksverslaafd"; -App::$strings["Friends/Benefits"] = "Vriendschap plus"; -App::$strings["Casual"] = "Ongebonden/vluchtig"; -App::$strings["Engaged"] = "Verloofd"; -App::$strings["Married"] = "Getrouwd"; -App::$strings["Imaginarily married"] = "Denkbeeldig getrouwd"; -App::$strings["Partners"] = "Partners"; -App::$strings["Cohabiting"] = "Samenwonend"; -App::$strings["Common law"] = "Common-law-huwelijk"; -App::$strings["Happy"] = "Gelukkig"; -App::$strings["Not looking"] = "Niet op zoek"; -App::$strings["Swinger"] = "Swinger"; -App::$strings["Betrayed"] = "Verraden"; -App::$strings["Separated"] = "Uit elkaar"; -App::$strings["Unstable"] = "Onstabiel"; -App::$strings["Divorced"] = "Gescheiden"; -App::$strings["Imaginarily divorced"] = "Denkbeeldig gescheiden"; -App::$strings["Widowed"] = "Weduwnaar/weduwe"; -App::$strings["Uncertain"] = "Onzeker"; -App::$strings["It's complicated"] = "Het is ingewikkeld"; -App::$strings["Don't care"] = "Maakt mij niks uit"; -App::$strings["Ask me"] = "Vraag het me"; -App::$strings["%1\$s's bookmarks"] = "Bladwijzers van %1\$s"; -App::$strings["guest:"] = "gast:"; -App::$strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "De beveiligings-token van het tekstvak was ongeldig. Dit is mogelijk het gevolg van dat er te lang (meer dan 3 uur) gewacht is om de tekst op te slaan. "; +App::$strings["(Unknown)"] = "(Onbekend)"; +App::$strings["Visible to anybody on the internet."] = "Voor iedereen op het internet zichtbaar."; +App::$strings["Visible to you only."] = "Alleen voor jou zichtbaar."; +App::$strings["Visible to anybody in this network."] = "Voor iedereen in dit netwerk zichtbaar."; +App::$strings["Visible to anybody authenticated."] = "Voor iedereen die geauthenticeerd is zichtbaar."; +App::$strings["Visible to anybody on %s."] = "Voor iedereen op %s zichtbaar."; +App::$strings["Visible to all connections."] = "Voor alle connecties zichtbaar."; +App::$strings["Visible to approved connections."] = "Voor alle geaccepteerde connecties zichtbaar."; +App::$strings["Visible to specific connections."] = "Voor specifieke connecties zichtbaar."; +App::$strings["Privacy group is empty."] = "Privacygroep is leeg"; +App::$strings["Privacy group: %s"] = "Privacygroep: %s"; +App::$strings["Connection not found."] = "Connectie niet gevonden."; +App::$strings["profile photo"] = "profielfoto"; +App::$strings["No recipient provided."] = "Geen ontvanger opgegeven."; +App::$strings["[no subject]"] = "[geen onderwerp]"; +App::$strings["Unable to determine sender."] = "Afzender kan niet bepaald worden."; +App::$strings["Stored post could not be verified."] = "Opgeslagen bericht kon niet worden geverifieerd."; App::$strings["prev"] = "vorige"; App::$strings["first"] = "eerste"; App::$strings["last"] = "laatste"; @@ -1877,6 +1568,7 @@ App::$strings["newer"] = "nieuwer"; App::$strings["No connections"] = "Geen connecties"; App::$strings["View all %s connections"] = "Toon alle %s connecties"; App::$strings["poke"] = "aanstoten"; +App::$strings["poked"] = "aangestoten"; App::$strings["ping"] = "ping"; App::$strings["pinged"] = "gepingd"; App::$strings["prod"] = "por"; @@ -1939,21 +1631,385 @@ App::$strings["Select an alternate language"] = "Kies een andere taal"; App::$strings["activity"] = "activiteit"; App::$strings["Design Tools"] = "Ontwerp-hulpmiddelen"; App::$strings["Pages"] = "Pagina's"; -App::$strings["Logged out."] = "Uitgelogd."; -App::$strings["Failed authentication"] = "Mislukte authenticatie"; -App::$strings["Can view my normal stream and posts"] = "Kan mijn normale kanaalstream en berichten bekijken"; -App::$strings["Can view my webpages"] = "Kan mijn pagina's bekijken"; -App::$strings["Can post on my channel page (\"wall\")"] = "Kan een bericht in mijn kanaal plaatsen"; -App::$strings["Can like/dislike stuff"] = "Kan dingen leuk of niet leuk vinden"; -App::$strings["Profiles and things other than posts/comments"] = "Profielen en dingen, buiten berichten en reacties"; -App::$strings["Can forward to all my channel contacts via post @mentions"] = "Kan naar al mijn kanaalconnecties berichten doorsturen met behulp van @vermeldingen+"; -App::$strings["Advanced - useful for creating group forum channels"] = "Geavanceerd - nuttig voor groepforums"; -App::$strings["Can chat with me (when available)"] = "Kan met mij chatten (wanneer beschikbaar)"; -App::$strings["Can write to my file storage and photos"] = "Kan foto's en andere bestanden aan mijn bestandsopslag toevoegen"; -App::$strings["Can edit my webpages"] = "Kan mijn pagina's bewerken"; -App::$strings["Somewhat advanced - very useful in open communities"] = "Enigszins geavanceerd (erg nuttig voor kanalen van forums/groepen)"; -App::$strings["Can administer my channel resources"] = "Kan mijn kanaal beheren"; -App::$strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "Zeer geavanceerd. Laat dit met rust, behalve als je weet wat je doet."; +App::$strings["System"] = "Systeem"; +App::$strings["New App"] = "Nieuwe app"; +App::$strings["Suggestions"] = "Voorgestelde kanalen"; +App::$strings["See more..."] = "Meer..."; +App::$strings["You have %1$.0f of %2$.0f allowed connections."] = "Je hebt %1$.0f van de %2$.0f toegestane connecties."; +App::$strings["Add New Connection"] = "Nieuwe connectie toevoegen"; +App::$strings["Enter channel address"] = "Vul kanaaladres in"; +App::$strings["Examples: bob@example.com, https://example.com/barbara"] = "Voorbeelden: bob@example.com, http://example.com/barbara"; +App::$strings["Notes"] = "Aantekeningen"; +App::$strings["Remove term"] = "Verwijder zoekterm"; +App::$strings["Saved Searches"] = "Opgeslagen zoekopdrachten"; +App::$strings["add"] = "toevoegen"; +App::$strings["Saved Folders"] = "Bewaarde mappen"; +App::$strings["Everything"] = "Alles"; +App::$strings["Archives"] = "Archieven"; +App::$strings["Refresh"] = "Vernieuwen"; +App::$strings["Account settings"] = "Account"; +App::$strings["Channel settings"] = "Kanaal"; +App::$strings["Additional features"] = "Extra functies"; +App::$strings["Feature/Addon settings"] = "Plugin-instellingen"; +App::$strings["Display settings"] = "Weergave"; +App::$strings["Manage locations"] = "Locaties beheren"; +App::$strings["Export channel"] = "Kanaal exporteren"; +App::$strings["Connected apps"] = "Verbonden applicaties"; +App::$strings["Premium Channel Settings"] = "Instellingen premiumkanaal"; +App::$strings["Private Mail Menu"] = "Privéberichten"; +App::$strings["Combined View"] = "Gecombineerd postvak"; +App::$strings["Inbox"] = "Postvak IN"; +App::$strings["Outbox"] = "Postvak UIT"; +App::$strings["New Message"] = "Nieuw bericht"; +App::$strings["Conversations"] = "Conversaties"; +App::$strings["Received Messages"] = "Ontvangen berichten"; +App::$strings["Sent Messages"] = "Verzonden berichten"; +App::$strings["No messages."] = "Geen berichten"; +App::$strings["Delete conversation"] = "Verwijder conversatie"; +App::$strings["Events Menu"] = "Agenda-menu"; +App::$strings["Day View"] = "Dag tonen"; +App::$strings["Week View"] = "Week tonen"; +App::$strings["Month View"] = "Maand tonen"; +App::$strings["Events Tools"] = "Agenda-hulpmiddelen"; +App::$strings["Export Calendar"] = "Exporteren"; +App::$strings["Import Calendar"] = "Importeren"; +App::$strings["Chatrooms"] = "Chatkanalen"; +App::$strings["Overview"] = "Overzicht"; +App::$strings["Chat Members"] = "Chatleden"; +App::$strings["Bookmarked Chatrooms"] = "Bladwijzers van chatkanalen"; +App::$strings["Suggested Chatrooms"] = "Voorgestelde chatkanalen"; +App::$strings["photo/image"] = "foto/afbeelding"; +App::$strings["Click to show more"] = "Klik voor meer"; +App::$strings["Rating Tools"] = "Beoordelingen"; +App::$strings["Rate Me"] = "Beoordeel mij"; +App::$strings["View Ratings"] = "Bekijk beoordelingen"; +App::$strings["Forums"] = "Forums"; +App::$strings["Tasks"] = "Taken"; +App::$strings["Documentation"] = "Documentatie"; +App::$strings["Project/Site Information"] = "Project- en hub-informatie"; +App::$strings["For Members"] = "Voor leden"; +App::$strings["For Administrators"] = "Voor beheerders"; +App::$strings["For Developers"] = "Voor ontwikkelaars"; +App::$strings["Member registrations waiting for confirmation"] = "Accounts die op goedkeuring wachten"; +App::$strings["Inspect queue"] = "Inspecteer berichtenwachtrij"; +App::$strings["DB updates"] = "Database-updates"; +App::$strings["Admin"] = "Beheer"; +App::$strings["Plugin Features"] = "Plugin-opties"; +App::$strings["Channel is blocked on this site."] = "Kanaal is op deze hub geblokkeerd."; +App::$strings["Channel location missing."] = "Ontbrekende kanaallocatie."; +App::$strings["Response from remote channel was incomplete."] = "Antwoord van het kanaal op afstand was niet volledig."; +App::$strings["Channel was deleted and no longer exists."] = "Kanaal is verwijderd en bestaat niet meer."; +App::$strings["Protocol disabled."] = "Protocol uitgeschakeld."; +App::$strings["Channel discovery failed."] = "Kanaal ontdekken mislukt."; +App::$strings["Cannot connect to yourself."] = "Kan niet met jezelf verbinden"; +App::$strings["%1\$s's bookmarks"] = "Bladwijzers van %1\$s"; +App::$strings["Public Timeline"] = "Openbare tijdlijn"; +App::$strings["Image/photo"] = "Afbeelding/foto"; +App::$strings["Encrypted content"] = "Versleutelde inhoud"; +App::$strings["Install %s element: "] = "Installeer %s-element: "; +App::$strings["This post contains an installable %s element, however you lack permissions to install it on this site."] = "Dit bericht heeft een te installeren %s-element, maar je hebt geen permissies om het op deze hub te installeren."; +App::$strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s schreef het volgende %2\$s %3\$s"; +App::$strings["Click to open/close"] = "Klik om te openen of te sluiten"; +App::$strings["spoiler"] = "spoiler"; +App::$strings["Different viewers will see this text differently"] = "Deze tekst wordt per persoon anders weergeven."; +App::$strings["$1 wrote:"] = "$1 schreef:"; +App::$strings["Directory Options"] = "Opties kanalengids"; +App::$strings["Safe Mode"] = "Veilig zoeken"; +App::$strings["Public Forums Only"] = "Alleen openbare forums"; +App::$strings["This Website Only"] = "Alleen deze hub"; +App::$strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "De beveiligings-token van het tekstvak was ongeldig. Dit is mogelijk het gevolg van dat er te lang (meer dan 3 uur) gewacht is om de tekst op te slaan. "; +App::$strings["Logout"] = "Uitloggen"; +App::$strings["End this session"] = "Beëindig deze sessie"; +App::$strings["Home"] = "Home"; +App::$strings["Your posts and conversations"] = "Jouw kanaal"; +App::$strings["Your profile page"] = "Jouw profielpagina"; +App::$strings["Manage/Edit profiles"] = "Beheer/wijzig profielen"; +App::$strings["Edit Profile"] = "Profiel bewerken"; +App::$strings["Edit your profile"] = "Jouw profiel bewerken"; +App::$strings["Your photos"] = "Jouw foto's"; +App::$strings["Your files"] = "Jouw bestanden"; +App::$strings["Your chatrooms"] = "Jouw chatkanalen"; +App::$strings["Bookmarks"] = "Bladwijzers"; +App::$strings["Your bookmarks"] = "Jouw bladwijzers"; +App::$strings["Your webpages"] = "Jouw webpagina's"; +App::$strings["Sign in"] = "Inloggen"; +App::$strings["%s - click to logout"] = "%s - klik om uit te loggen"; +App::$strings["Remote authentication"] = "Authenticatie op afstand"; +App::$strings["Click to authenticate to your home hub"] = "Authenticeer jezelf via (bijvoorbeeld) jouw hub"; +App::$strings["Home Page"] = "Homepage"; +App::$strings["Create an account"] = "Maak een account aan"; +App::$strings["Help and documentation"] = "Hulp en documentatie"; +App::$strings["Applications, utilities, links, games"] = "Apps"; +App::$strings["Search site @name, #tag, ?docs, content"] = "Zoek een @kanaal, doorzoek inhoud hub met tekst en #tags, of doorzoek ?documentatie "; +App::$strings["Channel Directory"] = "Kanalengids"; +App::$strings["Your grid"] = "Jouw grid"; +App::$strings["Mark all grid notifications seen"] = "Markeer alle gridnotificaties als bekeken"; +App::$strings["Channel home"] = "Jouw kanaal"; +App::$strings["Mark all channel notifications seen"] = "Alle kanaalnotificaties als gelezen markeren"; +App::$strings["Notices"] = "Notificaties"; +App::$strings["Notifications"] = "Notificaties"; +App::$strings["See all notifications"] = "Alle notificaties weergeven"; +App::$strings["Private mail"] = "Privéberichten"; +App::$strings["See all private messages"] = "Alle privéberichten weergeven"; +App::$strings["Mark all private messages seen"] = "Markeer alle privéberichten als bekeken"; +App::$strings["Event Calendar"] = "Agenda"; +App::$strings["See all events"] = "Alle gebeurtenissen weergeven"; +App::$strings["Mark all events seen"] = "Markeer alle gebeurtenissen als bekeken"; +App::$strings["Manage Your Channels"] = "Beheer je kanalen"; +App::$strings["Account/Channel Settings"] = "Account-/kanaal-instellingen"; +App::$strings["Site Setup and Configuration"] = "Hub instellen en beheren"; +App::$strings["Loading..."] = "Aan het laden..."; +App::$strings["@name, #tag, ?doc, content"] = "@kanaal, #tag, inhoud, ?hulp"; +App::$strings["Please wait..."] = "Wachten aub..."; +App::$strings["New window"] = "Nieuw venster"; +App::$strings["Open the selected location in a different window or browser tab"] = "Open de geselecteerde locatie in een ander venster of tab"; +App::$strings["User '%s' deleted"] = "Account '%s' verwijderd"; +App::$strings["%d invitation available"] = array( + 0 => "%d uitnodiging beschikbaar", + 1 => "%d uitnodigingen beschikbaar", +); +App::$strings["Find Channels"] = "Kanalen vinden"; +App::$strings["Enter name or interest"] = "Vul naam of interesse in"; +App::$strings["Connect/Follow"] = "Verbinden/volgen"; +App::$strings["Examples: Robert Morgenstein, Fishing"] = "Voorbeeld: Robert Morgenstein, vissen"; +App::$strings["Random Profile"] = "Willekeurig profiel"; +App::$strings["Invite Friends"] = "Vrienden uitnodigen"; +App::$strings["Advanced example: name=fred and country=iceland"] = "Geavanceerd voorbeeld (Engels): name=jan en country=nederland"; +App::$strings["%d connection in common"] = array( + 0 => "%d gemeenschappelijke connectie", + 1 => "%d gemeenschappelijke connecties", +); +App::$strings["show more"] = "meer connecties weergeven"; +App::$strings["%1\$s is now connected with %2\$s"] = "%1\$s is nu met %2\$s verbonden"; +App::$strings["%1\$s poked %2\$s"] = "%1\$s heeft %2\$s aangestoten"; +App::$strings["View %s's profile @ %s"] = "Bekijk het profiel van %s @ %s"; +App::$strings["Categories:"] = "Categorieën:"; +App::$strings["Filed under:"] = "Bewaard onder:"; +App::$strings["View in context"] = "In context bekijken"; +App::$strings["remove"] = "verwijderen"; +App::$strings["Delete Selected Items"] = "Verwijder de geselecteerde items"; +App::$strings["View Source"] = "Bron weergeven"; +App::$strings["Follow Thread"] = "Conversatie volgen"; +App::$strings["Unfollow Thread"] = "Conversatie niet meer volgen"; +App::$strings["Activity/Posts"] = "Activiteit/berichten connectie"; +App::$strings["Edit Connection"] = "Connectie bewerken"; +App::$strings["Message"] = "Bericht"; +App::$strings["%s likes this."] = "%s vindt dit leuk."; +App::$strings["%s doesn't like this."] = "%s vindt dit niet leuk."; +App::$strings["%2\$d people like this."] = array( + 0 => "%2\$d persoon vindt dit leuk.", + 1 => "%2\$d personen vinden dit leuk.", +); +App::$strings["%2\$d people don't like this."] = array( + 0 => "%2\$d persoon vindt dit niet leuk.", + 1 => "%2\$d personen vinden dit niet leuk.", +); +App::$strings["and"] = "en"; +App::$strings[", and %d other people"] = array( + 0 => ", en %d ander persoon", + 1 => ", en %d andere personen", +); +App::$strings["%s like this."] = "%s vinden dit leuk."; +App::$strings["%s don't like this."] = "%s vinden dit niet leuk."; +App::$strings["Set your location"] = "Locatie instellen"; +App::$strings["Clear browser location"] = "Locatie van webbrowser wissen"; +App::$strings["Tag term:"] = "Tag:"; +App::$strings["Where are you right now?"] = "Waar bevind je je op dit moment?"; +App::$strings["Page link name"] = "Linknaam pagina"; +App::$strings["Post as"] = "Bericht plaatsen als"; +App::$strings["Toggle voting"] = "Peiling in- of uitschakelen"; +App::$strings["Categories (optional, comma-separated list)"] = "Categorieën (optioneel, door komma's gescheiden lijst)"; +App::$strings["Set publish date"] = "Publicatiedatum instellen"; +App::$strings["OK"] = "OK"; +App::$strings["Discover"] = "Ontdekken"; +App::$strings["Imported public streams"] = "Openbare streams importeren"; +App::$strings["Commented Order"] = "Nieuwe reacties bovenaan"; +App::$strings["Sort by Comment Date"] = "Berichten met nieuwe reacties bovenaan"; +App::$strings["Posted Order"] = "Nieuwe berichten bovenaan"; +App::$strings["Sort by Post Date"] = "Nieuwe berichten bovenaan"; +App::$strings["Posts that mention or involve you"] = "Alleen berichten die jou vermelden of waar je op een andere manier bij betrokken bent"; +App::$strings["Activity Stream - by date"] = "Activiteitenstroom - volgens datum"; +App::$strings["Starred"] = "Met ster"; +App::$strings["Favourite Posts"] = "Favoriete berichten"; +App::$strings["Spam"] = "Spam"; +App::$strings["Posts flagged as SPAM"] = "Berichten gemarkeerd als SPAM"; +App::$strings["Status Messages and Posts"] = "Berichten in dit kanaal"; +App::$strings["About"] = "Over"; +App::$strings["Profile Details"] = "Profiel"; +App::$strings["Photo Albums"] = "Fotoalbums"; +App::$strings["Files and Storage"] = "Bestanden en opslagruimte"; +App::$strings["Saved Bookmarks"] = "Opgeslagen bladwijzers"; +App::$strings["Manage Webpages"] = "Webpagina's beheren"; +App::$strings["__ctx:noun__ Attending"] = array( + 0 => "aanwezig", + 1 => "aanwezig", +); +App::$strings["__ctx:noun__ Not Attending"] = array( + 0 => "niet aanwezig", + 1 => "niet aanwezig", +); +App::$strings["__ctx:noun__ Undecided"] = array( + 0 => "nog niet beslist", + 1 => "nog niet beslist", +); +App::$strings["__ctx:noun__ Agree"] = array( + 0 => "eens", + 1 => "eens", +); +App::$strings["__ctx:noun__ Disagree"] = array( + 0 => "oneens", + 1 => "oneens", +); +App::$strings["__ctx:noun__ Abstain"] = array( + 0 => "onthouding", + 1 => "onthoudingen", +); +App::$strings["Frequently"] = "Regelmatig"; +App::$strings["Hourly"] = "Elk uur"; +App::$strings["Twice daily"] = "Twee keer per dag"; +App::$strings["Daily"] = "Dagelijks"; +App::$strings["Weekly"] = "Wekelijks"; +App::$strings["Monthly"] = "Maandelijks"; +App::$strings["Currently Male"] = "Momenteel man"; +App::$strings["Currently Female"] = "Momenteel vrouw"; +App::$strings["Mostly Male"] = "Voornamelijk man"; +App::$strings["Mostly Female"] = "Voornamelijk vrouw"; +App::$strings["Transgender"] = "Transgender"; +App::$strings["Intersex"] = "Interseksueel"; +App::$strings["Transsexual"] = "Transseksueel"; +App::$strings["Hermaphrodite"] = "Hermafrodiet"; +App::$strings["Neuter"] = "Genderneutraal"; +App::$strings["Non-specific"] = "Niet gespecificeerd"; +App::$strings["Other"] = "Anders"; +App::$strings["Undecided"] = "Nog niet beslist"; +App::$strings["Males"] = "Mannen"; +App::$strings["Females"] = "Vrouwen"; +App::$strings["Gay"] = "Homoseksueel"; +App::$strings["Lesbian"] = "Lesbisch"; +App::$strings["No Preference"] = "Geen voorkeur"; +App::$strings["Bisexual"] = "Biseksueel"; +App::$strings["Autosexual"] = "Autoseksueel"; +App::$strings["Abstinent"] = "Seksuele onthouding"; +App::$strings["Virgin"] = "Maagd"; +App::$strings["Deviant"] = "Afwijkend"; +App::$strings["Fetish"] = "Fetisj"; +App::$strings["Oodles"] = "Veel"; +App::$strings["Nonsexual"] = "Aseksueel"; +App::$strings["Single"] = "Alleen"; +App::$strings["Lonely"] = "Eenzaam"; +App::$strings["Available"] = "Beschikbaar"; +App::$strings["Unavailable"] = "Niet beschikbaar"; +App::$strings["Has crush"] = "Heeft een oogje op iemand"; +App::$strings["Infatuated"] = "Smoorverliefd"; +App::$strings["Dating"] = "Aan het daten"; +App::$strings["Unfaithful"] = "Ontrouw"; +App::$strings["Sex Addict"] = "Seksverslaafd"; +App::$strings["Friends/Benefits"] = "Vriendschap plus"; +App::$strings["Casual"] = "Ongebonden/vluchtig"; +App::$strings["Engaged"] = "Verloofd"; +App::$strings["Married"] = "Getrouwd"; +App::$strings["Imaginarily married"] = "Denkbeeldig getrouwd"; +App::$strings["Partners"] = "Partners"; +App::$strings["Cohabiting"] = "Samenwonend"; +App::$strings["Common law"] = "Common-law-huwelijk"; +App::$strings["Happy"] = "Gelukkig"; +App::$strings["Not looking"] = "Niet op zoek"; +App::$strings["Swinger"] = "Swinger"; +App::$strings["Betrayed"] = "Verraden"; +App::$strings["Separated"] = "Uit elkaar"; +App::$strings["Unstable"] = "Onstabiel"; +App::$strings["Divorced"] = "Gescheiden"; +App::$strings["Imaginarily divorced"] = "Denkbeeldig gescheiden"; +App::$strings["Widowed"] = "Weduwnaar/weduwe"; +App::$strings["Uncertain"] = "Onzeker"; +App::$strings["It's complicated"] = "Het is ingewikkeld"; +App::$strings["Don't care"] = "Maakt mij niks uit"; +App::$strings["Ask me"] = "Vraag het me"; +App::$strings["Visible to your default audience"] = "Voor iedereen zichtbaar, mits niet anders ingesteld"; +App::$strings["Only me"] = "Alleen ik"; +App::$strings["Public"] = "Openbaar"; +App::$strings["Anybody in the \$Projectname network"] = "Iedereen in het \$Projectname-netwerk"; +App::$strings["Any account on %s"] = "Iedereen op %s"; +App::$strings["Any of my connections"] = "Al mijn geaccepteerde connecties"; +App::$strings["Only connections I specifically allow"] = "Alleen connecties die uitdrukkelijk door jou zijn toegestaan"; +App::$strings["Anybody authenticated (could include visitors from other networks)"] = "Geauthenticeerde leden (kan bezoekers van andere netwerken bevatten)"; +App::$strings["Any connections including those who haven't yet been approved"] = "Al mijn geaccepteerde en nog niet geaccepteerde connecties"; +App::$strings["This is your default setting for the audience of your normal stream, and posts."] = "Dit is de standaard privacy-instelling voor wie jouw berichten kan bekijken"; +App::$strings["This is your default setting for who can view your default channel profile"] = "Dit is de standaard privacy-instelling voor wie jouw standaardprofiel kan bekijken"; +App::$strings["This is your default setting for who can view your connections"] = "Dit is de standaard privacy-instelling voor wie een lijst met jouw connecties kan bekijken"; +App::$strings["This is your default setting for who can view your file storage and photos"] = "Dit is de standaard privacy-instelling voor wie jouw bestanden en foto's kan bekijken"; +App::$strings["This is your default setting for the audience of your webpages"] = "Dit is de standaard privacy-instelling voor wie jouw webpagina's kan bekijken"; +App::$strings["Not a valid email address"] = "Geen geldig e-mailadres"; +App::$strings["Your email domain is not among those allowed on this site"] = "Jouw e-maildomein is op deze hub niet toegestaan"; +App::$strings["Your email address is already registered at this site."] = "Jouw e-mailadres is al op deze hub geregistreerd."; +App::$strings["An invitation is required."] = "Een uitnodiging is vereist"; +App::$strings["Invitation could not be verified."] = "Uitnodiging kon niet geverifieerd worden"; +App::$strings["Please enter the required information."] = "Vul de vereiste informatie in."; +App::$strings["Failed to store account information."] = "Account-informatie kon niet opgeslagen worden."; +App::$strings["Registration confirmation for %s"] = "Registratiebevestiging voor %s"; +App::$strings["Registration request at %s"] = "Registratiebevestiging voor %s"; +App::$strings["Administrator"] = "Beheerder"; +App::$strings["your registration password"] = "jouw registratiewachtwoord"; +App::$strings["Registration details for %s"] = "Registratiegegevens voor %s"; +App::$strings["Account approved."] = "Account goedgekeurd"; +App::$strings["Registration revoked for %s"] = "Registratie ingetrokken voor %s"; +App::$strings["Account verified. Please login."] = "Account is geverifieerd. Je kan inloggen."; +App::$strings["Click here to upgrade."] = "Klik hier om te upgraden."; +App::$strings["This action exceeds the limits set by your subscription plan."] = "Deze handeling overschrijdt de beperkingen die voor jouw abonnement gelden."; +App::$strings["This action is not available under your subscription plan."] = "Deze handeling is niet mogelijk met jouw abonnement."; +App::$strings["Item was not found."] = "Item niet gevonden"; +App::$strings["No source file."] = "Geen bronbestand."; +App::$strings["Cannot locate file to replace"] = "Kan het te vervangen bestand niet vinden"; +App::$strings["Cannot locate file to revise/update"] = "Kan het bestand wat aangepast moet worden niet vinden"; +App::$strings["File exceeds size limit of %d"] = "Bestand is groter dan de toegelaten %d"; +App::$strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Je hebt jouw limiet van %1$.0f MB opslagruimte voor bijlagen bereikt."; +App::$strings["File upload failed. Possible system limit or action terminated."] = "Uploaden van bestand mislukt. Mogelijk systeemlimiet bereikt of actie afgebroken."; +App::$strings["Stored file could not be verified. Upload failed."] = "Opgeslagen bestand kon niet worden geverifieerd. Uploaden mislukt."; +App::$strings["Path not available."] = "Pad niet beschikbaar."; +App::$strings["Empty pathname"] = "Padnaam leeg"; +App::$strings["duplicate filename or path"] = "dubbele bestandsnaam of pad"; +App::$strings["Path not found."] = "Pad niet gevonden"; +App::$strings["mkdir failed."] = "directory aanmaken (mkdir) mislukt."; +App::$strings["database storage failed."] = "opslag in database mislukt."; +App::$strings["Empty path"] = "Ontbrekend bestandspad"; +App::$strings["Unable to obtain identity information from database"] = "Niet in staat om identiteitsinformatie uit de database te verkrijgen"; +App::$strings["Empty name"] = "Ontbrekende naam"; +App::$strings["Name too long"] = "Naam te lang"; +App::$strings["No account identifier"] = "Geen account-identificator"; +App::$strings["Nickname is required."] = "Bijnaam is verplicht"; +App::$strings["Reserved nickname. Please choose another."] = "Deze naam is gereserveerd. Kies een andere."; +App::$strings["Nickname has unsupported characters or is already being used on this site."] = "Deze naam heeft niet ondersteunde karakters of is al op deze hub in gebruik."; +App::$strings["Unable to retrieve created identity"] = "Niet in staat om aangemaakte identiteit te vinden"; +App::$strings["Default Profile"] = "Standaardprofiel"; +App::$strings["Requested channel is not available."] = "Opgevraagd kanaal is niet beschikbaar."; +App::$strings["Create New Profile"] = "Nieuw profiel aanmaken"; +App::$strings["Visible to everybody"] = "Voor iedereen zichtbaar"; +App::$strings["Gender:"] = "Geslacht:"; +App::$strings["Status:"] = "Status:"; +App::$strings["Homepage:"] = "Homepagina:"; +App::$strings["Online Now"] = "Nu online"; +App::$strings["Like this channel"] = "Vind dit kanaal leuk"; +App::$strings["j F, Y"] = "F j Y"; +App::$strings["j F"] = "F j"; +App::$strings["Birthday:"] = "Geboortedatum:"; +App::$strings["for %1\$d %2\$s"] = "voor %1\$d %2\$s"; +App::$strings["Sexual Preference:"] = "Seksuele voorkeur:"; +App::$strings["Tags:"] = "Tags:"; +App::$strings["Political Views:"] = "Politieke overtuigingen:"; +App::$strings["Religion:"] = "Religie:"; +App::$strings["Hobbies/Interests:"] = "Hobby's/interesses:"; +App::$strings["Likes:"] = "Houdt van:"; +App::$strings["Dislikes:"] = "Houdt niet van:"; +App::$strings["Contact information and Social Networks:"] = "Contactinformatie en sociale netwerken:"; +App::$strings["My other channels:"] = "Mijn andere kanalen"; +App::$strings["Musical interests:"] = "Muzikale interesses:"; +App::$strings["Books, literature:"] = "Boeken, literatuur:"; +App::$strings["Television:"] = "Televisie:"; +App::$strings["Film/dance/culture/entertainment:"] = "Films/dansen/cultuur/vermaak:"; +App::$strings["Love/Romance:"] = "Liefde/romantiek:"; +App::$strings["Work/employment:"] = "Werk/beroep:"; +App::$strings["School/education:"] = "School/opleiding:"; +App::$strings["Like this thing"] = "Vind dit ding leuk"; App::$strings["General Features"] = "Algemene functies"; App::$strings["Content Expiration"] = "Inhoud laten verlopen"; App::$strings["Remove posts/comments and/or private messages at a future time"] = "Berichten, reacties en/of privéberichten na een bepaalde tijd verwijderen"; @@ -1965,7 +2021,6 @@ App::$strings["Profile Import/Export"] = "Profiel importen/exporteren"; App::$strings["Save and load profile details across sites/channels"] = "Profielgegevens opslaan en in andere hubs/kanalen gebruiken."; App::$strings["Web Pages"] = "Webpagina's"; App::$strings["Provide managed web pages on your channel"] = "Sta beheerde webpagina's op jouw kanaal toe"; -App::$strings["Provide a wiki for your channel"] = "Voeg een wiki aan jouw kanaal toe"; App::$strings["Hide Rating"] = "Beoordelingen verbergen"; App::$strings["Hide the rating buttons on your channel and profile pages. Note: People can still rate you somewhere else."] = "Verbergt de beoordelingsknoppen op jouw kanaal- en profielpagina's. Let op: Mensen kunnen jou nog steeds ergens anders beoordelen. "; App::$strings["Private Notes"] = "Privé-aantekeningen"; @@ -1999,7 +2054,6 @@ App::$strings["Search by Date"] = "Zoek op datum"; App::$strings["Ability to select posts by date ranges"] = "Mogelijkheid om berichten op datum te filteren "; App::$strings["Privacy Groups"] = "Privacygroepen"; App::$strings["Enable management and selection of privacy groups"] = "Beheer en selectie van privacygroepen inschakelen"; -App::$strings["Saved Searches"] = "Opgeslagen zoekopdrachten"; App::$strings["Save search terms for re-use"] = "Sla zoekopdrachten op voor hergebruik"; App::$strings["Network Personal Tab"] = "Persoonlijke netwerktab"; App::$strings["Enable tab to display only Network posts that you've interacted on"] = "Sta het toe dat de tab netwerkberichten toont waarmee je interactie had"; @@ -2017,7 +2071,6 @@ App::$strings["Post Categories"] = "Categorieën berichten"; App::$strings["Add categories to your posts"] = "Voeg categorieën toe aan je berichten"; App::$strings["Emoji Reactions"] = "Emoji-reacties"; App::$strings["Add emoji reaction ability to posts"] = "Emoji-reacties in berichten toestaan"; -App::$strings["Saved Folders"] = "Bewaarde mappen"; App::$strings["Ability to file posts under folders"] = "Mogelijkheid om berichten in mappen op te slaan"; App::$strings["Dislike Posts"] = "Vind berichten niet leuk"; App::$strings["Ability to dislike posts/comments"] = "Mogelijkheid om berichten en reacties niet leuk te vinden"; @@ -2025,149 +2078,63 @@ App::$strings["Star Posts"] = "Geef berichten een ster"; App::$strings["Ability to mark special posts with a star indicator"] = "Mogelijkheid om speciale berichten met een ster te markeren"; App::$strings["Tag Cloud"] = "Tagwolk"; App::$strings["Provide a personal tag cloud on your channel page"] = "Zorgt voor een persoonlijke wolk met tags op jouw kanaalpagina"; +App::$strings["Embedded content"] = "Ingesloten (embedded) inhoud"; +App::$strings["Embedding disabled"] = "Insluiten (embedding) uitgeschakeld"; +App::$strings["Who can see this?"] = "Wie kan dit zien?"; +App::$strings["Custom selection"] = "Handmatige selectie"; +App::$strings["Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit the scope of \"Show\"."] = "Kies \"Tonen\" om weergave toe te staan. Met \"Niet tonen\" kan je uitzonderingen maken op \"Tonen\"."; +App::$strings["Show"] = "Tonen"; +App::$strings["Don't show"] = "Niet tonen"; +App::$strings["Other networks and post services"] = "Andere netwerken en diensten"; +App::$strings["Post permissions %s cannot be changed %s after a post is shared.
These permissions set who is allowed to view the post."] = "Permissies van berichten %s zijn niet meer te veranderen %s nadat een bericht is gedeeld.
Met deze permissies bepaal je wie het bericht kan zien."; +App::$strings["Logged out."] = "Uitgelogd."; +App::$strings["Failed authentication"] = "Mislukte authenticatie"; +App::$strings["Birthday"] = "Verjaardag of geboortedatum"; +App::$strings["Age: "] = "Leeftijd:"; +App::$strings["YYYY-MM-DD or MM-DD"] = "JJJJ-MM-DD of MM-DD"; +App::$strings["never"] = "nooit"; +App::$strings["less than a second ago"] = "minder dan een seconde geleden"; +App::$strings["__ctx:e.g. 22 hours ago, 1 minute ago__ %1\$d %2\$s ago"] = "%1\$d %2\$s geleden"; +App::$strings["__ctx:relative_date__ year"] = array( + 0 => "jaar", + 1 => "jaren", +); +App::$strings["__ctx:relative_date__ month"] = array( + 0 => "maand", + 1 => "maanden", +); +App::$strings["__ctx:relative_date__ week"] = array( + 0 => "week", + 1 => "weken", +); +App::$strings["__ctx:relative_date__ day"] = array( + 0 => "dag", + 1 => "dagen", +); +App::$strings["__ctx:relative_date__ hour"] = array( + 0 => "uur", + 1 => "uren", +); +App::$strings["__ctx:relative_date__ minute"] = array( + 0 => "minuut", + 1 => "minuten", +); +App::$strings["__ctx:relative_date__ second"] = array( + 0 => "seconde", + 1 => "seconden", +); +App::$strings["%1\$s's birthday"] = "Verjaardag van %1\$s"; +App::$strings["Happy Birthday %1\$s"] = "Gefeliciteerd met je verjaardag %1\$s"; App::$strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Een verwijderde collectie met deze naam is gereactiveerd. Bestaande itemrechten kunnen van toepassing zijn op deze collectie en toekomstige leden. Wanneer je dit niet zo bedoeld hebt, moet je een nieuwe collectie met een andere naam aanmaken."; App::$strings["Add new connections to this privacy group"] = "Voeg nieuwe connecties aan deze privacygroep toe"; App::$strings["edit"] = "bewerken"; App::$strings["Edit group"] = "Privacygroep bewerken"; App::$strings["Add privacy group"] = "Privacygroep toevoegen"; App::$strings["Channels not in any privacy group"] = "Kanalen die zich in geen enkele privacygroep bevinden"; -App::$strings["add"] = "toevoegen"; -App::$strings["l F d, Y \\@ g:i A"] = "l d F Y \\@ G:i"; -App::$strings["Starts:"] = "Start:"; -App::$strings["Finishes:"] = "Einde:"; -App::$strings["This event has been added to your calendar."] = "Dit evenement is aan jouw agenda toegevoegd."; -App::$strings["Not specified"] = "Niet aangegeven"; -App::$strings["Needs Action"] = "Actie vereist"; -App::$strings["Completed"] = "Voltooid"; -App::$strings["In Process"] = "In behandeling"; -App::$strings["Cancelled"] = "Geannuleerd"; -App::$strings["Not a valid email address"] = "Geen geldig e-mailadres"; -App::$strings["Your email domain is not among those allowed on this site"] = "Jouw e-maildomein is op deze hub niet toegestaan"; -App::$strings["Your email address is already registered at this site."] = "Jouw e-mailadres is al op deze hub geregistreerd."; -App::$strings["An invitation is required."] = "Een uitnodiging is vereist"; -App::$strings["Invitation could not be verified."] = "Uitnodiging kon niet geverifieerd worden"; -App::$strings["Please enter the required information."] = "Vul de vereiste informatie in."; -App::$strings["Failed to store account information."] = "Account-informatie kon niet opgeslagen worden."; -App::$strings["Registration confirmation for %s"] = "Registratiebevestiging voor %s"; -App::$strings["Registration request at %s"] = "Registratiebevestiging voor %s"; -App::$strings["your registration password"] = "jouw registratiewachtwoord"; -App::$strings["Registration details for %s"] = "Registratiegegevens voor %s"; -App::$strings["Account approved."] = "Account goedgekeurd"; -App::$strings["Registration revoked for %s"] = "Registratie ingetrokken voor %s"; -App::$strings["Click here to upgrade."] = "Klik hier om te upgraden."; -App::$strings["This action exceeds the limits set by your subscription plan."] = "Deze handeling overschrijdt de beperkingen die voor jouw abonnement gelden."; -App::$strings["This action is not available under your subscription plan."] = "Deze handeling is niet mogelijk met jouw abonnement."; -App::$strings["Channel is blocked on this site."] = "Kanaal is op deze hub geblokkeerd."; -App::$strings["Channel location missing."] = "Ontbrekende kanaallocatie."; -App::$strings["Response from remote channel was incomplete."] = "Antwoord van het kanaal op afstand was niet volledig."; -App::$strings["Channel was deleted and no longer exists."] = "Kanaal is verwijderd en bestaat niet meer."; -App::$strings["Protocol disabled."] = "Protocol uitgeschakeld."; -App::$strings["Channel discovery failed."] = "Kanaal ontdekken mislukt."; -App::$strings["Cannot connect to yourself."] = "Kan niet met jezelf verbinden"; -App::$strings["Item was not found."] = "Item niet gevonden"; -App::$strings["No source file."] = "Geen bronbestand."; -App::$strings["Cannot locate file to replace"] = "Kan het te vervangen bestand niet vinden"; -App::$strings["Cannot locate file to revise/update"] = "Kan het bestand wat aangepast moet worden niet vinden"; -App::$strings["File exceeds size limit of %d"] = "Bestand is groter dan de toegelaten %d"; -App::$strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Je hebt jouw limiet van %1$.0f MB opslagruimte voor bijlagen bereikt."; -App::$strings["File upload failed. Possible system limit or action terminated."] = "Uploaden van bestand mislukt. Mogelijk systeemlimiet bereikt of actie afgebroken."; -App::$strings["Stored file could not be verified. Upload failed."] = "Opgeslagen bestand kon niet worden geverifieerd. Uploaden mislukt."; -App::$strings["Path not available."] = "Pad niet beschikbaar."; -App::$strings["Empty pathname"] = "Padnaam leeg"; -App::$strings["duplicate filename or path"] = "dubbele bestandsnaam of pad"; -App::$strings["Path not found."] = "Pad niet gevonden"; -App::$strings["mkdir failed."] = "directory aanmaken (mkdir) mislukt."; -App::$strings["database storage failed."] = "opslag in database mislukt."; -App::$strings["Empty path"] = "Ontbrekend bestandspad"; -App::$strings["Image/photo"] = "Afbeelding/foto"; -App::$strings["Encrypted content"] = "Versleutelde inhoud"; -App::$strings["Install %s element: "] = "Installeer %s-element: "; -App::$strings["This post contains an installable %s element, however you lack permissions to install it on this site."] = "Dit bericht heeft een te installeren %s-element, maar je hebt geen permissies om het op deze hub te installeren."; -App::$strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s schreef het volgende %2\$s %3\$s"; -App::$strings["Click to open/close"] = "Klik om te openen of te sluiten"; -App::$strings["spoiler"] = "spoiler"; -App::$strings["Different viewers will see this text differently"] = "Deze tekst wordt per persoon anders weergeven."; -App::$strings["$1 wrote:"] = "$1 schreef:"; -App::$strings["(Unknown)"] = "(Onbekend)"; -App::$strings["Visible to anybody on the internet."] = "Voor iedereen op het internet zichtbaar."; -App::$strings["Visible to you only."] = "Alleen voor jou zichtbaar."; -App::$strings["Visible to anybody in this network."] = "Voor iedereen in dit netwerk zichtbaar."; -App::$strings["Visible to anybody authenticated."] = "Voor iedereen die geauthenticeerd is zichtbaar."; -App::$strings["Visible to anybody on %s."] = "Voor iedereen op %s zichtbaar."; -App::$strings["Visible to all connections."] = "Voor alle connecties zichtbaar."; -App::$strings["Visible to approved connections."] = "Voor alle geaccepteerde connecties zichtbaar."; -App::$strings["Visible to specific connections."] = "Voor specifieke connecties zichtbaar."; -App::$strings["Privacy group is empty."] = "Privacygroep is leeg"; -App::$strings["Privacy group: %s"] = "Privacygroep: %s"; -App::$strings["Connection not found."] = "Connectie niet gevonden."; -App::$strings["profile photo"] = "profielfoto"; -App::$strings["Embedded content"] = "Ingesloten (embedded) inhoud"; -App::$strings["Embedding disabled"] = "Insluiten (embedding) uitgeschakeld"; -App::$strings["System"] = "Systeem"; -App::$strings["New App"] = "Nieuwe app"; -App::$strings["Suggestions"] = "Voorgestelde kanalen"; -App::$strings["See more..."] = "Meer..."; -App::$strings["You have %1$.0f of %2$.0f allowed connections."] = "Je hebt %1$.0f van de %2$.0f toegestane connecties."; -App::$strings["Add New Connection"] = "Nieuwe connectie toevoegen"; -App::$strings["Enter channel address"] = "Vul kanaaladres in"; -App::$strings["Examples: bob@example.com, https://example.com/barbara"] = "Voorbeelden: bob@example.com, http://example.com/barbara"; -App::$strings["Notes"] = "Aantekeningen"; -App::$strings["Remove term"] = "Verwijder zoekterm"; -App::$strings["Everything"] = "Alles"; -App::$strings["Archives"] = "Archieven"; -App::$strings["Refresh"] = "Vernieuwen"; -App::$strings["Account settings"] = "Account"; -App::$strings["Channel settings"] = "Kanaal"; -App::$strings["Additional features"] = "Extra functies"; -App::$strings["Feature/Addon settings"] = "Plugin-instellingen"; -App::$strings["Display settings"] = "Weergave"; -App::$strings["Manage locations"] = "Locaties beheren"; -App::$strings["Export channel"] = "Kanaal exporteren"; -App::$strings["Connected apps"] = "Verbonden applicaties"; -App::$strings["Premium Channel Settings"] = "Instellingen premiumkanaal"; -App::$strings["Private Mail Menu"] = "Privéberichten"; -App::$strings["Combined View"] = "Gecombineerd postvak"; -App::$strings["Conversations"] = "Conversaties"; -App::$strings["Received Messages"] = "Ontvangen berichten"; -App::$strings["Sent Messages"] = "Verzonden berichten"; -App::$strings["No messages."] = "Geen berichten"; -App::$strings["Delete conversation"] = "Verwijder conversatie"; -App::$strings["Events Tools"] = "Agenda-hulpmiddelen"; -App::$strings["Export Calendar"] = "Exporteren"; -App::$strings["Import Calendar"] = "Importeren"; -App::$strings["Overview"] = "Overzicht"; -App::$strings["Chat Members"] = "Chatleden"; -App::$strings["Wiki List"] = "Wiki's"; -App::$strings["Wiki Pages"] = "Wikipagina's"; -App::$strings["Bookmarked Chatrooms"] = "Bladwijzers van chatkanalen"; -App::$strings["Suggested Chatrooms"] = "Voorgestelde chatkanalen"; -App::$strings["photo/image"] = "foto/afbeelding"; -App::$strings["Click to show more"] = "Klik voor meer"; -App::$strings["Rating Tools"] = "Beoordelingen"; -App::$strings["Rate Me"] = "Beoordeel mij"; -App::$strings["View Ratings"] = "Bekijk beoordelingen"; -App::$strings["Forums"] = "Forums"; -App::$strings["Tasks"] = "Taken"; -App::$strings["Documentation"] = "Documentatie"; -App::$strings["Project/Site Information"] = "Project- en hub-informatie"; -App::$strings["For Members"] = "Voor leden"; -App::$strings["For Administrators"] = "Voor beheerders"; -App::$strings["For Developers"] = "Voor ontwikkelaars"; -App::$strings["Member registrations waiting for confirmation"] = "Accounts die op goedkeuring wachten"; -App::$strings["Inspect queue"] = "Inspecteer berichtenwachtrij"; -App::$strings["DB updates"] = "Database-updates"; -App::$strings["Plugin Features"] = "Plugin-opties"; -App::$strings[" and "] = " en "; -App::$strings["public profile"] = "openbaar profiel"; -App::$strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s veranderde %2\$s naar “%3\$s”"; -App::$strings["Visit %1\$s's %2\$s"] = "Bezoek het %2\$s van %1\$s"; -App::$strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s heeft een aangepaste %2\$s, %3\$s veranderd."; -App::$strings["Attachments:"] = "Bijlagen:"; -App::$strings["\$Projectname event notification:"] = "Notificatie \$Projectname-gebeurtenis:"; App::$strings["Delete this item?"] = "Dit item verwijderen?"; -App::$strings["%s show less"] = "%s minder reacties weergeven"; -App::$strings["%s expand"] = "%s uitklappen"; -App::$strings["%s collapse"] = "%s inklappen"; +App::$strings["[-] show less"] = "[-] minder reacties weergeven"; +App::$strings["[+] expand"] = "[+] uitklappen"; +App::$strings["[-] collapse"] = "[-] inklappen"; App::$strings["Password too short"] = "Wachtwoord te kort"; App::$strings["Passwords do not match"] = "Wachtwoorden komen niet overeen"; App::$strings["everybody"] = "iedereen"; @@ -2222,78 +2189,72 @@ App::$strings["__ctx:calendar__ month"] = "maand"; App::$strings["__ctx:calendar__ week"] = "week"; App::$strings["__ctx:calendar__ day"] = "dag"; App::$strings["__ctx:calendar__ All day"] = "hele dag"; -App::$strings["%d invitation available"] = array( - 0 => "%d uitnodiging beschikbaar", - 1 => "%d uitnodigingen beschikbaar", -); -App::$strings["Find Channels"] = "Kanalen vinden"; -App::$strings["Enter name or interest"] = "Vul naam of interesse in"; -App::$strings["Connect/Follow"] = "Verbinden/volgen"; -App::$strings["Examples: Robert Morgenstein, Fishing"] = "Voorbeeld: Robert Morgenstein, vissen"; -App::$strings["Random Profile"] = "Willekeurig profiel"; -App::$strings["Invite Friends"] = "Vrienden uitnodigen"; -App::$strings["Advanced example: name=fred and country=iceland"] = "Geavanceerd voorbeeld (Engels): name=jan en country=nederland"; -App::$strings["%d connection in common"] = array( - 0 => "%d gemeenschappelijke connectie", - 1 => "%d gemeenschappelijke connecties", -); -App::$strings["show more"] = "meer connecties weergeven"; -App::$strings["Directory Options"] = "Opties kanalengids"; -App::$strings["Safe Mode"] = "Veilig zoeken"; -App::$strings["Public Forums Only"] = "Alleen openbare forums"; -App::$strings["This Website Only"] = "Alleen deze hub"; -App::$strings["No recipient provided."] = "Geen ontvanger opgegeven."; -App::$strings["[no subject]"] = "[geen onderwerp]"; -App::$strings["Unable to determine sender."] = "Afzender kan niet bepaald worden."; -App::$strings["Stored post could not be verified."] = "Opgeslagen bericht kon niet worden geverifieerd."; -App::$strings["Who can see this?"] = "Wie kan dit zien?"; -App::$strings["Custom selection"] = "Handmatige selectie"; -App::$strings["Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit the scope of \"Show\"."] = "Kies \"Tonen\" om weergave toe te staan. Met \"Niet tonen\" kan je uitzonderingen maken op \"Tonen\"."; -App::$strings["Show"] = "Tonen"; -App::$strings["Don't show"] = "Niet tonen"; -App::$strings["Other networks and post services"] = "Andere netwerken en diensten"; -App::$strings["Post permissions %s cannot be changed %s after a post is shared.
These permissions set who is allowed to view the post."] = "Permissies van berichten %s zijn niet meer te veranderen %s nadat een bericht is gedeeld.
Met deze permissies bepaal je wie het bericht kan zien."; -App::$strings["Birthday"] = "Verjaardag of geboortedatum"; -App::$strings["Age: "] = "Leeftijd:"; -App::$strings["YYYY-MM-DD or MM-DD"] = "JJJJ-MM-DD of MM-DD"; -App::$strings["never"] = "nooit"; -App::$strings["less than a second ago"] = "minder dan een seconde geleden"; -App::$strings["__ctx:e.g. 22 hours ago, 1 minute ago__ %1\$d %2\$s ago"] = "%1\$d %2\$s geleden"; -App::$strings["__ctx:relative_date__ year"] = array( - 0 => "jaar", - 1 => "jaren", -); -App::$strings["__ctx:relative_date__ month"] = array( - 0 => "maand", - 1 => "maanden", -); -App::$strings["__ctx:relative_date__ week"] = array( - 0 => "week", - 1 => "weken", -); -App::$strings["__ctx:relative_date__ day"] = array( - 0 => "dag", - 1 => "dagen", -); -App::$strings["__ctx:relative_date__ hour"] = array( - 0 => "uur", - 1 => "uren", -); -App::$strings["__ctx:relative_date__ minute"] = array( - 0 => "minuut", - 1 => "minuten", -); -App::$strings["__ctx:relative_date__ second"] = array( - 0 => "seconde", - 1 => "seconden", -); -App::$strings["%1\$s's birthday"] = "Verjaardag van %1\$s"; -App::$strings["Happy Birthday %1\$s"] = "Gefeliciteerd met je verjaardag %1\$s"; -App::$strings["Public Timeline"] = "Openbare tijdlijn"; +App::$strings["view full size"] = "volledige grootte tonen"; +App::$strings["No Subject"] = "Geen onderwerp"; +App::$strings["Friendica"] = "Friendica"; +App::$strings["OStatus"] = "OStatus"; +App::$strings["GNU-Social"] = "GNU social"; +App::$strings["RSS/Atom"] = "RSS/Atom"; +App::$strings["Diaspora"] = "Diaspora"; +App::$strings["Facebook"] = "Facebook"; +App::$strings["Zot"] = "Zot"; +App::$strings["LinkedIn"] = "LinkedIn"; +App::$strings["XMPP/IM"] = "XMPP/IM"; +App::$strings["MySpace"] = "MySpace"; +App::$strings["Image exceeds website size limit of %lu bytes"] = "Afbeelding is groter dan op deze hub toegestane limiet van %lu bytes"; +App::$strings["Image file is empty."] = "Afbeeldingsbestand is leeg"; +App::$strings["Photo storage failed."] = "Foto kan niet worden opgeslagen"; +App::$strings["a new photo"] = "een nieuwe foto"; +App::$strings["__ctx:photo_upload__ %1\$s posted %2\$s to %3\$s"] = "%1\$s plaatste %2\$s op %3\$s"; +App::$strings["Upload New Photos"] = "Nieuwe foto's uploaden"; App::$strings["Invalid data packet"] = "Datapakket ongeldig"; App::$strings["Unable to verify channel signature"] = "Kanaalkenmerk kon niet worden geverifieerd. "; App::$strings["Unable to verify site signature for %s"] = "Hubkenmerk voor %s kon niet worden geverifieerd"; App::$strings["invalid target signature"] = "ongeldig doelkenmerk"; +App::$strings["New Page"] = "Nieuwe pagina"; +App::$strings["Title"] = "Titel"; +App::$strings["Can view my normal stream and posts"] = "Kan mijn normale kanaalstream en berichten bekijken"; +App::$strings["Can view my default channel profile"] = "Kan mijn standaard kanaalprofiel bekijken"; +App::$strings["Can view my connections"] = "Kan een lijst met mijn connecties bekijken"; +App::$strings["Can view my file storage and photos"] = "Kan mijn foto's en andere bestanden bekijken"; +App::$strings["Can view my webpages"] = "Kan mijn pagina's bekijken"; +App::$strings["Can send me their channel stream and posts"] = "Kan mij de inhoud van hun kanaal en berichten sturen"; +App::$strings["Can post on my channel page (\"wall\")"] = "Kan een bericht in mijn kanaal plaatsen"; +App::$strings["Can comment on or like my posts"] = "Kan op mijn berichten reageren of deze (niet) leuk vinden"; +App::$strings["Can send me private mail messages"] = "Kan mij privéberichten sturen"; +App::$strings["Can like/dislike stuff"] = "Kan dingen leuk of niet leuk vinden"; +App::$strings["Profiles and things other than posts/comments"] = "Profielen en dingen, buiten berichten en reacties"; +App::$strings["Can forward to all my channel contacts via post @mentions"] = "Kan naar al mijn kanaalconnecties berichten doorsturen met behulp van @vermeldingen+"; +App::$strings["Advanced - useful for creating group forum channels"] = "Geavanceerd - nuttig voor groepforums"; +App::$strings["Can chat with me (when available)"] = "Kan met mij chatten (wanneer beschikbaar)"; +App::$strings["Can write to my file storage and photos"] = "Kan foto's en andere bestanden aan mijn bestandsopslag toevoegen"; +App::$strings["Can edit my webpages"] = "Kan mijn pagina's bewerken"; +App::$strings["Can source my public posts in derived channels"] = "Kan mijn openbare berichten als bron voor andere kanalen gebruiken"; +App::$strings["Somewhat advanced - very useful in open communities"] = "Enigszins geavanceerd (erg nuttig voor kanalen van forums/groepen)"; +App::$strings["Can administer my channel resources"] = "Kan mijn kanaal beheren"; +App::$strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "Zeer geavanceerd. Laat dit met rust, behalve als je weet wat je doet."; +App::$strings["Social Networking"] = "Sociaal netwerk"; +App::$strings["Social - Mostly Public"] = "Sociaal - Vrijwel alles openbaar"; +App::$strings["Social - Restricted"] = "Sociaal - Beperkt zichtbaar"; +App::$strings["Social - Private"] = "Sociaal - Verborgen kanaal"; +App::$strings["Community Forum"] = "Groepsforum"; +App::$strings["Forum - Mostly Public"] = "Forum - Vrijwel alles openbaar"; +App::$strings["Forum - Restricted"] = "Forum - Beperkt zichtbaar"; +App::$strings["Forum - Private"] = "Forum - Verborgen kanaal"; +App::$strings["Feed Republish"] = "Feed herpubliceren"; +App::$strings["Feed - Mostly Public"] = "Feed - Vrijwel alles openbaar"; +App::$strings["Feed - Restricted"] = "Feed - Beperkt zichtbaar"; +App::$strings["Special Purpose"] = "Speciaal doel"; +App::$strings["Special - Celebrity/Soapbox"] = "Speciaal - Beroemdheid/alleen volgen"; +App::$strings["Special - Group Repository"] = "Speciaal - Groepsopslag"; +App::$strings["Custom/Expert Mode"] = "Expertmodus/handmatig aanpassen"; +App::$strings[" and "] = " en "; +App::$strings["public profile"] = "openbaar profiel"; +App::$strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s veranderde %2\$s naar “%3\$s”"; +App::$strings["Visit %1\$s's %2\$s"] = "Bezoek het %2\$s van %1\$s"; +App::$strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s heeft een aangepaste %2\$s, %3\$s veranderd."; +App::$strings["Attachments:"] = "Bijlagen:"; +App::$strings["\$Projectname event notification:"] = "Notificatie \$Projectname-gebeurtenis:"; App::$strings["Focus (Hubzilla default)"] = "Focus (Hubzilla-standaard)"; App::$strings["Theme settings"] = "Thema-instellingen"; App::$strings["Select scheme"] = "Kies schema van thema"; @@ -2333,7 +2294,6 @@ App::$strings["__ctx:opensearch__ \$Projectname"] = "\$Projectname"; App::$strings["Update %s failed. See error logs."] = "Update %s mislukt. Zie foutenlogboek."; App::$strings["Update Error at %s"] = "Update-fout op %s"; App::$strings["Create an account to access services and applications within the Hubzilla"] = "Maak een account aan om toegang te krijgen tot diensten en toepassingen van Hubzilla"; -App::$strings["Login/Email"] = "E-mailadres of inlognaam"; App::$strings["Password"] = "Wachtwoord"; App::$strings["Remember me"] = "Aangemeld blijven"; App::$strings["Forgot your password?"] = "Wachtwoord vergeten?"; diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index 2b0f3b853..6cc3e2f10 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -106,7 +106,6 @@ input[type="submit"] { input, optgroup, select, textarea { color: #333; - resize: vertical; } pre code { @@ -2041,4 +2040,4 @@ dl.bb-dl > dd > li { #wiki-preview img { max-width: 100%; -} +} \ No newline at end of file diff --git a/view/tpl/cloud_actionspanel.tpl b/view/tpl/cloud_actionspanel.tpl index 8976b3007..81a586e75 100644 --- a/view/tpl/cloud_actionspanel.tpl +++ b/view/tpl/cloud_actionspanel.tpl @@ -1,20 +1,20 @@
- -
- - - -
-
+ +
+ + + +
+
- {{if $quota.limit || $quota.used}}{{/if}} -
- - -
- - -
-
+ {{if $quota.limit || $quota.used}}{{/if}} + +
+ + + + +
+
diff --git a/view/tpl/cloud_directory.tpl b/view/tpl/cloud_directory.tpl index 06176fdb8..870f7e9e1 100644 --- a/view/tpl/cloud_directory.tpl +++ b/view/tpl/cloud_directory.tpl @@ -1,4 +1,4 @@ -
+
diff --git a/view/tpl/jot-header.tpl b/view/tpl/jot-header.tpl index ee00e25e6..9953875ef 100755 --- a/view/tpl/jot-header.tpl +++ b/view/tpl/jot-header.tpl @@ -164,12 +164,6 @@ function enableOnUser(){ }); } catch(e) { } - - - // call initialization file - if (window.File && window.FileList && window.FileReader) { - DragDropUploadInit(); - } }); function deleteCheckedItems() { @@ -452,81 +446,7 @@ function enableOnUser(){ }, 'json'); }; - - // - // initialize - function DragDropUploadInit() { - - var filedrag = $("#profile-jot-text"); - - // is XHR2 available? - var xhr = new XMLHttpRequest(); - if (xhr.upload) { - - // file drop - filedrag.on("dragover", DragDropUploadFileHover); - filedrag.on("dragleave", DragDropUploadFileHover); - filedrag.on("drop", DragDropUploadFileSelectHandler); - - } - - window.filesToUpload = 0; - window.fileUploadsCompleted = 0; - - - } - - // file drag hover - function DragDropUploadFileHover(e) { - e.stopPropagation(); - e.preventDefault(); - e.target.className = (e.type == "dragover" ? "hover" : ""); - } - - // file selection - function DragDropUploadFileSelectHandler(e) { - - // cancel event and hover styling - DragDropUploadFileHover(e); - - // fetch FileList object - var files = e.target.files || e.originalEvent.dataTransfer.files; - // process all File objects - for (var i = 0, f; f = files[i]; i++) { - DragDropUploadFile(f, i); - } - - } - - // upload files - function DragDropUploadFile(file, idx) { - - window.filesToUpload = window.filesToUpload + 1; - - var xhr = new XMLHttpRequest(); - xhr.withCredentials = true; // Include the SESSION cookie info for authentication - (xhr.upload || xhr).addEventListener('progress', function (e) { - $('#profile-rotator').spin('tiny'); - }); - xhr.addEventListener('load', function (e) { - //console.log('xhr upload complete', e); - window.fileUploadsCompleted = window.fileUploadsCompleted + 1; - // When all the uploads have completed, refresh the page - if (window.filesToUpload > 0 && window.fileUploadsCompleted === window.filesToUpload) { - addeditortext(xhr.responseText); - $('#jot-media').val($('#jot-media').val() + xhr.responseText); - $('#profile-rotator').spin(false); - window.fileUploadsCompleted = window.filesToUpload = 0; - } - }); - // POST to the wall_upload endpoint - xhr.open('post', '{{$baseurl}}/wall_attach/{{$nickname}}', true); - - var data = new FormData(); - data.append('userfile', file); - xhr.send(data); - } - + diff --git a/view/tpl/attach_edit.tpl b/view/tpl/attach_edit.tpl index 1d58004e5..965fb4819 100644 --- a/view/tpl/attach_edit.tpl +++ b/view/tpl/attach_edit.tpl @@ -1,4 +1,4 @@ - + @@ -16,13 +16,15 @@
-
+ {{$aclselect}} + {{/if}} - {{* this is needed to append the upload files in the right order *}} {{foreach $entries as $item}} @@ -39,7 +38,6 @@ - {{/foreach}}
diff --git a/view/tpl/comment_item.tpl b/view/tpl/comment_item.tpl index 5920efafa..1d8bd671d 100755 --- a/view/tpl/comment_item.tpl +++ b/view/tpl/comment_item.tpl @@ -10,7 +10,7 @@ - + {{if $qcomment}} @@ -107,6 +107,7 @@ {{if ! $eid}} {{include file="field_checkbox.tpl" field=$share}} + {{$acl}} {{/if}}
@@ -115,12 +116,8 @@
{{if ! $eid}} - + {{/if}}
- -{{if ! $eid}} - {{$acl}} -{{/if}} diff --git a/view/tpl/field_acheckbox.tpl b/view/tpl/field_acheckbox.tpl index c87b9ac79..b54a4f3c3 100755 --- a/view/tpl/field_acheckbox.tpl +++ b/view/tpl/field_acheckbox.tpl @@ -9,7 +9,7 @@ {{/if}} - {{if $self || !$field.5 || $twocol }} + {{if $self || !$field.5}} {{/if}} {{if $notself && $field.5}} diff --git a/view/tpl/jot-header.tpl b/view/tpl/jot-header.tpl index 63691f842..e58278a85 100755 --- a/view/tpl/jot-header.tpl +++ b/view/tpl/jot-header.tpl @@ -164,12 +164,6 @@ function enableOnUser(){ }); } catch(e) { } - - - // call initialization file - if (window.File && window.FileList && window.FileReader) { - DragDropUploadInit(); - } }); function deleteCheckedItems() { @@ -268,32 +262,17 @@ function enableOnUser(){ function linkdrop(event) { var reply = event.dataTransfer.getData("text/uri-list"); + event.target.textContent = reply; event.preventDefault(); - var editwin = '#' + event.target.id; - var commentwin = false; - if(editwin) { - commentwin = ((editwin.indexOf('comment') >= 0) ? true : false); - if(commentwin) { - var commentid = editwin.substring(editwin.lastIndexOf('-') + 1); - commentOpen(document.getElementById(event.target.id),commentid); - } - } - if(reply && reply.length) { reply = bin2hex(reply); $('#profile-rotator').spin('tiny'); $.get('{{$baseurl}}/linkinfo?f=&binurl=' + reply, function(data) { - if(commentwin) { - $(editwin).val( $(editwin).val() + data ); - $('#profile-rotator').spin(false); - } - else { - if (!editor) $("#profile-jot-text").val(""); - initEditor(function(){ + if (!editor) $("#profile-jot-text").val(""); + initEditor(function(){ addeditortext(data); $('#profile-rotator').spin(false); - }); - } + }); }); } } @@ -467,82 +446,7 @@ function enableOnUser(){ }, 'json'); }; - - // - // initialize - function DragDropUploadInit() { - - var filedrag = $("#profile-jot-text"); - - // is XHR2 available? - var xhr = new XMLHttpRequest(); - if (xhr.upload) { - - // file drop - filedrag.on("dragover", DragDropUploadFileHover); - filedrag.on("dragleave", DragDropUploadFileHover); - filedrag.on("drop", DragDropUploadFileSelectHandler); - - } - - window.filesToUpload = 0; - window.fileUploadsCompleted = 0; - - - } - - // file drag hover - function DragDropUploadFileHover(e) { - e.stopPropagation(); - e.preventDefault(); - e.target.className = (e.type == "dragover" ? "hover" : ""); - } - - // file selection - function DragDropUploadFileSelectHandler(e) { - - // cancel event and hover styling - DragDropUploadFileHover(e); - - - // fetch FileList object - var files = e.target.files || e.originalEvent.dataTransfer.files; - // process all File objects - for (var i = 0, f; f = files[i]; i++) { - DragDropUploadFile(f, i); - } - - } - - // upload files - function DragDropUploadFile(file, idx) { - - window.filesToUpload = window.filesToUpload + 1; - - var xhr = new XMLHttpRequest(); - xhr.withCredentials = true; // Include the SESSION cookie info for authentication - (xhr.upload || xhr).addEventListener('progress', function (e) { - $('#profile-rotator').spin('tiny'); - }); - xhr.addEventListener('load', function (e) { - //console.log('xhr upload complete', e); - window.fileUploadsCompleted = window.fileUploadsCompleted + 1; - addeditortext(xhr.responseText); - $('#jot-media').val($('#jot-media').val() + xhr.responseText); - // When all the uploads have completed, refresh the page - if (window.filesToUpload > 0 && window.fileUploadsCompleted === window.filesToUpload) { - $('#profile-rotator').spin(false); - window.fileUploadsCompleted = window.filesToUpload = 0; - } - }); - // POST to the wall_upload endpoint - xhr.open('post', '{{$baseurl}}/wall_attach/{{$nickname}}', true); - - var data = new FormData(); - data.append('userfile', file); - xhr.send(data); - } - + @@ -393,7 +368,6 @@ // Generate the table of contents in the side nav menu (see view/tpl/help.tpl) $(document).ready(function () { - $(".panel-collapse.in").find('a').each(function(){ window.console.log($(this).attr('href')); var url = document.createElement('a'); @@ -407,21 +381,14 @@ tocUl.removeClass(); // Classes are automatically added to
    elements by something else tocUl.toc({content: "#doco-content", headings: "h1"}); tocUl.addClass('toc-content sub-menu'); - tocUl.attr('id', 'doco-side-toc'); - if( $(window).width() > 768) { - tocUl.sticky({topSpacing:$('nav').outerHeight(true), zIndex: 1000}); - } + tocUl.attr('id', 'doco-side-toc'); + } }); - $( window ).resize(function() { - if($(window).width() < 768 ) { - $( "#doco-side-toc" ).unstick(); - } else { - $( "#doco-side-toc" ).sticky({topSpacing:$('nav').outerHeight(true), zIndex: 1000}); - } - }); - + $(".widget").stick_in_parent({ + offset_top: $('nav').outerHeight(true) + }); }); diff --git a/view/tpl/help.tpl b/view/tpl/help.tpl index 1c5d05738..8eb53417a 100644 --- a/view/tpl/help.tpl +++ b/view/tpl/help.tpl @@ -16,16 +16,7 @@ // Generate the table of contents in the side nav menu (see view/tpl/help.tpl) $(document).ready(function () { - $('#doco-top-toc').toc({content: "#doco-content", headings: "h1,h2,h3,h4"}); - $('.navbar-header').append('
- - - diff --git a/library/sticky-kit/sticky-kit.js b/library/sticky-kit/sticky-kit.js new file mode 100644 index 000000000..00b1ea2ff --- /dev/null +++ b/library/sticky-kit/sticky-kit.js @@ -0,0 +1,265 @@ +// Generated by CoffeeScript 1.10.0 + +/** +@license Sticky-kit v1.1.3 | MIT | Leaf Corcoran 2015 | http://leafo.net + */ + +(function() { + var $, win; + + $ = window.jQuery; + + win = $(window); + + $.fn.stick_in_parent = function(opts) { + var doc, elm, enable_bottoming, fn, i, inner_scrolling, len, manual_spacer, offset_top, outer_width, parent_selector, recalc_every, sticky_class; + if (opts == null) { + opts = {}; + } + sticky_class = opts.sticky_class, inner_scrolling = opts.inner_scrolling, recalc_every = opts.recalc_every, parent_selector = opts.parent, offset_top = opts.offset_top, manual_spacer = opts.spacer, enable_bottoming = opts.bottoming; + if (offset_top == null) { + offset_top = 0; + } + if (parent_selector == null) { + parent_selector = void 0; + } + if (inner_scrolling == null) { + inner_scrolling = true; + } + if (sticky_class == null) { + sticky_class = "is_stuck"; + } + doc = $(document); + if (enable_bottoming == null) { + enable_bottoming = true; + } + outer_width = function(el) { + var _el, computed, w; + if (window.getComputedStyle) { + _el = el[0]; + computed = window.getComputedStyle(el[0]); + w = parseFloat(computed.getPropertyValue("width")) + parseFloat(computed.getPropertyValue("margin-left")) + parseFloat(computed.getPropertyValue("margin-right")); + if (computed.getPropertyValue("box-sizing") !== "border-box") { + w += parseFloat(computed.getPropertyValue("border-left-width")) + parseFloat(computed.getPropertyValue("border-right-width")) + parseFloat(computed.getPropertyValue("padding-left")) + parseFloat(computed.getPropertyValue("padding-right")); + } + return w; + } else { + return el.outerWidth(true); + } + }; + fn = function(elm, padding_bottom, parent_top, parent_height, top, height, el_float, detached) { + var bottomed, detach, fixed, last_pos, last_scroll_height, offset, parent, recalc, recalc_and_tick, recalc_counter, spacer, tick; + if (elm.data("sticky_kit")) { + return; + } + elm.data("sticky_kit", true); + last_scroll_height = doc.height(); + parent = elm.parent(); + if (parent_selector != null) { + parent = parent.closest(parent_selector); + } + if (!parent.length) { + throw "failed to find stick parent"; + } + fixed = false; + bottomed = false; + spacer = manual_spacer != null ? manual_spacer && elm.closest(manual_spacer) : $("
"); + if (spacer) { + spacer.css('position', elm.css('position')); + } + recalc = function() { + var border_top, padding_top, restore; + if (detached) { + return; + } + last_scroll_height = doc.height(); + border_top = parseInt(parent.css("border-top-width"), 10); + padding_top = parseInt(parent.css("padding-top"), 10); + padding_bottom = parseInt(parent.css("padding-bottom"), 10); + parent_top = parent.offset().top + border_top + padding_top; + parent_height = parent.height(); + if (fixed) { + fixed = false; + bottomed = false; + if (manual_spacer == null) { + elm.insertAfter(spacer); + spacer.detach(); + } + elm.css({ + position: "", + top: "", + width: "", + bottom: "" + }).removeClass(sticky_class); + restore = true; + } + top = elm.offset().top - (parseInt(elm.css("margin-top"), 10) || 0) - offset_top; + height = elm.outerHeight(true); + el_float = elm.css("float"); + if (spacer) { + spacer.css({ + width: outer_width(elm), + height: height, + display: elm.css("display"), + "vertical-align": elm.css("vertical-align"), + "float": el_float + }); + } + if (restore) { + return tick(); + } + }; + recalc(); + if (height === parent_height) { + return; + } + last_pos = void 0; + offset = offset_top; + recalc_counter = recalc_every; + tick = function() { + var css, delta, recalced, scroll, will_bottom, win_height; + if (detached) { + return; + } + recalced = false; + if (recalc_counter != null) { + recalc_counter -= 1; + if (recalc_counter <= 0) { + recalc_counter = recalc_every; + recalc(); + recalced = true; + } + } + if (!recalced && doc.height() !== last_scroll_height) { + recalc(); + recalced = true; + } + scroll = win.scrollTop(); + if (last_pos != null) { + delta = scroll - last_pos; + } + last_pos = scroll; + if (fixed) { + if (enable_bottoming) { + will_bottom = scroll + height + offset > parent_height + parent_top; + if (bottomed && !will_bottom) { + bottomed = false; + elm.css({ + position: "fixed", + bottom: "", + top: offset + }).trigger("sticky_kit:unbottom"); + } + } + if (scroll < top) { + fixed = false; + offset = offset_top; + if (manual_spacer == null) { + if (el_float === "left" || el_float === "right") { + elm.insertAfter(spacer); + } + spacer.detach(); + } + css = { + position: "", + width: "", + top: "" + }; + elm.css(css).removeClass(sticky_class).trigger("sticky_kit:unstick"); + } + if (inner_scrolling) { + win_height = win.height(); + if (height + offset_top > win_height) { + if (!bottomed) { + offset -= delta; + offset = Math.max(win_height - height, offset); + offset = Math.min(offset_top, offset); + if (fixed) { + elm.css({ + top: offset + "px" + }); + } + } + } + } + } else { + if (scroll > top) { + fixed = true; + css = { + position: "fixed", + top: offset + }; + css.width = elm.css("box-sizing") === "border-box" ? elm.outerWidth() + "px" : elm.width() + "px"; + elm.css(css).addClass(sticky_class); + if (manual_spacer == null) { + elm.after(spacer); + if (el_float === "left" || el_float === "right") { + spacer.append(elm); + } + } + elm.trigger("sticky_kit:stick"); + } + } + if (fixed && enable_bottoming) { + if (will_bottom == null) { + will_bottom = scroll + height + offset > parent_height + parent_top; + } + if (!bottomed && will_bottom) { + bottomed = true; + if (parent.css("position") === "static") { + parent.css({ + position: "relative" + }); + } + return elm.css({ + position: "absolute", + bottom: padding_bottom, + top: "auto" + }).trigger("sticky_kit:bottom"); + } + } + }; + recalc_and_tick = function() { + recalc(); + return tick(); + }; + detach = function() { + detached = true; + win.off("touchmove", tick); + win.off("scroll", tick); + win.off("resize", recalc_and_tick); + $(document.body).off("sticky_kit:recalc", recalc_and_tick); + elm.off("sticky_kit:detach", detach); + elm.removeData("sticky_kit"); + elm.css({ + position: "", + bottom: "", + top: "", + width: "" + }); + parent.position("position", ""); + if (fixed) { + if (manual_spacer == null) { + if (el_float === "left" || el_float === "right") { + elm.insertAfter(spacer); + } + spacer.remove(); + } + return elm.removeClass(sticky_class); + } + }; + win.on("touchmove", tick); + win.on("scroll", tick); + win.on("resize", recalc_and_tick); + $(document.body).on("sticky_kit:recalc", recalc_and_tick); + elm.on("sticky_kit:detach", detach); + return setTimeout(tick, 0); + }; + for (i = 0, len = this.length; i < len; i++) { + elm = this[i]; + fn($(elm)); + } + return this; + }; + +}).call(this); diff --git a/library/sticky-kit/sticky-kit.min.js b/library/sticky-kit/sticky-kit.min.js new file mode 100644 index 000000000..c4d7f2e3b --- /dev/null +++ b/library/sticky-kit/sticky-kit.min.js @@ -0,0 +1,10 @@ +/* + Sticky-kit v1.1.3 | MIT | Leaf Corcoran 2015 | http://leafo.net +*/ +(function(){var c,f;c=window.jQuery;f=c(window);c.fn.stick_in_parent=function(b){var A,w,J,n,B,K,p,q,L,k,E,t;null==b&&(b={});t=b.sticky_class;B=b.inner_scrolling;E=b.recalc_every;k=b.parent;q=b.offset_top;p=b.spacer;w=b.bottoming;null==q&&(q=0);null==k&&(k=void 0);null==B&&(B=!0);null==t&&(t="is_stuck");A=c(document);null==w&&(w=!0);L=function(a){var b;return window.getComputedStyle?(a=window.getComputedStyle(a[0]),b=parseFloat(a.getPropertyValue("width"))+parseFloat(a.getPropertyValue("margin-left"))+ +parseFloat(a.getPropertyValue("margin-right")),"border-box"!==a.getPropertyValue("box-sizing")&&(b+=parseFloat(a.getPropertyValue("border-left-width"))+parseFloat(a.getPropertyValue("border-right-width"))+parseFloat(a.getPropertyValue("padding-left"))+parseFloat(a.getPropertyValue("padding-right"))),b):a.outerWidth(!0)};J=function(a,b,n,C,F,u,r,G){var v,H,m,D,I,d,g,x,y,z,h,l;if(!a.data("sticky_kit")){a.data("sticky_kit",!0);I=A.height();g=a.parent();null!=k&&(g=g.closest(k));if(!g.length)throw"failed to find stick parent"; +v=m=!1;(h=null!=p?p&&a.closest(p):c("
"))&&h.css("position",a.css("position"));x=function(){var d,f,e;if(!G&&(I=A.height(),d=parseInt(g.css("border-top-width"),10),f=parseInt(g.css("padding-top"),10),b=parseInt(g.css("padding-bottom"),10),n=g.offset().top+d+f,C=g.height(),m&&(v=m=!1,null==p&&(a.insertAfter(h),h.detach()),a.css({position:"",top:"",width:"",bottom:""}).removeClass(t),e=!0),F=a.offset().top-(parseInt(a.css("margin-top"),10)||0)-q,u=a.outerHeight(!0),r=a.css("float"),h&&h.css({width:L(a), +height:u,display:a.css("display"),"vertical-align":a.css("vertical-align"),"float":r}),e))return l()};x();if(u!==C)return D=void 0,d=q,z=E,l=function(){var c,l,e,k;if(!G&&(e=!1,null!=z&&(--z,0>=z&&(z=E,x(),e=!0)),e||A.height()===I||x(),e=f.scrollTop(),null!=D&&(l=e-D),D=e,m?(w&&(k=e+u+d>C+n,v&&!k&&(v=!1,a.css({position:"fixed",bottom:"",top:d}).trigger("sticky_kit:unbottom"))),ec&&!v&&(d-=l,d=Math.max(c-u,d),d=Math.min(q,d),m&&a.css({top:d+"px"})))):e>F&&(m=!0,c={position:"fixed",top:d},c.width="border-box"===a.css("box-sizing")?a.outerWidth()+"px":a.width()+"px",a.css(c).addClass(t),null==p&&(a.after(h),"left"!==r&&"right"!==r||h.append(a)),a.trigger("sticky_kit:stick")),m&&w&&(null==k&&(k=e+u+d>C+n),!v&&k)))return v=!0,"static"===g.css("position")&&g.css({position:"relative"}),a.css({position:"absolute",bottom:b,top:"auto"}).trigger("sticky_kit:bottom")}, +y=function(){x();return l()},H=function(){G=!0;f.off("touchmove",l);f.off("scroll",l);f.off("resize",y);c(document.body).off("sticky_kit:recalc",y);a.off("sticky_kit:detach",H);a.removeData("sticky_kit");a.css({position:"",bottom:"",top:"",width:""});g.position("position","");if(m)return null==p&&("left"!==r&&"right"!==r||a.insertAfter(h),h.remove()),a.removeClass(t)},f.on("touchmove",l),f.on("scroll",l),f.on("resize",y),c(document.body).on("sticky_kit:recalc",y),a.on("sticky_kit:detach",H),setTimeout(l, +0)}};n=0;for(K=this.length;n
- +
diff --git a/view/php/theme_init.php b/view/php/theme_init.php index 46aadaa7d..1fb07ae4f 100644 --- a/view/php/theme_init.php +++ b/view/php/theme_init.php @@ -26,6 +26,7 @@ head_add_js('library/jquery-textcomplete/jquery.textcomplete.js'); //head_add_js('library/colorbox/jquery.colorbox.js'); head_add_js('library/jquery.timeago.js'); head_add_js('library/readmore.js/readmore.js'); +head_add_js('library/sticky-kit/sticky-kit.min.js'); //head_add_js('library/jquery_ac/friendica.complete.js'); //head_add_js('library/tiptip/jquery.tipTip.minified.js'); head_add_js('library/jgrowl/jquery.jgrowl_minimized.js'); diff --git a/view/theme/redbasic/js/redbasic.js b/view/theme/redbasic/js/redbasic.js index c5f74db3f..c3c2c7e3f 100644 --- a/view/theme/redbasic/js/redbasic.js +++ b/view/theme/redbasic/js/redbasic.js @@ -16,6 +16,23 @@ $(document).ready(function() { } $('#css3-calc').remove(); // Remove the test element + if($(window).outerWidth() > 767) { + $('#left_aside_wrapper').stick_in_parent({ + offset_top: $('nav').outerHeight(true) + }); + } + + $(window).resize(function() { + if($(window).outerWidth() > 767) { + $('#left_aside_wrapper').stick_in_parent({ + offset_top: $('nav').outerHeight(true) + }); + } + else { + $('#left_aside_wrapper').trigger("sticky_kit:detach"); + } + }); + $('#expand-aside').click(function() { $('#expand-aside-icon').toggleClass('fa-arrow-circle-right').toggleClass('fa-arrow-circle-left'); $('main').toggleClass('region_1-on'); From 7c86f11167bf9f942dba6405a79f48d87bd309a5 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Fri, 16 Dec 2016 16:24:17 +0100 Subject: [PATCH 131/819] retrigger after fullscreen --- view/theme/redbasic/js/redbasic.js | 1 + 1 file changed, 1 insertion(+) diff --git a/view/theme/redbasic/js/redbasic.js b/view/theme/redbasic/js/redbasic.js index c3c2c7e3f..8fb1117ce 100644 --- a/view/theme/redbasic/js/redbasic.js +++ b/view/theme/redbasic/js/redbasic.js @@ -89,5 +89,6 @@ function makeFullScreen(full) { $('#tabs-collapse-1').css({'visibility': ''}); $('#inline-btn').hide(); $('main').css({'transition': ''}); + $(document.body).trigger("sticky_kit:recalc"); } } From ae8129f1fdb5266ff910e5814cb3ca9743b307e7 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Fri, 16 Dec 2016 22:50:19 +0100 Subject: [PATCH 132/819] display inline instead of floating --- view/theme/redbasic/css/style.css | 16 ++++++---------- view/tpl/micropro_img.tpl | 2 +- 2 files changed, 7 insertions(+), 11 deletions(-) diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index b5f25073d..5c9c7397f 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -473,7 +473,6 @@ footer { #contact-block { width: 100%; - float: left; } #contact-block-numcontacts { @@ -482,12 +481,10 @@ footer { } .contact-block-div { - float: left; - width: 50px; - height: 50px; + display: inline; } + .contact-block-textdiv { - float: left; width: 150px; height: 34px; } @@ -495,12 +492,11 @@ footer { #contact-block-end { clear: both; } -.contact-block-link { - float: left; -} + .contact-block-img { - width:48px; - height:48px; + width:47px; + height:47px; + margin-bottom: 3px; } #tag-remove { diff --git a/view/tpl/micropro_img.tpl b/view/tpl/micropro_img.tpl index 23b7bd281..a7c5973f3 100755 --- a/view/tpl/micropro_img.tpl +++ b/view/tpl/micropro_img.tpl @@ -1 +1 @@ -
{{$name}}
+
From 96260ba26d0caf203b70608b07148d1fcacd72da Mon Sep 17 00:00:00 2001 From: zotlabs Date: Sun, 18 Dec 2016 22:33:23 -0800 Subject: [PATCH 133/819] deprecate bb_iframe --- include/bbcode.php | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/include/bbcode.php b/include/bbcode.php index b315255f5..32354aeda 100644 --- a/include/bbcode.php +++ b/include/bbcode.php @@ -1067,15 +1067,15 @@ function bbcode($Text, $preserve_nl = false, $tryoembed = true, $cache = false) $Text = preg_replace("/\[zaudio\](.*?)\[\/zaudio\]/", '$1', $Text); } - if ($tryoembed){ - if (strpos($Text,'[/iframe]') !== false) { - $Text = preg_replace_callback("/\[iframe\](.*?)\[\/iframe\]/ism", 'bb_iframe', $Text); - } - } else { - if (strpos($Text,'[/iframe]') !== false) { - $Text = preg_replace("/\[iframe\](.*?)\[\/iframe\]/ism", '$1', $Text); - } - } +// if ($tryoembed){ +// if (strpos($Text,'[/iframe]') !== false) { +// $Text = preg_replace_callback("/\[iframe\](.*?)\[\/iframe\]/ism", 'bb_iframe', $Text); +// } +// } else { +// if (strpos($Text,'[/iframe]') !== false) { +// $Text = preg_replace("/\[iframe\](.*?)\[\/iframe\]/ism", '$1', $Text); +// } +// } // oembed tag $Text = oembed_bbcode2html($Text); From 127772e1b4a2853d98635e7144757a9df5ffb4a0 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Mon, 19 Dec 2016 09:48:01 +0100 Subject: [PATCH 134/819] this is not needed --- view/js/main.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/view/js/main.js b/view/js/main.js index 6d68a5108..3981d4266 100644 --- a/view/js/main.js +++ b/view/js/main.js @@ -666,8 +666,6 @@ function updateConvItems(mode,data) { $('.item_' + bParam_mid.substring(0,32)).addClass('item-highlight'); } - $(document.body).trigger("sticky_kit:recalc"); - } function collapseHeight() { From 1e1b51bc1c9bd3f94670ecfa1c1e5b9f6a4402bc Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Mon, 19 Dec 2016 12:46:36 +0100 Subject: [PATCH 135/819] make sticky aside available for small screens. we had to get rid of the transition effect for this to work reliably --- view/theme/redbasic/css/style.css | 10 ++++---- view/theme/redbasic/js/redbasic.js | 38 +++++++++++++++++------------- view/theme/redbasic/php/style.php | 2 +- 3 files changed, 28 insertions(+), 22 deletions(-) diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index 5c9c7397f..8a632088f 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -22,6 +22,8 @@ body { color: $font_colour; margin: 0px; height: 100%; + overflow-x: hidden; + } aside { @@ -30,6 +32,10 @@ aside { max-width: $aside_widthpx; } +aside#region_1 { + border-right: 1px solid transparent; +} + main { margin-left: auto; margin-right: auto; @@ -1832,10 +1838,6 @@ nav .badge.mail-update:hover { border-right: 1px solid $nav_bd; } - main { - transition: all 0.25s ease-in-out; - } - main { left: -$aside_widthpx; width: calc( 100% + $aside_widthpx ); diff --git a/view/theme/redbasic/js/redbasic.js b/view/theme/redbasic/js/redbasic.js index 8fb1117ce..4a18db8ff 100644 --- a/view/theme/redbasic/js/redbasic.js +++ b/view/theme/redbasic/js/redbasic.js @@ -8,34 +8,32 @@ $(document).ready(function() { if( $('#css3-calc').width() == 10) { $(window).resize(function() { if($(window).width() < 767) { - $('main').css('width', $(window).width() + 287 ); + $('main').css('width', $(window).width() + $('aside').outerWidth() ); } else { $('main').css('width', '100%' ); } }); } + $('#css3-calc').remove(); // Remove the test element - if($(window).outerWidth() > 767) { - $('#left_aside_wrapper').stick_in_parent({ - offset_top: $('nav').outerHeight(true) - }); - } + $('#left_aside_wrapper').stick_in_parent({ + offset_top: $('nav').outerHeight(true) + }); - $(window).resize(function() { - if($(window).outerWidth() > 767) { - $('#left_aside_wrapper').stick_in_parent({ - offset_top: $('nav').outerHeight(true) - }); - } - else { - $('#left_aside_wrapper').trigger("sticky_kit:detach"); + $('#expand-aside').on('click', toggleAside); + + $('section').on('click', function() { + if($('main').hasClass('region_1-on')){ + toggleAside(); } }); - $('#expand-aside').click(function() { - $('#expand-aside-icon').toggleClass('fa-arrow-circle-right').toggleClass('fa-arrow-circle-left'); - $('main').toggleClass('region_1-on'); + $(window).on('scroll', function() { + if($('main').hasClass('region_1-on') && $(window).scrollLeft() > 5){ + $(window).scrollLeft(0); + toggleAside(); + } }); if($('aside').length && $('aside').html().length === 0) { @@ -92,3 +90,9 @@ function makeFullScreen(full) { $(document.body).trigger("sticky_kit:recalc"); } } + +function toggleAside() { + $(window).scroll(); + $('#expand-aside-icon').toggleClass('fa-arrow-circle-right').toggleClass('fa-arrow-circle-left'); + $('main').toggleClass('region_1-on'); +} diff --git a/view/theme/redbasic/php/style.php b/view/theme/redbasic/php/style.php index 2db0d4c44..9b994ebdf 100644 --- a/view/theme/redbasic/php/style.php +++ b/view/theme/redbasic/php/style.php @@ -165,7 +165,7 @@ if(file_exists('view/theme/redbasic/css/style.css')) { $x .= $schemecss; } - $aside_width = 287; + $aside_width = 288; // left aside and right aside are 285px + converse width if($align_left) { From ac9974fd64b69c0712f826a6b8b9fffa7b0790a4 Mon Sep 17 00:00:00 2001 From: jeroenpraat Date: Mon, 19 Dec 2016 16:50:52 +0100 Subject: [PATCH 136/819] Update NL strings --- view/nl/hmessages.po | 1968 +++++++++++++++++++++--------------------- view/nl/hstrings.php | 315 +++---- 2 files changed, 1160 insertions(+), 1123 deletions(-) diff --git a/view/nl/hmessages.po b/view/nl/hmessages.po index 233ca5fa7..55ce3e7b3 100644 --- a/view/nl/hmessages.po +++ b/view/nl/hmessages.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: Redmatrix\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-12-09 00:05-0800\n" -"PO-Revision-Date: 2016-12-13 22:29+0000\n" +"POT-Creation-Date: 2016-12-16 00:04-0800\n" +"PO-Revision-Date: 2016-12-19 15:18+0000\n" "Last-Translator: jeroenpraat \n" "Language-Team: Dutch (http://www.transifex.com/Friendica/red-matrix/language/nl/)\n" "MIME-Version: 1.0\n" @@ -201,18 +201,18 @@ msgstr "Planning-postvak UIT" #: ../../Zotlabs/Storage/Browser.php:163 ../../Zotlabs/Module/Photos.php:789 #: ../../Zotlabs/Module/Photos.php:1249 -#: ../../Zotlabs/Module/Embedphotos.php:145 ../../Zotlabs/Lib/Apps.php:490 -#: ../../Zotlabs/Lib/Apps.php:565 +#: ../../Zotlabs/Module/Embedphotos.php:145 ../../Zotlabs/Lib/Apps.php:526 +#: ../../Zotlabs/Lib/Apps.php:603 #: ../../extend/addon/addon/cdav/Mod_Cdav.php:745 #: ../../extend/addon/addon/cdav/Mod_Cdav.php:746 #: ../../extend/addon/addon/cdav/Mod_Cdav.php:753 -#: ../../include/widgets.php:1754 ../../include/conversation.php:1047 +#: ../../include/widgets.php:1684 ../../include/conversation.php:1029 msgid "Unknown" msgstr "Onbekend" #: ../../Zotlabs/Storage/Browser.php:224 ../../Zotlabs/Module/Fbrowser.php:85 -#: ../../Zotlabs/Lib/Apps.php:217 ../../include/nav.php:96 -#: ../../include/conversation.php:1699 +#: ../../Zotlabs/Lib/Apps.php:219 ../../include/nav.php:96 +#: ../../include/conversation.php:1681 msgid "Files" msgstr "Bestanden" @@ -231,7 +231,6 @@ msgstr "Gedeeld" #: ../../extend/addon/addon/cdav/include/widgets.php:127 #: ../../extend/addon/addon/cdav/include/widgets.php:164 #: ../../extend/addon/addon/cdav/Mod_Cdav.php:1151 -#: ../../include/widgets.php:969 msgid "Create" msgstr "Aanmaken" @@ -242,7 +241,7 @@ msgstr "Aanmaken" #: ../../Zotlabs/Module/Embedphotos.php:157 #: ../../extend/addon/addon/cdav/include/widgets.php:132 #: ../../extend/addon/addon/cdav/include/widgets.php:168 -#: ../../include/widgets.php:1767 +#: ../../include/widgets.php:1697 msgid "Upload" msgstr "Uploaden" @@ -253,7 +252,7 @@ msgstr "Uploaden" #: ../../Zotlabs/Module/Settings/Oauth.php:115 #: ../../Zotlabs/Module/Chat.php:250 #: ../../extend/addon/addon/cdav/Mod_Cdav.php:1136 -#: ../../extend/addon/addon/rendezvous/rendezvous.php:132 +#: ../../extend/addon/addon/rendezvous/rendezvous.php:164 msgid "Name" msgstr "Naam" @@ -280,15 +279,15 @@ msgstr "Laatst gewijzigd" #: ../../Zotlabs/Module/Editblock.php:109 ../../Zotlabs/Module/Editpost.php:84 #: ../../Zotlabs/Module/Blocks.php:160 ../../Zotlabs/Module/Layouts.php:192 #: ../../Zotlabs/Module/Webpages.php:240 ../../Zotlabs/Module/Wiki.php:144 -#: ../../Zotlabs/Module/Wiki.php:252 +#: ../../Zotlabs/Module/Wiki.php:246 #: ../../Zotlabs/Module/Settings/Oauth.php:149 -#: ../../Zotlabs/Module/Thing.php:260 ../../Zotlabs/Lib/Apps.php:341 -#: ../../Zotlabs/Lib/ThreadItem.php:106 +#: ../../Zotlabs/Module/Thing.php:260 ../../Zotlabs/Lib/ThreadItem.php:106 +#: ../../Zotlabs/Lib/Apps.php:346 #: ../../extend/addon/addon/cdav/include/widgets.php:125 #: ../../extend/addon/addon/cdav/include/widgets.php:161 #: ../../include/channel.php:961 ../../include/channel.php:965 #: ../../include/page_widgets.php:9 ../../include/page_widgets.php:39 -#: ../../include/menu.php:113 ../../include/widgets.php:965 +#: ../../include/menu.php:113 msgid "Edit" msgstr "Bewerken" @@ -303,11 +302,11 @@ msgstr "Bewerken" #: ../../Zotlabs/Module/Photos.php:1179 ../../Zotlabs/Module/Blocks.php:162 #: ../../Zotlabs/Module/Webpages.php:242 #: ../../Zotlabs/Module/Settings/Oauth.php:150 -#: ../../Zotlabs/Module/Thing.php:261 ../../Zotlabs/Lib/Apps.php:342 -#: ../../Zotlabs/Lib/ThreadItem.php:126 +#: ../../Zotlabs/Module/Thing.php:261 ../../Zotlabs/Lib/ThreadItem.php:126 +#: ../../Zotlabs/Lib/Apps.php:347 #: ../../extend/addon/addon/cdav/Mod_Cdav.php:864 #: ../../extend/addon/addon/cdav/Mod_Cdav.php:1153 -#: ../../include/conversation.php:676 +#: ../../include/conversation.php:656 msgid "Delete" msgstr "Verwijderen" @@ -354,13 +353,13 @@ msgstr "Sleep bestanden hierheen om ze onmiddellijk te uploaden" #: ../../Zotlabs/Module/Editwebpage.php:126 #: ../../Zotlabs/Module/Channel.php:107 ../../Zotlabs/Module/Channel.php:237 #: ../../Zotlabs/Module/Channel.php:277 ../../Zotlabs/Module/Network.php:15 -#: ../../Zotlabs/Module/Menu.php:78 ../../Zotlabs/Module/Appman.php:75 +#: ../../Zotlabs/Module/Menu.php:78 ../../Zotlabs/Module/Appman.php:76 #: ../../Zotlabs/Module/Filestorage.php:23 #: ../../Zotlabs/Module/Filestorage.php:78 #: ../../Zotlabs/Module/Filestorage.php:93 #: ../../Zotlabs/Module/Filestorage.php:120 ../../Zotlabs/Module/Item.php:220 -#: ../../Zotlabs/Module/Item.php:230 ../../Zotlabs/Module/Item.php:1098 -#: ../../Zotlabs/Module/Settings.php:59 ../../Zotlabs/Module/Mail.php:135 +#: ../../Zotlabs/Module/Item.php:230 ../../Zotlabs/Module/Item.php:1064 +#: ../../Zotlabs/Module/Settings.php:59 ../../Zotlabs/Module/Mail.php:163 #: ../../Zotlabs/Module/Block.php:26 ../../Zotlabs/Module/Block.php:76 #: ../../Zotlabs/Module/Invite.php:17 ../../Zotlabs/Module/Invite.php:94 #: ../../Zotlabs/Module/Editblock.php:67 ../../Zotlabs/Module/Group.php:13 @@ -383,7 +382,7 @@ msgstr "Sleep bestanden hierheen om ze onmiddellijk te uploaden" #: ../../Zotlabs/Module/Service_limits.php:11 #: ../../Zotlabs/Module/Webpages.php:116 #: ../../Zotlabs/Module/Sharedwithme.php:11 ../../Zotlabs/Module/Wiki.php:189 -#: ../../Zotlabs/Module/Wiki.php:302 ../../Zotlabs/Module/Sources.php:74 +#: ../../Zotlabs/Module/Wiki.php:286 ../../Zotlabs/Module/Sources.php:74 #: ../../Zotlabs/Module/Suggest.php:30 ../../Zotlabs/Module/Thing.php:274 #: ../../Zotlabs/Module/Thing.php:294 ../../Zotlabs/Module/Thing.php:335 #: ../../Zotlabs/Module/Viewconnections.php:28 @@ -406,11 +405,7 @@ msgstr "Sleep bestanden hierheen om ze onmiddellijk te uploaden" msgid "Permission denied." msgstr "Toegang geweigerd." -#: ../../Zotlabs/Web/Router.php:148 ../../include/help.php:63 -msgid "Not Found" -msgstr "Niet gevonden" - -#: ../../Zotlabs/Web/Router.php:151 ../../Zotlabs/Module/Page.php:94 +#: ../../Zotlabs/Web/Router.php:157 ../../Zotlabs/Module/Page.php:94 #: ../../Zotlabs/Module/Display.php:120 ../../Zotlabs/Module/Block.php:79 #: ../../include/help.php:66 msgid "Page not found." @@ -595,7 +590,7 @@ msgid "Membership on this site is by invitation only." msgstr "Registreren op deze $Projectname-hub kan alleen op uitnodiging." #: ../../Zotlabs/Module/Register.php:270 ../../include/nav.php:150 -#: ../../boot.php:1701 +#: ../../boot.php:1702 msgid "Register" msgstr "Registreren" @@ -625,7 +620,7 @@ msgstr "is geïnteresseerd in:" #: ../../Zotlabs/Module/Match.php:68 ../../Zotlabs/Module/Directory.php:328 #: ../../Zotlabs/Module/Suggest.php:56 ../../include/channel.php:1036 #: ../../include/connections.php:78 ../../include/widgets.php:147 -#: ../../include/widgets.php:184 ../../include/conversation.php:971 +#: ../../include/widgets.php:184 ../../include/conversation.php:937 msgid "Connect" msgstr "Verbinden" @@ -710,8 +705,8 @@ msgstr "is nu verbonden met" #: ../../extend/addon/addon/xmpp/xmpp.php:53 #: ../../extend/addon/addon/cdav/cdav.php:234 ../../include/dir_fns.php:143 #: ../../include/dir_fns.php:144 ../../include/dir_fns.php:145 -#: ../../include/widgets.php:978 ../../view/theme/redbasic/php/config.php:111 -#: ../../view/theme/redbasic/php/config.php:136 ../../boot.php:1723 +#: ../../view/theme/redbasic/php/config.php:111 +#: ../../view/theme/redbasic/php/config.php:136 ../../boot.php:1724 msgid "No" msgstr "Nee" @@ -772,8 +767,8 @@ msgstr "Nee" #: ../../extend/addon/addon/xmpp/xmpp.php:53 #: ../../extend/addon/addon/cdav/cdav.php:234 ../../include/dir_fns.php:143 #: ../../include/dir_fns.php:144 ../../include/dir_fns.php:145 -#: ../../include/widgets.php:978 ../../view/theme/redbasic/php/config.php:111 -#: ../../view/theme/redbasic/php/config.php:136 ../../boot.php:1723 +#: ../../view/theme/redbasic/php/config.php:111 +#: ../../view/theme/redbasic/php/config.php:136 ../../boot.php:1724 msgid "Yes" msgstr "Ja" @@ -795,9 +790,9 @@ msgstr "Niet in staat om de parameters van connecties in te stellen." msgid "Connection has been removed." msgstr "Connectie is verwijderd" -#: ../../Zotlabs/Module/Connedit.php:582 ../../Zotlabs/Lib/Apps.php:221 +#: ../../Zotlabs/Module/Connedit.php:582 ../../Zotlabs/Lib/Apps.php:223 #: ../../extend/addon/addon/openclipatar/openclipatar.php:56 -#: ../../include/nav.php:89 ../../include/conversation.php:969 +#: ../../include/nav.php:89 ../../include/conversation.php:935 msgid "View Profile" msgstr "Profiel weergeven" @@ -1042,8 +1037,8 @@ msgstr "geërfd" #: ../../Zotlabs/Module/Admin/Account_edit.php:74 #: ../../Zotlabs/Module/Admin/Accounts.php:166 #: ../../Zotlabs/Module/Admin/Channels.php:147 -#: ../../Zotlabs/Module/Admin/Site.php:260 ../../Zotlabs/Module/Appman.php:126 -#: ../../Zotlabs/Module/Filestorage.php:165 ../../Zotlabs/Module/Mail.php:384 +#: ../../Zotlabs/Module/Admin/Site.php:260 ../../Zotlabs/Module/Appman.php:127 +#: ../../Zotlabs/Module/Filestorage.php:165 ../../Zotlabs/Module/Mail.php:412 #: ../../Zotlabs/Module/Import_items.php:122 #: ../../Zotlabs/Module/Invite.php:149 ../../Zotlabs/Module/Group.php:85 #: ../../Zotlabs/Module/Mitem.php:243 ../../Zotlabs/Module/Mood.php:139 @@ -1101,7 +1096,7 @@ msgstr "geërfd" #: ../../extend/addon/addon/statusnet/statusnet.php:380 #: ../../extend/addon/addon/statusnet/statusnet.php:432 #: ../../extend/addon/addon/statusnet/statusnet.php:899 -#: ../../extend/addon/addon/superblock/superblock.php:114 +#: ../../extend/addon/addon/superblock/superblock.php:118 #: ../../extend/addon/addon/twitter/twitter.php:217 #: ../../extend/addon/addon/twitter/twitter.php:259 #: ../../extend/addon/addon/visage/visage.php:170 @@ -1403,7 +1398,7 @@ msgstr "Nieuw kanaal aanmaken" msgid "Create New" msgstr "Nieuwe aanmaken" -#: ../../Zotlabs/Module/Manage.php:164 ../../Zotlabs/Lib/Apps.php:214 +#: ../../Zotlabs/Module/Manage.php:164 ../../Zotlabs/Lib/Apps.php:216 #: ../../include/nav.php:209 msgid "Channel Manager" msgstr "Kanaalbeheer" @@ -1464,7 +1459,7 @@ msgstr "Gearchiveerd" #: ../../Zotlabs/Module/Connections.php:76 #: ../../Zotlabs/Module/Connections.php:86 ../../Zotlabs/Module/Menu.php:116 -#: ../../include/conversation.php:1594 +#: ../../include/conversation.php:1576 msgid "New" msgstr "Nieuw" @@ -1551,15 +1546,15 @@ msgstr "Connectie negeren" msgid "Recent activity" msgstr "Recente activiteit" -#: ../../Zotlabs/Module/Connections.php:302 ../../Zotlabs/Lib/Apps.php:209 +#: ../../Zotlabs/Module/Connections.php:302 ../../Zotlabs/Lib/Apps.php:211 #: ../../include/nav.php:189 ../../include/text.php:916 msgid "Connections" msgstr "Connecties" #: ../../Zotlabs/Module/Connections.php:306 ../../Zotlabs/Module/Search.php:44 -#: ../../Zotlabs/Lib/Apps.php:230 ../../include/nav.php:168 +#: ../../Zotlabs/Lib/Apps.php:232 ../../include/nav.php:168 #: ../../include/text.php:986 ../../include/text.php:998 -#: ../../include/widgets.php:315 ../../include/acl_selectors.php:203 +#: ../../include/acl_selectors.php:203 ../../include/widgets.php:315 msgid "Search" msgstr "Zoeken" @@ -1723,8 +1718,8 @@ msgstr "Logboek-instellingen bijgewerkt." msgid "Administration" msgstr "Beheer" -#: ../../Zotlabs/Module/Admin/Logs.php:83 ../../include/widgets.php:1658 -#: ../../include/widgets.php:1668 +#: ../../Zotlabs/Module/Admin/Logs.php:83 ../../include/widgets.php:1588 +#: ../../include/widgets.php:1598 msgid "Logs" msgstr "Logboeken" @@ -1779,7 +1774,7 @@ msgid "Enable" msgstr "Inschakelen" #: ../../Zotlabs/Module/Admin/Plugins.php:337 -#: ../../Zotlabs/Module/Admin/Plugins.php:428 ../../include/widgets.php:1636 +#: ../../Zotlabs/Module/Admin/Plugins.php:428 ../../include/widgets.php:1566 msgid "Plugins" msgstr "Plugins" @@ -1789,7 +1784,7 @@ msgid "Toggle" msgstr "Omschakelen" #: ../../Zotlabs/Module/Admin/Plugins.php:339 -#: ../../Zotlabs/Module/Admin/Themes.php:123 ../../Zotlabs/Lib/Apps.php:216 +#: ../../Zotlabs/Module/Admin/Themes.php:123 ../../Zotlabs/Lib/Apps.php:218 #: ../../include/nav.php:211 ../../include/widgets.php:680 msgid "Settings" msgstr "Instellingen" @@ -1853,13 +1848,13 @@ msgstr "Plugin-repository downloaden" msgid "Install new repo" msgstr "Nieuwe repository installeren" -#: ../../Zotlabs/Module/Admin/Plugins.php:413 ../../Zotlabs/Lib/Apps.php:334 +#: ../../Zotlabs/Module/Admin/Plugins.php:413 ../../Zotlabs/Lib/Apps.php:339 msgid "Install" msgstr "Installeren" #: ../../Zotlabs/Module/Admin/Plugins.php:414 #: ../../Zotlabs/Module/Fbrowser.php:66 ../../Zotlabs/Module/Fbrowser.php:88 -#: ../../Zotlabs/Module/Wiki.php:242 ../../Zotlabs/Module/Wiki.php:277 +#: ../../Zotlabs/Module/Wiki.php:238 ../../Zotlabs/Module/Wiki.php:261 #: ../../Zotlabs/Module/Settings/Oauth.php:88 #: ../../Zotlabs/Module/Settings/Oauth.php:114 #: ../../Zotlabs/Module/Tagrm.php:15 ../../Zotlabs/Module/Tagrm.php:138 @@ -1867,7 +1862,7 @@ msgstr "Installeren" #: ../../extend/addon/addon/js_upload/js_upload.php:46 #: ../../extend/addon/addon/cdav/Mod_Cdav.php:866 #: ../../extend/addon/addon/cdav/Mod_Cdav.php:1154 -#: ../../include/conversation.php:1264 ../../include/conversation.php:1313 +#: ../../include/conversation.php:1246 ../../include/conversation.php:1295 msgid "Cancel" msgstr "Annuleren" @@ -1885,7 +1880,7 @@ msgstr "Nieuwe plugin-repository toevoegen" #: ../../Zotlabs/Module/Admin/Plugins.php:443 #: ../../Zotlabs/Module/Settings/Oauth.php:42 -#: ../../Zotlabs/Module/Settings/Oauth.php:113 ../../Zotlabs/Lib/Apps.php:334 +#: ../../Zotlabs/Module/Settings/Oauth.php:113 ../../Zotlabs/Lib/Apps.php:339 #: ../../extend/addon/addon/cdav/Mod_Cdav.php:1152 msgid "Update" msgstr "Bijwerken" @@ -1896,7 +1891,7 @@ msgstr "Branch veranderen" #: ../../Zotlabs/Module/Admin/Plugins.php:445 #: ../../Zotlabs/Module/Photos.php:989 ../../Zotlabs/Module/Tagrm.php:137 -#: ../../extend/addon/addon/superblock/superblock.php:110 +#: ../../extend/addon/addon/superblock/superblock.php:114 msgid "Remove" msgstr "Verwijderen" @@ -1947,7 +1942,7 @@ msgstr "Velddefinitie niet gevonden" msgid "Edit Profile Field" msgstr "Profielveld bewerken" -#: ../../Zotlabs/Module/Admin/Profs.php:147 ../../include/widgets.php:1639 +#: ../../Zotlabs/Module/Admin/Profs.php:147 ../../include/widgets.php:1569 msgid "Profile Fields" msgstr "Profielvelden" @@ -2027,7 +2022,7 @@ msgid "" "embedded content from that site is explicitly blocked." msgstr "Alle andere ingesloten (embedded) inhoud wordt gefilterd, tenzij ingesloten (embedded) inhoud van een website expliciet wordt geblokkeerd." -#: ../../Zotlabs/Module/Admin/Security.php:87 ../../include/widgets.php:1634 +#: ../../Zotlabs/Module/Admin/Security.php:87 ../../include/widgets.php:1564 msgid "Security" msgstr "Beveiliging" @@ -2128,7 +2123,7 @@ msgid "Screenshot" msgstr "Schermafdruk" #: ../../Zotlabs/Module/Admin/Themes.php:121 -#: ../../Zotlabs/Module/Admin/Themes.php:155 ../../include/widgets.php:1637 +#: ../../Zotlabs/Module/Admin/Themes.php:155 ../../include/widgets.php:1567 msgid "Themes" msgstr "Thema's" @@ -2211,7 +2206,7 @@ msgid "Account '%s' unblocked" msgstr "Account '%s' gedeblokkeerd" #: ../../Zotlabs/Module/Admin/Accounts.php:165 -#: ../../Zotlabs/Module/Admin/Accounts.php:178 ../../include/widgets.php:1632 +#: ../../Zotlabs/Module/Admin/Accounts.php:178 ../../include/widgets.php:1562 msgid "Accounts" msgstr "Accounts" @@ -2333,7 +2328,7 @@ msgstr "Scripts toegestaan voor kanaal '%s'" msgid "Channel '%s' code disallowed" msgstr "Scripts niet toegestaan voor kanaal '%s'" -#: ../../Zotlabs/Module/Admin/Channels.php:146 ../../include/widgets.php:1633 +#: ../../Zotlabs/Module/Admin/Channels.php:146 ../../include/widgets.php:1563 msgid "Channels" msgstr "Kanalen" @@ -2354,7 +2349,7 @@ msgid "Disallow Code" msgstr "Scripts niet toestaan" #: ../../Zotlabs/Module/Admin/Channels.php:154 -#: ../../include/conversation.php:1671 +#: ../../include/conversation.php:1653 msgid "Channel" msgstr "Kanaal" @@ -2491,7 +2486,7 @@ msgstr "Expert - kan programmeren" msgid "Wizard - I probably know more than you do" msgstr "Tovenaar - ik weet waarschijnlijk meer dan jij" -#: ../../Zotlabs/Module/Admin/Site.php:259 ../../include/widgets.php:1631 +#: ../../Zotlabs/Module/Admin/Site.php:259 ../../include/widgets.php:1561 msgid "Site" msgstr "Hub-instellingen" @@ -2785,7 +2780,7 @@ msgstr "Aantal dagen waarna geïmporteerde inhoud uit iemands grid/netwerk-pagin msgid "0 for no expiration of imported content" msgstr "Dit geldt alleen voor inhoud van andere kanalen, dus niet voor iemands eigen kanaal. 0 voor het niet verwijderen van geïmporteerde inhoud." -#: ../../Zotlabs/Module/Pubsites.php:24 ../../include/widgets.php:1454 +#: ../../Zotlabs/Module/Pubsites.php:24 ../../include/widgets.php:1385 msgid "Public Hubs" msgstr "Openbare hubs" @@ -2819,7 +2814,7 @@ msgid "Software" msgstr "Software" #: ../../Zotlabs/Module/Pubsites.php:35 ../../Zotlabs/Module/Ratings.php:97 -#: ../../include/conversation.php:974 +#: ../../include/conversation.php:940 msgid "Ratings" msgstr "Beoordelingen" @@ -2830,7 +2825,7 @@ msgstr "Beoordeel" #: ../../Zotlabs/Module/Pubsites.php:59 ../../Zotlabs/Module/Blocks.php:166 #: ../../Zotlabs/Module/Layouts.php:197 ../../Zotlabs/Module/Webpages.php:246 #: ../../Zotlabs/Module/Wiki.php:146 ../../Zotlabs/Module/Events.php:685 -#: ../../include/page_widgets.php:42 ../../include/widgets.php:967 +#: ../../include/page_widgets.php:42 msgid "View" msgstr "Weergeven" @@ -2859,9 +2854,9 @@ msgstr "Lay-out bewerken" msgid "Page link" msgstr "Paginalink" -#: ../../Zotlabs/Module/Editwebpage.php:146 ../../Zotlabs/Module/Mail.php:258 -#: ../../Zotlabs/Module/Mail.php:383 ../../Zotlabs/Module/Editblock.php:111 -#: ../../Zotlabs/Module/Chat.php:207 ../../include/conversation.php:1165 +#: ../../Zotlabs/Module/Editwebpage.php:146 ../../Zotlabs/Module/Mail.php:286 +#: ../../Zotlabs/Module/Mail.php:411 ../../Zotlabs/Module/Editblock.php:111 +#: ../../Zotlabs/Module/Chat.php:207 ../../include/conversation.php:1147 msgid "Insert web link" msgstr "Weblink invoegen" @@ -2869,8 +2864,8 @@ msgstr "Weblink invoegen" msgid "Edit Webpage" msgstr "Webpagina bewerken" -#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:222 -#: ../../include/nav.php:95 ../../include/conversation.php:1692 +#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:224 +#: ../../include/nav.php:95 ../../include/conversation.php:1674 msgid "Photos" msgstr "Foto's" @@ -3037,61 +3032,61 @@ msgstr "App geïnstalleerd" msgid "Malformed app." msgstr "Misvormde app." -#: ../../Zotlabs/Module/Appman.php:104 +#: ../../Zotlabs/Module/Appman.php:105 msgid "Embed code" msgstr "Insluitcode" -#: ../../Zotlabs/Module/Appman.php:110 ../../include/widgets.php:107 +#: ../../Zotlabs/Module/Appman.php:111 ../../include/widgets.php:107 msgid "Edit App" msgstr "App bewerken" -#: ../../Zotlabs/Module/Appman.php:110 +#: ../../Zotlabs/Module/Appman.php:111 msgid "Create App" msgstr "App maken" -#: ../../Zotlabs/Module/Appman.php:115 +#: ../../Zotlabs/Module/Appman.php:116 msgid "Name of app" msgstr "Naam van app" -#: ../../Zotlabs/Module/Appman.php:115 ../../Zotlabs/Module/Appman.php:116 +#: ../../Zotlabs/Module/Appman.php:116 ../../Zotlabs/Module/Appman.php:117 #: ../../Zotlabs/Module/Profiles.php:703 ../../Zotlabs/Module/Profiles.php:707 #: ../../Zotlabs/Module/Events.php:453 ../../Zotlabs/Module/Events.php:458 #: ../../include/datetime.php:259 msgid "Required" msgstr "Vereist" -#: ../../Zotlabs/Module/Appman.php:116 +#: ../../Zotlabs/Module/Appman.php:117 msgid "Location (URL) of app" msgstr "Locatie (URL) van app" -#: ../../Zotlabs/Module/Appman.php:117 ../../Zotlabs/Module/Rbmark.php:101 +#: ../../Zotlabs/Module/Appman.php:118 ../../Zotlabs/Module/Rbmark.php:101 #: ../../Zotlabs/Module/Events.php:466 #: ../../extend/addon/addon/cdav/Mod_Cdav.php:838 -#: ../../extend/addon/addon/rendezvous/rendezvous.php:133 +#: ../../extend/addon/addon/rendezvous/rendezvous.php:165 msgid "Description" msgstr "Omschrijving" -#: ../../Zotlabs/Module/Appman.php:118 +#: ../../Zotlabs/Module/Appman.php:119 msgid "Photo icon URL" msgstr "URL van pictogram" -#: ../../Zotlabs/Module/Appman.php:118 +#: ../../Zotlabs/Module/Appman.php:119 msgid "80 x 80 pixels - optional" msgstr "80 x 80 pixels (optioneel)" -#: ../../Zotlabs/Module/Appman.php:119 +#: ../../Zotlabs/Module/Appman.php:120 msgid "Categories (optional, comma separated list)" msgstr "Categorieën (optioneel, door komma's gescheiden lijst)" -#: ../../Zotlabs/Module/Appman.php:120 +#: ../../Zotlabs/Module/Appman.php:121 msgid "Version ID" msgstr "Versie-ID" -#: ../../Zotlabs/Module/Appman.php:121 +#: ../../Zotlabs/Module/Appman.php:122 msgid "Price of app" msgstr "Prijs van de app" -#: ../../Zotlabs/Module/Appman.php:122 +#: ../../Zotlabs/Module/Appman.php:123 msgid "Location (URL) to purchase app" msgstr "Locatie (URL) om de app aan te schaffen" @@ -3103,10 +3098,34 @@ msgstr "Bericht bewerken" msgid "Documentation Search" msgstr "Zoek documentatie" +#: ../../Zotlabs/Module/Help.php:80 ../../include/conversation.php:1665 +msgid "About" +msgstr "Over" + +#: ../../Zotlabs/Module/Help.php:81 ../../Zotlabs/Module/Group.php:197 +msgid "Members" +msgstr "Kanalen" + #: ../../Zotlabs/Module/Help.php:82 +msgid "Administrators" +msgstr "Beheerders" + +#: ../../Zotlabs/Module/Help.php:83 +msgid "Developers" +msgstr "Ontwikkelaars" + +#: ../../Zotlabs/Module/Help.php:84 +msgid "Tutorials" +msgstr "Zelfstudie" + +#: ../../Zotlabs/Module/Help.php:93 msgid "$Projectname Documentation" msgstr "$Projectname-documentatie" +#: ../../Zotlabs/Module/Help.php:94 +msgid "Contents" +msgstr "Inhoud" + #: ../../Zotlabs/Module/Ffsapi.php:12 msgid "Share content from Firefox to $Projectname" msgstr "Deel webpagina's vanuit Firefox met " @@ -3212,8 +3231,8 @@ msgid "Age:" msgstr "Leeftijd:" #: ../../Zotlabs/Module/Directory.php:314 ../../include/channel.php:1051 -#: ../../include/event.php:52 ../../include/event.php:84 -#: ../../include/bb2diaspora.php:520 +#: ../../include/bb2diaspora.php:521 ../../include/event.php:52 +#: ../../include/event.php:84 msgid "Location:" msgstr "Plaats:" @@ -3306,24 +3325,24 @@ msgstr "Leeg bericht geannuleerd" msgid "Executable content type not permitted to this channel." msgstr "Uitvoerbare bestanden zijn niet toegestaan op dit kanaal." -#: ../../Zotlabs/Module/Item.php:871 +#: ../../Zotlabs/Module/Item.php:837 msgid "Duplicate post suppressed." msgstr "Dubbel bericht tegengehouden." -#: ../../Zotlabs/Module/Item.php:1013 +#: ../../Zotlabs/Module/Item.php:979 msgid "System error. Post not saved." msgstr "Systeemfout. Bericht niet opgeslagen." -#: ../../Zotlabs/Module/Item.php:1137 +#: ../../Zotlabs/Module/Item.php:1111 msgid "Unable to obtain post information from database." msgstr "Niet in staat om informatie over dit bericht uit de database te verkrijgen." -#: ../../Zotlabs/Module/Item.php:1144 +#: ../../Zotlabs/Module/Item.php:1118 #, php-format msgid "You have reached your limit of %1$.0f top level posts." msgstr "Je hebt jouw limiet van %1$.0f berichten bereikt." -#: ../../Zotlabs/Module/Item.php:1151 +#: ../../Zotlabs/Module/Item.php:1125 #, php-format msgid "You have reached your limit of %1$.0f webpages." msgstr "Je hebt jouw limiet van %1$.0f webpagina's bereikt." @@ -3336,114 +3355,114 @@ msgstr "Volledig scherm" msgid "Channel added." msgstr "Kanaal toegevoegd." -#: ../../Zotlabs/Module/Mail.php:38 +#: ../../Zotlabs/Module/Mail.php:66 msgid "Unable to lookup recipient." msgstr "Niet in staat om ontvanger op te zoeken." -#: ../../Zotlabs/Module/Mail.php:45 +#: ../../Zotlabs/Module/Mail.php:73 msgid "Unable to communicate with requested channel." msgstr "Niet in staat om met het aangevraagde kanaal te communiceren." -#: ../../Zotlabs/Module/Mail.php:52 +#: ../../Zotlabs/Module/Mail.php:80 msgid "Cannot verify requested channel." msgstr "Kan opgevraagd kanaal niet verifieren" -#: ../../Zotlabs/Module/Mail.php:70 +#: ../../Zotlabs/Module/Mail.php:98 msgid "Selected channel has private message restrictions. Send failed." msgstr "Gekozen kanaal heeft restricties voor privéberichten. Verzenden mislukt." -#: ../../Zotlabs/Module/Mail.php:149 +#: ../../Zotlabs/Module/Mail.php:177 msgid "Messages" msgstr "Berichten" -#: ../../Zotlabs/Module/Mail.php:184 +#: ../../Zotlabs/Module/Mail.php:212 msgid "Message recalled." msgstr "Bericht ingetrokken." -#: ../../Zotlabs/Module/Mail.php:197 +#: ../../Zotlabs/Module/Mail.php:225 msgid "Conversation removed." msgstr "Conversatie verwijderd" -#: ../../Zotlabs/Module/Mail.php:211 ../../Zotlabs/Module/Mail.php:320 -#: ../../Zotlabs/Module/Chat.php:205 ../../include/conversation.php:1200 +#: ../../Zotlabs/Module/Mail.php:239 ../../Zotlabs/Module/Mail.php:348 +#: ../../Zotlabs/Module/Chat.php:205 ../../include/conversation.php:1182 msgid "Please enter a link URL:" msgstr "Vul een URL in:" -#: ../../Zotlabs/Module/Mail.php:212 ../../Zotlabs/Module/Mail.php:321 +#: ../../Zotlabs/Module/Mail.php:240 ../../Zotlabs/Module/Mail.php:349 msgid "Expires YYYY-MM-DD HH:MM" msgstr "Verloopt op DD-MM-YYYY om HH:MM" -#: ../../Zotlabs/Module/Mail.php:240 +#: ../../Zotlabs/Module/Mail.php:268 msgid "Requested channel is not in this network" msgstr "Opgevraagd kanaal is niet in dit netwerk beschikbaar" -#: ../../Zotlabs/Module/Mail.php:248 +#: ../../Zotlabs/Module/Mail.php:276 msgid "Send Private Message" msgstr "Privébericht versturen" -#: ../../Zotlabs/Module/Mail.php:249 ../../Zotlabs/Module/Mail.php:374 +#: ../../Zotlabs/Module/Mail.php:277 ../../Zotlabs/Module/Mail.php:402 msgid "To:" msgstr "Aan:" -#: ../../Zotlabs/Module/Mail.php:252 ../../Zotlabs/Module/Mail.php:376 +#: ../../Zotlabs/Module/Mail.php:280 ../../Zotlabs/Module/Mail.php:404 msgid "Subject:" msgstr "Onderwerp:" -#: ../../Zotlabs/Module/Mail.php:255 ../../Zotlabs/Module/Invite.php:138 +#: ../../Zotlabs/Module/Mail.php:283 ../../Zotlabs/Module/Invite.php:138 msgid "Your message:" msgstr "Jouw bericht:" -#: ../../Zotlabs/Module/Mail.php:257 ../../Zotlabs/Module/Mail.php:382 -#: ../../include/conversation.php:1260 +#: ../../Zotlabs/Module/Mail.php:285 ../../Zotlabs/Module/Mail.php:410 +#: ../../include/conversation.php:1242 msgid "Attach file" msgstr "Bestand toevoegen" -#: ../../Zotlabs/Module/Mail.php:259 +#: ../../Zotlabs/Module/Mail.php:287 msgid "Send" msgstr "Verzenden" -#: ../../Zotlabs/Module/Mail.php:262 ../../Zotlabs/Module/Mail.php:387 -#: ../../include/conversation.php:1305 +#: ../../Zotlabs/Module/Mail.php:290 ../../Zotlabs/Module/Mail.php:415 +#: ../../include/conversation.php:1287 msgid "Set expiration date" msgstr "Verloopdatum instellen" -#: ../../Zotlabs/Module/Mail.php:264 ../../Zotlabs/Module/Mail.php:389 +#: ../../Zotlabs/Module/Mail.php:292 ../../Zotlabs/Module/Mail.php:417 #: ../../Zotlabs/Module/Chat.php:206 ../../Zotlabs/Lib/ThreadItem.php:741 -#: ../../include/conversation.php:1310 +#: ../../include/conversation.php:1292 msgid "Encrypt text" msgstr "Tekst versleutelen" -#: ../../Zotlabs/Module/Mail.php:346 +#: ../../Zotlabs/Module/Mail.php:374 msgid "Delete message" msgstr "Bericht verwijderen" -#: ../../Zotlabs/Module/Mail.php:347 +#: ../../Zotlabs/Module/Mail.php:375 msgid "Delivery report" msgstr "Afleveringsrapport" -#: ../../Zotlabs/Module/Mail.php:348 +#: ../../Zotlabs/Module/Mail.php:376 msgid "Recall message" msgstr "Bericht intrekken" -#: ../../Zotlabs/Module/Mail.php:350 +#: ../../Zotlabs/Module/Mail.php:378 msgid "Message has been recalled." msgstr "Bericht is ingetrokken." -#: ../../Zotlabs/Module/Mail.php:367 +#: ../../Zotlabs/Module/Mail.php:395 msgid "Delete Conversation" msgstr "Verwijder conversatie" -#: ../../Zotlabs/Module/Mail.php:369 +#: ../../Zotlabs/Module/Mail.php:397 msgid "" "No secure communications available. You may be able to " "respond from the sender's profile page." msgstr "Geen veilige communicatie beschikbaar. Mogelijk kan je reageren op de kanaalpagina van de afzender." -#: ../../Zotlabs/Module/Mail.php:373 +#: ../../Zotlabs/Module/Mail.php:401 msgid "Send Reply" msgstr "Antwoord versturen" -#: ../../Zotlabs/Module/Mail.php:378 +#: ../../Zotlabs/Module/Mail.php:406 #, php-format msgid "Your message for %s (%s):" msgstr "Jouw privébericht aan %s (%s):" @@ -3583,7 +3602,7 @@ msgstr "3. Klik op [+ Verbinden]" msgid "Block Name" msgstr "Bloknaam" -#: ../../Zotlabs/Module/Editblock.php:124 ../../include/conversation.php:1276 +#: ../../Zotlabs/Module/Editblock.php:124 ../../include/conversation.php:1258 msgid "Title (optional)" msgstr "Titel (optioneel)" @@ -3632,10 +3651,6 @@ msgstr "Verwijderen privacygroep mislukt" msgid "Privacy group editor" msgstr "Privacygroep bewerken" -#: ../../Zotlabs/Module/Group.php:197 -msgid "Members" -msgstr "Kanalen" - #: ../../Zotlabs/Module/Group.php:199 msgid "All Connected Channels" msgstr "Alle kanaalconnecties" @@ -3811,7 +3826,7 @@ msgctxt "mood" msgid "%1$s is %2$s" msgstr "%1$s is %2$s" -#: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Lib/Apps.php:227 +#: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Lib/Apps.php:229 msgid "Mood" msgstr "Stemming" @@ -3919,12 +3934,12 @@ msgid "Show Oldest First" msgstr "Oudste eerst weergeven" #: ../../Zotlabs/Module/Photos.php:783 ../../Zotlabs/Module/Photos.php:1337 -#: ../../Zotlabs/Module/Embedphotos.php:139 ../../include/widgets.php:1748 +#: ../../Zotlabs/Module/Embedphotos.php:139 ../../include/widgets.php:1678 msgid "View Photo" msgstr "Foto weergeven" #: ../../Zotlabs/Module/Photos.php:814 -#: ../../Zotlabs/Module/Embedphotos.php:155 ../../include/widgets.php:1765 +#: ../../Zotlabs/Module/Embedphotos.php:155 ../../include/widgets.php:1695 msgid "Edit Album" msgstr "Album bewerken" @@ -4017,12 +4032,12 @@ msgstr "Vind ik niet leuk" #: ../../Zotlabs/Module/Photos.php:1078 ../../Zotlabs/Module/Blocks.php:161 #: ../../Zotlabs/Module/Layouts.php:193 ../../Zotlabs/Module/Webpages.php:241 #: ../../extend/addon/addon/cdav/include/widgets.php:123 -#: ../../include/conversation.php:1248 +#: ../../include/conversation.php:1230 msgid "Share" msgstr "Delen" #: ../../Zotlabs/Module/Photos.php:1079 ../../Zotlabs/Lib/ThreadItem.php:409 -#: ../../include/conversation.php:757 +#: ../../include/conversation.php:737 msgid "Please wait" msgstr "Even wachten" @@ -4038,59 +4053,59 @@ msgstr "Reactie" #: ../../Zotlabs/Module/Photos.php:1099 ../../Zotlabs/Module/Webpages.php:247 #: ../../Zotlabs/Module/Events.php:471 ../../Zotlabs/Lib/ThreadItem.php:738 -#: ../../include/page_widgets.php:43 ../../include/conversation.php:1217 +#: ../../include/page_widgets.php:43 ../../include/conversation.php:1199 msgid "Preview" msgstr "Voorvertoning" -#: ../../Zotlabs/Module/Photos.php:1113 ../../include/conversation.php:593 +#: ../../Zotlabs/Module/Photos.php:1113 ../../include/conversation.php:577 msgctxt "title" msgid "Likes" msgstr "vinden dit leuk" -#: ../../Zotlabs/Module/Photos.php:1113 ../../include/conversation.php:593 +#: ../../Zotlabs/Module/Photos.php:1113 ../../include/conversation.php:577 msgctxt "title" msgid "Dislikes" msgstr "vinden dit niet leuk" -#: ../../Zotlabs/Module/Photos.php:1114 ../../include/conversation.php:594 +#: ../../Zotlabs/Module/Photos.php:1114 ../../include/conversation.php:578 msgctxt "title" msgid "Agree" msgstr "eens" -#: ../../Zotlabs/Module/Photos.php:1114 ../../include/conversation.php:594 +#: ../../Zotlabs/Module/Photos.php:1114 ../../include/conversation.php:578 msgctxt "title" msgid "Disagree" msgstr "oneens" -#: ../../Zotlabs/Module/Photos.php:1114 ../../include/conversation.php:594 +#: ../../Zotlabs/Module/Photos.php:1114 ../../include/conversation.php:578 msgctxt "title" msgid "Abstain" msgstr "onthoudingen" -#: ../../Zotlabs/Module/Photos.php:1115 ../../include/conversation.php:595 +#: ../../Zotlabs/Module/Photos.php:1115 ../../include/conversation.php:579 msgctxt "title" msgid "Attending" msgstr "aanwezig" -#: ../../Zotlabs/Module/Photos.php:1115 ../../include/conversation.php:595 +#: ../../Zotlabs/Module/Photos.php:1115 ../../include/conversation.php:579 msgctxt "title" msgid "Not attending" msgstr "niet aanwezig" -#: ../../Zotlabs/Module/Photos.php:1115 ../../include/conversation.php:595 +#: ../../Zotlabs/Module/Photos.php:1115 ../../include/conversation.php:579 msgctxt "title" msgid "Might attend" msgstr "mogelijk aanwezig" #: ../../Zotlabs/Module/Photos.php:1132 ../../Zotlabs/Module/Photos.php:1144 #: ../../Zotlabs/Lib/ThreadItem.php:186 ../../Zotlabs/Lib/ThreadItem.php:198 -#: ../../include/conversation.php:1783 +#: ../../include/conversation.php:1765 msgid "View all" msgstr "Toon alles" #: ../../Zotlabs/Module/Photos.php:1136 ../../Zotlabs/Lib/ThreadItem.php:190 #: ../../include/channel.php:1190 ../../include/taxonomy.php:403 -#: ../../include/conversation.php:1807 +#: ../../include/conversation.php:1789 msgctxt "noun" msgid "Like" msgid_plural "Likes" @@ -4098,7 +4113,7 @@ msgstr[0] "vindt dit leuk" msgstr[1] "vinden dit leuk" #: ../../Zotlabs/Module/Photos.php:1141 ../../Zotlabs/Lib/ThreadItem.php:195 -#: ../../include/conversation.php:1810 +#: ../../include/conversation.php:1792 msgctxt "noun" msgid "Dislike" msgid_plural "Dislikes" @@ -4562,7 +4577,7 @@ msgstr "The database configuration file \".htconfig.php\" could not be written. #: ../../Zotlabs/Module/Setup.php:702 #: ../../extend/addon/addon/cdav/cdav.php:41 -#: ../../extend/addon/addon/rendezvous/rendezvous.php:352 +#: ../../extend/addon/addon/rendezvous/rendezvous.php:385 msgid "Errors encountered creating database tables." msgstr "Errors encountered creating database tables." @@ -4604,8 +4619,8 @@ msgstr "Of importeer een bestaand kanaal vanaf een andere msgid "Mark all system notifications seen" msgstr "Markeer alle systeemnotificaties als bekeken" -#: ../../Zotlabs/Module/Poke.php:168 ../../Zotlabs/Lib/Apps.php:228 -#: ../../include/conversation.php:975 +#: ../../Zotlabs/Module/Poke.php:168 ../../Zotlabs/Lib/Apps.php:230 +#: ../../include/conversation.php:941 msgid "Poke" msgstr "Aanstoten" @@ -4758,7 +4773,7 @@ msgid "Add profile things" msgstr "Dingen aan je profiel toevoegen" #: ../../Zotlabs/Module/Profiles.php:691 ../../include/widgets.php:105 -#: ../../include/conversation.php:1585 +#: ../../include/conversation.php:1567 msgid "Personal" msgstr "Persoonlijk" @@ -4948,7 +4963,7 @@ msgstr "Bloktitel" msgid "Layouts" msgstr "Lay-outs" -#: ../../Zotlabs/Module/Layouts.php:185 ../../Zotlabs/Lib/Apps.php:225 +#: ../../Zotlabs/Module/Layouts.php:185 ../../Zotlabs/Lib/Apps.php:227 #: ../../include/nav.php:162 ../../include/help.php:53 #: ../../include/help.php:59 msgid "Help" @@ -5020,14 +5035,14 @@ msgstr "Vorige actie omgedraaid" #: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87 #: ../../Zotlabs/Module/Tagger.php:47 -#: ../../extend/addon/addon/diaspora/inbound.php:1792 +#: ../../extend/addon/addon/diaspora/inbound.php:1794 #: ../../extend/addon/addon/redphotos/redphotohelper.php:74 #: ../../include/text.php:1940 ../../include/conversation.php:120 msgid "photo" msgstr "foto" #: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87 -#: ../../extend/addon/addon/diaspora/inbound.php:1792 +#: ../../extend/addon/addon/diaspora/inbound.php:1794 #: ../../include/text.php:1946 ../../include/conversation.php:148 msgid "status" msgstr "bericht" @@ -5039,7 +5054,7 @@ msgid "event" msgstr "gebeurtenis" #: ../../Zotlabs/Module/Like.php:419 -#: ../../extend/addon/addon/diaspora/inbound.php:1821 +#: ../../extend/addon/addon/diaspora/inbound.php:1823 #: ../../include/conversation.php:164 #, php-format msgid "%1$s likes %2$s's %3$s" @@ -5231,7 +5246,7 @@ msgid "" "Password reset failed." msgstr "Het verzoek kon niet worden geverifieerd. (Mogelijk heb je al eerder een verzoek ingediend.) Opnieuw instellen van wachtwoord is mislukt." -#: ../../Zotlabs/Module/Lostpass.php:91 ../../boot.php:1727 +#: ../../Zotlabs/Module/Lostpass.php:91 ../../boot.php:1728 msgid "Password Reset" msgstr "Wachtwoord vergeten?" @@ -5580,8 +5595,8 @@ msgstr "Webpagina-elementen exporteren" msgid "Export selected" msgstr "Selectie exporteren" -#: ../../Zotlabs/Module/Webpages.php:237 ../../Zotlabs/Lib/Apps.php:218 -#: ../../include/nav.php:109 ../../include/conversation.php:1745 +#: ../../Zotlabs/Module/Webpages.php:237 ../../Zotlabs/Lib/Apps.php:220 +#: ../../include/nav.php:109 ../../include/conversation.php:1727 msgid "Webpages" msgstr "Webpagina's" @@ -5642,7 +5657,7 @@ msgid "" msgstr "Standaard wordt alleen het kanaal dat zich op deze hub bevindt uit het $Projectname-netwerk verwijderd" #: ../../Zotlabs/Module/Removeme.php:64 -#: ../../Zotlabs/Module/Settings/Channel.php:547 +#: ../../Zotlabs/Module/Settings/Channel.php:549 msgid "Remove Channel" msgstr "Kanaal verwijderen" @@ -5683,15 +5698,15 @@ msgid "Error downloading wiki: " msgstr "Fout tijdens downloaden wiki: " #: ../../Zotlabs/Module/Wiki.php:139 ../../include/nav.php:111 -#: ../../include/conversation.php:1755 +#: ../../include/conversation.php:1737 msgid "Wikis" msgstr "Wiki's" -#: ../../Zotlabs/Module/Wiki.php:145 ../../include/widgets.php:966 +#: ../../Zotlabs/Module/Wiki.php:145 msgid "Download" msgstr "Download" -#: ../../Zotlabs/Module/Wiki.php:149 ../../include/widgets.php:970 +#: ../../Zotlabs/Module/Wiki.php:149 msgid "Wiki name" msgstr "Naam wiki" @@ -5715,76 +5730,72 @@ msgstr "Pagina hernoemen" msgid "Error retrieving page content" msgstr "Fout tijdens ophalen inhoud pagina" -#: ../../Zotlabs/Module/Wiki.php:240 +#: ../../Zotlabs/Module/Wiki.php:236 msgid "Revision Comparison" msgstr "Revisies vergelijken" -#: ../../Zotlabs/Module/Wiki.php:241 +#: ../../Zotlabs/Module/Wiki.php:237 msgid "Revert" msgstr "Ongedaan maken" -#: ../../Zotlabs/Module/Wiki.php:250 -msgid "Choose an available wiki from the list on the left." -msgstr "Kies een beschikbare wiki uit de linkerlijst." - -#: ../../Zotlabs/Module/Wiki.php:252 +#: ../../Zotlabs/Module/Wiki.php:246 msgid "Source" msgstr "Bron" -#: ../../Zotlabs/Module/Wiki.php:269 +#: ../../Zotlabs/Module/Wiki.php:254 msgid "New page name" msgstr "Nieuwe paginanaam" -#: ../../Zotlabs/Module/Wiki.php:275 ../../include/conversation.php:1169 +#: ../../Zotlabs/Module/Wiki.php:259 ../../include/conversation.php:1151 msgid "Embed image from photo albums" msgstr "Afbeelding uit een fotoalbum invoegen" -#: ../../Zotlabs/Module/Wiki.php:276 ../../include/conversation.php:1263 +#: ../../Zotlabs/Module/Wiki.php:260 ../../include/conversation.php:1245 msgid "Embed an image from your albums" msgstr "Afbeelding uit jouw albums invoegen" -#: ../../Zotlabs/Module/Wiki.php:278 ../../include/conversation.php:1265 -#: ../../include/conversation.php:1312 +#: ../../Zotlabs/Module/Wiki.php:262 ../../include/conversation.php:1247 +#: ../../include/conversation.php:1294 msgid "OK" msgstr "OK" -#: ../../Zotlabs/Module/Wiki.php:279 ../../include/conversation.php:1205 +#: ../../Zotlabs/Module/Wiki.php:263 ../../include/conversation.php:1187 msgid "Choose images to embed" msgstr "Kies afbeeldingen om in te voegen" -#: ../../Zotlabs/Module/Wiki.php:280 ../../include/conversation.php:1206 +#: ../../Zotlabs/Module/Wiki.php:264 ../../include/conversation.php:1188 msgid "Choose an album" msgstr "Kies een album" -#: ../../Zotlabs/Module/Wiki.php:281 ../../include/conversation.php:1207 -msgid "Choose a different album..." -msgstr "Kies een ander album..." +#: ../../Zotlabs/Module/Wiki.php:265 +msgid "Choose a different album" +msgstr "Kies een ander album" -#: ../../Zotlabs/Module/Wiki.php:282 ../../include/conversation.php:1208 +#: ../../Zotlabs/Module/Wiki.php:266 ../../include/conversation.php:1190 msgid "Error getting album list" msgstr "Fout tijdens ophalen albumlijst" -#: ../../Zotlabs/Module/Wiki.php:283 ../../include/conversation.php:1209 +#: ../../Zotlabs/Module/Wiki.php:267 ../../include/conversation.php:1191 msgid "Error getting photo link" msgstr "Fout tijdens ophalen fotolink" -#: ../../Zotlabs/Module/Wiki.php:284 ../../include/conversation.php:1210 +#: ../../Zotlabs/Module/Wiki.php:268 ../../include/conversation.php:1192 msgid "Error getting album" msgstr "Fout tijdens ophalen album" -#: ../../Zotlabs/Module/Wiki.php:348 +#: ../../Zotlabs/Module/Wiki.php:332 msgid "Error creating wiki. Invalid name." msgstr "Fout tijdens aanmaken wiki. Ongeldige naam." -#: ../../Zotlabs/Module/Wiki.php:359 +#: ../../Zotlabs/Module/Wiki.php:343 msgid "Wiki created, but error creating Home page." msgstr "Wiki aangemaakt, maar fout tijdens aanmaken homepagina." -#: ../../Zotlabs/Module/Wiki.php:364 +#: ../../Zotlabs/Module/Wiki.php:348 msgid "Error creating wiki" msgstr "Fout tijdens aanmaken wiki." -#: ../../Zotlabs/Module/Wiki.php:410 +#: ../../Zotlabs/Module/Wiki.php:394 msgid "New page created" msgstr "Nieuwe pagina aangemaakt" @@ -6348,117 +6359,121 @@ msgstr "Je expliciet in een bericht bent genoemd" msgid "You are poked/prodded/etc. in a post" msgstr "Je bent in een bericht aangestoten/gepord/etc." -#: ../../Zotlabs/Module/Settings/Channel.php:522 +#: ../../Zotlabs/Module/Settings/Channel.php:521 +msgid "Someone likes your post/comment" +msgstr "Iemand jouw bericht/reactie leuk vindt" + +#: ../../Zotlabs/Module/Settings/Channel.php:524 msgid "Show visual notifications including:" msgstr "Toon de volgende zichtbare notificaties:" -#: ../../Zotlabs/Module/Settings/Channel.php:524 +#: ../../Zotlabs/Module/Settings/Channel.php:526 msgid "Unseen grid activity" msgstr "Niet bekeken grid-activiteit" -#: ../../Zotlabs/Module/Settings/Channel.php:525 +#: ../../Zotlabs/Module/Settings/Channel.php:527 msgid "Unseen channel activity" msgstr "Niet bekeken kanaal-activiteit" -#: ../../Zotlabs/Module/Settings/Channel.php:526 +#: ../../Zotlabs/Module/Settings/Channel.php:528 msgid "Unseen private messages" msgstr "Niet bekeken privéberichten" -#: ../../Zotlabs/Module/Settings/Channel.php:526 -#: ../../Zotlabs/Module/Settings/Channel.php:531 -#: ../../Zotlabs/Module/Settings/Channel.php:532 +#: ../../Zotlabs/Module/Settings/Channel.php:528 #: ../../Zotlabs/Module/Settings/Channel.php:533 +#: ../../Zotlabs/Module/Settings/Channel.php:534 +#: ../../Zotlabs/Module/Settings/Channel.php:535 #: ../../extend/addon/addon/jappixmini/jappixmini.php:343 msgid "Recommended" msgstr "Aanbevolen" -#: ../../Zotlabs/Module/Settings/Channel.php:527 +#: ../../Zotlabs/Module/Settings/Channel.php:529 msgid "Upcoming events" msgstr "Aankomende gebeurtenissen" -#: ../../Zotlabs/Module/Settings/Channel.php:528 +#: ../../Zotlabs/Module/Settings/Channel.php:530 msgid "Events today" msgstr "Gebeurtenissen van vandaag" -#: ../../Zotlabs/Module/Settings/Channel.php:529 +#: ../../Zotlabs/Module/Settings/Channel.php:531 msgid "Upcoming birthdays" msgstr "Aankomende verjaardagen" -#: ../../Zotlabs/Module/Settings/Channel.php:529 +#: ../../Zotlabs/Module/Settings/Channel.php:531 msgid "Not available in all themes" msgstr "Niet in alle thema's beschikbaar" -#: ../../Zotlabs/Module/Settings/Channel.php:530 +#: ../../Zotlabs/Module/Settings/Channel.php:532 msgid "System (personal) notifications" msgstr "(Persoonlijke) systeemnotificaties" -#: ../../Zotlabs/Module/Settings/Channel.php:531 +#: ../../Zotlabs/Module/Settings/Channel.php:533 msgid "System info messages" msgstr "Systeemmededelingen" -#: ../../Zotlabs/Module/Settings/Channel.php:532 +#: ../../Zotlabs/Module/Settings/Channel.php:534 msgid "System critical alerts" msgstr "Kritische systeemwaarschuwingen" -#: ../../Zotlabs/Module/Settings/Channel.php:533 +#: ../../Zotlabs/Module/Settings/Channel.php:535 msgid "New connections" msgstr "Nieuwe connecties" -#: ../../Zotlabs/Module/Settings/Channel.php:534 +#: ../../Zotlabs/Module/Settings/Channel.php:536 msgid "System Registrations" msgstr "Nieuwe accountregistraties op deze hub" -#: ../../Zotlabs/Module/Settings/Channel.php:535 +#: ../../Zotlabs/Module/Settings/Channel.php:537 msgid "" "Also show new wall posts, private messages and connections under Notices" msgstr "Toon tevens nieuwe kanaalberichten, privéberichten en connecties onder Notificaties" -#: ../../Zotlabs/Module/Settings/Channel.php:537 +#: ../../Zotlabs/Module/Settings/Channel.php:539 msgid "Notify me of events this many days in advance" msgstr "Herinner mij zoveel dagen van te voren aan gebeurtenissen" -#: ../../Zotlabs/Module/Settings/Channel.php:537 +#: ../../Zotlabs/Module/Settings/Channel.php:539 msgid "Must be greater than 0" msgstr "Moet hoger dan 0 zijn" -#: ../../Zotlabs/Module/Settings/Channel.php:539 +#: ../../Zotlabs/Module/Settings/Channel.php:541 msgid "Advanced Account/Page Type Settings" msgstr "Instellingen geavanceerd account/paginatype" -#: ../../Zotlabs/Module/Settings/Channel.php:540 +#: ../../Zotlabs/Module/Settings/Channel.php:542 msgid "Change the behaviour of this account for special situations" msgstr "Verander het gedrag van dit account voor speciale situaties" -#: ../../Zotlabs/Module/Settings/Channel.php:542 +#: ../../Zotlabs/Module/Settings/Channel.php:544 msgid "Miscellaneous Settings" msgstr "Diverse instellingen" -#: ../../Zotlabs/Module/Settings/Channel.php:543 +#: ../../Zotlabs/Module/Settings/Channel.php:545 msgid "Default photo upload folder" msgstr "Standaard fotoalbum voor uploads" -#: ../../Zotlabs/Module/Settings/Channel.php:543 -#: ../../Zotlabs/Module/Settings/Channel.php:544 +#: ../../Zotlabs/Module/Settings/Channel.php:545 +#: ../../Zotlabs/Module/Settings/Channel.php:546 msgid "%Y - current year, %m - current month" msgstr "%Y - dit jaar, %m - deze maand" -#: ../../Zotlabs/Module/Settings/Channel.php:544 +#: ../../Zotlabs/Module/Settings/Channel.php:546 msgid "Default file upload folder" msgstr "Standaard bestandsmap voor uploads" -#: ../../Zotlabs/Module/Settings/Channel.php:546 +#: ../../Zotlabs/Module/Settings/Channel.php:548 msgid "Personal menu to display in your channel pages" msgstr "Persoonlijk menu om op je kanaalpagina's weer te geven" -#: ../../Zotlabs/Module/Settings/Channel.php:548 +#: ../../Zotlabs/Module/Settings/Channel.php:550 msgid "Remove this channel." msgstr "Verwijder dit kanaal." -#: ../../Zotlabs/Module/Settings/Channel.php:549 +#: ../../Zotlabs/Module/Settings/Channel.php:551 msgid "Firefox Share $Projectname provider" msgstr "$Projectname-service voor Firefox Share" -#: ../../Zotlabs/Module/Settings/Channel.php:550 +#: ../../Zotlabs/Module/Settings/Channel.php:552 msgid "Start calendar week on monday" msgstr "Begin in de agenda de week op maandag" @@ -6888,7 +6903,7 @@ msgstr "Omschrijving bewerken" msgid "Edit Location" msgstr "Locatie bewerken" -#: ../../Zotlabs/Module/Events.php:472 ../../include/conversation.php:1280 +#: ../../Zotlabs/Module/Events.php:472 ../../include/conversation.php:1262 msgid "Permission settings" msgstr "Permissies" @@ -6951,110 +6966,6 @@ msgstr "Chatkanaal niet gevonden" msgid "Room is full" msgstr "Chatkanaal is vol" -#: ../../Zotlabs/Lib/Apps.php:205 -msgid "Site Admin" -msgstr "Hubbeheerder" - -#: ../../Zotlabs/Lib/Apps.php:206 -#: ../../extend/addon/addon/buglink/buglink.php:16 -msgid "Report Bug" -msgstr "Bugrapport indienen" - -#: ../../Zotlabs/Lib/Apps.php:207 -msgid "View Bookmarks" -msgstr "Bladwijzers bekijken" - -#: ../../Zotlabs/Lib/Apps.php:208 -msgid "My Chatrooms" -msgstr "Mijn chatkanalen" - -#: ../../Zotlabs/Lib/Apps.php:210 -msgid "Firefox Share" -msgstr "Firefox Share" - -#: ../../Zotlabs/Lib/Apps.php:211 -msgid "Remote Diagnostics" -msgstr "Diagnose op afstand" - -#: ../../Zotlabs/Lib/Apps.php:212 ../../include/features.php:319 -msgid "Suggest Channels" -msgstr "Kanalen voorstellen" - -#: ../../Zotlabs/Lib/Apps.php:213 ../../include/nav.php:115 -#: ../../boot.php:1719 -msgid "Login" -msgstr "Inloggen" - -#: ../../Zotlabs/Lib/Apps.php:215 ../../include/nav.php:182 -msgid "Grid" -msgstr "Grid" - -#: ../../Zotlabs/Lib/Apps.php:219 ../../include/features.php:99 -#: ../../include/conversation.php:1758 -msgid "Wiki" -msgstr "Wiki" - -#: ../../Zotlabs/Lib/Apps.php:220 ../../include/nav.php:185 -msgid "Channel Home" -msgstr "Jouw kanaal" - -#: ../../Zotlabs/Lib/Apps.php:223 ../../include/nav.php:204 -#: ../../include/conversation.php:1709 ../../include/conversation.php:1712 -msgid "Events" -msgstr "Agenda" - -#: ../../Zotlabs/Lib/Apps.php:224 ../../include/nav.php:170 -msgid "Directory" -msgstr "Kanalengids" - -#: ../../Zotlabs/Lib/Apps.php:226 ../../include/nav.php:196 -msgid "Mail" -msgstr "Privéberichten" - -#: ../../Zotlabs/Lib/Apps.php:229 ../../include/nav.php:99 -msgid "Chat" -msgstr "Chatten" - -#: ../../Zotlabs/Lib/Apps.php:231 -msgid "Probe" -msgstr "Onderzoeken" - -#: ../../Zotlabs/Lib/Apps.php:232 -msgid "Suggest" -msgstr "Voorstellen" - -#: ../../Zotlabs/Lib/Apps.php:233 -msgid "Random Channel" -msgstr "Willekeurig kanaal" - -#: ../../Zotlabs/Lib/Apps.php:234 -msgid "Invite" -msgstr "Uitnodigen " - -#: ../../Zotlabs/Lib/Apps.php:235 ../../include/widgets.php:1635 -msgid "Features" -msgstr "Extra functies" - -#: ../../Zotlabs/Lib/Apps.php:236 -#: ../../extend/addon/addon/openid/MysqlProvider.php:69 -msgid "Language" -msgstr "Taal" - -#: ../../Zotlabs/Lib/Apps.php:237 -msgid "Post" -msgstr "Bericht" - -#: ../../Zotlabs/Lib/Apps.php:238 -#: ../../extend/addon/addon/openid/MysqlProvider.php:58 -#: ../../extend/addon/addon/openid/MysqlProvider.php:59 -#: ../../extend/addon/addon/openid/MysqlProvider.php:60 -msgid "Profile Photo" -msgstr "Profielfoto" - -#: ../../Zotlabs/Lib/Apps.php:339 -msgid "Purchase" -msgstr "Aanschaffen" - #: ../../Zotlabs/Lib/PermissionDescription.php:34 #: ../../include/acl_selectors.php:128 msgid "Visible to your default audience" @@ -7118,11 +7029,11 @@ msgstr "Dit is de standaard privacy-instelling voor wie jouw bestanden en foto's msgid "This is your default setting for the audience of your webpages" msgstr "Dit is de standaard privacy-instelling voor wie jouw webpagina's kan bekijken" -#: ../../Zotlabs/Lib/ThreadItem.php:95 ../../include/conversation.php:683 +#: ../../Zotlabs/Lib/ThreadItem.php:95 ../../include/conversation.php:663 msgid "Private Message" msgstr "Niet voor iedereen zichtbaar" -#: ../../Zotlabs/Lib/ThreadItem.php:132 ../../include/conversation.php:675 +#: ../../Zotlabs/Lib/ThreadItem.php:132 ../../include/conversation.php:655 msgid "Select" msgstr "Kies" @@ -7170,11 +7081,11 @@ msgstr "Ster toevoegen of verwijderen" msgid "starred" msgstr "met ster" -#: ../../Zotlabs/Lib/ThreadItem.php:239 ../../include/conversation.php:690 +#: ../../Zotlabs/Lib/ThreadItem.php:239 ../../include/conversation.php:670 msgid "Message signature validated" msgstr "Berichtkenmerk gevalideerd" -#: ../../Zotlabs/Lib/ThreadItem.php:240 ../../include/conversation.php:691 +#: ../../Zotlabs/Lib/ThreadItem.php:240 ../../include/conversation.php:671 msgid "Message signature incorrect" msgstr "Berichtkenmerk onjuist" @@ -7230,17 +7141,17 @@ msgstr "Kanaal-naar-kanaal" msgid "via Wall-To-Wall:" msgstr "via kanaal-naar-kanaal" -#: ../../Zotlabs/Lib/ThreadItem.php:348 ../../include/conversation.php:736 +#: ../../Zotlabs/Lib/ThreadItem.php:348 ../../include/conversation.php:716 #, php-format msgid "from %s" msgstr "van %s" -#: ../../Zotlabs/Lib/ThreadItem.php:351 ../../include/conversation.php:739 +#: ../../Zotlabs/Lib/ThreadItem.php:351 ../../include/conversation.php:719 #, php-format msgid "last edited: %s" msgstr "laatst bewerkt: %s" -#: ../../Zotlabs/Lib/ThreadItem.php:352 ../../include/conversation.php:740 +#: ../../Zotlabs/Lib/ThreadItem.php:352 ../../include/conversation.php:720 #, php-format msgid "Expires: %s" msgstr "Verloopt: %s" @@ -7279,23 +7190,23 @@ msgstr "Markeer alles als bekeken" msgid "%s show all" msgstr "%s alle" -#: ../../Zotlabs/Lib/ThreadItem.php:730 ../../include/conversation.php:1255 +#: ../../Zotlabs/Lib/ThreadItem.php:730 ../../include/conversation.php:1237 msgid "Bold" msgstr "Vet" -#: ../../Zotlabs/Lib/ThreadItem.php:731 ../../include/conversation.php:1256 +#: ../../Zotlabs/Lib/ThreadItem.php:731 ../../include/conversation.php:1238 msgid "Italic" msgstr "Cursief" -#: ../../Zotlabs/Lib/ThreadItem.php:732 ../../include/conversation.php:1257 +#: ../../Zotlabs/Lib/ThreadItem.php:732 ../../include/conversation.php:1239 msgid "Underline" msgstr "Onderstrepen" -#: ../../Zotlabs/Lib/ThreadItem.php:733 ../../include/conversation.php:1258 +#: ../../Zotlabs/Lib/ThreadItem.php:733 ../../include/conversation.php:1240 msgid "Quote" msgstr "Citeren" -#: ../../Zotlabs/Lib/ThreadItem.php:734 ../../include/conversation.php:1259 +#: ../../Zotlabs/Lib/ThreadItem.php:734 ../../include/conversation.php:1241 msgid "Code" msgstr "Broncode" @@ -7311,6 +7222,114 @@ msgstr "Link invoegen" msgid "Video" msgstr "Video" +#: ../../Zotlabs/Lib/Apps.php:207 +msgid "Site Admin" +msgstr "Hubbeheerder" + +#: ../../Zotlabs/Lib/Apps.php:208 +#: ../../extend/addon/addon/buglink/buglink.php:16 +msgid "Report Bug" +msgstr "Bugrapport indienen" + +#: ../../Zotlabs/Lib/Apps.php:209 +msgid "View Bookmarks" +msgstr "Bladwijzers bekijken" + +#: ../../Zotlabs/Lib/Apps.php:210 +msgid "My Chatrooms" +msgstr "Mijn chatkanalen" + +#: ../../Zotlabs/Lib/Apps.php:212 +msgid "Firefox Share" +msgstr "Firefox Share" + +#: ../../Zotlabs/Lib/Apps.php:213 +msgid "Remote Diagnostics" +msgstr "Diagnose op afstand" + +#: ../../Zotlabs/Lib/Apps.php:214 ../../include/features.php:319 +msgid "Suggest Channels" +msgstr "Kanalen voorstellen" + +#: ../../Zotlabs/Lib/Apps.php:215 ../../include/nav.php:115 +#: ../../boot.php:1720 +msgid "Login" +msgstr "Inloggen" + +#: ../../Zotlabs/Lib/Apps.php:217 ../../include/nav.php:182 +msgid "Grid" +msgstr "Grid" + +#: ../../Zotlabs/Lib/Apps.php:221 ../../include/features.php:99 +#: ../../include/conversation.php:1740 +msgid "Wiki" +msgstr "Wiki" + +#: ../../Zotlabs/Lib/Apps.php:222 ../../include/nav.php:185 +msgid "Channel Home" +msgstr "Jouw kanaal" + +#: ../../Zotlabs/Lib/Apps.php:225 ../../include/nav.php:204 +#: ../../include/conversation.php:1691 ../../include/conversation.php:1694 +msgid "Events" +msgstr "Agenda" + +#: ../../Zotlabs/Lib/Apps.php:226 ../../include/nav.php:170 +msgid "Directory" +msgstr "Kanalengids" + +#: ../../Zotlabs/Lib/Apps.php:228 ../../include/nav.php:196 +msgid "Mail" +msgstr "Privéberichten" + +#: ../../Zotlabs/Lib/Apps.php:231 ../../include/nav.php:99 +msgid "Chat" +msgstr "Chatten" + +#: ../../Zotlabs/Lib/Apps.php:233 +msgid "Probe" +msgstr "Onderzoeken" + +#: ../../Zotlabs/Lib/Apps.php:234 +msgid "Suggest" +msgstr "Voorstellen" + +#: ../../Zotlabs/Lib/Apps.php:235 +msgid "Random Channel" +msgstr "Willekeurig kanaal" + +#: ../../Zotlabs/Lib/Apps.php:236 +msgid "Invite" +msgstr "Uitnodigen " + +#: ../../Zotlabs/Lib/Apps.php:237 ../../include/widgets.php:1565 +msgid "Features" +msgstr "Extra functies" + +#: ../../Zotlabs/Lib/Apps.php:238 +#: ../../extend/addon/addon/openid/MysqlProvider.php:69 +msgid "Language" +msgstr "Taal" + +#: ../../Zotlabs/Lib/Apps.php:239 +msgid "Post" +msgstr "Bericht" + +#: ../../Zotlabs/Lib/Apps.php:240 +#: ../../extend/addon/addon/openid/MysqlProvider.php:58 +#: ../../extend/addon/addon/openid/MysqlProvider.php:59 +#: ../../extend/addon/addon/openid/MysqlProvider.php:60 +msgid "Profile Photo" +msgstr "Profielfoto" + +#: ../../Zotlabs/Lib/Apps.php:344 +msgid "Purchase" +msgstr "Aanschaffen" + +#: ../../Zotlabs/Lib/Apps.php:348 +msgid "Undelete" +msgstr "Verwijdering ongedaan maken" + #: ../../Zotlabs/Lib/Enotify.php:60 ../../include/network.php:1914 msgid "$Projectname Notification" msgstr "$Projectname-notificatie" @@ -7378,143 +7397,158 @@ msgstr "%1$s, %2$s gaf een reactie op [zrl=%3$s]jouw %4$s[/zrl]" #: ../../Zotlabs/Lib/Enotify.php:211 #, php-format msgid "[$Projectname:Notify] Comment to conversation #%1$d by %2$s" -msgstr "[$Projectname:Notificatie] Reactie op conversatie #%1$d door %2$s" +msgstr "[$Projectname:Notificatie] %2$s gaf een reactie in conversatie #%1$d" #: ../../Zotlabs/Lib/Enotify.php:212 #, 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." +msgstr "%1$s, %2$s gaf een reactie in een conversatie die jij volgt." -#: ../../Zotlabs/Lib/Enotify.php:215 ../../Zotlabs/Lib/Enotify.php:230 -#: ../../Zotlabs/Lib/Enotify.php:256 ../../Zotlabs/Lib/Enotify.php:274 -#: ../../Zotlabs/Lib/Enotify.php:288 +#: ../../Zotlabs/Lib/Enotify.php:215 ../../Zotlabs/Lib/Enotify.php:292 +#: ../../Zotlabs/Lib/Enotify.php:309 ../../Zotlabs/Lib/Enotify.php:335 +#: ../../Zotlabs/Lib/Enotify.php:353 ../../Zotlabs/Lib/Enotify.php:367 #, 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." -#: ../../Zotlabs/Lib/Enotify.php:221 +#: ../../Zotlabs/Lib/Enotify.php:273 +#, php-format +msgid "%1$s, %2$s liked [zrl=%3$s]your %4$s[/zrl]" +msgstr "%1$s, %2$s vindt [zrl=%3$s]jouw %4$s[/zrl] leuk" + +#: ../../Zotlabs/Lib/Enotify.php:288 +#, php-format +msgid "[$Projectname:Notify] Like received to conversation #%1$d by %2$s" +msgstr "[$Projectname:Notificatie] %2$s vindt iets leuk in conversatie #%1$d" + +#: ../../Zotlabs/Lib/Enotify.php:289 +#, php-format +msgid "%1$s, %2$s liked an item/conversation you created." +msgstr "%1$s, %2$s vindt iets leuk in een conversatie die jij bent gestart." + +#: ../../Zotlabs/Lib/Enotify.php:300 #, php-format msgid "[$Projectname:Notify] %s posted to your profile wall" msgstr "[$Projectname:Notificatie] %s heeft een bericht op jouw kanaal geplaatst" -#: ../../Zotlabs/Lib/Enotify.php:223 +#: ../../Zotlabs/Lib/Enotify.php:302 #, 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" -#: ../../Zotlabs/Lib/Enotify.php:225 +#: ../../Zotlabs/Lib/Enotify.php:304 #, 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" -#: ../../Zotlabs/Lib/Enotify.php:249 +#: ../../Zotlabs/Lib/Enotify.php:328 #, php-format msgid "[$Projectname:Notify] %s tagged you" msgstr "[$Projectname:Notificatie] %s heeft jou genoemd" -#: ../../Zotlabs/Lib/Enotify.php:250 +#: ../../Zotlabs/Lib/Enotify.php:329 #, php-format msgid "%1$s, %2$s tagged you at %3$s" msgstr "%1$s, %2$s noemde jou op %3$s" -#: ../../Zotlabs/Lib/Enotify.php:251 +#: ../../Zotlabs/Lib/Enotify.php:330 #, php-format msgid "%1$s, %2$s [zrl=%3$s]tagged you[/zrl]." msgstr "%1$s, %2$s [zrl=%3$s]noemde jou[/zrl]." -#: ../../Zotlabs/Lib/Enotify.php:263 +#: ../../Zotlabs/Lib/Enotify.php:342 #, php-format msgid "[$Projectname:Notify] %1$s poked you" msgstr "[$Projectname:Notificatie] %1$s heeft jou aangestoten" -#: ../../Zotlabs/Lib/Enotify.php:264 +#: ../../Zotlabs/Lib/Enotify.php:343 #, php-format msgid "%1$s, %2$s poked you at %3$s" msgstr "%1$s, %2$s heeft je aangestoten op %3$s" -#: ../../Zotlabs/Lib/Enotify.php:265 +#: ../../Zotlabs/Lib/Enotify.php:344 #, 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]." -#: ../../Zotlabs/Lib/Enotify.php:281 +#: ../../Zotlabs/Lib/Enotify.php:360 #, php-format msgid "[$Projectname:Notify] %s tagged your post" msgstr "[$Projectname:Notificatie] %s heeft jouw bericht getagd" -#: ../../Zotlabs/Lib/Enotify.php:282 +#: ../../Zotlabs/Lib/Enotify.php:361 #, 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" -#: ../../Zotlabs/Lib/Enotify.php:283 +#: ../../Zotlabs/Lib/Enotify.php:362 #, 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" -#: ../../Zotlabs/Lib/Enotify.php:295 +#: ../../Zotlabs/Lib/Enotify.php:374 msgid "[$Projectname:Notify] Introduction received" msgstr "[$Projectname:Notificatie] Connectieverzoek ontvangen" -#: ../../Zotlabs/Lib/Enotify.php:296 +#: ../../Zotlabs/Lib/Enotify.php:375 #, 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" -#: ../../Zotlabs/Lib/Enotify.php:297 +#: ../../Zotlabs/Lib/Enotify.php:376 #, 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." -#: ../../Zotlabs/Lib/Enotify.php:301 ../../Zotlabs/Lib/Enotify.php:320 +#: ../../Zotlabs/Lib/Enotify.php:380 ../../Zotlabs/Lib/Enotify.php:399 #, php-format msgid "You may visit their profile at %s" msgstr "Je kan het profiel bekijken op %s" -#: ../../Zotlabs/Lib/Enotify.php:303 +#: ../../Zotlabs/Lib/Enotify.php:382 #, 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." -#: ../../Zotlabs/Lib/Enotify.php:310 +#: ../../Zotlabs/Lib/Enotify.php:389 msgid "[$Projectname:Notify] Friend suggestion received" msgstr "[$Projectname:Notificatie] Kanaalvoorstel ontvangen" -#: ../../Zotlabs/Lib/Enotify.php:311 +#: ../../Zotlabs/Lib/Enotify.php:390 #, 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" -#: ../../Zotlabs/Lib/Enotify.php:312 +#: ../../Zotlabs/Lib/Enotify.php:391 #, 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." -#: ../../Zotlabs/Lib/Enotify.php:318 +#: ../../Zotlabs/Lib/Enotify.php:397 msgid "Name:" msgstr "Naam:" -#: ../../Zotlabs/Lib/Enotify.php:319 +#: ../../Zotlabs/Lib/Enotify.php:398 msgid "Photo:" msgstr "Foto:" -#: ../../Zotlabs/Lib/Enotify.php:322 +#: ../../Zotlabs/Lib/Enotify.php:401 #, php-format msgid "Please visit %s to approve or reject the suggestion." msgstr "Bezoek %s om het voorstel te accepteren of af te wijzen." -#: ../../Zotlabs/Lib/Enotify.php:540 +#: ../../Zotlabs/Lib/Enotify.php:619 msgid "[$Projectname:Notify]" msgstr "[$Projectname:Notificatie]" -#: ../../Zotlabs/Lib/Enotify.php:700 +#: ../../Zotlabs/Lib/Enotify.php:779 msgid "created a new post" msgstr "maakte een nieuw bericht aan" -#: ../../Zotlabs/Lib/Enotify.php:701 +#: ../../Zotlabs/Lib/Enotify.php:780 #, php-format msgid "commented on %s's post" msgstr "gaf een reactie op een bericht van %s" @@ -9395,23 +9429,23 @@ msgstr "API-URL" msgid "Application name" msgstr "Naam applicatie" -#: ../../extend/addon/addon/superblock/superblock.php:106 +#: ../../extend/addon/addon/superblock/superblock.php:110 msgid "Currently blocked" msgstr "Momenteel geblokkeerd" -#: ../../extend/addon/addon/superblock/superblock.php:108 +#: ../../extend/addon/addon/superblock/superblock.php:112 msgid "No channels currently blocked" msgstr "Momenteel geen kanalen geblokkeerd" -#: ../../extend/addon/addon/superblock/superblock.php:114 +#: ../../extend/addon/addon/superblock/superblock.php:118 msgid "\"Superblock\" Settings" msgstr "Superblock" -#: ../../extend/addon/addon/superblock/superblock.php:279 +#: ../../extend/addon/addon/superblock/superblock.php:316 msgid "Block Completely" msgstr "Volledig blokkeren" -#: ../../extend/addon/addon/superblock/superblock.php:326 +#: ../../extend/addon/addon/superblock/superblock.php:361 msgid "superblock settings updated" msgstr "Superblock-instellingen bijgewerkt" @@ -10308,71 +10342,71 @@ msgid "" "from Mapbox instead of the default OpenStreetMap tile server." msgstr "De Mapbox-toegangstoken wordt gebruikt om kaarttegels (tiles) van Mapbox op te halen in plaats van de standaard tile-server van OpenStreetMap." -#: ../../extend/addon/addon/rendezvous/rendezvous.php:122 +#: ../../extend/addon/addon/rendezvous/rendezvous.php:154 msgid "Rendezvous" msgstr "Rendezvous" -#: ../../extend/addon/addon/rendezvous/rendezvous.php:127 +#: ../../extend/addon/addon/rendezvous/rendezvous.php:159 msgid "" "This identity has been deleted by another member due to inactivity. Please " "press the \"New identity\" button or refresh the page to register a new " "identity. You may use the same name." msgstr "Deze identiteit is door een ander lid verwijderd als gevolg van inactiviteit. Klik op de knop \"Nieuwe identiteit\" of herlaad de pagina om een nieuwe identiteit aan te maken. Je kan eventueel dezelfde naam gebruiken." -#: ../../extend/addon/addon/rendezvous/rendezvous.php:128 +#: ../../extend/addon/addon/rendezvous/rendezvous.php:160 msgid "Welcome to Rendezvous!" msgstr "Welkom bij Rendezvous!" -#: ../../extend/addon/addon/rendezvous/rendezvous.php:129 +#: ../../extend/addon/addon/rendezvous/rendezvous.php:161 msgid "" "Enter your name to join this rendezvous. To begin sharing your location with" " the other members, tap the GPS control. When your location is discovered, a" " red dot will appear and others will be able to see you on the map." msgstr "Vul je naam in om deel te nemen aan deze rendezvous. Om met het delen van je locatie met de andere leden te beginnen, klik je op de locatieknop van je webbrowser. Nadat jouw locatie is gevonden verschijnt er een rode stip en kunnen andere leden jou zien op de kaart." -#: ../../extend/addon/addon/rendezvous/rendezvous.php:131 +#: ../../extend/addon/addon/rendezvous/rendezvous.php:163 msgid "Let's meet here" msgstr "Laten we elkaar hier ontmoeten" -#: ../../extend/addon/addon/rendezvous/rendezvous.php:134 +#: ../../extend/addon/addon/rendezvous/rendezvous.php:166 msgid "New marker" msgstr "Nieuwe markering" -#: ../../extend/addon/addon/rendezvous/rendezvous.php:135 +#: ../../extend/addon/addon/rendezvous/rendezvous.php:167 msgid "Edit marker" msgstr "Markering bewerken" -#: ../../extend/addon/addon/rendezvous/rendezvous.php:136 +#: ../../extend/addon/addon/rendezvous/rendezvous.php:168 msgid "New identity" msgstr "Nieuwe identiteit" -#: ../../extend/addon/addon/rendezvous/rendezvous.php:137 +#: ../../extend/addon/addon/rendezvous/rendezvous.php:169 msgid "Delete marker" msgstr "Markering verwijderen" -#: ../../extend/addon/addon/rendezvous/rendezvous.php:138 +#: ../../extend/addon/addon/rendezvous/rendezvous.php:170 msgid "Delete member" msgstr "Lid verwijderen" -#: ../../extend/addon/addon/rendezvous/rendezvous.php:139 +#: ../../extend/addon/addon/rendezvous/rendezvous.php:171 msgid "Edit proximity alert" msgstr "Nabijheidswaarschuwing bewerken" -#: ../../extend/addon/addon/rendezvous/rendezvous.php:140 +#: ../../extend/addon/addon/rendezvous/rendezvous.php:172 msgid "" "A proximity alert will be issued when this member is within a certain radius" " of you.

Enter a radius in meters (0 to disable):" msgstr "Een nabijheidswaarschuwing wordt actief wanneer dit lid zich binnen een bepaalde straal bevindt.

Voer het aantal meters van de straal in (0 om uit te schakelen):" -#: ../../extend/addon/addon/rendezvous/rendezvous.php:140 +#: ../../extend/addon/addon/rendezvous/rendezvous.php:172 msgid "distance" msgstr "afstand" -#: ../../extend/addon/addon/rendezvous/rendezvous.php:150 +#: ../../extend/addon/addon/rendezvous/rendezvous.php:183 msgid "Add new rendezvous" msgstr "Nieuwe rendezvous toevoegen" -#: ../../extend/addon/addon/rendezvous/rendezvous.php:151 +#: ../../extend/addon/addon/rendezvous/rendezvous.php:184 msgid "" "Create a new rendezvous and share the access link with those you wish to " "invite to the group. Those who open the link become members of the " @@ -10405,7 +10439,7 @@ msgstr "Leeftijd:" msgid "YYYY-MM-DD or MM-DD" msgstr "JJJJ-MM-DD of MM-DD" -#: ../../include/datetime.php:286 ../../boot.php:2563 +#: ../../include/datetime.php:286 ../../boot.php:2564 msgid "never" msgstr "nooit" @@ -10546,22 +10580,6 @@ msgstr "Deze handeling overschrijdt de beperkingen die voor jouw abonnement geld msgid "This action is not available under your subscription plan." msgstr "Deze handeling is niet mogelijk met jouw abonnement." -#: ../../include/message.php:20 -msgid "No recipient provided." -msgstr "Geen ontvanger opgegeven." - -#: ../../include/message.php:25 -msgid "[no subject]" -msgstr "[geen onderwerp]" - -#: ../../include/message.php:45 -msgid "Unable to determine sender." -msgstr "Afzender kan niet bepaald worden." - -#: ../../include/message.php:223 -msgid "Stored post could not be verified." -msgstr "Opgeslagen bericht kon niet worden geverifieerd." - #: ../../include/selectors.php:30 msgid "Frequently" msgstr "Regelmatig" @@ -10977,7 +10995,7 @@ msgstr "Alleen openbare forums" msgid "This Website Only" msgstr "Alleen deze hub" -#: ../../include/nav.php:85 ../../include/nav.php:118 ../../boot.php:1718 +#: ../../include/nav.php:85 ../../include/nav.php:118 ../../boot.php:1719 msgid "Logout" msgstr "Uitloggen" @@ -11013,7 +11031,7 @@ msgstr "Jouw bestanden" msgid "Your chatrooms" msgstr "Jouw chatkanalen" -#: ../../include/nav.php:105 ../../include/conversation.php:1735 +#: ../../include/nav.php:105 ../../include/conversation.php:1717 msgid "Bookmarks" msgstr "Bladwijzers" @@ -11141,7 +11159,7 @@ msgstr "Beheer je kanalen" msgid "Account/Channel Settings" msgstr "Account-/kanaal-instellingen" -#: ../../include/nav.php:219 ../../include/widgets.php:1665 +#: ../../include/nav.php:219 ../../include/widgets.php:1595 msgid "Admin" msgstr "Beheer" @@ -11149,7 +11167,7 @@ msgstr "Beheer" msgid "Site Setup and Configuration" msgstr "Hub instellen en beheren" -#: ../../include/nav.php:250 ../../include/conversation.php:869 +#: ../../include/nav.php:250 ../../include/conversation.php:835 msgid "Loading..." msgstr "Aan het laden..." @@ -11463,370 +11481,84 @@ msgid "" "channel" msgstr "Stelt je in staat om beperkingen en voorwaarden in te stellen voor jouw kanaal" -#: ../../include/text.php:460 -msgid "prev" -msgstr "vorige" - -#: ../../include/text.php:462 -msgid "first" -msgstr "eerste" - -#: ../../include/text.php:491 -msgid "last" -msgstr "laatste" - -#: ../../include/text.php:494 -msgid "next" -msgstr "volgende" - -#: ../../include/text.php:505 -msgid "older" -msgstr "ouder" - -#: ../../include/text.php:507 -msgid "newer" -msgstr "nieuwer" - -#: ../../include/text.php:904 -msgid "No connections" -msgstr "Geen connecties" - -#: ../../include/text.php:929 -#, php-format -msgid "View all %s connections" -msgstr "Toon alle %s connecties" - -#: ../../include/text.php:1074 ../../include/text.php:1079 -msgid "poke" -msgstr "aanstoten" - -#: ../../include/text.php:1074 ../../include/text.php:1079 -#: ../../include/conversation.php:243 -msgid "poked" -msgstr "aangestoten" - -#: ../../include/text.php:1080 -msgid "ping" -msgstr "ping" - -#: ../../include/text.php:1080 -msgid "pinged" -msgstr "gepingd" - -#: ../../include/text.php:1081 -msgid "prod" -msgstr "por" - -#: ../../include/text.php:1081 -msgid "prodded" -msgstr "gepord" - -#: ../../include/text.php:1082 -msgid "slap" -msgstr "slaan" - -#: ../../include/text.php:1082 -msgid "slapped" -msgstr "sloeg" - -#: ../../include/text.php:1083 -msgid "finger" -msgstr "finger" - -#: ../../include/text.php:1083 -msgid "fingered" -msgstr "gefingerd" - -#: ../../include/text.php:1084 -msgid "rebuff" -msgstr "afpoeieren" - -#: ../../include/text.php:1084 -msgid "rebuffed" -msgstr "afgepoeierd" - -#: ../../include/text.php:1096 -msgid "happy" -msgstr "gelukkig" - -#: ../../include/text.php:1097 -msgid "sad" -msgstr "bedroefd" - -#: ../../include/text.php:1098 -msgid "mellow" -msgstr "mellow" - -#: ../../include/text.php:1099 -msgid "tired" -msgstr "moe" - -#: ../../include/text.php:1100 -msgid "perky" -msgstr "parmantig" - -#: ../../include/text.php:1101 -msgid "angry" -msgstr "boos" - -#: ../../include/text.php:1102 -msgid "stupefied" -msgstr "verbijsterd" - -#: ../../include/text.php:1103 -msgid "puzzled" -msgstr "verward" - -#: ../../include/text.php:1104 -msgid "interested" -msgstr "geïnteresseerd" - -#: ../../include/text.php:1105 -msgid "bitter" -msgstr "verbitterd" - -#: ../../include/text.php:1106 -msgid "cheerful" -msgstr "vrolijk" - -#: ../../include/text.php:1107 -msgid "alive" -msgstr "levendig" - -#: ../../include/text.php:1108 -msgid "annoyed" -msgstr "geërgerd" - -#: ../../include/text.php:1109 -msgid "anxious" -msgstr "bezorgd" - -#: ../../include/text.php:1110 -msgid "cranky" -msgstr "humeurig" - -#: ../../include/text.php:1111 -msgid "disturbed" -msgstr "verontrust" - -#: ../../include/text.php:1112 -msgid "frustrated" -msgstr "gefrustreerd " - -#: ../../include/text.php:1113 -msgid "depressed" -msgstr "gedeprimeerd" - -#: ../../include/text.php:1114 -msgid "motivated" -msgstr "gemotiveerd" - -#: ../../include/text.php:1115 -msgid "relaxed" -msgstr "ontspannen" - -#: ../../include/text.php:1116 -msgid "surprised" -msgstr "verrast" - -#: ../../include/text.php:1303 ../../include/js_strings.php:70 -msgid "Monday" -msgstr "maandag" - -#: ../../include/text.php:1303 ../../include/js_strings.php:71 -msgid "Tuesday" -msgstr "dinsdag" - -#: ../../include/text.php:1303 ../../include/js_strings.php:72 -msgid "Wednesday" -msgstr "woensdag" - -#: ../../include/text.php:1303 ../../include/js_strings.php:73 -msgid "Thursday" -msgstr "donderdag" - -#: ../../include/text.php:1303 ../../include/js_strings.php:74 -msgid "Friday" -msgstr "vrijdag" - -#: ../../include/text.php:1303 ../../include/js_strings.php:75 -msgid "Saturday" -msgstr "zaterdag" - -#: ../../include/text.php:1303 ../../include/js_strings.php:69 -msgid "Sunday" -msgstr "zondag" - -#: ../../include/text.php:1307 ../../include/js_strings.php:45 -msgid "January" -msgstr "januari" - -#: ../../include/text.php:1307 ../../include/js_strings.php:46 -msgid "February" -msgstr "februari" - -#: ../../include/text.php:1307 ../../include/js_strings.php:47 -msgid "March" -msgstr "maart" - -#: ../../include/text.php:1307 ../../include/js_strings.php:48 -msgid "April" -msgstr "april" - -#: ../../include/text.php:1307 -msgid "May" -msgstr "mei" - -#: ../../include/text.php:1307 ../../include/js_strings.php:50 -msgid "June" -msgstr "juni" - -#: ../../include/text.php:1307 ../../include/js_strings.php:51 -msgid "July" -msgstr "juli" - -#: ../../include/text.php:1307 ../../include/js_strings.php:52 -msgid "August" -msgstr "augustus" - -#: ../../include/text.php:1307 ../../include/js_strings.php:53 -msgid "September" -msgstr "september" - -#: ../../include/text.php:1307 ../../include/js_strings.php:54 -msgid "October" -msgstr "oktober" - -#: ../../include/text.php:1307 ../../include/js_strings.php:55 -msgid "November" -msgstr "november" - -#: ../../include/text.php:1307 ../../include/js_strings.php:56 -msgid "December" -msgstr "december" - -#: ../../include/text.php:1384 ../../include/text.php:1388 -msgid "Unknown Attachment" -msgstr "Onbekende bijlage" - -#: ../../include/text.php:1390 -msgid "unknown" -msgstr "onbekend" - -#: ../../include/text.php:1426 -msgid "remove category" -msgstr "categorie verwijderen" - -#: ../../include/text.php:1503 -msgid "remove from file" -msgstr "uit map verwijderen" - -#: ../../include/text.php:1770 ../../include/language.php:367 -msgid "default" -msgstr "standaard" - -#: ../../include/text.php:1778 -msgid "Page layout" -msgstr "Pagina-lay-out" - -#: ../../include/text.php:1778 -msgid "You can create your own with the layouts tool" -msgstr "Je kan jouw eigen lay-out ontwerpen onder lay-outs" - -#: ../../include/text.php:1820 -msgid "Page content type" -msgstr "Opmaaktype" - -#: ../../include/text.php:1953 -msgid "activity" -msgstr "activiteit" - -#: ../../include/text.php:2267 -msgid "Design Tools" -msgstr "Ontwerp-hulpmiddelen" - -#: ../../include/text.php:2273 -msgid "Pages" -msgstr "Pagina's" - -#: ../../include/text.php:2295 -msgid "Import website..." -msgstr "Website importeren..." - -#: ../../include/text.php:2296 -msgid "Select folder to import" -msgstr "Kies een map om te importeren" - -#: ../../include/text.php:2297 -msgid "Import from a zipped folder:" -msgstr "Vanuit een zipbestand importeren:" - -#: ../../include/text.php:2298 -msgid "Import from cloud files:" -msgstr "Vanuit de cloud importeren:" - -#: ../../include/text.php:2299 -msgid "/cloud/channel/path/to/folder" -msgstr "/cloud/channel/maplocatie" - -#: ../../include/text.php:2300 -msgid "Enter path to website files" -msgstr "Voer de locatie in van de websitebestanden" - -#: ../../include/text.php:2301 -msgid "Select folder" -msgstr "Kies een map" - -#: ../../include/text.php:2302 -msgid "Export website..." -msgstr "Website exporteren..." - -#: ../../include/text.php:2303 -msgid "Export to a zip file" -msgstr "Naar een zipbestand exporteren" - -#: ../../include/text.php:2304 -msgid "website.zip" -msgstr "website.zip" - -#: ../../include/text.php:2305 -msgid "Enter a name for the zip file." -msgstr "Vul een naam in voor het zipbestand." - -#: ../../include/text.php:2306 -msgid "Export to cloud files" -msgstr "Naar de cloud exporteren" - -#: ../../include/text.php:2307 -msgid "/path/to/export/folder" -msgstr "/locatie/van/export/map" - -#: ../../include/text.php:2308 -msgid "Enter a path to a cloud files destination." -msgstr "Voer de locatie in van de cloudbestemming" - -#: ../../include/text.php:2309 -msgid "Specify folder" -msgstr "Selecteer een map" +#: ../../include/bb2diaspora.php:404 +msgid "Attachments:" +msgstr "Bijlagen:" + +#: ../../include/bb2diaspora.php:499 ../../include/event.php:22 +#: ../../include/event.php:69 +msgid "l F d, Y \\@ g:i A" +msgstr "l d F Y \\@ G:i" + +#: ../../include/bb2diaspora.php:501 +msgid "$Projectname event notification:" +msgstr "Notificatie $Projectname-gebeurtenis:" + +#: ../../include/bb2diaspora.php:505 ../../include/event.php:30 +#: ../../include/event.php:73 +msgid "Starts:" +msgstr "Start:" + +#: ../../include/bb2diaspora.php:513 ../../include/event.php:40 +#: ../../include/event.php:77 +msgid "Finishes:" +msgstr "Einde:" #: ../../include/bookmarks.php:35 #, php-format msgid "%1$s's bookmarks" msgstr "Bladwijzers van %1$s" -#: ../../include/wiki.php:545 ../../include/bbcode.php:552 -#: ../../include/bbcode.php:683 -msgid "Different viewers will see this text differently" -msgstr "Deze tekst wordt per persoon anders weergeven." - #: ../../include/help.php:31 msgid "Help:" msgstr "Hulp:" +#: ../../include/help.php:63 +msgid "Not Found" +msgstr "Niet gevonden" + +#: ../../include/wiki.php:546 ../../include/bbcode.php:552 +#: ../../include/bbcode.php:683 +msgid "Different viewers will see this text differently" +msgstr "Deze tekst wordt per persoon anders weergeven." + +#: ../../include/zot.php:667 +msgid "Invalid data packet" +msgstr "Datapakket ongeldig" + +#: ../../include/zot.php:683 +msgid "Unable to verify channel signature" +msgstr "Kanaalkenmerk kon niet worden geverifieerd. " + +#: ../../include/zot.php:2325 +#, php-format +msgid "Unable to verify site signature for %s" +msgstr "Hubkenmerk voor %s kon niet worden geverifieerd" + +#: ../../include/zot.php:3723 +msgid "invalid target signature" +msgstr "ongeldig doelkenmerk" + #: ../../include/page_widgets.php:7 msgid "New Page" msgstr "Nieuwe pagina" +#: ../../include/message.php:32 +msgid "Unable to determine sender." +msgstr "Afzender kan niet bepaald worden." + +#: ../../include/message.php:69 +msgid "No recipient provided." +msgstr "Geen ontvanger opgegeven." + +#: ../../include/message.php:74 +msgid "[no subject]" +msgstr "[geen onderwerp]" + +#: ../../include/message.php:225 +msgid "Stored post could not be verified." +msgstr "Opgeslagen bericht kon niet worden geverifieerd." + #: ../../include/contact_widgets.php:11 #, php-format msgid "%d invitation available" @@ -12024,11 +11756,55 @@ msgstr " " msgid "timeago.numbers" msgstr "timeago.numbers" +#: ../../include/js_strings.php:45 ../../include/text.php:1307 +msgid "January" +msgstr "januari" + +#: ../../include/js_strings.php:46 ../../include/text.php:1307 +msgid "February" +msgstr "februari" + +#: ../../include/js_strings.php:47 ../../include/text.php:1307 +msgid "March" +msgstr "maart" + +#: ../../include/js_strings.php:48 ../../include/text.php:1307 +msgid "April" +msgstr "april" + #: ../../include/js_strings.php:49 msgctxt "long" msgid "May" msgstr "mei" +#: ../../include/js_strings.php:50 ../../include/text.php:1307 +msgid "June" +msgstr "juni" + +#: ../../include/js_strings.php:51 ../../include/text.php:1307 +msgid "July" +msgstr "juli" + +#: ../../include/js_strings.php:52 ../../include/text.php:1307 +msgid "August" +msgstr "augustus" + +#: ../../include/js_strings.php:53 ../../include/text.php:1307 +msgid "September" +msgstr "september" + +#: ../../include/js_strings.php:54 ../../include/text.php:1307 +msgid "October" +msgstr "oktober" + +#: ../../include/js_strings.php:55 ../../include/text.php:1307 +msgid "November" +msgstr "november" + +#: ../../include/js_strings.php:56 ../../include/text.php:1307 +msgid "December" +msgstr "december" + #: ../../include/js_strings.php:57 msgid "Jan" msgstr "jan" @@ -12078,6 +11854,34 @@ msgstr "nov" msgid "Dec" msgstr "dec" +#: ../../include/js_strings.php:69 ../../include/text.php:1303 +msgid "Sunday" +msgstr "zondag" + +#: ../../include/js_strings.php:70 ../../include/text.php:1303 +msgid "Monday" +msgstr "maandag" + +#: ../../include/js_strings.php:71 ../../include/text.php:1303 +msgid "Tuesday" +msgstr "dinsdag" + +#: ../../include/js_strings.php:72 ../../include/text.php:1303 +msgid "Wednesday" +msgstr "woensdag" + +#: ../../include/js_strings.php:73 ../../include/text.php:1303 +msgid "Thursday" +msgstr "donderdag" + +#: ../../include/js_strings.php:74 ../../include/text.php:1303 +msgid "Friday" +msgstr "vrijdag" + +#: ../../include/js_strings.php:75 ../../include/text.php:1303 +msgid "Saturday" +msgstr "zaterdag" + #: ../../include/js_strings.php:76 msgid "Sun" msgstr "zo" @@ -12131,46 +11935,6 @@ msgctxt "calendar" msgid "All day" msgstr "hele dag" -#: ../../include/network.php:729 -msgid "view full size" -msgstr "volledige grootte tonen" - -#: ../../include/network.php:1978 -msgid "No Subject" -msgstr "Geen onderwerp" - -#: ../../include/network.php:2234 -msgid "OStatus" -msgstr "OStatus" - -#: ../../include/network.php:2235 -msgid "GNU-Social" -msgstr "GNU social" - -#: ../../include/network.php:2236 -msgid "RSS/Atom" -msgstr "RSS/Atom" - -#: ../../include/network.php:2239 -msgid "Facebook" -msgstr "Facebook" - -#: ../../include/network.php:2240 -msgid "Zot" -msgstr "Zot" - -#: ../../include/network.php:2241 -msgid "LinkedIn" -msgstr "LinkedIn" - -#: ../../include/network.php:2242 -msgid "XMPP/IM" -msgstr "XMPP/IM" - -#: ../../include/network.php:2243 -msgid "MySpace" -msgstr "MySpace" - #: ../../include/taxonomy.php:228 ../../include/taxonomy.php:249 msgid "Tags" msgstr "Tags" @@ -12203,6 +11967,280 @@ msgstr "vindt dit leuk" msgid "dislikes" msgstr "vindt dit niet leuk" +#: ../../include/text.php:460 +msgid "prev" +msgstr "vorige" + +#: ../../include/text.php:462 +msgid "first" +msgstr "eerste" + +#: ../../include/text.php:491 +msgid "last" +msgstr "laatste" + +#: ../../include/text.php:494 +msgid "next" +msgstr "volgende" + +#: ../../include/text.php:505 +msgid "older" +msgstr "ouder" + +#: ../../include/text.php:507 +msgid "newer" +msgstr "nieuwer" + +#: ../../include/text.php:904 +msgid "No connections" +msgstr "Geen connecties" + +#: ../../include/text.php:929 +#, php-format +msgid "View all %s connections" +msgstr "Toon alle %s connecties" + +#: ../../include/text.php:1074 ../../include/text.php:1079 +msgid "poke" +msgstr "aanstoten" + +#: ../../include/text.php:1074 ../../include/text.php:1079 +#: ../../include/conversation.php:243 +msgid "poked" +msgstr "aangestoten" + +#: ../../include/text.php:1080 +msgid "ping" +msgstr "ping" + +#: ../../include/text.php:1080 +msgid "pinged" +msgstr "gepingd" + +#: ../../include/text.php:1081 +msgid "prod" +msgstr "por" + +#: ../../include/text.php:1081 +msgid "prodded" +msgstr "gepord" + +#: ../../include/text.php:1082 +msgid "slap" +msgstr "slaan" + +#: ../../include/text.php:1082 +msgid "slapped" +msgstr "sloeg" + +#: ../../include/text.php:1083 +msgid "finger" +msgstr "finger" + +#: ../../include/text.php:1083 +msgid "fingered" +msgstr "gefingerd" + +#: ../../include/text.php:1084 +msgid "rebuff" +msgstr "afpoeieren" + +#: ../../include/text.php:1084 +msgid "rebuffed" +msgstr "afgepoeierd" + +#: ../../include/text.php:1096 +msgid "happy" +msgstr "gelukkig" + +#: ../../include/text.php:1097 +msgid "sad" +msgstr "bedroefd" + +#: ../../include/text.php:1098 +msgid "mellow" +msgstr "mellow" + +#: ../../include/text.php:1099 +msgid "tired" +msgstr "moe" + +#: ../../include/text.php:1100 +msgid "perky" +msgstr "parmantig" + +#: ../../include/text.php:1101 +msgid "angry" +msgstr "boos" + +#: ../../include/text.php:1102 +msgid "stupefied" +msgstr "verbijsterd" + +#: ../../include/text.php:1103 +msgid "puzzled" +msgstr "verward" + +#: ../../include/text.php:1104 +msgid "interested" +msgstr "geïnteresseerd" + +#: ../../include/text.php:1105 +msgid "bitter" +msgstr "verbitterd" + +#: ../../include/text.php:1106 +msgid "cheerful" +msgstr "vrolijk" + +#: ../../include/text.php:1107 +msgid "alive" +msgstr "levendig" + +#: ../../include/text.php:1108 +msgid "annoyed" +msgstr "geërgerd" + +#: ../../include/text.php:1109 +msgid "anxious" +msgstr "bezorgd" + +#: ../../include/text.php:1110 +msgid "cranky" +msgstr "humeurig" + +#: ../../include/text.php:1111 +msgid "disturbed" +msgstr "verontrust" + +#: ../../include/text.php:1112 +msgid "frustrated" +msgstr "gefrustreerd " + +#: ../../include/text.php:1113 +msgid "depressed" +msgstr "gedeprimeerd" + +#: ../../include/text.php:1114 +msgid "motivated" +msgstr "gemotiveerd" + +#: ../../include/text.php:1115 +msgid "relaxed" +msgstr "ontspannen" + +#: ../../include/text.php:1116 +msgid "surprised" +msgstr "verrast" + +#: ../../include/text.php:1307 +msgid "May" +msgstr "mei" + +#: ../../include/text.php:1384 ../../include/text.php:1388 +msgid "Unknown Attachment" +msgstr "Onbekende bijlage" + +#: ../../include/text.php:1390 +msgid "unknown" +msgstr "onbekend" + +#: ../../include/text.php:1426 +msgid "remove category" +msgstr "categorie verwijderen" + +#: ../../include/text.php:1503 +msgid "remove from file" +msgstr "uit map verwijderen" + +#: ../../include/text.php:1770 ../../include/language.php:367 +msgid "default" +msgstr "standaard" + +#: ../../include/text.php:1778 +msgid "Page layout" +msgstr "Pagina-lay-out" + +#: ../../include/text.php:1778 +msgid "You can create your own with the layouts tool" +msgstr "Je kan jouw eigen lay-out ontwerpen onder lay-outs" + +#: ../../include/text.php:1820 +msgid "Page content type" +msgstr "Opmaaktype" + +#: ../../include/text.php:1953 +msgid "activity" +msgstr "activiteit" + +#: ../../include/text.php:2267 +msgid "Design Tools" +msgstr "Ontwerp-hulpmiddelen" + +#: ../../include/text.php:2273 +msgid "Pages" +msgstr "Pagina's" + +#: ../../include/text.php:2295 +msgid "Import website..." +msgstr "Website importeren..." + +#: ../../include/text.php:2296 +msgid "Select folder to import" +msgstr "Kies een map om te importeren" + +#: ../../include/text.php:2297 +msgid "Import from a zipped folder:" +msgstr "Vanuit een zipbestand importeren:" + +#: ../../include/text.php:2298 +msgid "Import from cloud files:" +msgstr "Vanuit de cloud importeren:" + +#: ../../include/text.php:2299 +msgid "/cloud/channel/path/to/folder" +msgstr "/cloud/channel/maplocatie" + +#: ../../include/text.php:2300 +msgid "Enter path to website files" +msgstr "Voer de locatie in van de websitebestanden" + +#: ../../include/text.php:2301 +msgid "Select folder" +msgstr "Kies een map" + +#: ../../include/text.php:2302 +msgid "Export website..." +msgstr "Website exporteren..." + +#: ../../include/text.php:2303 +msgid "Export to a zip file" +msgstr "Naar een zipbestand exporteren" + +#: ../../include/text.php:2304 +msgid "website.zip" +msgstr "website.zip" + +#: ../../include/text.php:2305 +msgid "Enter a name for the zip file." +msgstr "Vul een naam in voor het zipbestand." + +#: ../../include/text.php:2306 +msgid "Export to cloud files" +msgstr "Naar de cloud exporteren" + +#: ../../include/text.php:2307 +msgid "/path/to/export/folder" +msgstr "/locatie/van/export/map" + +#: ../../include/text.php:2308 +msgid "Enter a path to a cloud files destination." +msgstr "Voer de locatie in van de cloudbestemming" + +#: ../../include/text.php:2309 +msgid "Specify folder" +msgstr "Selecteer een map" + #: ../../include/import.php:30 msgid "" "Cannot create a duplicate channel identifier on this system. Import failed." @@ -12226,23 +12264,6 @@ msgid "" "form has been opened for too long (>3 hours) before submitting it." msgstr "De beveiligings-token van het tekstvak was ongeldig. Dit is mogelijk het gevolg van dat er te lang (meer dan 3 uur) gewacht is om de tekst op te slaan. " -#: ../../include/zot.php:662 -msgid "Invalid data packet" -msgstr "Datapakket ongeldig" - -#: ../../include/zot.php:678 -msgid "Unable to verify channel signature" -msgstr "Kanaalkenmerk kon niet worden geverifieerd. " - -#: ../../include/zot.php:2320 -#, php-format -msgid "Unable to verify site signature for %s" -msgstr "Hubkenmerk voor %s kon niet worden geverifieerd" - -#: ../../include/zot.php:3718 -msgid "invalid target signature" -msgstr "ongeldig doelkenmerk" - #: ../../include/items.php:837 ../../include/items.php:882 msgid "(Unknown)" msgstr "(Onbekend)" @@ -12405,21 +12426,6 @@ msgstr "opslag in database mislukt." msgid "Empty path" msgstr "Ontbrekende locatie" -#: ../../include/event.php:22 ../../include/event.php:69 -#: ../../include/bb2diaspora.php:498 -msgid "l F d, Y \\@ g:i A" -msgstr "l d F Y \\@ G:i" - -#: ../../include/event.php:30 ../../include/event.php:73 -#: ../../include/bb2diaspora.php:504 -msgid "Starts:" -msgstr "Start:" - -#: ../../include/event.php:40 ../../include/event.php:77 -#: ../../include/bb2diaspora.php:512 -msgid "Finishes:" -msgstr "Einde:" - #: ../../include/event.php:824 msgid "This event has been added to your calendar." msgstr "Dit evenement is aan jouw agenda toegevoegd." @@ -12530,7 +12536,7 @@ msgctxt "photo_upload" msgid "%1$s posted %2$s to %3$s" msgstr "%1$s plaatste %2$s op %3$s" -#: ../../include/photos.php:507 ../../include/conversation.php:1695 +#: ../../include/photos.php:507 ../../include/conversation.php:1677 msgid "Photo Albums" msgstr "Fotoalbums" @@ -12538,6 +12544,51 @@ msgstr "Fotoalbums" msgid "Upload New Photos" msgstr "Nieuwe foto's uploaden" +#: ../../include/acl_selectors.php:198 +msgid "Who can see this?" +msgstr "Wie kan dit zien?" + +#: ../../include/acl_selectors.php:199 +msgid "Custom selection" +msgstr "Handmatige selectie" + +#: ../../include/acl_selectors.php:200 +msgid "" +"Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit" +" the scope of \"Show\"." +msgstr "Kies \"Tonen\" om weergave toe te staan. Met \"Niet tonen\" kan je uitzonderingen maken op \"Tonen\"." + +#: ../../include/acl_selectors.php:201 +msgid "Show" +msgstr "Tonen" + +#: ../../include/acl_selectors.php:202 +msgid "Don't show" +msgstr "Niet tonen" + +#: ../../include/acl_selectors.php:235 +#, php-format +msgid "" +"Post permissions %s cannot be changed %s after a post is shared.
These" +" permissions set who is allowed to view the post." +msgstr "Permissies van berichten %s zijn niet meer te veranderen %s nadat een bericht is gedeeld.
Met deze permissies bepaal je wie het bericht kan zien." + +#: ../../include/oembed.php:312 +msgid " by " +msgstr " door " + +#: ../../include/oembed.php:313 +msgid " on " +msgstr " op " + +#: ../../include/oembed.php:342 +msgid "Embedded content" +msgstr "Ingesloten (embedded) inhoud" + +#: ../../include/oembed.php:351 +msgid "Embedding disabled" +msgstr "Insluiten (embedding) uitgeschakeld" + #: ../../include/widgets.php:103 msgid "System" msgstr "Systeem" @@ -12663,8 +12714,8 @@ msgstr "Exporteren" msgid "Import Calendar" msgstr "Importeren" -#: ../../include/widgets.php:883 ../../include/conversation.php:1722 -#: ../../include/conversation.php:1725 +#: ../../include/widgets.php:883 ../../include/conversation.php:1704 +#: ../../include/conversation.php:1707 msgid "Chatrooms" msgstr "Chatkanalen" @@ -12676,138 +12727,113 @@ msgstr "Overzicht" msgid "Chat Members" msgstr "Chatleden" -#: ../../include/widgets.php:960 +#: ../../include/widgets.php:906 msgid "Wiki List" msgstr "Wiki's" -#: ../../include/widgets.php:968 -msgid "Create new wiki" -msgstr "Nieuwe wiki aanmaken" - -#: ../../include/widgets.php:978 -msgid "Send notification" -msgstr "Verzend een notificatie" - -#: ../../include/widgets.php:1014 +#: ../../include/widgets.php:944 msgid "Wiki Pages" msgstr "Wikipagina's" -#: ../../include/widgets.php:1019 +#: ../../include/widgets.php:949 msgid "Add new page" msgstr "Nieuwe pagina toevoegen" -#: ../../include/widgets.php:1020 +#: ../../include/widgets.php:950 msgid "Page name" msgstr "Paginanaam" -#: ../../include/widgets.php:1052 +#: ../../include/widgets.php:983 msgid "Bookmarked Chatrooms" msgstr "Bladwijzers van chatkanalen" -#: ../../include/widgets.php:1083 +#: ../../include/widgets.php:1014 msgid "Suggested Chatrooms" msgstr "Voorgestelde chatkanalen" -#: ../../include/widgets.php:1228 ../../include/widgets.php:1340 +#: ../../include/widgets.php:1159 ../../include/widgets.php:1271 msgid "photo/image" msgstr "foto/afbeelding" -#: ../../include/widgets.php:1283 +#: ../../include/widgets.php:1214 msgid "Click to show more" msgstr "Klik voor meer" -#: ../../include/widgets.php:1434 +#: ../../include/widgets.php:1365 msgid "Rating Tools" msgstr "Beoordelingen" -#: ../../include/widgets.php:1438 ../../include/widgets.php:1440 +#: ../../include/widgets.php:1369 ../../include/widgets.php:1371 msgid "Rate Me" msgstr "Beoordeel mij" -#: ../../include/widgets.php:1443 +#: ../../include/widgets.php:1374 msgid "View Ratings" msgstr "Bekijk beoordelingen" -#: ../../include/widgets.php:1536 +#: ../../include/widgets.php:1467 msgid "Forums" msgstr "Forums" -#: ../../include/widgets.php:1565 +#: ../../include/widgets.php:1496 msgid "Tasks" msgstr "Taken" -#: ../../include/widgets.php:1576 -msgid "Documentation" -msgstr "Documentatie" - -#: ../../include/widgets.php:1632 ../../include/widgets.php:1670 +#: ../../include/widgets.php:1562 ../../include/widgets.php:1600 msgid "Member registrations waiting for confirmation" msgstr "Accounts die op goedkeuring wachten" -#: ../../include/widgets.php:1638 +#: ../../include/widgets.php:1568 msgid "Inspect queue" msgstr "Inspecteer berichtenwachtrij" -#: ../../include/widgets.php:1640 +#: ../../include/widgets.php:1570 msgid "DB updates" msgstr "Database-updates" -#: ../../include/widgets.php:1666 +#: ../../include/widgets.php:1596 msgid "Plugin Features" msgstr "Plugin-opties" -#: ../../include/acl_selectors.php:198 -msgid "Who can see this?" -msgstr "Wie kan dit zien?" +#: ../../include/network.php:729 +msgid "view full size" +msgstr "volledige grootte tonen" -#: ../../include/acl_selectors.php:199 -msgid "Custom selection" -msgstr "Handmatige selectie" +#: ../../include/network.php:1978 +msgid "No Subject" +msgstr "Geen onderwerp" -#: ../../include/acl_selectors.php:200 -msgid "" -"Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit" -" the scope of \"Show\"." -msgstr "Kies \"Tonen\" om weergave toe te staan. Met \"Niet tonen\" kan je uitzonderingen maken op \"Tonen\"." +#: ../../include/network.php:2234 +msgid "OStatus" +msgstr "OStatus" -#: ../../include/acl_selectors.php:201 -msgid "Show" -msgstr "Tonen" +#: ../../include/network.php:2235 +msgid "GNU-Social" +msgstr "GNU social" -#: ../../include/acl_selectors.php:202 -msgid "Don't show" -msgstr "Niet tonen" +#: ../../include/network.php:2236 +msgid "RSS/Atom" +msgstr "RSS/Atom" -#: ../../include/acl_selectors.php:235 -#, php-format -msgid "" -"Post permissions %s cannot be changed %s after a post is shared.
These" -" permissions set who is allowed to view the post." -msgstr "Permissies van berichten %s zijn niet meer te veranderen %s nadat een bericht is gedeeld.
Met deze permissies bepaal je wie het bericht kan zien." +#: ../../include/network.php:2239 +msgid "Facebook" +msgstr "Facebook" -#: ../../include/oembed.php:312 -msgid " by " -msgstr " door " +#: ../../include/network.php:2240 +msgid "Zot" +msgstr "Zot" -#: ../../include/oembed.php:313 -msgid " on " -msgstr " op " +#: ../../include/network.php:2241 +msgid "LinkedIn" +msgstr "LinkedIn" -#: ../../include/oembed.php:342 -msgid "Embedded content" -msgstr "Ingesloten (embedded) inhoud" +#: ../../include/network.php:2242 +msgid "XMPP/IM" +msgstr "XMPP/IM" -#: ../../include/oembed.php:351 -msgid "Embedding disabled" -msgstr "Insluiten (embedding) uitgeschakeld" - -#: ../../include/bb2diaspora.php:403 -msgid "Attachments:" -msgstr "Bijlagen:" - -#: ../../include/bb2diaspora.php:500 -msgid "$Projectname event notification:" -msgstr "Notificatie $Projectname-gebeurtenis:" +#: ../../include/network.php:2243 +msgid "MySpace" +msgstr "MySpace" #: ../../include/permissions.php:35 msgid "Can view my normal stream and posts" @@ -12872,264 +12898,264 @@ msgstr "%1$s is nu met %2$s verbonden" msgid "%1$s poked %2$s" msgstr "%1$s heeft %2$s aangestoten" -#: ../../include/conversation.php:710 +#: ../../include/conversation.php:690 #, php-format msgid "View %s's profile @ %s" msgstr "Bekijk het profiel van %s @ %s" -#: ../../include/conversation.php:729 +#: ../../include/conversation.php:709 msgid "Categories:" msgstr "Categorieën:" -#: ../../include/conversation.php:730 +#: ../../include/conversation.php:710 msgid "Filed under:" msgstr "Bewaard onder:" -#: ../../include/conversation.php:755 +#: ../../include/conversation.php:735 msgid "View in context" msgstr "In context bekijken" -#: ../../include/conversation.php:865 +#: ../../include/conversation.php:831 msgid "remove" msgstr "verwijderen" -#: ../../include/conversation.php:870 +#: ../../include/conversation.php:836 msgid "Delete Selected Items" msgstr "Verwijder de geselecteerde items" -#: ../../include/conversation.php:963 +#: ../../include/conversation.php:929 msgid "View Source" msgstr "Bron weergeven" -#: ../../include/conversation.php:964 +#: ../../include/conversation.php:930 msgid "Follow Thread" msgstr "Conversatie volgen" -#: ../../include/conversation.php:965 +#: ../../include/conversation.php:931 msgid "Unfollow Thread" msgstr "Conversatie niet meer volgen" -#: ../../include/conversation.php:970 +#: ../../include/conversation.php:936 msgid "Activity/Posts" msgstr "Activiteit/berichten connectie" -#: ../../include/conversation.php:972 +#: ../../include/conversation.php:938 msgid "Edit Connection" msgstr "Connectie bewerken" -#: ../../include/conversation.php:973 +#: ../../include/conversation.php:939 msgid "Message" msgstr "Bericht" -#: ../../include/conversation.php:1093 +#: ../../include/conversation.php:1075 #, php-format msgid "%s likes this." msgstr "%s vindt dit leuk." -#: ../../include/conversation.php:1093 +#: ../../include/conversation.php:1075 #, php-format msgid "%s doesn't like this." msgstr "%s vindt dit niet leuk." -#: ../../include/conversation.php:1097 +#: ../../include/conversation.php:1079 #, php-format msgid "%2$d people like this." msgid_plural "%2$d people like this." msgstr[0] "%2$d persoon vindt dit leuk." msgstr[1] "%2$d personen vinden dit leuk." -#: ../../include/conversation.php:1099 +#: ../../include/conversation.php:1081 #, php-format msgid "%2$d people don't like this." msgid_plural "%2$d people don't like this." msgstr[0] "%2$d persoon vindt dit niet leuk." msgstr[1] "%2$d personen vinden dit niet leuk." -#: ../../include/conversation.php:1105 +#: ../../include/conversation.php:1087 msgid "and" msgstr "en" -#: ../../include/conversation.php:1108 +#: ../../include/conversation.php:1090 #, php-format msgid ", and %d other people" msgid_plural ", and %d other people" msgstr[0] ", en %d ander persoon" msgstr[1] ", en %d andere personen" -#: ../../include/conversation.php:1109 +#: ../../include/conversation.php:1091 #, php-format msgid "%s like this." msgstr "%s vinden dit leuk." -#: ../../include/conversation.php:1109 +#: ../../include/conversation.php:1091 #, php-format msgid "%s don't like this." msgstr "%s vinden dit niet leuk." -#: ../../include/conversation.php:1152 +#: ../../include/conversation.php:1134 msgid "Set your location" msgstr "Locatie instellen" -#: ../../include/conversation.php:1153 +#: ../../include/conversation.php:1135 msgid "Clear browser location" msgstr "Locatie van webbrowser wissen" -#: ../../include/conversation.php:1201 +#: ../../include/conversation.php:1183 msgid "Tag term:" msgstr "Tag:" -#: ../../include/conversation.php:1202 +#: ../../include/conversation.php:1184 msgid "Where are you right now?" msgstr "Waar bevind je je op dit moment?" -#: ../../include/conversation.php:1211 +#: ../../include/conversation.php:1189 +msgid "Choose a different album..." +msgstr "Kies een ander album..." + +#: ../../include/conversation.php:1193 msgid "Comments enabled" msgstr "Reacties ingeschakeld" -#: ../../include/conversation.php:1212 +#: ../../include/conversation.php:1194 msgid "Comments disabled" msgstr "Reacties uitgeschakeld" -#: ../../include/conversation.php:1250 +#: ../../include/conversation.php:1232 msgid "Page link name" msgstr "Linknaam pagina" -#: ../../include/conversation.php:1253 +#: ../../include/conversation.php:1235 msgid "Post as" msgstr "Bericht plaatsen als" -#: ../../include/conversation.php:1267 +#: ../../include/conversation.php:1249 msgid "Toggle voting" msgstr "Peiling in- of uitschakelen" -#: ../../include/conversation.php:1270 +#: ../../include/conversation.php:1252 msgid "Disable comments" msgstr "Reacties uitschakelen" -#: ../../include/conversation.php:1271 +#: ../../include/conversation.php:1253 msgid "Toggle comments" msgstr "Reacties in- of uitschakelen" -#: ../../include/conversation.php:1279 +#: ../../include/conversation.php:1261 msgid "Categories (optional, comma-separated list)" msgstr "Categorieën (optioneel, door komma's gescheiden lijst)" -#: ../../include/conversation.php:1302 +#: ../../include/conversation.php:1284 msgid "Other networks and post services" msgstr "Andere netwerken en diensten" -#: ../../include/conversation.php:1308 +#: ../../include/conversation.php:1290 msgid "Set publish date" msgstr "Publicatiedatum instellen" -#: ../../include/conversation.php:1562 +#: ../../include/conversation.php:1544 msgid "Discover" msgstr "Ontdekken" -#: ../../include/conversation.php:1565 +#: ../../include/conversation.php:1547 msgid "Imported public streams" msgstr "Openbare streams importeren" -#: ../../include/conversation.php:1570 +#: ../../include/conversation.php:1552 msgid "Commented Order" msgstr "Nieuwe reacties bovenaan" -#: ../../include/conversation.php:1573 +#: ../../include/conversation.php:1555 msgid "Sort by Comment Date" msgstr "Berichten met nieuwe reacties bovenaan" -#: ../../include/conversation.php:1577 +#: ../../include/conversation.php:1559 msgid "Posted Order" msgstr "Nieuwe berichten bovenaan" -#: ../../include/conversation.php:1580 +#: ../../include/conversation.php:1562 msgid "Sort by Post Date" msgstr "Nieuwe berichten bovenaan" -#: ../../include/conversation.php:1588 +#: ../../include/conversation.php:1570 msgid "Posts that mention or involve you" msgstr "Alleen berichten die jou vermelden of waar je op een andere manier bij betrokken bent" -#: ../../include/conversation.php:1597 +#: ../../include/conversation.php:1579 msgid "Activity Stream - by date" msgstr "Activiteitenstroom - volgens datum" -#: ../../include/conversation.php:1603 +#: ../../include/conversation.php:1585 msgid "Starred" msgstr "Met ster" -#: ../../include/conversation.php:1606 +#: ../../include/conversation.php:1588 msgid "Favourite Posts" msgstr "Favoriete berichten" -#: ../../include/conversation.php:1613 +#: ../../include/conversation.php:1595 msgid "Spam" msgstr "Spam" -#: ../../include/conversation.php:1616 +#: ../../include/conversation.php:1598 msgid "Posts flagged as SPAM" msgstr "Berichten gemarkeerd als SPAM" -#: ../../include/conversation.php:1674 +#: ../../include/conversation.php:1656 msgid "Status Messages and Posts" msgstr "Berichten in dit kanaal" -#: ../../include/conversation.php:1683 -msgid "About" -msgstr "Over" - -#: ../../include/conversation.php:1686 +#: ../../include/conversation.php:1668 msgid "Profile Details" msgstr "Profiel" -#: ../../include/conversation.php:1702 +#: ../../include/conversation.php:1684 msgid "Files and Storage" msgstr "Bestanden en opslagruimte" -#: ../../include/conversation.php:1738 +#: ../../include/conversation.php:1720 msgid "Saved Bookmarks" msgstr "Opgeslagen bladwijzers" -#: ../../include/conversation.php:1748 +#: ../../include/conversation.php:1730 msgid "Manage Webpages" msgstr "Webpagina's beheren" -#: ../../include/conversation.php:1813 +#: ../../include/conversation.php:1795 msgctxt "noun" msgid "Attending" msgid_plural "Attending" msgstr[0] "aanwezig" msgstr[1] "aanwezig" -#: ../../include/conversation.php:1816 +#: ../../include/conversation.php:1798 msgctxt "noun" msgid "Not Attending" msgid_plural "Not Attending" msgstr[0] "niet aanwezig" msgstr[1] "niet aanwezig" -#: ../../include/conversation.php:1819 +#: ../../include/conversation.php:1801 msgctxt "noun" msgid "Undecided" msgid_plural "Undecided" msgstr[0] "nog niet beslist" msgstr[1] "nog niet beslist" -#: ../../include/conversation.php:1822 +#: ../../include/conversation.php:1804 msgctxt "noun" msgid "Agree" msgid_plural "Agrees" msgstr[0] "eens" msgstr[1] "eens" -#: ../../include/conversation.php:1825 +#: ../../include/conversation.php:1807 msgctxt "noun" msgid "Disagree" msgid_plural "Disagrees" msgstr[0] "oneens" msgstr[1] "oneens" -#: ../../include/conversation.php:1828 +#: ../../include/conversation.php:1810 msgctxt "noun" msgid "Abstain" msgid_plural "Abstains" @@ -13179,6 +13205,10 @@ msgstr "spoiler" msgid "$1 wrote:" msgstr "$1 schreef:" +#: ../../util/nconfig.php:34 +msgid "Source channel not found." +msgstr "Bron van kanaal niet gevonden" + #: ../../view/theme/redbasic/php/config.php:9 msgid "Focus (Hubzilla default)" msgstr "Focus (Hubzilla-standaard)" @@ -13311,66 +13341,66 @@ msgstr "Grootte profielfoto's van berichten instellen" msgid "Set size of followup author photos" msgstr "Grootte profielfoto's van reacties instellen" -#: ../../boot.php:1175 +#: ../../boot.php:1176 #, php-format msgctxt "opensearch" msgid "Search %1$s (%2$s)" msgstr "Zoek %1$s (%2$s)" -#: ../../boot.php:1175 +#: ../../boot.php:1176 msgctxt "opensearch" msgid "$Projectname" msgstr "$Projectname" -#: ../../boot.php:1493 +#: ../../boot.php:1494 #, php-format msgid "Update %s failed. See error logs." msgstr "Update %s mislukt. Zie foutenlogboek." -#: ../../boot.php:1496 +#: ../../boot.php:1497 #, php-format msgid "Update Error at %s" msgstr "Update-fout op %s" -#: ../../boot.php:1700 +#: ../../boot.php:1701 msgid "" "Create an account to access services and applications within the Hubzilla" msgstr "Maak een account aan om toegang te krijgen tot diensten en toepassingen van Hubzilla" -#: ../../boot.php:1721 +#: ../../boot.php:1722 msgid "Login/Email" msgstr "E-mailadres of inlognaam" -#: ../../boot.php:1722 +#: ../../boot.php:1723 msgid "Password" msgstr "Wachtwoord" -#: ../../boot.php:1723 +#: ../../boot.php:1724 msgid "Remember me" msgstr "Aangemeld blijven" -#: ../../boot.php:1726 +#: ../../boot.php:1727 msgid "Forgot your password?" msgstr "Wachtwoord vergeten?" -#: ../../boot.php:2287 +#: ../../boot.php:2288 msgid "toggle mobile" msgstr "mobiele weergave omschakelen" -#: ../../boot.php:2442 +#: ../../boot.php:2443 msgid "Website SSL certificate is not valid. Please correct." msgstr "Het SSL-certificaat van deze website is ongeldig. Corrigeer dit a.u.b." -#: ../../boot.php:2445 +#: ../../boot.php:2446 #, php-format msgid "[hubzilla] Website SSL error for %s" msgstr "[hubzilla] Probleem met SSL-certificaat voor %s" -#: ../../boot.php:2562 +#: ../../boot.php:2563 msgid "Cron/Scheduled tasks not running." msgstr "Cron is niet actief" -#: ../../boot.php:2566 +#: ../../boot.php:2567 #, php-format msgid "[hubzilla] Cron tasks not running on %s" msgstr "[hubzilla] Cron-taken zijn niet actief op %s" diff --git a/view/nl/hstrings.php b/view/nl/hstrings.php index f15ecaf3a..000c8043c 100644 --- a/view/nl/hstrings.php +++ b/view/nl/hstrings.php @@ -63,7 +63,6 @@ App::$strings["Create new folder"] = "Nieuwe map aanmaken"; App::$strings["Upload file"] = "Bestand uploaden"; App::$strings["Drop files here to immediately upload"] = "Sleep bestanden hierheen om ze onmiddellijk te uploaden"; App::$strings["Permission denied."] = "Toegang geweigerd."; -App::$strings["Not Found"] = "Niet gevonden"; App::$strings["Page not found."] = "Pagina niet gevonden."; App::$strings["Permission denied"] = "Toegang geweigerd"; App::$strings["Remote authentication blocked. You are logged into this site locally. Please logout and retry."] = "Authenticatie op afstand geblokkeerd. Je bent lokaal op deze hub ingelogd. Uitloggen en opnieuw proberen."; @@ -615,7 +614,13 @@ App::$strings["Price of app"] = "Prijs van de app"; App::$strings["Location (URL) to purchase app"] = "Locatie (URL) om de app aan te schaffen"; App::$strings["Edit post"] = "Bericht bewerken"; App::$strings["Documentation Search"] = "Zoek documentatie"; +App::$strings["About"] = "Over"; +App::$strings["Members"] = "Kanalen"; +App::$strings["Administrators"] = "Beheerders"; +App::$strings["Developers"] = "Ontwikkelaars"; +App::$strings["Tutorials"] = "Zelfstudie"; App::$strings["\$Projectname Documentation"] = "\$Projectname-documentatie"; +App::$strings["Contents"] = "Inhoud"; App::$strings["Share content from Firefox to \$Projectname"] = "Deel webpagina's vanuit Firefox met "; App::$strings["Activate the Firefox \$Projectname provider"] = "Activeer de \$Projectname-service in Firefox"; App::$strings["Apps"] = "Apps"; @@ -743,7 +748,6 @@ App::$strings["Members are visible to other channels"] = "Kanalen in deze privac App::$strings["Privacy group removed."] = "Privacygroep verwijderd."; App::$strings["Unable to remove privacy group."] = "Verwijderen privacygroep mislukt"; App::$strings["Privacy group editor"] = "Privacygroep bewerken"; -App::$strings["Members"] = "Kanalen"; App::$strings["All Connected Channels"] = "Alle kanaalconnecties"; App::$strings["Click on a channel to add or remove."] = "Klik op een kanaal om deze toe te voegen of te verwijderen."; App::$strings["Invalid profile identifier."] = "Ongeldige profiel-identificator"; @@ -1212,7 +1216,6 @@ App::$strings["Rename page"] = "Pagina hernoemen"; App::$strings["Error retrieving page content"] = "Fout tijdens ophalen inhoud pagina"; App::$strings["Revision Comparison"] = "Revisies vergelijken"; App::$strings["Revert"] = "Ongedaan maken"; -App::$strings["Choose an available wiki from the list on the left."] = "Kies een beschikbare wiki uit de linkerlijst."; App::$strings["Source"] = "Bron"; App::$strings["New page name"] = "Nieuwe paginanaam"; App::$strings["Embed image from photo albums"] = "Afbeelding uit een fotoalbum invoegen"; @@ -1220,7 +1223,7 @@ App::$strings["Embed an image from your albums"] = "Afbeelding uit jouw albums i App::$strings["OK"] = "OK"; App::$strings["Choose images to embed"] = "Kies afbeeldingen om in te voegen"; App::$strings["Choose an album"] = "Kies een album"; -App::$strings["Choose a different album..."] = "Kies een ander album..."; +App::$strings["Choose a different album"] = "Kies een ander album"; App::$strings["Error getting album list"] = "Fout tijdens ophalen albumlijst"; App::$strings["Error getting photo link"] = "Fout tijdens ophalen fotolink"; App::$strings["Error getting album"] = "Fout tijdens ophalen album"; @@ -1356,6 +1359,7 @@ App::$strings["You receive a private message"] = "Je een privé-bericht ontvangt App::$strings["You receive a friend suggestion"] = "Je een kanaalvoorstel ontvangt"; App::$strings["You are tagged in a post"] = "Je expliciet in een bericht bent genoemd"; App::$strings["You are poked/prodded/etc. in a post"] = "Je bent in een bericht aangestoten/gepord/etc."; +App::$strings["Someone likes your post/comment"] = "Iemand jouw bericht/reactie leuk vindt"; App::$strings["Show visual notifications including:"] = "Toon de volgende zichtbare notificaties:"; App::$strings["Unseen grid activity"] = "Niet bekeken grid-activiteit"; App::$strings["Unseen channel activity"] = "Niet bekeken kanaal-activiteit"; @@ -1498,30 +1502,6 @@ App::$strings["Duplicate room name"] = "Naam chatkanaal bestaat al"; App::$strings["Invalid room specifier."] = "Ongeldige omschrijving chatkanaal"; App::$strings["Room not found."] = "Chatkanaal niet gevonden"; App::$strings["Room is full"] = "Chatkanaal is vol"; -App::$strings["Site Admin"] = "Hubbeheerder"; -App::$strings["Report Bug"] = "Bugrapport indienen"; -App::$strings["View Bookmarks"] = "Bladwijzers bekijken"; -App::$strings["My Chatrooms"] = "Mijn chatkanalen"; -App::$strings["Firefox Share"] = "Firefox Share"; -App::$strings["Remote Diagnostics"] = "Diagnose op afstand"; -App::$strings["Suggest Channels"] = "Kanalen voorstellen"; -App::$strings["Login"] = "Inloggen"; -App::$strings["Grid"] = "Grid"; -App::$strings["Wiki"] = "Wiki"; -App::$strings["Channel Home"] = "Jouw kanaal"; -App::$strings["Events"] = "Agenda"; -App::$strings["Directory"] = "Kanalengids"; -App::$strings["Mail"] = "Privéberichten"; -App::$strings["Chat"] = "Chatten"; -App::$strings["Probe"] = "Onderzoeken"; -App::$strings["Suggest"] = "Voorstellen"; -App::$strings["Random Channel"] = "Willekeurig kanaal"; -App::$strings["Invite"] = "Uitnodigen "; -App::$strings["Features"] = "Extra functies"; -App::$strings["Language"] = "Taal"; -App::$strings["Post"] = "Bericht"; -App::$strings["Profile Photo"] = "Profielfoto"; -App::$strings["Purchase"] = "Aanschaffen"; App::$strings["Visible to your default audience"] = "Voor iedereen zichtbaar, mits niet anders ingesteld"; App::$strings["Only me"] = "Alleen ik"; App::$strings["Public"] = "Openbaar"; @@ -1585,6 +1565,31 @@ App::$strings["Code"] = "Broncode"; App::$strings["Image"] = "Afbeelding"; App::$strings["Insert Link"] = "Link invoegen"; App::$strings["Video"] = "Video"; +App::$strings["Site Admin"] = "Hubbeheerder"; +App::$strings["Report Bug"] = "Bugrapport indienen"; +App::$strings["View Bookmarks"] = "Bladwijzers bekijken"; +App::$strings["My Chatrooms"] = "Mijn chatkanalen"; +App::$strings["Firefox Share"] = "Firefox Share"; +App::$strings["Remote Diagnostics"] = "Diagnose op afstand"; +App::$strings["Suggest Channels"] = "Kanalen voorstellen"; +App::$strings["Login"] = "Inloggen"; +App::$strings["Grid"] = "Grid"; +App::$strings["Wiki"] = "Wiki"; +App::$strings["Channel Home"] = "Jouw kanaal"; +App::$strings["Events"] = "Agenda"; +App::$strings["Directory"] = "Kanalengids"; +App::$strings["Mail"] = "Privéberichten"; +App::$strings["Chat"] = "Chatten"; +App::$strings["Probe"] = "Onderzoeken"; +App::$strings["Suggest"] = "Voorstellen"; +App::$strings["Random Channel"] = "Willekeurig kanaal"; +App::$strings["Invite"] = "Uitnodigen "; +App::$strings["Features"] = "Extra functies"; +App::$strings["Language"] = "Taal"; +App::$strings["Post"] = "Bericht"; +App::$strings["Profile Photo"] = "Profielfoto"; +App::$strings["Purchase"] = "Aanschaffen"; +App::$strings["Undelete"] = "Verwijdering ongedaan maken"; App::$strings["\$Projectname Notification"] = "\$Projectname-notificatie"; App::$strings["\$projectname"] = "\$projectname"; App::$strings["Thank You,"] = "Bedankt,"; @@ -1598,9 +1603,12 @@ App::$strings["Please visit %s to view and/or reply to your private messages."] App::$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]"; App::$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]"; App::$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]"; -App::$strings["[\$Projectname:Notify] Comment to conversation #%1\$d by %2\$s"] = "[\$Projectname:Notificatie] Reactie op conversatie #%1\$d door %2\$s"; -App::$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."; +App::$strings["[\$Projectname:Notify] Comment to conversation #%1\$d by %2\$s"] = "[\$Projectname:Notificatie] %2\$s gaf een reactie in conversatie #%1\$d"; +App::$strings["%1\$s, %2\$s commented on an item/conversation you have been following."] = "%1\$s, %2\$s gaf een reactie in een conversatie die jij volgt."; App::$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."; +App::$strings["%1\$s, %2\$s liked [zrl=%3\$s]your %4\$s[/zrl]"] = "%1\$s, %2\$s vindt [zrl=%3\$s]jouw %4\$s[/zrl] leuk"; +App::$strings["[\$Projectname:Notify] Like received to conversation #%1\$d by %2\$s"] = "[\$Projectname:Notificatie] %2\$s vindt iets leuk in conversatie #%1\$d"; +App::$strings["%1\$s, %2\$s liked an item/conversation you created."] = "%1\$s, %2\$s vindt iets leuk in een conversatie die jij bent gestart."; App::$strings["[\$Projectname:Notify] %s posted to your profile wall"] = "[\$Projectname:Notificatie] %s heeft een bericht op jouw kanaal geplaatst"; App::$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"; App::$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"; @@ -2343,10 +2351,6 @@ App::$strings["Registration revoked for %s"] = "Registratie ingetrokken voor %s" App::$strings["Click here to upgrade."] = "Klik hier om te upgraden."; App::$strings["This action exceeds the limits set by your subscription plan."] = "Deze handeling overschrijdt de beperkingen die voor jouw abonnement gelden."; App::$strings["This action is not available under your subscription plan."] = "Deze handeling is niet mogelijk met jouw abonnement."; -App::$strings["No recipient provided."] = "Geen ontvanger opgegeven."; -App::$strings["[no subject]"] = "[geen onderwerp]"; -App::$strings["Unable to determine sender."] = "Afzender kan niet bepaald worden."; -App::$strings["Stored post could not be verified."] = "Opgeslagen bericht kon niet worden geverifieerd."; App::$strings["Frequently"] = "Regelmatig"; App::$strings["Hourly"] = "Elk uur"; App::$strings["Twice daily"] = "Twee keer per dag"; @@ -2569,96 +2573,24 @@ App::$strings["Tag Cloud"] = "Tagwolk"; App::$strings["Provide a personal tag cloud on your channel page"] = "Zorgt voor een persoonlijke wolk met tags op jouw kanaalpagina"; App::$strings["Premium Channel"] = "Premiumkanaal"; App::$strings["Allows you to set restrictions and terms on those that connect with your channel"] = "Stelt je in staat om beperkingen en voorwaarden in te stellen voor jouw kanaal"; -App::$strings["prev"] = "vorige"; -App::$strings["first"] = "eerste"; -App::$strings["last"] = "laatste"; -App::$strings["next"] = "volgende"; -App::$strings["older"] = "ouder"; -App::$strings["newer"] = "nieuwer"; -App::$strings["No connections"] = "Geen connecties"; -App::$strings["View all %s connections"] = "Toon alle %s connecties"; -App::$strings["poke"] = "aanstoten"; -App::$strings["poked"] = "aangestoten"; -App::$strings["ping"] = "ping"; -App::$strings["pinged"] = "gepingd"; -App::$strings["prod"] = "por"; -App::$strings["prodded"] = "gepord"; -App::$strings["slap"] = "slaan"; -App::$strings["slapped"] = "sloeg"; -App::$strings["finger"] = "finger"; -App::$strings["fingered"] = "gefingerd"; -App::$strings["rebuff"] = "afpoeieren"; -App::$strings["rebuffed"] = "afgepoeierd"; -App::$strings["happy"] = "gelukkig"; -App::$strings["sad"] = "bedroefd"; -App::$strings["mellow"] = "mellow"; -App::$strings["tired"] = "moe"; -App::$strings["perky"] = "parmantig"; -App::$strings["angry"] = "boos"; -App::$strings["stupefied"] = "verbijsterd"; -App::$strings["puzzled"] = "verward"; -App::$strings["interested"] = "geïnteresseerd"; -App::$strings["bitter"] = "verbitterd"; -App::$strings["cheerful"] = "vrolijk"; -App::$strings["alive"] = "levendig"; -App::$strings["annoyed"] = "geërgerd"; -App::$strings["anxious"] = "bezorgd"; -App::$strings["cranky"] = "humeurig"; -App::$strings["disturbed"] = "verontrust"; -App::$strings["frustrated"] = "gefrustreerd "; -App::$strings["depressed"] = "gedeprimeerd"; -App::$strings["motivated"] = "gemotiveerd"; -App::$strings["relaxed"] = "ontspannen"; -App::$strings["surprised"] = "verrast"; -App::$strings["Monday"] = "maandag"; -App::$strings["Tuesday"] = "dinsdag"; -App::$strings["Wednesday"] = "woensdag"; -App::$strings["Thursday"] = "donderdag"; -App::$strings["Friday"] = "vrijdag"; -App::$strings["Saturday"] = "zaterdag"; -App::$strings["Sunday"] = "zondag"; -App::$strings["January"] = "januari"; -App::$strings["February"] = "februari"; -App::$strings["March"] = "maart"; -App::$strings["April"] = "april"; -App::$strings["May"] = "mei"; -App::$strings["June"] = "juni"; -App::$strings["July"] = "juli"; -App::$strings["August"] = "augustus"; -App::$strings["September"] = "september"; -App::$strings["October"] = "oktober"; -App::$strings["November"] = "november"; -App::$strings["December"] = "december"; -App::$strings["Unknown Attachment"] = "Onbekende bijlage"; -App::$strings["unknown"] = "onbekend"; -App::$strings["remove category"] = "categorie verwijderen"; -App::$strings["remove from file"] = "uit map verwijderen"; -App::$strings["default"] = "standaard"; -App::$strings["Page layout"] = "Pagina-lay-out"; -App::$strings["You can create your own with the layouts tool"] = "Je kan jouw eigen lay-out ontwerpen onder lay-outs"; -App::$strings["Page content type"] = "Opmaaktype"; -App::$strings["activity"] = "activiteit"; -App::$strings["Design Tools"] = "Ontwerp-hulpmiddelen"; -App::$strings["Pages"] = "Pagina's"; -App::$strings["Import website..."] = "Website importeren..."; -App::$strings["Select folder to import"] = "Kies een map om te importeren"; -App::$strings["Import from a zipped folder:"] = "Vanuit een zipbestand importeren:"; -App::$strings["Import from cloud files:"] = "Vanuit de cloud importeren:"; -App::$strings["/cloud/channel/path/to/folder"] = "/cloud/channel/maplocatie"; -App::$strings["Enter path to website files"] = "Voer de locatie in van de websitebestanden"; -App::$strings["Select folder"] = "Kies een map"; -App::$strings["Export website..."] = "Website exporteren..."; -App::$strings["Export to a zip file"] = "Naar een zipbestand exporteren"; -App::$strings["website.zip"] = "website.zip"; -App::$strings["Enter a name for the zip file."] = "Vul een naam in voor het zipbestand."; -App::$strings["Export to cloud files"] = "Naar de cloud exporteren"; -App::$strings["/path/to/export/folder"] = "/locatie/van/export/map"; -App::$strings["Enter a path to a cloud files destination."] = "Voer de locatie in van de cloudbestemming"; -App::$strings["Specify folder"] = "Selecteer een map"; +App::$strings["Attachments:"] = "Bijlagen:"; +App::$strings["l F d, Y \\@ g:i A"] = "l d F Y \\@ G:i"; +App::$strings["\$Projectname event notification:"] = "Notificatie \$Projectname-gebeurtenis:"; +App::$strings["Starts:"] = "Start:"; +App::$strings["Finishes:"] = "Einde:"; App::$strings["%1\$s's bookmarks"] = "Bladwijzers van %1\$s"; -App::$strings["Different viewers will see this text differently"] = "Deze tekst wordt per persoon anders weergeven."; App::$strings["Help:"] = "Hulp:"; +App::$strings["Not Found"] = "Niet gevonden"; +App::$strings["Different viewers will see this text differently"] = "Deze tekst wordt per persoon anders weergeven."; +App::$strings["Invalid data packet"] = "Datapakket ongeldig"; +App::$strings["Unable to verify channel signature"] = "Kanaalkenmerk kon niet worden geverifieerd. "; +App::$strings["Unable to verify site signature for %s"] = "Hubkenmerk voor %s kon niet worden geverifieerd"; +App::$strings["invalid target signature"] = "ongeldig doelkenmerk"; App::$strings["New Page"] = "Nieuwe pagina"; +App::$strings["Unable to determine sender."] = "Afzender kan niet bepaald worden."; +App::$strings["No recipient provided."] = "Geen ontvanger opgegeven."; +App::$strings["[no subject]"] = "[geen onderwerp]"; +App::$strings["Stored post could not be verified."] = "Opgeslagen bericht kon niet worden geverifieerd."; App::$strings["%d invitation available"] = array( 0 => "%d uitnodiging beschikbaar", 1 => "%d uitnodigingen beschikbaar", @@ -2710,7 +2642,18 @@ App::$strings["about a year"] = "ongeveer een jaar"; App::$strings["%d years"] = "%d jaren"; App::$strings[" "] = " "; App::$strings["timeago.numbers"] = "timeago.numbers"; +App::$strings["January"] = "januari"; +App::$strings["February"] = "februari"; +App::$strings["March"] = "maart"; +App::$strings["April"] = "april"; App::$strings["__ctx:long__ May"] = "mei"; +App::$strings["June"] = "juni"; +App::$strings["July"] = "juli"; +App::$strings["August"] = "augustus"; +App::$strings["September"] = "september"; +App::$strings["October"] = "oktober"; +App::$strings["November"] = "november"; +App::$strings["December"] = "december"; App::$strings["Jan"] = "jan"; App::$strings["Feb"] = "feb"; App::$strings["Mar"] = "mrt"; @@ -2723,6 +2666,13 @@ App::$strings["Sep"] = "sep"; App::$strings["Oct"] = "okt"; App::$strings["Nov"] = "nov"; App::$strings["Dec"] = "dec"; +App::$strings["Sunday"] = "zondag"; +App::$strings["Monday"] = "maandag"; +App::$strings["Tuesday"] = "dinsdag"; +App::$strings["Wednesday"] = "woensdag"; +App::$strings["Thursday"] = "donderdag"; +App::$strings["Friday"] = "vrijdag"; +App::$strings["Saturday"] = "zaterdag"; App::$strings["Sun"] = "zo"; App::$strings["Mon"] = "ma"; App::$strings["Tue"] = "di"; @@ -2735,16 +2685,6 @@ App::$strings["__ctx:calendar__ month"] = "maand"; App::$strings["__ctx:calendar__ week"] = "week"; App::$strings["__ctx:calendar__ day"] = "dag"; App::$strings["__ctx:calendar__ All day"] = "hele dag"; -App::$strings["view full size"] = "volledige grootte tonen"; -App::$strings["No Subject"] = "Geen onderwerp"; -App::$strings["OStatus"] = "OStatus"; -App::$strings["GNU-Social"] = "GNU social"; -App::$strings["RSS/Atom"] = "RSS/Atom"; -App::$strings["Facebook"] = "Facebook"; -App::$strings["Zot"] = "Zot"; -App::$strings["LinkedIn"] = "LinkedIn"; -App::$strings["XMPP/IM"] = "XMPP/IM"; -App::$strings["MySpace"] = "MySpace"; App::$strings["Tags"] = "Tags"; App::$strings["Keywords"] = "Trefwoorden"; App::$strings["have"] = "heb"; @@ -2753,15 +2693,79 @@ App::$strings["want"] = "wil"; App::$strings["wants"] = "wil"; App::$strings["likes"] = "vindt dit leuk"; App::$strings["dislikes"] = "vindt dit niet leuk"; +App::$strings["prev"] = "vorige"; +App::$strings["first"] = "eerste"; +App::$strings["last"] = "laatste"; +App::$strings["next"] = "volgende"; +App::$strings["older"] = "ouder"; +App::$strings["newer"] = "nieuwer"; +App::$strings["No connections"] = "Geen connecties"; +App::$strings["View all %s connections"] = "Toon alle %s connecties"; +App::$strings["poke"] = "aanstoten"; +App::$strings["poked"] = "aangestoten"; +App::$strings["ping"] = "ping"; +App::$strings["pinged"] = "gepingd"; +App::$strings["prod"] = "por"; +App::$strings["prodded"] = "gepord"; +App::$strings["slap"] = "slaan"; +App::$strings["slapped"] = "sloeg"; +App::$strings["finger"] = "finger"; +App::$strings["fingered"] = "gefingerd"; +App::$strings["rebuff"] = "afpoeieren"; +App::$strings["rebuffed"] = "afgepoeierd"; +App::$strings["happy"] = "gelukkig"; +App::$strings["sad"] = "bedroefd"; +App::$strings["mellow"] = "mellow"; +App::$strings["tired"] = "moe"; +App::$strings["perky"] = "parmantig"; +App::$strings["angry"] = "boos"; +App::$strings["stupefied"] = "verbijsterd"; +App::$strings["puzzled"] = "verward"; +App::$strings["interested"] = "geïnteresseerd"; +App::$strings["bitter"] = "verbitterd"; +App::$strings["cheerful"] = "vrolijk"; +App::$strings["alive"] = "levendig"; +App::$strings["annoyed"] = "geërgerd"; +App::$strings["anxious"] = "bezorgd"; +App::$strings["cranky"] = "humeurig"; +App::$strings["disturbed"] = "verontrust"; +App::$strings["frustrated"] = "gefrustreerd "; +App::$strings["depressed"] = "gedeprimeerd"; +App::$strings["motivated"] = "gemotiveerd"; +App::$strings["relaxed"] = "ontspannen"; +App::$strings["surprised"] = "verrast"; +App::$strings["May"] = "mei"; +App::$strings["Unknown Attachment"] = "Onbekende bijlage"; +App::$strings["unknown"] = "onbekend"; +App::$strings["remove category"] = "categorie verwijderen"; +App::$strings["remove from file"] = "uit map verwijderen"; +App::$strings["default"] = "standaard"; +App::$strings["Page layout"] = "Pagina-lay-out"; +App::$strings["You can create your own with the layouts tool"] = "Je kan jouw eigen lay-out ontwerpen onder lay-outs"; +App::$strings["Page content type"] = "Opmaaktype"; +App::$strings["activity"] = "activiteit"; +App::$strings["Design Tools"] = "Ontwerp-hulpmiddelen"; +App::$strings["Pages"] = "Pagina's"; +App::$strings["Import website..."] = "Website importeren..."; +App::$strings["Select folder to import"] = "Kies een map om te importeren"; +App::$strings["Import from a zipped folder:"] = "Vanuit een zipbestand importeren:"; +App::$strings["Import from cloud files:"] = "Vanuit de cloud importeren:"; +App::$strings["/cloud/channel/path/to/folder"] = "/cloud/channel/maplocatie"; +App::$strings["Enter path to website files"] = "Voer de locatie in van de websitebestanden"; +App::$strings["Select folder"] = "Kies een map"; +App::$strings["Export website..."] = "Website exporteren..."; +App::$strings["Export to a zip file"] = "Naar een zipbestand exporteren"; +App::$strings["website.zip"] = "website.zip"; +App::$strings["Enter a name for the zip file."] = "Vul een naam in voor het zipbestand."; +App::$strings["Export to cloud files"] = "Naar de cloud exporteren"; +App::$strings["/path/to/export/folder"] = "/locatie/van/export/map"; +App::$strings["Enter a path to a cloud files destination."] = "Voer de locatie in van de cloudbestemming"; +App::$strings["Specify folder"] = "Selecteer een map"; App::$strings["Cannot create a duplicate channel identifier on this system. Import failed."] = "Kan geen dubbele kanaal-identificator op deze hub aanmaken. Importeren mislukt."; App::$strings["Channel clone failed. Import failed."] = "Het klonen van het kanaal is mislukt. Importeren mislukt."; App::$strings["Unable to import element \""] = "Niet in staat om dit element te importeren: \""; App::$strings["guest:"] = "gast:"; App::$strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "De beveiligings-token van het tekstvak was ongeldig. Dit is mogelijk het gevolg van dat er te lang (meer dan 3 uur) gewacht is om de tekst op te slaan. "; -App::$strings["Invalid data packet"] = "Datapakket ongeldig"; -App::$strings["Unable to verify channel signature"] = "Kanaalkenmerk kon niet worden geverifieerd. "; -App::$strings["Unable to verify site signature for %s"] = "Hubkenmerk voor %s kon niet worden geverifieerd"; -App::$strings["invalid target signature"] = "ongeldig doelkenmerk"; App::$strings["(Unknown)"] = "(Onbekend)"; App::$strings["Visible to anybody on the internet."] = "Voor iedereen op het internet zichtbaar."; App::$strings["Visible to you only."] = "Alleen voor jou zichtbaar."; @@ -2800,9 +2804,6 @@ App::$strings["Path not found."] = "Locatie niet gevonden"; App::$strings["mkdir failed."] = "directory aanmaken (mkdir) mislukt."; App::$strings["database storage failed."] = "opslag in database mislukt."; App::$strings["Empty path"] = "Ontbrekende locatie"; -App::$strings["l F d, Y \\@ g:i A"] = "l d F Y \\@ G:i"; -App::$strings["Starts:"] = "Start:"; -App::$strings["Finishes:"] = "Einde:"; App::$strings["This event has been added to your calendar."] = "Dit evenement is aan jouw agenda toegevoegd."; App::$strings["Not specified"] = "Niet aangegeven"; App::$strings["Needs Action"] = "Actie vereist"; @@ -2831,6 +2832,16 @@ App::$strings["a new photo"] = "een nieuwe foto"; App::$strings["__ctx:photo_upload__ %1\$s posted %2\$s to %3\$s"] = "%1\$s plaatste %2\$s op %3\$s"; App::$strings["Photo Albums"] = "Fotoalbums"; App::$strings["Upload New Photos"] = "Nieuwe foto's uploaden"; +App::$strings["Who can see this?"] = "Wie kan dit zien?"; +App::$strings["Custom selection"] = "Handmatige selectie"; +App::$strings["Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit the scope of \"Show\"."] = "Kies \"Tonen\" om weergave toe te staan. Met \"Niet tonen\" kan je uitzonderingen maken op \"Tonen\"."; +App::$strings["Show"] = "Tonen"; +App::$strings["Don't show"] = "Niet tonen"; +App::$strings["Post permissions %s cannot be changed %s after a post is shared.
These permissions set who is allowed to view the post."] = "Permissies van berichten %s zijn niet meer te veranderen %s nadat een bericht is gedeeld.
Met deze permissies bepaal je wie het bericht kan zien."; +App::$strings[" by "] = " door "; +App::$strings[" on "] = " op "; +App::$strings["Embedded content"] = "Ingesloten (embedded) inhoud"; +App::$strings["Embedding disabled"] = "Insluiten (embedding) uitgeschakeld"; App::$strings["System"] = "Systeem"; App::$strings["New App"] = "Nieuwe app"; App::$strings["Suggestions"] = "Voorgestelde kanalen"; @@ -2866,8 +2877,6 @@ App::$strings["Chatrooms"] = "Chatkanalen"; App::$strings["Overview"] = "Overzicht"; App::$strings["Chat Members"] = "Chatleden"; App::$strings["Wiki List"] = "Wiki's"; -App::$strings["Create new wiki"] = "Nieuwe wiki aanmaken"; -App::$strings["Send notification"] = "Verzend een notificatie"; App::$strings["Wiki Pages"] = "Wikipagina's"; App::$strings["Add new page"] = "Nieuwe pagina toevoegen"; App::$strings["Page name"] = "Paginanaam"; @@ -2880,23 +2889,20 @@ App::$strings["Rate Me"] = "Beoordeel mij"; App::$strings["View Ratings"] = "Bekijk beoordelingen"; App::$strings["Forums"] = "Forums"; App::$strings["Tasks"] = "Taken"; -App::$strings["Documentation"] = "Documentatie"; App::$strings["Member registrations waiting for confirmation"] = "Accounts die op goedkeuring wachten"; App::$strings["Inspect queue"] = "Inspecteer berichtenwachtrij"; App::$strings["DB updates"] = "Database-updates"; App::$strings["Plugin Features"] = "Plugin-opties"; -App::$strings["Who can see this?"] = "Wie kan dit zien?"; -App::$strings["Custom selection"] = "Handmatige selectie"; -App::$strings["Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit the scope of \"Show\"."] = "Kies \"Tonen\" om weergave toe te staan. Met \"Niet tonen\" kan je uitzonderingen maken op \"Tonen\"."; -App::$strings["Show"] = "Tonen"; -App::$strings["Don't show"] = "Niet tonen"; -App::$strings["Post permissions %s cannot be changed %s after a post is shared.
These permissions set who is allowed to view the post."] = "Permissies van berichten %s zijn niet meer te veranderen %s nadat een bericht is gedeeld.
Met deze permissies bepaal je wie het bericht kan zien."; -App::$strings[" by "] = " door "; -App::$strings[" on "] = " op "; -App::$strings["Embedded content"] = "Ingesloten (embedded) inhoud"; -App::$strings["Embedding disabled"] = "Insluiten (embedding) uitgeschakeld"; -App::$strings["Attachments:"] = "Bijlagen:"; -App::$strings["\$Projectname event notification:"] = "Notificatie \$Projectname-gebeurtenis:"; +App::$strings["view full size"] = "volledige grootte tonen"; +App::$strings["No Subject"] = "Geen onderwerp"; +App::$strings["OStatus"] = "OStatus"; +App::$strings["GNU-Social"] = "GNU social"; +App::$strings["RSS/Atom"] = "RSS/Atom"; +App::$strings["Facebook"] = "Facebook"; +App::$strings["Zot"] = "Zot"; +App::$strings["LinkedIn"] = "LinkedIn"; +App::$strings["XMPP/IM"] = "XMPP/IM"; +App::$strings["MySpace"] = "MySpace"; App::$strings["Can view my normal stream and posts"] = "Kan mijn normale kanaalstream en berichten bekijken"; App::$strings["Can view my webpages"] = "Kan mijn pagina's bekijken"; App::$strings["Can post on my channel page (\"wall\")"] = "Kan een bericht in mijn kanaal plaatsen"; @@ -2945,6 +2951,7 @@ App::$strings["Set your location"] = "Locatie instellen"; App::$strings["Clear browser location"] = "Locatie van webbrowser wissen"; App::$strings["Tag term:"] = "Tag:"; App::$strings["Where are you right now?"] = "Waar bevind je je op dit moment?"; +App::$strings["Choose a different album..."] = "Kies een ander album..."; App::$strings["Comments enabled"] = "Reacties ingeschakeld"; App::$strings["Comments disabled"] = "Reacties uitgeschakeld"; App::$strings["Page link name"] = "Linknaam pagina"; @@ -2968,7 +2975,6 @@ App::$strings["Favourite Posts"] = "Favoriete berichten"; App::$strings["Spam"] = "Spam"; App::$strings["Posts flagged as SPAM"] = "Berichten gemarkeerd als SPAM"; App::$strings["Status Messages and Posts"] = "Berichten in dit kanaal"; -App::$strings["About"] = "Over"; App::$strings["Profile Details"] = "Profiel"; App::$strings["Files and Storage"] = "Bestanden en opslagruimte"; App::$strings["Saved Bookmarks"] = "Opgeslagen bladwijzers"; @@ -3005,6 +3011,7 @@ App::$strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s schreef het volg App::$strings["Click to open/close"] = "Klik om te openen of te sluiten"; App::$strings["spoiler"] = "spoiler"; App::$strings["$1 wrote:"] = "$1 schreef:"; +App::$strings["Source channel not found."] = "Bron van kanaal niet gevonden"; App::$strings["Focus (Hubzilla default)"] = "Focus (Hubzilla-standaard)"; App::$strings["Theme settings"] = "Thema-instellingen"; App::$strings["Narrow navbar"] = "Smalle navigatiebalk"; From 87248c9f47dca9f3862332430cc2f4e6160bb85a Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Mon, 19 Dec 2016 20:36:40 +0100 Subject: [PATCH 137/819] fix contextualHelpFocus() to work wit sticky aside --- view/js/main.js | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/view/js/main.js b/view/js/main.js index 3981d4266..a405f92f7 100644 --- a/view/js/main.js +++ b/view/js/main.js @@ -451,10 +451,18 @@ function contextualHelpFocus(target, openSidePanel) { else { $("main").removeClass('region_1-on'); } + + var css_position = $(target).parent().css('position'); + if (css_position === 'fixed') { + $(target).parent().css('position', 'static'); + } + $('html,body').animate({ scrollTop: $(target).offset().top - $('nav').outerHeight(true) - $('#contextual-help-content').outerHeight(true)}, 'slow'); for (i = 0; i < 3; i++) { $(target).fadeTo('slow', 0.1).fadeTo('slow', 1.0); } + + $(target).parent().css('position', css_position); } } From d4ab74b25eeccef4701f05a56165268e7a17038c Mon Sep 17 00:00:00 2001 From: Andrew Manning Date: Mon, 19 Dec 2016 22:12:08 -0500 Subject: [PATCH 138/819] Move headings down to start at H3 at Mario's direction --- doc/about/about_hub.bb | 4 +- doc/admin/administrator_guide.md | 48 +++--- doc/admin/hub_snapshots.md | 8 +- doc/dav_mount.bb | 3 - doc/developer/api_zot.md | 77 ++++----- doc/developer/developer_guide.md | 22 +-- doc/member/member_faq.bb | 10 +- doc/member/member_guide.bb | 280 ++++++++++++++++++++++--------- doc/toc.html | 2 +- view/tpl/help.tpl | 6 +- 10 files changed, 289 insertions(+), 171 deletions(-) diff --git a/doc/about/about_hub.bb b/doc/about/about_hub.bb index dde8950e5..0c1082f51 100644 --- a/doc/about/about_hub.bb +++ b/doc/about/about_hub.bb @@ -1,7 +1,7 @@ -[h1]Site Info[/h1] +[h3]Site Info[/h3] [list][*][url=[baseurl]/siteinfo]Site Info[/url] [*][url=[baseurl]/siteinfo/json]Site Info (JSON format)[/url][/list] -[h1]Terms of Service[/h1] +[h3]Terms of Service[/h3] [list][*][url=[baseurl]/help/TermsOfService]Terms of Service for this hub[/url][/list] #include doc/SiteTOS.md; diff --git a/doc/admin/administrator_guide.md b/doc/admin/administrator_guide.md index bb5c821ee..219673c50 100644 --- a/doc/admin/administrator_guide.md +++ b/doc/admin/administrator_guide.md @@ -1,5 +1,5 @@ -# Overview +### Overview $Projectname is more than a simple web application. It is a complex communications system which more closely resembles an email server @@ -16,7 +16,7 @@ websites. It will run on most any Linux VPS system. Windows LAMP platforms such as XAMPP and WAMP are not officially supported at this time however we welcome patches if you manage to get it working. -# Where to find more help +### Where to find more help If you encounter problems or have issues not addressed in this documentation, please let us know via the [Github issue tracker](https://github.com/redmatrix/hubzilla/issues). Please be as clear as you @@ -27,14 +27,14 @@ in existence we may have only limited ability to debug your PHP installation or acquire any missing modules * but we will do our best to solve any general code issues. -# Before you begin +### Before you begin -## Choose a domain name or subdomain name for your server +#### Choose a domain name or subdomain name for your server $Projectname can only be installed into the root of a domain or sub-domain, and can not be installed using alternate TCP ports. -## Decide if you will use SSL and obtain an SSL certificate before software installation +#### Decide if you will use SSL and obtain an SSL certificate before software installation You SHOULD use SSL. If you use SSL, you MUST use a "browser-valid" certificate. *You MUST NOT use self-signed certificates!* @@ -74,14 +74,14 @@ it is installed, and an existing directory in this location may prevent some of these services from working correctly. This should not be a problem with Apache, but may be an issue with nginx or other web server platforms. -# Deployment +### Deployment There are several ways to deploy a new hub. * Manual installation on an existing server * Automated installation on an existing server using a shell script * Automated deployment using an OpenShift virtual private server (VPS) -# Requirements +### Requirements * Apache with mod-rewrite enabled and "AllowOverride All" so you can use a local .htaccess file. Some folks have successfully used nginx and lighttpd. Example config scripts are available for these platforms in doc/install. @@ -111,7 +111,7 @@ PHP might differ from the _webserver_ version # Manual Installation # -## Unpack the $Projectname files into the root of your web server document area ### +#### Unpack the $Projectname files into the root of your web server document area ### If you copy the directory tree to your webserver, make sure that you include the hidden files like .htaccess. @@ -148,14 +148,14 @@ web-based administrative tools to function: * `view/theme` * `widget` -## Official addons -### Installation +#### Official addons +##### Installation Navigate to your webThen you should clone the addon repository (separately). We'll give this repository a nickname of 'hzaddons'. You can pull in other hubzilla addon repositories by giving them different nicknames:: cd mywebsite util/add_addon_repo https://github.com/redmatrix/hubzilla-addons.git hzaddons -### Updating +##### Updating For keeping the addon tree updated, you should be on your top level website directory and issue an update command for that repository:: cd mywebsite @@ -167,10 +167,10 @@ Create searchable representations of the online documentation. You may do this cd mywebsite util/importdoc -# Automated installation via the .homeinstall shell script +### Automated installation via the .homeinstall shell script There is a shell script in (``.homeinstall/hubzilla-setup.sh``) that will install $Projectname and its dependencies on a fresh installation of Debian 8.3 stable (Jessie). It should work on similar Linux systems but your results may vary. -## Requirements +#### Requirements The installation script was originally designed for a small hardware server behind your home router. However, it has been tested on several systems running Debian 8.3: * Home-PC (Debian-8.3.0-amd64) @@ -183,7 +183,7 @@ The installation script was originally designed for a small hardware server behi * DigitalOcean droplet (Debian 8.3 x64 / 512 MB Memory / 20 GB Disk / NYC3) -## Overview of installation steps +#### Overview of installation steps 1. `apt-get install git` 1. `mkdir -p /var/www/html` 1. `cd /var/www/html` @@ -196,7 +196,7 @@ The installation script was originally designed for a small hardware server behi 1. `service apache2 reload` 1. Open your domain with a browser and step throught the initial configuration of $Projectname. -# Service Classes +### Service Classes Service classes allow you to set limits on system resources by limiting what individual accounts can do, including file storage and top-level post limits. Define custom service @@ -262,8 +262,8 @@ set the account that owns channel 'blogchan' to service class 'firstclass' (with * chatters_inroom - maximum chatters per room * access_tokens - maximum number of Guest Access Tokens per channel -# Theme management -## Repo management example +### Theme management +#### Repo management example 1. Navigate to your hub web root ``` @@ -280,9 +280,9 @@ set the account that owns channel 'blogchan' to service class 'firstclass' (with root@hub:/var/www# util/update_theme_repo DeadSuperHero ``` -# Channel Directory +### Channel Directory -## Keywords +#### Keywords There is a "tag cloud" of keywords that can appear on the channel directory page. If you wish to hide these keywords, which are drawn from the directory server, you @@ -296,9 +296,9 @@ empty: util/config system directory_server "" -# Upgrading from RedMatrix to $Projectname +### Upgrading from RedMatrix to $Projectname -## How to migrate an individual channel from RedMatrix to $Projectname +#### How to migrate an individual channel from RedMatrix to $Projectname 1. Clone the channel by opening an account on a $Projectname hub and performing a basic import (not content) from the original RedMatrix hub. Give your new clone time to sync connections and settings. 1. Export individual channel content from your RedMatrix hub to a set of JSON text files using the red.hub/uexport tool. Do this in monthly increments if necessary. @@ -307,8 +307,8 @@ empty: 1. After successful import (check!) delete your channel on the old RedMatrix Server. 1. On the $Projectname server visit new.hub/locs and upgrade to your channel to a primary one. And when the old Redmatrix server is still listed delete them here as well. Press "Sync" to inform all other server in the grid. -# Troubleshooting -## Log files +### Troubleshooting +#### Log files There are three different log facilities. @@ -338,7 +338,7 @@ git checkout file.php To immediately clear out all the extra logging stuff you added. Use the information from this log and any detail you can provide from your investigation of the problem to file your bug report - unless your analysis points to the source of the problem. In that case, just fix it. -### Rotating log files +##### Rotating log files 1. Enable the **logrot** addon in the official [hubzilla-addons](https://github.com/redmatrix/hubzilla-addons) repo 1. Create a directory in your web root called `log` with webserver write permissions diff --git a/doc/admin/hub_snapshots.md b/doc/admin/hub_snapshots.md index 7e4ba95b2..ab0948aa8 100644 --- a/doc/admin/hub_snapshots.md +++ b/doc/admin/hub_snapshots.md @@ -1,4 +1,4 @@ -# Hub Snapshot Tools +### Hub Snapshot Tools Hubzilla developers frequently need to switch between branches that might have incompatible database schemas or content. The following two scripts create and @@ -7,7 +7,7 @@ root and the entire database state. Each script requires a config file called `hub-snapshot.conf` residing in the same folder and containing the specific directories and database details of your hub. -# Config +### Config The format of the config file is very strict. There must be no spaces between the variable name and the value. Replace only the content inside the quotes with your @@ -24,7 +24,7 @@ configuration. Save this file as `hub-snapshot.conf` alongside the scripts. # The target snapshot folder where the git repo will be initialized SNAPSHOTROOT="/root/snapshots/hubzilla/" -# Snapshot +### Snapshot Example usage: @@ -84,7 +84,7 @@ Example usage: exit 0 -# Restore +### Restore #!/bin/bash # Restore hub to a previous state. Input hub config and commit hash diff --git a/doc/dav_mount.bb b/doc/dav_mount.bb index 0fd3d4691..94db18ac7 100644 --- a/doc/dav_mount.bb +++ b/doc/dav_mount.bb @@ -81,6 +81,3 @@ Unmount your file system, remount your file system, and try copying over a file If that still doesn't work, disable the cache. Note that this has a performance impact so should only be done if disabling locks didn't solve your problem. Edit the cache_size and set it to [code]cache_size 0[/code] and also set file_refresh to [code]file_refresh 0[/code]. Unmount your filesystem, remount your file system, and test it again. If it [i]still[/i] doesn't work, there is one more thing you can try. (This one is caused by a bug in older versions of dav2fs itself, so updating to a new version may also help). Enable weak etag dropping by setting [code]drop_weak_etags 1[/code]. Unmount and remount your filesystem to apply the changes. - -#include doc/macros/cloud_footer.bb; - diff --git a/doc/developer/api_zot.md b/doc/developer/api_zot.md index 2458da8b2..d46cc8860 100644 --- a/doc/developer/api_zot.md +++ b/doc/developer/api_zot.md @@ -1,30 +1,27 @@ -Zot API -======= +### Zot API The API endpoints detailed below are relative to `api/z/1.0`, meaning that if an API is listed as `channel/stream` the full API URL is `[baseurl]/api/z/1.0/channel/stream` -channel/export/basic -================================================================================ +### channel/export/basic Export channel data -channel/stream -================================================================================ +### channel/stream Fetch channel conversation items -network/stream -================================================================================ +### network/stream + Fetch network conversation items -files -================================================================================ +### files + List file storage (attach DB) @@ -130,13 +127,13 @@ Returns: -filemeta -================================================================================ +### filemeta + Export file metadata for any uploaded file -filedata -================================================================================ +### filedata + Provides the ability to download a file from cloud storage in chunks @@ -203,14 +200,14 @@ Returns: } -file/export -================================================================================ +### file/export -file -================================================================================ -albums -================================================================================ +### file + + +### albums + Description: list photo albums @@ -278,18 +275,18 @@ Example: -photos -================================================================================ +### photos + list photo metadata -photo -================================================================================ +### photo -group -================================================================================ + +### group + `GET /api/z/1.0/group` @@ -328,8 +325,8 @@ To use with API group_members, provide either 'group_id' from the id element ret } ] -group_members -================================================================================ +### group_members + `GET /api/z/1.0/group_members` @@ -461,8 +458,8 @@ group_member+abook+xchan (DB join) for each member of the privacy group ] -xchan -================================================================================ +### xchan + An xchan is a global location independent channel and is the primary record for a network identity. It may refer to channels on other websites, networks, or services. @@ -506,8 +503,8 @@ Returns: "deleted": "0" } -item/update -================================================================================ +### item/update + Create or update an item (post, activity, webpage, etc.) @@ -733,22 +730,22 @@ Returns: } -item/full -================================================================================ +### item/full + Get all data associated with an item -abook -================================================================================ +### abook + Connections -abconfig -================================================================================ +### abconfig + Connection metadata (such as permissions) -perm_allowed -================================================================================ +### perm_allowed + Check a permission for a given xchan diff --git a/doc/developer/developer_guide.md b/doc/developer/developer_guide.md index 7ec76714f..fa50de8a1 100644 --- a/doc/developer/developer_guide.md +++ b/doc/developer/developer_guide.md @@ -1,4 +1,4 @@ -# Who is a Hubzilla developer? Should I read this? +### Who is a Hubzilla developer? Should I read this? Anyone who contributes to making Hubzilla better is a developer. There are many different and important ways you can contribute to this amazing technology, _even if you do not know how to write code_. The software itself is only a part of the Hubzilla project. You can contribute by @@ -11,31 +11,31 @@ _Software_ developers are of course welcomed; there are so many great ideas to i This document will help you get started learning and contributing to Hubzilla. -# Versioning system +### Versioning system The versioning system is similar to the popular semantic versioning but less stringent. Given x.y.z, x changes yearly. y changes for "stable" monthly builds, and z increments when there are interface changes. We maintain our date and build numbers for medium grain version control (commits within a certain date range) and of course git revs for fine grained control. -# Git repository branches +### Git repository branches There are two official branches of the Hubzilla git repo. * The stable version is maintained on the **master** branch. The latest commit in this branch is considered to be suitable for production hubs. * Experimental development occurs on the **dev** branch, which is merged into **master** when it is deemed tested and stable enough. -# Developer tools and workflows +### Developer tools and workflows -## Hub Snapshots +#### Hub Snapshots -The [[Hub Snapshots]] page provides instructions and scripts for taking complete +The [hub snapshots](/help/admin/hub_snapshots) page provides instructions and scripts for taking complete snapshots of a hub to support switching between consistent and completely known states. This is useful to prevent situations where the content or database schema might be incompatible with the code. -# Translations +### Translations Our translations are managed through Transifex. If you wish to help out translating Hubzilla to another language, sign up on transifex.com, visit [https://www.transifex.com/projects/p/red-matrix/](https://www.transifex.com/projects/p/red-matrix/) and request to join one of the existing language teams or create a new one. Notify one of the core developers when you have a translation update which requires merging, or ask about merging it yourself if you're comfortable with git and PHP. We have a string file called 'messages.po' which is gettext compliant and a handful of email templates, and from there we automatically generate the application's language files. -## Translation Process +#### Translation Process The strings used in the UI of Hubzilla is translated at [Transifex][1] and then included in the git repository at github. If you want to help with translation @@ -98,7 +98,7 @@ view/de/hmessages.po you would do the following. repository, push it to your fork of the Hubzilla repository at github and issue a pull request for that commit. -## Utilities +#### Utilities Additional to the po2php script there are some more utilities for translation in the "util" directory of the Hubzilla source tree. If you only want to @@ -108,7 +108,7 @@ works. For further information see the utils/README file. -## Known Problems +#### Known Problems * Hubzilla uses the language setting of the visitors browser to determain the language for the UI. Most of the time this works, but there are some known @@ -116,7 +116,7 @@ For further information see the utils/README file. * the early translations are based on the friendica translations, if you some rough translations please let us know or fix them at Transifex. -# To-be-organized information +### To-be-organized information **Here is how you can join us.** diff --git a/doc/member/member_faq.bb b/doc/member/member_faq.bb index bb70dc4d9..9533cb557 100644 --- a/doc/member/member_faq.bb +++ b/doc/member/member_faq.bb @@ -1,10 +1,10 @@ -[h1]$Projectname FAQ[/h1] -[h2]I am able to edit a post's text after I saved it, but is there a way to change the permissions?[/h2] +[h3]$Projectname FAQ[/h3] +[h4]I am able to edit a post's text after I saved it, but is there a way to change the permissions?[/h4] Short anser: No, there isn't. There are reasons. You are able to change permissons to your files, photos and the likes, but not to posts after you have saved them. The main reason is: Once you have saved a post it is being distributed either to the public channel and from there to other $Projectname servers or to those you intended it to go. Just like you cannot reclaim something you gave to another person, you cannot change permissions to $Projectname posts. We would need to track everywhere your posting goes, keep track of everyone you allowed to see it and then keep track of from whom to delete it. If a posting is public this is even harder, as $Projectname is a global network and there is no way to follow a post, let alone reclaim it reliably. Other networks that may receive your post have no reliable way to delete or reclaim the post. -[h2]I downloaded my channel and imported it (cloned my identity) to another site but there is no content, no posts, no photos. What is wrong???[/h2] +[h4]I downloaded my channel and imported it (cloned my identity) to another site but there is no content, no posts, no photos. What is wrong???[/h4] Posts and photos/files are provided separately from the channel basic information. This is due to memory limitations dealing with years of conversations and photo archives. Posts and conversations can be synced separately from the basic channel information. Photos and file archives can be transferred using a plugin tool such as 'redfiles', which is currently listed as "experimental". When creating this feature we thought that keeping all your contacts was the most important task. Your friends have already seen your old content. Posts/conversations were next in priority and these may now be synced. Files and photos are the last bit to get completely working. Once we find someone willing to finish implementing this, it will be done. :) -[h2]I can't see private resources[/h2] +[h4]I can't see private resources[/h4] You have probably disabled third party cookies. You need to enable them for remote authentication to work. -[h2]There are a lot of foreign language posts. Let's auto-translate them.[/h2] +[h4]There are a lot of foreign language posts. Let's auto-translate them.[/h4] There are also a lot of [b]private[/b] foreign language posts and auto-translation services would require us to transmit these private messages to the translation service; and we don't know what they will do with them on their servers. Actually we do know thanks to Edward Snowden. Our best bet is a project called [b][i]Apertium[/i][/b] which is an open source translator we can install locally. It is currently missing German translations - which are the most requested translation in the matrix. Once again, this will be implemented when we find somebody who really wants to make it happen. diff --git a/doc/member/member_guide.bb b/doc/member/member_guide.bb index 9824de390..53cc6b8c7 100644 --- a/doc/member/member_guide.bb +++ b/doc/member/member_guide.bb @@ -1,8 +1,8 @@ -[h1]Overview[/h1] +[h3]Overview[/h3] While many features and capabilities of $Projectname are familiar to people who have used social networking sites and blogging software, there are also quite a few new concepts and features that most people have not encountered before. Some of the new ideas are related to the decentralized nature of the grid; others are associated with the advanced permissions system that is necessary to protect your data privacy. The purpose of this guide is to help you understand how to create, configure, and use your nomadic identity. -[h1]Registration[/h1] +[h3]Registration[/h3] Not all $Projectname sites allow open registration. If registration is allowed, you will see a "Register" link immediately below the login prompts on the site home page. Following this link will take you to the site Registration page. On some sites it may redirect you to another site which allow registrations. As all $Projectname sites are linked, it does not matter where your account resides. @@ -71,46 +71,10 @@ See Also [zrl=[baseurl]/help/AdvancedSearch]Advanced Searching[/zrl] -[h2]Channels[/h2] - -[h3]What are channels?[/h3] - -Channels are simply collections of content stored in one place. A channel can represent anything. It could represent you, a website, a forum, photo albums, anything. For most people, their first channel with be "Me". - -The most important features for a channel that represents "me" are: -[ul] -[*]Secure and private "spam free" communications - -[*]Identity and "single-signon" across the entire network - -[*]Privacy controls and permissions which extend to the entire network - -[*]Directory services (like a phone book) -[/ul] -In short, a channel that represents yourself is "me, on the internet". - -[h3]Creating channels[/h3] - -You will be required to create your first channel as part of the sign up process. You can also create additonal channels from the "Select channel" link. - -You will be asked to provide a channel name, and a short nick name. For a channel that represents yourself, it is a good idea to use your real name here to ensure your friends can find you, and connect to your channel. The short nickname will be used to generate a "webbie". This is a bit like a username, and will look like an email address, taking the form nickname@domain. You should put a little thought into what you want to use here. Imagine somebody asking for your webbie and having to tell them it is "llamas-are_kewl.123". "llamasarecool" would be a much better choice. - -Once you have created your channel, you will be taken to the settings page, where you can configure your channel, and set your default permissions. - -Once you have done this, your channel is ready to use. At [observer=1][observer.url][/observer][observer=0][baseurl]/channel/username[/observer] you will find your channel "stream". This is where your recent activity will appear, in reverse chronological order. If you post in the box marked "share", the entry will appear at the top of your stream. You will also find links to all the other communication areas for this channel here. The "About" tab contains your "profile", the photos page contain photo albums, and the events page contains events share by both yourself and your contacts. - -[h3]The grid, permissions and delegation[/h3] - -The "Grid" page contains all recent posts from across $Projectname network, again in reverse chronologial order. The exact posts that appear here depend largely on your permissions. At their most permissive, you will receive posts from complete strangers. At the other end of the scale, you may see posts from only your friends - or if you're feeling really anti-social, only your own posts. - -As mentioned at the start, many other kinds of channel are possible, however, the creation procedure is the same. The difference between channels lies primarily in the permissions assigned. For example, a channel for sharing documents with colleagues at work would probably want more permissive settings for "Can write to my "public" file storage" than a personal account. For more information, see the [zrl=[baseurl]/help/roles]permissions section[/zrl]. - -You can also delegate control of your channels' posts and connections, but not its configurations, to another channel. That is done by editing a connection and assigning it the permission to administer your channel's resources. - -[h1]Account Permission Roles[/h1] +[h3]Account Permission Roles[/h3] -[h2]Social[/h2] +[h4]Social[/h4] [b]Mostly Public[/b] @@ -126,7 +90,7 @@ By default all posts and published items are sent to your 'Friends' privacy grou By default all posts and published items are sent to your 'Friends' privacy group. New friends are added to this privacy group. You can over-ride this and create a public post or public item if you desire. You are NOT listed in the directory. Only your connections can see your other connections. Your online presence is hidden. -[h2]Forum[/h2] +[h4]Forum[/h4] [b]Mostly Public[/b] @@ -142,7 +106,7 @@ By default all posts and published items are sent to the channel's 'Friends' pri By default all posts and published items are sent to your 'Friends' privacy group. New friends are added to this privacy group. The owner can over-ride this and create a public post or public item if desired. Members cannot. You are NOT listed in the directory. Only your connections can see your other connections. Your online presence is hidden. Members must be manually added by the forum owner. Posting by @mention+ is disabled. Posts can only be made via wall-to-wall posts, and sent to members of the 'Friends' privacy group. They are not publicly visible. -[h2]Feed[/h2] +[h4]Feed[/h4] [b]Public[/b] @@ -155,7 +119,7 @@ Similiar to Social - Mostly Public, but tailored for RSS feed sources. Items may Not listed in directory. Online presence is meaningless, therefore hidden. Feed is published only to members of the 'Friends' privacy group. New connections are automatically added to this privacy group. Members must be manually approved by the channel owner. -[h2]Special[/h2] +[h4]Special[/h4] [b]Celebrity/Soapbox[/b] @@ -167,12 +131,48 @@ Listed in directory. Communications are by default public. Online presence is hi A public forum which allows members to post files/photos/webpages. -[h2]Custom/Expert Mode[/h2] +[h4]Custom/Expert Mode[/h4] Set all the privacy and permissions manually to suit your specific needs. -[h1]Connecting To Channels[/h1] +[h3]Channels[/h3] + +[h4]What are channels?[/h4] + +Channels are simply collections of content stored in one place. A channel can represent anything. It could represent you, a website, a forum, photo albums, anything. For most people, their first channel with be "Me". + +The most important features for a channel that represents "me" are: +[ul] +[*]Secure and private "spam free" communications + +[*]Identity and "single-signon" across the entire network + +[*]Privacy controls and permissions which extend to the entire network + +[*]Directory services (like a phone book) +[/ul] +In short, a channel that represents yourself is "me, on the internet". + +[h4]Creating channels[/h4] + +You will be required to create your first channel as part of the sign up process. You can also create additonal channels from the "Select channel" link. + +You will be asked to provide a channel name, and a short nick name. For a channel that represents yourself, it is a good idea to use your real name here to ensure your friends can find you, and connect to your channel. The short nickname will be used to generate a "webbie". This is a bit like a username, and will look like an email address, taking the form nickname@domain. You should put a little thought into what you want to use here. Imagine somebody asking for your webbie and having to tell them it is "llamas-are_kewl.123". "llamasarecool" would be a much better choice. + +Once you have created your channel, you will be taken to the settings page, where you can configure your channel, and set your default permissions. + +Once you have done this, your channel is ready to use. At [observer=1][observer.url][/observer][observer=0][baseurl]/channel/username[/observer] you will find your channel "stream". This is where your recent activity will appear, in reverse chronological order. If you post in the box marked "share", the entry will appear at the top of your stream. You will also find links to all the other communication areas for this channel here. The "About" tab contains your "profile", the photos page contain photo albums, and the events page contains events share by both yourself and your contacts. + +[h4]The grid, permissions and delegation[/h4] + +The "Grid" page contains all recent posts from across $Projectname network, again in reverse chronologial order. The exact posts that appear here depend largely on your permissions. At their most permissive, you will receive posts from complete strangers. At the other end of the scale, you may see posts from only your friends - or if you're feeling really anti-social, only your own posts. + +As mentioned at the start, many other kinds of channel are possible, however, the creation procedure is the same. The difference between channels lies primarily in the permissions assigned. For example, a channel for sharing documents with colleagues at work would probably want more permissive settings for "Can write to my "public" file storage" than a personal account. For more information, see the [zrl=[baseurl]/help/roles]permissions section[/zrl]. + +You can also delegate control of your channels' posts and connections, but not its configurations, to another channel. That is done by editing a connection and assigning it the permission to administer your channel's resources. + +[h3]Connecting To Channels[/h3] Connections in $Projectname can take on a great many different meanings. But let's keep it simple, you want to be friends with somebody like you are familiar with from social networking. How do you do it? @@ -186,7 +186,7 @@ Visit their profile by clicking their photograph in the directory, matrix, or co You may also connect with any channel by visiting the "Connections" page of your site or the Directory and typing their "webbie" into the "Add New Connection" field. Use this method if somebody tells you their webbie and you wish to connect with them. A webbie looks like an email address; for example "bob@example.com". The process is the same as connecting via the "Connect" button - you will then be taken to the connection editor to set permissions. -[h2] Block/Ignore/Archive/Hide channels [/h2] +[h4] Block/Ignore/Archive/Hide channels [/h4] Channels in your address book can have statuses such as [i]blocked[/i], [i]ignored[/i], [i]archived[/i] and [i]hidden[/i]. From your connections page you can see tabs that display the channels with those statuses. From your edit connection pages you can change the statuses of a channel. @@ -200,23 +200,23 @@ Here's their meaning: [b]Archived:[/b] if a channel can't be reached for 30 days, it is automatically marked as archived. This keeps all the data but stops polling the channel for new information and removes it from autocomplete. If later you learn the channel has come back online, you may manually unarchive it. -[h2]Premium Channels[/h2] +[h4]Premium Channels[/h4] Some channels are designated "Premium Channels" and may require some action on your part before a connection can be established. The Connect button will for these channels will take you to a page which lists in detail what terms the channel owner has set. If the terms are accepted, the connection will then proceed normally. In some cases, such as with celebrities and world-reknowned publishers, this may involve payment. If you do not agree to the terms, the connection will not proceed, or it may proceed but with reduced permissions allowed on your interactions with that channel. -[h1]Permissions[/h1] +[h3]Permissions[/h3] Permissions in $Projectname are more complete than you may be used to. This allows us to define more fine graded relationships than the black and white "this person is my friend, so they can do everything" or "this person is not my friend, so they can't do anything" permissions you may find elsewhere. -[h2]Permission Roles[/h2] +[h4]Permission Roles[/h4] When you create a channel we allow you to select different 'roles' for that channel. These create an entire family of permissions and privacy settings that are appropriate for that role. Typical roles are "Social - mostly public", "Social - mostly private", "Forum - public" and many others. These bring a level of simplicity to managing permissions. Just choose a role and appropriate permissions are automatically applied. You can also choose 'Custom/Expert mode' and change any individual permission setting in any way you desire. -[h2]Default Permission Limits[/h2] +[h4]Default Permission Limits[/h4] There are a large number of individual permissions. These control everything from the ability to view your stream to the ability to chat with you. Every permission has a limit. The scope of these permissions varies from "Only me" to "Everybody on the internet" - though some scopes may not be available for some permissions. The limit applies to any published thing you create which has no privacy or access control. For example if you publish a photo and didn't select a specific audience with permission to view it, we apply the limit. These limits apply to everything within that permission rule, so you cannot apply a limit to one photo. The limit applies to all your photos. If all your photos are visible to everybody on the internet and you reduce the limit only to friends, [b]all[/b] of your photos will now be visible only to friends. -[h2]Access Control[/h2] +[h4]Access Control[/h4] Access Control is the preferred method of managing privacy in [i]most[/i] cases, rather than using permission limits. This creates lists of either connections or privacy groups (or both) and uses the access list to decide if a permission is allowed. An access list is attached to everything you publish. Unlike permission limits, if you change the access control list on a single photo, it doesn't affect any of your other photos. You can use privacy groups and a "default access control list" to create and automate the management of access control lists to provide any level of privacy you desire on anything you publish. @@ -281,13 +281,13 @@ Plugins/addons may provide special permission settings, so you may be offered ad If you have set any of these permissions to "only those I specifically allow", you may specify indivudal permissions on the connnection edit screen. -[h2]Affinity[/h2] +[h4]Affinity[/h4] The connection edit screen offers a slider to select a degree of friendship with the connnection (this tool is enabled through the "Extra Features" tab of your Settings page). Think of this as a measure of how much you like or dislike them. 1 is for people you like, whose posts you want to see all the time. 99 is for people you don't care for, and whose posts you might only wish to look at occasionally. Once you've assigned a value here, you can use the affinity tool on the matrix page to filter content based on this number. The slider on the matrix page has both a minimum and maximum value. Posts will only be shown from people who fall between this range. Affinity has no relation to permissions, and is only useful in conjunction with the affinity tool feature. -[h1]Personal Cloud Storage[/h1] +[h3]Personal Cloud Storage[/h3] $Projectname provides an ability to store privately and/or share arbitrary files with friends. @@ -295,47 +295,173 @@ You may either upload files from your computer into your storage area, or copy t On many public servers there may be limits on disk usage. -[h2]File Attachments[/h2] +[h4]File Attachments[/h4] The quickest and easiest way to share files is through file attachments. In the row of icons below the status post editor is a tool to upload attachments. Click the tool, select a file and submit. After the file is uploaded, you will see an attachment code placed inside the text region. Do not edit this line or it may break the ability for your friends to see the attachment. You can use the post permissions dialogue box or privacy hashtags to restrict the visibility of the file - which will be set to match the permissions of the post your are sending. To delete attachments or change the permissions on the stored files, visit [observer=1][baseurl]/cloud/[observer.webname][/observer][observer=0][baseurl]/cloud/username replacing username with the nickname you provided during channel creation[/observer]. -[h2]Web Access[/h2] +[h4]Web Access[/h4] Your files are visible on the web at the location [observer=1][baseurl]/cloud/[observer.webname][/observer][observer=0][baseurl]/cloud/username[/observer] to anybody who is allowed to view them. If the viewer has sufficient privileges, they may also have the ability to create new files and folders/directories. -[h2]WebDAV access[/h2] +[h4]WebDAV access[/h4] See: [zrl=[baseurl]/help/member/member_guide#Cloud_Desktop_Clients]Cloud Desktop Clients[/zrl] -[h2]Permissions[/h2] +[h4]Permissions[/h4] When using WebDAV, the file is created with your channel's default file permissions and this cannot be changed from within the operating system. It also may not be as restrictive as you would like. What we've found is that the preferred method of making files private is to first create folders or directories; then visit [observer=1][baseurl]/cloud/[observer.webname][/observer][observer=0][baseurl]/cloud/username[/observer] select the directory and change the permissions. Do this before you put anything into the directory. The directory permissions take precedence so you can then put files or other folders into that container and they will be protected from unwanted viewers by the directory permissions. It is common for folks to create a "personal" or "private" folder which is restricted to themselves. You can use this as a personal cloud to store anything from anywhere on the web or any computer and it is protected from others. You might also create folders for "family" and "friends" with permission granted to appropriate privacy groups. -[h2]Cloud Desktop Clients[/h2] +[h4]Cloud Desktop Clients - Windows[/h4] -[h3]Windows Clients[/h3] -[list] -[*][zrl=[baseurl]/help/dav_windows]Windows Internal Client[/zrl] -[/list] +RedDav using Windows 7 graphical user interface wizard: +1. Left-click the Start-button to open the start menu. +2. Right-click the My computer icon to access its menu. +3. Left-click Map network drive... to open the connection dialog wizard. +4. Type #^[url=https://example.net/dav/your_channel_name]https://example.net/dav/your_channel_name[/url] in the textbox and click the Complete button where "example.net" is the URL of your hub. +5. Type your Hubzilla account's user name. IMPORTANT - NO at-sign or domain name. +6. Type your Hubzilla password -[h3]Linux Clients[/h3] -[list] -[*][zrl=[baseurl]/help/dav_mount]Command Line as a Filesystem[/zrl] -[*][zrl=[baseurl]/help/dav_dolphin]Dolphin[/zrl] -[*][zrl=[baseurl]/help/dav_konqueror]Konqueror[/zrl] -[*][zrl=[baseurl]/help/dav_nautilus]Nautilus[/zrl] -[*][zrl=[baseurl]/help/dav_nemo]Nemo[/zrl] -[/list] +[h4]Cloud Desktop Clients - Linux[/h4] -[h3]Server Notes[/h3] +[h5]Mount as a filesystem[/h5] + +[b]Mounting As A Filesystem[/b] + +To install your cloud directory as a filesystem, you first need davfs2 installed. 99% of the time, this will be included in your distributions repositories. In Debian + +[code]apt-get install davfs2[/code] + +If you want to let normal users mount the filesystem + +[code] dpkg-reconfigure davfs2[/code] + +and select "yes" at the prompt. + +Now you need to add any user you want to be able to mount dav to the davfs2 group + +[code]usermod -aG davfs2 <DesktopUser>[/code] + +[b]Note:[/b] on some systems the user group may be different, i.e. - "network" +on Arch Linux. If in doubt, check the davfs documentation for your +particular OS. + +Edit /etc/fstab + +[code]nano /etc/fstab[/code] + + to include your cloud directory by adding + +[code] +[baseurl]/dav/ /mount/point davfs user,noauto,uid=<DesktopUser>,file_mode=600,dir_mode=700 0 1 +[/code] + +Where [baseurl] is the URL of your hub, /mount/point is the location you want to mount the cloud, and <DesktopUser> is the user you log in to one your computer. Note that if you are mounting as a normal user (not root) the mount point must be in your home directory. + +For example, if I wanted to mount my cloud to a directory called 'cloud' in my home directory, and my username was bob, my fstab would be + +[code][baseurl]/dav/ /home/bob/cloud davfs user,noauto,uid=bob,file_mode=600,dir_mode=700 0 1[/code] + +Now, create the mount point. + +[code]mkdir /home/bob/cloud[/code] + +and also create a directory file to store your credentials + +[code]mkdir /home/bob/.davfs2[/code] + +Create a file called 'secrets' + +[code]nano /home/bob/.davfs2/secrets[/code] + +and add your cloud login credentials + +[code] +[baseurl]/dav <username> <password> +[/code] + +Where <username> and <password> are the username and password [i]for your hub[/i]. + +Don't let this file be writeable by anyone who doesn't need it with + +[code]chmod 600 /home/bob/.davfs2/secrets[/code] + +Finally, mount the drive. + +[code]mount [baseurl]/dav[/code] + +You can now find your cloud at /home/bob/cloud and use it as though it were part of your local filesystem - even if the applications you are using have no dav support themselves. + +[b]Troubleshooting[/b] + +With some webservers and certain configurations, you may find davfs2 creating files with 0 bytes file size where other clients work just fine. This is generally caused by cache and locks. If you are affected by this issue, you need to edit your davfs2 configuration. + +[code]nano /etc/davfs2/davfs2.conf[/code] + +Your distribution will provide a sample configuration, and this file should already exist, however, most of it will be commented out with a # at the beginning of the line. + +First step is to remove locks. + +Edit the use_locks line so it reads [code]use_locks 0[/code]. + +Unmount your file system, remount your file system, and try copying over a file from the command line. Note you should copy a new file, and not overwrite an old one for this test. Leave it a minute or two then do [code]ls -l -h[/code] and check the file size of your new file is still greater than 0 bytes. If it is, stop there, and do nothing else. + +If that still doesn't work, disable the cache. Note that this has a performance impact so should only be done if disabling locks didn't solve your problem. Edit the cache_size and set it to [code]cache_size 0[/code] and also set file_refresh to [code]file_refresh 0[/code]. Unmount your filesystem, remount your file system, and test it again. + +If it [i]still[/i] doesn't work, there is one more thing you can try. (This one is caused by a bug in older versions of dav2fs itself, so updating to a new version may also help). Enable weak etag dropping by setting [code]drop_weak_etags 1[/code]. Unmount and remount your filesystem to apply the changes. + + +[h5]Dolphin[/h5] +Visit webdavs://example.com/dav where "example.com" is the URL of your hub. + +When prompted for a username and password, enter your channel name (the first part of your webbie - no @ or domain name) and password for your normal account. + +Note, if you are already logged in to the web interface via Konqueror, you will not be prompted for further authentication. + +[h5]Konqueror[/h5] + +Simply visit webdavs://example.com/dav after logging in to your hub, where "example.com" is the URL of your hub. + +No further authentication is required if you are logged in to your hub in the normal manner. + +Additionally, if one has authenticated at a different hub during their normal browser session, your identity will be passed to the cloud for these hubs too - meaning you can access any private files on any server, as long as you have permissions to see them, as long as you have visited that site earlier in your session. + +This functionality is normally restricted to the web interface, and is not available to any desktop software other than KDE. + +[h5]Nautilus[/h5] + +1. Open a File browsing window (that's Nautilus) +2. Select File > Connect to server from the menu +3. Type davs://<domain_name>/dav/<your_channelname> and click Connect +4. You will be prompted for your channel name (same as above) and password +5. Your personal DAV directory will be shown in the window + +[h5]Nemo[/h5] + +For (file browser) Nemo 1.8.2 under Linux Mint 15, Cinnamon 1.8.8. Nemo ist the standard file browser there. + +1st way +type "davs://<domain_name>/dav/<your_channelname>" in the address bar. + +2nd way +Menu > file > connect to server +Fill the dialog +- Server: hubzilla_domain_name +- Type: Secure WebDAV (https) +- Folder: /dav +- Username: yourchannelname +- Password: yourpassword + +Once open you can set a bookmark. + +[h5]Server Notes[/h5] Note: There have been reported issues with clients that use "chunked transfer encoding", which includes Apple iOS services, and also the "AnyClient" and "CyberDuck" tools. These work fine for downloads, but uploads often end up with files of zero size. This is caused by an incorrect implemention of chunked encoding in some current FCGI (fast-cgi) implementations. Apache running with PHP as a module does not have these issues, but when running under FCGI you may need to use alternative clients or use the web uploader. At the time of this writing the issue has been open and no updates provided for at least a year. If you encounter zero size files with other clients, please check the client notes; as there are occasional configuration issues which can also produce these symptoms. -[h1]Remove Channel or Account[/h1] +[h3]Remove Channel or Account[/h3] -[h2]Remove Channel[/h2] +[h4]Remove Channel[/h4] Go to the bottom of your channel settings page or visit the URL: @@ -343,11 +469,11 @@ Go to the bottom of your channel settings page or visit the URL: You will need to confirm your password and the channel you are currently logged into will be removed. -This is irreversible. +[hl][i][b]This is irreversible.[/b][/i][/hl] If you have identity clones on other hubs this only removes by default the channel instance which exists on this hub. -[h2]Remove Account[/h2] +[h4]Remove Account[/h4] Go to the bottom of your account settings page or visit the URL: @@ -355,8 +481,6 @@ Go to the bottom of your account settings page or visit the URL: You will need to confirm your password and the account you are currently logged into will be removed. -This is irreversible. +[hl][i][b]This is irreversible.[/b][/i][/hl] All your channels will be deleted. If you have identity clones on other hubs this only removes by default the channels instances which exists on this hub. - -#include doc/macros/main_footer.bb; diff --git a/doc/toc.html b/doc/toc.html index 458f6ec84..597a2c2c5 100644 --- a/doc/toc.html +++ b/doc/toc.html @@ -108,7 +108,7 @@ if(pageName === linkName) { var tocUl = $(this).closest('li').append('
    ').find('ul'); tocUl.removeClass(); // Classes are automatically added to
      elements by something else - tocUl.toc({content: "#doco-content", headings: "h1"}); + tocUl.toc({content: "#doco-content", headings: "h3"}); tocUl.addClass('toc-content sub-menu'); tocUl.attr('id', 'doco-side-toc'); diff --git a/view/tpl/help.tpl b/view/tpl/help.tpl index 8eb53417a..15d8548a3 100644 --- a/view/tpl/help.tpl +++ b/view/tpl/help.tpl @@ -3,10 +3,10 @@

      {{$title}}: {{$heading}}

-

+ +

{{$content}}
@@ -16,7 +16,7 @@ // Generate the table of contents in the side nav menu (see view/tpl/help.tpl) $(document).ready(function () { - $('#doco-top-toc').toc({content: "#doco-content", headings: "h1,h2,h3,h4"}); + $('#doco-top-toc').toc({content: "#doco-content", headings: "h3,h4,h5,h6"}); }); function docoTocToggle() { From 3d18f1447ef22b297415fe1e1ce50b885c6f2e43 Mon Sep 17 00:00:00 2001 From: Andrew Manning Date: Mon, 19 Dec 2016 22:20:45 -0500 Subject: [PATCH 139/819] More heading work and some content rearrangement. --- doc/about/about_hubzilla.bb | 123 +++++++++++++--------------- doc/tutorials/personal_channel.html | 12 +-- 2 files changed, 63 insertions(+), 72 deletions(-) diff --git a/doc/about/about_hubzilla.bb b/doc/about/about_hubzilla.bb index 61f5dd586..1117fd25a 100644 --- a/doc/about/about_hubzilla.bb +++ b/doc/about/about_hubzilla.bb @@ -1,8 +1,18 @@ -[h1]Project Overview[/h1] +[h3]Project Overview[/h3] $Projectname is a decentralized community server providing communications, identity, and access control services which work together seamlessly across domains and connected websites. It allows anybody to publicly or [b]privately[/b] publish a range of web/media/personal content. The cross-domain privacy implementation is unique and somewhat revolutionary, as identity and access rights are negotiated by servers invisibly in the background. + +$Projectname provides distributed web publishing and social communications with [b]decentralised permissions[/b]. + +So what exactly are "decentralised permissions"? They give me the ability to share something on my website (photos, media, files, webpages, etc.) with specific people on completely different websites - but not necessarily [i]everybody[/i] on those websites; and they do not need a password on my website and do not need to login to my website to view the things I've shared with them. They have one password on their own website and "magic authentication" between affiliated websites in the network. Also, as it is decentralised, there is no third party which has the ability to bypass permissions and see everything in the network. + +$Projectname combines many features of traditional blogs, social networking and media, content management systems, and personal cloud storage into an easy to use framework. Each node in the grid can operate standalone or link with other nodes to create a super-network; leaving privacy under the control of the original publisher. + +$Projectname is an open source webserver application written originally in PHP/MySQL and is easily installable by those with basic website administration skills. It is also easily extended via plugins and themes and other third-party tools. + + $Projectname is free and open source. It is designed to scale from a $35 Raspberry Pi, to top of the line AMD and Intel Xeon-powered multi-core enterprise servers. It can be used to support communication between a few individuals, or scale to many thousands and more. $Projectname aims to be skill and resource agnostic. It is easy to use by everyday people, as well as by systems administrators and developers. @@ -22,7 +32,7 @@ Along the way, $Projectname offers a number of unique goodies: [b]Privacy:[/b] $Projectname identities (Zot IDs) can be deleted, backed up/downloaded, and cloned. People have full control of their own data and content. Should you decide to delete all your content and erase your Zot ID, all you have to do is click on a link and it's immediately deleted from the hub. -[h2]Additional Resources and Links[/h2] +[h4]Additional Resources and Links[/h4] For more detailed, technical information about Zot, check out the following links: [list] [*][url=http://hubzilla.org]Hubzilla project website[/url] @@ -30,10 +40,10 @@ For more detailed, technical information about Zot, check out the following link [*][url=https://github.com/redmatrix/hubzilla-addons]Hubzilla official addons repository[/url] [/list] -[h2]$Projectname Governance[/h2] +[h4]$Projectname Governance[/h4] Governance relates to the management of a project and particularly how this relates to conflict resolution. -[h3]Community Governance[/h3] +[h5]Community Governance[/h5] The project is maintained and decisions made by the 'community'. The governance structure is still evolving. Until the structure is finalised, decisions are made in the following order: [ol] @@ -56,10 +66,10 @@ Community Voting does not always provide a pleasant outcome and can generate pol -[h2]Privacy Policy[/h2] +[h4]Privacy Policy[/h4] -[h3]Summary[/h3] +[h5]Summary[/h5] Q: Who can see my content? @@ -71,7 +81,7 @@ Q: Can my content be censored? A: $Projectname (the network) CANNOT censor your content. Server and hub administrators are subject to local laws and MAY remove objectionable content from their site/hub. Anybody MAY become a hub administrator, including you; and therefore publish content which might otherwise be censored. You still MAY be subject to local laws. -[h3]Definitions[/h3] +[h5]Definitions[/h5] **$Projectname** @@ -85,7 +95,7 @@ An individual computer or server connected to $Projectname. These are provided b The system operator of an individual hub. -[h3]Policies[/h3] +[h5]Policies[/h5] **Public Information** @@ -109,7 +119,7 @@ Comments to posts that were created by others and posts which are designated as $Projectname developers will ensure that any content you provide which is designated as PRIVATE will be protected against eavesdropping - to the best of their ability. Private channel content CAN be seen in the database of every involved hub administrator, but private messages are obscured in the database. The latter means that it is very difficult, but NOT impossible for this content to be seen by a hub administrator. Private channel content and private messages are also stripped from email notifications. End to end encryption is provided as an optional feature and this CANNOT be seen, even by a determined administrator. -[h3]Identity Privacy[/h3] +[h5]Identity Privacy[/h5] Privacy for your identity is another aspect. Because you have a decentralized identity in $Projectname, your privacy extends beyond your home hub. If you want to have complete control of your privacy and security you should run your own hub on a dedicated server. For many people, this is complicated and may stretch their technical abilities. So let's list a few precautions you can make to assure your privacy as much as possible. @@ -121,7 +131,7 @@ A decentralized identity has a lot of advantages and gives you al lot of interes * You can have a blocked hub. That means that all channels and content on that hub is not public, and not visible to the outside world. This is something only your hub administrator can do. We also respect this and automatically enable "Do Not Track" if it is set. -[h3]Censorship[/h3] +[h5]Censorship[/h5] $Projectname is a global network which is inclusive of all religions and cultures. This does not imply that every member of the network feels the same way you do on contentious issues, and some people may be STRONGLY opposed to the content you post. In general, if you wish to post something that you know may nor be universally acceptable, the best approach is to restrict the audience using privacy controls to a small circle of friends. @@ -131,32 +141,13 @@ $Projectname RECOMMENDS that hub administrators provide a grace period of 1-2 da If you typically and regularly post content of an adult or offensive nature, you are STRONGLY encouraged to mark your account "NSFW" (Not Safe For Work). This will prevent the display of your profile photo in the directory except to viewers that have chosen to disable "safe mode". If your profile photo is found by directory administrators to be adult or offensive, the directory administrator MAY flag your profile photo as NSFW. There is currently no official mechanism to contest or reverse this decision, which is why you SHOULD mark your own account NSFW if it is likely to be inappropriate for general audiences. -[h1]Features[/h1] - -[h2]$Projectname in a Nutshell[/h2] - -TL;DR - -$Projectname provides distributed web publishing and social communications with [b]decentralised permissions[/b]. - -So what exactly are "decentralised permissions"? They give me the ability to share something on my website (photos, media, files, webpages, etc.) with specific people on completely different websites - but not necessarily [i]everybody[/i] on those websites; and they do not need a password on my website and do not need to login to my website to view the things I've shared with them. They have one password on their own website and "magic authentication" between affiliated websites in the network. Also, as it is decentralised, there is no third party which has the ability to bypass permissions and see everything in the network. - -$Projectname combines many features of traditional blogs, social networking and media, content management systems, and personal cloud storage into an easy to use framework. Each node in the grid can operate standalone or link with other nodes to create a super-network; leaving privacy under the control of the original publisher. - -$Projectname is an open source webserver application written originally in PHP/MySQL and is easily installable by those with basic website administration skills. It is also easily extended via plugins and themes and other third-party tools. - -[h2]$Projectname Features[/h2] - +[h3]Features[/h3] $Projectname is a general-purpose web publishing and communication network, with several unique features. It is designed to be used by the widest range of people on the web, from non-technical bloggers, to expert PHP programmers and seasoned systems administrators. This page lists some of the core features of $Projectname that are bundled with the official release. As with most free and open source software, there may be many other extensions, additions, plugins, themes and configurations that are limited only by the needs and imagination of the members. -[h2]Built for Privacy and Freedom[/h2] - -One of the design goals of $Projectname is to enable easy communication on the web, while preserving privacy, if so desired by members. To achieve this goal, $Projectname includes a number of features allowing arbitrary levels of privacy: - -[h3]Affinity Slider[/h3] +[h4]Affinity Slider[/h4] When adding connnections in $Projectname, members have the option of assigning "affinity" levels (how close your friendship is) to the new connection. For example, when adding someone who happens to be a person whose blog you follow, you could assign their channel an affinity level of "Acquaintances". @@ -166,11 +157,11 @@ At this point, $Projectname [i]Affinity Slider[/i] tool, which usually appears a The Affinity Slider allows instantaneous filtering of large amounts of content, grouped by levels of closeness. -[h3]Connection Filtering[/h3] +[h4]Connection Filtering[/h4] You have the ability to control precisely what appears in your stream using the optional "Connection Filter". When enabled, the Connection Editor provides inputs for selecting criteria which needs to be matched in order to include or exclude a specific post from a specific channel. Once a post has been allowed, all comments to that post are allowed regardless of whether they match the selection criteria. You may select words that if present block the post or ensure it is included in your stream. Regular expressions may be used for even finer control, as well as hashtags or even the detected language of the post. -[h3]Access Control Lists[/h3] +[h4]Access Control Lists[/h4] When sharing content, members have the option of restricting who sees the content. By clicking on the padlock underneath the sharing box, one may choose desired recipients of the post, by clicking on their names. @@ -178,45 +169,45 @@ Once sent, the message will be viewable only by the sender and the selected reci Access Control Lists may be applied to content and posts, photos, events, webpages, chatrooms and files. -[h3]Single Sign-on[/h3] +[h4]Single Sign-on[/h4] Access Control Lists work for all channels in the grid due to our unique single sign-on technology. Most internal links provide an identity token which can be verified on other $Projectname sites and used to control access to private resources. You login once to your home hub. After that, authentication to all $Projectname resources is "magic". -[h3]WebDAV enabled File Storage[/h3] +[h4]WebDAV enabled File Storage[/h4] Files may be uploaded to your personal storage area using your operating system utilities (drag and drop in most cases). You may protect these files with Access Control Lists to any combination of $Projectname members (including some third party network members) or make them public. -[h3]Photo Albums[/h3] +[h4]Photo Albums[/h4] Store photos in albums. All your photos may be protected by Access Control Lists. -[h3]Events Calendar[/h3] +[h4]Events Calendar[/h4] Create and manage events and tasks, which may also be protected with Access Control Lists. Events can be imported/exported to other software using the industry standard vcalendar/iCal format and shared in posts with others. Birthday events are automatically added from your friends and converted to your correct timezone so that you will know precisely when the birthday occurs - no matter where you are located in the world in relation to the birthday person. Events are normally created with attendance counters so your friends and connections can RSVP instantly. -[h3]Chatrooms[/h3] +[h4]Chatrooms[/h4] You may create any number of personal chatrooms and allow access via Access Control Lists. These are typically more secure than XMPP, IRC, and other Instant Messaging transports, though we also allow using these other services via plugins. -[h3]Webpage Building[/h3] +[h4]Webpage Building[/h4] $Projectname has many "Content Management" creation tools for building webpages, including layout editing, menus, blocks, widgets, and page/content regions. All of these may be access controlled so that the resulting pages are private to their intended audience. -[h3]Apps[/h3] +[h4]Apps[/h4] Apps may be built and distributed by members. These are different from traditional "vendor lockin" apps because they are controlled completely by the author - who can provide access control on the destination app pages and charge accordingly for this access. Most apps in $Projectname are free and can be created easily by those with no programming skills. -[h3]Layout[/h3] +[h4]Layout[/h4] Page layout is based on a description language called Comanche. $Projectname is itself written in Comanche layouts which you can change. This allows a level of customisation you won't typically find in so-called "multi-user environments". -[h3]Bookmarks[/h3] +[h4]Bookmarks[/h4] Share and save/manage bookmarks from links provided in conversations. -[h3]Private Message Encryption and Privacy Concerns[/h3] +[h4]Private Message Encryption and Privacy Concerns[/h4] Private mail is stored in an obscured format. While this is not bullet-proof it typically prevents casual snooping by the site administrator or ISP. @@ -231,7 +222,7 @@ Private messages may be retracted (unsent) although there is no guarantee the re Posts and messages may be created with an expiration date, at which time they will be deleted/removed on the recipient's site. -[h3]Service Federation[/h3] +[h4]Service Federation[/h4] In addition to addon "cross-post connectors" to a variety of alternate networks, there is native support for importation of content from RSS/Atom feeds and using this to create special channels. Also, an experimental but working implementation of the Diaspora protocol allows communication with people on the Friendica and Diaspora decentralised social networks. This is currently marked experimental because these networks do not have the same level of privacy and encryption features and abilities as $Projectname and may present privacy risks. @@ -239,21 +230,21 @@ There is also experimental support for OpenID authentication which may be used i Channels may have permissions to become "derivative channels" where two or more existing channels combine to create a new topical channel. -[h3]Privacy Groups[/h3] +[h4]Privacy Groups[/h4] Our implementation of privacy groups is similar to Google "Circles" and Diaspora "Aspects". This allows you to filter your incoming stream by selected groups, and automatically set the outbound Access Control List to only those in that privacy group when you post. You may over-ride this at any time (prior to sending the post). -[h3]Directory Services[/h3] +[h4]Directory Services[/h4] We provide easy access to a directory of members and provide decentralised tools capable of providing friend "suggestions". The directories are normal $Projectname sites which have chosen to accept the directory server role. This requires more resources than most typical sites so is not the default. Directories are synchronised and mirrored so that they all contain up-to-date information on the entire network (subject to normal propagation delays). -[h3]TLS/SSL[/h3] +[h4]TLS/SSL[/h4] For $Projectname hubs that use TLS/SSL, client to server communications are encrypted via TLS/SSL. Given recent disclosures in the media regarding widespread, global surveillance and encryption circumvention by the NSA and GCHQ, it is reasonable to assume that HTTPS-protected communications may be compromised in various ways. Private communications are consequently encrypted at a higher level before sending offsite. -[h3]Channel Settings[/h3] +[h4]Channel Settings[/h4] When a channel is created, a role is chosen which applies a number of pre-configured security and privacy settings. These are chosen for best practives to maintain privacy at the requested levels. @@ -270,12 +261,12 @@ The options are: - Anybody on the Internet. -[h3]Public and Private Forums[/h3] +[h4]Public and Private Forums[/h4] Forums are typically channels which may be open to participation from multiple authors. There are currently two mechanisms to post to forums: 1) "wall-to-wall" posts and 2) via forum @mention tags. Forums can be created by anybody and used for any purpose. The directory contains an option to search for public forums. Private forums can only be posted to and often only seen by members. -[h3]Account Cloning[/h3] +[h4]Account Cloning[/h4] Accounts in $Projectname are referred to as [i]nomadic identities[/i], because a member's identity is not bound to the hub where the identity was originally created. For example, when you create a Facebook or Gmail account, it is tied to those services. They cannot function without Facebook.com or Gmail.com. @@ -295,53 +286,53 @@ $Projectname offers interesting new possibilities for privacy. You can read more Some caveats apply. For a full explanation of identity cloning, read the <HOW TO CLONE MY IDENTITY>. -[h3]Multiple Profiles[/h3] +[h4]Multiple Profiles[/h4] Any number of profiles may be created containing different information and these may be made visible to certain of your connections/friends. A "default" profile can be seen by anybody and may contain limited information, with more information available to select groups or people. This means that the profile (and site content) your beer-drinking buddies see may be different than what your co-workers see, and also completely different from what is visible to the general public. -[h3]Account Backup[/h3] +[h4]Account Backup[/h4] Red offers a simple, one-click account backup, where you can download a complete backup of your profile(s). Backups can then be used to clone or restore a profile. -[h3]Account Deletion[/h3] +[h4]Account Deletion[/h4] Accounts can be immediately deleted by clicking on a link. That's it. All associated content is then deleted from the grid (this includes posts and any other content produced by the deleted profile). Depending on the number of connections you have, the process of deleting remote content could take some time but it is scheduled to happen as quickly as is practical. -[h3][size=20]Content Creation[/h2] +[h4]Content Creation[/h4] -[h3]Writing Posts[/h3] +[h4]Writing Posts[/h4] $Projectname supports a number of different ways of adding rich-text content. The default is a custom variant of BBcode, tailored for use in $Projectname. You may also enable the use of Markdown if you find that easier to work with. A visual editor may also be used. The traditional visual editor for $Projectname had some serious issues and has since been removed. We are currently looking for a replacement. When creating "Websites", content may be entered in HTML, Markdown, BBcode, and/or plain text. -[h3]Deletion of content[/h3] +[h4]Deletion of content[/h4] Any content created in $Projectname remains under the control of the member (or channel) that originally created it. At any time, a member can delete a message, or a range of messages. The deletion process ensures that the content is deleted, regardless of whether it was posted on a channel's primary (home) hub, or on another hub, where the channel was remotely authenticated via Zot ($Projectname communication and authentication protocol). -[h3]Media[/h3] +[h4]Media[/h4] Similar to any other modern blogging system, social network, or a micro-blogging service, $Projectname supports the uploading of files, embedding of videos, linking web pages. -[h3]Previewing/Editing[/h3] +[h4]Previewing/Editing[/h4] Post can be previewed prior to sending and edited after sending. -[h3]Voting/Consensus[/h3] +[h4]Voting/Consensus[/h4] Posts can be turned into "consensus" items which allows readers to offer feedback, which is collated into "agree", "disagree", and "abstain" counters. This lets you gauge interest for ideas and create informal surveys. -[h3]Extending $Projectname[/h3] +[h4]Extending $Projectname[/h4] $Projectname can be extended in a number of ways, through site customisation, personal customisation, option setting, themes, and addons/plugins. -[h3]API[/h3] +[h4]API[/h4] An API is available for use by third-party services. This is based originally on the early Twitter API (for which hundreds of third-party tools exist). It is currently being extended to provide access to facilities and abilities which are specific to $Projectname. Access may be provided by login/password or OAuth and client registration of OAuth applications is provided. -[h1]What is Zot?[/h1] +[h3]What is Zot?[/h3] Zot is the protocol that powers $Projectname, providing three core capabilities: Communications, Identity, and Access Control. @@ -350,7 +341,7 @@ The functionality it provides can also be described as follows: - a relationship online is just a bunch of permissions - the internet is just another folder -[h2]Communications[/h2] +[h4]Communications[/h4] Zot is a revolutionary protocol which provides [i]decentralised communications[/i] and [i]identity management[/i] across the grid. The resulting platform can provide web services comparable to those offered by large corporate providers, but without the large corporate provider and their associated privacy issues, insatiable profit drive, and walled-garden mentality. @@ -360,7 +351,7 @@ Zot allows a wide array of background services in the grid, from offering friend You won't find these features at all on other decentralized communication services. In addition to providing hub (server) decentralization, perhaps the most innovative and interesting Zot feature is its provision of [i]decentralized identity[/i] services. -[h2]Identity[/h2] +[h4]Identity[/h4] Zot's identity layer is unique. It provides [i]invisible single sign-on[/i] across all sites in the grid. @@ -380,7 +371,7 @@ You login only once on your home hub (or any nomadic backup hub you have chosen) You cannot be silenced. You cannot be removed from the grid, unless you yourself choose to exit it. -[h2]Access Control[/h2] +[h4]Access Control[/h4] Zot's identity layer allows you to provide fine-grained permissions to any content you wish to publish - and these permissions extend across $Projectname. This is like having one super huge website made up of an army of small individual websites - and where each channel in the grid can completely control their privacy and sharing preferences for any web resources they create. @@ -391,7 +382,7 @@ This type of control is available on large corporate providers such as Facebook Access can be granted or denied for any resource, to any channel, or any group of channels; anywhere within the grid. Others can access your content if you permit them to do so, and they do not even need to have an account on your hub. Your private photos cannot be viewed, because permission really work; they are not an addon that was added as an afterthought. If you aren't on the list of allowed viewers for a particular photo, you aren't going to look at it. -[h1]Credits[/h1] +[h3]Credits[/h3] Thanks to all who have helped and contributed to the project and its predecessors over the years. It is possible we missed in your name but this is unintentional. We also thank the community and diff --git a/doc/tutorials/personal_channel.html b/doc/tutorials/personal_channel.html index 3b1fe40ba..f2ad87077 100644 --- a/doc/tutorials/personal_channel.html +++ b/doc/tutorials/personal_channel.html @@ -3,7 +3,7 @@ channel for the first time. It introduces some of the tools and features related to a personal channel in a natural way.

-

Create a new channel

+

Create a new channel

When you log in for the first time after registering, you must create a channel. (Alternatively you can load https://grid.reticu.li/new_channel)

@@ -15,7 +15,7 @@ Typically if this is a personal channel that represents you, select a So with a level of default privacy that you are comfortable with. If you are unsure, select Social - Restricted.

-

Configure your channel features

+

Configure your channel features

When your new channel is created you are directed to the channel settings page. Take the time to look around at all the settings pages to familiarize yourself with @@ -27,7 +27,7 @@ your selections.

imageimageimageimage

-

Add a profile photo

+

Add a profile photo

Navigate to your channel home by clicking the "Home" icon on the left side of the navbar, and then select the About tab to view your profile.

@@ -54,7 +54,7 @@ profile pic has been automatically posted.

image

-

Compose a post

+

Compose a post

Go to your channel home and open the post editor by pressing the Share textbox at the top of the channel "wall". Enter a message, and then drag-and-drop an image @@ -73,7 +73,7 @@ so you can specify exactly who can access this post.

image

-

Use an uploaded image as a channel cover photo

+

Use an uploaded image as a channel cover photo

One way to add some pizzazz your channel is to add a cover photo that visitors will see when they load your channel page. Hubzilla's integrated cloud file system @@ -97,7 +97,7 @@ channel page will fade in as you scroll down.

image

-

Make a connection

+

Make a connection

Making connections between channels to share things is what Hubzilla is all about. Making a connection is simple. If you do not already know how to reach a channel's home From 6491e30a80f25ee42a757b1f9e07ffd3ffa2801a Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Tue, 20 Dec 2016 11:37:57 +0100 Subject: [PATCH 140/819] some changes to heading sizes to make some sense in the doco (this will undergo some refinement in the next release cycle when we possibly upgrade to bootstrap 4) and get rid of the accordion for now. --- doc/admin/administrator_guide.md | 6 +++--- doc/toc.html | 27 +++++++++++++++------------ view/theme/redbasic/css/style.css | 22 ++++++++++++++++++---- view/tpl/help.tpl | 2 +- 4 files changed, 37 insertions(+), 20 deletions(-) diff --git a/doc/admin/administrator_guide.md b/doc/admin/administrator_guide.md index 219673c50..b7056e7e3 100644 --- a/doc/admin/administrator_guide.md +++ b/doc/admin/administrator_guide.md @@ -109,9 +109,9 @@ PHP might differ from the _webserver_ version * Installation into a top-level domain or sub-domain (without a directory/path component in the URL) is REQUIRED. -# Manual Installation # +### Manual Installation -#### Unpack the $Projectname files into the root of your web server document area ### +#### Unpack the $Projectname files into the root of your web server document area If you copy the directory tree to your webserver, make sure that you include the hidden files like .htaccess. @@ -342,4 +342,4 @@ To immediately clear out all the extra logging stuff you added. Use the informa 1. Enable the **logrot** addon in the official [hubzilla-addons](https://github.com/redmatrix/hubzilla-addons) repo 1. Create a directory in your web root called `log` with webserver write permissions -1. Go to the **logrot** admin settings and enter this folder name as well as the max size and number of retained log files. \ No newline at end of file +1. Go to the **logrot** admin settings and enter this folder name as well as the max size and number of retained log files. diff --git a/doc/toc.html b/doc/toc.html index 597a2c2c5..6090c4ace 100644 --- a/doc/toc.html +++ b/doc/toc.html @@ -7,11 +7,19 @@ margin: 3px 0px 10px 10px; } - #doco-content h1 { - border-bottom: #cccccc thin solid; + #doco-content h3 { + border-bottom: #ccc 3px solid; padding-bottom: 0.3em; } + + #doco-content h4 { + text-decoration: underline; + } + #doco-content h5 { + text-decoration: underline; + } + #region_1 .widget ul ul { list-style-type: none; } @@ -26,8 +34,7 @@

- - About + About

@@ -40,8 +47,7 @@

- - Members + Members

@@ -54,8 +60,7 @@

- - Administrators + Administrators

@@ -68,8 +73,7 @@

- - Developers + Developers

@@ -82,8 +86,7 @@

- - Tutorials + Tutorials

diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index 8a632088f..e0f6b2999 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -42,18 +42,32 @@ main { max-width: $main_widthpx; } -h1, .h1, h2, .h2 { +h1, .h1 { + font-size: 2em; +} + +h2, .h2 { font-size: 1.667em; } -h3, .h3, h4, .h4 { +h3, .h3 { font-size: 1.334em; } -h5, .h5, h6, .h6 { - font-size: 0.75rem; +h4, .h4 { + font-size: 1em; + font-weight: bold; } +h5, .h5 { + font-size: 1em; +} + +h6, .h6 { + font-size: 0.75em; +} + + .jslider { font-family: sans-serif, arial, freesans; } diff --git a/view/tpl/help.tpl b/view/tpl/help.tpl index 15d8548a3..494869683 100644 --- a/view/tpl/help.tpl +++ b/view/tpl/help.tpl @@ -3,7 +3,7 @@

{{$title}}: {{$heading}}

-
From c87d025902faabbd900c7a12089b43a7b9318be1 Mon Sep 17 00:00:00 2001 From: Andrew Manning Date: Wed, 21 Dec 2016 16:28:45 -0500 Subject: [PATCH 147/819] Forgot to complete the thought --- doc/about/about_hubzilla.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/about/about_hubzilla.bb b/doc/about/about_hubzilla.bb index 6acbabd8e..6a2c4405e 100644 --- a/doc/about/about_hubzilla.bb +++ b/doc/about/about_hubzilla.bb @@ -10,7 +10,7 @@ From the practical perspective of hub members who use the software, $Projectname [li]webpage hosting with a content management system[/li] [li]wiki[/li] [li]and more...[/li][/ul] -While all of these apps and services can be found in other software packages, only $Projectname allows you to set permissions for groups and individuals who may not even have accounts on your hub! Currently, if you want to share things privately on the internet, the people you share with must have accounts on the server hosting your data; otherwise, there is no robust way for your server to [i]authenticate[/i] visitors to the site to know whether to grant them access. +While all of these apps and services can be found in other software packages, only $Projectname allows you to set permissions for groups and individuals who may not even have accounts on your hub! In typical web apps, if you want to share things privately on the internet, the people you share with must have accounts on the server hosting your data; otherwise, there is no robust way for your server to [i]authenticate[/i] visitors to the site to know whether to grant them access. $Projectname solves this problem with an advanced system of [i]remote authentication[/i] that validates the identity of visitors by employing techniques that include public key cryptography. [h3]Software Stack[/h3] The $Projectname software stack is a relatively standard webserver application written primarily in PHP/MySQL and requiring little more than a web server, a MySQL-compatible database, and the PHP scripting language. It is designed to be easily installable by those with basic website administration skills on typical shared hosting platforms with a broad range of computing hardware. It is also easily extended via plugins and themes and other third-party tools. From 007ba2bee4ae0d0fec8ce97a3b5bebc8b900c68b Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Thu, 22 Dec 2016 11:54:04 +0100 Subject: [PATCH 148/819] more robust crossbrowser support --- view/css/default.css | 2 ++ view/theme/redbasic/css/style.css | 11 ++++++++++- view/theme/redbasic/js/redbasic.js | 16 ++++++++++++++-- 3 files changed, 26 insertions(+), 3 deletions(-) diff --git a/view/css/default.css b/view/css/default.css index db0628cb3..67a411d6e 100644 --- a/view/css/default.css +++ b/view/css/default.css @@ -15,12 +15,14 @@ main { } aside { + position: relative; display: table-cell; vertical-align: top; padding: 71px 7px 0px 7px; } section { + position: relative; width: 100%; display: table-cell; vertical-align: top; diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index 8c7f43324..7254be552 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -23,7 +23,6 @@ body { margin: 0px; height: 100%; overflow-x: hidden; - } aside { @@ -46,6 +45,16 @@ main { max-width: $main_widthpx; } +#overlay { + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + cursor: pointer; + z-index: 1029; +} + h1, .h1 { font-size: 2em; } diff --git a/view/theme/redbasic/js/redbasic.js b/view/theme/redbasic/js/redbasic.js index 4a18db8ff..5691a40d0 100644 --- a/view/theme/redbasic/js/redbasic.js +++ b/view/theme/redbasic/js/redbasic.js @@ -92,7 +92,19 @@ function makeFullScreen(full) { } function toggleAside() { - $(window).scroll(); $('#expand-aside-icon').toggleClass('fa-arrow-circle-right').toggleClass('fa-arrow-circle-left'); - $('main').toggleClass('region_1-on'); + if($('main').hasClass('region_1-on')){ + $('main').removeClass('region_1-on') + $('#overlay').remove(); + } + else { + $('main').addClass('region_1-on') + $('
').appendTo('section'); + } + + $(window).scroll(); + // work around a bug where a browser seems to not trigger scroll with $(window).scroll() + var scrollpos = $(window).scrollTop(); + $(window).scrollTop(scrollpos - 1); + setTimeout(function(){ $(window).scrollTop(scrollpos) }, 100); } From a7a3ce72456b7c1ca1838bd59075e2a656459b81 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Thu, 22 Dec 2016 14:55:05 +0100 Subject: [PATCH 149/819] a cleaner way to work around browser bugs --- view/theme/redbasic/js/redbasic.js | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/view/theme/redbasic/js/redbasic.js b/view/theme/redbasic/js/redbasic.js index 5691a40d0..f97467947 100644 --- a/view/theme/redbasic/js/redbasic.js +++ b/view/theme/redbasic/js/redbasic.js @@ -14,7 +14,6 @@ $(document).ready(function() { } }); } - $('#css3-calc').remove(); // Remove the test element $('#left_aside_wrapper').stick_in_parent({ @@ -96,15 +95,13 @@ function toggleAside() { if($('main').hasClass('region_1-on')){ $('main').removeClass('region_1-on') $('#overlay').remove(); + $('#left_aside_wrapper').trigger("sticky_kit:detach"); } else { $('main').addClass('region_1-on') $('
').appendTo('section'); + $('#left_aside_wrapper').stick_in_parent({ + offset_top: $('nav').outerHeight(true) + }); } - - $(window).scroll(); - // work around a bug where a browser seems to not trigger scroll with $(window).scroll() - var scrollpos = $(window).scrollTop(); - $(window).scrollTop(scrollpos - 1); - setTimeout(function(){ $(window).scrollTop(scrollpos) }, 100); } From d7f65ca125ee6020928a48220055f637d8ca5000 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Thu, 22 Dec 2016 15:01:29 +0100 Subject: [PATCH 150/819] another check --- view/theme/redbasic/js/redbasic.js | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/view/theme/redbasic/js/redbasic.js b/view/theme/redbasic/js/redbasic.js index f97467947..e31458b4e 100644 --- a/view/theme/redbasic/js/redbasic.js +++ b/view/theme/redbasic/js/redbasic.js @@ -16,9 +16,11 @@ $(document).ready(function() { } $('#css3-calc').remove(); // Remove the test element - $('#left_aside_wrapper').stick_in_parent({ - offset_top: $('nav').outerHeight(true) - }); + if($(window).width() > 767) { + $('#left_aside_wrapper').stick_in_parent({ + offset_top: $('nav').outerHeight(true) + }); + } $('#expand-aside').on('click', toggleAside); From 4bcc1f5adbe604917c1005028808c29bf48dea69 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Thu, 22 Dec 2016 15:20:02 +0100 Subject: [PATCH 151/819] move style info into css file --- doc/about/about_hubzilla.bb | 3 +-- doc/toc.html | 32 -------------------------------- view/css/mod_help.css | 29 +++++++++++++++++++++++++++++ view/tpl/help.tpl | 18 +++++++++--------- 4 files changed, 39 insertions(+), 43 deletions(-) create mode 100644 view/css/mod_help.css diff --git a/doc/about/about_hubzilla.bb b/doc/about/about_hubzilla.bb index 1117fd25a..38b99f83d 100644 --- a/doc/about/about_hubzilla.bb +++ b/doc/about/about_hubzilla.bb @@ -1,4 +1,3 @@ - [h3]Project Overview[/h3] $Projectname is a decentralized community server providing communications, identity, and access control services which work together seamlessly across domains and connected websites. It allows anybody to publicly or [b]privately[/b] publish a range of web/media/personal content. The cross-domain privacy implementation is unique and somewhat revolutionary, as identity and access rights are negotiated by servers invisibly in the background. @@ -469,4 +468,4 @@ even if we have had our occasional disagreements. [li]Simó Albert i Beltran[/li] [li]Manuel Reva[/li] [li]Manuel Jiménez Friaza[/li] -[/list] \ No newline at end of file +[/list] diff --git a/doc/toc.html b/doc/toc.html index 6090c4ace..b8816ed91 100644 --- a/doc/toc.html +++ b/doc/toc.html @@ -1,35 +1,3 @@ - -
diff --git a/view/css/mod_help.css b/view/css/mod_help.css new file mode 100644 index 000000000..f59a40894 --- /dev/null +++ b/view/css/mod_help.css @@ -0,0 +1,29 @@ +.doco-list-group-item > a { + font-weight: bold; +} + +.sub-menu { + margin: 3px 0px 10px 10px; +} + +#doco-content h3 { + border-bottom: #ccc 3px solid; + padding-bottom: 0.3em; +} + +#doco-content h4 { + text-decoration: underline; +} + +#doco-content h5 { + text-decoration: underline; +} + +#region_1 .widget ul ul { + list-style-type: none; +} + +.toc-content li, + #doco-top-toc li { + padding: 3px 0px; +} diff --git a/view/tpl/help.tpl b/view/tpl/help.tpl index 494869683..10e0a4957 100644 --- a/view/tpl/help.tpl +++ b/view/tpl/help.tpl @@ -1,19 +1,20 @@
-

{{$title}}: {{$heading}}

+

{{$title}}: {{$heading}}

-

- - {{$tocHeading}} -

- - {{$content}} +

+ + + {{$tocHeading}} + +

+ + {{$content}}
From 7a9fab8f57901cdb53a6dadf36370ce13beb05cd Mon Sep 17 00:00:00 2001 From: Andrew Manning Date: Thu, 22 Dec 2016 21:40:59 -0500 Subject: [PATCH 152/819] Continuing to revise and rearrange content for clarity and reduced redundancy. --- doc/about/about_hubzilla.bb | 87 +++++++++---------------------------- doc/developer/api_zot.md | 40 +++++++++++++++++ doc/toc.html | 2 +- 3 files changed, 62 insertions(+), 67 deletions(-) diff --git a/doc/about/about_hubzilla.bb b/doc/about/about_hubzilla.bb index 6a2c4405e..f249df66f 100644 --- a/doc/about/about_hubzilla.bb +++ b/doc/about/about_hubzilla.bb @@ -1,5 +1,5 @@ [h3]What is Hubzilla?[/h3] -$Projectname is a [b]free and open source[/b] set of web applications and services running on a special kind of web server, called a "hub", that can connect to other hubs in a decentralized network we like to call "the grid", providing sophisticated communications, identity, and access control services which work together seamlessly across domains and independent websites. It allows anybody to publicly or [b]privately[/b] publish content via "channels", which are the fundamental, cryptographically secured identities that provide authentication independently of the hubs which host them. This revolutionary liberation of online identity from individual servers and domains is called "nomadic identity", and it is powered by the Zot protocol, a new framework for decentralized access control with fine-grained, extensible permissions. +$Projectname is a [b]free and open source[/b] set of web applications and services running on a special kind of web server, called a "hub", that can connect to other hubs in a decentralised network we like to call "the grid", providing sophisticated communications, identity, and access control services which work together seamlessly across domains and independent websites. It allows anybody to publicly or [b]privately[/b] publish content via "channels", which are the fundamental, cryptographically secured identities that provide authentication independently of the hubs which host them. This revolutionary liberation of online identity from individual servers and domains is called "nomadic identity", and it is powered by the Zot protocol, a new framework for decentralised access control with fine-grained, extensible permissions. [h3]Right... so what is Hubzilla?[/h3] From the practical perspective of hub members who use the software, $Projectname offers a variety of familiar, integrated web apps and services, including: @@ -13,20 +13,30 @@ From the practical perspective of hub members who use the software, $Projectname While all of these apps and services can be found in other software packages, only $Projectname allows you to set permissions for groups and individuals who may not even have accounts on your hub! In typical web apps, if you want to share things privately on the internet, the people you share with must have accounts on the server hosting your data; otherwise, there is no robust way for your server to [i]authenticate[/i] visitors to the site to know whether to grant them access. $Projectname solves this problem with an advanced system of [i]remote authentication[/i] that validates the identity of visitors by employing techniques that include public key cryptography. [h3]Software Stack[/h3] -The $Projectname software stack is a relatively standard webserver application written primarily in PHP/MySQL and requiring little more than a web server, a MySQL-compatible database, and the PHP scripting language. It is designed to be easily installable by those with basic website administration skills on typical shared hosting platforms with a broad range of computing hardware. It is also easily extended via plugins and themes and other third-party tools. +The $Projectname software stack is a relatively standard webserver application written primarily in PHP/MySQL and [url=https://github.com/redmatrix/hubzilla/blob/master/install/INSTALL.txt]requiring little more than a web server, a MySQL-compatible database, and the PHP scripting language[/url]. It is designed to be easily installable by those with basic website administration skills on typical shared hosting platforms with a broad range of computing hardware. It is also easily extended via plugins and themes and other third-party tools. [h3]Additional Resources and Links[/h3] -[list] -[*][url=http://hubzilla.org]Hubzilla project website[/url] +[list][*][url=http://hubzilla.org]Hubzilla project website[/url] [*][url=https://github.com/redmatrix/hubzilla]Hubzilla core code repository[/url] -[*][url=https://github.com/redmatrix/hubzilla-addons]Hubzilla official addons repository[/url] -[/list] +[*][url=https://github.com/redmatrix/hubzilla-addons]Hubzilla official addons repository[/url][/list] + +[h3]Glossary[/h3] +[dl terms="b"] +[*= hub] An instance of the Hubzilla software running on a standard web server + +[*= grid] The global network of hubs that exchange information with each other using the Zot protocol. + +[*= channel] The fundamental identity on the grid. A channel can represent a person, a blog, or a forum to name a few. Channels can make connections with other channels to share information with highly detailed permissions. + +[*= clone] Channels can have clones associated with separate and otherwise unrelated accounts on independent hubs. Communications shared with a channel are synchronized among the channel clones, allowing a channel to send and receive messages and access shared content from multiple hubs. This provides resilience against network and hardware failures, which can be a significant problem for self-hosted or limited-resource web servers. Cloning allows you to completely move a channel from one hub to another, taking your data and connections with you. See nomadic identity. + +[*= nomadic identity] The ability to authenticate and easily migrate an identity across independent hubs and web domains. Nomadic identity provides true ownership of an online identity, because the identities of the channels controlled by an account on a hub are not tied to the hub itself. A hub is more like a "host" for channels. With Hubzilla, you don't have an "account" on a server like you do on typical websites; you own an identity that you can take with you across the grid by using clones. + +[*= [url=[baseurl]/help/developer/what_is_zot]Zot[/url]] The novel JSON-based protocol for implementing secure decentralised communications and services. It differs from many other communication protocols by building communications on top of a decentralised identity and authentication framework. The authentication component is similar to OpenID conceptually but is insulated from DNS-based identities. Where possible remote authentication is silent and invisible. This provides a mechanism for internet-scale distributed access control which is unobtrusive. +[/dl] [h3]Features[/h3] - -$Projectname is a general-purpose web publishing and communication network, with several unique features. It is designed to be used by the widest range of people on the web, from non-technical bloggers, to expert PHP programmers and seasoned systems administrators. - -This page lists some of the core features of $Projectname that are bundled with the official release. As with most free and open source software, there may be many other extensions, additions, plugins, themes and configurations that are limited only by the needs and imagination of the members. +This page lists some of the core features of $Projectname that are bundled with the official release. $Projectname is a highly extensible platform, so more features and capabilities can be added via additional themes and plugins. [h4]Affinity Slider[/h4] @@ -173,9 +183,7 @@ Any number of profiles may be created containing different information and these [h4]Account Backup[/h4] -Red offers a simple, one-click account backup, where you can download a complete backup of your profile(s). - -Backups can then be used to clone or restore a profile. +$Projectname offers a simple, one-click account backup, where you can download a complete backup of your profile(s). Backups can then be used to clone or restore a profile. [h4]Account Deletion[/h4] @@ -201,7 +209,6 @@ Post can be previewed prior to sending and edited after sending. [h4]Voting/Consensus[/h4] Posts can be turned into "consensus" items which allows readers to offer feedback, which is collated into "agree", "disagree", and "abstain" counters. This lets you gauge interest for ideas and create informal surveys. - [h4]Extending $Projectname[/h4] $Projectname can be extended in a number of ways, through site customisation, personal customisation, option setting, themes, and addons/plugins. @@ -209,55 +216,3 @@ $Projectname can be extended in a number of ways, through site customisation, pe [h4]API[/h4] An API is available for use by third-party services. This is based originally on the early Twitter API (for which hundreds of third-party tools exist). It is currently being extended to provide access to facilities and abilities which are specific to $Projectname. Access may be provided by login/password or OAuth and client registration of OAuth applications is provided. - - - - -[h3]What is Zot?[/h3] - -Zot is the protocol that powers $Projectname, providing three core capabilities: Communications, Identity, and Access Control. - -The functionality it provides can also be described as follows: - - - a relationship online is just a bunch of permissions - - the internet is just another folder - -[h4]Communications[/h4] - -Zot is a revolutionary protocol which provides [i]decentralised communications[/i] and [i]identity management[/i] across the grid. The resulting platform can provide web services comparable to those offered by large corporate providers, but without the large corporate provider and their associated privacy issues, insatiable profit drive, and walled-garden mentality. - -Communications and social networking are an integral part of the grid. Any channel (and any services provided by that channel) can make full use of feature-rich social communications on a global scale. These communications may be public or private - and private communications comprise not only fully encrypted transport, but also encrypted storage to help protect against accidental snooping and disclosure by rogue system administrators and internet service providers. - -Zot allows a wide array of background services in the grid, from offering friend suggestions, to directory services. You can also perform other things which would typically only be possibly on a centralized provider - such as "Wall to Wall" posts. Private/multiple profiles can be easily created, and web content can be tailored to the viewer via the [i]Affinity Slider[/i]. - -You won't find these features at all on other decentralized communication services. In addition to providing hub (server) decentralization, perhaps the most innovative and interesting Zot feature is its provision of [i]decentralized identity[/i] services. - -[h4]Identity[/h4] - -Zot's identity layer is unique. It provides [i]invisible single sign-on[/i] across all sites in the grid. - -It also provides [i]nomadic identity[/i], so that your communications with friends, family, and or anyone else you're communicating with won't be affected by the loss of your primary communication node - either temporarily or permanently. - -The important bits of your identity and relationships can be backed up to a thumb drive, or your laptop, and may appear at any node in the grid at any time - with all your friends and preferences intact. - -Crucially, these nomadic instances are kept in sync so any instance can take over if another one is compromised or damaged. This protects you against not only major system failure, but also temporary site overloads and governmental manipulation or censorship. - -Nomadic identity, single sign-on, and $Projectname's decentralization of hubs, we believe, introduce a high degree of degree of [i]resiliency[/i] and [i]persistence[/i] in internet communications, that are sorely needed amidst global trends towards corporate centralization, as well as mass and indiscriminate government surveillance and censorship. - -As you browse the grid, viewing channels and their unique content, you are seamlessly authenticated as you go, even across completely different server hubs. No passwords to enter. Nothing to type. You're just greeted by name on every new site you visit. - -How does Zot do that? We call it [i]magic-auth[/i], because $Projectname hides the details of the complexities that go into single sign-on logins, and nomadic identities, from the experience of browsing on the grid. This is one of the design goals of $Projectname: to increase privacy, and freedom on the web, while reducing the complexity and tedium brought by the need to enter new passwords and login names for every different sight that someone might visit online. - -You login only once on your home hub (or any nomadic backup hub you have chosen). This allows you to access any authenticated services provided anywhere in the grid - such as shopping, blogs, forums, and access to private information. This is just like the services offered by large corporate providers with huge user databases; however you can be a member of this community, as well as a server on this network using a $35 Rasberry Pi. Your password isn't stored on a thousand different sites, or even worse, only on a few sites like Google and Facebook, beyond your direct control. - -You cannot be silenced. You cannot be removed from the grid, unless you yourself choose to exit it. - -[h4]Access Control[/h4] - -Zot's identity layer allows you to provide fine-grained permissions to any content you wish to publish - and these permissions extend across $Projectname. This is like having one super huge website made up of an army of small individual websites - and where each channel in the grid can completely control their privacy and sharing preferences for any web resources they create. - -Currently, the grid supports communications, photo albums, events, and files. This will be extended in the future to provide content management services (web pages) and cloud storage facilities, such as WebDAV and multi-media libraries. Every object and how it is shared and with whom is completely under your control. - -This type of control is available on large corporate providers such as Facebook and Google, because they own the user database. Within the grid, there is no need for a huge user database on your machine - because the grid [i]is[/i] your user database. It has what is essentially infinite capacity (limited by the total number of hubs online across the internet), and is spread amongst hundreds, and potentially millions of computers. - -Access can be granted or denied for any resource, to any channel, or any group of channels; anywhere within the grid. Others can access your content if you permit them to do so, and they do not even need to have an account on your hub. Your private photos cannot be viewed, because permission really work; they are not an addon that was added as an afterthought. If you aren't on the list of allowed viewers for a particular photo, you aren't going to look at it. \ No newline at end of file diff --git a/doc/developer/api_zot.md b/doc/developer/api_zot.md index d46cc8860..d75012818 100644 --- a/doc/developer/api_zot.md +++ b/doc/developer/api_zot.md @@ -1,3 +1,43 @@ +### What is Zot? + +Zot is the revolutionary protocol that powers $Projectname, providing **communications**, **identity management**, and **access control** across a fully **decentralised** network of independent websites, often called "the grid". The resulting platform is a robust system that supports privacy and security while enabling the kind of rich web services typically seen only in centralized, proprietary solutions. + +#### Communications + +Communications and social networking are an integral part of the grid. Any channel (and any services provided by that channel) can make full use of feature-rich social communications on a global scale. These communications may be public or private - and private communications comprise not only fully encrypted transport, but also encrypted storage to help protect against accidental snooping and disclosure by rogue system administrators and internet service providers. + +Zot supports a wide array of background services in the grid, from friend suggestions to directory services. New content and data updates are propagated in the background between hubs across the grid according to access control lists and permissions specified by both sender *and* receiver channels. Data is also synchronized between an arbitrary number of channel clones, allowing hub members to access data and continue collaborating seamlessly in the event that their primary hub is inaccessible or offline. + +#### Identity + +Zot's identity layer is unique. It provides **invisible single sign-on** across all sites in the grid. + +It also provides **nomadic identity**, so that your communications with friends, family, and or anyone else you're communicating with won't be affected by the loss of your primary communication node - either temporarily or permanently. + +The important bits of your identity and relationships can be backed up to a thumb drive, or your laptop, and may appear at any node in the grid at any time - with all your friends and preferences intact. + +Crucially, these nomadic instances are kept in sync so any instance can take over if another one is compromised or damaged. This protects you against not only major system failure, but also temporary site overloads and governmental manipulation or censorship. + +Nomadic identity, single sign-on, and $Projectname's decentralisation of hubs, we believe, introduce a high degree of degree of **resiliency** and **persistence** in internet communications, that are sorely needed amidst global trends towards corporate centralization, as well as mass and indiscriminate government surveillance and censorship. + +As you browse the grid, viewing channels and their unique content, you are seamlessly authenticated as you go, even across completely different server hubs. No passwords to enter. Nothing to type. You're just greeted by name on every new site you visit. + +How does Zot do that? We call it **magic-auth**, because $Projectname hides the details of the complexities that go into single sign-on logins, and nomadic identities, from the experience of browsing on the grid. This is one of the design goals of $Projectname: to increase privacy, and freedom on the web, while reducing the complexity and tedium brought by the need to enter new passwords and login names for every different sight that someone might visit online. + +You login only once on your home hub (or any nomadic backup hub you have chosen). This allows you to access any authenticated services provided anywhere in the grid - such as shopping, blogs, forums, and access to private information. This is just like the services offered by large corporate providers with huge user databases; however you can be a member of this community, as well as a server on this network using a $35 Rasberry Pi. Your password isn't stored on a thousand different sites, or even worse, only on a few sites like Google and Facebook, beyond your direct control. + +You cannot be silenced. You cannot be removed from the grid, unless you yourself choose to exit it. + +#### Access Control + +Zot's identity layer allows you to provide fine-grained permissions to any content you wish to publish - and these permissions extend across $Projectname. This is like having one super huge website made up of an army of small individual websites - and where each channel in the grid can completely control their privacy and sharing preferences for any web resources they create. + +Currently, $Projectname supports access control for many types of data, including post/comment discussion threads, photo albums, events, cloud files, web pages, wikis, and more. Every object and how it is shared and with whom is completely under your control. + +This type of control is trivial on large corporate providers because they own the user database. Within the grid, there is no need for a huge user database on your machine - because the grid **is** your user database. It has what is essentially infinite capacity (limited by the total number of hubs online across the internet), and is spread amongst hundreds, and potentially millions of computers. + +Access can be granted or denied for any resource, to any channel, or any group of channels; anywhere within the grid. Others can access your content if you permit them to do so, and they do not even need to have an account on your hub. + ### Zot API The API endpoints detailed below are relative to `api/z/1.0`, meaning that if an diff --git a/doc/toc.html b/doc/toc.html index 55cda4f7a..19223abda 100644 --- a/doc/toc.html +++ b/doc/toc.html @@ -80,7 +80,7 @@
From ef39c1e94b5149a3019d417d08dc7c16c8aef9c1 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Fri, 23 Dec 2016 10:07:12 +0100 Subject: [PATCH 153/819] update changelog --- CHANGELOG | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 2919c4d14..642506016 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,4 +1,4 @@ -Hubzilla 2.0 (????-??-??) +Hubzilla 2.0 (2016-12-23) - Deprecate bb_iframe - Note widget: resize the textarea to reveal full content - Implement fixed left aside @@ -67,6 +67,7 @@ Hubzilla 2.0 (????-??-??) - Fix fromStandalonePermission() Plugins + - GNU Social: removed from addons for security reasons - it might be re-implemented once it is properly reviewed - Diaspora: missing item author when diaspora public comment received from relay - Superblock: refactoring - New addon: tripleaes for pro @@ -74,7 +75,6 @@ Hubzilla 2.0 (????-??-??) - Rendezvous: added markers and members export tool at /rendezvous/[group_id]/export/{markers,members} - Twitter: move twitter api to addon - New addon: b2tbtn (back to top button) - - GNU Social: only enable plugin if system.experimental is set - Diaspora: import public diaspora messages to sys if applicable - Diaspora: try and handle singletons better and simplify the associated notifier decisions - Rendezvous: add proximity alert feature to members to issue notification when member is within a specified distance. From c2830c4a98cf3c9983b3c4b61024d52a6d7187df Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Fri, 23 Dec 2016 10:18:30 +0100 Subject: [PATCH 154/819] Hubzilla 2.0 --- boot.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boot.php b/boot.php index 41c52c68b..33aa40a3d 100755 --- a/boot.php +++ b/boot.php @@ -48,7 +48,7 @@ require_once('include/zid.php'); define ( 'PLATFORM_NAME', 'hubzilla' ); -define ( 'STD_VERSION', '2.0RC' ); +define ( 'STD_VERSION', '2.0' ); define ( 'ZOT_REVISION', '1.2' ); define ( 'DB_UPDATE_VERSION', 1185 ); From ef02464e3c3188563349bfda42585ce40cdb45ad Mon Sep 17 00:00:00 2001 From: zotlabs Date: Tue, 27 Dec 2016 15:26:47 -0800 Subject: [PATCH 155/819] issue with HTML in code blocks in markdown in wiki --- include/wiki.php | 28 +++++++++++++++++++++++++++- 1 file changed, 27 insertions(+), 1 deletion(-) diff --git a/include/wiki.php b/include/wiki.php index d52308b08..e892e8c85 100644 --- a/include/wiki.php +++ b/include/wiki.php @@ -303,9 +303,35 @@ function wiki_page_history($arr) { } } +function wiki_prepare_content($s) { + + $text = preg_replace_callback('{ + (?:\n\n|\A\n?) + ( # $1 = the code block -- one or more lines, starting with a space/tab + (?> + [ ]{'.'4'.'} # Lines must start with a tab or a tab-width of spaces + .*\n+ + )+ + ) + ((?=^[ ]{0,'.'4'.'}\S)|\Z) # Lookahead for non-space at line-start, or end of doc + }xm', + 'wiki_prepare_content_callback', $s); + + return $text; +} + +function wiki_prepare_content_callback($matches) { + $codeblock = $matches[1]; + + $codeblock = htmlspecialchars($codeblock, ENT_NOQUOTES, UTF8, false); + return "\n\n" . $codeblock ; +} + + + function wiki_save_page($arr) { $pageUrlName = ((array_key_exists('pageUrlName',$arr)) ? $arr['pageUrlName'] : ''); - $content = ((array_key_exists('content',$arr)) ? purify_html($arr['content']) : ''); + $content = ((array_key_exists('content',$arr)) ? purify_html(wiki_prepare_content($arr['content'])) : ''); $resource_id = ((array_key_exists('resource_id',$arr)) ? $arr['resource_id'] : ''); $w = wiki_get_wiki($resource_id); if (!$w['path']) { From 03a1086ba36a6c30cea8cea178c26497ef879fd2 Mon Sep 17 00:00:00 2001 From: zotlabs Date: Fri, 30 Dec 2016 02:31:53 -0800 Subject: [PATCH 156/819] logger typos --- include/import.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/import.php b/include/import.php index 0d8398acb..e3d3e7e81 100644 --- a/include/import.php +++ b/include/import.php @@ -86,7 +86,7 @@ function import_channel($channel, $account_id, $seize) { } if(! $r) { - logger('mod_import: channel clone failed. ', print_r($channel,true)); + logger('mod_import: channel clone failed. ' . print_r($channel,true)); notice( t('Channel clone failed. Import failed.') . EOL); return false; } @@ -96,7 +96,7 @@ function import_channel($channel, $account_id, $seize) { $channel['channel_guid'] // Already dbesc'd ); if(! $r) { - logger('mod_import: channel not found. ', print_r($channel,true)); + logger('mod_import: channel not found. ' . print_r($channel,true)); notice( t('Cloned channel not found. Import failed.') . EOL); return false; } From b673c804be153c70554c1d3adf43e6ccc85cc308 Mon Sep 17 00:00:00 2001 From: zotlabs Date: Fri, 30 Dec 2016 02:34:26 -0800 Subject: [PATCH 157/819] profile clone issue with dev --- boot.php | 2 +- include/import.php | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/boot.php b/boot.php index 33aa40a3d..ab73a9862 100755 --- a/boot.php +++ b/boot.php @@ -48,7 +48,7 @@ require_once('include/zid.php'); define ( 'PLATFORM_NAME', 'hubzilla' ); -define ( 'STD_VERSION', '2.0' ); +define ( 'STD_VERSION', '2.0.1' ); define ( 'ZOT_REVISION', '1.2' ); define ( 'DB_UPDATE_VERSION', 1185 ); diff --git a/include/import.php b/include/import.php index e3d3e7e81..61134000a 100644 --- a/include/import.php +++ b/include/import.php @@ -138,6 +138,7 @@ function import_profiles($channel,$profiles) { unset($profile['id']); $profile['aid'] = get_account_id(); $profile['uid'] = $channel['channel_id']; + unset($profile['profile_vcard']); convert_oldfields($profile,'name','fullname'); convert_oldfields($profile,'with','partner'); From 3dd4bf9955cb70feb508b3b56ad4c025b938c4ad Mon Sep 17 00:00:00 2001 From: zotlabs Date: Fri, 30 Dec 2016 02:45:16 -0800 Subject: [PATCH 158/819] move api version call back to core --- include/api_zot.php | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/include/api_zot.php b/include/api_zot.php index d1979c3ae..fe3a95d25 100644 --- a/include/api_zot.php +++ b/include/api_zot.php @@ -1,6 +1,8 @@ ' . "\r\n" . '' . Zotlabs\Lib\System::get_project_version() . '' . "\r\n"; + killme(); + } + elseif($type === 'json') { + header('Content-type: application/json'); + echo '"' . Zotlabs\Lib\System::get_project_version() . '"'; + killme(); + } + } + + + /* * Red basic channel export */ From ba8a5ac82b184eac27f115df48eda102d5c549cf Mon Sep 17 00:00:00 2001 From: zotlabs Date: Fri, 30 Dec 2016 13:09:35 -0800 Subject: [PATCH 159/819] peoplefind widget should honour directory option settings (such as this site only). --- Zotlabs/Module/Directory.php | 1 + view/tpl/peoplefind.tpl | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/Zotlabs/Module/Directory.php b/Zotlabs/Module/Directory.php index da9bb146f..ceeeda933 100644 --- a/Zotlabs/Module/Directory.php +++ b/Zotlabs/Module/Directory.php @@ -68,6 +68,7 @@ class Directory extends \Zotlabs\Web\Controller { $observer = get_observer_hash(); $globaldir = get_directory_setting($observer, 'globaldir'); + // override your personal global search pref if we're doing a navbar search of the directory if(intval($_REQUEST['navsearch'])) $globaldir = 1; diff --git a/view/tpl/peoplefind.tpl b/view/tpl/peoplefind.tpl index 0b7f792a6..ae0b7f1ea 100755 --- a/view/tpl/peoplefind.tpl +++ b/view/tpl/peoplefind.tpl @@ -1,7 +1,6 @@

{{$findpeople}}

-
From fcd34e41cafaa77c9d9d46ff60d73c78866fe52a Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Fri, 30 Dec 2016 13:35:43 +0100 Subject: [PATCH 160/819] css fixes and get rid of a javascript workaround --- view/css/default.css | 4 ++-- view/theme/redbasic/css/style.css | 3 +-- view/theme/redbasic/js/redbasic.js | 7 ------- 3 files changed, 3 insertions(+), 11 deletions(-) diff --git a/view/css/default.css b/view/css/default.css index 67a411d6e..d9bea7b41 100644 --- a/view/css/default.css +++ b/view/css/default.css @@ -10,8 +10,8 @@ main { display: table; table-layout: fixed; position: relative; - width: 100%; - height: 100%; + width: 100vw; + height: 100vh; } aside { diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index 7254be552..b300c5f2e 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -8,8 +8,8 @@ /* generals */ html { - height: 100%; font-size: 100%; + overflow-x: hidden; } body { @@ -21,7 +21,6 @@ body { background-size: cover; color: $font_colour; margin: 0px; - height: 100%; overflow-x: hidden; } diff --git a/view/theme/redbasic/js/redbasic.js b/view/theme/redbasic/js/redbasic.js index e31458b4e..b7993ce90 100644 --- a/view/theme/redbasic/js/redbasic.js +++ b/view/theme/redbasic/js/redbasic.js @@ -30,13 +30,6 @@ $(document).ready(function() { } }); - $(window).on('scroll', function() { - if($('main').hasClass('region_1-on') && $(window).scrollLeft() > 5){ - $(window).scrollLeft(0); - toggleAside(); - } - }); - if($('aside').length && $('aside').html().length === 0) { $('#expand-aside').hide(); } From 62a911a57e665b588f341de5700fe9315f45f9ae Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Fri, 30 Dec 2016 20:50:12 +0100 Subject: [PATCH 161/819] prevent eventual double scrollbar --- view/js/main.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/view/js/main.js b/view/js/main.js index a6164e602..01d562d1d 100644 --- a/view/js/main.js +++ b/view/js/main.js @@ -434,12 +434,12 @@ function contextualHelp() { if(container.hasClass('contextual-help-content-open')) { container.removeClass('contextual-help-content-open'); - $('main').css('top', '') + $('main').css('margin-top', '') } else { container.addClass('contextual-help-content-open'); var mainTop = container.outerHeight(true); - $('main').css('top', mainTop + 'px'); + $('main').css('margin-top', mainTop + 'px'); } } From 7f2c7cacd35139a7e55178f7737dfda393bb7a79 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Sat, 31 Dec 2016 09:44:27 +0100 Subject: [PATCH 162/819] bump min version --- boot.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boot.php b/boot.php index ab73a9862..ecd34af1e 100755 --- a/boot.php +++ b/boot.php @@ -48,7 +48,7 @@ require_once('include/zid.php'); define ( 'PLATFORM_NAME', 'hubzilla' ); -define ( 'STD_VERSION', '2.0.1' ); +define ( 'STD_VERSION', '2.0.2' ); define ( 'ZOT_REVISION', '1.2' ); define ( 'DB_UPDATE_VERSION', 1185 ); From 1cd779459b7f1a4dd38d7cbb9fad5f87dd204cd1 Mon Sep 17 00:00:00 2001 From: zotlabs Date: Sat, 31 Dec 2016 15:56:45 -0800 Subject: [PATCH 163/819] better fix for #629 #635 based on ownership/authorship rather than message flags which could be forged --- include/zot.php | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/include/zot.php b/include/zot.php index 77843c35b..d4e75fe91 100644 --- a/include/zot.php +++ b/include/zot.php @@ -1777,7 +1777,7 @@ function process_delivery($sender, $arr, $deliveries, $relay, $public = false, $ $result[] = $DR->get(); } else { - update_imported_item($sender,$arr,$r[0],$channel['channel_id']); + update_imported_item($sender,$arr,$r[0],$channel['channel_id'],$tag_delivery); $DR->update('updated'); $result[] = $DR->get(); if(! $relay) @@ -1925,7 +1925,7 @@ function remove_community_tag($sender, $arr, $uid) { * @param int $uid */ -function update_imported_item($sender, $item, $orig, $uid) { +function update_imported_item($sender, $item, $orig, $uid, $tag_delivery) { // If this is a comment being updated, remove any privacy information // so that item_store_update will set it from the original. @@ -1938,6 +1938,14 @@ function update_imported_item($sender, $item, $orig, $uid) { unset($item['item_private']); } + // we need the tag_delivery check for downstream flowing posts as the stored post + // may have a different owner than the one being transmitted. + + if(($sender['hash'] != $orig['owner_xchan'] && $sender['hash'] != $orig['author_xchan']) && (! $tag_delivery)) { + notice('sender is not owner or author'); + return; + } + $x = item_store_update($item); // If we're updating an event that we've saved locally, we store the item info first From 4d5c20ce179a5dd161b11c43bf6e1c973e854990 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Sat, 31 Dec 2016 12:55:10 +0100 Subject: [PATCH 164/819] fix expand-aside button hiding if aside is empty --- view/theme/redbasic/js/redbasic.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/view/theme/redbasic/js/redbasic.js b/view/theme/redbasic/js/redbasic.js index b7993ce90..395385411 100644 --- a/view/theme/redbasic/js/redbasic.js +++ b/view/theme/redbasic/js/redbasic.js @@ -30,7 +30,7 @@ $(document).ready(function() { } }); - if($('aside').length && $('aside').html().length === 0) { + if($('#left_aside_wrapper').length && $('#left_aside_wrapper').html().length === 0) { $('#expand-aside').hide(); } From a9a35ccb6ba3e7dc2178e293afa30ea2ef4ff14c Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Tue, 3 Jan 2017 17:56:40 +0100 Subject: [PATCH 165/819] trigger sticky_kit:recalc if the size of left_aside_wrapper changes --- view/theme/redbasic/js/redbasic.js | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/view/theme/redbasic/js/redbasic.js b/view/theme/redbasic/js/redbasic.js index 395385411..185dc7bcd 100644 --- a/view/theme/redbasic/js/redbasic.js +++ b/view/theme/redbasic/js/redbasic.js @@ -30,6 +30,15 @@ $(document).ready(function() { } }); + var left_aside_height = $('#left_aside_wrapper').height(); + + $('#left_aside_wrapper').on('click', function() { + if(left_aside_height != $('#left_aside_wrapper').height()) { + $(document.body).trigger("sticky_kit:recalc"); + left_aside_height = $('#left_aside_wrapper').height(); + } + }); + if($('#left_aside_wrapper').length && $('#left_aside_wrapper').html().length === 0) { $('#expand-aside').hide(); } @@ -96,7 +105,7 @@ function toggleAside() { $('main').addClass('region_1-on') $('
').appendTo('section'); $('#left_aside_wrapper').stick_in_parent({ - offset_top: $('nav').outerHeight(true) + offset_top: $('nav').outerHeight(true) - 10 }); } } From 48813c55d554571b21624668744ab8bfc0ffe659 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Wed, 4 Jan 2017 15:52:59 +0100 Subject: [PATCH 166/819] bump min version --- boot.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boot.php b/boot.php index ecd34af1e..d57fb6209 100755 --- a/boot.php +++ b/boot.php @@ -48,7 +48,7 @@ require_once('include/zid.php'); define ( 'PLATFORM_NAME', 'hubzilla' ); -define ( 'STD_VERSION', '2.0.2' ); +define ( 'STD_VERSION', '2.0.3' ); define ( 'ZOT_REVISION', '1.2' ); define ( 'DB_UPDATE_VERSION', 1185 ); From 93ce2728b7cdb8f8587693ac322a6b69c5d7ae88 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Wed, 4 Jan 2017 16:39:14 +0100 Subject: [PATCH 167/819] css fix --- view/theme/redbasic/css/style.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index b300c5f2e..6fb1dcdb8 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -1654,8 +1654,8 @@ nav .dropdown-menu { main.fullscreen { left: 0px; - width: 100%; - height: 100%; + width: 100vw; + height: 100vh; max-width: none; } From 9cf2f424ad2a8d43ef829feef85352482d64aaea Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Thu, 5 Jan 2017 17:40:45 +0100 Subject: [PATCH 168/819] fix an issue with sticky_kit where input fields and textareas would blur on recalc. auto resize the notes textarea since if it sticks to the bottom it can not be properly resized --- view/css/widgets.css | 3 ++- view/php/default.php | 2 +- view/theme/redbasic/js/redbasic.js | 4 +++- view/tpl/notes.tpl | 7 ++++--- 4 files changed, 10 insertions(+), 6 deletions(-) diff --git a/view/css/widgets.css b/view/css/widgets.css index abaf03038..9b97d8bf7 100644 --- a/view/css/widgets.css +++ b/view/css/widgets.css @@ -64,8 +64,9 @@ li:hover .widget-nav-pills-icons { #note-text { padding: 5px; width: 100%; - resize: vertical; + resize: none; min-height: 250px; + overflow: hidden; } /* saved searches */ diff --git a/view/php/default.php b/view/php/default.php index 839a36b5b..373fa2fd0 100644 --- a/view/php/default.php +++ b/view/php/default.php @@ -10,7 +10,7 @@
- +
diff --git a/view/theme/redbasic/js/redbasic.js b/view/theme/redbasic/js/redbasic.js index 185dc7bcd..4194b8f25 100644 --- a/view/theme/redbasic/js/redbasic.js +++ b/view/theme/redbasic/js/redbasic.js @@ -18,7 +18,9 @@ $(document).ready(function() { if($(window).width() > 767) { $('#left_aside_wrapper').stick_in_parent({ - offset_top: $('nav').outerHeight(true) + offset_top: $('nav').outerHeight(true), + parent: '#region_1', + spacer: '#left_aside_spacer' }); } diff --git a/view/tpl/notes.tpl b/view/tpl/notes.tpl index f9fed1feb..c4da3783b 100644 --- a/view/tpl/notes.tpl +++ b/view/tpl/notes.tpl @@ -5,9 +5,10 @@ var noteSaveTimer = null; var noteText = $('#note-text'); - $(document).ready(function(){ - noteText.height(noteText[0].scrollHeight); - }); + noteText.on('change keyup keydown paste cut', function () { + $(this).height(0).height(this.scrollHeight); + $(document.body).trigger("sticky_kit:recalc"); + }).change(); $(document).on('focusout',"#note-text",function(e){ if(noteSaveTimer) From 888a7aa6b267b6d4c521dcacc8bb14294be54b5d Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Thu, 5 Jan 2017 17:43:24 +0100 Subject: [PATCH 169/819] another min version bump --- boot.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boot.php b/boot.php index d57fb6209..7fe51149b 100755 --- a/boot.php +++ b/boot.php @@ -48,7 +48,7 @@ require_once('include/zid.php'); define ( 'PLATFORM_NAME', 'hubzilla' ); -define ( 'STD_VERSION', '2.0.3' ); +define ( 'STD_VERSION', '2.0.4' ); define ( 'ZOT_REVISION', '1.2' ); define ( 'DB_UPDATE_VERSION', 1185 ); From e64378f94fecd25dd185dc0caa64125a8e85307b Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Thu, 5 Jan 2017 17:54:44 +0100 Subject: [PATCH 170/819] same fix for mobile view --- view/theme/redbasic/js/redbasic.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/view/theme/redbasic/js/redbasic.js b/view/theme/redbasic/js/redbasic.js index 4194b8f25..3ff0c43ae 100644 --- a/view/theme/redbasic/js/redbasic.js +++ b/view/theme/redbasic/js/redbasic.js @@ -107,7 +107,9 @@ function toggleAside() { $('main').addClass('region_1-on') $('
').appendTo('section'); $('#left_aside_wrapper').stick_in_parent({ - offset_top: $('nav').outerHeight(true) - 10 + offset_top: $('nav').outerHeight(true) - 10, + parent: '#region_1', + spacer: '#left_aside_spacer' }); } } From be7e2496300d471ef2f9c068b19e00eac5a996be Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Sat, 7 Jan 2017 10:07:05 +0100 Subject: [PATCH 171/819] fix main width if right aside is hidden --- view/css/default.css | 2 +- view/theme/redbasic/css/style.css | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/view/css/default.css b/view/css/default.css index d9bea7b41..a51461201 100644 --- a/view/css/default.css +++ b/view/css/default.css @@ -10,7 +10,7 @@ main { display: table; table-layout: fixed; position: relative; - width: 100vw; + width: 100%; height: 100vh; } diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index 6fb1dcdb8..aad271fe3 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -1654,7 +1654,7 @@ nav .dropdown-menu { main.fullscreen { left: 0px; - width: 100vw; + width: 100%; height: 100vh; max-width: none; } From 639966622f037528fba111c77093da2555d9d94a Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Sat, 7 Jan 2017 10:09:45 +0100 Subject: [PATCH 172/819] min version bump --- boot.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boot.php b/boot.php index 7fe51149b..e52f3d124 100755 --- a/boot.php +++ b/boot.php @@ -48,7 +48,7 @@ require_once('include/zid.php'); define ( 'PLATFORM_NAME', 'hubzilla' ); -define ( 'STD_VERSION', '2.0.4' ); +define ( 'STD_VERSION', '2.0.5' ); define ( 'ZOT_REVISION', '1.2' ); define ( 'DB_UPDATE_VERSION', 1185 ); From 128d47430d4aec5d5aadba4b6e8d5c66ead7be3f Mon Sep 17 00:00:00 2001 From: Andrew Manning Date: Sun, 15 Jan 2017 07:22:19 -0500 Subject: [PATCH 173/819] pull latest doco from dev branch --- doc/about/about_hubzilla.bb | 11 +- doc/admin/administrator_guide.md | 19 + doc/developer/api_zot.bb | 749 ++++++++++++++++++++++++++ doc/developer/zot_protocol.bb | 479 ++++++++++++++++ doc/hook/stream_item.bb | 13 + doc/hook/zot_best_algorithm.bb | 3 + doc/hooklist.bb | 6 + doc/member/assets/qr_text_to_post.png | Bin 0 -> 273 bytes doc/member/assets/zat_dialog.png | Bin 0 -> 81837 bytes doc/member/bbcode.html | 316 +++++++++++ doc/member/member_guide.bb | 458 +++++++++++++++- doc/roadmap_hz3.md | 27 + doc/toc.html | 31 +- 13 files changed, 2095 insertions(+), 17 deletions(-) create mode 100644 doc/developer/api_zot.bb create mode 100644 doc/developer/zot_protocol.bb create mode 100644 doc/hook/stream_item.bb create mode 100644 doc/hook/zot_best_algorithm.bb create mode 100644 doc/member/assets/qr_text_to_post.png create mode 100644 doc/member/assets/zat_dialog.png create mode 100644 doc/member/bbcode.html create mode 100644 doc/roadmap_hz3.md diff --git a/doc/about/about_hubzilla.bb b/doc/about/about_hubzilla.bb index f249df66f..3327e0b50 100644 --- a/doc/about/about_hubzilla.bb +++ b/doc/about/about_hubzilla.bb @@ -32,7 +32,7 @@ The $Projectname software stack is a relatively standard webserver application w [*= nomadic identity] The ability to authenticate and easily migrate an identity across independent hubs and web domains. Nomadic identity provides true ownership of an online identity, because the identities of the channels controlled by an account on a hub are not tied to the hub itself. A hub is more like a "host" for channels. With Hubzilla, you don't have an "account" on a server like you do on typical websites; you own an identity that you can take with you across the grid by using clones. -[*= [url=[baseurl]/help/developer/what_is_zot]Zot[/url]] The novel JSON-based protocol for implementing secure decentralised communications and services. It differs from many other communication protocols by building communications on top of a decentralised identity and authentication framework. The authentication component is similar to OpenID conceptually but is insulated from DNS-based identities. Where possible remote authentication is silent and invisible. This provides a mechanism for internet-scale distributed access control which is unobtrusive. +[*= [url=[baseurl]/help/developer/api_zot]Zot[/url]] The novel JSON-based protocol for implementing secure decentralised communications and services. It differs from many other communication protocols by building communications on top of a decentralised identity and authentication framework. The authentication component is similar to OpenID conceptually but is insulated from DNS-based identities. Where possible remote authentication is silent and invisible. This provides a mechanism for internet-scale distributed access control which is unobtrusive. [/dl] [h3]Features[/h3] @@ -186,17 +186,8 @@ Any number of profiles may be created containing different information and these $Projectname offers a simple, one-click account backup, where you can download a complete backup of your profile(s). Backups can then be used to clone or restore a profile. [h4]Account Deletion[/h4] - Accounts can be immediately deleted by clicking on a link. That's it. All associated content is then deleted from the grid (this includes posts and any other content produced by the deleted profile). Depending on the number of connections you have, the process of deleting remote content could take some time but it is scheduled to happen as quickly as is practical. -[h4]Content Creation[/h4] - -[h4]Writing Posts[/h4] - -$Projectname supports a number of different ways of adding rich-text content. The default is a custom variant of BBcode, tailored for use in $Projectname. You may also enable the use of Markdown if you find that easier to work with. A visual editor may also be used. The traditional visual editor for $Projectname had some serious issues and has since been removed. We are currently looking for a replacement. - -When creating "Websites", content may be entered in HTML, Markdown, BBcode, and/or plain text. - [h4]Deletion of content[/h4] Any content created in $Projectname remains under the control of the member (or channel) that originally created it. At any time, a member can delete a message, or a range of messages. The deletion process ensures that the content is deleted, regardless of whether it was posted on a channel's primary (home) hub, or on another hub, where the channel was remotely authenticated via Zot ($Projectname communication and authentication protocol). diff --git a/doc/admin/administrator_guide.md b/doc/admin/administrator_guide.md index b7056e7e3..f21c55327 100644 --- a/doc/admin/administrator_guide.md +++ b/doc/admin/administrator_guide.md @@ -308,8 +308,16 @@ empty: 1. On the $Projectname server visit new.hub/locs and upgrade to your channel to a primary one. And when the old Redmatrix server is still listed delete them here as well. Press "Sync" to inform all other server in the grid. ### Troubleshooting + #### Log files +The system logfile is an extremely useful resource for tracking down things that go wrong. This can be enabled in the admin/log configuration page. A loglevel setting of LOGGER_DEBUG is preferred for stable production sites. Most things that go wrong with communications or storage are listed here. A setting of LOGGER_DATA provides [b]much[/b] more detail, but may fill your disk. In either case we recommend the use of logrotate on your operating system to cycle logs and discard older entries. + +At the bottom of your .htconfig.php file are several lines (commented out) which enable PHP error logging. This reports issues with code syntax and executing the code and is the first place you should look for issues which result in a "white screen" or blank page. This is typically the result of code/syntax problems. +Database errors are reported to the system logfile, but we've found it useful to have a file in your top-level directory called dbfail.out which [b]only[/b] collects database related issues. If the file exists and is writable, database errors will be logged to it as well as to the system logfile. + +In the case of "500" errors, the issues may often be logged in your webserver logs, often /var/log/apache2/error.log or something similar. Consult your operating system documentation. + There are three different log facilities. **The first is the database failure log**. This is only used if you create a file called specifically 'dbfail.out' in the root folder of your website and make it write-able by the web server. If we have any database failed queries, they are all reported here. They generally indicate typos in our queries, but also occur if the database server disconnects or tables get corrupted. On rare occasions we'll see race conditions in here where two processes tried to create an xchan or cache entry with the same ID. Any other errors (especially persistent errors) should be investigated. @@ -343,3 +351,14 @@ To immediately clear out all the extra logging stuff you added. Use the informa 1. Enable the **logrot** addon in the official [hubzilla-addons](https://github.com/redmatrix/hubzilla-addons) repo 1. Create a directory in your web root called `log` with webserver write permissions 1. Go to the **logrot** admin settings and enter this folder name as well as the max size and number of retained log files. + + +#### Reporting issues + +When reporting issues, please try to provide as much detail as may be necessary for developers to reproduce the issue and provide the complete text of all error messages. + +We encourage you to try to the best of your abilities to use these logs combined with the source code in your possession to troubleshoot issues and find their cause. The community is often able to help, but only you have access to your site logfiles and it is considered a security risk to share them. + +If a code issue has been uncovered, please report it on the project bugtracker (https://github.com/redmatrix/hubzilla/issues). Again provide as much detail as possible to avoid us going back and forth asking questions about your configuration or how to duplicate the problem, so that we can get right to the problem and figure out what to do about it. You are also welcome to offer your own solutions and submit patches. In fact we encourage this as we are all volunteers and have little spare time available. The more people that help, the easier the workload for everybody. It's OK if your solution isn't perfect. Every little bit helps and perhaps we can improve on it. + + diff --git a/doc/developer/api_zot.bb b/doc/developer/api_zot.bb new file mode 100644 index 000000000..f33faed17 --- /dev/null +++ b/doc/developer/api_zot.bb @@ -0,0 +1,749 @@ +[h3]Zot API[/h3] + +The API endpoints detailed below are relative to [code]api/z/1.0[/code], meaning that if an API is listed as [code]channel/stream[/code] the full API URL is [code][baseurl]/api/z/1.0/channel/stream[/code]. + +[h3]channel/export/basic[/h3] + +Export channel data + + +[h3]channel/stream[/h3] + +Fetch channel conversation items + +[h3]network/stream[/h3] + + +Fetch network conversation items + + + +[h3]files[/h3] + + +List file storage (attach DB) + +GET /api/z/1.0/files + + +Options: + + - hash + return only entries matching hash (exactly) + + - filename + return only entries matching filename (substring) + + - filetype + return only entries matching filetype/mimetype (substring) + + - start + start at record (default 0) + + - records + number of records to return or 0 for unlimited + + + +Example: + +curl -u mychannel:mypassword https://xyz.macgirvin.com/api/z/1.0/files -d filetype=multipart/mixed + + +Returns: +[code nowrap] + { + + "success": true, + "results": [ + { + "id": "1", + "aid": "1", + "uid": "2", + "hash": "44ee8b2a1a7f36dea07b93b7747a2383a1bc0fdd08339e8928bfcbe45f65d939", + "filename": "Profile Photos", + "filetype": "multipart/mixed", + "filesize": "0", + "revision": "0", + "folder": "", + "os_storage": "1", + "is_dir": "1", + "is_photo": "0", + "flags": "0", + "created": "2016-01-02 21:51:17", + "edited": "2016-01-02 21:51:17", + "allow_cid": "", + "allow_gid": "", + "deny_cid": "", + "deny_gid": "" + }, + { + "id": "12", + "aid": "1", + "uid": "2", + "hash": "71883f1fc64af33889229cbc79c5a056deeec5fc277d765f182f19073e1b2998", + "filename": "Cover Photos", + "filetype": "multipart/mixed", + "filesize": "0", + "revision": "0", + "folder": "", + "os_storage": "1", + "is_dir": "1", + "is_photo": "0", + "flags": "0", + "created": "2016-01-15 00:24:33", + "edited": "2016-01-15 00:24:33", + "allow_cid": "", + "allow_gid": "", + "deny_cid": "", + "deny_gid": "" + }, + { + "id": "16", + "aid": "1", + "uid": "2", + "hash": "f48f7ec3278499d1dd86b72c3207beaaf4717b07df5cc9b373f14d7aad2e1bcd", + "filename": "2016-01", + "filetype": "multipart/mixed", + "filesize": "0", + "revision": "0", + "folder": "", + "os_storage": "1", + "is_dir": "1", + "is_photo": "0", + "flags": "0", + "created": "2016-01-22 03:24:55", + "edited": "2016-01-22 03:26:57", + "allow_cid": "", + "allow_gid": "", + "deny_cid": "", + "deny_gid": "" + } + ] + } +[/code] + + + +[h3]filemeta[/h3] + +Export file metadata for any uploaded file + + +[h3]filedata[/h3] + + +Provides the ability to download a file from cloud storage in chunks + +GET /api/z/1.0/filedata + + +Required: + + - file_id + attach.hash of desired file ('begins with' match) + + +Optional: + + - start + starting byte of returned data in file (counting from 0) + + - length + length (prior to base64 encoding) of chunk to download + + +Returns: + + attach (DB) structure with base64 encoded 'content' comprised of the desired chunk + + + +Example: + + https://xyz.macgirvin.com/api/z/1.0/filedata?f=&file_id=9f5217770fd&start=0&length=48 + +Returns: +[code nowrap] + { + + "attach": { + "id": "107", + "aid": "1", + "uid": "2", + "hash": "9f5217770fd55d563bd77f84d534d8e119a187514bbd391714626cd9c0e60207", + "creator": "pgcJx1IQjuPkx8aI9qheJlBMZzJz-oTPjHy3h5pWlOVOriBO_cSiUhhqwhuZ74TYJ8_ECO3pPiRMWC0q8YPCQg", + "filename": "pcxtopbm.c", + "filetype": "application/octet-stream", + "filesize": "3934", + "revision": "0", + "folder": "", + "flags": "0", + "is_dir": "0", + "is_photo": "0", + "os_storage": "1", + "os_path": "", + "display_path": "", + "content": "LyogcGN4dG9wYm0uYyAtIGNvbnZlcnQgUEMgcGFpbnRicnVzaCAoLnBjeCkgZmls", + "created": "2016-07-24 23:13:01", + "edited": "2016-07-24 23:13:01", + "allow_cid": "", + "allow_gid": "", + "deny_cid": "", + "deny_gid": "", + "start": 0, + "length": 48 + } + + } +[/code] + +[h3]file/export[/h3] + + +[h3]file[/h3] + + +[h3]albums[/h3] + + +Description: list photo albums + +GET /api/z/1.0/albums + + +Output: + + text - textual name + + total - number of photos in this album + + url - web URL + + urlencode - textual name, urlencoded + + bin2hex - textual name using bin2hex (which is used in the web URL link) + + +Example: + +[code nowrap] + { + + "success": true, + "albums": [ + { + "text": "/", + "total": "2", + "url": "https://xyz.macgirvin.com/photos/hubzilla/album/", + "urlencode": "", + "bin2hex": "" + }, + { + "text": "2016-01", + "total": "6", + "url": "https://xyz.macgirvin.com/photos/hubzilla/album/323031362d3031", + "urlencode": "2016-01", + "bin2hex": "323031362d3031" + }, + { + "text": "2016-02", + "total": "7", + "url": "https://xyz.macgirvin.com/photos/hubzilla/album/323031362d3032", + "urlencode": "2016-02", + "bin2hex": "323031362d3032" + }, + { + "text": "Cover Photos", + "total": "5", + "url": "https://xyz.macgirvin.com/photos/hubzilla/album/436f7665722050686f746f73", + "urlencode": "Cover+Photos", + "bin2hex": "436f7665722050686f746f73" + }, + { + "text": "Profile Photos", + "total": "26", + "url": "https://xyz.macgirvin.com/photos/hubzilla/album/50726f66696c652050686f746f73", + "urlencode": "Profile+Photos", + "bin2hex": "50726f66696c652050686f746f73" + } + ] + + } +[/code] + + +[h3]photos[/h3] + + +list photo metadata + + +[h3]photo[/h3] + + + +[h3]group[/h3] + + +`GET /api/z/1.0/group` + +Description: list privacy groups + +Returns: DB tables of all privacy groups. + +To use with API group_members, provide either 'group_id' from the id element returned in this call, or 'group_name' from the gname returned in this call. + +[code nowrap] + [ + + { + "id": "1", + "hash": "966c946394f3e2627bbb8a55026b5725e582407098415c02f85232de3f3fde76Friends", + "uid": "2", + "visible": "0", + "deleted": "0", + "gname": "Friends" + }, + { + "id": "2", + "hash": "852ebc17f8c3ed4866f2162e384ded0f9b9d1048f93822c0c84196745f6eec66Family", + "uid": "2", + "visible": "1", + "deleted": "0", + "gname": "Family" + }, + { + "id": "3", + "hash": "cc3cb5a7f9818effd7c7c80a58b09a189b62efa698a74319117babe33ee30ab9Co-workers", + "uid": "2", + "visible": "0", + "deleted": "0", + "gname": "Co-workers" + } + ] +[/code] +[h3]group_members[/h3] + + +`GET /api/z/1.0/group_members` + +Required: + +group_id or group_name + + +Returns: + +group_member+abook+xchan (DB join) for each member of the privacy group + +[code nowrap] + [ + + { + "id": "1", + "uid": "2", + "gid": "1", + "xchan": "pgcJx1IQjuPkx8aI9qheJlBMZzJz-oTPjHy3h5pWlOVOriBO_cSiUhhqwhuZ74TYJ8_ECO3pPiRMWC0q8YPCQg", + "abook_id": "2", + "abook_account": "1", + "abook_channel": "2", + "abook_xchan": "pgcJx1IQjuPkx8aI9qheJlBMZzJz-oTPjHy3h5pWlOVOriBO_cSiUhhqwhuZ74TYJ8_ECO3pPiRMWC0q8YPCQg", + "abook_my_perms": "218555", + "abook_their_perms": "0", + "abook_closeness": "0", + "abook_created": "2016-01-02 21:16:26", + "abook_updated": "2016-01-02 21:16:26", + "abook_connected": "0000-00-00 00:00:00", + "abook_dob": "0000-00-00 00:00:00", + "abook_flags": "0", + "abook_blocked": "0", + "abook_ignored": "0", + "abook_hidden": "0", + "abook_archived": "0", + "abook_pending": "0", + "abook_unconnected": "0", + "abook_self": "1", + "abook_feed": "0", + "abook_profile": "", + "abook_incl": "", + "abook_excl": "", + "abook_instance": "", + "xchan_hash": "pgcJx1IQjuPkx8aI9qheJlBMZzJz-oTPjHy3h5pWlOVOriBO_cSiUhhqwhuZ74TYJ8_ECO3pPiRMWC0q8YPCQg", + "xchan_guid": "lql-1VnxtiO4-WF0h72wLX1Fu8szzHDOXgQaTbELwXW77k8AKFfh-hYr70vqMrc3SSvWN-Flrc5HFhRTWB7ICw", + "xchan_guid_sig": "PafvEL0VpKfxATxlCqDjfOeSIMdmpr3iU7X-Sysa1h5LzDpjSXsjO37tYZL-accb1M5itLlfnW5epkTa5I4flsW21zSY1A2jCuBQUTLLGV7rNyyBy7lgqJUFvAMRx0TfXzP9lcaPqlM9T1tA6jfWOsOmkdzwofGeXBnsjGfjsO2xdGYe6vwjOU0DSavukvzDMnOayB9DekpvDnaNBTxeGLM45Skzr7ZEMcNF7TeXMbnvpfLaALYEKeQs9bGH-UgAG8fBWgzVAzeBfx_XSR1rdixjyiZGP0kq0h35SlmMPcEjliodOBFwMXqpXFB7Ibp4F6o6te2p2ErViJccQVG8VNKB6SbKNXY6bhP5zVcVsJ-vR-p4xXoYJJvzTN7yTDsGAXHOLF4ZrXbo5yi5gFAlIrTLAF2EdWQwxSGyLRWKxG8PrDkzEzX6cJJ0VRcLh5z6OI5QqQNdeghPZbshMFMJSc_ApCPi9_hI4ZfctCIOi3T6bdgTNKryLm5fhy_eqjwLAZTGP-aUBgLZpb1mf2UojBn6Ey9cCyq-0T2RWyk-FcIcbV4qJ-p_8oODqw13Qs5FYkjLr1bGBq82SuolkYrXEwQClxnrfKa4KYc2_eHAXPL01iS9zVnI1ySOCNJshB97Odpooc4wk7Nb2Fo-Q6THU9zuu0uK_-JbK7IIl6go2qA", + "xchan_pubkey": "-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA18JB76lyP4zzL/y7BCej\neJnfZIWZNtM3MZvI1zEVMWmmwOS+u/yH8oPwyaDk4Y/tnj8GzMPj1lCGVRcd8EJa\nNrCMd50HODA5EsJtxpsOzRcILYjOcTtIAG1K4LtKqELi9ICAaFp0fNfa+Jf0eCek\nvPusx2/ORhy+o23hFoSMhL86o2gmaiRnmnA3Vz4ZMG92ieJEDMXt9IA1EkIqS4y5\nBPZfVPLD1pv8iivj+dtN1XjwplgjUbtxmU0/Ej808nHppscRIqx/XJ0XZU90oNGw\n/wYoK2EzJlPbRsAkwNqoFrAYlr5HPpn4BJ2ebFYQgWBUraD7HwS5atsQEaxGfO21\nlUP0+lDg9t3CXvudDj0UG1jiEKbVIGA+4aG0GN2DSC5AyRq/GRxqyay5W2vQbAZH\nyvxPGrZFO24I65g3pjhpjEsLqZ4ilTLQoLMs0drCIcRm5RxMUo4s/LMg16lT4cEk\n1qRtk2X0Sb1AMQQ2uRXiVtWz77QHMONEYkf6OW4SHbwcv5umvlv69NYEGfCcbgq0\nAV7U4/BWztUz/SWj4r194CG43I9I8dmaEx9CFA/XMePIAXQUuABfe1QMOR6IxLpq\nTHG1peZgHQKeGz4aSGrhQkZNNoOVNaZoIfcvopxcHDTZLigseEIaPPha4WFYoKPi\nUPbZ5o8gTLc750uzrnb2jwcCAwEAAQ==\n-----END PUBLIC KEY-----\n", + "xchan_photo_mimetype": "image/png", + "xchan_photo_l": "https://xyz.macgirvin.com/photo/profile/l/2", + "xchan_photo_m": "https://xyz.macgirvin.com/photo/profile/m/2", + "xchan_photo_s": "https://xyz.macgirvin.com/photo/profile/s/2", + "xchan_addr": "teller@xyz.macgirvin.com", + "xchan_url": "https://xyz.macgirvin.com/channel/teller", + "xchan_connurl": "https://xyz.macgirvin.com/poco/teller", + "xchan_follow": "https://xyz.macgirvin.com/follow?f=&url=%s", + "xchan_connpage": "", + "xchan_name": "Teller", + "xchan_network": "zot", + "xchan_instance_url": "", + "xchan_flags": "0", + "xchan_photo_date": "2016-10-19 01:26:50", + "xchan_name_date": "2016-01-02 21:16:26", + "xchan_hidden": "0", + "xchan_orphan": "0", + "xchan_censored": "0", + "xchan_selfcensored": "0", + "xchan_system": "0", + "xchan_pubforum": "0", + "xchan_deleted": "0" + }, + { + "id": "12", + "uid": "2", + "gid": "1", + "xchan": "xuSMUYxw1djBB97qXsbrBN1nzJH_gFwQL6pS4zIy8fuusOfBxNlMiVb4h_q5tOEvpE7tYf1EsryjNciMuPIj5w", + "abook_id": "24", + "abook_account": "1", + "abook_channel": "2", + "abook_xchan": "xuSMUYxw1djBB97qXsbrBN1nzJH_gFwQL6pS4zIy8fuusOfBxNlMiVb4h_q5tOEvpE7tYf1EsryjNciMuPIj5w", + "abook_my_perms": "218555", + "abook_their_perms": "218555", + "abook_closeness": "80", + "abook_created": "2016-01-27 00:48:43", + "abook_updated": "2016-12-04 17:16:58", + "abook_connected": "2016-12-04 17:16:58", + "abook_dob": "0001-01-01 00:00:00", + "abook_flags": "0", + "abook_blocked": "0", + "abook_ignored": "0", + "abook_hidden": "0", + "abook_archived": "0", + "abook_pending": "0", + "abook_unconnected": "0", + "abook_self": "0", + "abook_feed": "0", + "abook_profile": "debb5236efb1626cfbad33ccb49892801e5f844aa04bf81f580cfa7d13204819", + "abook_incl": "", + "abook_excl": "", + "abook_instance": "", + "xchan_hash": "xuSMUYxw1djBB97qXsbrBN1nzJH_gFwQL6pS4zIy8fuusOfBxNlMiVb4h_q5tOEvpE7tYf1EsryjNciMuPIj5w", + "xchan_guid": "d5EMLlt1tHHZ0dANoA7B5Wq9UgXoWcFS9-gXOkL_AAejcPApoQRyxfHTuu8DoTbUaO-bYmX5HPuWuK9PHyqNmA", + "xchan_guid_sig": "CVWEMRPtzI1YcHfnnWHTuv3H964OAmSElgUfxMoX6RdQdxNpqb_POirpVuyP8s3W17mVCfO5V9IAjkg5iKcqCk6YcvOD_egmMy-AnM9TC1kKndQHw55CunD82Q8K_xBNSXkSROizcNkKh9DVLjJPFjW1AqtI4njkZ3EMgrWqnbFRM1qPToUoCY9zM3tEMHoAD9YX1zP90wl40LzfN-dtcNWpSBbiz9owou62uzLbN7mrCwKOMlXLjwwGswRnxIsEnb3O-FXOs8hs0mArKe9snq1-BKeD16LyzxgwlpVLElzIJZGEZGtMdIJgeRzKuBvPjsOIpQ1yAkuOpFJ3nGCM-IPOIIjAmyVl5zD3xPVcxxpZlJRn5fG1Y-gnqTgsrEQCA7M6XPWQdrdHU4akZfyUyFJDhv3uM-jon9VzrYTBw68R0WA-1Z8WafEHA4qh5OWAj85lUarwhr7iTiEckH51ypPCPs6VbT6Pw7yMaxfjFOcipashQagx0tfOlDhE5dQANOXKASFtH1J9-CZY2MQdLPQ6u54d5whuHKMGaJ0V68pnmZ2rOn7g344Ah2WCJrm17jj60QsRMorqRFj7GMdPIA1XB8Wrk88MuYOe3Dhyuu6ZWKI7YTWJS690ZVkKUqAiNHqj0W86DtaiPUc_mmGR0fHl4Gksnko3WmCFv9q2X2E", + "xchan_pubkey": "-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAoj2xCJktBA8Ww7Hp+ZNL\nrNuQpo8UB/bfvRkIy+yua3xpF1TuXcnAH61kyRz8vXgOu/l2CyxQbIoaGslCV5Sy\n8JKeNXe+IilUdSSEjMIwCPfSPsYnMHsSnHWmPmclvJwEtQUKOZmW5mMuVBvXy7D2\njomFwc69AYphdyys6eQ7Dcn6+FRBiQbyMprZ5lxyVW+O4DuXVNa3ej2ebx0gCJZ4\ntTIlBoKwEey91dY+FyKVFjdwfNczpmL7LgmZXqcVx+MG3mYgibwdVMiXVj5X06cs\nV9hJ5Xi+Aklsv/UWJtjw9FVt7y9TLptnhh4Ra6T/MDmnBBIAkOR7P/X8cRv078MT\nl0IMsP0RJcDEtTLtwHFVtDs6p52KDFqclKWbqmxmxqV3OTPVYtArRGIzgnJi/5ur\nHRr5G6Cif7QY3UowsIOf78Qvy28LwSbdymgBAWwPPKIviXWxGO+9kMWdmPSUQrWy\nK0+7YA9P9fBUFfn9Hc+p8SJQmQ6OAqLwrDGiPSOlGaNrbEqwqLGgIpXwK+lEFcFJ\n3SPOjJRWdR2whlMxvpwX+39+H7dWN3vSa3Al4/Sq7qW8yW2rYwf+eGyp4Z0lRR+8\nJxFMCwZkSw5g14YdlikAPojv5V1c6KuA5ieg8G1hwyONV7A4JHPyEdPt0W0TZi6C\nCOVkPaC3xGrguETZpJfVpwUCAwEAAQ==\n-----END PUBLIC KEY-----\n", + "xchan_photo_mimetype": "image/png", + "xchan_photo_l": "https://xyz.macgirvin.com/photo/9da63aa910ea14e1501ee1a749d181a6-4", + "xchan_photo_m": "https://xyz.macgirvin.com/photo/9da63aa910ea14e1501ee1a749d181a6-5", + "xchan_photo_s": "https://xyz.macgirvin.com/photo/9da63aa910ea14e1501ee1a749d181a6-6", + "xchan_addr": "cloner@xyz.macgirvin.com", + "xchan_url": "http://abc.macgirvin.com/channel/cloner", + "xchan_connurl": "http://abc.macgirvin.com/poco/cloner", + "xchan_follow": "https://xyz.macgirvin.com/follow?f=&url=%s", + "xchan_connpage": "", + "xchan_name": "Karen", + "xchan_network": "zot", + "xchan_instance_url": "", + "xchan_flags": "0", + "xchan_photo_date": "2016-03-31 19:59:20", + "xchan_name_date": "2016-01-26 23:23:42", + "xchan_hidden": "0", + "xchan_orphan": "0", + "xchan_censored": "0", + "xchan_selfcensored": "0", + "xchan_system": "0", + "xchan_pubforum": "0", + "xchan_deleted": "0" + } + + ] +[/code] + +[h3]xchan[/h3] + + +An xchan is a global location independent channel and is the primary record for a network +identity. It may refer to channels on other websites, networks, or services. + +`GET /api/z/1.0/xchan` + +Required: one of [ address, hash, guid ] as GET parameters + +Returns a portable xchan structure + +Example: https://xyz.macgirvin.com/api/z/1.0/xchan?f=&address=mike@macgirvin.com + +Returns: +[code nowrap] + { + "hash": "jr54M_y2l5NgHX5wBvP0KqWcAHuW23p1ld-6Vn63_pGTZklrI36LF8vUHMSKJMD8xzzkz7s2xxCx4-BOLNPaVA", + "guid": "sebQ-IC4rmFn9d9iu17m4BXO-kHuNutWo2ySjeV2SIW1LzksUkss12xVo3m3fykYxN5HMcc7gUZVYv26asx-Pg", + "guid_sig": "Llenlbl4zHo6-g4sa63MlQmTP5dRCrsPmXHHFmoCHG63BLq5CUZJRLS1vRrrr_MNxr7zob_Ykt_m5xPKe5H0_i4pDj-UdP8dPZqH2fqhhx00kuYL4YUMJ8gRr5eO17vsZQ3XxTcyKewtgeW0j7ytwMp6-hFVUx_Cq08MrXas429ZrjzaEwgTfxGnbgeQYQ0R5EXpHpEmoERnZx77VaEahftmdjAUx9R4YKAp13pGYadJOX5xnLfqofHQD8DyRHWeMJ4G1OfWPSOlXfRayrV_jhnFlZjMU7vOdQwHoCMoR5TFsRsHuzd-qepbvo3pzvQZRWnTNu6oPucgbf94p13QbalYRpBXKOxdTXJrGdESNhGvhtaZnpT9c1QVqC46jdfP0LOX2xrVdbvvG2JMWFv7XJUVjLSk_yjzY6or2VD4V6ztYcjpCi9d_WoNHruoxro_br1YO3KatySxJs-LQ7SOkQI60FpysfbphNyvYMkotwUFI59G08IGKTMu3-GPnV1wp7NOQD1yzJbGGEGSEEysmEP0SO9vnN45kp3MiqbffBGc1r4_YM4e7DPmqOGM94qksOcLOJk1HNESw2dQYWxWQTBXPfOJT6jW9_crGLMEOsZ3Jcss0XS9KzBUA2p_9osvvhUKuKXbNztqH0oZIWlg37FEVsDs_hUwUJpv2Ar09k4", + "pubkey": "-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA7QCwvuEIwCHjhjbpz3Oc\ntyei/Pz9nDksNbsc44Cm8jxYGMXsTPFXDZYCcCB5rcAhPPdZSlzaPkv4vPVcMIrw\n5cdX0tvbwa3rNTng6uFE7qkt15D3YCTkwF0Y9FVZiZ2Ko+G23QeBt9wqb9dlDN1d\nuPmu9BLYXIT/JXoBwf0vjIPFM9WBi5W/EHGaiuqw7lt0qI7zDGw77yO5yehKE4cu\n7dt3SakrXphL70LGiZh2XGoLg9Gmpz98t+gvPAUEotAJxIUqnoiTA8jlxoiQjeRK\nHlJkwMOGmRNPS33awPos0kcSxAywuBbh2X3aSqUMjcbE4cGJ++/13zoa6RUZRObC\nZnaLYJxqYBh13/N8SfH7d005hecDxWnoYXeYuuMeT3a2hV0J84ztkJX5OoxIwk7S\nWmvBq4+m66usn6LNL+p5IAcs93KbvOxxrjtQrzohBXc6+elfLVSQ1Rr9g5xbgpub\npSc+hvzbB6p0tleDRzwAy9X16NI4DYiTj4nkmVjigNo9v2VPnAle5zSam86eiYLO\nt2u9YRqysMLPKevNdj3CIvst+BaGGQONlQalRdIcq8Lin+BhuX+1TBgqyav4XD9K\nd+JHMb1aBk/rFLI9/f2S3BJ1XqpbjXz7AbYlaCwKiJ836+HS8PmLKxwVOnpLMbfH\nPYM8k83Lip4bEKIyAuf02qkCAwEAAQ==\n-----END PUBLIC KEY-----\n", + "photo_mimetype": "image/jpeg", + "photo_l": "https://xyz.macgirvin.com/photo/350b74555c04429148f2e12775f6c403-4", + "photo_m": "https://xyz.macgirvin.com/photo/350b74555c04429148f2e12775f6c403-5", + "photo_s": "https://xyz.macgirvin.com/photo/350b74555c04429148f2e12775f6c403-6", + "address": "mike@macgirvin.com", + "url": "https://macgirvin.com/channel/mike", + "connurl": "https://macgirvin.com/poco/mike", + "follow": "https://macgirvin.com/follow?f=&url=%s", + "connpage": "https://macgirvin.com/connect/mike", + "name": "Mike Macgirvin", + "network": "zot", + "instance_url": "", + "flags": "0", + "photo_date": "2012-12-06 05:06:11", + "name_date": "2012-12-06 04:59:13", + "hidden": "1", + "orphan": "0", + "censored": "0", + "selfcensored": "0", + "system": "0", + "pubforum": "0", + "deleted": "0" + } +[/code] +[h3]item/update[/h3] + + +Create or update an item (post, activity, webpage, etc.) + +Usage: `POST /api/z/1.0/item/update` + +Description: item/update posts an item (typically a conversation item or post, but can be any item) using form input. + + +Required: + +- body + + text/bbcode contents by default. + + +Optional: + +- $_FILES['media'] + + uploaded media file to include with post + +- title + + title of post/item + +- contact_allow + + array of xchan.xchan_hash allowed to view this item + +- group_allow + + array of group.hash allowed to view this item + +- contact_deny + + array of xchan.xchan_hash not allowed to view this item + +- group_deny + + array of group.hash not allowed to view this item + +- coord + + geographic coordinates + +- location + + freefrom location + +- expire + + datetime this post will expire or be removed + +- mimetype + + mimetype if not text/bbcode + +- parent + + item.id of parent to this post (makes it a comment) + +- parent_mid + + alternate form of parent using message_id + +- remote_xchan + + xchan.xchan_hash of this message author if not the channel owner + +- consensus + + boolean set to true if this is a consensus or voting item (default false) + +- nocomment + + boolean set to true if comments are to be disabled (default false) + +- origin + + do not use this without reading the code + +- namespace + + persistent identity for a remote network or service + +- remote_id + + message_id of this resource on a remote network or service + +- message_id + + message_id of this item (leave unset to generate one) + +- created + + datetime of message creation + +- post_id + + existing item.id if this is an edit operation + +- app + + application or network name to display with item + +- categories + + comma separated categories for this item + +- webpage + + item.page_type if not 0 + +- pagetitle + + for webpage and design elements, the 'page name' + +- layout_mid + + item.mid of layout for this design element + +- plink + + permalink for this item if different than the default + +- verb + + activitystream verb for this item/activity + +- obj_type + + activitystream object type for this item/activity + + + +Example: + + curl -u mychannel:mypassword https://xyz.macgirvin.com/api/z/1.0/item/update -d body="hello world" + + +Returns: + +[code nowrap] + { + + "success": true, + "item_id": "2245", + "item": { + "id": "2245", + "mid": "14135cdecf6b8e3891224e4391748722114da6668eebbcb56fe4667b60b88249@xyz.macgirvin.com", + "aid": "1", + "uid": "2", + "parent": "2245", + "parent_mid": "14135cdecf6b8e3891224e4391748722114da6668eebbcb56fe4667b60b88249@xyz.macgirvin.com", + "thr_parent": "14135cdecf6b8e3891224e4391748722114da6668eebbcb56fe4667b60b88249@xyz.macgirvin.com", + "created": "2016-12-03 20:00:12", + "edited": "2016-12-03 20:00:12", + "expires": "0001-01-01 00:00:00", + "commented": "2016-12-03 20:00:12", + "received": "2016-12-03 20:00:12", + "changed": "2016-12-03 20:00:12", + "comments_closed": "0001-01-01 00:00:00", + "owner_xchan": "pgcJx1IQjuPkx8aI9qheJlBMZzJz-oTPjHy3h5pWlOVOriBO_cSiUhhqwhuZ74TYJ8_ECO3pPiRMWC0q8YPCQg", + "author_xchan": "pgcJx1IQjuPkx8aI9qheJlBMZzJz-oTPjHy3h5pWlOVOriBO_cSiUhhqwhuZ74TYJ8_ECO3pPiRMWC0q8YPCQg", + "source_xchan": "", + "mimetype": "text/bbcode", + "title": "", + "body": "hello world", + "html": "", + "app": "", + "lang": "", + "revision": "0", + "verb": "http://activitystrea.ms/schema/1.0/post", + "obj_type": "http://activitystrea.ms/schema/1.0/note", + "obj": "", + "tgt_type": "", + "target": "", + "layout_mid": "", + "postopts": "", + "route": "", + "llink": "https://xyz.macgirvin.com/display/14135cdecf6b8e3891224e4391748722114da6668eebbcb56fe4667b60b88249@xyz.macgirvin.com", + "plink": "https://xyz.macgirvin.com/channel/mychannel/?f=&mid=14135cdecf6b8e3891224e4391748722114da6668eebbcb56fe4667b60b88249@xyz.macgirvin.com", + "resource_id": "", + "resource_type": "", + "attach": "", + "sig": "sa4TOQNfHtV13HDZ1tuQGWNBpZp-nWhT2GMrZEmelXxa_IvEepD2SEsCTWOBqM8OKPJLfNy8_i-ORXjrOIIgAa_aT8cw5vka7Q0C8L9eEb_LegwQ_BtH0CXO5uT30e_8uowkwzh6kmlVg1ntD8QqrGgD5jTET_fMQOIw4gQUBh40GDG9RB4QnPp_MKsgemGrADnRk2vHO7-bR32yQ0JI-8G-eyeqGaaJmIwkHoi0vXsfjZtU7ijSLuKEBWboNjKEDU89-vQ1c5Kh1r0pmjiDk-a5JzZTYShpuhVA-vQgEcADA7wkf4lJZCYNwu3FRwHTvhSMdF0nmyv3aPFglQDky38-SAXZyQSvd7qlABHGCVVDmYrYaiq7Dh4rRENbAUf-UJFHPCVB7NRg34R8HIqmOKq1Su99bIWaoI2zuAQEVma9wLqMoFsluFhxX58KeVtlCZlro7tZ6z619-dthS_fwt0cL_2dZ3QwjG1P36Q4Y4KrCTpntn9ot5osh-HjVQ01h1I9yNCj6XPgYJ8Im3KT_G4hmMDFM7H9RUrYLl2o9XYyiS2nRrf4aJHa0UweBlAY4zcQG34bw2AMGCY53mwsSArf4Hs3rKu5GrGphuwYX0lHa7XEKMglwBWPWHI49q7-oNWr7aWwn1FnfaMfl4cQppCMtKESMNRKm_nb9Dsh5e0", + "diaspora_meta": "", + "location": "", + "coord": "", + "public_policy": "", + "comment_policy": "contacts", + "allow_cid": "", + "allow_gid": "", + "deny_cid": "", + "deny_gid": "", + "item_restrict": "0", + "item_flags": "0", + "item_private": "0", + "item_origin": "1", + "item_unseen": "0", + "item_starred": "0", + "item_uplink": "0", + "item_consensus": "0", + "item_wall": "1", + "item_thread_top": "1", + "item_notshown": "0", + "item_nsfw": "0", + "item_relay": "0", + "item_mentionsme": "0", + "item_nocomment": "0", + "item_obscured": "0", + "item_verified": "1", + "item_retained": "0", + "item_rss": "0", + "item_deleted": "0", + "item_type": "0", + "item_hidden": "0", + "item_unpublished": "0", + "item_delayed": "0", + "item_pending_remove": "0", + "item_blocked": "0" + } + + } +[/code] +[h3]item/full[/h3] + + +Get all data associated with an item + +[h3]abook[/h3] + + +Connections + +[h3]abconfig[/h3] + + +Connection metadata (such as permissions) + +[h3]perm_allowed[/h3] + + +Check a permission for a given xchan diff --git a/doc/developer/zot_protocol.bb b/doc/developer/zot_protocol.bb new file mode 100644 index 000000000..b87e1cd73 --- /dev/null +++ b/doc/developer/zot_protocol.bb @@ -0,0 +1,479 @@ +[h3] What is Zot?[/h3] +Zot is the revolutionary protocol that powers $Projectname, providing [b]communications[/b], [b]identity management[/b], and [b]access control[/b] across a fully [b]decentralised[/b] network of independent websites, often called "the grid". The resulting platform is a robust system that supports privacy and security while enabling the kind of rich web services typically seen only in centralized, proprietary solutions. + +Consider this typical scenario: + +Jaquelina wishes to share photos with Roberto from her blog at [b]jaquelina.org[/b], but to nobody else. Roberto maintains his own family hub at [b]roberto.net[/b] on a completely independent server. Zot allows Jaquelina to publish her photos using an [i]access control list (ACL)[/i] that includes only Roberto. That means that while Roberto can see the photos when he visits her blog, his brother Marco cannot, and neither can any of his other family members who have accounts on [b]roberto.net[/b]. + +The magic in this scenario comes from the fact that Roberto never logged in to Jaquelina's website. Instead, he had to login only once using his password on his [i]own[/i] website at [b]roberto.net[/b]. When Roberto visits [b]jaquelina.org[/b], her hub seamlessly authenticates him by remotely querying his server in the background. + +It is not uncommon for servers to have technical problems or become inaccessible for a variety of reasons. Zot provides robustness for Roberto's online activities by allowing him to have [i]clones[/i] of his online identity, or [i]channel[/i], on multiple independent hubs. Imagine that Roberto's server crashes for some reason and he cannot log in there. He simply logs in to one of his clones at [b]gadfly.com[/b], a site operated by his friend Peter. Once authenticated at [b]gadfly.com[/b], Roberto can view Jaquelina's blog as before, without Jaquelina having to grant any additional access! + +[h4] Communications[/h4] +Communications and social networking are an integral part of the grid. Any channel (and any services provided by that channel) can make full use of feature-rich social communications on a global scale. These communications may be public or private - and private communications comprise not only fully encrypted transport, but also encrypted storage to help protect against accidental snooping and disclosure by rogue system administrators and internet service providers. + +Zot supports a wide array of background services in the grid, from friend suggestions to directory services. New content and data updates are propagated in the background between hubs across the grid according to access control lists and permissions specified by both sender [i]and[/i] receiver channels. Data is also synchronized between an arbitrary number of channel clones, allowing hub members to access data and continue collaborating seamlessly in the event that their primary hub is inaccessible or offline. + +[h4] Identity [/h4] +Zot's identity layer is unique. It provides [b]invisible single sign-on[/b] across all sites in the grid. + +It also provides [b]nomadic identity[/b], so that your communications with friends, family, and or anyone else you're communicating with won't be affected by the loss of your primary communication node - either temporarily or permanently. + +The important bits of your identity and relationships can be backed up to a thumb drive, or your laptop, and may appear at any node in the grid at any time - with all your friends and preferences intact. + +Crucially, these nomadic instances are kept in sync so any instance can take over if another one is compromised or damaged. This protects you against not only major system failure, but also temporary site overloads and governmental manipulation or censorship. + +Nomadic identity, single sign-on, and $Projectname's decentralisation of hubs, we believe, introduce a high degree of degree of [b]resiliency[/b] and [b]persistence[/b] in internet communications, that are sorely needed amidst global trends towards corporate centralization, as well as mass and indiscriminate government surveillance and censorship. + +As you browse the grid, viewing channels and their unique content, you are seamlessly authenticated as you go, even across completely different server hubs. No passwords to enter. Nothing to type. You're just greeted by name on every new site you visit. + +How does Zot do that? We call it [b]magic-auth[/b], because $Projectname hides the details of the complexities that go into single sign-on logins, and nomadic identities, from the experience of browsing on the grid. This is one of the design goals of $Projectname: to increase privacy, and freedom on the web, while reducing the complexity and tedium brought by the need to enter new passwords and login names for every different sight that someone might visit online. You login only once on your home hub (or any nomadic backup hub you have chosen). This allows you to access any authenticated services provided anywhere in the grid - such as shopping, blogs, forums, and access to private information. Your password isn't stored on a thousand different sites; it is stored on servers that you control or that you have chosen to trust. + +You cannot be silenced. You cannot be removed from the grid unless you yourself choose to exit it. + +[h4] Access Control[/h4] +Zot's identity layer allows you to provide fine-grained permissions to any content you wish to publish - and these permissions extend across the grid. This is like having one super huge website made up of an army of small individual websites - and where each channel in the grid can completely control their privacy and sharing preferences for any web resources they create. + +Currently, $Projectname supports access control for many types of data, including post/comment discussion threads, photo albums, events, cloud files, web pages, wikis, and more. Every object and how it is shared and with whom is completely under your control. + +This type of control is trivial on large corporate providers because they own the user database. Within the grid, there is no need for a huge user database on your machine - because the grid [b]is[/b] your user database. It has what is essentially infinite capacity (limited by the total number of hubs online across the internet), and is spread amongst hundreds, and potentially millions of computers. + +Access can be granted or denied for any resource, to any channel, or any group of channels; anywhere within the grid. Others can access your content if you permit them to do so, and they do not even need to have an account on your hub. + +[h3]Technical Introduction[/h3] +Zot is a JSON-based web framework for implementing secure decentralised communications and services. In order to provide this functionality, Zot creates a decentralised globally unique identifier for each hub on the network. This global identifier is not linked inextricably to DNS, providing the requisite mobility. Many existing decentralised communications frameworks provide the communication aspect, but do not provide remote access control and authentication. Additionally most of these are based on 'webfinger', which still binds identity to domain names and cannot support nomadic identity. + +The primary issues Zot addresses are + +[list] +[*] completely decentralised communications +[*] independence from DNS-based identity +[*] node mobility +[*] seamless remote authentication +[*] high performance +[/list] +We will rely on DNS-based user@host addresses as a "user-friendly" mechanism to let people know where you are, specifically on a named host with a given username, and communication will be carried out to DNS entities using TCP and the web. + +But the underlying protocol will provide an abstraction layer on top of this, so that a communications node (e.g. "identity") can move to an alternate DNS location and (to the best of our ability) gracefully recover from site re-locations and/or maintain pre-existing communication relationships. A side effect of this requirement is the ability to communicate from alternate/multiple DNS locations and service providers and yet maintain a single online identity. + +We will call this overlay network the "grid". Servers attached to this network are known as "hubs" and may support any number of individual identities. + +An identity does not necessarily correspond to a person. It is just something which requires the ability to communicate within the grid. + +The ability to recover will be accomplished by communication to the original location when creating a new or replacement identity, or as a fallback from a stored file describing the identity and their contacts in the case where the old location no longer responds. + +At least on the short term, the mobility of existing content is not a top priority. This may or may not take place at a later stage. The most important things we want to keep are your identity and your friends. + +Addresses which are shared amongst people are user@host, and which describe the [b]current[/b] local account credentials for a given identity. These are DNS based addresses and used as a seed to locate a given identity within the grid. The machine communications will bind this address to a globally unique ID. A single globally unique ID may be attached or bound to any number of DNS locations. Once an identity has been mapped or bound to a DNS location, communications will consist of just knowing the globally unique address, and what DNS (url) is being used currently (in order to call back and verify/complete the current communication). These concepts will be specified in better detail. + +In order for an identity to persist across locations, one must be able to provide or recover + +[list] +[*] the globally unique ID for that identity +[*] the private key assigned to that identity +[*] (if the original server no longer exists) an address book of contacts for that identity. +[/list] +This information will be exportable from the original server via API, and/or downloadable to disk or thumb-drive. + +We may also attempt to recover with even less information, but doing so is prone to account hijacking and will require that your contacts confirm the change. + +In order to implement high performance communications, the data transfer format for all aspects of Zot is JSON. XML communications require way too much overhead. + +Bi-directional encryption is based on RSA 4096-bit keys expressed in DER/ASN.1 format using the PKCS#8 encoding variant, with AES-256-CBC used for block encryption of variable length or large items. + +Some aspects of well known "federation protocols" (webfinger, salmon, activitystreams, portablecontacts, etc.) may be used in zot, but we are not tied to them and will not be bound by them. $Projectname project is attempting some rather novel developments in decentralised communications and if there is any need to diverge from such "standard protocols" we will do so without question or hesitation. + +In order to create a globally unique ID, we will base it on a whirlpool hash of the identity URL of the origination node and a psuedo-random number, which should provide us with a 256 bit ID with an extremely low probability of collision (256 bits represents approximately 115 quattuorviginitillion or 1.16 X 10^77 unique numbers). This will be represented in communications as a base64url-encoded string. We will not depend on probabilities however and the ID must also be attached to a public key with public key cryptography used to provide an assurance of identity which has not been copied or somehow collided in whirlpool hash space. + +Basing this ID on DNS provides a globally unique seed, which would not be the case if it was based completely on psuedo-random number generation. + +We will refer to the encoded globally unique uid string as zot_uid + +As there may be more than one DNS location attached/bound to a given zot_uid identity, delivery processes should deliver to all of them - as we do not know for sure which hub instance may be accessed at any given time. However we will designate one DNS location as "primary" and which will be the preferred location to view web profile information. + +We must also provide the ability to change the primary to a new location. A look-up of information on the current primary location may provide a "forwarding pointer" which will tell us to update our records and move everything to the new location. There is also the possibility that the primary location is defunct and no longer responding. In that case, a location which has already been mapped to this zot_uid can seize control, and declare itself to be primary. In both cases the primary designation is automatically approved and moved. A request can also be made from a primary location which requests that another location be removed. + +In order to map a zot_uid to a second (or tertiary) location, we require a secure exchange which verifies that the new location is in possession of the private key for this zot_uid. Security of the private key is thus essential to avoid hijacking of identities. + +Communications will then require +[list] +[*] zot_uid (string) +[*] uid_sig +[*] callback (current location Zot endpoint url) +[*] callback_sig +[*] spec (int) +[/list] +passed with every communique. The spec is a revision number of the applicable Zot spec so that communications can be maintained with hubs using older and perhaps incompatible protocol specifications. Communications are verified using a stored public key which was copied when the connection to this zot_uid was first established. + +Key revocation and replacement must take place from the primary hub. The exact form for this is still being worked out, but will likely be a notification to all other bound hubs to "phone home" (to the primary hub) and request a copy of the new key. This communique should be verified using a site or hub key; as the original identity key may have been compromised and cannot be trusted. + +In order to eliminate confusion, there should be exactly one canonical url for any hub, so that these can be indexed and referenced without ambiguity. + +So as to avoid ambiguity of scheme, it is strongly encouraged that all addresses to be https with a "browser valid" cert and a single valid host component (either www.domain.ext or domain.ext, but not both), which is used in all communications. Multiple URLs may be provided locally, but only one unique URL should be used for all Zot communications within the grid. + +Test installation which do not connect to the public grid may use non-SSL, but all traffic flowing over public networks should be safe from session-hijacking, preferably with a "browser recognised" cert. + +Where possible, Zot encourages the use of "batching" to minimise network traffic between two hubs. This means that site 'A' can send multiple messages to site 'B' in a single transaction, and also consolidate deliveries of identical messages to multiple recipients on the same hub. + +Messages themselves may or may not be encrypted in transit, depending on the private nature of the messages. SSL (strongly encouraged) provides unconditional encryption of the data stream, however there is little point in encrypting public communications which have been designated as having unrestricted visibility. The encryption of data storage and so-called "end-to-end encryption" is outside the scope of zot. It is presumed that hub operators will take adequate safeguards to ensure the security of their data stores and these are functions of application and site integrity as opposed to protocol integrity. + + +[h4]Messages[/h4] + +Given the constraints listed previously, a Zot communique should therefore be a json array of individual messages. These can be mixed and combined within the same transmission. + +Each message then requires: +[list] +[*] type +[*] (optional) recipient list +[/list] +Lack of a recipient list would indicate an unencrypted public or site level message. The recipient list would contain an array of zot_uid with an individual decryption key, and a common iv. The decryption key is encoded with the recipient identity's public key. The iv is encrypted with the sender's private key. + +All messages should be digitally signed by the sender. + +The type can be one of (this list is extensible): +[list] +[*] post (or activity) +[*] mail +[*] identity +[*] authenticate +[/list] +Identity messages have no recipients and notify the system social graph of an identity update, which could be a new or deleted identity, a new or deleted location, or a change in primary hub. The signature for these messages uses system keys as opposed to identity-specific keys. + +Posts include many different types of activities, such as top-level posts, likes/dislikes, comments, tagging activities, etc. These types are indicated within the message sturcture. + +authenticate messages result in mutual authentication and browser redirect to protected resources on the remote hub such as the ability to post wall-to-wall messages and view private photo albums and events, etc. + +[h4]Discovery[/h4] + +A well-known url is used to probe a hub for Zot capabilities and identity lookups, including the discovery of public keys, profile locations, profile photos, and primary hub location. + +The location for this service is /.well-known/zot-info - and must be available at the root of the chosen domain. + +To perform a lookup, a POST request is made to the discovery location with the following parameters: + +Required: + +address => an address on the target system such as "john" + +Optional + +target => the Zot "guid" of the observer for evaluating permissions + +target_sig => an RSA signature (base64url encoded) of the guid + +key => The public key needed to verify the signature + +token => a string (possibly random) chosen by the requesting service. If provided, an entry in the discovered packet will be provided called 'signed_token' which consists of the base64url_encoded RSA signature of the concatenation of the string 'token.' and the provided token using the private key of the discovered channel. This can be verified using the provided 'key' entry, and provides assurance that the server is in possession of the private key for the discovered identity. After 2017-01-01 it is [b]required[/b] that a server provide a signed_token [i]if[/i] a token was provided in the request. + +With no target provided, the permissions returned will be generic permissions +for unknown or unauthenticated observers + +Example of discovery packet for 'mike@zothub.com' +[code nowrap] + { + + "success": true, + "signed_token": "KBJrKTq1qrctNuxF3GwVh3GAGRqmgkirlXANPcJZAeWlvSt_9TMV097slR4AYnYCBEushbVqHEJ9Rb5wHTa0HzMbfRo8cRdl2yAirvvv5d98dtwHddQgX1jB0xEypXtmIYMdPGDLvhI1RNdIBhHkkrRcNreRzoy4xD--HM6m1W0-A8PJJJ9BcNxmGPcBtLzW08wzoP9trJ3M7DQ6Gkk6j7iwVsyApw1ZBaDvabGTdc_SFV-Iegtqw3rjzT_xXWsfzMlKBy-019MYn_KS-gu23YzjvGu5tS_zDfkQb8DMUlPLz5yyxM0yOMlUDtG2qQgIJAU2O0X6T5xDdJ6mtolNyhepg845PvFDEqBQGMIH1nc47CNumeudDi8IWymEALhjG_U8KAK7JVlQTJj2EKUb0au1g6fpiBFab5mmxCMtZEX3Jreyak5GOcFFz-WpxuXJD9TdSoIvaBfBFOoJnXkg2zE4RHXeQzZ2FotmrbBG5dm8B-_6byYGoHBc08ZsWze1K96JIeRnLpBaj6ifUDcVHxZMPcGHHT27dvU2PNbgLiBjlAsxhYqkhN5qOHN8XBcg2KRjcMBaI3V0YMxlzXz5MztmZq3fcB1p-ccIoIyMPMzSj3yMB7J9CEU2LYPSTHMdPkIeDE6GaCkQKviaQQJQde346tK_YjA2k7_SOBmvPYE", + "guid": "sebQ-IC4rmFn9d9iu17m4BXO-kHuNutWo2ySjeV2SIW1LzksUkss12xVo3m3fykYxN5HMcc7gUZVYv26asx-Pg", + "guid_sig": "Llenlbl4zHo6-g4sa63MlQmTP5dRCrsPmXHHFmoCHG63BLq5CUZJRLS1vRrrr_MNxr7zob_Ykt_m5xPKe5H0_i4pDj-UdP8dPZqH2fqhhx00kuYL4YUMJ8gRr5eO17vsZQ3XxTcyKewtgeW0j7ytwMp6-hFVUx_Cq08MrXas429ZrjzaEwgTfxGnbgeQYQ0R5EXpHpEmoERnZx77VaEahftmdjAUx9R4YKAp13pGYadJOX5xnLfqofHQD8DyRHWeMJ4G1OfWPSOlXfRayrV_jhnFlZjMU7vOdQwHoCMoR5TFsRsHuzd-qepbvo3pzvQZRWnTNu6oPucgbf94p13QbalYRpBXKOxdTXJrGdESNhGvhtaZnpT9c1QVqC46jdfP0LOX2xrVdbvvG2JMWFv7XJUVjLSk_yjzY6or2VD4V6ztYcjpCi9d_WoNHruoxro_br1YO3KatySxJs-LQ7SOkQI60FpysfbphNyvYMkotwUFI59G08IGKTMu3-GPnV1wp7NOQD1yzJbGGEGSEEysmEP0SO9vnN45kp3MiqbffBGc1r4_YM4e7DPmqOGM94qksOcLOJk1HNESw2dQYWxWQTBXPfOJT6jW9_crGLMEOsZ3Jcss0XS9KzBUA2p_9osvvhUKuKXbNztqH0oZIWlg37FEVsDs_hUwUJpv2Ar09k4", + "key": "-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA7QCwvuEIwCHjhjbpz3Oc\ntyei/Pz9nDksNbsc44Cm8jxYGMXsTPFXDZYCcCB5rcAhPPdZSlzaPkv4vPVcMIrw\n5cdX0tvbwa3rNTng6uFE7qkt15D3YCTkwF0Y9FVZiZ2Ko+G23QeBt9wqb9dlDN1d\nuPmu9BLYXIT/JXoBwf0vjIPFM9WBi5W/EHGaiuqw7lt0qI7zDGw77yO5yehKE4cu\n7dt3SakrXphL70LGiZh2XGoLg9Gmpz98t+gvPAUEotAJxIUqnoiTA8jlxoiQjeRK\nHlJkwMOGmRNPS33awPos0kcSxAywuBbh2X3aSqUMjcbE4cGJ++/13zoa6RUZRObC\nZnaLYJxqYBh13/N8SfH7d005hecDxWnoYXeYuuMeT3a2hV0J84ztkJX5OoxIwk7S\nWmvBq4+m66usn6LNL+p5IAcs93KbvOxxrjtQrzohBXc6+elfLVSQ1Rr9g5xbgpub\npSc+hvzbB6p0tleDRzwAy9X16NI4DYiTj4nkmVjigNo9v2VPnAle5zSam86eiYLO\nt2u9YRqysMLPKevNdj3CIvst+BaGGQONlQalRdIcq8Lin+BhuX+1TBgqyav4XD9K\nd+JHMb1aBk/rFLI9/f2S3BJ1XqpbjXz7AbYlaCwKiJ836+HS8PmLKxwVOnpLMbfH\nPYM8k83Lip4bEKIyAuf02qkCAwEAAQ==\n-----END PUBLIC KEY-----\n", + "name": "Mike Macgirvin", + "name_updated": "2012-12-06 04:59:13", + "address": "mike@zothub.com", + "photo_mimetype": "image/jpeg", + "photo": "https://zothub.com/photo/profile/l/1", + "photo_updated": "2012-12-06 05:06:11", + "url": "https://zothub.com/channel/mike", + "connections_url": "https://zothub.com/poco/mike", + "target": "", + "target_sig": "", + "searchable": false, + "permissions": { + "view_stream": true, + "view_profile": true, + "view_photos": true, + "view_contacts": true, + "view_storage": true, + "view_pages": true, + "send_stream": false, + "post_wall": false, + "post_comments": false, + "post_mail": false, + "post_photos": false, + "tag_deliver": false, + "chat": false, + "write_storage": false, + "write_pages": false, + "delegate": false + }, + "profile": { + "description": "Freedom Fighter", + "birthday": "0000-05-14", + "next_birthday": "2013-05-14 00:00:00", + "gender": "Male", + "marital": "It's complicated", + "sexual": "Females", + "locale": "", + "region": "", + "postcode": "", + "country": "Australia" + }, + "locations": [ + { + "host": "zothub.com", + "address": "mike@zothub.com", + "primary": true, + "url": "https://zothub.com", + "url_sig": "eqkB_9Z8nduBYyyhaSQPPDN1AhSm5I4R0yfcFxPeFpuu17SYk7jKD7QzvmsyahM5Kq7vDW6VE8nx8kdFYpcNaurqw0_IKI2SWg15pGrhkZfrCnM-g6A6qbCv_gKCYqXvwpSMO8SMIO2mjQItbBrramSbWClUd2yO0ZAceq3Z_zhirCK1gNm6mGRJaDOCuuTQNb6D66TF80G8kGLklv0o8gBfxQTE12Gd0ThpUb5g6_1L3eDHcsArW_RWM2XnNPi_atGNyl9bS_eLI2TYq0fuxkEdcjjYx9Ka0-Ws-lXMGpTnynQNCaSFqy-Fe1aYF7X1JJVJIO01LX6cCs-kfSoz29ywnntj1I8ueYldLB6bUtu4t7eeo__4t2CUWd2PCZkY3PKcoOrrnm3TJP5_yVFV_VpjkcBCRj3skjoCwISPcGYrXDufJxfp6bayGKwgaCO6QoLPtqqjPGLFm-fbn8sVv3fYUDGilaR3sFNxdo9mQ3utxM291XE2Pd0jGgeUtpxZSRzBuhYeOybu9DPusID320QbgNcbEbEImO8DuGIxuVRartzEXQF4WSYRdraZzbOqCzmU0O55P836JAfrWjgxTQkXlYCic-DBk-iE75JeT72smCtZ4AOtoFWCjZAABCw42J7JELY9APixZXWriKtjy6JI0G9d3fs6r7SrXr1JMy0", + "callback": "https://zothub.com/post", + "sitekey": "-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA1IWXwd/BZuevq8jzNFoR\n3VkenduQH2RpR3Wy9n4+ZDpbrUKGJddUGm/zUeWEdKMVkgyllVA/xHdB7jdyKs1X\nuIet9mIdnzvhdLO/JFD5hgbNG2wpSBIUY6aSNeCFTzszqXmuSXMW5U0Ef5pCbzEA\nnhoCoGL1KAgPqyxnGKUlj7q2aDwC9IRNtAqNyFQL67oT91vOQxuMThjlDhbR/29Q\ncYR4i1RzyahgEPCnHCPkT2GbRrkAPjNZAdlnk9UesgP16o8QB3tE2j50TVrbVc/d\nYRbzC56QMPP9UgUsapNeSJBHji75Ip/E5Eg/kfJC/HEQgyCqjCGfb7XeUaeQ7lLO\nqc7CGuMP+Jqr/cE54/aSHg8boTwxkMp11Ykb+ng17fl57MHTM2RJ99qZ1KBkXezR\nuH1lyvjzeJPxEFr9rkUqc4GH74/AgfbgaFvQc8TS7ovEa5I/7Pg04m7vLSEYc6UF\nYJYxXKrzmZT2TDoKeJzaBBx5MFLhW19l68h9dQ8hJXIpTP0hJrpI+Sr6VUAEfFQC\ndIDRiFcgjz6j7T/x8anqh63/hpsyf2PMYph1+4/fxtSCWJdvf+9jCRM8F1IDfluX\n87gm+88KBNaklYpchmGIohbjivJyru41CsSLe0uinQFvA741W00w6JrcrOAX+hkS\nRQuK1dDVwGKoIY85KtTUiMcCAwEAAQ==\n-----END PUBLIC KEY-----\n" + } + ], + "site": { + "url": "https://zothub.com", + "directory_mode": "primary", + "directory_url": "https://zothub.com/dirsearch" + } + + } +[/code] + + +Discovery returns a JSON array with the following components: + +'success' => ('1' or '') Operation was successful if '1'. Otherwise an optional 'message' may be present indicating the source of error. + +'signed_token' => If a token parameter was provided in the request, it is prepended with the text 'token.' and then RSA signed with the channel private key and base64url encoded and returned as 'signed_token'. + +'guid' => the guid of the address on the target system + +'guid_sig' => the base64url encoded RSA signature of the guid, signed with the private key associated with that guid. + +'key' => the public key associated with that guid + +'name' => channel name + +'name_updated' => MySQL style timestamp '2012-01-01 00:00:00' when the name was last changed (UTC) + +'address' => "webbie" or user@host address associated with this channel + +'photo' => URL of a profile photo for this channel (ideally 175x175) + +'photo_mimetype' => content-type of the profile photo + +'photo_updated' => MySQL style timestamp when photo was last updated (UTC) + +'url' => location of channel homepage + +'connections_url' => location of Portable Contacts (extended for zot) URL for this channel + +'target' => if a permissions target was specified, it is mirrored + +'target_sig' => if a permissions target was specified, the signature is mirrored. + +'searchable' => ('1' or '') '1' indicates this entry can be searched in a directory + +[h5]Permissions[/h5] + + +'permisssions' => extensible array of permissions appropriate to this target, values are '1' or '' + + Permissions may include: +[list] +[*] view_stream +[*] view_profile +[*] view_photos +[*] view_contacts +[*] view_storage +[*] view_pages +[*] send_stream +[*] post_wall +[*] post_comments +[*] post_mail +[*] post_photos +[*] tag_deliver +[*] chat +[*] write_storage +[*] write_pages +[*] delegate +[/list] + + +[h5]Profile[/h5] + + +'profile' => array of important profile fields +[list] +[*] description +[*] birthday YYYY-MM-DD , all fields are optional, any field (such as year) may be zero +[*] next_birthday => MySQL datetime string representing the next upcoming birthday, converted from the channel's default timezone to UTC. +[*] gender (free form) +[*] marital (marital status) +[*] sexual (preference) +[*] locale (city) +[*] region (state) +[*] postcode +[*] country +[/list] + +[h5]Locations[/h5] + + +'locations' => array of registered locations (DNS locations) this channel may be visible or may be posting from + +Each location is an array of + +'host' => DNS hostname, e.g. example.com + +'address' => the webbie or user@host identifier associated with this location + +'primary' => ('1' or '') whether or not this is the primary location for this channel where files and web pages are generally found + +'url' => url of the root of this DNS location e.g. https://example.com + +'url_sig' => base64url encoded RSA signature of the URL, signed with the channel private key + +'callback' => Zot communications endpoint on this site, usually https://example.com/post + +'sitekey' => public key of this site/host + + +[h5]Site[/h5] + + +'site' => array providing the directory role of the site responding to this request + +'url' => url of this site e.g. https://example.com + +'directory_mode' => one of 'primary', 'secondary', 'normal', or 'standalone' + +'directory_url' => if this is a directory server or standalone, the URL for the directory search module + + + +[h3]Magic Auth[/h3] + +So-called "magic auth" takes place by a special exchange. On the remote computer, a redirection is made to the Zot endpoint with special GET parameters. + +Endpoint: https://example.com/post/name + +where 'name' is the left hand side of the channel webbie, for instance 'mike' where the webbie is 'mike@zothub.com' + +Additionally four parameters are supplied: +[list] +[*] auth => the webbie of the person requesting access +[*] dest => the desired destination URL (urlencoded) +[*] sec => a random string which is also stored locally for use during the verification phase. +[*] version => the Zot revision +[/list] +When this packet is received, a Zot message is initiated to the auth identity: + +[code nowrap] + { + "type":"auth_check", + "sender":{ + "guid":"kgVFf_1_SSbyqH-BNWjWuhAvJ2EhQBTUdw-Q1LwwssAntr8KTBgBSzNVzUm9_RwuDpxI6X8me_QQhZMf7RfjdA", + "guid_sig":"PT9-TApzpm7QtMxC63MjtdK2nUyxNI0tUoWlOYTFGke3kNdtxSzSvDV4uzq_7SSBtlrNnVMAFx2_1FDgyKawmqVtRPmT7QSXrKOL2oPzL8Hu_nnVVTs_0YOLQJJ0GYACOOK-R5874WuXLEept5-KYg0uShifsvhHnxnPIlDM9lWuZ1hSJTrk3NN9Ds6AKpyNRqf3DUdz81-Xvs8I2kj6y5vfFtm-FPKAqu77XP05r74vGaWbqb1r8zpWC7zxXakVVOHHC4plG6rLINjQzvdSFKCQb5R_xtGsPPfvuE24bv4fvN4ZG2ILvb6X4Dly37WW_HXBqBnUs24mngoTxFaPgNmz1nDQNYQu91-ekX4-BNaovjDx4tP379qIG3-NygHTjFoOMDVUvs-pOPi1kfaoMjmYF2mdZAmVYS2nNLWxbeUymkHXF8lT_iVsJSzyaRFJS1Iqn7zbvwH1iUBjD_pB9EmtNmnUraKrCU9eHES27xTwD-yaaH_GHNc1XwXNbhWJaPFAm35U8ki1Le4WbUVRluFx0qwVqlEF3ieGO84PMidrp51FPm83B_oGt80xpvf6P8Ht5WvVpytjMU8UG7-js8hAzWQeYiK05YTXk-78xg0AO6NoNe_RSRk05zYpF6KlA2yQ_My79rZBv9GFt4kUfIxNjd9OiV1wXdidO7Iaq_Q", + "url":"http:\/\/podunk.edu", + "url_sig":"T8Bp7j5DHHhQDCFcAHXfuhUfGk2P3inPbImwaXXF1xJd3TGgluoXyyKDx6WDm07x0hqbupoAoZB1qBP3_WfvWiJVAK4N1FD77EOYttUEHZ7L43xy5PCpojJQmkppGbPJc2jnTIc_F1vvGvw5fv8gBWZvPqTdb6LWF6FLrzwesZpi7j2rsioZ3wyUkqb5TDZaNNeWQrIEYXrEnWkRI_qTSOzx0dRTsGO6SpU1fPWuOOYMZG8Nh18nay0kLpxReuHCiCdxjXRVvk5k9rkcMbDBJcBovhiSioPKv_yJxcZVBATw3z3TTE95kGi4wxCEenxwhSpvouwa5b0hT7NS4Ay70QaxoKiLb3ZjhZaUUn4igCyZM0h6fllR5I6J_sAQxiMYD0v5ouIlb0u8YVMni93j3zlqMWdDUZ4WgTI7NNbo8ug9NQDHd92TPmSE1TytPTgya3tsFMzwyq0LZ0b-g-zSXWIES__jKQ7vAtIs9EwlPxqJXEDDniZ2AJ6biXRYgE2Kd6W_nmI7w31igwQTms3ecXe5ENI3ckEPUAq__llNnND7mxp5ZrdXzd5HHU9slXwDShYcW3yDeQLEwAVomTGSFpBrCX8W77n9hF3JClkWaeS4QcZ3xUtsSS81yLrp__ifFfQqx9_Be89WVyIOoF4oydr08EkZ8zwlAsbZLG7eLXY" + }, + "recipients":{ + { + "guid":"ZHSqb3yGar3TYV_o9S-JkD-6o_V4DhUcxtv0VeyX8Kj_ENHPI_M3SyAUucU835-mIayGMmTpqJz3ujPkcavVhA", + "guid_sig":"JsAAXigNghTkkbq8beGMJjj9LBKZn28hZ-pHSsoQuwYWvBJ2lSnfc4r9l--WgO6sucH-SR6RiBo78eWn1cZrh_cRMu3x3LLx4y-tjixg-oOOgtZakkBg4vmOhkKPkci0mFtzvUrpY4YHySqsWTuPwRx_vOlIYIGEY5bRXpnkNCoC8J4EJnRucDrgSARJvA8QQeQQL0H4mWEdGL7wlsZp_2VTC6nEMQ48Piu6Czu5ThvLggGPDbr7PEMUD2cZ0jE4SeaC040REYASq8IdXIEDMm6btSlGPuskNh3cD0AGzH2dMciFtWSjmMVuxBU59U1I6gHwcxYEV6BubWt_jQSfmA3EBiPhKLyu02cBMMiOvYIdJ3xmpGoMY1Cn__vhHnx_vEofFOIErb6nRzbD-pY49C28AOdBA5ffzLW3ss99d0A-6GxZmjsyYhgJu4tFUAa7JUl84tMbq28Tib0HW6qYo6QWw8K1HffxcTpHtwSL5Ifx0PAoGMJsGDZDD1y_r9a4vH5pjqmGrjL3RXJJUy-m4eLV5r7xMWXsxjqu3D8r04_dcw4hwwexpMT1Nwf8CTB0TKb8ElgeOpDFjYVgrqMYWP0XdhatcFtAJI7gsS-JtzsIwON9Kij66-VAkqy_z1IXI0ziyqV1yapSVYoUV1vMScRZ_nMqwiB5rEDx-XLfzko" + } + } + "callback":"\/post", + "version":1, + "secret":"1eaa6613699be6ebb2adcefa5379c61a3678aa0df89025470fac871431b70467", + "secret_sig":"eKV968b1sDkOVdSMi0tLRtOhQw4otA8yFKaVg6cA4I46_zlAQGbFptS-ODiZlSAqR7RiiZQv4E2uXCKar52dHo0vvNKbpOp_ezWYcwKRu1shvAlYytsflH5acnDWL-FKOOgz5zqLLZ6cKXFMoR1VJGG_Od-DKjSwajyV9uVzTry58Hz_w0W2pjxwQ-Xv11rab5R2O4kKSW77YzPG2R5E6Q7HN38FrLtyWD_ai3K9wlsFOpwdYC064dk66X7BZtcIbKtM6zKwMywcfJzvS5_0U5yc5GGbIY_lY6SViSfx9shOKyxkEKHfS29Ynk9ATYGnwO-jnlMqkJC7t149H-sI9hYWMkLuCzaeLP56k2B2TmtnYvE_vHNQjzVhTwuHCIRVr-p6nplQn_P3SkOpYqPi3k_tnnOLa2d3Wtga8ClEY90oLWFJC3j2UkBf_VEOBNcg-t5XO3T-j9O4Sbk96k1Qoalc-QlznbGx4bOVsGkRBBMiH4YUqiiWB_OkFHtdqv7dqGeC-u-B4u9IxzYst46vvmyA3O-Q4APSZ1RY8ITUH0jLTbh6EAV7Oki8pIbOg0t56p-8RlanOZqmFvR-grVSc7Ak1ZcD8NACmvidUpa1B7WEvRcOeffx9lype0bt5XenDnMyx6szevwxZIiM8qGM2lsSk4fu8HI9cW0mLywzZT0" + } +[/code] + +auth_check messages MUST be encrypted with AES256CBC. This message is sent to the origination site, which checks the 'secret' to see if it is the same as the 'sec' which it passed originally. It also checks the secret_sig which is the secret signed by the destination channel's private key and base64url encoded. If everything checks out, a json packet is returned: +[code nowrap] + { + "success":1, + "confirm":"q0Ysovd1uQRsur2xG9Tg6bC23ynzw0191SkVd7CJcYoaePy6e_v0vnmPg2xBUtIaHpx_aSuhgAkd3aVjPeaVBmts6aakT6a_yAEy7l2rBydntu2tvrHhoVqRNOmw0Q1tI6hwobk1BgK9Pm0lwOeAo8Q98BqIJxf47yO9pATa0wktOg6a7LMogC2zkkhwOV5oEqjJfeHeo27TiHr1e2WaphfCusjmk27V_FAYTzw05HvW4SPCx55EeeTJYIwDfQwjLfP4aKV-I8HQCINt-2yxJvzH7Izy9AW-7rYU0Il_gW5hrhIS5MTM12GBXLVs2Ij1CCLXIs4cO0x6e8KEIKwIjf7iAu60JPmnb_fx4QgBlF2HLw9vXMwZokor8yktESoGl1nvf5VV5GHWSIKAur3KPS2Tb0ekNh-tIk9u-xob4d9eIf6tge_d3aq1LcAtrDBDLk8AD0bho5zrVuTmZ9k-lBVPr_DRHSV_dlpu088j3ThaBsuV1olHK3vLFRhYCDIO0CqqK5IuhqtRNnRaqhlNN6fQUHpXk2SwHiJ2W36RCYMTnno6ezFk_tN-RA2ly-FomNZoC5FPA9gFwoJR7ZmVFDmUeK3bW-zYTA5vu15lpBPnt7Up_5rZKkr0WQVbhWJmylqOuwuNWbn3SrMQ8rYFZ23Tv300cOfKVgRBaePWQb4" + } +[/code] +'confirm' in this case is the base64url encoded RSA signature of the concatenation of 'secret' with the base64url encoded whirlpool hash of the source guid and guid_sig; signed with the source channel private key. This prevents a man-in-the-middle from inserting a rogue success packet. Upon receipt and successful verification of this packet, the destination site will redirect to the original destination URL and indicate a successful remote login. + +[h3]Zot Structures[/h3] +[h4]Zot Signatures[/h4] +All signed data in Zot is accomplished by performing an RSA sign operation using the private key of the initiator. The binary result is then base64url encoded for transport. +[h4]Zot Encryption[/h4] +Encryption is currently provided by AES256-CBC, the Advanced Encryption Standard using 256-bit keys and the Cipher Block Chaining mode of operation. Additional algorithms MAY be supported. A 32-octet key and 16-octet initialisation vector are randomly generated. The desired data is then encrypted using these generated strings and the result base64url encoded. Then we build an array: + +[dl terms="b"] +[*= data]The base64url encoded encrypted data +[*= alg]The chosen algorithm, in this case the string 'aes256cbc'. +[*= key]The randomly generated key, RSA encrypted using the recipients public key, and the result base64url encoded +[*= iv]The randomly generated initialization vector, RSA encrypted using the recipient's public key, and the result base64url encoded +[/dl] + +[h4]Basic Zot Packet[/h4] +Used for initiating a dialogue with another Zot site. This packet MAY be encrypted. The presence of an array element 'iv' indicates encryption has been applied. When sending an 'auth_check' packet type, this packet MUST be encrypted, using the public key of the destination site (the site key, as opposed to a sender key). + +[code nowrap] + { + "type":"notify", + "sender":{ + "guid":"kgVFf_1_SSbyqH-BNWjWuhAvJ2EhQBTUdw-Q1LwwssAntr8KTBgBSzNVzUm9_RwuDpxI6X8me_QQhZMf7RfjdA", + "guid_sig":"PT9-TApzpm7QtMxC63MjtdK2nUyxNI0tUoWlOYTFGke3kNdtxSzSvDV4uzq_7SSBtlrNnVMAFx2_1FDgyKawmqVtRPmT7QSXrKOL2oPzL8Hu_nnVVTs_0YOLQJJ0GYACOOK-R5874WuXLEept5-KYg0uShifsvhHnxnPIlDM9lWuZ1hSJTrk3NN9Ds6AKpyNRqf3DUdz81-Xvs8I2kj6y5vfFtm-FPKAqu77XP05r74vGaWbqb1r8zpWC7zxXakVVOHHC4plG6rLINjQzvdSFKCQb5R_xtGsPPfvuE24bv4fvN4ZG2ILvb6X4Dly37WW_HXBqBnUs24mngoTxFaPgNmz1nDQNYQu91-ekX4-BNaovjDx4tP379qIG3-NygHTjFoOMDVUvs-pOPi1kfaoMjmYF2mdZAmVYS2nNLWxbeUymkHXF8lT_iVsJSzyaRFJS1Iqn7zbvwH1iUBjD_pB9EmtNmnUraKrCU9eHES27xTwD-yaaH_GHNc1XwXNbhWJaPFAm35U8ki1Le4WbUVRluFx0qwVqlEF3ieGO84PMidrp51FPm83B_oGt80xpvf6P8Ht5WvVpytjMU8UG7-js8hAzWQeYiK05YTXk-78xg0AO6NoNe_RSRk05zYpF6KlA2yQ_My79rZBv9GFt4kUfIxNjd9OiV1wXdidO7Iaq_Q", + "url":"http:\/\/podunk.edu", + "url_sig":"T8Bp7j5DHHhQDCFcAHXfuhUfGk2P3inPbImwaXXF1xJd3TGgluoXyyKDx6WDm07x0hqbupoAoZB1qBP3_WfvWiJVAK4N1FD77EOYttUEHZ7L43xy5PCpojJQmkppGbPJc2jnTIc_F1vvGvw5fv8gBWZvPqTdb6LWF6FLrzwesZpi7j2rsioZ3wyUkqb5TDZaNNeWQrIEYXrEnWkRI_qTSOzx0dRTsGO6SpU1fPWuOOYMZG8Nh18nay0kLpxReuHCiCdxjXRVvk5k9rkcMbDBJcBovhiSioPKv_yJxcZVBATw3z3TTE95kGi4wxCEenxwhSpvouwa5b0hT7NS4Ay70QaxoKiLb3ZjhZaUUn4igCyZM0h6fllR5I6J_sAQxiMYD0v5ouIlb0u8YVMni93j3zlqMWdDUZ4WgTI7NNbo8ug9NQDHd92TPmSE1TytPTgya3tsFMzwyq0LZ0b-g-zSXWIES__jKQ7vAtIs9EwlPxqJXEDDniZ2AJ6biXRYgE2Kd6W_nmI7w31igwQTms3ecXe5ENI3ckEPUAq__llNnND7mxp5ZrdXzd5HHU9slXwDShYcW3yDeQLEwAVomTGSFpBrCX8W77n9hF3JClkWaeS4QcZ3xUtsSS81yLrp__ifFfQqx9_Be89WVyIOoF4oydr08EkZ8zwlAsbZLG7eLXY" + "sitekey":"-----BEGIN PUBLIC KEY----- +MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAxTeIwXZWrw/S+Ju6gewh +LgkKnNNe2uCUqCqMZoYgJar3T5sHCDhvXc4dDCbDkxVIaA/+V1mURtBV60a3IGjn +OAO0W0XGGLe2ED7G5o9U8T9mVGq8Mauv0v1oQ5wIR1gEAhBavkQ2OUGuF/YKn2nj +HlKsv9HzUAHpcDMUe3Uklc2RhQbMcnJxEgkyjCkDyrTtCZzISkTAocHvpCG1KSog +njUZdiz9UWxvM4rCFkCJvQU4RwRZJb7GA9ul+9JrF7NvUQTx8csRP2weBk1E9yyj +wbe187E0eVj9RXX2Mx3mYhgrTdodxLOVMSXZLg1/SMpeFFl7QBhuM0SiOPg8a7Et +e2iNA/RD4WiUFqCDfafasRa1TOozOm7LA+08lkAh5PeQPJsJbrX0wVVft++Y+5/z +BvcUOP73vcbz7j5hJ7HLsbQtye/UUCfODBFybuDqRM84Aet8rjZohX7vukXdMD4I +2HuB7pjR4uIfyYr0J63ANkvbsn8LR+RnirmHrK5H/OgxxjXcfYbGEQgFxvxhF6lA +FpMu6Do4dx3CIb6pRmZ8bjSImXexJ0BSo9n3gtrz0XYLecsYFlQ9+QQjm83qxyLb +M23in0xqMVsyQvzjNkpImrO/QdbEFRIIMee83IHq+adbyjQR49Z2hNEIZhkLPc3U +2cJJ2HkzkOoF2K37qwIzk68CAwEAAQ== +-----END PUBLIC KEY----- +" + }, + "recipients":{ + { + "guid":"lql-1VnxtiO4-WF0h72wLX1Fu8szzHDOXgQaTbELwXW77k8AKFfh-hYr70vqMrc3SSvWN-Flrc5HFhRTWB7ICw", + "guid_sig":"PafvEL0VpKfxATxlCqDjfOeSIMdmpr3iU7X-Sysa1h5LzDpjSXsjO37tYZL-accb1M5itLlfnW5epkTa5I4flsW21zSY1A2jCuBQUTLLGV7rNyyBy7lgqJUFvAMRx0TfXzP9lcaPqlM9T1tA6jfWOsOmkdzwofGeXBnsjGfjsO2xdGYe6vwjOU0DSavukvzDMnOayB9DekpvDnaNBTxeGLM45Skzr7ZEMcNF7TeXMbnvpfLaALYEKeQs9bGH-UgAG8fBWgzVAzeBfx_XSR1rdixjyiZGP0kq0h35SlmMPcEjliodOBFwMXqpXFB7Ibp4F6o6te2p2ErViJccQVG8VNKB6SbKNXY6bhP5zVcVsJ-vR-p4xXoYJJvzTN7yTDsGAXHOLF4ZrXbo5yi5gFAlIrTLAF2EdWQwxSGyLRWKxG8PrDkzEzX6cJJ0VRcLh5z6OI5QqQNdeghPZbshMFMJSc_ApCPi9_hI4ZfctCIOi3T6bdgTNKryLm5fhy_eqjwLAZTGP-aUBgLZpb1mf2UojBn6Ey9cCyq-0T2RWyk-FcIcbV4qJ-p_8oODqw13Qs5FYkjLr1bGBq82SuolkYrXEwQClxnrfKa4KYc2_eHAXPL01iS9zVnI1ySOCNJshB97Odpooc4wk7Nb2Fo-Q6THU9zuu0uK_-JbK7IIl6go2qA" + }, + }, + "callback":"\/post", + "version":"1.2", + "encryption":{ + "aes256cbc" + }, + "secret":"1eaa6613699be6ebb2adcefa5379c61a3678aa0df89025470fac871431b70467", + "secret_sig":"0uShifsvhHnxnPIlDM9lWuZ1hSJTrk3NN9Ds6AKpyNRqf3DUdz81-Xvs8I2kj6y5vfFtm-FPKAqu77XP05r74vGaWbqb1r8zpWC7zxXakVVOHHC4plG6rLINjQzvdSFKCQb5R_xtGsPPfvuE24bv4fvN4ZG2ILvb6X4Dly37WW_HXBqBnUs24mngoTxFaPgNmz1nDQNYQu91-ekX4-BNaovjDx4tP379qIG3-NygHTjFoOMDVUvs-pOPi1kfaoMjmYF2mdZAmVYS2nNLWxbeUymkHXF8lT_iVsJSzyaRFJS1Iqn7zbvwH1iUBjD_pB9EmtNmnUraKrCU9eHES27xTwD-yaaH_GHNc1XwXNbhWJaPFAm35U8ki1Le4WbUVRluFx0qwVqlEF3ieGO84PMidrp51FPm83B_oGt80xpvf6P8Ht5WvVpytjMU8UG7-js8hAzWQeYiK05YTXk-78xg0AO6NoNe_RSRk05zYpF6KlA2yQ_My79rZBv9GFt4kUfIxNjd9OiV1wXdidO7Iaq_Q" + } +[/code] + +[dl terms="b"] +[*= type] The message type: [b]notify, purge, refresh, force_refresh, auth_check, ping[/b] or [b]pickup[/b]. The packet contents vary by message type. Here we will describe the [b]notify[/b] packet. +[*= callback]A string to be appended onto the url which identifies the Zot communications endpoint on this system. It is typically the string "/post". +[*= version]The Zot protocol identifier, to allow future protocol revisions to co-exist. +[*= encryption] array of supported encryption algorithms, order by decreasing preference. If no compatible encryption methods are provided, applications MUST use 'aes256cbc'. +[*= secret]A 64-char string which is randomly generated by the sending site. +[*= secret_sig]The RSA signature of the secret, signed with the sender's private key. +[*= sender] An array of four components that provide a portable identity. We can contact the URL provided and download a Zot info packet to obtain the public key of the sender, and use that to verify the sender guid and the posting URL signatures. + [dl terms="b"] + [*= guid]Typically a 64 character base64url encoded string. This is generated when an identity is created and an attempt is made that it be unique; though this isn't required. + [*= guid_sig]The RSA signature of the guid, signed by the sender's private key and base64url encoded. + [*= url]The base url of the location this post is originating from. + [*= url_sig]The RSA signature of url, signed by the sender's private key and base64url encoded. + [*= sitekey]The public key of the website specified in the url + [/dl] +[*= recipients] Only used for private messages. An array of envelope recipients. Each recipient is represented by an array of guid and guid_sig. When recipients are specified, the entire packet is also encapsulated using a negotiated cryptographic algorithm or 'aes256cbc' if none could be negotiated. + [dl terms="b"] + [*= guid]The guid of a private recipient. + [*= guid_sig]The RSA signature of the guid, signed by the recipient's private key and base64url encoded + [/dl] +[/dl] diff --git a/doc/hook/stream_item.bb b/doc/hook/stream_item.bb new file mode 100644 index 000000000..30086961d --- /dev/null +++ b/doc/hook/stream_item.bb @@ -0,0 +1,13 @@ +[h2]stream_item[/h2] + + +Called for each item processed for viewing by conversation(); + +The hook data consists of an array + + array( + 'mode' => current mode of conversation() + 'item' => item being processed + ); + + Set item['blocked'] to block the item from viewing. This action will not affect comment or sub-thread counts, so if there are three comments in a conversation and you block one, three comments will still be reported even though only two are visible. diff --git a/doc/hook/zot_best_algorithm.bb b/doc/hook/zot_best_algorithm.bb new file mode 100644 index 000000000..ccde505cb --- /dev/null +++ b/doc/hook/zot_best_algorithm.bb @@ -0,0 +1,3 @@ +[h2]zot_best_algorithm[/h2] + + diff --git a/doc/hooklist.bb b/doc/hooklist.bb index 52af9608c..863824590 100644 --- a/doc/hooklist.bb +++ b/doc/hooklist.bb @@ -542,6 +542,9 @@ Hooks allow plugins/addons to "hook into" the code at many points and alter the [zrl=[baseurl]/help/hook/smilie]smilie[/zrl] Called when translating emoticons +[zrl=[baseurl]/help/hook/stream_item]stream_item[/zrl] + Called for each item which is rendered for viewing via conversation() + [zrl=[baseurl]/help/hook/tagged]tagged[/zrl] Called when a delivery is processed which results in you being tagged @@ -554,6 +557,9 @@ Hooks allow plugins/addons to "hook into" the code at many points and alter the [zrl=[baseurl]/help/hook/well_known]well_known[/zrl] Called when accessing the '.well-known' special site addresses +[zrl=[baseurl]/help/hook/zot_best_algorithm]zot_best_algorithm[/zrl] + Called when negotiating crypto algorithms with remote sites + [zrl=[baseurl]/help/hook/zid]zid[/zrl] Called when adding the observer's zid to a URL diff --git a/doc/member/assets/qr_text_to_post.png b/doc/member/assets/qr_text_to_post.png new file mode 100644 index 0000000000000000000000000000000000000000..887c85492e24e6e2146de1d16a0ef9159dc56674 GIT binary patch literal 273 zcmeAS@N?(olHy`uVBq!ia0vp^;ULV&3?#kTy!C+;TYyi9>;M1%fy~fDm+OEOXMsm# zF#`kN5fEmas?8@26x`_P;uvDld-l?9-opw43>P+QTsp|)5!c)|brNTeK7;nfN?sK; z5BJ6z%laux8Ww*IFzvL_rB<`~i=PAmqZ# zgzWl!gG?F?gt!Cnz>i_B=v`O{eQ{ac_sx9-3MgphO(@s!$hY|A^&=|JuaOQQoX7g< zHtGo`?1d6QU38n=5*nZtmK-fAE}~#pB7C(x9)Ey}8M`(1Hl9cS`88y4*(Dn%2B6mp zke^tAe1RVTJtkk9eTof!&EO%(rV7Eg51~#AXdufch+KYX9o&UAI81ErhJ9d;_xl&p z3!QZS%SV$$KJeFIk9PpiZct26VPQXc#5vy=AKk7&J-zOE7m1Jexh>!}uSVi15~yfDG7F zjhqxCt1yNmNH)<>u1z872z#+7@?@A`nK@rY_(YlBI$@aS;``LFhe?3SN||x;U_y{_ zq2`;sq6=xizNl@<)uJFAS;HJx(2OpR?W}6tRMk@qT2*h~3*t_S6FEF96E`ewz5o;clzrIt4Lz^^!iODG z`3OaTKtuXZ@+5$yAN3AU%Eb7fKmvx2F8yHW15G-&#MKr(&%jbs7=LHi!%b_!}()#ri&MOJSE~FAnZ|<#*TcC+DL86Kz~ z&APvW`K6ljhrs}0?*bl96|r%3EX%-|;8#3XD$+RALA~V+(vK?K2N@j6Z{fHh&L_GS zKf_nDE58Txs*vx)eLIdq>cTfWR9?T%K%!SN#BYnkyj1-iu%@anC8VT?w!pTywjhsi zi+*je{&ZAnq7o>ltWZBER-HK6o$XSN8Zl<%H~0@Rv2s-lNsGhj+MaI3pTR@^tf2N^ z!!Kk5y{}-=goTLZeE|Xt{h;H@2@3rH zGm3!zTQ_(b#M)qIkvomNZ*kIy-ErJ&0NSn(F~vilzru<)?d?nT1MNWJ;DHVKG2e=S znEhdAz({)$R{+g+0Gs>DzyjFt=GgJhdF?22iG0g zvk$->@OX&p24TXVqb?dB9FTy>8XS%=SRCIm9I_z9T2va|Y5?JuzcYcK7$`y{F`-Kw zHZcxcNS1(QgyaC!5zHg}fnYj;Z3OuaMnjN+9Ku8lL|#G}VNno9o@xPOGZM6bYlfH^ zhbK7oC(4OOBVbn$uOQfr!UGX!6d*b%G?^$cQQT}ly1@l~ZaM%oN>bqH5V8>^y-RwQ zeN~>mD8qcZ2sQ3_D9X^-?^lahm%cYcH+`i#u)5*8#T8I%uqTKo7+27DB(b5}{R4X} z2UK=9ZG2kXv;eB1oIai3n<3XzTpQT9amNEvyDYmMrvY$%*8_OHY5V85)i1ms=)S4^ z_&4we;O)R%Kq2r#Bly@P*<_9IZxGkuP{N=E@CqU3k`Kh9@blq=15N{`hI|fzt{3sH4>}jo`{Fz;S#JyE)UcW zKtx$ZK}4ZM`Gz*5i=$zpKcn+9PST0fq0^fgNElF^>y04HIC>pp4++MJsRC3I7lRk$SaO;Yn{r&DVSbYinGPI{H>XucUec~} zxpH?PcYt_-d%?bgJlQ^Bz^cNsz^cUp$129IV;5$l%Sy;XP0>$jPmN~>WlL!TX@hEi zX=`Y^Xn$(oZ+LIKZG3I4Zai-M*pTAx=O*RO=l0-U_7HWi@BGyX+j-kL>~Vc3dtZNl zdh>c`a<6lQbtLv`@{057cBgjdb~_CT4w()i41tYej+TykfV_YPjX;fTjhc;Uh_ptH zOs!15K=>e#F0{hWF5N2JD&#I2tT&)dta^|v-ZJv5EV(SoJkz}EBpkgfJyqRbJzqU* zCAu}fHOBpyd-Y2la87WlaQpy5#5>}BqGF)s9EnRYeKBP*+E~?C>X^kCTS`y)NX1J(fd(4~fBkQ9Ij0{YLXwFb_Noz@qX~t1JYDa3<5@0ph8oQ0q z<>s2qS`-!w>yUM4=WSGMr)=32N6x5>V%7(niVfyG%3|?J?i|i0b?2(r{pe(&C!r^D z7i3qyv@x_G^c0pit1@E|rY=)9+nRafc-bPlk+o^I&4x|C<({GA#6e1V znZ-|w>eJ|q_Ep&iRj2H>6p!53_z?e)T9KH+=;D$?+HqK_#FV5(hRT+uUrWm8S*&F- z#WDetQd$t};OpnEy;J=)y|x3oW4>XZG+>=UT|(u*y~Iq0jfdZ5t!3A9rZ^@!usDx7 zd+ZZjBU~(;OdKB_s~vLOm|Vx*uw2xfw-3KYf|iL^3TKmcPR~4soLr+uQwwOWI~Teb zJ3(6{ZDdy7?6Iz!>ug$Dm~2X|d-h`PUGI61y9DbCmE}!+sJ+L$O}%5h<6e9p=AWq^ zvhJ22r=Rn{XJAI)(xDe%sKK)#=b$KIGhtaFc~L)D2DlG|N4(2)PF81{=v(UE>tiNEs^=I}=ybi&cdh zd<~z!xSWz5Bb`)XUvN*j%e?CjcGmL!g*MwT+lJxx;l!|UC+5d1r_4s>#_*`>D9p)` zX(wnu6dJou4C*y+BZwZv4CA6x)zg@9QTRMxPR8ng8vQ5^Eq*llFwro%KlDBP9Da;j z&Vgr7a56kKz8N(uoseZw7FR`9+oRg2+*WH--Q=rwX+MI#&d6q}G$WddRpnB3TQFZ* z$lm8m(~4ReT9VCq=G^w`dl59s@!l-=oO;WS+A+KsgiGtBgVAkn-*6Q*wyS%!TefJ4^r-5_EW9Hd-xe+Z@J$@9!jKgeS=&0dQ z_4BUQD(uJ?YbdQ(>v%TZF6ln?AoARCd^YskvlTL@}is`yrv8Tp|>n7*;eHG7= zZ_V`5Om8w|nr7OJ?uJ^K&XQ(J&rvH=JywsPD!FQ`YU{(|@%~WrWla+~L{j4$wYQfF z6CR+qr2!zG2SEQkWE(lU$Far*<|QJUA17P~0px&aEnqdurT=ul7`#*1mXp9!2UJUu z{FQzmro;l(L)EWY@`*uKqel1&RhN{P?Ta$tS}-ekUIaI)KAcMuJK38U##q_p$3d+1 zNphZAvZ|xJtV+2Gj=UI4GE0l4i4~i*cSA%~Wz(t_oz!G2y;^E` zN^4VwOt?+Wrpmh+ER<~aR0XYT&8{uj<~cX6NB1h@K1+{_2iHwW>CMZ?JLU_=n;qN@ zToEt_h#e#Xtcal4Z_R!=(Tf=9$Y0y}A}Fz>qJ9w=(KfM_v2^0%63|k2D;5b=9a2mp zMlG%teYlm(EnQ!y4DU}S$XB&vor#N?n<-50JCA)4LV1ooIJuKq<9RgcG}@FyxVz-5 z_6ry3cBfar67SmgX~=MMyge;j4I3RR&W152G-54RF@HPhHr*aW(P`J5SAKg&9R4~( zDXpAchGkpO?pbv|7JZ*w(rU@9*{rdvu_(8u=}}rp-OSxUa9lpk9rC$)kAf4$dvf0L zTG(q?OhAK3%A`un;|Ey2J&EHsw~%PpRb6q=Ga< zcoK>PHbzeRSH{x1Y<(NktUdjsg}nlMvpelWpTTMTpOmd4e3w7Qfm}h`K`20y0!xKFh3rBXgVRJ0L`y^z+}sr&3quOhj6e

o)ANEpkLgx00ORdb@&Z zVST1@c)0V}vc9|YOKy~Aoo|ncpu{rbEYd`ib11HPd0h?94my--sdCkxRCw4oy-QB5 z%^pjg2%EH~({$W*r+sIi6iKzaP-`ieUv%hfE_xz5ikBKcpSq8jXk@A<-KLswY_}H? z{Ma6KuRia58^@BSw{y0K)|G@>k4Gr=Q`jJrQo^ z%!A#G-xgz*-^Dh!M|w!QefXAmb-!$fy*?r42Ifb{$~W->`QBu}d?3HEA4x1p&!`@? zHl7FYZX5cXOz)-d)lj8TacMkheKpT?2&!Rg<9e`9_^aa0%J@LzMhC|XyzC|1MLv*s znHj=m6KoT@lXihAaxX^8`Uggshd;85Q<_4n{e95H@Jor(Xj`D+z@{OuiS_vW8u)Yc zi{;Dh>&5fUYt%#Cvw=nCgeBE21=^*Kf~^~~UqKN(lzk-)#BT%UWDcDuNh-=Mx6alu z-D7Yk32EGHa4(Os#$7&G%TM-P^lWTr#uwoj=~WJj2>`BT<*ja@6kb|2;FCo|>dqp>5HqcDqo9YTv&j6n< zGSNHI@#;w&vi5WbOG&|rH)J1V_oOkmG_pF~(!3&_$2P8>76N$!EQY*H=G&ebjQykW z-iI0S%ofe?M)I-cxy0Goy-y5npLS=s8@!i3yg;-dOQ4b>p(A19jB!bD$7ylsjyY-^ z1>cLFC>|jPB~K|6=DE$(r{>h=7wP*lioCYo`@hT5q zU5(TaL}tVHtcKWb_c@Xx@~nF%X*g$wzSS;cn#pzyTr~mirI&+lvVrigIRO$|0Coz% zdUK)u8(8_DmjM^5VDa78T&H0TSt;W7pIs)DNU ztHPlR;O>8$AK*`bT@xCS2S)x3EyHWaGxhj9K@^2H3XSEyz8qrqI{Z zSDH}_S2&ri8wB4T`NAn#C_!&pd2@damXgSFeY%R=n9So$S53F=va|IwSPH%90Q-P* zIOv}8(xz8zR3-G5?wELcc}j{vA*&3X9$U`lu2p99JY86{S;nwkV6m}DutI9Ldiz-r zwLrAV_RMT2{^qegzF!;HdFgk})ASPYIR0w46E>Iq^s#36q_}@KpQ2Tn!dJM&yu1u& z+;!9o`QlGp#c~3OwF6=WMS%~e9Dwx`YzamcK~@-{UKmJUHdiZ08|E2zrQUaBVm?A`B`M@-gZ+xr5eSow9#p zesnN(CAPy4+1#?;vXP2`0%>Jk8AoulGRt%)ckO}tk)<*?C)ayU)UD`6GGl?mmU@%S0bWf&ar37XUSH1@f;!5t!gN4q1P9e zn0cD9_e3skbWhs3T_xT;uS12TC8qnTmg^a@G{~^3b$_ zv^RkHK}`f$!I8=M)gxfZNGzg8GfXG+p&&*962py#ss<*c5MD?fflR$7`=K|CFFY>@ z{icE-3F6Vjyv6e+RHb4DG{*jY>AR>BSj=e`4nDjhAM6I6G~QVWY$iKofOgldQ`GtgkhkfIb_ZzxM|d>->c$Q zMb|pmE7)N=+}mB-vb?xg5qFyEY--sABknM6<{#*wilEkz1o1R6Y>^-eYLtkKfQ{Do zjgUTFePzofWj2`7n-gQNh)n6P)h45-JTvzl_0Qyw3_?1OK{7-*2lb>ZV{NDk>G-?^ z?+-2^yT+F0hs-!DFRgNyIP~9WxZN9JOJ-{8nYVc}d@qW+Q8sE8GoSdyUI!tslLO45KgIx@7&gb!E z`ATF{e0$z#UAXOE-}6mPu1$5PLuF=V#bxDb-e{g^Fl$!n5YmazJknLtrBVCo)T@`P zYv{V@cHJP|&wn1jvKUXATw>dN6#h^)=t9H=AB9iF)2pubNdxwehwHW6T3d4*TwAjw zk!IBen!$WJ|HjT_y!0#hwamOg!4)sr@%{e72QxFyqH2tS%$XX=G6T{{yoWm=Mgq>GIF%Aceb#z#s6zw14BC(XC6Yr zzYP8T`nR7Z?iT;EWb5=FT7L-A{nbOqKub^e_uPM=+<&!l%3HXbSgQ+L*qGQl{jtHz z#>T+?ukrtnp8r|=2U6pINLCj5eCZ{SKY4-i2J|c{FCB7usTW!}OZf_2ar#ZP(P=d-i?*!UD43iJjj&*5^69 zzY=E{FMba&U?6~iKR!P^J~%wEuLF4JO+S=#*6EKI7i@lB?E76jcfNSvk6W=f|F7cv z)Bc0B{|p5O`h)DHLk0{x56Z!({5(_Z0n*rk_r~SD1n8s7S)ol3(jRfgPWthW>A`{I z_<(j!*fCG-{d>Uzfn#BO0A9V<9s^hyZ-RHyc>Se0In?9-Z$ytU@Wuu{Zi=};FJ3B_#p#{$DOlLjwT?^e!(iZ*S+t-pvFM-UMnJ3JM7cDV8Ij_=DH*F!dt| z{KJHMF2YYELDL2d?VOz*{WX{ZCOv=r_(jVQ{Pe)0lab5!3ufsE&w>V3D|+^Pq)p~eF-uD zUR7|QX(pftR&!2F;SQb`oTvdn&s>+l5!rt&`5y-Zj^P2tpuxQa*;=kpx?n0P4+M`E)7ilUp{~J(c=JqG{u~@=^m=b!9S zDZE#xDprFIZ3E7#ZvU<13F>AVS1{_Q#Hgp#Bs?es}2JT$G!6ctNwN$){(r55efhvPXSY zYXP2~6_>ncoAvfs9+X4?e>6NW--oFdxFhq-iuUF{yFiI(itlo}87(F9?RjT^k%W6O zDN%WG%L_lnm6U^`?pEy}yhve9Zxrf4025enwtNE7-&^^k03p4Q%(z=Yv(FtG%ZYa# z1!(|LmpE!w*`A&Fec$j#fOP%LR$YzO&JZsSREq~Fnq#KzEK4JqLM7l^2 z|Hf9Z<*7VVC+!V0%dYCa^TdcHi{kE-g-Z(pkFAf4DFL4@SXg)A5Cme8HlJL440OQK z(3_C2Cm#RGMOZX4W6&OwXFh?ge@Z#mWl}3ZLu7>D?`_DAke)?WR9*S=x4>Qzwi?^W zls0lwo2I-s!bh;LO0CBzBKPfCZ65h&4OoPlvELo(y33p%uY%@s5D?qZmDYax&q<%< z@v+#ZN2Ya+0Rx8~Ss5L)eZ)M6LO?enS{ADNNq2q2MLlv_n~Td*LZz}EYC1XWW(Kdg zq@J#P+HWt+^D-v~R|D1iuL9cOD`wU+HyVfXlmdEZ*5qX62d)iLft97`XdJ5pYS*Qy zP$Lr*G@N$_U;+n>3=FFSMAVqqH@&e~l@ev<6wqMki1D$hXfvdY z_b)|N)lE^TsMWB6VpFs3QBngH&d(XzP?I;3qAvS_qUfedaqK20CZi-PF=;AOYj$Qp7x^Xrqp{koICf9(Bs4TUP_-)UmfQ`#kz3O zS`1zGj!+T+oy(3~okVojf1YmXKMYOwO`XKNKHy2!Y%*m~6KJu~6*n{;!+za=-*4i~ z2M0X{pUR4zYot(6dtmIRqI1bze6~Qc!U*zhDO8>*m!OP}0}E9ceZQ~8J>40R&fE96 zpKFb0FRsyXd}}r7ebo*bu)|5bzErF9oK<(Y!l7^6#%#4dTx*ZHsG@vr4`<52UdbPb z%}+MpPyRN@+CM$Q_)dIwSRM2&1>k3NExr7B{%uf+K{iyy^K#4Qx9l=3alb#1v(?<- zQc<@!>Pj}`PUvMPf)y3ISIDVl2B}pqeHMphcQLW~Zdbtt8wYh9v#DUjOSL5V>G9%y z#LTks(L)h8`HY9H!=FOW=KXa0{q|MT5E9SDu(9ab+{R~rDTx6xcHqahSUw!@H*jW5 z%4}XWw(eG8w!+NKeUX>mV21K!+XcVmU0GgLV>402_1<%?x%i0$>+Xj=@6yx^QLy~^ zdt0IU4hShS_TxWy0Dyo#DDc&G51bxekX`Lv8FMMld4~!-0qwKDgNQ z*w^(&-$2(@8{Fkk*6GnCNc`*kBl{vop-v7w(cQ>Y)m1i;Xh+zj{Tsa_^Ax0~wc5d+ z#?uH zq0ovAAD6}pgL1GaSNT4^+Tg)!eS6ZrvxTaSkIv{t=hA|&vol_*?y5W-Br-Hd;s0J8 zfOH7yQDnxfv#~SGOQGX1^YePN&WcJ;%$9H%N7rNIXka16D5;mL$aE=^MoSl*+UXM0 zNjBR$1MjvIq}ZJSjf9VrFC+qp5z4qdwPo?HZ0+qo0|YgsKhDfO_nx%sO-;O^yF`W1 zvc9ZTeB2VoU?d`cJK!ixSZ1ypYZazu29;MHwHrC#%PUUx=}@HsgGd-HU2>*(Bpj8U z%@WX-(#A&qB!twoVX%cCc>1vF%eJzGl5gq9-=vO5fR! zdKVVNrV>(K-+Zx1745K(?`>04OcZ6UsHpDlLGJQs3?a4Utw3FJYu}Jwl6g^3S7s1s z-=SM-wmh{c zTm|6Mp7U^qRj4--Q%G!hBLHBqW?buwK_glpN0<#xq*{Nth#O(B+tB8@gzTPH@_5RJnOt z(2>!{$40ZKOKnq8c*Sv^zmK~)+x}chAvHIdtxs7Xaav@^Ec)*F=0q?LL#oA-eVX|= z9S3^vH;~gAC3C5BVYdXi=!%SrO`P{~_LoEkbfD`T9adITln3+5F4zIt=0_w;Th&3x zT*meb^YSc5+>4=7ho#6t0qmnOKg!AFIzs38{S0dj)Sy;xxDTnine;o_jXSFDX^xyT z(!ux?JAf)$SATCu81_Fwlt2Cs4Up4qurT{UAenVbI(%Zc+JO6yR?YK2pPSBI8zgeh zfb>)5|fqTyf zCO-p>)M>?&+&pQQ`tYzLlNg=0w1Sr3|8$xC+%rNu1&3`V({Z^0LjzXG@L07v0tZem zOwxg5vqRH^hK}(6iGsbdsaydpY>i%vqC-u)>3)GUY*>`muc&gPO9za4>+Hl>!M{a*xw3FLGaEUcig$7xw=EAsg0 z^1fH<@Eap%5!)-2T#^m0Z-AOzVVRU>;!JaHYJuemhHC+3C9bjua2uvLNn?8zDmgGb zorJ3RF6De{pccM;R#icB4J4M|&neC$Nz0-Hf0-|wcXqYhBW&Aw75PUTrOwET9;ljE zw-sycItgOfOcLM4zQHvTP&?5on0^8!1(zSu*8#XLcOZ<+LsW7)Crp|X9|aC-unEc$ zqXChF;u+_&8uqE(M%@l)?=j+;owFiVAYtl2Rq}9^_dSn$PeFHeO+h2 z0D+Xj3{?6Fwq+^Xyfx5o=jS;v=^(Pk}Nfxy$a(hqD zTz{~~6d1OYM$6irNSMf(T<`+8%|+*eu>6oc#P<)H8oCBZ7#;PUFT#)X6`fenzI+p5 zb~^SmAb^UDH3*xM*Aa%$knzGz&yXk9c|DI|)`~8uk0PX~xnh{hxS>jsMH>54@PJX!IPjtIvdao2r<0PcP&{tX{x=sG7SlZE+=XHBnOZr$)j7xI2WR~X4=8-mlh$8UODR&*kqw`ml} zp5SAqAPn9VXsY-7*T$(Cdm9Uc?4L9F0W~W=MnYhoj%f5O##txH1lPc1=SC|wD${{-_u3&!w3ig;)sH5HPuBgj8Ng%XXeKe@V9k% zut<_>GqgL#Y8g6^AAtiz@2AUX`DJ>wC2ABIp{vUD-@U1mY7+}R{k*d znaSK(h!T0Rsx65ukfQ`P>?3aY0Zuz)VyYzN)xU^Qjsmh6Kdrj;cdh|0?};ZXW0EEopxx;HT^8;pK?e) z(L27fAjxc&M~GI2nmExsPAOI+C(&~f3$%*-!_uO&JLnj_9fk22(|47d@>94x_9ai7 z?y#A_?9+>y9Uttr_%jY|V^7zb0FC(A2$f^!v3UEDz5(j}m^qn*vglSH&XW$8)YgVx z`e0`^CdVfJ?b1cR&(l-XfgS1*Js{~%hjsyiN+&o*`H}63@l{Dca4EZ+C%Xm z4YNPVWG-X-)M(+H<^~^~JApQJ&JL>4$??^0>G=`Xhz~p$6AA(fYR}M;_2KcU-%RtC zE9&P}IC-1!Nk6dcgy=qTXPo&^ZC^*)?H;x&P~WBharei7Z-C-473ivnK|OquG+{lu z_{G$ZETD{c+Xq-J`yZb`Lj6So^O&pvx`9l(S{xKpyA@ko+0yt2QKJW&2ewaGWI|!6q=HI2ff7R_`0B(a<%;Syz4&LE` zbLoJ?$sW8P*%DI!E-?ZFvH}et85Rn}{w*^z`6Ze_x7!GH=p9?3s}`5B{&3=wIwTo8QyK#s1D81AC?a zFf}K29%1*2Y#}8rALVKkF{bV;OEZI zm?2pHJHY*;b2Gvpc*ACoFy}uknF{tE;>uu<&Q zj+B?Nxe3BSClg+?H3h@}v3U64AH=}D3V?1VveZXA5E|BeQxPl#|5$T>{F`6|e;#h9 z3J2I+cnI)G2o1r%>$ZQyPZHCw@pAtIrJG=U_u(obL*Iwg_u?>Yj*FiVLG!384^ln~{ zeB8F#nC#t`(Ehb`sj7SC$^sHssVnq+Scx+~+k8@^*Uho1%3Y(n^6I!&aQpStkOpJ4 zg+b0$TKdtWvF!2K{&dTB_ceK*wz%wP|E=VLIrPnUb-JU_atZ-s=GCAx)XH;D@%mlF z`H2wz?&K->mU=G|Bl*d$1%2MM_VhvJ>AHj+N4B6s21!M0G;H#rs$sM&P~5TD@T5C# zr@Z*gdlT4D{AKSWam?@WEN788>{;bThxf4`QQ1Pqt;l@@6?*RSt*K~rvvlyQ&SwI~ zD|aO>w_Nowubp)guFiGA?NDxBmo9#GIoVso0iv?&%iBr8$O#YE&{gINhhg)JphrQ% z#Iw)ZHBsy*%A3?!q7$07Oy32Hms}sFIjV__mxE0j*V=xIMzYN|80+{BcZxXRD=OsAA~(*q&z-*F{_>!T#Iy+4}vt%9UTt7!zA#_IzKVZGRHR zl&pI*)`HCdCTJlk48bUIZY+(eMK zx3(33fAMJ8fM}1%m+h-|so)NNtn}M7PJ*_YpJlH7#tJ6`=G7k5mvXKXrCk?K5sOU5 zEBQ!=p{#XRA(^r+{?7N*Rx%80#7Iu^@pHUUpW~u&PN&soguMG0A1|@89b)yob~dAi;J(@XT44pj5d89gqr?8M0@+3%3Q>3S zuRIyD-=~)!89ezK!00N=3pf|dnZ0NTbT7m_CiTEx;!C?%V~~dy^T>A@Y0Z|4%_@$l zSgkxf9>`+q&aa2Za2L>_M8D(PkH+s)g5Ze}O^drz&>smgmzEZ+5ET`X>0Z&5xAC|u z=ljKXC&$;mL=BN?4dsw7RkppE0;DsKf>fRxT&uDda_P8=Z3jO*D9#gI6;-tC^eC(G zB-ANCjWzpET^-GF z$_xW1M*P@XP3+YEBCK>(vz}juw82IZh%di*6BZ1f#yIpxy=5gMCI&kjKlkJ+iRUJK z>zz^&1TOPkCxC=uvyx%~h@$tI$I{w6#W?v|tavko(Va{N2{XN1L5AhA?QprMQ^drp z=qkdEmVR^AI&c=yAJPxF!Do3;YxyM1?x#}rfRT?GM zTGoU*9`EZ;^#;2)K(6;sQw3caGDW>@+P(-e?<*vs_KeDX^R zsV-;vxAnh9svd};aekGZck?Yd)Y?Ht_@&1g%JH9!MX4bRiy>*z>RMpmz}Mop@k9+Ykh zie0|-?A;TjS#9ySJ(gWFOUfeb3{S`R@0R{!Av+Gl-mCHi*3H#7#bR7#5cu(p?hwpD zctP_gsc2E0<=Cfs>ii%)-gNoz*L5bOM3aKq$SH)n8Vm|65}##Q-9CJ4-4+TXltTmi z$~`zRs)Z<{;x||rW^`sg9s$R<kCZlYH=cRStF1 zLMZd&;IoXjI`I?oRJ=^xirY~nezj0bLFHEPEGw&rnPD^ATHwr~<;`RG9DzU#)xiGw zrE@t2-jiHh@ks3GkG3vB=nEKvL7f`X)7{Ig8{7J>;7($}e>&Tlrsvj&4PD5}Qr$QTO_Pwgj-A}7vS6%W>Y`Xr_4<3B!orRd!je1T;F`0%L+1UXq1wO?JLrur*3V6?6x zCtAX|La$ON!TM41BMQpr$DlZxx{gHVl0yV-?9?1^oR^Znns1%8)XJC0yb1{u>}YCh zt4~3%haF1}tn7mjjgZ?Q@`v&RHiYz)>^1B%MdNanT2|bnejGbM0>u~y+_)v8;Wk<> zOejWGw+Ql7hy`6I%^?*uAOlwWba{#-61O$XQ5hDB+@GuIxtATkQ zZH64zuu1x4J~1P#RUjv6qzTcKgLk6Jd7s3E5{ z(Au*3JR7^aLo_8>w{UoTiYvYCDW6EtuW^g)mCqSx$fMX;G;5lzBcS9^^Gm2EA2p#c z@odhpRL=O}N}bzhOQP@QVu8b{Zhb2JGs@ybrU^o6-QX!aVsVr<eh_XuIdM@()iP?O>k=hD zW{rvxlJ9MuO&^+AY@t{U?&MllynKgA9;ES_~-A0CUWyvKV zq6o5g9pF*>N{D*4>*jzVck!*`mYiPq$Z%OjO^%>Oj|U$Eb}a-gmzQI$Vl}R;eDwN& z_}!^p%l=R;b4{Mm~2U@Y8Y2$GShMCKrS_;<6Yd)S1+@8);~5 zuo7jPzSXTf!Y0CLc}KJGE74{~>VB8wV5Z!*F67aW;?3ox12>Ig!+U4oc6Y}L8p!|{ z7E~4$7HuuseO#veUOSBj0FhuAVdi|C73K8SS`V%oZITFDkq|e8MpNc#pgtrj_)Z7* z>9x%%E@T`WtDBX+=w?nYtPudi)vu~&K5^~fC`iz6Wkc*7VWj1=e5fN7lOCv+I*3~+ z=WpNq;(b3-mU$)@U!iQzbnD;{*$l&VQs_)W1)B`hu}Es|3~*xyV!$gyb<&bIHEa)Z zE{GaZv0RDT&N~x~?L-_KU?PH0@=9t!A`cNdONcD@(aYfB#Kyf*v4MO-`Afi5v{B9RIB0*^Si&z4 zMN2kHI5pJ0nr_oW4*Smtuy5cX_5bkVllNzhb29dl{juF12uqH$m{oV~y;cum8RaRfIZ`4hBsYgyj3c>xnRJDdUZ0e9Z z?L!Qu>sRehNDp}JfJRTRy^A|+VKn3Uu)YW1_hD-#fz* zj{ea45|@HtG%zA+3xi@~#)jX);o&fN7m$t+0zw#6xbg0Lje<0L;o=<(cS#`ALP1Ci zF)Z>oh-&&M`AOQM%Oh!{!DU?PtaxVcAia~733D8w&|ezm6ds9paNKt-EvPXX5Bh_M zM&@n73R>fSYy=OFv;T*&cMQzDSHg#D+qS*6-K}lgw(WLnyWP55+qP|YYuoMH^PFe* z{9k-{zvh?Zo=j#YlU!GF_h`V;Gbb}z47RaHDEd~~OruNRJfmeH$}9-MC(~|RJ==07 z`BpAOuP?#!90g(~S`3gZ0D#=G`OX7yke%0*y>2T*Ob4Q|cklo;1`5E>an;-_$pfi) z=LyP)9H4d3h<1z_UcW`fc8!B?6hv2ZQAC1RMk4b$XbL+HotJ`>aaWNHGBQA+2M-d# zvYhWcQ|_>+arBB)9HN1kV1PpiKF=D>d%m=?67#Bg<1#?2k(ts;0HJqsThd>y7Pi)Y z&$n??g65`iC=O&t)=E=Ddt~OGkB}REQ9XZuwSYPa96y;@?wUEY^BGD#zwRpMuFu4=yXGfcR^yhY*DW~lu)g!%4j zqSPa-3rz)s|BJX`4R(-XEDZo<6k7RaDsd9~5X)@MLP)mc545AltBOmU=E|~C&cZfm zK!#*tR+31yh!j3OIrrITehJ7@4Rv5xxqt(Pd?Yx1v0m-3=U!f}A(Q50I;!BM893m6 zUN`Op(`NSW>3+|$U{9S0xk4YJ;|~;isd;5%QE?AKxj$KRejLD(8v~8(QSAdxlwf_- ziPV;W$2pQ)uiKWbGo{xu(IB2lg?+M#R-L9n%MU!;YkLaha;&DYHdwu z+2+_Gp?TS8d*UMyf*sEt)|)Sii7H@71erCMDvzkqld*^LSpdg8S5ZYG5O)1GJP!fu zn{?gb)k{ojHqFR!F>~gJ>fm&3MPPWLQ*=D%5B~ma-zOx){}95xxWg^2*)4O_LN0oN zXlh&d{`un_Zcf$Ufe$RJLq)#w3>)v9!H^i?a`=Q{2iS<-m z`A{K7tr39IbD@cLCpvtzC{&ut2}+~uRJL~PesnXrGcGz0T6BsM{_I`ULYR=alR9{k zKSHb&=(%p4fZR77X)>U^-t2sY<~Yrfuii|QYHf9go^-z=tEPtrYA6rXMwXQ5 zFeswf(Ir5UE4duYp14D@?iySge{fA0Nm%9;&IWpJg5-n`kWpgkVlRBV;bdV%4B+6?CLPum{m&0GPL- zp$8IV@KyLYe5oB)qd|BE=xZC5i++ORU;;Uv^m4x>fvic4a-1Lx=^q=u#%e;D#P8Iw znf-JyYIwiYHj69!k>f#C;*84azE}4FV74&Q;@wS~UWcYBC_5?+@hfieTW$fAC43w| zQbKB_-EogGhrO8M4o1aZm6T!~a{I~jhs)mAS_8G?oNZkJD-cchiUHUG(A6fw&T+Pa z<+!D=bH-(7r^&#Kje4HmbE1}Sv6Oo5$fBiPh2pY9?I(kn3HqYDT-LY_I2`dUHT&dX zs+J3YjQi)^L{>?3U*D#sv{SHiAth<`5IK^;QL-PmPdM2=lepYe|Ktqe=rd=4%;EJAQ9%+Pgx?}gy)yOczLwg6A+@(Op5YKZFB=tK(9P^dqOmFK19mE=$^-cZ&i4i0bACZzJ^p|$#aIebRY4WwxeJ@pm)@XTZ+9MQS-W;2Thx< z51$>&XC|Y2NgK92r>r?{N56mhNO6UH^3f|&-CZT`0&f)=5%i$pY&skBXwvb? z+t4vfh{Z~m2(0c#w7R_M3PY78KvT0Y@{ z%@pdm%Z0O09iTcdXY_JHz+9V4Mo#OP{ssywM0v`nf(XaBzW-}Y2SXCh; zlpopPQ0V<^q?a+0;GwlopQ%kl`^A{)DSG7>(b>wluZ41=>vqlqgYAEBPkj5&Olb_l$Z|p^EQ?*1oQqC|`4E+1XA4mz?{pDEF1m44Y}LSvSpP zawB|_A2c@xAA-TeE49{&dNuT-Pp2|pL+vy?FCUs&=r!!NM__uAkS9p01RCv(r`sD( zGn{?sJ`f~5ZmmjMl@Da5kHvSn21R!!i?T&6w2yX6z&G@-*O+rQ{ zv%BGNYp)i`1Uk?ahkDs;kQeH|m$|1`S$5PL5K0!3%i}b@Fb#ge%08i!mbD__QfgL7 zp83MGpku$gLq^d0GQ^eHQV+V7=_nPwPAo%czbQWzfqo_qz(!>A77FE@W1Hfk7uI z{q5_7!wf;R*l;SNuC$Kz_cx@sOs=Bf8&%d@xznVg+4QlHHjk__n@fAI;t#m&R=1*^ znbDWaDvQu^!^hXFYX2dLLwZ>lensGC6k(mK8(DRx`pSCZ8jQ1>)kwwag}^7 zO{x;dI!)_(_nsX5R)HTc^Aq<=wwSiAcoj#WYh`xY$MCwKKI2L{;uSVeodTYvS7M%X z+Z4h}B7P(DSJGLVZfzMpjb^jVL8_g0z~v`!6$@;;xR@rhiAX8aEmEbTJ}F6x_%K*o^R&(MhfXs-1n@mAe!t z@(AFdj#mm!>F_6k6qT|ihBbo%#03|kwl0p1Cy+QcWy`BtWO)=BVmXU$E4|>tx}dd$b!kBb zr|b8O6wg3KhKa{e&g-uHi%rN!+(RF-1+)16k z$k{Bn{v_Uh+@O=^%S4vEe3#M|N>LTsd2e#BA}_&1MPYdkp-(RXKdNRcY5SrbwU}zz zS4RMPbHD@cHWrRULSZ%zp<@DjiQf_S0vO)(#vM-E_c)!mam-+_qFXUI7l(~4T#X6( zB|Fsks$48<3KgQKmpZBmKO(~1Q`KmKJsWciorc}Bdl4auF{MvgIM=RE7xgB;6Y&-b zTEprQU2RiU@$dxC>UAWMW(Drt0o!ELv~rXZ{lf8v=y)S|w9C4v{5V)qbWf+W|4qGf z+wqNS7R#dw819KJspnw2)_8I2NU25>RAokq4_Ff_*-)n(xcRg0guV0 zt1eFc`ROq$R;W#OMKG)pL)OvpQtYIec~6L=6X%wqVwU&g@0j(XR`PYf?H};SG`dup zoNGHVWf@JLo=^=7ai1>_M@+iTsH#4aO_VBe)u2|P-22_P=FAbC%uvaK*=Nu=kV(HmO>lcQm zX0AR>HdA;U>a(R5=Sn@KE4{0(RB|RVzEm}|uFqDLGTy=&b)W`4`J56BB&Gk{ zYlx-Pq}Ui=%DFgwDdHj{X4Qh3+MZ_%rhhk6_mFr&Z`gNX2DmC$R)`4S3k|l`fl?J2 zjwr@y4~~?XPduh$>FnRbTqxU^m!{y>&gleFP0T8qs!}?{FZRrA;=0FOHivtFPF*He zu}HT}nUe*8w8+ZpPZEwYA z&kyHby=SP^p%)5I9%AMhq;C~a0BKL+;`b(M+$n!z($ZFd&2eogD&o?*-GKi?t!dDx zKt@Ie3nb*-#H7mFO#J+y7S_O*ti=kIs^$silf`-ZY3XO$>*fi;t>RCj7SN>1G{VVh zgq3lVL66u&+><%Nsvpd@aFx{;mk=?@4FAQ#*@tzTPi`2PMdqiDPNt7-=E0oYwZLY9iGlKZCp|+bv7U!Wy9F+ZI$=F+Ru*%AsV-cC zl2u>B_M54`ej@=SdbQ+G^C}f$ZOlY%LAT>-n*Xe6CuMwwUlWXS6`g(qaGBbj;B>u4 zcJYZUsAQsu3>OtpV@Bw;{(4wxK;f#5XME8rCDM*jzmtp6Jaic9Rp0yi7YIQQECt-= zq;DJ}f>QF36dh0f2HW}o?(fI=`4NAngq`yTTOhr(->Fzl&qY^$vURuB8V z7f6>PWsK(IFNu99mz{%FIcgdV-gry!=ke~4a6hZ(*gqX(EDxO*5uHNK$4}5P2zvY6 zdpV<u?Nu#};33cT6HQP>SWsh-JS;(;&g}hZRJ*~m$hD|y> zrwr;KNfg3gi3ylcZ(ml|m1dI8gD@X@*Pf764Y}G@{53mUFf5iNI@tFX@ohx1yn!54 zo-jh0iW}X`u$u@bO+4(4SmD&I1WlqF)yu`irmE}IHS{Jnj`7k@L=@YJpF_JGqdMA> zTYcU=Ba5PO=+!twOP z7fK4+uZ!+(KKOijG)b5W0OnGOklr9|=|5$>cI#(T{6JYJDh3$;yhIf;|ypK;j*n}9>lyMhAT8kS|V;IqUTE>2F> zpPR~y3CI48>JW6KF0!p&TTeoES8hT1&&^4QUD zQ4kV+p?^p|T8Q0TCt@TUsK^fA5uOT(uN-+rJ|%~u>vR4OW{)oC7gyz_@R7j$f4po6 zAo!RsS`{81mqPsizp4izS?aHS3(-DJj3L?h^BWgwHq3J}w5`!&=SwVSRTk3u?msaH zv&T^P7YcQ=X{f7|WfHDySO!>^?VriscU??zS%uip3;yA00JnqPn#w#bn9^epwwn#o zz<#kTWK-TvldT_4hHM&swNBK{wJ37WGuWH<+VesW?@X2*@c{_P=vuP+g){8GS|D4YM}a@XIUCwS>EhO z)?Cw3+FJL>_$axwx{G;i-M1Ksiz!>PeEq(ip)T$H62JQ5%2&lS-l1^1F$VtWwtIpT zRIBsLdP=eNIZnkGmVb30thC`#!zaJ26TQ=;FYS(nR98jI!EiwQd5&@D9z5yX^o5(H zZ^SDZEM{x8!gh)a9yVJ}HH)IW`R%TGKnAl2SKankBo_U)tmh;x&pgBR&j@w?hXCMM zjLM~VOYsUouBLw&7Zq(6?n4KrxwV@MC^?>C7kc4m^Fp%chd2e9{aqx|2Pk@tMnQR#_OZ zIb+O}R|1ULZFny|p0n0hlyoU1TIpV5R(G1ekEutKf03R3);^U<5scaCUm}O#)j55m zNEo6rF|W4$J;U>naJ!RXsTkNg1NT6_%~R_IMYr8#(CQk6KH-t7zYD6#3_ZMA?N?R0 zjyIcLG(NvHM6uzBy|-!q%uy2bH0A_9gG&?l499av0dPpLU+_U{&R7gkXT)28RflSo zjDmgKuUzF6(CX4z!oZY(gpdY+i4C+hins%N^S1q&|n73}b^vE9;9blM-B zzEM!~K1!intlAvDF)DQ%IlGF~*e2q)V1Adlb&`lMN%Vd4uQnK4`rx!AiGN8Daw;@X zej&8bq3StI$e3*zlBagRjCTE88%gL>x*%}Mo9OW?ENt@(C^K{=M{_L>$Bn4^KVM|~ znu5Ixz-O0MvpDz$)+o(8bX6aYYvocAHo7#Fb<6#2%?Z`*%od}iced#S&Wa_v^gEPR zrZ}+ySClT16ckYC+@viADt?g*^e+`Ql*o3BD}CLu02c z0v;Csyaiw#9E&5{%<+&^Ur_~NZ#Ae057(gNr3=`)v)ARg0Q5MeMeO~KzV!&&o_^2z zu40+ddXNzjxBX5D7!Brl-^*jX2Rb&p5b623mCw#tGDgn_-$B6qUsi&@OTegz=|%3{ zw9DzTejzijlBYNiM%vvmnZCD(<1;}t(ZF|#+U{WE@Q^?$-;am!Afq(1`k#&<&*Nia z>eR<=E>}=0V-u&W#^oNE!xc@wCEU*E_2Fe=Xf=*QAp`}KTwWu#s7yxNbC)c-Ube9n z6YC_d`nG)EET>Yk6bxZ@+J1b|Vk!-We{3Aau#{*{961LY^m*kwaC19m7|`_@(Gf4@ zp&o(5Wff?7Rz9$A@!7~N95@+}IDWd7JvG_t?N~jge|Xh?w|2rEKxV@}8LeCg294In z$Zq7pg#V&pP7I{#9XtfVj!{a38wbxWRc+Mn8du9#3WW@*6T^HM?n@l8t5@IQVlL{X z7dkh$)dC#~#S~X)G(?@ig~28|zjoBkyOigl(`0L*weazb>=NBbuq^f!SYK}^YR)@v z;h#1yu?2%4bDb_(g}Jt%?-oGC!MY_8vR7V;iVqcc^zsq80es6I zSP2#3i)a+q(l!@gd%XI-GM>6NESzX}bNf8BsG@rGPL$IkIF&4u0+IY2VMWdjvpG~{ zpNwyWWXv<*EZXLkOA7ePF0}d=HnxE8GHMwZ_yDUFXFW1tB-$I{>(q}V(0z_bf}{s= zKlj|cBbesa2e3@sdDWOHryb8wBs; z0qd^Mqu=0`!NdP=-oUBVRiT>UuVbB$(ua&&^a4={se`z7`izPzRLzLUFJgqh=7PQC zX>8|H=Hw9*y%{fQ*#7|Q=>sOM?P`q!A2VD$Gc2qY^LmGS0$Y88cWb#krQJRezhX<# z+5ouu$Hp6UqpC<5%^;bkQi-Wvs-$8(5QI+94TuO#4`L)j4-S8h!x0_kiYgw-#p=Z-LL>o9OyKg3W0;!v+tOIT2!h!W}<3xqmNrdX} zNOnV!-ry&)u~J;Fu7|+5MyUzuMQ2JxL+WxD(RVWTRszN=t*Dnz%df_W&TXHVj zLDQw#!aLuY-<)^`_6jMYK{a@%_hMB<4*$S2pf)mlV(mK5){}ReY#rWzo5{bwr=_Fb z$V3|?M4RH0c9{;OpX7jPiP|)53Tgyb4gEeg<=ik1KcS8ehsORnJd*L`_;{8_u2=4@ z=eJ;0VU@>iww{r-KQFeEI1FmttiGp2LQVw{Wm!UZP)I6VO#7R~xiQ7x`9=@Z>d)A=9!6>*?&NSoDKy0PLqbO#>^xjlL&2{H03z?=FqqT>R|Njp9 z^BOBR&^#Iq2}!$AcK}#;QxWi% zU;TkDriVD4Kl9pG*na$`V^ijz0fd9H6%cHWF_V|F@^&n&_0*h~uv51nU?q;Ac+vxw zIik)8Fg$<1a1zIUW8{LQl-bOypeCp5(Ru6q5vW3ekrCTW1yk`~{MoD5 zLz9gsVZnvrJ1|34v8cpKTD0M*^@2RIgjN$Nv>TBV#ZQj+=AxUkicAP8B2^ME2@!#R zF>exV#->L$+{=x|cUp)wHT!W`A_PrFyA@6FE)T!|V!yF1f3e@x4j`r*#+5FW!G*w& zKVbQ6vRi3h9;RBWbB!eF9_zPwua~uRcC02UB~`g9HiMY7HgIoGz@VkQ_($s`VCjFb z={C;^hWl`B)Cd_^inhzpp-!_46<30K&vWYGkPN`^HuNVoY;r_;FGUFzSM^d_gU3cy zDOmDctB34IWE~)54a$Vfad`_3CrE5GeO^X&CxI8Lu-OH_Lt;g%H4uwHlt_y)X2tEc z>1=|c{5zaHchIgewX;Z_ef%+V&)7!qrN+V!vnK~h^EP8Is1>_QqmEAjq5*Y=r(&eN zBa(Qsp$SWiIrAt8C$%+J0IB%2Hl2v7Thm<)9+)UUp)T10jKLugZ*`s7BCK_kvVrFh zk*+P&Nl|R1Ht5ei!B9gdb~qC}GB^I3IVocFm4<*$5&I=^=ABZWXeeQMadrE54r|3U z{C32kBh3_d(9gsg3|_9T|KR(WF$N?2ohB#uORVQ>cZ?`fKX^VbR8QuXLK`tV*vKHq zfN%q(>kShBLyo|{h(y{&Kl*qVlpN~*h1jf^O337OtUZY}q@>n1JIglwP7p*)O$oja za@p4LFB!(aQ1CAq24-F3hmOW5pG~AUVxIg=S5^tmEOcXyaHBZ|4+xb}BcXlu?%Z92 zT|0Ncl9RAC4)8=T4uSozZ{Dz5*Imc)J;Wk7l-PK;0Am zVISPPzAuL)+DzSEonoX-1y=v~As{IHZ6yg+}e<)zdwCUI=!QQse`{%wM9* zLjMu7YXSCkXgYdj54}A9yC1`Y7x}w2?dL|&bdhy>_Q(>dAZ5aX+Jg5JNIU?Kng84x zaYE!z#sarl?+8MUJhsimqChu800%H^$Lv&w(V@tB?_`3 zrm0Lb1v8pC#amf)-g_5@PlKM9 zd>t-+;AQj4?uoEcUQNYr9$1FR2KWmp&#UjS>saZdMTN^jm+cO~OW-?F?pHoLC~)Mk znS2i;{`8{SpCy6DhZVU&kQrbEC}v)-$K7Kp2wByGgh$dva8%#<;0oQUlOm41n{qB|$_b(CM3SS2 zY1ITo7S~fEjgKuZl1<|O1H;RGQD?J3(%Crb`!ZQo@CUlSEw5KFPJ?q+OQmYLC~Z1r zJp&RBR;3ZkkG|=!ej5ZCpW1DAGrL}cI;^2?anB@57Cy#rPlDi!4ol3iMoVMsrkNWS z4S`ZAX+;S-4W{w4njo)h6#WSN;5G!rd6E=& zr}js}KX9Aw5jR4m(TELr8Vm3RAr~TYfYYXWV`5Txs_XdKEb4XvjJfn7hxr z(`)}E5cpl4^h6z_f-6d9MOqXZ_CBf8%;DhAj{?<1sqSvup;H`C*h=P1|29H|{83FD z!ZfGDBIxgCq2zMJctx8}tZwn4rV}p67ZnQ0A67xGY7o-&jx>&mGZNyeq8?g95KcqF zLD4a_d(x97slLwvX^`cr9a2aBKqbKZ2bNa=o{Z#adCa}0D{_)xGjB@FV8~)n&i{9gHSMndVYab@oF-PpVZ`)xC*~7|H*p zn6z5IP=b*UEeu~wxSnjcTzorbt^{#)xR%+;$Gc!98A3PuS11r=x1<;$6C!%Ja?(k#p7m#)0N#?w_-Csy{zq}4e>7gd0 zg-KPxw2qtS-9jCQk^+~Zr3dRX`(hhW`2tA`Y*-5b;h@j(e>3tIo1gtWV$N=@70SS~ z3XZGg64((Z0;hTMYtsZ)XGVJ`zyRbsoCb>Q&Y55wpYO^(fYvHrbJJ(pd*=Mzs4xWq zmS{dG>nSh31uKMuk4?9r0uyqv7S{?W^J4=XUfXO2hWyFz=PmE^)5ZWZ$-kgBbOEoO zsn=Kp5hc?@?j_yCS)T7DbyXj2*4$LH6I>b9FW<02qr(kc^P`&>DsAb z5L!nn>`f;eFNhNs&2r>+T0<7w^j8SY3E?!y(f|t2CnmF5B69Lui@Q|+bm{#%|4Bm) z{n>$>8eqgoc!D!4WEDbX)k8=`a_u}Y=kjY;a-sJ8(xj3d9{68${`(z^t_~8oBsZA*}z_QAN zMqwCe9hzjEP^&m=P6*X8qNO+eAqA;YE=7l6OgSe3c#CmHvP32UM9=(@^}g5|RM|}= z1!!wG%IhI!7G#RBDEO#=+sA<*x6e^(ZPH=@cPg+S&7=;=05?}I_0d-#H{bq4;Q@b&KN(DyIMxOFxiAExi+m-0fA z9{jUgRzTK~;@69c)m61I6-{gYLRMbPEP#rtPdnj^5Zb*Sjz?hMP88Xebi0h(H{9!g zq934&JZ(7|eHZQ^?n_hyA+A3W?(`6bNA$!#lf$E^Xf?vAOVxjbKfBMkoH`tJy64kb zZwH3CQo2^vRn9!0H*YuzQEdC=%+Tyw8G{fqW{AkCab2OoW`wthLwy+)+Sd5QG;T1VSj6Ijd?Z;pD*QdTyv{=TYp@`{dhy1$!^#q`9ov-so00xNYQ zoWFl1a99PugH|)tC>c06!vIjH|HlhF9!$?p&RTyurkB*|(!&2GRjF75tgof_Uk|GXBMn@A9Jq+V5@8f5v0s~;otv2UBkhlgrIe5{lX@7Y`zqU@ z(B}Yc^3zmfG5sl_F?3&#N9dP4ShNWySN4RV*D>@(K6_2KeM;?_YmM0bdp&(>mJ;+z z-Hh1{fSA_#?0jJq@j2waSli{i#2Md;h5ck7>HSHr*n70);9Tpqy6-Z{E@c{Agqj$q zfk)>#D6qH0y%f7{4SRmA-GTPTgSM}BWbe*y{NYX3pt$IHx6hG#Lh@Vul8<(ae%0tzFti=vNazN8LM69>WMar-1BRa<~K1g@-cfX6B7d0n2qH zejZX5y;X=n`q3hxEmI2DltNDVVuyUr78tMs=*!`l<#fs6ZF3B%Q8aPN@09YpEFv{- zkMSHF{C{9Rx)+H#V*BW(Cr2?exqgzp&+o?I(RhJ+*asMU@^M&8H-tYzN=Mu$s_T$JyF(X12w zc?sF8hE>p?@DZ@+y2n&sH{f*Bc{|)8VhsLb{#H^1g@x^)FK>|QgxoR@Sw zo+5?dz5Uqcp{o-@UEyX%2(uJ_i&Zn#(I zB(|@>GkLgF58s{|$z+IxVR+#5yW`}y?*QLb20h#|#4(DE875b|B>6N3IdqrnAAE{W zoZ)ihiU~KKYf<@l4(*c9rM(V5x~`VGJ{Bw*Wd3=^;_2xL6Xfl(tJhbgN^GJo2l$ge@<<_`-wPjc;@TAr2(dW8#e<$m6In97rf(#VeP~sW)Vn; ztxqRg#S_Oq_Z0LDaMu~>pnq^Dxpd5Zq+Hh=Irh&MlnFcxnpa5=3(xZ)C}{vhr2>q4 zvJGSS@P`PTq!_D;t#mPyGS`X*V3 zV|Kf(kiXXW3KF&Pwn@s_1`2j^(OHpiT9H{PcY}{QD3iawWnt!%n`u1p){&=B8bWJA z$$NJSA)D7WCWdcK;+^8sIQK}nAvXQPzePHb`pm|5A34-9C5ZlRV`VZE!4&vB|}*z{wA zJDy8RIWUIfp3U`Y1b8jqMmD7;qjmHsLqD}pQq-VR5eQ#J^Zg#h7g_W@CfxaazOY}k zA<<$;cKQP~%Hzdy6FC>E@uN+aCF7A=8EW6GQ}TSBk)>3~7RJr3^$EOgYXxLNsU z*LsC(z$hVrzdf3nHG5lek64$7asGrSWR}^$`e9ew@c}x1*3+7A&bBEjZ`%j&Ac2Kn zal;U#1PZPyAbz^O9;P4O67-(Iqc(uI;Nv@DE+B#%0jQZ?;Sl5c0VLaz`S~>nay=jr zd^x~N5Z%qmiUnb zUH-SDukU140P)kmy&sw#|LOXxBsS=Z=ieXl>;8?(kCfg%h35+Qr$szMC-@&hQrm&V z1QQ-t_9hAcZNZP!`}iNB{;8dy3LtKF!|S=u@ux&g@Col9p})TC-9QmQN^hFRaE1P9 zAr7$x{NF(VLP+TVlH`rNp4lJ%Dft?-=f6Yv{~9!Td~6eX^B>Xt{6wLjIMY-!#RLI6 zWl$c>NSNXNC=6VwduymA8=JgWI#%$&XxxK8%3kx&uecQefTBiF%dkv@lL&K|$>ioJ z9GqKqB`CrQ>i5q4Zi_>QF2r@PE{(0g}0cbU)+C)&J8o z|MupWaxW%eO$GiP#uWhs0VEHEEaKx|g?B&_KyGAUPX_#}lWhS6ek2csY@&<5^X-Yu zkJQS>mI?Zgk`es60}1>{?g+R=)`9=%`H{?z#L3o%9s2K(1pvg41l%H;!T*fmLi(#@ zbKMT@PaF7vFG~o#La~ScBk+30moJFvde@hipB)*$cW942lw&)SzCL*S)c3etGH9Of zo)|Ao0H<_~yW)1N^Ny?2aTgf+J^{B~^g_v_{^|Hpy*q8IyUccYWOC+Pay2y>hYH7F z$f+h3^aD=rs7hr7j*?6M&u|Rqr zN9FYNBFnTgetDI@6|TpGtXA9?!2Va~AV_vavS!O`7L_#P!&EcrQi)PT21tr7Bohg( z9;?4xiw_gou$AsR3P8dI{8`EBgU$aR-Nn&fD=+B6c zP+rF=T+}))ytJ3MCUML(YKy;&iPqIYS!lp87KQy#Z!x!2a0<)RNYb1|XyoQCZz-=X z_ow`+$ka4y@vx7A$3zi;+*o9z$s((@J$TsW2vuVJ15|X-R(cZ)+azP!=apscGqr_M zH(8+y0qxIx;sF3Ik>p{EGR4>ZqQN1PmcD+NNMDb?V=xrbm~Fe?^^;M|P9a}RC;pKb z1e0Etj^)DPWI5{~L7ww#A-Vg$0{wQ zs_U$0nv{$+t)r^0TUAk&lHQ$KNyfyn;*~7pN#N-@-0mH&f8L_mm^53RqgH=kcuA&O zgnFTFlhBX#+>@eX@cLMHdW49i;O75d%a-y2H2pq=vuW*^9VU=xsSqI{5#drCbQ90g zlEcQ9;!VOBW+nMuU;d+#JxM9p*)_7BPRH0DQ-oARUDLQdvGO|;1Cs`)bo=-7QHeYY zr^2+PbFh}eq6h4DE>X0ayjZN*29d;ed!eb{2T1a5H<1pCi(>cX;wv3hcB+X=B^xDG z)QI0Gh-kYC3P{-en{-s0t7NFGe6niNy{}1Me$muER73W7)aq}WVW47B=w}1@(D_iWtDr9a{u+e|)bI^1yYn(wi$WozZmto>*jI z0hg%Z0uM7aLbSU(udIwUhIqZ8hoC!te|tK7t{qI26&EZbLYeAsg19p82m9CTg#A6m z1?Ly?molE#&1xvd0mWRm)f~?_Po~Z3Xi?v(l542X{ntnPGxrH;3kMV~$5ILR<4P&N zjc@=rETr5zEB99NjMS7r-}Y1S5{H9l%WFyCez#s^TuIMtKWAnsX=yG0ZYd|yzbrG1 zCn7=t^e5;EBiqqIisMr5udIz#Trd&ln@I+oY$#|;>)a&IQWTXgUFVk-^bd7Q7VN z5OJcRi7Ez`)fe3q(59DEKX}Z%l_aJr2Tt{|{t0dH>3)j0L1&`SSg$|TIVmmsr3@Wm zpf=Lu`nEg^bw1>6G^9#W)$=1FB9W-Uew7#=%Mq!zXxwe9@v;qn41jsK&uh9!Fy%j2 zF2jy^!69_;Rn%)CA|sEA?$i$$PcWAHG&nyos?xx&TuV|J*0~f5Pg8P6p#<(Wnta{B z;?fMC?ER~ce)KB~OG_rKC~a-+ii(Pwni|6v;{1>Ak5??b9m0}Ky~3xuwP|C(7_7mO{_Pu=@{#TObea^Daw-|hcbZr!3ueQztYA>@5xp1Fmho1mXi4J2rbFNNeLG0 z!)I+ed&AI{q@ES3{Kwn~7&rkvOM5K~!e({vA;gEt0K}6XbZwoM!lJhtxqPs-V+OZN z;LARH)&31LU!FmSkju|Vk$G410l;KHf<*_JW?2Kv?^My*$xC0Bsypbgk66{0S|zn< zNqG^l_8s-l@+V~iC<(EX){i6u=3!2A94rBguW&|AD7pVbUIazg?QDmd`^C+DhSNJ~ z@tGI_+e;)dN#%=k`9Eql4({A;NLm`%vZA@n;nL-8?`FBsT}TFYTpULy@Ay z*TpfHCx)AwcS-d1Hj}cmjr-1aNQ~sz_Q|AR@?byl2z-JZ;_gIG@M@ui-W-xSuTlS` zl@QI!e&8`57$h(L7{+)n-DWRBJ;8_gGc3aTA)$nEif18tJ>p?a8dS8avd`hW(PDgF zM^R;`I~hdS;cmu|LT~}enuv0LlfeYV+$vWBFn4)dgczPpoeti+6KQJh+v!-$dsKO` zUF-sq-3d8bPw`=ebohugLxj^~<3xWC3dpp+Y5qe5)M80F0mpNf*X$4-Owa$NeTqO{ zei8JEb_K4EGw7SB{hxQwZZ$f#2Ynb7SCxc#K5h_-F z-0#v>!R*aGe{<@y=X_Zwx4FC7SErRg9oH>=Oq5eE}zo8ucob!FM zZu^|qnA2@^A-EXI5cHp5g3ufTGzZ+?hZkR=j*xq^#}W1t(f&dK7S2ul68nNYnfo11 zTyVFU15Erje}dS68|=MNB85Tsqt}ZsX)9KWrNqEW@Na&6jWq4-uDrD^u%EN5MCEI1 zn@%C!!Qq7v<$5Z&6|L4Vmrf`yb_aY-LHZJ8R$0%?6ZR4`O1G}w)NO0rOivqKR_6$M z_9qDi0J1^5x;^!lnGt#p+8vdQL_rCB`b~I(_VZK$>*qH{^Ub?h6BuzpFNi4kpV#)^ zuCK#qkJMykw}M&siYN-T=x(p`2szAAti`;S0slJ4ptfJHq^#^zLS4I0KFby41hZq< z=B>=-;ZN@Vt)+pX+Or~byd*H%pP495Zhk)#+@}z3TP;r%U*w?#VX#0#r2n|dMIAsP zdISZtW>^v9?W1!z0P#Nl3?rva7qY1s(${spyFOFh+ib$?5ce{LAWBix4O0Luyg!-o z2rWP2z*+`4wudLz02&kn_h1+tZmH}rxB05d2rHzz0YVNr2^wBVf4g})t&t~D2=vRizIFVvSI|LTNWoBw2PCvLFaq`2oHKGxVw3I#o($b7b8qlSeGm9u4R z+U@Ph9GFks_2mh&Ld~%j3gz$a2?!VnMdJy76V-?X!vxtD3~EhMaJPh%TVC0~Y@(LO zu8evSCJL2S&j=gldZ~I$t-OTbLY6{wBraxro?NDUn)N=G4zsnnwoqH|&x93mHG}0%bunJ~ zZs8A=x*iWkGi&OhW|y&~`~#KQJa6Q;6lvE|Gd*>xX;9zHAW&TXBum?Bdh;^_J~^>_ z5u&_5dA#F2ymfru?-%mURu&|06doPgRczvdfMU-LeD-&z5Q)^s)G~83i=gIhVXBvvB*=R-B8Z`KkEB|+2 z=K}Jbjnm{%c&JS<=Y7xi!}xa9IO3NnJlcNy`yT%99Gh%e^R)x|^*& zh!fZjNjK^P-h!(UZ*S0&vrUDa?NPpBa$ox; zY8f4EuE>yapgEtME~UFmFNbEmR8RGG7alIP*raR`9#PFD12ZcODx5!oLQe{)@)DU5 zb25h~GfUTgQ;)$68=HQbeYukXnRZp^c`efH>w!P*U->q9)8tFwwQyL1 z&{|zUJc5QEo$Q!@TyqCRYm1!O^?Yg(&*#wYg5E3|Ue~1JedT0Y?%^iBcQufsi(SkU zD5cz2!{ur?&Xrf~`n93nIvY$_mnMh2K;v~ZJ`l7aQb*mAcaZvTrUU?@MYH`v(*N7B z>HK4lnpPt){AUyuvlekmHp^qChPgEuFJdj zv;6Fs*<2xRAI2;A&v^$>KJxa=z)4Cp2k(dv64pX#G&SxRqR`lJ?|Z2FcCD|w_p#bZ zPs?8)|cKg)c_|B`Np+V(%@3;_SM9&ln+ia0?Jzf&^(? zf;$9vcXziW1lQp1ZjCe!4Z+>rgS)$)zTYR!{hpaGb57M%%}mYLUETY-uB~hR)_?82 z+qA>?@8Z?E215lp-X`Jnr5XrSB-0;=#1X1xB7-}b5rWCB)NcS4v;|y9pIkJ|ADp;E zyoGL)pVeUIxMo4rOBm`o=cI2z1HVK%@VV%nqrN^heYEN7o@r{n^)z)H=-&Iaa~j-5 zFN!%^h~N0U0kpcpeHALSJcRcU+gv*k9`$>L7{NFuMT}~_&uS=!7DXWu;wGT~Eo}IG z7M@pgGx$#I%S~=$dK&XW)3`+~{XVp*U%a{!{?-O3i~&!Bq2lS~>bR3m*D>F|1vi_{ zY4yaM=Vrf}PE1AtC#My9ad`oA>()}Qd9jRrcz+#j5{icFvr`Yv*B$G+$$hE^#>fuq`Ob-~f^dXHn?2k}c26#M4-A^`W24Z334Ms`AJ1T5 z%f17kZ~bxQ)l12_$Xkm70rfvN=xaW%Z%;E3A>Vw$OI(ruBeX|wbu~uC{~T$SEb}`> z@B*0;y$!X{XlOQXl5+>cCh4p9ND*=#RA{4Z_+2Ra|1QIa=;d#4`?p@py;$V|Y>EkG ztBz&h9Q9@Lt!Bh1x{5|Dc50)oR`|!~dy+QzZKH9^%7ryMe&^kV&*}`37=_2&V92Ul zM9`&#&h+=T)i3;r7~ztxMvub@(*j)K(O!!EjC;iCKpAga3r;n%MO!Tl2tNJU&L{ng z;`Jyp_^=bUt$?P%o&or4i`X5LQLIR%Aw1PW7yG|e`7Mx?#Otd>=01tLzbjc3(|eT9 zF&b1KM%z?wGBf*E$jD;%hS?l>OV4)cd|YW(xgZlqzWQ8A(_kB>9QNO3T)8#HjLIYM zJ;_+OTe_G4D4D1{oOfz(Dy#xx>jvZ+8k7ZXeUwo3S`A4cm&QERYATOO&QaQHsCb6E zZ!~E>uKMSSIQXC-MUPsam?!d)IS1;KUQ9q%o!4;PQ8m|o!YXZ{M@qWu*}tMup7b9>>qyp-JjgI!Y+ zf%ENFgF^sqmx1jT?@spL_4vJQW9!VV(KdmJ>c5kf>>re!gF^Vc5Waw*)<5&l7W4lq zM*lnqx%YzF>td89RU8Yo);!IAz>#fNA{@~3BYV0u_=A?#>aG+8b37}fu&tvbNS(K# z>d2z7e^L~{=_a&rN^H$}86aPC3t(LX*Pvkkwc@0dUz$Wkf{7`)M7ven$`aORDny9A zB#nNjy;hv7lqPN*l+vQXG5*pJa%gzbi==)Xpgl#mQpWZlZ&Fh`{2 zCFk)@YhvQd78?JD{(RsYezam$$usflAVJp-wHzAYh)ht5!6+>GG@Gj7TH;5oY&~cC z84-*CewYW&K6Velf@yQLiJ!Nf(5i11Q6pj5xV^JVae2usfX;a~3wz12_E01<@uR7b z*PPOB+G(m5;h*Kvm`sbz&1W`7O2zw;1_4R#R{YKNZ&ULqC;`GsAd_oi_Tr(O&CtR5 zLCWNW8Zb>nQQu;%jB;X3(qML?lrd8xi&AHy(qKI~mysxQO~_QAB2%=ChEj@Ft{%A= zG2O)lp0bZ(6@Y2q-pq?9b;i4d!#gc&{|n}#z|7m~?0LoN=}A)-sc032KAVw@Eov*u zTo&+l-xWq+Y$ijP=d>h4#lzjK)A>83i{F2(?{D)kDYyg4ViHF3dSG}FR)e=Zhh zR{rB0MaXQDj$)mK?*xf<$RLve;BHm&vX^qdpJ8UVo;9Ex>V3A>z56eiJMX4p^bgEk zFoE27AZ^Dz0Aj1HtzF2#oJ<0RjhY*YS&rr5Xpj6xOR8g3?~OtIrH2eJ*64Jhl$)Eo z0l=#$grp>7C^8HWE?%rk2;1EzLN4BwaHl=J+X6?ckuG^3d;@mZ}7jxOClR0StZ>-wu#mWVaRN(tN{jxAsM`V znI$1Djwn}T5G_BYx^zqtTh(-1HOV5;GjlpQkb+7ldJH8r-|bNA;zt=JVa0r2=Muoj zwl#^ON-_Ve1`%Ty3TA#zCsvq|eX}_pIyPalQ{8g<`;#2Lvt=NfN>qT5NPyg>K3g~i z`I+2jcr8Xd#`t0(=S(TAL=czsujsp9A}0D2cr2gFfHbqebehaHl#`l1*4Cwvgo_tb zPjAK$K@$6B39+i=yNaZo{L}yxSQUEReg6AA-SF^k&5S{e_7u{W6%NTwKUD{=s25ok zzPiM!cEArSJTK74wBJ2;(6h=2o59UK6=c|p-wiw`g4~rPB;62qiI~R-drF)5bCV=P zEUq6b=zjIbcT0p|__{L4a76GIVTVXu<{T|>4$J#Es2!$_-S$W)diGdP$9)AaPmFkG z)3W6&8qCBfsR|evYq;^fH((*_O5o&7yEQhIKy^A2>Kti{MjNa#t^~+E5GWzrC`^!Q zhe{=wO1=rKxKX9nANhtn^>-&BBwNu;kHm2AtE!FHSQHQt8I5~0*_hjq)U-~QD<`GE z;C)yeg+@v`OQB{*A+0~OP-C}(C^ z*pfXT)1PCTk7XB3Po)!|mfQ*)a7Ba%_*{-ga;?HV2RdwtV4CLU<_h9-i;Ih^t7G4$ zc8y^`Xg9)Oj~|#i?)>1dyb}_p#L{1LTCMG#h+wq75_lE zf!Dd~U7M>s9;P0{qJEk1smk3be!|C@6!8oa)eo}zF`p)V)ycKg3t77XCK^oVtOS!Q z1>)g-27FNCW{q}bVmo2nDtdT6;n%7DPl>K=bVN5uNFg#VxxUQjvSJ)__07LVv%pK0 zOSoApWykxPlxr);KnVQC?z6`IpFE4!W-o!M+MhUvrQe;P|K#S^y^o5dT%enS20>rE zDS_w&N&w|hTd;K<4Pq~84&%EZ{B<0^RlkUetbRN79DvpQC;GqVwq^}2DaZPPRyozm z3H_RANr(Wzp2uc^4q7txYRIdS#EVm3L18?V%cX>DF%JmfRq=D(0 z1uQ&miLee4p%r2yu%EaI(1R-rtWP$VAKaT6761Hb*vRXuA~4x%AW^K(02I9X`{VCH zA0ceSaDs3y(MdIPb;qCArzdB8(97*^?~?%196Hhd5Z|dZ?146DKh~<3LE(jY{nuYl ziFz8lyTJn`UG=~tPp`tC&bRHMD0uP4`<~i*6W(zxjmJG~p)m9sPwiGfpz;ZtKRVIj z(5#L{R>LNDYQvd{BvQA+@~kW@^5bf%T1%g+b6M8Lxry47^0{;Xwe3(Pk@b9ydnUVV z5drXdsC;=>XW%GR7Ac1qMUCMPSqrL`Jst95(IgF~=4VC0a!nurhuOne6=lfM5U0?Z zYH9wbp($lh(vKfAlXJdAY4QFwp<8?lIvz?gdPU?<-8Kq{>NUJ(XX=x^zV&?4TP9|F zlEX_njiz2>Q#lv>%O860&HR-!;nO;8#8^Lxkw@>yY&~&T9piV7<&-810@DT_I%WAR zgiKJu8_@ZH0|8CE#BSTW=OvSl1nr5k-kzuUtd!Ib8}$ROY4Q?dKo>qD2~p+#q5F(4 z9KO2G@21|qD@})$a_!*9 zk7&ALCrn4r**)M{Uz*mf*zMu?+u7BLgJhp$nbF&WLRtSB<7Tgfvb*k*t-{N#bgj4( z-&%wx$J?6;Oi<9j2=E-Cju$SmcuM*He37K@Q_GNhT10d&cHRSh_B<)66!a{BtX1C< z6ujy%6X4kUSz5v$x7eLy)si#6+tX8LYaBawWRaOK&lMatO1m`*S}BP(b(9#hHOsi< zB$G{mNmD>AMOE9=1EPD~p)8|M%0TJCTU@QSjE!bq3f~}Hr+bhM?@jH!h_RvlRG%!D z^mwJpah&eIzC6~;D>CA>oAX)+Y0IhbhIM7pYWXc(^HKcSow$s5@bF!XOEAM5tXsK zRR)U8*}rzVr}sJeqU32Cj+J_d%sl26oIlM=hoWvC-SigT06Iq@lB<<)vYfl)RGpOE zigKNYUGaXFjpBUSv6wB;@)iRo@kVqzj9@QzsZSyS{X*)fYizG`N!lm)gzb`v&{Rn? z+fb|nyIpyB`NZ%ijZHtJ-g$Wy%j`ObP4r#QA}bbJ8$3kT7ch7Fv`}eQP(iy!t`JA4VitbQ_`+I{0F$0hZIPJ8%U&HUQd)+pb342ia zc%Wj|Wm{BB>E|^GhHyJ}&V6x?UD9MVIg>}t#47Vj9P0C=eDVyD@c@%t9Hc~7t0ZdX zS#W!N<|+PEnL@Vzhzvz4o!w?;{E>2`{vW}g0{kOoY*;gum8c8Zeq=(9(;?VT z-hlYkkl#$!x$1YPQSE-!vMrTu3qI&gx6@{GE=*TXt6KrWN)FEV{wTGDHIzi&Tx?g^ zeDS;KRlElQ2!%ki9VWFuy$`cK>i2i)xsMHu52+9JEuYhCc&)a~IZ^&?uyWM@W00H` z){3pDxR}W2-fpzfz(W_LA(C1%DQ4q>O$0Dx!ATHcEJFR1%|Bn1O;5BV)IS+Yr~Y{8 znMgx5Q-s%mUB94NoGDz)+^blm>xUCnl@j>8KyfF$qKMup27>VzhyS@6?dC>KH=}dI zOQ5}{Pbu>?0rTl-H+ntE#8Cd%e&15_y%w59`KJbwnIW?W(F$l(AHu5nWZ&gIFM7IJ z5W$#q45gp*vq9$$QTt6NXNf>JIf`J2j7!K(-t?JSm0^EDvu~z0hvLTn%}Q)Z;2`(A zonKxyfZ+-t%EZ6hTb)2gW8?fSbDXF`F1ons?nL3T_nnoF&a&yQFfR0^K7LMng(0`? z5(qP5W8`9NM*`;;5HNm3(dc}D_h8LnLjS!ITHlw}=2sXpR9Rmk0CROBHs!k6U}6zu zI+~T2m*?;Q_9tw1j+q?1#3BGum6W$UWG zwCwJSMLlw{E?JQk?mE9K;>yE%gY;xl0F1%fWxPeBy`-yg!wPe(bq}Ybcww5Dxaeak z8mhR72_X8pn*ee~(=X9|!9>|~L%I%fb zGtzfRQ#i){T<-pGxr(Vwh&dpQP5IV+VU#!vD@CiPB4=NMlnkz?<=T1?-K?rur>UT% ztv$(Pqhp-o`D%$I3GqMQi6iTd$18v+PYEzB1V|ugiegUmC#hpyvxyyfB(%EEsJCv4%(Tbpd;5JaW z3m9bjSdj4#OQOgnqwES!UlZ}|?LegH3XQ!{BbrP`t7)3iOmS;1FQhWbz87)gm*H0v zL@)^MiN%jLOOZ@*xH0usmMNSvjOrCIKw~4PEX9jyvsT24laDR>S@-^7tC2aPy1e}7 z`nr;5Oi9D%?7B?y>)x%|pkORtZeoBHCh%ND&s|24OXFrd9-sH#aQl%`=QaTS?r8`E zwRdM;=;S|~Oh#hfdNF=dQ%$Uw)Y8pU)j>^9?X`kXzOi-e^%cBpuk&KO)p{WS06jj)u%4-4@Uw zM0tOvMsyZlxRRM8?U9z8#MIDSajmt-G!tTeF$04b?^KFT%0RfW<#1V+x*<)Xcz!9( zP}x{{)VWfY@tLIHETcL?m`<6YgkNSRcu8?tyWVJ0gxrFjzAOu?OdJs~F+DEfk!Y+W zPi9d@U6x6wv|6Hec@;p;V!A6`0+y ztUDms%G!W|`S=2JU`f$*<*hq{sI=W?jlKi5)!_F7F2TzUGUVOEdd;Yss&DFIA!VMj z-|Jbt7+G`34_JssVz5o$hL=Yc#4;&ck13j;j|K`Te^&h)RYXLqi@yptLtZyBHa1R< zALw`Qiur|$%Wzs`aVpQ;zhklO9~w4cLc;c>8ZlR1Y^w7(g~L0muF{Y%121>~M*E8% zuDM2)QFqyZQ<4`9_gg=3f`+_&R5F&tUfx&~r+#k-1xgm;kL_ZQJv9N=rFaheNGh(xGblih2+B04S_=d<+=64tJQ_WdIroT{MO zZ?ST+D2qDOKnfCSeya%-T9F319hq$B4eX7)l0TGRcP0KK)>Lg7mGSFXlqVI-Hod}& zWzSHrYAi6Fek)g$3SaTv{9>ZDABN=ZsMZ!XW>QGdS;3L`!Y^}+w_0PKn07z4Cw~1( zX-IP^(tBQ|Gh3U7c9MsA*5QMsK63p>2IIj=V4<>GG7Eg@Q>4x5l0zLY-EBvCoZ#fJWpE zHMqS}h(1D*W{aHSR6g@$Z<9K9^pn8=Y?#yQ3u~D&u%77_tYRT`5V3@lrFF~8`xwnFGG07<>}p98h_k5Oyc04juI9(err1p zt@fPB7z>9!l!=XaOOzd;kWJla%aBSNnhs(qXGSS^c|`RYVQNQM)*d+-J%13bXpjSpA#p-a>^Z(gD~}Io$_HE9Kbz>ap3?nd{i;}*1y3d zUDbcYs|SPe7r)Ju4lUIT&8x>|G%KrS#)z}&hG^9i6WNC~zi8N(a4_;pEqRs*(GXu8 zs>%?ZE0uliPv{~GksO?_Pk9?s#K)Hhs0d_tQnN;u#$Sq2s-tgH)lxsUemRJ1ZaP&J z`RGk-BorEK=CsLARmA45MZy)CU(E5vhBCV>-Sv#jWTQb^4)%1{0{K{+vob-bUlR{9 zB1VJcXo1=;x+p}~A+uu9k*bFBGU8}JMRh!QItzn)nusB4YTN=r9ZKW3cE7i;KO3A? z$U7irk#HNBNlGL|XSF9(NHhqaCEhkjq|Lq$7$CgYD|wLX zYqy!xH)@1FY`8>Tk}ISl`fwWc{KBImCEYDlT_gVU3_4(9VxV>obrKk3S|>~~v0Wvo z|Mqa-@jVB(#)q#W!SB0@?4xS;5hl&()S|OgJxM+d8RQkMchF_hqzZ8rRBq^pT8_v( z>)=KhRwlTKc|RJOz{Rn}t)E^wj^hfWelJm)92&NeM2?D(3vEIkbgVShFudbpGc% zBiyG#AqT-Hszgpkah8CJupniH_?Xe;fyQjK627dF-`-A^KXP4tV9{FsJPK1FLAK zL>)sd#J%-rB1|MvUNy*rd9VG~dJTW`4+}Nrl~hqtv9PePEEy-lJSfmMYXN84I+!ye zELJkukV@Y&GV+GA-cu`!Ua(njZ%6wo>b-8)aa3IPZf|W=Uf+GcCp7A_v;pckIA^^g z@ar5iK>`phrlx4g9C70A_yk@fu3w zK5A^hZGxShi-Y^|*a?YG)0=5|_%Wq%(XM{eUb;g=|c)+T>aO%tT!e7XxmkqCzX_El_Ub8R|D); zPS3@;@o(~pMx#KZMcF;Sz1KFp@N17yJI%sJz5w)x*_+uX6d>pH_qcMzx14ClMj56a zcNM1AA^yj{*VTt(2XJnlm-ZU5+$1g`8JSFU?=*;b3CuJQ*mMcwm`gC=C!W*OsZIFD zI88-+gpMtw7GS$1@-@zB);~PNu{rm$?z@jS#L3l~Y9j37n-sftsw$+yTJ>&fBj{g zsuvG$E53dEc6@BBZdb%a8TCFly~<>GjDaqh)ha0>B0?daUl005A6Iz4r=_LM*V-t2 zRRfv+Qqb#x@X%)d-@kv;#P&^3Pxtrtd$IW@LGjqPZwjxPo14$~HmK9TY9{jeJZ=v= zk-*7KBrzJi-JsolFMx)}!zl6W>RNw?NVXxO)5oN)E|L7QjgC;WhHp|7f{6Bg*nZGT zabREWW@iQpJOGAdjGRf}My*DSOmPG5ev?Cey?-8yA=lKLiomMaGET`pN%0JGU%X1A zg|up~EUeYvF8s$G6%#nT5I%tR#Q!B?3-QnH9Y(|db znbg~Z+U3iO3l683|E(j}K7K*XEiI+{__4Ln0>TE`+S@fWG=N%-#w>WL4R7J0c>Tpo z2t;6q3>bdD)nEneQvxruU2Aoashom>f}r5*wvp|{uh7~1(gopv<_(1Z;SG1jU!Nm5 z?;&jAAKsA9|1UcDhe42K+GTh7LA(2y9l{$TJjhI+nZz0-Wsk*r;$KKXNC_D;b`fuo zo_WKECJ}_DdHfH zF8~4~+!ZON4mix|E)b;`3T48r;qRbJiLG*L5ZSurB-LM4B7}HxYeKk6JJI_j*uPxm z8$N{jEChxWLH~4Y3+Y)DpD(6_(3xzFVY_8D{ICKL^|!AJv~B!|Sp^D|&BBwi3sinNG1XoS;&2*bQS=>H}*-yOb+8ja%P9?y=U$6VwPMSH~^@iudwMU=}d}g_iy>s#e ze$)#vvV%&VUcQ@wugjF({_fk1VqHA!23s~nfT|2#&1}=Z?TL18 z^Jq5e=Y61g+b(cHn} zIlFSj8@>)K3&F?KD6&dr-b|h=HM{B;6ct8^Xk-NLtP7m;*Ft>Ogvc7~(ZgPc`o51(zM2sXvz+tq-YGqH2?+sKAt8t~!BR_&HcnbEZJ_7o z2Mmk5ug?oS9(w(^C%$<(eFaz1&;VL1W#KZN+D`=X@wf;|^(++f)@o?@+$2|pnxS~+ znn+zLE;Jz_#MT~Nc4ugt8^`x<6(+bP8z@3<6gr8=!&7UtTD>bBkD38B1$yVrb3dJr z{mf*raAZ+%H~%`~pYT-@?!T$V+u>ZRtE+Lty2{GRrlzK5W@hyI=-u`NXBFLRr>No! z8A_7sN75+($wNN59EKM+ya?G4VZ|lbP5Nrb?>DnwnirF29v_zv$Sgr;ka2$_-+K$S zB^evc!)Hmnld*F-ICtgE9{l6qTuWclXM3FzI|S0zw2HNSJe=&?VgWVOggQM(OEinse}x08ko^RG&n>eWx?b1GLzdOpq=ILK zMG!e;H>^m*R(}>Be1fdAnuS3P&@q?rzgG!FAfT>1A#cuI&y12Nwy-x7ye0Z>c zDf^3%zqNW{L1G=!D2kUjM@w6f>!(kfyJRjVUSKQvn?FCj;FSznW(g5+o7w5oc`+9` zHpsm()V#bVRtrSqQjzo}f` zVKpF!dZ1jMbuL0pq|XpLYs8k5{q0|~pw$=Bl;^s9Itv8Q-MbwkH%7|$HGnoH_Y9^#AF}LxdI<89Rr6H;~A9=N?@^p2Wr|?pNPg0xAgw5sYcGZN3 z*Nx9d|NGNO)@zS4mC47oiXlp@fG7LKlJCtA7OYN}N6q=MhZeYvKt=Yt#y!!e#|X+$ z^K^cI2OXTxb{IBcD&syKBIi~bTbK$%lhTB9FF%5)+QGZD>=KyHzXJ*7=eKAt0jeQaNR?*srCwb*xfnJUtRtkQQX3<^}LxCwd%_{el0W`jpyi#l%6?D zF}M}Xm0OoR`LaiRP9uF^QhkxxTMBa&-d^3#OfdQIAA2wid`=pV+Hr4YJxBnjUaS)~ z-vXT*ODu;7_xwGl+Gm%MbRSVpoR{{PvbLI)L(l$x4Z5r@t$2ZoPxXa+geCtqi$Q<2 z`k<9p{4~g{??#Tf)JF#2M!UGVfQ`w<==hxck2W(7mx;2w=_6^gRqB%c)Vy=G(sFy= zAflW)K-A|#L?gmdgt-Fb@$vY18KLg@r}K z>4hKHL?fw(7%QKC*AHF4+~Xb{BVKR&Womm#F6@p%rg@oWx4f+s5fj5IT2lX7a2ePx zH#=bNgS7&mP3V#=k3qxHg+tO@vE^)%S{DTY!q>rsLzjm(HXSx6MxB;!{jGtouJ~Nm z-d=~BPJ#>yZ@AIf<~6HGOuet^vX5T)fp_|P9b6Dg;%|BgBT|{UM#kPW#2#wsOl!AH zOj+z36aU#Yk|Q3g$V^kLthwFIjnm%Tv(k#HXq-;A#(jvX^2MA6ENhzYj=5aOAfRYp zZnJ!%UW;{*)&V4{x&SSc^o937>;;%AAr}9g1hN?A_hK#aHBMd)wI>gRHJqBt{Cw{Q zCGqdFtd95?;=C2LIn?jEf@JzLZLAtJ8i3%~X(0oiqX*B!^bovHI2z6JHOxb&q%~*B z=@?r1zv@7A{cXi9Sp}KepU)x~hVzR2i>uDu)lnyRVz169=^P>k!aOfvHl{?WPqrT; z=Z_x=Bty3MDr~j_WIc{1MN80rPL9fz(B#We%A@SZ*?-9-o1Ks zL>zQ12c|~q8_E*VGD`K&Y%rG zA3UD+c&+<|uJIYiKc&r9uaWYi0)XJFXz~ac_o|^O$0hFcEnjy&i)zh+nl-q=0iCk7 z;U7-g^QkTyRfK03xQ(e^B>;!BRimmr$Z2JN!`Q9SFexdNh8~|JZf^#0BKW;4V`5SA z>E3%`YTfeWJArh3{)A%qPN2Z#@G&1K?dIWL|LT=hJi{i!MQ{T|MTjX))SS!um~myV zakSd(R_Zz+2zo-UYs!?-DU?Z0j>0R%Fwj;(*1=%x*$bmIS#M@>5G5Pti%**4om|L` zm7@b|vvzXY+~2&hsdhJhG0aJjlrF|d)yl`CXS|8Vdphl1YS2x&EM`J2d=(wYuPr-} zf|qrS`HuT752r#R*nT&=NprcIDlV9;>WB&eqNiB9FN2k zWA>KzW*t-d({(qCVO~OC!c-2xUGD6xe6`DAj*oY&3IkSew3GIYjyxj#@vygwg)fkBwcX~;NwjQgy>q4SFlI5G)hc6;Y+Bs=w5vAI)@xH8 zS@nv%CyvuGsD_!4_H!IBalh3K%>KicX(6-8+!8uh((MpnQBU%L2Kfw*`>dVl@u2w3 z%t*N8q@vkJ)&?&nV0+|8U4W_}S7UCzTeqaEa@}36`QzFBETxGm3TX6kbXq(gMJqJ* ze(UON+3UPI*Yn!)H)&P=Vv$5+SLmYWlWCj-cC{MOsoSLI&LPKyIkJmQ$6y9Qb$|x7 z527QJ@Zcl+{lFFPq)vnD8GLfPhg=8f=!W@qRjziHwF8Trenow}(JY90_-M=8EcxjV zF5?_)<5q_T_8q-eQzv0X=xUIK_Vlq#&JBWbGZtHjG8Q+J!bxL`$?`78q@xReU0GcG ziG;V)sKGtl@cp#f*3{ua-9$&gv1y}E{k3pE$K3JB)9^a^{ae)@hW3`5t^2(#)vZhf z7oCvL*g3OuEnaGt9Wpj|PVL=1`(xFO{jaEnPQ$ZQ&vi%fDp%NlL~8{R^168+oIV^Nf&@)VBai$fLcn`Z778qJQ6 zb{}nJ><#xcka)U>t2Lq`r;{z{5(9ZavE-zDw$EpoO&;yL z2fpuC{IyPwU0-685$6uKnofXpZ)d4UzA>Qlg*Icxg(J$K;(V#tjv>J4+$FEPl1<<( zww@*AI&iN}s9|D0W;|*4&Zu*6LQXNMo^snpmtKmbGEmaZnfz9GWP_-;S$jTiXn2JC zCoX6ym7u#*GhMJ74}}0Kk!&@}kV9$cGRkNG0INA9h=Od89sf@vRjyzS>TWiA%+JD;3AB*quI|JA5jXF37VM-kQ%W9rd^;6wPP1a(; zMmxc}yedg?3`J#PpR&COm?QwUSuOT{MA<@>`-Pp$C`ZFDo2x~Kb@VH3y*uTG`w0ss zM%9lxch4|YW)T>8Zy!Wwu673X{gcxV8xyAcz**wz5epCJ$F-F(nZu>(AVbXgq0s3) z2C$NQV{`tV2xZlw4^wcDQ{~Q7ux{*zM3(~|_-a&*<*9yo$bMvVuQWQHP3u$%T;u%b zN3P|k?BRFU6ec#3!m`WL(}(nMphH9u2NM2YYhxI7`|10^F2zl8`q~kheqwqW_OC!? zCm-IC-!8L9$B_&n8m0(p5k=o34QT$^3WPMm!voRU8aq$^(21J}28zs~RndD3 zWrihUlthEC8V_p0$e^B5-puZzoT}o!?jJYQZs}LcOpWqNwQEA6+ExKDzh^lKVvlZj zZ3sN@IUmoqr3-&*GCtTndV8xkgwY*vU>_OAdmALq(WRdhFbUC^oN;cPz}&|S4;-5C8 z{{CS*n}zt{g`=&3LYfvEAb|INQ@Q)gp=ZRB3Rf;3M%k8lIO0uPlXN|8k`z$ghFbDqr!T4<0Y2S?*C~@#fV{_U| z%(DQ6;J!Wo;tzh7DgE&b))6_}@3S)v`cb;4+lk_cx7!-$W8KHxjZ8o2txRx#d~B`{ zm5^w2mSH?fs=TFsYGU9-Nv(6u-PuK8Hi}O=CkkP!;$);8$r5R^l+(HzPobM6$uO=Zw{V>7Mg`>I9wJa_5pLmmueZ-SG#%d|ef%rt-3=~y0o zL`D{Z7o-Sqo8;gv3mmzB!1-U

x zBNdfd+^^Bwsk6NmoBf60dpU=3QW6%9kRP4`w)8;1s`pdbrTKIK*x8(pHOlWAn@G-o zl)tGKl{M8uq$>o*w^x*Udm-}DOck@6{l;gIX-_*s~zCU+{h&p z8}?vR)^5Rm9gw@MtfM0SB+`JW=Cg6G(YMTONBe38*=6Fj_k5O7U#DYti;7O4 zXbSOP?B3tD@bW4uc{Pj=yXfYd0JS)@w4Dn2R`|pA*&lC4vjf6Wti~p9vnMyMmL`V! zl{Ts;b!tNo0u;La1Sco+ldS9E_9Zsb?H>=a`+dFHHM9oK(&ClY{Iw36>>G-9BlDuo z!hN)rE^c7D_2d;U+>~w#GnZeqD-Vn0RPku($d>~zvo=@#KKX))MJ&^-c#vy2lf$Q! zmCRC_;b5yd78a==WlTR1x;%YHt>*-OxH)*bo3GRZ=Zjhz=I1pv+&U^u2f`ece)IKF zrLDOQNhd1hbo7+!nR=I0R5`aRh}XURgnT3b-zBc+TyA~MJ8T}pjx}{ zs`+V2G*)FF3w*?Nz$-!dWK?&=##r=rn}Lu|-Rb;V_>o~?nw%(RI&IuEiF1yAtfjO& zdEsFgxvG~fg8XsYVz5Q0>H6kZaRd)f2odK+zVF1(V*p>Ua`>(>cV;9o0>!}lJiVLt zI|KMcU1J*5N{n<$q@gg+qOv1H6ofNgHLCOH36V~V(?V=dvnqRUcamPP_V*_KV4m@? zhc@dVzIA&%xc{2ebH9@f!%C})fG@zKu^V;Aa(;6-tbMw&hap^IyC7sCN zK76t9dQ3-)=t{>pAsOe!%z3eC(xKRjmQlo0@Y-IkmKOO@uVRLV$YZTKpy8EC#Ks(0 z`P~zr$IKZefzY8^l?;!A>hy~elZUAm6F!U5W>?JucW&^?&J81DdTm|1b2%{# zi5W#K5j_^keV;B{ILPG^|E}>|gI5e`S=!I=0{x9YZD0OAuJs-BE%{KU{i3Q`%5_PIN`6o-58iAUW=>+JNvN&G%L97ip-K!?gl4u?9=O-Mi=ln1dW# zyTULxH@mKRno?ZT)vDm-LGlh(-+Oo9Q0O3R2!g%3^Yef<&l<^(186da)wA#nviEoB_q5Go(_pVBpX1ql{zYg&#UQ0`XIo z6yuWd48GRTfZ`^aPJcM+nnkhon{hb`O2NGNc}`%Z6>S)pvC4)OztL!2>nyX1x~9BX zEBWNIaPX866{mbC)+W5mREVzu8x2oGX1nGj`<7Tp>9^5g5`mf3UMjH-au$Y~T`zJZ zgW*SeDW~dBpoExDQHEGpYe^sSihh>yY3s!UjTaA=P*wQd#DCNS%^SSuwct-9swPr({m-h zZ$fL!K?-`?LM+ig zuMzXXPg)b6pc*hZISnM85$peiAV#QZpjFzezHL#bZ;W!l#>7+{1i|IZ>kG;2Si@#$uh#CIIaQcknTY(#h9-w?yK$jytcmo`Vw3?om?!Jssax3S(Va*Ex0lDW-3h;l;-D`!ok zt8{w{-F4&%BqbNc-Y6p}G8l8vNj@7|bbzyCuCh86Mup=P95N;z&{*k^H^8X`WJU6q z^veHm_1uno{Zc-JmIR2Wuc*jJ1zdA`3gzR~ku67ruI^Z4V5&aP^ng6mFv%u_;!E5tAC0 zF-3K>vUqSpiy=|-B%FDq7zyg>=zwnihhZvq_cCo*fLKf=qa@9rS(95}EsiF}y9(V8 zCj;#4T>uuvM;ssFZoTb>C7{Mir_DfLRNzQxSxavBN;-j{3PJ(DK#*g$Vq5L-IV+$& z>cf0plQ?6;x1ad6{bZw(UHrnno(p_f_WW^J6tJ*ip5n^N@Y808HWvDutp|~q2P-*7 zL1 z=`yP1X86-5P{Q&@{K^Zu{vT|;V{m5Owl*Bwwr$(Cla6gC9oyy| z+jcs(ZQJTt9jEhVpMCbTPu2I;sG2`kt@UHooMVo0T|;9m71q71u=`EW@gU|!>Icv_ zy|oakN$THR-c5NTifk(=lq_s;&a??aax#qz&z1JF9i}riu1@|EiYadd0URHm-Va{k zD>9GhOV%R#SeZbkFwd*wQKk7Wq4hKj2{wJlrC?Yryuve-E)8Iju}YBoICi!`oS_uk zDF9UaiL^ZJQbZkp>;pVz7KHzml1#MoL1U+&IMN%)(<(XiHndAWtU{ zdfN}y$#_L%*u=%H&4ptd6rf?X-B!ELB)8mRBF@*lkAk?@d{8@2-JN_a_Mk$V%^qf) zDA9Q`Ld5jg{1=cyHC5(0mxMuMgE{y(?bNmbtO-hjOmzcm;Cv613N^a=#o+I@XjBN6 z#jxgf{=N1b0^qlz=2!FsTNDnKz}4j*kz_L!_(M?`T$oL~(_|Bf;D=mAOk-ywvwL#GH04Nqq2wt0D zM#rzvde_9{(AW_JkA}HVW9TCKA-eCyrK;S=_x8fd!l1!L>ODqr;=dLKP0Z26NUeZXO3*=?WTLHUFH1QWv40S3#dg z%9LasAO6MWE?^riD0kcpMA#))kd6Mi@cF6zE2HHF)0qfLZY5u|kW4A?MQP%ySQQ># z0SSrNVKD87EMvLwypj-p_lpv59iOhIV z$F$DeAA_49?zw~#Y#OD$pIr3X{4Q0NZeqNLO|vlxxStU#*Dg@y^)*}`rqJvXFZZ`i z{Gf^c%U8@a5ZpN6coyx8nF zP5MD;cm&suhgYf6;;KbEs{KLUwxe`*`T>Ds<3&^s1{m~08XLyUhwe0r?qqW7ZOSA= z)!He+I!$sXlzrB~FeGP7 z@h-7j>e<^f8((09*^XFAPRwDdS`NZVq)75=Kd737=7M@A@Ju_a1<;<>ZeosA<%EwF z4BFs`d6t0ZXP(Hu*HV>cBaGUmAb>m*RLDV$H~#X%xsY`IE`EMg+l`nK8c^i+$OoG+ zNF}QKarTycm_cqF!^`P+Q{bKi9+xYN`QyIeVS;Q+S-UI;d>9iacn0BSsu9ed@dSF2 zDsIy^p`-q#2y_iDi*v_A8F-K~CLSgQnMx3Z7jNrW7I#)}b%%gXY8%*n(!NEpKxc2n zLGa$5BSGt?iK9G*WDeL)0+nbi?UGk5bBNW~yB1u(=Gj*_4E-Ko<-MJv$Z6~305z1- z??&?GAZ8QLQ+dNac%)5X1|o|mSaL1}?T6Y#;j^5d$v!hfLO#Z@qpzPDYw)aE;gI!a z@#v)^Az`oac(xbxv{2$yh9BAZlxlys4mu{ALiMW&D4PDtMt!dKD^*!ZXfcQ9hrXFK z%WUe%>e(4GDhTcX9o7nxAU$oM1(@}v251nin!50tUl#g(utro@cO=Bs_1~*WOyt;0YXUxj41XZ! zmfUm2El6Cc^NKYmUDR)vDzm>@o+2uE+zSNpP$v6yQ2Nw8Av{IIUoZ%~M>5CfPJk_G zC1q{DGcHqD&P&tZt7!?MCqFK&>sgU?o`_mVG=Wn&jcP$ zV5{T8^a|Fsx*!K1pr4;@zpZh(L0-s5eqP|VoSXCW^mufaajuk+X1O}Wv3y7#9KIl( zEeIy=YEf;w*)bVWN%y+}*6QWT7VT+Qc&k6Bn*3BgL z#?sf7@C5#JEn_Ij=i?pU+QKM2K5@L7t1N%Sn{zMVfA;kbbpr+hMld0p;_(5(RLX5S zy|^f9eScJ+UHcvSTT}OKZVdqF0}%=gIFzl7OFjS)TG^ekD`epD;oB=&g+fLz6v(-` z=voH=M$0|)h@gV*cwd060_My%czP=HLIC1Rl^yJiieDEdle8VTw~)UBHsTUx;k$`2 zp(H3&yK>RlvG;Xfcq91Mm3~MD=_*hX1h?I(oH308C!fVi(mdQ1sa2$RyI{~0#wX@^)TJVR= zUQ==NL@JGatoatO7Z)OesKExo4hvxrG`5v@?CmtPsx^3P(>ziX)x1ij3bL@VCD)-z zNhPq7SU_oA)V!3@Z)UEZG?uG}I|5Q97)8Tsi0H|+d9Cev-Q%J#B2`%@5qfY3e_0pI z9h7L|_A$_Ci3w|5wpD_0DVuW?K}eQ3ME*FNk_{OMZIjLz0y`KQsYCKH-rEKc3>Wz_ z42XISoEt*iMsLSS#S)ZN5 zrEM8kLj;1-!hTSYMc7KPCxl^O?JyWHoq~qM4i(ft1Jr9MAC`yjxzK;1UFHitGA6S%|Bi9#Wcz#Goyhzxz9uftraI;2OX-QDry_yW!S=d zrBOV^&joAbM-GTr$DWYy4^T4BomG2vQq1^MHlt$s6LPJHN|0rLv(G!3_q8g`%n`oR zLtlut!#z@9?aa%o(SFwebn97XD;xz!CB=Xj}Wi|MIN!XJPUH4uq2@J?*^ldVg&(U{{x;~5P! z3_Beu70}AqI>W6lhDmTP1(W>6WDNFDcM`YOe^U6@{12?DC+;<}r%1yWb@_nlpUDVn z!<`any1{P4E1G7C>4+D!n^tFIRSU_SPF5Oan6@E!sE8t`7P)T$iv_Yddd~bdWtbf% zPBkz(LzwTF(AxF9dI$luZ^^b zJ~y}e@!B*1A;^gdt7u0oxHyS|4UoXGafvEwQS)P|43VVGm$z=bFqPmlrVK=pZ7GIY z4--YWn?ma)$B^~xmR(@ymhy|_sT=Bt>2_>GXj|l!;(t=Cky8xE#_Wn%LOa z0?SbL5<74de|7cOAF$~1>R8ENQwFHP{MI$@!UE$_N&+{({rvH~57V>|dV($o8OBBt zafIH*@R?G_Tflh~Gyq6o5LVTm%WsgK0Ngsvzum2a@mGf@ntDpQe;Xe*uUg%3D~9wL z^hgzQltn7m^&3x^w4)EiiKMqTwnK?uTAXWDxN7!wZ+W+Fx%zWEK|AlIm|xq5xIM8e3V4$M+pAI81_$HiAu_6H$G$+Z1Ww-ki3* zV`U`9QjcUZrG{UzpmbYk5@jJ=5+0jE^U}~=84OB(RFPOeV7%beJp8nyS~r{Lks=vW z=`yZ`Ca`k}5M|J^cvTk2G*B&ne6U4^=R&7_Ac`&KLo(seI*PwJNkz+`A6i#XQUKo; z+uvnzkEjKGAPUHwUo6Bd8p?*(kOj*)y^fl_M6QyXn%%SCZt&+$g-T=lnF}S>f`rVe z4?|SK)$;GC37MhZia>bn1g2#xP(gWMA4MJvN2JjlP+HVh(?~XoF6EJ~n*uh|)TCxn zIE?6c4gU0_&we+Mz8n(>nvN|vx3K(+z}oVr?8k1A@qXw7Yz#!aDAL_7Nz#Bdf?5D1 zZ$!}_yAkz=La|_P)NQLG@R0n}UoCfOxvap*TBIyca7|gc#TF+-9a#^v&L$9m!UFGw zw#tzQD`x?H8LxzX`_6aRbr}ClU?7_2%_Xf7^(<&2@@)784nNb&*@r&LxJ~)QB;XUI z!@&63Cwc6v=X(fNq_16ucIu-WHXQ;y!^rILH?Lw5cCmr37D7j8wTl0J{Dd;Y;0(1Z zkbLrwMy{b_ZXY;7IIh!Q)G!JEO*J7a`d{$LCfr-6pdix6fdKTu@}koTah75w66GMV zAc^L=oC6%fMmAB1(&+iAWR2JYu+eyV@Gjjny_%{@U}@$gwC37u z7SD-tkM`zOSYqN=W39(affx-;FWy^*v$fSUA}MXmM-2nx;y4brQDr64D;~?+HL9&7 zR0Em%@cCIH7o_3qttrzY5+_EnybA~KBLOnhYn!!aA_`0cV3vzrZCDJAbM+t*p0LeX zcT_+^CX3uZ0Pgv0!R_H@ClY)j;5HsF;Jn4s zpEV+|RY^cYCH*@+xft@j?TRWc0U_-pN3pl|h))oT^hW8xT=U(*8?_9UNl`?1*c@k^Wxq-w#$1WJoJ#gI*WI9=p&e=KZ&V?vIuhk5G-c&1{1-(Y2 zs~_LY)Mn9wT&+71)XXPcEb9~L-Svx_nZKr7bc{a{3ky^%;#ku{zdU z_pH*r=2xS9)L%AySHP5Wk_yU?MYx*T&-BL|8RJVGxfVG>pZ?7vONpmw(9RRaX`2SI zBatd(IwsIY32t@>^?1lA@UG{AR6C+}@OFtY=qTTliFWc2+(z}nVu&ZKT?jJ$;YBY_ zm~5m`tK})0G$W;h+#g&YMmSbvl`ZkRczkoJ4IjXm!Y5mXS!$vM-=gmXQY)79?D~Sh z|92>?wH1*lM9;5aka?L#n{9AvmD$ttTb0Dx4w-TI;kU&HaT|M$k79c&Y3*TzX9~iJ zLuqH;+u)u*7`lDbqFb2I%`rsV9h}`CF^LjZY;%$_#Uc%KlM#iypB10Nn_|K@yRiAfm$`*`}2!EbB!m_znbZ zXTxpv#;VF>m+86VCeBK#c^>8RnRc4dGzln0zG~2Ug>y^I0%85JI~m+s_d-Fi&qavt zmP{z)`X!>y!Uj=?MupfvO;3jvNi`KgA*OS{IiFEI)QcY8sB-IGyC5IwEa(g`$4l`- zeWMsS(SAd0u$v&-M#RW!BB<3Tp!U)_WC0X@PD!TTrzc&?8T92R$e+pMObgm&eGad% z6tmv66bI{=7-xSKj@!n~b4u>$kPaTci1DlS6!dRW#bMf#|3J)6|T|C#))) z+0=8d=D5(DZOzGVjxgl~;6d1`1~@j4o1VQsE#!muHuMePQ{c(WF_nb7uw!Uqr>4n; zt&!vOIGcsu|9t|0sEkc)8WAS70_i6|-j0SZ5aB=IvlopsJKram^)Kx1@Ypwk?9{)& z>o9{6BtDXQ5K|nv$#Mkz0^5^nYy~@VL?;TVq5;5_=gsI$D+$WGAJOxy{Qv;oB+C0Z zf0ZP7Ie&4p*Youfp3^KfP#>Z(oTOWRrR!EZ zG0u}7{!&`kW)ybHCx3@~=x4k2lID+;NUWBp*;qboGv@sB2GtcprQ05!OlE4BPC&;% zy1hssPtn~4?$0a+pfFzu?S>nIBPa|vdWy~(m6YpZqIZX0&6&|C8Mn^LDWva9iy9fe zIRzp;J*rvhxuZVo$yA#gwIfGmn_c=HdZ9UBI4OiU@WSU86!?P#94UX$fp9*ab~8&N z5&=(*VUj2z48Fk!YzF`js$i(?cv|e>KE}&e+ueOJqtf!JfL^w7xDzmx<(2M7AgEucv$6bZPS|%70Y4e4 zBMWZfaLZaHPH|e~qGw4$XYawiD}mol3G}Y`w5CuQ#j+}*XBh%Ce?JcI0(u@rx)13f zspDWQ5*P#{e;W$(kWBAO}Vv&UhOX(}Nzl>*-K#W)h`$u-{1&5V#fTG+{SJ(gTMv-vkOL@!*Zob|{g)v#`^d1*vU-O8Dx+5+DMsotT-@)r zP6VLi;hvnlD+Hdr6VKBeE%F0#L?pBk+8MZP*i>WG$-j**&u@lEQK)e~R<6@Qjuo?M zC;){=T_BM?vAJsO3FP?mC|aJs5pqrNZk9qdVt>Z+dsOk!8U2h&%K7EPThp!(*8W1b zwvht|2EIvd_v!NW2O3)$y@3UoMlFdgRYr(Ir9(8^7K*f!lhJ4lpwi z8T73;f$+htfhvJR;s%tcaS}fD_p3~#NEVoyaNh+M7s+TESo+wg@xKZxcKsr)unxSM zzq{-(jx;d_Y4sQ4e7R4|(fQX__9`siY20rUrhf=R3j!dKcxbx2=GOM?jD0l0TMSPh z+A6p`jeRM1T*jMdd$=5UYgq--y3{G~y2WkKiiKgx@A$mTOMj{A;7Kaovk@K1vsIQm zr?u~6Y}fUw(je5B$gtWX zJ}_K1ifKQX_Nt`)wJ%Sd41PvzP&UD{y)#Zu!7Oe;L2J`3k_dcf?4l`~vSIN`Rk+!n z!_1XsG2-F(5!lIp}FWd9Z+C8e5UJ_7Ij1 z-fesFcOBuY6o|;uYCFouU_?_F&GW5Qq~PmoWinTEr3AiAizQ^D_}aJ-^Q370Rwcg$ z2Jwbjq3aiR3b7sL_?Y8t3}KLwJNT)%%*toxO%^#MRU(3J*|$*5W>83=nC_Qr+jqiq z_LpMe^WpH<({-QdT95B$*5(@|x}BT@@i_G;FFle^EoIy2$-D>0*rtu=*$LlkYW^HTb_z{v z_{C5mIE=Wh+ad_7CFj`+{bs_JyImlOkd?aKtcTZX&?HW5D-J;)j5N8dif$zvW+yj3 zO2ETdC^LYznh#i$(g;)u#WGlMwhVZYdeHbz0wXkZ(` zh1EF5sW*zlOxp|3ngp)$1P9qtX0j33BjqIYE(P&r=Fg=JLaME7v(=!rHHMjz7!%Sw z<1uTwr_y!!u$CRGL}6jlJUMOiNAdSRGb{v;+C3&&UQxU)lgnkp!9*vG@z$lkXZd4D z9x`zRKd`D*KBzP<(n9pH#msBw=7sFGX1fCsn-}VgfO@HMC~Wq?mIOwQy!DKNN3N;Puhn@0iZ}NKi@xg^4Myu-NE<<`X~9ED8wV1 zh>zZz+J2G^=!aWfe$SttM3|e-7rq<0704mG&*&r?0744NeYF=2I`n?Snw|KLoQw5m2a*B$I_P#CGz4-W%IVl!E*Tj9n76mcd{CTn(HTt9MGc)hr+QrnP zXe!25P^(M9FwK8N9|TNO{*0UoOalx9_#X+(g9g?>eai^2NHRk<{6{>X zku--Hyf%})=Ex>C0C?9w{r4Mzk=b2zPgc}=86UL%xJy(s>$Dc%?~N7mIx_M3P%a&M z@W~`+PWZ&nnz3%pr|sN4NU73hezUa#%j(b4lt+am+eh*rxkV+uJxW~R@a!}&iHVn1Ox51R<H6w$w4hR$Adhp;!m$$&-x#|hrusOPCt@PSQn6t(or$<5(gi|1~ZQBcin*$ z4(@-zSLE43(o(171H5wK8l3*Sh5G1VLF~k$2H_&C(#iNT9aU{ar2S?q6<*C&uU}%5 zcb+#98f?$EG!Oe9GZnRNp>7Z}S|?Ft8KJ}NvrH+2n0;2qd?#Cc!p?5`8+)!f+t>VC zFVaLCOZPLI9oW_UjzxzHHma6bq4fG4Rne!HSz(I$R%@mh!j;OHgt4SbE>>Towz3 z(z-NgFTV&$ILnZr=e5?wOl@*sk8L*BF8PwL3kQitRh#_x$de;MX)<52xah6QkrbGk zq^b?I+Bh^n%5mfUYVz#2ZMru$PG{%;u)Jh$*0%*^mm>R4f&e%7s;_9UXoiU)WLm>G z`pNNW#~(B6G|*SD{>(RKa%TN|b^1HQLW_vrL3q`_dvY%TR6wWJhK`|t&8A3fC~tnp zT1^353{Etlxdfclu1sZN$mb}eD_+zO?+{+Tbx+fCTw+~9`Z36Ok^Hkk+3$Eih zx7BuxCxF81fdzJD^uJ0CLyTm|kg;G?BAodnJ8MX^ePKlwCS=w!tR0uBqnf&$E`Qdw zLj^{rF-gvMS|XoLKsO<38h9ah2q$XCqnL$ox6FCAId=En_HZ<`s0%e@xs)cMlyfNCvY% zZ8n8b6w$z6oh_22IH&;p3TmW2p8h%JE_Uk?;a9qI5>X^`WGF%6HHrP{+h+%Phb4#4z}; zw72^mev7B@xf*z1wEn`F1X(kVKqV`IPFyMM_Os7MA&+EjO;v}mhlG{i!wO#Waq5ut zD*OPR1*bJt?E+LYWm%N5VzsB3t*SqE#u`}2 zI-i=YfVHQmK&c3J4#dcA*e4zoLMDL2J};3BY-5RKQM6CzTx+4nw1TPPyhDG-pY!>o zyBGs~iKqk8MCowUSM|-R4=dMyIZ`K536lsHX*YgGrTOd?-T$lH9T5I+4*$|W!C5NE zxSFQz!vzF@LFGY2zhc@oQ^Yn@Qdaag!>Jj9PQ*&5m4SL=q}g3!N`Y*|CK`)1QL)14 zK!93OHIwj zZj@;Yo&99v_=98gG}>C14OeEGhVF;JBc;C_C^s_4yu7-_ON$1f#qS74naf2|3fJa@ zC9DG^KgRhNf`$++W}elpt24$)H#ZOE0RB-I-)kG>AnHMYVer2F@m`t!;JytZxUqdz za62(|<@n{G`kgbJ8&xVZFIJt=`K zNJ$ulwuSQ?~2{K1ok|j2nQ*r!B+6uFqNd z2SY|_3#l~$(aRL2BuS+Co99oD^%0mz7(Ne@miTF{tVIst>L$12A}fh|weCkKc{^;u z|8K|dUuzu(2yo^cV6oAVt%b$}#uWP32zA#U#fXJqz&gGX@LZ6mt{|<#bZX&v|4x{O zpA~@_zA_cWl@uCZD(r&UUH2#J#+$@wZ8kkfr@p5RlE;WcXsiNp4w3W_VUBKnTS5X~ znZqEDfq=!;hGjUFN2v8FFG;Ma(t5{_yS;nK$o^cbhzJ&j;%QhJ& z6hM)jnMAqbjsuAfA1r47&1-nGI6%-5u5AT*0Mv+an&jNv$O(Np-3{WJ<=HDNtw@TO zp6;D*oN)|tJ=e|5PEIs(%XGZ}wJvBpoJ6qrKDUB=8B` zx*4Y1hg;Xe(z--x)GV#UVRO-<|4SaEM#kbC8b)&>YI*8(Z=jx#N=?HG_put=MP49> zNved?4Mt@TP)8fPH2w-rH29|K(wP~hS%jn)BxJ{;oTPa|DX!+JzfmNjO^mF*`4lBc zy4k7e9mlH&3I_RHhSl0T!P)iSl$F576pc*S2=Ziet4#Kl0TOq}8K$GOG^9pN&jCHHw~OH5 zD2!5lB>-Nd@p#z7FTMv1Dn9T3W6o)a`WiIpqNAhh_fBv8zur%#vxHBy7L%9v51q77J1IPJ5UACum_y`bdtzGu z=O<)HnAq4Js|-G)W=|ziPFXSNEGQU=BiH{l;T@f#LVZXG3(KMWeR@RACZb`WK4+%; zt}SJb2WNJg{QV$=eLFW`ne(v*mM69MT}>*Pv@4iW_5f>)^5INyJo!q~M%VA=rSy|f zb*vy-Jt0A^<*JSZIyK~f(OrP}p1SZ}^AB+)jTy{9AVdz3gGhyyhJTEAJroj{$XbY| zsb2#W)Pf+_`MY^PBS)I;$bZ3|Mm&%Wsy4p{9r-`U9w@qx5&mD;t|Wyji|`-72aFN8 zOxkBHQZ*V?V)~CEGemwVA^v{a+k|5FF!;{}-bYgJ^^F=W|7bQO|M%wl2Ci&i`Uvu4 z9Q)eK`a;SS(YCL$;!zpaeIH$!(O_n~!UKeQOU#YvuvAa-f}t8bBv~NJ-uK zeCws*9Vw!-NtQ^1%Uf?pk4WK|4(wY{)7fvKs~E1F*7g#+zVRo%DpN(*97|hQoro9h zWun&X9j$n*bjOO1eSu56y>j;-V(aEf|2D)P9ANq|@?#S2dA&aRew-dL`q>0r`cAss z-B6wn&w@G{-3_ITc|87C4BS1wZ;WL#c@|weWr}SAd030F&Fp_&(&=kL-Xx1r-^K zprxaM%b#vffZjXeSrwrAW0ZP)ABwZUJEZWHU!k8j`}qq`j=;s=2$S+ven!W^2@qPI z6^Sj@5T)bF>UA?gbEYAAFz2*0vG3#V;JTz(*r5{3;PXXB^2Gf=o7qPj(HD!R8!tAL-uAm#YZ(j^t|~dY{zL z`?^rF>+s}<=G{F0J})kz1oamQ#?)+a?03WmKbJQxUR;pa(oeFEpyMP^A7_+>(a2|0 zeK>J6auK-{ExVY}`HC!V&cydRis#$Ko2w-_CyDzct;erAT3{>)jf7*Jn zoxg5_-&KcRFW*N|!u`uT$J@PFKMu=$NXA^U;I1d8%3?6WKFmSOPW96*{ufX8F#-ps ziK3E7?WpVX>iu$mzTWn>Q8@H0`W?7|$h#MLU}^XK^%if|+s~rp-*_FSqHh2@B;>0e zTSK>JcyLU%4^-fK&rIRy@s2`ZL*8S|!jWWym8f^+yZzxZD5w|+tS(m%j-I*%qMUOCkA$8Q< zOj)OpF!qOC@`m&~P137l^Y*s(+}Wg6vb?>ZLp$3^>g;hDcyCfO*M|l4A#-sX_&2jB zX)kcKt-H=m(ZCkx-uPDf)@1Y3c|hP?P_31QeoY;5Fug!XOoH5xB@P-&zOGNk$%9ZiCuKeV zk0#xk9;eL22 z?eYrl=_#lUiVhoE>tj?fsR$j_;Li?$5QM_ZX3eQJxh7oVKcGv#;5prq5*JFYtO$q~ zcrW98A2X!*A{imjqFcVe-9KV0$9FCA3Z4Z-5ywDXaW|SHA2w{V<%i4VV}pBo2RsRv z@(E^YVda*TdJ$auCu`nVAF*Gupff<5^@OtY2jSe+N&oPpya2K1iSxXCPRU9H_1~*~ z=y2I#cHS@$Mci*tJZe4MhwOFVC^IL*5A+6q5V;)lD{|K zwaS2_6+sL~k5^K@hL8%30yB{Y6JHMx4{v6x0Y4ay+?YV+*H(kFLbIQH(ygve+58ZX zf~z-NKc#G{ES3nn#cW9Ufhm>+o#Q% zwWQnaBmvKbZF38$rrYg&sX3B8l>GH#&R56<1QNHY>3pi<0oA4@<>+vL$MpjO!$sk< zu9q0QqH@B3wWiJEu`OGLT5|c+9NUvy_EszOyQ>brEGP4x*N5g?}r}BFi1$s`p zYTM62-Nj*>9dhm`=!DyYV11hu_{=mTVaoi6KAV*g!OC zhIdxkmYn{^-FEMH$ih}A=CGxQZ!ZjbT4T!Be3~vfij!bZP?K}Y))nuP zz{CZ~^Db~&3KXdO!_7%XK%}hK>8m0LG;qLL#1WDF)De%j!M1Gmr_7GnHsahy?9seL z6NagG00+6FK*#yt(m}o6)CWJ{vP|W8DCqZp+u7T1yz~xD=3r~9MumnZj?e2RN0SmJ ztE_VW8X7fy`v|Y*B*JX2|Lb&(^4;CvqvkfrWPLnwUBLfp)E=(y^QG%C_5gt3aMn&+m5tq?N0Q#ADoou|9Le@LJnam0)>lX zjA-yC$`B%`c72_Zrtx__S!fDH53pPFJ#)@7zgufiRO=MfrF$(V;dKJBAwrXb!BMkI zP#VWfqhWD0pW88@Jra$N>r)jBr$oH-ml~C$2aHA!a1GCjJaPkIf z1C$N-c%jPQ9q<~33}pZlIRJ4O2Y#@L zPFBk-=Qzb4aIqxMyJPfJ+>o7fy@|;zopaM5)ez83-j|Jt9m=3@`r!*K^B+(k>KYJkLqah7xi2HZUVp(iYay6t$o4#BaC~n)nuBz(&yXhAa zLb?3915^B%Gsds=Fk?ca&x1sKv`neZM#6PNH?fw{Ut<(3CI$*a8N@oK#@7@}Y+Ejt z&+w79n=Lus0=%hGO@wHFI!1#jlDDY}9Z_Q%#~>hrA_hL|-itFdG;)Eigx!9NAd7YK z!c!#s6tWmaiAh6<4E}r)*EwpG>M0*GkwoTZVQJhrA!b>kiCsM?qgIUIgrOO@6wFV_jjlaM5sV~tT>Zz9Eww3*!zq>)5T`vyw`mV&5a*H{gKT59WR%Xe$!t2CBIB&d{Xl1C zig$)FqZ#hg+Z6EH6PV!MYt1|-@VfAAddGbxd}hv03}!ANYI@4+mpgzqWyrVYGH$?W zl7&i=ymsgjzUiH%=Dy%i%Rg$JO8~DDivhjb|AcVqfW49(1h#tL3j0(33IoDly-%~k zhsB~~&?g*Zv}k;W^mg?%+#a>12azoCnB$waebG6e0xPwMXVzu4@nrR zHIc)3fj}J5?3CjBMg*Xo_Aa#QIK%8O(bHca*6=Ml9^2WChkrXh^9;rN+1VKiX0atlI|n-4Bw z5mbZb*l9=CKuw;5M1@#!MxdR2Z*qIhmB#{ArfWU#`}*FWe7=R-`{Y+n*mdyqleeNDh+9mA7+BxpSxz z(s)O4&^}{AK3PY1`7=I<>Xtrt4~&!3fiho}`;{BH&LJ#D#{Gn7dalm^qu*4$t;|uR zK-uOm$Z*z;`iWx`Bu{mkPY>dIurA%2)Cy$i{-!6pMz9cdVA&U5G(eVX96q1F(>D`% zD)bmn^!1PZh&iZoM-?}C$cc+U&}(%Nz_4Y1!T7AF>I4thb@j_tEBAbrE8QTJ*T1#X zgtN>v^y=J@-@07*nPxt3wlE3-OlFc#S+_449NbKtiemTERX}UM3FFhyxz#uP?^d5D zA?*Pdu~GpD{%OBx{8Q>zGp|8krEuVFz5D<0WMm+M9TdrliNuLgmYEP96B84;z{OC# z!r3pFMhIs5?1oi_F}R58`Ab6sG$zM)laKq1HZ4~bfxveXcE{|?2{j`Q-YbIz1R)5M zx0lm{Mz5qz(y3FHU_Y65L2xH3{oIMO&X}00?bn(RT;X;l(PM~>5fE?duV_#%;rBko z2c84%=Mf;V)m~oPL9yY!evc%ru0*Wli&sM{BmcFQLX(yfWz<007{+BUStY5;s$!OO zpy8;2&}iCA80D?e4J{7mGuuT~^Jsa>=WG1Un+ zhQ+cHC1hJ3P4#hb1S~+dVdBATLb;02vfge@y-U6qx*YYlqs=wl> zrwcY`0xQVv2~_RAR)MQ%BTfQDdJnH8;+@G5oT{1AWiEQn111}7cwQexmt_$#zhV1q z@D;W4PLayj|AJ!gX8WT0;qvKq|K8Gh!B)11wdHLdZOB2>4rceUbTIH*kE0m- z`6rJVxIwU8=L-roV2Hmjx^%Tp{JCR(9rElR(sCEleh#pM>Wt&Emfm!k4}H}68!QGl@*X#xmnZu?AL(qKE|bCvs< zvXbzyi6ArqZa4bv3|us%KOl5=6!6p)2lCT5!5NuS;m#G^0gIfeg& zp|G%J6XLdaz;*0*vkB&YP$CF;1cEJ5YkZirRMA)t6YqFjw4Y%*tvDy;L?K1k{WdAz z1Mu#7)6tpS_o`NFB>%jgoya!|BAla5%^`1}O+VkptbyWtF$VrjP0XgN>sg2u4sZ~U zW764=m_npr+RTBxgJ?aV^^lNTjYVY>>GQ6(y_FSe%i-%v6V(&sllM^FskxokBNSPhJR39vtrB*q$asEhF#U;uRqoO zGc-SmPx!YK6jI#w?Es{~?IoIQ*bV9^qpILziX$>l_w912fE6>IV8E%t_w2bo2Dkqt zTON61KMt|Z>_Y)0Xw684n#FVW20_u^V?Iggvb1v0Bhl?35#@IU!tngA5W=eTD)H{f zT?(~?q5R18n;Sp?!|f8V?_oDOT(t8j zC@3ui8J6WHQ^#)gv$ze8Y<*J+vfJuA;G^Rf=Q(pG|avJ86=fdV8ToW9QN@wn<> z=!$$QUnp(McgEopHG?szg4??95P@9yJxIY@Jp0`N!=)IMy^m}|9m>&P`zFqA50BRI zrYZk&J72_Uhi0&<-o4i14AifmNbK5ZG?kNY_tT(NX|$~T$XAmaY(~%E#=d+X4XyL5 zYFSpaRxH@bUvD2?H(Ji$m9lHtGf6Bs!k-;^aYn%17qRRc`iY}=ZeP#%Q>-rLA2|WO z=067^uY3Il13z|5sc5!J{RhGRH><#77w`lO-?gR_& z?(T#njXNQDaF>SAxD(vnCAdp)cPF?73EDV;*SYtQbG|2cj5o&n#(4W@b#>J$*>kO$ zRlBDBB#%vo0kj#L*>d;(tt@6$Ri)_bU+cl+9_Xn}ByRBRHKs>{x&(K1Zi6rRCfX>D zFZeXWUntFe288ed^^VW1&ng;lQM`AJeqmq^_Om4oPVe&aiFl6xi$^}KdG$B5?(YJ9 zOjnI0tXeOwVBoZA0Me;XzFVzz z-R>kYNPUTjgnNAQ>tr;<)>gw%lg9rf(mQpCd$tJm4^AC&pz4L6#uRN29@#$# zcnAfLA`Ur=rH>fSg#C})ei~R1V%~!$ECM&>&mI6|7a)KFLcz1b$s{2CqmWL<5U5h5 zw%Fc2EBGeEn*irJ7VN1 z0Re$$2FWsNG#cMqIQSYEwv8W`Y}Jyh@zm-`d#qeHRk39(`TUnCl>`T$X1<5F-;eNuF5ivNAQpjGa_5b&Dpn*S!? zMAldAPmc^`h%UaHw_86ak*ScV(OKlk#yLhPj8Yn7h}MSMTqU2`VEf z4Qq|H{GZ78Z$<_S+#UU|-GVM2GY6G#GErLi25lWyJ;J^)Nv&LWO$%RzG!wSD?o{EZ zUQA?fwZ?aUqf2i?bj>HyyLpsmGj{*0X$pv~I4Kw;LNAik?4~rc!v5yo{obp(Ht=PG zO!jD@5hhC-s01^s)wf{>UY}=9N4q_pt+p@@0BIX>OjPJM;2u z*aiY0;#A?1KYjV8mwX#H*%iHJy$=44auJU9@n0K2H@#G+4(1YYt1UxTg;rNxO=o}8 z@Mrslp}BP{Pluujzg`TB{Tgg0R&e)b#(=#9aMxG+`Y$GZ0l|Xi2K$pbd-t=Ozc|BY zI1a}AMZ@Fv{NK>0(n2dEM~i>sy=`<%!=I7MraU}d6ff)FvxHig-z(9 zL1IgyL&^5Sk%oeArl5VuZn>?Y{*$}*7$XvGqngIIJPrGYz{0P1vzPsop?K+T!^iK;uA2LN=r`&>FFveh^O-@UF zj=G5WCpnY#Dnsr^G#(jH##0g$Cv%?W~IpC?a!rrT!=SvM$OC<{O0tQ@&6p0I`>EWN+nD2?< zw|*}XmCW?(NX8I&vkYIm&pl$N!Tomal^^<>3oWk_uM0DM4lLA!!p$|0m-$b}FrVow zZ6q=w7b769-jm^CFH$@R4xmeDtZsD{R|%iwuDN*f8T@Yu_tN11BjHXN@t+BID6aoN zxO-_6qGqiKN9CDvlpzX}s0&F*HxX07GhmThs;FIUY#1>sTlu-!=hUA|Md3x3J>@mq z`Pc6mo0fmyWsP04Fz*}@5zPj0>m3tB#n8#jY35;J z%lk|;J6FZ*Qqp{YK`|vREf>nqDegMx4oIa}?!V>Cq8K$YS?D2o#YwU);w1X8nPIBV zr@9gq&E+Z?x5Ad!OMrG%CZby%LPSeo1l1`#N|?9BE`>1aJmq2dk%-2n`nHi^v!3n2qVaQ%hBRNnWv} zWKo&UPu-8az6p{kwfHQHy{v%D+k2;Y{=YKn+MYlE3#C2_*##&qxu#RGVj(M!BessC z-+c5Q^~JN2c8xCw3wh_>v)tHV!5n|W_sbj+mHnDJ|j8{=-Tx~4U(ZXhyz*V8)&il@1*c41pu z%{R+4x$bUFQ%O}l1<#oAn-TM&Wpz@5SAx=9MI@fiBU(zknSK2aznslvn2?cLi8Z^| zx@1hBicE=jt&{v!rm;P3+r#2bQdhWqnP-_%1ofPtvc#w7h?r7R#%4 z4O{E-%Don|9Db23OBpFGs-n4L-)_Egr`4dd_~XngiLS?gl@G8XeIw*`L^Zf@p z6{SvWWLkK%5+1pt?Jz}LLOxFOlS_+ZK{uj#CIxtdTfG~^MAY}FQW?J1 zM)jkp%SB5D2Jdu5iu^!e%D8iEISC_Nm2!qL0wj_JfoY zTlQFPkVuFyBvnAjJ&B}zZ{XNnKdst5JVcXb1)qP}ekS45AS65t&c}&UEHxbZ%!@-2 z+ln<*+3&}Tx)1`N0*NYC?mF|{0o}aFe0g>$m$Y+j%h)vN$&QH^OF46O1-94e0!G9! z-@Nc>`&d%hrdzt7XZX#uZ=gslDSKXWknDwI7KLql)Ua;-Vn?fC3RB?=zylJXfHE$S z;W3=-NT$yAl^*Bb=yhB1Z3Xel6L&bA-HUrz+JO}#v8v?n z^V7bqxiI9$slwwiZIX7*QST#Kk!qj+e)b&da=>r3!ujMec0Pvk{io!de z1ldcnrH=5=pt}OvB?)SfQmfP(Ick$xQtfmZkqMgV@-DxG!A%oTrH(S)%CP0dMRlr| zho@@q-NAZLMTJ~1*1R-g zgW5ax0?RFpzCBX_QVb=$bq%OjTt74`HATS5X9i)BW6OL;e1o!fVWz;8i~Hk|-SPwl zSeeKkY-hT3zC(%0UUe4M@N;cM)_CsAX&&hbTmtE!NLEQ@DS#Wro70Cr6CENwV+)Vv znR8W^|42h~$`<_AZK|~TbNVKGaW8G(>5a<#q)cYX1MDJ$j1ityX~8r@%2H@VR19Fs z)A8_wnV^=JvC?93&1Fh_NzEveNPLi6;LN~ox#@7!zNn_fzz@8_w*)Afa?{j(#$Bq& z+|BVqsCQ9FwQhN$F5%^Rj9OK)YtbVTdsQVaWLO~~IYD*&*4GyG=N1`fUG46A-+GVQewCenp>!ddG+y(d zUDPZCdefHD$9*OA2zAgFEoi3Z=f6`2&Iuo=i@B@xq6w zy)c51XHN_SGbFa8U?s=3+~eki33l1IH@mn9QygYc-I)Xqfk>N(Z>hhqJICR1A+$Hg z0|8bCs?ODbGvkTQjwa6Omsi!DHvJ7K2Fc9@9(TY8ud%+Q7cxd8Rk!b0u-jMb(z&d% zw$yarO9-K)NGh5<5P#>eNU^+~f$4?rqb@Y%Z64%E)@x`r^qEuBnH!Pd3A#8_gX)g+ zD_H&@@*p^3%_o7mC98uCPw&GqEYGqfeO9O(oz>g2iVhKlijQ}%i+4weUyj@hEL9So z#5H?dXG6D@FwV*0>5(NB8R|ARAu3y16k|^&Y^l$k*PJ<`GZ@aBnUt?0QgiR4>luE? zExN}H+tMTG@-`a|Uy=<u+Dtp-EC%`RCg zGF|th#r{kLFYdj#tNEtfb*MN;$25=6lvwsPrA0e))PbkE568s;U6I8Q+$k8)8BkCy zK-ki~a0B;i6^@6~H-~Kw`0lAiwE7EwY+cg~g>A3|{V=r!fHINks(RT$OM8wMei9nbm}bQu^l*SNcp>}BJtD(hQ};pdr!Qa3E{aFmP~b1+%@Cd ztxT+^WbP93B3Ru`0Vxq5E6s{a$Ji3cx;4sXW~JM#)s>2FcGkqh*uWBt&EEHWi0r8F ztQ$2jTH?-}ig;#p0s=pVLAR6o*c+*ft%`H6rYvsN<9kR?@?=6Uc}d*`$NR^F_T8wr zEimorL4gc_<`3CrEWj=F^KIft+x0pkoyi&XDIWX`POlPX1{2Kv4dYZNNi(fBS}hWw zw|z1jG?x>+&jt=X&J6E9m2`AHt%o+HPli%ItWtJ&y_m;1*+5yC{92=MLhk(bbgOo} z!nD-^lJd*hYQN}O%1m_+CMYIP90J^4WEB9n6;*&)sm1P-^$WW6NU!)1oi&yG5P=Ma z$fJtOi(LERZu(UrM=%>ah*-kAD--=gZC!9+^%xhDOg`-HkMVSqZv_D~*~n+za|fE2 zIu9OpUr%qnf9rnaDOUg z)(**4WOP{2DO@~s48PXRu4DCfiKo=Jcu0@7*`7rT=ciOD>`pf^S~P z{?<&83GrR-CPPqOI9lrf&R6Jxo2&`f7L3etq9u<9VZYpkGSrQ2Ce2T{ADGE92yiL) zBDhQ?dMO=TAnVaF_n4X{mT;#;(gH}8S>Vok8T2GE+pyvd3N4EA7K3l-MfP$_h15nj zZ|Cq70E@PG6KRMj*Vd&>%q+|-EEPqEh-nZ%^*%Yd3C;3uG@zGI%M`pqOwPc2f|V(+ z-7Zv9BwqA!T@v%w3$^Y1swRA@xgfG2<%oA$1)wp7Xl{iXQCQxdlikgRFJXcjk{_4? zkY`(ND_=FZ(JH{*2A3e794I#+6E@>gSwWfE7xy6rHaFY#c!Y0i zVp6R;LO^STLHjeY5Yj8KHYNuhsH!!51sCn$rSquYh(C@+D-pTnsu3|o1}THYI79i? z0Rw<^cJKAmo|x*k2-o)5U5P+lb8*SdD0A)OKuW5clzA>4`^=ZmBV{#c%F5jNgo2}V z(V+IJASwp{D)4a;JfrpnT}qDy{^Ua=uR&I`36BcSzmYM6$!{10mtzWc@` zT$Cs0DO6;WL=mHi^0G6>t0~S_F-BZkjpm5~h6*+v8)uEL^df7yg#@}~<&B@`is)tE z-tw=Ng5B9syaP0(<6SQ@`*238u{DjdPkl&!U1Z}5Q1W=}%6dtcT_WF4;tY~i?R8xp zT!-?*{Hhoj@734jjju{O4W$qX=C-i{RXDAGGf{Fba>Q-CMCON;)&Ga_Tb zK#_O`pYB%-1MeMn;p)9DuEt)S8xOD55%w^;OFw;fFZ4O)wV;Y=KB7UK-`W0t6%P2u zMw#!vloP=qH<>&GW_tQ5f?*1LPDm7?qLW_vwnDStgi%kAz0I=Subt@@7q?vX?7b&j zsXAX)5*-^a_kKE>Ghq-)eXDvWr)iB(m1z9+RI4JUm&0d5JUgM$0-MkEWJ~p&%!h_D zL>-Ca=xwY=(k~-2X-dmk7Gm+6SV00g`8y2m=2Pw90%im>wAW_kihHTG{ydez3tDyz zTiirOhEf!qZOWfka>5aam)e0DfT~XCKyTief=B_m3+1z_+1H>9=!t#8(pK4{ynzJtSW+TY?7@p0o2EGv3m3b zKjbG$4?mic;39NUVPQ!OjZL)Z1K9h^J-g@?#f7yJW9`8jI(&MDQi!DhB$}p*eFM3p zD@n9uTRf5x403L6hU3cudW*Tu;MUx_Gt7rIxq&oI^{kY-B-S*vyknKYdMD&LVmY=v*oKr`KZ7oC^}l+)|!x&_D9DfC!&}*jnh_BYS+w|g7+2SU>{BR z?wOl*#ZzWL*Z2y~w!B2){=LC`rXX$h8D1z&>?JR72!-Oe`Uyb3`obzFQr_Aq96*Sbl|}G@utDTqC|QZf7|x#*WUL= zbC(dFTsEyY(H-vayLues4MKBj*B+)B3PAFAKg8jG=!c5ExQ_Vv-oxU$vM_2Tj&bFwl2r5l-(}!iuav3rI>)AS41Ar{Wip%G$QB31V13!C zVdKu7cB*wg2*-D>byPCqQF>S92b*3{Tt2PvX}#Hv+DW6}{T<^G;rI2HbiTsGrsmt1 z#%J+WKs`TA5ntQIY^f^zm3xYit8_IQXs%Lf>I=lS2M*2yFg1x3;fuOcxBe!>KUWbU#1 zZk|)VGW*I6)T34WHV)!bDcF`E)ka*=g`YhO@)+ts#YEc>>pn}a8`eUqCHkpKu=PjI zxE_j%a+#+Q=2@lJ96ve*{S8%2QsySXA3dD#PtYSs5yyLBlg}kX)P1S4H=OLy{>tMw z2{FdpNz@?xSq9l}0}kW2y06u9gCK=Kns|R}?DU+1N(cE5AF1xMF@{dR&087A&;66a z2OYLX$E7R&Cl3_ND;cre$?r{$vPY2}9UbovKFDot+q~+7CVg(@dI)x-%g?1Mlm5H= z``#GF_#wzu7@lr!e9#+m)HBY%wjA{)k=D+tOVjTo0Ne(z+i^*GzEy0}!~Gf7BW!wR z=5$fu<5a$4aif0aT7xa*sIxcZZVj`w6})_sV35bB?+bSp^9c59A+?O#&DZumhb_~> zERaEk>PLE>24jdtvjz7hmzNi&6LF zarAxPb_oz~g*~rgvMy`+r6(@`JXa_T6+4HA83hEIi;8{(;Ohs6gjBJ(Tpr9OBqS^> zXdWtdZ}VXxomt)uqYST=H@{o$rz%i!6TEHtCSf=OFo<`qF3(FvZlqyF_B0V^V;$D? zRvfmC(p@e+FnPOQAiXA^EUGoqPxov!hMk<@_eT2~v+)8s^S*Gx_V)I<>nkvLVtZmF znX{Y~?aS7w4)`Raqg#U3I+dleZSwJ)^=Y+NQ}tKC$xeMdTa?}~3@#H1^%0`l8pVO(N-JB1z z{%o3T4$pOzIO=UAw52;OPH)Og(^H>vE@}5R-mvKt3iBZo3~(@!pzXMB7`Z@;Q0y@r ztuarG?x>Z{aDRQR)NQ4P{nhZ}FM?>;zlPTL7mSUK&FbnZ`26AWaDJa zE-$+W`mWwfsNPrrI&&Rx@)l-ZvEF>wE`+)%k13LzQ~FpTGB@4dMFksi>vK`SF*jd{ zt+?^GWK=j5bkHlxk15izk(hUtxmjj8#)jn1s+Egh^9t_z-6Hbk29B^^KI>xn`j)~g z#e}Al?zgzjvfa#uon_YP)xJBmEEKHz`xU`DM)x{W{&?f8AQrnpx!>0jePkRevr9Bhe%Pq{N}U{4py?#yPE0jF8EsI zz27t|Vc|Yjz+bCD?{(|yx>7Pw)~@!}+aEvaAhm`g?K6cD>1g?m!$tM*Xk3T+TrF?T z>3sn_zt=M?okGDVCNSAMI_4VWBqb!s%;x3gO}sc58d9JuaiYL-Ku`5H!ne&S%uT;~ z;jYZl2EUsg-E3~uUtUQ+-|aX=ZJSLVn)jreCMDaJ!ZIpMdwF%<rQilN?Ip<|j=o5! z-#e0LG=qXJgrmpuIBwc|Nh-j#y~2@fJ(|KTsZT^Zoh)abbYS;Kf*w&w$giiTr^#_| zs`5+yC*y~kGvt8oFRa0!GMbp@S=Kp#%f=kx{Yua2W~ItD5AgmOT_K*}GXytdPH`p> zo~_q?1wnD{WAkTKHNO}N2r5zw!Gocn@pm2((oGS9+RqNgkQ$Oegro}X{TudwyPQsL zh;z{0id27|U<63Ny+zkMG4kh^%q{|g^z)6mfai+;KR1QKS-IvGy;M7Y9@9h@W9lHBZdKVjr^goXDc5kUM{P zd4Kiu{-|brb8|DT(~cf%>cQnHzilP_^#}P@i^8e4-C60;qt~|qI47xlPs#ezkMm}9 zp8NppPtOW^>w}nYN@vNv!7+TRySuwBt|vTPT)~CfudgGKCDwGDB6aN$NwlT{S=}KVBK3gPC1Ad0%&{IIa_TwyQrpCPQ@417Kpgt zHYP%(-k$QbMvCwA^7C43bD}s?GnAY+|B9EO{M4Altc-Scc53xqwg)hYc0;h~exEMf z>$7@Fi}nN$U&OLJ(E#rn)-=gRJcx_iNDrTc&vaV#ZX-5F#>hxTxA*Bv_u9_Gd94~x z3v(M@QAtKtqM9A4YwY$ed3q}ine&glk4?clCLjK`EGtE1*w zhu!XukCRKf2CBnt_r?fJ_0VVsUv6h6JM-BmQCiKfit3|mv@rytBVPTf-;jnPMy^L_ z+7E!~$w?9g0%_&Fwtr_3SM925aJ%}bn9Q(PP?%SydVfA>bxhVO(PUpBzrg=t5j10i z%u4Zb>I9p^Y36Wo0{=F5T|A`3-W*!S}G+{KTG zG3wAGJdh)QgZCUf(@C#C{<;@*J$^Wg0tz`Fygy`5jEj52Rs(sB4;6R$@mclLxGZ8@ zT3U4F`uGVisIJIbJe99_e`TY(q89=&H-9yEXe7?mCbA`b@nsv(_m2B3fEKcVG3g6; ze|Bu0rW}hY+*X0DTuQtCQWD+o4=3_H@rOU{xl9jVsLI~+IlV%b{Oj#F{eVPGOFNb> zm^fEm79{NR;15F6i!q584WZFkA~7CbvKyDDEwtgeyhuuRyL zXTV!mLrMw~7Q*5X1-|zd6MSAuh;^F67@taJdSzlfZ3LQfBnqQ)p+2u^a&fZ0%7z1r z)O@HjrcZ2U4lkps$<6<+TS&q0@zLjwn7CkFR%rbjMu7NMUxbyFm1kU=xXzy%*42Q<7f3`#g6?&M(3y77nqxL(UkP!avUV9vjT=Ih^Nb1AWmez}$ UcTG40P>@GnT1Bct!tnF|0EYo&QUCw| literal 0 HcmV?d00001 diff --git a/doc/member/bbcode.html b/doc/member/bbcode.html new file mode 100644 index 000000000..99d0ce6bc --- /dev/null +++ b/doc/member/bbcode.html @@ -0,0 +1,316 @@ + +

Text Decoration

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
BBcode syntaxRendered text
[b]bold[/b]bold
[i]italic[/i]italic
[u]underlined[/u]underlined
[s]strike[/s]strike
[color=red]red[/color]red
[font=courier]some text[/font] some text
[quote]quote[/quote]
quote
[quote=Author]Author? Me? No, no, no...[/quote]Author wrote:
Author? Me? No, no, no...
+ [size=small]small text[/size]
+ [size=xx-large]xx-large text[/size]
+ [size=20]20px exactly[/size]
+
+ Size options include: xx-small, small, medium, large, xx-large
small text
xx-large text
20px exactly
Add a horizontal bar +[hr] +Like this + + Add a horizontal bar


Like this +
This is +[center]centered[/center] +text + This is
centered

text +
+ +

Code blocks

+Code can be rendered generically in a block or inline format (depending on if there are new line characters in the text), or you can specify a supported language for enhanced syntax highlighting. Supported languages include php, css, mysql, sql, abap, diff, html, perl, ruby, vbscript, avrc, dtd, java, xml, cpp, python, javascript, js, json, sh . +

+ + + + + + + + + + + + + + + +
BBcode syntaxOutput
[code]function bbcode() { }[/code]function bbcode() { }
[code=php]function bbcode() {
+ $variable = true;
+ if( $variable ) {
+ echo "true";
+ }
+}[/code]
  1.  function bbcode() {
  2.    $variable = true;
  3.    if( $variable ) {
  4.      echo "true";
  5.    }
  6.  }
[nobb][nobb]This is how [i]you[/i] can +[u]show[/u] how to use +[hl]BBcode[/hl] syntax[/nobb][/nobb][nobb]This is how [i]you[/i] can [u]show[/u] how to use [hl]BBcode[/hl] syntax[/nobb]
+ +

Lists

+ + + + + + + + + + + + + + + + + + +
BBcode syntaxRendered list
[ul]
+[*] First list element
+[*] Second list element
+[/ul]
  • First list element
  • Second list element
[ol]
+[*] First list element
+[*] Second list element
+[/ol]
  • First list element
  • Second list element
[list=A]
+[*] First list element
+[*] Second list element
+[/list]
+ The list type options are 1, i, I, a, A.
  • First list element
  • Second list element
[dl terms="b"]
+[*= First element term] First element description
+[*= Second element term] Second element description
+[/dl]
+ The terms style options can be any combination of: +
+
b
bold
+
i
italic
+
u
underline
+
m
monospace
+
l
large
+
h
horizontal — like this defintion list
+
+
+
First element term
First element description
+
Second element term
Second element description
+ +

Tables

+ + + + + + + + + + + + + + + + +
BBcode syntaxRendered table
[table border=0]
+[tr]
+[th]Header 1[/th][th]Header 2[/th]
+[/tr]
+[tr][td]Content[/td][td]Content[/td][/tr]
+[tr][td]Content[/td][td]Content[/td][/tr]
+[/table]
+
Header 1Header 2
ContentContent
ContentContent
[table border=1]
+[tr]
+[th]Header 1[/th][th]Header 2[/th]
+[/tr]
+[tr][td]Content[/td][td]Content[/td][/tr]
+[tr][td]Content[/td][td]Content[/td][/tr]
+[/table]
+
Header 1Header 2
ContentContent
ContentContent
[table]
+[tr]
+[th]Header 1[/th][th]Header 2[/th]
+[/tr]
+[tr][td]Content[/td][td]Content[/td][/tr]
+[tr][td]Content[/td][td]Content[/td][/tr]
+[/table]
Header 1Header 2
ContentContent
ContentContent
+
+ +

Links and Embedded Content

+ + + + + + + + + + + + + + + + +
BBcode syntaxOutput
[video]video URL[/video]
+[audio]audio URL[/audio]
[url=https://hubzilla.org]Hubzilla[/url]Hubzilla
An image [img]url/of/image.jpg[/img] +in some text + An image Image/photo in some text +
+ + +

$Projectname specific codes

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
BBcode syntaxOutput
Magic-auth version of [url] tag + [zrl=https://hubzilla.org]Identity-aware link[/zrl] + https://hubzilla.org/?zid=[observer=1][observer.address][/observer][observer=0]your_channel@your.home.hub[/observer]
Magic-auth version of [img] tag + [zmg]https://hubzilla.org/some/photo.jpg[/zmg] + Image is only viewable by those authenticated and with permission.
Observer-dependent output: + [nobb][observer=1]Text to display if observer IS authenticated[/observer][/nobb] +
+ + [nobb][observer=0]Text to display if observer IS NOT authenticated[/observer][/nobb] + +
+ + [nobb][observer.url][/nobb] + + channel URL of observer
+ + [nobb][observer.baseurl][/nobb] + + website of observer
+ + [nobb][observer.name][/nobb] + + name of observer
+ + [nobb][observer.webname][/nobb] + + short name in the url of the observer
+ + [nobb][observer.address][/nobb] + + address (ZOT-id) of observer
+ + [nobb][observer.photo][/nobb] + + profile photo of observer
What is a spoiler?
+ [spoiler]Text you want to hide.[/spoiler]
+ What is a spoiler? +
[toc data-toc='div.page-body' data-toc-headings='h1,h2']
+Create a table of content in a webpage or wiki page. Please refer to the original jQuery toc to get more explanations. +
    +
  • Optional param: 'data-toc'. If omitted the default is 'body'
  • +
  • Optional param: 'data-toc-headings'. If omitted the default is 'h1,h2,h3'
  • +
[nobb][rpost=title]Text to post[/rpost][/nobb]
+The observer will be returned to their home hub to enter a post with the specified title and body. Both are optional
[baseurl]/rpost?f=&title=title&body=Text+to+post
This requires the qrator plugin.
[qr]text to post[/qr]
This requires a suitable map plugin such as openstreetmap. + [map]Generate an inline map using the current browser coordinates of the poster, if browser location is enabled
This requires a suitable map plugin such as openstreetmap. + [map=latitude,longitude]Generate a map using global coordinates.
This requires a suitable map plugin such as openstreetmap. + [map]Place Name[/map] +Generate a map for a given named location. The first matching location is returned. For instance "Sydney" will usually return Sydney, Australia and not Sydney, Nova Scotia, Canada unless the more precise location is specified. It is highly recommended to use the post preview utility to ensure you have the correct location before submitting the post. +
[&copy;] ©
diff --git a/doc/member/member_guide.bb b/doc/member/member_guide.bb index 53cc6b8c7..c0ded4614 100644 --- a/doc/member/member_guide.bb +++ b/doc/member/member_guide.bb @@ -238,7 +238,7 @@ We highly recommend that you use the "typical social network" settings when you [*= Anybody authenticated ] This is similar to "anybody in this network" except that it can include anybody who can authenticate by any means - and therefore [i]may[/i] include visitors from other networks. - [*=Guest Access Token] This allows you to share a file, folder, photo, album, or channel with a specific person or group of people. They don't need to be Hubzilla members. You can set an expiration for the Access Token. + [*=Guest Access Token] This allows you to share a file, folder, photo, album, or channel with a specific person or group of people. They don't need to be $Projectname members. You can set an expiration for the Access Token. [*= Anybody on the internet ] Completely public. This permission will be approved for anybody at all. [/dl] @@ -287,6 +287,458 @@ The connection edit screen offers a slider to select a degree of friendship with The slider on the matrix page has both a minimum and maximum value. Posts will only be shown from people who fall between this range. Affinity has no relation to permissions, and is only useful in conjunction with the affinity tool feature. +[h3]Guest Access Tokens[/h3] +Guest access tokens (sometimes called "Zot access tokens") allow you to share a file, folder, photo, album, or channel with a specific person or group of people who are not $Projectname members. These tokens allow you to share individual items by sending a link that includes the token in the URL; alternatively, people can actually [i]log in[/i] using the token credentials, after which they can seamlessly view whatever content has been shared with that token. + +To create and manage guest tokens, open the [zrl=[baseurl]/settings/tokens/]Guest Access Tokens[/zrl] settings page. A random token is generate with each page load, allowing you to create one by inputting an associated user name and optionally specifying an expiration date. Existing tokens are listed below the dialog and can be edited by selecting them or deleted by pressing the trash icon. + +Additional permissions may be granted to the guest token by expanding the [b]Individual Permissions[/b] options and selecting privacy settings such as [b]Can view my channel stream and posts[/b] or [b]Can chat with me[/b]. + +[img][baseurl]/doc/member/assets/zat_dialog.png[/img] + +[h3]Markup Languages[/h3] +$Projectname supports several markup languages for advanced formatting of content. The default markup language is a [url=[baseurl]/help/member/bbcode]custom variant of BBcode[/url], tailored for use in $Projectname. [url=[baseurl]/help/member/bbcode]BBcode[/url] is supported for posts, wiki pages, and web page elements. Wiki pages and webpage elements may also be written using standard Markdown. +[table border=0] +[tr][th]Content Type[/th][th]Supported Markup[/th][/tr] +[tr][td]Post[/td][td][url=[baseurl]/help/member/bbcode]BBcode[/url][/td][/tr] +[tr][td]Wiki[/td][td][url=[baseurl]/help/member/bbcode]BBcode[/url], Markdown[/td][/tr] +[tr][td]Webpage element[/td][td][url=[baseurl]/help/member/bbcode]BBcode[/url], Markdown, HTML[/td][/tr] +[/table] + +[h3]Web Pages[/h3] + +$Projectname enables users to create static webpages. To activate this feature, enable the [b]Web Pages[/b] feature in your [b][url=[baseurl]/settings/features/]Additional Features[/url][/b] section. + +Once enabled, a new tab will appear on your channel page labeled "Webpages". Clicking this link will take you to the webpage editor. Pages will be accessible at [b][baseurl]/page/[observer=1][observer.webname][/observer][observer=0]channelname[/observer]/pagelinktitle[/b] + +The "page link title" box allows a user to specify the "pagelinktitle" of this URL. If no page link title is set, we will set one for you automatically, using the message ID of the item. + +Beneath the page creation box, a list of existing pages will appear with an "edit" link. Clicking this will take you to an editor, similar to that of the post editor, where you can make changes to your webpages. + +[h4]Using Blocks[/h4] + +Blocks can be parts of webpages. The basic HTML of a block looks like this +[code] +
+ Block Content +
+ +[/code] + +If a block has text/html content type it can also contain menu elements. Sample content of +[code] +

HTML block content

+ [menu]menuname[/menu] + +[/code] +will produce HTML like this +[code] +
+ +[/code] + +Via the $content macro a block can also contain the actual webpage content. For this create a block with only +[code] + $content + +[/code]as content. + +To make a block appear in the webpage it must be defined in the page layout inside a region. +[code] + [region=aside] + [block]blockname[/block] + [/region] + +[/code] + +The block appearance can be manipulated in the page layout. + +Custom classes can be assigned +[code] + [region=aside] + [block=myclass]blockname[/block] + [/region] + +[/code] +will produce this HTML +[code] +
+ Block Content +
+ +[/code] + +Via the wrap variable a block can be stripped off its wrapping
tag +[code] + [region=aside] + [block][var=wrap]none[/var]blockname[/block] + [/region] + +[/code] +will produce this HTML +[code] + Block Content +[/code] + +[h4]Webpage element import tool[/h4] + +There are two methods of importing webpage elements: uploading a zip file or referencing a local cloud files folder. Both methods require that the webpage elements are specified using a specific folder structure. The import tool makes it possible to import all the elements necessary to construct an entire website or set of websites. The goal is to accommodate external development of webpages as well as tools to simplify and automate deployment on a hub. + +[h5] Folder structure [/h5] +Element definitions must be stored in the repo root under folders called +[code] + /pages/ + /blocks/ + /layouts/ +[/code] + +Each element of these types must be defined in an individual subfolder using two files: one JSON-formatted file for the metadata and one plain text file for the element content. + +[h5] Page elements [/h5] +Page element metadata is specified in a JSON-formatted file called [code]page.json[/code] with the following properties: +[list] +[*] title +[*] pagelink +[*] mimetype +[*] layout +[*] contentfile +[/list] +[b]Example[/b] + +Files: +[code] + /pages/my-page/page.json + /pages/my-page/my-page.bbcode +[/code] +Content of [code]page.json[/code]: +[code] + { + "title": "My Page", + "pagelink": "mypage", + "mimetype": "text/bbcode", + "layout": "my-layout", + "contentfile": "my-page.bbcode" + } +[/code] +[h5] Layout elements [/h5] + +Layout element metadata is specified in a JSON-formatted file called [code]layout.json[/code] with the following properties: +[list] +[*] name +[*] description +[*] contentfile +[/list] +[b]Example[/b] + +Files: +[code] + /layouts/my-layout/layout.json + /layouts/my-layout/my-layout.bbcode +[/code] +Content of [code]layout.json[/code]: +[code] + { + "name": "my-layout", + "description": "Layout for my project page", + "contentfile": "my-layout.bbcode" + } +[/code] + +[h5] Block elements [/h5] + +Block element metadata is specified in a JSON-formatted file called [code]block.json[/code] with the following properties: +[list] +[*] name +[*] title +[*] mimetype +[*] contentfile +[/list] +[b]Example[/b] + +Files: +[code] + /blocks/my-block/block.json + /blocks/my-block/my-block.html +[/code] +Content of [code]block.json[/code]: + +[code] + { + "name": "my-block", + "title": "", + "mimetype": "text/html", + "contentfile": "my-block.html" + } +[/code] + +[h3]Comanche Page Description Language[/h3] + +Comanche is a markup language similar to [url=[baseurl]/help/member/bbcode]BBcode[/url] with which to create elaborate and complex web pages by assembling them from a series of components - some of which are pre-built and others which can be defined on the fly. Comanche uses a Page Decription Language to create these pages. + +Comanche primarily chooses what content will appear in various regions of the page. The various regions have names and these names can change depending on what layout template you choose. + +[h4]Page Templates[/h4] +Currently there are five layout templates, unless your site provides additional layouts. + +[dl terms="b"] +[*= default] +The default template defines a "nav" region across the top, "aside" as a fixed width sidebar, +"content" for the main content region, and "footer" for a page footer. + +[*= full] +The full template defines the same as the default template with the exception that there is no "aside" region. + +[*= choklet] +The choklet template provides a number of fluid layout styles which can be specified by flavour: +[list] +[*] (default flavour) - a two column layout similar to the "default" template, but more fluid +[*] bannertwo - a two column layout with a banner region, compatible with the "default" template on small displays +[*] three - three column layout (adds a "right_aside" region to the default template) +[*] edgestwo - two column layout with fixed side margins +[*] edgesthree - three column layout with fixed side margins +[*] full - three column layout with fixed side margins and adds a "header" region beneath the navigation bar +[/list] + +[*= redable] +A template for reading longer texts full screen (so without navigation bar). Three columns: aside, content and right_aside. +For maximum readability it is advised to only use the middle content column. + +[*= zen] +Gives you the freedom to do everything yourself. Just a blank page with a content region. +[/dl] + +To choose a layout template, use the 'template' tag. + +[code] + [template]full[/template] + +[/code] + +To choose the "choklet" template with the "three" flavour: + +[code] + [template=three]choklet[/template] + +[/code] + +The default template will be used if no other template is specified. The template can use any names it desires for content regions. You will be using 'region' tags to decide what content to place in the respective regions. + +Three "macros" have been defined for your use. +[code] + $htmlhead - replaced with the site head content. + $nav - replaced with the site navigation bar content. + $content - replaced with the main page content. + +[/code] + +By default, $nav is placed in the "nav" page region and $content is placed in the "content" region. You only need to use these macros if you wish to re-arrange where these items appear, either to change the order or to move them to other regions. + + +To select a theme for your page, use the 'theme' tag. +[code] + [theme]suckerberg[/theme] + +[/code] +This will select the theme named "suckerberg". By default your channel's preferred theme will be used. + +[code] + [theme=passion]suckerberg[/theme] + +[/code] +This will select the theme named "suckerberg" and select the "passion" schema (theme variant). Alternatively it may be possible to use a condensed theme notation for this. + +[code] + [theme]suckerberg:passion[/theme] + +[/code] + +The condensed notation isn't part of Comanche itself but is recognised by $Projectname platform as a theme specifier. + +[h4]Regions[/h4] +Each region has a name, as noted above. You will specify the region of interest using a 'region' tag, which includes the name. Any content you wish placed in this region should be placed between the opening region tag and the closing tag. + +[code] + [region=htmlhead]....content goes here....[/region] + [region=aside]....content goes here....[/region] + [region=nav]....content goes here....[/region] + [region=content]....content goes here....[/region] + +[/code] + +[h4]CSS and Javascript[/h4] +We have the possibility to include javascript and css libraries in the htmlhead region. At present we make use of jquery (js), bootstrap (css/js) and foundation (css/js). +This will overwrite the selected themes htmlhead. + +[code] + [region=htmlhead] + [css]bootstrap[/css] + [js]jquery[/js] + [js]bootstrap[/js] + [/region] + +[/code] + +[h4]Menus and Blocks[/h4] +Your webpage creation tools allow you to create menus and blocks, in addition to page content. These provide a chunk of existing content to be placed in whatever regions and whatever order you specify. Each of these has a name which you define when the menu or block is created. + +[code] + [menu]mymenu[/menu] + +[/code] +This places the menu called "mymenu" at this location on the page, which must be inside a region. + +[code] + [menu=horizontal]mymenu[/menu] + +[/code] +This places the menu called "mymenu" at this location on the page, which must be inside a region. Additionally it applies the "horizontal" class to the menu. "horizontal" is defined in the redbasic theme. It may or may not be available in other themes. + +[code] + [menu][var=wrap]none[/var]mymenu[/menu] + +[/code] +The variable [var=wrap]none[/var] in a block removes the wrapping div element from the menu. + +[code] + [block]contributors[/block] +[/code] +This places a block named "contributors" in this region. + +[code] + [block=someclass]contributors[/block] + +[/code] +This places a block named "contributors" in this region. Additionally it applies the "someclass" class to the block. This replaces the default block classes "bblock widget". + +[code] + [block][var=wrap]none[/var]contributors[/block] + +[/code] +The variable [var=wrap]none[/var] in a block removes the wrapping div element from the block. + +[h4]Widgets[/h4] +Widgets are executable apps provided by the system which you can place on your page. Some widgets take arguments which allows you to tailor the widget to your purpose. (TODO: list available widgets and arguments). The base system provides + +[code] + profile - widget which duplicates the profile sidebar of your channel page. This widget takes no arguments + tagcloud - provides a tag cloud of categories + count - maximum number of category tags to list + +[/code] + +Widgets and arguments are specified with the 'widget' and 'var' tags. +[code] + [widget=recent_visitors][var=count]24[/var][/widget] + +[/code] + +This loads the "recent_visitors" widget and supplies it with the argument "count" set to "24". + +[h4]Comments[/h4] +The 'comment' tag is used to delimit comments. These comments will not appear on the rendered page. + +[code] + [comment]This is a comment[/comment] + +[/code] + +[h4]Conditional Execution[/h4] +You can use an 'if' construct to make decisions. These are currently based on system configuration variable or the current observer. + +[code] + [if $config.system.foo] + ... the configuration variable system.foo evaluates to 'true'. + [else] + ... the configuration variable system.foo evaluates to 'false'. + [/if] + + [if $observer] + ... this content will only be show to authenticated viewers + [/if] + +[/code] + + The 'else' clause is optional. + + Several tests are supported besides boolean evaluation. + +[code] + [if $config.system.foo == bar] + ... the configuration variable system.foo is equal to the string 'bar' + [/if] + [if $config.system.foo != bar] + ... the configuration variable system.foo is not equal to the string 'bar' + [/if] + [if $config.system.foo {} bar ] + ... the configuration variable system.foo is a simple array containing a value 'bar' + [/if] + [if $config.system.foo {*} bar] + ... the configuration variable system.foo is a simple array containing a key named 'bar' + [/if] +[/code] + +[h4]Complex Example[/h4] +[code] + [comment]use an existing page template which provides a banner region plus 3 columns beneath it[/comment] + + [template]3-column-with-header[/template] + + [comment]Use the "darknight" theme[/comment] + + [theme]darkknight[/theme] + + [comment]Use the existing site navigation menu[/comment] + + [region=nav]$nav[/region] + + [region=side] + + [comment]Use my chosen menu and a couple of widgets[/comment] + + [menu]myfavouritemenu[/menu] + + [widget=recent_visitors] + [var=count]24[/var] + [var=names_only]1[/var] + [/widget] + + [widget=tagcloud][/widget] + [block]donate[/block] + + [/region] + + + + [region=middle] + + [comment]Show the normal page content[/comment] + + $content + + [/region] + + + + [region=right] + + [comment]Show my condensed channel "wall" feed and allow interaction if the observer is allowed to interact[/comment] + + [widget]channel[/widget] + + [/region] + +[/code] + + [h3]Personal Cloud Storage[/h3] $Projectname provides an ability to store privately and/or share arbitrary files with friends. @@ -320,8 +772,8 @@ RedDav using Windows 7 graphical user interface wizard: 2. Right-click the My computer icon to access its menu. 3. Left-click Map network drive... to open the connection dialog wizard. 4. Type #^[url=https://example.net/dav/your_channel_name]https://example.net/dav/your_channel_name[/url] in the textbox and click the Complete button where "example.net" is the URL of your hub. -5. Type your Hubzilla account's user name. IMPORTANT - NO at-sign or domain name. -6. Type your Hubzilla password +5. Type your $Projectname account's user name. IMPORTANT - NO at-sign or domain name. +6. Type your $Projectname password [h4]Cloud Desktop Clients - Linux[/h4] diff --git a/doc/roadmap_hz3.md b/doc/roadmap_hz3.md new file mode 100644 index 000000000..a64fb2d5c --- /dev/null +++ b/doc/roadmap_hz3.md @@ -0,0 +1,27 @@ + +Hubzilla III +============ + +Due: December 2017 +Codename: + + +Wishlist: + +- Move CalDAV/CardDAV server to core + +- Integrate Hubzilla events with CalDAV + +- Connection 'roles' allows you to select different permission roles for your connections; such as follower, friend, contributor, etc. + +- CardDAV integration with abook and profiles + +- App tray + +- issues manager + +- wiki cloning + +- provide easy channel move (as opposed to channel copy or clone), which is currently supported only by the basic server role. + +- provide RSA keychange operation; which cannot affect the primary identity (which is based on the channel keys), so add a secondary dynamic key pair which will be used for all other operations and can be upgraded or revoked at any time. \ No newline at end of file diff --git a/doc/toc.html b/doc/toc.html index 272f43c7e..eeb0fe437 100644 --- a/doc/toc.html +++ b/doc/toc.html @@ -22,6 +22,7 @@ @@ -48,7 +49,8 @@
@@ -66,7 +68,7 @@
From b1f3ccc6eef8e15399365b89476c3b2360c71670 Mon Sep 17 00:00:00 2001 From: Andrew Manning Date: Sun, 15 Jan 2017 07:27:48 -0500 Subject: [PATCH 174/819] pull in some CSS --- view/theme/redbasic/css/style.css | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index aad271fe3..f10166abb 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -141,6 +141,16 @@ input, optgroup, select, textarea { resize: vertical; } +.selected-doco-nav { + font-weight: bold; + text-shadow: 2px 2px 3px lightgray; +} + +#doco-content img { + width: 100%; +} + + #help-content pre code { overflow-x: auto; white-space: pre; From 9682c48b5beda107575939aef47a117fa0435a4e Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Sun, 15 Jan 2017 13:53:56 +0100 Subject: [PATCH 175/819] min version bump --- boot.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boot.php b/boot.php index e52f3d124..df0d02a6a 100755 --- a/boot.php +++ b/boot.php @@ -48,7 +48,7 @@ require_once('include/zid.php'); define ( 'PLATFORM_NAME', 'hubzilla' ); -define ( 'STD_VERSION', '2.0.5' ); +define ( 'STD_VERSION', '2.0.6' ); define ( 'ZOT_REVISION', '1.2' ); define ( 'DB_UPDATE_VERSION', 1185 ); From e26295b6fad7ea0f18052473b9c64a014d2821ce Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Tue, 24 Jan 2017 10:25:31 +0100 Subject: [PATCH 176/819] do not show location row on small viewports. --- view/tpl/locmanage.tpl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/view/tpl/locmanage.tpl b/view/tpl/locmanage.tpl index a450c2847..fe2d5ec84 100644 --- a/view/tpl/locmanage.tpl +++ b/view/tpl/locmanage.tpl @@ -22,7 +22,7 @@ - + @@ -30,7 +30,7 @@ {{if ! $hub.deleted }} - + From 508157f07f37516814eb2d2f3a9b5d1227e49edf Mon Sep 17 00:00:00 2001 From: zotlabs Date: Tue, 24 Jan 2017 18:33:41 -0800 Subject: [PATCH 177/819] block well-known from oembed --- include/oembed.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/include/oembed.php b/include/oembed.php index eb7b76437..8c78e2807 100755 --- a/include/oembed.php +++ b/include/oembed.php @@ -34,6 +34,9 @@ function oembed_action($embedurl) { $action = 'block'; } } + if(strpos($embedurl,'.well-known') !== false) + $action = 'block'; + // site white/black list From 660c658c85cef9bd853d4a9134969c0f8bc6592c Mon Sep 17 00:00:00 2001 From: zotlabs Date: Wed, 25 Jan 2017 11:43:54 -0800 Subject: [PATCH 178/819] initialise item['postopts'] for mysql >= 5.7 --- include/items.php | 1 + 1 file changed, 1 insertion(+) diff --git a/include/items.php b/include/items.php index 9bd256d58..82cde9911 100755 --- a/include/items.php +++ b/include/items.php @@ -1511,6 +1511,7 @@ function item_store($arr, $allow_exec = false, $deliver = true) { $arr['allow_gid'] = ((x($arr,'allow_gid')) ? trim($arr['allow_gid']) : ''); $arr['deny_cid'] = ((x($arr,'deny_cid')) ? trim($arr['deny_cid']) : ''); $arr['deny_gid'] = ((x($arr,'deny_gid')) ? trim($arr['deny_gid']) : ''); + $arr['postopts'] = ((x($arr,'postopts')) ? trim($arr['postopts']) : ''); $arr['item_private'] = ((x($arr,'item_private')) ? intval($arr['item_private']) : 0 ); $arr['item_wall'] = ((x($arr,'item_wall')) ? intval($arr['item_wall']) : 0 ); $arr['item_type'] = ((x($arr,'item_type')) ? intval($arr['item_type']) : 0 ); From b43064ce6e5cbb9b83f0ca1980f43760abc81212 Mon Sep 17 00:00:00 2001 From: zotlabs Date: Wed, 25 Jan 2017 11:46:59 -0800 Subject: [PATCH 179/819] roll minor version --- boot.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boot.php b/boot.php index df0d02a6a..e28e726c5 100755 --- a/boot.php +++ b/boot.php @@ -48,7 +48,7 @@ require_once('include/zid.php'); define ( 'PLATFORM_NAME', 'hubzilla' ); -define ( 'STD_VERSION', '2.0.6' ); +define ( 'STD_VERSION', '2.0.7' ); define ( 'ZOT_REVISION', '1.2' ); define ( 'DB_UPDATE_VERSION', 1185 ); From baf50ea84ab20963060e07dad6d811c43f2392ee Mon Sep 17 00:00:00 2001 From: Einer von Vielen Date: Sun, 5 Feb 2017 19:14:37 +0100 Subject: [PATCH 180/819] The script letsencrypt.sh was replaced by dehydrated. --- .homeinstall/hubzilla-setup.sh | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.homeinstall/hubzilla-setup.sh b/.homeinstall/hubzilla-setup.sh index 6310bf47f..c83fb8de9 100755 --- a/.homeinstall/hubzilla-setup.sh +++ b/.homeinstall/hubzilla-setup.sh @@ -491,7 +491,7 @@ END print_info "letsenrypt exists already (nothing downloaded > no certificate created and registered)" return 0 fi - git clone https://github.com/lukas2511/letsencrypt.sh $le_dir + git clone https://github.com/lukas2511/dehydrated $le_dir cd $le_dir # create config file for letsencrypt.sh echo "WELLKNOWN=$le_dir" > $le_dir/config.sh @@ -511,9 +511,9 @@ END then die "Failed to load $url_http" fi - # run letsencrypt.sh + # run script dehydrated # - ./letsencrypt.sh --cron --config $le_dir/config.sh + ./dehydrated --cron --config $le_dir/config.sh } function configure_apache_for_https { @@ -730,8 +730,8 @@ echo "#" >> /var/www/$hubzilladaily echo "echo \" \"" >> /var/www/$hubzilladaily echo "echo \"+++ \$(date) +++\"" >> /var/www/$hubzilladaily echo "echo \" \"" >> /var/www/$hubzilladaily -echo "echo \"\$(date) - renew certificat...\"" >> /var/www/$hubzilladaily -echo "bash $le_dir/letsencrypt.sh --cron --config $le_dir/config.sh" >> /var/www/$hubzilladaily +echo "echo \"\$(date) - renew certificate...\"" >> /var/www/$hubzilladaily +echo "bash $le_dir/dehydrated --cron --config $le_dir/config.sh" >> /var/www/$hubzilladaily echo "#" >> /var/www/$hubzilladaily echo "# stop hubzilla" >> /var/www/$hubzilladaily echo "echo \"\$(date) - stoping apache and mysql...\"" >> /var/www/$hubzilladaily @@ -798,7 +798,7 @@ echo "echo \"\$(date) - db size...\"" >> /var/www/$hubzilladaily echo "du -h /var/cache/rsnapshot/ | grep mysql/hubzilla" >> /var/www/$hubzilladaily echo "#" >> /var/www/$hubzilladaily echo "# update" >> /var/www/$hubzilladaily -echo "echo \"\$(date) - updating letsencrypt.sh...\"" >> /var/www/$hubzilladaily +echo "echo \"\$(date) - updating dehydrated...\"" >> /var/www/$hubzilladaily echo "git -C /var/www/letsencrypt/ pull" >> /var/www/$hubzilladaily echo "echo \"\$(date) - updating hubhilla core...\"" >> /var/www/$hubzilladaily echo "git -C /var/www/html/ pull" >> /var/www/$hubzilladaily From d4be96cd03c9236cb128d9ccada5be51b8231b61 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Thu, 23 Feb 2017 12:24:42 +0100 Subject: [PATCH 181/819] yet one more place to use chanlink_hash() instead of chanlink_url() --- include/conversation.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/conversation.php b/include/conversation.php index 285ee752f..a1acc456a 100644 --- a/include/conversation.php +++ b/include/conversation.php @@ -1175,8 +1175,8 @@ function builtin_activity_puller($item, &$conv_responses) { if((activity_match($item['verb'], $verb)) && ($item['id'] != $item['parent'])) { $name = (($item['author']['xchan_name']) ? $item['author']['xchan_name'] : t('Unknown')); - $url = (($item['author']['xchan_url'] && $item['author']['xchan_photo_s']) - ? '' . '' . urlencode($name) . '' . $name . '' + $url = (($item['author_xchan'] && $item['author']['xchan_photo_s']) + ? '' . '' . urlencode($name) . '' . $name . '' : '' . $name . '' ); From 0ef8c5bda85a7cd2de74ce4d2dc1d6e812a7ac6e Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Thu, 23 Feb 2017 12:31:41 +0100 Subject: [PATCH 182/819] move collapsed login and register buttons to the left --- view/theme/redbasic/css/style.css | 11 ++++++++++- view/tpl/nav.tpl | 4 ++-- 2 files changed, 12 insertions(+), 3 deletions(-) diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index 115aa65ae..c632dbc74 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -1832,7 +1832,16 @@ nav .badge.mail-update { padding: 7px 10px; } -a.navbar-toggle-extra:hover { +.navbar-toggle-extra-left { + float: left; + margin-left: 15px; + margin-right: 0px; + color: $nav_active_icon_colour; + padding: 7px 10px; +} + +a.navbar-toggle-extra:hover, +a.navbar-toggle-extra-left:hover { color: $nav_active_icon_colour; text-decoration: none; } diff --git a/view/tpl/nav.tpl b/view/tpl/nav.tpl index 1f272e7b8..fa47b477a 100755 --- a/view/tpl/nav.tpl +++ b/view/tpl/nav.tpl @@ -6,11 +6,11 @@ {{if $nav.login && !$userinfo}} - {{if $nav.register}} - + {{$nav.register.1}} {{/if}} From dd3e530a63ace29dd416d9dca28df8711691b514 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Thu, 23 Feb 2017 14:51:09 +0100 Subject: [PATCH 183/819] update changelog --- CHANGELOG | 86 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 86 insertions(+) diff --git a/CHANGELOG b/CHANGELOG index 642506016..0ea4bdacb 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,89 @@ +Hubzilla 2.2 (2017-??-??) + - Use chanlink_hash() instead of chanlink_url() where appropriate + - Use head_add_link() for feed discovery + - Provide HTTP header parser which honours continuation lines + - Numerous doco improvements + - Implement virtual profile groups + - Implement permission roles + - Implement app-tray + - Default to manual conversation updates + - Implement channel move + - Implement nav login modal + - Rename bb2diaspora.php to markdown.php + - Remove module match + - Move firefox social api configuration to plugin + - Move rsd service to twitter_api plugin + - Add build_pagehead hook + - Move opensearch to plugins + - Move dreamhost hack to plugin + - Add wiki permissions + - Introduce hubloc_store_lowlevel() and xchan_store_lowlevel( + - Move diaspora account import to the diaspora plugin + - Allow export of single data sets instead of always exporting everything we know about in channel export + - Queue optimisations for sites that have lingered in the queue for more than a couple of days + - Add affinity slider tool settings for min and max defaults in settings/featured + - Provide lowlevel xchan storage function to ensure that all non-null rows are initialised + - Implement native wiki + - Block well-known from oembed + - Implement oberver.language bbcode + - Implement daemon_addon hook to let plugins create custom background processes + - Implement profile vcards + - Default cover photo + - Remove fullscreen functionality in photo album view + - Update fontawesome lib to version 4.7.0 + - Implement a menu to select a section to be open by default in connedit + - Improve comanche conditionals + - Add enclosures and categories to atom feed + - Allow the atom_entry hook to change the results + - Set 'adjust for viewer timezone' as the default for new events + - Allow event creation in other timezones than your own + - Update fullcalendar lib to version 3.1 + - Move api version call back to core + - Create first webpage as 'home' if none exist + - Show webpages link to visitors if a 'home' page exists + + Bugfixes + - Fix no acl not detected in post_activity_item() + - Fix find_folder_hash_by_path() was not safe against multiple attach structures with the same filename but in different directories + - Fix don't search on empty filename - we shouldn't find it. The reason why this change is being made is because we actually did find it due to a development glitch + - Fix several places where head_add_(css|js) functions have been used incorrectly. + - Fix webpage import tool + - Fix numerous bugs with the addon repo management GUI + - Fix attach_delete() to remove photo resources even if the attach table row wasn't found + - Fix choking if photo_factory() returns null + - Fix embedimage if an albumname contains quotes + - Fix chat member list when one or more members are connected via access tokens + - Fix issue #636 - some localised (e.g. Italian) strings have single quotes which throw JS errors when used in single quoted template constructs + - Fix issues #629 and #635 - edited post arriving from downstream source was not being rejected + - Fix peoplefind widget not honouring directory option settings + - Fix issue with HTML in code blocks in markdown in wiki + - Fix issue with post signatures if posted from api and logged in locally with a different identity + + Plugins/Addon + - Add experimental webmention plugin + - NSFW: Use button instead of text link + - Diaspora: gracefully handle multiple photos per post + - Diaspora: change profile photo permission call + - Logrotate: don't throw an error if another server process renamed the logfile before we got to it + - Chess: the channel owner must be one of the players, so only require selecting one connection for an opponent + - Move firefox social api configuration to plugin from core + - Move rsd service to twitter_api plugin from core + - Move opensearch to plugins from core + - Move dreamhost hack to plugin from + - Move diaspora account import to addon from core + - Reflect hubloc store changes in plugins + - Reflect xchan store changes in plugins + - Rendezvous: Fixed marker creation bug + - Rendezvous: Center on marker if specified in URL, and update browser address bar with shareable link when selecting markers on the map + - Rendezvous: Set default value of 0 for priximity alert when making new markers + - Move gitwiki to plugins from core which has been replaced by native wiki + - Openclipatar: reflect changes to files and photos which were unified in core some time ago + - Reintroduce gnusocial plugin after security/functionality review + - Twitter_api: hubzilla core issue 638 - unsupported message-id field not available in all twitter api functions + - Superblock: update to reflect core changes + - Rendezvous: implement static marker proximity alert + - Phpmailer: security update + Hubzilla 2.0 (2016-12-23) - Deprecate bb_iframe - Note widget: resize the textarea to reveal full content From e9243e9660896ce059a6907230169c82e3b1a0be Mon Sep 17 00:00:00 2001 From: zotlabs Date: Thu, 23 Feb 2017 11:26:22 -0800 Subject: [PATCH 184/819] minor edits --- CHANGELOG | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 0ea4bdacb..5b29b875d 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -3,21 +3,21 @@ Hubzilla 2.2 (2017-??-??) - Use head_add_link() for feed discovery - Provide HTTP header parser which honours continuation lines - Numerous doco improvements - - Implement virtual profile groups + - Implement virtual privacy groups from restricted profile access list - Implement permission roles - Implement app-tray - Default to manual conversation updates - - Implement channel move + - Implement channel move for all server roles - Implement nav login modal - Rename bb2diaspora.php to markdown.php - - Remove module match + - Remove obsolete module 'match' - Move firefox social api configuration to plugin - Move rsd service to twitter_api plugin - Add build_pagehead hook - Move opensearch to plugins - Move dreamhost hack to plugin - Add wiki permissions - - Introduce hubloc_store_lowlevel() and xchan_store_lowlevel( + - Introduce hubloc_store_lowlevel() and xchan_store_lowlevel() - Move diaspora account import to the diaspora plugin - Allow export of single data sets instead of always exporting everything we know about in channel export - Queue optimisations for sites that have lingered in the queue for more than a couple of days @@ -25,15 +25,17 @@ Hubzilla 2.2 (2017-??-??) - Provide lowlevel xchan storage function to ensure that all non-null rows are initialised - Implement native wiki - Block well-known from oembed - - Implement oberver.language bbcode + - Implement observer.language bbcode and observer.language comanche conditional - Implement daemon_addon hook to let plugins create custom background processes - Implement profile vcards + - Implement connection vcards + - Implement 'click to call' in address book - Default cover photo - Remove fullscreen functionality in photo album view - Update fontawesome lib to version 4.7.0 - Implement a menu to select a section to be open by default in connedit - Improve comanche conditionals - - Add enclosures and categories to atom feed + - Add enclosures and categories to atom feed parsing - Allow the atom_entry hook to change the results - Set 'adjust for viewer timezone' as the default for new events - Allow event creation in other timezones than your own From 65e18f5b8fa4da55b398b15d0a3832438d1db002 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Fri, 24 Feb 2017 10:07:14 +0100 Subject: [PATCH 185/819] use chanlink_url() in directory since the xchan might not yet be available on our server --- Zotlabs/Module/Directory.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Zotlabs/Module/Directory.php b/Zotlabs/Module/Directory.php index 583154526..59ae88857 100644 --- a/Zotlabs/Module/Directory.php +++ b/Zotlabs/Module/Directory.php @@ -206,7 +206,7 @@ class Directory extends \Zotlabs\Web\Controller { foreach($j['results'] as $rr) { - $profile_link = chanlink_hash($rr['hash']); + $profile_link = chanlink_url($rr['url']); $pdesc = (($rr['description']) ? $rr['description'] . '
' : ''); $connect_link = ((local_channel()) ? z_root() . '/follow?f=&url=' . urlencode($rr['address']) : ''); From d59095c2e62b4bf42d7783b092d614ac869fd8f9 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Sat, 25 Feb 2017 21:34:19 +0100 Subject: [PATCH 186/819] bump version --- boot.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boot.php b/boot.php index 7120632f4..25797d202 100755 --- a/boot.php +++ b/boot.php @@ -50,7 +50,7 @@ require_once('include/hubloc.php'); define ( 'PLATFORM_NAME', 'hubzilla' ); -define ( 'STD_VERSION', '2.1' ); +define ( 'STD_VERSION', '2.2RC' ); define ( 'ZOT_REVISION', '1.2' ); define ( 'DB_UPDATE_VERSION', 1188 ); From 919de44a71226e20171635042b01f8dca35498c5 Mon Sep 17 00:00:00 2001 From: zotlabs Date: Sat, 25 Feb 2017 13:54:39 -0800 Subject: [PATCH 187/819] escape tags on viewsrc output in case it is not text/bbcode. --- Zotlabs/Module/Viewsrc.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Zotlabs/Module/Viewsrc.php b/Zotlabs/Module/Viewsrc.php index fa755a3ec..cb305efc6 100644 --- a/Zotlabs/Module/Viewsrc.php +++ b/Zotlabs/Module/Viewsrc.php @@ -36,7 +36,9 @@ class Viewsrc extends \Zotlabs\Web\Controller { if($r) { if(intval($r[0]['item_obscured'])) $r[0]['body'] = crypto_unencapsulate(json_decode($r[0]['body'],true),get_config('system','prvkey')); - $o = (($json) ? json_encode($r[0]['body']) : str_replace("\n",'
',$r[0]['body'])); + + $content = escape_tags($r[0]['body']); + $o = (($json) ? json_encode($content) : str_replace("\n",'
',$content)); } } From e819727b09f0b0eded552813c8336664b1dd1e1f Mon Sep 17 00:00:00 2001 From: zotlabs Date: Sat, 25 Feb 2017 15:04:17 -0800 Subject: [PATCH 188/819] send sync packet on profile photo permissions change --- Zotlabs/Module/Profile_photo.php | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Zotlabs/Module/Profile_photo.php b/Zotlabs/Module/Profile_photo.php index 29a239f4d..438580917 100644 --- a/Zotlabs/Module/Profile_photo.php +++ b/Zotlabs/Module/Profile_photo.php @@ -183,6 +183,10 @@ class Profile_photo extends \Zotlabs\Web\Controller { photo_profile_setperms(local_channel(),$base_image['resource_id'],$_REQUEST['profile']); + $sync = attach_export_data($channel,$base_image['resource_id']); + if($sync) + build_sync_packet($channel['channel_id'],array('file' => array($sync))); + // Similarly, tell the nav bar to bypass the cache and update the avater image. $_SESSION['reload_avatar'] = true; @@ -341,6 +345,11 @@ class Profile_photo extends \Zotlabs\Web\Controller { photo_profile_setperms(local_channel(),$resource_id,$_REQUEST['profile']); + $sync = attach_export_data($channel,$resource_id); + if($sync) + build_sync_packet($channel['channel_id'],array('file' => array($sync))); + + \Zotlabs\Daemon\Master::Summon(array('Directory',local_channel())); goaway(z_root() . '/profiles'); } From 8a69a5c3c7bd0188228d5c1c8580e5331a66e2da Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Sun, 26 Feb 2017 21:01:20 +0100 Subject: [PATCH 189/819] add a minversion to the theme and fallback to default if requirement is not met. mark incompatible themes in the theme selector --- Zotlabs/Module/Admin/Site.php | 9 ++++++++- Zotlabs/Module/Admin/Themes.php | 2 +- Zotlabs/Module/Settings/Display.php | 12 +++++++++--- Zotlabs/Render/Theme.php | 7 ++++++- view/theme/redbasic/.MINVERSION | 1 + view/theme/redbasic/php/theme.php | 2 +- 6 files changed, 26 insertions(+), 7 deletions(-) create mode 100644 view/theme/redbasic/.MINVERSION diff --git a/Zotlabs/Module/Admin/Site.php b/Zotlabs/Module/Admin/Site.php index 829ca71e4..3bb384ec5 100644 --- a/Zotlabs/Module/Admin/Site.php +++ b/Zotlabs/Module/Admin/Site.php @@ -163,6 +163,13 @@ class Site { foreach($files as $file) { $vars = ''; $f = basename($file); + + $min_version = ((file_exists('view/theme/' . $f . '/.MINVERSION')) ? file_get_contents('view/theme/' . $f . '/.MINVERSION') : 0); + if((version_compare($min_version, STD_VERSION, '>=')) || ($min_version == 0)) { + $theme_choices[$f] = $theme_choices_mobile[$f] = sprintf(t('%s - (Incompatible)'), $f); + continue; + } + if (file_exists($file . '/library')) continue; if (file_exists($file . '/mobile')) @@ -310,4 +317,4 @@ class Site { )); } -} \ No newline at end of file +} diff --git a/Zotlabs/Module/Admin/Themes.php b/Zotlabs/Module/Admin/Themes.php index 63a9a1670..fc908ec8b 100644 --- a/Zotlabs/Module/Admin/Themes.php +++ b/Zotlabs/Module/Admin/Themes.php @@ -230,4 +230,4 @@ class Themes { -} \ No newline at end of file +} diff --git a/Zotlabs/Module/Settings/Display.php b/Zotlabs/Module/Settings/Display.php index 67cecf1f5..d5be07a81 100644 --- a/Zotlabs/Module/Settings/Display.php +++ b/Zotlabs/Module/Settings/Display.php @@ -130,12 +130,19 @@ class Display { if($allowed_themes) { foreach($allowed_themes as $th) { $f = $th; + + $min_version = ((file_exists('view/theme/' . $th . '/.MINVERSION')) ? file_get_contents('view/theme/' . $th . '/.MINVERSION') : 0); + if((version_compare($min_version, STD_VERSION, '>=')) || ($min_version == 0)) { + $mobile_themes[$f] = $themes[$f] = sprintf(t('%s - (Incompatible)'), $f); + continue; + } + $is_experimental = file_exists('view/theme/' . $th . '/experimental'); $unsupported = file_exists('view/theme/' . $th . '/unsupported'); $is_mobile = file_exists('view/theme/' . $th . '/mobile'); $is_library = file_exists('view/theme/'. $th . '/library'); - $mobile_themes["---"] = t("No special theme for mobile devices"); - + $mobile_themes['---'] = t("No special theme for mobile devices"); + if (!$is_experimental or ($is_experimental && (get_config('experimentals','exp_themes')==1 or get_config('experimentals','exp_themes')===false))){ $theme_name = (($is_experimental) ? sprintf(t('%s - (Experimental)'), $f) : $f); if (! $is_library) { @@ -147,7 +154,6 @@ class Display { } } } - } } diff --git a/Zotlabs/Render/Theme.php b/Zotlabs/Render/Theme.php index dadb18051..53bcfe664 100644 --- a/Zotlabs/Render/Theme.php +++ b/Zotlabs/Render/Theme.php @@ -69,8 +69,13 @@ class Theme { if(array_key_exists('theme_preview',$_GET)) $chosen_theme = $_GET['theme_preview']; - // Allow theme selection of the form 'theme_name:schema_name' + // Check if $chosen_theme is compatible with core. If not fall back to default + $min_version = ((file_exists('view/theme/' . $chosen_theme . '/.MINVERSION')) ? file_get_contents('view/theme/' . $chosen_theme . '/.MINVERSION') : 0); + if((version_compare($min_version, STD_VERSION, '>=')) || ($min_version == 0)) { + $chosen_theme = ''; + } + // Allow theme selection of the form 'theme_name:schema_name' $themepair = explode(':', $chosen_theme); if($chosen_theme && (file_exists('view/theme/' . $themepair[0] . '/css/style.css') || file_exists('view/theme/' . $themepair[0] . '/php/style.php'))) { diff --git a/view/theme/redbasic/.MINVERSION b/view/theme/redbasic/.MINVERSION new file mode 100644 index 000000000..8bbe6cf74 --- /dev/null +++ b/view/theme/redbasic/.MINVERSION @@ -0,0 +1 @@ +2.2 diff --git a/view/theme/redbasic/php/theme.php b/view/theme/redbasic/php/theme.php index 997b59750..0f0c43484 100644 --- a/view/theme/redbasic/php/theme.php +++ b/view/theme/redbasic/php/theme.php @@ -3,7 +3,7 @@ /** * * Name: Redbasic * * Description: Hubzilla standard theme - * * Version: 1.0 + * * Version: 2.0 * * Author: Fabrixxm * * Maintainer: Mike Macgirvin * * Maintainer: Mario Vavti From 8e3e90ddd243011828b9dbb44e7c4abc00655b28 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Mon, 27 Feb 2017 10:13:08 +0100 Subject: [PATCH 190/819] set minversion and maxversion for themes in view/theme/themename/php/theme.php instead of separate file. --- Zotlabs/Module/Admin/Site.php | 5 +++-- Zotlabs/Module/Settings/Display.php | 5 +++-- Zotlabs/Render/Theme.php | 5 +++-- include/plugin.php | 2 ++ view/theme/redbasic/.MINVERSION | 1 - view/theme/redbasic/php/theme.php | 2 ++ 6 files changed, 13 insertions(+), 7 deletions(-) delete mode 100644 view/theme/redbasic/.MINVERSION diff --git a/Zotlabs/Module/Admin/Site.php b/Zotlabs/Module/Admin/Site.php index 3bb384ec5..b71e63030 100644 --- a/Zotlabs/Module/Admin/Site.php +++ b/Zotlabs/Module/Admin/Site.php @@ -164,8 +164,9 @@ class Site { $vars = ''; $f = basename($file); - $min_version = ((file_exists('view/theme/' . $f . '/.MINVERSION')) ? file_get_contents('view/theme/' . $f . '/.MINVERSION') : 0); - if((version_compare($min_version, STD_VERSION, '>=')) || ($min_version == 0)) { + $info = get_theme_info($f); + $compatible = check_plugin_versions($info); + if(!$compatible) { $theme_choices[$f] = $theme_choices_mobile[$f] = sprintf(t('%s - (Incompatible)'), $f); continue; } diff --git a/Zotlabs/Module/Settings/Display.php b/Zotlabs/Module/Settings/Display.php index d5be07a81..ee404daba 100644 --- a/Zotlabs/Module/Settings/Display.php +++ b/Zotlabs/Module/Settings/Display.php @@ -131,8 +131,9 @@ class Display { foreach($allowed_themes as $th) { $f = $th; - $min_version = ((file_exists('view/theme/' . $th . '/.MINVERSION')) ? file_get_contents('view/theme/' . $th . '/.MINVERSION') : 0); - if((version_compare($min_version, STD_VERSION, '>=')) || ($min_version == 0)) { + $info = get_theme_info($th); + $compatible = check_plugin_versions($info); + if(!$compatible) { $mobile_themes[$f] = $themes[$f] = sprintf(t('%s - (Incompatible)'), $f); continue; } diff --git a/Zotlabs/Render/Theme.php b/Zotlabs/Render/Theme.php index 53bcfe664..7464a0db2 100644 --- a/Zotlabs/Render/Theme.php +++ b/Zotlabs/Render/Theme.php @@ -70,8 +70,9 @@ class Theme { $chosen_theme = $_GET['theme_preview']; // Check if $chosen_theme is compatible with core. If not fall back to default - $min_version = ((file_exists('view/theme/' . $chosen_theme . '/.MINVERSION')) ? file_get_contents('view/theme/' . $chosen_theme . '/.MINVERSION') : 0); - if((version_compare($min_version, STD_VERSION, '>=')) || ($min_version == 0)) { + $info = get_theme_info($chosen_theme); + $compatible = check_plugin_versions($info); + if(!$compatible) { $chosen_theme = ''; } diff --git a/include/plugin.php b/include/plugin.php index 045efb805..29474735e 100755 --- a/include/plugin.php +++ b/include/plugin.php @@ -471,6 +471,8 @@ function get_theme_info($theme){ 'description' => '', 'author' => array(), 'version' => '', + 'minversion' => '', + 'maxversion' => '', 'compat' => '', 'credits' => '', 'maintainer' => array(), diff --git a/view/theme/redbasic/.MINVERSION b/view/theme/redbasic/.MINVERSION deleted file mode 100644 index 8bbe6cf74..000000000 --- a/view/theme/redbasic/.MINVERSION +++ /dev/null @@ -1 +0,0 @@ -2.2 diff --git a/view/theme/redbasic/php/theme.php b/view/theme/redbasic/php/theme.php index 0f0c43484..ac762502b 100644 --- a/view/theme/redbasic/php/theme.php +++ b/view/theme/redbasic/php/theme.php @@ -4,6 +4,8 @@ * * Name: Redbasic * * Description: Hubzilla standard theme * * Version: 2.0 + * * MinVersion: 2.2 + * * MaxVersion: 3.0 * * Author: Fabrixxm * * Maintainer: Mike Macgirvin * * Maintainer: Mario Vavti From b6c4e6a6d08dd88a3d86b5b509a2cd0f5e72ef83 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Mon, 27 Feb 2017 10:18:05 +0100 Subject: [PATCH 191/819] lower version requirement to 2.2RC --- view/theme/redbasic/php/theme.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/view/theme/redbasic/php/theme.php b/view/theme/redbasic/php/theme.php index ac762502b..95d5a2001 100644 --- a/view/theme/redbasic/php/theme.php +++ b/view/theme/redbasic/php/theme.php @@ -4,7 +4,7 @@ * * Name: Redbasic * * Description: Hubzilla standard theme * * Version: 2.0 - * * MinVersion: 2.2 + * * MinVersion: 2.2RC * * MaxVersion: 3.0 * * Author: Fabrixxm * * Maintainer: Mike Macgirvin From 24676980450908d22b56d2eb3c146ad1f991c97c Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Mon, 27 Feb 2017 10:44:50 +0100 Subject: [PATCH 192/819] do not mess up schemas --- Zotlabs/Render/Theme.php | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/Zotlabs/Render/Theme.php b/Zotlabs/Render/Theme.php index 7464a0db2..71eef50c3 100644 --- a/Zotlabs/Render/Theme.php +++ b/Zotlabs/Render/Theme.php @@ -69,16 +69,18 @@ class Theme { if(array_key_exists('theme_preview',$_GET)) $chosen_theme = $_GET['theme_preview']; + + + // Allow theme selection of the form 'theme_name:schema_name' + $themepair = explode(':', $chosen_theme); + // Check if $chosen_theme is compatible with core. If not fall back to default - $info = get_theme_info($chosen_theme); + $info = get_theme_info($themepair[0]); $compatible = check_plugin_versions($info); if(!$compatible) { $chosen_theme = ''; } - // Allow theme selection of the form 'theme_name:schema_name' - $themepair = explode(':', $chosen_theme); - if($chosen_theme && (file_exists('view/theme/' . $themepair[0] . '/css/style.css') || file_exists('view/theme/' . $themepair[0] . '/php/style.php'))) { return($themepair); } From 1070f3ed6b1f92f6909767089d7bccf401baeda9 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Mon, 27 Feb 2017 10:54:43 +0100 Subject: [PATCH 193/819] missing clear --- view/tpl/hdr.tpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/view/tpl/hdr.tpl b/view/tpl/hdr.tpl index 6a14906f6..577269b6f 100644 --- a/view/tpl/hdr.tpl +++ b/view/tpl/hdr.tpl @@ -1,5 +1,5 @@ From 805cae7b3128a796b45e406f83dcd835e0d291f2 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Mon, 27 Feb 2017 11:11:53 +0100 Subject: [PATCH 194/819] whitespace --- Zotlabs/Render/Theme.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/Zotlabs/Render/Theme.php b/Zotlabs/Render/Theme.php index 71eef50c3..3a0116abe 100644 --- a/Zotlabs/Render/Theme.php +++ b/Zotlabs/Render/Theme.php @@ -69,8 +69,6 @@ class Theme { if(array_key_exists('theme_preview',$_GET)) $chosen_theme = $_GET['theme_preview']; - - // Allow theme selection of the form 'theme_name:schema_name' $themepair = explode(':', $chosen_theme); From 1a28720c56d2bde96e4b710d19cde30518aa6793 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Mon, 27 Feb 2017 11:41:58 +0100 Subject: [PATCH 195/819] update changelog --- CHANGELOG | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG b/CHANGELOG index 5b29b875d..487dd4331 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,4 +1,5 @@ Hubzilla 2.2 (2017-??-??) + - Provide version compatibility check for themes (minversion, maxversion) - Use chanlink_hash() instead of chanlink_url() where appropriate - Use head_add_link() for feed discovery - Provide HTTP header parser which honours continuation lines From 69e145a630cdb5a11252b9043b8c8486fae7e54d Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Mon, 27 Feb 2017 13:52:08 +0100 Subject: [PATCH 196/819] fix js issue in markdown mimetype wikis if content contains quotes --- Zotlabs/Module/Wiki.php | 8 +++----- view/tpl/wiki.tpl | 2 +- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/Zotlabs/Module/Wiki.php b/Zotlabs/Module/Wiki.php index 32b484eea..15806ffc3 100644 --- a/Zotlabs/Module/Wiki.php +++ b/Zotlabs/Module/Wiki.php @@ -234,10 +234,8 @@ class Wiki extends \Zotlabs\Web\Controller { $mimeType = $p['mimeType']; - $rawContent = (($p['mimeType'] == 'text/bbcode') - ? htmlspecialchars_decode(json_decode($p['content']),ENT_COMPAT) - : htmlspecialchars_decode($p['content'],ENT_COMPAT) - ); + $rawContent = htmlspecialchars_decode(json_decode($p['content']),ENT_COMPAT); + $content = ($p['content'] !== '' ? $rawContent : '"# New page\n"'); // Render the Markdown-formatted page content in HTML if($mimeType == 'text/bbcode') { @@ -245,7 +243,7 @@ class Wiki extends \Zotlabs\Web\Controller { } else { require_once('library/markdown.php'); - $html = Zlib\NativeWikiPage::generate_toc(zidify_text(purify_html(Markdown(Zlib\NativeWikiPage::bbcode(json_decode($content)))))); + $html = Zlib\NativeWikiPage::generate_toc(zidify_text(purify_html(Markdown(Zlib\NativeWikiPage::bbcode($content))))); $renderedContent = Zlib\NativeWikiPage::convert_links($html, argv(0) . '/' . argv(1) . '/' . $wikiUrlName); } $showPageControls = $wiki_editor; diff --git a/view/tpl/wiki.tpl b/view/tpl/wiki.tpl index af6b6800e..ea31c23a3 100644 --- a/view/tpl/wiki.tpl +++ b/view/tpl/wiki.tpl @@ -107,7 +107,7 @@ ");document.getElementById("__sifr_ie_onload").onreadystatechange=function(){if(this.readyState=="complete"){handler();this.removeNode()}}}window.attachEvent("onload",handler)}}};this.setFlashClass=function(){if(this.hasFlashClassSet){return}dom.addClass(_3c,dom.getBody()||document.documentElement);this.hasFlashClassSet=true};this.removeFlashClass=function(){if(!this.hasFlashClassSet){return}dom.removeClass(_3c,dom.getBody());dom.removeClass(_3c,document.documentElement);this.hasFlashClassSet=false};this.initialize=function(){if(_4c||!this.isActive||!this.isEnabled){return}_4c=true;_9b.replaceAll();clearPrefetch()};function getSource(src){if(typeof (src)!="string"){if(src.src){src=src.src}if(typeof (src)!="string"){var _a4=[];for(var _a5 in src){if(src[_a5]!=Object.prototype[_a5]){_a4.push(_a5)}}_a4.sort().reverse();var _a6="";var i=-1;while(!_a6&&++i<_a4.length){if(parseFloat(_a4[i])<=ua.flashVersion){_a6=src[_a4[i]]}}src=_a6}}if(!src&&_3b.debugMode){throw new Error("sIFR: Could not determine appropriate source")}if(ua.ie&&src.charAt(0)=="/"){src=window.location.toString().replace(/([^:]+)(:\/?\/?)([^\/]+).*/,"$1$2$3")+src}return src}this.prefetch=function(){if(!ua.requiresPrefetch||!ua.supported||!this.isEnabled||!isValidDomain()){return}if(this.setPrefetchCookie&&new RegExp(";?"+_47+"=true;?").test(document.cookie)){return}try{_4b=true;if(ua.ieWin){prefetchIexplore(arguments)}else{prefetchLight(arguments)}if(this.setPrefetchCookie){document.cookie=_47+"=true;path="+this.cookiePath}}catch(e){if(_3b.debugMode){throw e}}};function prefetchIexplore(_a8){for(var i=0;i<_a8.length;i++){document.write("")}}function prefetchLight(_aa){for(var i=0;i<_aa.length;i++){new Image().src=getSource(_aa[i])}}function clearPrefetch(){if(!ua.ieWin||!_4b){return}try{var _ac=document.getElementsByTagName("script");for(var i=_ac.length-1;i>=0;i--){var _ae=_ac[i];if(_ae.type=="sifr/prefetch"){_ae.parentNode.removeChild(_ae)}}}catch(e){}}function getRatio(_af,_b0){for(var i=0;i<_b0.length;i+=2){if(_af<=_b0[i]){return _b0[i+1]}}return _b0[_b0.length-1]}function getFilters(obj){var _b3=[];for(var _b4 in obj){if(obj[_b4]==Object.prototype[_b4]){continue}var _b5=obj[_b4];_b4=[_b4.replace(/filter/i,"")+"Filter"];for(var _b6 in _b5){if(_b5[_b6]==Object.prototype[_b6]){continue}_b4.push(_b6+":"+escape(_72.toJson(_72.toHexString(_b5[_b6]))))}_b3.push(_b4.join(","))}return _b3.join(";")}function calculate(_b7){var _b8,_b9;if(!ua.ie){_b8=dom.getStyleAsInt(_b7,"lineHeight");_b9=Math.floor(dom.getStyleAsInt(_b7,"height")/_b8)}else{if(ua.ie){var _ba=_b7.innerHTML;_b7.style.visibility="visible";_b7.style.overflow="visible";_b7.style.position="static";_b7.style.zoom="normal";_b7.style.writingMode="lr-tb";_b7.style.width=_b7.style.height="auto";_b7.style.maxWidth=_b7.style.maxHeight=_b7.style.styleFloat="none";var _bb=_b7;var _bc=_b7.currentStyle.hasLayout;if(_bc){dom.setInnerHtml(_b7,"
X
X
X
");_bb=_b7.firstChild}else{dom.setInnerHtml(_b7,"X
X
X")}var _bd=_bb.getClientRects();_b8=_bd[1].bottom-_bd[1].top;_b8=Math.ceil(_b8*0.8);if(_bc){dom.setInnerHtml(_b7,"
"+_ba+"
");_bb=_b7.firstChild}else{dom.setInnerHtml(_b7,_ba)}_bd=_bb.getClientRects();_b9=_bd.length;if(_bc){dom.setInnerHtml(_b7,_ba)}_b7.style.visibility=_b7.style.width=_b7.style.height=_b7.style.maxWidth=_b7.style.maxHeight=_b7.style.overflow=_b7.style.styleFloat=_b7.style.position=_b7.style.zoom=_b7.style.writingMode=""}}return {lineHeight:_b8,lines:_b9}}this.replace=function(_be,_bf){if(!ua.supported){return}if(_bf){for(var _c0 in _be){if(typeof (_bf[_c0])=="undefined"){_bf[_c0]=_be[_c0]}}_be=_bf}if(!_4c){return _9b.kwargs.push(_be)}if(_66.synchronizer.isBlocked){return _96.kwargs.push(_be)}var _c1=_be.elements;if(!_c1&&parseSelector){_c1=parseSelector(_be.selector)}if(_c1.length==0){return}this.setFlashClass();var src=getSource(_be.src);var css=_72.convertCssArg(_be.css);var _c4=getFilters(_be.filters);var _c5=(_be.forceClear==null)?_3b.forceClear:_be.forceClear;var _c6=(_be.fitExactly==null)?_3b.fitExactly:_be.fitExactly;var _c7=_c6||(_be.forceWidth==null?_3b.forceWidth:_be.forceWidth);var _c8=parseInt(_72.extractFromCss(css,".sIFR-root","leading"))||0;var _c9=_72.extractFromCss(css,".sIFR-root","font-size",true)||0;var _ca=_72.extractFromCss(css,".sIFR-root","background-color",true)||"#FFFFFF";var _cb=_72.extractFromCss(css,".sIFR-root","kerning",true)||"";var _cc=_be.gridFitType||_72.extractFromCss(css,".sIFR-root","text-align")=="right"?"subpixel":"pixel";var _cd=_3b.forceTextTransform?_72.extractFromCss(css,".sIFR-root","text-transform",true)||"none":"none";var _ce=_72.extractFromCss(css,".sIFR-root","opacity",true)||"100";var _cf=_be.pixelFont||false;var _d0=_be.ratios||_48;if(parseInt(_c9).toString()!=_c9&&_c9.indexOf("px")==-1){_c9=0}else{_c9=parseInt(_c9)}if(parseFloat(_ce)<1){_ce=100*parseFloat(_ce)}var _d1=null;var _d2="";if(_c6){_72.extractFromCss(css,".sIFR-root","text-align",true)}if(!_be.modifyCss){_d2=_72.cssToString(css);_d1=_3b.fixHover&&_d2.indexOf("%3Ahover")>-1}var _d3=!ua.opera&&_3b.delayCss;var _d4=_be.wmode||"";if(!_d4){if(_be.transparent){_d4="transparent"}else{if(_be.opaque){_d4="opaque"}}}if(_d4=="transparent"){if(!ua.transparencySupport){_d4="opaque"}else{_ca="transparent"}}for(var i=0;i<_c1.length;i++){var _d6=_c1[i];if(!ua.verifiedKonqueror){if(dom.getComputedStyle(_d6,"lineHeight").match(/e\+08px/)){ua.supported=_3b.isEnabled=false;this.removeFlashClass();return}ua.verifiedKonqueror=true}if(dom.hasOneOfClassses([_3d,_3e,_40,_41],_d6)){continue}var _d7=_d6.offsetHeight;var _d8=_d6.offsetWidth;var _d9=dom.getComputedStyle(_d6,"display");if(!_d7||!_d8||_d9==null||_d9=="none"){continue}if(_c5&&ua.gecko){_d6.style.clear="both"}var _da=null;if(_3b.fixWrap&&ua.ie&&_d9=="block"){_da=_d6.innerHTML;dom.setInnerHtml(_d6,"X")}_d8=dom.getStyleAsInt(_d6,"width",ua.ie);if(_d8==0){var _db=dom.getStyleAsInt(_d6,"paddingRight",true);var _dc=dom.getStyleAsInt(_d6,"paddingLeft",true);var _dd=dom.getStyleAsInt(_d6,"borderRightWidth",true);var _de=dom.getStyleAsInt(_d6,"borderLeftWidth",true);_d8=_d6.offsetWidth-_dc-_db-_de-_dd}if(_da&&_3b.fixWrap&&ua.ie){dom.setInnerHtml(_d6,_da)}var _df,_e0;if(!_c9){var _e1=calculate(_d6);_df=Math.min(_45,Math.max(_44,_e1.lineHeight));if(_cf){_df=Math.max(8,8*Math.round(_df/8))}_e0=_e1.lines;if(isNaN(_e0)||!isFinite(_e0)||_e0==0){_e0=1}if(_e0>1&&_c8){_d7+=Math.round((_e0-1)*_c8)}}else{_df=_c9;_e0=1}_d7=Math.round(_e0*_df);if(_c5&&ua.gecko){_d6.style.clear=""}var _e2=dom.create("span");_e2.className=_41;var _e3=_d6.cloneNode(true);for(var j=0,l=_e3.childNodes.length;j-1}var _e6=handleContent(_e3,_cd);if(_be.modifyContentString){_e6=_be.modifyContentString(_e6,_be.selector)}if(_e6==""){continue}var _e7=["content="+_e6,"width="+_d8,"height="+_d7,"fitexactly="+(_c6?"true":""),"tunewidth="+(_be.tuneWidth||""),"tuneheight="+(_be.tuneHeight||""),"offsetleft="+(_be.offsetLeft||""),"offsettop="+(_be.offsetTop||""),"thickness="+(_be.thickness||""),"sharpness="+(_be.sharpness||""),"kerning="+_cb,"gridfittype="+_cc,"zoomsupport="+ua.zoomSupport,"flashfilters="+_c4,"opacity="+_ce,"blendmode="+(_be.blendMode||""),"size="+_df,"zoom="+dom.getZoom(),"css="+_d2,"selectable="+(_be.selectable==null?"true":_be.selectable),"lines="+_e0];var _e8=encodeURI(_e7.join("&"));var _e9="sIFR_callback_"+_4a++;var _ea=new CallbackInfo(_e9,_e7,_be.onReplacement,_d1);window[_e9+"_DoFSCommand"]=(function(_eb){return function(_ec,arg){_eb.handle(_ec,arg)}})(_ea);_d7=Math.round(_e0*getRatio(_df,_d0)*_df)+_49;var _ee=_c7?_d8:"100%";var _ef;if(ua.ie){_ef=["","","","","","","","","","",_e9,"_DoFSCommand(info, args);",""].join("")}else{_ef=[""].join("")}dom.setInnerHtml(_d6,_ef);_ea.flashNode=_d6.firstChild;_ea.html=_ef;_3b.callbacks.push(_ea);if(_be.selector){if(!_3b.callbacks[_be.selector]){_3b.callbacks[_be.selector]=[_ea]}else{_3b.callbacks[_be.selector].push(_ea)}}_d6.appendChild(_e2);dom.addClass(_d3?_3e:_3d,_d6);_ea.setupFixHover()}_66.fragmentIdentifier.restore()};this.getCallbackByFlashElement=function(_f0){for(var i=0;i<_3b.callbacks.length;i++){if(_3b.callbacks[i].id==_f0.getAttribute("id")){return _3b.callbacks[i]}}};function handleContent(_f2,_f3){var _f4=[],_f5=[];var _f6=_f2.childNodes;var i=0;while(i<_f6.length){var _f8=_f6[i];if(_f8.nodeType==3){var _f9=_72.normalize(_f8.nodeValue);_f9=_72.textTransform(_f3,_f9);_f5.push(_f9.replace(/\%/g,"%25").replace(/\&/g,"%26").replace(/\,/g,"%2C").replace(/\+/g,"%2B"))}if(_f8.nodeType==1){var _fa=[];var _fb=_f8.nodeName.toLowerCase();var _fc=_f8.className||"";if(/\s+/.test(_fc)){if(_fc.indexOf(_42)>-1){_fc=_fc.match("(\\s|^)"+_42+"-([^\\s$]*)(\\s|$)")[2]}else{_fc=_fc.match(/^([^\s]+)/)[1]}}if(_fc!=""){_fa.push("class=\""+_fc+"\"")}if(_fb=="a"){var _fd=_f8.getAttribute("href")||"";var _fe=_f8.getAttribute("target")||"";_fa.push("href=\""+_fd+"\"","target=\""+_fe+"\"")}_f5.push("<"+_fb+(_fa.length>0?" ":"")+escape(_fa.join(" "))+">");if(_f8.hasChildNodes()){_f4.push(i);i=0;_f6=_f8.childNodes;continue}else{if(!/^(br|img)$/i.test(_f8.nodeName)){_f5.push("")}}}if(_f4.length>0&&!_f8.nextSibling){do{i=_f4.pop();_f6=_f8.parentNode.parentNode.childNodes;_f8=_f6[i];if(_f8){_f5.push("")}}while(i==_f6.length-1&&_f4.length>0)}i++}return _f5.join("").replace(/\n|\r/g,"")}function CallbackInfo(id,vars,_101,_102){this.id=id;this.vars=vars;this._replacementHandler=_101;this._firedReplacementEvent=!(this._replacementHandler!=null);this._fixHover=_102;this._setClasses=!_3b.delayCss;this.html="";this._pings=0}CallbackInfo.prototype.getFlashElement=function(){return document.getElementById(this.id)};CallbackInfo.prototype.handle=function(info,arg){if(/(FSCommand\:)?resize/.test(info)){var _105=this.getFlashElement();var $=arg.split(/\:|,/);_105.setAttribute($[0],$[1]);if($.length>2){_105.setAttribute($[2],$[3])}if(!this._setClasses){if(!ua.ie&&!ua.opera){dom.addClass(_3f,_105)}dom.removeClass(_3e,_105.parentNode);dom.addClass(_3d,_105.parentNode);this._setClasses=true}if(ua.khtml){var _107=_105.offsetHeight}if(!this._firedReplacementEvent){this._replacementHandler(this);this._firedReplacementEvent=true}}else{if(/(FSCommand\:)?resetmovie/.test(info)){this.resetMovie()}else{if(/(FSCommand\:)?ping/.test(info)){if(this._pings>0){this.setupFixHover()}this._pings++}else{if(this.debugHandler&&/(FSCommand\:)?debug/.test(info)){this.debugHandler(info,arg)}}}}};CallbackInfo.prototype.call=function(type,_109){var _10a=this.getFlashElement();if(!_10a){return}_10a.SetVariable("callbackType",type);_10a.SetVariable("callbackValue",_109);_10a.SetVariable("callbackTrigger",true)};CallbackInfo.prototype.replaceText=function(_10b){_10b=escape(_10b);this.call("replacetext",_10b);this.vars[0]="content="+_10b;this.html=this.html.replace(/(flashvars(=|\"\svalue=)\")[^\"]+/,"$1"+encodeURI(this.vars.join("&")))};CallbackInfo.prototype.resetMovie=function(){var _10c=this.getFlashElement();var node=_10c.parentNode;node.replaceChild(dom.nodeFromHtml(this.html),_10c);this.setupFixHover()};CallbackInfo.prototype.setupFixHover=function(){var _10e=this.getFlashElement();if(!this._fixHover||!_10e){return}var node=_10e.parentNode;if(node.addEventListener){node.addEventListener("mouseout",_72.bind(this,"fixHover"),false)}else{if(node.attachEvent){node.attachEvent("onmouseout",_72.bind(this,"fixHover"))}}};CallbackInfo.prototype.fixHover=function(){this.call("resettext")}}; \ No newline at end of file diff --git a/library/simplepie/demo/for_the_demo/simplepie.css b/library/simplepie/demo/for_the_demo/simplepie.css deleted file mode 100644 index 3753cb96d..000000000 --- a/library/simplepie/demo/for_the_demo/simplepie.css +++ /dev/null @@ -1,397 +0,0 @@ -/* -Theme Name: SimplePie -Theme URI: http://simplepie.org -Description: A simple, yet beautiful theme inspired by several cleanly designed websites. -Version: 1.4 -Author: Ryan Parman -Author URI: http://skyzyx.com -Updated: 21 June 2007 -*/ - - -/********************************************* -HYPERLINK STYLES -*********************************************/ -a { - color:#369; - text-decoration:underline; - padding:0 1px; -} - -a:hover { - color:#fff !important; - background-color:#333; - text-decoration:none; - padding:0 1px; -} - -a.nohover { - text-decoration:none; - border:none; -} - -a.nohover:hover { - background-color:transparent; - border:none; -} - -a.namelink { - padding:0; - margin:0; - overflow:hidden; - height:1px; -} - -h4 a, -.sample_feeds a { - color:#000; -} - - -/********************************************* -GENERAL STYLES -*********************************************/ -body { - /*font:12px/18px Verdana, sans-serif;*/ - font:14px/1.5em "Lucida Grande", Tahoma, sans-serif; - letter-spacing:0px; - color:#333; - background-color:#fff; - margin:0; - padding:0; -} - -div#site { - width:600px; - margin:50px auto 0 auto; -} - -h1#logo { - margin:0; - padding:0; - text-align:center; -} - -h1#logo a, -h1#logo a:hover { - background-color:transparent; - text-decoration:none; - padding:0; -} - -h2.image { - margin:0; - padding:0; - text-align:center; -} - -h3 { - margin:20px 0 0 0; - padding:0; - font-size:1.5em; -} - -h4 { - margin:20px 0 0 0; - padding:0; - font-size:1.2em; - letter-spacing:-1px; -} - -h5 { - margin:10px 0 0 0; - padding:0; - font-size:1em; - font-weight:bold; -} - -em { - font-style:normal; - background-color:#ffc; -} - -p { - margin:0; - padding:5px 0; -} - -ul, ol { - margin:10px 0 10px 20px; - padding:0 0 0 15px; -} - -ul li, ol li { - margin:0 0 7px 0; - padding:0 0 0 3px; -} - -form { - margin:0; - padding:0; -} - -code { - font-size:1em; - background-color:#f3f3ff; - color:#000; -} - -div#site pre { - background-color:#f3f3ff; - color:#000080; - border:1px dotted #000080; - overflow:auto; - padding:3px 5px; -} - -blockquote { - font-size:1em; - color:#666; - border-left:4px solid #666; - margin:10px 0 10px 30px; - padding:0 5px 0 10px; - background:#f3f3f3 url(background_blockquote.png) repeat top left; -} - -input, select, textarea { - font-size:12px; - line-height:1.2em; - padding:2px; -} - -input[type=text], select, textarea { - background-color:#e9f5ff; - border:1px solid #333; -} - -input[type=text]:focus, select:focus, textarea:focus { - background-color:#ffe; -} - -.clearLeft {clear:left;} -.clearRight {clear:right;} -.clearBoth {clear:both;} -.hide {display:none;} - - -/********************************************* -NAVIGATION STYLES -*********************************************/ -div#header { - background:#fff url(top_gradient.gif) repeat-x top left; - margin:0; - padding:0; -} - -div#header form { - margin:0; - padding:0; -} - -div#header div#headerInner { - margin:0; - padding:0; -} - -div#header div#headerInner div#logoContainer {} - -div#header div#headerInner div#logoContainerInner { - width:550px; - margin:0 auto; - padding:20px; -} - -div#header div#headerInner div#logoContainer div#logo { - float:left; - width:200px; -} - -div#header div#headerInner div#logoContainer div#logo a, -div#header div#headerInner div#logoContainer div#logo a:hover { - border:none; - background:none; -} - -div#header div#headerInner div#logoContainer div#feed { - float:right; - width:300px; - text-align:right; - padding:10px 0 0 0; -} - -div#header div#headerInner div#logoContainer div#feed input.text { - width:60%; -} - -div#header div#headerInner div#menu { - background:#eee url(background_menuitem_shadow.gif) repeat-x top left; - border-top:2px solid #ccc; - border-bottom:1px solid #ddd; - text-align:center; -} - -div#header div#headerInner div#menu table { - width:auto; - margin:0 auto; -} - -div#header div#headerInner div#menu ul { - display:block; - width:100%; - margin:0 auto; - padding:0; - font-size:12px; -} - -div#header div#headerInner div#menu ul li { - display:block; - float:left; -} - -div#header div#headerInner div#menu ul li a { - display:block; - margin:-2px 0 0 0; - padding:5px 7px 8px 7px; - text-decoration:none; - color:#666 !important; - background-color:transparent; -} - -div#header div#headerInner div#menu ul li a:hover { - display:block; - margin:-2px 0 0 0; - padding:5px 7px 8px 7px; - text-decoration:none; - color:#666; - background:#fff url(background_menuitem_off.gif) no-repeat bottom right; -} - -body#bodydemo div#header div#headerInner div#menu ul li#demo a { - display:block; - margin:-2px 0 0 0; - padding:5px 7px 8px 7px; - text-decoration:none; - color:#333; - font-weight:bold; - background:#fff url(background_menuitem.gif) no-repeat bottom right; -} - - -/********************************************* -CONTENT STYLES -*********************************************/ -div.chunk { - margin:20px 0 0 0; - padding:0 0 10px 0; - border-bottom:1px solid #ccc; -} - -div.topchunk { - margin:0 !important; -} - -.footnote, -.footnote a { - font-size:12px; - line-height:1.3em; - color:#aaa; -} - -.footnote em { - background-color:transparent; - font-style:italic; -} - -.footnote code { - background-color:transparent; - font:11px/14px monospace; - color:#aaa; -} - -p.subscribe { - background-color:#f3f3f3; - font-size:12px; - text-align:center; -} - -p.highlight { - background-color:#ffc; - font-size:12px; - text-align:center; -} - -p.sample_feeds { - font-size:12px; - line-height:1.2em; -} - -div.sp_errors { - background-color:#eee; - padding:5px; - text-align:center; - font-size:12px; -} - -.noborder { - border:none !important; -} - -img.favicon { - margin:0 4px -2px 0; - width:16px; - height:16px; -} - -p.favicons a, -p.favicons a:hover { - border:none; - background-color:transparent; -} - -p.favicons img { - border:none; -} - - -/********************************************* -DEMO STYLES -*********************************************/ -div#sp_input { - background-color:#ffc; - border:2px solid #f90; - padding:5px; - text-align:center; -} - -div#sp_input input.text { - border:1px solid #999; - background:#e9f5ff url(feed.png) no-repeat 4px 50%; - width:75%; - padding:2px 2px 2px 28px; - font:18px/22px "Lucida Grande", Verdana, sans-serif; - font-weight:bold; - letter-spacing:-1px; -} - -form#sp_form { - margin:15px 0; -} - -div.focus { - margin:0; - padding:10px 20px; - background-color:#efe; -} - -p.sample_feeds { - text-align:justify; -} - - -/********************************************* -SIFR STYLES -*********************************************/ -.sIFR-active h3.header { - visibility:hidden; - line-height:1em; -} diff --git a/library/simplepie/demo/for_the_demo/sleight.js b/library/simplepie/demo/for_the_demo/sleight.js deleted file mode 100644 index 4b5058e9a..000000000 --- a/library/simplepie/demo/for_the_demo/sleight.js +++ /dev/null @@ -1,31 +0,0 @@ -/********************************************************** -Sleight -(c) 2001, Aaron Boodman -http://www.youngpup.net -**********************************************************/ - -if (navigator.platform == "Win32" && navigator.appName == "Microsoft Internet Explorer" && window.attachEvent) -{ - document.writeln(''); - window.attachEvent("onload", fnLoadPngs); -} - -function fnLoadPngs() -{ - var rslt = navigator.appVersion.match(/MSIE (\d+\.\d+)/, ''); - var itsAllGood = (rslt != null && Number(rslt[1]) >= 5.5); - - for (var i = document.images.length - 1, img = null; (img = document.images[i]); i--) - { - if (itsAllGood && img.src.match(/\.png$/i) != null) - { - var src = img.src; - var div = document.createElement("DIV"); - div.style.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='" + src + "', sizing='scale')" - div.style.width = img.width + "px"; - div.style.height = img.height + "px"; - img.replaceNode(div); - } - img.style.visibility = "visible"; - } -} diff --git a/library/simplepie/demo/for_the_demo/source_files/place_audio_fireworksfile.png b/library/simplepie/demo/for_the_demo/source_files/place_audio_fireworksfile.png deleted file mode 100644 index 2bfd87d0ce14c424fd3b72377b085bb0b1510bd1..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 39177 zcmbq(Wl&wg(qIVg4#7!qcZZ9+ySsaExVXE!UL?4?LxQ`z2G@(bZr8Y;iu9}(C9jT-siHv}c@a4-FWN9fem47toAE3d({KIS2rOp2cl#7V88r;9(17{ZT zPlo>~rS0i+MAnM8{JDYnrI@`LCayMJed4Bow)%mBhhNfo@IMp7w zPKq?V7#hdB1TzVjM_`=A_9XVYJKc$rz6$a1#Mt?VHS(9Y&f|e@BOvz!rQu5?$%ypZ z?PI**6;Th7m`nG-L^$hstooQSV|d?t-v@sxtGr9*p>!8(tP7rH%if3|o^hU$1)>t= zUk8W`iHt8p=n`$E&9GNL;b|8M&~mlMG<$ARYkdyr44?lW_LIzy*ou44a&#LtGmL$s zx!~fc*=OyD!ax5bXW4IbdZ1qnLbSWrognQ^7w=*=q47O<#{5v$^wA~lqkl#6jb3#J zGTZH!-?8uCI_f{?cD?J#m8jC}$32kY`g}HgF(_9qp3^>?RAaQ>j&*RkJcTu;b z6$YjX+<vu zArL9q0dDbAl+TmjfPSnqKOD2_M&VChoTa)>>}oK-7aZ(GyW_^i+hxQLs8vz8X)H;| z@$WE~rdIvY&Q7%iTyEcvs(RCYvfWcbxl%@%R>?xdfZcHynuo$R+V*wfPh+s?@S};e zw?fs*lj6Pd_%q^n_B-juB!aS$6%BcSfSl)bHp#LL#$$3GtGAN+p}nqO=MU%rT4+uN$C{>x}z z*%(4;pn=SqS3=J4R1GN+{kQ67bEmNRK_5X24{}#Gk9zNw__d1NI&XLA!aOtU5z5xi z=VR+s-z(_`2tlKME|AZaa04=4Sa%SFXdUvgi542Ep>HC}!(_nUXy_6DH}u3z^yjFF ziqjfOTVT3&D&Di?z@y+^yd-$5x|iFrX=(Uq=+}LJ_jS8H>We;A2H|;C{M7yE_wJ4D zt#7#mX@J$Wi{G#wb8B|}i(IxnwPzh{*3Fl(1$yr&O8Bv^0&w)Ua~rE(P6m#Bf@ik5 z$u8imrTLdN$m(+BX0j*tC1S;vNB5mkH&16MMI?LdytrmfrQPda&Gp-4V#^N+4?5mH z4#@A)zNXpitv#KHZhxR1JgDv;C~<7KuC%=oneK_Yw0on|?*$}`8Uwd=iRc%~_F5$n znY`~TI(Y!78`9mPB<|Gr3fUSBvM00S5BSyx#MY^R)fKLxBY>Wqh=u8PpDd(9)=!p` z!5`_77_7Y+VKFU*)qgfspL!5L#Qn{cxxbVDh?`i*MP{-vO*k-5Tv!bUjI)8!`S}*Z z+E-SvvW-zVfwY|OJpr+K!SdUsD_R!Tu1MK^^Tk)LH2i?j;nJ(8WcORTvSKdl*45^A z)G{9Zwm*O}h$nQ&pZeYiefL;KP_thPqSIr7;X}~n=SM{wD+5Z%t-Y*dl9qC--G7AC zWPdg8)Gk$AyTcE^(}%Gpx_7F&$IB;S6%<;jQ0XgyFJQ$d6Uo9L%W>s-AHVI|Hr4;e^u*DK?cw z?wG0T$pf!q5@A$=D7tgWTq{GHdo%9ZYUK`wmVzw=qRpf1<31+ouk(D_Sz&~kH5wZk`30AW^*#HCnQDj~?_V-I zYzd!V1l)Ro1m?{9dxt0y%XDZBN3MU<@I3O=&F;swE_*b(#^3~l{ z!CaGtX;rl!ID-wLFf3uo<2hdu76}7n#x%;x)UlhO6}`*yCEHCbpc+#fS5a_}$SfV% zVlIN2xaGx%lf~qscyA=;_thatZs)H5yb)6>pTQUTlMS4q$GN?bvTQQjj}==Jy;HJ0 zKRfk=q#Hk|q9-HuEHg2waE_Eo%)4mlX_Q9n$y*{u`4cor`}ZMm^#d61y9s` z{u@Fbj|@>)O%W`QsG*Lz9VN=-&j=+J)9S*JlIcP$!W8O4^Gs{2b}WYU!UGlc5|{*^ z<5+TaN*9)irN^j?7(JFgIIN(3#OTp3OnCyHSe{8ogcbf+I~QL|6fQ9tmBYZ4y+)6 zGp;4|H?0yy0jQT?4p&=hA2WEQYgEqm-TX?l{&$Oris_R!`>zoWr_5py zDj1hXMKap{%nTBc3lPlnjIA^hjmpOI?5;G7eCv4s9yF2_}S@61xv9M&S+};sP4tmmA%D2 zx*zh&a^m>8+z{WOyTzdmvA52?ca?tgN($wrqP<2{e7~ikDdNj&?4F&g>?Y#$E&Q*UJ5pl`mEcsTL~Va@-Y}d)>31 z4}Olh_Zi>jqh!N{R&sNQo8IFC1p(ru~Z|wwH@V-h%9Tk zxeN|svJgmjue8)7fX>7x|6-oh6sYPFFehPV5^hH+)j#voE~?>Sbg3 zGBI0MfQoHDhUnj?ROl9dvFehFWmB)#OKsyqz9%7hMY9adanep`18Jkl)LDO}eRGMz zK(=sR53PiQ#Pt3qu`8l&BPOTS5- zj4DyIl4An4Nl~ZafJ;yu+pfyV_Xco&BV$pe!u?w#OjuxRjAXZt}Du8 zN@7Ne>gG0dA&qsk_|>BaBkIBLk0&P=UkbFMyBgehqh7TArRX75$@y|Z$;=>>&ZQ!$ z?S-Q;H1D9MR}h>hx<}rc)6_#!!kV|ca)bV5da3(h{QUf(cmLU1&~1}VT5b@HYn(i$ z@mCs54tT$;3+@l930zNK)fz%coQ!FN?V`-N5u8&~v4Pu*@ZJ_LYm>!f}y z{I>+`n{D!kk-zcB{vjS7D5Gq?Kwb%Pj5qY>T6DuWW|Omqp^SCkxcBtuC6i+cahi`` z_}lbjT(+aFtUj*+*VWJ?cLlBFjyFoXTd?2b=f*Zvsa0c(^v7l|l8Vf^fdUI+thhpY zmi#fqgNN`>jov)d6;4wnIgRN#m4(qMkfj+0e21RW9T^6Pc_NwRRh7o{+B#vy%65x` z^WBAmV`OQ&M~|208?{4>;SJ;3&XowQS>MDSOuc6%?U*Mox5wKIV|9rS(pvX5upKzi z5``mRk7Qgw4Tj!rHg0HI-zZwgexCUbRm-<9-Q%sbdj7lt>?!I*dWTX}T(jnPA*FTE z_m6vgV>;u`1Y#)E$MxwO4;L(rdQ@JQD?Tq6-jpMOYC?ng3hC~ih`fY|1rlNRXOnIC z36%1X)A%cQ7ccgJlg53O;{V&n>hA|jKS!%+gTWT;)fhuh%l*g9ALj;BjW#(1%2Tl+ zVcoby1S3(B+-Loz9_=e5)0f!%wM$aL=D<<6{)q2uE6kyeX;+gtJ#KJ|qx&e7 zb(Ik(k}NE~D8(pFIs}@KSKcg6&AY5B(P9Oq*_#()p2s1DoZtSKUK^A4(v08o(`5zz z)(m=qgyHa->z|iWaH{V`YRKMV9H&AcxXd|`RGiE|i&V6y0{h4vYXW}m_}61zNNV>LOny3Ms(kL6GmDd=+SiVAY%*V0eZ05~ zKoV}ZavESRs!?srrl0fwg5iYVV0V_ z)1|&3uqOG_l9P`iCRdXpoye}`ntT#hr7pALPat-Ho|$!>eNrzy@&%7TrKOow-5I64 z=&wJ)-=Afn1GSJ1Ir6lR4-M14ZNLrw#nVj}L6P!PIgd^XavUO|wDVdpYRqN>Cac4Q zAv($CW%kIRBG+iGGw~UCV>&0RB13y=#Jv2{a;O?1aPrT}D;s<0zcM_{H!?__`0?Di zy5i~7vl=mJi-LY=uQw_uG3WO52%YzH>}W7-$33COop;r)#W2UQ$}!3R!i2i6Joe{2 zCyUZL8teSKo9P201;Lr2NVy}+9&`)m!v*rrrapg&rS7`Xo`*O*_NX-p!z|9HYyVW&M*X50j<_Zbn`@yiDpC67rr$=|J)bowd^ z9cHO6f8?!YQ~xy1q`D0e-CRXutk-0k4Iza1RV{()_xjdiuJyK8`+#mKZ?+|8_)hr; zNC;Aj{Ac}z_QD=2io)22Hw^CCdB0>E9`8p6D~8e4TylC5qIUPFmwAa%zR8rB_$Lb~ zjT>%NlLM~WP{%PKL;9P#(5|hOKV&=ez{Dua-Vk8n`kPrgG148B*$s`&8_PztZi}~) zU;KrrS@TAO_C{*Pq&TMjAKuoV$jkl3ZU#C>?Yfqh*173RUe>wTRkzJEyn@3o5mO8d zcXJ}s>mr@9h}}&yvWWV9BCUa(>)@XM2m&664C`yfp$0m~#i0s~GuzTSRvN@d;v6q~ zjk4L@O{=#ptA}$IO!g0R7IZ7;XA>6wp&gId3)g5(mexh-oWL#4HG{R|;@E!(BQriD z_P-0|b%wU2;Q*}*(s6j3W@wV$Bx<_Y(w4j+s&1VRHs^SIFP3^eG6lIA z)O6|U92L81)K58XjdlKW2nw-V&#U#n4iAa+^3YxWTM(W8?mzY-Obks?q5m;iJ0GlD z9Z&W6udB42uk!yfnT<9oO8@sgC(ycR+zhal^G}c14Tl44zj64lOARvwN>L;JF`%96 zmIV<>OGW^i%;?ff2PvlbS=^raNkM30%W6{1z_`Wr@A1UxUz2seZAQ-E4o_@5jB+6- z!+IfRZY_6hZ`_oY@@rBAGt$qUymZjbimT4A-NYv=apFbYC}XUq(5x+Jwm_>ep|8s0iEeVUTa==v2h~O_PAa#L3NlL#`Cw`AIPTS1};|`^oIx(kQnC1J<^z?e;5;)&BB>FfGm? zhdypX!WlEp0B98+C*#QSJN--3?MTuF0nwK~cIu=7#mxe2=VL+#^`N zvwh1KloNA|O*W$NEeaA!_$+cd7TK&z@hlG24z9MGsgzT5=|{;moQDHWu@mykd&1(7 z1<~EoRjF6f6nB@MU;4$Lg}(qMT}*LQk%}^NYF@YN8M?G2k3F!C{6h`K0Li4}JHlgg z>FxFFP4!e0gI!fSLS5Kz+dyhT2bqaVLz@Y@2UqmEUWjRs>5?}EalE3y4Rc>&c=u1T z_$mOCB+2;fu=8C#p)dW`@gC3>Hc!R&=_$x%1u|yDZbIpi#btA_86_~KpAy|bQwufF zWxS2miF)<1mGvlf-g)#gVA4O#rEdT-CzM~l2EGj^`;l^Xj#Sm=FqKbXFMZ^;H2|=x z3qWdrvrj`lc%9J9h}Q{j1tn(2AsA$eiQ&A-dM*!+bfRh!94YM?to~_-X;!Dd{ZrNU zh+7aTU86VbM_j+^++k576DQq- z#J4u66=GWA*!!HB_&_^dJW8_2zyM}w`N@O2JKA2Mrim`PrTw>6>HQN{n+iyjKvbR#;Z>GOl~Ks8a_?Dr!B zgk?dYo@@GKe)JMcF8HKEE_mWDFoISr$?C=!~lHNxrksfLI zhkuga^up1MT-?7={9RWHThdQ^B`NMHAA9y#iE1|0Q}x5T@Wr}JI|7n)^We!Rq*}Pz z2|rSh594eVzxcM-;_d{`EBh;U@u}a*YMf*~`G-#mL6wCX{J7XXdu2rYJU1{TrUHbx z6YqRrzL-(y6>BXbL=~ZX2TGEO`+|BI-WYYd%Air1F@ZsypO)y_N3)8JZEK(@mHv^n zM1{kYEUSaZ{u;I7pDTkZsQJVOGO@bb^1in`onx9RhdEcDl9Z|*e|sDBsP_`37Km`?SVPu{UU z4`y%Qp%0z`*c(^nhQ#H|=(=HZ&%1&Y!BZm=>Dcr^Dqa#Gi?WH|Hg2ruGINwb$?a772nk=k zt&M>T!sv$qlwwbGW05ImlC9|U&^hL6@z$XBLImBVM5C9>VI*wM6*KCIF(B#ftgzOV znYRNjkKEgvg-j3F5ZVTt2y$o+oxPY}ej`V8^4L0`?smnz!~&TcOF3fYnhQ60m_I6v z(PgBSYR|Z7kI&N^fad9aq+b|4;xAfR9}Y@%js3n}6VFj;|B5yceSFd0y(vYQ+{U0% zY|&cVEoSh0x2u2gg2#2T2{($S>a=GbNp@51@MGpzxDJ=c!RL3%lfPriz9oTB=_SC zkJV2Ru9-MAg660$@?M38uN_3_Zq)Krxn^ijkWg;7`Omvu_3PhrwYRMkr`SE}6el@C zye;Eh3nSwLq#FBsASs8;s@p}G?C0K_o88`8S_0EK6YxYvk#G8lMASe&vv1#-#t2*(oP|ZpnUNG-t!6Gq`I7%=*pXA&v+4QNeSVljZ$!FeeTFzeD9R zVV4i=z26|r#Ak0d5A;sQTGMk(_PZczIbnNiSzM*qZ{f|w^y557GryrQaH6>0&krHWDjI$Jkn0Db5Gy!m3ny*%Xdbvu6D>>ztTk{ z#|`TOg`IZ`OS&!+u0-AsT&~1qpc!fH&cg1$`rj=12RA?ME$$9HO9;8AUEjMVzWi}b zfnCfFqdcaY6TZXmi6igGo3|@_3$Zg>E5NC3zR=PPXo0H*9(cd0-D}0_!0fP83K1E#Kc{>tOWUqbsz?+?{3K z83+z_t*U$5vtp`VKF`1|Q@oF5*b^*XM;S*fGvM!NT5kJk^b`Xd*ahN$7cOknZ63VFWIIzs!38A z9geR6KJ>3@vvY2>84)xX^?|rX95g_V>1M*xj4+D1D}F_fwwwi|>7RO`TPsdKuCfR` zLmX3no#}?D%k`sMx0N`we@7m#V;E0n}6L$WEchH24N zIDGk036BT+WobOp-*BI!U>7>9X#Ie_-tmONPL6Hsii#usTy&5v66FbdZk}DOo zYlNwEGH*Sf&=hQFzz|N7Y#nc0jqxJkFmh1e1u~*1a^4?ju!&E&v;$(H<+9IwD?_N? zvsaW6cfL}MAvK3+3K*U0MUc#DH}%65N2+Raq6}<5agekf5IrR=4Z6oT z(RKnRgWX>Ty-dAfG1nPdJTuH0XPl&6QTigc2mUr3tmKtnD( z_Tq6lp`ugXncLot+tXP-w7#&IL`ITdOh;DT-=CN0lxmtC`;q$;(LIG(!4ucdZFDRJ;0WJSrug((z^)f8m$OU(0u@b& zCbf_Szv|u+SgDs37?Z}H#f;A@v0BdHBU<@P=!o)o1`&=*0s}C~MRWLmwXb7yc6J8M zV+^+?eUHYaz{0xSK5{a-u1hboF^dkFlQ z)-Aq{^UMkLVF8s-u2^bWjJzW~#)p5RbvNzU|wEVKqSzfh|F?$yif>>Vo zVM11b+ED$Tvf~}~@|-gpqd_KyAx1ruHi#||=)Evyh;69GQ4#g&mQh+_8@=#$f3`ba z8*IlvT*kA;A^a<3Bq3&8zKKyR2q2F4qd|V@B>|l%mDlFI$eCnMRp$_2VLaIo4zEF- zTJqcvB;QtJwJo}SD^RCDN`)FqwcMmy;+tsxK{&n{yE;c^cjCg&w?kmJ2j7x-0r{=& z%t9+G?H%UP_(6HQ96$`Qd5Op|Pi0o+jK9juUes}jVKowC_Zq(kVt{1#5!3F3D}qt@ z8a}s8Lcuk&xR}2X!#~?8E{$ZTyXT=d1ZRF8eYkCcymL~`L#iD&BiJ*}r?@9*2%5Ib zww{H-_b8+}$)s|q*ZvN{l}0oxEw-LwkkBsV8v1dM?ieC|mhPT~_}G}C32P8!DzaRf zx|rh_!aKww^XxjGNLWg`sxDR^TWUpIAXa<=kvhk&>-N>L;%{f@8A%65kG`Hw{f`}4 zQ!r-A9A?Th%Y(SQ>MmS#^T&E2F2>ZZtF(+vEvF5=)U%;l!KTugilh33mnY^Pn zl8|0Z^K<#-bLo@q&D)UV{Q-3R*>)fI!B^Bf*DCY3x$x8eJ@7-V0hjLO^2EPf&~D4> zeN512@%4zd?f6sS6ZeIL(174Q^asM(HzsGK2u1sF+37ZHeCAKu@hvUr+=p(GkKS%U z$L{&d_h8V+1E|bsuD7MPwpz--;Q+Ms@bPx}@e2ESe)ie(C{0_8#s2XzjjV|3e?Ls3 zF%)!hMwm~u$NSEW9jnS=xY*lL3f_G3?qz$4_OBB_#t-?L7_CN2BlTAF$@#|Bdkc~& zaKhCUoTxiDEXu=vctrg;Ao-Y6^nWbvEv|l>ZT%Sj10sG4?|p`yc@YG>pInyTy?gkd z2!7z&ht56K`d3xI>4Fs%Kd;jLK0)MHNHJ+)%0y01< zvD#8lLy|Ejc64!RW0IkCcE(m6sSJf6Y=$fERXBrr$|t6FNq^HlIB%&u`K^fStuRUp z+5@L)*S(%fwyo%K7Y)BXn&{t!+s2VYKqq~&=U?H}qXb$n#!sCO!y+N8CI<>y?qt<> z@;kbG#rn2dr>0MPDtS#9*Gu+=VF#`BofGm0K(#fZ#j-Wo=8j~-h==@0yz(;W)623} z(SiClWSfJO_r8QX-S`0rhe|uCd*}bZ0F}d$VYpjxZZ1Da_q6 zCd)gDm_yT)yR9O*#e^pS0ecYbzZu)QdW z|HzmoJU8)%OA

Ag8|^J}tW4*}bh^ae?&s<7a3ifA^;64Xrb4x#1t`D;T}W0~v|C z4T$URhHk^4PkLWW#CWzR19Ge`nrQO*lmgxLQ#96oP+8#JArZ^-kvzR80EFqKd*dG+ zS@b+d8)K3zMas!i+6w+<*5a0@!^5TO!_N!d5(vJKcyXZjRIiJ`K9 zn8aW?eu?-5mZN|eJkcTg(3s5V35J<&&(VhCjN*f#EJ$7rBqCYuY}h27(lyK9Z6_i;I^sVac6x^=3@Hu{_ArQJJ~Xhk z%Uc4QJqnt)WorUMynE42Ksl=i8)Z76I_IRte@{n#(X}B$>ui@__LCXzZ7>`X>GM5; z6yTLL^+4X(v63Pp-N~%{NsVU8AApXp$6|AWJkF)yU2|LGF#2_3NpmkhMq%ve)wydqXnY#+>FK_WWl)HjHCykzZufRw)Z=} zAG!oSza$ln$T%MfP>Mxr|SMKs)t)}|kbNATXsFSh~W+zk1qc)~w zBO2+)4ID4T%Bw20f}VS~!pfaly*&Ovp9(@X^)SngI#VH1l<~zL1IrgUlHkf{5lffFd7)$?OWbFLwNsurcf^D98p zKX&gGEg27f^+l&%;}z{_OMV~ts)K8_jCI|Hd*w#H+f9=H`>o zEe%6obym&w1pJ@7rRXX}jtZ;noa{b$2N!PB)x52(Wp&oHo9*$Y4UnI^qte`!*}gdf z_0H(UP)t8ee=jqH*GqBww zn~vQY9-}klz2^749Si8eRhEAZ9__|h8}j1c4(}Z}>AKXljrniNzzaLFJ6*gHZ8Lz_ZnVh$U26Qj`3++C-G)DRF8Go@@*-OiD~xu zz&1wh28$nZe8DAve<%L(Jx{V+gXm9e7IKgphoW!%@(~h^4(j$hUng)P1~`GYYzp6| z%{ItjPm-|$T3twPp`t&X#@m(fC_K{cb*2g?uijy+%LxA2Yt!-(K}Bq~SYJJ>if2Gk z72DS7Z}8yZ&S9p#ySkWQo@}WpI>$TS2`a7rqfq|cLHx)#aq#5=@jdc^O5(D(I*|0H zM@LD;l49_sMP^B|5y}$b9oGZcN>H?{KUU!f@!c%! z!f(z->Hx>uTO`H=*befr`7E7csFt=D{CIAwcz`u90z}u08$A6aV83#r9fSStAi?@U z^2WlVg&W?fe#K?>p0mtCv9-p@UF_?aTq`Wa&nPsRCGw)d+0y&@`BH9@0q>j97-^tH z(3TBCx4Jp-Fy=&??f6pccQ1E3Yp0w{!_b}2*pV@b`c||v?e&D)8sD9!8VW|Y>SOJR zTI74JgqwILwoZvBvYO?-o~*Kg9Se6>8m_#B(Cs#sVvVXlTi(6gxMN!4Z+_{DAHL24 zZ@D9;df4R*HfP2(6($2Yn@cuojT}{Fpm|%v7RIs>^EA#BFU_TJ6Zx?@7_Y7HwIju= zJ1KnIO$(6J-IcbueuCxCGKc*|l`4UToNXEK^yJ)ifs9~sQfJoMwDzJOx=Obcz#Lzo z;zGT`b~c-6k-no=Y4O*cZ%5-D>Y{0}byq+8tV-6w)FbL?N5Tb}oH>cIUBR9+zz|WN zy!!TDp)u7)h7FLHqqy{^EX6GXWXN|}CAwDTm-Rom-}Np@JN)Kd--2k&lbnUb@LYQQ z)rOAZYd-HSP&`7D;fxs-e&Xg=ZTNx$iF%exB<*||PP(B5QH_jRyUuqP54vW}T7Nqp zx>W=6Y3D^}R81aGwaMc)lA{U*D7Qz_HnX-Z>)B4*TjR)P5tj?3Z%{!q`Fun-A@dyd z#5ATS(IX;2lAl(qH0@t@K(}yGen5Bg+Bu<_a;@;NA?fFC)6?ezE*z^&t8E)oHqVlq zlvF8=rzJ9mZpaE#uM}SVEV+c$J)}!hHh(TtSqgtXlx7sEz#T2sYnB`Qw_OucntC<< zQi9UfnQmGOKJGl=_7%C7D#-uY8J7=j*h-b9KOMiT`dus079K3*lHD@m^47Lu%$JPa zKUTBHpC%Ez{WMB8f#4qlm1%BmW0mBLk~aT**lZU|wN{HBXKF;Ll~nU;w{^s&s>n%I zV@gtNx6ux-%o)wARm_Yh$uy+wtWuN~%yh^sZ_CO&AK$!e<<306QIWS+=u_PNcF$Xx z81DgIvBty&2bZ*F>>6h_z!k1#(22j2y?SN9n}fyx@DYDG&WV07aP@L>ndJTo~z!fiOn@0 ztJF;=Dps9;FoD!sJ~c5PE0Q#c?@zh|@Rt^sm!~v`D`nfpvMcCd4ypDQofL25N|HP# z42qw52ZgvYC8I(3xQ}iyFTAQZZnyCXyUxmP;O)hF$Jmnnex!v zYWqucEN{isyCD%DKgg@1(jju;t(Su;yRNNm+JjwC7i5RMe^G@2Xn)C>Rgdpo?Aq&M zFW|kniQ;3OE_kpNQ}>T1TW3>vv9)lps-fPapz4@(iEBGw1dJEWN!HF^ z)%Jb%h>a6XIZ~}mRIcP%)|rgascv7gDPDSEZK`jqRKLS+z3OKlnSmORA;rhqiayv#Yv%ZqgfT3d|%Nm7@&~xh89jUDerlLCwPl zWOo7&DQ^bEi?#R!kg81$7n@>DyU!Xrr#St4Y&+d$P3Uy;WYeA}jVs()w^tewl_P`d zCm(|aR%#+FM8TTyNM-|a5G?=d{3yOTMZyvjCB-MFw9#luK=Qa{0O+N<0kMgIC<}LXKj}%wqQPk%yE;a<;?HMvhS|AD_9iVy~)* zLx#w(GMAh}J=Meq3e8E1=4m}6aO2U%@YrZl)I)VxTZt{mYloVb?cVg@eDQA0a&ULe zjNB@eT9>7I4?nraMI+9mQO2uv|0VX9pEhEZ;l)O`ZhM&|g@PWklYBg8HKOEfcDV-~ zu6BAPruEPxr_|mN;>#m^Q(OzP?_~1Ww!nnB;81%n+X5d;e{OT044BDg$J{hEe#gy1 zdUWHOW{eU195A`%fsUE<{n$7%{pu3U?T}Im<$3XrEu{&Yp2z4>zRPhJNyzyyVEzzG zBLSwp$E3G+YP+}*_PS*=W>OPmB`7Q(yX_rzTbsff8_X?_sVm(j+;FF@^+K=lVk%AI zV9Er0*2C8Zjo%qw7!oF8HWm5ifJkgziG&DAWKN*QUBGm~@j9p=Yggpyz$ zLI!4qv#rh7T-__GrB5_BnhK6w8}@%!>Km3Qt>t(Gn^JsibIC%DCPdxq$_RSvVN*Rz zw>}?^>d0a1#BD!ppo_t-9IaCtHTo!I{KnH`RZ_UhXusH~RGcUOpI*yU{uCMF!>NuE zag;k%l{LfqGrZ&z&2#)#yjux&X^KemBn6B?@?3I1OL$ufZw^MsJFKq_4ae;gOPT_M zZlYu*-D1R}?|DO-I26y!B0NO-OkU7>$0b@(R5Of3EF|GN+K6_$eDw7b5&pISylwO&XnQ(|-XV1)svAeg_Vk^^q%*?) z9n1cu)T&cZ+*MFqZvOCjZ%HYy-3v$Ji_f{L!+uf2LxEn-lx1-lwvM88_tO^t5Q6pn zziF61T@ey|l&_130&FMM`@@vn2k=Vs)=6t!K>cq*6|7 ziWPm7z<*Sr2VSKeq52)l+7Qb!c{S(c#UQQrHeuhjTz#*yVgcv+o_=UqGX3}R$!i|N zJgcQ9Q%>W&ti9Wmgn$85Y_&=Cg1r;3<&kxC=_9+kol}+~B9nJo_y7LBoZh{iwd^NN-PHB72J2#-^ATHik^)BX%iv!M>Z)ou`~( zcU$~bs#)lB$A%UD7cMa7Cszlkiw;1>K$FctepzjT67wNjjxSyr!zrfy!!9AI%7(AD8nn1hw^5Www=tU-O!!*)=;x4 z=be1y$7;;U@Z-tPSgFIof&2PV=WvnsMll{9!J(7cXXLT_Di5=@w_LUpBC_U9i7Mi; z+$s;0P>-oTk13Tc>4#ydzox$)zU!Fdv_{;FElE)wpJdK%%?*MI=-9@k?Y;;~^Qz$rZu0HBQQ*-}r1bX} zVxdR2ES3}3tg91Tr#d#6*(aSnOjRBNr=99p;)G}C&ds9Kn-`?{O6?Yc6$9Z|f1<%% ztQGOrrJ9gG1o9p6!t^7D;YZv8YVCggx!&pG5sh>?n(;)f5~s_MYhRwCe(XepXSC?H zh6V&P!`>wb#?*Ftry$U_tX(CJmVPyEld~?aU7#6(rF}s@b(DN(9;3RG9Mn37+jyXO ziNJNDmrdzlzoJih{7IsOfBimcuZ*rOwE_WU_cVoo47*EkpD#uu$)9(DbNWbo62*V5 z@&C&2$x#HkyeC?wje+S87f%}@j=3!CEwg>Z9RH_B9-3Fv-${YaPqs5SSnRi7!+Ou_ z?wcRx*wc$yv_2oWHXsj$q@@5i7aV)t&V|21mRq>+H^jk;Z{+uPu}A_dOOmg*G2fKK z=UnHcVFCq(_Rp#*Pb3>fU+cHOzgvNYzi$&A>;D~su(VW( zwPKenVw`F5n$X2&?GV+=bq+VRwfgom#{1{ zzHXM4xOk}bzQs4ZxNpZNo2AL45|-e>XEX0dlw$(*vfy`^0w*b^vdzjc`9tmzLmP_4a(ZVm45Kk=AEJ%(GTQ5lo{V4a7c^s>@!K@h_ zhHP^4%em6;bY<-yi@YbkzF<0917o)ueZ&!e%1TUwEJCByG)*>sZ|4Anqa-E`v^Hno z5;c&a637}>tKgEH56>;io%OUyt^B+CY3iAokoUJUEcc{GtqM6!5v&SbDniPN5$>2O zWSF0myY`LZ^qc$R@;?xSHZ$!uMBk&@+Iz#BpnkvzSwY9)ioh`-l9niuT2WDZDHs8X zOR*Mw6g~7SGm?_?%|sFP9KPs7?&kb-xx-SBl#LIQjlbPXPsD!x?8gwEe= z-ZpuO(VEq?9Vi4=<`il?j%6-i(0K9D!q@3reQ3OI(kXXYC(r;A-YTHM03`H`KkD- z*Op=$)%xd@cq8|Ca<-!no;SX3)L4H}so3&0g}T)O+RPI5EbhYyM_(w+L`7|cu;=|l z!@9qhuR3fwi@iiC+!b*ICxUmiXeZL{e7BWeCzj$6B2y4kEAjkpQjd7|o>+J?tk0AE z@{Le?@HAfz`(*c?pP|~wGuFY=cySl@oTqMtG7F*QTKCk_i#qORylfy!5K+9#spK-@ zt9fe}t3lYu_wZ$grsV!3DUDh8&*Hx93r}LRdOyXak`Xg14hl*o9ovr=N`04NSzoA`u#deYQT;BaDTkI%d3`-a>bp{WKsa^S1r&dgm&Y}JAauF*r@z?qFRH@p#5_vrN3AwQpC+l9yQ-G8yAQsQar`fublC%hyd`EI0YstVfo$^CZ^D!eG=Qk@o z#*8eobRsbEv$$v%U9V!+c9X|XA89?Z`c}!RbvK$U+$+JgDkUW#h&MnoLS;n)xop7c zGW)|Ol>3b#8=>E04jFFu-_wa_-(Cu7l)h4ZEn}2UTl_=u$xD#)2K#IOg?ajssW4ly zRs%M*yU#`%_ZH^=Qa%@MK8larb(7WP{z=s`XuRC`nz%RiFgAc#k)lZ}@7Yr&&YuMt z)SS+<)w$1Twwz{5`OwlATy<6_z0DEgWk6B7 zxL)|SZCP2l^*yKB(VojjWqc$T@-V!(A85j2;bF(r&6EU7 zi(Ak;^-)^xWtFncQs&^?+t~*gx8tF!)fx9-@18KBU8s!>7eC5cJ?>+oE;0BvJJGbb zUO=JI^0pK&pv{7axm3AUkja4y{pg|57iuN$1SjIQf~=PWVLv2+u6=m)DU$cC zak>_K1j0$x%O4gieI84Mb1+AOLh1ryg?%0yioPgi51rD8S@1x7{JlQ>yHaC>)HKPS z()uPiGvnopNM}FsvCxg51S;S8(`-T*6>lDd)+nkqzKXMoHEGDl(*%x?%G%iy*_e^e z(MOAJ4qLKTzRP8?9ZZa zUj@g7HD;t-I7l=*-Oo3k(%n5rWV9No8}YW3aJ@;bhmE$z7Bysy8huE;FBvaNKDs$G zmbd#R%Usy{L792Rh1#e#xxV7B=luLcG_c}~iTF;^mtWcRC46S?Qak+CUPP!L0Ja~# zw9{d)!luB)GFkKmfoTSdy6PH$Z3jy`5I;XU-5zP~=m`J?(h*qJ)5m?D$nMSu zRiE^V1qENF8y@~FGr2j_6LY623fNS&IOC{sd<%X>xh?*4=AFg`VnOlU=Vvvzx8Q}i zI!_O+Ujel4ZyL1?rE8?ss?)2!d}2{+{&}Wn-97f+v!@S96Wq4y=gxY}yJR98Fveo!;B|N*vFaQ*Yx=oXLN+ zHk>~F`4RS>aH*rD%CXP^Fa!-f+#>Tp6D90=y$v|q;DHhnmY7b7o*_V28Y^5&kXGp7 z!=U64lt;OIzo#g0T>GJPxE^4L-@xAd+c7g5cS~%^n?yC zVx4BRKf3BsIZbC+9hs3NHsIlj35ZVN1-(HP_x3L_Oyvu)h*4{mWjC1p6$|Bu-Q&wZwUc5WGQ&wte!hS?#jE8r(=@yf>HI&_~pwD*3fH&VS8JcR&c%BPR?l8hq zwJ~PZOW?XC*Xwkjd{c*amUDGhVD-s-tf0&_5R1NsNL=XP_}ellQlv$!0kF5&;rlrd ztP=ymaq=mkg>H#phw1Wg+fwB0s%Cc^EWE7*Y@$f@Y@$b+Y=gwt6}n}j74SxF#jgLh1+apj9kSHShZ#2>fd=61qB0A-`=>m$t~nuT2IdC}YL>_^z5Z7w zX&|3=j^((EgdI!g0S5}4p7$o!vyshw!uYE*TbZRjipRucjfd*S`L8*|pD(+<(s_wJ zAX<22Klh)s^n1k!f~Kq1LdtOGu7Yrrv(+0`vwg>QiHmB#$g$m{PbA>K_G?W7R>cWf>|SF$)bceJzzjGuk0Q2~4{Zm3|#Wv)Vego1(=lBSpzfbyU+wVpRa z$IJFG&%>52LC{CGh1Ap6lprt6N(ciaF!c;}<6==39M%kf_xFmb-T!65LH0TLu;pBQ zH+ByPGadn!;Ea4u5G7?gEKEE{k5P3tLX*s6J|^qw3xnhoIM};0cu>fCo8?nM@EyKM z1klYabZn%}f3o&AMR00lPgc+`nqhup((?jsxkub04ZyKfycu7q5nt^vJ2LIs@()^D zBw*}^T?`~j<^KV%UKQHoZKHa|M(Z>Kw*mh}7a9xTA?v*>x!U|X?bOc z;VNMJQN_p=fn`KK8pLpgHq*y$kq60D^Wdz5!jcC^VUpdw{~FXT0!^7-2hq${Kw5y) z0MbHvD-%lN<5*R>(8XE3eoG8HRLU_Au2ED@)B-}X%+%cW+wr8**6G>?*!QgElLl|z z*Bw{jW4p5(If1Rwg7XXb5$GO$=qX zqog@b&}r6&$@D!&XX)~K$|bl90z1o%tbmiJs*XYrlIn2paKY$3zwpC&D{rU6lzEf3u2<|A5cP5#zB@GB+bwc^d;bY{3Rad(Xmu^jS zQY>zG*e>$JnhyhBv$$=m_GF^TYqm5F@ha!PP6kc{E{;I$hT-I>T-8iqs<6l&Xt}Be z>|RrrfP9r$9p1qrSIcj*$+Sb zJ70C_KN$tP%hCl{3r__m2QxMo?RU@0Qa~ z_}vAw0MLe0`JR0_nz8Ya=7hW$P7HMMZxwFwZ-+wj?4pVzE@AnxJN7D|7T=?)M|ani zOnPX*qm=I|_PDCdWx~W%mieg6^{)&*4^WY+mH$1YjDJBg9?cy%$y5ie$u@q5Y=xy`vx~(R_)gy(s0LkN;*X?j8h$bq7=gecEoQR!mjOOl zm!#~Yj!RgYgx$DD33M9Mb8cX*AL4UehAp;eLmE)%Na}F!1x1`H5ooa>z`}CM9IjQ(%jBiO~P+G%m$CLTs^FXXOY^AEd;JtFlEGoFT6SVONVJ zU$A}F;@IVpo?(CN>J{AJf2RCDdE$R_MxjoDfj1AbL#T+@u+Qfwg%wrJHVb>US2RXX z)~KN#8pgOUO`ama%{p#q$r-FYN&VokNCl}zP2I^OPbT_l%RGbwJWsa7XjtLZ^W+) zrL)gj02&rauiAfv#7Uol>vZ9D)h5*tl{TrY10W5RHee@2Rz_Z3E*riK#TM}&df}b6 z52X2PzgS}e?b&x=m9a@=W*aDN%%<_E#(uUZ57(ZB2F~6rWD_P5oF{P<{HLL(WdqLB zc6;2yT&Dx&vBqM-G>&Ze6cZBtxaByI&Fyd7=Cz2lZ>U5D^PJ$60CQmgzt52jiWdXI z6`$8@1+E!ovtp7_>LzV9?~qla`%T~9KW#~%Jev98B%K`9Nejz7DrnAOo~r?K>VORb zcz62@Z~)n34BfS75^TjbH-y#abX~h8FXm-FO!B#a39N#N*GFd7-%b{BB{ddY8nTC5 z4T@^1=j~5ji_*qQ1B=&JdxJ9rm4*s9y@+e}zCiqrQ?}-+Jd=$_dK_yK^efp6kMhuh zbFdC?b$Qo)3RO(ciCp|#hb9-Uxc*$T@=S(m`=xok#LB125BWJ~_L^S~hywBjYj_vB zOaqg0pe*ekC#%W`t!fj9duhnVu4xBzV6uOFXL0q}g#RNln>)h+FM7(>5FLorHQCu? zUwC9iT_{L8yOJ(o#52ICCj+Hc{q_9t+%U$X4k zEHe*96iY0fJNvzXI4Nq9&6mu>7JK^&kPiFTieNC-xaQL*`wjVX>U0a) zs+ca_?5yBRfgf8 zdvA}gzL780kFr4Cvi-8>FFXx~U~k6hE73s15A(P^V18%VICkH)T;I_5kU79Gcv@gH zLU2l(?st)oRF;M*b+U|vD6Ko zD#Z7`fbY9Lgfi!{=Ioi?$QP7Qc{!F0$D^*adU2^ka1O3uLBfln7~A$K50UE;OOWzS z3=Upjj+V*(iP&pr`PVR!kwRv#0w>N~`{Y|Ad8PQz#exTy3x3<|43rpyZQa8HtqrjI zi}Z!_?q8CB|D3GeZQXQ+b5sm9SJ*$F{B_1=U>4AVHob0CeX%nyPiIla>*0Nh4s1Hm zG~Ag(W659!B>*0rp+eP6`g!yu&kgGxm|sd%&{sl}y~>%eA^Hw`RtF$r>#NzIzr%`! z&0m9?*)!LT+2`^!#pJyWzt1_&N3jD(Zy#hf%$k%CHUT_7oY`Y>qpZ1fD5J00p7Wz! zhRlmD*MBaa7aA_I9UEVB?%bEhjjIf=V1T~}!4+x1Y+lo%M-}TTh>$`5J8BhXn%N=$ z)!<2;nV8~)k5mZpg4L#;q=yBUZ%N87d+7IF*B@p0)&%K)V5ml|^vxD#0C@}N_jnpw zCS@NoG#-wt;O{(WXq1)lqeLAnjDV1vJc6-0`jh1T^#=ww>HlcG$l9bG;V6%xohX-Y zbp|ZeUe!J)Ngl3_t+x1|xp{Y>JNEi(xHr4w7X!Xu8g!n^ELa%pLaKPE3#-ZBYCa?} z%-YyDkOFvTldZDHcmCPx%|#CCp=h-(BqQufyYfWW&IiIqmTXQ^UNh9vepzF0qgHb> zRsef=?9i2u{2X|kjTnDXDq66Icnv(4iUxgbIP*OlwH=@FhWL&RBU&R2m|r8ejbQE> z5hqer$8!+a>tY3xeBSKhQ^lRb3@W!A1hej7;l}x}stxvC_Ahk)nc2{<@%@{m&H*Na zA-c*#XnqTk`S{GW;FZh~Zg&(cY73JcsgSW(k{;H}PaHCch!lAZPA^#a~pufSn1K zX^N1rJVLcC;Y7_1FqUJ-hj3=ZFP!6=Ij-g}&>RP;|8Ll9pKzf`{0h+SG?H{ z;@FB67hGt;M#W^Iefzr!lOVYZVQv4x%Ai-0SjU_H#spalxTv1T1qeFktw0pE<#NF| z`NYZ8VC}+*oesvZ$*AiB{D)|T9q%0@|0>(c(aP$Y8QTEne@&j}yDMe@BdK21;m<4g++7w5 z0}DtzcD-SbeOu*b-Z~;C1#(ysX5T!1WOlpkFzKwL;ByKFhsj^)LTq9<-vWwHd8-c! z{4e2wox0b*`I7l8^4(Qf1dRt#K2q%h^FQtBHXx$GN5id~1Uhf7frrTyAudn1J{pj$ zsfyhzgI#f3qM|%qf{cRS+CTHNusJ}a^QjzRqMAY1^tJudRjv2VDiBS)Tc640`bKe_ zyupH72EI~ClX@R5!K3i)>7Wi#Q4T8SEDtkD1L*|keJFR};B>xQeonWK-O3Ju@6?_t zs`AFK=HQ-cIlO87rY8w%j)T?#>}4V_FeCbk9)wFV+_!^c~I z8<39SUZ?zZ>$^qE^T{C`3#yp2$Hxv0*x2=Ho7A>68p7o_B+>u6=1d7HmgTc<@I$?~v}Ui4pUVJEN`wz~w^ZB1+GHr--{ zcS9C>$$ad9I%fABEu`?~Gm^^*edO>D-dP8<*VHeQnBgaF+<&BV=vI-LH9+ZBFM*@S9!@-YQz|IgQn$ z{(7ny{vuv)3T`S5Gb+@_$~Ut#TqP^dEf$LEdn{@WYfjylbsW#qgU7L2U9#d8dI!`>i*t!ZRooQNFDFYRk@x~R^_^MV)^IroRNy4FFmR!>MS~~%A-4kM&{R9^nOXg0u4Fvrf*czmaht@ z>V9rgc3})L?jS7w1#onW$7hBcR=)LZG&LA}*kh`?Lv(u0;#>Z;@EFuiz_N_k3gq96 za7A=6ujsSbLNYDK3gDBFh*9j7$j%=YS%@X7gbIKJx(i)2{sv8=qRUQq+!E8d>ZVNKnGd09E+ z1B8Eg3%l!son%Ms*nA5Ta_sNwc59YbCYRrf-=w4IXvG3vt39uSnICh`_nAPwB@5sDp#-0bil4%*9w5)Jp z<_(<2dgJ=#4{OeQ_E$WX$KbbQ>rjzzNa#@E#ip^BZHVp&du4?+2vTMVeb^pyF zdXf&CTPCKsoRy@{>N_E&M8ceT=3d=@j59|SGsq|JiI5BdnSE9?08+mTVM6~g0G>bpe~4P1Tv})_udKc zFRuBoMeZN^#0hePCUANYg-GoSp~F>Pb~S)zpbj+eT{SQLBNe<|fA&Ki%-rJ+HO_;A zainm(87h=y!HB+(xAcT6^62#EVNH+C?{3b^#XW@B%)8&>L=d8XC+ z7)=z>wS0xM(eD1)u!y(ikITeLoYX>1*3MqxC)WZ%#}ZS$BXDi(<;@ioT32)lbncAC zV0=mbC?NXp9dcHG3;wx0_5gCx@=B)iP-nSFM^+A3iSx`y`)B7J7ySv&!(Ynlc8m)S zxk)&#n+s~vN{fbbNj+44%Ydyes&wToH#I7_2_L^q=(>tF$l3l0hwJ8CU_7`kkzL1T zFklrIEY0idTa#O(Y{cjB0D+h1CGzDfMnSV9A@1^)McsJ*zq++LR!(7yi}({DWLC{K zDA^H(m_EL9R3YrgkkSU#??LyfoLp>Pr;5zgNZ` zjelbPfN2!X;vCyssl8PK=7h;{dq-+VHCS_GZaORub7A)Q$Y^YQ&3xy)aukc!k?j`Y zQtUq5QVj7@Wtv3Gv{#^i!2)+yy~9Sa`;z$1!twOGIlAW1H%9qvhA<`(lzw&6PJlVM zB%pA{lPw>UIaHax>S1D2GE%f@wx7*I&hfG>R{{6ltWy0) zb@VoH|E4>tc$dR*3#RAa&Cj*}kHG%3@NM&Fgzw@BkrMV|akF~@tC<16!)))~oOWk-%_V(@s|9_+M{U0}k{KwBN zD!Fma2SU_$%>N&|Ww8K>D;qf{wZ%Hyt6UNauawQYG3CciP~MUZJ$0Ucd|)6*BocdY z;HVx2ji_hM)oS%E*ZfVXF4fR@)8MWBa0c+h z=#9dtu)61u&qfZ0I2bw=W9hAN@`?=?2X2iO^!Pe{UHm)Nax>RnBh$znQdf{O@ydkt z%*JW-oX@nh@aY-M7`h*gI!7zh0`M3k+Gt zBs;THEs((q=?*gm?e+XH=Br(7p~GL?p=@x0rutRwq4Ci((Cu+Yq$uX?8fOgxTFzpR zt3FX@W1GKry2s9Hw~gU~%YUA~0z^%GaovMmyM!LqSzR6+<{`R*BpDOwuN87J08k3T zAnWOvYz3S)`Fj;QS@6{PvZ+8DD7d@zI;m+9`Qco5J^~#OID9HMYdgLtv1gm(axJ@C zvowk;sn_i$%yLEr1|r3eo?v=WL=MxXet+-d?B#}@oIRef=zc1{kFNQzo+{AKUV=?{ z!R-XE=Q9r2vumw_nI^g&Z;*d1n=bvE0F}~zaz~sd0upC%!OomL=c-V&h9gI19^%}Q zdrW#?6}=_g(UY;Z8;}LztJ3XxcI-6aVEDJ^Gp2q8#c4S&clP!2w`kjBf%6ljg|t0o zcA)gLTHl6eoy#&~IR|mx$rm5yb8p)9qL4E4U7EbkMj*t)6eEjb*0OE3hXi&O% z{%ElUNB83EG$s|NYNwzYj0Fth9s)11DL$KDyB;Q8iQ-0#=|Vnr-F(dsB)AHATZVYi zqGJI*8?BvIphGqQJoEjNM}w-HPk>NWp29b!a)QG1!XYAA(*=;|LOsFXjFMN$cuce1 z)Sk{rAe*O0^4S;MHSqB{_XTPd*C0|@VS@#?vB)Aq(!BXEPI-bOdSb`qnhmamJM0;o zw=ps>t0A{dYgnUrVE&aTk~=vw0_b?k;mqYcTCg~bD;6m{7Z?sPo#zQwg-*6xCr=x{ zTG6b5K`@J`zFfE8S^Jq*es}GviTs;Q2L;7Cm=r9B>SQFE?Xu#*wfd zOi#@XD+F1ARIHx!MSXoWSI7c!{GX=XApddO)Bo9Xr3kotUD>L)^!&pud4K(zyv@=7 zX8`{9xo*h|*+>i*x{vo>wUvf>L&c3q^*xb_TO?B-jSG?LKVr%NvAF@xjPN_jY?kSQ zclqI6&7tlLN(=aSiY3ahKMt}e%0K<6ud)D+RYJCWM>XVcAY||+cak3+{C5jEM*L|@ z9tAwgmyJZox-m22R&HQ1n^cK;9>D?@fT6EfZQatRjvkfMMhEw2EPyeH71ivNHL?js zmbNW3XB!)j;1YlB5pgc0p8MK#OCu-*^Z*{Vg^}u}Tly@XCz}m3{3R{f+?b^AnUKi8 zQ=T6v0Ly5%yjZ|pEv^BIg9ld}=gY*vJZ*os3mySSFuWUjDP{z9-o!z;Xrtq2%g+PrLu`)LscR0eda}W|-nyCLZ2%hJW|k zpOf2C|2Jf$VBXe4?)l3!H9p$7fyb$8PaZtHjX6_|pU^&xOH4>eNaV`_>Y~0L7ZmJW z|H1uY9ffeH;HcwXimW-u5eQXakdRCXFp6P8!O(rT`< zVFgL!0h9mId-YV!$VN!Zo^VK^V}B?MYmEiVbe`0_Vl^0@kfh06)H~vz@G8nlZ^e)M3_os>8`Gxh=6SQ}#ffEdSR& zW;UM0ca|LON<~L7?yh%c>2;=?XYb6`w{AZvq>RohRM0OnlqnEVkaxj^w z0OKb+?hG*Cj~pPMUwH3{TfPpyJRSz0y%C8L&jziLjo_)0if9ZHi|9jsTTV#NH_4{|IC}O3&FC#TGP0H`Upf^f=6y4@Y zn_NsAS6~*|KzeU?q%etBmN=M%$g_%3g?fucmz!1Nb=5Jl)Oa;7a;W@nn=tv<4VG6U z`KEl=);NL9TvmOcI05+0zW3NHAjD^EY<@_~BWG4kd9Wu=|$UAc11)dQh_d<8Bx+3YW2mWA5)WjEB;%$!>hWO_#fjivoTZYAy+= zL|2bO_3luxc;#u|I!Ha}Xb~5>g^|A*PM-YhBA!BBAoasA;hcXIsAT34p zV(D`N3_<1QlUa9jdi)~1V0pEu2NaG(Q&`cVQO5SIn(Mv#cCQ}Yba`MnJ|CIn5Qw-5 z+JQOThj~&CD5PwC7rknRudPU!mQLGemSN#jKl&v|O?u zt?{Hdtw^=ZdpR-QVeV6WC!o|7S`23-%CtL;icgHt(}yC$h9aC5Y`?q?+rv6x5ocW5 zlvdHU1K(9e+ny#ycXC$n0CqdUPwwD*vN1!+2rb3s>FSS6m_bTc?)&$wp?NqQ}LXFACH{j=y~q93frZ zMdX~VRF1|BAN*5k=U;)4xx+7hPAL7B{_U+rUAw#{_C~(Vl4#Z`EoI2wD7kteW>q`$ z{v2nPrAtnXD*T5Vp&L2hyC_y#oPl?q#Be&Y->@`qwzhRg=#@sQ zT*YkfPjkmjfbIhQw*Zcfa1aTZH@#Y@!ZGf=)Y~n$e(Cb!?P76LTIE2 z`@=Ww)Hm)ph$IO;IH`dgGj|Wor|sGOsY4}4Ua9Fb`aOC1QCLH!a@pA>kwcO}8V|nS zUP`i}<{*@KraCen7so=-0xEO1mJ^{H&qfWY78@&o0UaKf5KC2~EHlDsQTZc;&uPe!WB&YP+qP$cB3G zIh&_vX78~kcwBC{N|3H;ok@=;NYl$wxMT0EPtN-y_|@H)!vRjePoLaZo29wO3)d!P zv7{F{?C~VA!C$W7Kl4yaH5B;vu%RRt@d!8hXFi!LG!>qZ6U7}&zV1p^e8dzFrultBG;Y+9(z3kXZHRlmEt{o>=~~j{LtKhUov#f_PquNO;HRg zoni$!`@QUByXy}~&zqoa{jbCl!iYJt8r%WYPTOBdQZ8OpU)+l=d|+~G5a=o6tjGF` zTa^S?`wr^Ar0O2Y>nlXVqaA>{gl%}onjrWGpJkRM@Af|aZbD5a&-FSQGszMmb<(oS z7}$~H9LuCB7!ui*{4nA-2R0dm!U=3C!K>F7rpI5%mls^YI_pew#wdaUh!7_-AL5ue ze^&xsKemY&e+s(-b-oS~o?mbfrF+30bY12{{Xuw;kgjB&Qd=W5HdnKEqT& z+>v*fuMK3C2#V62*aK7!{2)oh4PoEowepZ-XXJcAZ$3~MUd(^HbPP}B%F}K~SdV82 z7Cm{To!R#5t{UMBh{GC6ms~#Fo1aba?O)v&FQwCq%V+H84vmgZ)}NZZgIAk{7A{%+ zDfzJ_o}yFr$)lWVZ2I))mG@)mt$C$|0Jn(o%6T8Bk}4;8@(Ai=R{D`vlfzw*eh++-_J+KPW-N74f|`D-HnTUS4=k#PNwa@cyk)XX=%ZI?#KjaHb2m`MuGU!?zJ{L= zNKUZo+f72KiJOy6VUa9<_9PXC^}DfIy6T@2DkKj}DsWl7j5|MiMsu^|J*X(|sl0n% zd9Kd+>nWR*8e_zk-G@_n+mIJU+N9hY^>;W#QmtY{GCbvacm=o1Qq=K4EMFt2I+^qR zJ%(Tgt3pQ_J?%~0H?HiE*9IKF9nXyLL&G!^^4>u%UVb6c*2wHDxq}=pGT0)fDE*;dz6Z>&|UbN8b7LQ9yYt96F&)_=VaYWs-wi5a`qFw$gM<=f#GT82+c z=q{0YqrYN3&}DeN+rP!~)fg#Rq&&74{}5{&CWemqwI97;M#zkcP%hEf^$Pr~#D}aF z3TeyP=O1iGT;*`ZmX01zNEGkIJnidO9T%RTZ*dMjF0%Mk?Q%5JHLH&iqEHUNj|UxT z8b^y_z788iTt;fiTHM*hTF{3W+thX?h2mS`Kic&nR8_m<{dfaLDg61|Q5&Lxc^eMk zi(Q0yM93enBt;tsODHQ*8%Zp8;H9WQ8OqI$MYEg(#W>8RaT^^~kQH??m%aN7bmHo> zo{_%cD;5;LUKS!hmQ#f%A`${F!#kRbp%^J#<~sA6gADWRfP99N^LF88Ccl!+5C%MS zle!eAP509%5*XBtyCdFE)*2H$rr;Oo&TZ9GzdRjoRRp*bnly#gO@De;Hty6{c`1en{{as7 zb2fSni4Ijgswq|8eKdnO6sFy$O(R{Vb%f~7V-iFi)ITz<@PTllH(NJxk2KnI^>hyKJuNPWB%O^#vzdlR~Z zZ>Yu#sE;`H6ld$6iPcyYN>dYXiHzVE48*TDzoxHz1(Grzxq9s}H*i<1oG$CRe*wmt z4GfGQ>zsWg$QeiJSGzjBB0D6acT3M-@%R^;59c>@B*91DKf=@Jz8EB(TacDH5+Nu% za!a<#xVO8%@s-3DiZI5YAv|DZ5~K|GVv1}wv#zK@7glV8=jLhb^&e}AV+JKDe2m$* z`)mz(ZcP`tBZn1sa{KK^`g?8EDd7u;OT4q6JWmGP5+Ykkp-<(WJ@g6`1tb)cRt9Mk z^SDXUSm*p903L7c0sdJ1aM*rH*JR{G3QT)|U(|IHYn)w3(EDylLDu^!pXZ08Dw0`3;vCys<@QdibAR4x-R9KqwGTkc`^qy%*V)Ze>PJ%JMFw`=XD&P(mHRZ7i|4(GcbTSH1dt+=ta7O+@1|UrO zokVtF{G*@-V}YR(*98d$+DFHQmhB;!NJalFymN%&f_Ui1el2`_O*c^9@uOr;FN4-j zO|P%9?zJ1*%m+S^KB*&!YZe&1Tsm#Li%8TKZJAKh&^sA%`mB-lIM1Dh>MVmb&cbMg zsNrK+r?9WrHS5+l@{fun1Z9=eq9=B=Y!X=QpsX~8=DwftuVwv@lg|Ncgi>Cn#1W=@ z9I50tB~4HG*e0trt6J=`9w*-kDBXGbdM*0JzT?U`1C8Fc6Njkxjnw*5m_Hr#06=G1 zU^KYb#S`(uT6yMT??UIA!y}+4((3yUas9dpm-+1ChFBWT-}mJ(Vxs=ZD-w@?(SMuK z!|YEZpb^Sp;kraSJvtfII{lEhBTnwz$p&hKClgH{ zlc^{=Rx_li+xZl|YMU;H`{%+nmjm5M8y{w(+2RBjo{wohPP}hx=}*B12NpW=i5-)x zj%Q(}tzRne^??Ok9cdq9Udl!XNoJV}&@(r^oL4?#c=5H6W}7q40rYpz35TwU0~Z#( zp0AvGa7Ma$zQ*>l$Gyv(ca72R6sazO$6;1 z_d4MangeR(6sU4KF5{{|IbFIaiPT;@k!JfGgF`(^zfc<{l2Ur$_;DXrq28Co`R)h* z`y0bB*RmX~F)May4@Me>CwO$nbM5yD-|=^TJa_zf#&(wtpq&1sg$!kpb?P;cjO>xN z$^G)C zCaUHZCl~bVads{E7TS^emW-oukeU(*vZ-0COES3 zxs1)DjMciTh)3g2?xjYIjsfl~;23jlKco}k!=6br0MY0!i&sE;^(^Oj+WWuuyw-*T zOO&&l^18;AD+z4gcO5SZjYj#finH|p_LJL=I5(3vA!u2}*=(R7Q`^D9OF|NlA&ngK z$>)U!()+efGF({{C}Fk7eR68r%>>WP$p^&2m&p>%(jblpuaAUfAE%74ULBkGy#PZr z__O^lfX+c5fo!=Hw#<~@ADf?mA-Ls(Hd2E&0V~G}duwZ75wXg|Qp}f#-cS5(?7H`U zjsM2evCZP2Cz|h*(f)j&%vQB5d#prj5nFP)bA>E=O=ftdD&Jsq1?0f@kl4%fomLY) zuVd_ZfSPf8e98h@j%T32Zz~Ef=Cqf1?pGqsc2XS)cMMcZsg^TJDZeB=T2XqS3r*C4 z^-yUU646{o1!{b}D726pR{_$;8BwyxZ8vH5MuRXizE6T`T}?v2^6Q$*(T!G2EOBgb z>=d-2PE^3G?uyjGq92O%uAZ`Vd`WbrAGif}d+jT+N6pKNvr{Y;@0fPbp~-{^Iwwg2 z^NA_jgHU){nBGzB>c)Y~c;q4aLxh>kie2?uCz5?7r0tD#?#_(x5i~Km;qE0{^fSpM zDcvF~H@geaDLi`jGFF^j+SRjEYso*G>_UTxe|p*b^AGO_(tlS-lx+PZ)nW{Dy5|?3 zm0D7j*W`03pA|ddGumt3W5)@J#nk~@{PmFpCBZ>h_r-=a$ElM;{KcDb>uOIK{15G1 zf>Y@5-g_)toehc{So5cC5i0?l5cvW1AD*E1qS-(rcDn$%#5b>1s!>dt3<%+vv zM<7%WIpN$ID@weTK-|75(+_8pbo91I6|sUcc!=Pv(fh-stULtpvh@QoBciV~-zN-( zNtIn3?Ah9TzTE^+X-Ne0Q4m<>=cco>WtoLLE>;q)T@^TaO-4G^cz%nQaegcU*%EKD z#&^n5-uP-rCLZqH0y-{F}ss+WZPObOtiic~a#^L0|Mk3&6X4ZE~QMZ(erpbN@F#n(xXejYK zTz^|GCU0@sE+D;n5B{5ik#>oBg8&!zslY$V8!5JHn^A%I-r8 z{vO!pm@8N3g}hQIiZvl(HQa3*uAHvUdAGBinqt17Ah`_Zp7~e2j#6*B|CpgY^dQXF z@Yzum55=FK5sNO0Zm#e|SiSk`c%W#dPqPg9%{@lYO;hw*ze(!u#E0irM(`QSm}gvf z)g6UgO5(oPylnN`O-2F9Gt30l(pSbuUQ%p$6aKH}uDhQN$Lm@pwMx~hO(~^RjkZ>5 zhOgSxiq)t+tHdVus4ezhrM8$AF>8jPO6@I1)fQ^x=Xn>;fA^*X zoteR^^39#~6Am!N8qFWe))t`k!aSp>4R^!;xp>h5h?W$orG75TiQ={ z<)~NqBO?!v|B?lkOt3!OzELS#apzdU6b^;!M4PTPiOM*Z|6SDVm0QB6>+$;Ug^Z2E z4?GC39{pX zachQmYO3Rg z68xXSOqMh0ymgXjOc>++?2c3r4ykv(h+^S*hl;Escnpuuo}ol zcKAf*S^d!h{mu0aqq37TsOPJdYyt(N9pIRur(6MKvE><#m@#%S`BPb~V(h_rYOvG9 zP4BD0!Z#u{vIuf%CB%5{3!f<&ML!N5k}z_4#G2Jzcutfpy%f+qRmp3l1?&iX$#=Q< zoAqxinaU>zhay_0BDV0?QP~te^27ZbjL+%~Y3|b&BIu%nD<)~w5+`Xha3m>jMB2W3 zhI|k>gP9)@+VL7nG@skWSnMB9jed?ZOs;JqL zb@L*<8SgC9*ln_gX%Fh)YLF6R>ncOnI)4O#V01dSa&a3%)nz(D-XePytWrl|a@jG< z%sYu@iB0aC1TNvlEt^QHs-U?u>=u5ruL@aNAGXnOpDw07-{T=nQIf;VAN>#i3|3J==AT+x9jN8-S}66+K;4;YnIHHVTEg(U-VCdTf@y z;1Pev?}SWyc%SjH7LwM#4P{e8+MM)Gw#i4%X4-h9Qg)08m4`0Lb>4~@V_2u)i~wn@ z6px+qyQ-O7Q$k%W>)2shbI?wfeB4Nd&2peI*UiZIhVtev(-FXhv4#5d`bBNvj}?(h zdFsVu7xhYm zQ`zi6Ac$sdS2tq)U}LM$G(-MkIgSDR+v?BjM&ePHhwngTvw3cCK75rU`Lj3u<;q-2F1m8!1<7WKgN8+n681*W@Yo260bb56H&w3p_Hq6PZMvLMoXd*XU6kV@kNfXah_ zVdjyxvUhvL!0$-uwJsdQu$%GAGZ!#X#xyV!pD@$u6)L3#II9Cnf zryosyKgJy2rl}qJ%b9y0db9#>z`qVHg_KyfH_p(>gcV=v?tJ@NvYlK*V#b8|>ml=E zy6p=rlpp$b-5}egI*!q>2PqcCQ>k8@R|#xa8Y|L{c~Wkp(?Ja!)N8D97Sorj9uB|b-Jxbr zR3eK5Sn);l?LL)MGc#90ADEv0+OE@#9J`gBa&0@GKAn0YM1EF2fdAgU7MRwr5z8Lh zcSUXt*KLe06QKKB1sv#fwui zLnD=iVw5Wj@fVhkmfBb`U+P#`Oz;apP#r@JO*iCqxo+_;sJ_USBm2e5IUOZYnSQ## z-s6kou#R?;*j#8ew}?1mX*%Ifs-pfXqI4`x@A+vVQb@i-23=~+;Ka>>aKCxKYAkZ; z*BFH+Ef-7-4wI=_8hF1S^2f(}M~F+2d@J)qgK)tvz{zHMX0!X^DRtOnH<)uKe+;v~ zzGv$xL^FnLY0ZK@7hyPE7Mm}<{C>2rS+~Dt#GehJ3XT7{=6a?b>NLOkSEWa~qBH1qVI{|y;eM7--!W&uN^cxEep6FVQQT;$_ zr~l#Q<*m#UT>mpj7jg^W;)p|}THt09;fIyuxK18FB|!xmnM|&=fonYxq%EGfH^K7a zO=`8UIhk30LT`R%zv4bxP%iV2*g>cu{N9a3|DIV1se5i@Sf5*&!&CB4wQrh`DoTS@ z0)bML>)UkS^V8peoEQG2c)v_8y?hSzAWi#Z1>*McGC;uGtfX}xJRqvX-uZrgp*f74 zX!(3FALGBa6mmQ;j;D|8kIVh}{TFi|KgM-5rdS8MCcAGoSJ!e8a1AtQo2v@Qph!Qy+QuWy>Fn{5j1BN!D>i%oxX zA>mybzhLNaGe^af%H^Ud=&POFHmToBS1lCM)GrqDGQLKec})exXM{@?Qt*a%#dppK9rrK?MtF zrJdE3_9|o*@(Iv8S_X@e`Ij79$Uf5<$bK6w9xxZql(%nJR5vDFdwuNWcGoV{$eV05 zWx^o+xkd*VMpuu+u~Fxp_+%b9iVF54JSBVBOe-tU)7uf0t4e2?5b@6boVk2S{4PigVvc3sN`LM7<^+D~wNGn(;>|-lR;5wfEt&Y|VZLUf*UL+B%Th>8TkRP^Tnu zi^@x=um^n-C!KldcfGo>C%=)t$oxPZ`$ZJbedG;C`-gB_HvQdjE4^(sEXAZOZN(Pfpv<^T~cCH&UeowufYJ2JKY zj@|s!C1vykk_o3JNY!pzDeNJqzoXF)lzBj`p|($bj4G8j@t%=-hTk_b2V#^2zGS=< zotbE2j(*=1Wo2tvwW1x5XmF3~z*b@glQ9&;qYNIY9KfKSX87ApTW*1G``@q?9^h&H zG8%Us1N2$B?R*Yv!OvX@PGF5L(~7~Pj(b&?hFcG^9Ohr-h~acnLK zvp<~V%qxO=^FNV7e!ubvYDLCV*WMEpUbPF#$WZ-814?STTshhE*Osu`Q;{Dv-7d|w z@V5-e*~@q>FA8_vX3kaDlq>Oz1{qIb7J+YTLRj)=zm^%8Mk&niqd zm!jlXo!bp+cuN)=lL%lRGxz?dz%Y`4V_ce3_pbc<^X;K&;_;YTCThx9!HhxwTiIG( zB3Whv7XNQT-TmH>Fwts9u=eyklm(CM{V5LupJo~MU}9mv*WO&NQ)6E0u_Mwq<-yx2 z#^9V~AK8KOLy!Xwh29xB`&HDV@%QcHwJ)EiLYl+8h?Rm+*P+zDV}cE{Xa(xN@8FjF zs%vELuc~m|?4IPvykn;1yW7^`vN_#li%&N$xlaBD@|ap08Cvq9wh{lb2Ck4+>F*D_ zUuRl~F4*pPEX7^+E9OVyJ2yBf96o4M(Bg8~5OoZ% z_5c4r(g)+o7PFW$p#o(%0s^81H6?j{JJ^0krxu+R(*O`U6{4z9Y{^ff#|#Do3PPzD zHY}e^!{o_C`O@Isz=ELQYhvm$cP^Dk6{fhIFlt__rcm>19pxX~_nx^OOD!~Yw4ck) zIn0s#MSz!aK1*1izX6>G9Z-V|HU^m+N)r(|5T#<*ut?NdvD;?qiVZMFcIj_}|6KQ# zv-j;ic)@P$3cp7U%XewOi>b|>uV-o23>7PBidMJjbDn*-8_)0^BU530cS%$^FV{8&8H|BCKB?_uGjA{<| z`M8VU`wYp*PLn1Y!ptYN%aqswDx2SN(!59pWl%b9$jmn~nq_ z!+K422xpV#hxfAco!J*Wp8jq1YSB5Ob2okNDcnj~L366GxyQM{%>DQ=!HZ7z(?;8I zmDKI7a#<8@xca`2Py4R@R#LB6Q1`E9*I?Q7(E`2(KapAMCUIFTgDzLFKt%K)|ElGK z9dLw^KIG$mwc?Y~5ag6k;-@_W=uqth%k6Ue*G$%zridn==pyDvH6W4{Vu`p_%cwr@ z95~19@x+P;z^5&yCyubYNwr=5$o{Fwr}C=5jqQ~AUME&8^Z^v8VZ7Ptn+NudunhShr-{8k diff --git a/library/simplepie/demo/for_the_demo/source_files/place_video_fireworksfile.png b/library/simplepie/demo/for_the_demo/source_files/place_video_fireworksfile.png deleted file mode 100644 index d0629769cfec742664ec0b739d93ebf4418d15e9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 115826 zcmb@tbC4!a@HaTv;SP4kp4qW&JY(CoZF^?Nwr$(CZQHizx&8j`jk}Bc_kAlOyRx#X zGqbxQt2(ki9VRCu3J;3~3jzWHFD@pe00IKK`;Xk9A^%At_b5C5RX-dB#Fe1`6)$L` z(0^?hJ27=f5D@II{|Gc?4vO`k5YvPa7tQi*fR-T2tLBRZmsMYzk__arF8RO;W{;tf*H`a z>ZX7{FtCH0PPe5*kop2YR(Nm8KI@P|?KOw&GavU0hwT4q;t0=Kpbk}#bBrXAa|p?Y zYN7<|cfua9M;6c{449#c*r!GYjk%NW9-zH<81ROFl0Oo0L-0m^(cdSy zcfX3^c;VYUfD$15dHw?#Y7iJ&wxZR5rr^Sas!(OT24DDEvNq5lXTF`? zq3=XXzQfjqfQtqE_s6{##ote&rNC0HxWyJF65SW`+uMt>)c5-*U%feijxc!<4qetX zf`V@IH#U-=hhWXD%dn3=FJlc21ym`WGO!C!w3GGw=?cdhpFT!R$jyEzqT-*J;(lSr zRwS4$-tU!?52)h3RS;nv&htoe&Z|is2NW6933|XTFV70wV0pr$s|Gy1<)A6d6gx_I z-%z<7$v@3wbiB*4g|w4SG`7A+zM{*;c*~?nmb-XVU$7UmE@}vhvh9rCm$tq?zUvBg zslC^)EOfLNUqlxm+QSrIG|u{Mk07b|0a$>nqY>WoMO!y?aorcK>5eDR=tk9poEJvwZ-T>6(`GDN>D{PZ1^t;L#nm=9ePM-cHd@=M!nFk66s$ zRB|R?q2G2!NtvwS%qS3!`%9;{Y+LYQhZ)Pvw;`_pD!t&$B&E1aR&@NO$II#{fbHfi z^|_t;=Q}B_AYOX(8p|1AiQ|*w-IZ_anhOfQBagI&9!x`$sScK1n{8F}!%y&Yr_W%M z-(zKNGLIrLqc{+1<#OuhPJZII`%d4!XN+a*z;i`IvFO+1+vmrA54`QX{m6C5-PYG@ z;76Z0j$Mb1sX}H?A~5rLv*T_HLzP}+Lwa&}?(h4=3+mg<_q)9{q@|7RomPj$?xD%Wh85T5@~(#3y8`-V*BxfT5jm<60CEw zO`(quFE@veY`0mMpq3+pH=f9qUxy9S^y-p&LGV6#B{sL8C*XmSpP{?!pY9XmL*`F2q5-J3g zlj#-sfOW!)(Ep;s@e3CrFXY$L*B?d#nX%Y7dNMT0t3ry?Beog>j5p`)g)I_5@+(54 zvxZT$(nD~8z#$XKvF1^Y%%tW~;?6Lp>O(9yS*WMRCjTi^FAoY7_sKUYIIzcIQnJ}Y zC|I)Y)l?r_&Xzi?m!|o*r$kH>>Zg1rF&dQf{8ezF97o z$`^=4VX;{Jf0#SqkZ+7c38xbevdX`WK+M`wK;(UU{QDpO;~)KR6^cTpJP;6?C~He4 z#eX}7_l6@jTe8p1r4bTG_aKvI17Z)ls8ClI)XTfgN|0`@cL_f zld)+h<@ZgGBf>0tZiba#Jh}V4N%mw&N@7L9+Q2`1Shfz>Oc% z-`2s-wV9^d9)Z4pd%$n%b2f5q0MujedCa$)+rgcrQ=indzihXuJw=q6*&BYwLt)A3 zu!(ou&UbZtJ*(de)aBY3Kunotn_f+0r^{+)asaTOOdHwTdHp!K8F*{4^TD6)aV?%k zKKWJM?Q9a^b7B-ZWP`7Gwh{OsX^Td;p7pQxoda-k_GI>f%EX{u_0euIpBh-M2YSCR z15iRvoK`uKAue6cJblGpTs9u7HcAHS*f~!7x)Ovv$!QUU&j$S6#^T6jaS)p8l1J32 zT<19S)v~5xMhrN~@NnDh;s^XA0z*QAKv`oXRv)umr$yP>oK2=5%c1M&@bi>BApIsb z+gigPYukF7KWnM-2W(V)9Gt4jc{xQ`k(?$lwo)*x!2vg*VXU9u&}LonYTiV3;|y9s z2+JKHvZp`2PCaM^K>A63_8H|rhRj5dFG26h zx2rQS)AqpB%i`eUtizE*lB)@k=LMd#!*Qb$Fm_mKoXv2>v{HlDd>yWj-3lhY4=&^Y zV8ms>iI(A}3FMZX5w!=Z9QRu`eXx49=HiOod%~fiMfu!d(FI?ogOibLet# z=}I`C8ePjF7UAvJvXc*!DGW<3cB-78xRr;%_qlk5^RVvw4s;27?3udt5a#^)K@1tY zP-q@gwiDaXeepX#o-<94m(E7$+iogRsAU&%1WC}tE0 zHtS^_bhycu%5icw8TS77Pb_AOIDt4>n-9+KZvOHpf;N~Y;xE5Z*e>F)*_Pl}%ca&@ z|CHlM4ab1NHLRVqMX6i;AM7wS*t>w;aZ@J$G=O>KuoW&uTRMt+tpb0x-3LQ<*$625 zEDYRKts#@4#pI8e8PwBe##1}UHz~(6&gL|W^tiCv;+p{@f(JDV3Zq1f{G&U{Mge~n z@>$p+IkX?4_`{CYHUFaqOx z<7#>t?251n;(Yvs2q_@w664X|Cwfs#Vf6y$&B+o4G0q6$r|DP=R>df%8c!_h3i~3F zpI+DBVn{Kt1}I{`_N9o9vpw!EXZ3u9KTFyxU{xcbyo=EH5Lzo%)33{q$h}p=6hd%3 z4dwb&5idHzk#~N{2x5$!=w*AAvAeHCFQ^1BaLtO*vYuk-3>l6M>Mn>SCm^2j( zRFOar3noabbpXQ;=5GK#uBTN29Jc%N9k z+4*n$EpnG*xgw%_`arX`+_Uc%@ug6qnkR+zaqCBxOmQ|+Q{gVa3vphtM0TN@iT}w; zcslUe!|*!TpW51DvzLCVR{$qM?@K(uIp7aC%v{$bx9Aq^mbLTxlG)bbk4BSoy?f>b zMwTE2Rcsiiv05X@YdCI6tmGdNBmK{RBuz8mSdqHvQIca~L>+*;DM!+j;$uaI;j z>7ILc_u`=t_h(1r;lh~v8<5O1hY|G>pL+j!Exz5J*zF?7fh8^QqM!4f&vi++>JwoC z_mY0h;WLCwQjfF!tLZj8FLSK!l&gcFK+t~SH&bIqh@k>Dv{?%Ku~}=U#rvoL2UT{qBFmw`&NE3b{Q%Zs*01!3 z^BMJkGYNow;c?_8jiEw9q_p9Sq*w#HAg*OyOFZ9^JX#n{jFL^rC^?Ve&c&uUpW1ee ztBYV@BMqeMWhV@BXmW$RI0v9Hh1b5pcC$rLQ`aI=4I$6C9=%nw=kSX+I1`gyh>4lO zQox*c)5Bjue*Elre7ek^o)vKqWNj}@oU}KlS86DvGEFg#4l~ANw16x|5w1^7sf6Hw zDBYeH`ieujRiXh(1e|hYvCMA}CO9*bl17!3vs3yJP@+~tGqqsGP;MR@w0>=e$W#KH)sYGj+VS)OgazHYtt%rK9~wp40iu6hql!q3kxz z&EP4mRpC`3syGMY=QwQS83@4t0sZi{T+_z`7o45mwbufJ^eI6kJ-fVYVTIXC5p!_! z)A1g4yA>{(k)liDkCXw+Doaf!OZh>FM!-#BI#|Uc|5j8&NLwMA;-leD`yfaW|I}nb zE_3f#_34|@M0beZ2@<3VM{ zp=_tBfw)#77g>9si?M0>%(O+#AUX9)k#V^lT_;4Yf8UiuS&+wzG~f=SS?KX%CyTfv zC<|_axX$g5;g`|XAca(|c~o|%*YPN>AGqyBJLoIVLwj(D5jJz-$f)rffZU;C zo@-)*Y9Qx~!W||$p~!_RGOAjdH78zkjy?;H7m>nq;OK?GPT9NpVS^{0637>=Fl|iB z_QhgJ$1Mw?H>Nj%fi|bRk`vjKOx>CeusLo11FAQ? z(`GXY0AYw6a+OL=(Qt?EMvb>LQeJtW$8 z-&=^HmT2K$+wU(Y? zl(hzKi*+0{K}wKP$Fyl9oRLz)N6IzQ#B$X+S|DZxVSedg7MRGk{ZPRB`73DY>E58p z+$Lh=O*uP~@TnaCP<15l+p6_^&TObaswQrmNmu8|HY47Jf+})A~{ckHua2!5hi_sz#b>Ei$OD(=u0#Bz$utFiC~cS8za0gtNPnI0#t|JP#G1x2Wey! zaZSv+Iz>9_z?^$-STa)^p3G~we>`~dc;U`S<9d9ftl!#sgl7#`z><1qO>!~r=qb)4 zJNg`Typ6^T&obPZzo;5SV$MU;on)96-#j4UqHBReONEZ~J%KZx?Ja*JxxXJUXIEw7 z@{7AQQYY@z>4>sqg?tUGGWsbD5TC#5m{Jg4V3Lq zn$ROEBt0cT#=RsGudC0HgJa(DgqXw@{9bOV_~w}-m!bT>yb|^~=C(8dPa(|$Tz1^I zNng$s86j1{kiM7;yAukp>|V^zzbD0wywY$dgsp_<=(AbBKTYf)dT0_`Y>qHMl5_0Y z$JxFkmYY3;xO@wrl+dTC+;8w}MaH)fVO>jLRBwWg<9Luc{GTUj6JZs9S-bE}cw88Y8$gZzxn3=2uji!S-`V&6`yvi;^$ws|IN zV=Q}KkZ>&&-mG^*Gd9f|hXed^^WCO@8k~n6T&-tT^B>1HJ^L~acXbei z)W&pCp<=<`+M^n!?y@Qq8dfxx?EliRd5t`Y^D0KZ+Sp$r!l@8F-PmAHcLKj?WNn%8_U8O+y@&A!fC7mKy@d1?BMGG&zUmi4EE870_`x(w-}5BgA6`S86hW^J^Rxk8(K zK+<^4UWICk-`V{T4u%~c1{z;|gl~WT@TDs9foRgI!anVMN@AKnd_t5{Ro3XSFRth` z4^P~Lddum@0mfbXDqvKc;Ule+7JEajATSkw)iT_eJZ)SZf{uhBuACS#(PQbtou8*% zhN+DYgbx3S?xpyQ;nb=B?d}Hs(k0kT)OA&qX{yuzl9P3(psntGoU}N$RPv3wj+|(+ zMKM*69&GC&*ShmbqiKix@d*F9Ji%uDWmRU~SpM{;cwD9XU2I&X`-Rr^G<3hT?AucK z#LIPtkE2s8NhiqXTVL*jNF`V5c~BrhEVcby6(I7))6SzBHM;uSm#Dhkg)`b6e(9wA z{3RDGYRT49Ell_;S!|>T=se`S=T(<1Sd!Cle=qP&BGSw`db$njzjygUi*uaZP+NN9MJg=;t zs|WJYholG2;LSbA)w*Jrzh5V(9LH$sMAHru^A34zhg3cHd`cDbqQR=t)77SO2YDSn z>2aE)r0zq%ZY9uW{Q{m>I~(_U7vIP04?@Hz4kDO68ZWhkaXvbbbD}e6rgKH(y5)@9 zEc@T0Cl*7ggJTJ(|Ahj?vpTkw0curXutkaC`PsxW7V|IC-eKj_-?4~gboMXygN@7g$o>MxjwjWEzn+Urx znC7G@Kvi$xLE~*o^-kh;lIl0JPS`NjoEr&N&0yAxgcrnT*aey?CcZCO)rS-O0rFYL zR&czJaLsq{YFjs+i&hj<5mb+S4%Tl~+1*n`oV?K`&>^EqMg<#-Y3i489)XvtNeHAi zvW)v()t(K6FAn4P)g(z{v4PQO%HE^vfehoW|-#}@MD)4Lgisg;$? z<-P$!+`@LJowXk6pz4up(_2W)nsTA~-}~*$@|AD(J-Ot!2E@a=$kYv!Vd7;h4qaT> zqfTv3F+1MaJc{Qn`WC#kuiiT?`^b81g%bARH*lx(3gT)G7Ebu~r|bBNr53S%Ts^*? zbFMzQfOMfQP~!^l2&QWv&*MFtQ%{e{PLh`p`Cb@PNb=}N;CRSdNMI_?^|-F%B6!AuzqKaIE>np?3nW3s!J@A@ z#`+VTkaAM>WQct0e~Z65vNqQ(l@p(4*YfhgE33aw%$ESsqlr$MkTPDu9kil|H(h-k z?1VovG~)w~ZdwxjgsKnv=kQIkm1PkqmUmz6Jx8DFfLAEnt_QZ*O0O&1q1Q(I=DdT5okl!M^`^~%4u>W`J9 z-o2kLhnsf(*|~rbad&gP7ln>-5-6ajJkvD)KG41h6ZM@6)9cuL-ZuQl^`y47~;Y-&&Ni`_P$decWvQBZ! z-cw;`JEwH*$jqA%Go=C}nJ)i!TGF1W%bty^nHanIQ4?8fSIYOcxri{ao*QPQIg2jt zr}(L_8!%zMN**QPAIZ;v>EK0uCNv1T`uwd282ujIZ<7`#h`4DqPUcXT378;LXpw+@ zYbE5}2>R~Y`nhwY@n+R0JnW+9_9F_`U%G1m_4edL*H937Lj z$y<@OFtBvApRbX-kq|=@s4qnlMjJMABnzkB1v<97GA+Lx8}H2=G6AW7qg}88226GL z{W$JA6hy)+s%IgQs6f~_uq(^`tE2`Gt<&b*(9_+ew$t)W@Dv({h!Ekv(RRG!3$T;I znm)`T9_wBR6YK}pV2{{rn`MiguCJfQh^7+QiG}W>GL|+~R}2=sQ8y1i%O96?$w@tF zuSP)iJZX9NEN*@e**t8&lg9k9Y4jbx=?cRO%f%vx7 z+2?dKVb~9Ml_Gr<39NI_c4}}9szq8_s$J>XDC$<&FnWP4=8aks{wHxSnO$stJL@U=_s~U6tm~`H?x?}JaFZEHm$#_@ zfrHqg%?TGhO~>Jdovm9h+_ICW`R;9Rt&1~#TZ@t1#H(FQx1JDupjrC;Ae+MbyqmqM zeK~PpcZ-||WsQNyR}})4^)O)ucsfC`#K?B8DajqWR=-&=elZJ`UgfwnMD_?-jNfMU z_i&3;zS$!ouVhQq1%+;2y~Yh60NLp5>Jr>(=5oT|qhM-n2t>TpPrKf??dr+Vg>=IS zts&c=9XNSuhjM$}0J*{Jvsd-PHL&-^ZiHDGzytMwbH2dC-=lK}%V>Jt)AM7aL-Pz2 z?EJE`3lE8A$3ZByb%7LhTezME$#DNPAgG>e`P%!9*20V9BgS@_HMjVVjY}c!ZogdQ zi5Sgkw-7U5p20Dbd2@CWI;@vL_|nr07vgi59moark-g-YHo3dmJHzzC|K%G7cX|^R zLrP!2{VPRlR^pPve&dDtr2CIbW}mIm@Xb->2ii8twWpwMdO|Znz6#SgZa!7SKm%Rf zvZ*Ms$N<0@_YvuNP2Dtuv))tWV7I4l9k`U&W4C6l_yW`OcXS^pw8;=yA06{4n{s>c z$*47}Pm3Uhqjd!`Lc5I^$fGt3`orqQ4Ju~fO0ZnzMwB}<@3wcSz|d{?6vG~}>F^d} z^nCC6=Wg+dr`pv*cdT?70iFOVFPDKJS+G(tdW?&ik@H{f8yrIWD+3O$nY;VzKcU}! zb2={jmxYoQEJOaw=Jn)A7tCoFbfGBuWfHLel4%Wgk<+((tZ<$fryuHj6Jbf;Q)pM2 zYAxi{uSi0oe{rT8Xjp-`)wz_B<64N*z=7Y_C)P+Qj_g#Ml0>kLMUS36PQLBtEyM@U ztPBdC*u#Zv5$IRbpe_O*r_fx@-akr2BcAnAY_Q~Rn&Oi7W{amSTXGikPt?!|%(}M7 z(5zfH_W8WF0cd1Ue4OH~W)WezJSatoQ2QjJ`P}yG1eiR-8lb2dJa3an!-JDJt zjdo;G{yXIBU{`JY;7P{_HYn!8B>eU^(m9^?_Bubb@_AbvK&0CZ#HaP((zf!kC7^qR zJPX=-oV4*M&d5G1HeHts)4?V!4Fr{@x$659?pgyCI1@5aWIV2vwq|xr6AhL1R)i>R z0sIlv=$pT{zWohj+;L01oyRjV)S!cs4v1(emStLCQ{}#>_F>}g3iR96OYr-J1d1ae z_V^Bt@fLya^1BZ0pfBH1f-qCi$wA5(C7U)^{)1chiJLXA`G<;pz|_O_{Ylk2;>-&o z$Vx@%`P?lW`Hu5lmMHB27EW6x0zK<#?3oD-IhpvQw9*fOAM4g6x9fB)kUyq;^c$NZU>LN!O_D8?{8g z5Xu0uTil-+Z1P!6I~`X*4sF-HY^fZwxI+|iQl-D5-!6*ZhBK$SirC%e&0dZC<|iP2 zJA8fX8xX(p+Cm;WYrq?3YVaM^g%-7?HrfAY)+i@2hOlqQ#shgy>l8MbDswxjq~rXo zn%#Sump5^j9V`KNoFTk6sU8)A z|1(%2n}QEwa3O3C9x~`9qFjO)6E!;hQ4=TA&ZK< z`c>>QsV%E#K))h+%K>-tq*G{UlG}LlFbif46tBDbUrymn9?GXJ`@eo<(M{hP`^W5j z5zp-mEx8Ii--O4P2OmlQmX^dW?}{v=i)b?+P(uoJIl9URS&J%w zo90g)nUwE_RAk792ElmlsbetP9i|e$1Iv+4ZZ1xcYl9<7nv`xKT$hYZ% z#PfaR6I9#k4L0U?stl^d^Fxp~<@d%&hwod+Lo=G@-4qEkki%-I@qQD^QjJ-H(#K^q z&z#Hx*dAN?iym!Zo;=m#m1zxq zfebqw8ef6Si{|c^b`vL+gOFnQ%G1L7VDJNn>i8cFs)!Ndaof2qbx;HzxMw9VA{5GC z=`Gp_R=E>?ELv*qoInbfDM9?54cAl9Q?K$PMPj@Ee1{>NFNHnELTj&12^Ro~#DWa7 z^H8{r#T2VY|1Yv5*7yVfHJz*>Yuh=;@MupK(ESlEtlT$qm->dfNd||hLorDUt zmcf@_9N4unE;JE+unv9f ztQrZ`F@v0bC)@+HUx2(B0Zg5Qa%5mIB+7~LRNxqt6imz#vRS19D!6fsJ+Dmt@zAIT z|F7i+ok|B(!6qVcy?ogS39w8C18}e?<$4LZy+iunCB-2TSB7R)i^+u!sFNq4dY8u} zLo{?oVWuGM63XN!c+eiOO3>-qh_F8@a)1U&Wp>j6@)t!8cwi)Uvwy(?m&=5X0-vCT zh6XB$|KXgTi2~!5vhP1tP(1jzIb)US?!m!r!dS9kuNuh5TbX_wAw%N*i;j6U*z(zAFC zocuW(k%NZP$TtNIM<9XX0=5ikc0g{4MNh8A7Ku$zXouYRgOn%67{Wh%*o$D&gI@y0 z2A2OPWW8}3PSBrIs%l$$7&2HUP>x}G$$K~}dV#dG=v4B~A6{r9a7(w11hW9lR5-}3 znpz}5qMC5*d$&yp)Kq#s*MDXc~M*+&b)LUO_; z$Lu{j0l&B-q)!rDojwcCctQPR0#Qnqmp&FOC`m2g64z6FoAVS5ox10}8~dMf%!0WI zMl6De-;?Fq`YGk0VVwY+Tmeo~T++_wcRz@KDVbic{fs}KBiu>FcH=jo+bkFS$*jHm zCsmgF1GMD5fg2I~033Za!S8(L9!yEzkZ$*Ru&}+Ma~8^Ga>GO>shsX7oI`55S7`{3 zcSScf9cWhC5cT6#3CdE^Q3pV#L1%Yu#-W_*rxb2#reBi4N0{o9Q63W{iZ!!jr8DSK z+|fWH*ulzF*}N8y{FfSi`zTWm2OTvt=~7hCH*%`VKK)8pWD@&Q)KQ>0C~QKG5qsK2 zQaSohaGcW9W8~tt{0h#x*(1<#*HlUWw)?90S};<$04YI+7APfjmEJLtu>MM7M{Hqd z{k#}3QVzC0Su2?$Db{C zm*kH>>i=Go&dhk}p?@$zC@)!~4j*0|rCnR?T_|^{82`jwGqE2*O-d>#_8_>r;EQ8jkH|2^N2I8DZf`I{5s=T9&@^&_9jmxZ> zr7BMh_Lkso&(n?bH zy|QJ6N);Ws>d1gl$EuMH?3+bsYmB13kzRfIbcI6;L(LHsp2^WFN6mQtVSMnuBe<(z ztwJXz87eZ@I9HHPhjFbbUN#l7JrF2&#Hwl>G zdaiv#(m9A)rA{vovgnOhQ81Xpc;6-SSf{<}xs;xQ!nhQPG5YAdEFrjU-FXY;+0Lm|cyBIaY23JEyKpbjDNC%RW{vWg zn16sa@1eiHuBb7|mQBDJ4Gb8#s(sm56Ii>W8ww8_K z>{Sx_h1;Lt9sHVG{CWAFl+M0EW{7P4Ed8PdgxW*;MJfEkmRW}+UebQhdPva|&CZJ! zx!dP@oDRTL@+hV2hLsLXRusOMFw3eAj?E0gb;6XpN<4J!!4l$|fCg3)EwL53gY(na zC&Xfx4wsusyvUN`xs&mL7ic?YSmG&88uhDl)jLa`$!HxLOr(aH3Oc7-+8E1Wj8<6v z5>WP5XfMGo7IARe@F;ZJ;o6j~cHN++vt_j07YmjTyt2&3>`04MIZ%L{OI5G0mT( z&?EPe7y|8QPAY%U;vg7}b%1|XlsYmbY}2{VJQK%k`LGZIxV}=W*bI&SDI?>gyh5v( ztgAjfgF$nIxI${bum>c9NyEqH3FI93(o-QBgg$>UjD*F!lKqlSm9<(^+TUzyWBDXG z8nKC;dJs`(&NB*Qw5_7|%tvarpP&lbG9LR`Z9)|YWIU*|2BBr&q&!@6UXvBuq&&Lw z0e_WD6SDiw`6J3}#Ahg*a?O{P3Xj?}Cb82C#HBl%Qb(0|6Ov)97#hlTNNHHs49Zo# zr8KG=gRXyDC>0aiYLW|ANOnfvNdH#G-*4-*O25OQouCD{E z#RG!EYpO06RK(R*an{=b)_cKizYD9*7n0*sv5nW$0oL{rK}n@mrwhv)sTo!44ghbM z*q}dERmTe}BxxDX>ly&>s>HS$e%-N>%56qh@6(Fc#wVlWZVYeuoaW)FevZPbUB#3w zb@qzJBhPgSKF6E1ZVy?_EVJwBg_Ub_D$=R1i1%?GYt)jq0Y%NWk{W83mtKpD=f|b$ zVg!BbDIN2#sybf{%{o;LWUEX16|~EwWr~cB+a?IlqNasoc?j#i?C$Ih?&-X$6{;Er zHiRy-izkVnJ5vSx?;bqfEZy#Y5}Gxt>wkK=O_EQ!2r6-hB_H8`HFlv)5=DeH1O2=E z0)-oy=9GxNH((-uS>;>%<=zD83KMFKxCtHME7iU#Kf`dVU$aFvCClO4zD^Cc!!d8g1i+9(P>_Br*%mi z0Pbx7It^+bz`MmR$$ToW@V|wwalfTDxIWc~w)bWzpAmdXUl4p%>RewN`u_>)y9RP- zHn=w3A)PPhqob2P{7pN8bKuMtIubyy%v)c9>&cez?66gV|B&6?|G?h=fZ5tI69@tH zzb>bCZjnI(d*#O~^eZ4Oe%P8>^(!Zknlu1yCI$i>)5a#JO^mXzsIdU~vbc6pcu!2) z!o>{GFG?^)b1`5R_bLSk&y4GVjg2&2ez{PAcBk;g&h9ODMWCW~iMB@AkXCy5&qj33 z#(*&wSdLYs8SR9X=}~?xl=@H1t+G_ssmGSv&9${`(In)7KqXIXhG#LD5BV^wK`}DU zaPzsq=qZS^r-* z|AVWihgo0H|ANpK!xH~PK^#>WixMxQ5X#H?YRGLRwpM5Knhpi$6uVzHAxPM?LsgWh zAVKlpmY0!crn=C$JtbMd}0TOjl7kXUm4|=;6T;`2POx=riG5f~UMpqulN5 z?#{7lc=1?M^$7g<_@I+;uJqt70GfZy>;lsO0D#Xrh$Ei%aAp*iCXcy)Dk8y)KHR{Sy|MdZz& zLC`tBpZP5MnXQ65!Pc1)r}N?sNHCwzZm*{~!FfIX&M`j*UUGS7OG&)eUaDP@jwp@G zy)b<#Z4=cz?v&!10;_K&@bQ=5tPlwBj1RxaZg|3%UwMP3Qf<#p-faA?>hzy4E;Amx zyx1_JP~QOQU%Vr+kIKm;6I>NHNHO_UpD}cI*3V7ZGQM=D2jbC9YcD1b^2>pr9-gCj z+zUpNXRK#NX*O?Mr#0*2z@mEjZt!I54^Ph*mMh|~-j5&VbH#4QC_q#0Vd8tjDV=T- zp7YO||Cy<5#gz4vDW@A_y0_)T3xbqdeQ)fkZp-(VMct-n_a@#-j>Ysbt0|ADd7!s7 zQO|?u&Zng1pURBK2TSq^j&sq^1BQ;C#O+g$o9&gCvCDr?n|N6c7N zodUd)K@XA_@szIXBF3D8>l7>7g6|m(>}C_*ZcFB8)y~Zknp2|6hbkCe6}rn5Lmgnt zpO-(sJTaXoo5mZJi`O2o)>?qb{F!rKaX?XHfT;I3?+_5v_xU^4Wk0hEGy0VYIHrc| zW6|}Vnc@ld>Y-Hf$loHXGjl&)I|o31Y2bCta*rAJs&2mZ-4Uh8kt^n=V_0VJVN9OO zUJ1@opzFtAdyN6XUg-YiX#L`g@8}S7p9*~QC43-%`q%Ske$TYway|OQJJUSf zQFsUTgidfbE59;ym|`>^esP}Y58LeK z(2n|OE>n1m?o78E#LTG)Z%WmitbDC~^rhSNC!Z(jF9x<1ez2X~&#__5yqt)*KhdxA z?LGYml6OLv`KhdgC2~-sm~~)eZC< z^K`z*<~&(kD?i72SkMIukn@v^w`STw>`C-5MOM7}dii3uQ1!jM?VSkN+Rxo9>agNV zV47C;9_ibq1;rl=VD8_ne>`8|y1hS^^^wWo;J;tB?7;Cl6q*g@2|__6l}QU9+`hn8 z$a*Co-;CdueCmv&Al}UB8pzM>;9^?&m$}V zYw245dklTJZ1r-jeKL~+%n>UUw6;L%UAf=HGwXIdiGGa2W^2@FI*-_?QLDqrY4Uiv zjylo9LxZ}R`TA+?@CTzs8J9WW0SpNAP{2 zN1(iV0*;|?ujdLxMdr9?2sw(TGC2-B4sM~$x~$d|=zO*Xt!>B_33mZC&1sIuUUFIM zN{r~!J#Kek?KdSg0yj~^b3m#Cv4Ns?qwa`JhGTPL+Zub(2zBNdoBVG4ES3wN8W+sP zW1ar0zd{Ez!0UtIC}FN!JWe~*m_It){(z>{PItv$9v8^vNaMqC!IJi2StDu-2so>{ zcF&h-ZsXdu(N+S69*{=IOV=g(G?)mJ8w5y%IzWUf6GCTZ%kRDARL``GFpTTw|cgem! zHa0ev77vyJ)(5LQ^Q7JPqM5({Zg-?Y4gyj}_TJ`Z%|}l5ensOGeo!`;_VnC^;7_BL zT>9f4Dz?u)Kt5e7a@mW9i_3F(G>*<&>TdfQm#ewsW~a?^MRlv}YF4Mq!<`4}3m_v#^ch~8p55_$ zQ4{0ie!J^$?fG*3c3x5Ak`L5QM1-53ob(!HcdTJQj8UtW=I`4lc>GTG)7n)S!>^Ym z&4JC~Ib5x~3H}{(EPok=;SFqaG>ywpVaVHD^rkcWr1z`geV$^|ogvBK`MZutA3dr6 zkWFlaybG*q+C%&+ z3PaPn6-8>~30ym(t9w8B?ZBXSxm=|gUn&h>Jl2i=y!(3|k$3H;Wc6i6xk3fk2&e63 zx2~C_k&u}!TICV{Pp&+^xJp(e&ka)^8mF%_D>H)&#UCYsh^g?OU&1mEw4w^MQ^dR zZnuy%P-v8-*Hy51m*di!@dbWuv%l0d^9{DG&*k7PbjJGYl*Q>Zg8%i+b`$*^1ZKGI zX0!qO?m2l?bV_J$HrJeYj(HGY$j`s1vP{rpPV{s>lo{yNPC z#Ekk(QPc@fh3s|f$yGB&9YTJ!dOEK-=pWlj{+Kd?`iKS4aX2136|NWQ9o-#_kjir} zIiJmwICD9jf^0ohsJf5oo|Z~E+9M1Z)vlyAFyakb&US@QveDtjb`Q(ppF+Ll+{O~^ zI}eU)!v1`*Ca2_#1n9A0)o6DN+g_h2cAP{SKH%%Et?bveSzhfCJWq9*KxSEUxnBDU z8v?u5O{BBA$C`m|(W}?Q=^N;Z1An8pM82G|==Hs*?^~Sh?0;}Ldwg7-)yA=5j2vt2 z5&711e-ga(h#lNpw75N2<`F=Cyf2Fv~QQgQM z2tiDEm34#0J(b{y(Dgb9i3&l)2ZQ&;VIbs1dy|X~+N9p}4xLemQak|jrDF0W9I7$s zFsz!9;2EGY0ofLlkrAof2{ZOfz2-#LSP5lm31`ht{+y|}+68#Oi+zVQfxY@?dVf6Y zL~cT8mf;_Alro4?`IfZ_jn}Ez?sUVqQF}2NtYxH)=-ktdeLf`U5+@#hcX{oq*QeZm z$YPT%i)y2~^aMa@4^aR`0QaI_h>Q{}GLdPL_S$kjINLovc8Fu3O@#~kZtdPP*;}KU zU*}0SZ>szDgxAoff!%*RV>41yL%TH_KJ9glyK53dKKDFziF%?}O~2xZgm*kw1CT{y z@c0o_Ta717B9Xt6U-tel;@&%`sqb4G2T@T`P!SL*L9roCL_umm6jTIM1f)hOB3*h- z0-_+&MVgeTsHl|CJBdm!CiKul4;=ua4J;!Crux`&*G#xVyW1=zQH8x!y*1Z~mtokDieq zmd4g4)<+u6fQuulunz3Og9kI1l#TkZ!OyS1+Zb{_3TT}F&dPY4GD;%F$Cs4cKpVTc zx;}vza@IP3cs)ruO*qO0Y`tTEUc+K3$4Y*Sw0GoRTOE&3pAVEB6Q-4T`f4Q*mW z^EPhSEKlQgvaEsju}7RaiIu*o_a?8r5_iM=7DvpdhWa1o4exiv7AHrY$jh3xV{-`MEQFw#!CFN~{ z2<1V~k5;079<<6@B=_t|cb|SQ6<}A3_iwa8S)Z5EzTt0Xw^~(W*NoUj`3Y#qw}mvW z{aNThbE@-cc!(&Wg=F4-O-ol}ea=F$QW|eJdgT1$)Dh zAdtIv4>=!Rl@0K;g_9E*e|82^1Q2i1?0X&JQe#EDoL}|`{s+B>(Y72*Stx7A z9X$E5@LK)+*u=o1~{M<(jjM zLJ5GO;sPIh7p`pDekct}l=5rYx|X$BVgrxpydJm&FyvVB)Q4`V|6-?;Pe_?V;~vP- zKmbR!_FjKvw`@y2*jI^iiL95pu<`<_oTurhLKbL>&pE#Fb%E5EH%>bg>r0PbmW`|v zw}9y%K_IWCN)qAtHZ<72-Zw_Cqwvt`y_fz=+&~I<_%SZ-m>mlgsS_nl zC(;bp9IuAp71JS#mz1V8Ya%G?Iq^BnZJjsjXN%v~7K$gbOi6(v^bwIyC7U_4kWHL3 zoLA*!^8#(N?Q~?pa5T5uFA;o z(Uw{8E;~E^8uC%#JfseGhAVQ0n_!{4^U5agwpKFCT<|MRl{XG|=+ZpZ6TR>62LggU zCyGyOXr(`1f=U8I6UEyeB6(>R zu>=aq!*EUJj!$QCadCXf>8Wmc(Ccwgjv%8s->TsR70C}2LbU8uJT+=v-Md@-?c3eb zvuaODYmEEQ&zG^-;v-a5aU9FUaem((&q$}u`!r~c?@SZbiSis{x%~DPrwS6?;+}~< zwf*gg)R>Ef4$;_lc>AZBVB=d;PB#)skwo9`J$9c^?e$@Y$o;PHxqL4G`7+=Lyza5( zP2uQk*bnC)(Gsl%ozs!|?goeH<4KYP`b2aO&ssHex0_+yRSNld(*Ri+ACh0W~U`QL@mkD%^91lST?)yVa-~o#lnj3+^E3GYXz6Q!nsJpYsU^Wg_(1ExC1Rad1 z&T%Tu?Utpyo~rjFHNh*suU=-AfJ4qbH~W5;6!xWSmy2Z>>HfA`Y|UbQEk7vvr(E?w zpta(0^Wzr!I#Kii#i=?UA7CVvnVQCNjoMwi@I77MEc_fw`fqXgNsrWH^ujzCP}hmr zwF_{TZV$O0%k1G9g!?50@qzq1TUMT2T!Bt#3lBaP?mGcnoPIwe9P&BO;;+LPcW$^6 zwEvpuDx)=YCK%%j0N7Xf&P-lKz&{*x5{+Y3fpwbo0@r$a zcu}R{?nd`NK0C3=0dy~&;=E#?6o2Y-o3D`ekKujQ>raSEy!z1#jv;-foB(9L-_Jkj zeT2y|I0*X5qD4wkBdx4Mdu_W=FEXOms7#iEV*#|cTi9~^_{YfF;k$?kul)w=wji`9%%G=ri^Z2ExLwEzXZ(`a9ps%9& zTfpbl)Q&|t-Sppi_?A`ynmp1iiR19&dv3LsW&2YfpV5y`-s+CJAv~K8RJXlwzu2Js zrTT>&(Tfy_SHC*LT^Z{Ftoua*_T%%*k}#wYV6v zXPYMF3N@+s7+$g6lDe|_hkW{(VZJb6csACF)&x-yC02gi#7tY5YymM5;s_&7j`IzT zc2&R$sc4*)i@u?6Hx0Bp@Tsjv&BfU0*-60BA0k?LZ>En##OEK_9f@X|x;Mrc=M&s=d+s3I_s-xGAY@SdAp-u6k}e8+fL zLgQJ4eUy@?t}|#j2N1S@MPh6+z4=$%@7brEL>AkbPfN%yec3wILrg!Rze=8bn*B!j zqv}#-j?uQ_oqk|9zFwD;b&qS*FUY@s`0--9Zn~B*KzP<@Ho!?@(bN?(-@Lyc*=)9Y zPZLto$trceu|t-bUhzc;vYK9ZafC#FnkJYv#}W1s<^h)lKMfNL_auE48_tuBdo~?d zeQ-IbK4M^l7kJ#yrBqhHDQ361c`tw!mhW`-YYAPx9VS$< z`RQ-8f|N-jK^JldB)9h83w*n8TYR^mUzc%?beMcLC(S2|cJpmPr{6&QBrE?^zv60; zmZ-Lg!)s`X+YRl#GMS`qYU86{W4OC4r4d^>#qkXLaHY`8zV09VDxY`iVbsbnxdV;V z7i8-vTH}p*Q(bqR?q?8?3F+Nz2X__Su2ZgN20?r-%3jH};v|r(IQjU8*H9bM_$4)P zfH)wkAsuF!$TgqC{v=*s)&+-ebwT_#GVj6JDuZvW?X^VxU^A)&Py64VUPvg$De^_C zz?C#T#K-DW&_jPe7Y)_7EK0z(LSap7!GsG*?G}>pY}Cl1{?seycSCcVU=PM#p=SH8 z7qzyl-bPZJg$9t@H}20m(9H$HHKSWBHk;Knn~s6(W>6laUiX#Y{H%LGC9`t@JmFH= zwFp7efxFAH#ZD1xU$g(04+?iq8_H?9@#+4>6Ng^^zd3XO)j1Nfh)b_=vJ_)pLORQT z6Q5QI|349*WAh%dPfo-=5cEGL=zmng|L8woDqCWN>c5@lzCDPGG0L-GZkTzaEZ?2I z^S|wYL4Ro+f?$Eu>Z=W8`*J-@4HFlWZm0NNccoUzM&?*X6@dM0^mT z$|VzA{WPTPFH^4;I;x4}ByWN0HX^OHHekyU1z=|91hUC#nB5nMAb_|STsUMBh{1Eg zZc`Ck7{XK?d$*s4L$ZQ#E4t!D?O1$X!Ac8Nm>A=h8GjI1iym@!k?W@ZK1xSG4SlFd0#Uh<$fTIwju;{eJ9XYNH7XnD_3$VC2x`FgJ zS@p3=#{DB6tw1qSAmTIRuX2lgeY%DOhk2W@2PODu`l z`vz>!@n2v7O!7AN=@R@2D6oI+JarEd192`A(>{V1JPV>s- zS1r?C(Ag}EA67*RtLkQt^+UeV<5{*6TYvi#5Kja?)iI5HtQ z=Du$T))6!NBcZn;XL3t&Qu;M%s7NDF)=@z`lnnx?4;Fw{l}^M#o%Ni_|6(YQyUW zoO27bqRwKQeUGiHY|c<6dtXQXbZQFn??MB)H5rBc+96m3*bDtPPm_xdg;(-%eln0)%$_i~?K zn?!UfBR4KUCxjKOP}b&gbU@%><~=#yr4inLbLCXCC{s@*t-Z;oONSq=^k-f(vsvw~~O zvFXNLDKfzk=0-^gZ{KPMEOt`vd+74;6U_qi!_tHd2&&_3w~4fLb7}O(u$|8}#5yId%BXk5567CDgLw->%#RR#IAwYhTYS`>Zz>l(*?ZR!$L(|19qj=%5&sx2rvhp>K)z4}r7_sg%D`=>C zYglmN(r{hy##qIz)i1;2t*%98&mB$-J47=)vzyzfo79?=3`ZF)|AppH1=_)$cU?Lk z`r?ciL%#q@j*E67C(7*WwRrx7@kWnflhBL$TC+ys#*6DbT~V_dO;@}ivptzQbF(hZ zdNwsr&1KiJvmTDgCEnCzgr5IJAm{5vTF((gV7lSXZB4;m+2#eion)SUF5s6et>xU6 zrJOetR_ns$sKP#lZ-|Bz=!1Jbyi<9=)<|$({p~53$blq&+Z;^aMZW_r05IP7mBuR- z9!J%@b~G?rEO!5qh|ErBw(7CnV-ccp@0Dzc<2#F3?U`ow1{@jjq0{=ZK2R~ZIFFUS zc*Z^C1Jl=_9~ihbJt1NPciPuFZW4Zbjv?i*y2^PN5Q_3hNtZWH zicUWL>~vQ;IItL!lnrT_1Mte1YpU;YbVguC)*$Sdu84>T@b^^e61J1=5e3@gT_Ld4wrctF(GSJ<8(M$) zxk-_6sXPK8ku}df233>|cU1o*e=!`8c!w!)8Cm-xey z3%59G{etxB+nj^?kCrG0p>o;IEKZ>E1Lf8f$!oGYA<2GbH6<7%oe=s zyKm~0yQo(ht+hYs<(84kj{lzI--YfbEAl~lFSjdpmIEpl&$QGrRNODDAa>WE(+%l- zBQxI*#*QjGEh9hP&AbGcf}!K_^O%oQ-HE-I9S2Co4s>BTc&_e~UwoPjQ?^Y)cnqbD zEABQ&c>P%R<;zk5F^AQ#5-&`-o-Jp)T0(mF@|$o+Ta{E&pc_b}rMjBk(H3_kGM%#g zK*A0seSMqa4 zyA>`qCSF1Fj|04kiKf{q+9)etX38}c4fjp%dmQdI!5n`Yd27oeBl%2xhxR~d(Bj}r zo>P$Q3elA7|I)B@6(ZZ=n3Q~lL%Ka@kFIt{kFN=NH;VM_^e9+z7Ov8M^OQ!?lUcjq z{twM}3S)vXr`7Ezs_qHMQL0l;@I$H{u}Zk~9Dr~Y z^9NO+gWj5`F1BIVGm#ZK_|(H+bx-O&A%B=*C1Ih`>sZ4n}VeShsa*92W*Eddsgl|J0koTX%Y7;K12WeMxIZM77Qc&3J> zL7|HzpV1_syBSX+U;|wS`sai1KT$nQ{&W5t&o}(XqulM0&|jJybP4)~yZsdUX;NNq zN%kVNTeK1%`fBimk@Om5F#ow-5O;Q!$}Ys3zqQ&ftGs9W zY6o*NrfLsbsIi+nqKTCzUIASs0#L+gy+7RFC;_y~6Hbe)>plk3jFFwkngkf~g&hKxdn#9M)w^7rex2jn%|1}Ua z>wS$d@rKG<)|u(O^)~eJmnuZyT?#&tpNP&gW<+YGW+bmchQFe(HQUvC`V!+2zp+WV z>h5*J4FXIWR4bnOU@p?n7$_l|z)EMz7iK!!Hm;r8HD2ukyH>}?NyOd2x_T%bjW50)qe~XX5Ye^ z?Dqd&04`y>I_k>+I@I9pqH`NhBHE#Bc+xlCtnAIKrZ+PCj%}Msm6LK%LV~4T zop(acgY4k*NCuh(RP6I?Y@6MGS^3hXL;6Q+lb6;#{&HuQR4E=aa!k3GV6U-KW94~k z?$iGD*Fq9|nR=e*$wg^i!Iu%b!r_wMl9a&Oqf6ZDq}vfEeOv9CTUF@l?b9ix&>Z!o zWs#YHDMF|0DWW3z%*##nUr2G-<Fz9Lv*5rZ65jf&_k}gtUMqVr0B)M?c4-b zUuh*Yk-0V^($|j$Hd3GiB7u{Ev(?WBZ_p2nOGOm$QY|?r4V~@>NG+UzBE(Gm3|>iV<(k|EQh_P5Fl z$2i#a_VyiXsDj=;tqVd}(9}8AM)R7sXM$2Rj;ixs&mT{aT~6;;zbw5t)*m=x!b?=O zTxuY4h;hrsNn{C@9WFc@AAnNum~N=tW)~y_VHZ1h9}UtM`A~e?e`9x_8r-{=L}|rD zb#fh(BpjR%>~_zo27uacEJ4mC0kdx>vSN@t>VBWrEweGNZCg}NoTXmSudkY8@(WgK>FH{DsbqhzV0V9E_0V$u=w@>$L5XKQ+j}>MY+kBj**&}$oX7x9 zHw6bi<#GG*r?`k8!SFL>Oz58c`J9^}45f}{D50a47b^oCRqav1*_|aACEYBK3q0gY zgc&eur1ZWse#7f~Xwo4+bV?gSmV1{I%Is?2L4*U!<9WlyX)B%?yzVBudNtsF`_%bP zn4exdG28#Tps?dFgbHdc?CY@N*nNjvy06R=lmE!3nd~RAf22b_<(d*sPGqi0<)>Xn zt;y2W+AE7x8XrgSxj(pMyA(GquJ)@;B0AVi!MgNhz(8FmwmI7`i^uy{1G@{-q&};@ zQGdQ>s1q<4%JZpT{s2B2fqDZF8>gN#F1F%iJ47^@>)PF{l9;&(*{e@J4crU@pl(FN zjf#qj{F+-Np2jl*SNfe`?`u$fkG0hIAsus;Q^%*e+^{QtC(sXy%GP%8~u6K;N#w+(;3-!vy>77-}=(#?%Bz&NX?3d z=TP`Kq_{R6!QnrD{=DccYTY4NiaSr>4yOT8C1=L2Is;?00kuxe#N|FT&t52((B{W0 z6F76R$r-#{&-~E0h+{+|E?mDIcD%IhV_P2sq)LPtyL5`49}46m+|j2%85#Kg#y@cRY9 zM_LSK4nYS#coa<5`(dxSN__{H{R*$Gto6dgS=lo;-MZwElqz1?Nvx1~3XmJ(Yh9dR=Dk z=yGnYcnB_Td~!j`G#(DPO0N@M?#;|Iq==(rjb^2KLcVGG&9dCSm0iF}^^tCruXa(q z#w+Ic^fH$9M}$qkqhLp+q=fX^!nZxeIff~3V80^_Nk6U2wBN7Q6&}e{mwMCKm}4_w zG+s>pe!1=}P)OIH^$mUaO}JPWEohOsZ-#-LszzLOL)?IUp``=&PQ;(#?#=RWhlB_j zD-92K(9uu&8t?CfK34b4HBoL+{zX1x@uSa+KXsA_p0ko!F|##xTM>2L2Oa96qoYFI zw9`Oxonz{VU5S>Mlw0E?q4g<_leYIk}*rog(9brsU5RkR((+o@I!F3*+6Aymb*^LUfuf2 z<=h;Bh=*}*$5Ft(E6628=RHNbLp(03pB{NC&8>oVq!OAuzVXQ26xecz#HYcdV*eN~ z&nyVi!`}sFUFN8lXVN*BvcfMBCk?#R776N)v6aFU$6z=P_@y)1IrpjFS2{W~NB>i$ z5=qAEhHfpwNReO?3koQ|mXA5nLo*y3qXh?&w4bVWD5JsoFdy(YGI7~)D?Y~}02D6N zDwd0#*FCQaR6KnfE*@E1v9JBon#^OQg&SD)tPUJB8?N+=WRF$Ip8e6nR7F%?CY?*d z#KLZc%Z7{S)HBeuVIwe2XM_X@kS)GGoDO4Hx6{$fb{_9ZF=Kuw-arpK)aS27y-H~p(=UP~Zq7djJ6Hi> z$`|i2;~d0wyScua7M}3?G;V1yD)#(xsGMuT@3B*Khe3gj`ja=G{YFeYWzW9R#jNGV z&}_pM$#+}NV-W|aGW$nPu2##TZ*oqzI%$Dq9=rDiZX)s)&Wo0qe|aVhx3Qx^%WCY> z3$IQNO4A)wqbi#%ad@iF~w{V-#;Mr}8ClMN#04kQ|Jy!Bx3BvrQgDo^)3a1;zk`}@Q4f`7`%4U6wqCE~kpyBULUgCpl#XOldc4PVS}afBK_ z3&x!isT0mEk`OE~LB!hGQhRO^)Z5NsefdSsB*87BYd_n(LS&J*3c*=l%>J!Vm$}8w+i`gP*ux5 zj$$8~zP)diA~)6(*-w;pdbZ2G-oF37OOeg%1{L;-XHst`HnlycpX>-?_!i)8<;x94 z21FAtbE*f4?7I7r{Ya`Q5lZKy8;)y4osNonwX?$yF`Q-8Q0;i-rBq}Spmt2f+~s!^ zd*qY?Rv?pt(@;PH)*A`N9kKs!DE|NQEZln5$=wsWDpMB5I4#G=C-Cv#RCJ)-|Cwa| zpPl7V(bH3&mWC%fcRYrT9$qyovnu^sQ&+cgqy5ao_c#4+-rxBXaq;CoG1W)p-ZoMC zA^m9hkf(ix#jw%4{dO2<>wAyxxrpA&VffM0(@J9e2oqkt4j20AZ zzRt{CUOet)cXm@&j=SAcTW_mEcy?|`ec{XXOS`=34BQG24rmO6As%15rFJ^*RxcwW zn$=e4cu5TARz1;te2te<+5EAx0cYNRW}MEsu@H5!JRvX(`j!Da1Pf@K_DUe7cTbSu zB;;812y~u#@d4rlt-Xar;3ln}<6dmZxCncjx6pEZ`BWG!1A2M(_Ir_hIQv_B8p#Vt z)4g7b+gmKrrPPHmW>89hzZc zu7PH*0U3h0cQ>`RSdHiyFMXm&N+C0;VLz4G4ZJOSe0dJ3&s+i=)+6{lN5->azcBSO zA*rvx)DOLWwcw{q0P!;BLt_loBNE_>kNm1yine0@=>|%}>gzPJ`<7?m9nPPIgzC;C z71;XgQDC|W=&@ju%wKzj%(ui!nr6iLtD8}v$CIPv*TKKW2X(<)8_Q6m&j@eYuiHLl z&slH z&ya_CZJxd*BVx(va!j|>nqwnmfumIMV{X=edWIAS+WS!_g=QOIC; zAVQz!w>g2_j7l}w)Oy<7l{_{O$W^dk^e8|+Au!KHZq;huixhD85&1YIKeXjvbZsbW zqo!~Zw?fq~eGuM%C4#3 zOa=#@IlI$G<^=_RiAYHEk-_rkLBGLV0?a>zfqtIkkuMFl9 z;HSGXYzK_t?DmV5vY^(_#<*+Hf|i(m&br@sOY2a)bc8i{P-P)jbwK|+Bu3XdAf(Aa zzxOndCT3N@W~8C}u##MYnnXhfXH|Dsp0c&{m6OQ^%Pjn=8`t9)+spA@5fWEQelVGM zgY?NfS7p0iMR7B|(a827Rz`w6PAv+Qf;8|gulBN!87dCb&W0m z8TMI(d^Ip)KqG7I#_*579unOIY8Q}rkF_lMSF`-|qB`CJ^Z+~n;}50~*8L>0(jR1V z*X(!o3crd3d426pWYW!kanm~qr!Rn21t^{Iu1y00R~S8@E~DLeE}`l>OFR1qd96w2 zU)@CeIxTw!`j_bUTd(1j;&o-xRdB~t;UAaf_OFl8uKqER&Q_fD2{G81e@^P3AE@%x zh6NwO>5|U668B4}pG1I_Lqt8xo>60BxICsO>Qt;45WK^RtlhY0y*$d|9K>0D1uAf@ z^~;7bNO35IUD<3Y%O@4OZSZ}Mf^n@>CgmMXHJptHy z%#dF`p~vkv?w)2te+r;W-a)e!?LVC=nKLFsI>PteE^)Y*4f&4(qb!Evi;|v;kgpZa z)FM+P3#pF;i>XMlb-%e&??d5Hmd_;0nbW_AVeg@eu(36T>Uxxpq(lwA-95S9+yr_RtliWvgqFX@rMsKB=cecp?sCeV z{#!N=wIkjz@?QqadF5Cs{WKK~oRZ<-WXIF5Mf=Lyu9Pd$_T!u%hejTT?ppwqB16Z{ z&+JlinUd<|4>0dz=;o!{58Og9fP<-yg5Tkt^-WZ`yUT6(ZeJlza?7K&fc7?WE1TSJ z_)WcVjeG}6x*pf{yqXwF>~-xQ3dV%?b(0%nt)%bJmTYkT?_;;Gmu-z=aCeII1q&3j zi*^i_@$W@m-hH>|1v{9<&C< zc^_l!7WYYn53p0vL!82ng=(T6yrBA(RqiN7CR|;wP)>@QX;0PwZ894tx$2HqY*618 zo*+&B$@Q9b%Unx)OUvOyt`XAz5}r$|(+)tJ>%UBj-t}Ps0Dkns9@}Q7Z2zeCOZE`@ zrkHyP)dk_Mn<&&zy`osv5WO`q%I03!u&EWR)MzdA_Z^2t777Ne2IJ0zHs}sL@*<;D za%IU59|OK*B7B#nEasSmQGF|XYK|zxC0_m!uxLlIe4{X&N{DQE!1$w-s^nDQZ!Dww zxPuvTy-8*4hr8%JMjgD_-LSC7;ywe)W6~kM=N6w^3C@~a6)winFM^n_1AU`xz>nO| zhdJ>k!e%HLZ?a$4buq*$+6K!Sgo!2OTE)e;Lb|_ux$=r&)kUk&>o-sjpM%i7gr&i# zW_9(`B0gCG4w_b4Nj~e?i;*3J1uqJ65g~5V%X>lx*6f+3yJ7GRVUzEK+WuW+3f7T} ztpvL3P?T`K*r8T|Nx#tRO^)T&Lzqks9F28`(zxAQi@@D33+uHOJw}7w1c-#{GLiBU( zLA>i5%q{9IX)=;9G4+3qg)PuuxYbF*gNAqY2>V4@0s=Gs>tKi*)WYF}m(z8=vG=Lp z1wwTBH|(4vn&4Gaf)4yC^CwPO;9q=Af$wt`NBEwFh;M^S5yD-5s}Y&%CwB&Oj`)}^ z3ayqbhFEo?IF3%u9yR7oBD2d4HZq3PX89UgSjxuxlC?eQE1uZipmqvgTF750xmsJW z2#LO>H*h54+}LZZKSRODWoOiuzxGzg;N}kYdzYC}xs-U1!Hnfhg7nDpd^=nJNfpMm~v-uv#Hwf&DAMpD>{vPP8|`}Hmna(ham za*!t5cV#RZjCz*^Y#bR`Vqqz2D%H7!+K(bypj)tk${!0yTG`fY|1J(c1=_o)5HfTT z_kHnWZ#o!_N7|b#@7-a@gnrM5ZFM#6k(nYdMk+7F`jK0ur!8e%F`1ygLIMgC+smO} zSsszm@pyC|7J3Pb3f+yb&&|-@KeE56xU0(@Q&yK@$+7sfC>Yp}pY=?gS#KhovrD#z zfcoIBYh&g0Uv{b#3-ZTy$c_D>juTwX|7v7<^T&;oj_7GG*@?|NNx^9dMYrO6jwQzl zsIiv>em_H}R9wZDj-JWGPu0MDzO@iMyi$BjN0%l}4u4rM=O>S- zP(9bvPY`l5+-h0mSGm*A-NGl=xJ898l9~jU#hG4>Tk(FiKU|cAz>?NX@IhN|Gq?}F!y)m!M%kAUn8iCXKSK&YwCP?$C` zOlrGnpKcaD%AihU%B8v;-C8adU(B%HoeN*+6ccQA;VChLsjL)B+0eh&ZwN|f68+2D zwz!VWA_=|JwJU;T@6;Q^ZW`8LH!7|1O<`FH@ge&nFO^?g-~8-BYYx_}mumM&`qRd% zt20ah;VIPhbD7%}!P$3gMc*A;DtZM^h$heR@aH$SAs!bsL7?=>*MgO zu0QmV=eI@@=1myX3&exgEsTH@I3P{9#>a+@$-zWgKj$5fvwXft;*4;TC;a?gbUXtjUGvG%0HF*DSo%N zDcpV8Pfcp2$64hr{U8t?Ee9O5>;mpxQ2ry^26QO-ZGVKyP10Ar@6$F> z!#xmxJt4{fu3so+aP6HeJC30i$X{+_lZyn{bXJ z?L!7GflYBZvuV@UKkK+mD(&U4EOZc8E*K#2iw2M&6Dbr+yQzfr6BoHW6CBgaS=Z$E zQA-qC&3)jAy>C+hu*OMUVOo}_EJrw^zed1@0s#f=^qwh<`ap+c2u?hG>*w@LSm;n8 zc}9COTYobAEw9x-?TEZN>-iZNWX0g)J5>8`hzp1O-veAezW;={Q`Zk0TmCO;KW_V` z<%N>Agl_lP!eyqy)C)(~G+(eviOim# zU~JE~`62(oi$7_T2zR!P*3ZLj%$OGR0(Co!)7V^>GU|5$T5e)t`6Rk>(vOi5Qef|42O6z>ioS~~ z;HYXdpd1zhqd~FYDmT7AoThcf8Hjtt={}K*;do1sy-??X^`et|mZhlpCD0Wj9lpAR zR$ICOtv#F`SSv=eUFy0vr;pH%)934T(Nn`u^l(c#7K~8B;nnaZCuoVX9A>gkiQWIW z2OGh+%FHYbZW{vz9P-5}dKzMHMy zfEv`T38>&p6msYN{Gmo!EMx`{jMX>jVm^lbLSb`=7nE6iOT#_fi>)^4Ks0qXud1>o zk=!vQf!m#3+fPoII@r|FbTWj~`5uYhShC3P%_TqN)-$RlA-8#?yE19O(*TPeUXyk?BO- zuCG%uIHrzZw?Y?b3cp#nkxfG5>q*yE->h+Qk9(kBxi%r&Gv zA+~cF;~heWxi~u_Aqq0r2s)>V-lv2jLti*V_w_V}qbhi3ctI;`I;vrD5@YkIKne@A zw!dBr$dxI%-#-n%Hq-2|Y2UgS9yL3$=VTj>(w=<1U<5rwhq?1DF_C?}mG>f-fd5f1 zmk;Akg66!`5x;P8`Zezs>3d*OQ`4Oi^oXTXB|Y>#px6Rdmjs>VV98k&iqb7t;5tXe zq;~Y;G!ei4)v0||YBPg2;-sHKj|08iX--Cqnb>0?US*}@t@7n_yvlH6rfn&3Yt(hs zoiKt^Qgw}gytYeSy%{dh-{`Mmo+6!g&zkGLcAV#x%V$r6Gun&SCN$MR8; zea!A%#!z z|7x*{5B9+|$UMbuO}b@>e`y;5zcN-v4M)Ak9g=AU&b~~Crh-q_eOk^x^_YPR-R!7K zpA6{-VwWqhKelN%x4AK?47;g}ZDoJeEFiXeM-RzcJF>4IQkRq$FVDtKtdwylR+{ze zh9``@xJgrI{5kZ93jTmHqu`F`>km6D?klI8kC=4 zij~JT6ImA{QBsvyc%J3ZX7S8!vjO~1?J|}EGhHHR0amwIV;_+{4H-~<5p9_7Z}l}X z+#!%X7jy}_;S*Hh;)8E9(qHob!nNeoB;U)RAMHAzTLr`&*Y*9JItceY&HbaVN5jqN z5?eI7pgN4jt`c$}i?+&{{_o)`axSbdDc7L`I{S8px&A^X3|9xdj7e;fkmp`2#Lm$p zR=NgLb7NhQj^C=QK7|Q8?XG*r6I(uJiVSpJ6vaGaRC2W;0NA&_;fW$Ae(#SSA|1ZC zYp1l})juQ(ZMx8qdIy~oQ@{|8Z%X!NGZptv!>vEyD|V2LBw0CILP8kDoFb=2n$=+o zO^b_bQ96nYOZ1uvnRPV^IR0!CP{SRd)m;L11*BxtY#`_>Xul3~PSymhm!}OZIa*u{ z#5IK%>y(2dZjHrH_h5Za+)mV>;(dNS=Gt>-?s8tU(;%oomBr(e0^#|C+%%uqs}pq= z)0+gbs2j4}GFMh1kw#a=(I*6RIKQ2*ai)5Z-Qk=WI>G9{MgG5Z;(uz!%PlJH_rW%$teZI(69s{yfaN91G%x)0O~c3%1liUK}pEXPOITk zM$K9@j(Qz%gSjbR>B=MQUSq(tvPm*PQ>T<$OvE+>;b?gav{i)S>TfG9P-lxR$_PxsO}l=8$cF69nb+sV-z>msUQ)5e zl}IUuXb*?G>5%Ey`@r8IYuuTr*Y#D3ZRxYG%{f}oqPdx0;LOMyorUs2`{8Rjn6Rz1 z#nH0B)Wl?)D~H~=~$&P z?OFP)AeZQVFK1(KM1d+?alF+&G9?!)(-g2hV?;J9x5fB>gUqkmH%mvRh9|ZZl@tGl zpE~HWkCy@(Sv*T_Ca2Hp3~z-JUX@fvcWGspibnJVM)0zWFmIRVlkg<#_@`m&T)vMl zcjd}3MSuACE=l~`fF0T98L<5Sw?-__fCVcy;4h9*-`!R^p3r_K{q|XLN#0RD{qfo3 zk_pL4NlD2{xzGp9{H?;mHO2^cip;_h83J$DM$TwM?uH1<+eiC2Q zw&#Uo$38DU>}yCH$ysJD=Fn08xYZ7hdCUfL_D6kT(PP0&yp z+imFh_4}odaG}iJV2h7*!gs9~4)kHRuBw!XDzJrB-(cRZeY`Nk>`&gl7YcP^a$?l> zd}ZlT*()!8T@Z;6HuZn92T}7ER6jSl@(VDk+K|iCU|p5bh48%=s*%;yv|N{p>6$m6 z8NKlUGe5RT+9>}1KG%!?YUGO z9AniHb>(~9#5tWo!m*gV5}5`^@yJmXmo zW%S@+!{a#p-d^eN$NO&ebr2U7#IiVwsDW2I=6^xQuH{9{Id22Me7+0Vo})TQ z=}KBio1L?ezo@ySF{fQDu6MBD=Q?{hQP9?~i1sJ;_W#G+Tm7~1eSz9V3KVyDinPVu zgG+HJU)+loFYa!|t+;D(Deh7n0+ixz!7V_Lgq-}|oA(bmH|K6{W_D(OCTs1r<#}-0 zYA}*ji`)fsXHnF`^-ss2WUTb_S;n$H_Y!%aT6c3!J`h5yfbaM?$-h~%r2_$r;(&Y( zo|E^k`5H(PZ(zYb#FT{bSnxI2J315b&mKd??f=>4=9mX4vx^^eWCZRgfN{0HnasH` z8);h1!;oSGVdVOR2K_VQyJXb>{3-(%yEh>U1!PceL80ByIy%A63OAXGM%R&Vy}dr< z0EGbT)CW@DiI@p!&T2bj6`Mp(({CpoBmwuw6RK<9uJBq&Btkav)|kD+4P)&66u$VN zh2q~uye9~4aL{}Z&XsRZcDj9h_f1+O`(|H8tvRV`n8Qr3>vuM&!A5 z?_CtuQW>(aZe5KEHLmQi*Y9tZXLzbu$A=)<9^|VK--frvSRmR2u`(yJZ&;d~i*M;O zANQ~19BxR4PQ71?b>Z?uLm_;38&!kpDH*B4K4-cEk)J1_o$iE5rG&8s#t|(TxW^NP ziJ!#K0?|?3>&O-G_i41)XjPQ!E+G~Ao4FCARhXSTSX0lhpHz~btB$|w$J3dJeI6-I zyt2ZG@p+$LDL22|zJ-ThP(q|{Zof=Re_nMqk1ypoo%HhExzXu;Xw|6cvdC=2m7k0v zu%Jjwf@IX$2LHezLhkgT)>;fxybAV6YVj8;$=c2LfLB!a_`*xw0_j-j<~cf-z4LGCyslF9oe ze2;BcTN{E#74xQ$Y;LGF8`1b*2Utx zA|2>)2#|R>#WFZ|VjI#^cHIq~Xu1u#!RiR;<<0zb4BIj0ZGWJ@*!qy{xFOuWXikW;2Nr1Xj$HN*NQGA)kD@I*vuu*O3xMzE0+Z zs2--84}jwyAi{X+PDj1{4#iABf~fhzfOW1JgLlRQxwgTm1BR<k)mV5h(v6wpW9Q4U-d{YRQ zqBjVt( zG|25^l}?u8yhI90Y1(d$&D6u43ca+4`;QQP>Mr|)gT&^04X0W~Y1k%y``tpIXxm51 zz9}M4>=B!{E21<~lQr5(*_YPf1};NU;k3DPK$ zEx?{PCWBS-Cq5so>kiDGlZtkI9t-cw{{fru61VkB+>bv-y`jH>WAG?^baTq)5KF^R zzD*#0BZLD$*`nRkIA=5Xjp9RBnBpB1H__;gc)7UyGQ z>&3_AlH{ZKZ`g}7IvV)kaa3~Wh8S_3@;8&C^+*eDZrA54LatPyfR6C-_$`%Mv}DL1 zX58`0_n~5Vdp!VJm{#p~@&v&aS4|Wl^B#-rsE!j;i3s!v*n~Ey&5SJSKD*_EQ)$GQ z6YWqbc8?h=4oLZRh-RYB6K^I?c5sqIJHZ*>dcPr}r5OmOb9c`exKssBi;vfF z5w-46X@3Y%^)Tb_no1%K8;uriz z{RO);&9VX5NNqUsXH*NDiTY=CM}qBh$B-Luw6GKC)gg6z`)`gg}Wq!{4V z?apC&{`gQdhMz5N0DQ-TEcE1i>H2%zm_kwm#7uy@sFOBrHJc(jywPymcTLeP;*&Qw z!3TA}mj}?UXNaN+CrV{-rQY^NA1Rj#0j&LoQP zA%@qau@^Y!zRXqq&dU6>v_w_GBdDjzAbScszz_BATGS?%ifO1e*u}1sSN~h+<5-V! z0MF8jJs*)YTfkGL7rqV89~7eUB^-5?keD3Rftec0HO|7bzh{7j@2e)mZZbMWrc5rR zx38RzAQ@2>`0h%`0|J^SYJvfA=u;!|F-C0hja}~drSI_9I##BO)Ubf$Q z(ZZ4l^W>o8`f{WtEhmyzTD4&N?_BTVdWYG-@T%T8q;Sn*vAk?wAX%gC+xIHGsrj2< zkDiPo`%5w_ey-uuwM$-(<#mn{SmF3dv?LQ92It3PzJ(+keF7dRu*ix90<2{x`S4J` zf=|$DnkzM`roK4ID%F06F^RbE-?8}u%U(W$nSrTYf!C|=rydaP7Y(U|@U){Ra)S6fK&{#eMH-hJpOs_=he$uvS$ zEbmi5uRhOKYmdWo+=W=7i3QG^53%427J}zB&p%QE?y|?kvj3W#@^0vamB_>Qtr1qZ z&QTBS)LC)O&xY{3#73#`q^sno@eTMfO>s9Vf4)jUeG-#7E?FR%MWF+Mw)!5th&3}v zS(jnR;Z_eRBvds%*Kqk>E(=v%C1bGsEo8b_cOMPAG!Hlefo+QY&as^)yiyIaU^6*v z*kX|R=5@?AZ*x0#PgmOCd1u@XmN|SIm@4h51ko-oDod(;mMxz#pHJGEvLQ_*_+9 zXVpr|+RDSLYW%^RZ#=N-8H-WC&K^0G0HU3fpKHY`XR-QU8w3u@xk)Ob;BPb)Wl5R?!B6l z1nFBf_9liPSs+m!d!Z;Qz4c_=1>x}g06VBJtH8d50oY?!LEpnAE;kaR^aBNDW$^U` z*Sp^&D{PZh8DH}Kbn@qCFcE?8cGoR$eCBsPAzmR8`25#B!aHok6uVlk5Moz_7nX1r z@AnYa-B!8{6NYE(P-~v0n`HXslU;+mc-p9Z%J+iE-auPF3o}{uF^2;Ci0a#|6#Tz} zGpRPWQE0k)U1%UNQr>^KW3}8h8}>U1bIeGlLucs$7<|4myd%l}0e$ed0xgvt(ScKv zKK^cO7X8iZ^I;anfVUxubFW%y%(s=(j)S!i{C8nxz%U;tJ>})75XFmz3fW`Ig}ZYe z!c)RjjCDeXWvwMxJfHn%JE{%#F?h)H{&Os)N>`3{4CK$qbqUGH(D=i+29o*nI4E+m zxjQOJoB^C*gkR91?!9`~W-+qy*j8c~k~rWKYpm_zm4mckYWVqL)54eyX_9u_Fk4gp zXVMw`lAh;B&Q|H$V!Om0NdCDm8aG7eO|mM(xG(OE7K$d`bOHValeW~~CKmn%i$W26 zWLDk@q=J#Soi=5XTKO?y{fS5A@Bc418N)16bkU&(gRSHxZ(Q^-pm4PE{K zltqV#vaKeIWm0SLN%p?-?|yh@j(J+N6ucyp5k`U;7ZKC7ym4*4&zU%{u@*n=y3jf4 z#7_=eIbZwq_nZ6mh--XA2gWwDI17b`KOZ2z6r(mk9qogw5P@a(B69HM{s~~wqRjq4 zj;K}75hFO26sfrPIz~UU5P86GO;XJBG5X9^hvOM_!rxCxu3buWUuzAgB zkRkcqYdf$$=-bYMLHcGb33*EK?}hiY0D&JFMNViQr=Bq;^wG?TQi+hwNKssVJK^>4 zj;!Kt56^Qlz5%gk%-Ix;G9GEJ?{WR8ec5j@sYVHa+8+f55Gify+yg-lJnfy)>K& z=_r7x3Ocu8JrmgXXrpDPjaSoKTK*Cac0$<$WNL>E1K#>tPp(j7udA7~Sq(0D8|R;g zwVO`Ny99N<_8BD=?du80A1Xf?bKPk0ZqsRFP4zZVTkJx6c)UHHX!nb-?4;0(O&DN{dwOjvWOnU2A zamcK^6(xP@urWn=4T_u$3nO3_bJnZhxbYc81b}5g>)`#)oe_^WY z{;n9mDKemRv0N)3r&Jjeh`*ZoV$)p(7do)>Ut%dv|Aft3%1N>h0y$kA2pM5=Vo?D? zKaDs^s9WWhWG~31^9l(Lm}2e6j!qom(1uuGVX^X3?HuVX#vXW!POjgr*W}X{xwZVe zjN6}PH5?p8+2IvfYmHXFsB>G6K_RA({pG56gjsG)JV69!__E2{vT5-2#{$_jk>W%Q zTlEBj127E!LYa22G>$4PL+W663aa@$n8;*U#$o>aU#LrEw%U{hy~uZR0~85W=>W26@7v$KnEt%+7)gTki+p8E5hm5#j5Jwm%PC#v+`n8lvo*JOTDBJ1%Dne-m3uPMi&lVU zc*sZmARKHgVu0Mf3AfsPS)MxxL|+k6Z?fniE&U|Nxco3 z#RO|a0Qit3*d{W@K&pJfBgU9KLHl@V;3ExOR^iC>y$^N@unVTk!Tw5(Q^II+4P1t= zpLJsBc5+%c)Yw{Ddh_zvCRD((!Uw)_bkb|#R!P*nW~@w=~zm6=oJ zYOAm1H;0dqV&!-LJt|7H=sgBAAbl4+$@QLB;sZC4cay#>xH8_*EU(9rVIy@Ghm|tf z3V!q{7ooeZkGOL1S4yrI*GsN?z_{3uA=TPW&;a%0sr`pa@D%BASu?Z7u*+~*(D`z$0Hk%3!Vl!LDb{{urs>W~ za3L8%JS?$v4()q`-2Ls%E8eFm^?-AO83Sl`q9E)WRpxgTo_QV;2mZ%rdsh7k3aCxE zvFL_%{Zi8i>fL_GKy+Uox zH}l=S3M$9^y62BFPg0Si4Ro2WK0->-|7G_rt*}&>;Z-%{GsxbSIwFzVsv^$0aP!AD z1-JX^K#&j9pkV{JH2Xa*QVg#q%$?yIeoV^} zBcIFM$ISUMgZ1dG{lpVAl@)LCWYfaxU%0EJj`=UfUiz_6{%z5|2y`F|*tTZ)z^xK5 zzVs{JZM^7G+%Yw1FH*_MjsiTs`ixQEMLnvT$B%{zSKgnUe6@A|vIoFZ6AWa>MmEdO zNu#IxX&mOTT8p~%Sm5X}8{ydCUKA(l#K^n6FVJp@WNmDMVSI}{mAi4^?_;s8>e3mf z^*7j2(_2L-;rs;gpv&^uH>MWs|LDwK9WB`w2Y8|ZH~nYfXcu5yAYU3y#AdvyP|5m( z=rw-i)K>WLuqoo;bS*H)O{P=$<6y$EU5KJjJYA!~E8^{(1dzkkf-d}Z=xhf>oR3qq z^?%aH1{yup#E})+p=-=~$mVA9FzN9fqkqhK5f$rYF(Z#wBwk++`^}Q46cD>Pw=;Mw z5T=?E3m4~~2*0{DwtQRhg6OFzf=oGpiH(~7e}W&wbPmL$b63}`vlF=4ix_HFaHM}v zt@QPP9wHBlAL3OyFbbW@@|^MqN4FD(zsKeGBJgLjX?0~e&>r4cObj|m@X{_*_^>PM z``-%5Q~gp53;x^%WdB7FR2b;}S{ZV&u4Di8gS9$NiM6XAVh;Kapw!fj6P^_k{sh z(2v|MQYE2OChKXjrflY#cm$Jf7d1oSUTt;OHtk3!K(9;I91Up+nUELS`0&jz*MlqB zw9ibKJyrPFO9cf;vn`}<| z^VNE_iDEtDl8+%URa?UbDaSK5A1(B*7R;hqSTR34a66aBmNdw9_#7v_1Y@Neb19{5 zOi##R?|P!ly5SlAG+v8W{B)Sns*e?XZdm?B(vOuu=t(O&)QuoFqBF6tb0Yo%nMq|& zoAZ`SHmw`|zoiY^F|FnC+N#5oeK4Id)*k-3c}F|o>&7}6k8ex*p{Lrq;ApF`p}vXm z@S~|~WVN@}8L5092!{pZDn7c7ht%dfk#-Kspo;y=4QTE?zG4~aEYaWV#m&6@r1deR zxeRjJ_=amcKGx8I`k}}4_B6CH{~l^$q^2BNS~0PuAcdj_l}kRMIfoqLpVOY=7_JYk zUndg}k7GW`Rs~b!lwo9JCur~Dr9jmDI!BX0{X$e9oZl>jVEj5leORP-lt;l;q@nVi zaqNv2C7e!yD<^DSq`J^G$()Nz8z;u+7z-wSy*`F1RP4CX?Es4>BDG?T_F8$w9jY!j z)rTdw;F&ti0cT;ea~W6eNMAfh9jyoNQ!R6(1Eo98jxI_~s;VsUz2F@IUWul*E%;>&Y^G}2q1{q?g7c@~4Brt@vzMG+ z@PVOm$*3k)Vdx0MWeJ4kZO?-2V45!bADf4iD^!p7FQge4>~FW=6RMP{sO{X0Iujdj zO@JzE`Rwy{F}5+Z`b1E1u;mwoCZ#q(D{|>8uaNQdO3l|iofN7G3FB@BG*ObD#{}5EM;LBr6ZvSR;2V-kVw49d7D-#vs&m}$Kf%8l+-(SDF7!Ez zJv#&bb~0+VH~1_Bl18^@P?F-)aP6ocJdnTH(i7eM!SXwExi4x})Q1uKw61(U9A7MI zL>okWk(k~|h8J$vz>F;z;S{X_F)TmgdM5i_tojZ_#o)?_=a{959;S&P-&cxI?gT)WXxnf&^ zZHqO``Wk@VAYPWI%@yj)4s?a@-@cU)keARz3diJP`AScY9*})((!+m8P~1Wk8}e%b zUpaY!APa(;Cc@QO=^1AE;Xc%`#gSa}4BLIT2e*@6xEVuWVBqt8j${zr{zX!0C5 zOIbYGA^!q*s0}A(wQS$CL}%G2$0+U?y?MzUH>6Hcj;v#sbYPz?>dmLvOh)- z7;#pBl5cc{@I&(S+H{+Iq1M(+fQs2XrDpy-D?7crA)Ct=oPdgepupJVgxZ50808+L_Rp$6e}&M zJE8X4x_%CE4rR=o#X!2SY^CY^fZ8h_zT7vnaT9HAcFog9LIcfnJwAqj0wFa#Ja?N4 zOexz2`r)CjBxP>IlqQ)Q?um%;9lOyG^G6oyVzefya2mND8}RT#r*!mcwvBr_cJCB> zRrr=<|0|yXka{tL3_}bg%48?6TDzQYgru$UHExo?RPiK7I$`RU&32Fh18i#UK>qNQ z{076BtR43b%H0t3XNRjs8h7(H6!WLbp%WwwsR>`w6uzlvP~sNF*os6*RK6!pjxisl z@S}P5?4uQWXRj!w&$@R+K-o-zcU>kk%-T-dw()S~8R=-_=xe_S=r?paqk3xCtAKC7 z3rEg2JHZYlDG7kz@}0!m6&lDnB-_gFv!P6O;tz#aFJ>g%E$d7mwMW%1<^>$%5b$aZ zLPhw0vEB3nG!%(5wD|ZVacs`4tXkSMU0hMVgcw+a|I}kEm82VkOVxSo>+{E$U#lus ztQNRtV8l&C>|0#z=lp4Oq%|%x5(%?<;S~h$>EZ@ss|nh$cm25SnR>&TOIAh@iB=#x zw{*k*XfG}YaYk*vDrS20fo9IN;3)YCfco%^sxh0*egOyDkEwoZdE^Z`#d@hv$(l{y zm={I+9M41df^gIu`9kS-Hz%KLOjjjcqB?F~Sz^ajb|KRO#DXDtD;;YrK=Ug4q| z823$lQZ{{b;X@1BK$cPK_1k+e4awD*)7zg$POEvc=n>JU0ybo9P;9lOgQZnjE1Wk z??0*dKuVGX2Rmk0km(3gw4*gV_gX~ z!8}os`PhKWqT}1+boO(catXP`os=(#3Qy`j;e{7quNRhXPU8nWf-n zI@~?#1hb{5UH5M*iEiE|?-im;1F7L9B;CF>ILpf~?3U!L|Bf5gqi0_w7F{|YmhKk0 z*)i{{#^7DudqF=()#7NwM_w=uGPHlkmhjQ-YW<&iJD_`Gwk$@#~C z4dw%1PE0E5UG{4Q2oZ9R>gg+Nl=it$p~O@5wl~D_`QgTe{s`g52yP^;#~-v3uF@_& zRctD;rOV~sc_6|@uK1Fvdq(+q8`0a18kg@~$H>LsvbB_iC{_C|W&5Z2g~p@W@J|_UVFIIPCS_=D z`Oy(0t`*-{F~2v6wDu^-jn{q%62;y>Ch9886j5~AI8XE8O)Y=o0Jx+5{BEJh=kHM+`>2l;jp?3yU|hk z-F*3Cl&+m?#bfUd?gDUv8d(DGe zU*zN2(T9)*pT^DrE#>|vrrN<(a+~E6zfrZzJx%?F>#Z76D_f?~%UR@bdr)Ip?S=Rs zbx5W@_fl`CCta{8l^^N;qEg)HrZysY3EQ>$jxjt_5&A>?IW?}BcDX-@_BED2a4nL& z;KHt?aaODWdh6&aZFv2gIaPnrkW|d0UJDRG)C7Uh;1+;=v#%U@K8?0`3J%d2)%==X zI*!8LmAlWj;_n~LTLaH+e*7AdA;ZKFxCOVC9CNpDvMcU{pDOZMnSyAKGKD=wz&))Q zRC^sU+hIW66W{1)88I6yMuTK~i6yy8EQ!fI>aaonl#3rM#fhm~%K?3|u(Sof?h#0i zt;tFd^fgz{_8Xd=jkFTp|D zU;P@nL%3(Oj$YS6_Sg@(5Aj*NJj?T~6tVxc##q?u)$V8}wlupX^nz-DWga7FL&dmFSmPl{#!_=H8y;4f}0!vn-$5@bH179H0Q3CGw=ByouS z#%R%hCqV5e!R6z43QqLS_<0DSac(g=r^lq&`J}V{w};*TU%{IOuDSHR|K1e8bbk^T z$61-iD61cEp{Fg}+X5XgMq8`9KACF3UrBpbpAt2^u-vrU=u3&bm5>zpUN%FwC0t-h zVo>uShg5AKLXEx+yl77M9IDu-a47yJpG6e#66*&1mAFWZ8m96eI}mFJ_!03(ef4qJ z-3Zi5_8HXeJRw5M<5F9PZlR0}?S@L^W0n1DbcOXz9!Y?HBxBIdn)*D;kWM8*$hOv0 zd}=EHN?jWz-_9y$_bnR8n2>&{uGlL`M$b+H!Jp?<+}=)bBJcKwXfCaLQ^9+N|4J(w z-{t5H0pmhf_C%icae=%#v@My3(#FSW2F7{Yz7k_q*NWdDebXmn_y0kiq1s;?cB6>HktX5V4X z`Hlg)(!d6MaRSVe&Z&TkW`?j1u`a?v;cPRW4cimoXN})_t~`-+ z-*@nw&Xi5Ov}23|A@JbCPi9Y(dVRMU4FUh}Uy_8t(KmA_vb{f4K;FFZMypYFF_6 z^@uYVwac002eQsPb+HY!|+Wzlemi7qmjw94;Ud%LsWR_@S`J zb8c?#8etLhg;o{@Vam(@siq5hEDjF~8w$Qtd*eeEy!CpWiw))-?Li3BxCI0vySv3k z6R6OIgxWjccT~?rZ~$~^5J6b=Uaqf0csesIUmk?9sccXXM^ECZMF^LcmKqxyLozZ* zsA*`V@8NWZA%GjWtTT;50_7nUU4PB_(acm;O-%{HLAj<_)e!t6lZ%d#!Ga4L8@s5q z6orF>ALOV?XKYA?#-c%#!j8eyA)DQ?{rKEjRKy|cDE+zJ{47ZB_?ot|PJ z6)oA|V71_2heht{;GBjNVe%GJ#+EGH*t97#=WrlbG$z5$+scg_0R z|Fk4+V6X}~Yv?DXbcQ{Xiw6hkEc!cL{6(8~pxWbr!DhtH9ljOp&*ZZD+@CV+29Y6L zbt7r4%h!)LB;o-+1d2(Q(Vd;y$LM!Z8U*|FJ~}uH(K(gQbmm(%dR$rA*@OT7ks!#; zqbp6b!hu~-nj^wX0pyppHN7ujE)0n67qD)`OW+s1ZHA48{rS?Vj$pX><(7m-?+(B7 zM%Bo_8dij#3L8Ojp@Q6u(ZP4=&Ji7V!_r}*s91BJ>(VC;ERX;U1R!)QL)|=PEm8Zg z7dty4Q<*@4#cpf}C_>DkPjQ3@f&s~mc+nk#Fu~E-g{#Gauxp)C?4n+?b;ve58>Q>xNz_AstfyGZftI9kj=_3B`r;vNUc0j zZ(_6+75P@W&tC}kb0!B?O!ue(Wu6vtHijS_wYH`@XWoO`UCfwRSy5!8^aDaf_BpUf zNJt14KgqEh3rD+3esb*(hGXsq6$CYm{E0ghcCWx-)i~lG?O_oYC%?Vjy!oeR7Wy&` z*$xs@GSR)?2N34MHE#4UF);M=GBW%QcZYNPV>)XyRi0r9F}6Tj20^cTbRVJ79)vcH zj@r}H6Q77k&4+F*63hC_*;_WwS^7F}{BCcTx@=x%Voc0U<*UF*pyZ3HxkeYBNw*hb zi6-MAVv03*58l0zj*;{ySMU$v(K1!Q(>_|^Yi){N+AfUN{a0o`F|4Pe!qBc04EjVs zOni;&V8B0G01g93yr2T1OZ6tPkB|8RDJd4m^Rh_W0bqgGS4jW^VxnCpZ-^ZqtvMVpx0Y# zk`qYu2+GFatKF5RFZzatQ1+u*GT%`#%aIt$OA56d{=rPMpjZU+pL#nGLL=&V`u=jt zFw9>$lhdSt-)YT*$ZbHg3uyLA#Ci;;fBjtck1Y6hf>lqyosYJytz%XA({%mA(22C}gJqW#Gf+WLM$bC)trMs*;E9o(5_hCX zIy@*$WPe6_<3gTmR&#RqR%%-Fy8{O6l7cR_e`zIur>y z`_h;=%dFQg$M5;wmoLN&000U)-eq`P93Rm6`VW~|%;W0|f|kR|+9=4&OV~o=>+1_e z;QQZ2Jn47g4ZdE$S7Kkx;sN%;bj7=u8=cVl!j>ri`%{AZRg)4@3U^6R0*}l2zpu|6 zoX!aY9bM0%13lHJf+r8T5l;fuH&bPsT&Z3F*@C)MzhDvHJLFK`&y&)%X8n}Uexk>V zeKdynTfEZ(0s?>h5$Aw4HSx2Emf-tYLVYl8Au1{iyj~U zMQ8qM)w`wNk7#$TwG#=f(%}p48GtU7W9CU1eWvYw)7g1~3|?8$B|N%VD>jKEJzgtD z`EnwHc6x?2-B}5K4njHN{Bi~t`2U(2Fmvt3cAqGn@OW`=s#qciL)@1kd>xaM+NbEl zL3@9LI3Krt(CFy;^TmzcSrl+_YpAOFn1K?wuQVWZj*i%34h~sFmy^Bz@MWv5#|N_? z{c{(!ySKNAukm{RutCbW=|Z8Ui{>ECzb?}k>urBxDP7{*Q&ShjHfINoEmVD)ZSEkD zKRv!J815z>Q1q-c4N$O#-F)q8FiAU{uN}?^-L^m^H}}E9+EU+&K5Lb{0kG`!c97=T z6;I~OIx`OI-}4RNDx^@tD9ZltkmOD{~b znV`>h4-pahuHN1xL35*{Xq1$cLxns?=krf6P01fYvsru(@xIY*PDDAua2WjCG}ZPi z`gObUZ@VC48=LR{T5P>ja{Q!f>&Cf3y{=JFQI-JW<=qe@6v;Uk1c#ko%_|f!Sr+Z< zd7s3S+0z;EDgNyvH zE!jsS1jDfs3A_%-Zg+=~5>pdpxzjZ3IrQ}1y1PFNNCh{IKHQza5E--EJ0pPd>;dbF z8xYt<&de-=z{`@p=J6~qEy=amY{MCkpkgps|4<=(z8!!cJS6^+lY`^e>4^@-kuEZL z%`jW<#dXWn#3b_MZzXiNHDk1^PRRbk^UQKQt&lJaEPk~2C(W`hk_R~XnIH?iVWOv( z3v#^T22o50^Bip_zb@WGAU6nM#p+(Zn2>dP#-X0B?xqiP?@u5z5fNR<<)&9LUH; z4nCRzjO5w!@J@I3>!?FDEMIZ%MNNc+Y=?aRST4Lr2Ib^bde9cUgWn#_=rp;+K#~w? zS5|#CW&55obQ>vHMMOj-NJCda0p-st+B-<^=_idZ9w|Bmv*6-3J`-YV=itygoEPvY<_vndP61tPBR+(8&)#rEs;FhUf8D-u zeBDccAi(11D=7^yebs*3IS0K~`@d0l<2(!8c$9luvR`_!-gy@&Zxu^=qaYy#=^ex1 z&MxO>BZw$qthdqbt3lk*)aWAV$FFsFhsP8AuMvL#C&}jGYFSTzxEJ!RcDG*OvGv+) zBrlM$AKlcq21dUR&-Z-~)GaJz$C5XviH zFb{xYHS53u?R*U2qpjT?ji*R(2YsaEZg5_Cnam1~5pwV{HA}I%SayS4k`(Xy09qG; zpOl6(%(we4?hF%$8g3lio%oJ=Mu!6P&kWn53&5oaH$m|GBN`UM|4!{LpkpvE-rFR_D_wpc^_un^w@cw#i zcgg&t0j*ZxO}_* z=CAy>u8!iXCA&>S-3NHrT*@{PfU8htDS}4SW5-~#Kdv*iwYAgwY^jc^@AcW?^_-%| zJLH8gm@_ai&~dv@`HtsTVN-$cI)401uJ?0>E#b7wfhV9UlCCg`NpUZBUw!xaUdIxF zw?*&uYn3?w6eg);suM!;iwxOHY4v3`EExRg0O{%#goko59l*FDTDdS{r9hww5I%%p8Pzv`i~C2 z;=O(Ao8mwH7AkZkzg0S^7#vK8`u6GX%kvY3niVvg^>O1n9>b>Q-|lwCwe}Qlm+fZe zF7Hch5>Y^WH*c?Ldm@c5K>kUnKVGDP!l2D=o-yo^yC8_mio@r@@oiwQc zTAXOvs!qR2e`op`I>u*QWqEMoVX}Xpfr$mv0)F-B z!Bo(~Js?Q`T-GLk(ln>ZwhsprQ$|%4`=ryn$#fynkLQeI3uq%FfspSU-bvyFr=mtf(~F=_d?LU$Z!8=xb108$YqBdyTl{2DVpzGK>v#&1?T&io*lzHeE` z?O&iF`Be70p9H9XM7aj7xBjmj#(7$kHUD!@g^w>q>CAi&kKHroyF}PBvMCh{B|nFu zv#4PfJ)dyhM!&FFm`&w`L8Na*<5au(ysx*jm&N9R965p<@S`cNO#AAZw{r4oaY|}x zlO6t$ql`?hLc#NyKn@#aRt?hrGhokuJ`FQ9R7a}k(pOfq zc~xcy97~@9>d?$8XB?ubd#>ZEw%IpzFo`-euiL z7mFrcbx!^-!FPpXO-dScoQC(**@Du$a<$dDFcRC9s?=Pg`shZlCe@ zDR8wj++u(On$Xi>D)REh`YwCfWMF&{b3ZT&7Hr9-Jf==#aV3lv9)%rQ9ZEu+U|jr_ z0F|a)U=A$tX8(gPIkhfsO=l&y#~_715D-qF!ZpbJz!}g67)=js-`x?S>h+%&sf4I_ z3LHZ^B%x$SfZFoY{ulLAA>PX;5h#Vf0q|h^=?Z!k&>xC&|0}wVwa<&VH{_nlU0^vZ zH#cr>&UjfH7rLQ(DDeC*D zBvf4Z73p3{C-ae`AEtndPn!`GQ^F##4@6NqaXf6z*hej&ELwM{73w?CK&{>u{m-O% zOY?3s9PtU=Sj!2J-QE^VqJ1;-$=z=e4Ks4^plV`RM?GUz{VN-E6}_h>P?9&=owfyc zw{OOC7WCt+@MebzKARI_%gdn*bnkQBBB#O|K}hN4)VTFpfL(WWw2@93=pL2mGfGa1FW*A~sb? zf4~`cO&nY(2Xi|aaw8)L@@y@Wac;eGQ|;qi?1mmY(}rFCmvSt@f(8?ZNQrUNphdLI z-|>>m{~R_q{D5tn7cx<+LoN=dW+yWniqUQ7{x;(jZ{Ux<)m_aK1ag18^o_j{E71Hh z=ndgRJ@-%CiO|E)2uO%jtSPE1$59jTWP3QD;Hw5;2KV*aB+RaWQ#`4FBR;s(d9%++ zz6HSIctG}*PhBK992^0Tya9pC8$kQ}A7%xB$t&JBYb*^|0V^$L0(a+`BX~f0V4pu^ zjqCYyVq>GSrMllf+86~7*I}S(vk2w>j6^O-ZKIutXy1Cf_0Aa<76<@#=qtw4U4@?f zl_kJGK*t;MO@BcpPr44ftirbwnT>j0Ih?!M!rTmzox_?5la}N07>X+*Fnn|Ip`1IW zHst2Kg}i5nF-p#CcqcN`LKKc156Ta}+2AARhqJS18jp^*wp-A7(^aGqB(a-q?D0rP!Y`u#Tr ze|Wd2#NW6hy8}Sz%Y?vW#FQ;F!d(9PAasj2AED>cRQdcT4&72M#IvJTk8f!~_3#8; zB3IxUVEDqtuFC54-^ac4)qR=LCR$K7FM0!O9w0dNw;_*jJwH#b73ba>2(r{8?-1}J z>mRVKP7CnRiB7Bo_~E`&U~O?7UuBnC)^eElHx`e#O&`d+rV@v+pZ_!+y(ST|Xg}qg zCNm44?}?i$48%3$Q@7YL9?IcK>ifYk&=zWqer z^o*7#v>E;4wf7Vu6f=wT^AJfVZJUw(gu|v{*}}$=s$dT7aAHW18;uF zm6XU6PY!>?jc3(x4u!mR1OB`}g-E>2b{EVnuR!$+C&baM$Y~_5XqEy@5`TMrQB6`Q zUEWsQ`iNWepFDyEkAWJEW_dkl@z|!T7qG2N;`FRvnwH4gm9474b+$T3*-ioL#gmfY z#`#E;Sk&(Q@i)`wVu`xE(+BZgZ(5tU`XQS?PCf*BFX#26F*rc(fMIuR17EzZ7ND%d z5ry5fFiyBHnR(ZN=yc|GSqIYaTTn4yOW5}^LQ%fSBB7RapB-ZM%mP;04&3OD_3PCa zYM#h}LB4@DUUQufjpe%?T^Lyf&!mz(zR1BSCK4W}D?BAuFAu@QuRXYO0bBCsW7Gp1 z-IjkaZy(bl;5JTEodW_Rg8=Y0c`yI~xP3!3LY)Gt;)O!aS5;w8&H5;*G`_){=nw}3 z;7^;6AT~4Vx3e3C)()?=OujU!_g*$OB?G>oSseWq7D{)Jy5jf&{iD{FFFNYrmILEr z^pmV}GF^HUFe(+si%m`yhg82_eCbKP)~9GroD(XolbG_#8OCsL+ajMC+y2Wdb31J2 z)StZVNRr*^(qe8Q7x}7b-E_!$4D0dSA7w0GfIF!(iJ^vei0zr>w@tq6)!hDEo^Q@= z5h2>hi|l_}Vaj*Rc8d8Ch9hp+7+ev9)Taay@S?Ys7VXcX#%&T&SFf2_UcYhAew?}O z@HfIDB4D=xKakB83^`aX14E=)D#)u`1`Hc({|^9qK!v}_mtX!-_;-+WR&T-kj34{| z<;$0gSs>4W8urqN^>+^bnP*hY5v2e237zc*>}rI@4NxN%y9wC*JZ_i8ClH}vk) zV*h4xa>Bds$Yks}2l#neXK??qBp&w*3WT$#AIwI0K*Q1-ilzbRId}@x#zbRKz;-Bm z>_89KJ?Q6`ih+@()RWJ_bXGa^C+9%R{}?QZ(}yiOiJ|1RhEPv7UwR!wS3iXLin}md zb_b4Is$sR}A*|L`!7BDCJoeUL^ww7xx%Cak#n)l{fjSsQ-+%=@Mvdy8vF{a92o=%+ z8d1~>7F>c&>_b?uxd**DXV5RK5Sr6VsUKW~^VTQuBo6UE@CqSGwV0g^1SM3%Y5jF< zE3d`=Q^0~_z|2fwJ{>0?ehIJbcVOc%0fvM>2XXT^bWZ*V{KY?a?J6hs%6|Ou$3h!> zczD3m(^KqgU@gdV0mhqye{RySKF@lAdj|Ioeypl$U*hW7V$F-c2ZQHoJXhg$K)$|? zgLN9O|E8rK#J+u7$tMgDIRDV16`KCg4&M=PH|@|5EfvktUdlg~N|?TMM_=aUKruN0_E%Ech+w?n9BTSQ-m(d-j2kIaKZ^l6MCO!V7B5u21eh)h>b50np{u%tPYb?=$KRwulP4G zS$+pn@*eiwuv`$-`B*c;-Ya;(UDieuM+t>wT{(gREKB>o?_T#;^JZ`H|8K>S{MRDLP&E5L2rmXTK67|&RVYMZXAf77Bit_w-SBqH=?ie zF7$Uhfd1nSp}%Jm`V+>gp2^UdkcNRF1sF871VbWE!g5w6)%f@)|klqP0D zFFYH;yKYgfy&+z|C3sqA&Up+Ztc;1{HKNYIc-d{L_bS*>E)1jouD|Fy)%akPC&N0^)!o^pC8B-u#OgOnSjK?g>T{msql1 zTyXA3O^z&Zx%pl$S`q1f*RA66tSSC=bF&6MFA_0G~C* z@9MvsT-U|z+O+$l@K5Kvv~Jx>;LpLe%)NkvYnyTA9O2q$z4-n2O+_zg)v6_F#1`VQ z?EUua*+e)m$Ku7aF*RZ`;T(){z7t_>KOVY6y`eJL7fKeP=wmYzeTFYXKgW$2;I;>9 zUWcIJodOM?G-&!}5XPC%A>JMsbPPrzIT%FeaBz4YhC~#=d`dnBP0oX9cmeVH30TiL z2eauVFrAVKy~tu{MxG$NiPJYfhCBJ~2?y)ow7nX-^Dn`0F=4;t226?fwPs&{8TEVn zowaby@yOe zZ=3m09=#gC;9TRs4&bwa2Vf!n>pc*#o zAH$RM+nBA@Fj+=5KkE$i7F>qj!mBV?bPcAY=M501}0c(#l z7uUj^dcJDZc_>Xef$o$8-Kp;TM4UwbndhJqoCD=?hoK*u3F~F&VY&7pY&SlK7wLt- zBp_hdLktYfhi*U)+?Jog+Wa@5vKBe8rl=0#Nv|;@`6*WBzD6?T!;1WR?5Y43X4hg# zZXF!GLNQQJ9|jcvjt2M@{2jTj+2iw!k9l7<+mo&3h*@vzwrJ6&BYtQrhnAiDpiM7B zbnI`3uDUKzFb;s?5c2QCqMCmn2gm4h7`@;O<-$qWkcYCGUQCZGg!$Bbn2??`3O)vX;&+3< zY~qQd)E^RwKT=^3Rw6u|)5bgSN~ov){#0=C(DhZKE^XqT!jN>IK4IT)dL{ZyEf<*f znp`4yfAH$ZFkSTs)*Gqjx4*$c^60CJC0#a(v|zs(XVE8&`o2d36e*7fF1P?~;+p>6 z=@>-)hw(RCMIK_^W8xFykwo_QZxBW~U=W-SRd30IEJ=Tk4W$h{AO8{?C>M@g0J5(D z5h<^*wx|~Ir=?ynZP^}yy@8${^DSwB9)AS>^SFnzwqt)UTZ3kOr)FvoeOq4`j0%IM zT_{woLZNIm4a!63KzaBQ^c}Mn{hc;J&2zkoLBLGv|_5RoS7@m1`}>1X}u z+vrc+)5GNudb?+!2jzg0*M9VHPCzf0B=mCK3+*Yn7#{bKxP)GxUUS^u*I0h+EvD_e z4_(UJzVsfQmR8~*)jIc>iHB+solAT`SnsK1eOQO6^g7WW4v`+%bmX*{0dOdE?;iKB z?gjg``scfF58z;J&%M26inaf#dz#`b0%Fg@Z|!+ZSaSgr)?I>cEMdRy3dU1- z#9W38;qMrIUf@1zZUymvxxjwN)FSHlMKGR3S|E`6yFcMhHLpRnq({9&(>I$mVJ1|) zGN9s;2-We&U@)ba{QNB#Ex8WYy>F@4-=@BQjkG;u{1{dgwi}#Qtqh)ttOkTil+glKQAuAUAq9I*-_i?v96{ z;G6_`$_u&C+bKVG!(?tbMpFM_9XTbn4r>bEVqfOO8t6&K*2@Cs9oyoDe6 z!l_4UM8BDrSwr~OQr~%v_*3;rI$H-*)4`(tHPqCu{HuGx{sI1fwY9aC`|Pu?#a;l} z_tbUbnNa60upSqMF;jP9XviMeOpb^5;&cSB%Ei?6#faE&oT7xH6jSLK7FUkRaVHV7 zz5>DPPhryfGYE=1M{!=@@4M~-;eHAJaaZBL;Tn7hd(YJp{?1D;U^HVtkFcjcZat$E z7KFVq^$f<{fP9`V)w>R9hJlmvpcj+}W6}bq)AL|8=M;H?5awf#KxteW@j)8p#Zk(G6m)esK<_IT9;7?C z2LzMn-&9(U-Q@GV=p6L*SC~wiz;pLw%*}?- z0*>BO1^yg_56^3UFZ}o~$9fC1(>K=@UNPt6B zGG=c%j;PHgn6ar8krdN6mSEb(Qbf?t;c;b@11AtF!$0mcg4Ul!;CjM;J>|Q={))if zH|`od*SxQNuKN)Ubw5;KUr04i+Ac6dV6W$w295FL{l=$|_RAHuuM?DjL9?>pzV#jg z_f=u?{->~AcnYK99*_nk?vEwiHmw}J{0JBF7p+HZzz>!&Xm1;bp6&;rLHT7soY2Ml zD83!G33A?PP@jFCwEhY5d1ZnJRLSqlQ?KX|avTc51?cOahOYL>lmkiV?RgNIlTx5F zITM3tl|efs6GJE$9b@kz^3W5^&Zx!w9M*JoNFu)9e+~%UeS=;*fqGUZ>6(13DR_g) ziPadf?j}aZ-Gb}(2M9R$3c-o5F)g(Q;mNPzJ8y@;UY~kE%N8vhyLIdKd*RQu&)Bzd zaEP(&-d#KAyKkG}OX~YQ6?#(if{Bd>hELr`HJ^>ZmDyOhs~j`8GX5omKVeT1LHJME zSdQ?GCoy?L1w!Kp|F}x3d*Xh=KS1Dr5dm?R;kW*Z==)x4F2i@j4S2_17d?OE+)CKd zIkYCNXC6)(KZJZ=5Y>G^I$@s&m3>jaNPpI=>@nOF91>=q$btof+j&Bk!U{8mG6{7U<3>fbBZ+kmNUp zZ+M9DdtZ=NsK?4e(hU?#a%vhpUp;cJlc&h5hSG#2=#oy=^gDzR3ku;E{}iJ)+=VT1 zq0`120{`)Qp1^g>ZGJT zZW?KTze2G`Z}jff2l}QXU^^uqA*-_y9-EK3+eZUTnz8qm2P7?N& zg#G*4pSb>E|$-7&S#y6XsE7d(?@1G7G z>i6oNiG=@QsEj>;zOIL$P1;{8AfCAMyy)Yjw?3yne-jSdp21=3Qw&;m4f2Fj`{C;$ zH)0p{=p^FqL+Cy>1%1aKMz^tt(2h8~liML^%%#`gNjw~L1D)ItqveP#=rt)9nhUN# zhdiPp`HCML_Ms#3LmS7v^gQHkg419}pJVFLS_D(>EzGIMG{Sv1X}H)DU`D3o9hT+R zh`&Xoyrdkc#lF+^7_ovpXz*d^g&cxG_)&Q7s>1XmRPzU`F`4Q;ob*EA!58%R$C!BF z8J6eQ!pz)C;IF3I|6kGozkvTI?(VC9u(yxt>E^av*UfFEnXBt6;r;vcR)MloU+CzW z!g}&Pct@upBCdeAzZkQ&67O%K-oKG+U&4O!h7$;(-XBc0KWRPbKH~q0jcT8VCfa}Ym_*nuz2R^ls*HKYSFFnZf_sFFrkp~v+0On`EDF|-$6Lks)8Xg+)k zTG{V{9Nn*Xcq!CopMx*;_86*d_G*lINOBGJbL#cv=jM=a*iOAWiG1B2>if}o^$1FO zD}F8@9+;a}jnV6GBI?L9ETG(p%%~?X@EYFxUy&!QhR2RaRQsGWb;!C3IQvY2p0*B! zHtz}j%^Khz@P9MP0mfg)#buR=n_JAu7C*G5{;z<3D*d6Qp^G8GyI~)dM4VrUsd0q@ z|7jbK3(Xf!+AoX@Y$)~pV8)-Y4RdH#LiQ^Zd(V{IhSEbJ!A6;X}-sKzpZA2cY2DhlW5nCCyLx zuRlrHS72gnCH&W(lKlRfv*h>B!gJMmxGg(Nyx&m!toItQA2PLJrb~6nyst~Vtua0k znxyx1NcXYc)ATutes0A76#d+jFgP*~Lsngf<}9AQpM&9|3(%cM&%OI4w1}G(9QUB7 zOA0!T+E2JApv#y;BHE9LN8921=;y=e>XeMG#4XGhok;^4E;t7{`|W5obSqj8jVCX6 z5M7*hp(AOIp6-Xx!!--N+{owqkp~RUht~W{Xh+&$$m%;7weC8a+wUPRI*)|&l6Plb z*hjImLgEMZcXNpsc>Whj9&ctg_lbJA?Rbolo2p31JcAF_zw_1y7!`Yibip&Mq{qxi ze~ZYy^!cdv8UG&g^6}q)_ucPR|6h$AJGY~gQ;deQ^9tj!V^?fbRMbNIb{)uXYC}^) z2ZP-g!fet$fq&?lT&n*P;sL^b{c-YpjDHz|W6R0!pTNYmC*i-Q0uxqM!kfZ#n@!GX@Op&5Z>s3|2IS}T0?6M}k5+c!b)aM@yBkS?MCcFH`45# zMjb?Vw^R)9JqCH=1!cnBCgvJO?|g}7)@#tzY&qK4Zln9}M{Aqi=tw=HGkN;XBll9i z92L61!>H|OX0e=}cL%;VTZSL3)CY(H6t!kf}M-#o&b$^#Lk69N+7 zVo5$kEF*0=oBnMrbL&CVgCUCFDxvkwRdn>(%;2psgbMe@+ci08+_li8Pxl0iZFASia|m9ME?(p z$r1QZi7Q4J;U7wg9UNPVNreBzwdL?%eS)w*3GbCB;klv$#jdWu?{e2IbnQcaEs~zO|5-DGjNIxDy2jY;H7VFW{asxUJ z-$Q;sfwWvM^@zhzB#pZLWIgf-f7bmA$p5V@0v1#MAG6~Xd=g$_8r42)g^2WeOiicz zl}KwrtBdOqe2BbY>@8T(xw0dFY`5kbymmbhkGJ!Tpnj}DHL1aCas2(~{|^5A9pwBU zPm%wd)^_yhrK(O&(I(E$%O;qajYE?rUqO95?f4B zf*|?;6W5dy_GOq5Qx5MHWm-xPq3v)mMdO7ZcJk_+Kb29pSB|+J3Bi(NohDMf< zA4rGMlpJ_&xQ^iXD#YZz#@_PRNIm@;+Y4S{LhMaM5Z6ZSeTo^xtt!6R=<0kF-JPjV z*dKtL;{kM}UeU&OFJZrzYX1P*k4z*zup8}%ZKr;ch>pYqt*Jk>9kvT?hV7(0*-M;q z0PX1C+YUPfMfW4{-Ej?zb6#Un9{GY?U}*tiOS!Npw~lh)B`nrIf%23RSggJaw|L5f zEb@xQ5)W`5_$O4udev2oC)_=E+{1`9JR7=?(bKjI>^0QX(W+%D-}b*@PuMTu&m{79 zJw2z^BSy?sc5ql|;OxA3h@)e)@PIP>jV&Bu9IyvI(HRIP{-3^)YrhD=>xwCk6ZR$W zUsVF%m{P*M6yuhbz&*MYE{n?Gys#Wj3r`a6l^8=FZ#0F?48neTAuJlOHzBXj_=`D@ zf4Z3M4p+R0uH!vA}ymmmzdq3tTKf{c}&oMjc zF&3vkLrg&}Hk3=}J)87%#-%#UJn|BoifS+~qlW72734ig6HssH>U@OyJZVJ7WYPtR zXlq9p58F-0c+m$sj3%!*it{2K?d=Yu!|+3BYqJk+hwddkK{?|fJ+`xbI(oV$KxImi z@Q!|mYcV5>Yadu%C}F&qxIZ|B*Os5aJmwZu!V55L-7PGl99eT*+84k&A@I-(geARz z-`;yLnOlNkE6>3>rVQHD|25Rq(7ju?`0swh_gFQ;|1XVdpW`z*In!1{ht4GYXB&+f zvtY=WF$?c~)#MwfDEEUpX#hhbOBng@#@IPW#0+3cY@vkz+9Cv!$@O1#oUku}_wwTc zdynYja9dQ0u?x%KIKK?`^U5%4PMKKG<*?$l+$ja`c;7HE6NaSu8G9|CRB26zYP%n4 zuD;~=l!@n+-IJl{k_;7(gD{((3)7i7(3zTvzVsZ!*WJLv>^DMh9l1kQQzooBAU zBbR`RyFmFJ;3)lDDIIr^o_5>y1bwK_v>#6Tjx<4s(TT(XX;lA5(Qf1c>hTBBX>T>KeR(~;IREU9QW2>>>l1n z@(OdQ2Sn5RnUf>=Lhk#~ln+ym)}SYS?rx-a-L~DuO6mi93I7y&&ylGw;JWPr>_}Jo z?0qCSVKjLt17i!SNi~WAziD6ikMNga&-MT5M<4ZUX=WDGYxwYK2KM%|3IDm3EnBun zPX$GRzrKzkjC{9Y*p!1p0|c+hM_4RlUkLx0LioiL!+Ti~JeL$v-50}kQ3=K_I1Z=z zC9tR59Xb0rM$9Uu-g{j5Jj)2eKD>eVWqm&&L#*p)`Wzwblf{gWy}s(WBrz{nB3|w5 znE}&?T=?v|59>8IsLl$ZLHd8}u4kB(^cqWe?_`$byHhR#x#Y7;Zb{hRc@A871RTF5 z`7f@wsI(f4TzUpZ(@#P(;23cMX}d9mBh@r}g#H0}h}d-#i6>rQ{-JxYB@P?lpNW3n z8H9HV48HLei0n!7Quc_F-FfhF7US_>=}RS z$m7KO1w!wehUSWOJp0T86YhC8C^+9Ny7x}rhHp`5{6T=U^%@2Bj=rjJ^7mvfg1((11Q?G{^zd^`vv^@KOq16 zM;~?kK|{k{Venu-{h>prS`HgFb%SyrJ+yAs2AYIF=YX-(Y#8|M!PM9S1jgiI3h}>x zOaUe=%g1;+`JPmK?o?DR3knJQLX4SJfKe19XBNVCMj>n>i%6ptiTzuH!}7#@-#D1G zUeGbB{VdY^8KU3o1ro3OWuZUifU-vtRL7^I-}nsrIURjT|69&2gW;0P(2u?hla)6y zKH;^P!LiR~+$#v@lMQ@-f})HtKlf0o{UWOU0=iGe6-j5UBfK`AkdBMF|I%?$+EdIu za0i1ZN6ks2WM8Ytq4QGjX8b74v7V2F>B4;JI5DvX;||ooFBxzpJ!i7|J_1qz+pRA} z4(uZA51ym@CB4POlsbVw>i~W(e$K7*?~@Kb$E59dVIFmoJj)5}Dj+SB_!$0MZ)4nQ z@&R+sVDzGM7&AMc@X){j)&6`fPR3XNU z6*^s8(;DA?^PS`YNdp><2!+1yZsGs^SLR^yx*3T2(r|wHRaF%|){sg#9 z{9i)3P;gVygZs`%y*Tg)@kWN^!M2cJ-+WTi5PZMFTN0ln5?}1Bq~1(9w&%2z3-jo; zsqG0)=l2qn{Fbn;f#J%#=o?WAgB5q6I`Vu$xU9df{0NG_m6SfZ`g_e+v8$ z@&8)`_Mb|%|Irr|&E@2@<@NMN>YAE*TAQ2u`x_fNvEqT#O@u>qcbiJTDJUbMuM!sqUllVH=rCkw@6)!E$Pz(0gW~Ii&fd+Bc%w zXP>X*OW~JE^`C(O#Hz&cMU=b|AQaVH`HI=B9<_Zqny}EIl%A7ZOu8@ zM4iCs1!pmMOz^wwgTEpTASWmHTk&s<{a1{C%a(HTef!$z>FK!+9W=;+Qq zuOaXsXgUgd6Lw+Tf;8g)90ae3^QDQtuj`*J>c77i>A&%5gntH%=zbgXUkXiZ5`6*A zJD(!DNaFCEYm&BOJNSe)sP%ii; z)?;o~4SBG)7`Emb>^I&LI-FmJXLVfv{5)LqvOM6|A?quS^Kxq8y1xc?+h3r^#B8*& z+K53>r5Lj6Cc1={LO!$*W^3-lXP^WTDhW8UZH!50_*(48a?HEiX70>Glj1A4vdUUM9At~p#i*?F~7Sx_e~P!FK{h8JNs z)j`r_>738Zszbox*P`F3BGG(aA4|1rY<7~B?Q6ZY9~ zBvWfo_>Z2MOYbiaBdG5Wk0Q^)nvZ)v@&2IT+;_aMA3(Lwnvd|-5-*IniniQA_Ue|jC3@K2||oqr(lKG&&Cb8!tVpnvx{^agW} z)e4=kD8F9tF7xY(!nX)Xd@g?GbANyyGd-ggJ_o9C^opbd*gJ49SW#4u@rT}ue$AZ2 zufsi@wE)*HV>tfc8yKyAfI$n+qnlF_x;q_&{o2bg;GBr$b;HL9A^!J1Tr2bfYZ&$b z^Yf&9=Jfzs9&oIs9G#r_6voqXFpRXJ-OQ61HLnu-#@6Vk(w9PouhICXbLY;#1%FN$ zzL?-^3jTuGwx56AM!t1xMO{TjQ#&;^J9jOuQHkBU^&x)gAUptvp373``0T=D(ttio zvM7$hb#5k{W@W;DW){XoWfS%}gnb@tDPLLl*^sZX5co@8&nPgvVO@uO4$pY0_SJm| zd!I~b_+_K7S2m_>yomg3l4oLl&cXc7e7vnf>igU?C#6a{Y9{G8?)#S?1E(KIdW~zF zu^E4;7Q=VG5ts%L=h|+63G+>_1m|;3&C2Fp`v&L9A7s&M2Bp-J9wh!Pk$TDHD$f8gl~!W}hZr zdJFdhZ^$du3BAC%v#dc!tZu-bkBq(Wob{`dVqd)J=um-uUy5(O z`Ns0s)`J`2FXMi$eI6ik^Jqh%(5h7jU3qzZI~5g+acXKdYkT$5#CP8|C9kOtHC1&O zjERDl*AB4`;JrALA`4^ZWWbT}kIKZT8QFrHY^Ud7=+tAdqW5e?n%_d~=OX-rc-F_* zX9&%w;eAx#uSWQ*`J`jOglv)D>7?UW_i#-nUzGTo>z*|jbHJ=)^`xQd#W`ng=bB|+ zXAH|4_AWtd8lH2kPH+n6&Te|%t4}14z;mOinG)6<+fEQa zXFe0!l7DBcIXuYg#T>5}eS>p=`Cz4(?bc$%mPfGP{Sr1?Ux;;KlgQI(Gkhn^=ayr5 z+#OiO-h<}iD;Q7pADJcj2ksv-?3n`?clL&>#kFA1pi5%aBD_HCi?o?}0(RsNttZ3@ z?8SG4wrR7td9#140e*!47Y((~i^#m0tUaYf&z3FQYj^6@f26XqnWw7ikmX8BI;1bZ zCanSVnj=e{jx(r315bq^sY^PdP=so*&Eafsd@=BGPLyE$xk{ah>INU=jNOLzZ7d zPxlNcxgCYmhT9lGKA_*MGt~Rv3Ln6a<2+}c=e2&;H#{3&COl>hhAl3Ieo#8hNe}Vt zbSQBE?~xr&{K_6sMOhgN-Q~+Z{}m1J3-~klx1{Lw_rL$W*LUBw(C^Zv@5tW0jlBEy z8xo|VVlMWC_hV`SpH7hppXe;&{xpn>daNvXO?6*~ zD^H~QW>21d?L8N4Iw|$x{2S7Yhq;;`TS7d*xG_FlOMc1qqVMw0+^5AX=%%zLz&xLD zPO5*#|HOU1Pdx^%xQXzjXV`m2(wvD6K7;F&d4qG3`v56TCCu;8{!_jZO`CI zT46}+eW((ziM52$yD)G;rRW73(bq7X?!)=a__NOA++;prk25R#4F*o79_g0|iwK^X zl8z!T%-2HMM3#sg&@mhel|IT)?$hU2HNY?6-;9F4T#Ua9u4j`bP4zl<>|@uXhmNh)oNrTOl3|LRe zrrOVfd1y9apCw^We$OBvOI)|5Bi8n_#I=8ne}8YPf6r9(bUlm>IS+B6iZyvXrli#( z@qDf5>DQi0!9TN~XFfi3LE;HM|Hm6(qqh<^*?Rd=C1wG@hON6^lGFFHBxf*$$8{&UYleZeL2FQh-prMmY^q0dbHX93l| z$L@#dKOvcX&~b77i}{p7v1Y<+rq955LbBCuCh>Vu}=HFav!rp-Tt|KEQG|Bem# z>$Ga6FicKP!;`$=Bt=D|E8l(h1LV6YK((J5w6%?(=Dr0sVF?IWmIcoRr2S^5VN~Q% z*b)9i!;ivh@==%vAI0EFM=>ZU4aR}#r1>(T@1G8{DaTO(;4o#Q(%|!C`VHv>K1GTW){2Yd>?!b7?Y4n?r139NOba6Wb?dVHTn|BU2 z8y{gVX_48vj6V=U_`AhdLnAx`8WYp$d=+94X=mOWXG&onmJ3VbfuYlh6TIUD_I-LQ z@im$o{?Y$y^egqx`1fkkq=|O(=G|=N^U&FXHSFtc5UU*pmI;p<|%Y{%|yGg z2cW|H9#-9k#rg*bOsxaSW&{)V4%;4}x8Gs(@Z1AUI)8)2HILH%7}F5yr;~HU9Nn6< zfHi5XetlKZM@b0^^72I^2G)B#Xs_SM1uO$5Ek@lN$1h(OXe^?4ELsDQ7d<14eDKHL5#z4O$==-KX-|whc z+t>9=6YG2?Va3Gznds+{guYZ~(%N2AW)L52_`d&b2Ohfb!v9 zwS>JaxXyWA!}~9}ud;?KY~Xmtl|3Ts1+F#5jyZ+%i1nhFBj1po|291@bACAKxfR9r z!gq47VVt?=v)1J2<9yh4TFNQbh3qM)Wh0opiPQeKu-)+zWA@d;@jxA{w?2pNg0tvJ zo~Nf*9+bR@6K9n}ecl<$f%|aWTa95G?x3e{B6^OGhf2U<=n;R8S#V0s%Lh)(5cNMe zEJy5};2toH_dE@>f)drgQt#gUJuIC%bm;K2Iq)m`kNbajiUD7L-GcES*Q1Aa2-Sa_ zyu2#DYVs9SRR)OAv<*jp!as0D7Ch!2mGCF*twWPBgm51mbcE`k@lPTA8T%v9BmA`| zq!9L`VO0YXZGe?|E%}9 zR#~I-nm!-7Con%S7cfrD$+Ep3oJahar3wYjQ`e3Nxwx=-wz>=!9CnF5wPU%0onWv4*Tn1v;74OVs1lc zb_EQlRYKV_4|-w8p+P!MbHN#C&Nz~9Do7oXYQ5yqyhANl7)U66r3&A zP%Nhwi27&zjYftF?0YLJ^7nGE2KY7nW%HkRv%imo|NE#bMgOnAZfVxGt%94py!IsG zfW-<5n&SI?_*wu}3QY@d^c%Yoe$nahoSzPt*+;4VlVKH-gdvj%|G*TO_)GO~6p$+6 z@0$uOv8OwUxFbPa!#lt$5lW1`V*(VNlQ6(H2P;w@2_H0@>S%s}^A>u#e=tV86)sO}i>x)5kopvSC)YfZq2c@)@=}USLq{L(%*Bs7GGHaP?gn z(eLW>&Z2)vKAjV)=cp3&pL`68?uqE;z7O5J_Ct4e3C6C!0rl~RNpBy5u6HsFsdh}L z2k_ddggf4F z|IV26@e2L@+7pQbcs-DFjWr?%*Z!=mH>BO`#XMqpgLmgVwcqmsTFY)gf8|XWue}eA z#h1~K^u7*%{}lb+$v*>%;Z)nC>D9cm$Qz_W-u)1if{wys)n(ERwQ%2gAN@QJKz&>y zbO?U~>YW1rP^tf0MHG<+EEZl{S-CG1d-Wm>piuQO-F^lChCLr*{@Zx|$L3M_i!YiR zwQjB8(5;)gzk-5pM2{YNcfb7dYbbQ@DRMwv#{zxqV=;2-L3l4pgWFujpK3q&FmZp9 z(0+`+A@zPepG0VTCqa|1-y-bAUM|-|=<7x~;GRUhpNw9P2heM5GI``WRe_a}+oZ$v#n*ZVN#Zj!i;N8LL`e1BIz_hd=)(NT%7 zrD6Ve^jU((6!PbO}mP6&OJ8oxPqG<$)$ekFY}Y zn|%rf%dWwC?JfMj^3DS~uKHT{69@rJaks2ub!jAxH0r(gHtM}t#j+&Jy*I$d7>s-G z#E+$xYziT;RLk{?9phP-HM9@2&gZo3-{jqbagH zzy0m~?f*G*j%D}zsPFoB%;wxU?=fILXUFtaFTzxFnDcfYVyDmx&b-7qT0G#>Y6jG2 zfD+b#^y+1by~)oc=k1+sXJ_|K{Plf+wjMw{pdb0ijUDS=>gE@Z=rWdoWZ^?`k!(U zky9>_|D)9ZCH8=eFi)b_r3WzcvG5tsB5vWU>ic(r_dW~rvX@ySU*c!=0s@%_VVs|1 zHvSYP^whMHU^$`3{yQ4a{3q_aY(1XyfVPf$K+dQ6BdccH-?a99@sQF7gthRM-l2{i zVs3Q*MAmvg!1ObJBIhsEYsGuYI^03t?|j?(ySK{mK4jn6`*-!c)E((bwCVJFpQD1h z&u#w`>;Auy|1Vkhe}>>yZzJU4w~@}?pGN-|w^?%FXGrApN!uCQ-p8b~pR4~%L(eCe zI`E%p>iH}6(1)<5)71Zf(tjcgU#ji_*aK7zSbhb?)W2oMA?iPX{QYDd;0)*Zf9L^2 z9RG8h<^e`%9>B@!0dI{OHOe*5*;&m1OZ@zjdp$e?m{+6K_klx#!Vq5e0DHhAn7ic( z#lM35Eerc$p$EuZaNdUhqtw6fe^h;UHgO zpG45Y$Kbd4IhdBpdDfnVFMV*p{jVW$`>*J!|DE&H7bxU5W!HzuJn%>Q>(9V{N_m4B ztO;!cpJT@P&v7s7#M&3F^Pc!J$pc}2NjpYdX2e5pTKBWeJO2s&*>BWr(01+%w6e}D z;rka{`Y%lF`vmhI{hZHzfu{b?)oY~BuVzh|NA|V!_n8O&fcR~{;@|jz;ve|XTh#uW z2wnXXgsl28BB=jV@=v7ZlXrZ;{_qQ!<^QzhXQ(;(2@2Wwa`t|JierC9Ip@IOmQ$Rw z&R*ls|Dbq4IVVE);%C$`lm%K3C|>>of`Wq8`BIHWqwWE|cOCvV$Nee~p!Wa=tp|jU z9_?;%caPuix;HUj85XKr1(k$$m1ByRq;fC|@Yh+)T{yaUv6-3N>4&n3Zhi0B7 z`^)g;|JiH)WrS1z@mt@gH~0wooT+jS{!x9-nUDMqd51sN=B&?9-t{R;Py8K)$39Ux z(n4)D4*<<)zraHF)m3En5c5IqORW{%we0xFlErSCt3>;?VEoIijxdjF)E=aInrA4~5V zGvkul&l@rAF@(0U2TXku;nOa&|36Otmtd?NfLr-#xK*4%K8pZyHX(|h4T|KK(6 zN&2N15U}EPey;45oP&RY<< zAEWW~e;{VbW1Ne-5Xr<<{HL5%bCh_%G=3f#3$(RB@d4UeKx)-J@bmRk=jR_aa^!5g zF=M`tzs<4VU+Dod2L_BB=_LDsYK+E&S^oa1%UJ_Hz4@l^(_@$sXbwSmQVGn}yV3AK zKUy9>k7|v7#vI1nex%MBp!S)w!k>97=jw`N4+x)n38B&hrags_w#O0J@&xNYwLb9z z+$(z-XW>@G`CuCT5#QrIy$>Fm{ypV9pzNWA9e-8xv}iw;+~jjtHI_YAazXm8u#%9^ zTDVFMh@R8;{+6t)I+fSTOfD?tJ;J!~=wJB0Un-{Z`-G=#<@d)izl6CS@*erO<#)+@ z<#{vfz3?|Je+~Z3SIJpldKjtw;{TJRH?a2mE_oi2%z@OMze0Zd@97)GNUnWMqpsteE|Wf?~fQU8Xj(*2n+~Dcyu}fs&=AeQ8%Wr2Gj`u zd8gI+;L_&wDgMdy0HS|6r)yLjXFvA;kk&^LLjFOl{h?DO2cBZ>zd-$;g?Fu-JMApo zSp!_lPr=+u|FH5Egg^Wv__I&?-S@KcPesS%_#JD_mCsyxYniJ=fBc+NlU0`|@}U{aYOSko^8&)^(}x@|=Xc zM>QBm>l@SL@1L>IWJ5%oz>?JntlCBX)c>+G$eD8jsk2U!|7rHAe)_&XvhU~LK48`V6j|@#tT*W_`~C&^ zH(h{lJ=xdvk$=Bp?_SkQA0Ybghf7629E(q>b9SUqKWXg!!g5moXY|{jp{^e&U@b_| zdb9G}UB+p{FRXHMc zWz}1p{eP-@ODyY0=)-RzYW=%N+0HyA_n39;T@SttpSnZTekX$JPf`EEzfbdj7x;NT zs@4FKXR!y&d7N{$wFcxaeijz?fqc#bu{n*3y~OCzqgRX>bM<1CcrIO0DtbABE9?VWm-ngU8_O~nJMU0JAiWVYhO2U;r!uw zU-zef$lkWY-?xtsQH}f_@5_a2L?efT&E;O_?9e_oRpsP#81@Tyjt$j>nmdKkz~!FU z+lV65LIcHV*pqwR53siAuW27(MJXJ27TN5@)vzy9jRtEY3o{=(2TFE_Z$!_+3YT`< zLNVy@3uEq2BaFqDZ^o; z0VsASNfGN6@rwxhH&$a)`zYAD_eC;$T~B;FvRW)A{3|P|uHs{21?l9CbYrwwu2&NO zn!KRum>Q>`%;`(|U)wTt-V9P;b+a`2YfTTY+iy6nM5ta#nJXNTdcW(%rQkBEMBe5v zU-r@Ga!o>24>B#wvcy!s-c$x)tJ&u9x*mzn0r%dbxXz?w{$*~)IZ7q%?T}w^SC9yn zX%>Jjy2q#&Lp1hb!0xOu}29FnIV;z;rZt7{$z@M9jATg{i;p7q#C_?AjP? zoi|513)EkCjeCek+~2h>&^J8he)TqiTRb5p=g!h1;OS<(MsI`56E3}%B+VyS6to#e z$4HgP9h|UV61gXkOZd<&=Xe>NlG#bN;*~K`>$JbJxssXIV#Q=x(r^OzqYUWQhEG-Q zF9I&fmM_I^15^MNIv>qh{7YJZrB&;WY4aiuNVfKoDy3_368$* zaV%prQdBR;QL?I4$vdZ-*~hFAJ)!WTl&Zaz37MwxU12V5X~8ogw(N&l_5#`ZAg3HA{7`ra~DdiWc8Aj`8zNe9z~*oYg}?{i+y8YXDt zayUd~9@SZIkjP(Rl!J@(eSt#1zTN^6vBZK$dIPr_$Hy6S!Kcr!?zu!LdGR{dwLE4< zQ<4{67W}!scS{(NjPbk~TGR3()3EItPvj4Ie5PR6Y$LbBMCB}s7h6Kt-Hk&uP;v7b zl6nyD0W96k<`zApk}wHgUxFmBMQio~L>HP6dBf(NxqGX@`}kFmvC!$Rt#IK5YD8NJ zUE1#b4c#e5iSKmRN!DGTbf&Kb~E=xzwaQ?T8dt4Ps4R(xGSfVYq@yic`FLJWwkQ8r{KV+SA0xm{oZn|ywhVd{$(ho zZA}^SrQ*9*BksX;N-W7;}!vaqnWHEfq{ zgepSWE@1`y;b4m=d|qSIpmt2(v1F^W(OEWgAF>fw+ARP@N}?jEz9O*+AYppI*pIBY z#@=g{MaPUdauK+%ecx53(S&_rdCngQ#ioFHOCd!HY4<8QV#+iQs6&CZxNzv#Z2 zYc+d(?j@b%8OS>Ka2n03_m7`hnr1RS$EJ`uia2-2s)?8JU;9{ysXd$orruYr;~S? zWt0=7`w)P6!;kY+bnMw2O?2fgRo9W{^?ZJK3d&;Y8&`mC{^$ISacJp{^ci>aSqt}G zgxRX6TZbNzq4O6x;qxyyAFlcgVWT#iXYGdc*HRhWta_Xt?^E(gr5Sh6#Z|dIF}TK~ zNp2lyBUsn|E&{LdO-`SZNquIMl#%#?I5W^iWEop-*=(HJN|7A*SzKa3!r;qDG1+XK zuQhk&Z>Ow$_L)v>%qTUf?$_XPhUYerSbuGgYvTID2SG^>R_P-0!}AN}!wh8|O{TQf zHjnkdbl4pm%PP9ntiIV``sGw{BCl_MyaOYu(Kc(pfqNRqF!)0Z4Xe^4BkA*R=);)n zX&jM%OVT_FCOEGnz^+6DtE>*vF4?N+l0|Zv3;Ck&L_`cEe&k{dCN=9^!p21{A2Z1f zL-%OtM9(=!vuG4#XQlqAiN(dm_(ef!A=mUDWadeCu1T-;{dx=+M$G+b3b(f`!Xgek z){TQAy1}tc7Rh4nc~MMvy#YJnC-nCFfBr2Kxh3Sgmoo zw}7t{iGbI^GNz~21Lk#kEYMjMrMN8T+uEOx=%W3PAW4}}`niF(?=v0&)`o_w5kG#^ z%+}RC9^^j>n*+;jHil+5-%t=0hGL}Y`!NKbX~+p5vfg3h)=GwdU;Kz$-4-LPxqG_*4@h;g1z^<1ciQ+ zxx|MLGpI`=8S_oe$&LN!VCK7^p2n;-QKaWH;C-?2Q1Vj1i{cu%hOIb>FR|p}PRsZ9 z+qYY8Aun#IEoA2l=}Y%hgtZ$EX{s_Un33_rdBWjaj*__655juBeQLxc!*{)x7Z?}e zd^p2lmLnJoFPY)tBb>BKzgEJ3HV!DgbC7j%!sDBnwH%p<8Ay#xPygJeFsl(1j(|M@ zEYUICMGdY7R#dcf1e?mr$SBwv8a~qO^nBn3YWb>@SkRO25&+UCL#QU4+Z&4RcU{Hg zAH_+`zy@aI%s+$ZBdV{MeppN2k1cG9B;V-LMEEa|UUim^f3fjkfAKgpT%QB=l} zxIrP=is@96dkm+0ZvzNeVor#w(nP~WwbVIZ06)mBK9#c*U}Pzya&&YYo*4P?A&gE% z<(rna_P53vYYK`jMt=T}juv&W{u`j|?4|H&OD)E2PA?c1DA}}tJP`%wM($u8o+o=_i#*!W;i4Kug;GN0 zTx$b+rK}oaf)bWaHyH71=%)V#(0$>@;VFEa>)xkeQIo9x*P&%Hncuu@WH6BrjnwbP zM!lV4kaN2Jmi4`L-}Uoh0P#(5SW?Y|bcF2~^{|a5mmx|*MYt<&F;rS%<%_>|7s@RC zF!1FF947O`o`9( zszO?n9sMVY;%rh@LxTmo90^GWP(LcUPo^Y=af>R|=I2UkiMwm|Ci#|!-@XJ6Re?yUaNmpGU z4F457g&$zP-#g#CIXoAC^*Ou3GlS;35gQl9R9|`w-0me!7uDXbq?vz3)sBf+t` zimM+!-Ua`X4tSy0QHe|hGMq9_W^TL{Mci_3F4wO$Qfl^kOFcvm!tz2FvlfLjUA|aA z9(XE1i~^OfdB2J(si>9uc^h`b|Jo!=&(u%x=JoPEPsvG&qj1nxBuvy=5mPEEGyKz0c14IV7-$B5bONTGJaI$L^V)yYyeEgH;(M{k5of>vAMX4f%k%%r6FTuHA}$CLbC>h*=M&POzmp($gza@MdNk;i|9uEi)YJrk}C9`G^-aR zjo_KqIR5Pm^J~Fl1&@jMQHF~oImUh6`AIe7rdN(_-JWlqoDQ_jB(+zvhGu5AZd*p; zaFe4(wt#hAT+mIjIxk77#v56%d4~iG5)1KTkJk{nO$e1(fu4d3iD@?1)+~Rb#uAda ziYQ(gb${<#yX3Xm%3ZtS2|}x05lT;fB$NFP*Y6sM$|U)uLZwIBJS(mRwa2C5F!qpm zP;ZANjs(76U#X?=@|k~svnBm9-qO0h4{qHY*x3_@g~Cz$-$?CsFBd#l>q|Lc;E}Ca zBQdS|34O747ru2r%S<4YdX@0)iasC~-5sG#2Px@D!&cn5} zB;L{?wg>73%m^n4W2Gm1Iq+D1{jfhSrxmkzJ8#{hleBze;)L_xGn-z@fL-@!`&FS< z6HxzrV`Kw0SEi)L$P)4HedHm==K&ASqX?6Q=Yr%abRv{Kzk)1_pdTI;b^n>v1?(i=vsIi@b*LE9Fg38Nq2d&bb-fr{5ZGiK{dfX$`UF zRTOM+$P|fI<`vd!2Fk{cNS?Iq;ytAci99UQaen4R=+Hh#c$@dl_Tn>VoI1OLUuLwR ziG<;c0~R66nV;`IuS6{7VpF`#s%$UJ&mV2$z{YsAYjuYHBcBvr@tJ)|23dS)&ZVOP zSa%LkS-M#L=9{7N`l7_0h+2U~pw^nh*N=~j>+m2O=p4spd($SKXzRcX{ACgFQo)5T39b;uPHzo=h$&UFEG=EfBOU*LsXBJk46B z^_X1v`h1~-r?>H?#yI9sC#HurH+s>wT>cK^?`hrY(Pzy?$8FWMANqliy+?dqGb0I<-n`9Z~+W|C+IEua#%O>t!>QdKJWy1J24~q+4Nww~4_w)p9LeLk3j)Ufd z5`zSZfwZOhDgANw&v+#WAfY$H8>pBKZppPeUYi6W1)Cs47Z+vakdXP`!^0&73O4DZ z=q6Cyh0+ipN2%yDm|Acsnwn ztzIHXxS7Xj#=kMK`l7HkhUNYEE_N|14ptjC_4)i*QS#_H|LW%HD3H|8$-R#|`50T1 z;<5KwC2;TI{DtJ!OuB3D7|@tlxVB?*$g9%XeH=a_9wO`XZT+Ioq+X5Z+Mjfjsz${G<}?*dmIwrdn;VjZwRR8ZGegQ8Md@3l?|#R}v!i>E zRkY5;hjKL=UlURLp{p|Am0xpizTb2l{4j_;D4U2>8x&B$FHOrR)9qv!1#2#-E*EzsN)>>TBl z=EcU1ps_KwD@u;5v42Nv4^er;0Lg^R`NMeUwUj38V>*$F`IEjs=2V#Xv|&}UZs?`8#p z$$*b#wA+!8T ztYYoVtc=B0pG-}+`+od5Ox{Ah+l@}8!BykHlZxDse_%6Tp1S)i z4HqCY?x=JOdKmAb%4@^1;q%j(3LXw74t;bx$m`VcuP##b6ld`j&ri+lXR@M1bt_EH z3@B-iDYy|y`YV^6Ev2zEYt8ac&&{b2n=7KsN+@x=WgCbfryyRVeQA*Ln%+W_*ie*PKmhrG))2)>Smz$dh<9&Z^kz8o z0ydxM9|6ep;>Ac|_4rmb7>s3kBKR({R1Y$`+jh)zM>3;ZE5lAp$({SLS|V_^Z@Yda z0bwuC?CI@^Xg7km9sk8Ap>a9Kl*L2@vf#QmBsDG##xv_D1aa$W9Az@l=s2CVGXFtDklZ=Fn23-NA zOn@`L(s6r8Zm1Eg1B40p+}I>uo@2xBo0A(NJn3yJdyR*po6U#H{59Zt1K`Br@$dZ^gW7HB~{eW-e87_srs$~z>YWRWqHXrAkeRHXgpZMsG zhxjhTH#=Gxp_`#;)>}%q2%SM=5!UmnfPGokmQ&o~7P)&%^u% zp3atLWGvF%jv#po+`8L^yJ+o zj)8~R_BAm6u)%;{%ga^qSH!%>P(yAZL+5LbNWIw^AggnYtDu=%zo@}x4f0qw(YJF@ z?2`?xQ~x5&^3vBU2|MR#tE0UR+qw4T@h3zXOm(7VzUvqc#s_ra{F_EamsPY-mi<&K z!Qp_h4n6&5w`EA;FMJjLmtyis{>}c)jPVs?Nf33y#@+rMvqTeJjLD#iNX4q=!?338O5Z?-zhsf5voBXRaM!CgWl}!1?lSRRvQ^Z)MsY-M?}ph z3>%5o_txa3{e;~*=BpfYnzs<-kUmq00{BbQbpycW{=4Uw=}OPA9?PS7Bvsv|QzZ

~kgknkHRvCi+5lr|NL) zuX?#tO?x_K7G@^CH+U>*U&F><*bEulb42b8edd%!+6e#Jhw+A4*IzlVbL5(j7}j}G zTCki$EY+8SPCg}`UrH=!`I=DSI41Z?!t>>4KMk!2K7*4m5YMVcJstCPA3q`CK>Q>GIdF%1)tbNfzg4sR-&N zINj30kXx7D>~G(}c8o~?ui@SAxnnf-NOX-_)~>XpGNmMkEa!h;BkcN{7dclu#!vLP zGkN2@6DT8tn~XMVpe|i*@tG^={mJzc2+@Oz!L?r_)`dE4QTIp2xJVP1R^q^8oVHM$ z$J@)^<8O%*{u-*zUnfVMI7^B1NnhwyQK@CG$=WrEyh92^VhN|s`M24w3A(s*=sD@tU5$LPKn}bt& ztM(USio05*3|>;zpbH^ey^8_VEcA&g;ZHZrIiJEn39dKaglAvHXGS;F+3zoHEcif5 zoC})gdPZ`_{B)bY*aRd)qrd@WN&=q1o&l0vU>_Z0)_|o&J5zYlMGf`Q^22sJ`l_8IPQnGAkB zZLVDb<;Pk-_;&j4fR@3TUCZ5X0g>y*#McVGf@^8<_{RmYpAW9DUY* zH1(31B;|k?nVT#4E>{+;1PE$Atl?DA1IiIukCe`VrCPhtuf~SNH z1vxK+e>L;%&o=tKxisngw?@aA3)-$h?(_!v35Mtm1zAuIf^O$;hz9(4EWR$eZ0Muk z8M;}^54JkKMXwdGh}$}SgyQI6GmXNH?`@{2IL^I#SZ$rn>1v-5Oqery4Z!QQXvnpPu(-I*$-f4!+Wr_q z15uAiM*hrNdU6D3J`U7v`uC&}3|f50o6~>|42>_eRag66Gc|F`;VTJn6<1w=I2W9* znY+N7ah(0xKrrEZrln#5iEOy#;Ku>~cC-m&_e*bu-vU%?y*rLT>-P!nq?-34HXd~M zF{d%T?euV5o5bFO4qMJSzZH|BhCj*A?U(3ky&-T=0I%7Un0=QW{L+{T9va97vt3Gd z4Q_C)1#d!m^wOk(n0;uMiBrpQ+odnr^u?MlkBQ`x7vvRO(ny53um~FpFAjkudOU*EP;YM^ z?A>80;AL#+lbcRC{u0&^jOn5|^Zm9)&^rlvu%7X-Sj%xg-f!q|&{q!)KGUTlt1+XC z8gIz%JF_W}cVpdlZ{clF)9hMMXlXub$m71Q1rPxaYm$^wllK4VcSNEWTt*pZ9$m2~ zJYp%y@m zT^)9{-COz)0_c77al>UUC!Gn>92B|$v9L%!T`QEJ*rYx+Mlr!JP<2b-aB$eHwDgiU z4*DYsa<@M1fCG584WY%+P*6el*vY)Pi%BWCl76W!)C|Z9pxs3w+)%QQprX>p8+aQ- zXH>y)0kCD#bBu)7uu1q+DXM610>$bkbdRFG@=Q8KrJ3wKc_Q;fS?+@_y4&-LfBH{@ zK*Sv)4>qb-z`D!eNP)vqkA;iz1}8GHXYAkZzn3=Ny`&Si1TJ)5MK#sk8{4r1T^+5Gmb zo@B%7#T}RC)X^r?zcX&H+g7UaL|FxTPxFC<cBlk6DL5X)Sl4LTb+4jqWIoeB)F`p+{E2vsHbq zgYY7YGGL6pE5#z@IDTXo-@(-~SDv8%^)f&H>iQ**N7ISA(kw@mu>0yTHSC%deG3U= z^?t{nB!+PS5$%(uGs6p4lpte#_TOvaFE0LF*>tr-H)usSJ}wLcC-1i1_tM`Jp%IFGRvfk<}2)NW}{ zC^uwv_C$4wopW1gY~u?*k7aVQ7mIhwY0J?J{qY>HGwZl+lD@M6xhzCL`n3@};b|Y% z>ag8uh8${@QlkXam38E4hM2#Wn7f}$10Dnb{v%KZ?ovy}Fg7$TauGxq_6x2K+#kOH zZrrX&W3qMMt%zS&0NPUq2Hr+6h_L$13eZL!9SkD_r-FrmfCo4gHTB0zpY2rU=gMS+ zeZp_lo51lUam>okBjWU{RZFKguEY^*HuSe5isqXnM^}n>CAgka|4rkx`mgu3DDq7h zV$=W_RR^)85{g;JpmfYVIdX@MTA(gre9{2Bw?47G=;N5aC*b=r;S+rD3E#JYr;fSb znRz{FNQXwdy}2C~Scj^nLT`u6CBh1n=8rFTWF52XdaLDX!u3MZqury>j(9Dg>) zJ_CmdXQ5}#S>5SlP}kjcS^w6;yxMKMmW~x7`rE&;H?e?#A!0&{ejfe0v28M7(EM22 z)uMB~YdjCZKJrc=kM`h_(tp|aCH=$SA?#x6^>(fS>lEt-rCMF<$0;c9OAfN?E#A=3 zsDNd(Q`xxB636GJzY~3&sz8l0_*k`S3gfS=cblkZR`hG>Ie)8aY+l(M(ma{;?~b1W zJgV+KJ6$}XH8+LY_QzaGAls&_t*!ILiSEORyHGaclapjIq}>SnFDBLNcTyinw1Cik zcOggAW6+xy(ssZUl4NnR9@+e&&cNu?jJJnN9fwseJB?#p+XjHk4AbDF=J5W-zqHth z#d@<9*`NC5`Avc=hg1HmfvkXYVZhMoCM!Kzd$Vz(N?8OX7bl5!{qL6!92oE z^xr?KXxT63K*cU|dr^lO@E@k`H=6C>{7@+p*?W)w#+AP3&%JK)-Xb16ta7s(N}{E} zi_RF`<{?;U_r(W1?gB=)w&o%s-sn>K#si&Ksda4{UpJ#n+-?lqx^FBRTw{%E{WSK< z9r0wivPz9>`FMFhRO*&M;SH^=N?qm^-WiHPdS9LC}SPG?)j2Sx_GDLvR^v$^M^1QAhcrsfJZzy7x{R8C*rro*5#J`?AN@L znx>}C`;0xm4h}A^#^1l?kZ)p7_$*`%;uQa5=;TB+(;dijuT`mcU}I@gE*RHET8R)q zy{Qw$+(Y58^RJpAPH!DDMnUHirdZz1#_N|rlytxjf05Kbq4c_EZbCDOdw#(_VrCiz zx!V@2!AwJRA}VCI(Yo`-iC(oan}O`JW9Yg2aC^mZjinrNEAQc*D*Xr9Y5r->ld2pJ zAK-E;et)=2@f_W=x{1X%RX8uTR)P^-_cui-;$tvs_~X@qRJIkB%fI?0G?1b7{s^}| zo|2^r5aGnslr7VWV6h1`wT+h-AN$V(WR7HL?!ryrb2COdcJ$6lG~Cy zx$oNS2_OAhZHJ>X&NbQNjOCPyb^Fnphz!*zIQE)Zr0V5Z)W(Tfn4m)G{+p>(}o#M37YOy?HT>`?oKbM zgTlct*H<{(u>B5?RE6+m|8P{t#9qlJvF2;jLP%GpNHKu?2XX0$bYIt*Bhv;k@~U zqsK|y?;p^oB})-~aYtIKpQlkVb$?Ie9mrp?Ge`8uG zqsJ^Yn=zS+w=Wz;kICKGEjF^aI;L#xad+f@5(~IyWe@g&7V=$qycnAbf;8W+BD%g< zH;9NFaGSM#Hi;?ebr3Fr5j!@E`G`sG?Cb;}g59_N76rF{0XFP z*Kpxm;cgsS8dmU+a27Hf@%DQlNZM>fmK#jdsVZLmixL5%*E*%GwIk`Jx^#xH>4OTy zfOVREXm24hEv7NFeK+Qy9>?1c)*p-51f!7Pjgxhpuo?y~O8oml_j`LTa0txu=aOyM zBLVuBMB;KNk};@j{x2=%Ctoqz$wJAovopSxuB%~LXc7TSM`AIx$W8Vtz3is66c;EK&1^SC%US26& zWoMq5W=PadTd*(m7)nd0%fs>O_IgNqWC`}j^*V89G&Ht?kPu+rVEFS><=P!ufi zmFTRI3$F~n%{ruA9t-&^xEtl3%W^+p(fQRMaP}~V^4ctY%#IE)ZCwXtsDG7}U?lkH zzY#a_cIm3obF&Ps?c7mUfK6ZE-IT$IY;8U1+=Or$2Wd`6saxha+EnzQR@Z*u z<<`E>6tczCQnL(j-Gjh=yHO8_*?k`#b?^Fe@yX*A@~!hgu>zv=^Yc0QC5KOuKFbQ2 zj%7u0*LPo3*QTfewfzN!7c{xDDU+c)eGe8r z?gP+O%4vzILDjLe`5hMiN0;@qpDE;*y{AG$?l+6<0^2m27SKli@%NG|LBHVwp8#)4 zv|G!Pt(Damh0+GT8Fge9-Sl71SScNa9A~GjhNi}^@hpBPjb>A?)k^L4{^1bQZJ}3+ zUcah7mXkBK1$6*?%wFm6uSqy)N&)sRzPqxzE_WPte}Eun5wUXGe`*aTNTtfI<0R=B z=~_NN3t_a9(L?&8CH)(pb~{bU7)<9tZy<<~B9Wk-?^7O<6D9La}!XU$y#4pE;3#Z|U4V zLW`Zc8<~c7#T&GMvAVnBl+*r=?r%vaaZB56ZgICLEE?$LXL~^(hT=jCt*7X?-c;nC ziMO}HegULqGt^$|vfNJJB~ShgqgEfS-3*ehR8zOCS_lY%(sv8oXA4tdDbVgK>C?un zF5D?^gR5O4Fd(4Zjj}ydtl)7i0Bq}ayB6Du>|rcnVA#D=Q`ZElNh5cRG*a z_@2e+3BG)WFdWbHk2M86a8JW89h!|fI60@?THa;FA1*c*XjBZ1q&4MBcGS;&3=9}0 zIr-i*ZG3*!0**&^Au#VJ5%(+x77ts36TEMNx?Iwi;FpHRRp*a+QazG5M5I`ZqOc0n z_uA%Qx~cPDEynqh!I^#?>LNB|($%unB{$3Bq6=x~Q z%Y94kLBeQVIC7M>V1v%usZmQK0->e4DwLhorLg&WQ%QEi%5-$xM;}+Rmk*N+N#yD{ zv_`{2mL!T8eObo2TtC9--9#6XZm0W>u7`&pmAM!S*Y+NZYT_M50nURM_2OU^Z!9aJqV}*xHED+BkS3SAaQAI-E5Lx ztE#ShgZmWZx-@PteTStsyRi|^ZD(zrN`JqGgZ3X?Av^pQYZ<^0QIP9-GeY_`^fM)$Sm?1akceLjVs$&BdQicC+FK&I*WlZ9S{i z&#E>?Z`&r%7va78j*jZU*8@=UnCV<7n>gMykD8145-RUSL9?Tf_;SD| zj;P<^KT&6NdgOZ*1td86M7o>;C%r>J`ZUEPvND)`}`*o87|R+L~+$^t}Ij2cj)+d%!l8xmQ5ltBs}`VPiy@ z={oDwymxu$Q(<`^FTM~sKnVgajZPuLC||0(*i8KsiopmvS;H8tGdIhl)whhb8a_Pa z0Nhppu6fq+clFtbp-$vz^M!%Wmh}KcGishr`lA2uwygMdt7UET+)MXE-qL?}XG4@*!TuWV-E>^?tPDM0q;`yDsob-~!w!fvlAR0+fS za_da0Fyh^wa!qb6z zUAo`HTyi~g-rto>?2MZ7}DY1ksyeo-{g@`q}w~mc^?! zm8G~f&(**Rwma{~PaT(C(_GHZT>NR&#^jt&B(h|SWuy?FuAcgtpAv}0H)Y!iH3LC< zxTLa5PvY^1eyRooqaS35X9eg#Y5msM=SYvPaLmmvS0;HDviFhxKMOk>6n@0AxZf}^ zG-b6k|5BNF*{x6FoOM^|RPLCyEV`K9>X(;ODh*&+zf6zbU*9-EWEbzYW zjf_v4tYr(^+rC-?^t6B<%)+khfjch&r`w(91t|K=4BGJ%d%%_AKhVH|qw-0AyXw2L z>pey3!M?tY0|R;iv-@iBZB>SBrIkTt^NYc1o%w~!;MMc)jJuuln+#t^7&51@a06{7 zq$-ZawSx=}@ZZL+=#b07_h}zh#N6jP(%GcYNiVE4%{!yc4Q4mTR8uPgR*Swy7aoF7 zWjvhtV~q{8)M)5#-*YSzM#`4OL0&I4Dy8BMyP0Huam{h){{cGkl7K0`eQq=VJ`q#( zL}EYYZ4}zG*Gt&YJQRv5(Y@~O=NTg+wX{vY_vj@!K|8U6o0}$y%~#NqTKCZ83h9SR z)4=WRpN@@uw}J`tk+}MbzddyEh5^(b6jl4}Bc8sm%f>62s&-VjJvk<8K z`V8EcM;()p`MoX2F27kNPtzve+LEk^Jr7wh#bN^&lQQ+k+PEm^`^gVXW_9?o(UP{ zf0QHE+bvDl#{M)Ox~K~a{ImgYJ_cEw&g{K26y?0&%z%*t6q-pPQ$@04sjX1 zrqop?K+Ds;g79+V%I`E#AJA~6(#BVHv_$vF@6tPTZ;3-^AHvg^d(S0G*o<=)&BUK- zq(*tQjb|8`k2FKg$6j`yU=`lZRd}6G2shQ&52qFSV41YIy-6zlpk>F{2{{-RM6>^0 z+vy;2A$d=K3DA^lh)}pQ->LZl*jwjHO|8?yQRL^;2lf7~1L?=ty*B_u~$rH*Y+hkKcN6^{Lpdp;&$xc43} z48z+)1gl(G`r9dCy$iMN=VWme>k@QFRKgjyJ^?`mi?sJR{c}GZBX$=9lEw!45_Vn4 z2+J{4K1zSNv5S!QCjB1z3!T!NLmc%}R>n|jy8Nf;(##EPR!FlnDk34dlEGIei_q@O z&7ov|Y3V7nsqbf`@YItHKe3`ZtJDnr#`ew7+}!*o2c0AK#+FPaWPsoPZXfa!{G2iR z^qL-ZD#`BL)bDEy^*xm!{`;RcPNErkt@ruPA#W~^HbNo^^U=!G%cT@G}{?nh( zXNVJFyQQEQli1@fBt}qI93iz(O}=PnYpaL|Z)Jamfm!ba>Q+9tAd3G|DzW>cxRbXE+D`Gk^+xPO#LeW>`j3{6Pf_QWF^<@)Y`39I+)lF&~5kzTIP z_V*Br3KWgF)m4!yV304POtR9suo5B|+4lOq#2M5@r&4hd`2=>(LqI-sUhk5}6Ss%F z3#f}k>}D6{_xQVpK>NID-($sZD`WwS40mp;A!+^`b|xg{YsPv zQjzl)XpmJZqcWEGg3jjPYv_J)Yl%e!qq%D`U$o!MevMdukCe=K~JN%AqXcED+ViakUDAe``AklQyi!tRg=1yvP=zHnbzw9 z$>pCn=lAMm9m(8~FAH}J%XTFlwKA)q=RHQ6O2 zGYziaZHPS%Q1SE9xG*ZKk_HZZG}M$mW@^|ti>5ZkgbFlphI}0b;rRv96Nb&QRL<76 zmJa`T_s{w&jz9DAd?n9*Cp!_l{bUj}TvaV>fej0w$Hs1UN^C-2SOQ%X$uv!ko+$PJ z?m0XdCr!GZt2Y;RRhF`Cto25+e-S6JfchFFjq*>_R4sVA{Dz>Z`_G?ez<>eO>p|ge zwBIRTb(qE15qpT@AHx_ki}Z6y$qgiEdFJ=31C*>ji$yRrBtXmKLNF`mjJee4;ljg- zImXvOP|rbL)>tbO^Np8)de-N}CoT`PFOIcrnsS*}@rzROp!GUNz1FyR`niV-{_JmT zy)hw>tM+@lX#FIch;3doQ1&}Vq9WyN6O{%6%z{6^Bc&=;c*kpS$9dGxZfKrymi$uY zZF!ESD6=ft2D#oAUNQT9|IBwgoS+>hjv*%fzloN}n5XopRio~@H(V>aKle;1%sgnx zp~%zwf`GQCAHb^3`rBJaifguL+I{ZevE@hEWA+0_B%IigDM(9JLN-BlbdE@0Tcrto z&Xilu9{R%!Dql$fy{vb|AMzY&T&d#HJ((^8Y|I2n( z!+Uue)@1i!Do~=;qG4v_Zkq_`tIbkC(pTHOY^um3t#7*QsXop0-ce7AZ_tATEaphH=HhgP3cve43Pt^?Rl<9vB$(az~sBJDoo*f}+it ztUcfD1pCu%+h4g?0Go)#ng|Cz*G5=HjSG^4Iw+geC**ZlSPN)CwjM!nDUFo}&Tr9g zPLCRiI0|JxF+8zuY<>mN_~6{An>6fac>VbchpNDa=dgJZ>&=J0+e>&(ZZ0~EBa30o zv?W~RH;&Sd;B$H7qE-=?QPeY4{sP4`39oJ#cwv$}SrLbXfYr);^4ATzaDMhoiA zi{6d}@BIM^=UEP}mglz^_BK}x=U}nGeMgRCsEBZJj5*>WzTp8x#AdxQzT3jQA9SfHGOb$m`)zc_AqT1%d{~ZhrH*K%X#=Ymz?L3 z^Bi2y223;t3KL8d0}BnLu|fkHO{%i3NrnOG;4p<$X91kVDHtZhBMXxxK_w}s+0m>5=xx%&>_*amUmq<1`o6UV8on_>O-J@kSYl_~-U z_N}Y%^s9I9rElNMa-+xX2afZK=Uu{l%OFT>8a=QK$l0*I>T;$7B_FCjY~OP+UmcW> zPmYf>`@JUY9UI*nMTkeka4;MH=)3*eK>9rC%Xd4*w^D8oQ$a}by&3KOM3Yh!Ruu0g7^ z7K|7s3PqX@j{Hj!k|ZUGlflT>AP%EJAd`i%Qn+3Yg+ml6Ov@$-`*hkJ4990-sX;49 z*|KpRv-1ly8V$5z;JGeax9`MpY|1%@+wZuGAczRVB4Henw=8_mBZ^ZFokZx8AXPYCG5Y{vddwX;!P4o|Y}&mGYr{?=+viMRuxUe$Uwg@w z-2A1(9J+6o8!eBSO&cltHpdnNmb(_4#vGdc6fn8>Ovq*HT_!j0!OIs2`(0|a8V}rd z5Pn$#SX=-eW{UaW^W#@RKX{7T1w3SmTAX(b4eTwWl*0FYY}=+(EMl1!VZTM8G>xMz z+?>U_$qI#>hv&K&=4vZQjV9F=8WW`r3`|VJL=W0fqCgu4hG}A&S@p0=6oY;qgTks5 zohBqo5vy#iHw^ovX||U*O;WUB;QDz|4X$sHvo)SqA?Wq#b}iCakyti;Z8APyq1z7$ zqli|!opt$&Lh5Hu;gzba-?W8pw?}>947O!6IWvuEnb@{P7>0yl$Xpn5`=NQ}=g(jp z3hH$k!8QX3(XacgXn`QIg_27P(@9bu&dy%+7P_@KLr; z6{*%HxZ|GF1EnERtW-3|aY8znQcjd2iDSYb z7__T2P-#k>#DIbAc%T$PP$yrjFturda?ZsyO%6YB3TJEzuTY@f?s5F&Df*2?(kP(0 zyvV73AK&#U)y6ohVm55sPLd|f9lejZ-(_;cCi=a87O<90quHR{X_NOov`)y6Ptsb9 z!O-N338j*WWm}Yr6PQ&!iDZC1lr`mBplFf>-`;3h8q8?M0k#4OR>b!^)P4B~DBg~`@+RZ<16 zYZJsNIvuo=9CWl&Ity2=hi~L8c(ap!0SpW?3*IzIvk|Q8kfxfT-6u^_RGJVc32~f| zB*~gqmD%VxO%gB+x}6q|lgBOiD7!*x7jTLNPR=i~W$$)Q*CPy-vbeZFd+7}Q`B@C@ zVrz|;uP|P#5QGXEJyO5R#D*;-Ny3@aCz(HS1g}(O^UggOR@QGiXf?3C9P2l4hR!lh zdKT=IUeLrY?PO}*HvB@FV%TM(lw+!zW1?ta0%08EISz|m&9-ra?Hg*?zJuqcEYz3y z;@9tBX2)JE+a?P8IHm%Mbb0|xL63>C8uq%&R=S2&t5tdj+i;~!LyPm6W;Jw^NAAZy zvW++rRv+B3cuT@qJcbNyVrc_Awei=FWBeX4%6=cDijb=^aSfMn8QGnK9S|%8pI7vv-WaY32rS!`8rAY!9 z#8HA_TDS#+DC|=3^I%w{`b^a(QAUAIzlYKq-%-@c6|O z(=46d#gndn5)-vDsi{cXOY~fqVr`1ECyt?`K4CMVFg8iPRDnW)bz66^t_m}GSneAv zbYf1_O(u&Ljs;~Os#S+>1htaSo%1PIZ#MYd7w_dOhc|KO@dg)dEaT^k^kPV&h;E=k z_ld)hS~pV8sOm5qDDM#=43cl}QE=IBrEY2TmL-)rlrus=)82lM8TL0+&mXz!X z1+31QKlC&=Aszu5TiZCPjinq+44hK|ZV!Cl$1=d*^kgtBCTn@(RAXBf>7Y7!C1~|S zN4;8QdwWx*NtH2}swS&+9!y0iNkY)?XJ-*>g-TTx&VvwEse-{8avVh@afC_|YLiu} zTQ363qt$HTSTHeOq8}^Ho}R@`B1**>iq&jSbDAV*m5tsDzC)wlB2ft`DQO(BG=Cbu zRKwO0Cyt#aNnC=)JYf=LU8$ljj?$F!E`DW<>Gc~qQ*ZOY*^qr3bM!*RM{YgI$)@6p zEqTWM?1ZC&1Fj9JHdyXyTA|5?GDNuKi)Ad^;o!*@NeWStVj8fxxP;P*YN^0f*&$3p zhb@lWc`Hh3f-po)IE0&}Gp-nc;Yhbn)|4vZr(WCrv3zoF1ihe#BV&+hYVpX^2Fg$* zW{QW#(BMuMi5q=P(*&(i{RYd1jlm!ghkc;4N-NZ`5DQQYr;W3VHjI_N(Mh5PZ6>pk zZ+7l*Occdg1B@gkiDTj@CQcI!Of1L2b$r60k71ZtPImH8nk01l0ZYp*T+gM|i}=Ayu$r++w*8_b$SGJH@gslrnHl%~Crg?^)zMhg?2S7zFhC5v|x`X(>UEU&8QJ zu9VBP?rOp{{)pZ*;tA(5m|p&IjP@g^gt2&}85)g38=z1qH1Le<~alGsVq9|Z~E+Rg&$foT(@e6shP6>m61K<1_XOEpi85JC-gK`FYj^l`& zn?sqJT*0TB_i47;7sPnZ6#3E^oyH>Na+%)ujsVjmdeev}g!3eH z*E)aZd>$Oe!;5Tf68}MpK?s`)l*U?Dpxy1Fl|n1fK@+7RPBqD}`gvI8tn^?S+89(V zXVcC~>A`j-MXCnt!`dK8G=^oP1{;90(eQBEIh&d`jMc45aS~(N4lYhsw3TWwOybzY zFra(pBxjlp7MA;1woMZCsgx^h*|LMkOv$@3wNeosMrhlo*XdFAeN4a1_YNJU)e88| z7r)8m#u;qGLOBJ}6f9F?nFgI!jO#iSN;xbe#YuOb*e#g zxdRxaWCt#o1_TLI^Ck~0hQvwCc+n+@6rO8yvYBoB+PA@@TGSjl)8lwEV4>Y4m(OwJ z)DjcbJlkf*Ilkoz+Kta)**3m%NY7}3Y5DXm9znw`Lu>QpJaYa7@LFqMEQ{6Av2@@P zKZ?#icFpR8#D^4PkIO}LN++vfpgS5dm34?$n3bJlkIy;!bz#!2nNowF29)3>Ktk2_n zIrd+ADQ6o^as`*2J2q3Ul-N3zW2yjU7ZzKZTMsU=b!HuoW1&rh+YTScv~2RlG3tvg zilqsX#2}7hv{G1>L%xzH3c7^-CZ$S+Zm&%o1=wD3@UbQPQ1QV1C(xA0sYeLyj$WICb;^Hg4R&%+wf$l^qtbzGSemQsDCnj>R#P)dET> zmK$vjr5a~?FPhJxm8M)O)44Aon9hyt?ISJ_!Ay>-ARdqWTTcnr;x2&%1*_%|@@FQOa1^GL)vne$K{VUj%sOqEihRz+w;dcmChB?g zaJl+tb`hlpwi)AlHhw-&&bL@hV6qA`o??2_7@Mj#^Icf#ru2dqD$!tjn3ell@zA%(q;o3OhKn+~v00zE6GYCMx^ZGv9%AMYwo<0n0S-Ea>(+)a!MUB&IaI z7t=6FNhp^~wC`%d(uCRgvwF_r^&84e%p;pcMn8cUcdXv4xZ9kkXMR*Yktn1)Ng zw?wg&CpBDpQG(VHT4j&davUtj$MrpQ91`|hY}hctwu>*qa6MZ6gjPRh&y0^@KxeQ` zqnfu^SFNyqJkQZ1_jBi+2dU*PuG}+C1Z=LsTpdm<^l0@$cJJJZ?RcD>o5Ly8NSX_b z)oR@P<@@0EGb4BdiN~F_>$wS!`gWm5%VV<*>Cv+GsHfp49}`(Oej?M^JhY`uEM;OV z8&er@xQ!o}c)pK?!koDr!?c(lD-b3c(=dq#qg{6 zmZ9pwmI`dIWz)|XFkOVa13?U)39;?7YuiSA-yv5hk+U`3UVkuBPf#jhX5Bcidj4g+ z_QjX5b>jqfE(eCDSjd5Cp|wrfH?gcX#k|4uuDOJ(uiVLE?9h$Du}#)j99-KV??5;> z%*h`7e=FuJY_GtnxdrCWEOO#(n^-#>J=^2fyJwjiE0A|>I`ukBv!_UUeeC`c-NmD5 zG_6((>#{0wP5uLmhmn$Xq6)~mFUCBsM!OF&l5I$jmSGpJfYs(7!;6fLpBM(=n^iNb zH6vDqzp+a1K$BXvMv^8tVUtG3!ywy2WZ1)zuFj^CHE6?JX{4c4HY!$wH`A~R+Az)R z_(7EpDya>$Hdl(ezyz&uTpvSaCn8yvnN4ZOJ&KhH7CH&@3r$MZaf*dJmu@UznI?-} zxMm9!z3e&pHiQXO9a!o?lxCy#egYL2v~qaT)q81mVcgSv`+N8D)o&dF(ASfNyUT7 z0^}Sx+si7%O%vh-uHG}jSaCn!y8S+S%gcQ0yA3ccuD)y+Cr`~$uh%J99{F4z+jFs} zE<)e)MKn+ZS9 zy*G)qB+c&oe%}zoo!*#pX3f=AJ&^2f_CRq`H!WGRA=0Akl?4H&yr2PZY}oM50BOKG zZ{&plTN_gl48!Jvpa4S@L{d$w(InLzdZ-?%y1K@k-*~5(zwh(nM7($N)vL_v?#iml zm+=QK?iBY%ytwh=ALpF^`5(N-Yz!!iJMus5Jrsxd^n6RK;_~bXN0Dv_w5>!+l+dnK zM+YTC7uw+s&Uq1R`7ZkHl+aRFj*=8(97UN^`+&6xJ}4kyLPJ$IEawI3Xh_74xaym6jcRsk_TbIFic_|vx< z(3%S)QEZW0` zHsRn~`|uz21pL_I5fV_nA2^!?d=jfduGQMH%vA4j7SKh%!jgEL5O9!T_nc42vP{~A zl#*WH5U8EQg;r?gd^_V8f^SvNtpUez53qPf`yitSU1#FaZiDv$?;08(P|DJ{nshKi z*@PJIl{jT>Zmo0v{AI?ME;6(!Tce04w=6GggAVZKEKoc6nTrZz!~~;uFoUfgK=Zad$ep*7|6q5w@ z^O`qr?Q?MFCf{fr^F_uNKeo*%UFXkV_q=kqWHN|JtR}JIlH~&g2cLRk%Wk($8WOo-HZxV;dW1c%H~M%yI*~aL1Otw zzjTFhEVbjZ5whIPWXcgpO*b;Ikt(d#yt3=Ka`^)L*Pdqj!`IQ*?r`DU1-|ve+eFlC zY-|u2LsmmkIjqqPtQd|&8cJ=*lxE>%z=d^k&b@osaQk4%z{GeTNH2T}zW+zK4B z6WI9pHDT^R# z43sX&=OQ8H%1LB>VQl#L1&cM7YfnAJ`72NJ^2^tWT+NHuwnzsf>ZTzCM^OiM7LHlz zCDKNSJOFi2G`z!5=?8-aj2x$ylMH) z9?WaFx~_S0Ghtxi+yM4-cxwuGm+;JnM5C#Z`wL?@Kh_Maq=~#G1wf zC^iSMyKH!Sui(WiV~R$i_+S3qi+ti^PjPvouo^yjPHM$(&jLT#b(|Yo&JBc=-<)z3 z!Cs!ockU!ZEK>f`bx(N8RuLnI6=u*n7^Wb~DC-f2UkBW|r zyQ{l7$31C}nSkIUg>d4r6C;eH$kqqaD{EwVjy4t_0+fd=ibfRBUK)&o6UQjuI!F1o zhgS?X+>zExEGs?XsCT&Q|Mhr9OV*k^YxsLV_Z)xo^G|VmA*6b71nY^Uek&*9s)JG@ z&x>P4607*naRBQ|+s$Ep@@*e#4EyvfdSDYIe?kwQny;ktYKPb7o zl*n^h!pAPe{NfYv$@B2lHyjSlr>>1KO4iwQs%oY9_yx=NcSPhhjNs~;ER$MMR|j8l zVROj%{5dXO-NyNpKm7mxiX_q`k>c5l6ZRJs)+jbd28H}h-S)e1L}kh-lG3AI>FN>SGbsrx$LnQ{c=2bRc~ zc5I;!PHMwWQoND{_XMwb?&=1=@(a)M+7v1;){F`fEakNj)YoqX<`sPEyyC)G2yBuF zQI?I6+4pxmiyGEa%~PA2*eEWo!L!>bi!z{%M6aJbZ~4L%IqYuEV2~KT{FLmTTT{nh zy^-a+1Zn-#8ti^EPMPa?4JND-lQ8FOdgv}?PV3>?~={x(F*&a_{ zy2u;1_Su)h-nu>K%{Q*IX2$XxDMJW>bo&JY|62Ni z$72q^w}el{AJ75R<6Y6Il)GD>Mt)z>)5H6Xu7rtPh(f%I314-Y3J;8u*~MM))g zi?O0{4c&|eN~s4|jgwZTcGfRlFK<`>?fQGWUf(w21#@J!(M82dDNq_00^{+3fAp&_ zvQsO9g0&R3+f?s3mdz|3JiVd##U~WoLoga%*p&4bjYOv71YS6&xH3^(U6Uv|s{?OM zrQi1x7c@VA6}E?Mmz{!T4YwBX*-O%rq!s+$U)<#nUn!^@yt)t9CKBa-=~>IXYBTpp z^cxvC%;Dpg$83)xb`E9)Ye}|7Y^-14?N@ghsKBkgDP>;J_(0ysHjHBFRrbigL+wRe zHeJ@d{JmGvjTS#`*T{uW2*g`2V2ptfn2aaXeI5A2K^IIcI6i+Z>1((T34H|ou+b?` zRx@grdn4ukGU)w7dqP)j>R7e4V7#H(h?vi3qJs|Li$lC`TanOGmkcu3*P)Nc6M7)1 zRvqn*#92Yf4;Q>cYmL&nwX5`~07?gRtax!-+RopY2EP7w#g&bSPhZlKdM+f&-OnW| z4oI)=wKZum@&U#XeD<>9)qN35y>=kA;quKYv*s|KI@TrMw2PbZ}!H*e^Uk z|7?oY^4;@F_QR}HJhLGe1+|m9twOf##S1Zueb1$>5!-76ZrlkBQ^W3F#UK2eukxwS zev)`|op1l}CQn@0GMO3Bn7%}wlZC$w)WjW_W^$h5?O$paV$li17_71yy zGhV#3&9`p{{`#ip=bx}Vy{XYkqR&YzB-(hXnI0DMdSqZPm&3ptNlT9-i7dB=usxLF z5LYH$v@TKZFoM?(CDOjS2CwXT{?C7Roj32!Ib0Te`spnOk$kUf*IE1H9%5_cf?!$% zHisIcV11yudVa#*qM@ig>Bg9GUeFYV*IxQAPd)!UO*G`Kn+))gbkgz>kybBsh_R|s{d!X58i#}_)Z*!2(gll5k;8`IhR7f^ISwkzVne( zU2RuLwyr9gx~6GrA>DS$Q92qCCrK;JY6muWao+02|6Lebb~6b!e(JnpduT|lM4HY^ zD-gie0G{7~&s>1#HieV{atCkEBz;_-|ow9pT%1*w(0-C zXgq@N%pcw%bC%JWUF66)WQLqmIJt?2SyQK@lQBAiy zv8NX&IkQ#`i{=%zXHe0I*syk7-nzC>${jYKR|S5^DI zcviZ`b8~0L&s>0?yQ=u&lbZcf9IZkSlB&G4{B%F1HOH#qMJ+F2L87>-Edh}g)4rTttk0AelM;JlEqR+5fh zPZT>D++8?!mVx!5VPi7DqcG>rvw3k7V-1yaEbrcCeQiSJJUdH|Lqu0MZ|?HvfAS|B z?(Ly)C|}FPjT5Jn(3S{7@Yv1gF;@P7@n}T-t%Lp;e-Kv5wyWE&l5Is_yZs2GPeDIQ zSgj{_eaRY0S$FB{ejMWwJOQnJI~ggUfM$Y$rp2&s>tvC03SSPh~yNeSFBd zjZgBmw;V~VxwB}6QOI)VhZ05KT^_%_JrvSMDXy#=?#vwri<%^kdE)YUW{Zsd#9-5g zHGdv=SW%7dGP5$eX={DRaz5vKfBo0cRHTCek=C3$x5>`VKF)cJX|EPgfWkyW(v7Rk zcU~usW7JNCJ#aLerZ36Bz5oB6zx`uw<@l(hC*VgNr;#!oi@Uno^5axjR>$|D3!$_p zU|=I=xm@6#gvGX=p}33_TP9gHh$UrkVg(s|_oY(j4S;hs#zu@M6O6SS9`52A2fo3Z z1Rpe)Hey~YhV0#tX!W3w=%aA^K`T*OALMe_cKYCEx1k28m!fX^zr zf7oi}HN~;|+Hg$Jk2+dzJbHZengRvhID)cbmN77tRY^Ckm*NmV@iet4nXLs>bJUhZ zr-D`it<6!LIH0J?k~^~-j3#SzlaTN-iD|et;n#lo<7lIJeJYcO(pF>@kjVAIQ2K43 zTo=OJD@48A{SA?7>$0s+^sR-Mc&x<|Dc@d7)VdbK3)@228|m?Mq%NXeR&u{RkQ8-l zWxdNBp4}9}b{;0Ftlub@7GhbMmhwHjvy8GVXzH4>swj#AYc0v;^ehZpF99e>M1Z5=K(Eeb7Kzjb;1pZ$DM#CZHcjj=G z3AiKJj%+*IupW;E&cf-p$9qLrFFJWO-KDL~%I#51Ww(SYx7HM+b73N275GF`Rh69h z6;MqH-jkIz`Y0L`gqEg*YSq-C9a)GH_p1QLMoedO={MF9J~Vh&gKDUflxYSpU0;&r zC7*n10~a*Ai-ybVmZJ4uc0ouoAW`yKEYWcpWZ1&aQtT-6N}}CiE4X@Q1Fnu`7O+-w z9zQJP{aJZDEol-VjIO6>J z2&JH`;Rkm!Uc59wp%}L&P}e46q%n?#RA-eqUd2Xg!smuUqTThxvUS(8T1Y%;f2$-& z)V-fW<6yrOp;q1;TUZ)va9*)jOPYER!A=2X6To}&N-k0YkR}OrT~n4NNjiWyWnL^8 z4K2&28<+QTd>DT<6Jo)Ch}D-1y{ak`p&2%zkM;r27kZhs$RG;wY4 zHyf%e_M=}y>4cH1k!+tj?r|S{)J~;6K5FPrASbPP^@-amQGX~W%616tDj6#XMu@i~ z;h+@B=7cgY7z~GmYKl^Uc~)?7YeeCFJ9)4r2>>*z9m1gKqHNvXDS}c*?Mt9g+Mrd; z^kBv!%W+t|cX%IAN)e|i)2SgH4OkluX`EuO4kUvCN-1h5h8jLdG&^jCS4v5mc@n|* z_M}#OP_}AnCnTMi&gL?(mMRX*V|DZQ_n~Uw#cd(nWgFq{Wr1@;#Z#MxSs~Fl2zlRG z1e$icl~U~P?vkb{!Fy~Jp|wV9MG{4>4s*2K}IMIFMN{et?v;642MICR|={t;}86ZdI!4NY)7pA#H~k<9}ztP_xSPf zpp%YWx$n~39YH?~sCGTA_wZ^B7!6(r@k7)QpC6IGGG$w7TvI}|WN#Yt;*&~TvlIjs zP)g$oIPVBS%jm%%3TGTBG@{s2(3(mFtd@f zAhiP;ugJ=pZ{>k&n=!SQdhUJ!(@G**qokHwHc|_Yw4|47CxlwGGkz-%|IgQMaB+Lg zC!bhnXcfy^t`W`+MSYzb5p!jA;N_i$&tHwGoviPmfJN!qpXDrynk>tJfKs5fp{{GT zx3&o0Qm`eI(oCA)qJV9uEf(I&pPJ-YPM#M$|tl+5q^T zI&d5L28~2q+5-kPi7CsH#x*Ffux?6TjM|8-b)Rw`v_^$i8Vo>}lGX&(ns(5Q9@Jw+n+1WoNTQ1Q`p|xf6FQ2f-wfIHFeW4+dW`&bDgp% zSuU4UWx-@TAyhe4UK6Qg<@ZvupF=>m^>y9)ZO2MGGfPp~~c6!Zk#y%f*M6smH2=L z0;ZZ#Czo-~wP|E8?MB|Cf$NZJY`W~OoGy&R7|8ZisAs$ z2~Fcr-Z5TV!+TGjWrPrD+Tr$i$H8pLbgnp@3@OSQuMADo@b;eL!p2ZMs6$|LsMssy zI$+wSn)enpv4O@LHrFP+xmU0#19@3;dtXu3t;MEaG8qrKxIV!7!0m-%QPkW$%$esE z)9DnY#Cmfy8WEhQZfZgRYYcPH=RZbu<0XtS_tt?=!)i8WwKuj|d97C#_xK2+ zC*U3*O{@x79u%FJwg%fpNbN{MIWY@4dfO5)ntIE!SS;{}IfpL}3FAOrJK=8?WKxeZ z1X|+_FJ$cjWh~mXuc?4i7Ns;*)c_V(SM1%r14=R8*dkRavCmj$3v@EXL@`BKFwE^A^L=h|zF>bDr6J z#$-HZdt;3oJBQSDMP3v#CU7*8I&)o9Sj}5y#dWR7vW&c}Ac)(SLWW9o+vA!Vg}8kU z*4Idq1f>-?NgY>3$)%^BAb3ZSXQWAj)`lW4IlOfPtL#x-T^g%(E5H&W4$9+|Lbc-w zhvz=V^!iKq;291E6fb2|n`_6v?Rz;cdi3~+qbJ}Vk3Kr}=?du{8yN%{dQpMT1HST@ zT4Rz3*EASo3FQGHNGnnt*`vVPHIC!?zN!^qsiU6XZf-DI;e2zH{#MGMw1n%6*^Jnp zCsqRr3NiesE1IUkT)KpfA{yr?%MxQG(rucCs;b!W9%D>PTo6U}h^#~KEEXlx*$iVe zRarprjK^b)7MHH9D5x@tCqKnayV? z6xni#G6oGabw%)jEX%Ogq7=*z_F3E9V!2!}8V=do+N3T^oOkT)+-145M-)jf@6kS_ z%^DoFAgPv{MUa)8`vj=pg8<|4nB~9UhcB#s^p(&(di)6J3Ao4ELf3wDB*;<(;|W?5 zjHEn4F}kuvo@I>36DVhd;F&KA&TmcR9N)IZ9OJ&I<%_tZ^8WQEAw}Gc0`r*@~#|Md?fP0(`9Hlq8w+~n&HB+VJF$%OI-d-cWAq3nM zQ-W_enB`nKzed2LS~<1%UbH%1w=P)6k(*ND4Q-4l$?B>ShbLN2@t%OgJJ`Roq{wqF zed2lIwF%0`496obt|#m-0!!~13~zDbg#jMmn%))JHmxwJM^RY~2{_z=kR z9OoQGmQfWsI(K_fHE?7xozSC zEouG1=95(UcL_*4l6$kFd@Amv;2viNJpuPPo4BV9sZ~RpfH!U1OKe1Rg(A2b(`4)& zMt}%{f_E}_0o9UBClb;}?MF@1$c$j)ab8l^BIHtSiaJ0rXk$Sd<)*l+F+vyqcv%ok|YVb?E?nzO%0JO z-r*&i2`V<-1s&qS~J6u127+BE0f#-PgAnik6t=LdRnV8%O2d z!C*lCY6efmAJ`$(qsPNWPryCS4!WqflSQ{}x-D-?1lguI&BZbEZ(hfHnZIZ2DK1{4 zjgiq>;Y&x|IM5Bs#;9=QAdN!Qx(z~@p;ZivBUWcH5eR5}Xb8chjiJmGuYdOkTzL8t zldD(RIk0H&DDnkaR*(z^M3E%~n2d)^cW!e1TQ{h)9Ia#4x3+lx^PfW-A;{riz;c<1 zy{2-^oDPms-eoOD)T&KAqZCzL(=-j%7>p6s^Dv1y z+}~yE!X=6#XM6h`MV?U<1yLN+WOEK){w`5SP&R6LS9*SelKM5RqnOr#5L#(_0Ph_d zL(rgYiq;zMMToWd{vrIWjSuvY>e1t2q9@=UXA4IyNgRu!Gz1;wWumzF_~xEy`I*I#?&D3D}h70o?umt6ct>PvDZ6 ztf{H19HTVeXmqPSMk&hW9N#q9bO7F?jm9?(!8h1+h>j9MJLA||OB}~|?XPYOucKT7CZTgi2~JY^K>?=yeq~yR zt#DM^)>_)XJPJ&TF$V8kTL->QUkC1Sme3P$k4GP?q}x4T=?Olvp){Q(C4_;cs#|*~ z1sh3;8!F1GKx>OpiqN>WnA;9%@Ij(kW!qY?lGH33ylX{C@_JJ>ZF>#ko)sV{M>N)k{)gvqR|+w6yx!j z*=!0*>dD4voO7~#9JBN4cc~ASB*_?P#2r*g)EX2&SC&M>5uj+w0%I*vk^-$625q|9Ig|opEQbesjK^c*I2KFF)(y*h z&;H&XNfL8@`y436;q^BtZ`>wLCMYeW9$8InMW_~8O&l49gOtg5NMsdSt`^8jM_#s# zyiI3SIkrVh;skd+hZoa_e?0Z*@d2PG;2viar&v=er3uCh=_xR2gmcnTGdtYl z{94N9T11vPrt=1+0(gf)i`$j=G~VNz8Xq(sjZ#`j)(2$3o_J=dc0v+I{OMZT<2A0o`ZBkF@I5X*|03%bu25ui z25CYRS>hzZ6*<|BHyI{l;v^x`4RNGNV#^@5#IYf6LA=9~>~5tdY$Q z$ZE&AjRDVI+2ZEjYcyp^2%^}zZ;tBOXl%7`%7Xbw%7p!MasP=d(kiG{q=I9LFqY2fXo@Uz7HuK}wy^31!CGgN>wG8OKyr)tXdP?CnjdgW=-# zCgY*OsG8boX*Kd~4{O`68a%DaS>^`&pzwjV1`H|$d=PR~T4QvCQXbcI5v^$_0=3fs z{ISCNwTl7)7~Q;H!doG-NU!;RDq9oXzzi*IxJpYwH7Ck&$jD7B0;9DtNfbzJLmWG-s!>hO z+C-Gf=}@7KrU`+0RQRJnsGcd+#?v7Zrz z1v*qjaZDUX#6ycQ8t*1FO+{7L%;pQ4rY2i1S!OwhhX))S9HO(T z#a45A5THsK#g4+4D5vp-BaI`pvM4HSF=gx0W$b!N8e6P}*eFzRL>5AvP?Z%6XE`it zb`CQR_ph^Y^(pE+Yj>vfJljYdwtQ1#twuM8nB@VszC+}uB;k;liX@GRq6Cv_qA12S zL#jHasVf$XIZabh*A2_XoaJ)KGRs&lm*jbli7Zwh3)1pDhhMsQbg|U;A@w*5=n1&T z*+yqcNn7_dQbYAxqYVr%Zcr8lgVB(DzE9!c8?W3VX*^Ms5b_e=cu-NC+OX@lt8&DjLQskJ0n?|C^BhO^#2u8kBwF8B;QW&f8 zzM?83)`mkSw#G*RYhW~vh_xaz5pfccs-;BsD#0tu-YjRDJ8s?DAsJ5y!J)OKDRX=y zww6sP83JuIVYyGVyhT#&qo!{Y<#!o{8F3V2tz|G75XT82Y*W`Yd6rWY;?h;*8Ov-* zQRFNZ3udz!P18`<0Ypiyzcc)1$`+f}VhToIR}8e!H}8 z=Y-X|L`k1*z^)Idb}9y8$l_p^H*QT?qvG26^Jp8;szhew3JFW9*yFu!hYM&za0F#g zDryZgjEpD@GWE7iYU5qq>cNyWE47xDG70Fo9S8!}wB{de)Ty;aSuwIOT49YMvW6tK zB#9x4Bhn~hIIJ-vi&qwVvLg3E$@$0?qyNF^Ed3U7Qq*{;Fr$H^LG@_d-Qm8(GzfwvyT-*4m#kC2cyAg z>^P;lnSp{jJ7BT5kBt-JD-ouhOcYu}j1VBWfJfhxitg0Q9uLYAln2B~%Gl&6#q1h) zZz@_07bT)K3ad0)TXBpsn%GKTF}}eXMViFKR?IDu*bqmiopxjh-c!|nWX7d(|Ht%k*V07)@Z;Qjndsj zhal38-|dqHbG|f(K)ch&hCSjbbtLK#VlB7Ohr5qFJrP5y~EsYeZ}nMg=0H zuy)X1FBqKnl(lEJs5x9N*qfF|V+O4qW346`RoFqG3Wfkg!y%?xV0XVuT^Sh$$V>qbGW!D>j``&IDNb=I?q1wV&=4R5Zu;EyetZ9fn=jexWSyNeGked>{>_}3g;?aj)|9ox zZlAfA3Y#T`Fn>wfbzHtC53yEXQ&2HLj|mU4a9ZZwjt;GOfF6zHU`gfOxFoV1YQHDFe5I@Mamdsec zgk5Quu_*t7u(mf?Gv8Xrn2DaxlGi>Cry_ALYDIRiktyb_8}V4_ z8`Qch?H1cCy}#2~AkdK|FS)RYQlo|Tn;-7!QMG)ymFsj@U*i_zLb7=ph1{rksc@oF zqWGwj7%AaUjmEyV&LjwAa!t=*cKDl=aB=ELvJ2iffYM<11K`~NqoIbj0TM)k&SjWz zv2N9>I36rA=9O-(!m?@VyYaSKmCkZqECGCFHUFP+g=<;S4;WaXS2JY(l$ees++k#T z{P>pHPx$9lhK}&cqCdQo8jUkjdYp5~9M~ER2}TG$d>GV_wywd^rdwtz9~EGyZ>z`?(sItVo6 z^Gi{G4GBa8F&*d-f_i=^$;dr^tAX-;N#qUxM+%L)qG2*s3h;vjB_fMnD{D{hh^t_k z0Tn*SfGEd9e|df%#pIgcj%&vJLa`-C@D0AJn7VdInD6jbvw8j^&vipyTDZe{zFqnP zYx4(2;%|?yDhpcK_JtUXl1kqzq@_YvlpHxVd6?jeb$IRD zuQwLlKchSnI;vQ!V@__9nrcR|?JvfDFx?F04p}N_5VO`seGXrmJN>~PQ}r{E+rc_< ze#FtqT7>VSX0omh76*87sCv~Kk&HuR)R@YEJ}YC=7t4sS&ucsLR@IfvjY zQ}np}C>hz;)<|o{lRZ|$kz;rT&9W-T><&wBZ)Sqe?}{si{HMB{z-;5Wj4FwS0Ub_0 z=8r4vWJb{r%QY2=(?gK5s7{iCRJMau{%#gd?7c;vOF;k zfgHP`{R3A<(4E)?kAvr5DKiH2Vl zjWxcDc(T`+zCP3EMGs-{s~@%38U50<1T=gLVZ^K>w1+&i7kOPYUQ=u+<+F&lJ({p= zi=W>B9_|FK{`37tqWQk42Zsy`TUx0jD>Y;bHVwLQwx-4k?0j9G9Z<3pk#r36;35Rxpyc;7$j*LgX0aq;RSEoqUinjYUC?%YCYnXjt9*r)g6Ym_HwP@DK6b5oJtuJ zsPiXrqSIqH#<|6FC?(Cx0uIqjB5FG{Gp9cYFvq;u_Q4p09>APw`^sG%ruSXEEnO7t z`HZH5fH@PU!Bl%2Ro?*)j5kbL?x37qoltHBA=+_;eG!h`g{rcJ2 zIk^;bX{{A7s?hym+O5u_Q9sF+JoX^vz};;>hzi~WS2@H=V*!SS8!X*og4IqWT`PA% zELod!q+k^b@9$V0-l^Dhq3dE}Lw)%t>XuO>-=BI*p%}ujky@~m1_9pwuT=Iz-r;Tn zN&Ilro%$rBh#wzRZdHfz0`HL{!|05Rj0W98HA7Cm47;}%RykBvF_M?sEr>iNVnb*Q z1BN-4;*73NKwXcr@vGx~_A&iar#9G~y20fG-J?lK>0VA-Cv)R4( z@FYe!z2Qq4npqOB(YuhrKPVT1?wHp;n&@q`2OPUQq-CVRt4n>G#Qb>r0T1`x(yc5d%Zm_Qw>9?*{X@jxYjD|);J~4G zA5jA0DHQ(&3`7^7zd_HOlP_S3p)lJHrkRpP~#$6VR$>e;_xbK@rGcOR{>@pQ=x z7#HXBy#*C|s_Vt0sDcQ+tMYyPM9coI-Mz4MK0e`KQaw&mzcjpX7NYz5{D>eAbW&%XnF=`d>pjRT%a z5@L4`><{cIwsX3U@XDTT-;btODQ(?pLO~LcMHtu{)ygso_gmHfxdc~XhQ5Vif*xcD z0m>Ph68DS80yW$aKeu>c^7H(R51$ThHuo0KMY9Y|H=hd_v(Lv`-%b9F6qxlX z-|ZPpw^N+Gg9sr%tVOe!L8jvEAkZ_P`%B|<1`V7tb~t5niLW3SKkzk3HgbR@PV6L zG2P|uJy!44ZhcR+&YsK5>dRKbZV6caaEncPXHZdu>%dv}0_yMX5A@I4_SpeA*BiJE zoT|+wqC9T5jg-Ju)-=2BSY0ee2ay)(+bP0mBr!+9tdyG&F0*GUvz|vGF%OW;hm`jPa2%BKWS^QAzZyBzH>~#%S?y{#|-N2e@FA1LY^N5+4RQcWj^SxF7|o6_nzxve6lyZf>LH79De_~v zR4NO546*-D5I=&`7eJX@FPy#Li0%D}FmakhLKvq%}_h|ZVLtkhJKTN=%=SXt+l z52%}E#cGsCkUew$&F8{%m6qSnVA1>jq7gY{*v0xD0X({uD6BgQDR}A+8VS0|3cA14 zT}1h|E26qy>esx>slIo_b)8Mq+5CF2^nDbvyAh1tXpbj zzJES6ub*~0-3L!imAA~)#Ow*rnXn~7PB*nKHDCeovo-<{DNy^$D(ND}yZ*+{4666^ zTmW<2T4|r6>|9Pft)<-K7lYlF`yBT3=L-kLn>|z(94U!|Z!Vrv4gsZ4PwZL!dZtie zb`(jaafk0J``iWM8$G{M0Y#AYEp(U(9%8}jBN?UF@63AtSEBxp8`z)Ai1JN4`!Bj~ zxgO5NVcTmROaa)F_V-aQJpkYa9sp5%{PI%d<(G?ilK*y>N8a`$=?nJDQ(_?LXAbE` ztVmf5eU4XS_o)IsQw3em7j%6ux6qgBg*5SJfqO956Llc$=()~+HSsjB?2lgH5v@{M z=a+`hj-x7qbrZO?pVjn`1F04&&ruh|A0l4zxlCXiCllJHJg?k>OL4>eh@xo#Q#f#* z5YMuU2f-@2t{?@l>i|;NxIpi)`2Bg%ZwsNX3-WI{oz7}Clm_z%(5PD8d9v--8^2)p zTpun!xCB9h4o|SvBrL;Ox3T#~irH%u&0q$>B$72-cnYgB;&ps(|n75HgiU35$)>t+BNgsqgsu5Xt+CI;_(v2-U(r?m_Qg|+)|-8AvBTZF?K!Wlh+f^t0$^9?|G zn9|JA1&}lTBx{g6s2!3&4e^_T_^TNtU-~EkB>yUwBKXBE2qmvQS=<`k-Dla*Ew!On zuo8x5agEv8&8xO*(2wllMDh4cE?is322W+^OT+3?X=?bs4FsqjeGzV3cjH{8zR>L% zfbmFD85R>tC@)GnsD%Vhg)F3-E{DB7J|Nc45Nj^jn%~hjEq8x~c5OumYX=viB(Y?zcXZ4}ZMJ+FzBQS4_U z`?gOk0aN7uP+z^Xyj*wzRniw!)@4_Yra@$O%e*ndl*lNZ39tO=Pj|;QH&q$>BRH<( zT2K3zcnACUI(iWSdz%k`^RZw)a_ftEwRPGs4n*CNC0d3Df7D@>u=<}!@(7J}n^EWM zdEL1qO>uEFml@YTBKq#_FJC9Bw)grjW)gyKKYIWJ4xw=s9h%@`981`H-4P8NMFHp0 zhF~O7Dg}Lg?Hhw-m25+2xu?-Ux{i|A;8|0;{_puuT`JuKv#39(Q%;_)%V8c6rWS$K zKME8DKXGS+dQ;j{y#j-LU!THSD#V$NzYQtP60C)nWGR#t_$o^9G=eu9I)0AT&uXsY-=u6cB(drh}>=ZY1hLTmi`ERQ(bQ#dbRE z;JpPgd4qBvw+dhDcI5GTeGF8uG>+9R=;=TQL#3DOmx67vSImv^<By=DOE=M8AzOw%v6l5~oxce1S za(+-gd)>bm)zzqwG2dM8SJDnk)j3k7BWR^v0d3wMe1_;Aysc^dGL|=c@-U0ehoh|IwYVsrt99;OpL3V+;uCcm$>;o*bH+qZ=u};_)TE=C~(W?!5!Eh0smywbj1Gonof)K7*9f5YeH7K3z-{7BAnT^?^%Z z-({T^7kUc+n^|>UT9u;!RF(5yLP=vzKUwX4PqD4+1e;$+)aQW#n*qVg!S$9n{n*(i zxTxC|vvw5(2gX;wU1sl()}__6*^dxX9qtv`XNaHJ4-0gU9$$SgS=O`l7m(b!P$J+X zxY$HDyRsWGAMFc2v3tDX3ZJds<-!>dI;ipoomNN8RuYLf(^UFeY7Tmd!tnZeH6!R_Kk{#jAD{WvLjTaYLVKmne-qRMS*n808F|x z_uoQa)`onZtG4mv{dtdDq^-778Qh{MF$+(AJO02LZ{qKju$~Zh!<8d^urX-jg!EPW z3$l(x;(?I?m>PNo?JpH)RcitS)g(_C$246s=_}%d4O^=F0ydL^fbkp8ZznbvBaZ|@08Ux;3sg%PfJ1^3~$n$Fa ziH8oI>3VKUScfXg#V!sk0JNrK#J2KOk@RnW{Wh(8OBENMi!IwLyww!Y@q;YBkZ&W`47cq-Xe#G(bFz3FrK?VY6mTzS!V zk%#aFLPrJran^cco69x98OJO)@NvoPav#s8G&P>~ujEYuh-f)Lni@Hb(oQ~s<8LU9 z>L_R?n<#GtcW)Dl4~4vY4>GchaUQpv2YHEY-N<|J`vB(Fg)NbWFvA@Vtrle_u7$sR z8POfY`|^uBIJ@%44oAK6W?$&J4j#%$*8N0PlWewk4;YQ)`Bav!%M`AufoU}ZjU|3& zsR&u;o8Lh1PyOp*=sQcm4c8y-&!N`>n9EM`VvE{EsLd}HzI<+O$kA6z$=Q-DbE9rYU%lh zm*^STw#?J02uANEqLcU;Msp4P<#PF3>h2`Q>ATz6lo?u<(e;M;qSs)nafmv(2G z3y|c^sb52})A!Nh@2EHT<0Eeb{b)kV3&I}TN$qXOCl;CG@$0o``Jb+3P&*xGJ3AE@CKp0s(dSp_g%^Nu42EfRC~ z?swK@YQBVV6*&zUX8FsAqEoL66rMDG3U}!uZTWF%v&qG6!<;RC3v@uKry!k@ zN$~4A)-qFl08p$)w%RTuVPZcMm7Bv~$o^A3`VJU#IN>6Bf5;LN&H}mqW-z|^Fy+h# zD=47rvUt0D_4AS$(N7;u!sjN{&h&;-+SwO>k>yju5OUvBpIivE2Q$rQrUUd|4iPPQ zW)*wpX?c6x_kww*;LcR>V%aQ^hoT9Gg>N$`bF;hPZAvbV2y5Q}rV`5K&qiM;i4k$v zr$9u#2VG<&P1WwrwZ@6cLk#^Tg&mc9*HSv9|@jV zR2n-sZ)6fI-o1>b)O_TR4Vn)>PNB@AXN11F*2oG^#xD87?d;8IkT3FDFW3*I%GL(nwrpc!rU~?3`uRa%aiBqUt1Msbq_EzFW@cq;vNf~egFx5-t-|?AHK#SHZ4rd z@Pin0$CV${NosMXWE@dnqQ(|4BQj^!{hWHW{(BeUa}4`n$F}sni`tvOhKWYGlAW%J z*(Ysm*Fgs0rx>E$E}#u_@ON9ASH8`y;_y`2yj{~Os77gMd*mNKmFv*EdDs5XZzae5 zBIuoe|FFTVXpBl8>MRW|q0Gg13+;6|ivfF@bUh`?1dD)S?6|jRs;p?kV=ro~1VJ~i z8J2#?NeAOuZ@KqN+AWn6WCth=>(!p)l^ob-O?jk^s5!Xi9b~JJu))QwAT@f`5&?TV*0m37ydm^UVwp;o@!Fl2 znhp`At+MZ{Wap1shK7z>C^f;5SzoLM)a0n0!4rMYD?Hwwgq|MUqSvwfjWc3Q?3K|Q zE46hxn(_4S#a!BN74?}1-O|<5V%cnB9Vm^tY=%l8F?$?4G;fFe;`A1Bo`kNad+9pP zWJdP*a=nH8Su$Lgfzhrdo~!1w`+-Yz~r$cTqxr#dMA%JWHrlw<=KPi!`y zZ)9>vfa}{cd%(6=DTxth43Skq)H0bFVh+{X^uy{uTV64_wXyfqD1#Ymgtw9wxC3-A z7k)_VohOHr5X4)>beXt%$nP_A&7NwKYg>JmsP8L=JY}zRTp)_B*T4%xf&u*#LiSByfli3dU zRIB^eZ>Ym+ndD7V(yrH3DAm*M;&n9fpDFA>cAoDp!r3b7+h_7^YiskUv%TCRA(ZQ# zL_6`0=YCb6_b>X7;JVM>`vkTP z#MyCDTixo^`+2l_n8W4g+Rj?N++5)M+D9H@zaoW5^J%bSgHqW{=6ePijg)B=E?LDC zQ(wK)tSG`Ng6}-N?m2SVbBf$jtW2hH*mph7sYjFZlcPR8VG6gi;I|I!#rikd3D}r@ z;%g?sA`s9*an1ahLN&(;=5U9HsG3cB|IPV4PeA4Si4tl*?E@`{mT!^iqy%^P%E(;)3>RNQaJg+k%7VH#D#gVM-7es31Og`_y$K#VcwEq(!VWxz}&8 zP<{|02qJL-kzttlr0;o$XniVq=&)%etqQ`~yXOymboX`6LG%)ER1`}7RAIN-*sjiD zc{07&nB>kyJzlv>=1x4_a9tCaUc_NhWWNRWc|Ju)Q}a)aX#7gDW(r*MoPW$t#KO}@ zv*r&xK8v- z-=un=u$iJXv|)-)@$M&Ke8E%7W)x`^%?-YoRJ6q09=|40xHTy0tklb8+?>LF44O40 zf{y0pa>JI|6{&L*6#o6F-4+iy*zV}Vm(NB8Px}!(#IefZW=?WX>Y00GMQal_BtKD* ztkk5O)v-X<`@f9i$m%CHdIM>=oGvB3eF%} zYJp~_KF4oj>V<=jr(_551O>iLP-f7(UgH?l8)p7>BiX;VIO0L_N{P({mz?r0KXi2R z)L-b=>v8263E`S6C%j*U8`Ab^7Tog3c`k`#DR4qggg~9lW{Xq4g zZI%a~0?;=dV+7hk5IDPvT?c?s%^vty(8k~NBwYop54S|o{%slwTwGuP_A+2$UAjsR zI=t!X-t_ztc~c)8^jBJ_C(Wk+1)qUp{qQm1GVI7<>!|b3Y!2E7Z|8yCZN7GAlIOL} z%OYjv2_a)Lf&`H7Dj1sfrpwr-i4(=6Mz+~^WJx(hG~qnRJQNy=+t}TC&7p>5*Yg*e zV8->?G!9k#iBPz;=0{k5%Iq$(9rJ-m3_Ve8kc-DA-|f!CpZW^PfelphZT`(5J%jr0T5}v*&qYQEuw|xY#`X zi_k&~1-0erMQ(QPs=-5OSgrr`ERadJL}-Cai`*facJ-^ooN8(S~Ja2sZXOod@ z?;xA>Gd3$fueIXcrF6i`=)1i>g(0}SP?Xt;~tL~A>u+g#(T{wbU1 zFAB3&7rlbqcYzmo$GyH}fqbbWktqnfwl@<67lzFf0PcKRx}2wM)i1$}t=GWy!+Y~1 zM?_(tb5p!u|KmJ%uKnqK`dJy+gNv{dCB3bzoRG?as{*sx#pI|%VP0pup~P*`wjmDl zq_J>taQACa+_88r;QCLTuU*F_TFI{3b%3YHo>c5`wCtYCBis^!9wq+L|1t;f}p$)um1-c&?A&=Yaw!}89`PO8OZo_k&;*RFMW@T*K% z6+VbNOP4;=NWW{ROn&SnFmT0NJG=M@4fVq}aGjp*-YYHqx6=)i(7TvP>bu__y?eX7 zkudCAK&k-7yZa6tVAE3i^X8}I zKEB-i_BWBm9@Fodos1o)J-ir3Mkk)|g8Bo|x*`G39OYeadym(J5(>V5{n%69i0oo{ zlLPue^2M;gUwxroQQXjS*>CdRz9R1nvqSlBg}~6oT`dtC)zg0RD%G*1NF>n>dBbJ2 zVwc{~2s{zn4GqrTYi7}2JO0yZ#}JU%x`!4U8W_ZR4(a;_DS60c@`1$$^_|9E5N@U; z8w4<$mFm$N9`ukj)OQh{Z$EbPu|8^zSo-}P!SA`K5>utFthIAH*3a7)n$Ao2& z(#V|+FHYI8RTJ<1s-gnGkT0HjgIC0C5$oV8;B@-wn{l1S%{@_H)16rdO$Y1{{SQ}t ziWEMK+>#3TGNcbw{dCAA!}y3}xYojmFP8)6z^}Jrhk;hOTlBp?Y z;ipx;T#w4V!=5I^e+=jBzCVllyAn0&XQnWP_bQhUIV82L#BiE5t^QY1oN0Q#E5Xdq z!}5yC?2x{+ECX*$?P@r&z$da?NLwC%sHpgLxq*dZ)|VHrmQ zQPf)uQ%3yA$<))9LuQ7J$Kn)Cpd*g@!JCQasMl(3g$EZ-QPeBQw^QK%FVA8Ff>7h246iB^~AidCGX zJwWbP3!14yBuWUuqa={_E|mh4&_@sPkXF)slo*wTpg)oe+U;`Y93;zTUlYzL2{zj{ zU->BOk9l)+byHVg3#!gl%<$H+4Y1JOK``s}z`8!TLc>y#>~QoWlJ4c|P1cOqf)|l# zkRxff*h5QhCsdK+eb5r>H}NwhPC)j}#l`FVL-S%Dp4T}TfJ>7F<@^&?AeNZ{)2Ui7 zK6o@A#5MNZ^E6)FWu9KKjj${C%5sNcTM7!Uor73;Oi5Ln1x6CVE^9m@-VCJpakC zz23}fhdMs0=c%?rv)t=JAg*GYJZMLi?+-JtG2BwoN1w|cy~dyCy2~aRW}ZZF4~fXr9MELOS|5dj-sw@dWI}8i!;?={|LMoa_zR5S6FemcpIcJb2&VZStG`EqIF~MS9Q<5_zv&H z`D^EeG%kUCK-@F*^+GMqK|rl;0aIK|I4W@#2JBfx|1y>`p|TFHJTaalJP3Skq)yky z58MyR{g*|j!gzc95p`>Nyd|JtK&ufQE~f7W1==I)3I9+{e&f@&GU?RthA#RpYaJQ6 z{E52=B&_-W*^u9*4mMU*3VuY2GX+?|l| zbOV0oB6}?p<%d^vmDpzacX_IBcl#M(cKODRk1C4xSkh;}kn?HPG7h$TqVKxg(yHHH z00gohZr|J1hrk0cmZ!C(maDWu8Aflk`w~N}ccU)v z-~wQani+RFG|~G9N9|sve|tRe#enTnuGmr&dzf;>N?%9Mt|5W5S-gIeN$l0T{9154 zif%L}6^4NNo3=Nj`@BRM_VR#z(4O$ zGK|CFE_||KQyZmcTOeBP%XC18vFqB#!l?6`2hJ8T+Nln;iEMO&i&dA{da=74swspx zV{ko0lXWjss!xgn8IAMl@wa4V7!|I&n5}zNObk0OiJ)_)1<9 z#g+P)$mZ;aG=m0vTkS1YV%cB`wUO!9IIp{`0}SoS@Rx7}cT6cJXEfo~I;kh~OgnBJ zSq7$42bi{woazDf-fJ6O({xOYsr+!(fsjCWNj{!a1J9vqw@!B_w}&S9p<|(vu6aM; zOl4)6{fw16P#B5GwlAo^)OxwZ0%n-mU1mq{X^Wv@(&R3(4&x|4v?MI>7yNws=*MYIhSFflPqM-AOj%p(s5WQMDIQr6Sga9PG zBtO7-JbJ@z&s-CT4ejW}U+qvODG7uR-C6Gz-1Ysqy`YN+{D;iVq{E(tq;= z@He4NKVQ;$ibhzq7TjErCd8Xi;*YEk1M(jq+M_%#NT#=cT0(`W4jRk#!G^opuWq9q zH@LP-7wOf=_X^W6U25yHA`kh53sZzAHNO2%z8c4Eq6lbc>kd;9kL>8a+@ zkJAhtjdUg&BY!}opqcw)lxUq?+}_%rhi0%Jk(XrBK$G8;bPOcFiM5k3jfPFtK{#HK zFDdsEBI9zIPB&83Z>DU7oX8c^w`EDST|n}MwdN{Q&w)ep-nV@jHq+}1BTVT>-;{#W z1=e%CUU^QQ=2sdWy#Jh7ryLk#!%%R(b*9mNa-*$-r|9lvn%Moik~*I6cgAN(OeN!+{j=v%A+j*7ESg2v1M4YFYgVjtgmi*BrndD`djMXH%Jl-Hxg z7O#h@hd(VgrjZ(y@((M{-0o#HP`(Smiijx$XG_@kZ+$ROot#(4m5q^LlrC{+RMAdr zAd^>E%+ma1BhNZ8P}#+lzaUXkD*x+lUngwqtZ||cJ^94rlShkR2iG)(E%>|N6jr@KZ+t};ZL(PwR#Q!tMX#{)?)tFK+#ejb*bAn@q$NT*SYmWGSFqA z6}VZ|-q@j+J%eRC+Hs;(x@G2>xOlVT5@TC6hyoNfyklLN&J!-L!e+Yb&WPgE9o8tY zv7Oi4`)Oa?eYz(;YWRAx`ofb2%5Ndg!2H(~t6H848YSoV?#~ldDjhbe4`bmPEkLEv zKAN<3x|xy`0M+?`xYRAbDW&*QL286)2)ssQA_OuNb`jKP{r%K@gg{xDpHZ1EM^0?Y z%im(zDnI?jLIDp=YwJ`0p0Vk{`{NLcVk&3Ub6iF@Sn*o}e^UJun zn|+$Hk*ECf`nxXO2B(U6`AWULRU2&fEbs4ku}fo&DsiqAv8*zH{PEhz4e}h`O|K^R z7v2%)JOC0++4@U3p{QJY>3kINrJIn?s?M+(G+7^2D38ax7GIoBbU;}R_6nq z<;rC?9E%y&utHWP*vTdY8BF0xpu3zMxP7}`I#onreDHuwe-%1HX!Bb~4@iA-uynEB zxfsY1qSZ|cB&`qZ29oFHr|x%$_zb5d2?G*O4b+Df-LgY0-}rS~uh(xkpXmxX?6)Ja zC=bl}uJR_dh&`wuc5PcXSRL3;A6$ z(tW8$(&Y}As?mZ8pO=qUZ$rZ)4sSBx%{`~OJ7=zM2k!J+PYu=T9vrQ= z(9hQbE`-Ondi_VX3O&%da6Ye-~KYn<>jGYFGD7z3K zE2TueAUQ#snKiX-?NFq39`%gd3yEIvL2e5b3`kcozWEr$mHP^$-R2A(GtGb}+^TY> zBt;xlU(6z%8h34fF1KjAjtW6~GPPjr?sJapm$&4uyYbnEP*G%W$i9ffE=E#I0Oj+6 zn%`irb@YLEo(2NZ-rmtNq}IDx`}Z#HHA1lvC0WL}REBUWvy|kM;ZeSP&cX)0qzTLwFL#1!)qCfbfAt)J#_FGgKK967po3NbqVFO64 zuzK3GE>9PoMhBfHIao?XD#hRzYu^RIf45eUHKa<$ zrD%nUqN%4e9F14`Z;x#ZF=&5LUb*qqK=C2+>Q5k?H$Bx*W9K0}3lWq=WDdu9HC8DR ziEsY;vzg`U2_JZnqeRxOKPpa`Te=^QU)+ERqMkghz+jECh&YCg#Z6~@sqSIhjbOfp z?O1A?rMcRWTegW~n}%S7W - - =:history - * IFR: Shaun Inman - * sIFR 1: Mike Davidson, Shaun Inman and Tomas Jogin - * sIFR 2: Mike Davidson, Shaun Inman, Tomas Jogin and Mark Wubben - - =:license - This software is licensed and provided under the CC-GNU LGPL. - See -*/ - -import TextField.StyleSheet; - -class SifrStyleSheet extends TextField.StyleSheet { - public var fontSize; - public var latestLeading = 0; - - public function parseCSS(cssText:String) { - var native = new TextField.StyleSheet(); - var parsed = native.parseCSS(cssText); - - if(!parsed) return false; - - var selectors = native.getStyleNames(); - for(var i = selectors.length - 1; i >= 0; i--) { - var selector = selectors[i]; - var nativeStyle = native.getStyle(selector); - var style = this.getStyle(selector) || nativeStyle; - if(style != nativeStyle) { - for(var property in nativeStyle) style[property] = nativeStyle[property]; - } - this.setStyle(selector, style); - } - - return true; - } - - // Apply leading to the textFormat. Much thanks to . - private function applyLeading(format, leading) { - this.latestLeading = leading; - - if(leading >= 0) { - format.leading = leading; - return format; - } - - // Workaround for negative leading, which is ignored otherwise. - var newFormat = new TextFormat(null, null, null, null, null, null, null, null, null, null, null, null, leading); - for(var property in format) if(property != 'leading') newFormat[property] = format[property]; - - return newFormat; - } - - public function transform(style) { - var format = super.transform(style); - if(style.leading) format = applyLeading(format, style.leading); - if(style.letterSpacing) format.letterSpacing = style.letterSpacing; - // Support font sizes relative to the size of .sIFR-root. - if(this.fontSize && style.fontSize && style.fontSize.indexOf('%')) { - format.size = this.fontSize * parseInt(style.fontSize) / 100; - } - format.kerning = _root.kerning == 'true' || !(_root.kerning == 'false') || sIFR.defaultKerning; - return format; - } -} \ No newline at end of file diff --git a/library/simplepie/demo/for_the_demo/source_files/sIFR-r245/_README_.txt b/library/simplepie/demo/for_the_demo/source_files/sIFR-r245/_README_.txt deleted file mode 100644 index 2b9d32d20..000000000 --- a/library/simplepie/demo/for_the_demo/source_files/sIFR-r245/_README_.txt +++ /dev/null @@ -1,12 +0,0 @@ -This is a pre-release nightly of sIFR 3 (r245 to be exact). We (the SimplePie team) will be updating the -sIFR code and font files from time to time as new releases of sIFR 3 are made available. - -In this folder you'll find a few Flash 8 files. The only one of you might want to mess with is sifr.fla. - * Open it up - * Double-click the rectangle in the middle - * Select all - * Change the font - -More information about sIFR 3 can be found here: - * http://dev.novemberborn.net/sifr3/ - * http://wiki.novemberborn.net/sifr3/ \ No newline at end of file diff --git a/library/simplepie/demo/for_the_demo/source_files/sIFR-r245/options.as b/library/simplepie/demo/for_the_demo/source_files/sIFR-r245/options.as deleted file mode 100644 index 4d371954b..000000000 --- a/library/simplepie/demo/for_the_demo/source_files/sIFR-r245/options.as +++ /dev/null @@ -1,12 +0,0 @@ -// MTASC only parses as-files with class definitions, so here goes... -class Options { - public static function apply() { - sIFR.fromLocal = true; - sIFR.domains = ['*']; - - // Parsing `p.foo` might not work, see: - // Appearantly you have to use hex color codes as well, names are not supported! - - sIFR.styles.parseCSS('.foo { text-decoration: underline; }'); - } -} diff --git a/library/simplepie/demo/for_the_demo/source_files/sIFR-r245/sIFR.as b/library/simplepie/demo/for_the_demo/source_files/sIFR-r245/sIFR.as deleted file mode 100644 index 4902e003f..000000000 --- a/library/simplepie/demo/for_the_demo/source_files/sIFR-r245/sIFR.as +++ /dev/null @@ -1,359 +0,0 @@ -/*=:project - scalable Inman Flash Replacement (sIFR) version 3. - - =:file - Copyright: 2006 Mark Wubben. - Author: Mark Wubben, - - =:history - * IFR: Shaun Inman - * sIFR 1: Mike Davidson, Shaun Inman and Tomas Jogin - * sIFR 2: Mike Davidson, Shaun Inman, Tomas Jogin and Mark Wubben - - =:license - This software is licensed and provided under the CC-GNU LGPL. - See -*/ - -import SifrStyleSheet; - -class sIFR { - public static var DEFAULT_TEXT = 'Rendered with sIFR 3, revision 245'; - public static var CSS_ROOT_CLASS = 'sIFR-root'; - public static var DEFAULT_WIDTH = 300; - public static var DEFAULT_HEIGHT = 100; - public static var DEFAULT_ANTI_ALIAS_TYPE = 'advanced'; - public static var MARGIN_LEFT = -3; - public static var PADDING_BOTTOM = 5; // Extra padding to make sure the movie is high enough in most cases. - public static var LEADING_REMAINDER = 2; // Flash uses the specified leading minus 2 as the applied leading. - - public static var MAX_FONT_SIZE = 126; - public static var ALIASING_MAX_FONT_SIZE = 48; - - //= Holds CSS properties and other rendering properties for the Flash movie. - // *Don't overwrite!* - public static var styles:SifrStyleSheet = new SifrStyleSheet(); - //= Allow sIFR to be run from localhost - public static var fromLocal:Boolean = true; - //= Array containing domains for which sIFR may render text. Used to prevent - // hotlinking. Use `*` to allow all domains. - public static var domains:Array = []; - //= Whether kerning is enabled by default. This can be overriden from the client side. - // See also . - public static var defaultKerning:Boolean = true; - //= Default value which can be overriden from the client side. - // See also . - public static var defaultSharpness:Number = 0; - //= Default value which can be overriden from the client side. - // See also . - public static var defaultThickness:Number = 0; - //= Default value which can be overriden from the client side. - // See also . - public static var defaultOpacity:Number = -1; // Use client settings - //= Default value which can be overriden from the client side. - // See also . - public static var defaultBlendMode:Number = -1; // Use cliest settings - //= Overrides the grid fit type as defined on the client side. - // See also . - public static var enforcedGridFitType:String = null; - //= If `true` sIFR won't override the anti aliasing set in the Flash IDE when exporting. - // Thickness and sharpness won't be affected either. - public static var preserveAntiAlias:Boolean = false; - //= If `true` sIFR will disable anti-aliasing if the font size is larger than `ALIASING_MAX_FONT_SIZE`. - // This setting is *independent* from `preserveAntiAlias`. - public static var conditionalAntiAlias:Boolean = true; - //= Sets the anti alias type. By default it's `DEFAULT_ANTI_ALIAS_TYPE`. - // See also . - public static var antiAliasType:String = null; - //= Flash filters can be added to this array and will be applied to the text field. - public static var filters:Array = []; - //= A mapping from the names of the filters to their actual objecs, used when transforming - // filters defined on the client. You can add additional filters here so they'll be supported - // when defined on the client. - public static var filterMap:Object = { - DisplacementMapFilter : flash.filters.DisplacementMapFilter, - ColorMatrixFilter : flash.filters.ColorMatrixFilter, - ConvolutionFilter : flash.filters.ConvolutionFilter, - GradientBevelFilter : flash.filters.GradientBevelFilter, - GradientGlowFilter : flash.filters.GradientGlowFilter, - BevelFilter : flash.filters.BevelFilter, - GlowFilter : flash.filters.GlowFilter, - BlurFilter : flash.filters.BlurFilter, - DropShadowFilter : flash.filters.DropShadowFilter - }; - - private static var instance; - - private var textField; - private var content; - private var realHeight; - private var originalHeight; - private var currentHeight; - private var fontSize; - private var tuneWidth; - private var tuneHeight; - - - - //= Sets the default styles for `sIFR.styles`. This method is called - // directly in `sifr.fla`, before options are applied. - public static function setDefaultStyles() { - sIFR.styles.parseCSS([ - '.', CSS_ROOT_CLASS, ' { color: #000000; }', - 'strong { display: inline; font-weight: bold; } ', - 'em { display: inline; font-style: italic; }', - 'a { color: #0000FF; text-decoration: underline; }', - 'a:hover { color: #0000FF; text-decoration: none; }' - ].join('')); - } - - //= Validates the domain sIFR is being used on. - // Returns `true` if the domain is valid, `false` otherwise. - public static function checkDomain():Boolean { - if(sIFR.domains.length == 0) return true; - - var domain = (new LocalConnection()).domain(); - if(sIFR.fromLocal) sIFR.domains.push('localhost'); - - for(var i = 0; i < sIFR.domains.length; i++) { - var match = sIFR.domains[i]; - if(match == '*' || match == domain) return true; - - var wildcard = match.lastIndexOf('*'); - if(wildcard > -1) { - match = match.substr(wildcard + 1); - var matchPosition = domain.lastIndexOf(match); - if(matchPosition > -1 && (matchPosition + match.length) == domain.length) return true; - } - } - - return false; - } - - //= Runs sIFR. Called automatically. - public static function run() { - var holder = _root.holder; - var content = checkDomain() ? unescape(_root.content) : DEFAULT_TEXT - if(content == 'undefined' || content == '') { - content = DEFAULT_TEXT; - fscommand('resetmovie', ''); - } else fscommand('ping', ''); - - // Sets stage parameters - Stage.scaleMode = 'noscale'; - Stage.align = 'TL'; - Stage.showMenu = false; - - // Other parameters - var opacity = parseInt(_root.opacity); - if(!isNaN(opacity)) holder._alpha = sIFR.defaultOpacity == -1 ? opacity : sIFR.defaultOpacity; - else holder._alpha = 100; - _root.blendMode = sIFR.defaultBlendMode == -1 ? _root.blendmode : sIFR.defaultBlendMode; - - sIFR.instance = new sIFR(holder.txtF, content); - // This should ignore resizes from the callback. Disabled for now. -/* if(_root.zoomsupport == 'true') Stage.addListener({onResize: function() { sIFR.instance.scale() }});*/ - - // Setup callbacks - _root.watch('callbackTrigger', function() { - sIFR.callback(); - return false; - }); - } - - private static function eval(str) { - var as; - - if(str.charAt(0) == '{') { // Ah, we need to create an object - as = {}; - str = str.substring(1, str.length - 1); - var $ = str.split(','); - for(var i = 0; i < $.length; i++) { - var $1 = $[i].split(':'); - as[$1[0]] = sIFR.eval($1[1]); - } - } else if(str.charAt(0) == '"') { // String - as = str.substring(1, str.length - 1); - } else if(str == 'true' || str == 'false') { // Boolean - as = str == 'true'; - } else { // Float - as = parseFloat(str); - } - - return as; - } - - private function applyFilters() { - var $filters = this.textField.filters; - $filters = $filters.concat(sIFR.filters); - - var $ = _root.flashfilters.split(';'); // name,prop:value,...; - for(var i = 0; i < $.length; i++) { - var $1 = $[i].split(','); - - var newFilter = new sIFR.filterMap[$1[0]](); - for(var j = 1; j < $1.length; j++) { - var $2 = $1[j].split(':'); - newFilter[$2[0]] = sIFR.eval(unescape($2[1])); - } - - $filters.push(newFilter); - } - - this.textField.filters = $filters; - } - - private function sIFR(textField, content) { - this.textField = textField; - this.content = content; - - var offsetLeft = parseInt(_root.offsetleft); - textField._x = MARGIN_LEFT + (isNaN(offsetLeft) ? 0 : offsetLeft); - var offsetTop = parseInt(_root.offsettop); - if(!isNaN(offsetTop)) textField._y += offsetTop; - - tuneWidth = parseInt(_root.tunewidth); - if(isNaN(tuneWidth)) tuneWidth = 0; - tuneHeight = parseInt(_root.tuneheight); - if(isNaN(tuneHeight)) tuneHeight = 0; - - textField._width = tuneWidth + (isNaN(parseInt(_root.width)) ? DEFAULT_WIDTH : parseInt(_root.width)); - textField._height = tuneHeight + (isNaN(parseInt(_root.height)) ? DEFAULT_HEIGHT : parseInt(_root.height)); - textField.wordWrap = true; - textField.selectable = _root.selectable == 'true'; - textField.gridFitType = sIFR.enforcedGridFitType || _root.gridfittype; - this.applyFilters(); - - // Determine font-size and the number of lines - this.fontSize = parseInt(_root.size); - if(isNaN(this.fontSize)) this.fontSize = 26; - styles.fontSize = this.fontSize; - - if(!sIFR.preserveAntiAlias && (sIFR.conditionalAntiAlias && this.fontSize < ALIASING_MAX_FONT_SIZE - || !sIFR.conditionalAntiAlias)) { - textField.antiAliasType = sIFR.antiAliasType || DEFAULT_ANTI_ALIAS_TYPE; - } - - if(!sIFR.preserveAntiAlias || !isNaN(parseInt(_root.sharpness))) { - textField.sharpness = parseInt(_root.sharpness); - } - if(isNaN(textField.sharpness)) textField.sharpness = sIFR.defaultSharpness; - - if(!sIFR.preserveAntiAlias || !isNaN(parseInt(_root.thickness))) { - textField.thickness = parseInt(_root.thickness); - } - if(isNaN(textField.thickness)) textField.thickness = sIFR.defaultThickness; - - // Set font-size and other styles - sIFR.styles.parseCSS(unescape(_root.css)); - - var rootStyle = styles.getStyle('.sIFR-root') || {}; - rootStyle.fontSize = this.fontSize; // won't go higher than 126! - styles.setStyle('.sIFR-root', rootStyle); - textField.styleSheet = styles; - - this.write(content); - this.repaint(); - } - - private function repaint() { - var leadingFix = this.isSingleLine() ? sIFR.styles.latestLeading : 0; - if(leadingFix > 0) leadingFix -= LEADING_REMAINDER; - - // Flash wants to scroll the movie by one line, by adding the fontSize to the - // textField height this is no longer happens. We also add the absolute tuneHeight, - // to prevent a negative value from triggering the bug. We won't send the fake - // value to the JavaScript side, though. - textField._height = textField.textHeight + PADDING_BOTTOM + this.fontSize + Math.abs(tuneHeight) + tuneHeight - leadingFix; - this.realHeight = textField._height - this.fontSize - Math.abs(tuneHeight); - var arg = 'height:' + this.realHeight; - if(_root.fitexactly == 'true') arg += ',width:' + (textField.textWidth + tuneWidth); - fscommand('resize', arg); - - this.originalHeight = textField._height; - this.currentHeight = Stage.height; - - textField._xscale = textField._yscale = parseInt(_root.zoom); - } - - private function write(content) { - this.textField.htmlText = ['

', - content, '

' - ].join(''); - } - - private function isSingleLine() { - return Math.round((this.textField.textHeight - sIFR.styles.latestLeading) / this.fontSize) == 1; - } - - //= Scales the text field to the new scale of the Flash movie itself. - public function scale() { - this.currentHeight = Stage.height; - var scale = 100 * Math.round(this.currentHeight / this.originalHeight); - textField._xscale = textField._yscale = scale; - } - - private function calculateRatios() { - var strings = ['X', 'X
X', 'X
X
X', 'X
X
X
X']; - var results = {}; - - for(var i = 1; i <= strings.length; i++) { - var size = 6; - - this.write(strings[i - 1]); - while(size < MAX_FONT_SIZE) { - var rootStyle = sIFR.styles.getStyle('.sIFR-root') || {}; - rootStyle.fontSize = size; - sIFR.styles.setStyle('.sIFR-root', rootStyle); - this.textField.styleSheet = sIFR.styles; - this.repaint(); - var ratio = (this.realHeight - PADDING_BOTTOM) / i / size; - if(!results[size]) results[size] = ratio; - else results[size] = ((i - 1) * results[size] + ratio) / i; - size++; - } - } - - var sizes = [], ratios = []; - var ratiosToSizes = {}, sizesToRatios = {}; - - for(var size in results) { - if(results[size] == Object.prototype[size]) continue; - var ratio = results[size]; - ratiosToSizes[ratio] = Math.max(ratio, parseInt(size)); - } - - for(var ratio in ratiosToSizes) { - if(ratiosToSizes[ratio] == Object.prototype[ratio]) continue; - sizesToRatios[ratiosToSizes[ratio]] = roundDecimals(ratio, 2); - sizes.push(ratiosToSizes[ratio]); - } - - sizes.sort(function(a, b) { return a - b; }); - for(var j = 0; j < sizes.length - 1; j++) ratios.push(sizes[j], sizesToRatios[sizes[j]]); - ratios.push(sizesToRatios[sizes[sizes.length - 1]]); - - fscommand('debug:ratios', '[' + ratios.join(',') + ']'); - } - - private function roundDecimals(value, decimals) { - return Math.round(value * Math.pow(10, decimals)) / Math.pow(10, decimals); - } - - public static function callback() { - switch(_root.callbackType) { - case 'replacetext': - sIFR.instance.content = _root.callbackValue; - sIFR.instance.write(_root.callbackValue); - sIFR.instance.repaint(); - break; - case 'resettext': - sIFR.instance.write(''); - sIFR.instance.write(sIFR.instance.content); - break; - case 'ratios': - sIFR.instance.calculateRatios(); - break; - } - } -} diff --git a/library/simplepie/demo/for_the_demo/source_files/sIFR-r245/sifr.fla b/library/simplepie/demo/for_the_demo/source_files/sIFR-r245/sifr.fla deleted file mode 100644 index 2aa3f647f4902e189eba92767e211ed0ee15d8b3..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 47104 zcmeHQ378#4wXT}(Y(O9@fdrbKfrPMSn*>4#gpgrKAdn#w_ANtZZW72W&P;$H>O7VA ze15(suFw0{ASf6>Kv7T>f(ry31Q!$)6-9B^abFO||3B5;x4Z7W-FId%kmv15-Fr`0 z)v2mer%s)7YRQvNOnmmnyQhCoSazz?K&@rZ4gaZ8qoO`1FLdp=?t&fNPfUE1w|05+$|T;tXBrp1`<;*Iv3Py*R1>#C zb*c{4tJ>tVCz+uFXp*YY!Ug=lEBLP3?OR#{XVu^UjI*!1GFs|4A(P6&(LFQT!`C{^xOE;|Y0_+C9jPEH36zlsVOhY&T;Xs7x2s024LO2+~LpTJ%N2o=p zLpT)SFa*+O7Q)d8EZ2VK1n=kKdmaL%_5uXT)O84U`rQqmgF2jxa2~?>2p1q+h!E0s zch@JYJdL`A^C$JWQ3&i`%3DrRWD}0pc>j|(;{DI@^m6q->BRo$oD-M-oQud4oCC-M zrTU-q0_8vF_mRr~S8IP|_2*FIUv2##j{l+dKl|(D?Em4+|CB#_8sDJG9A@#ShCE>& z{X)$Pkf|>Xy1nWeXz7h%1m7`?nXj&c{JjqH_c}%To2L(72vEukxZ=MlWeU#$NJN=~ zCrFOYT!w%$D3kc|1x_q@_^#B$_od51>OK?pW`$Qn;ok;@zgtn|M;4SbxCVd38eq`o zJIFSsCVY<+P1d6a2Q>ucil)sQnp!rtxj?5OGzqV6+1Az_f6>_8(jKJPOHwpoog4#(SWwH46e%2z$W z!I*ZWJ_ql&ND4b<%`oX_IDTE*HN64%_Mz$sP!B^k#0&hUa0vyBPo)sg=(plSPkxZU zIc^cg9^@bFAK)M8&+;!r%P;@}e#TBoFB zRx-3xGOtq0bh(mE+fp*uLX|xfYV1rj;BYki2$-%%L2Wq(D$87`tMef$>meo=K}9(Z z=IQY;O;3PXdLm5HW$I)Yqo=?iYJd^i2m^E_jL*|yc&>)gc@_-LCK#J*VQ8*Hf1V2k z^L!|m7sBYg7)Ir#>N1#>Eg;ke@Isr)!KtwcB)dXg2?DmmxzY)4dJV|f11{OBu2NS+ zpl?&xs@FnrzfQegZC5v{_p6)K&FTZ{gX$J_tNM`Ip>9*Rt2@+()t%}tb+`J6`lz}` zeN25^-K*|XpHQDv_p48-Ppb#igKDRGNPR|qR((!=UOlWHQM=Tm>M`{N)vq2`UsO-1 zC)JnKm(^F)SJhMMYwGLjY4r{DP4zAHjQY0vj{2^8R((%>Up=ROpnj;HS3goeRzFcc zRXeuQw>bL55>i6mo>W}JA>d)#g>IL;z^`d%7kuS8a(T;ZYC_P$_ z(PQ;Ey_eow@1w`-ef55Nf}W@+>B)MEo~rlP)ARxQKs{a0&o~P&Q1-f1@)Qj}7`Z&E-6jN>-8J-JGEPO$fPjtt9ty8Ukz5>05)y~Yx@`y-T3Yh1|OO%$V60uTu?QT3)zUW zq*GN!RAs~~CnL7&8}*&~F8vq%g8r+1QNN@I^}{uf)I3`Abj>$vzFG6FnrCXhU85ZB zILOe|G-Gd5iO}&Rd;oX^$P^avpUabH3p8JC8eG zgn+Mc9oKb7xue}N?pSx6yO+DSyN|oCyPrG3o#;+-C%aSJsqX&nH1`1aKzF)3!#&77 z*!A2)T;HvA>)b=#!`zwfEcbACwtIwoqw7 zy$^UF^ltHP^*-e7@NV;N_wMjM?A__z<=yRl#QUgskM}X}Wg)?ereU;ZyhXeBZD2>!AP5^B4H_{_*}2 zf2n_x-{8N&zsbMZzs0}Jzug~ID|+F`$v3(7pqHl~_OGq0omD%h_M+O0YcHw2w6>;h zblrY+6YD0`O|3hyZhD=#t+mC0lnzY)Y?Ti-p%$0v{KsQv}iVqwL?25v{GpKv_a?X z#9uG;VCuJRfhE%n#lXbVj%N-op|#3_LKkq+CgS2k(u(48UoSLcmcm>o!MV8Or1H#2*3ZD!ivTW7x)rVKoP(neteV9Aa2bp$24!E*L$uC21b@B9#x5Y##oO z#ji6_VmAyXAI8;I)RN5BAy~sUEXRAYPbbnbZ|NLIBW9`K??rh_z+Q8Kr&DUowO-bn zE56-=oh;sq6elHWPvecI8dGhHwc$wMHZ)-Q%_yY>bs_}|)GV}^sY9A^n3y_mMjJ_g zIufozIju-TMq<57WAu@ddbbbblS8TnIeZwWouK1p#FQ&>!LUnYT}qc#s7q<;$9aIh z10yDS(BeWZ*MV-NFR9ZBPU(d?%)Td8%==_cwmhVO;cr7X3K?JMZ(M4=a0juhz~3>j zSk8j6?n88)2J?M&f|r_68dKVwvO(%$1R{Cdh^BVwp&no$M{ESYBx~4%H(@Dr!P9fl z+vKT`bH`(J&J_-W9|c@VEF4oIcZ^57FkkS|O(2fxU#4fxD~CR zxRj%~hes+#V2trO>jVSpVrqc8HIl)f14rwUjSqE;oi&7qBr?l(9mK3IpMwHe9Oa{Yz z;+bq?;Pk*Ll9O*U>P7L|S}1WMr;3fz(ruWws6sGZm%Jggv5j)nZ!me>IOdYNI8sDomnC|kL``MbQ~4( z95BoQwM;6s{lMZrY=*+l5s|^|ezJCFLyag`tJT0|##VglN9iS~pN3~S+SG;Gwpc(aJNIc_co$5F8{B$n)`sh5gv=!~$#N1B3n1c9qSQ0}MIGhT+kt6n~54nv! zbS-K`Gjog7N$6*&Fe{0%^3mTM^aaP+D)dhS>O$Izj2|*q)33y}R=Beba&RjsKxrCb zwIo7Tk5evo!hoU_-3XaRSX_GjTd2N=ljhJw=8g+s+aNyM2XX{vB^ zQ#zYjnZH6Q78@6)&xSXnTP;nWF`6+Fjdx2p(3ES@KZ{p5mf3?X!g)yt2l{mEY{(!w zOpK#LXnAOomRTj_Kr@>Bo3K93UI}>z*j=t^(}9BD``e?GBY_$RwUZwF(P0uwLUNmM zhQ-5`$cI9G!oG{mKw}FtP!G5=$C@3UY;PrHQ2ypD-ieh`vZpG+OKKF{W1MR_Pi!cR zzM*M^+GkE{R!ZkN&OwxT90Q^3qWcGU7;2NW%HoZ-m~PmNwyc6a2P}p@*6f{ytDy7L zV|T>D6rCpvQ@mD52`4;f&6`=$=xoSHYIdaCHfh~Le$Gx(DhrFzPdT?5*9avMT^MwN z8W(3oH*5Z>jISu`(#J!W$U~Gej5&D|+D@G>s$->gh{c=fbE&DnkP4Xq6PuB&k&@N_tV3uMu}A6DCN)KN9+Tvy zN_w2GFWOCJ^@NfnInxzMt07o~$=al8P)36^nyJVTGxDtwmfq`TR$=XF$H`1MaRJ8v zG0=rM=6uL;BeQ(yE1`A{+F5gLdMPF6T8ld?mz?AXj$b;@qh35DNw;)ttAqpCf1F)u zDMxrL4fb@581g0d&?H^P0=VVl4Z{PaQ-ezYs%wjq^-=_ ziS)E+md*FHosHjN8)gV{?bZUeBa<}C!nP80=P1557(tZFDUx)-(6AdBO$~zMlN=eg z-n>}_onSdeaSKwg*UVB@)NfW>hBu1SWjJ*j=?iQ2siZ9GyjR1wlp!aEfjP9;GB8`? zwURm;JuITIH8RpiSdlGi*|O=mE3*wNpM%Z-H*Ev`$-jZr;3%+Wk;?I{0}u9s3q@`a zlO=t!Fcq||1&|oVza-<^vJNWgrPrV)>3mB&=PK6Hk{;G1Bg$d^{JN(u&`mam#JAk^8jWL<6yA?5sJbXdbCqToO+u z+*7dUIL=G)U^`Cem zR~s$1YbifFGNc0SG?8DHW?u={7;7eD#+jF#|0}~=+CtALY2>RYmi$T6y2F*EQv*w7 z8|WNgm62W?wxlho+gjMNc;0aEM%2pqe#}Zs#9`BIUlFNW?D?kGi5icYGm)D!NKxK3 zuuP4ez-<9Wm!_p)R(Pn%#XPZ=?VB|^R-#_vb|I8q(3Xcd%F1XHmanf8{tR`k^!b*l z#Djjs&__T)9%t~prE#Ro)f9WjqGkF#UbaUp?JkQ$=~<`0KH|wD`-dBlx}Yu7yKQV+ z8CRC9%Hp7PC?me^TB6@NsmpN_7iWqNtR$NC4a)W<$jjpo^c;j6wU)@5DGx=_*S-yD zmZP4uu#9hsJ|=QK{T5p#hU16pp2SZt2>r65*LVqJN9f;W4bDeC&6Mu*PjAI3gdU(KLp-bHEzoX>(**Ibq4%bg8u#oM&v8Hmm`1#Br^~_-lvj`5`x4 zW3LlBT<2dzF1O@Mx->L19%r~Nkp`w_C9E4uR;ObPEoY7q?%fcN1M6mCsobV1>|qf7 zeqVe3C!NDRCJ}!fH8iQQM&va0S>r+GSmv*A+{MN=+hUEaESXdh-pS#3z6@pC^+-rW zYuziW^h{|ru~71cgk(#UYH4wmjM!p7bJRbUJ(|u_Ay1~RlUw!6;xBGM<#_BwA9Idt zmmZJmS2Uw1{d-Ken4B=h=0>Aen{DSMF&C{FaF>m-x7#s)vbW+ZpDgJ(mSoAVIPP+D zA$=>%FSWQ*f>O@(16m0GA zJ8w@oMJ7j@hR2&cfHr#g)QO*6bB2$`9D6H&u|eh#o92(8bY8A7-5){eGyJi`Z@YcO zZv>sm(}5$%&Vz*`$j&o~BgoFix7fV?MG<*F9)3RnOo4G;93qJ4VvM&gcD`kZ-k`#o2KW4OCn0@8s11YV?W=rlV9$03zDZNV)mU#C z$tetTUc&5pq(_-P$_CJp$LUeilDq7(>KotjTv*SEuvs%o)_hiG&Mw-U9v|zx#G!-_ z&g#Rgxh(0SaDu;BR?j500%X1smnymcGF z$+^hm92>i_a|tF5@LS`r68!WAW=Ld<;%SnMl4dK`4!9P$9GDAd1<5($akN%T(y(!) z&}YhZtSzFC6rC_IIIUHLbZMBeT5@z!@@MfEWw(+1S*r!*C{Rf+g)3#@%0r9~Vkabf zAoIA76eU?yuB41|^YuvT&2`qowGLsequmpe+aG@5K`SFzJ?$!fR}OuRP};+c8IxN zFfRotnCk`e3V?#SUNAQT6wLL4c_l!>oQp6^-ke~b5~9ipW)@^(1@j_+f;lIcS*~Et z3Feal3TBn0Ree25md7+d8H+pa5xX6E4Xq^cH4&I&Y%4&MH&5^qfC1?UUI;KC9l`Sf z2Bagn3!q@Os!=bPo6t*!R)V<+ISsA)nYT&Z5TF_~;IHt)?ZX8{1fKzBL!6+20jiu} zo*iP&3Ff6C=A2+&5n|2>X7-U_wn&%Dfwc0N2HK=!EJis*r?UJ6qV?oP|)U-cet@r=D|MBYmKgKz|yYBzlBPmXHrlJ}=efW+AUf5K< z|3^FxV&N5e-)I%a?;tuAnnbuai&j2;7WB2y(vaO;L*2z!z5fR%ajN(K_|Q?4oJN>_ zJFz&)Uw+cMPxC&kM&9cEKfKP;+{#qWL)B3jz191FK&$HgKV}CdrFkijUzSI$djC)2 zMnB8bp1$%?@=gNF7nn6u6jnXxf34pC6YhiNRkhXoe~Qo6WSpt4P0qMk+!tSWs^0&T zb`PUj*`iyidjC&3-NdYynA02Kc>y}!Xv`s4Cu6dBvmhC{VphHX$KI*24pfPsOpG)D zYYt1(y3Ja1_5L5xoUC=t^tqpF+lJGt_x}`b*v-;5tM~s@@Bb-qOZo^4cY0B-iJ!{a zx0;^2%pMqPPe|o+Q1$+w>is{J-S}O-|7Y;fq!p6BLx^5O?tV5}NC~}hNZ7dFDC6F4 zO9o`^rmFy>Wpx?-ILnjA<>~7EKc#joMH0W#eekf#Xd&X@+^s`vjy zGh?``xtyPfO4a*+j9$o-PR3tH8NpxS?*5p}sNVmBJsmv%QM~RH@?`b?pMw9Y5{dcu zz5gfee>N&BK`kkqEg12IyWVUg&E7E z)8;gEJ;8THV2&ZxJkl-eO!O>}gcZ7-S1@m^qN#c6J{I&=T zFo&`I%zI_w=rlo|(KhFu6~X&M%sIh)Plzffn74zu%~|OHa|jCNR>TEIr-_Q^=!=g| z_qqN3{fOnWQ?Y?I=@?7WNsClH!S_aBjvx=Ao7gc#{MPr__LQOOTGSB%QPuw+H}yUj*g|-VlL#f^Uhyeu8}wCr;A$!EKj|?c7*+&Kx%lGL}HF30}5u2 zBLha5OOh^NvyeDRuFFTUD@oYA+*UCjm<=emRm_OMe0BU+$G?%$0TWlp|3B3D=VU)S z5(jcy%>sZT{W0|+b}>MaX#J67k=TBbEPI8C`$e+wS{xHA_uzODD41E0i51NA019T5 zf`2Lk1@qVl6wDJMP%s}5fr8nOK*7v{1T&BdW@2}#f)H#f6PuUYYMw)EAUb(@jRGR6 zb6)h|DG?~Q)y$4SxvgdqguRrTm)mN1?~e?te!=`aK-2u-9-JU?zhE98=Is~EGa^th z&yGOB%svv#gM#_T01YJr%weoxW*?cvf|-3}K*7vDGN524=>$Z}6Qq;rjT2ZY!sg|+ znx_yOkd7D7JQEQoxSc1^vGQ_T&FoME%gb#wy!S`S&C6{yyqoD(c3Hn*<`qH#>4^C` zB$aCP2bhDr{eqc&B&hlYGyBMZf|++S3Fbk;{4BtLbi~X)lEi}n<}k5f<~(Zh3TDou z1{BOBoq!hUFx3NdIiAdmwz>;>SF*i%(N=e%PSW1IXsf#-TFGn${HBt5(N=jkla!km z4V&z}lc@Ry^Ope%s(!)z6mkZnqiV}OGQ9Cy{4AIU1@qGY1JW5( z5$OnW97*260CSjEFp~)lD#1+R2#A&;uX$V!Sn5fU_GZQA6=$mlkaxX8;=E|9_lFJ4 zi?&L=UmBPfZIyR38CnI}Y6yz9N)tk=(Jz?UDT29QFz*U6_X}qBQ9wFYgLg9-S_x)0 z!Jrb%?3AZj$w9&VB*1`l%*#FsxQ-ylQ9wF^WPU+47+?-j31*T`Frz>uHjflU(y<9r zkQECdirD+YSO^Ay)cXysL|dh8W@shaD#yN51B66ks>KG3`ba>?W5n)6tdt8G1CV`W zXeF3wn;BXOW|nL63T750EdqqR?0o?-i~vS0g18F6fOH`kkS+uTGe{LAHmC$MX*HnS zr1_!7gl{GwI)3+e;Wuv(F%R$%aY*?9*Cf0tq>lf7S#qMd;gyMM4mT$<7MEF`LZbuv z;4Amy;CfQ&T7LB9F`MrgB$MzlsRF8%$2KOyh8%-OBH!R8Y|9&nW(UdfRkn=y0+h-@ z7Iwi42oH|JAi|5cqgJK5rSMMkl;IHW&*c82X1F+7@oDy-o4Y09qaM_1f?9F*y5(D2 zH+MF-_4aP=*x18%pfprg7ixkc@s^b^71^ZuM&2^L^%N?rl;N}R4ZleQ=9J&W8$32f INr#WW0e?>J6951J diff --git a/library/simplepie/demo/for_the_demo/top_gradient.gif b/library/simplepie/demo/for_the_demo/top_gradient.gif deleted file mode 100644 index f77bd38f97bb39339a19d79a31dbdb97c279b5b4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1378 zcmd6lc~6rE0Eep}#c47U9WWK`hEW7OG8bTRe`s)sfNseg;G)pYMapGdJW#VuCek9{ zqE-vxtPb1Kavv>F4iP9vfudE~(w4rx-lOf?`!2N8Z?PxO2Y8a-@6_p(q;G!t3iA^N z#9;jXz`EbRw(j?>`#o#x-nDhNZ_VXhb9#LakI(M$+1y^M+iP)o%r1|~A0a_edi$iU;Ys_|)$)+^f0FzB&v;s!kDr%LZR;j@vGgwyi zW{J)$)|o_zX&EuShmG$(2%$m*NsmB@?| znFe4U08c5PNd+{afL^ac^z6N|`{hJZ#e>SK>W2@`JbL_u{PY>6hMZnk-_Y39 zOnu&%(ejc;XS6a|^t6u7uI`@RzW(mh1A{}{;gQiX?y1)klT*Cunc1n-`GrNn(wnzJ zLCUg7ELoAt7kQGli6am*&UW-x5w-I@PvTxe(0{$F6ww$=(g~! zue+X4kiw$V8r)$OQ&o{i3uH6hmw0<{$(6fK_q5ECqyJ=FnC*GVuQ_swZ8*_OTc}UE zrjy+!lLXDj%RY%p>mw{hrIKSW&h@nl>FGC88`Juk?^)TsnG56nEKw(ZqB6?&8A;Mh z5Hc_F*~Ke6uLjg}jp>{YIrmyIEa!7N6=S7ATXts*Tm^PiY>Ug8ALv$3SLLTRWeoOc z`L##0n#KovApteHYWMniA|hn`$jVt5x}l5gy2Nif!)2q=-duQffy*%|UX{6sCx!KSre?q9NU8?^Lqdh^+lJN9sKZ=qswgzGX%&sXgEestJlgM~G@Fa@uEm;^G^|9tDLRfirAIiPuTGCW`NIJuIl2|US2 zKs4kZQY3pr&t>LopJiWe)l#yEfVKutJOI}IM)@4X5@@YpT@f1r>kIGTpoZ(q`B396 z@O&Qj4<`aOmxjc`)Vo*k@bij&O!!50LR}2@QA#Y*@-(vmc}XsyBD98^I)qLouH=Wb zPzrRd3>s6%r2h)&SY5nWeOur14*jM9kg4w&cIxz<+@EoVuF3F1L-))+mZ4`pp+0`o zQc4`!_b#&#?H6WJQMT-+9_0W;X?w7SQfM56X)NOqbQUmj&Ad3%uzh*w;b1q&GL5b| z^`k#${j*ll)Ag``@F~fyZfB)=kqz|JRaw9{yFDyn#cR$ zn%8>0uIqYT*Y$k8UsD+Hw*zcrfE)@eL;(3`j{fVfzkqu?R}1nb#TEGAh>aBmjs!$l z1nl>X42f`whz$ui0{*@sA%4F8!PMBW0QmLI)i)$E;9qs&L4kn*;jk+#BIr=)5%3KQ z3yFpB$WX}V2X6RZ|9C+r9}T=HibOsJc+tFEvYfw||MeG(1=;`6ntQD^57PQS$Ka(% zz+a+a+5jjxiQ;t)2;b)$>I>oU8_a?r$`DnJ%0-uOeZXL_f!MoPDefKIuG|N>=^VZrn@gBm~O;l+RKaSEyCQD}^haQ@X44my(jQt@4U8 zk4lqDu<9Ar@2dQ2a%!8@tkt~KPN~(aJyXLG-HC<7yF?fDBkJeW_iEH?2!pWTZ^C8o z6aLhv43F#YI-a3!A46dBpZ^J5O+2!#4GYJ1(sPkU^K$aVM}K!}mk7AK<#*?u-~4@1 zv1DeTTmo|sf78sR1m>0B8ygr%!w)aD+~ZZ9UtLOxX-$| zsbykyb;9xPmS`EJGp3}u7j&Up;n5QP-%W|S9C|)lI=8fQy~wM)`*91D(}$aFH#F+X zez$&B*Z(!Df+11eer@x(o8!-Uzi7WJrs=z*$jFq7;zpP0z+G5n(NXW1+|ib$X1d2~ zSmk1q5Nme(^Q_KKEVB>y`rg$&w+}O>$@KhCX5>?I``phlT3=8fguTddk=`8f=Y-fp zhv5j_3L|sr5Y~X>5F5}UR1n+4lDOtUHEPeV&xv|bRN8Dx5p=$XG7I6Ju_@kgGF{1w zO`ggjR(TYX4v`vNy6WwgI$g%^XW?+e%ngYWLZanLMkTOMKv<&Sx9)-$hj76@dN(j> zMK7%Y&07MIc^0CjRACEl{sm!)O4938Yq)y8Gr}d-aAoPMY;{A0ZJdAY)oPO$POvA0 zqpSIC?EYXthhD|l;l5$)_*($onGIZri>&IyJhuS$iaKEPQ^m>@CsbH}aQH>3V`hiw z6u4*sccv9S;;MAZj+I` zG+Gk3CY?)=c16Iz53rHOz#ZL&_l`6K;QxyP%3(hmsb|?@`x^oT^fmsXQn!z;FGzCM z@}MevSn|1gtv@M|$Jc5}{aQl>%{&6SO!V$n8;zz^e}1Y%F(%0?kHQ;;egs&X2;d2k z6YKPyD$5ukraTraZ?qxX^q@Q_AQX7aV&t2JL*+W!<~fWz*GbnNA^a%rTjUQCf7`)} znK^TobOuUwbFUET9maUX?AFqf%8Ae>RGd_rS1yD9MJFo#Q1IAParZ`5#K=s6W9i>!TojaJcZxkzS0yJG9Xgkgg zzrX+fLVdH?MTl) z{tYJ;kSS(=>W?5MeY5>h?$Byi?me=idXw5q!xfFhi`pqCoR9jURCkYBj0d1+C^UXc z8^BZ}wx&BgQtM_$X&c!+>WL4KcE}JL9_%)#HWKU}d(V0Z>7~QUdX4v#b%0-}7nx(h zM7t(#!ew)GG4_?|iEEt`=j)cReA}WgP79h$eCdl0U0LZIY+Chln)dE&n8SJf6{-55 zUn%;JB>&FFv{f%>kISZmA{g110!bWy^TEiV;i$USM@mvt^(BLb7+0?s?q{+3UBNyJ zw5qgRIb2Xw^%TM%r35K?|FN|A*m9Cmdz2IZ?AMu=)BZdhH%HJtLI)oA`GG+;Tf)v>=y|Qo z7Iusrt9B|uISfeWOQ6kBfHiKs$)=&HR;KSkTlrAO^E?KcL;_wvye*wcBQme)q?Ntx z>o0yy&pC3kpae+tDX>2AXSD*)qigHR%ARlCVY?f5k{G~1jWv+H^Ug>Z_yF52{;HJg zw>|g*z`E{(4KL4*erwNU0FCAYlt-uel%0i?a=g~|2WIoZ(UcF zsAv9-DVKCgqZ~iCJ)+hERBSy-a(S{L)6153s(-yPWydClTB~gO(uxml?8ee4M^1~I zk*-AbsPUYNEjI(KI_GmgeMo1UujA`9&*kN>=8(bMfD8@0Q!b4LJ&va|U2%~q zv^d~Ca_eO5rIg!A7G7+QUB17k=N+`wDl1zNXCtZuLTM$iqi(t{bZW$=qfM$LfVVyOOY{T;B z3xras8TWNS9Zx`a9(1s@thP6MK{NJjpnh0%aQq{G5W?*rJbw^wKyvp1yNxEfjh{1A z?MvGqW!xoYUuyvDr4l&X$R0|k&obL^N1oYtzY;B)_^3|+HXhK6SQ5KMjQ@v<7S6OS zgeFzxsUbn9HhAT>l2MdiK#TH>T3gFu_ids!n~&_nJ11|AP5P`PznuEOJItgD** z3+B+SWviX$wz(1dnT=VT9kh7xnnN7HuC;L@o3(iEd~)1G%g?VN^PhP9hr69cBeqA= znW!U6E`P*~&iuAKVBRJCg`@sCLp3^JQf3rqtCY6RB{#BeC9bxXhOh zdLKwNS2{L5VVmxE=y^;%+;5y@HcS!ZH{%5?aSXH^=WL%ZT6LN^u{SPyYBX{-QR_nu;XIVD}lK(qRRzhy41j(w$>ZNa*&Q9g}pV5g9JKq0OKPM+v1#hu0_ zulw|Zwbib~PcygXrfjY`1BjkvR5Q1&r_MeC<8Eu{9x-LpyEoj0dL5$XpXdNh7*KIL zJ!o^XfjRmoHTb0s?ho5hUObEe$~XhPBqdh2BdbJkK;yf@#+}tpKjcb4^D8g^@X3gu zrG{+&*~i&IX$;I%IZ#5qGSu#tu}o&mE_BF;h8JtTt?z*{YfwPtq%igs^9A*A?`keQ zJN6sk=NYI?Nwb4QIRW?k(zYVW<42X5dwFk7L8&cB39?R^)2%e^IXTC|duDUOOpTYp z>$siG!D8FCD99~Vek&Uf9UbIIi+pto@k(9iF$?t?{R`!Y6faC6j;Mw;ZqmHHt*lTa zq@{npYNulfN`?jeB}DsjW?55EPU{O-W!iY_hOL>jkguBo%cO#+#(fD*k3u7javyN5 zVSr=`V^pX2PvCN+0VyZX4pJG~|_7T<+WIr&Hyu z-~%-*zzAzihcK`4rD_2BBtUQnU3%%T;RChZx>v%7%0oj+Q1K1qwXLB2kmJ0kxoz1g zQtJF7dhD0BL6b`JpSzULya#llF(|86R#M^)&Mb8X$@UCV>@a>hVq#^!myo}bB!O5vc=91^%KfydIx?u_wl)=@bkV8J7e6%` zwx0l4c~{_flHOpESMb@~HXX3GFM&5qizXk|BIz4VJ$$Qub6SAYZ^SGxZR6#C?B*52 z1dY$Pnpv0RO_~iUWs?nR4v*8;N1O+oY6-ebQLU1fG;UiJASRTYNPNdj08JJd-6g$q zcaqK2p6oRI+s#uOs!e*YNdnGM7|gsCa+TkvN~9E{a&UG`bTb3JpW{&OHd}rF-$lJW zojM?!y>IcPk$;t`cgufi@W4uJ^6+xBY15qd&Zd;Rjnivr0|$x;cOQ*Zyf}RJpnw4} zs^-PS)zZny$L2!QiyjR~i>0}Sj09C&)KkUbvw`$WsQ8Z1mdSG`O@l>dZ#TE@0?r`2 z4eXIY)V*HV*9XbBr^UCe^t-ebct4lK*DdbkXz%@27CH#l-94l;6m>6wY%I5xTktiN4gmhMSj!P zCVO^pk+QbrxS!V@MZfY^WK0CN-4Q8ZLn+Vh#6odKg%e6Ks6FV*WEm zkvCd1cftDfnV+(PHZ}(?nmyL1kjj=JZxk@ihiNBi1FonG9*14s0+ers&$vn5%_|1H zdkO3j{y{sOG3*oJQ8rv)Y zUOEdDBwDGb<$8kT1RsCO9e7z{Y)HM18B0y+O+>Hc%Lr`=aVpz? zm!(yhcBVK7aDD(c1Qlvm^%>x4%RrssZof`6xcmA8;GD>y^K$ys2CaRnH5}jf!44pv z@W-p;)NRYv@2~%qI5{q)9k5s7eT+it0{cx_iT4G5`>IQZY^~3?9v6CL+H)+<-bfOO zAI39^lqw|yl5jfd4m$U`uO#am#xEGS`hp(1cTDozQeOiE!AHAo>jWO%r;KDAF88Ds zRFr@$o(!iqqz8_M>K5*0{1(Ebwk28wpO$s5mI(u`d}N3IbhR#lD=kAN8Mw@}mZ9)> zK24XO*QWh>Hy?y>{;jDmQ~l1%fEdqo1^Jl5%xLuvnFCHiX*irQr09^nD}xVJ5YQJ7 zY4SPFKBP65x}5F&^5xHw2lb0Y;8AK{Jn{{#>p}vQ$MIIu=iil<1Z~}?ZWe8#7$NSZ z>jHt3!X9K~(=U*LnJLb?-0sQM@VrLo=E3I`^s8n_wy8`4K5==H4>P%%@w0yZ%21zj z$)s(*XDp&>Vk84~lzZMSY@ZXFmA6GZTW7gKNXTDb&vcJLuaa|wpXkg%N6OP@=K@@! z+OUkbxnn{$HVo`0ccA#LIH(ZvomE{zvY%dvphX;hiXagx;Fk4xJZw%y*!T)jE@bO1 z$%)myzSoA>@-nDvdD${&?yR?WTJaK8K4@;^DL;0aOaA#}S}5a3k9l}8#z>1%Qh82L z9X23&MQ8^A$1#1l(3pVW5nkimKvE;Ikm&xB)H$77*Nb6wVnodm{ayWl=nt1peZznX z^g&84pKqVYNqgSNQ(p%089ldp!2A?1|FbZ^mrNk?$Jh7OzP%nC^MZ6Rf3kTpyf*i{ zx*7;sADqv=l08F30D#j*5nINGJ7+wpNuEwy-F2N-e8Rx_)>`_!mjMZ+Z*c=pzfhH* zx2)qc?4;tS?wqGT+M@Dc@d!`SzP}N~f)(@3QRQumuIH1akdo!%y8{`SgK3<8E?&=D zI6iLa>UB4I?}<|vUY}z5pZv5R(CxW^{_OUp?z7uGV8Yb_Q=GLDpY~`a?j2H5aUBUK z!t=R=lTFc zqDIhZOShdeJ)k`50}i@7)3$o-Oxscd;1mkH(Tiq$zi+r4cu>Vu?fwg=L)@)hd)heM zy=6eW0_x2so|C5D8jqqZxSncV_3zn2vt4#Cy2TE?&4}wDap34xL?BwLQBQ9+>dLiU z?9}-9!gHO4nJmj`q4_q;y{^AMs+uE^xkE+#HX)IAMAqp{E5&1Il>C#7a(R3^B0Q`hba?5W6DyXp2sOVi7;;eSo#x zRR(%<%y7XtY3X@ojB&+0lA<7{5(;osGwXB2iiB*q)cP%yp9?8GHC_n2F)iIQ_NfQD zMEpM6DtdXlO(t-Zu;7kh8g*_&FAFg|tfhMHZc|qV=OiP&2jmcajSGFQzNt2mSNXZR z|Cx7nSEu5&_Y$7H;ty5Mn0UQ?G}zK560#CO<;*OG_$5WD4<;v1?4tg0F^9ZzrgrLV zbW`OZwfm4;lo8kHuoI`*U%D}f%ZbwwPO@DVPGqhkYX1YcP!dn;Q4;q6a|%)Wv9lkK z;U0cW2;>5E+n;~}Yf>#(6M*Xk0stF=GiYjkHNvyQPN)5r!F`2{a=)0Dmb<{LPSTt) z#*Mh%pK7

f1!q26<}#Eb%@yGTGn=m6fFL!5=q?bK?8-U>=d>e%qRAy z+zi+{-w7*#vLqopXuW?;dA^C_?78Y~shf9+q)|Ug?qQ(w20`rWY{jmFZ|3NTLvDNW zBY;r)Wuv*5(+|OL1V^hJ07aoWTb-q(BX`2IFS4vEXL(5rQlzIn``9JGddlEZGL0(` zY}L$rTRG{y*lkaIF>>>r4Q^)ci-xz4LYK$hRS+$#0g)fu2UgX$53Cdm0Pe*qU{C~B z3yQ!1A?_N$?S6h@n*IF5l$MTm`r6SVn*AgQB+N4caWPNBI%Md@D`VQXrz?LZq!oh+ z$*y(9i*K{t1>kFbLMhs+TRtYHC+?iElcI^>&PI2F_OU6%H$MMhEJ5=amcK+|MOnBY zn>a}sPb7nEgB@itxp~{R+?J%-1Szcfh+hxnBYDB*17^Im%Y*WcCj({-D@{2zaNO`E z;(k?hV_a=N?xR)rAkg_1;3^kztRuCx=1HdeWD%U0dpqPB*B_Ku>pn37s~iK0^{KWd zt0%8?IK2!?#n0GCPLk2zoWSgffu-Y~C+m|+U9>j$d(V#yI2LR&%5!#Z9xphC-;e(c znD0n(yewyn?JDb)Z;IvMR~Y>6)ITfc8w*w&+jwHKY3_flvk(liocI~!Zlo2MSsNcgy#)nk>xk(O?l3Ln(~~x2jA|1;J&(dygG`%h>!8U_Mv8` z^kG7j=%*O(`yUcp5KlH5FY>5FeT+T-=S1e$uWEP5ZjBoFKRV^o|4zQ)s21~cQETz! z5fl61zHjSDPL@HxbC97M^|N zEp+{F%*PWFi3;BKX&%jYl1GMO2&)_+Ng|$JH9Kk~c>Lkr z)R(|DY0ZA(VIEbU{oXvge89g|LpDcYCA@KLVrhhv`7h+3qQjQH*ZY3yz{E) z9!{6YwJwXTJpR$${?sVzGi@Vsf&xb?1=bw;rl@#T)H}hnsIIp%jnDSYY|T5`T{~7( zAJ8IvhQqxN_lpFD<*3Ow!^1puQBJ5irt&dfF--?b*?$~iMRU+-ih)%y>my}aI_bw+C z$Ip8Q3|PjV2b8uuC;fbI1MR`eVxWgR(%4((HI6=}H*K(K-#yQI9gMhXEhebOB-iPc z@wVTr875_#I_4DBvTQ@!oB*mfGT>9v{Q2B%g*&nq_kP1*t-LBd$4-h@$`k#m_Tx&L z9WEz3X$-)-00fraqg}o&0|J&#pjUcE+R};~#D4(9s;3~elcsj0K|IsTth$&`pvZ_@KxZvAbKwN)`%eyz49t8qIAiHiqbbo2crqD0a_8Ne zHRb``hzG2J!02I*)H`>lx4j)Lm+m80A;6UNDxFy%zHzx@;}w>y$}6m z|DNBw=wW5aW6BTaQ;&2o8Mx|I(4U=TJ-HGF+!{=f8q7SCQ)Z&|b{cTIoWNoNm+SCE zP-SH8EIi7PmY_XL#o?SHEMuMT;ol?!)_N9rz3z?5M{immh!4|~W!thI@~}Q}g|i0* zhmb*LE`Y$%17=-E50C+mL=U`@K~%81fy#mN`hXiffH*9CM^h6%3vg<4jy>LIk0=K0 z9SDCh(LQ=8>Wvow?HHhHEH=9~3cnjuHcH&t!`UJOD*Z9qBweBTW0jvxZCzB9N= zv7hQPC3?U@Gp}wSD5_Gisb!Lx*Qt2_eH6RwxM|48M?J-cG#|K8y54BTL-^{Kv>u=g z0y>Q+mszqe0sV{~zb5vr@pMEKZ{8ZS&t|l2->H*F;^1qVn@iKf2S?AoO5ki-PB)2O-J$_L4m)&Ra%hSiSTlzWmuQd#IITu82R zHmryo^ca&lCs9}k=Rls2Lt=@T!+8^7Nm}fh2KES%n;BriVTx+6NvIb1^_Iu7&G`+BL&^tn9#j>{eTdw06w&Y!R-Iu*v8yw)oO=qgdbaGTlQUNs{F;rD?-&YO#& zy?|OcYgB8dbz3lwJ&B#MuKXBf5#Pp|$edoJaWcz$k5Ji6kZpRA)xi!mvwj3PUmqxz z>no_8Yl*I0tPe!%nz`#4n;8fRrzZlQpacBB4NJ}ddWFW z`H%gJ+nP<82)A8>Yrv@?;^EYY& zuU7oI_cRkohY4W1&#Wdg*$mLowI}nR=}xZJA=AC#Ojm2~{9qk{mW*tqupBw}b_mwk;Vm$9>t{qWaX$8Gb^roiPGaEFQH+V=;@Ja(x~ zH!`E)V|%H9=AwX14~r(2RxFhE_xxUw;PKJ`i$#hRmMa@}pgi1Iv*A8iKr z?mIUh(K7(-0TQ5;()m0T1b6|v!-vtW9aT(cp!XY@?<7qK%CrJhp^$i~T-}wJ#4oCi zPgL8@d+UH&X(3JuLA&XI?z%@x`>X|M@4t_0U3djJ%Goocx5M8qvDvIpKtKhtkxgzvPLI8u4+PRkWvN?g?%Va;J*x(kMFu);LoO3l-opP*6eqB7 zFpz!2$2(AYF{dKTwFzgfXqqsJwjH=HZW!Gifgs6&JR~0$84joJw0v1iM%l~* zZ&4{FwZpgk`P#9|T(M4nj0R4(t`GfHjnSRf0F}wWzfX$Twj-xz-8u<(Q^ZL+ooT%3 zr7=Ts@sV$jY}G7s)gq%zR$&?IxQx|AU##8FK{vXa1rX{Z@<;+X+ZzWN3ac z%X(;fWv5AVTc!+-#(Vf^i_A#g>-Mq~Wwo9o8oo5!TVeuCpe8e5`=o*SA1NS$Br^Bu zLAi^LC$&skH{X0hJGY(ayh*#q9&E%^2_r z6Y><76U3adqiXyUhbqIon0#!~jk>byK2Yg^tZ56em8%CfqyhI1A^mFkn>JqrNzOW< zPNSViecaAKz04 z*gv)eADg|B`C?0i*3OWLP8oyegLSvEIKgF)Y<+$?C{2lls-cS#J-kcO-SXZjP zBSWbW$UIOu&7Y#V`2nW6brWMPsbs9h^8m5llOJ``PkJQlJd*^x5Df3zT(z$npmt5a-!H<=*O3KTE^4|dCJ6dfe>wyVABxzzQV=!MI z!x_AVC6e$#+^u^YwJ!cXNhHeD|BlrzsaQ3V%+hTeBvx?7(L($O1YA9MJ!};F zvTu=;7b}}4<9OR-?bR{Iqh9zx=L?H&Ru36Ri^{gGa@wo$aY!Hk$?Hqz(*W}iPkIbk9$W=4FwbmG<3 zeOg@^e;keOo*3O|Dx3P2sVc!SB_yLtP!EWD@qTFf$<-K_))$`j7Qf3fCqLUNipcTj z{rw_*VaI7^JgIDVKSbAb|e4-ZDozk^zn)1wYS@Hu|UU`kvAaW6Ur6V|Nmo=>Tib!u5+ znO6tJ@?*TZ?<>h?;U6+EJEPqEI~7VD#)_8~(&9Kc?|nF7KmGfy!Y5q%Y@2je zC!kZ9a9)2%Srb=wm)X=pGBqnpexT!nPH~4ZFKG!rxLt%7^he~AFJ@h2W59>EM?7HueCNL5YsrXi~5 zJQ1?-%nirq{YMqJ|F-Fwuv*!8&1>&$N!vSRdf)mf_aJfiH>!N`(K(BDiGZtH(k*v> z^S{7(k!9=a@VP>C$}9inCtdu;iA>JX;e5L0zjZ$myNiD((&lr;TANS0qEnnm^q)hb z;^ue*ztF6UzpeOv zlB{>kys7UJS?|Qnu5bu=5$3pLj5>e(omo-i){B1?uhcCW{~1l+zShMM$LTWBvu`o; zE-o6CYioL&!0mMvv-FlA74>p`*CEEg`djg@^?$eYcYo7czki=#{#<&i{VwXtGBR4f zvu#BUNZixP&s5j4$`n2TxJL+rn3GUwdMiNyUi}*68SV{NA3hweeF1PEE`XrSf$46E z15-#Z4ulyBLK425st{u529M_}CEhpHfM;KxsjtJ>^9RprxiI$#AasWm)mPNmda-`@ z|9@@nU)Sci)l%1m&G>-B)2UQnZ{&$$fLk~LLN^^4UE&X9KudrRGz}}YwR$MEl_1c{ zH61{NnUBwA=JtTyS6+dQW}TTV;A@**d{nj5i!Tg_=YeadBCf+Y9Z-2B;I@@e&?&#B z$ejhmAb@LLxRZAy03E!Bh9CYFh5Bqh)9qytITK@-VCweA*KANk-E&l|w+P`uo)uD$@H0BU1)n;Yt@^v;wkN57KAysKgki{d z>0-Pv&ZYO+Oa0M|Sdclcg(@VBPyDx@4!(`iMopTah zq#gHc4FDAFEN~0p^W0@z_hg;-I&*mH|m$a17pIMLpG}RuRZZxvcjd{{Keypxwa(S4i;buR4(!1J9AOtYfiqCR1*kv+S8xM&@POUm346c`ykRf+fG_xgKkS15*bjkl0D^!H z!4LumAruZl7#xOhI06w62~iLYF%S!J5D!No0gk~f^h@-5f*3)PAVrWS$Pi=+as&cF zo}fTbA?Oe`6HEv-1O@pRr+dN{BJLY>2)x=pmQ%*}0)AR#Nhhl(t4|sGSkB6Xsm#i# z8BH1g=SK$_#m92(qbuVevu%0H+sy~e8Vq^$7s$NkHR=%>?OQRMUfOk;3s}^c2w3E9 zn=(!@gdLJwopwuZ{b{n#C|O+%c{sC98HX7x8_8%d8xagf(|0uKmMVXrY=Xl5_hrl(Sshj>OLm_1gYh@pQwd4B5sm-r; zyhvH|TDxhJf66R=tsMJb*7h4h?K1nP@AO*V2xL6HwX#pY+8J-+tnB|t2CJt3P*;&M z*7pBvsp;@Zxk-XL?()~J$S?NWcuQSx6#;s3?U zv0tM!{+D+D=M?Feth9gW!|>naH}_w5&;P5azeEdk5q|@x{{1IE!YE@@BdP=afs2IQ zjxEJvxShFUxHGs*xm&sKax-|Y@@(T3=cDnh^1Z?VKS6+3P+QPVFh;OYuv2iCP|mvB z>*|H~iF_7O5_J^iT5qs^-};;DSJ&gk9L3_rwDH&RH^l8E)FkaBpGdAqYDxJ^Wk_9< zdMWiu3NLLSZ7aQ3+HS+=4J9&GvcJpjmD{=T+Q!!#oe3uiMTC9wPvuW3XemBXR8*2u z&R6DEQB(0%$ye!8d8cwkwN*7iO^-++-XM+;=ZJq2*OSypPNW!83F#?GLp@l%T%E3& zsoA7?TI;D6=d|RVyu$m06*H>Cu==HbXWH`xE6|K&fC)jdJ+A)bqrYT-Y9w($&fKHY z;-eo2TfSL_#I8f6k5 zobY|D>a60Py?l?#F2!2!_}mzA@#r<@6LGctVHfjUKU`J~i6XJDC6#fGq3>27U;J?Q zv}lB<>fu6b6Smr4!H++X>g~Fk*~KOq5#ga~YWip1jt!O<2_*X%5slEpmN*>Msl=}* ze(;!^zq3!Y+s;VK;R)9X16t#g4bJ5w&(n-SVTFv^#4mLSpTFtgo&N99hfQforK+Z1 zW1VxaGqx=AjB1U=sFhhh%Pm$6pL1~Re&QKGE0)bWzBlzmdyPOn+{ zSG-v+(Uw}43+s@){E+Q28`76q8+9?RBN*(xOO~(Sn%sTED(?w>fX-!`q^W_hSr(KC z`PMOyaAy;f*JH4A^6h~XAU;Juz=s7Idwn|}`w_*RmY?)afK4aq)m{SrP!1%zli?W4 z$^xi_;mCV_<#{hRB1%$?Kl1%;4fEgFg&M)AX-v1fi zYW~LsvlGEI9JZFnfDy6n*|xA{(nrj(m-|xKheQ=OiX?Ts+Q8%=j&hSOl`Ke6W1W~L z0f9uue7Pa{qi7<7L;%(o2A3=Ubget0=N&9ET1SnyFNcvX^{J_%@Nl^@o47+drO4l2 zSfYIXUF$nxc8pqAikj|$GPE0OV5s;@sFB&Fst6((90aiY@^;>~#GzdQPmGQnQBCQ>32X49BV%^$k2xfEHB;v|RGS zq50JDZsFIuh8`Tp)unZn4m^I-Rif;)VnvmLvYNvEXLfte*9ILV$(x#Lc{FdPY!6Tf zbYHPa^*cRmII38FKxD+9y3;uwgnivX+iTqZ1g+8eWAsz!=FMZtX&H0$)Xmi-C96W< zaa?;px})w&+@cw8bf)F&PR7SO7sUf!@?^JskX15^9Dl#Ow9LO8oq}C8Ifq}3KHMi` z`se&+S-y*}zBy_wy;Xl4shlkQLAV?h9o>ZESXfuf$Wc<;N1A$>?-qL7GV4WU*cQC) zN7jqd%beS7H1&!sj^H$dxrIFiyd6p{>=ff1=seV;YA#<&Vm{s(og^R|d$=DN zug(~FnjTLK5FM8KTch9m4I*Xpn)1cR-lr&0BX-_?oS`0>d0K_D3=7hDFrYq|*fU8# zjH@zUi6_>0+p$X&S#|E2%qbw9AV8n`V12UZAYh-dft!3XmPQ{4a7Eh$4qZuZ#iYEX zXa9ak{1K3jkzwmwvzqvRV?e9ukiE;BYAVPm_hP9kTA27n&g*+&z^dry9hiC?@=4Tf z#4IpcN*Di43W>0~0c5C3`sqHpuGC+x1SoG9TmpB*8t!FfmMHsmjV))^e00yOSq6bG zYwv>Q0vT|W5H?TBtsT3u%g;t*OVqA&%xt$-hh*S6*pHXJ%8$d2M(EtWel$a)Q&Qv^ zTb#)`-qB`2f`(nRQ0ofIUH!+_MIGjfet~BltEJyJ<=E~A%pdB)ph3w(@spwi*v`g! z9~kJGQ^22&x2@x))IGY`rfQO&%t!T`&?%T0rUXWPG63wZ7T`?|#Vd$31A2}M0(lwy zJN8QRYlfM3(x`)@_Pky+b$Jz%*teuv*|^Px9PaJ69;V;nLbvypv!+gUoMNEaR=}UX zXj`|bsrkuylgt)!s4`1kfp-V$R5b?sQ323Zyns2@P0If9g@LA!fd9A02UpoPSEr8y zSB`R|WYEals8Rh#Ab;yP^|aJ1;4fOkd2ud0t?nhwkAb4C0=9{N#&uBp!dvsA^%t!= zcu0CeWe%B>)tfq<@eFiT6JR2AhO(Ih3>1|F*ul=X5v)a#AKu9?0&-4CI>iW*Wc?2x zpj2z0bV?+o?R?A&{L&?0p+(wGI_&cEf?Y6X?R55PU%XcLyT1O7Ci2aLap(JDtbJeZ zkWl!V`Q!U(^NaBxk~4pA6!VHpJ&HQ=dSob8(r@=e-Rt_*Q_Y;C&bhPQ>WEmjwY`4I zdU0AW642}|z(2TXTd&xv|GpBDykV#!Nu~Gcj?z=r+$TRuBYayRe0QZ~KmG)0Ya-zN zkNMAQ5B{+3Al`ma_An+bq$&l883hDTVkB0Y^Qx=KZOP~rc~_>T)%E4EoTx|aMm1LLg_rM=e{kMi7|FK zudFm44m>B^Vg2TOe_yw}o4#%hAW6`+zt8?u0*wwbPf0CDJc+zOEF+^Ggy;c;-_CPS zUp5ZDu8>e#X{`++xv#uCxWNpY20uhu#2Mcg<-p zVydhXo-_UC#>2IPmMS;Jc~8x2=e(XRiNC?f4&kWkZa0H|PvLFn>vqd4xUde35Wtt2ZZL&8AblIq_vaN>tX1)QGmC2}$f`Xp-g3q3O_Q>wp z2fRPS@)S$^0DYATe7*%Kf4KT8mVXg*We;V$C-MnjBPo`>1&mKQ7=~oMC*Bciic{AR zmZ&~@WyTuL(M%?3)h_}L0g7e;+#4hY+(W#2ATyVNiJ+XtD#LpA%DEJU zE}2nP@k|lJ{gl%x!oavd&^Di$7&>=2?bHmj{K#$wDzF+cB72{qh+6{ZJQRv6?$+Nn ztNa#0G+>h&%0foo{A9bXTLzIIC1ACdmb7=CO92wu2Q=%3D#Am!yi)$Y&7-5C7mP$E zQ?XdvHsW;cHBVMcKuNwopMokk+7ufGzwr@CsqI^f*GAXJ8)fB#lNrFFT{UPf#zk>`9C zIIiu7-(2f^;x#p2QgSC3?A(sEX{1Ofwg68+MQ0kNXd;#V;pss3e{ZHOTluZ%rd0lH z`9l?|{peW9+U0Zg>&FuwFFad(5+L_9E%@u)p%2lLJYDfS$y?u4+~9=C0G*BmwWkpe zc*x%vv40c2&nvx{`ryh*0h)wrtRhbiHEmKq22d`IfaaC9 zv?c`hKusQ?Ee?OY?UEtW|EJppf|ji?2&M2Y$+2HYY`=Y+pL2;(h*#>B=_~%@9S5fi zM$T31+E!+Y@r41Y21&2%%h@JPS!-MB%893~tkb)no_V8Q?f%5$gCEQLE9nTJ^I8yv zwN#LC<;D)}8N)p08{(H6k~$mB@}w;v3HJ9P6xU)N`i(J01<97MJI&}*0)(zlT zdXQ#vvNhOdfYzm=Ql)ROJLMq*Ci565Co5Y$?0#E4^mPWxZV#-xa)a{2^wa9hMEpnR z>QgrrlCiAjRWYqqP%mJB&c(E}<%?$su*<9gyp{vUqL>d$$GwS(6}zi;hTKiN*sOjz z3)B%|2o;Co9u$WH==7C9tb@g2QtRga8s~rpviFU1jMLf1Y@f=-&@&USs=F@!cnCOV z7HId{vtOOCXTT{snd_4gZ{fM*bh%}ypaM34O?2JeXc(~epHnP2F(8gm^sx8*(-?=v zcl+PsO|@$m#ol^_4#>r?i3*P<-|qJA-`rG6 zapyfumQc1>*u#Kqq%uB)VnA!)ojYzBn}}XX5WAoT%J(17UWw?czpqz(twY1Dp>iOe zsRKw7`mX1#W2e|wM8r6*eoBey$Eitb<$WCrJ3yJ#w)Pvt72m=~)gWPBN*~fErHQu^ zAIL}##pBx47qpmQs+RDsJ|NK)zk^Z$sLSyc8o#%yXv*4&4_MKIDf=sZAVYHPCL|p# zTX&fO_uI~?-*3xepxowrP{(%|?$av^$?8w3vCaO`CT(t}u77%amL%YE)j(v`iL~>z zpA+6o3_!DT5MZe^U)!Fom(9((oAh%U z+rmx}Uj?b51|aC1?2oAC&;I@$K?d$1{Z6T(I(#O!w%XYfg`p2QS=DHH#vhh?HDLXd z^*zP5hP#7RDQ)u;1UMR98m$vWe5jwHQ;O|Zrxd&UqJ^w64SMl994l;#60&$g!9sAd zSLm%i>JS4ecig93;+|HQP`0*q@Ao-7Dw1e|AV(iYcR|3tc?SB;=Auo+2kUYBy;%EO z-)6|_)p&m)9Rs1%%x|OLgQNYhEDs;BS|?pC-9`RkBwcBHE6MuYe1?Jppe6r~iI>aX z$9;Zc9b-27?&dz3F1eET4;|!R^YdKl&gWf@^Q_;hf4ZXZ1IK#eR45#aTvge0RDtz* zs!!Hipdj*HW!7?$=|gQt;fNil8|y?OyG74M&RTJ@`iJ|_mUYJg?tD#FM;<^q<2dRu z-N!0pR4dwK87j3d(8(y`^`hut@2E<~VNX|P9Y3N&sdg!4pqz?9S-2;7Adpj!? z(A7xxpr*#EDJg5ZCPccYq%@k9GMNSR!?3@DPF*2$>V#xEfnQu{i z`(uTzpQQ);3U%KMFM6q81;15R38dK*s;?yCeE(L@2U6MlginPL zv|-*$R#_QW`n2n}v~Si$zTIlJd^#KdaI3o(c52oro2vHbY<$n!84RG7uRLK^P_CLk zjK^QIV3$dDq|wx4w4|QZ<|ALaSCqVJAAO#P8>b__{{Fb{06Rl&=%R2AD`E#z25^S~ zE?w#?n44>mNSW8qk!qN*IVFp@4h)&wj!^V#$@$Dn zH)p*D7Yc7XdzaQ@<+gs6bCu+%Cw&dm|Mr@gY|?YiEq2L6Un@oDt3jXERrA@{w|vuQ z51eXPh*CXs4}E_z)}?ob6QJhaA^<|OFkbq#glFlOtzX0g4W{0`^NtJRR4!Hl;(~6D zT_rxA{Gu(tf3|H`!b)9Q{Or-YH_J4-Gs4c)j#VG>{hFm4ujza&0fH}m(7w@a^1HPO z=hsT_?*YO}_6Nqujk5_*h>5T~&oPir34?_Qv(Z3j%kQkKA6`UBFHxP z#cf`8NU_3v9-W=;PVCWRRly+P0;tzafxb-z{fkXGk_0G}03*>oo1W@tnawI^Sq$|D zEKF7BZSt4_bgL#n*8r=gYoG+sC5Q{Y#+4pmm3=tL%NZ{ixg9XgR1g+noKK+r;Z=SB zu+$Ndz)bCd z$+#5n7o{C6I|Nc5QmQx;ZjqWoq)AA!Tv)a=6A=9yr)0E0qHlViE>p0?Kx9|Y71bwG3RtXk5~e#95|0Lh&I zI~Sv>H@1!q)GK1JbC+%u?^@U!FY)Aei5{*dB?zpCsuHi`t5CVuG z#co7Y2#N?+6r@TK0|XE|1PD!<5W4P$-V_w+O}Y>e!3qf~lEeZUg6k@-WldIB*S?n3 z-F6m@xCZOm~0Yv-xIWJqw8+)g-W14I`)_Vy_6)DSW-GMQU1y>JS*+W;i0ze^k zfu;HD^41@Nf9-W2&{+1ggFQbK=yAJ3o~|JIpFVFSs-nC|%!|C0Qw>$~WOnlCmi%rd ztVo?22Wz)kT#r zzB5?q*J2eHdQ`-&dD$@N+SzVo)&rOEU0`RAWa~E_;^|Bn+bMJwaL2i{S!RNtm3}&3 zc%ZqL*-kz60}Pq$Q3-n!AT`2lgM697{fP_+!X{v3r?%I~^wP*X4R#)wf8fAMimmna z#o%09fYQ`nHB!S5rexquu~xXj*Pv8eziHM#-acKm=xSC`yWw=_Xz3iL3g-Z0+Yh2G z)wk@Yrs#dYv})j_2@+!Wd0M=i=Y+(ePbX<%k6W^S$f#})F4{oc$LGJq?-+Tj z(Ps3!<0}=<4tA100Q{mhpli5zr;Bao!^xY5Mp;8GJ2dKFoyVI~_SoF~O~v9c^B};v zAo)8tFS+5Rk;8RBI?w~u+K;v|w%%T}Y0&*qv7xq0y^DzT`s}bjsgugIx^?dFoD)b~ z@qzLDULe!^_BM@gH1(gwlg&qivI1rc|8#xw+~zfM04Tbg^J5aBMkjvznjatL{&D}^ zX;aE`uH*R=BXOKLyGExesmvYmTYQ62lN0^M z%m49x@12dR-MaS!A2MfL=@u5n@0=lI->^z*b55iVv6CY5D9E#IUOL16JX~Po@wmRl zk3;5NK7FV)m51uP}6+ib0;?6sfC%{nSrnSEO?Ifk@QuF=DMs<_f zd18yV={_mV1}9F8=pT{B=)rxn>tA>Bp6qKr?3k7}E5*ozYw-IA9$m@2yQ>CXK|u`n z>RotJ?sjf!>9bkt&hOTG=p)^^vI=e3TIzi(fNqst>uVA3{1&-N%bSx@HAM+M=495C zJa@{qOP&{!dNp%Ra;R^5v^939+kVeN`c9sTo*B3q6t?4ZbWquhp3_GXRcja?xhth zJX;9V28N%WP_+c;Sw*3NYfS5*?)o{W-!z5Y4O;O!tU}@ZoS%L*)G%Q+uBv930B1v> zuTHwrXnTsX*eox=b^ltI-98)+z;|>4)pMG8ogeK^`PrRbXpvv+<>k2ZMs95;Z9%f; z?{E=I1~`JE4vh%?cM;5sXFXqVBk4+TPIl76w%fv-zNd3VI})}THep2mzfu2Q{Rr_&uDWf z&+ngD?x-@9lL2(hUW4i4-@U>wJp_|hr{UjGtDm#ysa0y`ziwT>q#rCUsspEvejFv8 z`DsU|DKILx#@kI}2QIBVe0komlWPjCj?}PO??%hqJ=cMv6B#Il_IsUhC1fuMBBGXq zd(Zv=6qff*uc)}t@%~}UZQuQ=7VPJ0Pl4*s$YG*n_CWp9c7=@d?EO_r+6qw=clG0N zP0;)lC|$K{+m*4}MbD(~>R)%Xyn?4Q+HyR?{HLtgZGWxErpkMjIcGD#A>VtgHFroc zg9Fjp0i)i92t9#Aoi7O{d`J914ToWLr)5UL4!iG*mX$qHpa0P}>W=!oe?4GP0!Om4 z_<7~w>&gA-+4SeX%&p%0>+7V0BRaF}E$*KvD#?ssSQR~~)2H1fVf7`I-Bg(FY^flp4$Yt6{REkwUw zHe<#1<{pONO8VOTgDVl+|HaR&Cq(V&1J6~}Myr551*l%XbFH;K{B*-vXsS%0dU7SH zQ*?LrFClBEK35zH!K>_m>(Qh8fAoQW0RKCjHCT?t+>+p8uI*(O&hs?D{XXlI z`2Ge9zva2Mw^fA$b3yMf--Z=x>i?;kXJz0A)>43C+HxMH^_E&{KEOA*0z%OvO3}RH zecO^&%;3B=|KOpddnk1=H5z$5kSBw1noQD`fO=P;gxJ9^;mykN3k}coUQTamApg>8 zjc+#t>ctBNPbXHb!8xpYH}p7wX7O&|W&DOee@x)_+|x9AZXeg!nGc>W)^--v-gO{Z z)K_L^wDjc_4ZNA<2aKrw;FH4OoCm*FYFoVhZZ+Z)4=79ae$d}o;=4_EX@hOCPklq- zCMTdhXpJ*i^WJRNd0M3Nja>~x^rB)vtD3H#o9|2tIslB~`*Ci&NnS^kmfwy!P*s$+f8Re0X*2hB5 zG7v?fM*EeDHX6M8hCJDU>EPJiFA`eJS~I+J@RL{O4+hNb;td@_jYQyengtjRS3D|p zMZh>7(cYtH`n}1&z8#L=$!!(e>G^A?Caodm-~Zz`Mj9(md~8E%@^mC_)PtV)&sO31Kf_Ynal5tGKMv8(3|Jci!yT3 z=s6TuR-z5Smn4EoXH4oJT+zDXQshvk_`bNwcXR#XO_n*7-ubs9BOA`z*Anegp1B@J z_&q%cmjEV9ACsRg<6QGEO!zqHR<-NGuNY|7G3bN8LiSVFEp}wG&vLb z67i#FawngCiDzxq zi62328_=F-8x+QwQgMt7jB2d$PBZcXQ+p0MTNHNv@tZbj?IQ)gRo~m0KPK33Nz%O@ zlV`6}Oq%vI)ixR|2(u={T&Vn^dRqJZXwY&4kXCJEk6c)EJe~4Ef+HNU_e#+=@<^$_ zY4O{eaIf^OuF=)kHY8sihWglV4L0*Gxb&@6sA%(Qp2|w!-b+)DIrukvoLcenHgCPT z5ddF|E*ictjwMuR9FG5qaTKgCax!p(#^Hh(hi!=-XI8+ms09M29Sx3KgxZ`%4?eII zH-rGCknJVYJRrw27)OVtKZgOuyFWPuw(r+DWTNq=qtbT6zWI5briWUs0VTZ-aN0}R zPfSb!d7ut7*j#NVWs^G8V?I#KpA$A5t!-PhB8kDmAISp*rv2dMC-(h-Y)(*o;$&gq zWmnN};B(D=pRXy{7H5s~m@a71*`-^)Ng1B_?^?Rj$`O24W<0fud_4P-^qm7yP{<^iG{y;<|jYOkNe|$`augFsHg?C9k>{lK`ykMyEM)v&-ltJZ`z?uPbc)) z-n0)&v}>mRGpltpZ*C_F{_>iq_YUY@L7$TFn7w508<&JQXsGt1?QhD9k2LSDY&Xub zeagbO-2iGKe0F!rWPsO4zA!w;C9HL?5$o0x{YKhZgPhwg2mkahb_YgL*0==Kr#{i= zJRIKU_Re9h1WR1sM{_D~x3-_z)Y2ap<_aih$>5qlv1QksXLZ*p_kYrT@zAfGqX}hY zTL)ZiwdUvLkW00qkuMzM&N2qKWo_SHZhrZcXCo5Vx0$HJxL&<_@Wg0C!`pg4C5B^HLG_A~-XQHj28f@m4gj zu->a(yTqmINau12{*C2}2#;5B{yU(h)B&s1_Z#ldaUSiBd#ubFt#0)Du|usW?~XzG zQg%$4ZO^^yRY~_2)dBV;mVzbGrQ%5%)O#J+t0$lpeWaE9oojlpoUv*~o2|`(Ka}%| z$WFPd%G;cBbHM66YX$swszo(3PqSlYw$#jPo#{^L7h88*qlw28E@esbd;gE|b^*g- zByA6&>Amz{9Q{546$Tj>p{IY=IcBj&9iRoV@D?wN8z((6v&`Zx+}RMwj%4lYwh5~O zx?Np>eFP}jpKdrxy!`-l!n6RG9d9Kq!r4Z@F^6 zFURSPW07{PyY<=FZvEMz$9?|1lI?OGPG7Qp{4f#^1SIm(=jVM6 zEjsG;;X%xqGCM(v+U7Kc+Z%^o&&t7n@E^H{J_{igc{YxJoHnWGx76c*IcA7=I3(v< zYU;&3Z(jRhZ#Tgw-F`=MZUTb(AiFi$u!ub!s2%u@bllDrru~M1e1Su*3(U-N`Xg1M zHf?U0?M+>vC#eHH*I2h*PTgS`9ssMzCJk+lGd13CR0Bly{O`#tmZ%nI#c2&PTYcw+ zT6Xz2{nr1u6->&!`|KXca%6Xjr#lD{@APgGB;9vm+-j{D>^!}F--=aFyGF%Eo3mFw zpRGe?{j4=Nf_4y2<==P%+@g3I%X^dr0HNCn?8^Rl%gZW#`#yjZ71X5EJF<{lwX^G= z9CE9&D#*I}yDPHe_iTl^KeWw<(bnEB2Y}!1o8GCHwv1f6aO;$=S!WP)gQ4Zqj=B$Z zPk@Etq1JsqdbSo`YyfuL!FeQvgDTn?kDcXD9SDCL-yAF&3DamHH@)|75*%&YSlPWM zI^q#A)2Ep~qrU0J-LO?)F2fpkCM}ijt#XP5lms*|@6p4n-$&ju_hkX*_F#{xohF%g z+mcw|uBvTg^kM+KNkBQh`rFpWbEwXpM}*TfR_!x-4X^2xD(%;_Q)54vR16MVtfPzkfi@rKLxv#Z;$q=o-VX$iv zJ1_sujZ+lLVi*5^oi{vl%vfPlL;rUR>+t1$z;sGU#Nr2dV80Z zQ~o%#!%?Tys(DL*BMTV0T7&l_(ro;eEE~h^g-y4u>le9e36j$*Ceg~nv|FaWUTL^N z%V3mUzsPW^AHFOcXuQj6{kHqHW`jcgVI;v3FKACTv^&Q&?!JG0(C|s6@cDw=GJlIT zr6aeI1n5~OnI87IW$JegFWX&JIUfMN>Lf6~<=T+^9p%bE-tp)&-R#A#VdcPZKT!2( zI>MMv&A4W8O5FD3jlGNZ#p&kuzuP!+t7RHM5+{dy%aOBN4UbmMA*R+OuST}!A71Rp zPBxx0OfAugpPzntG3god<)ZKBR_}Sx-+9KtB5CoPhE6_`%O2Z$q)ezrddBp6T=XM_ z^4t}f1fFyv%}=1s4SqtJIRbgluy>``wtIa$(!=_y7E3Uf`3Xh5pkz zsR^n5YMh+7!i2qbYTW$;YO_d;A2SQgKF~H_3wnk zS_k%^RA1O5RDb!#TnlC?1g^a+`-LXyTYzu-7f?ONecE~b1wfuiqVg~Mp>u7MJ4aFh zzJ&k?uJ(fmmriEkQqf!KFLoj~_U84ZnUsh=&HD3ozTfu0qQR`mns;sVT%LSe@YhF& zuElPX(eI>=;r#z^I{r_5(=jz&XR?ZpS2UQe*;o>?J{Nr=C`mHq#PX6u`OBP=u`Ka98 z^aG<7pn#k160O;EbFiVNuXK&)vLmO=t-){`P-|t+$aC@N4DQF5)Pc$Cw>J|Q0}-C+ zR`u1|n1gR)PyIOaqJ7qzp|}S-{$-tZY-Os>`+Iv`{&;p}65(%A}b4f*)9eWZn8OMWSh9A;)-4>)mY&ZCSMSl(|i<#g#5Odlx@)`fHooqk0|l z_1`Wr1zvDb9e<(MZ2?o#gO8~%E@DrWcNT@QnM7y8t&J7?ZaPwcud z613CII)1)+@4cGacVCWZKVSbLKN_5!;?+_xl%06=-Uxl?vfTLXYg+E~>HhGGGa3B9 zb2f}TbI+U}gG8IVW>YtjE%xYm8F(4oHA}QHnB`@F{M|MC@)yBLv_XD5jDdUgiqRE! zS6W-vnGsBgR)%Xk=7ty~uFP2!Za2E-qm`5CN2|J(T`OFdmRnS>SmidlV%5^o6$k|{ zlT*^`8gg-rdweQxXjJhupW0d4Eu+k zZ9;!YcCwO=9EQ{?uLEF?)zb;Ev67$sEXYpznU+C$X)b!c=8n~uZ6AIGhLkiQy^?kR z#O-UPW9$Aiyw6LfUnz~%ve%7=)yjD!+kHuIq5QnqOu01n+kS~RR+_)!-_`#2OA8@A zU-TT|~)-wf0Z z)DJWaG!8TkG!L{492saGXd7S;v=4L)93AK!I5yBV&^>T`;Kabmfl~vg2hI%i4D=3g z2Dk%#17`=$4V>q(c&WTJUOF#>m&wcGW%F`)xx74HK5rjyKd*pS$UDG0$SdL<;uZ5s zc%{5DUOBIVSIMj5Rr6|iwYGrS&NFOS3H^7?pZdFOcN`7C}aKaHQx&){eBv-sKk9DXi8kDt%q z$KTH{;1}`_@DK8f_=ot#{1SdCzl>kbui#hmtN7LY8h$PRFu#sp&u`#2@|*b0{1*NZ zek;F?&*r!DJNQTWo&00`E`B%vIR6CyB>xouH2)00hu_QR@VWdx{#pJx{&@jQkSa(M zqzf_xnSv}qwjf84E65Y%3-$^23kn2y8u6VwYD1dW0wL9?Jma7555XcMpn?Sc-$Q9-BRn4nA0EjTVXAvh^GB{(fOBj^$I z3OE9;pigjCa87XkV$sFAi}e?eUF^EVxx~HHcj@e)(Pu{jlw2jv#>>YMA#~96S9Tv!Vck4VW;qzuuIr2JT5#TJSjXS zJS{vU>=E_~IYO?mPk2^%PI!KpHJmz}Hk>}3F`PM^HJm-1Gn_k|H=IAbZ+QQ3fhbj! zCQ27&h%!Z4qHIx)C|8sx$`|bu6^IH&2Sf)&MWREZVo`~xR8%G^7gdNVMOC6|QH`ip zbXZg;suwkg8bwW_W>Jgih^ST6CSr@)MIEA}qE68bB>5Ptzu4_n8Oxx+Qpm>G3Th5(<$a06LY%6oNh7axR`T7%sDCMoDy?R zi#cb+oE|Z!SIpsvIb1QPPs}+h=A09A&WpJ$F*jArO%rp|#oP=rH&e{b5_7Y~+#E4C zSIo^5bMwXAePZr@F}Fa>EfjMPh`9&F+#)gekeFL6=9Y-LrDATGm|HI9R*1QkVs4d~ zTP^0+h`F_5?qM;vPRy+ra~s6mMlrWZ%xxBPTg2QWVs5LL+a~6+#oTr=w?oW5D&}^I zxyQuZE-|-T%snpVo)B|Sin*u6+|y$288Np<%|t%Ox4Vbx1m4H8z1gw-Ws9hb09NLa8TN5blpu+B+RGbE|!C25V4v?fW~ z5lLFRB&|b|ktxYIB*`e1WHd-JS|k~rlFTYeX0;@HrIYpA3 z5=l;lB&Sl61FPC4xjB;DI!SJmB)3^oS}!SOOG?`%WqFdaLP=T6D^}_&R@y68#w%9l zD^}JkR`x4a&MQ{#D^}hsR{ks2zE`aMuR2m+b)>Cb5^A+}2{I$Vf6-Rpyp|e3rW7Y2 z`}w3Y1AYxA(d)zM!La~&>!bAj zkyI_M8a${`7zZjqmLC8=9cY45wXwHF5^xGMy=)x7xs7j*eB#lv0yVUh0I`S!D#XGg z@1-Q*iHZf9h;~$s04X3g78x?2;3m9;Qrg-RHXQ;dV zH$TAA8d8t+(yCMkV&TXAC?noSRJXkotJ(zB(CyjVY(uk*xMm(kQ5fAnHPm>g9Ay_#^$}RFZht@FV(JcUm6b6hO zQ9(g4SRsk~STylX1RHH=j?PqHSBLdpAT*Xrr%Dl-QPIFR2{7X#89t$bFytYn1bNAc z5gHuAM2jI<(HE=4K4A)O*H+iX6GM-Nu{4|! zz@+;_yFtTSa7<|6`cNkN?p#JB^n(CKpyN0gQXdq`M8h>2e%FVF!&n+S7Ddt68H>G& zH#&w9%ZQ0**hDfzZNfw8v4~^>Ly>px(!8Dy?i~Lw>kj2 z3<2dV8-Weg%h?xg;p?@<-2udg&|{(_8L_dlcugo^FV^dZ_Oem89Vi?i%(8%!<*cb0226T&%sCY&UIR#spS&-);%dhq8 z*N_owSscg+h>D>j@~|LBMny8#koN-me}WtbXR4U+P^<+b0yYT@jg1bcCs~j~BQZFl zk;Q1IA&dzZkpT#9EHfr5GWZ|y6Hs%pAp6540HTw@XPq%MMTkII`O@6nynO9kZ4j}6 zu&B^T5D>x$*kvCT0fhnr(SP!}+cheH9&Q&E83~OI_Fq~Jf?}c~&?*p)e1=5DLTSdu zhQN3cPLE|e%ckQvf7osG^~}=bL}mfLaJ;0t=uoO)XGkTpu0<=bs>{ zZ$YOCfR}4P5R^)Y42u2V2%R`I))UeSXShNke3l2fI@s7Fo<(!mXyZ(^cfg{QG?KX6 z*rS!UZeCt)8^K08)D+!678*7^+-ZFHuz<{9J9+>!JP9m9!;J+>2n$o|J?)|*BIuEU z7SP`j_m6^O4~>))35bh{f#Fbk<(r5p#WxB2pBxnx0YaD&;b`K5=CS%#$i7Da9Br(n zK8T5e8pgDWNH-u386pjFgjle7t$&QwxDW7U8Egg<ZHx5&#KxOss^pnE2*#8UyiIMj$yM zlo>)s;tbh*5jlnt9~uiCf^4>IIT#B*^uTz;vI0NPpFhhu?NJvFU_?OSLOZ}hF=iyd z4slwj(U{OgDIB_Ad{lTG;(t96>6xu+*QZGC~!3`_HBu|?95XLeHMN2F_RYFn( zB_a-c6+5+51*V`F2GJ7oC824S63n910IZWI2#!*UDxXn=$(V{Pmx2_~zE8n2G9n52 zqoOILBbu}z`5_)js>Vo2GbYtB7$gE|z^q>#t(cIaK!7@uv3-St`ae-npGZLgrfMiZ zbU2g8QyNDAwx0^Vf`Z8f(FrO)O{$}ms20`*w8fPFn&^~&LsT0fimFLR5ho?D3)|>Q z^EzqeR4Mv2s_R&;i6>5{x=mP^;D|G5dYI^D!s=OH5#7wsMW>Fa9;r~Cj*3m*wb@k2 z8`44Aj04Z1YM}|P6_#vbK=N49E8`-sn@e>Lnlyx%$iXPG zvTT*Q1R_kdKU3L)9W{fcW9xDp(X0yHK3NY+rvRck*4<^q<-`@lmBdw22CI?b5-pUK zVWlksSVQ}#K}%Vz#r6)ADBxS%n6@lYEGz2xkvosA=W$l0+G7=C8w2aCk!IG?m7koN z4Z8Z9jyMX@c6?_rHg>cL5+1h|F|jjF2$k=^XT2og5h3BELb7)r=ioSk;>1qF1*N@A z_6{^`@vICLr2Gl~1S6<{00SUMj<8oU?DaH^3Dh1AgDGMZ2q*;tMgetV9e`?`09#p6 z9g%)0!otLkAl-IH2MXhv)+cO_M5+--Oe2b6;3f`(I8m{#j^Bg9B(Ro-8NXa4&eRHY zPC?r#j5q#qVs&wz5CzTAzAc$R1;tL+otTU5_B8KP8#o8&Q!2#7uem^TnNqn*Z_-P#Rv%9-FR%GrW$5h0sj(C)U% z_C>bIU2l7VI=U%9LH1f=Kmo24Y8i7KtubP<4Uio)gyv3ESJ%K-LK3td#-*+wY)Dx7}dkph&>W+auB; z;89fSXR&8H4c$_~xuZOwl*>NBj|1SJhZ}$ncQN?S2B(P7w2>m~jW==vF%YGsC9jmB zYk_el$FP(|E_B}q^^O^sJCZ_yztkP^=?*;}>~!G>WpDCa-ZsMWHIq#ADpwiQ)TM|M@M-pVgi9siEIs{-AEkQ4QW73LZUJROp$HKVj@VE zmr@|(J)Z??G|wdfnYxx>w+s}F0A9AzS`OsYGy!q1EMfTuVt+d!Sz#$75mcJ2$O!I| z-qA1u4q&{~jaP?E&8jkas(&WORGQ5Eon_9PhS7x`^#@-LUj^GVMxatrCVqve+PIu- zf~*LrtiF^^I>uDp2$U&6VV$`wTVvRHaaX+y@HlvbY zutAK3Sm;=ZIxOm``PfZ6WH|BYJ{vAjwwni+U6av~DU*OS?T{+s08Q=7z%vPa6;oZ7 z|J^hh0Y?*hP-=H)9ubl}*tL4di0>SobQd zrQ~gpT_kiX%yKLYNb4%)b@Rt1P54=bhS{14uo@IrI{{XU!VXV>9Y$ew6JT{HtbPKl9)&eb qfHk17#tE=S6xK8W)`a?^3KAm!;fCqbu^Xn%mU`&-NB##ocNP(J!|a*> diff --git a/library/simplepie/demo/for_the_demo/yanone-kaffeesatz-bold.swf b/library/simplepie/demo/for_the_demo/yanone-kaffeesatz-bold.swf deleted file mode 100644 index c812a79dcf951f14f4332e8b98ad9dd2b903a179..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 76780 zcmV(xK{#*$|bD6a{RE9YGN_>PGZ}d%s_~-#gAYW88E8xyfK; zgsf+_HP@WKIoDcoK&%IV9aNwS1NKs2?PUl3`t=J4SqofT`;zSgM8P3v2NF0Go?ssy z5pp;t!7Cv-Cj1cC8xj)}8nQQ8edAOeX9sH}eq{__ck1C{?aTIly^;kD8KlZFUM z9{iF%H3|R>WWl8ULt+oahNE3WA|k@W4}~P8fOzl@@30Q&tbhmnhLEgqp)f*Z zRzy$qq$o%9g{UHeg}{l;i}i>{OKjVKlPr+DfXtHmDn*mdl^&O#l)ffYA*&@PEB}YQ ztHOB&QN^2zI!awiS{p|;3M#)-&Qq~ay{md*Q!aY1T8o;F`V)0U%}z~Stro4nv<$V6 zYoE}r*Z!srVVW@hSV7z@E=l*5-hTc2`UefjhM9)uMjRve%|ACc82>W9WfEvQY)aU2 z!c5Kljyb`CWRYoc(jwbJU~9?No~@6!ZnZ46d~aE|&DRRCU3~k7?atdjZQqI?!zbFL z*v8u-0aBuW)<3G@DyW%h4W_*@ncDR3Nf{XrC}@i=>;S(5-5Vxw=K04+}Xvz3D}q2vZQ5 zo~JISxWYUfY$hZPZ%}a)NmeeN!o8_@ueK?DU)yho1#U0V5nZa1(j}Ac&lRHHeZK8I z^a=|V)IC<9SUD&?S=p-Z7*rjdpXpYQ*in!W!uqHXeRSbPZOsWOBx^+)Lv?6E3Jj^N z_NHe^ClDS4_1fdC!)RzJ_5fHGJ`qc2*jE=3TC{1ECFeka|=oEW$pSf4S_f1+v_m+41I?Sn0b`Z1tBwg5 zfuQWBPNQEMvXV==YH0Js29Y&QXD{P!QGk%Tw1!iCxyg$GSFD?T$GucuxgT6CTArid zvImGrvjDdF(uIH;wuQb!cjH8iNFT&$`oO=Zk>6~eZvj*V1mSX^NB{`)zz14-+tlLrjuoQ{`zLY8&C)c?XnkXdf z_hRY0bG=1$7F?w#q%zyX9*`s@{@_!{RAJHA8)TKAXLU)B&lFD{2>S>cIFk& zcHGu1(nsAB`K70D#!iuh7scMa3M)0QtN3 z?$;$G>A&Qil`Uv}Kxte|Yz~81)z;B;2j&w=v$`93tR=9?1y3?Emc%itteB-vG#XJ| z++Rfp?vO@$%az6p&e6fO1C8UH<5~8Leu%s=@yU9cOH-rGrqEI;zN9dpaUY0Np_7q- z05~$iM7(elfHM9>!0fmPCl-8TUYc1`m-Ov0s7DJ2uWvWDV~H10iLLc;rCD%=4RgLQ zVuU+3_iawxxa7?#iG%Ts*1$4b#JPmbOGQ=89}z7ARkW$40e~>&LKR)u@r_4?_RPn1 z{A{wHsY-BFU*lPL{h@(HK;`bNF4T=Cq8nOPfDI!RmXj#X;o3XOmrLFrEFO$&_G_uD zY~{2@^tSPD)2`3_kvqN}XWa5Ru3(`bcCf2-(W^4o+`^W;{K5h#bfIBnSvxgnvJo!{ zkTR*TV{gbt(>Fwey;52P0J3&Dyj z1w{yE?HgXt<~vQP%D0ms_B>ZtY&W7OBf(sWhkGn${3_C@?aq|;uW%z>(2yvgMx&ji z;6!dr;MAiDsuF$m?*c>c0PC=6Di?)tmcpaN|GI{jGwIJpw{e}&zd|pzK6|zZ((^l{L1l zmSulBsfBwLS^HQltU2*~Nw#@$wRhqbfM|SkVt*e2`xq|JZZe;PUp)ED1*h~9Blb#x zWvpNURo-6r-8<*~zc50*~jAruQt5bxaC0^-a%ykRe6o=W3*(@|yi;e}P&i4b)A_?UZ zxA^@|*XFsc7EETI27qqlzPnBxoR3Yj>? zq~X1mznx0Ye>;1Ly5aWaM5ZMbrk*WGIS8!Mo<8ipqEa@sMk}+16oB_0GzhRPzQ>Sy zz;DxR2aU^lO*COMS{F!cQQ%5A3P`rVZK261-H0u#48th*+Dq$XTDeV^{n`;S_n zveXx5^_*cu^+`iMM}?}ZsX)8tu8<9L6Iol^(Gw)^)xv~LzKVq7fl_5B!f``z$tF=k zlCsWur_*?R2tqT6Svnj+=} zkgS+vI|9f8CiOV=3vtQ{b!7S(?&T&~Q9f}Zbs`RC;k9BKANpZZ`j1{cBs>`!Q=mlz zW3Jdx&R$fs4o0lc(KF=vlaV7Do|d?}5gN6bS%_^%I{au5Jup}_!;Vs6-#Vb0b zmvQ>gi=VfWn!gpl3oV>GPqo)0JM%iQI!4pUz4A925Whm-f9LrgsfGo07NQofON%sp zL>Fip>kJs9pB@m6(3$htF@gO#fflx;LKO%@9F(&Z+s9Hh$cRs2H5gFaHm8&&%NGyK zH*EH_{qBP`EVF?7aZYr-pW4W*N$YDp#b>qvwGi8EBSMA!6i{JWR>kpB?L+H#4{hx9m2xg5Vs6mx-nOpr_wE{%YCG=9r1lAR7(gxI!{Y` z_5o-ZCIF1j5BXcW9tFuqLZwgeu&gWI$nHr>Kxx9Tyv2~$+uT!p=ZRlonkP=n+WpWF zsepOww8PQ&e~>eFEqOf9CvFQ2MmS^zO}hu&sw<-mp5Fa+_&3D9(;p<-Ab2A59v>61 zovO>PMgc{AjCjt6>8hp`t^A58%(x;4iF(ncqN|U`G{oD7D;Ft>2}~XYlDmah5})qs zOq!T$(Vx=axjlUvw7{JZbAp{IWbNrU+kKxAmV(kY1Z}Z*PZj8|Ev;q0akVgA#9g?# z)#llVCLS&k2RLG6tnIx!Hp#!F7P*0$SxdDxX6?&0qXAn&sZBnZ^D)=3lR3{*^(aS* z2R{n$Vl1pJ;MXxazoKAn<5L@H+l0l0Fqi=ZON`&N9f&<%!CrlO0hY=;@WBgtakQaywc`6$DrkgG zM8yTN&%k*+GfH>TbZq(IpXPKfR5tJun4Cb~}Lp75|-Hlchr4rlmf2CdhCi5h|0t>cO0;?j?D@ zs0@Tle=!o$>6*C81gD)_uM64b5$=XcaAniiqv*S)Uop?5P#z!hm~Dx9%wN(M*{AWk zuw(NF{up_)dn`{Z0czt>ard%FhjFsbPt=A}Sf?A26>J1Ev|iol1}}_iRX|N?IR<-o z4Inm4K1}GsJU#zUI1w@Fze8VR^8BmDji@Xtl%mMl$0!`k<+Pd_OY&VPc#^Wzsr2;C zvpdRZ8^V*xBo?W(F$&+f71R7^ne)Vs_bY6nd9|=GFkiZO^m&!7Hfv0zKbVTEZ~wJd z?h(bWYt(2=sYGHE5LBp#6Y{=$v7eS%F8YbSmSSbvCS_98gc{0rX@+R8g@!7a%SiKT zOI@~URke+C!yvEOU>o#-sw)T|?)Bbj({o5Jr%ZkHGH3|*p+F=_H*#` z8^GAc!FWpZUSr;tc}n%vjYLxgX9_XLrHrmMY!E-$u*x~e1v_I3*$T$^6ZOU&f?*<1 zSwhyY&bTC z3zIp3BcA+WEI-#a;OOzhl9%|Y<$U&y^Py`p!`zVas@r!pnCbFknz6p&F?6tJCm!o2 zki{yk#;w(L-WUzOwEA~vb;Go0H^`F0DnIXR?)>NxVe9V{MZ_u*mtgCz#r!MK=6-{dTCRs2yEAd-&K;oFfX21Nh(Gh_9+BC#;za~LnOi2_Jm0-q60r`N zGtU2pGWtsEP)1tkUr@%tK>@x7Wn}(=GMzU631tQ^%^Q3C4=5urx(;QsJ6TU#=(vb} zSe(&lwbzPl5#F%06ne4VH2L(qX%c^ji~ExVaT5QtX<~thv|DeQaACijCcm+oOVNMD zYD-bfLe!6IYO{5{N&2$_H~gsqo8}w6R_Sq811OPukUdB;z2}5T4MHvvA6u;fre}KG z--PB~)m23u-GSflL+5IOMZ03^-#KJ#3CEiF z5RM1q9PdLgA6}vC(Qf{mrUU!uLsnU9=l~POSt!jJgArEfLslL;yCf)S##l*;Kie<5p| zfQ8$ii|!t<0OSKN###b$|BZ^?IdoM0b);0hi15kN0fD)l^0f?-RkrLc;oH^vN`%gYQoC;If&Z$q}*CXH3q_qp_AuNnS zFf6ipm4<79ldkTDr`(|;I5mKD{|c!&VA1X5Ag$9*z9+z}`J<4j^`b3;E9+##4o#^G zJpD@H58R#2e`p#2sEPI~JWO-GEV3jgYOk)`y>Ke3lJ{$&q99z}rIokaK+cdB7y7N| z=KR@Q8$+E1W*pFKRnHM99x$OLjSlst^`0G4)d8R}ALg1ojO}?;vWq<5`;cfoQ^f(C zDQSJ>`f}pU^Ox9`4~e2{_4+JKPZHxQpozR#4dVkZ40I6F})iQ z2eEseJ~R-fY4y*U+F)LEdRo4z8|k}thjQX#A*`_)>!TQ|ZJcd2P=6>vOLhc@X|r|o zTwo)wx919vF^x8TSnx9VHE=k~x4T15(`e4#9435$$P# z!|%xw59$GGG97x|sYj^5KxaFTpX#gt%$5~1A=@^JA|2s?zzfKU+`^?Pl1bMoNIW5I z04rXt0CyXq6CwO>d;?&N8^Wb@TowkH1B5poD5}OMmb;#|_{uAG>r&L|IB>jl_oi?b zASM90rQw~U#z!2@uaWc0SP|(b@hC((K~D$-3=g-Q9M{KJBm~i?$|AR5my&3n!gF z5yFmvI~29vlt?TSdpQH(eqO80CZ(Qkp1hnm~`>=+)NV3Q@= z4!bTfJ||8Ua%_&E2L_t<$N*rK=n=~|2Pn*@jvfa>tW?G!XQ$Y;=)oof1mnq0hR1S% z0u^{#fUv729!J5^q=$iGw{8-os{yb{YO+c?OGQWg7XN?RcDh=Nyp?<#BG(SI-x2ha!xS}K74z!HW zS?R1DsU5qC1m8>tWsl1VizSYs1v+7HF<%$>`EQ5< zHdKiQj)r2!It=LIpmU3&MWyya7yw^lCTGjS7N`t6DSX!eRJ;@Ir3pmJrd@;AGyeh* zN_3oJR97lh;NpYXT*(89_pczmEx(}%%>)dETYuaMHAsbg6aDSF@ijE7nnHwr7)$Ol z8W&NI2-K;M$lEK1lHHp5K zNmK!guqx-0j^fxsJZLSu_Tq3Y*2Dv$;U`3nfxYwtUWrsbceE@~*!Jj`7rtNJUjW?C zvJ+u?LS?mNMY&x2hj}jAy^>3C!Wa;zKDI-ftHQqs94^Ipk`XdgtdiI2#lxdhvazSa zcl+{xmqNpN0LI=#1u54%Pi62GEu-#K9SD1V->u765GdoJQd@45g}!Gs2Ck@zGf%Mn zBhOkk5D5+f1W^pCp6%KZM@NOFbW{E(iNT}qPq9Aki(8KX7J%Z22b(+>7@t>9zOOoz zcy`*N9;E)cD9`y76ZwmRY+hw401aC@xI_gV^HdxU;FfWqc??MS)x&+zuoc|p1N>R8 zF;h;wC&MKl{Rpng!2<-$Nxcx24g^wIP#za5LePOd7dXySVLntC9``F8{M!4Y9#|VL zlw*Gm2LsTu?(NTgwZ2BKsD)h7q=(%;=V{6K{NqIeX!B0?1|-WP&rW(>SCCCKmW^(| z8Q2cIQ#UPg_hh+$dt0+Bnb^D=cz<_7^z@hPA{hJJ)IMnImu?P+OZ1ap0n`>Q<1T}= zwHF!CD+`@`4&ak1j~dtbMZQ_ne)hNa^Z%j!$7)_e@X`{Y@>$g7IcB24GrX-!7ECCu zNDn9UqVZQ)HltOz8jUN-1kz~0sDiRbT+(+{14A5Mc;V-R;`QiYdaQZDc;m2Pe4EnM zk-+PS%Pv2=WDKl|zWX!?94K(=ZCkE%3RE|GfnJ9&|+Q)~_@IzI!zv=a$~~S`aUx`et!zI}0%@25HYz>9KRF zZJmtypPD{E()$zl@9<8sp##;nb@j3hsuJYRE?Rv0sdb0^b6DbS-OC*}?2>U>p4H4f zH#ZRb>T2`Glp^n>y}WOWYT#lcpO8AY|WEz?Ptp z$S122WEz}qSm~{yRwbbgcX||TSE-V$_SSbD&T-E=?r!@zG$B+Jj}y-tQhL6l{*h@` zt~b^ zeL5Q_UW$;8 z#ADRE@VPWDcv42i63+?g$nO4D9pJuN7Kw)^P4@eKJU<9hCjHR=_{`dpSofLP)sr4o zhqTw1M7zL2MOPk__ij7sk*T_6hOE>{aZn#g1~Q_9756+$bH+Bhc^5w3yoW1$Z^QWi zm?ZcMTitdt5Sjci(BYZtsvH?h%-dKlyl6EGD_(Hl+74jP51P&bXxA;vT?2ms!aE@J zyx-}O)u!nWzat^{uH)_&fG8K0D#S?-x?q?yEM`uWC~U4sA)f{%*3&V9*>P;AQ=)&s zTs)8n8`T@7QtxxlSTN#8U@p>Bh`WH9--g&rxsGX+z;Yd!DN+}?5G@!?a(F2b-OD~u z-SQM;wv=|WzjO_0%(VmZ#(UG;W`>S{$(GKR`}cWkWSaM`827Z{c($FdBKEZ186*Sf zVmm%?&&95?wc=YqtClQrKTPdmm$P86upgXs3cv(yWJS~jp>$m`Lgf6QE)?UM<7^8#g0Xg&&t>wBmFlj{$w$2fahz+=Qqyo?i#-KT~CY<`+kpSt$( zlcy><7528tIO=Li!A4*%RgL(fiENYB3MUlF7RIV~+4P*Ih7C>_gHLD#;V#S>33KU$ z*{%!_g5rZ@ulhdr@I4S1zWeII8c_!7jf)nmb01HJgt>e21FI~qc{Pe}sRgL}XxPzSS@Y+N=>1n6CUWE5vXt#4=5!~H zxGVuz0#F{hA?mEY$vHTHRFYL!0rS@X%2#ZBL*lh=#ut0M)3fIMPAN zv1fJ*LvN$=2j)`RI{!^7FK`T1r6MJ6J=nFSX~keRtN|-bBb-v?IQ3T%0O`~&zRflc z@;&$3i>r~do(pFbO(!HCo4n=NjNr&Y58 zj9IHw-$rlQe7JC6-NTtt6YI~eH+(ej@R|l)~lYBMpbnuuQ|;J)p@AzLoeSqhVOV=mHdZ_ zXX7DNwF_P^&YsE+P+1|2yXerFTsWp3HlGccOo$1f>~Ve{2X~~rV%e9{=5xD1vy;|W z%(JpR$62BzEW1=U4{{ETwi>s&_54{pNjp~N_mAmbFV+2A-!z&xu7rijVboZXf&eaP;=4-M&?vZXmFaN;+!=-$p0YP7w4B z`-<#G9BW*wyWbp(x=$6*kv^n@?DBbUbo(7?YYY8aXK9Wr3S+3HzIg+p0p@hkhGpMg#(>+0#o>oD&@AS?tLkVx!x zF|VgIm6MLCPc%s9kjJfTJ(`BK3fxNApNC}@R46CpOh4b}oeMc&Ro2-wyvtB4V;g_D zZPFJB_Rk``4glX`gv^WVfpFhq>ZThXcNMNX(>2Y>2tH6Pu2@^L@rSgXi}*`H%W(wE z#UXltG0c7@PT*bjU+1d-8s2(!v6b|4YLG{6;_E)C%BpJw*0E=lD}e4gPH+ile;#x} z>fT6*T0Iy2xj1iJa|JUG#D*{f7{q2+?=s)9x936FET$SX4`G;Z#IFYnH2MPM27zdK z-VEN0`NPq;AmsjIQHr^30B`k*LD_QJt*MI$Dpt@s_z;G#e0MagE@9(&&kHx^4xE+X zSw{~M9%E2u4Yx=8Qm>+d6Q;!WA=Ge4Bt;-_4tiJKwqw z5VBC%LGnO^dQsGr@{wTH^Q&ov)-(0UU!l?(oNROvfRQZ;y>vh-Sa6|SpT=Hqf5TqQ z-^*9yo#>PX0C)D0JFAe>cpAYPh1i#=`RO-6aD1u=I6v6UI1qW9#k18Y`)OPJh{-9sDV;>b+_a8MR6`gG4N zW_l4>D}Bs^g%U*qnNB*OeDJZDKPr$v2Pfr5xs2=>eoqxY6B?PXi#VWoVSTTuLGRhV z6#{*dVzfUXCvX9TWvs&4zezGLh#&{m-R*2|lfz6Vk`E?_8y-_!EhSICy2<;GC z9>8S4T(+(3$y_nd+~kn#6}+FIoD63GVM10D~FE{R>@EU*sN+J|lZjOA|$$5^B# zD>Ofn@d$NJbeEd8fNjrM^f4wjN<1X3Wea`PgYn*q&Pees4PIhDX&uow*{xi*A3^f11`Ru08U^nRkVuV?F&)7m(l? zXxsUdHexvnLD&HJ@V!)?zb~Iut6nDiG}qjRadI4-51>LVD>|GV!|$e8EI!Uq#-Q;l z@?DY^`%-#9$(mQwb&)fy!R}U{~5-tn5ZH~e}P7p5t z0xKJZJCvl?`QyTs%PTeG$uA1FA_3g^3g10c)a?%X%;g;KzLWZ^xtqs|1IuVRxA}8I z^A>4W79!X`93p{PZ05*%diBs9h?L8*QBrF3luEox9pt4T|~av=*)> zv38tM7oD%SQKh5K;y~lEKkb~FEpz{J0=T0D=q#pZ$FL*fe~~u1bQY#?;@~*;p9|v~DjG|o z@+FS4XCL&y_qgD_jSPI2i(ej)=_WNU9^QYilhvz7C!y<6QR&}Pv4&@6-$hWOyGJ`(4OU$P3%xHSkSXlep%a8UbQX`b6Xb?LiR z^m21aesqECk`7#}Zzuc5PEjs1cNUWY5OKkX9In7%CW1=3aP3ek<~15;fnxpu#W{u{F;bOo*1lj;3ge$+oFk}P12ftutG{tG| zPD6F)I^9zy-@|9`Y6X&jN{604s#yI+x^*~q?}|)Jl(X3&6$&9ijr)`)OFv5N3!Yk=PePq-{Yk=LBcjm2mv zeV8t6TG2JgEMdPE-J7h8Gt?0i+QAMT4(3?nvIxHb)(it=Jv;W)@qMpprNlv;AB3h} z!RU){++#YT0}tvIgQ(k&vIQQ@f?ytAaQ5?k(mD6gp8MT(n$0?3Imu{wBDQuSYz?#r z9k(DBRqGQ+#0bH%zG9$Z4NtZd%?4%-z{xQ0eeS))@z^u7FsnisGKiS1xKZHk*kWnZ zetS}zmKN?SKxnNO=*?B1%>JDVOr(x>94{sWh5y-9*Sktmps=w$|LW9B)yYs6YS4qAGV^4#MtPObxhp0pUycO^< zoU+C%IH0akjtPGAiUpF2rdSv$x;KhuJ|7wgH8Fr5Ty#M&8p^o!X81;K-eyWZHz143 z>7l~)3xQSGXg$J1(!G-PwlS&#)W(4`D4l944o_14ybi+HB#UDiLXm?w&w^2F^}v_T z7yl9&qmrhO$RVBzChmzZ!@ice#AoYSPnBe)lvaDgKcQKMxfv_6(YMOjH*#~IQSzMv zsB0{Z{*&c~x0S4?jZty`dn~zUeW%y*dXHfdf<9!IR;W4eX6)x?7hgKCwel;UeGU*N znk_rn(MW*GYyt8=zeGIb%->ELZ^box^l&~yi@ATd920+pAe0}^B7SkAtHKoH$s)J9e%_8E0HZ&K6~cEo=Oo+^-M;yY1)rE9 zFw^zj({1)iRf;!XaRSI(P5;{}U!vRsw&ujU_zP?9dpdK5y?RFNSVO$LhUq(;l3fcB zI@SV2pl_RZ;+DcyUqho!7W(33J64`l_6nbA3iLLp(;gNNnB+gWO-vQ@MuzXSS9IgT z&FJvMvCf`8FS(@Yl)F>#=BjHKUpA#v^DO;xIV&CEeJsNGWOWc*(chRvEn>PW@8lBv#ZplU^W29?h9IRsV|%bc&(#r1_)527EbE zTjTUB=;BbJBk5vlY)Pr5*eKctN{AWML;&I$*h=y8N-N*M-*(mC9ObQ$<`VBhZqkeb zP`UT&Y2;9Sk%Zw?ItD5>+?SaZxfz5 zI5>4VTIkzQy#p1XGYUYpyJ8JjK6lqWKsg(X8fVg)J!k~D6sHiJIF)W+pQLH`rfA#Q zd(eayZHZn^z-XQ86vd<3LWN#hMaJ&p%G%chhw3t^CN1n<@;3CO$r)JN6X3Jp)+liTZW~*NDG5bi_ zU^=)|Ad#MNHuyL|s071$6fw~!9SUF3IsMr@S~`LWwbEd&pWOP`Z_o003A}EvaowEN z--m`9(i{2brd|oCkJcOO3uH!cl>6�D@5klsu(RUKw!RLXp<@L$za8>kC3N>qct( z7K(ESNu!w*lQgA#fMH#ay)jYO-UV~nHh9(`bEKvop&!Ijw4kO0{@ymz?$x^4Z9FkZ zg=K&*$l&b^6l$MfJE|?QHM;n;r_#zkB>7OL{M4A&w>&h6t`V)7Ki zJb`0ZL+OTq!#TU!b)l5q;;(VWozi#31dyIvMKqq9wlI%kDO&DZ;j@lgcjy3tTNe-~ zE})SPl=RJ2Q9yJW2szwHba?9>{4vY;MA+0ssxx4_Ba^$4mL{m}f6Rwc@WM%f;rbRjSyKDsvgG9h`ESi#h`k z+6Nvg^F>}b)2`jkT)ZNIc<$7M^`d3I9!wu7f>G`hC6*to=I~-6e<7_jTNkIPUVqH$x90V%yBr6o*k!|3e@d-8=V2Z3eOHZ#r4~nZ9)z@wM-lv5N7hCGPtWW5U z^E#2Q^`F^g(+N+{eV{Qu|J1Aot#gU74eDuZAqRb@uu$%>3`x9*ijbb5wpNI@W}$h{ z;i9Wfgxa*ZkRuX@F)ZO0rb#M2{qZJG8sq0rO$ul`ezWwQ_hUr(xDecf8KhuD_oANe z(*8Mdn+hwq(jdiOZQe_cQ5c0CAi({gE&ljCqEtl|{G-A(@lpdjjZ8S<8kBul#d*WM z{$9DG@5{p0n<+0#TEIR85T|j3Y*`3z40QUy)(v$dcAYzKkFax(CTPG7WcbR4Qg)Ts z!KQGSO(8<76grIrVO}e;uZ#6j2N8TUNDA09# zu+RW10p%(~k=C3pjAMmVYj#vI)T3Z_E+;NjnI_dKsp8N~TCj075dHa-5^kJlV%y)s zF^bkTsMcA5IwWxB&oylASR=@V!lBy0A;!AP=sF&8!7Pqzwr{I1X0IdCXNB6kq8y|? z?%jv*F^hAeLMQPkD+%nQyV}oPGU6TuQaMVVQ$sUNVF7vfMep8k_&Sr}gu<0j5Q6Pt z?ku@tE>Nvr3$|NXBO55wddwDAEsglo=vUc*gZ}fO!R@9qt}QaOEit|ME11qScaiei z%<^8Xrt27eJV&qX0qz*2zYOqidt!?zW(|?904$^HH9{q) z1+Hp25f1>B@qW(%D}eo;vSoeO{<)KOb=1$Hn{M*Fg#P$TR8rO9)r*OlO^%VCi_UC; zvB=9_2-h+rb4B%&b0jNkip+tjSE?9u;k2U2I;D`y8uQ1V-)tYMn=;;^DV>EGQkCY3 zXg=ge{a(4VCCsx?Fkgksk@Kz&nT|m-Ww}7C=ve(VgLlQ+9E6 z$p1e|`Tv?h_C!HZx2&fX)=FfL3Im@dgqO$l?)=fxH;baH>@DaNcX?chb9|%Fb4|h{ z7speJw)&5Hyhksl8 z;%`eko%@$PE-M71E@FSU|6`9~q5lngG@InB|H~fm^(iDlt()WTO_b+}qZglo*ENw&7o7e#zW1B3Q)3;>O?3HL2Eavn$7C9JD*^c)q zVT7Y`&*k++og?oJy;~u5P+{?grDtx61Gy~gjth}586Nq&{JuRPYHpdLVt1B;u;B|}as-&k-{())Zwc#=wl=Mp?L{BvD8gpf zAXGz7>do`1*sT>Ja8DO}ebt>Q;v9r5*a`N3ll+xJ}iwFru9c?8UdR4D6X zCKT7SYoBQ4Dx1yKwN;u=P-_LEe{YKYAG%jM!VeSueXmsUi)P0;t#p5vP_6u&6>=vR zwaf3Hd!;Y&FgKN})u_d{=l|Qi($mU^11t_cU06~;8%B!`Nz*}Szn;mw^WGh9_MN5e zt}6T1Po`onZcbs&+?oYxJStSN?WhIz;dsEG(UkoT+#D{Bllp7Fvc>#Gr{~wFXN~Xy zqy1!0{)+1*a`@xPmjlG)1Jj9&Chfj@;yr%r&tWzVls?ns8c>C2KMh*T zX6Z)d;#KoD&w75|btweTwr{>sR~^^Q3^>XRIKNP9is}kr&0O-B-_bO+cNV7Hj^Crt zYw<=yf$)|he3z#5L-M?s7h2X$S2ztGsriy#1(79$eptV|ISLw}8!8_y!z*`#aal4^|JCzTsEG z)^rYjppS5mAKk(ul>|13O0_c7qp5V<$>$61Egb3FfZoZ%tVN}Trj_u!X~EbjIb8!k zPW(&ilwy1iL|WOwgL!t~3)tFI-^P4+Zj+%HIjA^oH`OPC4pz*XQ}WW^bQ#d}U71cR znAJ4b>9oP!ZU zfed_UnrCOhg@w+#`9z@|cP2ZlFZ*@FsZHU&2c|1o(0MxzP5RIlMlVH4!J-v}m zfT$RhQ`Nk4Nb7HNH08yQ)<4jP?APsN0hj)5yq7~dm!s;=b!N&?B5lkr+;ur$y2XGS z)|xZc`1M3AH;%m^Gz;I6f3m(Byjro+0b8&AdEQ&Oc<$`u)hn=`rgmjC>MzTU0rUWG zhJuNU(;-s}2iuakFce5{*e0SKwaPwxu0t=HLQ3q0Dyygv?k$_P4Uv;Q$hwq0%(Y@h zNHGq~oOVK7x-_r9xZ+dGep`8S%F`orq+tVK*c4+?3M+h@{M!#=N1K2vRpxZR7u8#g zF~YXRV+diiokC7ON4IrOpz>*?#vJGvXf%W1BpLp5?@axPgQ&hhR$AJF`&xJ6hwasm$g&-8H>3`ne!3#UY!C#nyQ@vH$4~A)o!h;g-M7#9MQMp2 zh(Wmz5CSkJ=h5xfFp1M&cFq@0yp3eJb))403sj(FF*#~zz6sOKj04nz%CF7c7r`2 z2n2%=5DNB!Fc1zRz&;QOq5uU%gBY+M#DW7L4jcsW;1Eavhe0AZ0+K*7NC8K|F>oBD zf+%NwV+$^P-r8J{7r<9mW{XtZmp(~XN zUun$q*t1DKj85E@{(gCbQl@~z#s_e~9%Z{(B*osty-9|eTzovmyPaI>bjcN7qe9l; z659u4`7dV)Gf%E-r#!04c*XqUR>q0t(#O53phJaG21WL#B%X8_J#{(7Tr4Se%JXy> z)@l=<3*MGIxs4Q6*HTxceqs26M!ZCJJIF3Qj6FEntbEtEz9HghDyc!K^6uBb)LYD9 zRN+(vTuOARbZL>}7eY@Ok_nasp8%gQe;^;lyLNHm8PJsFbviRchRq{j)={0;9sgh@H1zZJG)&JYq2Q`7_`HuLMr3z&OHP1CDe7d(I)< zQO;*e8*lq#E5=dUO%-Ev=I}_O7%ClQ2zy6D3{|l9&M4Kcg{@nd^Wph|_@WAP)7PCI zCj#P*uT;BRektOM8s}qnluU?x4!f1QJUt(IdUt*1`JRs(-^n^g(`fvx%U0^*uqDl= z-=4_?SBxGNvURFGu9!7E5I^xqJ364+EwRJs^X5OcCt#kG#&!)XCbcapdAZ(~w(2%S zPN}Y;^IYbMfXK0Ips9jablJ`eAtvu@YPWlXyk^4#??O0C3}|VHo*W$a?ewUhO;)p- zhRI8NU>j>=wz6GME5*^0;FsQdr zrI?R1BWH!W*?c)O#b0vIftG;(4NDE(i#_M72FF^w$`SEQ00&#Q(!SBCbmOjLnMY3a z1ik9AkDN@w)LPi%Bp|$SLzHF2)Hd6r*FYx;CYpe>gW-NRbIh5$RYXgjQjb_+SH~dhBrUCKS^AK zW+|$>+K}BUCQ$P-x%g-_Jv5D!GV2ak_^?E6(4)%m?Z>m?wU~+bjAghQlh5d<=A~;f z4iz#(?1f0*dD(oD^%d{Tq1EG%!2YrNvb1VRJvCICxzGJG5Yx$IeBZSs&DGw*)SFCA z4_ITeXn@qF&L+e&z}gbW1FW#!7%3 z4Oo)kjD?4VQ7C?C(VE5K;pHBi;Pi3gVbRQPHB~0+aUxfrOh2Kr)2zWt({jt$K{P+KidG!3)i zBbJHICJUC0&fCQIgSA=JYAL&7WCi#H=}HqI{8xshB#gSNf!ZAPGSxZ}F)R`q3hZL3 zLfYjDtKuY?0TOyCVpD9|;aZ zew9h?o|NMd+j?Re#`aJsebHCx?6W_G!mcob$Ln_7oTDfIB+9&QzmvoB;sWEcY9}8N#gK|fdz|^& z0LnSxyh?fKIjJrG%o9*{A82uh2+vlsu_EAX*3BGu1vykH0HLD*^Sr%=AQ(!FJ{o(X z;Sn+Afhn|Dm$Z|kDgY1$H^T03L%pr7$bcVl+Z{?FzlKrnW} z-89j*YT00N>T^}I?6gWxxy(>-aOki|Z47bn@ZKYhISJBfx%>oTzBja+i^KS&=a`Lo z<7@x})DY#NoG`25$!lcmwP3`7ZDM37{?Sq`*RPx+#=2 zgjf2lwm~k=si>*eGP!mSm8OQUe@0_PvtJb7n9S6*gk`DJ^ne2`$!WmA5LeS3*7)>- zQt2VSem%>O!{C@9{zre#+SH`*5~X%a5s9}L8}+~gh8MdqXlUUv;NENm`QdVD%^pn#(ZAP zbf3u~kSbRHBg0I0&Ny;D&4F6a%7f0uBMX=xT=KX;VZZ|Bh57MszVL$Z!zddTCEMK% zy&D$GYMpQJEqprlFfF{d%F}N+wy-#d$;vicO<v}ZM#!Pj&Dq8|WyW@f$u!2L&)Y6y z@#tmD{RnRHe#{t55lo_Rf}Z=V1V+T<$76g;3(ej`@cI_!h)D)_P)gugl#TBo%ZxaR zTsWjrwPVPeJ&g6Uy&&%`QUBtPX{t7D#69CJY=K|t^1Yq~PeV#BAHfg62-r`4HpO%s{63CF6h+g3v>k}1n9V{DtPf4r)#9#@V6j1$gmp~%$ z5e$n&mkJD~Zcqts{A6o!|GpMgur#?&oA%k$L5W`H?5uZTIz30fn0e~XQ`@vm;bLMR zy_=$XK#ODvhY?uSwUdgXE@O7WepCQ z789R|Mna`pp&1i>jT*$Zgol~GgfNSFb=|h4(Em^FR%RQ_7m0zd{GN)ia98tVsu16^P=D}FAXs|05SF@2bY2{ay ziQCi1Dj1s|wRfnJ5h8c#_Y<9IV zA&Rec@TgFV@!pPm0}#N`e8YG(QGr`^dK8ObRZ_;HY`?hA`as4Jh#sQl z4~S0bV~{lOAZV@l-2(%a^Mff410{!azCan`L8s*ob(fBz&%`NX^7=<4++Aj}L{p*e7 zwZ!@TCUM!#=ojDNYF#S6RoTL&F$$@%|0*+aOIBg^!KM!|0{-Ki~lUc4iS*Dua~R3p1* zo~l6;w3v?njS|tTT$COyIm5hQHw4~lh<~Pwl5WI3(WA%u%C5!&t ze<@c~<}l&SF^tOuQC9h*y*8~Q@7u>OcU5`w1K#|qyuRM&kar~3YfaUFD^q+x8lJ+NZ$@=TwaerUR{rO~=Q)7EyA5WM2lh+D zMJjAK`D|7Z=0^{;Dhl6_>3fU3s3GpD82f&=VT@Sg31H;z0w4NVblb>u^sZlU)Qp6N zYN`s`Vd0xi?I&p;SJ$SF?)u5A+3oSDG-^F7{7$Uz9f*rbrTsFG;i%k)@7L=`$ZVQU z{WlA@EH5T={B60)n|@vbZ}bx$EU`E70Ew?0iqkoi$9ESiUY;aZx=@(DmTSkm$AA|m;PBoxElR4Wiu&Ni4byHDetKwRSD}_)<%W51W^YXU+$D0 z*^^NlmQ(1^H_S1b{v|&r>yQ+skN^8&dCHmE-IIE}m67P0O3$&`sijS7#_^ArpIVC= z>ioD-0;nV8;3KY{H^H;;Mx1}(*B@z&`{pgF^cykVrEU-+YS3r<;&-_2gRnzXfiXHHg+oIYN{+njoN7ybY6)b)gMiHsH8>9c49b)I!p0QNg1WV z@7cr8nD)lSC5NhoB$iNg(&I|h+J8u9XU!Df9ySmevL5}c`%|s$$SzBm`seP%BZXe= z7#v{cSWZt?iW^_vJS^We3*dDbdM8|;f1xGL>|Ha9F84jVo}HW7E69ws7~zr4rUi#oH$bUVPKN-2DA+j<(C)}?!O+OEnr+GI_Sqz=>ixS z(ML@k@BzHk1%+1$B&*-Y2aQz596YL42HW2r*abKTC+W@fS8a!u^|DnqpLWm79FwJk zj>lxG1NfZ6o5U8wo|J_|^?4nOMtu{meHZ4vOq$V8z3kSOrDNyzQ~o+zN1~BpXhgTmCO9` zddMoaK1Tdt$s?cNsm5w#>BJa((nr+s`Mj1ACkUN0&aFHZ&EanA4okv9oN#$+;%MB0hsGMlW2FjJD)BDg4>W9z)P}&w1{EMZr$uHZ^GGFH_FjQMb;n()3Iz#q zTKn<`!h5o6MvBA3>R!WrT}+K}M@+1#Vo_9@Aj~r&Dq5~pEWM$81_S+{Y`5PK zjhtqpi-2{Hd7r3Zn`bvYx)K}6^0N$XSfnTX&M?Y;G7PzWf*mUKZg^~k>yKy=oWRBS zZc3y)=1)?weD6{YlmXsx&d8DSf@OMePmh#Mn3#1x9jaYyP;tvHknpMXsgL4Zu2>Wf zsz@lm!Pjm3B4KGP7dOKLq!vTf*XA2@#HQ#r!5u~~$P{eskIM-Zo{H&4IMN9AEpPKH zx~&mGmT~CtDUAGa3!0_ezR-`eMaj*6@go7W2lX(cQ}lu(2j@2YGuJ>XiFAtfPIBw> z)R686aF{K!MIbm*_MBXh`LT9amY8_-XVj-CXVa`-8;DFVBTw|t+mQA9ZCGad?frkl zZ+5lKA(%6zcH^RW(Ne)Lm37$7>E5j$;>&^fa|ew~9_gk?OS4|Yqy&v>O$-lnIOmSk z*jIq928~SbgRC6x&2+MF;=!1Z3J#Y2{GAvkqlL@RQN^@7#M7<&SQS$}P+xtKVnt$4 zHGJ+*L@l?ZK$@v`clRRS6G^wl$at-xTAX<5xg#aBG5$5CUC~yXsOrTwxkq{2>VYrS z>*vGTC&Jo+8jp}B>N9DEwjohJGIpHZ!3*E#=o2-Q%ax4(!(j1gd489_1|0Qvq$s0E2vs)iR6KB6dS7 z3}CXQuY7(vV>xiF{9)z$3o6;qv}x0t@6v-pL_i6B60xABgG>i@b~-1*0r76Fo=uMJ z&j&1NGDCF>0r--7wCNdm{(KbPn6gdc(c>B2VXs&O;R| zZ1ZK0k}X)`@`2~f>!kXS>A^TX!ehmuy!BLZz%VHXysmj|qs>}^jAHDWV1D@Si-f;e zfp;_$Fv{=7sPD$^0@$ruXFCB(HMYSw4MQw8Scq@b_Ja{2a-AO$i%GUG-MPwj&hQ^? zKTg1OQfOrnHlGs)v%=g25ziZ%)QUDN>>@7lU@e5V$+uSzprSCbTum!v)zv6FUFXovlOmk7X_T6^J&@`LAgX}^a z-!2sA>iUvau`+zyR%u9dkju#?%_MImvM@+N)A22(;7k`7A-X-rZ3nLpb%h3{`b1Ts zWtrz7H6dv{t3~%g>3Y^$KSYMKfcaco*{bvjSDoCv=LFT3i%!o5e@2{hmOZ|#HTSL& zjAo8$wrzM?TA*RJPZJ}~W#bK?!5RRkvRemC5?HI`~IlGm`t7b%W zMGtWIy3mL0&EidTI8D>fUy6{M?;DD74_mJhW>wxCIkqa}(cO^pIf1kq&ACkU@#Dt1 zK=sN3*~Vg+*=4r5t6qC5t@D4?Tp=wYnPY%vk5pSkf?~oa{8cpldR0ubN-tOa%Uf8L z#Wx(X7Sbh!w4->^Eopr_tmq?v*l9$17U3KS6qwV|Db9}tBC-AXZ3K`J*(uv+=N!T=vM!v?Yy3cbF5o^dJ*CBva5BZbBmA#dOaN3J0Rz< zNd0=f_|H*m2w5C-R~?#YTQ}+3&{lsf97a3d{H~Sar_rsiBYzK+<5A%J7wZ%sT5WEw z6GpZ^e2t^}n0Kn~6$V$_yNj z!p!o{7b`Ol|BS5?^rHU>SE0q4Eg-+wGaK&0Eo%W^y#t#Sc+#L587gb}4d+#O3VQ#P zo}isE3Jk1OHFE{+=;TP}3<$$ty?5P3YafV)#hWWKUvM$$)UQu>nfj6y<2yE!Py86r z*6j6j;D)P9hZF0-(RO6nH*N=6&8AW zMCNTIy|mP0VeZTDt|@1Wc6x8OVkWi^`pzX!AMLn01ksv`2^aunBxuM!fr&c*t-jx> z`!4Q`-Yc#)|4Vf}_{%#I>HbL!MJ6CCiITLPgQdz3HC=i{PTJ9*=6y;+s-Hqynd183 zm2s+@%lK>Oh50o(WAM3 zruw+CZ6m?ieyr*^A{%Z5JQFoLQXdzK+@TpDpIe@!WKi~Z&Fp>HOD-=y41U$%+wjs= z&J@?x`|y(lh{_Y=(wZG(c*s_U=KjE;+XY!cdt1eqFWW?`(=Szh>T2uHog?SvFAySH zcja_-E;0(q&SI|mVQS$S-%FfiGEDoQcad>xsWKww(N$F&Eb5c7X4u zx)dfRJFsM`L09z)ep0Wp$yuR zD17{5XBDt?;|mK}JvK?a0@he_>|7VYSSX+tJ?hk|LAD2^bKp3&hQa8ETrGF%?JM8j zn!VTzC0B74(6V;ksT8xvkwh5@jv}85tZnK^?If3BcmwG+7r?DvE#wal*@RuHn+}UR z7VmpkKz#+_jj_Vz~9Cwr_6#2^_|r^ci2+Fgz~_^ zY;sYh5V}bog?Fx)HrCg+neQPRg|w2bYZK}3Ae$v$8kdh~tndLi_( zTJB}Coca0m^^TwMjAk;tR3bPS?^Yn*t<+qPsw?AAr0g`06~EZ#Us`8>721r>y6JUp z^G9N452dV zdr0c3^UEWORZBiL_)~8xGwBt*z2o{&aw1QyMW-F_kRj@~B389uMP)5lMd5jut?FsD zT3lQHP4xfLRnej*c--cMvM^I{2x%!QxHuz(4sSgd#p(xlL*v_DbhAb{dOXc7Bs>vO zQnm_rJ(CqtmcBAM>o}@8PwFkS=jk{Sy0`?dj&iH6U>S$&U?E&$qMh#4Zx-*Awzl-* zV6yTvU1r$dI;)55m6ER*`g%uKVKn?K=im9+(F*;SXs4lifllNe>3lE9jdftR;b#Wj z2mFq!i|j=FGEnYGBIl&$FB~~Nm=30%Q;<+0NvCXv$-61&%V2N znEK}={xPGJGTa3BwM}7T3cgdh3EvjM2Zt%exZdt`o5Fe&cmK5{F+HKXr}7gaEglaJ zmkfmXP6sDLARhLIX=M}%=WCl{#{W{1uk9dxQX-h9cfFsQeNi{BIE%$l>!-TI|vtZlZ!zU`m$l?zTz7LPCa812=uJ!I*LBV%k)msD6j1#VE z?-L)^gA^{w^{SV+&BHK3AlF>jde@Om<@?vWq-yVPFxtGig_HmF{X>zI4|GcRyzi#U zp}#x$^zxQ`_M36NTe8Cp&ao=Z!{v7qGnIdpPB^Gtb}~0x@O^gnGP~H&Qe{WR`c_Hy<3|rS`SLHT{7OH5`tTy~6IzNN$r^en5Lrm25Gj(2r>ctQEpevh zm&9mmN8O{kxGWK`tMPDE z7Z-jbid0G1=lv*|Wf&~LYiE$pziXH)m-(-T4|Mn6B zGO5q%G+j*iKWOrtpK@O)VY83l9OU{``Jx<~ed(q=&+8)GRM5QyuQgJGjyps1UI)m> z=fKyVxIdBrna|ZX{Ura_0S14OiciJ&Vm1Hqv%7d{f5Uen{d9op=NLwj`j>5&P{xe;s0dV0JwX&j~SnwY4EhGah?F&HJDAW4%G(~_8QZLB*hK=Gs-XZy*!7N$?UO6 z-<>sg878UJY^ns#$TYnktA>O*;QqmQEFa z#Vl1zIwH@{j#Ivnre{>7CU!y@zs~Hfs`O?qwF0>9r)g+;P5APhkjL`%^B|=P5s6;& zz}y;~{8heU4b{X~)adD9jI1f)ClEW*ju!Lh_-t$uAATDx_AT@Q+H-CyL7bb3d3s1K>^dmANVRplhS+g_r1(E78W{b%XrW<|_)vJXm?HP8 z8{b?#A*G+)^u~?)#`kgXNg$5iiToFj2bmP!FtPtBDcZ``Kpz;U7lD;#KuFz6M8SG$pD{n?B7!?`DcUU>HtE#yXSjXGbAUCgHv=mzzjGWjA zoJ~i5ZD31s3$iA&{xC}9U3?SF>;LndAiJcHvd2NBCYWyg{v_X1O)-OwPo`wg3Mexj z?11?Ke_LUfG`HeSf75QS{A8Bhe1G^ia9ra&NiEJfUVqOgAV;g(a*~58@Z&>`iIB-; zx88B!Nx`8VS@_5oFXxMo%9K6B_Z+50wLFkC^>SRh=OGg_K)=sxD45j;jW~{HM?~ag zNdc{?M*%b=0OG5FGXkR48i=$3s{7zriH#Xpcws&*H0+Ag81$XJig` zR>f|j8VSG26yd_ObMSD7M+Vm+V?~K>PSCl8<)*6H60n5Jv9o;FA|uF{(NaLubZJt8 zWZ>GgGtNW@=qp#^jmllp;-Ca{T_v+6aa|H?P{l5nDv7m0#jdEz aqNdr=v`Hb- z)Yw>z|CDoTvS<)ecd}KVH_w7Fxx7Z-Vqv6U8^1l=OU``ljjSTZl%t#`+O_`*)>v-S zTVJviN3(i}y;=Q74Nck#2L(;q(DihP%=+dPP<==cDORMU<3yV(C2kJb+rFA@f9ODf zaFX}@cR|%wTdUo{_I#`zF?|R1XyfXqW&5G&E%?Vz7ai-KcsJ4}9iV}AMEB$I%fhdW zhRf0=9G#b*%mO)_A$&QUnDD4QTGM^;DYvl7gmg<<#3zN0+gozMJnIp`AJb%Eujxi8 z6T`sUl6! zv2LdCIXiIVTdQCM`C-aIF*4nkKa~6gZT6J~tG$Bjg-GGL8i1X%YJGw1z|BzDLeL8N zVb?*i7`ol#OTuN1(-+_g+@V&F&*X<*2NHRuiw#2z8I`%wDu|(69gR`RJg})UYr%Sk zazpt)iACiS=9MojmC^C=l}DTOR9eCMuz7l@V1p>0S>B0>GDX39nzDO&ZiotEFjr7x zRP5gnVKWSz)5(>&vQU*D$0i)6A(golNyw#rkEvl<*Ar7&p)FVznjdE+9UcrP{*!nR z?QtS`Sw4O+Z2osu<9CNx-x9AW5hp9(C^vhjg8eP`ng-|dyxS(De-!+uh%)=*Q?evh z+4`HNrrjR<9Pl?uQBfv*y5MuuL##xjqIuK9lY~`xZPM?*s1t;yc*~2qI~24_N4=e#60Q2k~bpE!d@!Z;~>q{#T_p4g^jl!Z0HF90*!ra zd)cgr25GHYDNov@v**bc>L}fuKEi|7!XF=xTs~NV!!10_fs&gYn27$vY7x2N6E4^I zs>!9k0^2#GkTiq%t`3(tAY{Lq$GWUjz4_Drk79wyfXkGznQdZD`(=gc&CB{fX+Klw zZtDBVp_Yd{vSW(^>Q^mj&21C&+g(Z@LAy2L(V5GtZp@JV3Z8-SMFHJkz5b&I+7Gr* z2?@A!1%Em_NhO zLvQlYe&c-)xnnPr4Ep~-`Wk*mAm;hjO*2|K{`XUNMr4v5uUFt_C;UY+%@nki0nEyc zZwyJfZ^s*DhK)tmaww{<4@qg~NCL)RqFNGT+Osz3at30DrQBN?`e&|JDTvM&O8}hY zplCmy_y#r#FrDu6+K=oyW`{oykR6y=`mug@G3+q0q$~jbEmEafZpBOfCQ=EX{yNG4 zq3!cFH#_vMn;8sCX(!+-Bdl-4*78LgJqj%gA$6BYFrpE@#Hr*$NJh-nofT7s4oNro zh;z@%iS^nm8pqoM9K%?yyq0ttK z7rAE&{$pt_=f zXpd_dA}!Z*l`3;QS)WahG(~^01oNm|V@knZ&#)-_5Kr8w`O8(cUn_|501 za+wbNpCSDsB08KYOUsRjBB zN<>6St~lN(kXh*NBBg!0_vNzOVXIeveJZ;1vPDfOvHezW+Ta5#Z(`|?9CO{P>Z@FK zXsW)I?`3rmecCUwRrb%65jpc9y7jO6SKS}Z$LLJ`a>i4Ull|$Qk@rvcj8DJ0XJill za?e=(%RM9M$8EZt8}ChDdZFt}bm8xQ%vy5MaJ|ZYOET3cx8>J$lrnxZP))v^$MEgT z>zew(N|idnHWv4{8CtYoWulnVo+{42r+@24_cIvKz5Qok=TXdcog2lKw_6HFyHC3Erbb5BQD(>;vomRr&kaSQllaX*xq z9bt){$GpmHR+E50sjTM>mF%Sf!NPloF}1X|Nja`~$QaEOohO^&E@Dj%LNGEmg6)s4 zDHxCBWbZg|h5hDGvQ)iADvy{kb`1Ob^k?+<(;q@;-JNWSZT;Kxo%szR&m1ZA^ACt5 zBhkm~BV+-mqA+XbEs~6;3XbO3r)m8+%~KBA?nG^~#J_=UxBN^LVaOEQJ1yLlbRzhV z66Uxgv)=ejv)Vk(L+C{Q^*slt6s;F_OcV#L3WV!c*LLkX^hfiKIgJ{v$!7S=-A_L>4yqkf&4R?+T-8OzIM5)d0Am-{;f=j)uQH)8b((B6~tF9%#T%Qv@j4=Ulf1z z`d8h9D-sC=-5)mef#fB93diZIR&}_n(_q-_NOIF+#9P?qpe`fvvKp7=43D$!k*C&Q zj=!?P^wWXz#pM+8J^)5_8Kg>HuBBa0?5f%5^0>`d#gFeok}umJc=MrG^HaexB&NTr z$Qf$o^Vc=e_cHyH3c;~^JC`3@BZqA z^CP%59qpIAL~}Lh)r~^WN0LL@GUTteR}=ivJl0pnjc6ofx)3N<@TN@zt?G+01QsuMW{;BXiNv<8%vivelEjb zFItl+KMWhw9ZWD;0g0SHob^+=WMRK{D^yUF8xHzwp^?i96^fphTXiwU;onE-XrG_U zF7V`vW@t3P4bKLLE^ESA{iMndqD3|jwD^JJG6NOEpsoK-{`>dgJ(ARU;J?9npgVuT zV9bWyoF|4ezK>YO2%EOdCtSVtznsi60!m55L}+D0Ujhl%YvcyJ!T%uD)_m*twqmgd zrNm**YOSrlK=IwA-(DBqXNDSnSE!ucut}!-c{GP(6bfGUDlKdb!iLpZZ_P{|Y0u?yYDF4(&{gm04nB2j zJ!-{{7JGpNDLdfl|I(v(w4oF zQPfnTxCic%JhA2|_H+-VT_M5Vzi3jfTW<2}EGjxj)^8T|p2K4+J@(PV(hz?Mn_}P4 z&2e6DQo!{*hv_y!;#{|y6c&gsBqmqtwD&nUVH+B#1BZ1I-7HewtimXzkJcu*Jg<6~ zJFDFqGiltkx0{PJZALv6dmVJER-Tzky3Jjjz%J%TJn0X*$0bmza~Fm47k-@=1Bw^p z!Ex0#Ezb%N^7}0gBvtT<#?e{_eHqADK^^xtJ%=MvfoPp=94|`_6KqRfJ?+BnFc35+ zNQ;p1$0;2*vro?X53jnV# z-R^-yVqHe(3u{-`iwaTgob%O(wBsn3LnKrx!PVZXdqy7=2d(VW<}PxXtJ%*Q@U%hc zLUnDmk80sMLNK3RYn$26?ybDsEIJd#Htt87Z z7_xf0j-HyIFTl91kJo}jN{5A;)Ir~+j^LOqV9U)s0_`K;sf{uw-q-u{wD6|W4eAI){6{&;d`&!GK9k zt1soth|FG9!Hd3#g=hG+v@A`{4pp|z8)-q-jn1;?0Z#oMtVIReC)bkHcQz+_!w1e! zGlp3uPRHsnF4XM4`}S_o=G070?RCnkyD-)4M*`!mH@yQK@nMvg~Kc_>xfS6 zUaR_rOLO|cHs);7tlMMM&Qg}=LBU15O@*!1mRCFU{P>&|b+)04vP5m;Ll!pQnxYsT zLRPonjk_uJhhCb30vB&i0M;u>LMIcxssg)xYa|qQ=Yai;G9kCKR1B5LQekeONAIjx zO2?q7kK&1X5M&VwY_XE|#RSQ0upiVJKA+mMFGQW~?3srI>K^WMcNB4w z@qaKa3{9BJ86cMepY&qr0ynhgXXp9qEx^NG*5qd}`F#<^-QG#rCf8-B))i~u2-n3R z?!|*b)c(8&YUdTckz;3}$HKL;x9j{Jr%7adHuiJ)xNeTk`299efZn2qX-H}D=yr*p)%KFmdyTG!mj?eLJGox+1nu(Qg#^}VHGk+)~@ ziC6Dt=ZW>ir03g8lhVC!k$HIfELvd)UhoW$4K3c`%y7kv`mN=(;f_YPRz~wezC`zZ z5^iRfnI_hwO?a5ch(mYiq_qb$^>7-OHGXevz_S6R+L&il?Xf>afSfyzPN%d!b4gw- z%?h4MnsPf*RgLGYJ@?_w8gJ_`)Gp6oTcvbT1}BNTuJ7K#?M!NT>U6-J24HtIaCd9h z)loydnX(q@I{tow0cr$IpI5n)7YOozrB4EM1suZlx3pZ_*EhxzPboG8q8skB3UaR_ zMLcc$6Ln`xEjMGiMcZ!|)g$~mJ->iG7U02J^ONOgiJ{yx+g8ZsS49FBL)klZy-6%g zBmmFB2+i<0(@kJ=XAqD9dPD6u*)E)Ha9K3{X(Af;db3=X4vdw%- z#DKQi1>jmv1I&r1c zonkn_qe+L#TE~6;1<}r!jiHVZR8qlg70pFwO2RBXOjZcg58b`NSZ~hiPCtuWpmv}T zs$(rOKFHhMTntH?bM36mAR5k3vOL}W@}UH(g&Nw+jo8cynd4_e`X+Gq=aVYem|r;H zdREs!*JuemPdlNg#bdZ&%!yZ~uy zyd2XQp-R#49R}r=+D^2&s11xBFRa-!yx6ZyYT|UAHt%=QPm<-+I_n0GMG13z?)R$> z>+lq>*1l@un>wHfaym1ZldMzWAnS@fX3 zL8M_Oot;;9lL&#&b2Fm_$-Y$YflOfz9cp#sZXB?k+aTBr=zhoY`%IYEv0&sl)7+wNIJP2N?4FXm9OdXuQ+h zyqrb8`bh{Yj(goHR~-_f?v#G9QnBml#&Op6B@Q%S-2ptLE&LV|1wCgu+C!MT3C&K~ zcgOa1ZgWIgGHY@eA$XaKijD`81f52&Q`Q|J!#fgz8Owu7S{#PQkaAkS#FMjjUR)u2 z(}V9(4Fi@gi=A244OC8>c}||zy_QK*>IxTzE2}H~*OO2we6Z+}UDZT~DEP(UpG*kV zIhzgSJPxq&DXgcK(s;H4mKwF(8iOG)-6^n}H)Cu>q3K~lwWSOn(RB&;IPbz2OKRde z&tMev+*ojecy6VX_)U|uYXD;Bj@ixkI-qm>T6{Tsvct6KSNk-MYgAUcX{`a%Kb-u0 z_3QF}2oqGOgS)VPbyl?y{f+QYr@Ihg*09>jExWVt%pnd+o_rOD z@i9pWoHq85k0;Zf)h125ed=%)p`+pQBof6W^*2-@5Wce(jF3?++l5|JYcAb08{^{x zUjnz78ua(GeaEx(z9C%F;A1HD^jy#RcM{%`lDZ;#A@%qJ=ke#?&nOdPbh+l);h){d zB#H7m1Qm+EI>Ra`)3i?cXFCxGH{L7j;}kX_>c8US&azuBO!juNp3O!l^?5p2SnZw1 z2)Qq}^*p4tI#Ct+zDkx*b)8)Hm2pG<$dA7a|%`BdQ6NgCG=^Lh5c^!uWO&42?x_cD0;M4pLjse{;Hz5z+x-B2M0a?dw z!t<$CjF5VclOXNHF5!@*bGz^1^3A#%Z}86a$0RW{!^yYY-g+Vze0w0k-HF(UNnIsr zpv_6M5J!eq=_IRh>A7D39OlmC)ceu0H?ii>(R%3p^rDc~VO(^h;$GJR;#A+IX<)w* zRdyOIJ*QNP}D~rcD{&dAs;^7%g zRp>S5qqzAXiZ8p1qMBP$A>C5YiJ=S$aAnQY!58P_U52<>eo?sERdMlYF}>g9H8G_H4v+V_5tWx0vaZ3r9Nix#5MZF&p~+E%tEc-Vw$ z?*Srt3VKG9`Xr76TsHSOMK4S>Rrb~bf(mZsSs)WUA(mAfhqrXMWnA||P;Xn+Pmai> zeMQ4`xWVK|$jNBy^vr5o;y$hC**C1&4knQOMx0RfX`2$`7B@x$HLl?C()q2%b0PlI z(PuTh10r)1j!+~D_85gTL)7(I( z+R@rgxR@C5{Hx0VR#P02$8qxR5iNl<3(&SZu=JG|ZQrf5BF{9wrsJWw4ppnUooQds zXHQU-NE6YeL1k47t(~;IFxG8~hSjC2=)z;8WmZVVywpb1!FY{O_tDmuyd>AHRC-wp zQvOv)9EDpR%KsINLaPB<09cT1Akf}@eUX2z*|??aw3ZzI+{9+3M3rFK!i5_iq=~9+ z((A{s+Ul1`WOMXHRzX8hy&Gb1fs?c_$`b3d)uk+qU<(!*Ay@k;5MUT(v%<(a-rty# zzXNjuun5}Bac9l&?OGqZW*V&y)O5b)vv~^J-Hl|;=p%MGc5PQ4ca)tt{F=?5cz)0o z*HmYA%r$Q8Y2itA)*Ofr7i2&2kKl~fI^5T6lVSBH|t9chpn5yiq+?8C+pT! zaCX2tPHad&g?sZP_4F9UM8#(2?m#|jd5@oB%06W3%CGwYbJeBF%R4>pURw zWF?9@dO`)>q<_X5T_we5C$nA2suJwEQG_g%X00~L+c*G$8&H#N*!nsRV}up^2Mb%= zYI%Xs@SwqH>8QG%8cZFJtwi(6dSn_S?fKzp)kQHv>2#MqPgae!FL0IvT5G>F>Jk#9 zy}(Jb`YKUqcX{lhc{a{h`276h!q}$->s8;M;`&TwZ(avbKkJA!AOgIm7fE>_G05j1 zreqQ!L3~PRU>dFZSvcR+)ax)?2uk4H=Ly;8 zL6!mg`v$cl4w}OwCU%dq8J)%+Y7M%;h|s&Sd_Ca!j}%J^cuVq2={u8Z{2yy!&3MS> zIBhg*#=J$9c6)}i7V7Hmp25ivbkywU3Z9kj)p~iMlM95t21`$lmY1kv4yVdib7sme z#|mg`$q6l95Rw!u4mE`)35*-&RM2+BYPo8=Zj-UmlhK<_5;!>5=G$+*s&SW(5Mw=Q z4lCh4O_wkiRtt zMSEHW#9Aqi_w99Pp~a4Trn}WAm3Tqz`H?3Q40r1TWyc>qkkW2=$#G6KNNC8>K)ijs zZI3!UlZcy2^+af%cS6-csSu8d@LdjA7@oiFutG6%yFWOwyKhbK{+?7k$b=f3P4bp! zYb>MBG>&TV{3&(-jYLEFG?m|NB2^Wx1O%@()#IqXYa*kghPNPFMN-rlXDBu2X3+FxwSElktdkm-y?$sN?61XJR1y3wXq-B7p zq2RC&%lBhk`S&m41(V~c#jDhw0qld?PHaj?ZE}x*OXFL|eLVta_X*-%GiaK#F~4nC z$7a+-2K(LtbB}Jk8QwYFYsu_twGdDRFlbpjS=PQXoI7K_-8DJ(<%!+E4omN{ZSNiV1YGR5r18y(RY&C3&atG!ABp zLW^i)2InqPhO#4;@_6hkHqQdC-?czl1PmI|`&YzWw@eo!C2_4dGJlJcM6~-IXuhq2 zztcY+RCM}je|+xd*zNlVIeVFS=EzR(PWOt2VFwMwoXvwuh&ZQ$9QaLDDxW8ziH{&K z+hzD=z}n*HXO;Q1MTZCh1HZ;l& zlbG?J9dBsz5ev{(Z(8qe^-6AY{9-$^+JkXYryr+3>8(B|iHk*16+A6W1@@D)%XbW?e9x2~U`L!pVf0Ghya8%rIeQW@ct)W@hFI zGc&$nhRt`*+11r*wYq=6{iWS1ce~nUx9gGRdWwqppKG!b-Z#XWR${W`xXI^i;$f5W zA&Aqoi{0Id5gGYAJZu?(n}9rU^GOgF({iiCA<>w;h5Ekg(waB|qUp1W$A?_f+9DCm zU&c@XI2~C`|70dbIAld8V;>zL?ZvZDz5|=ipJVgVnzavZR(e7axUa)wzdDtm`ui`R z0Uv=Msk8SOQY9lXI>i$#>B!R^X7!Fm%N>B8JA#K1p7OByxz8wu?mk)f!cX9EA6`3x zS6J-Bf5dTru&s$_U3Bh$W8l;{G;1cRiT7UP?9w=dZAD%CM-vaU`)*q^lc;g1?f$!L z*Q{5-G=`bFSKb-2oeuT*?cn{5bf zYYWhn*>E!{T+xzIldrAWQnB|`B@`q@IMzxnk^`o^t(Yq?6lp0eIs_u(d`UET+~>=x zJ)S#87U^~vdX{#v$hul9Bf2wV{fu#|Z2Naq0*S5L*UEBNFuRd~huMxIAYU>~Y4Xklt1e=>9N zT=Vk|Cvj1499D5q-`3)Xd=;*ct`D#A5?^gDCP~;7QaV(P3fIO#{#k~0R~b3D@Q%T%b%kEKWC~;E z%ZN_2G@9ewUBBE{p2lhT^vHGbbnSf02sU1`6=5Io4j6Avy_x|-)U<+cdb9SQvlJ~@ zT@J$pyBq9D(d<_gN9KyGzQ%UgT`&DEM_ zoR=+KaLDCVAbMiM&xc1u+T)AA~dAJDhHQ{&+`g zl760#xPMHzjIsvbF^1$p=ejEDrfh#jx)MxSp*z)Ppwj(LmKDX1267^WmebvfP}$yH z-db02yo(rqA-Y>RKI?A zT!MVUO2UjOD(g5a08HoUAXt(cDSd6D{k}u+ahPHqHHRZXhajQjLWfgw0>{J@A^Wm9 zKcFNbyDDLco%`(asupHEM07e{+!0K+A*rIqlhO&@N6cpnqwA$R%$#nIAOAxyS=?Fq zP?2!@@v_7&wse6%*l7}4QD4|-^?c2U)kL^h!f!;lXu7{(ec%@=slJMl`&$)cFf4?S zf2w#lMtt*Kp#5ps+0q`_I5bQ`B>Hj3;{HY#f35WKh4db`gA3W+X(yh)0e8XNie zy2^C7pW8K#nMk^Dl|*NbYze*i86g_k0)-gc5Erzp1?E+kk_L9_TY-`%EH9+no9dUG za8d3pKy6ETrSx>}rdDQNn`AG{+<%-MK+df()hSaza?m(jDZ(_&3{S>xNT%@MR0KC} zNQOiMRIUvRfEKRkD58Fcv3LP6-tR4Xy;K0-B)3E8dA%q_ygtDzc-w5W#fF_mU=JQ> z!U0!Sujs=I@SFj1$*8C*$I987Az5J)tU3QQTud~r*oz55iKohlxNulYd8sPVD|bCV z#d?kwU>K*{3_!j%B)8?#@#s>Ox`_`XZJ0l$SBfN7^?IKb*X!yeo4XfqeSR^7Gcb>I zq~~3Ot=#gpU<>W1^Nzbo>3Wmn7zK6t$a=Ap5pBJBx>a7>xjAxB#qRLeFH14dC+nv_EZnbZp8Ms=v|2*mezD5M7+ddMWLb&<=RRbTt+WnEImkNdOpU^!rzH@r8*E=6Cc4L-)z-S->^w0jPg zmUUa6bV4%at*W;#tGACSU)E3|95ac=2mrQ>NJ?Ey!OJoYC#(DUT<$@4<6K3`WAwBk z)54yoTVbTLUZ39suJ5LHd;M6^{dMjb=4#^twkNN9O)`$jIdn7^OA6RhOp}yVL&{wg zj8CYZ4=fNZ|$;^OS~Sz>Ykw zq>oCnqz;6`uoM?%e%p;Cn=JP4f-rO)uR+;Mf)L>q2moK2mJ-6 z@tX?YH*nuFIWy7ayo@#-x&OP8R;BW*O)cf9#v;D9a#u#jQN3SHNaQ-sm*;Hx8slL9 z=Z%kgBAcDbf2*sFHwmRu8kfPJqG8={YBSq$UUH1#ik)&eyvXzu!X!=+jcPn;HPM-> z^vtaGoc7YsHlHA zktwU%x50bTcsJw3D5LThVUVkx8K#+u2%}-^CdaZ+ylV!hVp-;OGkgtia*YSl)TlGJ?!)`r&^JMxIM^i;mIEi$+1rT;R0w=QJuS&+C@pGx&H{(SI~Z-wm8Lh3T! zvYSY7oezoE-C9T>aoJB8?vIlkr1hr3t7I>D}p=v1J{SN&yLm8846Zd3;QnCmP1+WnO^OsBO$Zv68vv-kMQOq;n) zKR5ys-&H^4R6Y%F>n=UOTm4P+0(n|}HpyUZ)D20#zNFD8=D_LT-^*V=X$vs7B-54F zO_|fqCd^Hcr=(tw{*21p5!py)p%{9b<=&rcsAPI98DadR%sZW^gxn})S&2#d9`U^o zw6H9$9bA$6RL8MV4mqT~ytsK3v{a7|6T0(c4mASurCi!Wfw@nNGhb8^{--6>YT zVO!&?`Jc*)2hYx=;6h}Rkj}HpO;fBCv#RDt9T7QQ1G?N4I-jIIQ6K)Ay3dm)=+%47 z$_zSMj?;uy^#iT_Z)k7sPcm=MQd#~L97`)vE%edCx3cuL}3 z{rc)6#n>{Wfm@LAJ9VxmL(azFIy|l!;D0!zB5Wq$O7CZ+I0Ns_r>26By}-3C#?Pi8 z9LJ1>srTy0s=4jq!SzDtm~gm$pWvjmcCkukAj?qB&%=70w0Z1GSx+u863fio$C3`+ z=dqob8c+3dehb3>RETKqSro5x40V1wYo6$H(|hCpoQg*5z!c!yr@51~ULVcoHR#Yh zXBN2OC;I9LEgMIU?7HiH6ajv~lIBmd{KVZdPux!gY|gp5>!=9#mY~y>OjK64+C4tG zpSm4OIW}RONooke4ouh_kIlAqYntfGjS`f5O12TywDURJ@7|CmL+9JF_LVd8$bkOoa_mSGX1(F~_-dS8O|9-hi# z;V6yXcAp^3^uqV>#x8TcdJhZAn*|R$`NV_0bLs?{nq`08-PQg||0TbKU;c|-cbX*8 zr0ua%&t$x4PGW=N#_EVd?64cd-~}}PrWmhD((XFEb7z<4MM5!W#wIg z)lbK*H?>;x-*4T~VZv_SEh@9^w$JhVvi9<$NBXJ7cujLU=YiFDDwiIrr_x&m(UDd& z?Zp8a-B<2kZ~a!Eo!)*{Ees{>(p-gR#mLk?7GSuy!>TX)Lp+&pho=ifUv^y`+U=gv zdws=)!c1`tEX*71v!!9%vhuGuOLENG8S4xIdR29;r?HcfF0d}ADDrsEBfcu1H2asO zu*|xT&Y>P&8nB;l#0Ki$akZ1U@~J+C$xcfP9<@_}mfJ=3L*f%Y8Arixj-O|t?@K5sHm;P-tqC7vj$d@?yHcKrSI7+C41qr$pMZ(^eDzZB`eYdbYd2+{WI!>; zM@RI__x*9WqJ2TV(|o41Xb?IV7w8gZ`_AIdR4G-sr4$0Sd-=AcS(hH3oOWZ03aV9g zu^@U%asacfFB$_-vLwd_n2)gUbl`&kJ{=v0%!QX-@ZX`FItdc{q1yGV&6e z`m0_N)Pr5p0Z;qHsLFb135H>5;D_7Su5alw3;^CU?pHatXPmceO~e#)f)wQrJgN4u zUbK4W8l2Yi_XjxLY(y3DrL((Ii4X*rz%0CAOa4xy2NX6T4mV4HULDw8ysaNMdv)|! zo#W8kqTos$Li=ru{m4Dw%I-0Vx7FvkQU_nPk#1ReP&p58;vyr~3r6(Qp={kT@!0Au zTD~4G5vSR;otQ(JvdxGk%}~P14(P727uI^Axz$GRJZ-!}#@VhmJDx60Uf%R=gHYF9%7CwRuU4^aJnYLx6Vabf&xL-wl^l^7vxnt6Q`L`mgkH zd+BG)WV2}I`{N*5D9o#+{^Cxl38WYvy5|}nwIlOH=f7iact~v(Z*l9ep3ZVNle*9? zPOiaDRwbvhA`aKrbTz}2;Udl6iSLqi!G&gm)s!FFQ0uMapH2I;$+lsF@#~*pA*dCd zbkAcA`&JkbJrv|v*FIakR_vWNn@c-WL1Yf)l#s^+s4~KOzc|5p={$et4`RyfAR#WB zL?%zL_VVyKe1(n#_uA%X7$T&lN=ghYkh?Q8<&stlT|qp-1R$|CI}j~p&GIj5(x zVPhnTWu0;8E=fgxj=!7NbP9Z`NRr@fimnrhs)QeS^aF&HGUx<|j5UR-%sNvRzC3|L zN{!f-HMwpR7uhVQ*&QT?)3j3>uCS4spkR5yA4Nge6hUeb5%Vf3ozEMUI)y&bbe^c> zo?8CLuxHLCWy_wG_#lb35>E#-G$VKBIjn(X{)NxZ&|$2uaC$!nHX&1jQL19BQwHK? zVZB3C!-KMcx%7*6A08qj>m%>pThf1jH4DjUZQLpDyx`5*U*RdRWaOo5+@YviBAYYJ zPu0ikPDR_^M9OV?2t0w0Pap!rpo5XGiB6$w3Hj~mEMzhq8X4j))ILD*QcdFNSAn~Z zT+p1Yvb050zDAKi&uv4*!P!F_+ooJ9DcO^q?3%$#oEjQb+HFS&#~SLScDUh*?OH%4dcPr42(ufqa3 zunkG`yUiGi&7O&S`1L9EA#@xa)tB-NAJAA^C#w6YrH}%&tFZp^QwQqa-x$p$FScs} zbV5N}x&*W+eGWDnOT8SYG&je0v2Q~WJ=qVl%-VSZ=_1hG)xJKa;?H}#rzi~=8KkY+ z1|nZuJE_t!uG7BKu+}mZVf6oQJqEq>&RS7pEpb{6q-@3_JMKug(~^CL$Rv{iZ_cW( z1k4L-b{tqE4qo`f6}K`{xVrcW_)kYyk3!s^5pNF=oZYy*8)fc2PZHyHFV@jm;{^$n zJ#@ThNz6BY!Ps`lBL_$)be@zcOGH>VDtR+isaSYkCwR}&^TT9DF^@1wWmcUoMP8dB zAKtKsU3@I45#D&Zu{mmv3zr&e9c}8~qFW-kPR{9B(L}>6rHrty{K2lix8hFN$uZM^ znTnSKR+00=>={9-(^>tTipO zkFc9tRr8C}YLk`BP-6Q7PDQge#;#h4>o+)e z!!pEjamN-<=UGEwx~XR}?6IAfRL-?r2B$5RpH$}=E#}kdV<~pA_4p}w{(c{2`?ZKl zvJ;f-1#^?M@?wTrNhjM7Rfc_*bq7XULpa9d32O0l2AS}dvG7VaFU~vb&d9GSnz^b| zCPwIJ0bEI|8HKx2vWj%3wrKLFk8NJHu2}lmMT{qY3UP(i91=B6GFZR=tpZXPG{Muc z(elL+fZ&&-hcLg55`VnN4O1#ScYnk_-kS5Ai|~zk@{<;sjOBc5Wv6vOGR8D10@|4i zXE?uU4Fe{+`@boiYwn7hlD9kAr<}EE2I&`bvz;rf2f$dgUF9%JHF zvWA9F@vl`W_AsBfypR_&uyiHy?IOgAzPj_!ta#4 zFY?zFDv)BZP!cTp7sE?o_U+&eK@nb-zB|h2cq2jOP6*?1%)9lM7uh9x{ifSC|0`|Nv=?{a zG@#;(RS)Ss2K24U=Ypk7Z{8~oA?=1_ITxvg$K+LSP{O*(GKmM&5%0M(g+M*mtpWVC-NW+xc6mM#?iFrK;Hg-?Q>IQci!C-|38(^?8 zUDzu1YC0s?3LGGN_@2{$2QL{mM&3_Qe9vb{3nFpWLc zw(M2^If%i#%~xP-HW&Ax|9z~%!va?4HI{CSb?EBBv28M<6Y}@+NHVHchK-HKPyQzX z%dCemT_L(NlB~!AshfTz-%3)VlMcd!H*x26t$|^=n`?>z!s)T64fT>;t8-M@g8C()I|H3%aaytZ_>!T1O=M8iB1!7Qs(7-V z2aE&+Eo=?@q77A($tg4zI*ESozwaeMRh;tS!)BGk&){X&fUU6Z zJG#;=HO|+XB|D%W+oae6McvM`$H?FxOSElf!esxzj2A(%+^Yi5xI?P8$e(QyjP#F87S7Fyi=uOgH zx*{!oj0laEh(Op#S>$Tt8ir|6H-CvqF^0h^kKfhEDi!oN)eAbk049)aPTt&3ZDvp2 z{cx*iTv}5Af`doYg zT)l-~a|p&madoI>!ZVj0&Yl`=Sqf51g3fUhN=I2d-F<4$BxpXRXvM$)&)FXjWQvCS z5YWR-CJ%0J`D~ieE|X2-n#arfkE2($+1bbDDm^v5Awim6_4A9h(WQ@h!R4}Y;qK}Q zGoS7fDFU%R{d^q&u9zu0nw#IzJR}Pm7_+JM3H{7hC|J*YH(Pi_+dXlXHL49}#o4BR zwjJ1JDX{+f>X`aj?FcUOlsO~cyD=2xbCA>s?F!hI%{k|z>*?_Fc{8&pGZncGhO;;` z2j5@j3CX${Zvmthxn@0Nd)iDAp29V#-63GlBE()}^^w`A%^{;H1@%$H zpoH3s-(Qb>}21zoHi}7Ke}Kxs`9bVvRnv z)0`)9$hU#nVFle>-{_UM%t+GfBs=2?a!tXJ=aaMB98izHQyrtyDj@0Jy6iJ_O0jYA z*lvt9d!71pcL;ey;^x(%$TZBrXE_;gOh;CZw-aRfXvx7c|X9dD0>m!w1uN~CmyqpSZ zk~%?;Vbdm2Be|)tM)voon&^=vtRg7{C`rSQ(9z!rwW$;#fy1qCs+jP7yoI(2t5Ix5 zWzcX4$Bi?9J;Pm6Oa^W+4*sZb5>p_btUn9;JLXHl(N2@E32@ZioZFS9cZN9bCB`+h z2>Zm^1y?LC+V|Y3_s?e6+A2OzQz!+qXSX%#bZFvX`fnq0EEspEOv{z7^3l=UrTlWO z*JZf{WKc1UkY6+U?8u)ZNGvBa+m#|)7a+x517wfX#FJM0zV)VSzPre(TnVO?D3a2n zk4M)Rf^(zWzpjzC1K2X!v}ul@luD>Udz#wTYqb6G@v0Ak$qYhuCK4m}v#|i-Ta0E2N^u364I3VTKZ)X?aTI6z!^BcxU2_#FHn3 zglnozVy-B%#b7U*q9H>o%uJ98J-Ea8b8^gwJSoP~OteRfEPiQTzt5E@`Bnw0S1dgD zU()|>kF7Q$(`;>p^!ff2!Sp*_SSm@=7(psJL9===(-_mkvaQK_aDA3-dRFw&7>)Yr zY=db*ceD=1b~TaxFW~B^?~)UuT}?g?6c)t5{?Cv||oWkq_iSz*&m|HXg^D7YgH95T$AI8T(tn+fmGYq=oK&Ty8Q-8_SddRd}+ zLOs?tLpztk{PsMQHe^ZG177d2CsWQ(4LGpsN$l%;zvoV>evWZ7P!RKltYFR2Han3h_T6w~9di*F}8=a!jX}p0(c?7cyHBa)M0$`O3y$gM1R?yzt?DX4s#=l%Evv}^9ioiVfuyxOt+hoEoVV`+o+H~0Rg9I}W zg#QfwYdN!DbNV)dVZ>PzM)soEpbKU^aq}LKFbFqr;~kI^u)Y1WiBcz=(&P?n%baFx ziy})qvtTvlS3|URvNmAXik__O;7(_F2G^GA6U@lJcqs0XIGU_YtiprWO6=|rU#1%1 zH2R^rZY%?VbONn?-IzTmI>V@TX-Nx&I`Ko4dBc(Pc=6YZ?D6E4?)ds885o33Z42k* z0$taQz&u|yot0x9!_47i)Mu;F8ag%C1*fAd=oaY`Oa@R_uvZ?Xn!QV4cjUqOIcds*0S zsc3DH?i6ioM$5ud;)KpWz12b4e)@V+D-}zWP1HHY+l!dFhDGv?^gX_ezU4%ZZ4f>- zW$zd6?e{%vro4umETgS2qdn0-edM0CTV(^!@4CTW5=T)J^r8(WHUcV~HocHkMzQX; zaE?t`5ose@TLvrV_Hm}aaAsXnc8)oSikNVYv=CFmki>hdi1TOKrxI7~$~#QGSY79O zW#GuYVl^KxbC=r>b(u;#!ezjGhi|N>ds}bYf`I%mt##W~jkvP~)E8eU(+lk9+OObZ zvNjjp!P`W!{Qr_mm?&bR4h96D~mpJDDTUv9yL=M-P#ZbB*fBXtY!*0{jI9rQQ&mO2^ zU1_LknUS<7{b*h8%1`x70i(DFMU6;{grb915TAep7rpaM`;arG=e(z#4@LM_p1Rd{Zc)2J-g7-&TEr(8Y0bvCVo9; zg+<=#ZHH&;o!OU};OXKic!XM~+=^1=sl7a;`D@sI5*FC3v^meMMXd$`eTLW^Il8rS z6BFC&i-ZuA2v)q5hnK6(lCqw!4JnN!q{M@bm}FC#^d=9-CG!LEM=462AuF2?6P&+< zfDA?bt&ug)QBJ<=uXl{_IoCS!-pvude7A!?_H!HZ6fUEqCJ?cmvwr~s1VW@ zr0GEGEnMz8O17dvlK4V=Em4^ho}XWY+d|lbxOq#yZAQ<-3J4TOYWVN#pYlzLsy>!?%7IrrhQR2xrhsB8kab zp_$?ulbxsjW$3i*o0TMObREgfWJn^ zx#wBSK$9B+LX&!rBz9%orpL+1jEB+ByN%G4fkEvhlO`pRs)|3)WsW9--pQI<`8zt$ zH>K(WY9ge+4PFW0~jf_KcL z)zf9*EgmW1x3IlG)iW=rb18SdOh-edH7i6pL3_R~lOt4aeCeW&UMgPg&T-9yWjz?X zyO2cq4$jyQsz$iyE2c^#(%D~Ed6Lk2G%;C!beD=dC`QmQrr;~(Bn6joyFdH9X(+Be zC%uP$9oLXm$?`t<+^rt0Lw()RtaSO(%Dz3BCa7~yWURS7o&OzsG{UIjP(TP@d>ZQ_FoAd0hZ)mVTXywVgB@ei` zwTYSJg)sTN{AB*U0WsukT+xmJapd${kN3}Zg;z*QVp`NT=QZJWg-TELBv55bI6mSX z2wWt1n>WJ)|2%#&uUOXAp;jkU#_rnN{91f6*VMVa8$V~MNIOMM>l90qSlDYbXBm zz7NJEh|yr0Agr25gdJ+V;2P$YjGp0C9CMD`Iy8 z)-jmrWW@2#vTwbxwwT}1A(uI*cx}C~ik%B#y=qw^+spYB+@|`whVDy)uhM61#MFoe zB~pyy;)yiSMI=QTm$UuLy$w6Gm5PZJ@s6yV0GR@q=-%Wto&e|j z1l5+v__DrrM3<_VB|lAhtKO{A?NVbtP;K>3Pz<3-eo)N^spCaJ`0a=E@SmVvKymyO z2JiA3+;p)N#u+R6#fBx}CA&-8vkqNHSH8H9lKwt*FkPETw_FGP>gcQT zS6E`#&awFE^A>auDt3+B=JlOyL{H_C9O9Jb0rW7g@NWP!pZYKQ-IYa=GWVlc5d0lH z!;EmYnN|8q$^ul)nS9?#Yy9a+4ri$cUN$QDY1%G)_1b3V0*$vw=gIV<0yWE7! z4A*n7)t3q9)bU1afn9b(;E+T*yS27SXX=7smh&>U;QvW9E3a7{N(Q z{4G-VyyFco5$-3}hzFhC!FsIK!d(ju*=vfJsTvf4edLX|ufr$urE?kFvXASV*2xpmR-JA;M5TU-}qf>*X*%%gG46=b(fmn~btl z_lhnpNsISPPow$_Ks!&eaG1m4xLX*=BlbH8eG1o=W3aBr-;4Ik8_Dzsfv%lKk7NqP z4-+5nhBxvw#S>D)jdPP5xj%V+>|;%RK9Jm%YSSOkzbmo}DU!^ray17lu<5SW)hr_% zqVCrY8VWBWT_`^FMEp@Dj$y8#r%O`eJxG=ocZ@SlTch_+y$iO=EJo%US9j(dPuF;< z9FR(M`%)H5RM*sStocz5Em<+Vz6rwI6qg6gNIHd)2-bWO1KpA;HxmwMYCVR2oo|KV ztJ6q(e&!u6L^B?1FBJp5>!qr0F-KrJKklGd&wl{vF$wR8;?^`O+1ci8tg>zPoP+)bze_ZylPCkrNFnD45jP6V=>_=1(4+Z_!vNf zdw=}PjmGkYiS&bEfTY!fn(Xt`1I6$S(nD5*r}aaxg<{i#sfCpC!>@(5+yUX}MdkoC z-2v0`!&QUY=(FDeRRxjTf$a1{+5yw;1^3*6eisB$g8}QKuEl}yW7VVk0YyxNRtc_8 zgjWfTD*zD+p`b^)0+HWma>0lC6K=0pwH9G8;8G7-93)JSVg=GUfLD*cHNYnfP!da- zjz$;GCKAGwk}s7fe^03#j{ME~B~zEDEMMwguJh1vRUumzrpz+N=+5Ylt?J07Y4&ij z*bo%V=-$Sh#bR%|wLGlzqWfiUdNiG>7%`inIFVM>ZWJgvx0r^?C|Aguzgn&-7nW8h z!)&0FnhZ*(-6JShjw*ebu9-K_>Jpe<&|-98>i?|dj zVlMiDdxHNd=-LS05Hqsdw8D9dEM!8r3JYW ziS#pJS!vS?g&=8qnXdG38-qX2NYI~&ZhgsVfzYnsnMP^if);l$vtd~+Sp|crG2Ziq z$SnHX`}@2`AN1HO;mUD}3uY@a1VIikhyo))VPorj5p;*Vo#J4fbdVgH{qWQbc^G`z zS^}(MxqqVe{xBlB_8t6BHLL*F{R>7b6dg;hDhml4@s_BisHI>hI8V1?pZ3C>b1WRG z0}@MbI{_FwHnnS@#yx~Z58V%666PO;47`DRY>^tT$Ol5vAmHlM&yhUu zU_5&6Xp4Nodv^#Tx7@Wsbg!UBc~f?_FvUKgsDF>y$8!Y8C=}db?Qn*!=}8_dB9wO` z1}-4>YgGexYIS=5)0^6D%|d_JaJonWYm{>to?i%5vB7BKe_#s*A-@@%W5LYC{a6YG za1@FDp9*5gx&I^nf7zs_jmKEyKB1~#+!R6YuUVFZ-&510Q4!wCAT zv{-mPsmSau7tfD2*jMQg>Q}@|2v8bzuJ(}Z=qucUKXm%=Vv%4|;f|#wlWQh}bfwj5 zgB+z+T*`>0>=8HGZ|cl$J)N!}od^y3l7^X5)+QPlqm=&=4TvvE>? ztiv{OHqXR9uO&t=XFg8jM4ZmC5Q9q*4!%mG$S3tg z)rLH?hCq%v&s(}U)%JJ!XJ6p>>SGFwDRCrds9!BGRi1(|RzGw%6jyH}6{KT15XJx* zH#SRjkbH1GbSjiC)W!Egjy#fI6-a<*lILH49m9CPfe;@&3L>I3{LhEB>c6zjLAYll zK2@!3a+1qmDlv?}X)ybl+xVIhxIRrlTnV*&u!64Gw55aiDBF|e%B2f@uzxZ5S@r1* ztr_^Q8GzO5IuWw zMCL}$A$BHqF2M2lsY}!?d=YdW1QQ9BOd!mPNQ_A8EsXc)J@^^_26~TU&*oqqV(-@; z+8&E|7K5Mr!03=ZpI*SBg9e>0_0KM?T?aulUfh;=)q)(p%~ zrl6b2XERvRG7#N|5auc>Ws$o;sz_7JU(TpuRFP+A+r=j)E=pL8m6Oiba3~%6qiEAG z<+Vm6D-aIOU~`33t$vbhy|Y%Z-?54?H*5yX25=;7NU8p+2P*XCb~vjq5m=E0z3!;C zYJAQ;p;UM>sa_XQ{C0Ie_pJhAQd z!7qCgj&zw_*9Pq?K~*CVw7wr0V+OUS(#o3JL6iis&@TYs>-D7eCH(#EnL;{l7ev#I zt!xS2cmZjO#Jti_eyu{Fw?CS!JVS*(#Ri%d;j5F>Dp~}BGWzhB$;3Hm z`dx7~;^j_J*<(MT~a_{kpo=u?8u|TSt2GIY(Uk&;b6M{ivEs6<1XnsIU zUz_Yu-O7Y_o(Xro!$)H>U*kQ9W7c1ztn}Y@Q5w|jb}z$MH>c*7T`JaGeP z{IM6K2ID_8!eqc*{24|5C3d1tjk903d_a^k6DZSF?uBeGg@n<27Z zJdWU*V;O>s>%x%gAv#rn&kN?d_v4*4V=E^3cLCrOpzVGic>aCata4foxFGQiFI568j>H_&(MOyT<)$ub$Cd^G!Ab>7Ti3QFK7Dj~N= zXm_yyzBR#pKQ#MirveVydv6S2M$lBdk^k=%z<_&?caY+LFb(}rU6RMV_AR1E(ryvY z5DwpG0=u7XOo1Gc&&W5-?hkN#lzT3NgrWPP386}%KF9%fYL~`Jt)(DmMi&G*le`; z@D40gD;`b%HCkK(6CFO^7c6Xf0HXX1OakJymMZ@x$oX6!cW=9a9-s5MFL7`b9ZTP^5;O!-*YiON6l0R&ti7ouv=-=H#Z!{6Q@ zZpx|_6YpQu45F<}T+k`Lt+k_o2NHCvv!0U*NzE0BTs8?I*Z*{@pC7} zjFYufTK2koEn)3M!@$2XeXl<{tY(q*TIjg?KAqB? z{XZh&KnpG*-TY=ulg6#tzsi@9O{$>{@juaf+WPhpy9YRs@FriRoPpaK1R$R(r z>nO88#L`glkW+*H7eKVbbq*m0k=z~f4DsLnx`Eu28q`ttAS^#eFyPgwjd0JzZg4JXI#F5H}S6KbJ%LpBI9h9tzRq zkP+n=`D~C8C5VzUA`2p%qOsE;9XVUr|9;Bs{vO57Qq0;-9sf9wE(|clGV`8-GYFgvEt3!Y0!y^Lz0U{&Ka-db?Fr zy7}VZ-*jPd)cAH6A_$a32(VuQ&Iuw>IGPq#7W;;pO-pN{8gG_;s;SUWChdWsCf=6% zIvK=BJgc?4W^U<|A0OS&Kf;<_fc#fi7W_JG(@x*CEHlRryqOl$PqiqIs^K1Ac9vv# z)o4f-8rf(i0N4blW7YAK`?hCEyN8SfnxVy|XUPvTd&i=)!T(;lxYCYE1(4cdmQqsD<`v{u@I*+iP601{zsQP z?+MsuF7&-Wf@neGh8!0NRG%{gL~x&MEga9Zws4>IHH0e)4`eo!N9(-KRVmU1G;}X> zA~wW~|DOY-0MZ>w4yfpf(b~CG-zW)N*i0zHT4d<|tG%~?i>iAYMJ+^05fG445s~gL zk&-Uy7U>we83a@sq&uV$=^=(jN@5tgOJZmS7;>mHh`z7y|9;=O-}&9|p6}dq&+oV9 zSx>FC_u8}KS!+FOZ+1DxG;0gX{bJ_g=<|$Kza0B)tzxnD7_<8Oh3e9?O5}_KciRR# z?R>fU$`%UVZn&!`syi0E)uD^p6IulqXp|Sean_@z`UvZI)zOSm&HyAbEi^&%;NG8N zWYV(Vve{86PN%5X7FhVSH*G&ME#NX`y)sJ~=^dqyTl0c@<$8VkmgY30g~gwR>ER;8 zeb-Gk5$V`R>l*F~thWny)!SJZNcCt%(E9EQSj91?L?Y6PTg9hXK%vMT)NIz_P=D7S4JFwQy8i@HAI>Yl*_nsd7jMLg+Qr*9EpV z;3vM(Vu0?NJdt6*?RrDtZt4vMKS5AQT;fR+(Ds^uXoAQ#1CQ8Q%iJ9vj4&Vk=!9Fj zP3A1^^{pbh4l`8euV0(a7?ItIkD zR$$z!LG{pB28rLUa#8*`~b5J|wAVr`DBlFSad{ z;22(Cv#}tA7+Q4W zM(VAVw2uaK1)1ZhLT+oNlcT=*{H4S~p0-NLcU^1=+BO>46;$J_MMD=Sg?wmek`h7@ z#Aow0Dm8D_>7!(r&AsW-z(n_vXFJDyZe4wBNu9HFbYB-}0VyFY{!eqmGWXLl9sMZ! zFu81F(;Tm1`4;MwVq4MBpej4gF29tE58gyy%P_mF;Fru#pw^+&n^}Wo6ZWLlJ)aMa zBP#t?7kSV|F=-Sq^^C|KYBKjWI=R=|W~{EahOQekIVWo~pX%^}^^T;@)Aql$G)g5v z*q92rD+7c_F-eUt>Qk3L?DzDpw=KJ?QE1%SibyR>wFB0>R-@MGbk?~uzPlSLtQVu} zrjzcy(<^DNmeE?GA;0E#RgX|hh7xAWb`uZKYMb%rq_zoMA8vd;s|SJq&BoXQC7{l2 z=7~37>$g(T&Vyop3(4OUFt9lGTV!y0E}TEd=1&)i!`Dnot~KB+z618KJF4e7)k{r; z6LJ>3ISdL5s=B*;IKS!9HVly>REjcIdE#Mx53SPCCPdEK7^C#3xV~2m^kCaFijzO) z&I@kmW+AmvWR^nmQ8`)o^#lUsZCGMS$9=g;n5B9P2jaK`2KAzoCymL=L`Luj-O4z% zG14h{m5Rwl+}1A7Yl*AzO*6ZF(AT(KMH#ARe_*Eu?th}utQpg8N86YdDG3g?*eZ?n z_`1NfCPK7wTQHr-ibaoX`jJgP|9%ucs@l*WPTsEcd(496{4OPW<3{*k@AEP2)N2a9 zxlMxxxQ7Fn>RtxIJl7iN538Dw@O4sHxn51)ZZ1#eZ>|5UPakU#F|lCey({lCXn@r| zKSu+>%V%#Hs{PKfKV_u?f70<<2=|lFE9Bgb{dQ&lvP6s=-XUEsTN2)@zZ<`%N@iHPaOLW2q0}s(3*6nl4A)+B51)aX3`K0J~Fm>^Q8IuwywoFzUytWTTuJ0dm-4r21U|~=VbDV_E#NVNL#Z)qL%4x zRI3E9NhuA!hM}IF8C{hO`NWskERfGkWj@_x?nHk*y3fl@F0wLbu;{h;r`3T~bzD2K zqtEOz2`5`mbdy>`6C32W-r##YM45VG`=($!KIu@S^fTaZToovt%-^ZIPoPBCLY3I#K1?a8sqd$|8zdOnpqiGc73U`u% zXJRiczW$^_n>zkQXLo(-8yXCN1a-r?}O#ZPVu_flR1ZWOf;ShZvz?-M-*VX;Xd_ud+IJ2t*%2$$x@ z57Scrv^EOh1COI$1a+c?%%6n?RmM3V_?*pMbN$HXH>YVEP)mGUvPsDnD;c%R+e~Zw zFvL#MPVsQNTuhQN&B!7Jy*V4Fe(<%TOHJ9>YS)`^`e4B#hMBGIH{>yGd=~6R-%Q%y zLu#PB6`FgyvNj`L@>2Sy(NaivL#OhPySkAM1ygM%B={3FT)|-N3?tYTSz-0oE3 zlELT+kE@3g3 zJJcGFQfooG)kD3#s-&Y@{M6xrUP`QYB3Bj}{>F`Rxwe}IiK3GR zH{*Es)_#q@+xo74E(M@Mmu9v0yuxw5M_z>+fvI9Y3&_rOG;w|Hw)*hMyXBF_h$iF zj1zQ41(C^uI@z)kp9|}X8&umfT9i$}J-ym(=K1q;^dTqD?B5%Td&N;nT4>`#o6~p& z7M5R0wGk7e50YukTv~h_xqDMjo2``{rdzr4HFqrRdb#?Gj;6T!<#+friL9dzDAH!y z0kV@>suUt;XEsT$Qml~A%M(q;ID*|ztkF?(3JlopxdszFe5uSMivDa5sln7Zy1YyO zf~k=PhG7&W-tM2(LxK8sS4@HMW9qKZBsBWw%x|VedqRbu{T)1b3x3*Ek8O#`u1hwv zvPf9lDSA)$#>{+n%JD_EYcT=7F6~}L(s0}4$zA~Kq_K`1SCtG@b*O3wu_zBn?TX@8 z9ZDG!Sm1ktiFgkc0LO8o#dHb)2_aFjmcXBeu{lm*Gpe|{EVD;>cAiQN2emT0*tvFW zwE7-tS;bsAD!ay;do_zXMmp>%%vkh#m?(#=HO~b^G#E;(pA0w+-ub-f+0U&RW`low zSLw0-gnL|igUr{`PeJ^l`}U4;AYOe(H&Oc_?U#D-9w%fp2rCmq62u`LbQAfgX3}2L@MhO46u!+Z5&wm{tee zPW^I5m>u#!eW)kalRC(seKv@X0zsplJe5&;bt-kEk2Pp1CTX4M+EH_*Sdh;HGa`mQ z*4a9JTd{56g6;0jRy%&3~dEVouF69-Q{`lkj~41Jb$P8)azh2CwQ!Y_Q^9!{$E>JCsG2dL6yF{AyCEGRHx@5M-w~8%=-T8~6%kWVpP&=@j-U z*JZ$&C54P8&jUw%gO^~v_QgUQlIc@=nGzOhTgfE|X=-E3A&)&RY)9t5Nnq@Lnu0sS zyr9Z@qSUsnf+gHmSFGA&^P+S+lefdTi1q=H;O}Y4<>J8HBi9E%ThGts03B8wSbU;G z-%vp=?;eG9`mV}X0PNKSPEORqEeLIW@zZ8OzH^1G{s?_V-BQU8L8-|Xn9+EEviDW8 zGOpdA_xqxOwqyKCPrRH%$?9YGoXWJA@Ng8u;_k_)KFOTI_N{TJjbN214e;FTrmn+N ze?oPU6saa8^R}l^b*(t3mm=)IUhV2nB|{A@mxJ-pY@{^tuuK-SrFDLK!>ZP|q#|nM zZC}v%RR`jWOj639+LuwuwjT}RlZYuZRqcAECk`FH2ttB(gWr|$bA2kkF9lrGS=O7MMG`S~$iDNhYd#XRd^3$wKcBmlQSilB( zoodx6>admYOdHQAZFxBu5%2cgBQ6`d)51qw3lLC+$Y*W+K*2y6W;U=Oow31-2Zy-yh4_wIxcc4`s*WIDeDs{^})!6p?iN$ z^Q}?eF#dCzuj6txGTG`#%wf#T7R;U1WAwkA6vl2hGfh5~Rq0-icb7z$6Ra8f%&34i zNY+(|suBFInR$wj+4D!Do@&r)Wyz}sJqVg$rpwl^dur|lC|5>)$T2>9X1+-jGeGr_ zTGA<>K)0P*-$RT#)16u{R@(DLP?r(Rh>Ve?hRdq$_P)*DF7~_} z&zJgsHAikfcj)G*%e9=tb^dF=;KSBuC|DXQ(G0~|e> z&daJnEUU(;Qu_U-pT_8sSWoiG5%kEZ$7VMf6;t`&2!AS{fS$eDUfs!TzpV)%J;Qa3p5N5VtIuK^Z|9frH!vBuWX{-_iKq4IB z(Fn+honFwg(~Z+Pu~{fw)f&r-Ir$PaeBVu%{&4t7wPyQ!EpYLMYvI&~3?cTB`6?|i zW_Z^A$^D9XzC!DKQC8J$a)~4tV(Xa*`l7hx$yQ;wnWJ|XKk{RI*7~n?i9NsTEO)L} zB7Akzfsh4qu#5O+47`ti_OozkwnAZY`3N9tH z4(qN-RhJ6$ZNGVc5estP_-6JCsVvej6=pQQEa=Yikq}mdNQ4gKajHoUX^=Pe4qag> zwguLR{!}%sf#2&QcoPnZNRKAHiN4E~r1ZbjC>c44{guH#2*CCTDz}buTk?Of{~|hO zJpPu1OYEDy{tfC_^?sv&Gyj*u7GF{kJp}iC{~*D{Vc#FFWA+cm=LpQu|0P&cW{VP3 z+z-M1-$NyA-WW~)Npjd{Mv#X7L*u`SC1AEFLWTR#t?#>^1VuaFZ;WF%Jpw)SAHx4q z7V|^5{_nvOdK|kM5pkuxzc8ZEI+3%>X)kKaz!CPnQp%;kT% zu0}d0Wj3c-;j^578#rodP@L`)@a=Z00%^d!)tvg=?NnvbF?zF0cD?WI1B{1%6VA|w zb0ybtNPmLA*{B4r($;gd6+XE`KT}Uy834+CQVwoAPh4jDD5(6GFhd6ASnjE6tF4^rBZpK1asq(4B+s?1Ft%f#RcpqlO^eN4q=8>kGW2 z9S%j|%Q}=$uu!Ulm%uVIfcg+mW{WCz>N2H<{l5wp4jm~Qb5D*0r+>*y7lqz*dbLKL zpc3wceG1o~yd+#F_CJSRCjV3Xk9?IDg)+XA?s!tA0$LHFt_>0KOA-RJ0n4Oz9#l4f z*3HoBdb}#``2&fmnE;GGiOIh-S{Z)H|7QJ>=-+30a$RNnmxdh6$StG)Iso%$6%IKz z>|sVsYv-gL_d-3FO&bvGv&RYW(;gQfj9(a$a>e#{5H3%pgq^X#{oO9H^RsQZzqhbM zS{fKyJS!ao>h%H=>|_Q|il088H>KFi3{G?Fg9@ymPKU-Om zloaMe_Vmm5zgKDPyY%E<{zQL8oH8j08(TK_x@wz zr!QGvy*K!Dr}+_{uSmbvvP)pauJYQ9NBBlL{D29OUQ%_4rJJR>Z73TFxdpgqZ z^cS{DR^6wZ{)14R_=EU|WlJ4dg0BzC1<2PzfJ`vYFafyF^yxi`E6`4vN)uoMT0-2Vz78}b#$|2 zRKC$BSHJ3t+FN%LW4K&wkkRN6F1x%oDA9}ucH~wu= zbantbaHR>C{OGf2Dg%K-^X5=2`qnj@}7;$P@Qp8-El4m$K(Jc!G9o)3ko|kJr91sOco{KNV)T*$YX2hW`d5Lk z^WU89cGvfJmhRwn;XR3_5_>Kgpcr=VGuh*pyf5F|{}KT81GZ0I{;hS|aPJ@Te>dU( z1HtyX=-(H-x~*+B&-YdHR2$1;W6;3w0fj=PS9^--65SF3v1iOrZkz{e_$|zXHaZvP zImErncTmTiI|63~tQrm}+!105&59^)CeG(^cF zOxYniF>{D48|&QfTrJ?}zfKuX36I^+qY1s%~Tr<>xu2X7xsa4xVzRWx=9` zJR=hoq#?g{+VWK_g|Zv%6w(G}tI;ZYRfgPx_!N|uY1ahAQ*!qXHEGQ+3y?UJb2_Z|z}ggu7EI*y?&vGC9?90umIPIJjp%DVk-C8&Ua_Fq#xSHNge69NaUSY?&+( ztizrZ4Y9^$trR?cHr4|0y^MY{)<%C}tz(z!S42HBbT3fvOrj=TNOYgg=-|Hiq)d+$ zGi!N$YtO-b_Q`_T`*A;?p0C%+n17hp*Q%4e!te=XK<6gav#N02J)t#t=J^%a+Z3G@ zx&*+p?i;8Lp0y_68a(&>3hZr4&H{@DpsGl)w6OZBg{AWbH~>O zgx@vX)UkUzefjl}8tSbfa5SBT)d!$_B7i?do!$vxeM zsdFZM8}B$kWn(w@p;7T|hwFW6j58 zVYql;Ua^p-dw3+Gtu#1zX*^=5uzL#HqGBCbc#XW5#7>fED*)#gL0|fKp4&fQmh1`8 zA>at|ZxQoglYp_H$7-6Qt>C}%2>hLg=ls2$--PVm9!vjV%Qw*zu%RpQNB{p!F#pv* zu$%&wXGWoaVC5z9>k9qwDB19pL#bPw1E#kqB<2kN6Mn z9sd!up^Am+Fo`bjkiS=d`eEG3@W^Eq_Jc)Na!J|xj*Z=YV?-0+l=6tq**99aaBO{}tlP{@UVyPTduTxoB1~zFWLhFgYh~EsUqpy-5D;GxJlmBO+HwduKcCa+S-Ov*|E{S zOn#N>Zdkw5N`ZSUciqaycR;LkMt5)>X#|uPg`A+o?l*| z3hzx_=sharGl@MpS@)na(_ikb3)^J=%RKt3K`qW?l?x^0{+m2j9ftfklXhca|0XM$ z8+YO8G0w6bPk4(PS?_`^g+GEPx#Nex{}`*IeIHJQNryVS72e`W23ugE^grh5=`a++ z`ORXN^_rw<53&XMA3#5FQ)yWELWS0D2&5N zFwGq0KM|i`zUG-?u7|mn9P<-fE2c{@L0gp$TiZxBr^uBh*to6mj;2{<&ivBD4*KrW z=j^AW^-ou`HrEW*9M}p5ah$hZ<_dP&vj^=cM$cP94cNjPEz+l64{i?dDZlA zIW_W44xO!8sT>xR%bn@DROZ)?jOT1=nI_d(rdY2PIsIQ5379B0m*A7hq3?ZGo3;z725IZ)Mvqi#URnd@PvZoK<`HjcF$U7r48H`h;_XS(Bou8_N5 zazSaqcuso}EFPH>MTVeLY_yFu+7;(9Gzm4}Z7AHX6PnH9CMb&U^#`QzK#{yx_R;YS>4Y%IE%?Nw1Eb*_&5kPy# zUpbWrl>bIm{#EVYWb{~UWrT5!{_?h5SqMALx@mCFYN-L`0R8tOgKIK9YUW1Fb3OHz zf=@2*M2q0TH>sbF4)AY1X{aL_l((SDE%%mj{4Q@C<;*g7i~4Fyvssqxve2k&i!-aN z_t)DgL0*6SUGB>}>UsV1aggR+7G3tps!L&aVcELAGuz)i$83VwsNQ6XHG zWeS%4D)`NwI`p3VVX^i$B)lG-{j=Y3;*m?xnSqOKNDYyEoe162!HS44#C-1uyPA6Zk!E~{o_c2X-Gkb$k`V^ zP}h*>*_Re&f8elTzNl$?HckqO3VF?XJO)j^ZRGz%fK1&Z#W(-fqcUIU9XU=1u}iUy zgjMTl#lViT>~ywO*mkpcg%}mc%)?0E9w<0?O0+j|bcD9w=0&>o)~lLibNr}$*;}tW zLSY`J`t5BZiw;*JOoQe$i+2l+o7h|#m{}@fi(j4aaErY?YJhCllOqB4o%2ikAlYOn z2Usn22VLY0lh!8yVeubjZb*sA>V?kF$6YuU;-0>60PS97%0Wvr-KnmMwO8oc0gx#KaA@6WhtA|we2yTsLyhMZ2L5* zR?Bs~?f^d;+KZVCb9ChOIGTsCCa4aQEwpngLvJ0UtfnV|*zI#HI41F0+By0AE8G%d zaw@8MET~uAC3Yc5ah&4LjiWgH&yDfDBrm$8NO3?vUi=^Mqse$a_RAQXzXY5KKMnLs zE7K*8m5RZ^Qwp|)l2~RfK9jbIMgNJQp7VSGdN5E>MG08&p?%xWZqmQ$ zcmFuS_0vg9HnlDGZc7kJPNm4``|kIu^%=a`he=P(Sd%pNjDs7j`r{apW#amkE8P#g z#xt0;|9{Wy@Np(H`#<3F8Laj^`;P{;q|?a^N0X@kihxfe%V#)nH%dO<@mm)DvlN!q z_fr4DvR!#EN<+r?qwlW2JdfkI&-geg|B0+(7oEq@tWo}=8-rv)muq>b!>@bHJhRVb zg*>(-er$)0+54Xtl}>&37I6ZHxE9MZ$Fb$Bbdw{=zb}0|h;-;)T16ceOzMQjEkl;R zE$c?=_i7TdX)(F1=yU0B_2~=7@~?gWeS)wL_crPT2F^#+;fuS@K1goWIR3rj{F%qr z^6ay=EATl0kI-YIUeYj&W_ls_l#n#ahL_=qD#*!F-fZvHrsND^4po>$e`lSjKvJ?tLG7o#6n3}3kp7!X|9gb#& zV7f1~xxrobE_Bx}nw>7rBISayjC^+XT@NZ|16-z#@iLJ{IT0}+%h95vo)72!EH+He ziv$lg#=N=-Ke!zmtADNLZ8UR9pc1CxhR4!#EpISQq%2p{&;)3T!{DTL5n`g%FJvX?p`CU>}*Sr=ly| zy5ry{aTgVw{HEGl2X&|9{Fqzb>9(U=8S{eF*~T7+G3u|kE=IliZTt2k*NsQ%i{Q0- zPG?Q~iR=DFqq@TOXJbx7`yUG?_VGs*bOAL$7!tfrRHR=6TtZf?a~DDHb#j-O6OlvFE&pl%sqkt_Ct;Y-25{<(@KAkPp}G+U95{12RM`SlH?E$?o|qq2 zO-oKetJ9o>mw_{9z9-^`E>p8k-q5qi6XQerEqJZI(?!!+;)(y(=(Mo?#hBO7*~i+6 zGyFq^X+VuP>>PYTw54C;y>wo2!o5{B)#x-@Z8;67^A;UrHyM(RcS=I;%M3o~f#9+#hkZtOs~_FQ3&PrhEi& z)eUXiwm z4lfoCA^wS!=0MPKDXaw&&h4Fj90;RHYMeQJjo?mf96v3DA4@`nZGc zFifB8;>+m!)u2^>zqdvgx%MvN$tktnv z_aNh}4e!9NY$v_fEZ_hol5S8&Itsg=}%0Pu$&1QIc3m7Aj}}l8JvwMf=&yuZUzBl za00|Ffux1`fg?jGt+0_(CN0E?8HB%o;)~g)U;l)EMg^{QSX{dyxgj!lAwOodird5UEMM!a% zm}HGX-F;`5VR$X2z|h$o|1_>wtd%x@ zY4KAH$5rz(E?Fz^Q&qrH^RnI!MMs}?U4gA*s7-mM^kVO(%@els$1$@y+Jh}^27>f= z4}Cj7n%9-Duu1XC@t!uv0T>IOYnxBek-!A_hx+CbfdP<=}~Ea zX>ojtK8PlFJUUXi?qE;(eLOJORK@9!53pHMZ5M(E z*4?xmOmyXs6_~U?saH?O$7$*)zgBy#rpXX)%}br_R%L4Pkbk%9c?p-Px?a9ge3ggf zcrREs(~&DeMMp;i{EXSOR`#ugp}eM^`S?_$$$2+nu(b11G>I`aZ>Zf-{*IgrWz7MqdDmuQRw7|Aj3hwOp(!}RP}34`_r4`Qd;9gZq{ zdg{vdsm0sqF&&(vA4*1s5VRG`E>YP(J-!(%SFa=8^$n}Dc9F`S=lFgi_?31;pN8FHnHxk}N;7NefnBpWZSW|C zrkP?(c4U%lXs1IqJR?;dtLxd|zy|_N9*_R$5V3XWazbR)$AZD=r@RgCf*D`QYsqsbbZ@!10y zp%3%akfw&5%)Z(5qK%tQtS&vA>J)}dOR-g@B$qw4n~Wm~B$bIJm4UT;PHZfql|#)HvqbrC2%s+XE>4b#7iW^xDFbQ zq;G=LedE4S&Pq??MX#cW$~l*vAw&(ToBFv!NJs^$ET1O0`F;L1(TeUg7TQf&Hgsc0CvT^k5k1D`+VN}Krnc78Iv~Fzn1WU`^ z2H7%4h|JCrjD_GTNYGG(xb4iDYP1DudS>KIl2zEdM96(=zbKCi-Bfu zb`Ji zwz0)NfGx!?S>eyJ)NMYe9cw5{xAMd3aI4LxT!dNcb22N0FB3(x>ad>{F+7hh1?`mMQOa1Ln~STq5=m!2_&Je+-*t;_krq7chP z-$yVO2@Up-QVwp@^E$t8Y0qit=seQKbM{W7RrQn=V@;zM36}{rQiXk_#`#SiMm%cz zuGvs-rmq*cppUO$(oIe|*ijrq53tYE7Ah5FuF88Vd91P3ms^uWh8~jKn6s^ykS~pa zdEaz#Gg76JDEa{r>@|}M!G`=|!IQM~{z&y_;Zb0%O3>FVv%@f9?FO=11{bR+@pl9+ z#6+Ah0PjiI z@2E-8S;eWXQfcY&VeT=uHH*txJm|7_UY73YuZY&kwN1hza0tYvM&oyWrPA%tW$*IP z?PT$pLt8>s49NwbgD79Qj!^&xnsK}RLQq0Bnu(64##4mCx$JDDd=&jfUFUZqHRoQ~ zv-1=2)mF6Z1Z8!@nTL;mWH|LD@&jr`J=EG$^y{qmC-}EyLzLO6I+2rGb8|!^)?+1G z!R5(IztzHUDZ7{6*z3vLXc}hQVYfi+>7=n#=-C0x6BYEPhX+dovlS;q zo%KW;sRd7608)Wi{_GbMS`qh*Esf_JPlAJ-N%*^+3CnB^$vxUIrmuI#)H2pDVPs~# zB9PDfvH{x~*6!&GQ?z(HU03+FO@L)4iK{FGvm?f7a*K%cVXZygebw2BIPDUdYHsOZ z=`PrG&q1BFhYJIs59YOP7 zHYP&7$6adXae*F*a}|{QM7Z#SE@f)tgG$Hg7-a(n9$`PG)RdR{Qt}M-kSWwPEz zaF_2%2{rm^xXQe7t9cc7CsXTq~`29$POgb>_XqW7%j`vY0D5F^_Qy2iWILW#@S_aVQsa>fXHmzdrx{QVLH7wU7;;D(IVaBP)7Yq6Ymqb1jW0JB zl6|o(9e4ggTBSnyEpq#%Lk_Yr%HiC`M3>uv#X1MoGbEx6^{i-P%Te8JgEu*+UhR_i zhcxZS&V`0FiBwz?q>IrXF#A=4bFzzLEM)}Ud+RnX0Gmq;w(3tGBn8TL9E-y@RAFIW zj+?p@E4X?Z6bK#jr#A4Qgbn(UUhVd0WkSw771{5M4$g~D*%wvZCPLVY>#FB!S_h81 z4q5RE!S*nVi|sh3%~MOJO_ZP~JH>lzpf{mFx57CG^L*hrQa!D)C;5dhCA3d3VOIez zXfM~!07oDXHUo1XrqY>I40llEKU$r~5Q<=Bf3L$IC-mDz7T3%yZ`r?-3fLnsxy?z1Kr+ zBfmk;fUMqu!`v!tJ`V*|AmE<+$IEUGZ4pBV^j-j#=ee5T=12lfBY47QVHJ?z939Qv z1CX6(t1{JT+O8`Mz$A5u8yPUs8R|kgFLWk9UJV;Y@Kq<&ZGV&KzPUtRJ~f*V;p(c# zaDy?d`@-3*e^cU#C}v@#8YEUPA)-1U&-B^ugJ%}6ay~AKVLQ&_lIEo{m=7$5 z-Y4P`OR7&LjoI1Qb$t{5Rw6?6uK0r)zTudXG&TuLK)l))S<26Xz1mt|Ham~HVwV;q6{xIw~x)76z6?)nQb+`=^s59@;Qy= zx`;+oE=DJ!oe<|0z|X7>1&8N^_=~#J|-h4k1z z)4tA*IQy9JO&?i4>?u_smGIeiVTw5RO_r5(tdpqpgHU`Cj$`X zo$1(duLx$SQ~gP5U5K1d_`04<;7*pC*lT&mly0axSMBv(W)iLCiFz;0dEXRePi?p?_E^<+ zels+*ADBAslDEGvKB~uYFcsGv8w5_ZyweSBMN4HnKi!1c*QT+Y*Cc7@In8jX98n?U zQj^P45}DHYd9+XMjZ&9(Z4$`AV~3wzPQ5btf$2?ST!Z9M)n}&_<=QFiE^&>{Hg(lc zjXQcI^7<+roZ(;R1gvR^R2qo8h-h+ql!0CGG$<2u9m)xh*f zIRgDsG2$A2gKSaE$VL4||OCw-Jm-vAVn^e67P*exEs^ zU}v|YJVpm;N)LXGUJ$J;2-y4r)}6|VE*qbg1_#q?P*LY@q!hT#PK+=6sTRO`rD+x9 zfqGRR%_Z9EOnR^aV)*D}+6Tt5$8VvXEGu8o5uH~B-?kV5cea1k8KnlYY1mdoaGYfA zL)&$%y)CoI;&n^Nq6aR3&2O?TO2g9GgJZ@qDC3XC7c3U!jexmH%pG5Q;(B-8#>EAM z;#n;(hRaiqKa155^jWui04^e1b4p>oikdq@F-!?n&uZTlysdU;=EtRBavvXVXUA;q zq4ig$kaFW#DsAg@pA9se&*&FeJ>%P=9M(MacpT>SDsO=i4W^0~-(EW%bGtv^7?07Ksp=Ho= z88*90biZX=oR`uSmo#`LDr#3qxOpS~1$x@QemPfpU3Y6a2fjgfV4(xs0B!l%aA&x?O-O^4HiqWp6^jZ>{*VIsXZ(AwMM6z z-!XH4?P?-!0VT2ARnVNfzteK#@U;YvQ`NG@1&&+a%lg)5nb(SMHAJuj8Vg>$2QjLs z7W^2#7%A}Oe|O7ph(Esa30vX|vdTe!iN~D0&iBdlKEVRy{4E`c`F3yax6eAi-s~e# zfh|2NyHPTCa>%*g3yN->sAsQkV){0xBY`vZogN*d?9L~uk_{%fQCtgLiSTZANo3S@ zn*!X)k$N_g0POH4u@2V?1KV$pL=9-?ZI45A2Qknj7A#t?8+kihO$S=!DOhsso8Dxb z#HxN)t=3f0RB^Kiy9nQw+;;liy6-xg4z7;y9CGgVb?&Be9`XCUuqMZD@_1m(gPn^A KVan(Gss9a8mXT%v diff --git a/library/simplepie/demo/handler_image.php b/library/simplepie/demo/handler_image.php deleted file mode 100644 index 49c3ec89b..000000000 --- a/library/simplepie/demo/handler_image.php +++ /dev/null @@ -1,6 +0,0 @@ - diff --git a/library/simplepie/demo/index.php b/library/simplepie/demo/index.php deleted file mode 100644 index 1481ba917..000000000 --- a/library/simplepie/demo/index.php +++ /dev/null @@ -1,295 +0,0 @@ -force_fsockopen(true); - -// Make sure that page is getting passed a URL -if (isset($_GET['feed']) && $_GET['feed'] !== '') -{ - // Strip slashes if magic quotes is enabled (which automatically escapes certain characters) - if (function_exists('get_magic_quotes_gpc') && get_magic_quotes_gpc()) - { - $_GET['feed'] = stripslashes($_GET['feed']); - } - - // Use the URL that was passed to the page in SimplePie - $feed->set_feed_url($_GET['feed']); - - // XML dump - $feed->enable_xml_dump(isset($_GET['xmldump']) ? true : false); -} - -// Allow us to change the input encoding from the URL string if we want to. (optional) -if (!empty($_GET['input'])) -{ - $feed->set_input_encoding($_GET['input']); -} - -// Allow us to choose to not re-order the items by date. (optional) -if (!empty($_GET['orderbydate']) && $_GET['orderbydate'] == 'false') -{ - $feed->enable_order_by_date(false); -} - -// Allow us to cache images in feeds. This will also bypass any hotlink blocking put in place by the website. -if (!empty($_GET['image']) && $_GET['image'] == 'true') -{ - $feed->set_image_handler('./handler_image.php'); -} - -// We'll enable the discovering and caching of favicons. -$feed->set_favicon_handler('./handler_image.php'); - -// Initialize the whole SimplePie object. Read the feed, process it, parse it, cache it, and -// all that other good stuff. The feed's information will not be available to SimplePie before -// this is called. -$success = $feed->init(); - -// We'll make sure that the right content type and character encoding gets set automatically. -// This function will grab the proper character encoding, as well as set the content type to text/html. -$feed->handle_content_type(); - -// When we end our PHP block, we want to make sure our DOCTYPE is on the top line to make -// sure that the browser snaps into Standards Mode. -?> - - - -SimplePie: Demo - - - - - - - - - - - - - -

{{$addr}} {{$mkprm}} {{$drop}}
{{$hub.hubloc_addr}} {{if $hub.primary}}{{else}}{{/if}}
- - -
-
-
-
-
- -
- -
- -
- -
- - - -

 

- - -
- - - - error()) - { - // If so, start a
element with a classname so we can style it. - echo '
' . "\r\n"; - - // ... and display it. - echo '

' . htmlspecialchars($feed->error()) . "

\r\n"; - - // Close the
element we opened. - echo '
' . "\r\n"; - } - ?> - - -

Or try one of the following: - 詹姆斯.com, - adult swim, - Afterdawn, - Ajaxian, - Andy Budd, - Ask a Ninja, - AtomEnabled.org, - BBC News, - BBC Arabic, - BBC China, - BBC Russia, - Brent Simmons, - Channel Frederator, - CNN, - Digg, - Diggnation, - Flickr, - Google News, - Google Video, - Harvard Law, - Hebrew Language, - InfoWorld, - iTunes, - Japanese Language, - Korean Language, - mir.aculo.us, - Movie Trailers, - Newspond, - Nick Bradbury, - OK/Cancel, - OS News, - Phil Ringnalda, - Photoshop Videocast, - Romanian Language, - Russian Language, - Traditional Chinese Language, - Technorati, - Tim Bray, - TUAW, - TVgasm, - UNEASYsilence, - Web 2.0 Show, - Windows Vista Blog, - XKCD, - Yahoo! News, - You Tube, - Zeldman

- -
- -
- - - -
- - -

get_link()) echo ''; echo $feed->get_title(); if ($feed->get_link()) echo ''; ?>

- - - get_description(); ?> - -
- - - - - - - get_items() as $item): ?> -
- - get_favicon()) - { - $favicon = './for_the_demo/favicons/alternate.png'; - } - ?> - - -

Faviconget_permalink()) echo ''; echo $item->get_title(); if ($item->get_permalink()) echo ''; ?> get_date('j M Y, g:i a'); ?>

- - - get_content(); ?> - - get_enclosure(0)) - { - // Use the embed() method to embed the enclosure into the page inline. - echo '
'; - echo '

' . $enclosure->embed(array( - 'audio' => './for_the_demo/place_audio.png', - 'video' => './for_the_demo/place_video.png', - 'mediaplayer' => './for_the_demo/mediaplayer.swf', - 'altclass' => 'download' - )) . '

'; - - if ($enclosure->get_link() && $enclosure->get_type()) - { - echo '

(' . $enclosure->get_type(); - if ($enclosure->get_size()) - { - echo '; ' . $enclosure->get_size() . ' MB'; - } - echo ')

'; - } - if ($enclosure->get_thumbnail()) - { - echo '
'; - } - echo '
'; - } - ?> - - -

- Blinklist - Blogmarks - del.icio.us - Digg - Ma.gnolia - My Web 2.0 - Newsvine - Reddit - Segnalo - Simpy - Spurl - Wists - Technorati -

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

Page processed in seconds.

- - -

Powered by . Run the SimplePie Compatibility Test. SimplePie is © 2004–, Ryan Parman and Geoffrey Sneddon, and licensed under the BSD License.

-
- -
- -
- - - diff --git a/library/simplepie/demo/minimalistic.php b/library/simplepie/demo/minimalistic.php deleted file mode 100644 index 56509c00c..000000000 --- a/library/simplepie/demo/minimalistic.php +++ /dev/null @@ -1,137 +0,0 @@ -=')) - { - return microtime(true); - } - else - { - list($usec, $sec) = explode(' ', microtime()); - return ((float) $usec + (float) $sec); - } -} - -$start = microtime_float(); - -include('../simplepie.inc'); - -// Parse it -$feed = new SimplePie(); -if (!empty($_GET['feed'])) -{ - if (get_magic_quotes_gpc()) - { - $_GET['feed'] = stripslashes($_GET['feed']); - } - $feed->set_feed_url($_GET['feed']); - $feed->init(); -} -$feed->handle_content_type(); - -?> - - - -<?php echo (empty($_GET['feed'])) ? 'SimplePie' : 'SimplePie: ' . $feed->get_title(); ?> - - - - - - - - - - -

get_title(); ?>

- -
-

 

-
- -
- data): ?> - get_items(); ?> -

Displaying get_item_quantity(); ?> most recent entries.

- -
-

get_title(); ?> get_date('j M Y'); ?>

- get_content(); ?> - get_enclosure(0)) - echo '

Podcast

'; - ?> -
- -
- -
- - - - diff --git a/library/simplepie/demo/multifeeds.php b/library/simplepie/demo/multifeeds.php deleted file mode 100644 index b23d792a2..000000000 --- a/library/simplepie/demo/multifeeds.php +++ /dev/null @@ -1,108 +0,0 @@ -set_feed_url(array( - 'http://rss.news.yahoo.com/rss/topstories', - 'http://news.google.com/?output=atom', - 'http://rss.cnn.com/rss/cnn_topstories.rss' -)); - -// When we set these, we need to make sure that the handler_image.php file is also trying to read from the same cache directory that we are. -$feed->set_favicon_handler('./handler_image.php'); -$feed->set_image_handler('./handler_image.php'); - -// Initialize the feed. -$feed->init(); - -// Make sure the page is being served with the UTF-8 headers. -$feed->handle_content_type(); - -// Begin the (X)HTML page. -?> - - - Multifeeds Test page - - - - -
- - error): ?> -

error()?>

- - -
-

Quick-n-Dirty Multifeeds Demo

-
- - get_items() as $item): - - // Let's give ourselves a reference to the parent $feed object for this particular item. - $feed = $item->get_feed(); - ?> - -
-

get_title(), ENT_QUOTES, 'UTF-8'); ?>

- - - get_content(); ?> - - get_enclosure()): ?> -
- native_embed(array( - // New 'mediaplayer' attribute shows off Flash-based MP3 and FLV playback. - 'mediaplayer' => '../demo/for_the_demo/mediaplayer.swf' - )); ?> -
- - -

Source: get_title(); ?> | get_date('j M Y | g:i a'); ?>

-
- - - -

This is a test of the emergency broadcast system. This is only a test… beeeeeeeeeeeeeeeeeeeeeeeeeep!

- -
- - \ No newline at end of file diff --git a/library/simplepie/demo/test.php b/library/simplepie/demo/test.php deleted file mode 100644 index 5b9943abb..000000000 --- a/library/simplepie/demo/test.php +++ /dev/null @@ -1,62 +0,0 @@ -set_feed_url($_GET['feed']); - $feed->enable_cache(false); - $starttime = explode(' ', microtime()); - $starttime = $starttime[1] + $starttime[0]; - $feed->init(); - $endtime = explode(' ', microtime()); - $endtime = $endtime[1] + $endtime[0]; - $time = $endtime - $starttime; -} -else -{ - $time = 'null'; -} - -$feed->handle_content_type(); - -?> - -SimplePie Test -
-
-
\ No newline at end of file From 418d102663bf96b560461159c4b87299689b38d6 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Wed, 29 Mar 2017 15:55:21 +0200 Subject: [PATCH 221/819] remove hubzilla.site from directory fallback servers until further notice --- boot.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boot.php b/boot.php index a6e325258..585ba61df 100755 --- a/boot.php +++ b/boot.php @@ -82,7 +82,7 @@ define ( 'DIRECTORY_REALM', 'RED_GLOBAL'); define ( 'DIRECTORY_FALLBACK_MASTER', 'https://gravizot.de'); $DIRECTORY_FALLBACK_SERVERS = array( - 'https://hubzilla.site', + //'https://hubzilla.site', 'https://hubzilla.zottel.net', 'https://my.federated.social', 'https://hubzilla.nl', From fac654ec5d07f725847c0da5ad8a67e256baabfa Mon Sep 17 00:00:00 2001 From: zotlabs Date: Mon, 20 Mar 2017 15:24:47 -0700 Subject: [PATCH 222/819] remove redundant and non-functional/broken check for successfully cloned channel record which was left over from an earlier method of creating the table; which was deprecated a few months back. --- include/import.php | 6 ------ 1 file changed, 6 deletions(-) diff --git a/include/import.php b/include/import.php index e1880fe6e..eab47e2ee 100644 --- a/include/import.php +++ b/include/import.php @@ -85,12 +85,6 @@ function import_channel($channel, $account_id, $seize) { create_table_from_array('channel',$clean); } - if(! $r) { - logger('mod_import: channel clone failed. ' . print_r($channel,true)); - notice( t('Channel clone failed. Import failed.') . EOL); - return false; - } - $r = q("select * from channel where channel_account_id = %d and channel_guid = '%s' limit 1", intval($account_id), $channel['channel_guid'] // Already dbesc'd From 11e888fb7c5fa07c03c15e2af0560f4e9a81f282 Mon Sep 17 00:00:00 2001 From: Andrew Manning Date: Sun, 30 Apr 2017 13:49:53 -0400 Subject: [PATCH 223/819] Update INSTALL.txt The webpage element portation tools need the zip extension, such as the `php7.0-zip` package on Debian. --- install/INSTALL.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/INSTALL.txt b/install/INSTALL.txt index 7d4ed9534..c059fadf1 100644 --- a/install/INSTALL.txt +++ b/install/INSTALL.txt @@ -110,7 +110,7 @@ technical abilities. php.ini file - and with no hosting provider restrictions on the use of exec() and proc_open(). - - curl, gd (with at least jpeg and png support), mysqli, mbstring, xml, + - curl, gd (with at least jpeg and png support), mysqli, mbstring, xml, zip and openssl extensions. The imagick extension MAY be used instead of gd, but is not required and MAY also be disabled via configuration option. From 717190975f5b8398123ca82850a2c6b829f52a0a Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Wed, 3 May 2017 14:37:50 +0200 Subject: [PATCH 224/819] bump version --- boot.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boot.php b/boot.php index 12510bbd3..99045588b 100755 --- a/boot.php +++ b/boot.php @@ -49,7 +49,7 @@ require_once('include/hubloc.php'); define ( 'PLATFORM_NAME', 'hubzilla' ); -define ( 'STD_VERSION', '2.3.5' ); +define ( 'STD_VERSION', '2.4RC' ); define ( 'ZOT_REVISION', '1.2' ); define ( 'DB_UPDATE_VERSION', 1190 ); From 535691a05c151159994d713c57d142c729b020de Mon Sep 17 00:00:00 2001 From: Andrew Manning Date: Wed, 3 May 2017 20:44:23 -0400 Subject: [PATCH 225/819] German translations for demohub --- view/de/hmessages.po | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/view/de/hmessages.po b/view/de/hmessages.po index 62f7fe602..e8c16faaa 100644 --- a/view/de/hmessages.po +++ b/view/de/hmessages.po @@ -13751,3 +13751,19 @@ msgstr "Cron-Aufgaben laufen nicht." #, php-format msgid "[hubzilla] Cron tasks not running on %s" msgstr "[hubzilla] Cron-Aufgaben für %s laufen nicht" + +#: ../../addon/demohub/demohub.php:41 +msgid "Welcome to the Hubzilla demo hub!" +msgstr "Willkommen auf dem Hubzilla demo Hub!" + +#: ../../addon/demohub/demohub.php:42 +msgid "This demo hub is designed to give you a chance to explore some of the features offered by the Hubzilla platform. The activities of the fictional characters illustrate only a few of the ways communities can use Hubzilla to collaborate and connect." +msgstr "Dieser demo Hub (Hubzilla-Knoten) ist konzipiert, um Ihnen eine Chance zu geben, einige Features der Hubzilla-Platform kennenzulernen. Die fiktive Aktivitäten illustrieren nur einige von vielen Möglichkeiten, die den Communities für die Kommunikation und Zusammenarbeit im Hubzilla-Netzwerk zur Verfügung stehen." + +#: ../../addon/demohub/demohub.php:45 +msgid "To really grasp what Hubzilla is offering in terms of nomadic identity and decentralized access control, you have to try it for yourself. Run your own hub or register on an open hub. You can always clone your channels and migrate to another hub later. With Hubzilla, you not only own your data, but your identity as well!

The demo resets every ten minutes, which may interrupt your session. Simply reload the page as necessary. You can return to this dialog using the blue info button in the navbar." +msgstr "Sie können selbst in der Praxis testen, welche Möglichkeiten Ihnen im Hubzilla-Netzwerk mit Nomadic Identity und mit dem dezentralen Zugang. Richten Sie einen eigenen Hubzilla-Knoten ein oder registrieren Sie sich auf einem offenen Hub. Sie können dann Ihren Kanal klonen oder mit diesem Kanal auf einen anderen Hub umziehen. Mit Hubzilla kontrollieren Sie Ihre Daten, aber auch Ihre Identität!

Die Demoinstanz wird im 10-Minuten-Takt zurückgesetzt, wobei Ihre Hubzilla-Sitzung evtl. unterbrochen wird. Laden Sie die Website #^https://demo.hubzilla.org/ einfach neu, um fortzufahren. Sie können dieses Dialog-Fenster mit einem Klick auf das blaue [i]-Symbol rechts oben in der Navigationsleiste." + +#: ../../addon/demohub/demohub.php:52 +msgid "Explore" +msgstr "Erforschen" \ No newline at end of file From 153ffbe55865c10a5cf54aef1f9893a6f2942f46 Mon Sep 17 00:00:00 2001 From: Andrew Manning Date: Wed, 3 May 2017 20:56:14 -0400 Subject: [PATCH 226/819] Add contributor to credits --- doc/about/hubzilla_project.bb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/doc/about/hubzilla_project.bb b/doc/about/hubzilla_project.bb index 7a584687d..f9bc920f8 100644 --- a/doc/about/hubzilla_project.bb +++ b/doc/about/hubzilla_project.bb @@ -182,4 +182,5 @@ even if we have had our occasional disagreements. [li]Simó Albert i Beltran[/li] [li]Manuel Reva[/li] [li]Manuel Jiménez Friaza[/li] -[/list] \ No newline at end of file +[li]Gustav Wall aka "neue medienordnung plus"[/li] +[/list] From b4529229d2c4e832ec9ba1c99546d38f26111356 Mon Sep 17 00:00:00 2001 From: Klaus Weidenbach Date: Thu, 4 May 2017 00:58:02 +0200 Subject: [PATCH 227/819] :arrow_up: Update SimplePie library to 1.5. There is a new stable release, so upgrade from the dev branch to the new 1.5 release. --- composer.json | 2 +- composer.lock | 15 ++--- vendor/composer/autoload_classmap.php | 1 + vendor/composer/autoload_static.php | 1 + vendor/composer/installed.json | 14 ++-- .../simplepie/simplepie/library/SimplePie.php | 8 +-- .../simplepie/library/SimplePie/Category.php | 65 ++++++++++--------- .../simplepie/library/SimplePie/Item.php | 34 ++++++---- 8 files changed, 80 insertions(+), 60 deletions(-) diff --git a/composer.json b/composer.json index 9ae0d2150..44606ff2b 100644 --- a/composer.json +++ b/composer.json @@ -33,7 +33,7 @@ "pixel418/markdownify": "^2.2", "bshaffer/oauth2-server-php": "^1.9", "ezyang/htmlpurifier": "^4.9", - "simplepie/simplepie": ">=1.4.4 || dev-master" + "simplepie/simplepie": "~1.5" }, "require-dev" : { "php" : ">=7.0", diff --git a/composer.lock b/composer.lock index bfab14cd5..bd902f197 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file", "This file is @generated automatically" ], - "content-hash": "62261cde663585403a8dd8fda5b85a95", + "content-hash": "21511c39f481ecdc20210f885d840787", "packages": [ { "name": "bshaffer/oauth2-server-php", @@ -671,16 +671,16 @@ }, { "name": "simplepie/simplepie", - "version": "dev-master", + "version": "1.5", "source": { "type": "git", "url": "https://github.com/simplepie/simplepie.git", - "reference": "59e7204610d3a8989822eba1c0cbf1d1680bd10d" + "reference": "5de5551953f95feef12cf355a7a26a70f94aa3ab" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/simplepie/simplepie/zipball/59e7204610d3a8989822eba1c0cbf1d1680bd10d", - "reference": "59e7204610d3a8989822eba1c0cbf1d1680bd10d", + "url": "https://api.github.com/repos/simplepie/simplepie/zipball/5de5551953f95feef12cf355a7a26a70f94aa3ab", + "reference": "5de5551953f95feef12cf355a7a26a70f94aa3ab", "shasum": "" }, "require": { @@ -727,10 +727,10 @@ "rss" ], "support": { - "source": "https://github.com/simplepie/simplepie/tree/master", + "source": "https://github.com/simplepie/simplepie/tree/1.5", "issues": "https://github.com/simplepie/simplepie/issues" }, - "time": "2017-04-06 03:36:48" + "time": "2017-04-17T07:29:31+00:00" } ], "packages-dev": [ @@ -3675,7 +3675,6 @@ "aliases": [], "minimum-stability": "stable", "stability-flags": { - "simplepie/simplepie": 20, "behat/behat": 0, "behat/mink-extension": 0, "behat/mink-goutte-driver": 0 diff --git a/vendor/composer/autoload_classmap.php b/vendor/composer/autoload_classmap.php index cc1cd6bca..5899fb9ed 100644 --- a/vendor/composer/autoload_classmap.php +++ b/vendor/composer/autoload_classmap.php @@ -840,6 +840,7 @@ return array( 'Zotlabs\\Module\\Oembed' => $baseDir . '/Zotlabs/Module/Oembed.php', 'Zotlabs\\Module\\Oep' => $baseDir . '/Zotlabs/Module/Oep.php', 'Zotlabs\\Module\\Oexchange' => $baseDir . '/Zotlabs/Module/Oexchange.php', + 'Zotlabs\\Module\\Ofeed' => $baseDir . '/Zotlabs/Module/Ofeed.php', 'Zotlabs\\Module\\Online' => $baseDir . '/Zotlabs/Module/Online.php', 'Zotlabs\\Module\\Page' => $baseDir . '/Zotlabs/Module/Page.php', 'Zotlabs\\Module\\Pconfig' => $baseDir . '/Zotlabs/Module/Pconfig.php', diff --git a/vendor/composer/autoload_static.php b/vendor/composer/autoload_static.php index 6c000a27b..53b9b20c3 100644 --- a/vendor/composer/autoload_static.php +++ b/vendor/composer/autoload_static.php @@ -977,6 +977,7 @@ class ComposerStaticInit7b34d7e50a62201ec5d5e526a5b8b35d 'Zotlabs\\Module\\Oembed' => __DIR__ . '/../..' . '/Zotlabs/Module/Oembed.php', 'Zotlabs\\Module\\Oep' => __DIR__ . '/../..' . '/Zotlabs/Module/Oep.php', 'Zotlabs\\Module\\Oexchange' => __DIR__ . '/../..' . '/Zotlabs/Module/Oexchange.php', + 'Zotlabs\\Module\\Ofeed' => __DIR__ . '/../..' . '/Zotlabs/Module/Ofeed.php', 'Zotlabs\\Module\\Online' => __DIR__ . '/../..' . '/Zotlabs/Module/Online.php', 'Zotlabs\\Module\\Page' => __DIR__ . '/../..' . '/Zotlabs/Module/Page.php', 'Zotlabs\\Module\\Pconfig' => __DIR__ . '/../..' . '/Zotlabs/Module/Pconfig.php', diff --git a/vendor/composer/installed.json b/vendor/composer/installed.json index 2cb89e187..7e4f0bb29 100644 --- a/vendor/composer/installed.json +++ b/vendor/composer/installed.json @@ -686,17 +686,17 @@ }, { "name": "simplepie/simplepie", - "version": "dev-master", - "version_normalized": "9999999-dev", + "version": "1.5", + "version_normalized": "1.5.0.0", "source": { "type": "git", "url": "https://github.com/simplepie/simplepie.git", - "reference": "59e7204610d3a8989822eba1c0cbf1d1680bd10d" + "reference": "5de5551953f95feef12cf355a7a26a70f94aa3ab" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/simplepie/simplepie/zipball/59e7204610d3a8989822eba1c0cbf1d1680bd10d", - "reference": "59e7204610d3a8989822eba1c0cbf1d1680bd10d", + "url": "https://api.github.com/repos/simplepie/simplepie/zipball/5de5551953f95feef12cf355a7a26a70f94aa3ab", + "reference": "5de5551953f95feef12cf355a7a26a70f94aa3ab", "shasum": "" }, "require": { @@ -708,7 +708,7 @@ "suggest": { "mf2/mf2": "Microformat module that allows for parsing HTML for microformats" }, - "time": "2017-04-06T03:36:48+00:00", + "time": "2017-04-17T07:29:31+00:00", "type": "library", "installation-source": "source", "autoload": { @@ -745,7 +745,7 @@ "rss" ], "support": { - "source": "https://github.com/simplepie/simplepie/tree/master", + "source": "https://github.com/simplepie/simplepie/tree/1.5", "issues": "https://github.com/simplepie/simplepie/issues" } } diff --git a/vendor/simplepie/simplepie/library/SimplePie.php b/vendor/simplepie/simplepie/library/SimplePie.php index 890497204..428bfc068 100755 --- a/vendor/simplepie/simplepie/library/SimplePie.php +++ b/vendor/simplepie/simplepie/library/SimplePie.php @@ -5,7 +5,7 @@ * A PHP-Based RSS and Atom Feed Framework. * Takes the hard work out of managing a complete RSS/Atom solution. * - * Copyright (c) 2004-2016, Ryan Parman, Geoffrey Sneddon, Ryan McCue, and contributors + * Copyright (c) 2004-2017, Ryan Parman, Geoffrey Sneddon, Ryan McCue, and contributors * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are @@ -33,8 +33,8 @@ * POSSIBILITY OF SUCH DAMAGE. * * @package SimplePie - * @version 1.4.3 - * @copyright 2004-2016 Ryan Parman, Geoffrey Sneddon, Ryan McCue + * @version 1.5 + * @copyright 2004-2017 Ryan Parman, Geoffrey Sneddon, Ryan McCue * @author Ryan Parman * @author Geoffrey Sneddon * @author Ryan McCue @@ -50,7 +50,7 @@ define('SIMPLEPIE_NAME', 'SimplePie'); /** * SimplePie Version */ -define('SIMPLEPIE_VERSION', '1.4.3'); +define('SIMPLEPIE_VERSION', '1.5'); /** * SimplePie Build diff --git a/vendor/simplepie/simplepie/library/SimplePie/Category.php b/vendor/simplepie/simplepie/library/SimplePie/Category.php index 92d511e1a..df0f13f9a 100644 --- a/vendor/simplepie/simplepie/library/SimplePie/Category.php +++ b/vendor/simplepie/simplepie/library/SimplePie/Category.php @@ -56,7 +56,7 @@ class SimplePie_Category /** * Category identifier * - * @var string + * @var string|null * @see get_term */ var $term; @@ -64,7 +64,7 @@ class SimplePie_Category /** * Categorization scheme identifier * - * @var string + * @var string|null * @see get_scheme() */ var $scheme; @@ -72,23 +72,36 @@ class SimplePie_Category /** * Human readable label * - * @var string + * @var string|null * @see get_label() */ var $label; + /** + * Category type + * + * category for + * subject for + * + * @var string|null + * @see get_type() + */ + var $type; + /** * Constructor, used to input the data * - * @param string $term - * @param string $scheme - * @param string $label + * @param string|null $term + * @param string|null $scheme + * @param string|null $label + * @param string|null $type */ - public function __construct($term = null, $scheme = null, $label = null) + public function __construct($term = null, $scheme = null, $label = null, $type = null) { $this->term = $term; $this->scheme = $scheme; $this->label = $label; + $this->type = $type; } /** @@ -109,14 +122,7 @@ class SimplePie_Category */ public function get_term() { - if ($this->term !== null) - { - return $this->term; - } - else - { - return null; - } + return $this->term; } /** @@ -126,31 +132,32 @@ class SimplePie_Category */ public function get_scheme() { - if ($this->scheme !== null) - { - return $this->scheme; - } - else - { - return null; - } + return $this->scheme; } /** * Get the human readable label * + * @param bool $strict * @return string|null */ - public function get_label() + public function get_label($strict = false) { - if ($this->label !== null) - { - return $this->label; - } - else + if ($this->label === null && $strict !== true) { return $this->get_term(); } + return $this->label; + } + + /** + * Get the category type + * + * @return string|null + */ + public function get_type() + { + return $this->type; } } diff --git a/vendor/simplepie/simplepie/library/SimplePie/Item.php b/vendor/simplepie/simplepie/library/SimplePie/Item.php index 89d4bacb6..00f4179bf 100644 --- a/vendor/simplepie/simplepie/library/SimplePie/Item.php +++ b/vendor/simplepie/simplepie/library/SimplePie/Item.php @@ -206,9 +206,10 @@ class SimplePie_Item * * @since Beta 2 * @param boolean $hash Should we force using a hash instead of the supplied ID? - * @return string + * @param string|false $fn User-supplied function to generate an hash + * @return string|null */ - public function get_id($hash = false, $fn = '') + public function get_id($hash = false, $fn = 'md5') { if (!$hash) { @@ -237,7 +238,15 @@ class SimplePie_Item return $this->sanitize($this->data['attribs'][SIMPLEPIE_NAMESPACE_RDF]['about'], SIMPLEPIE_CONSTRUCT_TEXT); } } - if ($fn === '' || !is_callable($fn)) $fn = 'md5'; + if ($fn === false) + { + return null; + } + elseif (!is_callable($fn)) + { + trigger_error('User-supplied function $fn must be callable', E_USER_WARNING); + $fn = 'md5'; + } return call_user_func($fn, $this->get_permalink().$this->get_title().$this->get_content()); } @@ -460,7 +469,8 @@ class SimplePie_Item { $categories = array(); - foreach ((array) $this->get_item_tags(SIMPLEPIE_NAMESPACE_ATOM_10, 'category') as $category) + $type = 'category'; + foreach ((array) $this->get_item_tags(SIMPLEPIE_NAMESPACE_ATOM_10, $type) as $category) { $term = null; $scheme = null; @@ -477,9 +487,9 @@ class SimplePie_Item { $label = $this->sanitize($category['attribs']['']['label'], SIMPLEPIE_CONSTRUCT_HTML); } - $categories[] = $this->registry->create('Category', array($term, $scheme, $label)); + $categories[] = $this->registry->create('Category', array($term, $scheme, $label, $type)); } - foreach ((array) $this->get_item_tags(SIMPLEPIE_NAMESPACE_RSS_20, 'category') as $category) + foreach ((array) $this->get_item_tags(SIMPLEPIE_NAMESPACE_RSS_20, $type) as $category) { // This is really the label, but keep this as the term also for BC. // Label will also work on retrieving because that falls back to term. @@ -492,15 +502,17 @@ class SimplePie_Item { $scheme = null; } - $categories[] = $this->registry->create('Category', array($term, $scheme, null)); + $categories[] = $this->registry->create('Category', array($term, $scheme, null, $type)); } - foreach ((array) $this->get_item_tags(SIMPLEPIE_NAMESPACE_DC_11, 'subject') as $category) + + $type = 'subject'; + foreach ((array) $this->get_item_tags(SIMPLEPIE_NAMESPACE_DC_11, $type) as $category) { - $categories[] = $this->registry->create('Category', array($this->sanitize($category['data'], SIMPLEPIE_CONSTRUCT_HTML), null, null)); + $categories[] = $this->registry->create('Category', array($this->sanitize($category['data'], SIMPLEPIE_CONSTRUCT_HTML), null, null, $type)); } - foreach ((array) $this->get_item_tags(SIMPLEPIE_NAMESPACE_DC_10, 'subject') as $category) + foreach ((array) $this->get_item_tags(SIMPLEPIE_NAMESPACE_DC_10, $type) as $category) { - $categories[] = $this->registry->create('Category', array($this->sanitize($category['data'], SIMPLEPIE_CONSTRUCT_HTML), null, null)); + $categories[] = $this->registry->create('Category', array($this->sanitize($category['data'], SIMPLEPIE_CONSTRUCT_HTML), null, null, $type)); } if (!empty($categories)) From 93335cdb0e78ee14ca56314702c2a8517fda27ff Mon Sep 17 00:00:00 2001 From: zotlabs Date: Thu, 4 May 2017 19:18:54 -0700 Subject: [PATCH 228/819] typo --- include/items.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/items.php b/include/items.php index c895a6d6e..ffb02a8f0 100755 --- a/include/items.php +++ b/include/items.php @@ -1323,7 +1323,7 @@ function encode_item_flags($item) { $ret[] = 'consensus'; if(intval($item['item_obscured'])) $ret[] = 'obscured'; - if(intval($item['item_privat'])) + if(intval($item['item_private'])) $ret[] = 'private'; return $ret; From 73cb270b14b7cc61074eeaf7469024b800fc582b Mon Sep 17 00:00:00 2001 From: Klaus Weidenbach Date: Fri, 5 May 2017 00:23:57 +0200 Subject: [PATCH 229/819] :bulb: correct some Doxygen syntax mistakes. --- include/channel.php | 130 ++++++++++++++++++++++++------------------ include/feedutils.php | 7 ++- include/import.php | 19 +++--- include/items.php | 30 +++++----- include/text.php | 15 +++-- 5 files changed, 114 insertions(+), 87 deletions(-) diff --git a/include/channel.php b/include/channel.php index 0a4c9009a..31dca1ae5 100644 --- a/include/channel.php +++ b/include/channel.php @@ -57,8 +57,9 @@ function identity_check_service_class($account_id) { * Plugins can set additional policies such as full name requirements, character * sets, multi-byte length, etc. * + * @hooks validate_channelname + * * \e array \b name * @param string $name - * * @returns nil return if name is valid, or string describing the error state. */ function validate_channelname($name) { @@ -69,7 +70,7 @@ function validate_channelname($name) { if (strlen($name) > 255) return t('Name too long'); - $arr = array('name' => $name); + $arr = ['name' => $name]; call_hooks('validate_channelname', $arr); if (x($arr, 'message')) @@ -463,7 +464,6 @@ function create_identity($arr) { * if true, set this default unconditionally * if $force is false only do this if there is no existing default */ - function set_default_login_identity($account_id, $channel_id, $force = true) { $r = q("select account_default_channel from account where account_id = %d limit 1", intval($account_id) @@ -478,12 +478,29 @@ function set_default_login_identity($account_id, $channel_id, $force = true) { } } - +/** + * @brief Return an array with default list of sections to export. + * + * @hooks get_default_export_sections + * * \e array \b sections + * @return array with default section names to export + */ function get_default_export_sections() { - $sections = [ 'channel', 'connections', 'config', 'apps', 'chatrooms', 'events', 'webpages', 'mail', 'wikis' ]; + $sections = [ + 'channel', + 'connections', + 'config', + 'apps', + 'chatrooms', + 'events', + 'webpages', + 'mail', + 'wikis' + ]; $cb = [ 'sections' => $sections ]; call_hooks('get_default_export_sections', $cb); + return $cb['sections']; } @@ -493,15 +510,17 @@ function get_default_export_sections() { * which would be necessary to create a nomadic identity clone. This includes * most channel resources and connection information with the exception of content. * + * @hooks identity_basic_export + * * \e int \b channel_id + * * \e array \b sections + * * \e array \b data * @param int $channel_id * Channel_id to export - * @param boolean $items - * Include channel posts (wall items), default false - * + * @param array $sections (optional) + * Which sections to include in the export, default see get_default_export_sections() * @returns array * See function for details */ - function identity_basic_export($channel_id, $sections = null) { /* @@ -511,16 +530,16 @@ function identity_basic_export($channel_id, $sections = null) { if(! $sections) { $sections = get_default_export_sections(); } - + $ret = []; // use constants here as otherwise we will have no idea if we can import from a site // with a non-standard platform and version. $ret['compatibility'] = [ - 'project' => PLATFORM_NAME, - 'version' => STD_VERSION, - 'database' => DB_UPDATE_VERSION, + 'project' => PLATFORM_NAME, + 'version' => STD_VERSION, + 'database' => DB_UPDATE_VERSION, 'server_role' => Zotlabs\Lib\System::get_server_role() ]; @@ -549,8 +568,7 @@ function identity_basic_export($channel_id, $sections = null) { if($r) $ret['profile'] = $r; - - $r = q("select mimetype, content, os_storage from photo + $r = q("select mimetype, content, os_storage from photo where imgscale = 4 and photo_usage = %d and uid = %d limit 1", intval(PHOTO_PROFILE), intval($channel_id) @@ -558,8 +576,8 @@ function identity_basic_export($channel_id, $sections = null) { if($r) { $ret['photo'] = [ - 'type' => $r[0]['mimetype'], - 'data' => (($r[0]['os_storage']) + 'type' => $r[0]['mimetype'], + 'data' => (($r[0]['os_storage']) ? base64url_encode(file_get_contents($r[0]['content'])) : base64url_encode($r[0]['content'])) ]; } @@ -605,7 +623,6 @@ function identity_basic_export($channel_id, $sections = null) { ); if($r) $ret['group_member'] = $r; - } if(in_array('config',$sections)) { @@ -614,7 +631,7 @@ function identity_basic_export($channel_id, $sections = null) { ); if($r) $ret['config'] = $r; - + // All other term types will be included in items, if requested. $r = q("select * from term where ttype in (%d,%d) and uid = %d", @@ -641,7 +658,6 @@ function identity_basic_export($channel_id, $sections = null) { if($r) $ret['likes'] = $r; - } if(in_array('apps',$sections)) { @@ -667,7 +683,6 @@ function identity_basic_export($channel_id, $sections = null) { $ret['chatroom'] = $r; } - if(in_array('events',$sections)) { $r = q("select * from event where uid = %d", intval($channel_id) @@ -697,7 +712,7 @@ function identity_basic_export($channel_id, $sections = null) { $ret['menu'][] = menu_element($ret['channel'],$m); } } - $r = q("select * from item where item_type in ( " + $r = q("select * from item where item_type in ( " . ITEM_TYPE_BLOCK . "," . ITEM_TYPE_PDL . "," . ITEM_TYPE_WEBPAGE . " ) and uid = %d", intval($channel_id) ); @@ -707,7 +722,6 @@ function identity_basic_export($channel_id, $sections = null) { $r = fetch_post_tags($r,true); foreach($r as $rr) $ret['webpages'][] = encode_item($rr,true); - } } @@ -758,7 +772,7 @@ function identity_basic_export($channel_id, $sections = null) { * Don't export linked resource items. we'll have to pull those out separately. */ - $r = q("select * from item where item_wall = 1 and item_deleted = 0 and uid = %d + $r = q("select * from item where item_wall = 1 and item_deleted = 0 and uid = %d and created > %s - INTERVAL %s and resource_type = '' order by created", intval($channel_id), db_utcnow(), @@ -1394,15 +1408,15 @@ function get_my_address() { } /** - * @brief + * @brief Add visitor's zid to our xchan and attempt authentication. * - * If somebody arrives at our site using a zid, add their xchan to our DB if we don't have it already. + * If somebody arrives at our site using a zid, add their xchan to our DB if we + * don't have it already. * And if they aren't already authenticated here, attempt reverse magic auth. * - * - * @hooks 'zid_init' - * string 'zid' - their zid - * string 'url' - the destination url + * @hooks zid_init + * * \e string \b zid - their zid + * * \e string \b url - the destination url */ function zid_init() { $tmp_str = get_my_address(); @@ -1431,12 +1445,9 @@ function zid_init() { } /** - * @brief - * - * If somebody arrives at our site using a zat, authenticate them + * @brief If somebody arrives at our site using a zat, authenticate them. * */ - function zat_init() { if(local_channel() || remote_channel()) return; @@ -1448,7 +1459,6 @@ function zat_init() { $xchan = atoken_xchan($r[0]); atoken_login($xchan); } - } @@ -1481,7 +1491,7 @@ function get_theme_uid() { * * @param int $size * one of (300, 80, 48) -* @returns string +* @returns string with path to profile photo */ function get_default_profile_photo($size = 300) { $scheme = get_config('system','default_profile_photo'); @@ -1974,7 +1984,6 @@ function channel_manual_conv_update($channel_id) { $x = get_config('system','manual_conversation_update', 1); return intval($x); - } @@ -2143,24 +2152,33 @@ function account_remove($account_id,$local = true,$unset_session=true) { } -function channel_remove($channel_id, $local = true, $unset_session=false) { +/** + * @brief Removes a channel. + * + * @hooks channel_remove + * * \e array \b entry from channel tabel for $channel_id + * @param int $channel_id + * @param boolean $local default true + * @param boolean $unset_session default false + */ +function channel_remove($channel_id, $local = true, $unset_session = false) { if(! $channel_id) return; logger('Removing channel: ' . $channel_id); - logger('channel_remove: local only: ' . intval($local)); + logger('local only: ' . intval($local)); $r = q("select * from channel where channel_id = %d limit 1", intval($channel_id)); if(! $r) { - logger('channel_remove: channel not found: ' . $channel_id); + logger('channel not found: ' . $channel_id); return; } $channel = $r[0]; - call_hooks('channel_remove',$r[0]); - + call_hooks('channel_remove', $r[0]); + if(! $local) { $r = q("update channel set channel_deleted = '%s', channel_removed = 1 where channel_id = %d", @@ -2173,12 +2191,11 @@ function channel_remove($channel_id, $local = true, $unset_session=false) { ); logger('deleting hublocs',LOGGER_DEBUG); - + $r = q("update hubloc set hubloc_deleted = 1 where hubloc_hash = '%s'", dbesc($channel['channel_hash']) ); - $r = q("update xchan set xchan_deleted = 1 where xchan_hash = '%s'", dbesc($channel['channel_hash']) ); @@ -2211,8 +2228,7 @@ function channel_remove($channel_id, $local = true, $unset_session=false) { q("DELETE FROM profile WHERE uid = %d", intval($channel_id)); q("DELETE FROM pconfig WHERE uid = %d", intval($channel_id)); - // @FIXME At this stage we need to remove the file resources located under /store/$nickname - + /// @FIXME At this stage we need to remove the file resources located under /store/$nickname q("delete from abook where abook_xchan = '%s' and abook_self = 1 ", dbesc($channel['channel_hash']) @@ -2263,16 +2279,16 @@ function channel_remove($channel_id, $local = true, $unset_session=false) { dbesc($channel['channel_hash']) ); } - + //remove from file system $r = q("select channel_address from channel where channel_id = %d limit 1", intval($channel_id) ); - + if($r) { $channel_address = $r[0]['channel_address'] ; } - if($channel_address) { + if($channel_address) { $f = 'store/' . $channel_address.'/'; logger('delete '. $f); if(is_dir($f)) { @@ -2286,22 +2302,24 @@ function channel_remove($channel_id, $local = true, $unset_session=false) { App::$session->nuke(); goaway(z_root()); } - } -/* - * This checks if a channel is allowed to publish executable code. - * It is up to the caller to determine if the observer or local_channel - * is in fact the resource owner whose channel_id is being checked +/** + * @brief This checks if a channel is allowed to publish executable code. + * + * It is up to the caller to determine if the observer or local_channel + * is in fact the resource owner whose channel_id is being checked. + * + * @param int $channel_id + * @return boolean */ - function channel_codeallowed($channel_id) { - if(! intval($channel_id)) return false; $x = channelx_by_n($channel_id); if(($x) && ($x['channel_pageflags'] & PAGE_ALLOWCODE)) return true; + return false; } diff --git a/include/feedutils.php b/include/feedutils.php index 06a342a3f..6bb7d103e 100644 --- a/include/feedutils.php +++ b/include/feedutils.php @@ -742,7 +742,7 @@ function encode_rel_links($links) { * @param $importer * The contact_record (joined to user_record) of the local user who owns this * relationship. It is this person's stuff that is going to be updated. - * @param array $contact[in,out] + * @param[in,out] array $contact * The person who is sending us stuff. If not set, we MAY be processing a "follow" activity * from an external network and MAY create an appropriate contact record. Otherwise, we MUST * have a contact record. @@ -1232,8 +1232,11 @@ function handle_feed($uid, $abook_id, $url) { /** * @brief Return a XML tag with author information. * + * @hooks \b atom_author Possibility to add further tags to returned XML string + * * \e string The created XML tag as a string without closing tag * @param string $tag The XML tag to create - * @param string $name Name of the author + * @param string $nick preferred username + * @param string $name displayed name of the author * @param string $uri * @param int $h image height * @param int $w image width diff --git a/include/import.php b/include/import.php index 224bb1803..3b5ddd1f1 100644 --- a/include/import.php +++ b/include/import.php @@ -181,7 +181,7 @@ function import_profiles($channel, $profiles) { * @param array $channel * @param array $hublocs * @param unknown $seize - * @param boolean $moving + * @param boolean $moving (optional) default false */ function import_hublocs($channel, $hublocs, $seize, $moving = false) { @@ -585,7 +585,7 @@ function sync_chatrooms($channel, $chatrooms) { * * @param array $channel where to import to * @param array $items - * @param boolean $sync + * @param boolean $sync default false * @param array $relocate default null */ function import_items($channel, $items, $sync = false, $relocate = null) { @@ -654,9 +654,13 @@ function sync_items($channel, $items, $relocate = null) { import_items($channel, $items, true, $relocate); } - - -function import_item_ids($channel,$itemids) { +/** + * @brief + * + * @param array $channel A channel array. + * @param array $itemids + */ +function import_item_ids($channel, $itemids) { if($channel && $itemids) { foreach($itemids as $i) { $r = q("select id from item where mid = '%s' and uid = %d limit 1", @@ -979,6 +983,7 @@ function import_conv($channel,$convs) { * * @param array $channel * @param array $mails + * @param boolean $sync (optional) default false */ function import_mail($channel, $mails, $sync = false) { if($channel && $mails) { @@ -1276,7 +1281,7 @@ function sync_files($channel, $files) { * * Replaces $old key with $new key in $arr. * - * @param array[in,out] $arr The array where to work on + * @param[in,out] array &$arr The array where to work on * @param string $old The old key in the array * @param string $new The new key in the array */ @@ -1444,7 +1449,7 @@ function import_webpage_element($element, $channel, $type) { // The author is either the owner or whomever was specified $arr['author_xchan'] = (($element['author_xchan']) ? $element['author_xchan'] : get_observer_hash()); // Import mimetype if it is a valid mimetype for the element - $mimetypes = [ + $mimetypes = [ 'text/bbcode', 'text/html', 'text/markdown', diff --git a/include/items.php b/include/items.php index ffb02a8f0..328079b9d 100755 --- a/include/items.php +++ b/include/items.php @@ -298,11 +298,13 @@ function add_source_route($iid, $hash) { * or other processing is performed. * * @param array $arr + * @param boolean $allow_code (optional) default false + * @param boolean $deliver (optional) default true * @returns array * * \e boolean \b success true or false * * \e array \b activity the resulting activity if successful */ -function post_activity_item($arr,$allow_code = false,$deliver = true) { +function post_activity_item($arr, $allow_code = false, $deliver = true) { $ret = array('success' => false); @@ -348,7 +350,7 @@ function post_activity_item($arr,$allow_code = false,$deliver = true) { if(($is_comment) && ($arr['obj_type'] === ACTIVITY_OBJ_NOTE)) $arr['obj_type'] = ACTIVITY_OBJ_COMMENT; - if(! ( array_key_exists('allow_cid',$arr) || array_key_exists('allow_gid',$arr) + if(! ( array_key_exists('allow_cid',$arr) || array_key_exists('allow_gid',$arr) || array_key_exists('deny_cid',$arr) || array_key_exists('deny_gid',$arr))) { $arr['allow_cid'] = $channel['channel_allow_cid']; $arr['allow_gid'] = $channel['channel_allow_gid']; @@ -648,11 +650,11 @@ function get_item_elements($x,$allow_code = false) { } } - // Check signature on the body text received. + // Check signature on the body text received. // This presents an issue that we aren't verifying the text that is actually displayed // on this site. We are however verifying the received text was exactly as received. // We have every right to strip content that poses a security risk. You are welcome to - // create a plugin to verify the content after filtering if this offends you. + // create a plugin to verify the content after filtering if this offends you. if($arr['sig']) { @@ -675,7 +677,7 @@ function get_item_elements($x,$allow_code = false) { // If we don't have a public key, strip the signature so it won't show as invalid. // This won't happen in normal use, but could happen if import_author_xchan() - // failed to load the zot-info packet due to a server failure and had + // failed to load the zot-info packet due to a server failure and had // to create an alternate xchan with network 'unknown' unset($arr['sig']); @@ -1518,7 +1520,7 @@ function item_store($arr, $allow_exec = false, $deliver = true) { if(array_key_exists('cancel',$arr) && $arr['cancel']) { logger('cancelled by plugin'); return $ret; - } + } if(! $arr['uid']) { logger('item_store: no uid'); @@ -1843,7 +1845,7 @@ logger('revision: ' . $arr['revision']); ); if($r) { - // This will gives us a fresh copy of what's now in the DB and undo the db escaping, + // This will gives us a fresh copy of what's now in the DB and undo the db escaping, // which really messes up the notifications $current_post = $r[0]['id']; @@ -1906,7 +1908,7 @@ logger('revision: ' . $arr['revision']); // update the commented timestamp on the parent - unless this is potentially a clone of an older item // which we don't wish to bring to the surface. As the queue only holds deliveries for 3 days, it's - // suspected of being an older cloned item if the creation time is older than that. + // suspected of being an older cloned item if the creation time is older than that. if($arr['created'] > datetime_convert('','','now - 4 days')) { $z = q("select max(created) as commented from item where parent_mid = '%s' and uid = %d and item_delayed = 0 ", @@ -1952,7 +1954,7 @@ function item_store_update($arr,$allow_exec = false, $deliver = true) { if(array_key_exists('cancel',$arr) && $arr['cancel']) { logger('cancelled by plugin'); return $ret; - } + } if(! intval($arr['uid'])) { logger('item_store_update: no uid'); @@ -4502,12 +4504,12 @@ function item_create_edit_activity($post) { $new_item['id'] = 0; $new_item['parent'] = 0; $new_item['mid'] = item_message_id(); - + $new_item['body'] = sprintf( t('[Edited %s]'), (($update_item['item_thread_top']) ? t('Post','edit_activity') : t('Comment','edit_activity'))); $new_item['body'] .= "\n\n"; $new_item['body'] .= $update_item['body']; - + $new_item['sig'] = ''; $new_item['verb'] = ACTIVITY_UPDATE; @@ -4533,10 +4535,10 @@ function item_create_edit_activity($post) { array('rel' => 'photo', 'type' => $item_author['xchan_photo_mimetype'], 'href' => $item_author['xchan_photo_m'])), ), )); - - $x = post_activity_item($new_item); + + $x = post_activity_item($new_item); $post_id = $x['id']; if($post_id) { @@ -4551,5 +4553,5 @@ function item_create_edit_activity($post) { } \Zotlabs\Daemon\Master::Summon(array('Notifier', 'edit_activity', $post_id)); - + } diff --git a/include/text.php b/include/text.php index 46509aabf..162d7c365 100644 --- a/include/text.php +++ b/include/text.php @@ -774,9 +774,9 @@ function activity_match($haystack,$needle) { } /** - * @brief Pull out all #hashtags and @person tags from $s. + * @brief Pull out all \#hashtags and \@person tags from $s. * - * We also get @person@domain.com - which would make + * We also get \@person\@domain.com - which would make * the regex quite complicated as tags can also * end a sentence. So we'll run through our results * and strip the period from any tags which end with one. @@ -2079,7 +2079,7 @@ function ids_to_querystr($arr,$idx = 'id',$quote = false) { * If $abook is true also include the abook info. This is needed in the API to * save extra per item lookups there. * - * @param array[in,out] &$items + * @param[in,out] array &$items * @param boolean $abook If true also include the abook info * @param number $effective_uid */ @@ -2175,10 +2175,10 @@ function magic_link($s) { } /** - * if $escape is true, dbesc() each element before adding quotes + * @brief If $escape is true, dbesc() each element before adding quotes. * - * @param array[in,out] &$arr - * @param boolean $escape default false + * @param[in,out] array &$arr + * @param boolean $escape (optional) default false */ function stringify_array_elms(&$arr, $escape = false) { for($x = 0; $x < count($arr); $x ++) @@ -2189,7 +2189,6 @@ function stringify_array_elms(&$arr, $escape = false) { * @brief Indents a flat JSON string to make it more human-readable. * * @param string $json The original JSON string to process. - * * @return string Indented version of the original JSON string. */ function jindent($json) { @@ -3140,4 +3139,4 @@ function ellipsify($s,$maxlen) { return $s; return mb_substr($s,0,$maxlen / 2) . '...' . mb_substr($s,mb_strlen($s) - ($maxlen / 2)); -} +} From 54259593ea9c61b3d585ccc3a9ca0bfe4e032fed Mon Sep 17 00:00:00 2001 From: Klaus Weidenbach Date: Thu, 4 May 2017 00:43:55 +0200 Subject: [PATCH 230/819] :bulb: Add Doxygen fix for @var member variable documentation. Add an input filter to Doxygen to parse @var class member variable documentation, so it is bit more compatible how anybody else interpretes it. --- util/Doxyfile | 3 +++ util/Doxygen_phpvarfilter.php | 18 ++++++++++++++++++ 2 files changed, 21 insertions(+) create mode 100644 util/Doxygen_phpvarfilter.php diff --git a/util/Doxyfile b/util/Doxyfile index 1bca6cbd4..7be774a81 100644 --- a/util/Doxyfile +++ b/util/Doxyfile @@ -32,3 +32,6 @@ DOT_IMAGE_FORMAT = svg INTERACTIVE_SVG = YES CLASS_GRAPH = YES COLLABORATION_GRAPH = NO +# fix @var (https://bugzilla.gnome.org/show_bug.cgi?id=626105) +#INPUT_FILTER = "sed -e 's/@var\s/@see /'" +INPUT_FILTER = "php util/Doxygen_phpvarfilter.php" diff --git a/util/Doxygen_phpvarfilter.php b/util/Doxygen_phpvarfilter.php new file mode 100644 index 000000000..da6cf1666 --- /dev/null +++ b/util/Doxygen_phpvarfilter.php @@ -0,0 +1,18 @@ + Date: Fri, 5 May 2017 02:27:24 -0700 Subject: [PATCH 231/819] markdown autolinks - hubzilla bug #752 --- Zotlabs/Lib/MarkdownSoap.php | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/Zotlabs/Lib/MarkdownSoap.php b/Zotlabs/Lib/MarkdownSoap.php index a0214bbe4..534ad819f 100644 --- a/Zotlabs/Lib/MarkdownSoap.php +++ b/Zotlabs/Lib/MarkdownSoap.php @@ -77,15 +77,22 @@ class MarkdownSoap { } function purify($s) { -// $s = str_replace("\n",'
',$s); -// $s = str_replace("\t",'    ',$s); -// $s = str_replace(' ',' ',$s); + $s = $this->protect_autolinks($s); $s = purify_html($s); -// $s = str_replace([' ', mb_convert_encoding(' ','UTF-8','HTML-ENTITIES')], [ ' ', ' ' ],$s); -// $s = str_replace(['
','
', '<', '>' ],["\n","\n", '<', '>'],$s); + $s = $this->unprotect_autolinks($s); return $s; } + function protect_autolinks($s) { + $s = preg_replace('/\<(https?\:\/\/)(.*?)\>/','[$1$2]($1$2)',$s); + return $s; + } + + function unprotect_autolinks($s) { + return $s; + + } + function escape($s) { return htmlspecialchars($s,ENT_QUOTES); } From af7a3fc2ea9016e1ac0b6f4e561affc2a17ecb3d Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Fri, 5 May 2017 12:57:41 +0200 Subject: [PATCH 232/819] css fix --- view/tpl/comment_item.tpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/view/tpl/comment_item.tpl b/view/tpl/comment_item.tpl index f490483b8..bd5176c83 100755 --- a/view/tpl/comment_item.tpl +++ b/view/tpl/comment_item.tpl @@ -64,4 +64,4 @@

-
+
From 54d55fb62fd9a69c77ce9313ccec432faa8395e7 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Fri, 5 May 2017 14:40:35 +0200 Subject: [PATCH 233/819] css hack to make remote channel menu header look in line with the rest if in collapsed state --- view/css/bootstrap-red.css | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/view/css/bootstrap-red.css b/view/css/bootstrap-red.css index 2f570a058..08154ca2c 100644 --- a/view/css/bootstrap-red.css +++ b/view/css/bootstrap-red.css @@ -55,6 +55,12 @@ nav .dropdown-menu { overflow: auto; } + +#navbar-collapse-2.collapsing .dropdown-header, +#navbar-collapse-2.show .dropdown-header { + padding: 0.5rem 0.1rem; +} + .navbar-inverse .navbar-toggler { color: rgba(255,255,255,1); } From 00b19ccee0db5fd628c4959ac665234395a92989 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Fri, 5 May 2017 16:32:20 +0200 Subject: [PATCH 234/819] collapse sysapps if viewing a remote channel --- include/nav.php | 12 ++++++----- view/theme/redbasic/css/style.css | 3 ++- view/tpl/nav.tpl | 34 ++++++++++++++++++++++++++----- 3 files changed, 38 insertions(+), 11 deletions(-) diff --git a/include/nav.php b/include/nav.php index fecf28548..849e19d9a 100644 --- a/include/nav.php +++ b/include/nav.php @@ -43,7 +43,7 @@ EOT; require_once('include/conversation.php'); $is_owner = (((local_channel()) && (App::$profile['profile_uid'] == local_channel())) ? true : false); - $navapps[] = channel_apps($is_owner, App::$profile['channel_address']); + $channel_apps[] = channel_apps($is_owner, App::$profile['channel_address']); $myident = (($channel) ? $channel['xchan_addr'] : ''); @@ -258,7 +258,7 @@ EOT; usort($syslist,'Zotlabs\\Lib\\Apps::app_name_compare'); foreach($syslist as $app) { - $navapps[] = Zlib\Apps::app_render($app,'nav'); + $nav_apps[] = Zlib\Apps::app_render($app,'nav'); } $tpl = get_markup_template('nav.tpl'); @@ -276,8 +276,10 @@ EOT; '$powered_by' => $powered_by, '$help' => t('@name, #tag, ?doc, content'), '$pleasewait' => t('Please wait...'), - '$navapps' => $navapps, - '$addapps' => t('Add Apps') + '$nav_apps' => $nav_apps, + '$channel_apps' => $channel_apps, + '$addapps' => t('Add Apps'), + '$sysapps_toggle' => t('Toggle System Apps') )); if(x($_SESSION, 'reload_avatar') && $observer) { @@ -480,4 +482,4 @@ function channel_apps($is_owner = false, $nickname = null) { '$thumb' => App::$profile['thumb'] ] ); -} \ No newline at end of file +} diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index 4ab2634ef..faa292fe5 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -886,7 +886,8 @@ a .drop-icons:hover { color: #FF0000; } -.lockview { +.lockview, +.sys-apps-toggle { cursor: pointer; } diff --git a/view/tpl/nav.tpl b/view/tpl/nav.tpl index c5b378b4f..5c301b4d2 100755 --- a/view/tpl/nav.tpl +++ b/view/tpl/nav.tpl @@ -188,10 +188,22 @@ {{/if}}
  • + {{if $photo.album.name}}{{$photo.album.name}}{{elseif $photo.desc}}{{$photo.desc}}{{elseif $photo.alt}}{{$photo.alt}}{{else}}{{$photo.unknown}}{{/if}} +
    {{$photo.desc}}
    +
  • From 780abe7dd4e335f3a31e8883bcf2f631630be9c9 Mon Sep 17 00:00:00 2001 From: Klaus Weidenbach Date: Sun, 22 Oct 2017 21:19:42 +0200 Subject: [PATCH 354/819] Update composer autoload cache. --- vendor/composer/autoload_classmap.php | 15 +++++++++++++-- vendor/composer/autoload_static.php | 15 +++++++++++++-- 2 files changed, 26 insertions(+), 4 deletions(-) diff --git a/vendor/composer/autoload_classmap.php b/vendor/composer/autoload_classmap.php index a894ef263..125c5c325 100644 --- a/vendor/composer/autoload_classmap.php +++ b/vendor/composer/autoload_classmap.php @@ -736,6 +736,7 @@ return array( 'Zotlabs\\Daemon\\Externals' => $baseDir . '/Zotlabs/Daemon/Externals.php', 'Zotlabs\\Daemon\\Gprobe' => $baseDir . '/Zotlabs/Daemon/Gprobe.php', 'Zotlabs\\Daemon\\Importdoc' => $baseDir . '/Zotlabs/Daemon/Importdoc.php', + 'Zotlabs\\Daemon\\Importfile' => $baseDir . '/Zotlabs/Daemon/Importfile.php', 'Zotlabs\\Daemon\\Master' => $baseDir . '/Zotlabs/Daemon/Master.php', 'Zotlabs\\Daemon\\Notifier' => $baseDir . '/Zotlabs/Daemon/Notifier.php', 'Zotlabs\\Daemon\\Onedirsync' => $baseDir . '/Zotlabs/Daemon/Onedirsync.php', @@ -748,7 +749,7 @@ return array( 'Zotlabs\\Identity\\ProfilePhoto\\ProfilePhoto' => $baseDir . '/Zotlabs/Identity/ProfilePhoto.php', 'Zotlabs\\Lib\\AConfig' => $baseDir . '/Zotlabs/Lib/AConfig.php', 'Zotlabs\\Lib\\AbConfig' => $baseDir . '/Zotlabs/Lib/AbConfig.php', - 'Zotlabs\\Lib\\ActivityStreams2' => $baseDir . '/Zotlabs/Lib/ActivityStreams2.php', + 'Zotlabs\\Lib\\ActivityStreams' => $baseDir . '/Zotlabs/Lib/ActivityStreams.php', 'Zotlabs\\Lib\\Api_router' => $baseDir . '/Zotlabs/Lib/Api_router.php', 'Zotlabs\\Lib\\Apps' => $baseDir . '/Zotlabs/Lib/Apps.php', 'Zotlabs\\Lib\\Cache' => $baseDir . '/Zotlabs/Lib/Cache.php', @@ -758,6 +759,8 @@ return array( 'Zotlabs\\Lib\\Enotify' => $baseDir . '/Zotlabs/Lib/Enotify.php', 'Zotlabs\\Lib\\ExtendedZip' => $baseDir . '/Zotlabs/Lib/ExtendedZip.php', 'Zotlabs\\Lib\\IConfig' => $baseDir . '/Zotlabs/Lib/IConfig.php', + 'Zotlabs\\Lib\\JSalmon' => $baseDir . '/Zotlabs/Lib/JSalmon.php', + 'Zotlabs\\Lib\\LDSignatures' => $baseDir . '/Zotlabs/Lib/LDSignatures.php', 'Zotlabs\\Lib\\MarkdownSoap' => $baseDir . '/Zotlabs/Lib/MarkdownSoap.php', 'Zotlabs\\Lib\\NativeWiki' => $baseDir . '/Zotlabs/Lib/NativeWiki.php', 'Zotlabs\\Lib\\NativeWikiPage' => $baseDir . '/Zotlabs/Lib/NativeWikiPage.php', @@ -765,6 +768,7 @@ return array( 'Zotlabs\\Lib\\Permcat' => $baseDir . '/Zotlabs/Lib/Permcat.php', 'Zotlabs\\Lib\\PermissionDescription' => $baseDir . '/Zotlabs/Lib/PermissionDescription.php', 'Zotlabs\\Lib\\ProtoDriver' => $baseDir . '/Zotlabs/Lib/ProtoDriver.php', + 'Zotlabs\\Lib\\SConfig' => $baseDir . '/Zotlabs/Lib/SConfig.php', 'Zotlabs\\Lib\\SuperCurl' => $baseDir . '/Zotlabs/Lib/SuperCurl.php', 'Zotlabs\\Lib\\System' => $baseDir . '/Zotlabs/Lib/System.php', 'Zotlabs\\Lib\\Techlevels' => $baseDir . '/Zotlabs/Lib/Techlevels.php', @@ -787,7 +791,6 @@ return array( 'Zotlabs\\Module\\Admin\\Security' => $baseDir . '/Zotlabs/Module/Admin/Security.php', 'Zotlabs\\Module\\Admin\\Site' => $baseDir . '/Zotlabs/Module/Admin/Site.php', 'Zotlabs\\Module\\Admin\\Themes' => $baseDir . '/Zotlabs/Module/Admin/Themes.php', - 'Zotlabs\\Module\\Ap_probe' => $baseDir . '/Zotlabs/Module/Ap_probe.php', 'Zotlabs\\Module\\Api' => $baseDir . '/Zotlabs/Module/Api.php', 'Zotlabs\\Module\\Appman' => $baseDir . '/Zotlabs/Module/Appman.php', 'Zotlabs\\Module\\Apporder' => $baseDir . '/Zotlabs/Module/Apporder.php', @@ -800,6 +803,8 @@ return array( 'Zotlabs\\Module\\Bookmarks' => $baseDir . '/Zotlabs/Module/Bookmarks.php', 'Zotlabs\\Module\\Branchtopic' => $baseDir . '/Zotlabs/Module/Branchtopic.php', 'Zotlabs\\Module\\Cal' => $baseDir . '/Zotlabs/Module/Cal.php', + 'Zotlabs\\Module\\Card_edit' => $baseDir . '/Zotlabs/Module/Card_edit.php', + 'Zotlabs\\Module\\Cards' => $baseDir . '/Zotlabs/Module/Cards.php', 'Zotlabs\\Module\\Cdav' => $baseDir . '/Zotlabs/Module/Cdav.php', 'Zotlabs\\Module\\Changeaddr' => $baseDir . '/Zotlabs/Module/Changeaddr.php', 'Zotlabs\\Module\\Channel' => $baseDir . '/Zotlabs/Module/Channel.php', @@ -850,6 +855,7 @@ return array( 'Zotlabs\\Module\\Lockview' => $baseDir . '/Zotlabs/Module/Lockview.php', 'Zotlabs\\Module\\Locs' => $baseDir . '/Zotlabs/Module/Locs.php', 'Zotlabs\\Module\\Login' => $baseDir . '/Zotlabs/Module/Login.php', + 'Zotlabs\\Module\\Logout' => $baseDir . '/Zotlabs/Module/Logout.php', 'Zotlabs\\Module\\Lostpass' => $baseDir . '/Zotlabs/Module/Lostpass.php', 'Zotlabs\\Module\\Magic' => $baseDir . '/Zotlabs/Module/Magic.php', 'Zotlabs\\Module\\Mail' => $baseDir . '/Zotlabs/Module/Mail.php', @@ -870,6 +876,7 @@ return array( 'Zotlabs\\Module\\Oexchange' => $baseDir . '/Zotlabs/Module/Oexchange.php', 'Zotlabs\\Module\\Ofeed' => $baseDir . '/Zotlabs/Module/Ofeed.php', 'Zotlabs\\Module\\Online' => $baseDir . '/Zotlabs/Module/Online.php', + 'Zotlabs\\Module\\Owa' => $baseDir . '/Zotlabs/Module/Owa.php', 'Zotlabs\\Module\\Page' => $baseDir . '/Zotlabs/Module/Page.php', 'Zotlabs\\Module\\Pconfig' => $baseDir . '/Zotlabs/Module/Pconfig.php', 'Zotlabs\\Module\\Pdledit' => $baseDir . '/Zotlabs/Module/Pdledit.php', @@ -936,6 +943,7 @@ return array( 'Zotlabs\\Module\\Toggle_safesearch' => $baseDir . '/Zotlabs/Module/Toggle_safesearch.php', 'Zotlabs\\Module\\Token' => $baseDir . '/Zotlabs/Module/Token.php', 'Zotlabs\\Module\\Uexport' => $baseDir . '/Zotlabs/Module/Uexport.php', + 'Zotlabs\\Module\\Update_cards' => $baseDir . '/Zotlabs/Module/Update_cards.php', 'Zotlabs\\Module\\Update_channel' => $baseDir . '/Zotlabs/Module/Update_channel.php', 'Zotlabs\\Module\\Update_display' => $baseDir . '/Zotlabs/Module/Update_display.php', 'Zotlabs\\Module\\Update_home' => $baseDir . '/Zotlabs/Module/Update_home.php', @@ -975,6 +983,7 @@ return array( 'Zotlabs\\Web\\CheckJS' => $baseDir . '/Zotlabs/Web/CheckJS.php', 'Zotlabs\\Web\\Controller' => $baseDir . '/Zotlabs/Web/Controller.php', 'Zotlabs\\Web\\HTTPHeaders' => $baseDir . '/Zotlabs/Web/HTTPHeaders.php', + 'Zotlabs\\Web\\HTTPSig' => $baseDir . '/Zotlabs/Web/HTTPSig.php', 'Zotlabs\\Web\\HttpMeta' => $baseDir . '/Zotlabs/Web/HttpMeta.php', 'Zotlabs\\Web\\Router' => $baseDir . '/Zotlabs/Web/Router.php', 'Zotlabs\\Web\\Session' => $baseDir . '/Zotlabs/Web/Session.php', @@ -996,6 +1005,7 @@ return array( 'Zotlabs\\Widget\\Chatroom_members' => $baseDir . '/Zotlabs/Widget/Chatroom_members.php', 'Zotlabs\\Widget\\Clock' => $baseDir . '/Zotlabs/Widget/Clock.php', 'Zotlabs\\Widget\\Collections' => $baseDir . '/Zotlabs/Widget/Collections.php', + 'Zotlabs\\Widget\\Common_friends' => $baseDir . '/Zotlabs/Widget/Common_friends.php', 'Zotlabs\\Widget\\Conversations' => $baseDir . '/Zotlabs/Widget/Conversations.php', 'Zotlabs\\Widget\\Cover_photo' => $baseDir . '/Zotlabs/Widget/Cover_photo.php', 'Zotlabs\\Widget\\Design_tools' => $baseDir . '/Zotlabs/Widget/Design_tools.php', @@ -1012,6 +1022,7 @@ return array( 'Zotlabs\\Widget\\Mailmenu' => $baseDir . '/Zotlabs/Widget/Mailmenu.php', 'Zotlabs\\Widget\\Menu_preview' => $baseDir . '/Zotlabs/Widget/Menu_preview.php', 'Zotlabs\\Widget\\Notes' => $baseDir . '/Zotlabs/Widget/Notes.php', + 'Zotlabs\\Widget\\Notifications' => $baseDir . '/Zotlabs/Widget/Notifications.php', 'Zotlabs\\Widget\\Photo' => $baseDir . '/Zotlabs/Widget/Photo.php', 'Zotlabs\\Widget\\Photo_albums' => $baseDir . '/Zotlabs/Widget/Photo_albums.php', 'Zotlabs\\Widget\\Photo_rand' => $baseDir . '/Zotlabs/Widget/Photo_rand.php', diff --git a/vendor/composer/autoload_static.php b/vendor/composer/autoload_static.php index 496252906..0374e7872 100644 --- a/vendor/composer/autoload_static.php +++ b/vendor/composer/autoload_static.php @@ -865,6 +865,7 @@ class ComposerStaticInit7b34d7e50a62201ec5d5e526a5b8b35d 'Zotlabs\\Daemon\\Externals' => __DIR__ . '/../..' . '/Zotlabs/Daemon/Externals.php', 'Zotlabs\\Daemon\\Gprobe' => __DIR__ . '/../..' . '/Zotlabs/Daemon/Gprobe.php', 'Zotlabs\\Daemon\\Importdoc' => __DIR__ . '/../..' . '/Zotlabs/Daemon/Importdoc.php', + 'Zotlabs\\Daemon\\Importfile' => __DIR__ . '/../..' . '/Zotlabs/Daemon/Importfile.php', 'Zotlabs\\Daemon\\Master' => __DIR__ . '/../..' . '/Zotlabs/Daemon/Master.php', 'Zotlabs\\Daemon\\Notifier' => __DIR__ . '/../..' . '/Zotlabs/Daemon/Notifier.php', 'Zotlabs\\Daemon\\Onedirsync' => __DIR__ . '/../..' . '/Zotlabs/Daemon/Onedirsync.php', @@ -877,7 +878,7 @@ class ComposerStaticInit7b34d7e50a62201ec5d5e526a5b8b35d 'Zotlabs\\Identity\\ProfilePhoto\\ProfilePhoto' => __DIR__ . '/../..' . '/Zotlabs/Identity/ProfilePhoto.php', 'Zotlabs\\Lib\\AConfig' => __DIR__ . '/../..' . '/Zotlabs/Lib/AConfig.php', 'Zotlabs\\Lib\\AbConfig' => __DIR__ . '/../..' . '/Zotlabs/Lib/AbConfig.php', - 'Zotlabs\\Lib\\ActivityStreams2' => __DIR__ . '/../..' . '/Zotlabs/Lib/ActivityStreams2.php', + 'Zotlabs\\Lib\\ActivityStreams' => __DIR__ . '/../..' . '/Zotlabs/Lib/ActivityStreams.php', 'Zotlabs\\Lib\\Api_router' => __DIR__ . '/../..' . '/Zotlabs/Lib/Api_router.php', 'Zotlabs\\Lib\\Apps' => __DIR__ . '/../..' . '/Zotlabs/Lib/Apps.php', 'Zotlabs\\Lib\\Cache' => __DIR__ . '/../..' . '/Zotlabs/Lib/Cache.php', @@ -887,6 +888,8 @@ class ComposerStaticInit7b34d7e50a62201ec5d5e526a5b8b35d 'Zotlabs\\Lib\\Enotify' => __DIR__ . '/../..' . '/Zotlabs/Lib/Enotify.php', 'Zotlabs\\Lib\\ExtendedZip' => __DIR__ . '/../..' . '/Zotlabs/Lib/ExtendedZip.php', 'Zotlabs\\Lib\\IConfig' => __DIR__ . '/../..' . '/Zotlabs/Lib/IConfig.php', + 'Zotlabs\\Lib\\JSalmon' => __DIR__ . '/../..' . '/Zotlabs/Lib/JSalmon.php', + 'Zotlabs\\Lib\\LDSignatures' => __DIR__ . '/../..' . '/Zotlabs/Lib/LDSignatures.php', 'Zotlabs\\Lib\\MarkdownSoap' => __DIR__ . '/../..' . '/Zotlabs/Lib/MarkdownSoap.php', 'Zotlabs\\Lib\\NativeWiki' => __DIR__ . '/../..' . '/Zotlabs/Lib/NativeWiki.php', 'Zotlabs\\Lib\\NativeWikiPage' => __DIR__ . '/../..' . '/Zotlabs/Lib/NativeWikiPage.php', @@ -894,6 +897,7 @@ class ComposerStaticInit7b34d7e50a62201ec5d5e526a5b8b35d 'Zotlabs\\Lib\\Permcat' => __DIR__ . '/../..' . '/Zotlabs/Lib/Permcat.php', 'Zotlabs\\Lib\\PermissionDescription' => __DIR__ . '/../..' . '/Zotlabs/Lib/PermissionDescription.php', 'Zotlabs\\Lib\\ProtoDriver' => __DIR__ . '/../..' . '/Zotlabs/Lib/ProtoDriver.php', + 'Zotlabs\\Lib\\SConfig' => __DIR__ . '/../..' . '/Zotlabs/Lib/SConfig.php', 'Zotlabs\\Lib\\SuperCurl' => __DIR__ . '/../..' . '/Zotlabs/Lib/SuperCurl.php', 'Zotlabs\\Lib\\System' => __DIR__ . '/../..' . '/Zotlabs/Lib/System.php', 'Zotlabs\\Lib\\Techlevels' => __DIR__ . '/../..' . '/Zotlabs/Lib/Techlevels.php', @@ -916,7 +920,6 @@ class ComposerStaticInit7b34d7e50a62201ec5d5e526a5b8b35d 'Zotlabs\\Module\\Admin\\Security' => __DIR__ . '/../..' . '/Zotlabs/Module/Admin/Security.php', 'Zotlabs\\Module\\Admin\\Site' => __DIR__ . '/../..' . '/Zotlabs/Module/Admin/Site.php', 'Zotlabs\\Module\\Admin\\Themes' => __DIR__ . '/../..' . '/Zotlabs/Module/Admin/Themes.php', - 'Zotlabs\\Module\\Ap_probe' => __DIR__ . '/../..' . '/Zotlabs/Module/Ap_probe.php', 'Zotlabs\\Module\\Api' => __DIR__ . '/../..' . '/Zotlabs/Module/Api.php', 'Zotlabs\\Module\\Appman' => __DIR__ . '/../..' . '/Zotlabs/Module/Appman.php', 'Zotlabs\\Module\\Apporder' => __DIR__ . '/../..' . '/Zotlabs/Module/Apporder.php', @@ -929,6 +932,8 @@ class ComposerStaticInit7b34d7e50a62201ec5d5e526a5b8b35d 'Zotlabs\\Module\\Bookmarks' => __DIR__ . '/../..' . '/Zotlabs/Module/Bookmarks.php', 'Zotlabs\\Module\\Branchtopic' => __DIR__ . '/../..' . '/Zotlabs/Module/Branchtopic.php', 'Zotlabs\\Module\\Cal' => __DIR__ . '/../..' . '/Zotlabs/Module/Cal.php', + 'Zotlabs\\Module\\Card_edit' => __DIR__ . '/../..' . '/Zotlabs/Module/Card_edit.php', + 'Zotlabs\\Module\\Cards' => __DIR__ . '/../..' . '/Zotlabs/Module/Cards.php', 'Zotlabs\\Module\\Cdav' => __DIR__ . '/../..' . '/Zotlabs/Module/Cdav.php', 'Zotlabs\\Module\\Changeaddr' => __DIR__ . '/../..' . '/Zotlabs/Module/Changeaddr.php', 'Zotlabs\\Module\\Channel' => __DIR__ . '/../..' . '/Zotlabs/Module/Channel.php', @@ -979,6 +984,7 @@ class ComposerStaticInit7b34d7e50a62201ec5d5e526a5b8b35d 'Zotlabs\\Module\\Lockview' => __DIR__ . '/../..' . '/Zotlabs/Module/Lockview.php', 'Zotlabs\\Module\\Locs' => __DIR__ . '/../..' . '/Zotlabs/Module/Locs.php', 'Zotlabs\\Module\\Login' => __DIR__ . '/../..' . '/Zotlabs/Module/Login.php', + 'Zotlabs\\Module\\Logout' => __DIR__ . '/../..' . '/Zotlabs/Module/Logout.php', 'Zotlabs\\Module\\Lostpass' => __DIR__ . '/../..' . '/Zotlabs/Module/Lostpass.php', 'Zotlabs\\Module\\Magic' => __DIR__ . '/../..' . '/Zotlabs/Module/Magic.php', 'Zotlabs\\Module\\Mail' => __DIR__ . '/../..' . '/Zotlabs/Module/Mail.php', @@ -999,6 +1005,7 @@ class ComposerStaticInit7b34d7e50a62201ec5d5e526a5b8b35d 'Zotlabs\\Module\\Oexchange' => __DIR__ . '/../..' . '/Zotlabs/Module/Oexchange.php', 'Zotlabs\\Module\\Ofeed' => __DIR__ . '/../..' . '/Zotlabs/Module/Ofeed.php', 'Zotlabs\\Module\\Online' => __DIR__ . '/../..' . '/Zotlabs/Module/Online.php', + 'Zotlabs\\Module\\Owa' => __DIR__ . '/../..' . '/Zotlabs/Module/Owa.php', 'Zotlabs\\Module\\Page' => __DIR__ . '/../..' . '/Zotlabs/Module/Page.php', 'Zotlabs\\Module\\Pconfig' => __DIR__ . '/../..' . '/Zotlabs/Module/Pconfig.php', 'Zotlabs\\Module\\Pdledit' => __DIR__ . '/../..' . '/Zotlabs/Module/Pdledit.php', @@ -1065,6 +1072,7 @@ class ComposerStaticInit7b34d7e50a62201ec5d5e526a5b8b35d 'Zotlabs\\Module\\Toggle_safesearch' => __DIR__ . '/../..' . '/Zotlabs/Module/Toggle_safesearch.php', 'Zotlabs\\Module\\Token' => __DIR__ . '/../..' . '/Zotlabs/Module/Token.php', 'Zotlabs\\Module\\Uexport' => __DIR__ . '/../..' . '/Zotlabs/Module/Uexport.php', + 'Zotlabs\\Module\\Update_cards' => __DIR__ . '/../..' . '/Zotlabs/Module/Update_cards.php', 'Zotlabs\\Module\\Update_channel' => __DIR__ . '/../..' . '/Zotlabs/Module/Update_channel.php', 'Zotlabs\\Module\\Update_display' => __DIR__ . '/../..' . '/Zotlabs/Module/Update_display.php', 'Zotlabs\\Module\\Update_home' => __DIR__ . '/../..' . '/Zotlabs/Module/Update_home.php', @@ -1104,6 +1112,7 @@ class ComposerStaticInit7b34d7e50a62201ec5d5e526a5b8b35d 'Zotlabs\\Web\\CheckJS' => __DIR__ . '/../..' . '/Zotlabs/Web/CheckJS.php', 'Zotlabs\\Web\\Controller' => __DIR__ . '/../..' . '/Zotlabs/Web/Controller.php', 'Zotlabs\\Web\\HTTPHeaders' => __DIR__ . '/../..' . '/Zotlabs/Web/HTTPHeaders.php', + 'Zotlabs\\Web\\HTTPSig' => __DIR__ . '/../..' . '/Zotlabs/Web/HTTPSig.php', 'Zotlabs\\Web\\HttpMeta' => __DIR__ . '/../..' . '/Zotlabs/Web/HttpMeta.php', 'Zotlabs\\Web\\Router' => __DIR__ . '/../..' . '/Zotlabs/Web/Router.php', 'Zotlabs\\Web\\Session' => __DIR__ . '/../..' . '/Zotlabs/Web/Session.php', @@ -1125,6 +1134,7 @@ class ComposerStaticInit7b34d7e50a62201ec5d5e526a5b8b35d 'Zotlabs\\Widget\\Chatroom_members' => __DIR__ . '/../..' . '/Zotlabs/Widget/Chatroom_members.php', 'Zotlabs\\Widget\\Clock' => __DIR__ . '/../..' . '/Zotlabs/Widget/Clock.php', 'Zotlabs\\Widget\\Collections' => __DIR__ . '/../..' . '/Zotlabs/Widget/Collections.php', + 'Zotlabs\\Widget\\Common_friends' => __DIR__ . '/../..' . '/Zotlabs/Widget/Common_friends.php', 'Zotlabs\\Widget\\Conversations' => __DIR__ . '/../..' . '/Zotlabs/Widget/Conversations.php', 'Zotlabs\\Widget\\Cover_photo' => __DIR__ . '/../..' . '/Zotlabs/Widget/Cover_photo.php', 'Zotlabs\\Widget\\Design_tools' => __DIR__ . '/../..' . '/Zotlabs/Widget/Design_tools.php', @@ -1141,6 +1151,7 @@ class ComposerStaticInit7b34d7e50a62201ec5d5e526a5b8b35d 'Zotlabs\\Widget\\Mailmenu' => __DIR__ . '/../..' . '/Zotlabs/Widget/Mailmenu.php', 'Zotlabs\\Widget\\Menu_preview' => __DIR__ . '/../..' . '/Zotlabs/Widget/Menu_preview.php', 'Zotlabs\\Widget\\Notes' => __DIR__ . '/../..' . '/Zotlabs/Widget/Notes.php', + 'Zotlabs\\Widget\\Notifications' => __DIR__ . '/../..' . '/Zotlabs/Widget/Notifications.php', 'Zotlabs\\Widget\\Photo' => __DIR__ . '/../..' . '/Zotlabs/Widget/Photo.php', 'Zotlabs\\Widget\\Photo_albums' => __DIR__ . '/../..' . '/Zotlabs/Widget/Photo_albums.php', 'Zotlabs\\Widget\\Photo_rand' => __DIR__ . '/../..' . '/Zotlabs/Widget/Photo_rand.php', From e424ae0473561b0ab612ead3ee7191e9a9564f32 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Tue, 24 Oct 2017 18:21:19 +0200 Subject: [PATCH 355/819] comment out statistics link in mod pubsites until we have something functional again --- Zotlabs/Module/Pubsites.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Zotlabs/Module/Pubsites.php b/Zotlabs/Module/Pubsites.php index ef02cf099..daec5dde3 100644 --- a/Zotlabs/Module/Pubsites.php +++ b/Zotlabs/Module/Pubsites.php @@ -30,7 +30,7 @@ class Pubsites extends \Zotlabs\Web\Controller { if($ret['success']) { $j = json_decode($ret['body'],true); if($j) { - $o .= ''; + $o .= '
    ' . t('Hub URL') . '' . t('Access Type') . '' . t('Registration Policy') . '' . t('Stats') . '' . t('Software') . '
    '; if($rating_enabled) $o .= ''; $o .= ''; @@ -55,7 +55,7 @@ class Pubsites extends \Zotlabs\Web\Controller { $location = '
     '; } $urltext = str_replace(array('https://'), '', $jj['url']); - $o .= ''; + $o .= ''; if($rating_enabled) $o .= '' . $rate_links ; $o .= ''; From bc890d303833f4a3362d81533a2fd092dd8e5032 Mon Sep 17 00:00:00 2001 From: Mario Date: Tue, 24 Oct 2017 19:43:06 +0200 Subject: [PATCH 356/819] version RC1 --- boot.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boot.php b/boot.php index 141f349f4..33a3cb037 100755 --- a/boot.php +++ b/boot.php @@ -49,7 +49,7 @@ require_once('include/hubloc.php'); require_once('include/attach.php'); define ( 'PLATFORM_NAME', 'hubzilla' ); -define ( 'STD_VERSION', '2.8RC' ); +define ( 'STD_VERSION', '2.8RC1' ); define ( 'ZOT_REVISION', '1.3' ); define ( 'DB_UPDATE_VERSION', 1196 ); From 69b22e3f7916b5ba19b5ed03a55ad72bf5995291 Mon Sep 17 00:00:00 2001 From: Mario Date: Wed, 25 Oct 2017 13:27:30 +0200 Subject: [PATCH 357/819] bump version and update changelog --- CHANGELOG | 2 +- boot.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index e547e1fbe..647b84275 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,4 +1,4 @@ -Hubzilla 2.8 (????-??-??) +Hubzilla 2.8 (2017-10-25) - Redirect to be moderated items to /moderate - Update notifications if notifications area remains open - Create an actual logout module instead of relying on internal variables diff --git a/boot.php b/boot.php index 33a3cb037..e06580d41 100755 --- a/boot.php +++ b/boot.php @@ -49,7 +49,7 @@ require_once('include/hubloc.php'); require_once('include/attach.php'); define ( 'PLATFORM_NAME', 'hubzilla' ); -define ( 'STD_VERSION', '2.8RC1' ); +define ( 'STD_VERSION', '2.8' ); define ( 'ZOT_REVISION', '1.3' ); define ( 'DB_UPDATE_VERSION', 1196 ); From 5cf06a679c20ba241c6c929dc386762d66f5f1fc Mon Sep 17 00:00:00 2001 From: Andrew Manning Date: Tue, 24 Oct 2017 21:41:49 -0400 Subject: [PATCH 358/819] Context help for cards --- doc/context/en/cards/help.html | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 doc/context/en/cards/help.html diff --git a/doc/context/en/cards/help.html b/doc/context/en/cards/help.html new file mode 100644 index 000000000..9dbed3f97 --- /dev/null +++ b/doc/context/en/cards/help.html @@ -0,0 +1,20 @@ +
    +
    General
    +
    Cards represent a persistent area for collaboration that is separate from the social stream. They are somewhat more lightweight than webpages and wikis for quick organisation of information and have the advantage of allowing collaboration and commentary. They are well suited for helping to organise complex tasks where there are frequent updates and feedback. +
    +
    Add Card
    +
    + Creating a new card is very similar to composing a new post.

    +
      +
    • + Page link name: The page link name is the name of the card for the static URL +
    • +
    • + Title: The title is displayed at the top of the card +
    • +
    • + Categories: If you have the Post Categories feature enabled for your channel, then you can add categories to the card. These categories populate the Categories list on the left panel and allow filtering your collection of cards. +
    • +
    +
    +
    From 9a8071e01485e1ae9cdb91fc4d0eae04eb745d53 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20Jim=C3=A9nez=20Friaza?= Date: Sat, 28 Oct 2017 12:54:57 +0200 Subject: [PATCH 359/819] Spanish translation revised again. --- view/es-es/hmessages.po | 10 +++++----- view/es-es/hstrings.php | 8 ++++---- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/view/es-es/hmessages.po b/view/es-es/hmessages.po index 901c37572..0fc1ed3ba 100644 --- a/view/es-es/hmessages.po +++ b/view/es-es/hmessages.po @@ -14,7 +14,7 @@ msgstr "" "Project-Id-Version: Redmatrix\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2017-10-19 12:01+0200\n" -"PO-Revision-Date: 2017-10-20 10:42+0000\n" +"PO-Revision-Date: 2017-10-28 10:20+0000\n" "Last-Translator: Manuel Jiménez Friaza \n" "Language-Team: Spanish (Spain) (http://www.transifex.com/Friendica/red-matrix/language/es_ES/)\n" "MIME-Version: 1.0\n" @@ -3490,7 +3490,7 @@ msgstr "Podría reducir la actividad de spam" #: ../../Zotlabs/Module/Settings/Channel.php:512 msgid "Default Privacy Group" -msgstr "Grupo de canales por defecto" +msgstr "Grupo de canales predeterminado" #: ../../Zotlabs/Module/Settings/Channel.php:514 msgid "Use my default audience setting for the type of object published" @@ -4817,7 +4817,7 @@ msgstr "Tipo" #: ../../Zotlabs/Module/Wiki.php:211 msgid "Any type" -msgstr "Cualquier tipo" +msgstr "Cualquier tipo" #: ../../Zotlabs/Module/Wiki.php:218 msgid "Lock content type" @@ -7328,7 +7328,7 @@ msgstr "0. Principiante/Básico" #: ../../Zotlabs/Lib/Techlevels.php:11 msgid "1. Novice - not skilled but willing to learn" -msgstr "1. Novicio - no está preparado pero está dispuestos a aprender" +msgstr "1. Novato: no cualificado, pero dispuesto a aprender" #: ../../Zotlabs/Lib/Techlevels.php:12 msgid "2. Intermediate - somewhat comfortable" @@ -7344,7 +7344,7 @@ msgstr "4. Experto - Puedo escribir código informático" #: ../../Zotlabs/Lib/Techlevels.php:15 msgid "5. Wizard - I probably know more than you do" -msgstr "5. Asistente - probablemente sé más que tú" +msgstr "5. Colaborador - probablemente sé más que tú" #: ../../Zotlabs/Lib/Apps.php:225 msgid "Site Admin" diff --git a/view/es-es/hstrings.php b/view/es-es/hstrings.php index 1a3c6d997..f2f46d234 100644 --- a/view/es-es/hstrings.php +++ b/view/es-es/hstrings.php @@ -703,7 +703,7 @@ App::$strings["This website does not expire imported content."] = "Este sitio we App::$strings["The website limit takes precedence if lower than your limit."] = "El límite del sitio web tiene prioridad si es inferior a su propio límite."; App::$strings["Maximum Friend Requests/Day:"] = "Máximo de solicitudes de amistad por día:"; App::$strings["May reduce spam activity"] = "Podría reducir la actividad de spam"; -App::$strings["Default Privacy Group"] = "Grupo de canales por defecto"; +App::$strings["Default Privacy Group"] = "Grupo de canales predeterminado"; App::$strings["Use my default audience setting for the type of object published"] = "Usar los ajustes de mi audiencia predeterminada para el tipo de publicación"; App::$strings["Channel permissions category:"] = "Categoría de los permisos del canal:"; App::$strings["Default Permissions Group"] = "Grupo de permisos predeterminados"; @@ -1010,7 +1010,7 @@ App::$strings["Markdown"] = "Markdown"; App::$strings["BBcode"] = "BBcode"; App::$strings["Text"] = "Texto"; App::$strings["Type"] = "Tipo"; -App::$strings["Any type"] = "Cualquier tipo"; +App::$strings["Any type"] = "Cualquier tipo"; App::$strings["Lock content type"] = "Tipo de contenido bloqueado"; App::$strings["Create a status post for this wiki"] = "Crear un mensaje de estado para este wiki"; App::$strings["Edit Wiki Name"] = "Editar el nombre del wiki"; @@ -1598,11 +1598,11 @@ App::$strings["Enter your email address and submit to have your password reset. App::$strings["Email Address"] = "Dirección de correo electrónico"; App::$strings["Mark all seen"] = "Marcar todo como visto"; App::$strings["0. Beginner/Basic"] = "0. Principiante/Básico"; -App::$strings["1. Novice - not skilled but willing to learn"] = "1. Novicio - no está preparado pero está dispuestos a aprender"; +App::$strings["1. Novice - not skilled but willing to learn"] = "1. Novato: no cualificado, pero dispuesto a aprender"; App::$strings["2. Intermediate - somewhat comfortable"] = "2. Intermedio - algo cómodo"; App::$strings["3. Advanced - very comfortable"] = "3. Avanzado - muy cómodo"; App::$strings["4. Expert - I can write computer code"] = "4. Experto - Puedo escribir código informático"; -App::$strings["5. Wizard - I probably know more than you do"] = "5. Asistente - probablemente sé más que tú"; +App::$strings["5. Wizard - I probably know more than you do"] = "5. Colaborador - probablemente sé más que tú"; App::$strings["Site Admin"] = "Administrador del sitio"; App::$strings["Report Bug"] = "Informe de errores"; App::$strings["Firefox Share"] = "Servicio de compartición de Firefox"; From 8467ecb1d7e71efb3d4fb016107b22a068642985 Mon Sep 17 00:00:00 2001 From: Haakon Meland Eriksen Date: Sun, 29 Oct 2017 16:41:49 +0100 Subject: [PATCH 360/819] Added mode to Portfolio widget --- Zotlabs/Widget/Portfolio.php | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/Zotlabs/Widget/Portfolio.php b/Zotlabs/Widget/Portfolio.php index 216ca952c..0cd043246 100644 --- a/Zotlabs/Widget/Portfolio.php +++ b/Zotlabs/Widget/Portfolio.php @@ -20,6 +20,15 @@ class Portfolio { $album = $args['album']; if($args['title']) $title = $args['title']; + if(array_key_exists('mode', $args) && isset($args['mode'])) + $mode = $args['mode']; + else + $mode = ''; + if(array_key_exists('count', $args) && isset($args['count'])) + $count = $args['count']; + else + $count = ''; + /** * This may return incorrect permissions if you have multiple directories of the same name. @@ -92,6 +101,8 @@ class Portfolio { $tpl = get_markup_template('photo_album_portfolio.tpl'); $o .= replace_macros($tpl, array( '$photos' => $photos, + '$mode' => $mode, + '$count' => $count, '$album' => (($title) ? $title : $album), '$album_id' => rand(), '$album_edit' => array(t('Edit Album'), $album_edit), @@ -106,3 +117,4 @@ class Portfolio { } } + From 12f33d2cd43502fb8ce7b3399a4c60e40c10f723 Mon Sep 17 00:00:00 2001 From: zotlabs Date: Wed, 1 Nov 2017 02:15:40 -0700 Subject: [PATCH 361/819] Maria's profile photo issue, please push to master. --- Zotlabs/Module/Profile_photo.php | 10 ++++++++-- include/zot.php | 4 ++++ 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/Zotlabs/Module/Profile_photo.php b/Zotlabs/Module/Profile_photo.php index 27e6bc445..411518c61 100644 --- a/Zotlabs/Module/Profile_photo.php +++ b/Zotlabs/Module/Profile_photo.php @@ -150,6 +150,14 @@ class Profile_photo extends \Zotlabs\Web\Controller { // If setting for the default profile, unset the profile photo flag from any other photos I own if($is_default_profile) { + + $r = q("update profile set photo = '%s', thumb = '%s' where is_default = 1 and uid = %d", + dbesc(z_root() . '/photo/profile/l/' . local_channel()), + dbesc(z_root() . '/photo/profile/m/' . local_channel()), + intval(local_channel()) + ); + + $r = q("UPDATE photo SET photo_usage = %d WHERE photo_usage = %d AND resource_id != '%s' AND uid = %d", intval(PHOTO_NORMAL), @@ -159,8 +167,6 @@ class Profile_photo extends \Zotlabs\Web\Controller { ); - - send_profile_photo_activity($channel,$base_image,$profile); } diff --git a/include/zot.php b/include/zot.php index 37c3c1444..9bb25dd6f 100644 --- a/include/zot.php +++ b/include/zot.php @@ -3649,6 +3649,7 @@ function process_channel_sync_delivery($sender, $arr, $deliveries) { $disallowed = array('id','aid','uid','guid'); foreach($arr['profile'] as $profile) { + $x = q("select * from profile where profile_guid = '%s' and uid = %d limit 1", dbesc($profile['profile_guid']), intval($channel['channel_id']) @@ -3671,6 +3672,9 @@ function process_channel_sync_delivery($sender, $arr, $deliveries) { if(in_array($k,$disallowed)) continue; + if($profile['is_default'] && in_array($k,['photo','thumb'])) + continue; + if($k === 'name') $clean['fullname'] = $v; elseif($k === 'with') From cf5beafcfd6287abaacadc2ae2f6ac196c4a7adc Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Thu, 2 Nov 2017 08:44:46 +0100 Subject: [PATCH 362/819] fix issues with diaspora xchans --- Zotlabs/Module/Mail.php | 4 ++-- include/message.php | 6 +++--- include/text.php | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Zotlabs/Module/Mail.php b/Zotlabs/Module/Mail.php index 12f3b8152..b58b169d0 100644 --- a/Zotlabs/Module/Mail.php +++ b/Zotlabs/Module/Mail.php @@ -19,7 +19,7 @@ class Mail extends \Zotlabs\Web\Controller { $replyto = ((x($_REQUEST,'replyto')) ? notags(trim($_REQUEST['replyto'])) : ''); $subject = ((x($_REQUEST,'subject')) ? notags(trim($_REQUEST['subject'])) : ''); $body = ((x($_REQUEST,'body')) ? escape_tags(trim($_REQUEST['body'])) : ''); - $recipient = ((x($_REQUEST,'messageto')) ? notags(trim($_REQUEST['messageto'])) : ''); + $recipient = ((x($_REQUEST,'messageto')) ? notags(trim(urldecode($_REQUEST['messageto']))) : ''); $rstr = ((x($_REQUEST,'messagerecip')) ? notags(trim($_REQUEST['messagerecip'])) : ''); $preview = ((x($_REQUEST,'preview')) ? intval($_REQUEST['preview']) : 0); $expires = ((x($_REQUEST,'expires')) ? datetime_convert(date_default_timezone_get(),'UTC', $_REQUEST['expires']) : NULL_DATE); @@ -124,7 +124,7 @@ class Mail extends \Zotlabs\Web\Controller { // We have a local_channel, let send_message use the session channel and save a lookup $ret = send_message(0, $recipient, $body, $subject, $replyto, $expires, $mimetype, $raw); - + if($ret['success']) { xchan_mail_query($ret['mail']); build_sync_packet(0,array('conv' => array($ret['conv']),'mail' => array(encode_mail($ret['mail'],true)))); diff --git a/include/message.php b/include/message.php index 3f003e020..477c7172c 100644 --- a/include/message.php +++ b/include/message.php @@ -381,7 +381,7 @@ function private_messages_list($uid, $mailbox = '', $start = 0, $numitems = 0) { $chans[] = $s; } - $c = q("select * from xchan where xchan_hash in (" . implode(',',$chans) . ")"); + $c = q("select * from xchan where xchan_hash in (" . protect_sprintf(implode(',',$chans)) . ")"); foreach($r as $k => $rr) { $r[$k]['from'] = find_xchan_in_array($rr['from_xchan'],$c); @@ -420,7 +420,7 @@ function private_messages_fetch_message($channel_id, $messageitem_id, $updatesee $chans[] = $s; } - $c = q("select * from xchan where xchan_hash in (" . implode(',',$chans) . ")"); + $c = q("select * from xchan where xchan_hash in (" . protect_sprintf(implode(',',$chans)) . ")"); foreach($messages as $k => $message) { $messages[$k]['from'] = find_xchan_in_array($message['from_xchan'],$c); @@ -545,7 +545,7 @@ function private_messages_fetch_conversation($channel_id, $messageitem_id, $upda } - $c = q("select * from xchan where xchan_hash in (" . implode(',',$chans) . ")"); + $c = q("select * from xchan where xchan_hash in (" . protect_sprintf(implode(',',$chans)) . ")"); foreach($messages as $k => $message) { $messages[$k]['from'] = find_xchan_in_array($message['from_xchan'],$c); diff --git a/include/text.php b/include/text.php index d81b59d75..746c35679 100644 --- a/include/text.php +++ b/include/text.php @@ -2160,7 +2160,7 @@ function xchan_mail_query(&$item) { if(count($arr)) { $chans = q("select xchan.*,hubloc.* from xchan left join hubloc on hubloc_hash = xchan_hash - where xchan_hash in (" . implode(',', $arr) . ") and hubloc_primary = 1"); + where xchan_hash in (" . protect_sprintf(implode(',', $arr)) . ") and hubloc_primary = 1"); } if($chans) { $item['from'] = find_xchan_in_array($item['from_xchan'],$chans); From 6e48c365191e750941b5a9839ba9940242c9f313 Mon Sep 17 00:00:00 2001 From: zotlabs Date: Fri, 3 Nov 2017 14:20:49 -0700 Subject: [PATCH 363/819] imagedata not set correctly if large photo AND imagick is not installed --- include/photos.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/include/photos.php b/include/photos.php index 5de68f162..503a725cd 100644 --- a/include/photos.php +++ b/include/photos.php @@ -75,6 +75,9 @@ function photo_upload($channel, $observer, $args) { $imagedata = @file_get_contents($tmp_name); @unlink($tmp_name); } + else { + $imagedata = @file_get_contents($args['os_syspath']); + } } else { $imagedata = @file_get_contents($args['os_syspath']); From 4be48b8d8b9856fb7f687999a00f218fb164760a Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Mon, 6 Nov 2017 09:34:20 +0100 Subject: [PATCH 364/819] fix unable to mark all messages read --- Zotlabs/Module/Ping.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Zotlabs/Module/Ping.php b/Zotlabs/Module/Ping.php index c91659f2f..cda42f426 100644 --- a/Zotlabs/Module/Ping.php +++ b/Zotlabs/Module/Ping.php @@ -221,7 +221,7 @@ class Ping extends \Zotlabs\Web\Controller { intval(local_channel()) ); break; - case 'messages': + case 'mail': $r = q("update mail set mail_seen = 1 where mail_seen = 0 and channel_id = %d ", intval(local_channel()) ); From fccc1da66677ac2c9073f499337c93330c4d757c Mon Sep 17 00:00:00 2001 From: Andrew Manning Date: Thu, 2 Nov 2017 05:58:08 -0400 Subject: [PATCH 365/819] Add Manuel's Spanish translations for context help --- doc/context/es-es/appman/help.html | 4 ++++ doc/context/es-es/apps/edit/help.html | 4 ++++ doc/context/es-es/apps/help.html | 6 ++++++ doc/context/es-es/cards/help.html | 19 +++++++++++++++++++ doc/context/es-es/cloud/help.html | 13 ++++++------- 5 files changed, 39 insertions(+), 7 deletions(-) create mode 100644 doc/context/es-es/appman/help.html create mode 100644 doc/context/es-es/apps/edit/help.html create mode 100644 doc/context/es-es/apps/help.html create mode 100644 doc/context/es-es/cards/help.html diff --git a/doc/context/es-es/appman/help.html b/doc/context/es-es/appman/help.html new file mode 100644 index 000000000..1b799a52b --- /dev/null +++ b/doc/context/es-es/appman/help.html @@ -0,0 +1,4 @@ +
    +
    General
    +
    Editar las propiedades individuales de la aplicación seleccionada. Las categorías le permiten ordenar sus aplicaciones para ayudarle a encontrarlas más fácilmente en la lista. El soporte para aplicaciones personalizadas que usted o su administrador puedan elegir para crear incluye campos como "Precio de la aplicación" y "Ubicación para la compra" que no son aplicables a las aplicaciones principales de Hubzilla.
    +
    \ No newline at end of file diff --git a/doc/context/es-es/apps/edit/help.html b/doc/context/es-es/apps/edit/help.html new file mode 100644 index 000000000..28e92328e --- /dev/null +++ b/doc/context/es-es/apps/edit/help.html @@ -0,0 +1,4 @@ +
    +
    General
    +
    Modificar o eliminar sus "apps" usando el botón de control que está junto al icono de cada aplicación de la lista.
    +
    \ No newline at end of file diff --git a/doc/context/es-es/apps/help.html b/doc/context/es-es/apps/help.html new file mode 100644 index 000000000..996889d10 --- /dev/null +++ b/doc/context/es-es/apps/help.html @@ -0,0 +1,6 @@ +
    +
    General
    +
    Esta página le muestra qué aplicaciones están disponibles para su canal, incluyendo tanto las aplicaciones principales como las proporcionadas por addons. Para añadir una aplicación al menú de aplicaciones "estrelle" la aplicación de la siguiente lista.
    . +
    Gestionar las aplicaciones (apps)
    +
    Pulse el botón "Gestionar aplicaciones" para abrir una página en la podrá editar el nombre, las categorías y otras propiedades de sus aplicaciones.
    +
    \ No newline at end of file diff --git a/doc/context/es-es/cards/help.html b/doc/context/es-es/cards/help.html new file mode 100644 index 000000000..34889cd25 --- /dev/null +++ b/doc/context/es-es/cards/help.html @@ -0,0 +1,19 @@ +
    +
    General
    +
    Las fichas representan un área persistente para la colaboración que está separada del stream social. Son algo más ligeras que las páginas web y los wikis para una rápida organización de la información y tienen la ventaja de permitir la colaboración y los comentarios. Son muy adecuados para ayudar a organizar tareas complejas en las que hay actualizaciones y retroalimentación frecuentes.
    +
    Añadir una ficha
    +
    + Crear una ficha nueva es muy parecido a componer un nuevo post.

    +
      +
    • + Nombre del enlace de la página: Este nombre es el de la ficha para una URL estática +
    • +
    • + Título: El título se muestra en la parte de arriba de la ficha +
    • +
    • + Categorías: Si tiene activada la opción Temas de las entradas en su canal, entonces puede añadirlas a la ficha. Estas categorías o temas se despliegan en la lista Temas en el panel de la izquierda y permiten filtrar su colección de fichas. +
    • +
    +
    +
    \ No newline at end of file diff --git a/doc/context/es-es/cloud/help.html b/doc/context/es-es/cloud/help.html index 824fa5a94..af891da17 100644 --- a/doc/context/es-es/cloud/help.html +++ b/doc/context/es-es/cloud/help.html @@ -1,7 +1,6 @@ -
    -
    General
    -
    Esta página muestra los ficheros en la "nube" de un canal. Los archivos visibles para el observador dependen de los permisos de archivo individuales establecidas por - el propietario del canal. Si tiene permiso para crear o cargar ficheros, verá botones de control por encima de la lista de ficheros.
    -
    Pestañas de los contenidos del canal
    -
    Las pestañas de los contenidos del canal son enlaces a otros contenidos publicados por el canal. La pestaña "Mi perfil" enlaza con el perfil del canal. La pestaña "Fotos" enlaza con las galerías de fotos. La pestaña "Ficheros" enlaza con los ficheros de cualquier tipo compartidos por el canal.
    -
    +
    +
    General
    +
    Esta página muestra los archivos "cloud" de un canal. Los archivos visibles para el observador dependen de los permisos de fichero individuales establecidos por el propietario del canal. Si tiene permiso para crear o cargar archivos verá botones de control encima de la lista de ficheros.
    +
    Pestañas de contenidos del canal
    +
    Las pestañas de contenidos del canal son enlaces a otros contenidos publicados por el canal. La pestaña Mi canal enlaza con el perfil del canal. La pestaña Fotos enlaza con las galerías de fotos del canal. La pestaña Ficheros enlaza con los ficheros compartidos publicados por el canal.
    +
    \ No newline at end of file From bd3e5156c4d26e47b08b0b09755535230239ed5a Mon Sep 17 00:00:00 2001 From: Andrew Manning Date: Sat, 4 Nov 2017 06:56:50 -0400 Subject: [PATCH 366/819] Update help.html --- doc/context/es-es/apps/help.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/context/es-es/apps/help.html b/doc/context/es-es/apps/help.html index 996889d10..77169cb48 100644 --- a/doc/context/es-es/apps/help.html +++ b/doc/context/es-es/apps/help.html @@ -1,6 +1,6 @@
    General
    -
    Esta página le muestra qué aplicaciones están disponibles para su canal, incluyendo tanto las aplicaciones principales como las proporcionadas por addons. Para añadir una aplicación al menú de aplicaciones "estrelle" la aplicación de la siguiente lista.
    . +
    Esta página le muestra qué aplicaciones están disponibles para su canal, incluyendo tanto las aplicaciones principales como las proporcionadas por addons. Para añadir una aplicación al menú de aplicaciones "estrelle" la aplicación de la siguiente lista.
    .
    Gestionar las aplicaciones (apps)
    Pulse el botón "Gestionar aplicaciones" para abrir una página en la podrá editar el nombre, las categorías y otras propiedades de sus aplicaciones.
    -
    \ No newline at end of file + From 5dec3ff18e1659a1c04d0ad902e6dc1cb0a7dd04 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Mon, 6 Nov 2017 12:28:12 +0100 Subject: [PATCH 367/819] update es-es help.html --- doc/context/es-es/apps/help.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/context/es-es/apps/help.html b/doc/context/es-es/apps/help.html index 77169cb48..a6bfd0093 100644 --- a/doc/context/es-es/apps/help.html +++ b/doc/context/es-es/apps/help.html @@ -1,6 +1,6 @@
    General
    -
    Esta página le muestra qué aplicaciones están disponibles para su canal, incluyendo tanto las aplicaciones principales como las proporcionadas por addons. Para añadir una aplicación al menú de aplicaciones "estrelle" la aplicación de la siguiente lista.
    . +
    Esta página le muestra qué aplicaciones están disponibles para su canal, incluyendo tanto las aplicaciones principales como las proporcionadas por addons. Para añadir una aplicación al menú de aplicaciones "estrelle" la aplicación de la siguiente lista.
    Gestionar las aplicaciones (apps)
    Pulse el botón "Gestionar aplicaciones" para abrir una página en la podrá editar el nombre, las categorías y otras propiedades de sus aplicaciones.
    From 47fab9721042d1adc5db3e1c5fe166a29cb41c0f Mon Sep 17 00:00:00 2001 From: zotlabs Date: Mon, 6 Nov 2017 17:08:48 -0800 Subject: [PATCH 368/819] bring back tabindex to submit comments --- view/js/main.js | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/view/js/main.js b/view/js/main.js index 882f50e8a..c3873d823 100644 --- a/view/js/main.js +++ b/view/js/main.js @@ -32,7 +32,12 @@ function handle_comment_form(e) { var fields_empty = true; if(form.find('.comment-edit-text').length) { - form.find('.comment-edit-text').addClass('expanded').removeAttr('placeholder'); + var commentElm = form.find('.comment-edit-text').attr('id'); + var submitElm = commentElm.replace(/text/,'submit'); + + $('#' + commentElm).addClass('expanded').removeAttr('placeholder'); + $('#' + commentElm).attr('tabindex','9'); + $('#' + submitElm).attr('tabindex','10'); form.find(':not(:visible)').show(); } @@ -43,7 +48,12 @@ function handle_comment_form(e) { fields_empty = false; }); if(fields_empty) { - form.find('.comment-edit-text').removeClass('expanded').attr('placeholder', aStr.comment); + var emptyCommentElm = form.find('.comment-edit-text').attr('id'); + var emptySubmitElm = commentElm.replace(/text/,'submit'); + + $('#' + emptyCommentElm).removeClass('expanded').attr('placeholder', aStr.comment); + $('#' + emptyCommentElm).removeAttr('tabindex'); + $('#' + emptySubmitElm).removeAttr('tabindex'); form.find(':not(.comment-edit-text)').hide(); } }); From 96d439bcee2990400f39c7cc0e5bd1596ae1d221 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Tue, 7 Nov 2017 10:43:13 +0100 Subject: [PATCH 369/819] add location info to the navbar --- include/nav.php | 12 +++++++----- view/tpl/navbar_default.tpl | 12 +++++++++--- 2 files changed, 16 insertions(+), 8 deletions(-) diff --git a/include/nav.php b/include/nav.php index 89947e270..f70e5cb3b 100644 --- a/include/nav.php +++ b/include/nav.php @@ -27,6 +27,8 @@ function nav($template = 'default') { EOT; + $is_owner = (((local_channel()) && ((App::$profile_uid == local_channel()) || (App::$profile_uid == 0))) ? true : false); + if(local_channel()) { $channel = App::get_channel(); $observer = App::get_observer(); @@ -39,17 +41,17 @@ EOT; intval(get_account_id()) ); } + $sitelocation = (($is_owner) ? '' : App::$profile['reddress']); } - elseif(remote_channel()) + elseif(remote_channel()) { $observer = App::get_observer(); + $sitelocation = ((App::$profile['reddress']) ? App::$profile['reddress'] : '@' . App::get_hostname()); + } require_once('include/conversation.php'); - $is_owner = (((local_channel()) && ((App::$profile_uid == local_channel()) || (App::$profile_uid == 0))) ? true : false); + $channel_apps[] = channel_apps($is_owner, App::$profile['channel_address']); - $myident = (($channel) ? $channel['xchan_addr'] : ''); - - $sitelocation = (($myident) ? $myident : App::get_hostname()); /** * diff --git a/view/tpl/navbar_default.tpl b/view/tpl/navbar_default.tpl index b330993c8..4f0b9a110 100755 --- a/view/tpl/navbar_default.tpl +++ b/view/tpl/navbar_default.tpl @@ -17,8 +17,8 @@ {{/if}} {{if $userinfo}} - - +{{if $sel.name}} {{/if}} +{{/if}} - -
    - -
    -
    -
    - {{if $profselect}} - - {{$profselect}} - {{/if}} - {{if $menus}} -
    - - -
    - {{/if}} - {{if $misc_addon}} - {{$misc_addon}} - {{/if}} -
    -
    - -
    -
    -
    -
    {{$aclselect}} From 0a840c02f73b224f40c8a985a7b57d950aa7be48 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Sat, 6 Oct 2018 18:48:29 +0000 Subject: [PATCH 726/819] another db update to get rid of the old view bookmarks entries (cherry picked from commit 6ffdf3880f89b83c701f866a6188ef6f079078c5) --- Zotlabs/Update/_1223.php | 23 +++++++++++++++++++++++ boot.php | 2 +- 2 files changed, 24 insertions(+), 1 deletion(-) create mode 100644 Zotlabs/Update/_1223.php diff --git a/Zotlabs/Update/_1223.php b/Zotlabs/Update/_1223.php new file mode 100644 index 000000000..c6f05c806 --- /dev/null +++ b/Zotlabs/Update/_1223.php @@ -0,0 +1,23 @@ + Date: Sat, 6 Oct 2018 18:55:28 +0000 Subject: [PATCH 727/819] give apps some more space and prevent linebreaks in app names. Add ellipsis to too long names. (cherry picked from commit 62433b5f0527f4fa232134a1f1e8a67739d3b711) --- view/css/mod_apps.css | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/view/css/mod_apps.css b/view/css/mod_apps.css index 5e6000fb4..608027bd4 100644 --- a/view/css/mod_apps.css +++ b/view/css/mod_apps.css @@ -1,9 +1,12 @@ .app-container { float: left; - width: 148px; - margin: 20px; + width: 180px; + margin: 35px; } .app-name { + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; margin: 10px 0px; } From b4035c2d1937d80f522fec73e1e54c4f9bbe3ea1 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Sat, 6 Oct 2018 19:01:00 +0000 Subject: [PATCH 728/819] those 3px make a difference on medium sized screens (cherry picked from commit 65dcb39bacc6a7d2376f0994b907853eb80a3361) --- view/css/mod_apps.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/view/css/mod_apps.css b/view/css/mod_apps.css index 608027bd4..62777bb39 100644 --- a/view/css/mod_apps.css +++ b/view/css/mod_apps.css @@ -1,6 +1,6 @@ .app-container { float: left; - width: 180px; + width: 177px; margin: 35px; } From 88d28cd6fe4b764cb77ce033692132a1a76421d8 Mon Sep 17 00:00:00 2001 From: Mario Date: Sat, 6 Oct 2018 21:02:11 +0200 Subject: [PATCH 729/819] minor version --- boot.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boot.php b/boot.php index e56743471..18df80c59 100755 --- a/boot.php +++ b/boot.php @@ -50,7 +50,7 @@ require_once('include/attach.php'); require_once('include/bbcode.php'); define ( 'PLATFORM_NAME', 'hubzilla' ); -define ( 'STD_VERSION', '3.8RC1' ); +define ( 'STD_VERSION', '3.8RC1.1' ); define ( 'ZOT_REVISION', '6.0a' ); From 2eb93387c257045b746a6fb27d34a00b115158d5 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Sat, 6 Oct 2018 21:05:45 +0000 Subject: [PATCH 730/819] fix issue #1281 - hubloc default values (cherry picked from commit dd3ec468f65f05c0fbf233a161cffae2698bd3db) --- Zotlabs/Update/_1224.php | 25 +++++++++++++++++++++++++ boot.php | 2 +- install/schema_mysql.sql | 2 +- 3 files changed, 27 insertions(+), 2 deletions(-) create mode 100644 Zotlabs/Update/_1224.php diff --git a/Zotlabs/Update/_1224.php b/Zotlabs/Update/_1224.php new file mode 100644 index 000000000..d687afce7 --- /dev/null +++ b/Zotlabs/Update/_1224.php @@ -0,0 +1,25 @@ + Date: Sat, 6 Oct 2018 21:10:52 +0000 Subject: [PATCH 731/819] return success for postgres (cherry picked from commit 2d9fe72215f0853f9234f57466095ee762253d82) --- Zotlabs/Update/_1224.php | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) diff --git a/Zotlabs/Update/_1224.php b/Zotlabs/Update/_1224.php index d687afce7..d160cea5d 100644 --- a/Zotlabs/Update/_1224.php +++ b/Zotlabs/Update/_1224.php @@ -5,21 +5,24 @@ namespace Zotlabs\Update; class _1224 { function run() { - q("START TRANSACTION"); - if(ACTIVE_DBTYPE == DBTYPE_MYSQL) { + q("START TRANSACTION"); + $r1 = q("ALTER TABLE hubloc ALTER hubloc_id_url SET DEFAULT ''"); $r2 = q("ALTER TABLE hubloc ALTER hubloc_site_id SET DEFAULT ''"); - } - if($r1 && $r2) { - q("COMMIT"); + if($r1 && $r2) { + q("COMMIT"); + return UPDATE_SUCCESS; + } + + q("ROLLBACK"); + return UPDATE_FAILED; + } + if(ACTIVE_DBTYPE == DBTYPE_POSTGRES) { return UPDATE_SUCCESS; } - q("ROLLBACK"); - return UPDATE_FAILED; - } } From 78c6f40093cb803019ae9565094f1d7a19d3ff18 Mon Sep 17 00:00:00 2001 From: zotlabs Date: Fri, 5 Oct 2018 23:27:50 +0000 Subject: [PATCH 732/819] minor app cleanup (cherry picked from commit 835e222af0df627a262ab55e940f9d3808b6e000) --- Zotlabs/Lib/Apps.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Zotlabs/Lib/Apps.php b/Zotlabs/Lib/Apps.php index b40cf70e5..49863edca 100644 --- a/Zotlabs/Lib/Apps.php +++ b/Zotlabs/Lib/Apps.php @@ -269,7 +269,7 @@ class Apps { unset($ret); break; case 'custom_role': - if(get_pconfig(local_channel(),'system','permissions_role') != 'custom') + if(get_pconfig(local_channel(),'system','permissions_role') !== 'custom') unset($ret); break; case 'observer': @@ -531,8 +531,8 @@ class Apps { '$installed' => $installed, '$action_label' => (($hosturl && in_array($mode, ['view','install'])) ? $install_action : ''), '$edit' => ((local_channel() && $installed && $mode == 'edit') ? t('Edit') : ''), - '$delete' => ((local_channel() && $mode == 'edit') ? t('Delete') : ''), - '$undelete' => ((local_channel() && $mode == 'edit') ? t('Undelete') : ''), + '$delete' => ((local_channel() && $installed && $mode == 'edit') ? t('Delete') : ''), + '$undelete' => ((local_channel() && $installed && $mode == 'edit') ? t('Undelete') : ''), '$settings_url' => ((local_channel() && $installed && $mode == 'list') ? $papp['settings_url'] : ''), '$deleted' => $papp['deleted'], '$feature' => (($papp['embed'] || $mode == 'edit') ? false : true), @@ -981,7 +981,7 @@ class Apps { $arr['author'] = $sys['channel_hash']; } - if($arr['photo'] && (strpos($arr['photo'],'icon:') === false) && (! strpos($arr['photo'],z_root()))) { + if($arr['photo'] && (strpos($arr['photo'],'icon:') === false) && (strpos($arr['photo'],z_root()) !== false)) { $x = import_xchan_photo(str_replace('$baseurl',z_root(),$arr['photo']),get_observer_hash(),true); $arr['photo'] = $x[1]; } @@ -1067,7 +1067,7 @@ class Apps { if((! $darray['app_url']) || (! $darray['app_id'])) return $ret; - if($arr['photo'] && (strpos($arr['photo'],'icon:') === false) && (! strpos($arr['photo'],z_root()))) { + if($arr['photo'] && (strpos($arr['photo'],'icon:') === false) && (strpos($arr['photo'],z_root()) !== false)) { $x = import_xchan_photo(str_replace('$baseurl',z_root(),$arr['photo']),get_observer_hash(),true); $arr['photo'] = $x[1]; } From ed97800c805fbc9bd5ed7c3f18bcb51c82db4620 Mon Sep 17 00:00:00 2001 From: zotlabs Date: Sat, 6 Oct 2018 21:47:40 +0000 Subject: [PATCH 733/819] use hubloc_store_lowlevel to ensure all hubloc columns are initialised (cherry picked from commit 52be5c1660abb1f3f8c6a8f0ba09799615214c30) --- include/import.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/import.php b/include/import.php index 0fc24a26f..714161c57 100644 --- a/include/import.php +++ b/include/import.php @@ -234,7 +234,7 @@ function import_hublocs($channel, $hublocs, $seize, $moving = false) { if(($x = zot_gethub($arr,false)) === false) { unset($hubloc['hubloc_id']); - create_table_from_array('hubloc', $hubloc); + hubloc_store_lowlevel($hubloc); } else { q("UPDATE hubloc set hubloc_primary = %d, hubloc_deleted = %d where hubloc_id = %d", From 8ca321df7c742f4beed69bc92b3e28f978e56e04 Mon Sep 17 00:00:00 2001 From: "M.Dent" Date: Sun, 7 Oct 2018 03:02:22 +0000 Subject: [PATCH 734/819] Add missing else clause (cherry picked from commit 259db3778c9385b9e4811e495146267b14b67a46) --- include/plugin.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/include/plugin.php b/include/plugin.php index fdc62b3a7..ce081401d 100755 --- a/include/plugin.php +++ b/include/plugin.php @@ -1075,8 +1075,9 @@ function get_markup_template($s, $root = '') { $newroot .= '/'; } $template = $t->get_markup_template($s, $newroot); - } - $template = $t->get_markup_template($s, $root); + } else { + $template = $t->get_markup_template($s, $root); + } return $template; } } From 58a9cde61d797ca64e38dfafa41b2b37d6bffc39 Mon Sep 17 00:00:00 2001 From: "M. Dent" Date: Sun, 7 Oct 2018 17:43:03 +0000 Subject: [PATCH 735/819] Fix (potential) runaway cron (cherry picked from commit 108855aca212a858bf60d85d6418bae5450111d0) --- Zotlabs/Daemon/Master.php | 122 ++++++++++++++++++++++++++++++++++++-- 1 file changed, 118 insertions(+), 4 deletions(-) diff --git a/Zotlabs/Daemon/Master.php b/Zotlabs/Daemon/Master.php index 580df97db..6fb674d60 100644 --- a/Zotlabs/Daemon/Master.php +++ b/Zotlabs/Daemon/Master.php @@ -3,7 +3,6 @@ namespace Zotlabs\Daemon; if(array_search( __file__ , get_included_files()) === 0) { - require_once('include/cli_startup.php'); array_shift($argv); $argc = count($argv); @@ -17,14 +16,129 @@ if(array_search( __file__ , get_included_files()) === 0) { class Master { + static public $queueworker = null; + static public function Summon($arr) { proc_run('php','Zotlabs/Daemon/Master.php',$arr); } static public function Release($argc,$argv) { cli_startup(); - logger('Master: release: ' . print_r($argv,true), LOGGER_ALL,LOG_DEBUG); - $cls = '\\Zotlabs\\Daemon\\' . $argv[0]; - $cls::run($argc,$argv); + + $maxworkers = get_config('system','max_queue_workers'); + + if (!$maxworkers || $maxworkers == 0) { + logger('Master: release: ' . print_r($argv,true), LOGGER_ALL,LOG_DEBUG); + $cls = '\\Zotlabs\\Daemon\\' . $argv[0]; + $cls::run($argc,$argv); + self::ClearQueue(); + } else { + logger('Master: enqueue: ' . print_r($argv,true), LOGGER_ALL,LOG_DEBUG); + $workinfo = ['argc'=>$argc,'argv'=>$argv]; + q("insert into config (cat,k,v) values ('queuework','%s','%s')", + dbesc(uniqid('workitem:',true)), + dbesc(serialize($workinfo))); + self::Process(); + } + } + + static public function GetWorkerID() { + $maxworkers = get_config('system','max_queue_workers'); + $maxworkers = ($maxworkers) ? $maxworkers : 3; + + $workermaxage = get_config('system','max_queue_worker_age'); + $workermaxage = ($workermaxage) ? $workermaxage : 300; + + $workers = q("select * from config where cat='queueworkers' and k like '%s'", 'workerstarted_%'); + + if (count($workers) > $maxworkers) { + foreach ($workers as $idx => $worker) { + $curtime = time(); + if (($time - $worker['v']) > $workermaxage) { + $k = explode('_',$worker['k']); + q("delete from config where cat='queueworkers' and k='%s'", + 'workerstarted_'.$k[1]); + q("update config set k='workitem' where cat='queuework' and k='%s'", + 'workitem_'.$k[1]); + unset($workers[$idx]); + } + } + if (count($workers) > $maxworkers) { + return false; + } + } + return uniqid(); + + } + + static public function Process() { + + self::$queueworker = self::GetWorkerID(); + + if (!self::$queueworker) { + logger('Master: unable to obtain worker ID.'); + killme(); + } + + set_config('queueworkers','workerstarted_'.self::$queueworker,time()); + + $workersleep = get_config('system','queue_worker_sleep'); + $workersleep = ($workersleep) ? $workersleep : 5; + cli_startup(); + + $work = q("update config set k='%s' where cat='queuework' and k like '%s' limit 1", + 'workitem_'.self::$queueworker, + dbesc('workitem:%')); + $jobs = 0; + while ($work) { + $workitem = q("select * from config where cat='queuework' and k='%s'", + 'workitem_'.self::$queueworker); + + if (isset($workitem[0])) { + $jobs++; + $workinfo = unserialize($workitem[0]['v']); + $argc = $workinfo['argc']; + $argv = $workinfo['argv']; + logger('Master: process: ' . print_r($argv,true), LOGGER_ALL,LOG_DEBUG); + $cls = '\\Zotlabs\\Daemon\\' . $argv[0]; + $cls::run($argc,$argv); + + //Right now we assume that if we get a return, everything is OK. + //At some point we may want to test whether the run returns true/false + // and requeue the work to be tried again. But we probably want + // to implement some sort of "retry interval" first. + + q("delete from config where cat='queuework' and k='%s'", + 'workitem_'.self::$queueworker); + } else { + break; + } + sleep ($workersleep); + $work = q("update config set k='%s' where cat='queuework' and k like '%s' limit 1", + 'workitem_'.self::$queueworker, + dbesc('workitem:%')); + + } + logger('Master: Worker Thread: queue items processed:' . $jobs); + q("delete from config where cat='queueworkers' and k='%s'", + 'workerstarted_'.self::$queueworker); } + + static public function ClearQueue() { + $work = q("select * from config where cat='queuework' and k like '%s'", + 'workitem_%', + dbesc('workitem%')); + foreach ($work as $workitem) { + $workinfo = unserialize($workitem['v']); + $argc = $workinfo['argc']; + $argv = $workinfo['argv']; + logger('Master: process: ' . print_r($argv,true), LOGGER_ALL,LOG_DEBUG); + $cls = '\\Zotlabs\\Daemon\\' . $argv[0]; + $cls::run($argc,$argv); + } + $work = q("delete from config where cat='queuework' and k like '%s'", + 'workitem_%', + dbesc('workitem%')); + } + } From 90a983a7e5df6019973dc9f603dd9503d00e074e Mon Sep 17 00:00:00 2001 From: "M.Dent" Date: Sun, 7 Oct 2018 23:18:35 +0000 Subject: [PATCH 736/819] Fix too many arguments (cherry picked from commit 60d5443f000dd77c64b425c33ed341ef822734e8) --- Zotlabs/Daemon/Master.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/Zotlabs/Daemon/Master.php b/Zotlabs/Daemon/Master.php index 6fb674d60..ed1adf8fb 100644 --- a/Zotlabs/Daemon/Master.php +++ b/Zotlabs/Daemon/Master.php @@ -126,7 +126,6 @@ class Master { static public function ClearQueue() { $work = q("select * from config where cat='queuework' and k like '%s'", - 'workitem_%', dbesc('workitem%')); foreach ($work as $workitem) { $workinfo = unserialize($workitem['v']); @@ -137,7 +136,6 @@ class Master { $cls::run($argc,$argv); } $work = q("delete from config where cat='queuework' and k like '%s'", - 'workitem_%', dbesc('workitem%')); } From 82528e2f383ec6d99a125f710a8fd98f472e1fa6 Mon Sep 17 00:00:00 2001 From: zotlabs Date: Mon, 8 Oct 2018 05:12:49 +0000 Subject: [PATCH 737/819] hubzilla core issue #1278 - page update always reloads if noscript content is enabled (cherry picked from commit 69584f541d052e6da410d9cd782656eb31fae22d) --- Zotlabs/Module/Display.php | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Zotlabs/Module/Display.php b/Zotlabs/Module/Display.php index 8b46ebb79..d1755c183 100644 --- a/Zotlabs/Module/Display.php +++ b/Zotlabs/Module/Display.php @@ -12,7 +12,7 @@ class Display extends \Zotlabs\Web\Controller { function get($update = 0, $load = false) { - $noscript_content = get_config('system', 'noscript_content', '1'); + $noscript_content = (get_config('system', 'noscript_content', '1') && (! $update)); $module_format = 'html'; @@ -299,7 +299,6 @@ class Display extends \Zotlabs\Web\Controller { require_once('include/channel.php'); $sys = get_sys_channel(); $sysid = $sys['channel_id']; - if(local_channel()) { $r = q("SELECT item.parent AS item_id from item WHERE uid = %d @@ -340,7 +339,7 @@ class Display extends \Zotlabs\Web\Controller { else { $r = array(); } - + if($r) { $parents_str = ids_to_querystr($r,'item_id'); if($parents_str) { From 2ba95758ebd0f9e662fbc50bed9a8dee37ef4933 Mon Sep 17 00:00:00 2001 From: Max Kostikov Date: Fri, 5 Oct 2018 11:16:29 +0000 Subject: [PATCH 738/819] Prevent links damage on foreign channel repost for cloned (cherry picked from commit d9efb037e3d0c14fa288e8b54c3d55d67689ab54) --- include/text.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/include/text.php b/include/text.php index f03d0b860..1d884593f 100644 --- a/include/text.php +++ b/include/text.php @@ -2965,7 +2965,9 @@ function item_url_replace($channel,&$item,$old,$new,$oldnick = '') { json_url_replace('/' . $oldnick . '/' ,'/' . $channel['channel_address'] . '/' ,$item['target']); } - if(string_replace($old,$new,$item['body'])) { + $x = preg_replace("/".preg_quote($old,'/')."\/(search|\w+\/".$channel['channel_address'].")/", $new.'/${1}', $item['body']); + if($x) { + $item['body'] = $x; $item['sig'] = base64url_encode(rsa_sign($item['body'],$channel['channel_prvkey'])); $item['item_verified'] = 1; } From 97502f4c04ccb7c1243d87ec4db79f71b73d7135 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Mon, 8 Oct 2018 09:25:49 +0000 Subject: [PATCH 739/819] the root cause for doubled entries is fixed now (cherry picked from commit e0568f33e82de15e5d5a38ec7697d6afd67352f3) --- Zotlabs/Module/Siteinfo.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Zotlabs/Module/Siteinfo.php b/Zotlabs/Module/Siteinfo.php index 79b94662d..a8c5bda91 100644 --- a/Zotlabs/Module/Siteinfo.php +++ b/Zotlabs/Module/Siteinfo.php @@ -32,7 +32,7 @@ class Siteinfo extends \Zotlabs\Web\Controller { '$transport_link' => 'https://zotlabs.com', '$additional_text' => t('Additional federated transport protocols:'), - '$additional_fed' => implode(', ',array_unique($federated)), + '$additional_fed' => implode(', ', $federated), '$prj_version' => ((get_config('system','hidden_version_siteinfo')) ? '' : sprintf( t('Version %s'), \Zotlabs\Lib\System::get_project_version())), '$prj_linktxt' => t('Project homepage'), '$prj_srctxt' => t('Developer homepage'), From 9f4219773e828c68e916f4bcccc7cd74fffb706d Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Mon, 8 Oct 2018 09:38:45 +0000 Subject: [PATCH 740/819] typo (cherry picked from commit f0b7a7e5d38a92268a67d8dedf69f97d88b4c542) --- Zotlabs/Module/Admin/Site.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Zotlabs/Module/Admin/Site.php b/Zotlabs/Module/Admin/Site.php index e67f9f165..09b038729 100644 --- a/Zotlabs/Module/Admin/Site.php +++ b/Zotlabs/Module/Admin/Site.php @@ -311,7 +311,7 @@ class Site { '$access_policy' => array('access_policy', t("Which best describes the types of account offered by this hub?"), get_config('system','access_policy'), t("This is displayed on the public server site list."), $access_choices), '$register_text' => array('register_text', t("Register text"), htmlspecialchars(get_config('system','register_text'), ENT_QUOTES, 'UTF-8'), t("Will be displayed prominently on the registration page.")), '$role' => $role, - '$frontpage' => array('frontpage', t("Site homepage to show visitors (default: login box)"), get_config('system','frontpage'), t("example: 'public' to show public stream, 'page/sys/home' to show a system webpage called 'home' or 'include:home.html' to include a file.")), + '$frontpage' => array('frontpage', t("Site homepage to show visitors (default: login box)"), get_config('system','frontpage'), t("example: 'pubstream' to show public stream, 'page/sys/home' to show a system webpage called 'home' or 'include:home.html' to include a file.")), '$mirror_frontpage' => array('mirror_frontpage', t("Preserve site homepage URL"), get_config('system','mirror_frontpage'), t('Present the site homepage in a frame at the original location instead of redirecting')), '$abandon_days' => array('abandon_days', t('Accounts abandoned after x days'), get_config('system','account_abandon_days'), t('Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit.')), '$allowed_sites' => array('allowed_sites', t("Allowed friend domains"), get_config('system','allowed_sites'), t("Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains")), From cbbe4b33a3b2bb3ae68591891a51ae73d191fed0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20Jim=C3=A9nez=20Friaza?= Date: Mon, 8 Oct 2018 17:57:11 +0000 Subject: [PATCH 741/819] Update Spanish translation (cherry picked from commit e877a001abf3b16e0c0391192d6e05f443d3e5f2) --- view/es-es/hmessages.po | 7086 +++++++++++++++++++++------------------ view/es-es/hstrings.php | 779 +++-- 2 files changed, 4349 insertions(+), 3516 deletions(-) diff --git a/view/es-es/hmessages.po b/view/es-es/hmessages.po index b4087fef8..26045e6b5 100644 --- a/view/es-es/hmessages.po +++ b/view/es-es/hmessages.po @@ -12,12 +12,12 @@ # tony baldwin , 2014 msgid "" msgstr "" -"Project-Id-Version: Redmatrix\n" +"Project-Id-Version: hubzilla\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-04-23 11:34+0200\n" -"PO-Revision-Date: 2018-05-15 09:50+0000\n" +"POT-Creation-Date: 2018-10-06 17:07+0200\n" +"PO-Revision-Date: 2018-10-08 17:43+0000\n" "Last-Translator: Manuel Jiménez Friaza \n" -"Language-Team: Spanish (Spain) (http://www.transifex.com/Friendica/red-matrix/language/es_ES/)\n" +"Language-Team: Spanish (Spain) (http://www.transifex.com/Friendica/hubzilla/language/es_ES/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -81,8 +81,8 @@ msgid "Can like/dislike profiles and profile things" msgstr "Se puede mostrar agrado o desagrado (Me gusta / No me gusta) en mis perfiles y sus distintos apartados" #: ../../Zotlabs/Access/Permissions.php:70 -msgid "Can forward to all my channel connections via @+ mentions in posts" -msgstr "Pueden reenviarse publicaciones a todas las conexiones de mi canal a través de @+ menciones en las entradas" +msgid "Can forward to all my channel connections via ! mentions in posts" +msgstr "Pueden reenviarse publicaciones a todas las conexiones de mi canal a través de ! menciones en las entradas" #: ../../Zotlabs/Access/Permissions.php:71 msgid "Can chat with me" @@ -157,14 +157,12 @@ msgid "Special - Group Repository" msgstr "Especial - Repositorio de grupo" #: ../../Zotlabs/Access/PermissionRoles.php:306 -#: ../../Zotlabs/Module/Cdav.php:1182 ../../Zotlabs/Module/New_channel.php:144 -#: ../../Zotlabs/Module/Settings/Channel.php:479 -#: ../../Zotlabs/Module/Connedit.php:918 ../../Zotlabs/Module/Profiles.php:795 -#: ../../Zotlabs/Module/Register.php:224 ../../include/selectors.php:49 +#: ../../Zotlabs/Module/Cdav.php:1227 ../../Zotlabs/Module/Connedit.php:919 +#: ../../Zotlabs/Module/Profiles.php:795 ../../include/selectors.php:49 #: ../../include/selectors.php:66 ../../include/selectors.php:104 #: ../../include/selectors.php:140 ../../include/event.php:1315 -#: ../../include/event.php:1322 ../../include/connections.php:697 -#: ../../include/connections.php:704 +#: ../../include/event.php:1322 ../../include/connections.php:703 +#: ../../include/connections.php:710 msgid "Other" msgstr "Otro" @@ -172,67 +170,70 @@ msgstr "Otro" msgid "Custom/Expert Mode" msgstr "Modo personalizado/experto" -#: ../../Zotlabs/Module/Blocks.php:33 ../../Zotlabs/Module/Articles.php:29 +#: ../../Zotlabs/Module/Blocks.php:33 ../../Zotlabs/Module/Articles.php:34 #: ../../Zotlabs/Module/Editlayout.php:31 ../../Zotlabs/Module/Connect.php:17 #: ../../Zotlabs/Module/Achievements.php:15 ../../Zotlabs/Module/Hcard.php:12 #: ../../Zotlabs/Module/Editblock.php:31 ../../Zotlabs/Module/Profile.php:20 -#: ../../Zotlabs/Module/Layouts.php:31 ../../Zotlabs/Module/Editwebpage.php:32 -#: ../../Zotlabs/Module/Cards.php:33 ../../Zotlabs/Module/Webpages.php:33 -#: ../../Zotlabs/Module/Filestorage.php:51 ../../include/channel.php:1197 +#: ../../Zotlabs/Module/Menu.php:91 ../../Zotlabs/Module/Layouts.php:31 +#: ../../Zotlabs/Module/Editwebpage.php:32 ../../Zotlabs/Module/Cards.php:37 +#: ../../Zotlabs/Module/Webpages.php:39 +#: ../../Zotlabs/Module/Filestorage.php:51 +#: ../../addon/gallery/Mod_Gallery.php:47 ../../include/channel.php:1204 msgid "Requested profile is not available." msgstr "El perfil solicitado no está disponible." #: ../../Zotlabs/Module/Blocks.php:73 ../../Zotlabs/Module/Blocks.php:80 -#: ../../Zotlabs/Module/Invite.php:17 ../../Zotlabs/Module/Invite.php:94 -#: ../../Zotlabs/Module/Articles.php:68 ../../Zotlabs/Module/Editlayout.php:67 -#: ../../Zotlabs/Module/Editlayout.php:90 ../../Zotlabs/Module/Channel.php:110 -#: ../../Zotlabs/Module/Channel.php:248 ../../Zotlabs/Module/Channel.php:288 +#: ../../Zotlabs/Module/Invite.php:21 ../../Zotlabs/Module/Invite.php:102 +#: ../../Zotlabs/Module/Articles.php:80 ../../Zotlabs/Module/Editlayout.php:67 +#: ../../Zotlabs/Module/Editlayout.php:90 ../../Zotlabs/Module/Channel.php:119 +#: ../../Zotlabs/Module/Channel.php:286 ../../Zotlabs/Module/Channel.php:325 #: ../../Zotlabs/Module/Settings.php:59 ../../Zotlabs/Module/Locs.php:87 -#: ../../Zotlabs/Module/Mitem.php:115 ../../Zotlabs/Module/Events.php:271 -#: ../../Zotlabs/Module/Appman.php:87 ../../Zotlabs/Module/Regmod.php:21 +#: ../../Zotlabs/Module/Mitem.php:129 ../../Zotlabs/Module/Events.php:271 +#: ../../Zotlabs/Module/Appman.php:87 ../../Zotlabs/Module/Regmod.php:20 #: ../../Zotlabs/Module/Article_edit.php:51 -#: ../../Zotlabs/Module/New_channel.php:91 -#: ../../Zotlabs/Module/New_channel.php:116 +#: ../../Zotlabs/Module/New_channel.php:105 +#: ../../Zotlabs/Module/New_channel.php:130 #: ../../Zotlabs/Module/Sharedwithme.php:16 ../../Zotlabs/Module/Setup.php:209 #: ../../Zotlabs/Module/Moderate.php:13 -#: ../../Zotlabs/Module/Settings/Features.php:38 #: ../../Zotlabs/Module/Achievements.php:34 ../../Zotlabs/Module/Thing.php:280 #: ../../Zotlabs/Module/Thing.php:300 ../../Zotlabs/Module/Thing.php:341 #: ../../Zotlabs/Module/Api.php:24 ../../Zotlabs/Module/Editblock.php:67 #: ../../Zotlabs/Module/Profile.php:85 ../../Zotlabs/Module/Profile.php:101 -#: ../../Zotlabs/Module/Mood.php:116 ../../Zotlabs/Module/Connections.php:29 -#: ../../Zotlabs/Module/Viewsrc.php:19 ../../Zotlabs/Module/Bookmarks.php:64 -#: ../../Zotlabs/Module/Photos.php:69 ../../Zotlabs/Module/Wiki.php:50 -#: ../../Zotlabs/Module/Wiki.php:273 ../../Zotlabs/Module/Wiki.php:404 -#: ../../Zotlabs/Module/Pdledit.php:29 ../../Zotlabs/Module/Poke.php:149 +#: ../../Zotlabs/Module/Mood.php:124 ../../Zotlabs/Module/Connections.php:32 +#: ../../Zotlabs/Module/Viewsrc.php:19 ../../Zotlabs/Module/Bookmarks.php:70 +#: ../../Zotlabs/Module/Photos.php:69 ../../Zotlabs/Module/Wiki.php:59 +#: ../../Zotlabs/Module/Wiki.php:282 ../../Zotlabs/Module/Wiki.php:415 +#: ../../Zotlabs/Module/Pdledit.php:34 ../../Zotlabs/Module/Poke.php:157 #: ../../Zotlabs/Module/Profile_photo.php:302 #: ../../Zotlabs/Module/Profile_photo.php:315 #: ../../Zotlabs/Module/Authtest.php:16 ../../Zotlabs/Module/Item.php:229 -#: ../../Zotlabs/Module/Item.php:246 ../../Zotlabs/Module/Item.php:256 -#: ../../Zotlabs/Module/Item.php:1106 ../../Zotlabs/Module/Page.php:34 -#: ../../Zotlabs/Module/Page.php:133 ../../Zotlabs/Module/Connedit.php:389 -#: ../../Zotlabs/Module/Chat.php:100 ../../Zotlabs/Module/Chat.php:105 -#: ../../Zotlabs/Module/Menu.php:78 ../../Zotlabs/Module/Layouts.php:71 -#: ../../Zotlabs/Module/Layouts.php:78 ../../Zotlabs/Module/Layouts.php:89 -#: ../../Zotlabs/Module/Defperms.php:173 ../../Zotlabs/Module/Group.php:13 -#: ../../Zotlabs/Module/Profiles.php:198 ../../Zotlabs/Module/Profiles.php:635 +#: ../../Zotlabs/Module/Item.php:248 ../../Zotlabs/Module/Item.php:258 +#: ../../Zotlabs/Module/Item.php:1110 ../../Zotlabs/Module/Page.php:34 +#: ../../Zotlabs/Module/Page.php:133 ../../Zotlabs/Module/Connedit.php:390 +#: ../../Zotlabs/Module/Chat.php:115 ../../Zotlabs/Module/Chat.php:120 +#: ../../Zotlabs/Module/Menu.php:129 ../../Zotlabs/Module/Menu.php:140 +#: ../../Zotlabs/Module/Layouts.php:71 ../../Zotlabs/Module/Layouts.php:78 +#: ../../Zotlabs/Module/Layouts.php:89 ../../Zotlabs/Module/Cloud.php:40 +#: ../../Zotlabs/Module/Defperms.php:181 ../../Zotlabs/Module/Group.php:14 +#: ../../Zotlabs/Module/Group.php:30 ../../Zotlabs/Module/Profiles.php:198 +#: ../../Zotlabs/Module/Profiles.php:635 #: ../../Zotlabs/Module/Editwebpage.php:68 #: ../../Zotlabs/Module/Editwebpage.php:89 #: ../../Zotlabs/Module/Editwebpage.php:107 #: ../../Zotlabs/Module/Editwebpage.php:121 ../../Zotlabs/Module/Manage.php:10 -#: ../../Zotlabs/Module/Cards.php:72 ../../Zotlabs/Module/Webpages.php:118 +#: ../../Zotlabs/Module/Cards.php:81 ../../Zotlabs/Module/Webpages.php:133 #: ../../Zotlabs/Module/Block.php:24 ../../Zotlabs/Module/Block.php:74 -#: ../../Zotlabs/Module/Editpost.php:17 ../../Zotlabs/Module/Sources.php:74 -#: ../../Zotlabs/Module/Like.php:185 ../../Zotlabs/Module/Suggest.php:28 +#: ../../Zotlabs/Module/Editpost.php:17 ../../Zotlabs/Module/Sources.php:80 +#: ../../Zotlabs/Module/Like.php:185 ../../Zotlabs/Module/Suggest.php:32 #: ../../Zotlabs/Module/Message.php:18 ../../Zotlabs/Module/Mail.php:146 #: ../../Zotlabs/Module/Register.php:77 -#: ../../Zotlabs/Module/Cover_photo.php:281 -#: ../../Zotlabs/Module/Cover_photo.php:294 -#: ../../Zotlabs/Module/Display.php:449 ../../Zotlabs/Module/Network.php:15 +#: ../../Zotlabs/Module/Cover_photo.php:313 +#: ../../Zotlabs/Module/Cover_photo.php:326 +#: ../../Zotlabs/Module/Display.php:449 ../../Zotlabs/Module/Network.php:17 #: ../../Zotlabs/Module/Filestorage.php:15 #: ../../Zotlabs/Module/Filestorage.php:70 -#: ../../Zotlabs/Module/Filestorage.php:85 -#: ../../Zotlabs/Module/Filestorage.php:117 ../../Zotlabs/Module/Common.php:38 +#: ../../Zotlabs/Module/Filestorage.php:96 +#: ../../Zotlabs/Module/Filestorage.php:140 ../../Zotlabs/Module/Common.php:38 #: ../../Zotlabs/Module/Viewconnections.php:28 #: ../../Zotlabs/Module/Viewconnections.php:33 #: ../../Zotlabs/Module/Service_limits.php:11 @@ -242,11 +243,10 @@ msgstr "El perfil solicitado no está disponible." #: ../../addon/keepout/keepout.php:36 ../../addon/openid/Mod_Id.php:53 #: ../../addon/pumpio/pumpio.php:40 ../../include/attach.php:150 #: ../../include/attach.php:197 ../../include/attach.php:270 -#: ../../include/attach.php:284 ../../include/attach.php:293 -#: ../../include/attach.php:366 ../../include/attach.php:380 -#: ../../include/attach.php:387 ../../include/attach.php:469 -#: ../../include/attach.php:1029 ../../include/attach.php:1103 -#: ../../include/attach.php:1268 ../../include/items.php:3706 +#: ../../include/attach.php:379 ../../include/attach.php:393 +#: ../../include/attach.php:400 ../../include/attach.php:482 +#: ../../include/attach.php:1042 ../../include/attach.php:1116 +#: ../../include/attach.php:1281 ../../include/items.php:3675 #: ../../include/photos.php:27 msgid "Permission denied." msgstr "Acceso denegado." @@ -256,7 +256,7 @@ msgstr "Acceso denegado." msgid "Block Name" msgstr "Nombre del bloque" -#: ../../Zotlabs/Module/Blocks.php:154 ../../include/text.php:2422 +#: ../../Zotlabs/Module/Blocks.php:154 ../../include/text.php:2465 msgid "Blocks" msgstr "Bloques" @@ -264,239 +264,280 @@ msgstr "Bloques" msgid "Block Title" msgstr "Título del bloque" -#: ../../Zotlabs/Module/Blocks.php:157 ../../Zotlabs/Module/Menu.php:114 -#: ../../Zotlabs/Module/Layouts.php:191 ../../Zotlabs/Module/Webpages.php:251 +#: ../../Zotlabs/Module/Blocks.php:157 ../../Zotlabs/Module/Menu.php:177 +#: ../../Zotlabs/Module/Layouts.php:191 ../../Zotlabs/Module/Webpages.php:266 msgid "Created" msgstr "Creado" -#: ../../Zotlabs/Module/Blocks.php:158 ../../Zotlabs/Module/Menu.php:115 -#: ../../Zotlabs/Module/Layouts.php:192 ../../Zotlabs/Module/Webpages.php:252 +#: ../../Zotlabs/Module/Blocks.php:158 ../../Zotlabs/Module/Menu.php:178 +#: ../../Zotlabs/Module/Layouts.php:192 ../../Zotlabs/Module/Webpages.php:267 msgid "Edited" msgstr "Editado" -#: ../../Zotlabs/Module/Blocks.php:159 ../../Zotlabs/Module/Articles.php:96 -#: ../../Zotlabs/Module/Cdav.php:1185 ../../Zotlabs/Module/New_channel.php:160 -#: ../../Zotlabs/Module/Connedit.php:921 ../../Zotlabs/Module/Menu.php:118 +#: ../../Zotlabs/Module/Blocks.php:159 ../../Zotlabs/Module/Articles.php:108 +#: ../../Zotlabs/Module/Cdav.php:1230 ../../Zotlabs/Module/New_channel.php:189 +#: ../../Zotlabs/Module/Connedit.php:922 ../../Zotlabs/Module/Menu.php:181 #: ../../Zotlabs/Module/Layouts.php:185 ../../Zotlabs/Module/Profiles.php:798 -#: ../../Zotlabs/Module/Cards.php:100 ../../Zotlabs/Module/Webpages.php:239 -#: ../../Zotlabs/Storage/Browser.php:276 ../../Zotlabs/Storage/Browser.php:382 +#: ../../Zotlabs/Module/Cards.php:109 ../../Zotlabs/Module/Webpages.php:254 +#: ../../Zotlabs/Storage/Browser.php:276 ../../Zotlabs/Storage/Browser.php:390 #: ../../Zotlabs/Widget/Cdav.php:128 ../../Zotlabs/Widget/Cdav.php:165 msgid "Create" msgstr "Crear" #: ../../Zotlabs/Module/Blocks.php:160 ../../Zotlabs/Module/Editlayout.php:114 #: ../../Zotlabs/Module/Article_edit.php:99 -#: ../../Zotlabs/Module/Admin/Profs.php:175 -#: ../../Zotlabs/Module/Settings/Oauth2.php:149 -#: ../../Zotlabs/Module/Settings/Oauth.php:150 -#: ../../Zotlabs/Module/Thing.php:266 ../../Zotlabs/Module/Editblock.php:114 -#: ../../Zotlabs/Module/Connections.php:281 -#: ../../Zotlabs/Module/Connections.php:319 -#: ../../Zotlabs/Module/Connections.php:339 ../../Zotlabs/Module/Wiki.php:202 -#: ../../Zotlabs/Module/Wiki.php:362 ../../Zotlabs/Module/Menu.php:112 -#: ../../Zotlabs/Module/Layouts.php:193 +#: ../../Zotlabs/Module/Admin/Profs.php:175 ../../Zotlabs/Module/Thing.php:266 +#: ../../Zotlabs/Module/Oauth2.php:194 ../../Zotlabs/Module/Editblock.php:114 +#: ../../Zotlabs/Module/Connections.php:284 +#: ../../Zotlabs/Module/Connections.php:322 +#: ../../Zotlabs/Module/Connections.php:342 ../../Zotlabs/Module/Wiki.php:211 +#: ../../Zotlabs/Module/Wiki.php:371 ../../Zotlabs/Module/Menu.php:175 +#: ../../Zotlabs/Module/Layouts.php:193 ../../Zotlabs/Module/Group.php:235 #: ../../Zotlabs/Module/Editwebpage.php:142 -#: ../../Zotlabs/Module/Webpages.php:240 ../../Zotlabs/Module/Card_edit.php:99 -#: ../../Zotlabs/Lib/Apps.php:409 ../../Zotlabs/Lib/ThreadItem.php:121 -#: ../../Zotlabs/Storage/Browser.php:288 ../../Zotlabs/Widget/Cdav.php:126 -#: ../../Zotlabs/Widget/Cdav.php:162 ../../include/channel.php:1296 -#: ../../include/channel.php:1300 ../../include/menu.php:113 +#: ../../Zotlabs/Module/Webpages.php:255 ../../Zotlabs/Module/Card_edit.php:99 +#: ../../Zotlabs/Module/Oauth.php:173 ../../Zotlabs/Lib/Apps.php:534 +#: ../../Zotlabs/Lib/ThreadItem.php:130 ../../Zotlabs/Storage/Browser.php:290 +#: ../../Zotlabs/Widget/Cdav.php:126 ../../Zotlabs/Widget/Cdav.php:162 +#: ../../include/channel.php:1303 ../../include/channel.php:1307 +#: ../../include/menu.php:118 msgid "Edit" msgstr "Editar" -#: ../../Zotlabs/Module/Blocks.php:161 ../../Zotlabs/Module/Photos.php:1102 -#: ../../Zotlabs/Module/Wiki.php:287 ../../Zotlabs/Module/Layouts.php:194 -#: ../../Zotlabs/Module/Webpages.php:241 ../../Zotlabs/Widget/Cdav.php:124 -#: ../../include/conversation.php:1366 +#: ../../Zotlabs/Module/Blocks.php:161 ../../Zotlabs/Module/Photos.php:1104 +#: ../../Zotlabs/Module/Wiki.php:296 ../../Zotlabs/Module/Layouts.php:194 +#: ../../Zotlabs/Module/Webpages.php:256 ../../Zotlabs/Widget/Cdav.php:124 +#: ../../addon/hsse/hsse.php:186 ../../include/conversation.php:1389 msgid "Share" msgstr "Compartir" #: ../../Zotlabs/Module/Blocks.php:162 ../../Zotlabs/Module/Editlayout.php:138 -#: ../../Zotlabs/Module/Cdav.php:897 ../../Zotlabs/Module/Cdav.php:1187 +#: ../../Zotlabs/Module/Cdav.php:942 ../../Zotlabs/Module/Cdav.php:1232 #: ../../Zotlabs/Module/Article_edit.php:129 #: ../../Zotlabs/Module/Admin/Accounts.php:175 #: ../../Zotlabs/Module/Admin/Channels.php:149 -#: ../../Zotlabs/Module/Admin/Profs.php:176 -#: ../../Zotlabs/Module/Settings/Oauth2.php:150 -#: ../../Zotlabs/Module/Settings/Oauth.php:151 -#: ../../Zotlabs/Module/Thing.php:267 ../../Zotlabs/Module/Editblock.php:139 -#: ../../Zotlabs/Module/Connections.php:289 -#: ../../Zotlabs/Module/Photos.php:1203 ../../Zotlabs/Module/Connedit.php:654 -#: ../../Zotlabs/Module/Connedit.php:923 ../../Zotlabs/Module/Group.php:179 -#: ../../Zotlabs/Module/Profiles.php:800 +#: ../../Zotlabs/Module/Admin/Profs.php:176 ../../Zotlabs/Module/Thing.php:267 +#: ../../Zotlabs/Module/Oauth2.php:195 ../../Zotlabs/Module/Editblock.php:139 +#: ../../Zotlabs/Module/Connections.php:292 +#: ../../Zotlabs/Module/Photos.php:1205 ../../Zotlabs/Module/Connedit.php:655 +#: ../../Zotlabs/Module/Connedit.php:924 ../../Zotlabs/Module/Profiles.php:800 #: ../../Zotlabs/Module/Editwebpage.php:167 -#: ../../Zotlabs/Module/Webpages.php:242 -#: ../../Zotlabs/Module/Card_edit.php:129 ../../Zotlabs/Lib/Apps.php:410 -#: ../../Zotlabs/Lib/ThreadItem.php:141 ../../Zotlabs/Storage/Browser.php:289 -#: ../../include/conversation.php:690 ../../include/conversation.php:733 +#: ../../Zotlabs/Module/Webpages.php:257 +#: ../../Zotlabs/Module/Card_edit.php:129 ../../Zotlabs/Module/Oauth.php:174 +#: ../../Zotlabs/Lib/Apps.php:535 ../../Zotlabs/Lib/ThreadItem.php:150 +#: ../../Zotlabs/Storage/Browser.php:291 ../../include/conversation.php:691 +#: ../../include/conversation.php:736 msgid "Delete" msgstr "Eliminar" -#: ../../Zotlabs/Module/Blocks.php:166 ../../Zotlabs/Module/Events.php:694 -#: ../../Zotlabs/Module/Wiki.php:204 ../../Zotlabs/Module/Layouts.php:198 -#: ../../Zotlabs/Module/Webpages.php:246 ../../Zotlabs/Module/Pubsites.php:60 +#: ../../Zotlabs/Module/Blocks.php:166 ../../Zotlabs/Module/Events.php:695 +#: ../../Zotlabs/Module/Wiki.php:213 ../../Zotlabs/Module/Wiki.php:396 +#: ../../Zotlabs/Module/Layouts.php:198 ../../Zotlabs/Module/Webpages.php:261 +#: ../../Zotlabs/Module/Pubsites.php:60 msgid "View" msgstr "Ver" -#: ../../Zotlabs/Module/Invite.php:29 +#: ../../Zotlabs/Module/Invite.php:37 msgid "Total invitation limit exceeded." msgstr "Se ha superado el límite máximo de invitaciones." -#: ../../Zotlabs/Module/Invite.php:53 +#: ../../Zotlabs/Module/Invite.php:61 #, php-format msgid "%s : Not a valid email address." msgstr "%s : No es una dirección de correo electrónico válida. " -#: ../../Zotlabs/Module/Invite.php:67 +#: ../../Zotlabs/Module/Invite.php:75 msgid "Please join us on $Projectname" msgstr "Únase a nosotros en $Projectname" -#: ../../Zotlabs/Module/Invite.php:77 +#: ../../Zotlabs/Module/Invite.php:85 msgid "Invitation limit exceeded. Please contact your site administrator." msgstr "Excedido el límite de invitaciones. Por favor, contacte con el Administrador de su sitio." -#: ../../Zotlabs/Module/Invite.php:82 +#: ../../Zotlabs/Module/Invite.php:90 #: ../../addon/notifyadmin/notifyadmin.php:40 #, php-format msgid "%s : Message delivery failed." msgstr "%s : Falló el envío del mensaje." -#: ../../Zotlabs/Module/Invite.php:86 +#: ../../Zotlabs/Module/Invite.php:94 #, php-format msgid "%d message sent." msgid_plural "%d messages sent." msgstr[0] "%d mensajes enviados." msgstr[1] "%d mensajes enviados." -#: ../../Zotlabs/Module/Invite.php:107 +#: ../../Zotlabs/Module/Invite.php:110 +msgid "Invite App" +msgstr "Solicitar una app" + +#: ../../Zotlabs/Module/Invite.php:110 ../../Zotlabs/Module/Articles.php:43 +#: ../../Zotlabs/Module/Cdav.php:839 ../../Zotlabs/Module/Cdav.php:848 +#: ../../Zotlabs/Module/Permcats.php:62 ../../Zotlabs/Module/Lang.php:17 +#: ../../Zotlabs/Module/Uexport.php:61 ../../Zotlabs/Module/Pubstream.php:20 +#: ../../Zotlabs/Module/Connect.php:104 ../../Zotlabs/Module/Tokens.php:99 +#: ../../Zotlabs/Module/Oauth2.php:106 ../../Zotlabs/Module/Randprof.php:29 +#: ../../Zotlabs/Module/Mood.php:132 ../../Zotlabs/Module/Bookmarks.php:78 +#: ../../Zotlabs/Module/Wiki.php:52 ../../Zotlabs/Module/Pdledit.php:42 +#: ../../Zotlabs/Module/Poke.php:165 ../../Zotlabs/Module/Chat.php:102 +#: ../../Zotlabs/Module/Notes.php:55 ../../Zotlabs/Module/Defperms.php:189 +#: ../../Zotlabs/Module/Group.php:101 ../../Zotlabs/Module/Cards.php:46 +#: ../../Zotlabs/Module/Webpages.php:48 ../../Zotlabs/Module/Sources.php:88 +#: ../../Zotlabs/Module/Suggest.php:40 ../../Zotlabs/Module/Probe.php:18 +#: ../../Zotlabs/Module/Oauth.php:100 +msgid "Not Installed" +msgstr "No instalado/a" + +#: ../../Zotlabs/Module/Invite.php:111 +msgid "Send email invitations to join this network" +msgstr "Enviar invitaciones por correo electrónico para unirse a esta red" + +#: ../../Zotlabs/Module/Invite.php:124 msgid "You have no more invitations available" msgstr "No tiene más invitaciones disponibles" -#: ../../Zotlabs/Module/Invite.php:138 +#: ../../Zotlabs/Module/Invite.php:155 msgid "Send invitations" msgstr "Enviar invitaciones" -#: ../../Zotlabs/Module/Invite.php:139 +#: ../../Zotlabs/Module/Invite.php:156 msgid "Enter email addresses, one per line:" msgstr "Introduzca las direcciones de correo electrónico, una por línea:" -#: ../../Zotlabs/Module/Invite.php:140 ../../Zotlabs/Module/Mail.php:285 +#: ../../Zotlabs/Module/Invite.php:157 ../../Zotlabs/Module/Mail.php:285 msgid "Your message:" msgstr "Su mensaje:" -#: ../../Zotlabs/Module/Invite.php:141 +#: ../../Zotlabs/Module/Invite.php:158 msgid "Please join my community on $Projectname." msgstr "Por favor, únase a mi comunidad en $Projectname." -#: ../../Zotlabs/Module/Invite.php:143 +#: ../../Zotlabs/Module/Invite.php:160 msgid "You will need to supply this invitation code:" msgstr "Tendrá que suministrar este código de invitación:" -#: ../../Zotlabs/Module/Invite.php:144 +#: ../../Zotlabs/Module/Invite.php:161 msgid "" "1. Register at any $Projectname location (they are all inter-connected)" msgstr "1. Regístrese en cualquier sitio de $Projectname (están todos interconectados)" -#: ../../Zotlabs/Module/Invite.php:146 +#: ../../Zotlabs/Module/Invite.php:163 msgid "2. Enter my $Projectname network address into the site searchbar." msgstr "2. Introduzca mi dirección $Projectname en la caja de búsqueda del sitio." -#: ../../Zotlabs/Module/Invite.php:147 +#: ../../Zotlabs/Module/Invite.php:164 msgid "or visit" msgstr "o visitar" -#: ../../Zotlabs/Module/Invite.php:149 +#: ../../Zotlabs/Module/Invite.php:166 msgid "3. Click [Connect]" msgstr "3. Pulse [conectar]" -#: ../../Zotlabs/Module/Invite.php:151 ../../Zotlabs/Module/Locs.php:121 -#: ../../Zotlabs/Module/Mitem.php:243 ../../Zotlabs/Module/Events.php:493 -#: ../../Zotlabs/Module/Appman.php:153 +#: ../../Zotlabs/Module/Invite.php:168 ../../Zotlabs/Module/Permcats.php:128 +#: ../../Zotlabs/Module/Locs.php:121 ../../Zotlabs/Module/Mitem.php:259 +#: ../../Zotlabs/Module/Events.php:495 ../../Zotlabs/Module/Appman.php:155 #: ../../Zotlabs/Module/Import_items.php:129 #: ../../Zotlabs/Module/Setup.php:308 ../../Zotlabs/Module/Setup.php:349 -#: ../../Zotlabs/Module/Connect.php:98 +#: ../../Zotlabs/Module/Connect.php:124 #: ../../Zotlabs/Module/Admin/Features.php:66 -#: ../../Zotlabs/Module/Admin/Plugins.php:438 #: ../../Zotlabs/Module/Admin/Accounts.php:168 #: ../../Zotlabs/Module/Admin/Logs.php:84 #: ../../Zotlabs/Module/Admin/Channels.php:147 #: ../../Zotlabs/Module/Admin/Themes.php:158 -#: ../../Zotlabs/Module/Admin/Site.php:296 +#: ../../Zotlabs/Module/Admin/Site.php:289 +#: ../../Zotlabs/Module/Admin/Addons.php:438 #: ../../Zotlabs/Module/Admin/Profs.php:178 -#: ../../Zotlabs/Module/Admin/Account_edit.php:74 -#: ../../Zotlabs/Module/Admin/Security.php:104 -#: ../../Zotlabs/Module/Settings/Permcats.php:115 -#: ../../Zotlabs/Module/Settings/Channel.php:495 -#: ../../Zotlabs/Module/Settings/Features.php:79 -#: ../../Zotlabs/Module/Settings/Tokens.php:168 -#: ../../Zotlabs/Module/Settings/Oauth2.php:84 -#: ../../Zotlabs/Module/Settings/Account.php:118 +#: ../../Zotlabs/Module/Admin/Account_edit.php:73 +#: ../../Zotlabs/Module/Admin/Security.php:112 +#: ../../Zotlabs/Module/Settings/Channel.php:511 +#: ../../Zotlabs/Module/Settings/Features.php:46 +#: ../../Zotlabs/Module/Settings/Events.php:41 +#: ../../Zotlabs/Module/Settings/Calendar.php:41 +#: ../../Zotlabs/Module/Settings/Conversation.php:48 +#: ../../Zotlabs/Module/Settings/Connections.php:41 +#: ../../Zotlabs/Module/Settings/Photos.php:41 +#: ../../Zotlabs/Module/Settings/Account.php:103 +#: ../../Zotlabs/Module/Settings/Profiles.php:41 +#: ../../Zotlabs/Module/Settings/Manage.php:41 #: ../../Zotlabs/Module/Settings/Featured.php:54 -#: ../../Zotlabs/Module/Settings/Display.php:192 -#: ../../Zotlabs/Module/Settings/Oauth.php:88 -#: ../../Zotlabs/Module/Thing.php:326 ../../Zotlabs/Module/Thing.php:379 -#: ../../Zotlabs/Module/Import.php:530 ../../Zotlabs/Module/Cal.php:345 -#: ../../Zotlabs/Module/Mood.php:139 ../../Zotlabs/Module/Photos.php:1082 -#: ../../Zotlabs/Module/Photos.php:1122 ../../Zotlabs/Module/Photos.php:1240 -#: ../../Zotlabs/Module/Wiki.php:206 ../../Zotlabs/Module/Pdledit.php:98 -#: ../../Zotlabs/Module/Poke.php:200 ../../Zotlabs/Module/Connedit.php:887 -#: ../../Zotlabs/Module/Chat.php:196 ../../Zotlabs/Module/Chat.php:242 +#: ../../Zotlabs/Module/Settings/Channel_home.php:61 +#: ../../Zotlabs/Module/Settings/Directory.php:41 +#: ../../Zotlabs/Module/Settings/Editor.php:41 +#: ../../Zotlabs/Module/Settings/Display.php:189 +#: ../../Zotlabs/Module/Settings/Network.php:61 +#: ../../Zotlabs/Module/Tokens.php:188 ../../Zotlabs/Module/Thing.php:326 +#: ../../Zotlabs/Module/Thing.php:379 ../../Zotlabs/Module/Import.php:565 +#: ../../Zotlabs/Module/Oauth2.php:116 ../../Zotlabs/Module/Cal.php:344 +#: ../../Zotlabs/Module/Mood.php:156 ../../Zotlabs/Module/Photos.php:1084 +#: ../../Zotlabs/Module/Photos.php:1124 ../../Zotlabs/Module/Photos.php:1242 +#: ../../Zotlabs/Module/Wiki.php:215 ../../Zotlabs/Module/Pdledit.php:107 +#: ../../Zotlabs/Module/Poke.php:217 ../../Zotlabs/Module/Connedit.php:888 +#: ../../Zotlabs/Module/Chat.php:211 ../../Zotlabs/Module/Chat.php:250 #: ../../Zotlabs/Module/Email_validation.php:40 -#: ../../Zotlabs/Module/Pconfig.php:107 ../../Zotlabs/Module/Defperms.php:249 -#: ../../Zotlabs/Module/Group.php:87 ../../Zotlabs/Module/Profiles.php:723 -#: ../../Zotlabs/Module/Editpost.php:85 ../../Zotlabs/Module/Sources.php:114 -#: ../../Zotlabs/Module/Sources.php:149 ../../Zotlabs/Module/Xchan.php:15 -#: ../../Zotlabs/Module/Mail.php:431 ../../Zotlabs/Module/Filestorage.php:160 -#: ../../Zotlabs/Module/Rate.php:166 ../../Zotlabs/Lib/ThreadItem.php:752 +#: ../../Zotlabs/Module/Pconfig.php:107 ../../Zotlabs/Module/Defperms.php:265 +#: ../../Zotlabs/Module/Group.php:140 ../../Zotlabs/Module/Group.php:156 +#: ../../Zotlabs/Module/Profiles.php:723 ../../Zotlabs/Module/Editpost.php:85 +#: ../../Zotlabs/Module/Sources.php:125 ../../Zotlabs/Module/Sources.php:162 +#: ../../Zotlabs/Module/Xchan.php:15 ../../Zotlabs/Module/Mail.php:431 +#: ../../Zotlabs/Module/Filestorage.php:183 ../../Zotlabs/Module/Rate.php:166 +#: ../../Zotlabs/Module/Oauth.php:111 ../../Zotlabs/Lib/ThreadItem.php:767 #: ../../Zotlabs/Widget/Eventstools.php:16 #: ../../Zotlabs/Widget/Wiki_pages.php:40 #: ../../Zotlabs/Widget/Wiki_pages.php:97 #: ../../view/theme/redbasic_c/php/config.php:95 -#: ../../view/theme/redbasic/php/config.php:93 -#: ../../addon/skeleton/skeleton.php:65 ../../addon/gnusoc/gnusoc.php:275 -#: ../../addon/planets/planets.php:153 +#: ../../view/theme/redbasic/php/config.php:94 +#: ../../addon/skeleton/skeleton.php:65 ../../addon/planets/planets.php:153 #: ../../addon/openclipatar/openclipatar.php:53 -#: ../../addon/wppost/wppost.php:113 ../../addon/nsfw/nsfw.php:92 +#: ../../addon/wppost/Mod_Wppost.php:97 ../../addon/nsfw/Mod_Nsfw.php:61 #: ../../addon/ijpost/ijpost.php:89 ../../addon/dwpost/dwpost.php:89 #: ../../addon/likebanner/likebanner.php:57 #: ../../addon/redphotos/redphotos.php:136 ../../addon/irc/irc.php:53 -#: ../../addon/ljpost/ljpost.php:86 ../../addon/startpage/startpage.php:113 -#: ../../addon/diaspora/diaspora.php:825 -#: ../../addon/rainbowtag/rainbowtag.php:85 ../../addon/hzfiles/hzfiles.php:84 +#: ../../addon/ljpost/ljpost.php:86 ../../addon/startpage/Mod_Startpage.php:73 +#: ../../addon/diaspora/Mod_Diaspora.php:99 ../../addon/hzfiles/hzfiles.php:84 #: ../../addon/visage/visage.php:170 ../../addon/nsabait/nsabait.php:161 #: ../../addon/mailtest/mailtest.php:100 #: ../../addon/openstreetmap/openstreetmap.php:168 #: ../../addon/fuzzloc/fuzzloc.php:191 ../../addon/rtof/rtof.php:101 #: ../../addon/jappixmini/jappixmini.php:371 -#: ../../addon/superblock/superblock.php:120 ../../addon/nofed/nofed.php:80 -#: ../../addon/redred/redred.php:119 ../../addon/logrot/logrot.php:35 -#: ../../addon/frphotos/frphotos.php:97 ../../addon/pubcrawl/pubcrawl.php:1072 +#: ../../addon/channelreputation/channelreputation.php:139 +#: ../../addon/nofed/nofed.php:80 ../../addon/redred/redred.php:119 +#: ../../addon/logrot/logrot.php:35 ../../addon/frphotos/frphotos.php:97 +#: ../../addon/pubcrawl/Mod_Pubcrawl.php:63 #: ../../addon/chords/Mod_Chords.php:60 ../../addon/libertree/libertree.php:85 #: ../../addon/flattrwidget/flattrwidget.php:124 #: ../../addon/statusnet/statusnet.php:322 #: ../../addon/statusnet/statusnet.php:380 #: ../../addon/statusnet/statusnet.php:432 -#: ../../addon/statusnet/statusnet.php:900 ../../addon/twitter/twitter.php:218 -#: ../../addon/twitter/twitter.php:265 +#: ../../addon/statusnet/statusnet.php:900 ../../addon/twitter/twitter.php:221 +#: ../../addon/twitter/twitter.php:268 #: ../../addon/smileybutton/smileybutton.php:219 -#: ../../addon/cart/cart.php:1104 ../../addon/piwik/piwik.php:95 -#: ../../addon/pageheader/pageheader.php:48 -#: ../../addon/authchoose/authchoose.php:71 ../../addon/xmpp/xmpp.php:69 -#: ../../addon/pumpio/pumpio.php:237 ../../addon/redfiles/redfiles.php:124 -#: ../../addon/hubwall/hubwall.php:95 ../../include/js_strings.php:22 +#: ../../addon/cart/Settings/Cart.php:114 ../../addon/cart/cart.php:1263 +#: ../../addon/cart/submodules/manualcat.php:248 +#: ../../addon/cart/submodules/hzservices.php:640 +#: ../../addon/cart/submodules/subscriptions.php:401 +#: ../../addon/piwik/piwik.php:95 ../../addon/pageheader/pageheader.php:48 +#: ../../addon/xmpp/xmpp.php:69 ../../addon/pumpio/pumpio.php:237 +#: ../../addon/redfiles/redfiles.php:124 ../../addon/hubwall/hubwall.php:95 +#: ../../include/js_strings.php:22 msgid "Submit" msgstr "Enviar" -#: ../../Zotlabs/Module/Articles.php:38 ../../Zotlabs/Module/Articles.php:191 -#: ../../Zotlabs/Lib/Apps.php:229 ../../include/features.php:133 -#: ../../include/nav.php:469 -msgid "Articles" -msgstr "Artículos" +#: ../../Zotlabs/Module/Articles.php:43 +msgid "Articles App" +msgstr "App Artículos" -#: ../../Zotlabs/Module/Articles.php:95 +#: ../../Zotlabs/Module/Articles.php:44 +msgid "Create interactive articles" +msgstr "Crear artículos interactivos" + +#: ../../Zotlabs/Module/Articles.php:107 msgid "Add Article" msgstr "Añadir un artículo" +#: ../../Zotlabs/Module/Articles.php:214 ../../Zotlabs/Lib/Apps.php:302 +#: ../../include/nav.php:477 +msgid "Articles" +msgstr "Artículos" + #: ../../Zotlabs/Module/Editlayout.php:79 #: ../../Zotlabs/Module/Article_edit.php:17 #: ../../Zotlabs/Module/Article_edit.php:33 @@ -521,14 +562,34 @@ msgstr "Descripción de la plantilla (opcional)" msgid "Edit Layout" msgstr "Modificar la plantilla" +#: ../../Zotlabs/Module/Editlayout.php:140 ../../Zotlabs/Module/Cdav.php:944 +#: ../../Zotlabs/Module/Cdav.php:1233 +#: ../../Zotlabs/Module/Article_edit.php:131 +#: ../../Zotlabs/Module/Admin/Addons.php:423 +#: ../../Zotlabs/Module/Oauth2.php:117 ../../Zotlabs/Module/Oauth2.php:145 +#: ../../Zotlabs/Module/Editblock.php:141 ../../Zotlabs/Module/Wiki.php:356 +#: ../../Zotlabs/Module/Wiki.php:388 +#: ../../Zotlabs/Module/Profile_photo.php:465 +#: ../../Zotlabs/Module/Connedit.php:925 ../../Zotlabs/Module/Fbrowser.php:66 +#: ../../Zotlabs/Module/Fbrowser.php:88 ../../Zotlabs/Module/Profiles.php:801 +#: ../../Zotlabs/Module/Editwebpage.php:169 +#: ../../Zotlabs/Module/Editpost.php:109 ../../Zotlabs/Module/Filer.php:55 +#: ../../Zotlabs/Module/Cover_photo.php:399 ../../Zotlabs/Module/Tagrm.php:15 +#: ../../Zotlabs/Module/Tagrm.php:138 ../../Zotlabs/Module/Card_edit.php:131 +#: ../../Zotlabs/Module/Oauth.php:112 ../../Zotlabs/Module/Oauth.php:138 +#: ../../addon/hsse/hsse.php:209 ../../addon/hsse/hsse.php:258 +#: ../../include/conversation.php:1412 ../../include/conversation.php:1461 +msgid "Cancel" +msgstr "Cancelar" + #: ../../Zotlabs/Module/Profperm.php:28 ../../Zotlabs/Module/Subthread.php:86 #: ../../Zotlabs/Module/Import_items.php:120 -#: ../../Zotlabs/Module/Cloud.php:117 ../../Zotlabs/Module/Group.php:74 +#: ../../Zotlabs/Module/Cloud.php:126 ../../Zotlabs/Module/Group.php:93 #: ../../Zotlabs/Module/Dreport.php:10 ../../Zotlabs/Module/Dreport.php:68 #: ../../Zotlabs/Module/Like.php:296 ../../Zotlabs/Web/WebServer.php:122 #: ../../addon/redphotos/redphotos.php:119 ../../addon/hzfiles/hzfiles.php:73 #: ../../addon/frphotos/frphotos.php:82 ../../addon/redfiles/redfiles.php:109 -#: ../../include/items.php:358 +#: ../../include/items.php:384 msgid "Permission denied" msgstr "Permiso denegado" @@ -540,7 +601,8 @@ msgstr "Identificador del perfil no válido" msgid "Profile Visibility Editor" msgstr "Editor de visibilidad del perfil" -#: ../../Zotlabs/Module/Profperm.php:113 ../../include/channel.php:1644 +#: ../../Zotlabs/Module/Profperm.php:113 ../../Zotlabs/Lib/Apps.php:337 +#: ../../include/channel.php:1651 msgid "Profile" msgstr "Perfil" @@ -553,285 +615,284 @@ msgid "Visible To" msgstr "Visible para" #: ../../Zotlabs/Module/Profperm.php:140 -#: ../../Zotlabs/Module/Connections.php:200 +#: ../../Zotlabs/Module/Connections.php:203 msgid "All Connections" msgstr "Todas las conexiones" -#: ../../Zotlabs/Module/Cdav.php:785 +#: ../../Zotlabs/Module/Cdav.php:810 msgid "INVALID EVENT DISMISSED!" msgstr "¡EVENTO NO VÁLIDO RECHAZADO!" -#: ../../Zotlabs/Module/Cdav.php:786 +#: ../../Zotlabs/Module/Cdav.php:811 msgid "Summary: " msgstr "Resumen: " -#: ../../Zotlabs/Module/Cdav.php:786 ../../Zotlabs/Module/Cdav.php:787 -#: ../../Zotlabs/Module/Cdav.php:794 ../../Zotlabs/Module/Embedphotos.php:146 -#: ../../Zotlabs/Module/Photos.php:817 ../../Zotlabs/Module/Photos.php:1273 -#: ../../Zotlabs/Lib/Apps.php:754 ../../Zotlabs/Lib/Apps.php:833 -#: ../../Zotlabs/Storage/Browser.php:164 ../../Zotlabs/Widget/Portfolio.php:95 -#: ../../Zotlabs/Widget/Album.php:84 ../../addon/pubcrawl/as.php:891 -#: ../../include/conversation.php:1160 +#: ../../Zotlabs/Module/Cdav.php:811 ../../Zotlabs/Module/Cdav.php:812 +#: ../../Zotlabs/Module/Cdav.php:819 ../../Zotlabs/Module/Embedphotos.php:146 +#: ../../Zotlabs/Module/Photos.php:819 ../../Zotlabs/Module/Photos.php:1275 +#: ../../Zotlabs/Lib/Activity.php:858 ../../Zotlabs/Lib/Apps.php:994 +#: ../../Zotlabs/Lib/Apps.php:1078 ../../Zotlabs/Storage/Browser.php:164 +#: ../../Zotlabs/Widget/Portfolio.php:95 ../../Zotlabs/Widget/Album.php:84 +#: ../../addon/pubcrawl/as.php:964 ../../include/conversation.php:1166 msgid "Unknown" msgstr "Desconocido" -#: ../../Zotlabs/Module/Cdav.php:787 +#: ../../Zotlabs/Module/Cdav.php:812 msgid "Date: " msgstr "Fecha: " -#: ../../Zotlabs/Module/Cdav.php:788 ../../Zotlabs/Module/Cdav.php:795 +#: ../../Zotlabs/Module/Cdav.php:813 ../../Zotlabs/Module/Cdav.php:820 msgid "Reason: " msgstr "Razón: " -#: ../../Zotlabs/Module/Cdav.php:793 +#: ../../Zotlabs/Module/Cdav.php:818 msgid "INVALID CARD DISMISSED!" msgstr "¡TARJETA NO VÁLIDA RECHAZADA!" -#: ../../Zotlabs/Module/Cdav.php:794 +#: ../../Zotlabs/Module/Cdav.php:819 msgid "Name: " msgstr "Nombre: " -#: ../../Zotlabs/Module/Cdav.php:868 ../../Zotlabs/Module/Events.php:460 +#: ../../Zotlabs/Module/Cdav.php:839 +msgid "CalDAV App" +msgstr "App CalDav" + +#: ../../Zotlabs/Module/Cdav.php:840 +msgid "CalDAV capable calendar" +msgstr "Calendario compatible con CalDAV" + +#: ../../Zotlabs/Module/Cdav.php:848 +msgid "CardDAV App" +msgstr "App CarDav" + +#: ../../Zotlabs/Module/Cdav.php:849 +msgid "CalDAV capable addressbook" +msgstr "Libreta de direcciones compatible con CalDav" + +#: ../../Zotlabs/Module/Cdav.php:913 ../../Zotlabs/Module/Events.php:462 msgid "Event title" msgstr "Título del evento" -#: ../../Zotlabs/Module/Cdav.php:869 ../../Zotlabs/Module/Events.php:466 +#: ../../Zotlabs/Module/Cdav.php:914 ../../Zotlabs/Module/Events.php:468 msgid "Start date and time" msgstr "Fecha y hora de comienzo" -#: ../../Zotlabs/Module/Cdav.php:869 ../../Zotlabs/Module/Cdav.php:870 +#: ../../Zotlabs/Module/Cdav.php:914 ../../Zotlabs/Module/Cdav.php:915 msgid "Example: YYYY-MM-DD HH:mm" msgstr "Ejemplo: YYYY-MM-DD HH:mm" -#: ../../Zotlabs/Module/Cdav.php:870 +#: ../../Zotlabs/Module/Cdav.php:915 msgid "End date and time" msgstr "Fecha y hora de finalización" -#: ../../Zotlabs/Module/Cdav.php:871 ../../Zotlabs/Module/Events.php:473 -#: ../../Zotlabs/Module/Appman.php:143 ../../Zotlabs/Module/Rbmark.php:101 +#: ../../Zotlabs/Module/Cdav.php:916 ../../Zotlabs/Module/Events.php:475 +#: ../../Zotlabs/Module/Appman.php:145 ../../Zotlabs/Module/Rbmark.php:101 #: ../../addon/rendezvous/rendezvous.php:173 +#: ../../addon/cart/submodules/manualcat.php:260 +#: ../../addon/cart/submodules/hzservices.php:652 msgid "Description" msgstr "Descripción" -#: ../../Zotlabs/Module/Cdav.php:872 ../../Zotlabs/Module/Locs.php:117 -#: ../../Zotlabs/Module/Events.php:475 ../../Zotlabs/Module/Profiles.php:509 +#: ../../Zotlabs/Module/Cdav.php:917 ../../Zotlabs/Module/Locs.php:117 +#: ../../Zotlabs/Module/Events.php:477 ../../Zotlabs/Module/Profiles.php:509 #: ../../Zotlabs/Module/Profiles.php:734 ../../Zotlabs/Module/Pubsites.php:52 #: ../../include/js_strings.php:25 msgid "Location" msgstr "Ubicación" -#: ../../Zotlabs/Module/Cdav.php:879 ../../Zotlabs/Module/Events.php:689 -#: ../../Zotlabs/Module/Events.php:698 ../../Zotlabs/Module/Cal.php:339 -#: ../../Zotlabs/Module/Cal.php:346 ../../Zotlabs/Module/Photos.php:971 +#: ../../Zotlabs/Module/Cdav.php:924 ../../Zotlabs/Module/Events.php:690 +#: ../../Zotlabs/Module/Events.php:699 ../../Zotlabs/Module/Cal.php:338 +#: ../../Zotlabs/Module/Cal.php:345 ../../Zotlabs/Module/Photos.php:973 msgid "Previous" msgstr "Anterior" -#: ../../Zotlabs/Module/Cdav.php:880 ../../Zotlabs/Module/Events.php:690 -#: ../../Zotlabs/Module/Events.php:699 ../../Zotlabs/Module/Setup.php:263 -#: ../../Zotlabs/Module/Cal.php:340 ../../Zotlabs/Module/Cal.php:347 -#: ../../Zotlabs/Module/Photos.php:980 +#: ../../Zotlabs/Module/Cdav.php:925 ../../Zotlabs/Module/Events.php:691 +#: ../../Zotlabs/Module/Events.php:700 ../../Zotlabs/Module/Setup.php:263 +#: ../../Zotlabs/Module/Cal.php:339 ../../Zotlabs/Module/Cal.php:346 +#: ../../Zotlabs/Module/Photos.php:982 msgid "Next" msgstr "Siguiente" -#: ../../Zotlabs/Module/Cdav.php:881 ../../Zotlabs/Module/Events.php:700 -#: ../../Zotlabs/Module/Cal.php:348 +#: ../../Zotlabs/Module/Cdav.php:926 ../../Zotlabs/Module/Events.php:701 +#: ../../Zotlabs/Module/Cal.php:347 msgid "Today" msgstr "Hoy" -#: ../../Zotlabs/Module/Cdav.php:882 ../../Zotlabs/Module/Events.php:695 +#: ../../Zotlabs/Module/Cdav.php:927 ../../Zotlabs/Module/Events.php:696 msgid "Month" msgstr "Mes" -#: ../../Zotlabs/Module/Cdav.php:883 ../../Zotlabs/Module/Events.php:696 +#: ../../Zotlabs/Module/Cdav.php:928 ../../Zotlabs/Module/Events.php:697 msgid "Week" msgstr "Semana" -#: ../../Zotlabs/Module/Cdav.php:884 ../../Zotlabs/Module/Events.php:697 +#: ../../Zotlabs/Module/Cdav.php:929 ../../Zotlabs/Module/Events.php:698 msgid "Day" msgstr "Día" -#: ../../Zotlabs/Module/Cdav.php:885 +#: ../../Zotlabs/Module/Cdav.php:930 msgid "List month" msgstr "Lista mensual" -#: ../../Zotlabs/Module/Cdav.php:886 +#: ../../Zotlabs/Module/Cdav.php:931 msgid "List week" msgstr "Lista semanal" -#: ../../Zotlabs/Module/Cdav.php:887 +#: ../../Zotlabs/Module/Cdav.php:932 msgid "List day" msgstr "Lista diaria" -#: ../../Zotlabs/Module/Cdav.php:894 +#: ../../Zotlabs/Module/Cdav.php:939 msgid "More" msgstr "Más" -#: ../../Zotlabs/Module/Cdav.php:895 +#: ../../Zotlabs/Module/Cdav.php:940 msgid "Less" msgstr "Menos" -#: ../../Zotlabs/Module/Cdav.php:896 +#: ../../Zotlabs/Module/Cdav.php:941 msgid "Select calendar" msgstr "Seleccionar un calendario" -#: ../../Zotlabs/Module/Cdav.php:898 +#: ../../Zotlabs/Module/Cdav.php:943 msgid "Delete all" msgstr "Eliminar todos" -#: ../../Zotlabs/Module/Cdav.php:899 ../../Zotlabs/Module/Cdav.php:1188 -#: ../../Zotlabs/Module/Admin/Plugins.php:423 -#: ../../Zotlabs/Module/Settings/Oauth2.php:85 -#: ../../Zotlabs/Module/Settings/Oauth2.php:113 -#: ../../Zotlabs/Module/Settings/Oauth.php:89 -#: ../../Zotlabs/Module/Settings/Oauth.php:115 -#: ../../Zotlabs/Module/Wiki.php:347 ../../Zotlabs/Module/Wiki.php:379 -#: ../../Zotlabs/Module/Profile_photo.php:464 -#: ../../Zotlabs/Module/Connedit.php:924 ../../Zotlabs/Module/Fbrowser.php:66 -#: ../../Zotlabs/Module/Fbrowser.php:88 ../../Zotlabs/Module/Profiles.php:801 -#: ../../Zotlabs/Module/Filer.php:55 ../../Zotlabs/Module/Cover_photo.php:366 -#: ../../Zotlabs/Module/Tagrm.php:15 ../../Zotlabs/Module/Tagrm.php:138 -#: ../../include/conversation.php:1389 ../../include/conversation.php:1438 -msgid "Cancel" -msgstr "Cancelar" - -#: ../../Zotlabs/Module/Cdav.php:900 +#: ../../Zotlabs/Module/Cdav.php:945 msgid "Sorry! Editing of recurrent events is not yet implemented." msgstr "¡Disculpas! La edición de eventos recurrentes aún no se ha implementado." -#: ../../Zotlabs/Module/Cdav.php:1170 -#: ../../Zotlabs/Module/Sharedwithme.php:105 +#: ../../Zotlabs/Module/Cdav.php:1215 +#: ../../Zotlabs/Module/Sharedwithme.php:104 #: ../../Zotlabs/Module/Admin/Channels.php:159 -#: ../../Zotlabs/Module/Settings/Oauth2.php:86 -#: ../../Zotlabs/Module/Settings/Oauth2.php:114 -#: ../../Zotlabs/Module/Settings/Oauth.php:90 -#: ../../Zotlabs/Module/Settings/Oauth.php:116 -#: ../../Zotlabs/Module/Wiki.php:209 ../../Zotlabs/Module/Connedit.php:906 -#: ../../Zotlabs/Module/Chat.php:251 ../../Zotlabs/Lib/NativeWikiPage.php:558 -#: ../../Zotlabs/Storage/Browser.php:283 +#: ../../Zotlabs/Module/Oauth2.php:118 ../../Zotlabs/Module/Oauth2.php:146 +#: ../../Zotlabs/Module/Wiki.php:218 ../../Zotlabs/Module/Connedit.php:907 +#: ../../Zotlabs/Module/Chat.php:259 ../../Zotlabs/Module/Group.php:144 +#: ../../Zotlabs/Module/Oauth.php:113 ../../Zotlabs/Module/Oauth.php:139 +#: ../../Zotlabs/Lib/NativeWikiPage.php:558 +#: ../../Zotlabs/Storage/Browser.php:285 #: ../../Zotlabs/Widget/Wiki_page_history.php:22 #: ../../addon/rendezvous/rendezvous.php:172 msgid "Name" msgstr "Nombre" -#: ../../Zotlabs/Module/Cdav.php:1171 ../../Zotlabs/Module/Connedit.php:907 +#: ../../Zotlabs/Module/Cdav.php:1216 ../../Zotlabs/Module/Connedit.php:908 msgid "Organisation" msgstr "Organización" -#: ../../Zotlabs/Module/Cdav.php:1172 ../../Zotlabs/Module/Connedit.php:908 +#: ../../Zotlabs/Module/Cdav.php:1217 ../../Zotlabs/Module/Connedit.php:909 msgid "Title" msgstr "Título" -#: ../../Zotlabs/Module/Cdav.php:1173 ../../Zotlabs/Module/Connedit.php:909 +#: ../../Zotlabs/Module/Cdav.php:1218 ../../Zotlabs/Module/Connedit.php:910 #: ../../Zotlabs/Module/Profiles.php:786 msgid "Phone" msgstr "Teléfono" -#: ../../Zotlabs/Module/Cdav.php:1174 +#: ../../Zotlabs/Module/Cdav.php:1219 #: ../../Zotlabs/Module/Admin/Accounts.php:171 #: ../../Zotlabs/Module/Admin/Accounts.php:183 -#: ../../Zotlabs/Module/Connedit.php:910 ../../Zotlabs/Module/Profiles.php:787 +#: ../../Zotlabs/Module/Connedit.php:911 ../../Zotlabs/Module/Profiles.php:787 #: ../../addon/openid/MysqlProvider.php:56 #: ../../addon/openid/MysqlProvider.php:57 ../../addon/rtof/rtof.php:93 -#: ../../addon/redred/redred.php:107 ../../include/network.php:1770 +#: ../../addon/redred/redred.php:107 ../../include/network.php:1769 msgid "Email" msgstr "Correo electrónico" -#: ../../Zotlabs/Module/Cdav.php:1175 ../../Zotlabs/Module/Connedit.php:911 +#: ../../Zotlabs/Module/Cdav.php:1220 ../../Zotlabs/Module/Connedit.php:912 #: ../../Zotlabs/Module/Profiles.php:788 msgid "Instant messenger" msgstr "Mensajería instantánea" -#: ../../Zotlabs/Module/Cdav.php:1176 ../../Zotlabs/Module/Connedit.php:912 +#: ../../Zotlabs/Module/Cdav.php:1221 ../../Zotlabs/Module/Connedit.php:913 #: ../../Zotlabs/Module/Profiles.php:789 msgid "Website" msgstr "Sitio web" -#: ../../Zotlabs/Module/Cdav.php:1177 ../../Zotlabs/Module/Locs.php:118 +#: ../../Zotlabs/Module/Cdav.php:1222 ../../Zotlabs/Module/Locs.php:118 #: ../../Zotlabs/Module/Admin/Channels.php:160 -#: ../../Zotlabs/Module/Connedit.php:913 ../../Zotlabs/Module/Profiles.php:502 +#: ../../Zotlabs/Module/Connedit.php:914 ../../Zotlabs/Module/Profiles.php:502 #: ../../Zotlabs/Module/Profiles.php:790 msgid "Address" msgstr "Dirección" -#: ../../Zotlabs/Module/Cdav.php:1178 ../../Zotlabs/Module/Connedit.php:914 +#: ../../Zotlabs/Module/Cdav.php:1223 ../../Zotlabs/Module/Connedit.php:915 #: ../../Zotlabs/Module/Profiles.php:791 msgid "Note" msgstr "Nota" -#: ../../Zotlabs/Module/Cdav.php:1179 ../../Zotlabs/Module/Connedit.php:915 +#: ../../Zotlabs/Module/Cdav.php:1224 ../../Zotlabs/Module/Connedit.php:916 #: ../../Zotlabs/Module/Profiles.php:792 ../../include/event.php:1308 -#: ../../include/connections.php:690 +#: ../../include/connections.php:696 msgid "Mobile" msgstr "Móvil" -#: ../../Zotlabs/Module/Cdav.php:1180 ../../Zotlabs/Module/Connedit.php:916 +#: ../../Zotlabs/Module/Cdav.php:1225 ../../Zotlabs/Module/Connedit.php:917 #: ../../Zotlabs/Module/Profiles.php:793 ../../include/event.php:1309 -#: ../../include/connections.php:691 +#: ../../include/connections.php:697 msgid "Home" msgstr "Inicio" -#: ../../Zotlabs/Module/Cdav.php:1181 ../../Zotlabs/Module/Connedit.php:917 +#: ../../Zotlabs/Module/Cdav.php:1226 ../../Zotlabs/Module/Connedit.php:918 #: ../../Zotlabs/Module/Profiles.php:794 ../../include/event.php:1312 -#: ../../include/connections.php:694 +#: ../../include/connections.php:700 msgid "Work" msgstr "Trabajo" -#: ../../Zotlabs/Module/Cdav.php:1183 ../../Zotlabs/Module/Connedit.php:919 +#: ../../Zotlabs/Module/Cdav.php:1228 ../../Zotlabs/Module/Connedit.php:920 #: ../../Zotlabs/Module/Profiles.php:796 #: ../../addon/jappixmini/jappixmini.php:368 msgid "Add Contact" msgstr "Añadir un contacto" -#: ../../Zotlabs/Module/Cdav.php:1184 ../../Zotlabs/Module/Connedit.php:920 +#: ../../Zotlabs/Module/Cdav.php:1229 ../../Zotlabs/Module/Connedit.php:921 #: ../../Zotlabs/Module/Profiles.php:797 msgid "Add Field" msgstr "Añadir un campo" -#: ../../Zotlabs/Module/Cdav.php:1186 -#: ../../Zotlabs/Module/Admin/Plugins.php:453 -#: ../../Zotlabs/Module/Settings/Oauth2.php:39 -#: ../../Zotlabs/Module/Settings/Oauth2.php:112 -#: ../../Zotlabs/Module/Settings/Oauth.php:43 -#: ../../Zotlabs/Module/Settings/Oauth.php:114 -#: ../../Zotlabs/Module/Connedit.php:922 ../../Zotlabs/Module/Profiles.php:799 -#: ../../Zotlabs/Lib/Apps.php:393 +#: ../../Zotlabs/Module/Cdav.php:1231 +#: ../../Zotlabs/Module/Admin/Addons.php:453 +#: ../../Zotlabs/Module/Oauth2.php:58 ../../Zotlabs/Module/Oauth2.php:144 +#: ../../Zotlabs/Module/Connedit.php:923 ../../Zotlabs/Module/Profiles.php:799 +#: ../../Zotlabs/Module/Oauth.php:53 ../../Zotlabs/Module/Oauth.php:137 +#: ../../Zotlabs/Lib/Apps.php:513 msgid "Update" msgstr "Actualizar" -#: ../../Zotlabs/Module/Cdav.php:1189 ../../Zotlabs/Module/Connedit.php:925 +#: ../../Zotlabs/Module/Cdav.php:1234 ../../Zotlabs/Module/Connedit.php:926 msgid "P.O. Box" msgstr "Buzón de correos" -#: ../../Zotlabs/Module/Cdav.php:1190 ../../Zotlabs/Module/Connedit.php:926 +#: ../../Zotlabs/Module/Cdav.php:1235 ../../Zotlabs/Module/Connedit.php:927 msgid "Additional" msgstr "Adicional" -#: ../../Zotlabs/Module/Cdav.php:1191 ../../Zotlabs/Module/Connedit.php:927 +#: ../../Zotlabs/Module/Cdav.php:1236 ../../Zotlabs/Module/Connedit.php:928 msgid "Street" msgstr "Calle" -#: ../../Zotlabs/Module/Cdav.php:1192 ../../Zotlabs/Module/Connedit.php:928 +#: ../../Zotlabs/Module/Cdav.php:1237 ../../Zotlabs/Module/Connedit.php:929 msgid "Locality" msgstr "Localidad" -#: ../../Zotlabs/Module/Cdav.php:1193 ../../Zotlabs/Module/Connedit.php:929 +#: ../../Zotlabs/Module/Cdav.php:1238 ../../Zotlabs/Module/Connedit.php:930 msgid "Region" msgstr "Provincia, región o estado" -#: ../../Zotlabs/Module/Cdav.php:1194 ../../Zotlabs/Module/Connedit.php:930 +#: ../../Zotlabs/Module/Cdav.php:1239 ../../Zotlabs/Module/Connedit.php:931 msgid "ZIP Code" msgstr "Código postal" -#: ../../Zotlabs/Module/Cdav.php:1195 ../../Zotlabs/Module/Connedit.php:931 +#: ../../Zotlabs/Module/Cdav.php:1240 ../../Zotlabs/Module/Connedit.php:932 #: ../../Zotlabs/Module/Profiles.php:757 msgid "Country" msgstr "País" -#: ../../Zotlabs/Module/Cdav.php:1242 +#: ../../Zotlabs/Module/Cdav.php:1287 msgid "Default Calendar" msgstr "Calendario por defecto" -#: ../../Zotlabs/Module/Cdav.php:1252 +#: ../../Zotlabs/Module/Cdav.php:1297 msgid "Default Addressbook" msgstr "Agenda de direcciones por defecto" @@ -839,41 +900,126 @@ msgstr "Agenda de direcciones por defecto" msgid "This site is not a directory server" msgstr "Este sitio no es un servidor de directorio" -#: ../../Zotlabs/Module/Channel.php:32 ../../Zotlabs/Module/Ochannel.php:32 -#: ../../Zotlabs/Module/Chat.php:25 ../../addon/chess/chess.php:508 +#: ../../Zotlabs/Module/Permcats.php:28 +msgid "Permission category name is required." +msgstr "El nombre de la categoría de permiso es obligatorio." + +#: ../../Zotlabs/Module/Permcats.php:47 +msgid "Permission category saved." +msgstr "Se ha guardado la categoría del permiso." + +#: ../../Zotlabs/Module/Permcats.php:62 +msgid "Permission Categories App" +msgstr "App de categorías de permisos" + +#: ../../Zotlabs/Module/Permcats.php:63 +msgid "Create custom connection permission limits" +msgstr "Crear límites de permisos de conexión personalizados" + +#: ../../Zotlabs/Module/Permcats.php:79 +msgid "" +"Use this form to create permission rules for various classes of people or " +"connections." +msgstr "Utilice este formulario para crear reglas de permiso para varias clases de personas o conexiones." + +#: ../../Zotlabs/Module/Permcats.php:112 ../../Zotlabs/Lib/Apps.php:350 +msgid "Permission Categories" +msgstr "Tipos de permisos" + +#: ../../Zotlabs/Module/Permcats.php:120 +msgid "Permission category name" +msgstr "Nombre de categoría de permiso" + +#: ../../Zotlabs/Module/Permcats.php:121 ../../Zotlabs/Module/Tokens.php:181 +#: ../../Zotlabs/Module/Connedit.php:892 ../../Zotlabs/Module/Defperms.php:266 +msgid "My Settings" +msgstr "Mis ajustes" + +#: ../../Zotlabs/Module/Permcats.php:123 ../../Zotlabs/Module/Tokens.php:183 +#: ../../Zotlabs/Module/Connedit.php:887 ../../Zotlabs/Module/Defperms.php:264 +msgid "inherited" +msgstr "heredado" + +#: ../../Zotlabs/Module/Permcats.php:126 ../../Zotlabs/Module/Tokens.php:186 +#: ../../Zotlabs/Module/Connedit.php:894 ../../Zotlabs/Module/Defperms.php:269 +msgid "Individual Permissions" +msgstr "Permisos individuales" + +#: ../../Zotlabs/Module/Permcats.php:127 ../../Zotlabs/Module/Tokens.php:187 +#: ../../Zotlabs/Module/Connedit.php:895 +msgid "" +"Some permissions may be inherited from your channel's privacy settings, which have higher " +"priority than individual settings. You can not change those" +" settings here." +msgstr "Algunos permisos pueden ser heredados de los ajustes de privacidad de sus canales, los cuales tienen una prioridad más alta que los ajustes individuales. No puede cambiar estos ajustes aquí." + +#: ../../Zotlabs/Module/Channel.php:39 ../../Zotlabs/Module/Ochannel.php:32 +#: ../../Zotlabs/Module/Chat.php:31 ../../addon/chess/chess.php:508 msgid "You must be logged in to see this page." msgstr "Debe haber iniciado sesión para poder ver esta página." -#: ../../Zotlabs/Module/Channel.php:47 ../../Zotlabs/Module/Hcard.php:37 +#: ../../Zotlabs/Module/Channel.php:54 ../../Zotlabs/Module/Hcard.php:37 #: ../../Zotlabs/Module/Profile.php:45 msgid "Posts and comments" msgstr "Publicaciones y comentarios" -#: ../../Zotlabs/Module/Channel.php:54 ../../Zotlabs/Module/Hcard.php:44 +#: ../../Zotlabs/Module/Channel.php:61 ../../Zotlabs/Module/Hcard.php:44 #: ../../Zotlabs/Module/Profile.php:52 msgid "Only posts" msgstr "Solo publicaciones" -#: ../../Zotlabs/Module/Channel.php:107 +#: ../../Zotlabs/Module/Channel.php:116 msgid "Insufficient permissions. Request redirected to profile page." msgstr "Permisos insuficientes. Petición redirigida a la página del perfil." -#: ../../Zotlabs/Module/Uexport.php:57 ../../Zotlabs/Module/Uexport.php:58 +#: ../../Zotlabs/Module/Channel.php:133 ../../Zotlabs/Module/Network.php:163 +msgid "Search Results For:" +msgstr "Buscar resultados para:" + +#: ../../Zotlabs/Module/Channel.php:168 ../../Zotlabs/Module/Hq.php:134 +#: ../../Zotlabs/Module/Pubstream.php:94 ../../Zotlabs/Module/Display.php:80 +#: ../../Zotlabs/Module/Network.php:193 +msgid "Reset form" +msgstr "Reiniciar el formulario" + +#: ../../Zotlabs/Module/Channel.php:424 ../../Zotlabs/Module/Display.php:375 +msgid "" +"You must enable javascript for your browser to be able to view this content." +msgstr "Debe habilitar javascript para poder ver este contenido en su navegador." + +#: ../../Zotlabs/Module/Lang.php:17 +msgid "Language App" +msgstr "App idioma" + +#: ../../Zotlabs/Module/Lang.php:18 +msgid "Change UI language" +msgstr "Cambiar el idioma de la interfaz de usuario" + +#: ../../Zotlabs/Module/Uexport.php:61 +msgid "Channel Export App" +msgstr "App de exportación de canales" + +#: ../../Zotlabs/Module/Uexport.php:62 +msgid "Export your channel" +msgstr "Exportar su canal" + +#: ../../Zotlabs/Module/Uexport.php:72 ../../Zotlabs/Module/Uexport.php:73 msgid "Export Channel" msgstr "Exportar el canal" -#: ../../Zotlabs/Module/Uexport.php:59 +#: ../../Zotlabs/Module/Uexport.php:74 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 "Exportar la información básica del canal a un fichero. Este equivale a una copia de seguridad de sus conexiones, el perfil y datos fundamentales, que puede usarse para importar sus datos a un nuevo servidor, pero no incluye su contenido." -#: ../../Zotlabs/Module/Uexport.php:60 +#: ../../Zotlabs/Module/Uexport.php:75 msgid "Export Content" msgstr "Exportar contenidos" -#: ../../Zotlabs/Module/Uexport.php:61 +#: ../../Zotlabs/Module/Uexport.php:76 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 " @@ -882,11 +1028,11 @@ msgid "" " this download to begin." msgstr "Exportar la información sobre su canal y el contenido reciente a un fichero de respaldo JSON, que puede ser restaurado o importado a otro servidor. Este fichero incluye todas sus conexiones, permisos, datos del perfil y publicaciones de varios meses. Puede llegar a ser MUY grande. Por favor, sea paciente, la descarga puede tardar varios minutos en comenzar." -#: ../../Zotlabs/Module/Uexport.php:63 +#: ../../Zotlabs/Module/Uexport.php:78 msgid "Export your posts from a given year." msgstr "Exporta sus publicaciones de un año dado." -#: ../../Zotlabs/Module/Uexport.php:65 +#: ../../Zotlabs/Module/Uexport.php:80 msgid "" "You may also export your posts and conversations for a particular year or " "month. Adjust the date in your browser location bar to select other dates. " @@ -894,21 +1040,21 @@ msgid "" "please try again selecting a more limited date range." msgstr "También puede exportar sus mensajes y conversaciones durante un año o mes en particular. Ajuste la fecha en la barra de direcciones del navegador para seleccionar otras fechas. Si la exportación falla (posiblemente debido al agotamiento de la memoria del servidor hub), por favor, intente de nuevo la selección de un rango de fechas más pequeño." -#: ../../Zotlabs/Module/Uexport.php:66 +#: ../../Zotlabs/Module/Uexport.php:81 #, php-format msgid "" "To select all posts for a given year, such as this year, visit %2$s" msgstr "Para seleccionar todos los mensajes de un año determinado, como este año, visite %2$s" -#: ../../Zotlabs/Module/Uexport.php:67 +#: ../../Zotlabs/Module/Uexport.php:82 #, php-format msgid "" "To select all posts for a given month, such as January of this year, visit " "%2$s" msgstr "Para seleccionar todos los mensajes de un mes determinado, como el de enero de este año, visite %2$s" -#: ../../Zotlabs/Module/Uexport.php:68 +#: ../../Zotlabs/Module/Uexport.php:83 #, php-format msgid "" "These content files may be imported or restored by visiting import an existing channel from another location." msgstr "O importar un canal existente desde otro lugar." -#: ../../Zotlabs/Module/New_channel.php:159 +#: ../../Zotlabs/Module/New_channel.php:188 msgid "Validate" msgstr "Validar" @@ -1663,33 +1855,33 @@ msgid "" msgstr "Por defecto, solo la instancia del canal alojado en este servidor será eliminado de la red" #: ../../Zotlabs/Module/Removeme.php:64 -#: ../../Zotlabs/Module/Settings/Channel.php:600 +#: ../../Zotlabs/Module/Settings/Channel.php:617 msgid "Remove Channel" msgstr "Eliminar el canal" -#: ../../Zotlabs/Module/Sharedwithme.php:104 +#: ../../Zotlabs/Module/Sharedwithme.php:103 msgid "Files: shared with me" msgstr "Ficheros: compartidos conmigo" -#: ../../Zotlabs/Module/Sharedwithme.php:106 +#: ../../Zotlabs/Module/Sharedwithme.php:105 msgid "NEW" msgstr "NUEVO" -#: ../../Zotlabs/Module/Sharedwithme.php:107 -#: ../../Zotlabs/Storage/Browser.php:285 ../../include/text.php:1434 +#: ../../Zotlabs/Module/Sharedwithme.php:106 +#: ../../Zotlabs/Storage/Browser.php:287 ../../include/text.php:1457 msgid "Size" msgstr "Tamaño" -#: ../../Zotlabs/Module/Sharedwithme.php:108 -#: ../../Zotlabs/Storage/Browser.php:286 +#: ../../Zotlabs/Module/Sharedwithme.php:107 +#: ../../Zotlabs/Storage/Browser.php:288 msgid "Last Modified" msgstr "Última modificación" -#: ../../Zotlabs/Module/Sharedwithme.php:109 +#: ../../Zotlabs/Module/Sharedwithme.php:108 msgid "Remove all files" msgstr "Eliminar todos los ficheros" -#: ../../Zotlabs/Module/Sharedwithme.php:110 +#: ../../Zotlabs/Module/Sharedwithme.php:109 msgid "Remove this file" msgstr "Eliminar este fichero" @@ -1722,7 +1914,7 @@ msgid "" msgstr "Podría tener que importar manualmente el fichero \"install/schema_xxx.sql\" usando un cliente de base de datos." #: ../../Zotlabs/Module/Setup.php:198 ../../Zotlabs/Module/Setup.php:262 -#: ../../Zotlabs/Module/Setup.php:749 +#: ../../Zotlabs/Module/Setup.php:756 msgid "Please see the file \"install/INSTALL.txt\"." msgstr "Por favor, lea el fichero \"install/INSTALL.txt\"." @@ -1960,130 +2152,136 @@ msgstr "Error: se necesita el módulo PHP libCURL pero no está instalado." #: ../../Zotlabs/Module/Setup.php:531 msgid "" -"Error: GD graphics PHP module with JPEG support required but not installed." -msgstr "Error: el módulo PHP GD graphics es necesario, pero no está instalado." +"Error: GD PHP module with JPEG support or ImageMagick graphics library " +"required but not installed." +msgstr "Error: Se requiere el módulo GD PHP con soporte para JPEG o la biblioteca de gráficos ImageMagick, pero no está instalado." #: ../../Zotlabs/Module/Setup.php:535 msgid "Error: openssl PHP module required but not installed." msgstr "Error: el módulo PHP openssl es necesario, pero no está instalado." -#: ../../Zotlabs/Module/Setup.php:539 +#: ../../Zotlabs/Module/Setup.php:541 +msgid "" +"Error: PDO database PHP module missing a driver for either mysql or pgsql." +msgstr "Error: El módulo PHP de la base de datos PDO carece de un controlador para mysql o pgsql." + +#: ../../Zotlabs/Module/Setup.php:546 msgid "Error: PDO database PHP module required but not installed." msgstr "Error: se necesita el módulo PHP de la base de datos PDO, pero no está instalado." -#: ../../Zotlabs/Module/Setup.php:543 +#: ../../Zotlabs/Module/Setup.php:550 msgid "Error: mb_string PHP module required but not installed." msgstr "Error: el módulo PHP mb_string es necesario, pero no está instalado." -#: ../../Zotlabs/Module/Setup.php:547 +#: ../../Zotlabs/Module/Setup.php:554 msgid "Error: xml PHP module required for DAV but not installed." msgstr "Error: el módulo PHP xml es necesario para DAV, pero no está instalado." -#: ../../Zotlabs/Module/Setup.php:551 +#: ../../Zotlabs/Module/Setup.php:558 msgid "Error: zip PHP module required but not installed." msgstr "Error: se requiere el módulo zip PHP pero no está instalado." -#: ../../Zotlabs/Module/Setup.php:570 ../../Zotlabs/Module/Setup.php:579 +#: ../../Zotlabs/Module/Setup.php:577 ../../Zotlabs/Module/Setup.php:586 msgid ".htconfig.php is writable" msgstr ".htconfig.php tiene permisos de escritura" -#: ../../Zotlabs/Module/Setup.php:575 +#: ../../Zotlabs/Module/Setup.php:582 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 "El instalador web no ha podido crear un fichero llamado “.htconfig.php” en la carpeta base de su servidor." -#: ../../Zotlabs/Module/Setup.php:576 +#: ../../Zotlabs/Module/Setup.php:583 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 "Esto está generalmente ligado a un problema de permisos, a causa del cual el servidor web tiene prohibido modificar ficheros en su carpeta - incluso si usted mismo tiene esos permisos." -#: ../../Zotlabs/Module/Setup.php:577 +#: ../../Zotlabs/Module/Setup.php:584 msgid "Please see install/INSTALL.txt for additional information." msgstr "Por favor, consulte install/INSTALL.txt para más información." -#: ../../Zotlabs/Module/Setup.php:593 +#: ../../Zotlabs/Module/Setup.php:600 msgid "" "This software uses the Smarty3 template engine to render its web views. " "Smarty3 compiles templates to PHP to speed up rendering." msgstr "Este software hace uso del motor de plantillas Smarty3 para diseñar sus plantillas gráficas. Smarty3 compila las plantillas a PHP para acelerar la renderización." -#: ../../Zotlabs/Module/Setup.php:594 +#: ../../Zotlabs/Module/Setup.php:601 #, php-format msgid "" "In order to store these compiled templates, the web server needs to have " "write access to the directory %s under the top level web folder." msgstr "Para poder guardar las plantillas compiladas, el servidor web necesita permisos para acceder al directorio %s en la carpeta web principal." -#: ../../Zotlabs/Module/Setup.php:595 ../../Zotlabs/Module/Setup.php:616 +#: ../../Zotlabs/Module/Setup.php:602 ../../Zotlabs/Module/Setup.php:623 msgid "" "Please ensure that the user that your web server runs as (e.g. www-data) has" " write access to this folder." msgstr "Por favor, asegúrese de que el servidor web está siendo ejecutado por un usuario que tenga permisos de escritura sobre esta carpeta (por ejemplo, www-data)." -#: ../../Zotlabs/Module/Setup.php:596 +#: ../../Zotlabs/Module/Setup.php:603 #, 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 "Nota: como medida de seguridad, debe dar al servidor web permisos de escritura solo sobre %s - no sobre el fichero de plantilla (.tpl) que contiene." -#: ../../Zotlabs/Module/Setup.php:599 +#: ../../Zotlabs/Module/Setup.php:606 #, php-format msgid "%s is writable" msgstr "%s tiene permisos de escritura" -#: ../../Zotlabs/Module/Setup.php:615 +#: ../../Zotlabs/Module/Setup.php:622 msgid "" "This software uses the store directory to save uploaded files. The web " "server needs to have write access to the store directory under the top level" " web folder" msgstr "Este software utiliza el directorio de almacenamiento para guardar los ficheros subidos. El servidor web debe tener acceso de escritura a este directorio en la carpeta de nivel superior" -#: ../../Zotlabs/Module/Setup.php:619 +#: ../../Zotlabs/Module/Setup.php:626 msgid "store is writable" msgstr "\"store\" tiene permisos de escritura" -#: ../../Zotlabs/Module/Setup.php:651 +#: ../../Zotlabs/Module/Setup.php:658 msgid "" "SSL certificate cannot be validated. Fix certificate or disable https access" " to this site." msgstr "El certificado SSL no ha podido ser validado. Corrija este problema o desactive el acceso https a este sitio." -#: ../../Zotlabs/Module/Setup.php:652 +#: ../../Zotlabs/Module/Setup.php:659 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 "Si su servidor soporta conexiones cifradas SSL o si permite conexiones al puerto TCP 443 (el puerto usado por el protocolo https), debe utilizar un certificado válido. No debe usar un certificado firmado por usted mismo." -#: ../../Zotlabs/Module/Setup.php:653 +#: ../../Zotlabs/Module/Setup.php:660 msgid "" "This restriction is incorporated because public posts from you may for " "example contain references to images on your own hub." msgstr "Se ha incorporado esta restricción para evitar que sus entradas públicas hagan referencia a imágenes en su propio servidor." -#: ../../Zotlabs/Module/Setup.php:654 +#: ../../Zotlabs/Module/Setup.php:661 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." msgstr "Si su certificado no ha sido reconocido, los miembros de otros sitios (con certificados válidos) recibirán mensajes de aviso en sus propios sitios web." -#: ../../Zotlabs/Module/Setup.php:655 +#: ../../Zotlabs/Module/Setup.php:662 msgid "" "This can cause usability issues elsewhere (not just on your own site) so we " "must insist on this requirement." msgstr "Por razones de compatibilidad (sobre el conjunto de la red, no solo sobre su propio sitio), debemos insistir en estos requisitos." -#: ../../Zotlabs/Module/Setup.php:656 +#: ../../Zotlabs/Module/Setup.php:663 msgid "" "Providers are available that issue free certificates which are browser-" "valid." msgstr "Existen varias Autoridades de Certificación que le pueden proporcionar certificados válidos." -#: ../../Zotlabs/Module/Setup.php:658 +#: ../../Zotlabs/Module/Setup.php:665 msgid "" "If you are confident that the certificate is valid and signed by a trusted " "authority, check to see if you have failed to install an intermediate cert. " @@ -2091,82 +2289,92 @@ msgid "" "server communications." msgstr "Si se tiene la certeza de que el certificado es válido y está firmado por una autoridad de confianza, comprobar para ver si hubo un error al instalar un certificado intermedio. Estos no son normalmente requeridos por los navegadores, pero son necesarios para las comunicaciones de servidor a servidor." -#: ../../Zotlabs/Module/Setup.php:660 +#: ../../Zotlabs/Module/Setup.php:667 msgid "SSL certificate validation" msgstr "validación del certificado SSL" -#: ../../Zotlabs/Module/Setup.php:666 +#: ../../Zotlabs/Module/Setup.php:673 msgid "" "Url rewrite in .htaccess is not working. Check your server " "configuration.Test: " msgstr "No se pueden reescribir las direcciones web en .htaccess. Compruebe la configuración de su servidor:" -#: ../../Zotlabs/Module/Setup.php:669 +#: ../../Zotlabs/Module/Setup.php:676 msgid "Url rewrite is working" msgstr "La reescritura de las direcciones funciona correctamente" -#: ../../Zotlabs/Module/Setup.php:683 +#: ../../Zotlabs/Module/Setup.php:690 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 "El fichero de configuración de la base de datos .htconfig.php no se ha podido modificar. Por favor, copie el texto generado en un fichero con ese nombre en el directorio raíz de su servidor." -#: ../../Zotlabs/Module/Setup.php:707 +#: ../../Zotlabs/Module/Setup.php:714 #: ../../addon/rendezvous/rendezvous.php:401 msgid "Errors encountered creating database tables." msgstr "Se han encontrado errores al crear las tablas de la base de datos." -#: ../../Zotlabs/Module/Setup.php:747 +#: ../../Zotlabs/Module/Setup.php:754 msgid "

    What next?

    " msgstr "

    ¿Qué sigue?

    " -#: ../../Zotlabs/Module/Setup.php:748 +#: ../../Zotlabs/Module/Setup.php:755 msgid "" "IMPORTANT: You will need to [manually] setup a scheduled task for the " "poller." msgstr "IMPORTANTE: Debe crear [manualmente] una tarea programada para el \"poller\"." -#: ../../Zotlabs/Module/Connect.php:61 ../../Zotlabs/Module/Connect.php:109 +#: ../../Zotlabs/Module/Connect.php:73 ../../Zotlabs/Module/Connect.php:135 msgid "Continue" msgstr "Continuar" -#: ../../Zotlabs/Module/Connect.php:90 +#: ../../Zotlabs/Module/Connect.php:104 +msgid "Premium Channel App" +msgstr "App canal premium" + +#: ../../Zotlabs/Module/Connect.php:105 +msgid "" +"Allows you to set restrictions and terms on those that connect with your " +"channel" +msgstr "Le permite configurar restricciones y normas de uso a aquellos que conectan con su canal" + +#: ../../Zotlabs/Module/Connect.php:116 msgid "Premium Channel Setup" msgstr "Configuración del canal premium" -#: ../../Zotlabs/Module/Connect.php:92 +#: ../../Zotlabs/Module/Connect.php:118 msgid "Enable premium channel connection restrictions" msgstr "Habilitar restricciones de conexión del canal premium" -#: ../../Zotlabs/Module/Connect.php:93 +#: ../../Zotlabs/Module/Connect.php:119 msgid "" "Please enter your restrictions or conditions, such as paypal receipt, usage " "guidelines, etc." msgstr "Por favor introduzca sus restricciones o condiciones, como recibo de paypal, normas de uso, etc." -#: ../../Zotlabs/Module/Connect.php:95 ../../Zotlabs/Module/Connect.php:115 +#: ../../Zotlabs/Module/Connect.php:121 ../../Zotlabs/Module/Connect.php:141 msgid "" "This channel may require additional steps or acknowledgement of the " "following conditions prior to connecting:" msgstr "Este canal puede requerir antes de conectar unos pasos adicionales o el conocimiento de las siguientes condiciones:" -#: ../../Zotlabs/Module/Connect.php:96 +#: ../../Zotlabs/Module/Connect.php:122 msgid "" "Potential connections will then see the following text before proceeding:" msgstr "Las posibles conexiones verán, por tanto, el siguiente texto antes de proceder:" -#: ../../Zotlabs/Module/Connect.php:97 ../../Zotlabs/Module/Connect.php:118 +#: ../../Zotlabs/Module/Connect.php:123 ../../Zotlabs/Module/Connect.php:144 msgid "" "By continuing, I certify that I have complied with any instructions provided" " on this page." msgstr "Al continuar, certifico que he cumplido con todas las instrucciones proporcionadas en esta página." -#: ../../Zotlabs/Module/Connect.php:106 +#: ../../Zotlabs/Module/Connect.php:132 msgid "(No specific instructions have been provided by the channel owner.)" msgstr "(No ha sido proporcionada ninguna instrucción específica por el propietario del canal.)" -#: ../../Zotlabs/Module/Connect.php:114 +#: ../../Zotlabs/Module/Connect.php:140 msgid "Restricted or Premium Channel" msgstr "Canal premium o restringido" @@ -2200,13 +2408,13 @@ msgstr "Último contacto conocido" #: ../../Zotlabs/Module/Admin/Features.php:55 #: ../../Zotlabs/Module/Admin/Features.php:56 -#: ../../Zotlabs/Module/Settings/Features.php:65 +#: ../../Zotlabs/Module/Settings/Features.php:36 ../../include/features.php:55 msgid "Off" msgstr "Desactivado" #: ../../Zotlabs/Module/Admin/Features.php:55 #: ../../Zotlabs/Module/Admin/Features.php:56 -#: ../../Zotlabs/Module/Settings/Features.php:65 +#: ../../Zotlabs/Module/Settings/Features.php:36 ../../include/features.php:55 msgid "On" msgstr "Activado" @@ -2259,152 +2467,6 @@ msgstr "Intentar ejecutar este paso de actualización automáticamente" msgid "No failed updates." msgstr "No ha fallado ninguna actualización." -#: ../../Zotlabs/Module/Admin/Plugins.php:259 -#: ../../Zotlabs/Module/Admin/Themes.php:72 ../../Zotlabs/Module/Thing.php:94 -#: ../../Zotlabs/Module/Viewsrc.php:25 ../../Zotlabs/Module/Display.php:46 -#: ../../Zotlabs/Module/Display.php:453 -#: ../../Zotlabs/Module/Filestorage.php:24 ../../Zotlabs/Module/Admin.php:62 -#: ../../include/items.php:3619 -msgid "Item not found." -msgstr "Elemento no encontrado." - -#: ../../Zotlabs/Module/Admin/Plugins.php:289 -#, php-format -msgid "Plugin %s disabled." -msgstr "Extensión %s desactivada." - -#: ../../Zotlabs/Module/Admin/Plugins.php:294 -#, php-format -msgid "Plugin %s enabled." -msgstr "Extensión %s activada." - -#: ../../Zotlabs/Module/Admin/Plugins.php:310 -#: ../../Zotlabs/Module/Admin/Themes.php:95 -msgid "Disable" -msgstr "Desactivar" - -#: ../../Zotlabs/Module/Admin/Plugins.php:313 -#: ../../Zotlabs/Module/Admin/Themes.php:97 -msgid "Enable" -msgstr "Activar" - -#: ../../Zotlabs/Module/Admin/Plugins.php:341 -#: ../../Zotlabs/Module/Admin/Plugins.php:436 -#: ../../Zotlabs/Module/Admin/Accounts.php:166 -#: ../../Zotlabs/Module/Admin/Logs.php:82 -#: ../../Zotlabs/Module/Admin/Channels.php:145 -#: ../../Zotlabs/Module/Admin/Themes.php:122 -#: ../../Zotlabs/Module/Admin/Themes.php:156 -#: ../../Zotlabs/Module/Admin/Site.php:294 -#: ../../Zotlabs/Module/Admin/Security.php:86 -#: ../../Zotlabs/Module/Admin.php:136 -msgid "Administration" -msgstr "Administración" - -#: ../../Zotlabs/Module/Admin/Plugins.php:342 -#: ../../Zotlabs/Module/Admin/Plugins.php:437 -#: ../../Zotlabs/Widget/Admin.php:27 -msgid "Plugins" -msgstr "Extensiones (plugins)" - -#: ../../Zotlabs/Module/Admin/Plugins.php:343 -#: ../../Zotlabs/Module/Admin/Themes.php:124 -msgid "Toggle" -msgstr "Cambiar" - -#: ../../Zotlabs/Module/Admin/Plugins.php:344 -#: ../../Zotlabs/Module/Admin/Themes.php:125 ../../Zotlabs/Lib/Apps.php:242 -#: ../../Zotlabs/Widget/Newmember.php:46 -#: ../../Zotlabs/Widget/Settings_menu.php:141 ../../include/nav.php:105 -#: ../../include/nav.php:192 -msgid "Settings" -msgstr "Ajustes" - -#: ../../Zotlabs/Module/Admin/Plugins.php:351 -#: ../../Zotlabs/Module/Admin/Themes.php:134 -msgid "Author: " -msgstr "Autor:" - -#: ../../Zotlabs/Module/Admin/Plugins.php:352 -#: ../../Zotlabs/Module/Admin/Themes.php:135 -msgid "Maintainer: " -msgstr "Mantenedor:" - -#: ../../Zotlabs/Module/Admin/Plugins.php:353 -msgid "Minimum project version: " -msgstr "Versión mínima del proyecto:" - -#: ../../Zotlabs/Module/Admin/Plugins.php:354 -msgid "Maximum project version: " -msgstr "Versión máxima del proyecto:" - -#: ../../Zotlabs/Module/Admin/Plugins.php:355 -msgid "Minimum PHP version: " -msgstr "Versión mínima de PHP:" - -#: ../../Zotlabs/Module/Admin/Plugins.php:356 -msgid "Compatible Server Roles: " -msgstr "Configuraciones compatibles con este servidor:" - -#: ../../Zotlabs/Module/Admin/Plugins.php:357 -msgid "Requires: " -msgstr "Se requiere:" - -#: ../../Zotlabs/Module/Admin/Plugins.php:358 -#: ../../Zotlabs/Module/Admin/Plugins.php:442 -msgid "Disabled - version incompatibility" -msgstr "Deshabilitado - versiones incompatibles" - -#: ../../Zotlabs/Module/Admin/Plugins.php:411 -msgid "Enter the public git repository URL of the plugin repo." -msgstr "Escriba la URL pública del repositorio git del plugin." - -#: ../../Zotlabs/Module/Admin/Plugins.php:412 -msgid "Plugin repo git URL" -msgstr "URL del repositorio git del plugin" - -#: ../../Zotlabs/Module/Admin/Plugins.php:413 -msgid "Custom repo name" -msgstr "Nombre personalizado del repositorio" - -#: ../../Zotlabs/Module/Admin/Plugins.php:413 -msgid "(optional)" -msgstr "(opcional)" - -#: ../../Zotlabs/Module/Admin/Plugins.php:414 -msgid "Download Plugin Repo" -msgstr "Descargar el repositorio" - -#: ../../Zotlabs/Module/Admin/Plugins.php:421 -msgid "Install new repo" -msgstr "Instalar un nuevo repositorio" - -#: ../../Zotlabs/Module/Admin/Plugins.php:422 ../../Zotlabs/Lib/Apps.php:393 -msgid "Install" -msgstr "Instalar" - -#: ../../Zotlabs/Module/Admin/Plugins.php:445 -msgid "Manage Repos" -msgstr "Gestionar los repositorios" - -#: ../../Zotlabs/Module/Admin/Plugins.php:446 -msgid "Installed Plugin Repositories" -msgstr "Repositorios de los plugins instalados" - -#: ../../Zotlabs/Module/Admin/Plugins.php:447 -msgid "Install a New Plugin Repository" -msgstr "Instalar un nuevo repositorio de plugins" - -#: ../../Zotlabs/Module/Admin/Plugins.php:454 -msgid "Switch branch" -msgstr "Cambiar la rama" - -#: ../../Zotlabs/Module/Admin/Plugins.php:455 -#: ../../Zotlabs/Module/Photos.php:1020 ../../Zotlabs/Module/Tagrm.php:137 -#: ../../addon/superblock/superblock.php:116 -msgid "Remove" -msgstr "Eliminar" - #: ../../Zotlabs/Module/Admin/Accounts.php:37 #, php-format msgid "%s account blocked/unblocked" @@ -2423,7 +2485,7 @@ msgstr[1] "%s cuentas eliminadas" msgid "Account not found" msgstr "Cuenta no encontrada" -#: ../../Zotlabs/Module/Admin/Accounts.php:91 ../../include/channel.php:2473 +#: ../../Zotlabs/Module/Admin/Accounts.php:91 ../../include/channel.php:2497 #, php-format msgid "Account '%s' deleted" msgstr "La cuenta '%s' ha sido eliminada" @@ -2438,6 +2500,19 @@ msgstr "La cuenta '%s' ha sido bloqueada" msgid "Account '%s' unblocked" msgstr "La cuenta '%s' ha sido desbloqueada" +#: ../../Zotlabs/Module/Admin/Accounts.php:166 +#: ../../Zotlabs/Module/Admin/Logs.php:82 +#: ../../Zotlabs/Module/Admin/Channels.php:145 +#: ../../Zotlabs/Module/Admin/Themes.php:122 +#: ../../Zotlabs/Module/Admin/Themes.php:156 +#: ../../Zotlabs/Module/Admin/Site.php:287 +#: ../../Zotlabs/Module/Admin/Addons.php:341 +#: ../../Zotlabs/Module/Admin/Addons.php:436 +#: ../../Zotlabs/Module/Admin/Security.php:92 +#: ../../Zotlabs/Module/Admin.php:140 +msgid "Administration" +msgstr "Administración" + #: ../../Zotlabs/Module/Admin/Accounts.php:167 #: ../../Zotlabs/Module/Admin/Accounts.php:180 #: ../../Zotlabs/Module/Admin.php:96 ../../Zotlabs/Widget/Admin.php:23 @@ -2462,22 +2537,22 @@ msgid "No registrations." msgstr "Sin registros." #: ../../Zotlabs/Module/Admin/Accounts.php:173 -#: ../../Zotlabs/Module/Connections.php:303 ../../include/conversation.php:732 +#: ../../Zotlabs/Module/Connections.php:306 ../../include/conversation.php:735 msgid "Approve" msgstr "Aprobar" #: ../../Zotlabs/Module/Admin/Accounts.php:174 -#: ../../Zotlabs/Module/Authorize.php:26 +#: ../../Zotlabs/Module/Authorize.php:33 msgid "Deny" msgstr "Rechazar" #: ../../Zotlabs/Module/Admin/Accounts.php:176 -#: ../../Zotlabs/Module/Connedit.php:622 +#: ../../Zotlabs/Module/Connedit.php:623 msgid "Block" msgstr "Bloquear" #: ../../Zotlabs/Module/Admin/Accounts.php:177 -#: ../../Zotlabs/Module/Connedit.php:622 +#: ../../Zotlabs/Module/Connedit.php:623 msgid "Unblock" msgstr "Desbloquear" @@ -2485,7 +2560,7 @@ msgstr "Desbloquear" msgid "ID" msgstr "ID" -#: ../../Zotlabs/Module/Admin/Accounts.php:184 ../../include/group.php:284 +#: ../../Zotlabs/Module/Admin/Accounts.php:184 msgid "All Channels" msgstr "Todos los canales" @@ -2599,7 +2674,7 @@ msgid "Channel '%s' code disallowed" msgstr "Código no permitido al canal '%s'" #: ../../Zotlabs/Module/Admin/Channels.php:146 -#: ../../Zotlabs/Module/Admin.php:110 ../../Zotlabs/Widget/Admin.php:24 +#: ../../Zotlabs/Module/Admin.php:114 ../../Zotlabs/Widget/Admin.php:24 msgid "Channels" msgstr "Canales" @@ -2619,8 +2694,7 @@ msgstr "Permitir código" msgid "Disallow Code" msgstr "No permitir código" -#: ../../Zotlabs/Module/Admin/Channels.php:154 -#: ../../include/conversation.php:1811 ../../include/nav.php:378 +#: ../../Zotlabs/Module/Admin/Channels.php:154 ../../include/nav.php:386 msgid "Channel" msgstr "Canal" @@ -2648,6 +2722,25 @@ msgstr "Ajustes del tema actualizados." msgid "No themes found." msgstr "No se han encontrado temas." +#: ../../Zotlabs/Module/Admin/Themes.php:72 +#: ../../Zotlabs/Module/Admin/Addons.php:259 ../../Zotlabs/Module/Thing.php:94 +#: ../../Zotlabs/Module/Viewsrc.php:25 ../../Zotlabs/Module/Display.php:45 +#: ../../Zotlabs/Module/Display.php:453 +#: ../../Zotlabs/Module/Filestorage.php:24 ../../Zotlabs/Module/Admin.php:62 +#: ../../include/items.php:3587 +msgid "Item not found." +msgstr "Elemento no encontrado." + +#: ../../Zotlabs/Module/Admin/Themes.php:95 +#: ../../Zotlabs/Module/Admin/Addons.php:310 +msgid "Disable" +msgstr "Desactivar" + +#: ../../Zotlabs/Module/Admin/Themes.php:97 +#: ../../Zotlabs/Module/Admin/Addons.php:313 +msgid "Enable" +msgstr "Activar" + #: ../../Zotlabs/Module/Admin/Themes.php:116 msgid "Screenshot" msgstr "Instantánea de pantalla" @@ -2657,6 +2750,28 @@ msgstr "Instantánea de pantalla" msgid "Themes" msgstr "Temas" +#: ../../Zotlabs/Module/Admin/Themes.php:124 +#: ../../Zotlabs/Module/Admin/Addons.php:343 +msgid "Toggle" +msgstr "Cambiar" + +#: ../../Zotlabs/Module/Admin/Themes.php:125 +#: ../../Zotlabs/Module/Admin/Addons.php:344 ../../Zotlabs/Lib/Apps.php:314 +#: ../../Zotlabs/Widget/Newmember.php:53 +#: ../../Zotlabs/Widget/Settings_menu.php:68 ../../include/nav.php:97 +msgid "Settings" +msgstr "Ajustes" + +#: ../../Zotlabs/Module/Admin/Themes.php:134 +#: ../../Zotlabs/Module/Admin/Addons.php:351 +msgid "Author: " +msgstr "Autor:" + +#: ../../Zotlabs/Module/Admin/Themes.php:135 +#: ../../Zotlabs/Module/Admin/Addons.php:352 +msgid "Maintainer: " +msgstr "Mantenedor:" + #: ../../Zotlabs/Module/Admin/Themes.php:162 msgid "[Experimental]" msgstr "[Experimental]" @@ -2665,469 +2780,548 @@ msgstr "[Experimental]" msgid "[Unsupported]" msgstr "[No soportado]" -#: ../../Zotlabs/Module/Admin/Site.php:165 +#: ../../Zotlabs/Module/Admin/Site.php:161 msgid "Site settings updated." msgstr "Ajustes del sitio actualizados." -#: ../../Zotlabs/Module/Admin/Site.php:191 +#: ../../Zotlabs/Module/Admin/Site.php:187 #: ../../view/theme/redbasic_c/php/config.php:15 -#: ../../view/theme/redbasic/php/config.php:15 ../../include/text.php:3106 +#: ../../view/theme/redbasic/php/config.php:15 ../../include/text.php:3085 msgid "Default" msgstr "Predeterminado" -#: ../../Zotlabs/Module/Admin/Site.php:202 -#: ../../Zotlabs/Module/Settings/Display.php:130 +#: ../../Zotlabs/Module/Admin/Site.php:198 +#: ../../Zotlabs/Module/Settings/Display.php:119 #, php-format msgid "%s - (Incompatible)" msgstr "%s - (Incompatible)" -#: ../../Zotlabs/Module/Admin/Site.php:209 +#: ../../Zotlabs/Module/Admin/Site.php:205 msgid "mobile" msgstr "móvil" -#: ../../Zotlabs/Module/Admin/Site.php:211 +#: ../../Zotlabs/Module/Admin/Site.php:207 msgid "experimental" msgstr "experimental" -#: ../../Zotlabs/Module/Admin/Site.php:213 +#: ../../Zotlabs/Module/Admin/Site.php:209 msgid "unsupported" msgstr "no soportado" -#: ../../Zotlabs/Module/Admin/Site.php:260 +#: ../../Zotlabs/Module/Admin/Site.php:256 msgid "Yes - with approval" msgstr "Sí - con aprobación" -#: ../../Zotlabs/Module/Admin/Site.php:266 +#: ../../Zotlabs/Module/Admin/Site.php:262 msgid "My site is not a public server" msgstr "Mi sitio no es un servidor público" -#: ../../Zotlabs/Module/Admin/Site.php:267 +#: ../../Zotlabs/Module/Admin/Site.php:263 msgid "My site has paid access only" msgstr "Mi sitio es un servicio de pago" -#: ../../Zotlabs/Module/Admin/Site.php:268 +#: ../../Zotlabs/Module/Admin/Site.php:264 msgid "My site has free access only" msgstr "Mi sitio es un servicio gratuito" -#: ../../Zotlabs/Module/Admin/Site.php:269 +#: ../../Zotlabs/Module/Admin/Site.php:265 msgid "My site offers free accounts with optional paid upgrades" msgstr "Mi sitio ofrece cuentas gratuitas con opciones extra de pago" -#: ../../Zotlabs/Module/Admin/Site.php:281 -msgid "Beginner/Basic" -msgstr "Principiante / Básico" +#: ../../Zotlabs/Module/Admin/Site.php:279 +msgid "Default permission role for new accounts" +msgstr "Permisos de rol por defecto para las nuevas cuentas" -#: ../../Zotlabs/Module/Admin/Site.php:282 -msgid "Novice - not skilled but willing to learn" -msgstr "Novato: no cualificado, pero dispuesto a aprender" +#: ../../Zotlabs/Module/Admin/Site.php:279 +msgid "" +"This role will be used for the first channel created after registration." +msgstr "Este rol se utilizará para el primer canal creado después del registro." -#: ../../Zotlabs/Module/Admin/Site.php:283 -msgid "Intermediate - somewhat comfortable" -msgstr "Intermedio: bastante cómodo" - -#: ../../Zotlabs/Module/Admin/Site.php:284 -msgid "Advanced - very comfortable" -msgstr "Avanzado: muy cómodo" - -#: ../../Zotlabs/Module/Admin/Site.php:285 -msgid "Expert - I can write computer code" -msgstr "Experto: puedo escribir código informático" - -#: ../../Zotlabs/Module/Admin/Site.php:286 -msgid "Wizard - I probably know more than you do" -msgstr "Colaborador: probablemente sé más que tú" - -#: ../../Zotlabs/Module/Admin/Site.php:295 ../../Zotlabs/Widget/Admin.php:22 +#: ../../Zotlabs/Module/Admin/Site.php:288 ../../Zotlabs/Widget/Admin.php:22 msgid "Site" msgstr "Sitio" -#: ../../Zotlabs/Module/Admin/Site.php:297 -#: ../../Zotlabs/Module/Register.php:269 +#: ../../Zotlabs/Module/Admin/Site.php:290 +#: ../../Zotlabs/Module/Register.php:273 msgid "Registration" msgstr "Registro" -#: ../../Zotlabs/Module/Admin/Site.php:298 +#: ../../Zotlabs/Module/Admin/Site.php:291 msgid "File upload" msgstr "Subir fichero" -#: ../../Zotlabs/Module/Admin/Site.php:299 +#: ../../Zotlabs/Module/Admin/Site.php:292 msgid "Policies" msgstr "Políticas" -#: ../../Zotlabs/Module/Admin/Site.php:300 +#: ../../Zotlabs/Module/Admin/Site.php:293 #: ../../include/contact_widgets.php:16 msgid "Advanced" msgstr "Avanzado" -#: ../../Zotlabs/Module/Admin/Site.php:304 +#: ../../Zotlabs/Module/Admin/Site.php:297 #: ../../addon/statusnet/statusnet.php:891 msgid "Site name" msgstr "Nombre del sitio" -#: ../../Zotlabs/Module/Admin/Site.php:306 -msgid "Site default technical skill level" -msgstr "Nivel de habilidad técnica predeterminado del sitio" - -#: ../../Zotlabs/Module/Admin/Site.php:306 -msgid "Used to provide a member experience matched to technical comfort level" -msgstr "Se utiliza para proporcionar una experiencia a los miembros adaptada a su nivel de comodidad técnica" - -#: ../../Zotlabs/Module/Admin/Site.php:308 -msgid "Lock the technical skill level setting" -msgstr "Bloquear el ajuste del nivel de habilidad técnica" - -#: ../../Zotlabs/Module/Admin/Site.php:308 -msgid "Members can set their own technical comfort level by default" -msgstr "Los miembros pueden configurar su nivel de comodidad técnica por defecto" - -#: ../../Zotlabs/Module/Admin/Site.php:310 +#: ../../Zotlabs/Module/Admin/Site.php:299 msgid "Banner/Logo" msgstr "Banner/Logo" -#: ../../Zotlabs/Module/Admin/Site.php:310 +#: ../../Zotlabs/Module/Admin/Site.php:299 msgid "Unfiltered HTML/CSS/JS is allowed" msgstr "Se permite HTML/CSS/JS sin filtrar" -#: ../../Zotlabs/Module/Admin/Site.php:311 +#: ../../Zotlabs/Module/Admin/Site.php:300 msgid "Administrator Information" msgstr "Información del Administrador" -#: ../../Zotlabs/Module/Admin/Site.php:311 +#: ../../Zotlabs/Module/Admin/Site.php:300 msgid "" "Contact information for site administrators. Displayed on siteinfo page. " "BBCode can be used here" msgstr "Información de contacto de los administradores del sitio. Visible en la página \"siteinfo\". Se puede usar BBCode" -#: ../../Zotlabs/Module/Admin/Site.php:312 -#: ../../Zotlabs/Module/Siteinfo.php:21 +#: ../../Zotlabs/Module/Admin/Site.php:301 +#: ../../Zotlabs/Module/Siteinfo.php:24 msgid "Site Information" msgstr "Información sobre el sitio" -#: ../../Zotlabs/Module/Admin/Site.php:312 +#: ../../Zotlabs/Module/Admin/Site.php:301 msgid "" "Publicly visible description of this site. Displayed on siteinfo page. " "BBCode can be used here" msgstr "Descripción pública de este sitio. Visible en la página \"siteinfo\". Se puede usar BBCode" -#: ../../Zotlabs/Module/Admin/Site.php:313 +#: ../../Zotlabs/Module/Admin/Site.php:302 msgid "System language" msgstr "Idioma del sistema" -#: ../../Zotlabs/Module/Admin/Site.php:314 +#: ../../Zotlabs/Module/Admin/Site.php:303 msgid "System theme" msgstr "Tema gráfico del sistema" -#: ../../Zotlabs/Module/Admin/Site.php:314 +#: ../../Zotlabs/Module/Admin/Site.php:303 msgid "" "Default system theme - may be over-ridden by user profiles - change theme settings" msgstr "Tema del sistema por defecto - se puede cambiar por cada perfil de usuario - modificar los ajustes del tema" -#: ../../Zotlabs/Module/Admin/Site.php:317 +#: ../../Zotlabs/Module/Admin/Site.php:306 msgid "Allow Feeds as Connections" msgstr "Permitir contenidos RSS como conexiones" -#: ../../Zotlabs/Module/Admin/Site.php:317 +#: ../../Zotlabs/Module/Admin/Site.php:306 msgid "(Heavy system resource usage)" msgstr "(Uso intenso de los recursos del sistema)" -#: ../../Zotlabs/Module/Admin/Site.php:318 +#: ../../Zotlabs/Module/Admin/Site.php:307 msgid "Maximum image size" msgstr "Tamaño máximo de la imagen" -#: ../../Zotlabs/Module/Admin/Site.php:318 +#: ../../Zotlabs/Module/Admin/Site.php:307 msgid "" "Maximum size in bytes of uploaded images. Default is 0, which means no " "limits." msgstr "Tamaño máximo en bytes de la imagen subida. Por defecto, es 0, lo que significa que no hay límites." -#: ../../Zotlabs/Module/Admin/Site.php:319 +#: ../../Zotlabs/Module/Admin/Site.php:308 msgid "Does this site allow new member registration?" msgstr "¿Debe este sitio permitir el registro de nuevos miembros?" -#: ../../Zotlabs/Module/Admin/Site.php:320 +#: ../../Zotlabs/Module/Admin/Site.php:309 msgid "Invitation only" msgstr "Solo con una invitación" -#: ../../Zotlabs/Module/Admin/Site.php:320 +#: ../../Zotlabs/Module/Admin/Site.php:309 msgid "" "Only allow new member registrations with an invitation code. Above register " "policy must be set to Yes." msgstr "Solo se permiten inscripciones de nuevos miembros con un código de invitación. Además, deben aceptarse los términos del registro marcando \"Sí\"." -#: ../../Zotlabs/Module/Admin/Site.php:321 +#: ../../Zotlabs/Module/Admin/Site.php:310 msgid "Minimum age" msgstr "Edad mínima" -#: ../../Zotlabs/Module/Admin/Site.php:321 +#: ../../Zotlabs/Module/Admin/Site.php:310 msgid "Minimum age (in years) for who may register on this site." msgstr "Edad mínima (en años) para poder registrarse en este sitio." -#: ../../Zotlabs/Module/Admin/Site.php:322 +#: ../../Zotlabs/Module/Admin/Site.php:311 msgid "Which best describes the types of account offered by this hub?" msgstr "¿Cómo describiría el tipo de servicio ofrecido por este servidor?" -#: ../../Zotlabs/Module/Admin/Site.php:323 +#: ../../Zotlabs/Module/Admin/Site.php:311 +msgid "This is displayed on the public server site list." +msgstr "Esto se muestra en la lista de sitios de servidores públicos." + +#: ../../Zotlabs/Module/Admin/Site.php:312 msgid "Register text" msgstr "Texto del registro" -#: ../../Zotlabs/Module/Admin/Site.php:323 +#: ../../Zotlabs/Module/Admin/Site.php:312 msgid "Will be displayed prominently on the registration page." msgstr "Se mostrará de forma destacada en la página de registro." -#: ../../Zotlabs/Module/Admin/Site.php:324 +#: ../../Zotlabs/Module/Admin/Site.php:314 msgid "Site homepage to show visitors (default: login box)" msgstr "Página personal que se mostrará a los visitantes (por defecto: la página de identificación)" -#: ../../Zotlabs/Module/Admin/Site.php:324 +#: ../../Zotlabs/Module/Admin/Site.php:314 msgid "" "example: 'public' to show public stream, 'page/sys/home' to show a system " "webpage called 'home' or 'include:home.html' to include a file." msgstr "ejemplo: 'public' para mostrar contenido público, 'page/sys/home' para mostrar la página web definida como \"home\" o 'include:home.html' para mostrar el contenido de un fichero." -#: ../../Zotlabs/Module/Admin/Site.php:325 +#: ../../Zotlabs/Module/Admin/Site.php:315 msgid "Preserve site homepage URL" msgstr "Preservar la dirección de la página personal" -#: ../../Zotlabs/Module/Admin/Site.php:325 +#: ../../Zotlabs/Module/Admin/Site.php:315 msgid "" "Present the site homepage in a frame at the original location instead of " "redirecting" msgstr "Presenta la página personal del sitio en un marco en la ubicación original, en vez de redirigirla." -#: ../../Zotlabs/Module/Admin/Site.php:326 +#: ../../Zotlabs/Module/Admin/Site.php:316 msgid "Accounts abandoned after x days" msgstr "Cuentas abandonadas después de x días" -#: ../../Zotlabs/Module/Admin/Site.php:326 +#: ../../Zotlabs/Module/Admin/Site.php:316 msgid "" "Will not waste system resources polling external sites for abandonded " "accounts. Enter 0 for no time limit." msgstr "Para evitar consumir recursos del sistema intentando poner al día las cuentas abandonadas. Introduzca 0 para no tener límite de tiempo." -#: ../../Zotlabs/Module/Admin/Site.php:327 +#: ../../Zotlabs/Module/Admin/Site.php:317 msgid "Allowed friend domains" msgstr "Dominios amigos permitidos" -#: ../../Zotlabs/Module/Admin/Site.php:327 +#: ../../Zotlabs/Module/Admin/Site.php:317 msgid "" "Comma separated list of domains which are allowed to establish friendships " "with this site. Wildcards are accepted. Empty to allow any domains" msgstr "Lista separada por comas de dominios a los que está permitido establecer relaciones de amistad con este sitio. Se permiten comodines. Dejar en claro para aceptar cualquier dominio." -#: ../../Zotlabs/Module/Admin/Site.php:328 +#: ../../Zotlabs/Module/Admin/Site.php:318 msgid "Verify Email Addresses" msgstr "Verificar las direcciones de correo electrónico" -#: ../../Zotlabs/Module/Admin/Site.php:328 +#: ../../Zotlabs/Module/Admin/Site.php:318 msgid "" "Check to verify email addresses used in account registration (recommended)." msgstr "Activar para la verificación de la dirección de correo electrónico en el registro de una cuenta (recomendado)." -#: ../../Zotlabs/Module/Admin/Site.php:329 +#: ../../Zotlabs/Module/Admin/Site.php:319 msgid "Force publish" msgstr "Forzar la publicación" -#: ../../Zotlabs/Module/Admin/Site.php:329 +#: ../../Zotlabs/Module/Admin/Site.php:319 msgid "" "Check to force all profiles on this site to be listed in the site directory." msgstr "Intentar forzar todos los perfiles para que sean listados en el directorio de este sitio." -#: ../../Zotlabs/Module/Admin/Site.php:330 +#: ../../Zotlabs/Module/Admin/Site.php:320 msgid "Import Public Streams" msgstr "Importar contenido público" -#: ../../Zotlabs/Module/Admin/Site.php:330 +#: ../../Zotlabs/Module/Admin/Site.php:320 msgid "" "Import and allow access to public content pulled from other sites. Warning: " "this content is unmoderated." msgstr "Importar y permitir acceso al contenido público sacado de otros sitios. Advertencia: este contenido no está moderado, por lo que podría encontrar cosas inapropiadas u ofensivas." -#: ../../Zotlabs/Module/Admin/Site.php:331 +#: ../../Zotlabs/Module/Admin/Site.php:321 msgid "Site only Public Streams" msgstr "Solo contenido público en este sitio" -#: ../../Zotlabs/Module/Admin/Site.php:331 +#: ../../Zotlabs/Module/Admin/Site.php:321 msgid "" "Allow access to public content originating only from this site if Imported " "Public Streams are disabled." msgstr "Permitir el acceso al contenido público originado sólo desde este sitio si los \"streams\" públicos Importados están deshabilitados." -#: ../../Zotlabs/Module/Admin/Site.php:332 +#: ../../Zotlabs/Module/Admin/Site.php:322 msgid "Allow anybody on the internet to access the Public streams" msgstr "Permitir que cualquiera en Internet pueda acceder a los \"streams\" públicos" -#: ../../Zotlabs/Module/Admin/Site.php:332 +#: ../../Zotlabs/Module/Admin/Site.php:322 msgid "" "Disable to require authentication before viewing. Warning: this content is " "unmoderated." msgstr "Desactivar para requerir autenticación antes de la visualización. Advertencia: este contenido no está moderado." -#: ../../Zotlabs/Module/Admin/Site.php:333 +#: ../../Zotlabs/Module/Admin/Site.php:323 +msgid "Only import Public stream posts with this text" +msgstr "Importar solo entradas del stream púlbico con este texto " + +#: ../../Zotlabs/Module/Admin/Site.php:323 +#: ../../Zotlabs/Module/Admin/Site.php:324 +#: ../../Zotlabs/Module/Connedit.php:876 ../../Zotlabs/Module/Connedit.php:877 +msgid "" +"words one per line or #tags or /patterns/ or lang=xx, leave blank to import " +"all posts" +msgstr "Una sola opción por línea: palabras, #etiquetas, /patrones/ o lang=xx. Dejar en blanco para importarlo todo" + +#: ../../Zotlabs/Module/Admin/Site.php:324 +msgid "Do not import Public stream posts with this text" +msgstr "No importar entradas del stream público con este texto " + +#: ../../Zotlabs/Module/Admin/Site.php:327 msgid "Login on Homepage" msgstr "Iniciar sesión en la página personal" -#: ../../Zotlabs/Module/Admin/Site.php:333 +#: ../../Zotlabs/Module/Admin/Site.php:327 msgid "" "Present a login box to visitors on the home page if no other content has " "been configured." msgstr "Presentar a los visitantes una casilla de identificación en la página de inicio, si no se ha configurado otro tipo de contenido." -#: ../../Zotlabs/Module/Admin/Site.php:334 +#: ../../Zotlabs/Module/Admin/Site.php:328 msgid "Enable context help" msgstr "Habilitar la ayuda contextual" -#: ../../Zotlabs/Module/Admin/Site.php:334 +#: ../../Zotlabs/Module/Admin/Site.php:328 msgid "" "Display contextual help for the current page when the help button is " "pressed." msgstr "Ver la ayuda contextual para la página actual cuando se pulse el botón de Ayuda." -#: ../../Zotlabs/Module/Admin/Site.php:336 +#: ../../Zotlabs/Module/Admin/Site.php:330 msgid "Reply-to email address for system generated email." msgstr "Dirección de respuesta para el correo electrónico generado por el sistema." -#: ../../Zotlabs/Module/Admin/Site.php:337 +#: ../../Zotlabs/Module/Admin/Site.php:331 msgid "Sender (From) email address for system generated email." msgstr "Dirección del remitente (From) para el correo electrónico generado por el sistema." -#: ../../Zotlabs/Module/Admin/Site.php:338 +#: ../../Zotlabs/Module/Admin/Site.php:332 msgid "Name of email sender for system generated email." msgstr "Nombre del remitente del correo electrónico generado por el sistema." -#: ../../Zotlabs/Module/Admin/Site.php:340 +#: ../../Zotlabs/Module/Admin/Site.php:334 msgid "Directory Server URL" msgstr "URL del servidor de directorio" -#: ../../Zotlabs/Module/Admin/Site.php:340 +#: ../../Zotlabs/Module/Admin/Site.php:334 msgid "Default directory server" msgstr "Servidor de directorio predeterminado" -#: ../../Zotlabs/Module/Admin/Site.php:342 +#: ../../Zotlabs/Module/Admin/Site.php:336 msgid "Proxy user" msgstr "Usuario del proxy" -#: ../../Zotlabs/Module/Admin/Site.php:343 +#: ../../Zotlabs/Module/Admin/Site.php:337 msgid "Proxy URL" msgstr "Dirección del proxy" -#: ../../Zotlabs/Module/Admin/Site.php:344 +#: ../../Zotlabs/Module/Admin/Site.php:338 msgid "Network timeout" msgstr "Tiempo de espera de la red" -#: ../../Zotlabs/Module/Admin/Site.php:344 +#: ../../Zotlabs/Module/Admin/Site.php:338 msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." msgstr "Valor en segundos. Poner a 0 para que no haya tiempo límite (no recomendado)" -#: ../../Zotlabs/Module/Admin/Site.php:345 +#: ../../Zotlabs/Module/Admin/Site.php:339 msgid "Delivery interval" msgstr "Intervalo de entrega" -#: ../../Zotlabs/Module/Admin/Site.php:345 +#: ../../Zotlabs/Module/Admin/Site.php:339 msgid "" "Delay background delivery processes by this many seconds to reduce system " "load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " "for large dedicated servers." msgstr "Retrasar los procesos de transmisión en segundo plano por esta cantidad de segundos para reducir la carga del sistema. Recomendado: 4-5 para sitios compartidos, 2-3 para servidores virtuales privados, 0-1 para grandes servidores dedicados." -#: ../../Zotlabs/Module/Admin/Site.php:346 +#: ../../Zotlabs/Module/Admin/Site.php:340 msgid "Deliveries per process" msgstr "Intentos de envío por proceso" -#: ../../Zotlabs/Module/Admin/Site.php:346 +#: ../../Zotlabs/Module/Admin/Site.php:340 msgid "" "Number of deliveries to attempt in a single operating system process. Adjust" " if necessary to tune system performance. Recommend: 1-5." msgstr "Numero de envíos a intentar en un único proceso del sistema operativo. Ajustar si es necesario mejorar el rendimiento. Se recomienda: 1-5." -#: ../../Zotlabs/Module/Admin/Site.php:347 +#: ../../Zotlabs/Module/Admin/Site.php:341 msgid "Queue Threshold" msgstr "Umbral de la cola de espera" -#: ../../Zotlabs/Module/Admin/Site.php:347 +#: ../../Zotlabs/Module/Admin/Site.php:341 msgid "" "Always defer immediate delivery if queue contains more than this number of " "entries." msgstr "Aplazar siempre la entrega inmediata si la cola contiene más de este número de entradas." -#: ../../Zotlabs/Module/Admin/Site.php:348 +#: ../../Zotlabs/Module/Admin/Site.php:342 msgid "Poll interval" msgstr "Intervalo máximo de tiempo entre dos mensajes sucesivos" -#: ../../Zotlabs/Module/Admin/Site.php:348 +#: ../../Zotlabs/Module/Admin/Site.php:342 msgid "" "Delay background polling processes by this many seconds to reduce system " "load. If 0, use delivery interval." msgstr "Retrasar el intervalo de envío en segundo plano, en esta cantidad de segundos, para reducir la carga del sistema. Si es 0, usar el intervalo de entrega." -#: ../../Zotlabs/Module/Admin/Site.php:349 +#: ../../Zotlabs/Module/Admin/Site.php:343 msgid "Path to ImageMagick convert program" msgstr "Ruta al programa de conversión de ImageMagick" -#: ../../Zotlabs/Module/Admin/Site.php:349 +#: ../../Zotlabs/Module/Admin/Site.php:343 msgid "" "If set, use this program to generate photo thumbnails for huge images ( > " "4000 pixels in either dimension), otherwise memory exhaustion may occur. " "Example: /usr/bin/convert" msgstr "Si está configurado, utilice este programa para generar miniaturas de fotos para imágenes de gran tamaño ( > 4000 píxeles en cualquiera de las dos dimensiones), de lo contrario se puede agotar la memoria. Ejemplo: /usr/bin/convert" -#: ../../Zotlabs/Module/Admin/Site.php:350 +#: ../../Zotlabs/Module/Admin/Site.php:344 msgid "Allow SVG thumbnails in file browser" msgstr "Permitir miniaturas SVG en el navegador de archivos" -#: ../../Zotlabs/Module/Admin/Site.php:350 +#: ../../Zotlabs/Module/Admin/Site.php:344 msgid "WARNING: SVG images may contain malicious code." msgstr "ADVERTENCIA: Las imágenes SVG pueden contener código malicioso." -#: ../../Zotlabs/Module/Admin/Site.php:351 +#: ../../Zotlabs/Module/Admin/Site.php:345 msgid "Maximum Load Average" msgstr "Carga media máxima" -#: ../../Zotlabs/Module/Admin/Site.php:351 +#: ../../Zotlabs/Module/Admin/Site.php:345 msgid "" "Maximum system load before delivery and poll processes are deferred - " "default 50." msgstr "Carga máxima del sistema antes de que los procesos de entrega y envío se hayan retardado - por defecto, 50." -#: ../../Zotlabs/Module/Admin/Site.php:352 +#: ../../Zotlabs/Module/Admin/Site.php:346 msgid "Expiration period in days for imported (grid/network) content" msgstr "Caducidad del contenido importado de otros sitios (en días)" -#: ../../Zotlabs/Module/Admin/Site.php:352 +#: ../../Zotlabs/Module/Admin/Site.php:346 msgid "0 for no expiration of imported content" msgstr "0 para que no caduque el contenido importado" -#: ../../Zotlabs/Module/Admin/Site.php:353 +#: ../../Zotlabs/Module/Admin/Site.php:347 msgid "" "Do not expire any posts which have comments less than this many days ago" msgstr "No caduque ningún mensaje que tenga menos comentarios que este hace muchos días" -#: ../../Zotlabs/Module/Admin/Site.php:355 +#: ../../Zotlabs/Module/Admin/Site.php:349 msgid "" "Public servers: Optional landing (marketing) webpage for new registrants" msgstr "Servidores públicos: Página web de acogida (marketing) opcional para nuevos registros" -#: ../../Zotlabs/Module/Admin/Site.php:355 +#: ../../Zotlabs/Module/Admin/Site.php:349 #, php-format msgid "Create this page first. Default is %s/register" msgstr "Crear esta página primero. Por defecto es %s/register" -#: ../../Zotlabs/Module/Admin/Site.php:356 +#: ../../Zotlabs/Module/Admin/Site.php:350 msgid "Page to display after creating a new channel" msgstr "Página a mostrar después de la creación de un nuevo canal" -#: ../../Zotlabs/Module/Admin/Site.php:356 -msgid "Recommend: profiles, go, or settings" -msgstr "Recomendar: perfiles, ir, o ajustes" +#: ../../Zotlabs/Module/Admin/Site.php:350 +msgid "Default: profiles" +msgstr "Perfiles predeterminados" -#: ../../Zotlabs/Module/Admin/Site.php:358 +#: ../../Zotlabs/Module/Admin/Site.php:352 msgid "Optional: site location" msgstr "Opcional: ubicación del sitio" -#: ../../Zotlabs/Module/Admin/Site.php:358 +#: ../../Zotlabs/Module/Admin/Site.php:352 msgid "Region or country" msgstr "Región o país" +#: ../../Zotlabs/Module/Admin/Addons.php:289 +#, php-format +msgid "Plugin %s disabled." +msgstr "Extensión %s desactivada." + +#: ../../Zotlabs/Module/Admin/Addons.php:294 +#, php-format +msgid "Plugin %s enabled." +msgstr "Extensión %s activada." + +#: ../../Zotlabs/Module/Admin/Addons.php:342 +#: ../../Zotlabs/Module/Admin/Addons.php:437 ../../Zotlabs/Widget/Admin.php:27 +msgid "Addons" +msgstr "Addons" + +#: ../../Zotlabs/Module/Admin/Addons.php:353 +msgid "Minimum project version: " +msgstr "Versión mínima del proyecto:" + +#: ../../Zotlabs/Module/Admin/Addons.php:354 +msgid "Maximum project version: " +msgstr "Versión máxima del proyecto:" + +#: ../../Zotlabs/Module/Admin/Addons.php:355 +msgid "Minimum PHP version: " +msgstr "Versión mínima de PHP:" + +#: ../../Zotlabs/Module/Admin/Addons.php:356 +msgid "Compatible Server Roles: " +msgstr "Configuraciones compatibles con este servidor:" + +#: ../../Zotlabs/Module/Admin/Addons.php:357 +msgid "Requires: " +msgstr "Se requiere:" + +#: ../../Zotlabs/Module/Admin/Addons.php:358 +#: ../../Zotlabs/Module/Admin/Addons.php:442 +msgid "Disabled - version incompatibility" +msgstr "Deshabilitado - versiones incompatibles" + +#: ../../Zotlabs/Module/Admin/Addons.php:411 +msgid "Enter the public git repository URL of the addon repo." +msgstr "Introduzca la URL del repositorio público de git del addon repo." + +#: ../../Zotlabs/Module/Admin/Addons.php:412 +msgid "Addon repo git URL" +msgstr "URL del repositorio git del addon" + +#: ../../Zotlabs/Module/Admin/Addons.php:413 +msgid "Custom repo name" +msgstr "Nombre personalizado del repositorio" + +#: ../../Zotlabs/Module/Admin/Addons.php:413 +msgid "(optional)" +msgstr "(opcional)" + +#: ../../Zotlabs/Module/Admin/Addons.php:414 +msgid "Download Addon Repo" +msgstr "Descargar el repositorio" + +#: ../../Zotlabs/Module/Admin/Addons.php:421 +msgid "Install new repo" +msgstr "Instalar un nuevo repositorio" + +#: ../../Zotlabs/Module/Admin/Addons.php:422 ../../Zotlabs/Lib/Apps.php:513 +msgid "Install" +msgstr "Instalar" + +#: ../../Zotlabs/Module/Admin/Addons.php:445 +msgid "Manage Repos" +msgstr "Gestionar los repositorios" + +#: ../../Zotlabs/Module/Admin/Addons.php:446 +msgid "Installed Addon Repositories" +msgstr "Repositorioe de addons instalados" + +#: ../../Zotlabs/Module/Admin/Addons.php:447 +msgid "Install a New Addon Repository" +msgstr "Instalar un nuevo repositorio de addons" + +#: ../../Zotlabs/Module/Admin/Addons.php:454 +msgid "Switch branch" +msgstr "Cambiar la rama" + +#: ../../Zotlabs/Module/Admin/Addons.php:455 +#: ../../Zotlabs/Module/Photos.php:1022 ../../Zotlabs/Module/Tagrm.php:137 +#: ../../addon/superblock/Mod_Superblock.php:91 +msgid "Remove" +msgstr "Eliminar" + #: ../../Zotlabs/Module/Admin/Profs.php:89 msgid "New Profile Field" msgstr "Nuevo campo en el perfil" @@ -3170,8 +3364,8 @@ msgstr "Información adicional (opcional)" #: ../../Zotlabs/Module/Admin/Profs.php:94 #: ../../Zotlabs/Module/Admin/Profs.php:114 ../../Zotlabs/Module/Rbmark.php:32 #: ../../Zotlabs/Module/Rbmark.php:104 ../../Zotlabs/Module/Filer.php:53 -#: ../../Zotlabs/Widget/Notes.php:18 ../../include/text.php:1052 -#: ../../include/text.php:1064 +#: ../../Zotlabs/Widget/Notes.php:23 ../../include/text.php:1069 +#: ../../include/text.php:1081 msgid "Save" msgstr "Guardar" @@ -3237,127 +3431,136 @@ msgid "New Password again" msgstr "Nueva contraseña otra vez" #: ../../Zotlabs/Module/Admin/Account_edit.php:71 -msgid "Technical skill level" -msgstr "Nivel de habilidad técnica" - -#: ../../Zotlabs/Module/Admin/Account_edit.php:72 msgid "Account language (for emails)" msgstr "Idioma de la cuenta (para los correos electrónicos)" -#: ../../Zotlabs/Module/Admin/Account_edit.php:73 +#: ../../Zotlabs/Module/Admin/Account_edit.php:72 msgid "Service class" msgstr "Clase de servicio" -#: ../../Zotlabs/Module/Admin/Security.php:77 +#: ../../Zotlabs/Module/Admin/Security.php:83 msgid "" "By default, unfiltered HTML is allowed in embedded media. This is inherently" " insecure." msgstr "De forma predeterminada, el HTML sin filtrar está permitido en el contenido multimedia incorporado en una publicación. Esto es siempre inseguro." -#: ../../Zotlabs/Module/Admin/Security.php:80 +#: ../../Zotlabs/Module/Admin/Security.php:86 msgid "" "The recommended setting is to only allow unfiltered HTML from the following " "sites:" msgstr "La configuración recomendada es que sólo se permita HTML sin filtrar desde los siguientes sitios: " -#: ../../Zotlabs/Module/Admin/Security.php:81 +#: ../../Zotlabs/Module/Admin/Security.php:87 msgid "" "https://youtube.com/
    https://www.youtube.com/
    https://youtu.be/https://vimeo.com/
    https://soundcloud.com/
    " msgstr "https://youtube.com/
    https://www.youtube.com/
    https://youtu.be/
    https://vimeo.com/
    https://soundcloud.com/
    " -#: ../../Zotlabs/Module/Admin/Security.php:82 +#: ../../Zotlabs/Module/Admin/Security.php:88 msgid "" "All other embedded content will be filtered, unless " "embedded content from that site is explicitly blocked." msgstr "El resto del contenido incrustado se filtrará, excepto si el contenido incorporado desde ese sitio está bloqueado de forma explícita." -#: ../../Zotlabs/Module/Admin/Security.php:87 +#: ../../Zotlabs/Module/Admin/Security.php:93 #: ../../Zotlabs/Widget/Admin.php:25 msgid "Security" msgstr "Seguridad" -#: ../../Zotlabs/Module/Admin/Security.php:89 +#: ../../Zotlabs/Module/Admin/Security.php:95 msgid "Block public" msgstr "Bloquear páginas públicas" -#: ../../Zotlabs/Module/Admin/Security.php:89 +#: ../../Zotlabs/Module/Admin/Security.php:95 msgid "" "Check to block public access to all otherwise public personal pages on this " "site unless you are currently authenticated." msgstr "Habilitar para impedir ver las páginas personales de este sitio a quien no esté actualmente autenticado." -#: ../../Zotlabs/Module/Admin/Security.php:90 +#: ../../Zotlabs/Module/Admin/Security.php:96 +msgid "Provide a cloud root directory" +msgstr "Proporcionar un directorio raíz de la nube" + +#: ../../Zotlabs/Module/Admin/Security.php:96 +msgid "" +"The cloud root directory lists all channel names which provide public files" +msgstr "El directorio raíz de la nube lista todos los nombres de canales que proporcionan archivos públicos" + +#: ../../Zotlabs/Module/Admin/Security.php:97 +msgid "Show total disk space available to cloud uploads" +msgstr "Mostrar el espacio total disponible en el disco para las cargas en la nube" + +#: ../../Zotlabs/Module/Admin/Security.php:98 msgid "Set \"Transport Security\" HTTP header" msgstr "Habilitar \"Seguridad de transporte\" (\"Transport Security\") en la cabecera HTTP" -#: ../../Zotlabs/Module/Admin/Security.php:91 +#: ../../Zotlabs/Module/Admin/Security.php:99 msgid "Set \"Content Security Policy\" HTTP header" msgstr "Habilitar la \"Política de seguridad del contenido\" (\"Content Security Policy\") en la cabecera HTTP" -#: ../../Zotlabs/Module/Admin/Security.php:92 +#: ../../Zotlabs/Module/Admin/Security.php:100 msgid "Allowed email domains" msgstr "Se aceptan dominios de correo electrónico" -#: ../../Zotlabs/Module/Admin/Security.php:92 +#: ../../Zotlabs/Module/Admin/Security.php:100 msgid "" "Comma separated list of domains which are allowed in email addresses for " "registrations to this site. Wildcards are accepted. Empty to allow any " "domains" msgstr "Lista separada por comas de los dominios de los que se acepta una dirección de correo electrónico para registros en este sitio. Se permiten comodines. Dejar en claro para aceptar cualquier dominio. " -#: ../../Zotlabs/Module/Admin/Security.php:93 +#: ../../Zotlabs/Module/Admin/Security.php:101 msgid "Not allowed email domains" msgstr "No se permiten dominios de correo electrónico" -#: ../../Zotlabs/Module/Admin/Security.php:93 +#: ../../Zotlabs/Module/Admin/Security.php:101 msgid "" "Comma separated list of domains which are not allowed in email addresses for" " registrations to this site. Wildcards are accepted. Empty to allow any " "domains, unless allowed domains have been defined." msgstr "Lista separada por comas de los dominios de los que no se acepta una dirección de correo electrónico para registros en este sitio. Se permiten comodines. Dejar en claro para no aceptar cualquier dominio, excepto los que se hayan autorizado." -#: ../../Zotlabs/Module/Admin/Security.php:94 +#: ../../Zotlabs/Module/Admin/Security.php:102 msgid "Allow communications only from these sites" msgstr "Permitir la comunicación solo desde estos sitios" -#: ../../Zotlabs/Module/Admin/Security.php:94 +#: ../../Zotlabs/Module/Admin/Security.php:102 msgid "" "One site per line. Leave empty to allow communication from anywhere by " "default" msgstr "Un sitio por línea. Dejar en blanco para permitir por defecto la comunicación desde cualquiera" -#: ../../Zotlabs/Module/Admin/Security.php:95 +#: ../../Zotlabs/Module/Admin/Security.php:103 msgid "Block communications from these sites" msgstr "Bloquear la comunicación desde estos sitios" -#: ../../Zotlabs/Module/Admin/Security.php:96 +#: ../../Zotlabs/Module/Admin/Security.php:104 msgid "Allow communications only from these channels" msgstr "Permitir la comunicación solo desde estos canales" -#: ../../Zotlabs/Module/Admin/Security.php:96 +#: ../../Zotlabs/Module/Admin/Security.php:104 msgid "" "One channel (hash) per line. Leave empty to allow from any channel by " "default" msgstr "Un canal (hash) por línea. Dejar en blanco para permitir por defecto la comunicación desde cualquiera" -#: ../../Zotlabs/Module/Admin/Security.php:97 +#: ../../Zotlabs/Module/Admin/Security.php:105 msgid "Block communications from these channels" msgstr "Bloquear la comunicación desde estos canales" -#: ../../Zotlabs/Module/Admin/Security.php:98 +#: ../../Zotlabs/Module/Admin/Security.php:106 msgid "Only allow embeds from secure (SSL) websites and links." msgstr "Sólo se permite contenido multimedia incorporado desde sitios y enlaces seguros (SSL)." -#: ../../Zotlabs/Module/Admin/Security.php:99 +#: ../../Zotlabs/Module/Admin/Security.php:107 msgid "Allow unfiltered embedded HTML content only from these domains" msgstr "Permitir contenido HTML sin filtrar sólo desde estos dominios " -#: ../../Zotlabs/Module/Admin/Security.php:99 +#: ../../Zotlabs/Module/Admin/Security.php:107 msgid "One site per line. By default embedded content is filtered." msgstr "Un sitio por línea. El contenido incorporado se filtra de forma predeterminada." -#: ../../Zotlabs/Module/Admin/Security.php:100 +#: ../../Zotlabs/Module/Admin/Security.php:108 msgid "Block embedded HTML from these domains" msgstr "Bloquear contenido con HTML incorporado desde estos dominios" @@ -3370,7 +3573,7 @@ msgid "Visible to:" msgstr "Visible para:" #: ../../Zotlabs/Module/Lockview.php:117 ../../Zotlabs/Module/Lockview.php:153 -#: ../../Zotlabs/Module/Acl.php:121 ../../include/acl_selectors.php:88 +#: ../../Zotlabs/Module/Acl.php:120 ../../include/acl_selectors.php:88 msgctxt "acl" msgid "Profile" msgstr "Perfil" @@ -3383,697 +3586,536 @@ msgstr "El comentario ha sido aprobado" msgid "Comment deleted" msgstr "Se ha eliminado el comentario" -#: ../../Zotlabs/Module/Settings/Permcats.php:23 -msgid "Permission Name is required." -msgstr "Se requiere el nombre de la autorización" - -#: ../../Zotlabs/Module/Settings/Permcats.php:42 -msgid "Permission category saved." -msgstr "Se ha guardado la categoría del permiso." - -#: ../../Zotlabs/Module/Settings/Permcats.php:66 -msgid "" -"Use this form to create permission rules for various classes of people or " -"connections." -msgstr "Utilice este formulario para crear reglas de permiso para varias clases de personas o conexiones." - -#: ../../Zotlabs/Module/Settings/Permcats.php:99 -msgid "Permission Categories" -msgstr "Tipos de permisos" - -#: ../../Zotlabs/Module/Settings/Permcats.php:107 -msgid "Permission Name" -msgstr "Nombre de la autorización" - -#: ../../Zotlabs/Module/Settings/Permcats.php:108 -#: ../../Zotlabs/Module/Settings/Tokens.php:161 -#: ../../Zotlabs/Module/Connedit.php:891 ../../Zotlabs/Module/Defperms.php:250 -msgid "My Settings" -msgstr "Mis ajustes" - -#: ../../Zotlabs/Module/Settings/Permcats.php:110 -#: ../../Zotlabs/Module/Settings/Tokens.php:163 -#: ../../Zotlabs/Module/Connedit.php:886 ../../Zotlabs/Module/Defperms.php:248 -msgid "inherited" -msgstr "heredado" - -#: ../../Zotlabs/Module/Settings/Permcats.php:113 -#: ../../Zotlabs/Module/Settings/Tokens.php:166 -#: ../../Zotlabs/Module/Connedit.php:893 ../../Zotlabs/Module/Defperms.php:253 -msgid "Individual Permissions" -msgstr "Permisos individuales" - -#: ../../Zotlabs/Module/Settings/Permcats.php:114 -#: ../../Zotlabs/Module/Settings/Tokens.php:167 -#: ../../Zotlabs/Module/Connedit.php:894 -msgid "" -"Some permissions may be inherited from your channel's privacy settings, which have higher " -"priority than individual settings. You can not change those" -" settings here." -msgstr "Algunos permisos pueden ser heredados de los ajustes de privacidad de sus canales, los cuales tienen una prioridad más alta que los ajustes individuales. No puede cambiar estos ajustes aquí." - -#: ../../Zotlabs/Module/Settings/Channel.php:64 -#: ../../Zotlabs/Module/Settings/Channel.php:68 -#: ../../Zotlabs/Module/Settings/Channel.php:69 -#: ../../Zotlabs/Module/Settings/Channel.php:72 -#: ../../Zotlabs/Module/Settings/Channel.php:83 -#: ../../Zotlabs/Module/Connedit.php:711 ../../Zotlabs/Widget/Affinity.php:24 -#: ../../include/selectors.php:123 ../../include/channel.php:437 -#: ../../include/channel.php:438 ../../include/channel.php:445 +#: ../../Zotlabs/Module/Settings/Channel.php:70 +#: ../../Zotlabs/Module/Settings/Channel.php:74 +#: ../../Zotlabs/Module/Settings/Channel.php:75 +#: ../../Zotlabs/Module/Settings/Channel.php:78 +#: ../../Zotlabs/Module/Settings/Channel.php:89 +#: ../../Zotlabs/Module/Connedit.php:712 ../../Zotlabs/Widget/Affinity.php:24 +#: ../../include/selectors.php:123 ../../include/channel.php:444 +#: ../../include/channel.php:445 ../../include/channel.php:452 msgid "Friends" msgstr "Amigos/as" -#: ../../Zotlabs/Module/Settings/Channel.php:264 -#: ../../Zotlabs/Module/Defperms.php:103 +#: ../../Zotlabs/Module/Settings/Channel.php:272 +#: ../../Zotlabs/Module/Defperms.php:111 #: ../../addon/rendezvous/rendezvous.php:82 #: ../../addon/openstreetmap/openstreetmap.php:184 #: ../../addon/msgfooter/msgfooter.php:54 ../../addon/logrot/logrot.php:54 -#: ../../addon/twitter/twitter.php:772 ../../addon/piwik/piwik.php:116 +#: ../../addon/twitter/twitter.php:775 ../../addon/piwik/piwik.php:116 #: ../../addon/xmpp/xmpp.php:102 msgid "Settings updated." msgstr "Ajustes actualizados." -#: ../../Zotlabs/Module/Settings/Channel.php:325 +#: ../../Zotlabs/Module/Settings/Channel.php:333 msgid "Nobody except yourself" msgstr "Nadie excepto usted" -#: ../../Zotlabs/Module/Settings/Channel.php:326 +#: ../../Zotlabs/Module/Settings/Channel.php:334 msgid "Only those you specifically allow" msgstr "Solo aquellos a los que usted permita explícitamente" -#: ../../Zotlabs/Module/Settings/Channel.php:327 +#: ../../Zotlabs/Module/Settings/Channel.php:335 msgid "Approved connections" msgstr "Conexiones aprobadas" -#: ../../Zotlabs/Module/Settings/Channel.php:328 +#: ../../Zotlabs/Module/Settings/Channel.php:336 msgid "Any connections" msgstr "Cualquier conexión" -#: ../../Zotlabs/Module/Settings/Channel.php:329 +#: ../../Zotlabs/Module/Settings/Channel.php:337 msgid "Anybody on this website" msgstr "Cualquiera en este sitio web" -#: ../../Zotlabs/Module/Settings/Channel.php:330 +#: ../../Zotlabs/Module/Settings/Channel.php:338 msgid "Anybody in this network" msgstr "Cualquiera en esta red" -#: ../../Zotlabs/Module/Settings/Channel.php:331 +#: ../../Zotlabs/Module/Settings/Channel.php:339 msgid "Anybody authenticated" msgstr "Cualquiera que esté autenticado" -#: ../../Zotlabs/Module/Settings/Channel.php:332 +#: ../../Zotlabs/Module/Settings/Channel.php:340 msgid "Anybody on the internet" msgstr "Cualquiera en internet" -#: ../../Zotlabs/Module/Settings/Channel.php:407 +#: ../../Zotlabs/Module/Settings/Channel.php:415 msgid "Publish your default profile in the network directory" msgstr "Publicar su perfil principal en el directorio de la red" -#: ../../Zotlabs/Module/Settings/Channel.php:412 +#: ../../Zotlabs/Module/Settings/Channel.php:420 msgid "Allow us to suggest you as a potential friend to new members?" msgstr "¿Nos permite sugerirle como amigo potencial a los nuevos miembros?" -#: ../../Zotlabs/Module/Settings/Channel.php:416 +#: ../../Zotlabs/Module/Settings/Channel.php:424 msgid "or" msgstr "o" -#: ../../Zotlabs/Module/Settings/Channel.php:425 +#: ../../Zotlabs/Module/Settings/Channel.php:433 msgid "Your channel address is" msgstr "Su dirección de canal es" -#: ../../Zotlabs/Module/Settings/Channel.php:428 +#: ../../Zotlabs/Module/Settings/Channel.php:436 msgid "Your files/photos are accessible via WebDAV at" msgstr "Sus archivos y fotos son accesibles a través de WebDAV en " -#: ../../Zotlabs/Module/Settings/Channel.php:493 +#: ../../Zotlabs/Module/Settings/Channel.php:488 +msgid "Automatic membership approval" +msgstr "Aprobación automática de nuevos miembros" + +#: ../../Zotlabs/Module/Settings/Channel.php:488 +#: ../../Zotlabs/Module/Defperms.php:255 +msgid "" +"If enabled, connection requests will be approved without your interaction" +msgstr "Si está habilitado, las solicitudes de conexión serán aprobadas sin su intervención." + +#: ../../Zotlabs/Module/Settings/Channel.php:509 msgid "Channel Settings" msgstr "Ajustes del canal" -#: ../../Zotlabs/Module/Settings/Channel.php:500 +#: ../../Zotlabs/Module/Settings/Channel.php:516 msgid "Basic Settings" msgstr "Configuración básica" -#: ../../Zotlabs/Module/Settings/Channel.php:501 -#: ../../include/channel.php:1521 +#: ../../Zotlabs/Module/Settings/Channel.php:517 +#: ../../include/channel.php:1528 msgid "Full Name:" msgstr "Nombre completo:" -#: ../../Zotlabs/Module/Settings/Channel.php:502 -#: ../../Zotlabs/Module/Settings/Account.php:119 +#: ../../Zotlabs/Module/Settings/Channel.php:518 +#: ../../Zotlabs/Module/Settings/Account.php:104 msgid "Email Address:" msgstr "Dirección de correo electrónico:" -#: ../../Zotlabs/Module/Settings/Channel.php:503 +#: ../../Zotlabs/Module/Settings/Channel.php:519 msgid "Your Timezone:" msgstr "Su huso horario:" -#: ../../Zotlabs/Module/Settings/Channel.php:504 +#: ../../Zotlabs/Module/Settings/Channel.php:520 msgid "Default Post Location:" msgstr "Localización geográfica predeterminada para sus publicaciones:" -#: ../../Zotlabs/Module/Settings/Channel.php:504 +#: ../../Zotlabs/Module/Settings/Channel.php:520 msgid "Geographical location to display on your posts" msgstr "Localización geográfica que debe mostrarse en sus publicaciones" -#: ../../Zotlabs/Module/Settings/Channel.php:505 +#: ../../Zotlabs/Module/Settings/Channel.php:521 msgid "Use Browser Location:" msgstr "Usar la localización geográfica del navegador:" -#: ../../Zotlabs/Module/Settings/Channel.php:507 +#: ../../Zotlabs/Module/Settings/Channel.php:523 msgid "Adult Content" msgstr "Contenido solo para adultos" -#: ../../Zotlabs/Module/Settings/Channel.php:507 +#: ../../Zotlabs/Module/Settings/Channel.php:523 msgid "" "This channel frequently or regularly publishes adult content. (Please tag " "any adult material and/or nudity with #NSFW)" msgstr "Este canal publica contenido solo para adultos con frecuencia o regularmente. (Por favor etiquete cualquier material para adultos con la etiqueta #NSFW)" -#: ../../Zotlabs/Module/Settings/Channel.php:509 +#: ../../Zotlabs/Module/Settings/Channel.php:525 msgid "Security and Privacy Settings" msgstr "Configuración de seguridad y privacidad" -#: ../../Zotlabs/Module/Settings/Channel.php:511 +#: ../../Zotlabs/Module/Settings/Channel.php:527 msgid "Your permissions are already configured. Click to view/adjust" msgstr "Sus permisos ya están configurados. Pulse para ver/ajustar" -#: ../../Zotlabs/Module/Settings/Channel.php:513 +#: ../../Zotlabs/Module/Settings/Channel.php:529 msgid "Hide my online presence" msgstr "Ocultar mi presencia en línea" -#: ../../Zotlabs/Module/Settings/Channel.php:513 +#: ../../Zotlabs/Module/Settings/Channel.php:529 msgid "Prevents displaying in your profile that you are online" msgstr "Evitar mostrar en su perfil que está en línea" -#: ../../Zotlabs/Module/Settings/Channel.php:515 +#: ../../Zotlabs/Module/Settings/Channel.php:531 msgid "Simple Privacy Settings:" msgstr "Configuración de privacidad sencilla:" -#: ../../Zotlabs/Module/Settings/Channel.php:516 +#: ../../Zotlabs/Module/Settings/Channel.php:532 msgid "" "Very Public - extremely permissive (should be used with caution)" msgstr "Muy Público - extremadamente permisivo (debería ser usado con precaución)" -#: ../../Zotlabs/Module/Settings/Channel.php:517 +#: ../../Zotlabs/Module/Settings/Channel.php:533 msgid "" "Typical - default public, privacy when desired (similar to social " "network permissions but with improved privacy)" msgstr "Típico - por defecto público, privado cuando se desee (similar a los permisos de una red social pero con privacidad mejorada)" -#: ../../Zotlabs/Module/Settings/Channel.php:518 +#: ../../Zotlabs/Module/Settings/Channel.php:534 msgid "Private - default private, never open or public" msgstr "Privado - por defecto, privado, nunca abierto o público" -#: ../../Zotlabs/Module/Settings/Channel.php:519 +#: ../../Zotlabs/Module/Settings/Channel.php:535 msgid "Blocked - default blocked to/from everybody" msgstr "Bloqueado - por defecto, bloqueado/a para cualquiera" -#: ../../Zotlabs/Module/Settings/Channel.php:521 +#: ../../Zotlabs/Module/Settings/Channel.php:537 msgid "Allow others to tag your posts" msgstr "Permitir a otros etiquetar sus publicaciones" -#: ../../Zotlabs/Module/Settings/Channel.php:521 +#: ../../Zotlabs/Module/Settings/Channel.php:537 msgid "" "Often used by the community to retro-actively flag inappropriate content" msgstr "A menudo usado por la comunidad para marcar contenido inapropiado de forma retroactiva." -#: ../../Zotlabs/Module/Settings/Channel.php:523 +#: ../../Zotlabs/Module/Settings/Channel.php:539 msgid "Channel Permission Limits" msgstr "Límites de los permisos del canal" -#: ../../Zotlabs/Module/Settings/Channel.php:525 +#: ../../Zotlabs/Module/Settings/Channel.php:541 msgid "Expire other channel content after this many days" msgstr "Caducar contenido de otros canales después de este número de días" -#: ../../Zotlabs/Module/Settings/Channel.php:525 +#: ../../Zotlabs/Module/Settings/Channel.php:541 msgid "0 or blank to use the website limit." msgstr "0 o en blanco para usar el límite del sitio web." -#: ../../Zotlabs/Module/Settings/Channel.php:525 +#: ../../Zotlabs/Module/Settings/Channel.php:541 #, php-format msgid "This website expires after %d days." msgstr "Este sitio web caduca después de %d días." -#: ../../Zotlabs/Module/Settings/Channel.php:525 +#: ../../Zotlabs/Module/Settings/Channel.php:541 msgid "This website does not expire imported content." msgstr "Este sitio web no caduca el contenido importado." -#: ../../Zotlabs/Module/Settings/Channel.php:525 +#: ../../Zotlabs/Module/Settings/Channel.php:541 msgid "The website limit takes precedence if lower than your limit." msgstr "El límite del sitio web tiene prioridad si es inferior a su propio límite." -#: ../../Zotlabs/Module/Settings/Channel.php:526 +#: ../../Zotlabs/Module/Settings/Channel.php:542 msgid "Maximum Friend Requests/Day:" msgstr "Máximo de solicitudes de amistad por día:" -#: ../../Zotlabs/Module/Settings/Channel.php:526 +#: ../../Zotlabs/Module/Settings/Channel.php:542 msgid "May reduce spam activity" msgstr "Podría reducir la actividad de spam" -#: ../../Zotlabs/Module/Settings/Channel.php:527 +#: ../../Zotlabs/Module/Settings/Channel.php:543 msgid "Default Privacy Group" msgstr "Grupo de canales predeterminado" -#: ../../Zotlabs/Module/Settings/Channel.php:529 +#: ../../Zotlabs/Module/Settings/Channel.php:545 msgid "Use my default audience setting for the type of object published" msgstr "Usar los ajustes de mi audiencia predeterminada para el tipo de publicación" -#: ../../Zotlabs/Module/Settings/Channel.php:530 +#: ../../Zotlabs/Module/Settings/Channel.php:546 msgid "Profile to assign new connections" msgstr "Perfil para asignar a las nuevas conexiones" -#: ../../Zotlabs/Module/Settings/Channel.php:540 -msgid "Default Permissions Group" -msgstr "Grupo de permisos predeterminados" +#: ../../Zotlabs/Module/Settings/Channel.php:556 +msgid "Default permissions category" +msgstr "Categoría de permisos por defecto" -#: ../../Zotlabs/Module/Settings/Channel.php:546 +#: ../../Zotlabs/Module/Settings/Channel.php:562 msgid "Maximum private messages per day from unknown people:" msgstr "Máximo de mensajes privados por día de gente desconocida:" -#: ../../Zotlabs/Module/Settings/Channel.php:546 +#: ../../Zotlabs/Module/Settings/Channel.php:562 msgid "Useful to reduce spamming" msgstr "Útil para reducir el envío de correo no deseado" -#: ../../Zotlabs/Module/Settings/Channel.php:549 +#: ../../Zotlabs/Module/Settings/Channel.php:565 #: ../../Zotlabs/Lib/Enotify.php:68 msgid "Notification Settings" msgstr "Configuración de las notificaciones" -#: ../../Zotlabs/Module/Settings/Channel.php:550 +#: ../../Zotlabs/Module/Settings/Channel.php:566 msgid "By default post a status message when:" msgstr "Por defecto, enviar un mensaje de estado cuando:" -#: ../../Zotlabs/Module/Settings/Channel.php:551 +#: ../../Zotlabs/Module/Settings/Channel.php:567 msgid "accepting a friend request" msgstr "Acepte una solicitud de amistad" -#: ../../Zotlabs/Module/Settings/Channel.php:552 +#: ../../Zotlabs/Module/Settings/Channel.php:568 msgid "joining a forum/community" msgstr "al unirse a un foro o comunidad" -#: ../../Zotlabs/Module/Settings/Channel.php:553 +#: ../../Zotlabs/Module/Settings/Channel.php:569 msgid "making an interesting profile change" msgstr "Realice un cambio interesante en su perfil" -#: ../../Zotlabs/Module/Settings/Channel.php:554 +#: ../../Zotlabs/Module/Settings/Channel.php:570 msgid "Send a notification email when:" msgstr "Enviar una notificación por correo electrónico cuando:" -#: ../../Zotlabs/Module/Settings/Channel.php:555 +#: ../../Zotlabs/Module/Settings/Channel.php:571 msgid "You receive a connection request" msgstr "Reciba una solicitud de conexión" -#: ../../Zotlabs/Module/Settings/Channel.php:556 +#: ../../Zotlabs/Module/Settings/Channel.php:572 msgid "Your connections are confirmed" msgstr "Sus conexiones hayan sido confirmadas" -#: ../../Zotlabs/Module/Settings/Channel.php:557 +#: ../../Zotlabs/Module/Settings/Channel.php:573 msgid "Someone writes on your profile wall" msgstr "Alguien escriba en la página de su perfil (\"muro\")" -#: ../../Zotlabs/Module/Settings/Channel.php:558 +#: ../../Zotlabs/Module/Settings/Channel.php:574 msgid "Someone writes a followup comment" msgstr "Alguien escriba un comentario sobre sus publicaciones" -#: ../../Zotlabs/Module/Settings/Channel.php:559 +#: ../../Zotlabs/Module/Settings/Channel.php:575 msgid "You receive a private message" msgstr "Reciba un mensaje privado" -#: ../../Zotlabs/Module/Settings/Channel.php:560 +#: ../../Zotlabs/Module/Settings/Channel.php:576 msgid "You receive a friend suggestion" msgstr "Reciba una sugerencia de amistad" -#: ../../Zotlabs/Module/Settings/Channel.php:561 +#: ../../Zotlabs/Module/Settings/Channel.php:577 msgid "You are tagged in a post" msgstr "Usted sea etiquetado en una publicación" -#: ../../Zotlabs/Module/Settings/Channel.php:562 +#: ../../Zotlabs/Module/Settings/Channel.php:578 msgid "You are poked/prodded/etc. in a post" msgstr "Reciba un toque o incitación en una publicación" -#: ../../Zotlabs/Module/Settings/Channel.php:564 +#: ../../Zotlabs/Module/Settings/Channel.php:580 msgid "Someone likes your post/comment" msgstr "Alguien muestre agrado por su entrada o comentario" -#: ../../Zotlabs/Module/Settings/Channel.php:567 +#: ../../Zotlabs/Module/Settings/Channel.php:583 msgid "Show visual notifications including:" msgstr "Mostrar notificaciones visuales que incluyan:" -#: ../../Zotlabs/Module/Settings/Channel.php:569 -msgid "Unseen grid activity" -msgstr "Nueva actividad en la red" +#: ../../Zotlabs/Module/Settings/Channel.php:585 +msgid "Unseen stream activity" +msgstr "Actividad del stream no vista" -#: ../../Zotlabs/Module/Settings/Channel.php:570 +#: ../../Zotlabs/Module/Settings/Channel.php:586 msgid "Unseen channel activity" msgstr "Actividad no vista en el canal" -#: ../../Zotlabs/Module/Settings/Channel.php:571 +#: ../../Zotlabs/Module/Settings/Channel.php:587 msgid "Unseen private messages" msgstr "Mensajes privados no leídos" -#: ../../Zotlabs/Module/Settings/Channel.php:571 -#: ../../Zotlabs/Module/Settings/Channel.php:576 -#: ../../Zotlabs/Module/Settings/Channel.php:577 -#: ../../Zotlabs/Module/Settings/Channel.php:578 +#: ../../Zotlabs/Module/Settings/Channel.php:587 +#: ../../Zotlabs/Module/Settings/Channel.php:592 +#: ../../Zotlabs/Module/Settings/Channel.php:593 +#: ../../Zotlabs/Module/Settings/Channel.php:594 #: ../../addon/jappixmini/jappixmini.php:343 msgid "Recommended" msgstr "Recomendado" -#: ../../Zotlabs/Module/Settings/Channel.php:572 +#: ../../Zotlabs/Module/Settings/Channel.php:588 msgid "Upcoming events" msgstr "Próximos eventos" -#: ../../Zotlabs/Module/Settings/Channel.php:573 +#: ../../Zotlabs/Module/Settings/Channel.php:589 msgid "Events today" msgstr "Eventos de hoy" -#: ../../Zotlabs/Module/Settings/Channel.php:574 +#: ../../Zotlabs/Module/Settings/Channel.php:590 msgid "Upcoming birthdays" msgstr "Próximos cumpleaños" -#: ../../Zotlabs/Module/Settings/Channel.php:574 +#: ../../Zotlabs/Module/Settings/Channel.php:590 msgid "Not available in all themes" msgstr "No disponible en todos los temas" -#: ../../Zotlabs/Module/Settings/Channel.php:575 +#: ../../Zotlabs/Module/Settings/Channel.php:591 msgid "System (personal) notifications" msgstr "Notificaciones del sistema (personales)" -#: ../../Zotlabs/Module/Settings/Channel.php:576 +#: ../../Zotlabs/Module/Settings/Channel.php:592 msgid "System info messages" msgstr "Mensajes de información del sistema" -#: ../../Zotlabs/Module/Settings/Channel.php:577 +#: ../../Zotlabs/Module/Settings/Channel.php:593 msgid "System critical alerts" msgstr "Alertas críticas del sistema" -#: ../../Zotlabs/Module/Settings/Channel.php:578 +#: ../../Zotlabs/Module/Settings/Channel.php:594 msgid "New connections" msgstr "Nuevas conexiones" -#: ../../Zotlabs/Module/Settings/Channel.php:579 +#: ../../Zotlabs/Module/Settings/Channel.php:595 msgid "System Registrations" msgstr "Registros del sistema" -#: ../../Zotlabs/Module/Settings/Channel.php:580 +#: ../../Zotlabs/Module/Settings/Channel.php:596 msgid "Unseen shared files" msgstr "Ficheros compartidos no vistos" -#: ../../Zotlabs/Module/Settings/Channel.php:581 -msgid "Unseen public activity" -msgstr "Actividad pública no vista" +#: ../../Zotlabs/Module/Settings/Channel.php:597 +msgid "Unseen public stream activity" +msgstr "Actividad del stream público no vista" -#: ../../Zotlabs/Module/Settings/Channel.php:582 +#: ../../Zotlabs/Module/Settings/Channel.php:598 msgid "Unseen likes and dislikes" msgstr "Los \"me gusta\" y \"no me gusta\" no vistos" -#: ../../Zotlabs/Module/Settings/Channel.php:583 +#: ../../Zotlabs/Module/Settings/Channel.php:599 +msgid "Unseen forum posts" +msgstr "Entradas no vistas en el foro" + +#: ../../Zotlabs/Module/Settings/Channel.php:600 msgid "Email notification hub (hostname)" msgstr "Email de notificación del hub (nombre del host)" -#: ../../Zotlabs/Module/Settings/Channel.php:583 +#: ../../Zotlabs/Module/Settings/Channel.php:600 #, php-format msgid "" "If your channel is mirrored to multiple hubs, set this to your preferred " "location. This will prevent duplicate email notifications. Example: %s" msgstr "Si su canal está replicado en múltiples hubs, colóquelo en su ubicación preferida. Esto evitará la duplicación de notificaciones por correo electrónico. Ejemplo: %s" -#: ../../Zotlabs/Module/Settings/Channel.php:584 +#: ../../Zotlabs/Module/Settings/Channel.php:601 msgid "Show new wall posts, private messages and connections under Notices" msgstr "Mostrar nuevos mensajes en el muro, mensajes privados y conexiones en Avisos" -#: ../../Zotlabs/Module/Settings/Channel.php:586 +#: ../../Zotlabs/Module/Settings/Channel.php:603 msgid "Notify me of events this many days in advance" msgstr "Avisarme de los eventos con algunos días de antelación" -#: ../../Zotlabs/Module/Settings/Channel.php:586 +#: ../../Zotlabs/Module/Settings/Channel.php:603 msgid "Must be greater than 0" msgstr "Debe ser mayor que 0" -#: ../../Zotlabs/Module/Settings/Channel.php:592 +#: ../../Zotlabs/Module/Settings/Channel.php:609 msgid "Advanced Account/Page Type Settings" msgstr "Ajustes avanzados de la cuenta y de los tipos de página" -#: ../../Zotlabs/Module/Settings/Channel.php:593 +#: ../../Zotlabs/Module/Settings/Channel.php:610 msgid "Change the behaviour of this account for special situations" msgstr "Cambiar el comportamiento de esta cuenta en situaciones especiales" -#: ../../Zotlabs/Module/Settings/Channel.php:595 +#: ../../Zotlabs/Module/Settings/Channel.php:612 msgid "Miscellaneous Settings" msgstr "Ajustes diversos" -#: ../../Zotlabs/Module/Settings/Channel.php:596 +#: ../../Zotlabs/Module/Settings/Channel.php:613 msgid "Default photo upload folder" msgstr "Carpeta por defecto de las fotos subidas" -#: ../../Zotlabs/Module/Settings/Channel.php:596 -#: ../../Zotlabs/Module/Settings/Channel.php:597 +#: ../../Zotlabs/Module/Settings/Channel.php:613 +#: ../../Zotlabs/Module/Settings/Channel.php:614 msgid "%Y - current year, %m - current month" msgstr "%Y - año en curso, %m - mes actual" -#: ../../Zotlabs/Module/Settings/Channel.php:597 +#: ../../Zotlabs/Module/Settings/Channel.php:614 msgid "Default file upload folder" msgstr "Carpeta por defecto de los ficheros subidos" -#: ../../Zotlabs/Module/Settings/Channel.php:599 +#: ../../Zotlabs/Module/Settings/Channel.php:616 msgid "Personal menu to display in your channel pages" msgstr "Menú personal que debe mostrarse en las páginas de su canal" -#: ../../Zotlabs/Module/Settings/Channel.php:601 +#: ../../Zotlabs/Module/Settings/Channel.php:618 msgid "Remove this channel." msgstr "Eliminar este canal." -#: ../../Zotlabs/Module/Settings/Channel.php:602 +#: ../../Zotlabs/Module/Settings/Channel.php:619 msgid "Firefox Share $Projectname provider" msgstr "Servicio de compartición de Firefox: proveedor $Projectname" -#: ../../Zotlabs/Module/Settings/Channel.php:603 -msgid "Start calendar week on Monday" -msgstr "Comenzar el calendario semanal por el lunes" - -#: ../../Zotlabs/Module/Settings/Features.php:73 +#: ../../Zotlabs/Module/Settings/Features.php:43 msgid "Additional Features" msgstr "Funcionalidades" -#: ../../Zotlabs/Module/Settings/Features.php:74 -#: ../../Zotlabs/Module/Settings/Account.php:116 -msgid "Your technical skill level" -msgstr "Su nivel de habilidad técnica" +#: ../../Zotlabs/Module/Settings/Events.php:39 +msgid "Events Settings" +msgstr "Gestión de eventos" -#: ../../Zotlabs/Module/Settings/Features.php:74 -#: ../../Zotlabs/Module/Settings/Account.php:116 -msgid "" -"Used to provide a member experience and additional features consistent with " -"your comfort level" -msgstr "Utilizado para proporcionar un nivel de experiencia como miembro y características adicionales consistentes con su nivel de comodidad" +#: ../../Zotlabs/Module/Settings/Calendar.php:39 +msgid "CalDAV Settings" +msgstr "Ajustes de CalDav" -#: ../../Zotlabs/Module/Settings/Tokens.php:31 -#, php-format -msgid "This channel is limited to %d tokens" -msgstr "Este canal tiene un límite de %d tokens" +#: ../../Zotlabs/Module/Settings/Conversation.php:22 +msgid "Settings saved." +msgstr "Configuración guardada." -#: ../../Zotlabs/Module/Settings/Tokens.php:37 -msgid "Name and Password are required." -msgstr "Se requiere el nombre y la contraseña." +#: ../../Zotlabs/Module/Settings/Conversation.php:24 +msgid "Settings saved. Reload page please." +msgstr "Ajustes guardados. Recargue la página, por favor." -#: ../../Zotlabs/Module/Settings/Tokens.php:77 -msgid "Token saved." -msgstr "Token salvado." +#: ../../Zotlabs/Module/Settings/Conversation.php:46 +msgid "Conversation Settings" +msgstr "Ajustes de Conversation" -#: ../../Zotlabs/Module/Settings/Tokens.php:113 -msgid "" -"Use this form to create temporary access identifiers to share things with " -"non-members. These identities may be used in Access Control Lists and " -"visitors may login using these credentials to access private content." -msgstr "Utilice este formulario para crear identificadores de acceso temporal para compartir cosas con los no miembros de Hubzilla. Estas identidades se pueden usar en las Listas de control de acceso (ACL) y así los visitantes pueden iniciar sesión, utilizando estas credenciales, para acceder a su contenido privado." +#: ../../Zotlabs/Module/Settings/Connections.php:39 +msgid "Connections Settings" +msgstr "Gestión de las conexiones" -#: ../../Zotlabs/Module/Settings/Tokens.php:115 -msgid "" -"You may also provide dropbox style access links to friends and " -"associates by adding the Login Password to any specific site URL as shown. " -"Examples:" -msgstr "También puede proporcionar, con el estilo dropbox, enlaces de acceso a sus amigos y asociados añadiendo la contraseña de inicio de sesión a cualquier dirección URL, como se muestra. Ejemplos: " +#: ../../Zotlabs/Module/Settings/Photos.php:39 +msgid "Photos Settings" +msgstr "Gestión de las fotos" -#: ../../Zotlabs/Module/Settings/Tokens.php:150 -#: ../../Zotlabs/Widget/Settings_menu.php:100 -msgid "Guest Access Tokens" -msgstr "Tokens de acceso para invitados" - -#: ../../Zotlabs/Module/Settings/Tokens.php:157 -msgid "Login Name" -msgstr "Nombre de inicio de sesión" - -#: ../../Zotlabs/Module/Settings/Tokens.php:158 -msgid "Login Password" -msgstr "Contraseña de inicio de sesión" - -#: ../../Zotlabs/Module/Settings/Tokens.php:159 -msgid "Expires (yyyy-mm-dd)" -msgstr "Expira (aaaa-mm-dd)" - -#: ../../Zotlabs/Module/Settings/Tokens.php:160 -#: ../../Zotlabs/Module/Connedit.php:890 -msgid "Their Settings" -msgstr "Sus ajustes" - -#: ../../Zotlabs/Module/Settings/Oauth2.php:35 -msgid "Name and Secret are required" -msgstr "\"Key\" y \"Secret\" son obligatorios" - -#: ../../Zotlabs/Module/Settings/Oauth2.php:83 -msgid "Add OAuth2 application" -msgstr "Añadir aplicación OAuth2" - -#: ../../Zotlabs/Module/Settings/Oauth2.php:86 -#: ../../Zotlabs/Module/Settings/Oauth2.php:114 -#: ../../Zotlabs/Module/Settings/Oauth.php:90 -msgid "Name of application" -msgstr "Nombre de la aplicación" - -#: ../../Zotlabs/Module/Settings/Oauth2.php:87 -#: ../../Zotlabs/Module/Settings/Oauth2.php:115 -#: ../../Zotlabs/Module/Settings/Oauth.php:92 -#: ../../Zotlabs/Module/Settings/Oauth.php:118 -#: ../../addon/statusnet/statusnet.php:893 ../../addon/twitter/twitter.php:782 -msgid "Consumer Secret" -msgstr "Consumer Secret" - -#: ../../Zotlabs/Module/Settings/Oauth2.php:87 -#: ../../Zotlabs/Module/Settings/Oauth2.php:115 -#: ../../Zotlabs/Module/Settings/Oauth.php:91 -#: ../../Zotlabs/Module/Settings/Oauth.php:92 -msgid "Automatically generated - change if desired. Max length 20" -msgstr "Generado automáticamente - si lo desea, cámbielo. Longitud máxima: 20" - -#: ../../Zotlabs/Module/Settings/Oauth2.php:88 -#: ../../Zotlabs/Module/Settings/Oauth2.php:116 -#: ../../Zotlabs/Module/Settings/Oauth.php:93 -#: ../../Zotlabs/Module/Settings/Oauth.php:119 -msgid "Redirect" -msgstr "Redirigir" - -#: ../../Zotlabs/Module/Settings/Oauth2.php:88 -#: ../../Zotlabs/Module/Settings/Oauth2.php:116 -#: ../../Zotlabs/Module/Settings/Oauth.php:93 -msgid "" -"Redirect URI - leave blank unless your application specifically requires " -"this" -msgstr "URI de redirección - dejar en blanco a menos que su aplicación específicamente lo requiera" - -#: ../../Zotlabs/Module/Settings/Oauth2.php:89 -#: ../../Zotlabs/Module/Settings/Oauth2.php:117 -msgid "Grant Types" -msgstr "Tipos de permisos" - -#: ../../Zotlabs/Module/Settings/Oauth2.php:89 -#: ../../Zotlabs/Module/Settings/Oauth2.php:90 -#: ../../Zotlabs/Module/Settings/Oauth2.php:117 -#: ../../Zotlabs/Module/Settings/Oauth2.php:118 -msgid "leave blank unless your application sepcifically requires this" -msgstr "Dejar en blanco a menos que su aplicación lo requiera específicamente" - -#: ../../Zotlabs/Module/Settings/Oauth2.php:90 -#: ../../Zotlabs/Module/Settings/Oauth2.php:118 -msgid "Authorization scope" -msgstr "Alcance de la autorización" - -#: ../../Zotlabs/Module/Settings/Oauth2.php:102 -msgid "OAuth2 Application not found." -msgstr "No se ha encontrado la aplicación OAuth2." - -#: ../../Zotlabs/Module/Settings/Oauth2.php:111 -#: ../../Zotlabs/Module/Settings/Oauth2.php:148 -#: ../../Zotlabs/Module/Settings/Oauth.php:87 -#: ../../Zotlabs/Module/Settings/Oauth.php:113 -#: ../../Zotlabs/Module/Settings/Oauth.php:149 -msgid "Add application" -msgstr "Añadir aplicación" - -#: ../../Zotlabs/Module/Settings/Oauth2.php:147 -msgid "Connected OAuth2 Apps" -msgstr "Aplicaciones OAuth2 conectadas" - -#: ../../Zotlabs/Module/Settings/Oauth2.php:151 -#: ../../Zotlabs/Module/Settings/Oauth.php:152 -msgid "Client key starts with" -msgstr "La \"client key\" empieza por" - -#: ../../Zotlabs/Module/Settings/Oauth2.php:152 -#: ../../Zotlabs/Module/Settings/Oauth.php:153 -msgid "No name" -msgstr "Sin nombre" - -#: ../../Zotlabs/Module/Settings/Oauth2.php:153 -#: ../../Zotlabs/Module/Settings/Oauth.php:154 -msgid "Remove authorization" -msgstr "Eliminar autorización" - -#: ../../Zotlabs/Module/Settings/Account.php:20 +#: ../../Zotlabs/Module/Settings/Account.php:19 msgid "Not valid email." msgstr "Correo electrónico no válido." -#: ../../Zotlabs/Module/Settings/Account.php:23 +#: ../../Zotlabs/Module/Settings/Account.php:22 msgid "Protected email address. Cannot change to that email." msgstr "Dirección de correo electrónico protegida. No se puede cambiar a ella." -#: ../../Zotlabs/Module/Settings/Account.php:32 +#: ../../Zotlabs/Module/Settings/Account.php:31 msgid "System failure storing new email. Please try again." msgstr "Fallo de sistema al guardar el nuevo correo electrónico. Por favor, inténtelo de nuevo." -#: ../../Zotlabs/Module/Settings/Account.php:40 -msgid "Technical skill level updated" -msgstr "Se ha actualizado el nivel de habilidad técnica" - -#: ../../Zotlabs/Module/Settings/Account.php:56 +#: ../../Zotlabs/Module/Settings/Account.php:48 msgid "Password verification failed." msgstr "La comprobación de la contraseña ha fallado." -#: ../../Zotlabs/Module/Settings/Account.php:63 +#: ../../Zotlabs/Module/Settings/Account.php:55 msgid "Passwords do not match. Password unchanged." msgstr "Las contraseñas no coinciden. La contraseña no se ha cambiado." -#: ../../Zotlabs/Module/Settings/Account.php:67 +#: ../../Zotlabs/Module/Settings/Account.php:59 msgid "Empty passwords are not allowed. Password unchanged." msgstr "No se permiten contraseñas vacías. La contraseña no se ha cambiado." -#: ../../Zotlabs/Module/Settings/Account.php:81 +#: ../../Zotlabs/Module/Settings/Account.php:73 msgid "Password changed." msgstr "Contraseña cambiada." -#: ../../Zotlabs/Module/Settings/Account.php:83 +#: ../../Zotlabs/Module/Settings/Account.php:75 msgid "Password update failed. Please try again." msgstr "La actualización de la contraseña ha fallado. Por favor, inténtalo de nuevo." -#: ../../Zotlabs/Module/Settings/Account.php:112 +#: ../../Zotlabs/Module/Settings/Account.php:99 msgid "Account Settings" msgstr "Configuración de la cuenta" -#: ../../Zotlabs/Module/Settings/Account.php:113 +#: ../../Zotlabs/Module/Settings/Account.php:100 msgid "Current Password" msgstr "Contraseña actual" -#: ../../Zotlabs/Module/Settings/Account.php:114 +#: ../../Zotlabs/Module/Settings/Account.php:101 msgid "Enter New Password" msgstr "Escribir una nueva contraseña" -#: ../../Zotlabs/Module/Settings/Account.php:115 +#: ../../Zotlabs/Module/Settings/Account.php:102 msgid "Confirm New Password" msgstr "Confirmar la nueva contraseña" -#: ../../Zotlabs/Module/Settings/Account.php:115 +#: ../../Zotlabs/Module/Settings/Account.php:102 msgid "Leave password fields blank unless changing" msgstr "Dejar en blanco la contraseña a menos que desee cambiarla." -#: ../../Zotlabs/Module/Settings/Account.php:120 +#: ../../Zotlabs/Module/Settings/Account.php:105 #: ../../Zotlabs/Module/Removeaccount.php:61 msgid "Remove Account" msgstr "Eliminar cuenta" -#: ../../Zotlabs/Module/Settings/Account.php:121 +#: ../../Zotlabs/Module/Settings/Account.php:106 msgid "Remove this account including all its channels" msgstr "Eliminar esta cuenta incluyendo todos sus canales" +#: ../../Zotlabs/Module/Settings/Profiles.php:39 +msgid "Profiles Settings" +msgstr "Gestión de los perfiles" + +#: ../../Zotlabs/Module/Settings/Manage.php:39 +msgid "Channel Manager Settings" +msgstr "Ajustes del administrador de canales" + #: ../../Zotlabs/Module/Settings/Featured.php:23 msgid "Affinity Slider settings updated." msgstr "Se han actualizado los ajustes del controlador de afinidad." @@ -4110,173 +4152,201 @@ msgstr "Ajustes de los complementos" msgid "Please save/submit changes to any panel before opening another." msgstr "Guarde o envíe los cambios a cualquier panel antes de abrir otro." -#: ../../Zotlabs/Module/Settings/Display.php:139 +#: ../../Zotlabs/Module/Settings/Channel_home.php:41 +#: ../../Zotlabs/Module/Settings/Network.php:41 +msgid "Max height of content (in pixels)" +msgstr "Altura máxima del contenido (en píxeles)" + +#: ../../Zotlabs/Module/Settings/Channel_home.php:43 +#: ../../Zotlabs/Module/Settings/Network.php:43 +msgid "Click to expand content exceeding this height" +msgstr "Haga clic para expandir el contenido que exceda esta altura" + +#: ../../Zotlabs/Module/Settings/Channel_home.php:58 +msgid "Channel Home Settings" +msgstr "Ajustes del canal" + +#: ../../Zotlabs/Module/Settings/Directory.php:39 +msgid "Directory Settings" +msgstr "Configuración del directorio" + +#: ../../Zotlabs/Module/Settings/Editor.php:39 +msgid "Editor Settings" +msgstr "Ajustes del editor" + +#: ../../Zotlabs/Module/Settings/Display.php:128 #, php-format msgid "%s - (Experimental)" msgstr "%s - (Experimental)" -#: ../../Zotlabs/Module/Settings/Display.php:187 +#: ../../Zotlabs/Module/Settings/Display.php:184 msgid "Display Settings" msgstr "Ajustes de visualización" -#: ../../Zotlabs/Module/Settings/Display.php:188 +#: ../../Zotlabs/Module/Settings/Display.php:185 msgid "Theme Settings" msgstr "Ajustes del tema" -#: ../../Zotlabs/Module/Settings/Display.php:189 +#: ../../Zotlabs/Module/Settings/Display.php:186 msgid "Custom Theme Settings" msgstr "Ajustes personalizados del tema" -#: ../../Zotlabs/Module/Settings/Display.php:190 +#: ../../Zotlabs/Module/Settings/Display.php:187 msgid "Content Settings" msgstr "Ajustes del contenido" -#: ../../Zotlabs/Module/Settings/Display.php:196 +#: ../../Zotlabs/Module/Settings/Display.php:193 msgid "Display Theme:" msgstr "Tema gráfico del perfil:" -#: ../../Zotlabs/Module/Settings/Display.php:197 +#: ../../Zotlabs/Module/Settings/Display.php:194 msgid "Select scheme" msgstr "Elegir un esquema" -#: ../../Zotlabs/Module/Settings/Display.php:199 +#: ../../Zotlabs/Module/Settings/Display.php:196 msgid "Preload images before rendering the page" msgstr "Carga previa de las imágenes antes de generar la página" -#: ../../Zotlabs/Module/Settings/Display.php:199 +#: ../../Zotlabs/Module/Settings/Display.php:196 msgid "" "The subjective page load time will be longer but the page will be ready when" " displayed" msgstr "El tiempo subjetivo de carga de la página será más largo, pero la página estará lista cuando se muestre." -#: ../../Zotlabs/Module/Settings/Display.php:200 +#: ../../Zotlabs/Module/Settings/Display.php:197 msgid "Enable user zoom on mobile devices" msgstr "Habilitar zoom de usuario en dispositivos móviles" -#: ../../Zotlabs/Module/Settings/Display.php:201 +#: ../../Zotlabs/Module/Settings/Display.php:198 msgid "Update browser every xx seconds" msgstr "Actualizar navegador cada xx segundos" -#: ../../Zotlabs/Module/Settings/Display.php:201 +#: ../../Zotlabs/Module/Settings/Display.php:198 msgid "Minimum of 10 seconds, no maximum" msgstr "Mínimo de 10 segundos, sin máximo" -#: ../../Zotlabs/Module/Settings/Display.php:202 +#: ../../Zotlabs/Module/Settings/Display.php:199 msgid "Maximum number of conversations to load at any time:" msgstr "Máximo número de conversaciones a cargar en cualquier momento:" -#: ../../Zotlabs/Module/Settings/Display.php:202 +#: ../../Zotlabs/Module/Settings/Display.php:199 msgid "Maximum of 100 items" msgstr "Máximo de 100 elementos" -#: ../../Zotlabs/Module/Settings/Display.php:203 +#: ../../Zotlabs/Module/Settings/Display.php:200 msgid "Show emoticons (smilies) as images" msgstr "Mostrar emoticonos (smilies) como imágenes" -#: ../../Zotlabs/Module/Settings/Display.php:204 +#: ../../Zotlabs/Module/Settings/Display.php:201 msgid "Provide channel menu in navigation bar" msgstr "Proporcionar un menú de canales en la barra de navegación" -#: ../../Zotlabs/Module/Settings/Display.php:204 +#: ../../Zotlabs/Module/Settings/Display.php:201 msgid "Default: channel menu located in app menu" msgstr "Predeterminado: menú de canales ubicado en el menú de aplicaciones" -#: ../../Zotlabs/Module/Settings/Display.php:205 +#: ../../Zotlabs/Module/Settings/Display.php:202 msgid "Manual conversation updates" msgstr "Actualizaciones manuales de la conversación" -#: ../../Zotlabs/Module/Settings/Display.php:205 +#: ../../Zotlabs/Module/Settings/Display.php:202 msgid "Default is on, turning this off may increase screen jumping" msgstr "El valor predeterminado está activado, al desactivarlo puede aumentar el salto de pantalla" -#: ../../Zotlabs/Module/Settings/Display.php:206 +#: ../../Zotlabs/Module/Settings/Display.php:203 msgid "Link post titles to source" msgstr "Enlazar título de la publicación a la fuente original" -#: ../../Zotlabs/Module/Settings/Display.php:207 -msgid "System Page Layout Editor - (advanced)" -msgstr "Editor de plantilla de página del sistema - (avanzado)" +#: ../../Zotlabs/Module/Settings/Display.php:205 +#: ../../Zotlabs/Widget/Newmember.php:69 +msgid "New Member Links" +msgstr "Enlaces para nuevos miembros" -#: ../../Zotlabs/Module/Settings/Display.php:210 -msgid "Use blog/list mode on channel page" -msgstr "Usar modo blog/lista en la página de inicio del canal" +#: ../../Zotlabs/Module/Settings/Display.php:205 +msgid "Display new member quick links menu" +msgstr "Mostrar el menú de enlaces rápidos para nuevos miembros" -#: ../../Zotlabs/Module/Settings/Display.php:210 -#: ../../Zotlabs/Module/Settings/Display.php:211 -msgid "(comments displayed separately)" -msgstr "(comentarios mostrados de forma separada)" - -#: ../../Zotlabs/Module/Settings/Display.php:211 -msgid "Use blog/list mode on grid page" -msgstr "Mostrar mi red en modo blog" - -#: ../../Zotlabs/Module/Settings/Display.php:212 -msgid "Channel page max height of content (in pixels)" -msgstr "Altura máxima del contenido de la página del canal (en píxeles)" - -#: ../../Zotlabs/Module/Settings/Display.php:212 -#: ../../Zotlabs/Module/Settings/Display.php:213 -msgid "click to expand content exceeding this height" -msgstr "Pulsar para expandir el contenido que exceda de esta altura" - -#: ../../Zotlabs/Module/Settings/Display.php:213 -msgid "Grid page max height of content (in pixels)" -msgstr "Altura máxima del contenido de mi red (en píxeles)" - -#: ../../Zotlabs/Module/Settings/Oauth.php:35 -msgid "Name is required" -msgstr "El nombre es obligatorio" - -#: ../../Zotlabs/Module/Settings/Oauth.php:39 -msgid "Key and Secret are required" -msgstr "\"Key\" y \"Secret\" son obligatorios" - -#: ../../Zotlabs/Module/Settings/Oauth.php:91 -#: ../../Zotlabs/Module/Settings/Oauth.php:117 -#: ../../addon/statusnet/statusnet.php:894 ../../addon/twitter/twitter.php:781 -msgid "Consumer Key" -msgstr "Consumer Key" - -#: ../../Zotlabs/Module/Settings/Oauth.php:94 -#: ../../Zotlabs/Module/Settings/Oauth.php:120 -msgid "Icon url" -msgstr "Dirección del icono" - -#: ../../Zotlabs/Module/Settings/Oauth.php:94 -#: ../../Zotlabs/Module/Sources.php:112 ../../Zotlabs/Module/Sources.php:147 -msgid "Optional" -msgstr "Opcional" - -#: ../../Zotlabs/Module/Settings/Oauth.php:105 -msgid "Application not found." -msgstr "Aplicación no encontrada." - -#: ../../Zotlabs/Module/Settings/Oauth.php:148 -msgid "Connected Apps" -msgstr "Aplicaciones (apps) conectadas" +#: ../../Zotlabs/Module/Settings/Network.php:58 +msgid "Stream Settings" +msgstr "Ajustes del stream" #: ../../Zotlabs/Module/Embedphotos.php:140 -#: ../../Zotlabs/Module/Photos.php:811 ../../Zotlabs/Module/Photos.php:1350 +#: ../../Zotlabs/Module/Photos.php:813 ../../Zotlabs/Module/Photos.php:1352 #: ../../Zotlabs/Widget/Portfolio.php:87 ../../Zotlabs/Widget/Album.php:78 msgid "View Photo" msgstr "Ver foto" #: ../../Zotlabs/Module/Embedphotos.php:156 -#: ../../Zotlabs/Module/Photos.php:842 ../../Zotlabs/Widget/Portfolio.php:108 +#: ../../Zotlabs/Module/Photos.php:844 ../../Zotlabs/Widget/Portfolio.php:108 #: ../../Zotlabs/Widget/Album.php:95 msgid "Edit Album" msgstr "Editar álbum" #: ../../Zotlabs/Module/Embedphotos.php:158 -#: ../../Zotlabs/Module/Photos.php:712 -#: ../../Zotlabs/Module/Profile_photo.php:458 -#: ../../Zotlabs/Module/Cover_photo.php:362 -#: ../../Zotlabs/Storage/Browser.php:384 ../../Zotlabs/Widget/Cdav.php:133 +#: ../../Zotlabs/Module/Photos.php:714 +#: ../../Zotlabs/Module/Profile_photo.php:459 +#: ../../Zotlabs/Module/Cover_photo.php:395 +#: ../../Zotlabs/Storage/Browser.php:392 ../../Zotlabs/Widget/Cdav.php:133 #: ../../Zotlabs/Widget/Cdav.php:169 ../../Zotlabs/Widget/Portfolio.php:110 #: ../../Zotlabs/Widget/Album.php:97 msgid "Upload" msgstr "Subir" +#: ../../Zotlabs/Module/Tokens.php:39 +#, php-format +msgid "This channel is limited to %d tokens" +msgstr "Este canal tiene un límite de %d tokens" + +#: ../../Zotlabs/Module/Tokens.php:45 +msgid "Name and Password are required." +msgstr "Se requiere el nombre y la contraseña." + +#: ../../Zotlabs/Module/Tokens.php:85 +msgid "Token saved." +msgstr "Token salvado." + +#: ../../Zotlabs/Module/Tokens.php:99 +msgid "Guest Access App" +msgstr "App de acceso para invitados" + +#: ../../Zotlabs/Module/Tokens.php:100 +msgid "Create access tokens so that non-members can access private content" +msgstr "Crear tokens de acceso para que los no miembros puedan acceder a contenido privado" + +#: ../../Zotlabs/Module/Tokens.php:133 +msgid "" +"Use this form to create temporary access identifiers to share things with " +"non-members. These identities may be used in Access Control Lists and " +"visitors may login using these credentials to access private content." +msgstr "Utilice este formulario para crear identificadores de acceso temporal para compartir cosas con los no miembros de Hubzilla. Estas identidades se pueden usar en las Listas de control de acceso (ACL) y así los visitantes pueden iniciar sesión, utilizando estas credenciales, para acceder a su contenido privado." + +#: ../../Zotlabs/Module/Tokens.php:135 +msgid "" +"You may also provide dropbox style access links to friends and " +"associates by adding the Login Password to any specific site URL as shown. " +"Examples:" +msgstr "También puede proporcionar, con el estilo dropbox, enlaces de acceso a sus amigos y asociados añadiendo la contraseña de inicio de sesión a cualquier dirección URL, como se muestra. Ejemplos: " + +#: ../../Zotlabs/Module/Tokens.php:170 +msgid "Guest Access Tokens" +msgstr "Tokens de acceso para invitados" + +#: ../../Zotlabs/Module/Tokens.php:177 +msgid "Login Name" +msgstr "Nombre de inicio de sesión" + +#: ../../Zotlabs/Module/Tokens.php:178 +msgid "Login Password" +msgstr "Contraseña de inicio de sesión" + +#: ../../Zotlabs/Module/Tokens.php:179 +msgid "Expires (yyyy-mm-dd)" +msgstr "Expira (aaaa-mm-dd)" + +#: ../../Zotlabs/Module/Tokens.php:180 ../../Zotlabs/Module/Connedit.php:891 +msgid "Their Settings" +msgstr "Sus ajustes" + #: ../../Zotlabs/Module/Achievements.php:38 msgid "Some blurb about what to do when you're new here" msgstr "Algunas propuestas para el nuevo usuario sobre qué se puede hacer aquí" @@ -4335,9 +4405,9 @@ msgid "URL for photo of thing (optional)" msgstr "Dirección para la foto o elemento (opcional)" #: ../../Zotlabs/Module/Thing.php:319 ../../Zotlabs/Module/Thing.php:372 -#: ../../Zotlabs/Module/Photos.php:702 ../../Zotlabs/Module/Photos.php:1071 -#: ../../Zotlabs/Module/Connedit.php:676 ../../Zotlabs/Module/Chat.php:235 -#: ../../Zotlabs/Module/Filestorage.php:147 +#: ../../Zotlabs/Module/Photos.php:704 ../../Zotlabs/Module/Photos.php:1073 +#: ../../Zotlabs/Module/Connedit.php:677 ../../Zotlabs/Module/Chat.php:243 +#: ../../Zotlabs/Module/Filestorage.php:170 #: ../../include/acl_selectors.php:123 msgid "Permissions" msgstr "Permisos" @@ -4347,12 +4417,12 @@ msgid "Add Thing to your Profile" msgstr "Añadir alguna cosa a su perfil" #: ../../Zotlabs/Module/Notify.php:61 -#: ../../Zotlabs/Module/Notifications.php:57 +#: ../../Zotlabs/Module/Notifications.php:55 msgid "No more system notifications." msgstr "No hay más notificaciones del sistema" #: ../../Zotlabs/Module/Notify.php:65 -#: ../../Zotlabs/Module/Notifications.php:61 +#: ../../Zotlabs/Module/Notifications.php:59 msgid "System Notifications" msgstr "Notificaciones del sistema" @@ -4360,52 +4430,56 @@ msgstr "Notificaciones del sistema" msgid "Connection added." msgstr "Se ha incorporado una conexión." -#: ../../Zotlabs/Module/Import.php:144 +#: ../../Zotlabs/Module/Import.php:146 #, php-format msgid "Your service plan only allows %d channels." msgstr "Su paquete de servicios solo permite %d canales." -#: ../../Zotlabs/Module/Import.php:158 +#: ../../Zotlabs/Module/Import.php:173 msgid "No channel. Import failed." msgstr "No hay canal. La importación ha fallado" -#: ../../Zotlabs/Module/Import.php:482 -#: ../../addon/diaspora/import_diaspora.php:139 +#: ../../Zotlabs/Module/Import.php:513 +#: ../../addon/diaspora/import_diaspora.php:141 msgid "Import completed." msgstr "Importación completada." -#: ../../Zotlabs/Module/Import.php:510 +#: ../../Zotlabs/Module/Import.php:541 msgid "You must be logged in to use this feature." msgstr "Debe estar registrado para poder usar esta funcionalidad." -#: ../../Zotlabs/Module/Import.php:515 +#: ../../Zotlabs/Module/Import.php:546 msgid "Import Channel" msgstr "Importar canal" -#: ../../Zotlabs/Module/Import.php:516 +#: ../../Zotlabs/Module/Import.php:547 msgid "" "Use this form to import an existing channel from a different server/hub. You" " may retrieve the channel identity from the old server/hub via the network " "or provide an export file." msgstr "Emplee este formulario para importar un canal desde un servidor/hub diferente. Puede recuperar el canal desde el antiguo servidor/hub a través de la red o proporcionando un fichero de exportación." -#: ../../Zotlabs/Module/Import.php:518 +#: ../../Zotlabs/Module/Import.php:549 msgid "Or provide the old server/hub details" msgstr "O proporcione los detalles de su antiguo servidor/hub" -#: ../../Zotlabs/Module/Import.php:519 +#: ../../Zotlabs/Module/Import.php:551 msgid "Your old identity address (xyz@example.com)" msgstr "Su identidad en el antiguo servidor (canal@ejemplo.com)" -#: ../../Zotlabs/Module/Import.php:520 +#: ../../Zotlabs/Module/Import.php:552 msgid "Your old login email address" msgstr "Su antigua dirección de correo electrónico" -#: ../../Zotlabs/Module/Import.php:521 +#: ../../Zotlabs/Module/Import.php:553 msgid "Your old login password" msgstr "Su antigua contraseña" -#: ../../Zotlabs/Module/Import.php:522 +#: ../../Zotlabs/Module/Import.php:554 +msgid "Import a few months of posts if possible (limited by available memory" +msgstr "Importar unos meses de mensajes si es posible (limitado por la memoria disponible" + +#: ../../Zotlabs/Module/Import.php:556 msgid "" "For either option, please choose whether to make this hub your new primary " "address, or whether your old location should continue this role. You will be" @@ -4413,19 +4487,26 @@ msgid "" "primary location for files, photos, and media." msgstr "Para cualquiera de las opciones, elija si hacer de este servidor su nueva dirección primaria, o si su antigua dirección debe continuar con este papel. Usted podrá publicar desde cualquier ubicación, pero sólo una puede estar marcada como la ubicación principal para los ficheros, fotos y otras imágenes o vídeos." -#: ../../Zotlabs/Module/Import.php:523 +#: ../../Zotlabs/Module/Import.php:558 msgid "Make this hub my primary location" msgstr "Convertir este servidor en mi ubicación primaria" -#: ../../Zotlabs/Module/Import.php:524 +#: ../../Zotlabs/Module/Import.php:559 msgid "Move this channel (disable all previous locations)" msgstr "Mover este canal (desactivar todas las ubicaciones anteriores)" -#: ../../Zotlabs/Module/Import.php:525 -msgid "Import a few months of posts if possible (limited by available memory" -msgstr "Importar unos meses de mensajes si es posible (limitado por la memoria disponible" +#: ../../Zotlabs/Module/Import.php:560 +msgid "Use this channel nickname instead of the one provided" +msgstr "Usa este alias de canal en lugar del que se proporciona" -#: ../../Zotlabs/Module/Import.php:526 +#: ../../Zotlabs/Module/Import.php:560 +msgid "" +"Leave blank to keep your existing channel nickname. You will be randomly " +"assigned a similar nickname if either name is already allocated on this " +"site." +msgstr "Dejar en blanco para mantener su alias de canal existente. Se le asignará aleatoriamente uno similar si cualquiera de los dos nombres ya está asignado en este sitio." + +#: ../../Zotlabs/Module/Import.php:562 msgid "" "This process may take several minutes to complete. Please submit the form " "only once and leave this page open until finished." @@ -4435,24 +4516,110 @@ msgstr "Este proceso puede tardar varios minutos en completarse. Por favor enví msgid "Authentication failed." msgstr "Falló la autenticación." -#: ../../Zotlabs/Module/Rmagic.php:75 ../../boot.php:1590 -#: ../../include/channel.php:2318 +#: ../../Zotlabs/Module/Rmagic.php:75 ../../boot.php:1626 +#: ../../include/channel.php:2341 msgid "Remote Authentication" msgstr "Acceso desde su servidor" -#: ../../Zotlabs/Module/Rmagic.php:76 ../../include/channel.php:2319 +#: ../../Zotlabs/Module/Rmagic.php:76 ../../include/channel.php:2342 msgid "Enter your channel address (e.g. channel@example.com)" msgstr "Introduzca la dirección del canal (p.ej. canal@ejemplo.com)" -#: ../../Zotlabs/Module/Rmagic.php:77 ../../include/channel.php:2320 +#: ../../Zotlabs/Module/Rmagic.php:77 ../../include/channel.php:2343 msgid "Authenticate" msgstr "Acceder" -#: ../../Zotlabs/Module/Cal.php:69 +#: ../../Zotlabs/Module/Oauth2.php:54 +msgid "Name and Secret are required" +msgstr "\"Key\" y \"Secret\" son obligatorios" + +#: ../../Zotlabs/Module/Oauth2.php:106 +msgid "OAuth2 Apps Manager App" +msgstr "Aplicación del administrador de apps OAuth2" + +#: ../../Zotlabs/Module/Oauth2.php:107 +msgid "OAuth2 authenticatication tokens for mobile and remote apps" +msgstr "Tokens de autenticación de OAuth2 para aplicaciones móviles y remotas" + +#: ../../Zotlabs/Module/Oauth2.php:115 +msgid "Add OAuth2 application" +msgstr "Añadir aplicación OAuth2" + +#: ../../Zotlabs/Module/Oauth2.php:118 ../../Zotlabs/Module/Oauth2.php:146 +#: ../../Zotlabs/Module/Oauth.php:113 +msgid "Name of application" +msgstr "Nombre de la aplicación" + +#: ../../Zotlabs/Module/Oauth2.php:119 ../../Zotlabs/Module/Oauth2.php:147 +#: ../../Zotlabs/Module/Oauth.php:115 ../../Zotlabs/Module/Oauth.php:141 +#: ../../addon/statusnet/statusnet.php:893 ../../addon/twitter/twitter.php:785 +msgid "Consumer Secret" +msgstr "Consumer Secret" + +#: ../../Zotlabs/Module/Oauth2.php:119 ../../Zotlabs/Module/Oauth2.php:147 +#: ../../Zotlabs/Module/Oauth.php:114 ../../Zotlabs/Module/Oauth.php:115 +msgid "Automatically generated - change if desired. Max length 20" +msgstr "Generado automáticamente - si lo desea, cámbielo. Longitud máxima: 20" + +#: ../../Zotlabs/Module/Oauth2.php:120 ../../Zotlabs/Module/Oauth2.php:148 +#: ../../Zotlabs/Module/Oauth.php:116 ../../Zotlabs/Module/Oauth.php:142 +msgid "Redirect" +msgstr "Redirigir" + +#: ../../Zotlabs/Module/Oauth2.php:120 ../../Zotlabs/Module/Oauth2.php:148 +#: ../../Zotlabs/Module/Oauth.php:116 +msgid "" +"Redirect URI - leave blank unless your application specifically requires " +"this" +msgstr "URI de redirección - dejar en blanco a menos que su aplicación específicamente lo requiera" + +#: ../../Zotlabs/Module/Oauth2.php:121 ../../Zotlabs/Module/Oauth2.php:149 +msgid "Grant Types" +msgstr "Tipos de permisos" + +#: ../../Zotlabs/Module/Oauth2.php:121 ../../Zotlabs/Module/Oauth2.php:122 +msgid "leave blank unless your application sepcifically requires this" +msgstr "Dejar en blanco a menos que su aplicación lo requiera específicamente" + +#: ../../Zotlabs/Module/Oauth2.php:122 ../../Zotlabs/Module/Oauth2.php:150 +msgid "Authorization scope" +msgstr "Alcance de la autorización" + +#: ../../Zotlabs/Module/Oauth2.php:134 +msgid "OAuth2 Application not found." +msgstr "No se ha encontrado la aplicación OAuth2." + +#: ../../Zotlabs/Module/Oauth2.php:143 ../../Zotlabs/Module/Oauth2.php:193 +#: ../../Zotlabs/Module/Oauth.php:110 ../../Zotlabs/Module/Oauth.php:136 +#: ../../Zotlabs/Module/Oauth.php:172 +msgid "Add application" +msgstr "Añadir aplicación" + +#: ../../Zotlabs/Module/Oauth2.php:149 ../../Zotlabs/Module/Oauth2.php:150 +msgid "leave blank unless your application specifically requires this" +msgstr "dejar en blanco a menos que su aplicación lo requiera específicamente" + +#: ../../Zotlabs/Module/Oauth2.php:192 +msgid "Connected OAuth2 Apps" +msgstr "Aplicaciones OAuth2 conectadas" + +#: ../../Zotlabs/Module/Oauth2.php:196 ../../Zotlabs/Module/Oauth.php:175 +msgid "Client key starts with" +msgstr "La \"client key\" empieza por" + +#: ../../Zotlabs/Module/Oauth2.php:197 ../../Zotlabs/Module/Oauth.php:176 +msgid "No name" +msgstr "Sin nombre" + +#: ../../Zotlabs/Module/Oauth2.php:198 ../../Zotlabs/Module/Oauth.php:177 +msgid "Remove authorization" +msgstr "Eliminar autorización" + +#: ../../Zotlabs/Module/Cal.php:70 msgid "Permissions denied." msgstr "Permisos denegados." -#: ../../Zotlabs/Module/Cal.php:344 ../../include/text.php:2446 +#: ../../Zotlabs/Module/Cal.php:343 ../../include/text.php:2489 msgid "Import" msgstr "Importar" @@ -4478,6 +4645,14 @@ msgstr "¿Desea autorizar a esta aplicación a acceder a sus publicaciones y con msgid "Item not available." msgstr "Elemento no disponible" +#: ../../Zotlabs/Module/Randprof.php:29 +msgid "Random Channel App" +msgstr "App canal aleatorio" + +#: ../../Zotlabs/Module/Randprof.php:30 +msgid "Visit a random channel in the $Projectname network" +msgstr "Visitar un canal aleatorio en la red $Projectname" + #: ../../Zotlabs/Module/Editblock.php:138 msgid "Edit Block" msgstr "Modificar este bloque" @@ -4486,189 +4661,196 @@ msgstr "Modificar este bloque" msgid "vcard" msgstr "vcard" -#: ../../Zotlabs/Module/Apps.php:48 ../../Zotlabs/Lib/Apps.php:228 -msgid "Apps" -msgstr "Aplicaciones (apps)" +#: ../../Zotlabs/Module/Apps.php:50 ../../Zotlabs/Widget/Appstore.php:14 +msgid "Available Apps" +msgstr "Aplicaciones disponibles" -#: ../../Zotlabs/Module/Apps.php:51 -msgid "Manage apps" -msgstr "Gestionar las aplicaciones" +#: ../../Zotlabs/Module/Apps.php:50 +msgid "Installed Apps" +msgstr "Apps instaladas" -#: ../../Zotlabs/Module/Apps.php:52 -msgid "Create new app" -msgstr "Crear una nueva aplicación" +#: ../../Zotlabs/Module/Apps.php:53 +msgid "Manage Apps" +msgstr "Administrar apps" -#: ../../Zotlabs/Module/Mood.php:67 ../../include/conversation.php:268 +#: ../../Zotlabs/Module/Apps.php:54 +msgid "Create Custom App" +msgstr "Crear una app personalizada" + +#: ../../Zotlabs/Module/Mood.php:75 ../../include/conversation.php:268 #, php-format msgctxt "mood" msgid "%1$s is %2$s" msgstr "%1$s está %2$s" -#: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Lib/Apps.php:253 -msgid "Mood" -msgstr "Estado de ánimo" +#: ../../Zotlabs/Module/Mood.php:132 +msgid "Mood App" +msgstr "App estados de ánimo" -#: ../../Zotlabs/Module/Mood.php:136 +#: ../../Zotlabs/Module/Mood.php:133 ../../Zotlabs/Module/Mood.php:153 msgid "Set your current mood and tell your friends" msgstr "Describir su estado de ánimo para comunicárselo a sus amigos" -#: ../../Zotlabs/Module/Connections.php:55 -#: ../../Zotlabs/Module/Connections.php:112 -#: ../../Zotlabs/Module/Connections.php:256 +#: ../../Zotlabs/Module/Mood.php:152 ../../Zotlabs/Lib/Apps.php:325 +msgid "Mood" +msgstr "Estado de ánimo" + +#: ../../Zotlabs/Module/Connections.php:58 +#: ../../Zotlabs/Module/Connections.php:115 +#: ../../Zotlabs/Module/Connections.php:259 msgid "Active" msgstr "Activo/a" -#: ../../Zotlabs/Module/Connections.php:60 -#: ../../Zotlabs/Module/Connections.php:164 -#: ../../Zotlabs/Module/Connections.php:261 +#: ../../Zotlabs/Module/Connections.php:63 +#: ../../Zotlabs/Module/Connections.php:167 +#: ../../Zotlabs/Module/Connections.php:264 msgid "Blocked" msgstr "Bloqueadas" -#: ../../Zotlabs/Module/Connections.php:65 -#: ../../Zotlabs/Module/Connections.php:171 -#: ../../Zotlabs/Module/Connections.php:260 +#: ../../Zotlabs/Module/Connections.php:68 +#: ../../Zotlabs/Module/Connections.php:174 +#: ../../Zotlabs/Module/Connections.php:263 msgid "Ignored" msgstr "Ignoradas" -#: ../../Zotlabs/Module/Connections.php:70 -#: ../../Zotlabs/Module/Connections.php:185 -#: ../../Zotlabs/Module/Connections.php:259 +#: ../../Zotlabs/Module/Connections.php:73 +#: ../../Zotlabs/Module/Connections.php:188 +#: ../../Zotlabs/Module/Connections.php:262 msgid "Hidden" msgstr "Ocultas" -#: ../../Zotlabs/Module/Connections.php:75 -#: ../../Zotlabs/Module/Connections.php:178 +#: ../../Zotlabs/Module/Connections.php:78 +#: ../../Zotlabs/Module/Connections.php:181 msgid "Archived/Unreachable" msgstr "Archivadas o inaccesibles" -#: ../../Zotlabs/Module/Connections.php:80 -#: ../../Zotlabs/Module/Connections.php:89 ../../Zotlabs/Module/Menu.php:116 -#: ../../Zotlabs/Module/Notifications.php:52 -#: ../../include/conversation.php:1717 +#: ../../Zotlabs/Module/Connections.php:83 +#: ../../Zotlabs/Module/Connections.php:92 ../../Zotlabs/Module/Menu.php:179 +#: ../../Zotlabs/Module/Notifications.php:50 msgid "New" msgstr "Nuevas" -#: ../../Zotlabs/Module/Connections.php:94 -#: ../../Zotlabs/Module/Connections.php:108 -#: ../../Zotlabs/Module/Connedit.php:713 ../../Zotlabs/Widget/Affinity.php:26 +#: ../../Zotlabs/Module/Connections.php:97 +#: ../../Zotlabs/Module/Connections.php:111 +#: ../../Zotlabs/Module/Connedit.php:714 ../../Zotlabs/Widget/Affinity.php:26 msgid "All" msgstr "Todos/as" -#: ../../Zotlabs/Module/Connections.php:140 +#: ../../Zotlabs/Module/Connections.php:143 msgid "Active Connections" msgstr "Conexiones activas" -#: ../../Zotlabs/Module/Connections.php:143 +#: ../../Zotlabs/Module/Connections.php:146 msgid "Show active connections" msgstr "Mostrar las conexiones activas" -#: ../../Zotlabs/Module/Connections.php:147 +#: ../../Zotlabs/Module/Connections.php:150 #: ../../Zotlabs/Widget/Notifications.php:84 msgid "New Connections" msgstr "Nuevas conexiones" -#: ../../Zotlabs/Module/Connections.php:150 +#: ../../Zotlabs/Module/Connections.php:153 msgid "Show pending (new) connections" msgstr "Mostrar conexiones (nuevas) pendientes" -#: ../../Zotlabs/Module/Connections.php:167 +#: ../../Zotlabs/Module/Connections.php:170 msgid "Only show blocked connections" msgstr "Mostrar solo las conexiones bloqueadas" -#: ../../Zotlabs/Module/Connections.php:174 +#: ../../Zotlabs/Module/Connections.php:177 msgid "Only show ignored connections" msgstr "Mostrar solo conexiones ignoradas" -#: ../../Zotlabs/Module/Connections.php:181 +#: ../../Zotlabs/Module/Connections.php:184 msgid "Only show archived/unreachable connections" msgstr "Mostrar solo las conexiones archivadas o no localizables" -#: ../../Zotlabs/Module/Connections.php:188 +#: ../../Zotlabs/Module/Connections.php:191 msgid "Only show hidden connections" msgstr "Mostrar solo las conexiones ocultas" -#: ../../Zotlabs/Module/Connections.php:203 +#: ../../Zotlabs/Module/Connections.php:206 msgid "Show all connections" msgstr "Mostrar todas las conexiones" -#: ../../Zotlabs/Module/Connections.php:257 +#: ../../Zotlabs/Module/Connections.php:260 msgid "Pending approval" msgstr "Pendiente de aprobación" -#: ../../Zotlabs/Module/Connections.php:258 +#: ../../Zotlabs/Module/Connections.php:261 msgid "Archived" msgstr "Archivadas" -#: ../../Zotlabs/Module/Connections.php:262 +#: ../../Zotlabs/Module/Connections.php:265 msgid "Not connected at this location" msgstr "No está conectado/a en esta ubicación" -#: ../../Zotlabs/Module/Connections.php:279 +#: ../../Zotlabs/Module/Connections.php:282 #, php-format msgid "%1$s [%2$s]" msgstr "%1$s [%2$s]" -#: ../../Zotlabs/Module/Connections.php:280 +#: ../../Zotlabs/Module/Connections.php:283 msgid "Edit connection" msgstr "Editar conexión" -#: ../../Zotlabs/Module/Connections.php:282 +#: ../../Zotlabs/Module/Connections.php:285 msgid "Delete connection" msgstr "Eliminar conexión" -#: ../../Zotlabs/Module/Connections.php:291 +#: ../../Zotlabs/Module/Connections.php:294 msgid "Channel address" msgstr "Dirección del canal" -#: ../../Zotlabs/Module/Connections.php:293 +#: ../../Zotlabs/Module/Connections.php:296 ../../include/features.php:313 msgid "Network" msgstr "Red" -#: ../../Zotlabs/Module/Connections.php:296 +#: ../../Zotlabs/Module/Connections.php:299 msgid "Call" msgstr "Llamar" -#: ../../Zotlabs/Module/Connections.php:298 +#: ../../Zotlabs/Module/Connections.php:301 msgid "Status" msgstr "Estado" -#: ../../Zotlabs/Module/Connections.php:300 +#: ../../Zotlabs/Module/Connections.php:303 msgid "Connected" msgstr "Conectado/a" -#: ../../Zotlabs/Module/Connections.php:302 +#: ../../Zotlabs/Module/Connections.php:305 msgid "Approve connection" msgstr "Aprobar esta conexión" -#: ../../Zotlabs/Module/Connections.php:304 +#: ../../Zotlabs/Module/Connections.php:307 msgid "Ignore connection" msgstr "Ignorar esta conexión" -#: ../../Zotlabs/Module/Connections.php:305 -#: ../../Zotlabs/Module/Connedit.php:630 +#: ../../Zotlabs/Module/Connections.php:308 +#: ../../Zotlabs/Module/Connedit.php:631 msgid "Ignore" msgstr "Ignorar" -#: ../../Zotlabs/Module/Connections.php:306 +#: ../../Zotlabs/Module/Connections.php:309 msgid "Recent activity" msgstr "Actividad reciente" -#: ../../Zotlabs/Module/Connections.php:331 ../../Zotlabs/Lib/Apps.php:235 -#: ../../include/text.php:973 +#: ../../Zotlabs/Module/Connections.php:334 ../../Zotlabs/Lib/Apps.php:308 +#: ../../include/text.php:981 ../../include/features.php:125 msgid "Connections" msgstr "Conexiones" -#: ../../Zotlabs/Module/Connections.php:336 +#: ../../Zotlabs/Module/Connections.php:339 msgid "Search your connections" msgstr "Buscar sus conexiones" -#: ../../Zotlabs/Module/Connections.php:337 +#: ../../Zotlabs/Module/Connections.php:340 msgid "Connections search" msgstr "Buscar conexiones" -#: ../../Zotlabs/Module/Connections.php:338 -#: ../../Zotlabs/Module/Directory.php:401 -#: ../../Zotlabs/Module/Directory.php:406 ../../include/contact_widgets.php:23 +#: ../../Zotlabs/Module/Connections.php:341 +#: ../../Zotlabs/Module/Directory.php:405 +#: ../../Zotlabs/Module/Directory.php:410 ../../include/contact_widgets.php:23 msgid "Find" msgstr "Encontrar" @@ -4676,19 +4858,23 @@ msgstr "Encontrar" msgid "item" msgstr "elemento" -#: ../../Zotlabs/Module/Viewsrc.php:55 -msgid "Source of Item" -msgstr "Origen del elemento" - -#: ../../Zotlabs/Module/Bookmarks.php:56 +#: ../../Zotlabs/Module/Bookmarks.php:62 msgid "Bookmark added" msgstr "Marcador añadido" +#: ../../Zotlabs/Module/Bookmarks.php:78 +msgid "Bookmarks App" +msgstr "App marcadores" + #: ../../Zotlabs/Module/Bookmarks.php:79 +msgid "Bookmark links from posts and manage them" +msgstr "Añadir enlaces de las entradas a Marcadores y administrarlos" + +#: ../../Zotlabs/Module/Bookmarks.php:92 msgid "My Bookmarks" msgstr "Mis marcadores" -#: ../../Zotlabs/Module/Bookmarks.php:90 +#: ../../Zotlabs/Module/Bookmarks.php:103 msgid "My Connections Bookmarks" msgstr "Marcadores de mis conexiones" @@ -4724,7 +4910,7 @@ msgstr "Por defecto, solo las instancias de los canales ubicados en este servido msgid "Page owner information could not be retrieved." msgstr "La información del propietario de la página no pudo ser recuperada." -#: ../../Zotlabs/Module/Photos.php:94 ../../Zotlabs/Module/Photos.php:120 +#: ../../Zotlabs/Module/Photos.php:94 ../../Zotlabs/Module/Photos.php:113 msgid "Album not found." msgstr "Álbum no encontrado." @@ -4732,190 +4918,190 @@ msgstr "Álbum no encontrado." msgid "Delete Album" msgstr "Borrar álbum" -#: ../../Zotlabs/Module/Photos.php:174 ../../Zotlabs/Module/Photos.php:1083 +#: ../../Zotlabs/Module/Photos.php:174 ../../Zotlabs/Module/Photos.php:1085 msgid "Delete Photo" msgstr "Borrar foto" -#: ../../Zotlabs/Module/Photos.php:551 +#: ../../Zotlabs/Module/Photos.php:556 msgid "No photos selected" msgstr "No hay fotos seleccionadas" -#: ../../Zotlabs/Module/Photos.php:600 +#: ../../Zotlabs/Module/Photos.php:605 msgid "Access to this item is restricted." msgstr "El acceso a este elemento está restringido." -#: ../../Zotlabs/Module/Photos.php:646 +#: ../../Zotlabs/Module/Photos.php:648 #, php-format msgid "%1$.2f MB of %2$.2f MB photo storage used." msgstr "%1$.2f MB de %2$.2f MB de almacenamiento de fotos utilizado." -#: ../../Zotlabs/Module/Photos.php:649 +#: ../../Zotlabs/Module/Photos.php:651 #, php-format msgid "%1$.2f MB photo storage used." msgstr "%1$.2f MB de almacenamiento de fotos utilizado." -#: ../../Zotlabs/Module/Photos.php:691 +#: ../../Zotlabs/Module/Photos.php:693 msgid "Upload Photos" msgstr "Subir fotos" -#: ../../Zotlabs/Module/Photos.php:695 +#: ../../Zotlabs/Module/Photos.php:697 msgid "Enter an album name" msgstr "Introducir un nombre de álbum" -#: ../../Zotlabs/Module/Photos.php:696 +#: ../../Zotlabs/Module/Photos.php:698 msgid "or select an existing album (doubleclick)" msgstr "o seleccionar uno existente (doble click)" -#: ../../Zotlabs/Module/Photos.php:697 +#: ../../Zotlabs/Module/Photos.php:699 msgid "Create a status post for this upload" msgstr "Crear un mensaje de estado para esta subida" -#: ../../Zotlabs/Module/Photos.php:699 +#: ../../Zotlabs/Module/Photos.php:701 msgid "Description (optional)" msgstr "Descripción (opcional)" -#: ../../Zotlabs/Module/Photos.php:785 +#: ../../Zotlabs/Module/Photos.php:787 msgid "Show Newest First" msgstr "Mostrar lo más reciente primero" -#: ../../Zotlabs/Module/Photos.php:787 +#: ../../Zotlabs/Module/Photos.php:789 msgid "Show Oldest First" msgstr "Mostrar lo más antiguo primero" -#: ../../Zotlabs/Module/Photos.php:844 ../../Zotlabs/Module/Photos.php:1381 +#: ../../Zotlabs/Module/Photos.php:846 ../../Zotlabs/Module/Photos.php:1383 msgid "Add Photos" msgstr "Añadir fotos" -#: ../../Zotlabs/Module/Photos.php:892 +#: ../../Zotlabs/Module/Photos.php:894 msgid "Permission denied. Access to this item may be restricted." msgstr "Permiso denegado. El acceso a este elemento puede estar restringido." -#: ../../Zotlabs/Module/Photos.php:894 +#: ../../Zotlabs/Module/Photos.php:896 msgid "Photo not available" msgstr "Foto no disponible" -#: ../../Zotlabs/Module/Photos.php:952 +#: ../../Zotlabs/Module/Photos.php:954 msgid "Use as profile photo" msgstr "Usar como foto del perfil" -#: ../../Zotlabs/Module/Photos.php:953 +#: ../../Zotlabs/Module/Photos.php:955 msgid "Use as cover photo" msgstr "Usar como imagen de portada del perfil" -#: ../../Zotlabs/Module/Photos.php:960 +#: ../../Zotlabs/Module/Photos.php:962 msgid "Private Photo" msgstr "Foto privada" -#: ../../Zotlabs/Module/Photos.php:975 +#: ../../Zotlabs/Module/Photos.php:977 msgid "View Full Size" msgstr "Ver tamaño completo" -#: ../../Zotlabs/Module/Photos.php:1057 +#: ../../Zotlabs/Module/Photos.php:1059 msgid "Edit photo" msgstr "Editar foto" -#: ../../Zotlabs/Module/Photos.php:1059 +#: ../../Zotlabs/Module/Photos.php:1061 msgid "Rotate CW (right)" msgstr "Girar CW (a la derecha)" -#: ../../Zotlabs/Module/Photos.php:1060 +#: ../../Zotlabs/Module/Photos.php:1062 msgid "Rotate CCW (left)" msgstr "Girar CCW (a la izquierda)" -#: ../../Zotlabs/Module/Photos.php:1063 +#: ../../Zotlabs/Module/Photos.php:1065 msgid "Move photo to album" msgstr "Mover la foto a un álbum" -#: ../../Zotlabs/Module/Photos.php:1064 +#: ../../Zotlabs/Module/Photos.php:1066 msgid "Enter a new album name" msgstr "Introducir un nuevo nombre de álbum" -#: ../../Zotlabs/Module/Photos.php:1065 +#: ../../Zotlabs/Module/Photos.php:1067 msgid "or select an existing one (doubleclick)" msgstr "o seleccionar uno (doble click) existente" -#: ../../Zotlabs/Module/Photos.php:1070 +#: ../../Zotlabs/Module/Photos.php:1072 msgid "Add a Tag" msgstr "Añadir una etiqueta" -#: ../../Zotlabs/Module/Photos.php:1078 +#: ../../Zotlabs/Module/Photos.php:1080 msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" msgstr "Ejemplos: @eva, @Carmen_Osuna, @jaime@ejemplo.com" -#: ../../Zotlabs/Module/Photos.php:1081 +#: ../../Zotlabs/Module/Photos.php:1083 msgid "Flag as adult in album view" msgstr "Marcar como \"solo para adultos\" en el álbum" -#: ../../Zotlabs/Module/Photos.php:1100 ../../Zotlabs/Lib/ThreadItem.php:281 +#: ../../Zotlabs/Module/Photos.php:1102 ../../Zotlabs/Lib/ThreadItem.php:289 msgid "I like this (toggle)" msgstr "Me gusta (cambiar)" -#: ../../Zotlabs/Module/Photos.php:1101 ../../Zotlabs/Lib/ThreadItem.php:282 +#: ../../Zotlabs/Module/Photos.php:1103 ../../Zotlabs/Lib/ThreadItem.php:290 msgid "I don't like this (toggle)" msgstr "No me gusta esto (cambiar)" -#: ../../Zotlabs/Module/Photos.php:1103 ../../Zotlabs/Lib/ThreadItem.php:427 -#: ../../include/conversation.php:785 +#: ../../Zotlabs/Module/Photos.php:1105 ../../Zotlabs/Lib/ThreadItem.php:441 +#: ../../include/conversation.php:787 msgid "Please wait" msgstr "Espere por favor" -#: ../../Zotlabs/Module/Photos.php:1119 ../../Zotlabs/Module/Photos.php:1237 -#: ../../Zotlabs/Lib/ThreadItem.php:749 +#: ../../Zotlabs/Module/Photos.php:1121 ../../Zotlabs/Module/Photos.php:1239 +#: ../../Zotlabs/Lib/ThreadItem.php:764 msgid "This is you" msgstr "Este es usted" -#: ../../Zotlabs/Module/Photos.php:1121 ../../Zotlabs/Module/Photos.php:1239 -#: ../../Zotlabs/Lib/ThreadItem.php:751 ../../include/js_strings.php:6 +#: ../../Zotlabs/Module/Photos.php:1123 ../../Zotlabs/Module/Photos.php:1241 +#: ../../Zotlabs/Lib/ThreadItem.php:766 ../../include/js_strings.php:6 msgid "Comment" msgstr "Comentar" -#: ../../Zotlabs/Module/Photos.php:1137 ../../include/conversation.php:618 +#: ../../Zotlabs/Module/Photos.php:1139 ../../include/conversation.php:619 msgctxt "title" msgid "Likes" msgstr "Me gusta" -#: ../../Zotlabs/Module/Photos.php:1137 ../../include/conversation.php:618 +#: ../../Zotlabs/Module/Photos.php:1139 ../../include/conversation.php:619 msgctxt "title" msgid "Dislikes" msgstr "No me gusta" -#: ../../Zotlabs/Module/Photos.php:1138 ../../include/conversation.php:619 +#: ../../Zotlabs/Module/Photos.php:1140 ../../include/conversation.php:620 msgctxt "title" msgid "Agree" msgstr "De acuerdo" -#: ../../Zotlabs/Module/Photos.php:1138 ../../include/conversation.php:619 +#: ../../Zotlabs/Module/Photos.php:1140 ../../include/conversation.php:620 msgctxt "title" msgid "Disagree" msgstr "En desacuerdo" -#: ../../Zotlabs/Module/Photos.php:1138 ../../include/conversation.php:619 +#: ../../Zotlabs/Module/Photos.php:1140 ../../include/conversation.php:620 msgctxt "title" msgid "Abstain" msgstr "Abstención" -#: ../../Zotlabs/Module/Photos.php:1139 ../../include/conversation.php:620 +#: ../../Zotlabs/Module/Photos.php:1141 ../../include/conversation.php:621 msgctxt "title" msgid "Attending" msgstr "Participaré" -#: ../../Zotlabs/Module/Photos.php:1139 ../../include/conversation.php:620 +#: ../../Zotlabs/Module/Photos.php:1141 ../../include/conversation.php:621 msgctxt "title" msgid "Not attending" msgstr "No participaré" -#: ../../Zotlabs/Module/Photos.php:1139 ../../include/conversation.php:620 +#: ../../Zotlabs/Module/Photos.php:1141 ../../include/conversation.php:621 msgctxt "title" msgid "Might attend" msgstr "Quizá participe" -#: ../../Zotlabs/Module/Photos.php:1156 ../../Zotlabs/Module/Photos.php:1168 -#: ../../Zotlabs/Lib/ThreadItem.php:201 ../../Zotlabs/Lib/ThreadItem.php:213 +#: ../../Zotlabs/Module/Photos.php:1158 ../../Zotlabs/Module/Photos.php:1170 +#: ../../Zotlabs/Lib/ThreadItem.php:214 ../../Zotlabs/Lib/ThreadItem.php:226 msgid "View all" msgstr "Ver todo" -#: ../../Zotlabs/Module/Photos.php:1160 ../../Zotlabs/Lib/ThreadItem.php:205 -#: ../../include/conversation.php:1981 ../../include/channel.php:1539 +#: ../../Zotlabs/Module/Photos.php:1162 ../../Zotlabs/Lib/ThreadItem.php:218 +#: ../../include/conversation.php:1693 ../../include/channel.php:1546 #: ../../include/taxonomy.php:661 msgctxt "noun" msgid "Like" @@ -4923,272 +5109,285 @@ msgid_plural "Likes" msgstr[0] "Me gusta" msgstr[1] "Me gusta" -#: ../../Zotlabs/Module/Photos.php:1165 ../../Zotlabs/Lib/ThreadItem.php:210 -#: ../../include/conversation.php:1984 +#: ../../Zotlabs/Module/Photos.php:1167 ../../Zotlabs/Lib/ThreadItem.php:223 +#: ../../include/conversation.php:1696 msgctxt "noun" msgid "Dislike" msgid_plural "Dislikes" msgstr[0] "No me gusta" msgstr[1] "No me gusta" -#: ../../Zotlabs/Module/Photos.php:1265 +#: ../../Zotlabs/Module/Photos.php:1267 msgid "Photo Tools" msgstr "Gestión de las fotos" -#: ../../Zotlabs/Module/Photos.php:1274 +#: ../../Zotlabs/Module/Photos.php:1276 msgid "In This Photo:" msgstr "En esta foto:" -#: ../../Zotlabs/Module/Photos.php:1279 +#: ../../Zotlabs/Module/Photos.php:1281 msgid "Map" msgstr "Mapa" -#: ../../Zotlabs/Module/Photos.php:1287 ../../Zotlabs/Lib/ThreadItem.php:415 +#: ../../Zotlabs/Module/Photos.php:1289 ../../Zotlabs/Lib/ThreadItem.php:429 msgctxt "noun" msgid "Likes" msgstr "Me gusta" -#: ../../Zotlabs/Module/Photos.php:1288 ../../Zotlabs/Lib/ThreadItem.php:416 +#: ../../Zotlabs/Module/Photos.php:1290 ../../Zotlabs/Lib/ThreadItem.php:430 msgctxt "noun" msgid "Dislikes" msgstr "No me gusta" -#: ../../Zotlabs/Module/Photos.php:1293 ../../Zotlabs/Lib/ThreadItem.php:421 +#: ../../Zotlabs/Module/Photos.php:1295 ../../Zotlabs/Lib/ThreadItem.php:435 #: ../../include/acl_selectors.php:125 msgid "Close" msgstr "Cerrar" -#: ../../Zotlabs/Module/Photos.php:1365 ../../Zotlabs/Module/Photos.php:1378 -#: ../../Zotlabs/Module/Photos.php:1379 ../../include/photos.php:667 +#: ../../Zotlabs/Module/Photos.php:1367 ../../Zotlabs/Module/Photos.php:1380 +#: ../../Zotlabs/Module/Photos.php:1381 ../../include/photos.php:668 msgid "Recent Photos" msgstr "Fotos recientes" -#: ../../Zotlabs/Module/Wiki.php:30 ../../addon/cart/cart.php:1135 +#: ../../Zotlabs/Module/Wiki.php:35 ../../addon/cart/cart.php:1297 msgid "Profile Unavailable." msgstr "Perfil no disponible" -#: ../../Zotlabs/Module/Wiki.php:44 ../../Zotlabs/Module/Cloud.php:114 -msgid "Not found" -msgstr "No encontrado" +#: ../../Zotlabs/Module/Wiki.php:52 +msgid "Wiki App" +msgstr "App wiki" -#: ../../Zotlabs/Module/Wiki.php:68 ../../addon/cart/myshop.php:114 -#: ../../addon/cart/cart.php:1204 ../../addon/cart/manual_payments.php:58 +#: ../../Zotlabs/Module/Wiki.php:53 +msgid "Provide a wiki for your channel" +msgstr "Proporcionar un wiki para su canal" + +#: ../../Zotlabs/Module/Wiki.php:77 ../../addon/cart/myshop.php:37 +#: ../../addon/cart/cart.php:1440 +#: ../../addon/cart/submodules/paypalbutton.php:456 +#: ../../addon/cart/manual_payments.php:63 msgid "Invalid channel" msgstr "Canal no válido" -#: ../../Zotlabs/Module/Wiki.php:124 +#: ../../Zotlabs/Module/Wiki.php:133 msgid "Error retrieving wiki" msgstr "Error al recuperar el wiki" -#: ../../Zotlabs/Module/Wiki.php:131 +#: ../../Zotlabs/Module/Wiki.php:140 msgid "Error creating zip file export folder" msgstr "Error al crear el fichero comprimido zip de la carpeta a exportar" -#: ../../Zotlabs/Module/Wiki.php:182 +#: ../../Zotlabs/Module/Wiki.php:191 msgid "Error downloading wiki: " msgstr "Error al descargar el wiki: " -#: ../../Zotlabs/Module/Wiki.php:197 ../../include/conversation.php:1928 -#: ../../include/nav.php:494 +#: ../../Zotlabs/Module/Wiki.php:206 ../../Zotlabs/Widget/Wiki_list.php:19 +#: ../../include/nav.php:501 msgid "Wikis" msgstr "Wikis" -#: ../../Zotlabs/Module/Wiki.php:203 +#: ../../Zotlabs/Module/Wiki.php:212 msgid "Download" msgstr "Descargar" -#: ../../Zotlabs/Module/Wiki.php:205 ../../Zotlabs/Module/Chat.php:256 +#: ../../Zotlabs/Module/Wiki.php:214 ../../Zotlabs/Module/Chat.php:264 #: ../../Zotlabs/Module/Profiles.php:831 ../../Zotlabs/Module/Manage.php:145 msgid "Create New" msgstr "Crear" -#: ../../Zotlabs/Module/Wiki.php:207 +#: ../../Zotlabs/Module/Wiki.php:216 msgid "Wiki name" msgstr "Nombre del wiki" -#: ../../Zotlabs/Module/Wiki.php:208 +#: ../../Zotlabs/Module/Wiki.php:217 msgid "Content type" msgstr "Tipo de contenido" -#: ../../Zotlabs/Module/Wiki.php:208 ../../Zotlabs/Module/Wiki.php:350 +#: ../../Zotlabs/Module/Wiki.php:217 ../../Zotlabs/Module/Wiki.php:359 #: ../../Zotlabs/Widget/Wiki_pages.php:36 -#: ../../Zotlabs/Widget/Wiki_pages.php:93 ../../addon/mdpost/mdpost.php:40 -#: ../../include/text.php:1869 +#: ../../Zotlabs/Widget/Wiki_pages.php:93 ../../addon/mdpost/mdpost.php:41 +#: ../../include/text.php:1892 msgid "Markdown" msgstr "Markdown" -#: ../../Zotlabs/Module/Wiki.php:208 ../../Zotlabs/Module/Wiki.php:350 +#: ../../Zotlabs/Module/Wiki.php:217 ../../Zotlabs/Module/Wiki.php:359 #: ../../Zotlabs/Widget/Wiki_pages.php:36 -#: ../../Zotlabs/Widget/Wiki_pages.php:93 ../../include/text.php:1867 +#: ../../Zotlabs/Widget/Wiki_pages.php:93 ../../include/text.php:1890 msgid "BBcode" msgstr "BBcode" -#: ../../Zotlabs/Module/Wiki.php:208 ../../Zotlabs/Widget/Wiki_pages.php:36 -#: ../../Zotlabs/Widget/Wiki_pages.php:93 ../../include/text.php:1870 +#: ../../Zotlabs/Module/Wiki.php:217 ../../Zotlabs/Widget/Wiki_pages.php:36 +#: ../../Zotlabs/Widget/Wiki_pages.php:93 ../../include/text.php:1893 msgid "Text" msgstr "Texto" -#: ../../Zotlabs/Module/Wiki.php:210 ../../Zotlabs/Storage/Browser.php:284 +#: ../../Zotlabs/Module/Wiki.php:219 ../../Zotlabs/Storage/Browser.php:286 msgid "Type" msgstr "Tipo" -#: ../../Zotlabs/Module/Wiki.php:211 +#: ../../Zotlabs/Module/Wiki.php:220 msgid "Any type" msgstr "Cualquier tipo" -#: ../../Zotlabs/Module/Wiki.php:218 +#: ../../Zotlabs/Module/Wiki.php:227 msgid "Lock content type" msgstr "Tipo de contenido bloqueado" -#: ../../Zotlabs/Module/Wiki.php:219 +#: ../../Zotlabs/Module/Wiki.php:228 msgid "Create a status post for this wiki" msgstr "Crear un mensaje de estado para este wiki" -#: ../../Zotlabs/Module/Wiki.php:220 +#: ../../Zotlabs/Module/Wiki.php:229 msgid "Edit Wiki Name" msgstr "Editar el nombre del wiki" -#: ../../Zotlabs/Module/Wiki.php:262 +#: ../../Zotlabs/Module/Wiki.php:271 msgid "Wiki not found" msgstr "Wiki no encontrado" -#: ../../Zotlabs/Module/Wiki.php:286 +#: ../../Zotlabs/Module/Wiki.php:295 msgid "Rename page" msgstr "Renombrar la página" -#: ../../Zotlabs/Module/Wiki.php:307 +#: ../../Zotlabs/Module/Wiki.php:316 msgid "Error retrieving page content" msgstr "Error al recuperar el contenido de la página" -#: ../../Zotlabs/Module/Wiki.php:315 ../../Zotlabs/Module/Wiki.php:317 +#: ../../Zotlabs/Module/Wiki.php:324 ../../Zotlabs/Module/Wiki.php:326 msgid "New page" msgstr "Nueva página" -#: ../../Zotlabs/Module/Wiki.php:345 +#: ../../Zotlabs/Module/Wiki.php:354 msgid "Revision Comparison" msgstr "Comparación de revisiones" -#: ../../Zotlabs/Module/Wiki.php:346 +#: ../../Zotlabs/Module/Wiki.php:355 ../../Zotlabs/Lib/NativeWikiPage.php:561 +#: ../../Zotlabs/Widget/Wiki_page_history.php:25 msgid "Revert" msgstr "Revertir" -#: ../../Zotlabs/Module/Wiki.php:353 +#: ../../Zotlabs/Module/Wiki.php:362 msgid "Short description of your changes (optional)" msgstr "Breve descripción de sus cambios (opcional)" -#: ../../Zotlabs/Module/Wiki.php:362 +#: ../../Zotlabs/Module/Wiki.php:371 msgid "Source" msgstr "Fuente" -#: ../../Zotlabs/Module/Wiki.php:372 +#: ../../Zotlabs/Module/Wiki.php:381 msgid "New page name" msgstr "Nombre de la nueva página" -#: ../../Zotlabs/Module/Wiki.php:377 ../../include/conversation.php:1282 +#: ../../Zotlabs/Module/Wiki.php:386 msgid "Embed image from photo albums" msgstr "Incluir una imagen de los álbumes de fotos" -#: ../../Zotlabs/Module/Wiki.php:378 ../../include/conversation.php:1388 +#: ../../Zotlabs/Module/Wiki.php:387 ../../addon/hsse/hsse.php:208 +#: ../../include/conversation.php:1411 msgid "Embed an image from your albums" msgstr "Incluir una imagen de sus álbumes" -#: ../../Zotlabs/Module/Wiki.php:380 -#: ../../Zotlabs/Module/Profile_photo.php:465 -#: ../../Zotlabs/Module/Cover_photo.php:367 -#: ../../include/conversation.php:1390 ../../include/conversation.php:1437 +#: ../../Zotlabs/Module/Wiki.php:389 +#: ../../Zotlabs/Module/Profile_photo.php:466 +#: ../../Zotlabs/Module/Cover_photo.php:400 ../../addon/hsse/hsse.php:210 +#: ../../addon/hsse/hsse.php:257 ../../include/conversation.php:1413 +#: ../../include/conversation.php:1460 msgid "OK" msgstr "OK" -#: ../../Zotlabs/Module/Wiki.php:381 -#: ../../Zotlabs/Module/Profile_photo.php:466 -#: ../../Zotlabs/Module/Cover_photo.php:368 -#: ../../include/conversation.php:1320 +#: ../../Zotlabs/Module/Wiki.php:390 +#: ../../Zotlabs/Module/Profile_photo.php:467 +#: ../../Zotlabs/Module/Cover_photo.php:401 ../../addon/hsse/hsse.php:139 +#: ../../include/conversation.php:1342 msgid "Choose images to embed" msgstr "Elegir imágenes para incluir" -#: ../../Zotlabs/Module/Wiki.php:382 -#: ../../Zotlabs/Module/Profile_photo.php:467 -#: ../../Zotlabs/Module/Cover_photo.php:369 -#: ../../include/conversation.php:1321 +#: ../../Zotlabs/Module/Wiki.php:391 +#: ../../Zotlabs/Module/Profile_photo.php:468 +#: ../../Zotlabs/Module/Cover_photo.php:402 ../../addon/hsse/hsse.php:140 +#: ../../include/conversation.php:1343 msgid "Choose an album" msgstr "Elegir un álbum" -#: ../../Zotlabs/Module/Wiki.php:383 -#: ../../Zotlabs/Module/Profile_photo.php:468 -#: ../../Zotlabs/Module/Cover_photo.php:370 +#: ../../Zotlabs/Module/Wiki.php:392 +#: ../../Zotlabs/Module/Profile_photo.php:469 +#: ../../Zotlabs/Module/Cover_photo.php:403 msgid "Choose a different album" msgstr "Elegir un álbum diferente..." -#: ../../Zotlabs/Module/Wiki.php:384 -#: ../../Zotlabs/Module/Profile_photo.php:469 -#: ../../Zotlabs/Module/Cover_photo.php:371 -#: ../../include/conversation.php:1323 +#: ../../Zotlabs/Module/Wiki.php:393 +#: ../../Zotlabs/Module/Profile_photo.php:470 +#: ../../Zotlabs/Module/Cover_photo.php:404 ../../addon/hsse/hsse.php:142 +#: ../../include/conversation.php:1345 msgid "Error getting album list" msgstr "Error al obtener la lista de álbumes" -#: ../../Zotlabs/Module/Wiki.php:385 -#: ../../Zotlabs/Module/Profile_photo.php:470 -#: ../../Zotlabs/Module/Cover_photo.php:372 -#: ../../include/conversation.php:1324 +#: ../../Zotlabs/Module/Wiki.php:394 +#: ../../Zotlabs/Module/Profile_photo.php:471 +#: ../../Zotlabs/Module/Cover_photo.php:405 ../../addon/hsse/hsse.php:143 +#: ../../include/conversation.php:1346 msgid "Error getting photo link" msgstr "Error al obtener el enlace de la foto" -#: ../../Zotlabs/Module/Wiki.php:386 -#: ../../Zotlabs/Module/Profile_photo.php:471 -#: ../../Zotlabs/Module/Cover_photo.php:373 -#: ../../include/conversation.php:1325 +#: ../../Zotlabs/Module/Wiki.php:395 +#: ../../Zotlabs/Module/Profile_photo.php:472 +#: ../../Zotlabs/Module/Cover_photo.php:406 ../../addon/hsse/hsse.php:144 +#: ../../include/conversation.php:1347 msgid "Error getting album" msgstr "Error al obtener el álbum" -#: ../../Zotlabs/Module/Wiki.php:462 +#: ../../Zotlabs/Module/Wiki.php:397 +msgid "History" +msgstr "Historial" + +#: ../../Zotlabs/Module/Wiki.php:473 msgid "Error creating wiki. Invalid name." msgstr "Error al crear el wiki: el nombre no es válido." -#: ../../Zotlabs/Module/Wiki.php:469 +#: ../../Zotlabs/Module/Wiki.php:480 msgid "A wiki with this name already exists." msgstr "Ya hay un wiki con este nombre." -#: ../../Zotlabs/Module/Wiki.php:482 +#: ../../Zotlabs/Module/Wiki.php:493 msgid "Wiki created, but error creating Home page." msgstr "Se ha creado el wiki, pero se ha producido un error al crear la página de inicio." -#: ../../Zotlabs/Module/Wiki.php:489 +#: ../../Zotlabs/Module/Wiki.php:500 msgid "Error creating wiki" msgstr "Error al crear el wiki" -#: ../../Zotlabs/Module/Wiki.php:512 +#: ../../Zotlabs/Module/Wiki.php:523 msgid "Error updating wiki. Invalid name." msgstr "Error al actualizar el wiki. Nombre no válido." -#: ../../Zotlabs/Module/Wiki.php:532 +#: ../../Zotlabs/Module/Wiki.php:543 msgid "Error updating wiki" msgstr "Error al actualizar el wiki" -#: ../../Zotlabs/Module/Wiki.php:547 +#: ../../Zotlabs/Module/Wiki.php:558 msgid "Wiki delete permission denied." msgstr "Se ha denegado el permiso para eliminar el wiki." -#: ../../Zotlabs/Module/Wiki.php:557 +#: ../../Zotlabs/Module/Wiki.php:568 msgid "Error deleting wiki" msgstr "Se ha producido un error al eliminar el wiki" -#: ../../Zotlabs/Module/Wiki.php:590 +#: ../../Zotlabs/Module/Wiki.php:601 msgid "New page created" msgstr "Se ha creado la nueva página" -#: ../../Zotlabs/Module/Wiki.php:711 +#: ../../Zotlabs/Module/Wiki.php:722 msgid "Cannot delete Home" msgstr "No se puede eliminar la página principal" -#: ../../Zotlabs/Module/Wiki.php:775 +#: ../../Zotlabs/Module/Wiki.php:786 msgid "Current Revision" msgstr "Revisión actual" -#: ../../Zotlabs/Module/Wiki.php:775 +#: ../../Zotlabs/Module/Wiki.php:786 msgid "Selected Revision" msgstr "Revisión seleccionada" -#: ../../Zotlabs/Module/Wiki.php:825 +#: ../../Zotlabs/Module/Wiki.php:836 msgid "You must be authenticated." msgstr "Debe estar autenticado." @@ -5196,77 +5395,89 @@ msgstr "Debe estar autenticado." msgid "toggle full screen mode" msgstr "cambiar al modo de pantalla completa" -#: ../../Zotlabs/Module/Pdledit.php:21 +#: ../../Zotlabs/Module/Pdledit.php:26 msgid "Layout updated." msgstr "Plantilla actualizada." -#: ../../Zotlabs/Module/Pdledit.php:34 ../../Zotlabs/Module/Chat.php:219 -msgid "Feature disabled." -msgstr "Funcionalidad deshabilitada." +#: ../../Zotlabs/Module/Pdledit.php:42 +msgid "PDL Editor App" +msgstr "App editor PDL" -#: ../../Zotlabs/Module/Pdledit.php:47 ../../Zotlabs/Module/Pdledit.php:90 +#: ../../Zotlabs/Module/Pdledit.php:43 +msgid "Provides the ability to edit system page layouts" +msgstr "Proporciona la capacidad de editar los diseños de página del sistema" + +#: ../../Zotlabs/Module/Pdledit.php:56 ../../Zotlabs/Module/Pdledit.php:99 msgid "Edit System Page Description" msgstr "Editor del Sistema de Descripción de Páginas" -#: ../../Zotlabs/Module/Pdledit.php:68 +#: ../../Zotlabs/Module/Pdledit.php:77 msgid "(modified)" msgstr "(modificado)" -#: ../../Zotlabs/Module/Pdledit.php:68 ../../Zotlabs/Module/Lostpass.php:133 +#: ../../Zotlabs/Module/Pdledit.php:77 ../../Zotlabs/Module/Lostpass.php:133 msgid "Reset" msgstr "Reiniciar" -#: ../../Zotlabs/Module/Pdledit.php:85 +#: ../../Zotlabs/Module/Pdledit.php:94 msgid "Layout not found." msgstr "Plantilla no encontrada" -#: ../../Zotlabs/Module/Pdledit.php:91 +#: ../../Zotlabs/Module/Pdledit.php:100 msgid "Module Name:" msgstr "Nombre del módulo:" -#: ../../Zotlabs/Module/Pdledit.php:92 +#: ../../Zotlabs/Module/Pdledit.php:101 msgid "Layout Help" msgstr "Ayuda para el diseño de plantillas de página" -#: ../../Zotlabs/Module/Pdledit.php:93 +#: ../../Zotlabs/Module/Pdledit.php:102 msgid "Edit another layout" msgstr "Editar otro diseño" -#: ../../Zotlabs/Module/Pdledit.php:94 +#: ../../Zotlabs/Module/Pdledit.php:103 msgid "System layout" msgstr "Diseño del sistema" -#: ../../Zotlabs/Module/Poke.php:182 ../../Zotlabs/Lib/Apps.php:254 -#: ../../include/conversation.php:1092 +#: ../../Zotlabs/Module/Poke.php:165 +msgid "Poke App" +msgstr "App toques" + +#: ../../Zotlabs/Module/Poke.php:166 +msgid "Poke somebody in your addressbook" +msgstr "Dar un toque a alguien en su libreta de direcciones" + +#: ../../Zotlabs/Module/Poke.php:199 ../../Zotlabs/Lib/Apps.php:326 +#: ../../include/conversation.php:1098 msgid "Poke" msgstr "Toques y otras cosas" -#: ../../Zotlabs/Module/Poke.php:183 +#: ../../Zotlabs/Module/Poke.php:200 msgid "Poke somebody" msgstr "Dar un toque a alguien" -#: ../../Zotlabs/Module/Poke.php:186 +#: ../../Zotlabs/Module/Poke.php:203 msgid "Poke/Prod" msgstr "Toque/Incitación" -#: ../../Zotlabs/Module/Poke.php:187 +#: ../../Zotlabs/Module/Poke.php:204 msgid "Poke, prod or do other things to somebody" msgstr "Dar un toque, incitar o hacer otras cosas a alguien" -#: ../../Zotlabs/Module/Poke.php:194 +#: ../../Zotlabs/Module/Poke.php:211 msgid "Recipient" msgstr "Destinatario" -#: ../../Zotlabs/Module/Poke.php:195 +#: ../../Zotlabs/Module/Poke.php:212 msgid "Choose what you wish to do to recipient" msgstr "Elegir qué desea enviar al destinatario" -#: ../../Zotlabs/Module/Poke.php:198 ../../Zotlabs/Module/Poke.php:199 +#: ../../Zotlabs/Module/Poke.php:215 ../../Zotlabs/Module/Poke.php:216 msgid "Make this post private" msgstr "Convertir en privado este envío" #: ../../Zotlabs/Module/Profile_photo.php:66 -#: ../../Zotlabs/Module/Cover_photo.php:56 +#: ../../Zotlabs/Module/Cover_photo.php:57 msgid "Image uploaded but image cropping failed." msgstr "Imagen actualizada, pero el recorte de la imagen ha fallado. " @@ -5277,7 +5488,7 @@ msgid "Profile Photos" msgstr "Fotos del perfil" #: ../../Zotlabs/Module/Profile_photo.php:142 -#: ../../Zotlabs/Module/Cover_photo.php:159 +#: ../../Zotlabs/Module/Cover_photo.php:191 msgid "Image resize failed." msgstr "El ajuste del tamaño de la imagen ha fallado." @@ -5289,73 +5500,85 @@ msgid "" msgstr "Recargue la página o limpie el caché del navegador si la nueva foto no se muestra inmediatamente." #: ../../Zotlabs/Module/Profile_photo.php:225 -#: ../../Zotlabs/Module/Cover_photo.php:173 ../../include/photos.php:195 +#: ../../Zotlabs/Module/Cover_photo.php:205 ../../include/photos.php:196 msgid "Unable to process image" msgstr "No ha sido posible procesar la imagen" #: ../../Zotlabs/Module/Profile_photo.php:260 -#: ../../Zotlabs/Module/Cover_photo.php:197 +#: ../../Zotlabs/Module/Cover_photo.php:229 msgid "Image upload failed." msgstr "La carga de la imagen ha fallado." #: ../../Zotlabs/Module/Profile_photo.php:279 -#: ../../Zotlabs/Module/Cover_photo.php:214 +#: ../../Zotlabs/Module/Cover_photo.php:246 msgid "Unable to process image." msgstr "No ha sido posible procesar la imagen." #: ../../Zotlabs/Module/Profile_photo.php:343 #: ../../Zotlabs/Module/Profile_photo.php:390 -#: ../../Zotlabs/Module/Cover_photo.php:307 -#: ../../Zotlabs/Module/Cover_photo.php:322 +#: ../../Zotlabs/Module/Cover_photo.php:339 +#: ../../Zotlabs/Module/Cover_photo.php:354 msgid "Photo not available." msgstr "Foto no disponible." -#: ../../Zotlabs/Module/Profile_photo.php:455 -#: ../../Zotlabs/Module/Cover_photo.php:359 +#: ../../Zotlabs/Module/Profile_photo.php:454 +msgid "" +"Your default profile photo is visible to anybody on the internet. Profile " +"photos for alternate profiles will inherit the permissions of the profile" +msgstr "Su foto de perfil predeterminada es visible para cualquiera en Internet. Las fotos de perfil para perfiles alternativos heredarán los permisos del predeterminado." + +#: ../../Zotlabs/Module/Profile_photo.php:454 +msgid "" +"Your profile photo is visible to anybody on the internet and may be " +"distributed to other websites." +msgstr "La foto de su perfil es visible para cualquiera en Internet y puede ser distribuida en otros sitios web." + +#: ../../Zotlabs/Module/Profile_photo.php:456 +#: ../../Zotlabs/Module/Cover_photo.php:392 msgid "Upload File:" msgstr "Subir fichero:" -#: ../../Zotlabs/Module/Profile_photo.php:456 -#: ../../Zotlabs/Module/Cover_photo.php:360 +#: ../../Zotlabs/Module/Profile_photo.php:457 +#: ../../Zotlabs/Module/Cover_photo.php:393 msgid "Select a profile:" msgstr "Seleccionar un perfil:" -#: ../../Zotlabs/Module/Profile_photo.php:457 +#: ../../Zotlabs/Module/Profile_photo.php:458 msgid "Use Photo for Profile" msgstr "Usar la fotografía para el perfil" -#: ../../Zotlabs/Module/Profile_photo.php:457 +#: ../../Zotlabs/Module/Profile_photo.php:458 msgid "Change Profile Photo" msgstr "Cambiar la foto del perfil" -#: ../../Zotlabs/Module/Profile_photo.php:458 +#: ../../Zotlabs/Module/Profile_photo.php:459 msgid "Use" msgstr "Usar" -#: ../../Zotlabs/Module/Profile_photo.php:462 #: ../../Zotlabs/Module/Profile_photo.php:463 -#: ../../Zotlabs/Module/Cover_photo.php:364 -#: ../../Zotlabs/Module/Cover_photo.php:365 +#: ../../Zotlabs/Module/Profile_photo.php:464 +#: ../../Zotlabs/Module/Cover_photo.php:397 +#: ../../Zotlabs/Module/Cover_photo.php:398 msgid "Use a photo from your albums" msgstr "Usar una foto de sus álbumes" -#: ../../Zotlabs/Module/Profile_photo.php:473 -#: ../../Zotlabs/Module/Cover_photo.php:376 +#: ../../Zotlabs/Module/Profile_photo.php:474 +#: ../../Zotlabs/Module/Cover_photo.php:409 msgid "Select existing photo" msgstr "Seleccionar una foto existente" -#: ../../Zotlabs/Module/Profile_photo.php:492 -#: ../../Zotlabs/Module/Cover_photo.php:393 +#: ../../Zotlabs/Module/Profile_photo.php:493 +#: ../../Zotlabs/Module/Cover_photo.php:426 msgid "Crop Image" msgstr "Recortar imagen" -#: ../../Zotlabs/Module/Profile_photo.php:493 -#: ../../Zotlabs/Module/Cover_photo.php:394 +#: ../../Zotlabs/Module/Profile_photo.php:494 +#: ../../Zotlabs/Module/Cover_photo.php:427 msgid "Please adjust the image cropping for optimum viewing." msgstr "Por favor ajuste el recorte de la imagen para una visión óptima." -#: ../../Zotlabs/Module/Profile_photo.php:495 -#: ../../Zotlabs/Module/Cover_photo.php:396 +#: ../../Zotlabs/Module/Profile_photo.php:496 +#: ../../Zotlabs/Module/Cover_photo.php:429 msgid "Done Editing" msgstr "Edición completada" @@ -5371,73 +5594,81 @@ msgstr "Conectado/a" msgid "Unable to locate original post." msgstr "No ha sido posible encontrar la entrada original." -#: ../../Zotlabs/Module/Item.php:477 +#: ../../Zotlabs/Module/Item.php:479 msgid "Empty post discarded." msgstr "La entrada vacía ha sido desechada." -#: ../../Zotlabs/Module/Item.php:874 +#: ../../Zotlabs/Module/Item.php:866 msgid "Duplicate post suppressed." msgstr "Se ha suprimido la entrada duplicada." -#: ../../Zotlabs/Module/Item.php:1019 +#: ../../Zotlabs/Module/Item.php:1011 msgid "System error. Post not saved." msgstr "Error del sistema. La entrada no se ha podido salvar." -#: ../../Zotlabs/Module/Item.php:1055 +#: ../../Zotlabs/Module/Item.php:1047 msgid "Your comment is awaiting approval." msgstr "Su comentario está pendiente de aprobación." -#: ../../Zotlabs/Module/Item.php:1160 +#: ../../Zotlabs/Module/Item.php:1164 msgid "Unable to obtain post information from database." msgstr "No ha sido posible obtener información de la entrada en la base de datos." -#: ../../Zotlabs/Module/Item.php:1189 +#: ../../Zotlabs/Module/Item.php:1171 #, php-format msgid "You have reached your limit of %1$.0f top level posts." msgstr "Ha alcanzado su límite de %1$.0f entradas en la página principal." -#: ../../Zotlabs/Module/Item.php:1196 +#: ../../Zotlabs/Module/Item.php:1178 #, php-format msgid "You have reached your limit of %1$.0f webpages." msgstr "Ha alcanzado su límite de %1$.0f páginas web." -#: ../../Zotlabs/Module/Ping.php:330 +#: ../../Zotlabs/Module/Ping.php:337 msgid "sent you a private message" msgstr "le ha enviado un mensaje privado" -#: ../../Zotlabs/Module/Ping.php:383 +#: ../../Zotlabs/Module/Ping.php:390 msgid "added your channel" msgstr "añadió este canal a sus conexiones" -#: ../../Zotlabs/Module/Ping.php:407 +#: ../../Zotlabs/Module/Ping.php:414 msgid "requires approval" msgstr "requiere aprobación" -#: ../../Zotlabs/Module/Ping.php:417 +#: ../../Zotlabs/Module/Ping.php:424 msgid "g A l F d" msgstr "g A l d F" -#: ../../Zotlabs/Module/Ping.php:435 +#: ../../Zotlabs/Module/Ping.php:442 msgid "[today]" msgstr "[hoy]" -#: ../../Zotlabs/Module/Ping.php:444 +#: ../../Zotlabs/Module/Ping.php:451 msgid "posted an event" msgstr "publicó un evento" -#: ../../Zotlabs/Module/Ping.php:477 +#: ../../Zotlabs/Module/Ping.php:484 msgid "shared a file with you" msgstr "compartió un archivo con usted" +#: ../../Zotlabs/Module/Ping.php:659 +msgid "Private forum" +msgstr "Foro privado" + +#: ../../Zotlabs/Module/Ping.php:659 +msgid "Public forum" +msgstr "Foro público" + #: ../../Zotlabs/Module/Page.php:39 ../../Zotlabs/Module/Block.php:29 msgid "Invalid item." msgstr "Elemento no válido." #: ../../Zotlabs/Module/Page.php:136 ../../Zotlabs/Module/Block.php:77 -#: ../../Zotlabs/Module/Display.php:141 ../../Zotlabs/Module/Display.php:158 -#: ../../Zotlabs/Module/Display.php:175 -#: ../../Zotlabs/Lib/NativeWikiPage.php:519 ../../Zotlabs/Web/Router.php:167 -#: ../../include/help.php:81 +#: ../../Zotlabs/Module/Display.php:140 ../../Zotlabs/Module/Display.php:157 +#: ../../Zotlabs/Module/Display.php:174 +#: ../../Zotlabs/Lib/NativeWikiPage.php:519 ../../Zotlabs/Web/Router.php:185 +#: ../../include/help.php:132 msgid "Page not found." msgstr "Página no encontrada." @@ -5451,314 +5682,302 @@ msgid "" "non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." msgstr "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." -#: ../../Zotlabs/Module/Connedit.php:79 ../../Zotlabs/Module/Defperms.php:59 +#: ../../Zotlabs/Module/Connedit.php:80 ../../Zotlabs/Module/Defperms.php:67 msgid "Could not access contact record." msgstr "No se ha podido acceder al registro de contacto." -#: ../../Zotlabs/Module/Connedit.php:109 +#: ../../Zotlabs/Module/Connedit.php:110 msgid "Could not locate selected profile." msgstr "No se ha podido localizar el perfil seleccionado." -#: ../../Zotlabs/Module/Connedit.php:246 +#: ../../Zotlabs/Module/Connedit.php:247 msgid "Connection updated." msgstr "Conexión actualizada." -#: ../../Zotlabs/Module/Connedit.php:248 +#: ../../Zotlabs/Module/Connedit.php:249 msgid "Failed to update connection record." msgstr "Error al actualizar el registro de la conexión." -#: ../../Zotlabs/Module/Connedit.php:302 +#: ../../Zotlabs/Module/Connedit.php:303 msgid "is now connected to" msgstr "ahora está conectado/a" -#: ../../Zotlabs/Module/Connedit.php:427 +#: ../../Zotlabs/Module/Connedit.php:428 msgid "Could not access address book record." msgstr "No se pudo acceder al registro en su libreta de direcciones." -#: ../../Zotlabs/Module/Connedit.php:475 +#: ../../Zotlabs/Module/Connedit.php:476 msgid "Refresh failed - channel is currently unavailable." msgstr "Recarga fallida - no se puede encontrar el canal en este momento." -#: ../../Zotlabs/Module/Connedit.php:490 ../../Zotlabs/Module/Connedit.php:499 -#: ../../Zotlabs/Module/Connedit.php:508 ../../Zotlabs/Module/Connedit.php:517 -#: ../../Zotlabs/Module/Connedit.php:530 +#: ../../Zotlabs/Module/Connedit.php:491 ../../Zotlabs/Module/Connedit.php:500 +#: ../../Zotlabs/Module/Connedit.php:509 ../../Zotlabs/Module/Connedit.php:518 +#: ../../Zotlabs/Module/Connedit.php:531 msgid "Unable to set address book parameters." msgstr "No ha sido posible establecer los parámetros de la libreta de direcciones." -#: ../../Zotlabs/Module/Connedit.php:554 +#: ../../Zotlabs/Module/Connedit.php:555 msgid "Connection has been removed." msgstr "La conexión ha sido eliminada." -#: ../../Zotlabs/Module/Connedit.php:594 ../../Zotlabs/Lib/Apps.php:247 +#: ../../Zotlabs/Module/Connedit.php:595 ../../Zotlabs/Lib/Apps.php:319 #: ../../addon/openclipatar/openclipatar.php:57 -#: ../../include/conversation.php:1032 ../../include/nav.php:114 +#: ../../include/conversation.php:1038 ../../include/nav.php:106 msgid "View Profile" msgstr "Ver el perfil" -#: ../../Zotlabs/Module/Connedit.php:597 +#: ../../Zotlabs/Module/Connedit.php:598 #, php-format msgid "View %s's profile" msgstr "Ver el perfil de %s" -#: ../../Zotlabs/Module/Connedit.php:601 +#: ../../Zotlabs/Module/Connedit.php:602 msgid "Refresh Permissions" msgstr "Recargar los permisos" -#: ../../Zotlabs/Module/Connedit.php:604 +#: ../../Zotlabs/Module/Connedit.php:605 msgid "Fetch updated permissions" msgstr "Obtener los permisos actualizados" -#: ../../Zotlabs/Module/Connedit.php:608 +#: ../../Zotlabs/Module/Connedit.php:609 msgid "Refresh Photo" msgstr "Actualizar la foto" -#: ../../Zotlabs/Module/Connedit.php:611 +#: ../../Zotlabs/Module/Connedit.php:612 msgid "Fetch updated photo" msgstr "Obtener una foto actualizada" -#: ../../Zotlabs/Module/Connedit.php:615 ../../include/conversation.php:1042 +#: ../../Zotlabs/Module/Connedit.php:616 ../../include/conversation.php:1048 msgid "Recent Activity" msgstr "Actividad reciente" -#: ../../Zotlabs/Module/Connedit.php:618 +#: ../../Zotlabs/Module/Connedit.php:619 msgid "View recent posts and comments" msgstr "Ver publicaciones y comentarios recientes" -#: ../../Zotlabs/Module/Connedit.php:625 +#: ../../Zotlabs/Module/Connedit.php:626 msgid "Block (or Unblock) all communications with this connection" msgstr "Bloquear (o desbloquear) todas las comunicaciones con esta conexión" -#: ../../Zotlabs/Module/Connedit.php:626 +#: ../../Zotlabs/Module/Connedit.php:627 msgid "This connection is blocked!" msgstr "¡Esta conexión está bloqueada!" -#: ../../Zotlabs/Module/Connedit.php:630 +#: ../../Zotlabs/Module/Connedit.php:631 msgid "Unignore" msgstr "Dejar de ignorar" -#: ../../Zotlabs/Module/Connedit.php:633 +#: ../../Zotlabs/Module/Connedit.php:634 msgid "Ignore (or Unignore) all inbound communications from this connection" msgstr "Ignorar (o dejar de ignorar) todas las comunicaciones entrantes de esta conexión" -#: ../../Zotlabs/Module/Connedit.php:634 +#: ../../Zotlabs/Module/Connedit.php:635 msgid "This connection is ignored!" msgstr "¡Esta conexión es ignorada!" -#: ../../Zotlabs/Module/Connedit.php:638 +#: ../../Zotlabs/Module/Connedit.php:639 msgid "Unarchive" msgstr "Desarchivar" -#: ../../Zotlabs/Module/Connedit.php:638 +#: ../../Zotlabs/Module/Connedit.php:639 msgid "Archive" msgstr "Archivar" -#: ../../Zotlabs/Module/Connedit.php:641 +#: ../../Zotlabs/Module/Connedit.php:642 msgid "" "Archive (or Unarchive) this connection - mark channel dead but keep content" msgstr "Archiva (o desarchiva) esta conexión - marca el canal como muerto aunque mantiene sus contenidos" -#: ../../Zotlabs/Module/Connedit.php:642 +#: ../../Zotlabs/Module/Connedit.php:643 msgid "This connection is archived!" msgstr "¡Esta conexión esta archivada!" -#: ../../Zotlabs/Module/Connedit.php:646 +#: ../../Zotlabs/Module/Connedit.php:647 msgid "Unhide" msgstr "Mostrar" -#: ../../Zotlabs/Module/Connedit.php:646 +#: ../../Zotlabs/Module/Connedit.php:647 msgid "Hide" msgstr "Ocultar" -#: ../../Zotlabs/Module/Connedit.php:649 +#: ../../Zotlabs/Module/Connedit.php:650 msgid "Hide or Unhide this connection from your other connections" msgstr "Ocultar o mostrar esta conexión a sus otras conexiones" -#: ../../Zotlabs/Module/Connedit.php:650 +#: ../../Zotlabs/Module/Connedit.php:651 msgid "This connection is hidden!" msgstr "¡Esta conexión está oculta!" -#: ../../Zotlabs/Module/Connedit.php:657 +#: ../../Zotlabs/Module/Connedit.php:658 msgid "Delete this connection" msgstr "Eliminar esta conexión" -#: ../../Zotlabs/Module/Connedit.php:665 +#: ../../Zotlabs/Module/Connedit.php:666 msgid "Fetch Vcard" msgstr "Obtener una vcard" -#: ../../Zotlabs/Module/Connedit.php:668 +#: ../../Zotlabs/Module/Connedit.php:669 msgid "Fetch electronic calling card for this connection" msgstr "Obtener una tarjeta de llamada electrónica para esta conexión" -#: ../../Zotlabs/Module/Connedit.php:679 +#: ../../Zotlabs/Module/Connedit.php:680 msgid "Open Individual Permissions section by default" msgstr "Abrir la sección de permisos individuales por defecto" -#: ../../Zotlabs/Module/Connedit.php:702 +#: ../../Zotlabs/Module/Connedit.php:703 msgid "Affinity" msgstr "Afinidad" -#: ../../Zotlabs/Module/Connedit.php:705 +#: ../../Zotlabs/Module/Connedit.php:706 msgid "Open Set Affinity section by default" msgstr "Abrir por defecto la sección para definir la afinidad" -#: ../../Zotlabs/Module/Connedit.php:709 ../../Zotlabs/Widget/Affinity.php:22 +#: ../../Zotlabs/Module/Connedit.php:710 ../../Zotlabs/Widget/Affinity.php:22 msgid "Me" msgstr "Yo" -#: ../../Zotlabs/Module/Connedit.php:710 ../../Zotlabs/Widget/Affinity.php:23 +#: ../../Zotlabs/Module/Connedit.php:711 ../../Zotlabs/Widget/Affinity.php:23 msgid "Family" msgstr "Familia" -#: ../../Zotlabs/Module/Connedit.php:712 ../../Zotlabs/Widget/Affinity.php:25 +#: ../../Zotlabs/Module/Connedit.php:713 ../../Zotlabs/Widget/Affinity.php:25 msgid "Acquaintances" msgstr "Conocidos/as" -#: ../../Zotlabs/Module/Connedit.php:739 +#: ../../Zotlabs/Module/Connedit.php:740 msgid "Filter" msgstr "Filtrar" -#: ../../Zotlabs/Module/Connedit.php:742 +#: ../../Zotlabs/Module/Connedit.php:743 msgid "Open Custom Filter section by default" msgstr "Abrir por defecto la sección de personalización de filtros" -#: ../../Zotlabs/Module/Connedit.php:779 +#: ../../Zotlabs/Module/Connedit.php:780 msgid "Approve this connection" msgstr "Aprobar esta conexión" -#: ../../Zotlabs/Module/Connedit.php:779 +#: ../../Zotlabs/Module/Connedit.php:780 msgid "Accept connection to allow communication" msgstr "Aceptar la conexión para permitir la comunicación" -#: ../../Zotlabs/Module/Connedit.php:784 +#: ../../Zotlabs/Module/Connedit.php:785 msgid "Set Affinity" msgstr "Ajustar la afinidad" -#: ../../Zotlabs/Module/Connedit.php:787 +#: ../../Zotlabs/Module/Connedit.php:788 msgid "Set Profile" msgstr "Ajustar el perfil" -#: ../../Zotlabs/Module/Connedit.php:790 +#: ../../Zotlabs/Module/Connedit.php:791 msgid "Set Affinity & Profile" msgstr "Ajustar la afinidad y el perfil" -#: ../../Zotlabs/Module/Connedit.php:838 +#: ../../Zotlabs/Module/Connedit.php:839 msgid "This connection is unreachable from this location." msgstr "No se puede acceder a la conexión desde este sitio." -#: ../../Zotlabs/Module/Connedit.php:839 +#: ../../Zotlabs/Module/Connedit.php:840 msgid "This connection may be unreachable from other channel locations." msgstr "Esta conexión puede ser inaccesible desde otras ubicaciones del canal." -#: ../../Zotlabs/Module/Connedit.php:841 +#: ../../Zotlabs/Module/Connedit.php:842 msgid "Location independence is not supported by their network." msgstr "La independencia de ubicación no es compatible con su red." -#: ../../Zotlabs/Module/Connedit.php:847 +#: ../../Zotlabs/Module/Connedit.php:848 msgid "" "This connection is unreachable from this location. Location independence is " "not supported by their network." msgstr "Esta conexión no es accesible desde este sitio. La independencia de ubicación no es compatible con su red." -#: ../../Zotlabs/Module/Connedit.php:850 ../../Zotlabs/Module/Defperms.php:238 -#: ../../Zotlabs/Widget/Settings_menu.php:117 +#: ../../Zotlabs/Module/Connedit.php:851 ../../Zotlabs/Module/Defperms.php:254 msgid "Connection Default Permissions" msgstr "Permisos predeterminados de conexión" -#: ../../Zotlabs/Module/Connedit.php:850 ../../include/items.php:4214 +#: ../../Zotlabs/Module/Connedit.php:851 ../../include/items.php:4200 #, php-format msgid "Connection: %s" msgstr "Conexión: %s" -#: ../../Zotlabs/Module/Connedit.php:851 ../../Zotlabs/Module/Defperms.php:239 +#: ../../Zotlabs/Module/Connedit.php:852 ../../Zotlabs/Module/Defperms.php:255 msgid "Apply these permissions automatically" msgstr "Aplicar estos permisos automaticamente" -#: ../../Zotlabs/Module/Connedit.php:851 +#: ../../Zotlabs/Module/Connedit.php:852 msgid "Connection requests will be approved without your interaction" msgstr "Las solicitudes de conexión serán aprobadas sin su intervención" -#: ../../Zotlabs/Module/Connedit.php:852 ../../Zotlabs/Module/Defperms.php:240 +#: ../../Zotlabs/Module/Connedit.php:853 ../../Zotlabs/Module/Defperms.php:256 msgid "Permission role" -msgstr "Rol de acceso" +msgstr "Permisos de rol" -#: ../../Zotlabs/Module/Connedit.php:852 ../../Zotlabs/Module/Defperms.php:240 -#: ../../Zotlabs/Widget/Notifications.php:151 ../../include/nav.php:284 -msgid "Loading" -msgstr "Cargando" - -#: ../../Zotlabs/Module/Connedit.php:853 ../../Zotlabs/Module/Defperms.php:241 +#: ../../Zotlabs/Module/Connedit.php:854 ../../Zotlabs/Module/Defperms.php:257 msgid "Add permission role" -msgstr "Añadir un rol de acceso" +msgstr "Añadir permisos de rol" -#: ../../Zotlabs/Module/Connedit.php:860 +#: ../../Zotlabs/Module/Connedit.php:861 msgid "This connection's primary address is" msgstr "La dirección primaria de esta conexión es" -#: ../../Zotlabs/Module/Connedit.php:861 +#: ../../Zotlabs/Module/Connedit.php:862 msgid "Available locations:" msgstr "Ubicaciones disponibles:" -#: ../../Zotlabs/Module/Connedit.php:866 ../../Zotlabs/Module/Defperms.php:245 +#: ../../Zotlabs/Module/Connedit.php:867 ../../Zotlabs/Module/Defperms.php:261 msgid "" "The permissions indicated on this page will be applied to all new " "connections." msgstr "Los permisos indicados en esta página serán aplicados en todas las nuevas conexiones." -#: ../../Zotlabs/Module/Connedit.php:867 +#: ../../Zotlabs/Module/Connedit.php:868 msgid "Connection Tools" msgstr "Gestión de las conexiones" -#: ../../Zotlabs/Module/Connedit.php:869 +#: ../../Zotlabs/Module/Connedit.php:870 msgid "Slide to adjust your degree of friendship" msgstr "Deslizar para ajustar el grado de amistad" -#: ../../Zotlabs/Module/Connedit.php:870 ../../Zotlabs/Module/Rate.php:155 +#: ../../Zotlabs/Module/Connedit.php:871 ../../Zotlabs/Module/Rate.php:155 #: ../../include/js_strings.php:20 msgid "Rating" msgstr "Valoración" -#: ../../Zotlabs/Module/Connedit.php:871 +#: ../../Zotlabs/Module/Connedit.php:872 msgid "Slide to adjust your rating" msgstr "Deslizar para ajustar su valoración" -#: ../../Zotlabs/Module/Connedit.php:872 ../../Zotlabs/Module/Connedit.php:877 +#: ../../Zotlabs/Module/Connedit.php:873 ../../Zotlabs/Module/Connedit.php:878 msgid "Optionally explain your rating" msgstr "Opcionalmente, puede explicar su valoración" -#: ../../Zotlabs/Module/Connedit.php:874 +#: ../../Zotlabs/Module/Connedit.php:875 msgid "Custom Filter" msgstr "Filtro personalizado" -#: ../../Zotlabs/Module/Connedit.php:875 +#: ../../Zotlabs/Module/Connedit.php:876 msgid "Only import posts with this text" msgstr "Importar solo entradas que contengan este texto" -#: ../../Zotlabs/Module/Connedit.php:875 ../../Zotlabs/Module/Connedit.php:876 -msgid "" -"words one per line or #tags or /patterns/ or lang=xx, leave blank to import " -"all posts" -msgstr "Una sola opción por línea: palabras, #etiquetas, /patrones/ o lang=xx. Dejar en blanco para importarlo todo" - -#: ../../Zotlabs/Module/Connedit.php:876 +#: ../../Zotlabs/Module/Connedit.php:877 msgid "Do not import posts with this text" msgstr "No importar entradas que contengan este texto" -#: ../../Zotlabs/Module/Connedit.php:878 +#: ../../Zotlabs/Module/Connedit.php:879 msgid "This information is public!" msgstr "¡Esta información es pública!" -#: ../../Zotlabs/Module/Connedit.php:883 +#: ../../Zotlabs/Module/Connedit.php:884 msgid "Connection Pending Approval" msgstr "Conexión pendiente de aprobación" -#: ../../Zotlabs/Module/Connedit.php:888 +#: ../../Zotlabs/Module/Connedit.php:889 #, php-format msgid "" "Please choose the profile you would like to display to %s when viewing your " "profile securely." msgstr "Por favor, escoja el perfil que quiere mostrar a %s cuando esté viendo su perfil de forma segura." -#: ../../Zotlabs/Module/Connedit.php:895 +#: ../../Zotlabs/Module/Connedit.php:896 msgid "" "Some permissions may be inherited from your channel's privacy settings, which have higher " @@ -5766,184 +5985,192 @@ msgid "" "they wont have any impact unless the inherited setting changes." msgstr "Algunos permisos pueden ser heredados de los ajustes de privacidad de sus canales, los cuales tienen una prioridad más alta que los ajustes individuales. Puede cambiar estos ajustes aquí, pero no tendrán ningún consecuencia hasta que cambie los ajustes heredados." -#: ../../Zotlabs/Module/Connedit.php:896 +#: ../../Zotlabs/Module/Connedit.php:897 msgid "Last update:" msgstr "Última actualización:" -#: ../../Zotlabs/Module/Connedit.php:904 +#: ../../Zotlabs/Module/Connedit.php:905 msgid "Details" msgstr "Detalles" -#: ../../Zotlabs/Module/Chat.php:181 +#: ../../Zotlabs/Module/Chat.php:102 +msgid "Chatrooms App" +msgstr "App salas de chat" + +#: ../../Zotlabs/Module/Chat.php:103 +msgid "Access Controlled Chatrooms" +msgstr "Salas de chat moderadas" + +#: ../../Zotlabs/Module/Chat.php:196 msgid "Room not found" msgstr "Sala no encontrada" -#: ../../Zotlabs/Module/Chat.php:197 +#: ../../Zotlabs/Module/Chat.php:212 msgid "Leave Room" msgstr "Abandonar la sala" -#: ../../Zotlabs/Module/Chat.php:198 +#: ../../Zotlabs/Module/Chat.php:213 msgid "Delete Room" msgstr "Eliminar esta sala" -#: ../../Zotlabs/Module/Chat.php:199 +#: ../../Zotlabs/Module/Chat.php:214 msgid "I am away right now" msgstr "Estoy ausente momentáneamente" -#: ../../Zotlabs/Module/Chat.php:200 +#: ../../Zotlabs/Module/Chat.php:215 msgid "I am online" msgstr "Estoy conectado/a" -#: ../../Zotlabs/Module/Chat.php:202 +#: ../../Zotlabs/Module/Chat.php:217 msgid "Bookmark this room" msgstr "Añadir esta sala a Marcadores" -#: ../../Zotlabs/Module/Chat.php:205 ../../Zotlabs/Module/Mail.php:241 -#: ../../Zotlabs/Module/Mail.php:362 ../../include/conversation.php:1315 +#: ../../Zotlabs/Module/Chat.php:220 ../../Zotlabs/Module/Mail.php:241 +#: ../../Zotlabs/Module/Mail.php:362 ../../addon/hsse/hsse.php:134 +#: ../../include/conversation.php:1337 msgid "Please enter a link URL:" msgstr "Por favor, introduzca la dirección del enlace:" -#: ../../Zotlabs/Module/Chat.php:206 ../../Zotlabs/Module/Mail.php:294 -#: ../../Zotlabs/Module/Mail.php:436 ../../Zotlabs/Lib/ThreadItem.php:766 -#: ../../include/conversation.php:1435 +#: ../../Zotlabs/Module/Chat.php:221 ../../Zotlabs/Module/Mail.php:294 +#: ../../Zotlabs/Module/Mail.php:436 ../../Zotlabs/Lib/ThreadItem.php:781 +#: ../../addon/hsse/hsse.php:255 ../../include/conversation.php:1458 msgid "Encrypt text" msgstr "Cifrar texto" -#: ../../Zotlabs/Module/Chat.php:232 +#: ../../Zotlabs/Module/Chat.php:240 msgid "New Chatroom" msgstr "Nueva sala de chat" -#: ../../Zotlabs/Module/Chat.php:233 +#: ../../Zotlabs/Module/Chat.php:241 msgid "Chatroom name" msgstr "Nombre de la sala de chat" -#: ../../Zotlabs/Module/Chat.php:234 +#: ../../Zotlabs/Module/Chat.php:242 msgid "Expiration of chats (minutes)" msgstr "Caducidad de los mensajes en los chats (en minutos)" -#: ../../Zotlabs/Module/Chat.php:250 +#: ../../Zotlabs/Module/Chat.php:258 #, php-format msgid "%1$s's Chatrooms" msgstr "Salas de chat de %1$s" -#: ../../Zotlabs/Module/Chat.php:255 +#: ../../Zotlabs/Module/Chat.php:263 msgid "No chatrooms available" msgstr "No hay salas de chat disponibles" -#: ../../Zotlabs/Module/Chat.php:259 +#: ../../Zotlabs/Module/Chat.php:267 msgid "Expiration" msgstr "Caducidad" -#: ../../Zotlabs/Module/Chat.php:260 +#: ../../Zotlabs/Module/Chat.php:268 msgid "min" msgstr "min" -#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:248 -#: ../../include/conversation.php:1834 ../../include/nav.php:401 +#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:320 +#: ../../include/features.php:391 ../../include/nav.php:409 msgid "Photos" msgstr "Fotos" -#: ../../Zotlabs/Module/Fbrowser.php:85 ../../Zotlabs/Lib/Apps.php:243 -#: ../../Zotlabs/Storage/Browser.php:272 ../../include/conversation.php:1842 -#: ../../include/nav.php:409 +#: ../../Zotlabs/Module/Fbrowser.php:85 ../../Zotlabs/Lib/Apps.php:315 +#: ../../Zotlabs/Storage/Browser.php:272 ../../include/nav.php:417 msgid "Files" msgstr "Ficheros" -#: ../../Zotlabs/Module/Menu.php:49 +#: ../../Zotlabs/Module/Menu.php:67 msgid "Unable to update menu." msgstr "No se puede actualizar el menú." -#: ../../Zotlabs/Module/Menu.php:60 +#: ../../Zotlabs/Module/Menu.php:78 msgid "Unable to create menu." msgstr "No se puede crear el menú." -#: ../../Zotlabs/Module/Menu.php:98 ../../Zotlabs/Module/Menu.php:110 +#: ../../Zotlabs/Module/Menu.php:160 ../../Zotlabs/Module/Menu.php:173 msgid "Menu Name" msgstr "Nombre del menú" -#: ../../Zotlabs/Module/Menu.php:98 +#: ../../Zotlabs/Module/Menu.php:160 msgid "Unique name (not visible on webpage) - required" msgstr "Nombre único (no será visible en la página web) - requerido" -#: ../../Zotlabs/Module/Menu.php:99 ../../Zotlabs/Module/Menu.php:111 +#: ../../Zotlabs/Module/Menu.php:161 ../../Zotlabs/Module/Menu.php:174 msgid "Menu Title" msgstr "Título del menú" -#: ../../Zotlabs/Module/Menu.php:99 +#: ../../Zotlabs/Module/Menu.php:161 msgid "Visible on webpage - leave empty for no title" msgstr "Visible en la página web - no ponga nada si no desea un título" -#: ../../Zotlabs/Module/Menu.php:100 +#: ../../Zotlabs/Module/Menu.php:162 msgid "Allow Bookmarks" msgstr "Permitir marcadores" -#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 +#: ../../Zotlabs/Module/Menu.php:162 ../../Zotlabs/Module/Menu.php:221 msgid "Menu may be used to store saved bookmarks" msgstr "El menú se puede usar para guardar marcadores" -#: ../../Zotlabs/Module/Menu.php:101 ../../Zotlabs/Module/Menu.php:159 +#: ../../Zotlabs/Module/Menu.php:163 ../../Zotlabs/Module/Menu.php:224 msgid "Submit and proceed" msgstr "Enviar y proceder" -#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2423 +#: ../../Zotlabs/Module/Menu.php:170 ../../include/text.php:2466 msgid "Menus" msgstr "Menús" -#: ../../Zotlabs/Module/Menu.php:117 +#: ../../Zotlabs/Module/Menu.php:180 msgid "Bookmarks allowed" msgstr "Marcadores permitidos" -#: ../../Zotlabs/Module/Menu.php:119 +#: ../../Zotlabs/Module/Menu.php:182 msgid "Delete this menu" msgstr "Borrar este menú" -#: ../../Zotlabs/Module/Menu.php:120 ../../Zotlabs/Module/Menu.php:154 +#: ../../Zotlabs/Module/Menu.php:183 ../../Zotlabs/Module/Menu.php:218 msgid "Edit menu contents" msgstr "Editar los contenidos del menú" -#: ../../Zotlabs/Module/Menu.php:121 +#: ../../Zotlabs/Module/Menu.php:184 msgid "Edit this menu" msgstr "Modificar este menú" -#: ../../Zotlabs/Module/Menu.php:136 +#: ../../Zotlabs/Module/Menu.php:200 msgid "Menu could not be deleted." msgstr "El menú no puede ser eliminado." -#: ../../Zotlabs/Module/Menu.php:149 +#: ../../Zotlabs/Module/Menu.php:213 msgid "Edit Menu" msgstr "Modificar el menú" -#: ../../Zotlabs/Module/Menu.php:153 +#: ../../Zotlabs/Module/Menu.php:217 msgid "Add or remove entries to this menu" msgstr "Añadir o quitar entradas en este menú" -#: ../../Zotlabs/Module/Menu.php:155 +#: ../../Zotlabs/Module/Menu.php:219 msgid "Menu name" msgstr "Nombre del menú" -#: ../../Zotlabs/Module/Menu.php:155 +#: ../../Zotlabs/Module/Menu.php:219 msgid "Must be unique, only seen by you" msgstr "Debe ser único, solo será visible para usted" -#: ../../Zotlabs/Module/Menu.php:156 +#: ../../Zotlabs/Module/Menu.php:220 msgid "Menu title" msgstr "Título del menú" -#: ../../Zotlabs/Module/Menu.php:156 +#: ../../Zotlabs/Module/Menu.php:220 msgid "Menu title as seen by others" msgstr "El título del menú tal como será visto por los demás" -#: ../../Zotlabs/Module/Menu.php:157 +#: ../../Zotlabs/Module/Menu.php:221 msgid "Allow bookmarks" msgstr "Permitir marcadores" -#: ../../Zotlabs/Module/Layouts.php:184 ../../include/text.php:2424 +#: ../../Zotlabs/Module/Layouts.php:184 ../../include/text.php:2467 msgid "Layouts" msgstr "Plantillas" -#: ../../Zotlabs/Module/Layouts.php:186 ../../Zotlabs/Lib/Apps.php:251 -#: ../../include/nav.php:176 ../../include/nav.php:280 -#: ../../include/help.php:68 ../../include/help.php:74 +#: ../../Zotlabs/Module/Layouts.php:186 ../../Zotlabs/Lib/Apps.php:323 +#: ../../include/nav.php:168 ../../include/nav.php:284 +#: ../../include/help.php:117 ../../include/help.php:125 msgid "Help" msgstr "Ayuda" @@ -5959,11 +6186,23 @@ msgstr "Descripción de la plantilla" msgid "Download PDL file" msgstr "Descargar el fichero PDL" -#: ../../Zotlabs/Module/Cloud.php:120 +#: ../../Zotlabs/Module/Notes.php:55 +msgid "Notes App" +msgstr "App notas" + +#: ../../Zotlabs/Module/Notes.php:56 +msgid "A simple notes app with a widget (note: notes are not encrypted)" +msgstr "Una simple aplicación de notas con un widget (aviso: las notas no están encriptadas)" + +#: ../../Zotlabs/Module/Cloud.php:123 +msgid "Not found" +msgstr "No encontrado" + +#: ../../Zotlabs/Module/Cloud.php:129 msgid "Please refresh page" msgstr "Por favor, recargue la página" -#: ../../Zotlabs/Module/Cloud.php:123 +#: ../../Zotlabs/Module/Cloud.php:132 msgid "Unknown error" msgstr "Error desconocido" @@ -5996,13 +6235,13 @@ msgstr "Token de validación" msgid "Post not found." msgstr "Mensaje no encontrado." -#: ../../Zotlabs/Module/Tagger.php:77 ../../include/markdown.php:160 -#: ../../include/bbcode.php:352 +#: ../../Zotlabs/Module/Tagger.php:77 ../../include/markdown.php:202 +#: ../../include/bbcode.php:354 msgid "post" msgstr "la entrada" #: ../../Zotlabs/Module/Tagger.php:79 ../../include/conversation.php:146 -#: ../../include/text.php:2013 +#: ../../include/text.php:2036 msgid "comment" msgstr "el comentario" @@ -6026,16 +6265,19 @@ msgid "" " to correctly use this feature." msgstr "Atención: El cambio de algunos ajustes puede volver inutilizable su canal. Por favor, abandone la página excepto que esté seguro y sepa cómo usar correctamente esta característica." -#: ../../Zotlabs/Module/Defperms.php:239 -msgid "" -"If enabled, connection requests will be approved without your interaction" -msgstr "Si está habilitado, las solicitudes de conexión serán aprobadas sin su intervención." +#: ../../Zotlabs/Module/Defperms.php:189 +msgid "Default Permissions App" +msgstr "App de Permisos por defecto" -#: ../../Zotlabs/Module/Defperms.php:246 +#: ../../Zotlabs/Module/Defperms.php:190 +msgid "Set custom default permissions for new connections" +msgstr "Establecer permisos predeterminados personalizados para nuevas conexiones" + +#: ../../Zotlabs/Module/Defperms.php:262 msgid "Automatic approval settings" msgstr "Opciones de autorización automática" -#: ../../Zotlabs/Module/Defperms.php:254 +#: ../../Zotlabs/Module/Defperms.php:270 msgid "" "Some individual permissions may have been preset or locked based on your " "channel type and privacy settings." @@ -6045,71 +6287,99 @@ msgstr "Es posible que se hayan preestablecido o bloqueado algunos permisos indi msgid "Unknown App" msgstr "Aplicación desconocida" -#: ../../Zotlabs/Module/Authorize.php:22 +#: ../../Zotlabs/Module/Authorize.php:29 msgid "Authorize" msgstr "Autorizar" -#: ../../Zotlabs/Module/Authorize.php:23 +#: ../../Zotlabs/Module/Authorize.php:30 #, php-format msgid "Do you authorize the app %s to access your channel data?" msgstr "¿Autoriza a la aplicación %s a acceder a los datos de su canal?" -#: ../../Zotlabs/Module/Authorize.php:25 +#: ../../Zotlabs/Module/Authorize.php:32 msgid "Allow" msgstr "Permitir" -#: ../../Zotlabs/Module/Group.php:24 +#: ../../Zotlabs/Module/Group.php:45 msgid "Privacy group created." msgstr "El grupo de canales ha sido creado." -#: ../../Zotlabs/Module/Group.php:30 +#: ../../Zotlabs/Module/Group.php:48 msgid "Could not create privacy group." msgstr "No se puede crear el grupo de canales" -#: ../../Zotlabs/Module/Group.php:42 ../../Zotlabs/Module/Group.php:143 -#: ../../include/items.php:4181 +#: ../../Zotlabs/Module/Group.php:61 ../../Zotlabs/Module/Group.php:200 +#: ../../include/items.php:4167 msgid "Privacy group not found." msgstr "Grupo de canales no encontrado." -#: ../../Zotlabs/Module/Group.php:58 +#: ../../Zotlabs/Module/Group.php:77 msgid "Privacy group updated." msgstr "Grupo de canales actualizado." -#: ../../Zotlabs/Module/Group.php:92 -msgid "Create a group of channels." -msgstr "Crear un grupo de canales." +#: ../../Zotlabs/Module/Group.php:101 +msgid "Privacy Groups App" +msgstr "App de Grupos de canales" -#: ../../Zotlabs/Module/Group.php:93 ../../Zotlabs/Module/Group.php:186 -msgid "Privacy group name: " -msgstr "Nombre del grupo de canales:" +#: ../../Zotlabs/Module/Group.php:102 +msgid "Management of privacy groups" +msgstr "Gestión de grupos de canales" -#: ../../Zotlabs/Module/Group.php:95 ../../Zotlabs/Module/Group.php:189 +#: ../../Zotlabs/Module/Group.php:132 ../../Zotlabs/Module/Group.php:143 +#: ../../Zotlabs/Lib/Apps.php:339 ../../Zotlabs/Lib/Group.php:324 +#: ../../Zotlabs/Widget/Activity_filter.php:70 ../../include/nav.php:95 +#: ../../include/group.php:320 +msgid "Privacy Groups" +msgstr "Grupos de canales" + +#: ../../Zotlabs/Module/Group.php:133 +msgid "Add Group" +msgstr "Agregar un grupo" + +#: ../../Zotlabs/Module/Group.php:137 +msgid "Privacy group name" +msgstr "Nombre del grupo" + +#: ../../Zotlabs/Module/Group.php:138 ../../Zotlabs/Module/Group.php:239 msgid "Members are visible to other channels" msgstr "Los miembros son visibles para otros canales" -#: ../../Zotlabs/Module/Group.php:113 -msgid "Privacy group removed." -msgstr "Grupo de canales eliminado." - -#: ../../Zotlabs/Module/Group.php:115 -msgid "Unable to remove privacy group." -msgstr "No se puede eliminar el grupo de canales." - -#: ../../Zotlabs/Module/Group.php:185 -msgid "Privacy group editor" -msgstr "Editor de grupos de canales" - -#: ../../Zotlabs/Module/Group.php:199 ../../Zotlabs/Module/Help.php:81 +#: ../../Zotlabs/Module/Group.php:145 ../../Zotlabs/Module/Help.php:81 msgid "Members" msgstr "Miembros" -#: ../../Zotlabs/Module/Group.php:201 -msgid "All Connected Channels" -msgstr "Todos los canales conectados" +#: ../../Zotlabs/Module/Group.php:170 +msgid "Privacy group removed." +msgstr "Grupo de canales eliminado." -#: ../../Zotlabs/Module/Group.php:233 -msgid "Click on a channel to add or remove." -msgstr "Haga clic en un canal para agregarlo o quitarlo." +#: ../../Zotlabs/Module/Group.php:172 +msgid "Unable to remove privacy group." +msgstr "No se puede eliminar el grupo de canales." + +#: ../../Zotlabs/Module/Group.php:234 +#, php-format +msgid "Privacy Group: %s" +msgstr "Grupo privado %s" + +#: ../../Zotlabs/Module/Group.php:236 +msgid "Privacy group name: " +msgstr "Nombre del grupo de canales:" + +#: ../../Zotlabs/Module/Group.php:241 +msgid "Delete Group" +msgstr "Eliminar grupo" + +#: ../../Zotlabs/Module/Group.php:251 +msgid "Group members" +msgstr "Miembros del grupo" + +#: ../../Zotlabs/Module/Group.php:253 +msgid "Not in this group" +msgstr "No en este grupo" + +#: ../../Zotlabs/Module/Group.php:285 +msgid "Click a channel to toggle membership" +msgstr "Haga clic en un canal para cambiar los miembros" #: ../../Zotlabs/Module/Profiles.php:24 ../../Zotlabs/Module/Profiles.php:184 #: ../../Zotlabs/Module/Profiles.php:241 ../../Zotlabs/Module/Profiles.php:659 @@ -6202,7 +6472,7 @@ msgid "View this profile" msgstr "Ver este perfil" #: ../../Zotlabs/Module/Profiles.php:725 ../../Zotlabs/Module/Profiles.php:824 -#: ../../include/channel.php:1319 +#: ../../include/channel.php:1326 msgid "Edit visibility" msgstr "Editar visibilidad" @@ -6214,7 +6484,7 @@ msgstr "Gestión del perfil" msgid "Change cover photo" msgstr "Cambiar la imagen de portada del perfil" -#: ../../Zotlabs/Module/Profiles.php:728 ../../include/channel.php:1289 +#: ../../Zotlabs/Module/Profiles.php:728 ../../include/channel.php:1296 msgid "Change profile photo" msgstr "Cambiar la foto del perfil" @@ -6234,7 +6504,7 @@ msgstr "Eliminar este perfil" msgid "Add profile things" msgstr "Añadir cosas al perfil" -#: ../../Zotlabs/Module/Profiles.php:733 ../../include/conversation.php:1708 +#: ../../Zotlabs/Module/Profiles.php:733 msgid "Personal" msgstr "Personales" @@ -6242,7 +6512,7 @@ msgstr "Personales" msgid "Relationship" msgstr "Relación" -#: ../../Zotlabs/Module/Profiles.php:736 ../../Zotlabs/Widget/Newmember.php:44 +#: ../../Zotlabs/Module/Profiles.php:736 ../../Zotlabs/Widget/Newmember.php:51 #: ../../include/datetime.php:58 msgid "Miscellaneous" msgstr "Varios" @@ -6380,12 +6650,12 @@ msgstr "Mis otros canales" msgid "Communications" msgstr "Comunicaciones" -#: ../../Zotlabs/Module/Profiles.php:820 ../../include/channel.php:1315 +#: ../../Zotlabs/Module/Profiles.php:820 ../../include/channel.php:1322 msgid "Profile Image" msgstr "Imagen del perfil" -#: ../../Zotlabs/Module/Profiles.php:830 ../../include/channel.php:1296 -#: ../../include/nav.php:117 +#: ../../Zotlabs/Module/Profiles.php:830 ../../include/channel.php:1303 +#: ../../include/nav.php:109 msgid "Edit Profiles" msgstr "Editar perfiles" @@ -6418,7 +6688,7 @@ msgstr "Subir una foto de portada del perfil" msgid "Edit your default profile" msgstr "Editar su perfil por defecto" -#: ../../Zotlabs/Module/Go.php:38 ../../Zotlabs/Widget/Newmember.php:34 +#: ../../Zotlabs/Module/Go.php:38 ../../Zotlabs/Widget/Newmember.php:41 msgid "View friend suggestions" msgstr "Ver sugerencias de amistad" @@ -6464,8 +6734,8 @@ msgstr "Editar la página web" msgid "Create a new channel" msgstr "Crear un nuevo canal" -#: ../../Zotlabs/Module/Manage.php:170 ../../Zotlabs/Lib/Apps.php:240 -#: ../../include/nav.php:102 ../../include/nav.php:190 +#: ../../Zotlabs/Module/Manage.php:170 ../../Zotlabs/Lib/Apps.php:312 +#: ../../include/nav.php:92 msgid "Channel Manager" msgstr "Administración de canales" @@ -6499,59 +6769,70 @@ msgstr "%d nuevas solicitudes de conexión" msgid "Delegated Channel" msgstr "Canal delegado" -#: ../../Zotlabs/Module/Cards.php:42 ../../Zotlabs/Module/Cards.php:194 -#: ../../Zotlabs/Lib/Apps.php:230 ../../include/conversation.php:1893 -#: ../../include/features.php:123 ../../include/nav.php:458 -msgid "Cards" -msgstr "Fichas" +#: ../../Zotlabs/Module/Cards.php:46 +msgid "Cards App" +msgstr "App de Fichas" -#: ../../Zotlabs/Module/Cards.php:99 +#: ../../Zotlabs/Module/Cards.php:47 +msgid "Create personal planning cards" +msgstr "Crear fichas de planificación personal" + +#: ../../Zotlabs/Module/Cards.php:108 msgid "Add Card" msgstr "Añadir una ficha" +#: ../../Zotlabs/Module/Cards.php:203 ../../Zotlabs/Lib/Apps.php:303 +#: ../../include/nav.php:466 +msgid "Cards" +msgstr "Fichas" + #: ../../Zotlabs/Module/Dirsearch.php:33 msgid "This directory server requires an access token" msgstr "El servidor de este directorio necesita un \"token\" de acceso" -#: ../../Zotlabs/Module/Siteinfo.php:18 +#: ../../Zotlabs/Module/Siteinfo.php:21 msgid "About this site" msgstr "Acerca de este sitio" -#: ../../Zotlabs/Module/Siteinfo.php:19 +#: ../../Zotlabs/Module/Siteinfo.php:22 msgid "Site Name" msgstr "Nombre del sitio" -#: ../../Zotlabs/Module/Siteinfo.php:23 +#: ../../Zotlabs/Module/Siteinfo.php:26 msgid "Administrator" msgstr "Administrador" -#: ../../Zotlabs/Module/Siteinfo.php:25 ../../Zotlabs/Module/Register.php:232 +#: ../../Zotlabs/Module/Siteinfo.php:28 ../../Zotlabs/Module/Register.php:236 msgid "Terms of Service" msgstr "Términos del servicio" -#: ../../Zotlabs/Module/Siteinfo.php:26 +#: ../../Zotlabs/Module/Siteinfo.php:29 msgid "Software and Project information" msgstr "Información sobre el software y el proyecto" -#: ../../Zotlabs/Module/Siteinfo.php:27 +#: ../../Zotlabs/Module/Siteinfo.php:30 msgid "This site is powered by $Projectname" msgstr "Este sitio funciona con $Projectname" -#: ../../Zotlabs/Module/Siteinfo.php:28 +#: ../../Zotlabs/Module/Siteinfo.php:31 msgid "" "Federated and decentralised networking and identity services provided by Zot" msgstr "Servicios federados y descentralizados de identidad y redes proporcionados por Zot" -#: ../../Zotlabs/Module/Siteinfo.php:30 +#: ../../Zotlabs/Module/Siteinfo.php:34 +msgid "Additional federated transport protocols:" +msgstr "Protocolos adicionales de transporte federado: " + +#: ../../Zotlabs/Module/Siteinfo.php:36 #, php-format msgid "Version %s" msgstr "Versión %s" -#: ../../Zotlabs/Module/Siteinfo.php:31 +#: ../../Zotlabs/Module/Siteinfo.php:37 msgid "Project homepage" msgstr "Página principal del proyecto" -#: ../../Zotlabs/Module/Siteinfo.php:32 +#: ../../Zotlabs/Module/Siteinfo.php:38 msgid "Developer homepage" msgstr "Página principal del desarrollador" @@ -6560,7 +6841,7 @@ msgid "No ratings" msgstr "Ninguna valoración" #: ../../Zotlabs/Module/Ratings.php:97 ../../Zotlabs/Module/Pubsites.php:35 -#: ../../include/conversation.php:1082 +#: ../../include/conversation.php:1088 msgid "Ratings" msgstr "Valoraciones" @@ -6576,56 +6857,64 @@ msgstr "Sitio web:" msgid "Description: " msgstr "Descripción:" -#: ../../Zotlabs/Module/Webpages.php:54 +#: ../../Zotlabs/Module/Webpages.php:48 +msgid "Webpages App" +msgstr "App de Páginas web" + +#: ../../Zotlabs/Module/Webpages.php:49 +msgid "Provide managed web pages on your channel" +msgstr "Proveer páginas web gestionadas en su canal" + +#: ../../Zotlabs/Module/Webpages.php:69 msgid "Import Webpage Elements" msgstr "Importar elementos de una página web" -#: ../../Zotlabs/Module/Webpages.php:55 +#: ../../Zotlabs/Module/Webpages.php:70 msgid "Import selected" msgstr "Importar elementos seleccionados" -#: ../../Zotlabs/Module/Webpages.php:78 +#: ../../Zotlabs/Module/Webpages.php:93 msgid "Export Webpage Elements" msgstr "Exportar elementos de una página web" -#: ../../Zotlabs/Module/Webpages.php:79 +#: ../../Zotlabs/Module/Webpages.php:94 msgid "Export selected" msgstr "Exportar los elementos seleccionados" -#: ../../Zotlabs/Module/Webpages.php:237 ../../Zotlabs/Lib/Apps.php:244 -#: ../../include/conversation.php:1915 ../../include/nav.php:481 +#: ../../Zotlabs/Module/Webpages.php:252 ../../Zotlabs/Lib/Apps.php:316 +#: ../../include/nav.php:489 msgid "Webpages" msgstr "Páginas web" -#: ../../Zotlabs/Module/Webpages.php:248 +#: ../../Zotlabs/Module/Webpages.php:263 msgid "Actions" msgstr "Acciones" -#: ../../Zotlabs/Module/Webpages.php:249 +#: ../../Zotlabs/Module/Webpages.php:264 msgid "Page Link" msgstr "Vínculo de la página" -#: ../../Zotlabs/Module/Webpages.php:250 +#: ../../Zotlabs/Module/Webpages.php:265 msgid "Page Title" msgstr "Título de página" -#: ../../Zotlabs/Module/Webpages.php:280 +#: ../../Zotlabs/Module/Webpages.php:295 msgid "Invalid file type." msgstr "Tipo de fichero no válido." -#: ../../Zotlabs/Module/Webpages.php:292 +#: ../../Zotlabs/Module/Webpages.php:307 msgid "Error opening zip file" msgstr "Error al abrir el fichero comprimido zip" -#: ../../Zotlabs/Module/Webpages.php:303 +#: ../../Zotlabs/Module/Webpages.php:318 msgid "Invalid folder path." msgstr "La ruta de la carpeta no es válida." -#: ../../Zotlabs/Module/Webpages.php:330 +#: ../../Zotlabs/Module/Webpages.php:345 msgid "No webpage elements detected." msgstr "No se han detectado elementos de ninguna página web." -#: ../../Zotlabs/Module/Webpages.php:405 +#: ../../Zotlabs/Module/Webpages.php:420 msgid "Import complete." msgstr "Importación completada." @@ -6635,13 +6924,13 @@ msgid "" " password." msgstr "Los cambios en el nombre de un canal no está permitida hasta pasadas 48 horas desde el cambio de contraseña de la cuenta." -#: ../../Zotlabs/Module/Changeaddr.php:46 ../../include/channel.php:214 -#: ../../include/channel.php:599 +#: ../../Zotlabs/Module/Changeaddr.php:46 ../../include/channel.php:221 +#: ../../include/channel.php:606 msgid "Reserved nickname. Please choose another." msgstr "Sobrenombre en uso. Por favor, elija otro." -#: ../../Zotlabs/Module/Changeaddr.php:51 ../../include/channel.php:219 -#: ../../include/channel.php:604 +#: ../../Zotlabs/Module/Changeaddr.php:51 ../../include/channel.php:226 +#: ../../include/channel.php:611 msgid "" "Nickname has unsupported characters or is already being used on this site." msgstr "El alias contiene caracteres no admitidos o está ya en uso por otros miembros de este sitio." @@ -6736,76 +7025,96 @@ msgstr "Opciones" msgid "Redeliver" msgstr "Volver a enviar" -#: ../../Zotlabs/Module/Sources.php:37 +#: ../../Zotlabs/Module/Sources.php:41 msgid "Failed to create source. No channel selected." msgstr "No se ha podido crear el origen de los contenidos. No ha sido seleccionado ningún canal." -#: ../../Zotlabs/Module/Sources.php:51 +#: ../../Zotlabs/Module/Sources.php:57 msgid "Source created." msgstr "Fuente creada." -#: ../../Zotlabs/Module/Sources.php:64 +#: ../../Zotlabs/Module/Sources.php:70 msgid "Source updated." msgstr "Fuente actualizada." -#: ../../Zotlabs/Module/Sources.php:90 +#: ../../Zotlabs/Module/Sources.php:88 +msgid "Sources App" +msgstr "App de Fuentes" + +#: ../../Zotlabs/Module/Sources.php:89 +msgid "Automatically import channel content from other channels or feeds" +msgstr "Importar automáticamente contenido de otros canales o \"feeds\"" + +#: ../../Zotlabs/Module/Sources.php:101 msgid "*" msgstr "*" -#: ../../Zotlabs/Module/Sources.php:96 -#: ../../Zotlabs/Widget/Settings_menu.php:133 ../../include/features.php:292 +#: ../../Zotlabs/Module/Sources.php:107 ../../Zotlabs/Lib/Apps.php:344 msgid "Channel Sources" msgstr "Orígenes de los contenidos del canal" -#: ../../Zotlabs/Module/Sources.php:97 +#: ../../Zotlabs/Module/Sources.php:108 msgid "Manage remote sources of content for your channel." msgstr "Gestionar contenido de origen remoto para su canal." -#: ../../Zotlabs/Module/Sources.php:98 ../../Zotlabs/Module/Sources.php:108 +#: ../../Zotlabs/Module/Sources.php:109 ../../Zotlabs/Module/Sources.php:119 msgid "New Source" msgstr "Nueva fuente" -#: ../../Zotlabs/Module/Sources.php:109 ../../Zotlabs/Module/Sources.php:143 +#: ../../Zotlabs/Module/Sources.php:120 ../../Zotlabs/Module/Sources.php:154 msgid "" "Import all or selected content from the following channel into this channel " "and distribute it according to your channel settings." msgstr "Importar todo el contenido o una selección de los siguientes canales en este canal y distribuirlo de acuerdo con sus ajustes." -#: ../../Zotlabs/Module/Sources.php:110 ../../Zotlabs/Module/Sources.php:144 +#: ../../Zotlabs/Module/Sources.php:121 ../../Zotlabs/Module/Sources.php:155 msgid "Only import content with these words (one per line)" msgstr "Importar solo contenido que contenga estas palabras (una por línea)" -#: ../../Zotlabs/Module/Sources.php:110 ../../Zotlabs/Module/Sources.php:144 +#: ../../Zotlabs/Module/Sources.php:121 ../../Zotlabs/Module/Sources.php:155 msgid "Leave blank to import all public content" msgstr "Dejar en blanco para importar todo el contenido público" -#: ../../Zotlabs/Module/Sources.php:111 ../../Zotlabs/Module/Sources.php:148 +#: ../../Zotlabs/Module/Sources.php:122 ../../Zotlabs/Module/Sources.php:161 msgid "Channel Name" msgstr "Nombre del canal" -#: ../../Zotlabs/Module/Sources.php:112 ../../Zotlabs/Module/Sources.php:147 +#: ../../Zotlabs/Module/Sources.php:123 ../../Zotlabs/Module/Sources.php:158 msgid "" "Add the following categories to posts imported from this source (comma " "separated)" msgstr "Añadir los temas siguientes a las entradas importadas de esta fuente (separadas por comas)" -#: ../../Zotlabs/Module/Sources.php:133 ../../Zotlabs/Module/Sources.php:161 +#: ../../Zotlabs/Module/Sources.php:123 ../../Zotlabs/Module/Sources.php:158 +#: ../../Zotlabs/Module/Oauth.php:117 +msgid "Optional" +msgstr "Opcional" + +#: ../../Zotlabs/Module/Sources.php:124 ../../Zotlabs/Module/Sources.php:159 +msgid "Resend posts with this channel as author" +msgstr "Reenviar mensajes con este canal como autor" + +#: ../../Zotlabs/Module/Sources.php:124 ../../Zotlabs/Module/Sources.php:159 +msgid "Copyrights may apply" +msgstr "Se pueden aplicar los derechos de autor" + +#: ../../Zotlabs/Module/Sources.php:144 ../../Zotlabs/Module/Sources.php:174 msgid "Source not found." msgstr "Fuente no encontrada" -#: ../../Zotlabs/Module/Sources.php:140 +#: ../../Zotlabs/Module/Sources.php:151 msgid "Edit Source" msgstr "Editar fuente" -#: ../../Zotlabs/Module/Sources.php:141 +#: ../../Zotlabs/Module/Sources.php:152 msgid "Delete Source" msgstr "Eliminar fuente" -#: ../../Zotlabs/Module/Sources.php:169 +#: ../../Zotlabs/Module/Sources.php:182 msgid "Source removed" msgstr "Fuente eliminada" -#: ../../Zotlabs/Module/Sources.php:171 +#: ../../Zotlabs/Module/Sources.php:184 msgid "Unable to remove source." msgstr "No se puede eliminar la fuente." @@ -6844,14 +7153,15 @@ msgstr "Canal no disponible." msgid "Previous action reversed." msgstr "Acción anterior revocada." -#: ../../Zotlabs/Module/Like.php:438 ../../addon/diaspora/Receiver.php:1529 -#: ../../addon/pubcrawl/as.php:1440 ../../include/conversation.php:160 +#: ../../Zotlabs/Module/Like.php:438 ../../Zotlabs/Lib/Activity.php:1605 +#: ../../addon/diaspora/Receiver.php:1568 ../../addon/pubcrawl/as.php:1547 +#: ../../include/conversation.php:160 #, php-format msgid "%1$s likes %2$s's %3$s" msgstr "A %1$s le gusta %3$s de %2$s" -#: ../../Zotlabs/Module/Like.php:440 ../../addon/pubcrawl/as.php:1442 -#: ../../include/conversation.php:163 +#: ../../Zotlabs/Module/Like.php:440 ../../Zotlabs/Lib/Activity.php:1607 +#: ../../addon/pubcrawl/as.php:1549 ../../include/conversation.php:163 #, php-format msgid "%1$s doesn't like %2$s's %3$s" msgstr "A %1$s no le gusta %3$s de %2$s" @@ -6871,17 +7181,17 @@ msgstr "%3$s de %2$s: %1$s no está de acuerdo" msgid "%1$s abstains from a decision on %2$s's %3$s" msgstr "%3$s de %2$s: %1$s se abstiene" -#: ../../Zotlabs/Module/Like.php:448 ../../addon/diaspora/Receiver.php:2072 +#: ../../Zotlabs/Module/Like.php:448 ../../addon/diaspora/Receiver.php:2111 #, php-format msgid "%1$s is attending %2$s's %3$s" msgstr "%3$s de %2$s: %1$s participa" -#: ../../Zotlabs/Module/Like.php:450 ../../addon/diaspora/Receiver.php:2074 +#: ../../Zotlabs/Module/Like.php:450 ../../addon/diaspora/Receiver.php:2113 #, php-format msgid "%1$s is not attending %2$s's %3$s" msgstr "%3$s de %2$s: %1$s no participa" -#: ../../Zotlabs/Module/Like.php:452 ../../addon/diaspora/Receiver.php:2076 +#: ../../Zotlabs/Module/Like.php:452 ../../addon/diaspora/Receiver.php:2115 #, php-format msgid "%1$s may attend %2$s's %3$s" msgstr "%3$s de %2$s: %1$s quizá participe" @@ -6894,119 +7204,119 @@ msgstr "Acción completada." msgid "Thank you." msgstr "Gracias." -#: ../../Zotlabs/Module/Directory.php:106 +#: ../../Zotlabs/Module/Directory.php:110 msgid "No default suggestions were found." msgstr "No se encontraron sugerencias por defecto." -#: ../../Zotlabs/Module/Directory.php:255 +#: ../../Zotlabs/Module/Directory.php:259 #, php-format msgid "%d rating" msgid_plural "%d ratings" msgstr[0] "%d valoración" msgstr[1] "%d valoraciones" -#: ../../Zotlabs/Module/Directory.php:266 +#: ../../Zotlabs/Module/Directory.php:270 msgid "Gender: " msgstr "Género:" -#: ../../Zotlabs/Module/Directory.php:268 +#: ../../Zotlabs/Module/Directory.php:272 msgid "Status: " msgstr "Estado:" -#: ../../Zotlabs/Module/Directory.php:270 +#: ../../Zotlabs/Module/Directory.php:274 msgid "Homepage: " msgstr "Página personal:" -#: ../../Zotlabs/Module/Directory.php:319 ../../include/channel.php:1564 +#: ../../Zotlabs/Module/Directory.php:323 ../../include/channel.php:1571 msgid "Age:" msgstr "Edad:" -#: ../../Zotlabs/Module/Directory.php:324 ../../include/channel.php:1391 +#: ../../Zotlabs/Module/Directory.php:328 ../../include/channel.php:1398 #: ../../include/event.php:54 ../../include/event.php:86 msgid "Location:" msgstr "Ubicación:" -#: ../../Zotlabs/Module/Directory.php:330 +#: ../../Zotlabs/Module/Directory.php:334 msgid "Description:" msgstr "Descripción:" -#: ../../Zotlabs/Module/Directory.php:335 ../../include/channel.php:1593 +#: ../../Zotlabs/Module/Directory.php:339 ../../include/channel.php:1600 msgid "Hometown:" msgstr "Lugar de nacimiento:" -#: ../../Zotlabs/Module/Directory.php:337 ../../include/channel.php:1599 +#: ../../Zotlabs/Module/Directory.php:341 ../../include/channel.php:1606 msgid "About:" msgstr "Sobre mí:" -#: ../../Zotlabs/Module/Directory.php:338 ../../Zotlabs/Module/Suggest.php:56 +#: ../../Zotlabs/Module/Directory.php:342 ../../Zotlabs/Module/Suggest.php:71 #: ../../Zotlabs/Widget/Follow.php:32 ../../Zotlabs/Widget/Suggestions.php:44 -#: ../../include/conversation.php:1052 ../../include/channel.php:1376 +#: ../../include/conversation.php:1058 ../../include/channel.php:1383 #: ../../include/connections.php:110 msgid "Connect" msgstr "Conectar" -#: ../../Zotlabs/Module/Directory.php:339 +#: ../../Zotlabs/Module/Directory.php:343 msgid "Public Forum:" msgstr "Foro público:" -#: ../../Zotlabs/Module/Directory.php:342 +#: ../../Zotlabs/Module/Directory.php:346 msgid "Keywords: " msgstr "Palabras clave:" -#: ../../Zotlabs/Module/Directory.php:345 +#: ../../Zotlabs/Module/Directory.php:349 msgid "Don't suggest" msgstr "No sugerir:" -#: ../../Zotlabs/Module/Directory.php:347 +#: ../../Zotlabs/Module/Directory.php:351 msgid "Common connections (estimated):" msgstr "Conexiones comunes (estimadas): " -#: ../../Zotlabs/Module/Directory.php:396 +#: ../../Zotlabs/Module/Directory.php:400 msgid "Global Directory" msgstr "Directorio global:" -#: ../../Zotlabs/Module/Directory.php:396 +#: ../../Zotlabs/Module/Directory.php:400 msgid "Local Directory" msgstr "Directorio local:" -#: ../../Zotlabs/Module/Directory.php:402 +#: ../../Zotlabs/Module/Directory.php:406 msgid "Finding:" msgstr "Encontrar:" -#: ../../Zotlabs/Module/Directory.php:405 ../../Zotlabs/Module/Suggest.php:64 +#: ../../Zotlabs/Module/Directory.php:409 ../../Zotlabs/Module/Suggest.php:79 #: ../../include/contact_widgets.php:24 msgid "Channel Suggestions" msgstr "Sugerencias de canales" -#: ../../Zotlabs/Module/Directory.php:407 +#: ../../Zotlabs/Module/Directory.php:411 msgid "next page" msgstr "siguiente página" -#: ../../Zotlabs/Module/Directory.php:407 +#: ../../Zotlabs/Module/Directory.php:411 msgid "previous page" msgstr "página anterior" -#: ../../Zotlabs/Module/Directory.php:408 +#: ../../Zotlabs/Module/Directory.php:412 msgid "Sort options" msgstr "Ordenar opciones" -#: ../../Zotlabs/Module/Directory.php:409 +#: ../../Zotlabs/Module/Directory.php:413 msgid "Alphabetic" msgstr "Alfabético" -#: ../../Zotlabs/Module/Directory.php:410 +#: ../../Zotlabs/Module/Directory.php:414 msgid "Reverse Alphabetic" msgstr "Alfabético inverso" -#: ../../Zotlabs/Module/Directory.php:411 +#: ../../Zotlabs/Module/Directory.php:415 msgid "Newest to Oldest" msgstr "De más nuevo a más antiguo" -#: ../../Zotlabs/Module/Directory.php:412 +#: ../../Zotlabs/Module/Directory.php:416 msgid "Oldest to Newest" msgstr "De más antiguo a más nuevo" -#: ../../Zotlabs/Module/Directory.php:429 +#: ../../Zotlabs/Module/Directory.php:433 msgid "No entries (some entries may be hidden)." msgstr "Sin entradas (algunas entradas pueden estar ocultas)." @@ -7018,13 +7328,23 @@ msgstr "Búsqueda de canales" msgid "Lookup xchan beginning with (or webbie): " msgstr "Buscar un canal (o un \"webbie\") que comience por:" -#: ../../Zotlabs/Module/Suggest.php:39 +#: ../../Zotlabs/Module/Suggest.php:40 +msgid "Suggest Channels App" +msgstr "App de Sugerir canales" + +#: ../../Zotlabs/Module/Suggest.php:41 +msgid "" +"Suggestions for channels in the $Projectname network you might be interested" +" in" +msgstr "Sugerencias de los canales de la red $Projectname en los que puede estar interesado" + +#: ../../Zotlabs/Module/Suggest.php:54 msgid "" "No suggestions available. If this is a new site, please try again in 24 " "hours." msgstr "No hay sugerencias disponibles. Si es un sitio nuevo, espere 24 horas y pruebe de nuevo." -#: ../../Zotlabs/Module/Suggest.php:58 ../../Zotlabs/Widget/Suggestions.php:46 +#: ../../Zotlabs/Module/Suggest.php:73 ../../Zotlabs/Widget/Suggestions.php:46 msgid "Ignore/Hide" msgstr "Ignorar/Ocultar" @@ -7089,7 +7409,6 @@ msgid "Subject:" msgstr "Asunto:" #: ../../Zotlabs/Module/Mail.php:287 ../../Zotlabs/Module/Mail.php:429 -#: ../../include/conversation.php:1385 msgid "Attach file" msgstr "Adjuntar fichero" @@ -7098,7 +7417,7 @@ msgid "Send" msgstr "Enviar" #: ../../Zotlabs/Module/Mail.php:292 ../../Zotlabs/Module/Mail.php:434 -#: ../../include/conversation.php:1430 +#: ../../addon/hsse/hsse.php:250 ../../include/conversation.php:1453 msgid "Set expiration date" msgstr "Configurar fecha de caducidad" @@ -7174,19 +7493,19 @@ msgstr "Software" msgid "Rate" msgstr "Valorar" -#: ../../Zotlabs/Module/Impel.php:43 ../../include/bbcode.php:267 +#: ../../Zotlabs/Module/Impel.php:43 ../../include/bbcode.php:269 msgid "webpage" msgstr "página web" -#: ../../Zotlabs/Module/Impel.php:48 ../../include/bbcode.php:273 +#: ../../Zotlabs/Module/Impel.php:48 ../../include/bbcode.php:275 msgid "block" msgstr "bloque" -#: ../../Zotlabs/Module/Impel.php:53 ../../include/bbcode.php:270 +#: ../../Zotlabs/Module/Impel.php:53 ../../include/bbcode.php:272 msgid "layout" msgstr "plantilla" -#: ../../Zotlabs/Module/Impel.php:60 ../../include/bbcode.php:276 +#: ../../Zotlabs/Module/Impel.php:60 ../../include/bbcode.php:278 msgid "menu" msgstr "menú" @@ -7224,14 +7543,17 @@ msgstr "Escriba un nombre de carpeta" msgid "or select an existing folder (doubleclick)" msgstr "o seleccione una (con un doble click)" -#: ../../Zotlabs/Module/Filer.php:54 ../../Zotlabs/Lib/ThreadItem.php:151 +#: ../../Zotlabs/Module/Filer.php:54 ../../Zotlabs/Lib/ThreadItem.php:164 msgid "Save to Folder" msgstr "Guardar en carpeta" -#: ../../Zotlabs/Module/Probe.php:30 ../../Zotlabs/Module/Probe.php:34 -#, php-format -msgid "Fetching URL returns error: %1$s" -msgstr "Al intentar obtener la dirección, retorna el error: %1$s" +#: ../../Zotlabs/Module/Probe.php:18 +msgid "Remote Diagnostics App" +msgstr "App de Diagnósticos remotos" + +#: ../../Zotlabs/Module/Probe.php:19 +msgid "Perform diagnostics on remote channels" +msgstr "Realizar diagnósticos en canales remotos" #: ../../Zotlabs/Module/Register.php:49 msgid "Maximum daily site registrations exceeded. Please try again tomorrow." @@ -7272,98 +7594,123 @@ msgstr "El registro está deshabilitado en este sitio." msgid "Registration on this hub is by approval only." msgstr "El registro en este hub está sometido a aprobación previa." -#: ../../Zotlabs/Module/Register.php:202 +#: ../../Zotlabs/Module/Register.php:202 ../../Zotlabs/Module/Register.php:211 msgid "Register at another affiliated hub." msgstr "Registrarse en otro hub afiliado." -#: ../../Zotlabs/Module/Register.php:212 +#: ../../Zotlabs/Module/Register.php:210 +msgid "Registration on this hub is by invitation only." +msgstr "La inscripción en este hub es sólo posible por invitación." + +#: ../../Zotlabs/Module/Register.php:221 msgid "" "This site has exceeded the number of allowed daily account registrations. " "Please try again tomorrow." msgstr "Este sitio ha excedido el límite de inscripción diaria de cuentas. Por favor, inténtelo de nuevo mañana." -#: ../../Zotlabs/Module/Register.php:238 +#: ../../Zotlabs/Module/Register.php:242 #, php-format msgid "I accept the %s for this website" msgstr "Acepto los %s de este sitio" -#: ../../Zotlabs/Module/Register.php:245 +#: ../../Zotlabs/Module/Register.php:249 #, php-format msgid "I am over %s years of age and accept the %s for this website" msgstr "Tengo más de %s años de edad y acepto los %s de este sitio web" -#: ../../Zotlabs/Module/Register.php:250 +#: ../../Zotlabs/Module/Register.php:254 msgid "Your email address" msgstr "Su dirección de correo electrónico" -#: ../../Zotlabs/Module/Register.php:251 +#: ../../Zotlabs/Module/Register.php:255 msgid "Choose a password" msgstr "Elija una contraseña" -#: ../../Zotlabs/Module/Register.php:252 +#: ../../Zotlabs/Module/Register.php:256 msgid "Please re-enter your password" msgstr "Por favor, vuelva a escribir su contraseña" -#: ../../Zotlabs/Module/Register.php:253 +#: ../../Zotlabs/Module/Register.php:257 msgid "Please enter your invitation code" msgstr "Por favor, introduzca el código de su invitación" #: ../../Zotlabs/Module/Register.php:258 +msgid "Your Name" +msgstr "Su nombre" + +#: ../../Zotlabs/Module/Register.php:258 +msgid "Real names are preferred." +msgstr "Se prefieren los nombres reales" + +#: ../../Zotlabs/Module/Register.php:260 +#, php-format +msgid "" +"Your nickname will be used to create an easy to remember channel address " +"e.g. nickname%s" +msgstr "Su alias se usará para crear una dirección de canal fácil de recordar, p. ej.: alias%s" + +#: ../../Zotlabs/Module/Register.php:261 +msgid "" +"Select a channel permission role for your usage needs and privacy " +"requirements." +msgstr "Seleccione unos permisos de rol del canal compatibles con sus necesidades de uso y requisitos de privacidad." + +#: ../../Zotlabs/Module/Register.php:262 msgid "no" msgstr "no" -#: ../../Zotlabs/Module/Register.php:258 +#: ../../Zotlabs/Module/Register.php:262 msgid "yes" msgstr "sí" -#: ../../Zotlabs/Module/Register.php:274 -msgid "Membership on this site is by invitation only." -msgstr "Para registrarse en este sitio es necesaria una invitación." - -#: ../../Zotlabs/Module/Register.php:286 ../../boot.php:1570 -#: ../../include/nav.php:164 +#: ../../Zotlabs/Module/Register.php:289 ../../boot.php:1605 +#: ../../include/nav.php:156 msgid "Register" msgstr "Registrarse" -#: ../../Zotlabs/Module/Register.php:287 +#: ../../Zotlabs/Module/Register.php:290 msgid "" "This site requires email verification. After completing this form, please " "check your email for further instructions." msgstr "Este sitio requiere verificación por correo electrónico. Después de completar este formulario, por favor revise su correo electrónico para más instrucciones." -#: ../../Zotlabs/Module/Cover_photo.php:136 -#: ../../Zotlabs/Module/Cover_photo.php:186 +#: ../../Zotlabs/Module/Cover_photo.php:168 +#: ../../Zotlabs/Module/Cover_photo.php:218 msgid "Cover Photos" msgstr "Imágenes de portada del perfil" -#: ../../Zotlabs/Module/Cover_photo.php:237 ../../include/items.php:4558 +#: ../../Zotlabs/Module/Cover_photo.php:269 ../../include/items.php:4544 msgid "female" msgstr "mujer" -#: ../../Zotlabs/Module/Cover_photo.php:238 ../../include/items.php:4559 +#: ../../Zotlabs/Module/Cover_photo.php:270 ../../include/items.php:4545 #, php-format msgid "%1$s updated her %2$s" msgstr "%1$s ha actualizado su %2$s" -#: ../../Zotlabs/Module/Cover_photo.php:239 ../../include/items.php:4560 +#: ../../Zotlabs/Module/Cover_photo.php:271 ../../include/items.php:4546 msgid "male" msgstr "hombre" -#: ../../Zotlabs/Module/Cover_photo.php:240 ../../include/items.php:4561 +#: ../../Zotlabs/Module/Cover_photo.php:272 ../../include/items.php:4547 #, php-format msgid "%1$s updated his %2$s" msgstr "%1$s ha actualizado su %2$s" -#: ../../Zotlabs/Module/Cover_photo.php:242 ../../include/items.php:4563 +#: ../../Zotlabs/Module/Cover_photo.php:274 ../../include/items.php:4549 #, php-format msgid "%1$s updated their %2$s" msgstr "%1$s ha actualizado su %2$s" -#: ../../Zotlabs/Module/Cover_photo.php:244 ../../include/channel.php:2070 +#: ../../Zotlabs/Module/Cover_photo.php:276 ../../include/channel.php:2088 msgid "cover photo" msgstr "Imagen de portada del perfil" -#: ../../Zotlabs/Module/Cover_photo.php:361 +#: ../../Zotlabs/Module/Cover_photo.php:390 +msgid "Your cover photo may be visible to anybody on the internet" +msgstr "La foto de la portada puede ser visible para cualquiera en Internet" + +#: ../../Zotlabs/Module/Cover_photo.php:394 msgid "Change Cover Photo" msgstr "Cambiar la foto de portada del perfil" @@ -7371,8 +7718,7 @@ msgstr "Cambiar la foto de portada del perfil" msgid "Documentation Search" msgstr "Búsqueda de Documentación" -#: ../../Zotlabs/Module/Help.php:80 ../../include/conversation.php:1824 -#: ../../include/nav.php:391 +#: ../../Zotlabs/Module/Help.php:80 ../../include/nav.php:399 msgid "About" msgstr "Mi perfil" @@ -7416,48 +7762,36 @@ msgstr "Eliminar etiqueta del elemento." msgid "Select a tag to remove: " msgstr "Seleccionar una etiqueta para eliminar:" -#: ../../Zotlabs/Module/Network.php:100 +#: ../../Zotlabs/Module/Network.php:107 msgid "No such group" msgstr "No se encuentra el grupo" -#: ../../Zotlabs/Module/Network.php:142 +#: ../../Zotlabs/Module/Network.php:148 msgid "No such channel" msgstr "No se encuentra el canal" -#: ../../Zotlabs/Module/Network.php:147 -msgid "forum" -msgstr "foro" - -#: ../../Zotlabs/Module/Network.php:159 -msgid "Search Results For:" -msgstr "Buscar resultados para:" - -#: ../../Zotlabs/Module/Network.php:229 +#: ../../Zotlabs/Module/Network.php:231 msgid "Privacy group is empty" msgstr "El grupo de canales está vacío" -#: ../../Zotlabs/Module/Network.php:238 +#: ../../Zotlabs/Module/Network.php:242 msgid "Privacy group: " msgstr "Grupo de canales: " -#: ../../Zotlabs/Module/Network.php:265 -msgid "Invalid connection." -msgstr "Conexión no válida." - -#: ../../Zotlabs/Module/Network.php:285 ../../addon/redred/redred.php:65 +#: ../../Zotlabs/Module/Network.php:291 ../../addon/redred/redred.php:65 msgid "Invalid channel." msgstr "El canal no es válido." -#: ../../Zotlabs/Module/Acl.php:361 +#: ../../Zotlabs/Module/Acl.php:359 msgid "network" msgstr "red" -#: ../../Zotlabs/Module/Home.php:74 ../../Zotlabs/Module/Home.php:82 +#: ../../Zotlabs/Module/Home.php:72 ../../Zotlabs/Module/Home.php:80 #: ../../Zotlabs/Lib/Enotify.php:66 ../../addon/opensearch/opensearch.php:42 msgid "$Projectname" msgstr "$Projectname" -#: ../../Zotlabs/Module/Home.php:92 +#: ../../Zotlabs/Module/Home.php:90 #, php-format msgid "Welcome to %s" msgstr "Bienvenido a %s" @@ -7466,44 +7800,44 @@ msgstr "Bienvenido a %s" msgid "Permission Denied." msgstr "Permiso denegado" -#: ../../Zotlabs/Module/Filestorage.php:95 +#: ../../Zotlabs/Module/Filestorage.php:112 msgid "File not found." msgstr "Fichero no encontrado." -#: ../../Zotlabs/Module/Filestorage.php:142 +#: ../../Zotlabs/Module/Filestorage.php:165 msgid "Edit file permissions" msgstr "Modificar los permisos del fichero" -#: ../../Zotlabs/Module/Filestorage.php:154 +#: ../../Zotlabs/Module/Filestorage.php:177 msgid "Set/edit permissions" msgstr "Establecer/editar los permisos" -#: ../../Zotlabs/Module/Filestorage.php:155 +#: ../../Zotlabs/Module/Filestorage.php:178 msgid "Include all files and sub folders" msgstr "Incluir todos los ficheros y subcarpetas" -#: ../../Zotlabs/Module/Filestorage.php:156 +#: ../../Zotlabs/Module/Filestorage.php:179 msgid "Return to file list" msgstr "Volver a la lista de ficheros" -#: ../../Zotlabs/Module/Filestorage.php:158 +#: ../../Zotlabs/Module/Filestorage.php:181 msgid "Copy/paste this code to attach file to a post" msgstr "Copiar/pegar este código para adjuntar el fichero al envío" -#: ../../Zotlabs/Module/Filestorage.php:159 +#: ../../Zotlabs/Module/Filestorage.php:182 msgid "Copy/paste this URL to link file from a web page" msgstr "Copiar/pegar esta dirección para enlazar el fichero desde una página web" -#: ../../Zotlabs/Module/Filestorage.php:161 +#: ../../Zotlabs/Module/Filestorage.php:184 msgid "Share this file" msgstr "Compartir este fichero" -#: ../../Zotlabs/Module/Filestorage.php:162 +#: ../../Zotlabs/Module/Filestorage.php:185 msgid "Show URL to this file" msgstr "Mostrar la dirección de este fichero" -#: ../../Zotlabs/Module/Filestorage.php:163 -#: ../../Zotlabs/Storage/Browser.php:397 +#: ../../Zotlabs/Module/Filestorage.php:186 +#: ../../Zotlabs/Storage/Browser.php:405 msgid "Show in your contacts shared folder" msgstr "Mostrar en la carpeta compartida con sus contactos" @@ -7552,47 +7886,47 @@ msgstr "Cuentas caducadas" msgid "Expiring accounts" msgstr "Cuentas que caducan" -#: ../../Zotlabs/Module/Admin.php:112 +#: ../../Zotlabs/Module/Admin.php:116 msgid "Clones" msgstr "Clones" -#: ../../Zotlabs/Module/Admin.php:118 +#: ../../Zotlabs/Module/Admin.php:122 msgid "Message queues" msgstr "Mensajes en cola" -#: ../../Zotlabs/Module/Admin.php:132 +#: ../../Zotlabs/Module/Admin.php:136 msgid "Your software should be updated" msgstr "Debe actualizar su software" -#: ../../Zotlabs/Module/Admin.php:137 +#: ../../Zotlabs/Module/Admin.php:141 msgid "Summary" msgstr "Sumario" -#: ../../Zotlabs/Module/Admin.php:140 +#: ../../Zotlabs/Module/Admin.php:144 msgid "Registered accounts" msgstr "Cuentas registradas" -#: ../../Zotlabs/Module/Admin.php:141 +#: ../../Zotlabs/Module/Admin.php:145 msgid "Pending registrations" msgstr "Registros pendientes" -#: ../../Zotlabs/Module/Admin.php:142 +#: ../../Zotlabs/Module/Admin.php:146 msgid "Registered channels" msgstr "Canales registrados" -#: ../../Zotlabs/Module/Admin.php:143 -msgid "Active plugins" -msgstr "Extensiones (plugins) activas" +#: ../../Zotlabs/Module/Admin.php:147 +msgid "Active addons" +msgstr "Addons acivos" -#: ../../Zotlabs/Module/Admin.php:144 +#: ../../Zotlabs/Module/Admin.php:148 msgid "Version" msgstr "Versión" -#: ../../Zotlabs/Module/Admin.php:145 +#: ../../Zotlabs/Module/Admin.php:149 msgid "Repository version (master)" msgstr "Versión del repositorio (master)" -#: ../../Zotlabs/Module/Admin.php:146 +#: ../../Zotlabs/Module/Admin.php:150 msgid "Repository version (dev)" msgstr "Versión del repositorio (dev)" @@ -7645,7 +7979,7 @@ msgid "" "Password reset failed." msgstr "La solicitud no ha podido ser verificada. (Puede que la haya enviado con anterioridad) El restablecimiento de la contraseña ha fallado." -#: ../../Zotlabs/Module/Lostpass.php:91 ../../boot.php:1598 +#: ../../Zotlabs/Module/Lostpass.php:91 ../../boot.php:1634 msgid "Password Reset" msgstr "Restablecer la contraseña" @@ -7690,11 +8024,51 @@ msgstr "Introduzca y envíe su dirección de correo electrónico para el restabl msgid "Email Address" msgstr "Dirección de correo electrónico" -#: ../../Zotlabs/Module/Notifications.php:62 -#: ../../Zotlabs/Lib/ThreadItem.php:408 +#: ../../Zotlabs/Module/Oauth.php:45 +msgid "Name is required" +msgstr "El nombre es obligatorio" + +#: ../../Zotlabs/Module/Oauth.php:49 +msgid "Key and Secret are required" +msgstr "\"Key\" y \"Secret\" son obligatorios" + +#: ../../Zotlabs/Module/Oauth.php:100 +msgid "OAuth Apps Manager App" +msgstr "App de Gestión de apps OAuth" + +#: ../../Zotlabs/Module/Oauth.php:101 +msgid "OAuth authentication tokens for mobile and remote apps" +msgstr "Tokens de autenticación de OAuth para aplicaciones móviles y remotas" + +#: ../../Zotlabs/Module/Oauth.php:114 ../../Zotlabs/Module/Oauth.php:140 +#: ../../addon/statusnet/statusnet.php:894 ../../addon/twitter/twitter.php:784 +msgid "Consumer Key" +msgstr "Consumer Key" + +#: ../../Zotlabs/Module/Oauth.php:117 ../../Zotlabs/Module/Oauth.php:143 +msgid "Icon url" +msgstr "Dirección del icono" + +#: ../../Zotlabs/Module/Oauth.php:128 +msgid "Application not found." +msgstr "Aplicación no encontrada." + +#: ../../Zotlabs/Module/Oauth.php:171 +msgid "Connected OAuth Apps" +msgstr "Apps OAuth conectadas" + +#: ../../Zotlabs/Module/Notifications.php:60 +#: ../../Zotlabs/Lib/ThreadItem.php:422 msgid "Mark all seen" msgstr "Marcar todo como visto" +#: ../../Zotlabs/Lib/Activity.php:1417 ../../Zotlabs/Lib/Activity.php:1614 +#: ../../widget/Netselect/Netselect.php:42 ../../addon/pubcrawl/as.php:1222 +#: ../../addon/pubcrawl/as.php:1377 ../../addon/pubcrawl/as.php:1556 +#: ../../include/network.php:1768 +msgid "ActivityPub" +msgstr "ActivityPub" + #: ../../Zotlabs/Lib/Techlevels.php:10 msgid "0. Beginner/Basic" msgstr "0. Principiante/Básico" @@ -7719,124 +8093,179 @@ msgstr "4. Experto - Puedo escribir código informático" msgid "5. Wizard - I probably know more than you do" msgstr "5. Colaborador - probablemente sé más que tú" -#: ../../Zotlabs/Lib/Apps.php:231 +#: ../../Zotlabs/Lib/Libzot.php:663 ../../include/zot.php:800 +msgid "Unable to verify channel signature" +msgstr "No ha sido posible de verificar la firma del canal" + +#: ../../Zotlabs/Lib/Apps.php:301 +msgid "Apps" +msgstr "Aplicaciones (apps)" + +#: ../../Zotlabs/Lib/Apps.php:304 msgid "Site Admin" msgstr "Administrador del sitio" -#: ../../Zotlabs/Lib/Apps.php:232 ../../addon/buglink/buglink.php:16 +#: ../../Zotlabs/Lib/Apps.php:305 ../../addon/buglink/buglink.php:16 msgid "Report Bug" msgstr "Informe de errores" -#: ../../Zotlabs/Lib/Apps.php:233 -msgid "View Bookmarks" -msgstr "Ver los marcadores" +#: ../../Zotlabs/Lib/Apps.php:306 ../../include/nav.php:455 +msgid "Bookmarks" +msgstr "Marcadores" -#: ../../Zotlabs/Lib/Apps.php:234 -msgid "My Chatrooms" -msgstr "Mis salas de chat" +#: ../../Zotlabs/Lib/Apps.php:307 ../../Zotlabs/Widget/Chatroom_list.php:16 +#: ../../include/nav.php:442 ../../include/nav.php:445 +msgid "Chatrooms" +msgstr "Salas de chat" -#: ../../Zotlabs/Lib/Apps.php:236 -msgid "Firefox Share" -msgstr "Servicio de compartición de Firefox" - -#: ../../Zotlabs/Lib/Apps.php:237 +#: ../../Zotlabs/Lib/Apps.php:309 msgid "Remote Diagnostics" msgstr "Diagnóstico remoto" -#: ../../Zotlabs/Lib/Apps.php:238 ../../include/features.php:417 +#: ../../Zotlabs/Lib/Apps.php:310 ../../include/features.php:373 msgid "Suggest Channels" msgstr "Sugerir canales" -#: ../../Zotlabs/Lib/Apps.php:239 ../../boot.php:1589 -#: ../../include/nav.php:126 ../../include/nav.php:130 +#: ../../Zotlabs/Lib/Apps.php:311 ../../boot.php:1625 +#: ../../include/nav.php:118 ../../include/nav.php:122 msgid "Login" msgstr "Iniciar sesión" -#: ../../Zotlabs/Lib/Apps.php:241 -msgid "Activity" -msgstr "Actividad" +#: ../../Zotlabs/Lib/Apps.php:313 +msgid "Stream" +msgstr "Stream" -#: ../../Zotlabs/Lib/Apps.php:245 ../../include/conversation.php:1931 -#: ../../include/features.php:96 ../../include/nav.php:497 +#: ../../Zotlabs/Lib/Apps.php:317 ../../include/nav.php:504 msgid "Wiki" msgstr "Wiki" -#: ../../Zotlabs/Lib/Apps.php:246 +#: ../../Zotlabs/Lib/Apps.php:318 ../../include/features.php:96 msgid "Channel Home" msgstr "Mi canal" -#: ../../Zotlabs/Lib/Apps.php:249 ../../include/conversation.php:1853 -#: ../../include/conversation.php:1856 +#: ../../Zotlabs/Lib/Apps.php:321 ../../include/features.php:269 msgid "Events" msgstr "Eventos" -#: ../../Zotlabs/Lib/Apps.php:250 +#: ../../Zotlabs/Lib/Apps.php:322 ../../include/features.php:176 msgid "Directory" msgstr "Directorio" -#: ../../Zotlabs/Lib/Apps.php:252 +#: ../../Zotlabs/Lib/Apps.php:324 msgid "Mail" msgstr "Correo" -#: ../../Zotlabs/Lib/Apps.php:255 +#: ../../Zotlabs/Lib/Apps.php:327 msgid "Chat" msgstr "Chat" -#: ../../Zotlabs/Lib/Apps.php:257 +#: ../../Zotlabs/Lib/Apps.php:329 msgid "Probe" msgstr "Probar" -#: ../../Zotlabs/Lib/Apps.php:258 +#: ../../Zotlabs/Lib/Apps.php:330 msgid "Suggest" msgstr "Sugerir" -#: ../../Zotlabs/Lib/Apps.php:259 +#: ../../Zotlabs/Lib/Apps.php:331 msgid "Random Channel" msgstr "Canal aleatorio" -#: ../../Zotlabs/Lib/Apps.php:260 +#: ../../Zotlabs/Lib/Apps.php:332 msgid "Invite" msgstr "Invitar" -#: ../../Zotlabs/Lib/Apps.php:261 ../../Zotlabs/Widget/Admin.php:26 +#: ../../Zotlabs/Lib/Apps.php:333 ../../Zotlabs/Widget/Admin.php:26 msgid "Features" msgstr "Funcionalidades" -#: ../../Zotlabs/Lib/Apps.php:262 ../../addon/openid/MysqlProvider.php:69 +#: ../../Zotlabs/Lib/Apps.php:334 ../../addon/openid/MysqlProvider.php:69 msgid "Language" msgstr "Idioma" -#: ../../Zotlabs/Lib/Apps.php:263 +#: ../../Zotlabs/Lib/Apps.php:335 msgid "Post" msgstr "Publicación" -#: ../../Zotlabs/Lib/Apps.php:264 ../../addon/openid/MysqlProvider.php:58 +#: ../../Zotlabs/Lib/Apps.php:336 ../../addon/openid/MysqlProvider.php:58 #: ../../addon/openid/MysqlProvider.php:59 #: ../../addon/openid/MysqlProvider.php:60 msgid "Profile Photo" msgstr "Foto del perfil" -#: ../../Zotlabs/Lib/Apps.php:407 +#: ../../Zotlabs/Lib/Apps.php:338 ../../include/features.php:405 +msgid "Profiles" +msgstr "Perfiles" + +#: ../../Zotlabs/Lib/Apps.php:340 +msgid "Notifications" +msgstr "Notificaciones" + +#: ../../Zotlabs/Lib/Apps.php:341 +msgid "Order Apps" +msgstr "Ordenar las apps" + +#: ../../Zotlabs/Lib/Apps.php:342 ../../include/features.php:82 +msgid "CalDAV" +msgstr "CalDAV" + +#: ../../Zotlabs/Lib/Apps.php:343 +msgid "CardDAV" +msgstr "CardDAV" + +#: ../../Zotlabs/Lib/Apps.php:345 +msgid "Guest Access" +msgstr "Acceso para invitados" + +#: ../../Zotlabs/Lib/Apps.php:346 ../../Zotlabs/Widget/Notes.php:21 +msgid "Notes" +msgstr "Notas" + +#: ../../Zotlabs/Lib/Apps.php:347 +msgid "OAuth Apps Manager" +msgstr "Administrador de apps OAuth" + +#: ../../Zotlabs/Lib/Apps.php:348 +msgid "OAuth2 Apps Manager" +msgstr "Administrador de apps OAuth2" + +#: ../../Zotlabs/Lib/Apps.php:349 +msgid "PDL Editor" +msgstr "Editor PDL" + +#: ../../Zotlabs/Lib/Apps.php:351 +msgid "Premium Channel" +msgstr "Canal premium" + +#: ../../Zotlabs/Lib/Apps.php:353 +msgid "My Chatrooms" +msgstr "Mis salas de chat" + +#: ../../Zotlabs/Lib/Apps.php:354 +msgid "Channel Export" +msgstr "Exportar canal" + +#: ../../Zotlabs/Lib/Apps.php:531 msgid "Purchase" msgstr "Comprar" -#: ../../Zotlabs/Lib/Apps.php:411 +#: ../../Zotlabs/Lib/Apps.php:536 msgid "Undelete" msgstr "Recuperar" -#: ../../Zotlabs/Lib/Apps.php:419 +#: ../../Zotlabs/Lib/Apps.php:545 msgid "Add to app-tray" msgstr "Añadir a la bandeja de aplicaciones" -#: ../../Zotlabs/Lib/Apps.php:420 +#: ../../Zotlabs/Lib/Apps.php:546 msgid "Remove from app-tray" msgstr "Quitar de la bandeja de aplicaciones" -#: ../../Zotlabs/Lib/Apps.php:421 +#: ../../Zotlabs/Lib/Apps.php:547 msgid "Pin to navbar" msgstr "Fijar en la barra de navegación" -#: ../../Zotlabs/Lib/Apps.php:422 +#: ../../Zotlabs/Lib/Apps.php:548 msgid "Unpin from navbar" msgstr "Quitar de la barra de navegación" @@ -7923,8 +8352,18 @@ msgctxt "wiki_history" msgid "Message" msgstr "Mensaje" -#: ../../Zotlabs/Lib/NativeWikiPage.php:597 ../../include/bbcode.php:744 -#: ../../include/bbcode.php:914 +#: ../../Zotlabs/Lib/NativeWikiPage.php:560 +#: ../../Zotlabs/Widget/Wiki_page_history.php:24 +msgid "Date" +msgstr "Fecha" + +#: ../../Zotlabs/Lib/NativeWikiPage.php:562 +#: ../../Zotlabs/Widget/Wiki_page_history.php:26 +msgid "Compare" +msgstr "Comparar" + +#: ../../Zotlabs/Lib/NativeWikiPage.php:600 ../../include/bbcode.php:746 +#: ../../include/bbcode.php:916 msgid "Different viewers will see this text differently" msgstr "Visitantes diferentes verán este texto de forma distinta" @@ -7991,6 +8430,54 @@ msgstr "Este es su ajuste predeterminado para establecer quién puede ver su rep msgid "This is your default setting for the audience of your webpages" msgstr "Este es el ajuste predeterminado para establecer la audiencia de sus páginas web" +#: ../../Zotlabs/Lib/Libzotdir.php:160 ../../include/dir_fns.php:141 +msgid "Directory Options" +msgstr "Opciones del directorio" + +#: ../../Zotlabs/Lib/Libzotdir.php:162 ../../include/dir_fns.php:143 +msgid "Safe Mode" +msgstr "Modo seguro" + +#: ../../Zotlabs/Lib/Libzotdir.php:163 ../../include/dir_fns.php:144 +msgid "Public Forums Only" +msgstr "Solo foros públicos" + +#: ../../Zotlabs/Lib/Libzotdir.php:165 ../../include/dir_fns.php:145 +msgid "This Website Only" +msgstr "Solo este sitio web" + +#: ../../Zotlabs/Lib/Group.php:28 ../../include/group.php:22 +msgid "" +"A deleted group with this name was revived. Existing item permissions " +"may apply to this group and any future members. If this is " +"not what you intended, please create another group with a different name." +msgstr "Un grupo suprimido con este nombre ha sido restablecido. Es posible que los permisos existentes sean aplicados a este grupo y sus futuros miembros. Si no quiere esto, por favor cree otro grupo con un nombre diferente." + +#: ../../Zotlabs/Lib/Group.php:270 ../../include/group.php:264 +msgid "Add new connections to this privacy group" +msgstr "Añadir conexiones nuevas a este grupo de canales" + +#: ../../Zotlabs/Lib/Group.php:302 ../../include/group.php:298 +msgid "edit" +msgstr "editar" + +#: ../../Zotlabs/Lib/Group.php:325 ../../include/group.php:321 +msgid "Edit group" +msgstr "Editar grupo" + +#: ../../Zotlabs/Lib/Group.php:326 ../../include/group.php:322 +msgid "Add privacy group" +msgstr "Añadir un grupo de canales" + +#: ../../Zotlabs/Lib/Group.php:327 ../../include/group.php:323 +msgid "Channels not in any privacy group" +msgstr "Sin canales en ningún grupo" + +#: ../../Zotlabs/Lib/Group.php:329 ../../Zotlabs/Widget/Savedsearch.php:84 +#: ../../include/group.php:325 +msgid "add" +msgstr "añadir" + #: ../../Zotlabs/Lib/Chatroom.php:23 msgid "Missing room name" msgstr "Sala de chat sin nombre" @@ -8011,6 +8498,11 @@ msgstr "Sala no encontrada." msgid "Room is full" msgstr "La sala está llena." +#: ../../Zotlabs/Lib/Libsync.php:733 ../../include/zot.php:2571 +#, php-format +msgid "Unable to verify site signature for %s" +msgstr "No ha sido posible de verificar la firma del sitio para %s" + #: ../../Zotlabs/Lib/Enotify.php:60 msgid "$Projectname Notification" msgstr "Notificación de $Projectname" @@ -8297,208 +8789,210 @@ msgstr "Error de actualización en %s" msgid "Update %s failed. See error logs." msgstr "La actualización %s ha fallado. Mire el informe de errores." -#: ../../Zotlabs/Lib/ThreadItem.php:97 ../../include/conversation.php:697 +#: ../../Zotlabs/Lib/ThreadItem.php:99 ../../include/conversation.php:700 msgid "Private Message" msgstr "Mensaje Privado" -#: ../../Zotlabs/Lib/ThreadItem.php:147 ../../include/conversation.php:689 +#: ../../Zotlabs/Lib/ThreadItem.php:154 ../../Zotlabs/Storage/Browser.php:280 +msgid "Admin Delete" +msgstr "Eliminar admin" + +#: ../../Zotlabs/Lib/ThreadItem.php:160 ../../include/conversation.php:690 msgid "Select" msgstr "Seleccionar" -#: ../../Zotlabs/Lib/ThreadItem.php:172 +#: ../../Zotlabs/Lib/ThreadItem.php:185 msgid "I will attend" msgstr "Participaré" -#: ../../Zotlabs/Lib/ThreadItem.php:172 +#: ../../Zotlabs/Lib/ThreadItem.php:185 msgid "I will not attend" msgstr "No participaré" -#: ../../Zotlabs/Lib/ThreadItem.php:172 +#: ../../Zotlabs/Lib/ThreadItem.php:185 msgid "I might attend" msgstr "Quizá participe" -#: ../../Zotlabs/Lib/ThreadItem.php:182 +#: ../../Zotlabs/Lib/ThreadItem.php:195 msgid "I agree" msgstr "Estoy de acuerdo" -#: ../../Zotlabs/Lib/ThreadItem.php:182 +#: ../../Zotlabs/Lib/ThreadItem.php:195 msgid "I disagree" msgstr "No estoy de acuerdo" -#: ../../Zotlabs/Lib/ThreadItem.php:182 +#: ../../Zotlabs/Lib/ThreadItem.php:195 msgid "I abstain" msgstr "Me abstengo" -#: ../../Zotlabs/Lib/ThreadItem.php:238 -msgid "Add Star" -msgstr "Destacar añadiendo una estrella" - -#: ../../Zotlabs/Lib/ThreadItem.php:239 -msgid "Remove Star" -msgstr "Eliminar estrella" - -#: ../../Zotlabs/Lib/ThreadItem.php:240 +#: ../../Zotlabs/Lib/ThreadItem.php:249 ../../include/conversation.php:695 msgid "Toggle Star Status" msgstr "Activar o desactivar el estado de entrada preferida" -#: ../../Zotlabs/Lib/ThreadItem.php:244 -msgid "starred" -msgstr "preferidas" - -#: ../../Zotlabs/Lib/ThreadItem.php:254 ../../include/conversation.php:704 +#: ../../Zotlabs/Lib/ThreadItem.php:260 ../../include/conversation.php:707 msgid "Message signature validated" msgstr "Firma de mensaje validada" -#: ../../Zotlabs/Lib/ThreadItem.php:255 ../../include/conversation.php:705 +#: ../../Zotlabs/Lib/ThreadItem.php:261 ../../include/conversation.php:708 msgid "Message signature incorrect" msgstr "Firma de mensaje incorrecta" -#: ../../Zotlabs/Lib/ThreadItem.php:263 +#: ../../Zotlabs/Lib/ThreadItem.php:269 msgid "Add Tag" msgstr "Añadir etiqueta" -#: ../../Zotlabs/Lib/ThreadItem.php:281 ../../include/taxonomy.php:575 +#: ../../Zotlabs/Lib/ThreadItem.php:273 ../../include/conversation.php:891 +msgid "Conversation Tools" +msgstr "Herramientas de Conversation" + +#: ../../Zotlabs/Lib/ThreadItem.php:289 ../../include/taxonomy.php:575 msgid "like" msgstr "me gusta" -#: ../../Zotlabs/Lib/ThreadItem.php:282 ../../include/taxonomy.php:576 +#: ../../Zotlabs/Lib/ThreadItem.php:290 ../../include/taxonomy.php:576 msgid "dislike" msgstr "no me gusta" -#: ../../Zotlabs/Lib/ThreadItem.php:286 +#: ../../Zotlabs/Lib/ThreadItem.php:294 msgid "Share This" msgstr "Compartir esto" -#: ../../Zotlabs/Lib/ThreadItem.php:286 +#: ../../Zotlabs/Lib/ThreadItem.php:294 msgid "share" msgstr "compartir" -#: ../../Zotlabs/Lib/ThreadItem.php:295 +#: ../../Zotlabs/Lib/ThreadItem.php:303 msgid "Delivery Report" msgstr "Informe de transmisión" -#: ../../Zotlabs/Lib/ThreadItem.php:313 +#: ../../Zotlabs/Lib/ThreadItem.php:321 #, php-format msgid "%d comment" msgid_plural "%d comments" msgstr[0] "%d comentario" msgstr[1] "%d comentarios" -#: ../../Zotlabs/Lib/ThreadItem.php:343 ../../Zotlabs/Lib/ThreadItem.php:344 +#: ../../Zotlabs/Lib/ThreadItem.php:355 ../../Zotlabs/Lib/ThreadItem.php:356 #, php-format msgid "View %s's profile - %s" msgstr "Ver el perfil de %s - %s" -#: ../../Zotlabs/Lib/ThreadItem.php:347 +#: ../../Zotlabs/Lib/ThreadItem.php:359 msgid "to" msgstr "a" -#: ../../Zotlabs/Lib/ThreadItem.php:348 +#: ../../Zotlabs/Lib/ThreadItem.php:360 msgid "via" msgstr "mediante" -#: ../../Zotlabs/Lib/ThreadItem.php:349 +#: ../../Zotlabs/Lib/ThreadItem.php:361 msgid "Wall-to-Wall" msgstr "De página del perfil a página del perfil (de \"muro\" a \"muro\")" -#: ../../Zotlabs/Lib/ThreadItem.php:350 +#: ../../Zotlabs/Lib/ThreadItem.php:362 msgid "via Wall-To-Wall:" msgstr "Mediante el procedimiento página del perfil a página del perfil (de \"muro\" a \"muro\")" -#: ../../Zotlabs/Lib/ThreadItem.php:363 ../../include/conversation.php:763 +#: ../../Zotlabs/Lib/ThreadItem.php:375 ../../include/conversation.php:766 #, php-format msgid "from %s" msgstr "desde %s" -#: ../../Zotlabs/Lib/ThreadItem.php:366 ../../include/conversation.php:766 +#: ../../Zotlabs/Lib/ThreadItem.php:378 ../../include/conversation.php:769 #, php-format msgid "last edited: %s" msgstr "último cambio: %s" -#: ../../Zotlabs/Lib/ThreadItem.php:367 ../../include/conversation.php:767 +#: ../../Zotlabs/Lib/ThreadItem.php:379 ../../include/conversation.php:770 #, php-format msgid "Expires: %s" msgstr "Caduca: %s" -#: ../../Zotlabs/Lib/ThreadItem.php:374 +#: ../../Zotlabs/Lib/ThreadItem.php:387 msgid "Attend" msgstr "Participar o asistir" -#: ../../Zotlabs/Lib/ThreadItem.php:375 +#: ../../Zotlabs/Lib/ThreadItem.php:388 msgid "Attendance Options" msgstr "Opciones de participación o asistencia" -#: ../../Zotlabs/Lib/ThreadItem.php:376 +#: ../../Zotlabs/Lib/ThreadItem.php:389 msgid "Vote" msgstr "Votar" -#: ../../Zotlabs/Lib/ThreadItem.php:377 +#: ../../Zotlabs/Lib/ThreadItem.php:390 msgid "Voting Options" msgstr "Opciones de votación" -#: ../../Zotlabs/Lib/ThreadItem.php:398 +#: ../../Zotlabs/Lib/ThreadItem.php:411 #: ../../addon/bookmarker/bookmarker.php:38 msgid "Save Bookmarks" msgstr "Guardar en Marcadores" -#: ../../Zotlabs/Lib/ThreadItem.php:399 +#: ../../Zotlabs/Lib/ThreadItem.php:412 msgid "Add to Calendar" msgstr "Añadir al calendario" -#: ../../Zotlabs/Lib/ThreadItem.php:426 ../../include/conversation.php:483 +#: ../../Zotlabs/Lib/ThreadItem.php:440 ../../include/conversation.php:483 msgid "This is an unsaved preview" msgstr "Esta es una previsualización sin guardar" -#: ../../Zotlabs/Lib/ThreadItem.php:458 ../../include/js_strings.php:7 +#: ../../Zotlabs/Lib/ThreadItem.php:473 ../../include/js_strings.php:7 #, php-format msgid "%s show all" msgstr "%s mostrar todo" -#: ../../Zotlabs/Lib/ThreadItem.php:753 ../../include/conversation.php:1380 +#: ../../Zotlabs/Lib/ThreadItem.php:768 ../../addon/hsse/hsse.php:200 +#: ../../include/conversation.php:1403 msgid "Bold" msgstr "Negrita" -#: ../../Zotlabs/Lib/ThreadItem.php:754 ../../include/conversation.php:1381 +#: ../../Zotlabs/Lib/ThreadItem.php:769 ../../addon/hsse/hsse.php:201 +#: ../../include/conversation.php:1404 msgid "Italic" msgstr "Itálico " -#: ../../Zotlabs/Lib/ThreadItem.php:755 ../../include/conversation.php:1382 +#: ../../Zotlabs/Lib/ThreadItem.php:770 ../../addon/hsse/hsse.php:202 +#: ../../include/conversation.php:1405 msgid "Underline" msgstr "Subrayar" -#: ../../Zotlabs/Lib/ThreadItem.php:756 ../../include/conversation.php:1383 +#: ../../Zotlabs/Lib/ThreadItem.php:771 ../../addon/hsse/hsse.php:203 +#: ../../include/conversation.php:1406 msgid "Quote" msgstr "Citar" -#: ../../Zotlabs/Lib/ThreadItem.php:757 ../../include/conversation.php:1384 +#: ../../Zotlabs/Lib/ThreadItem.php:772 ../../addon/hsse/hsse.php:204 +#: ../../include/conversation.php:1407 msgid "Code" msgstr "Código" -#: ../../Zotlabs/Lib/ThreadItem.php:758 +#: ../../Zotlabs/Lib/ThreadItem.php:773 msgid "Image" msgstr "Imagen" -#: ../../Zotlabs/Lib/ThreadItem.php:759 -msgid "Attach File" -msgstr "Fichero adjunto" +#: ../../Zotlabs/Lib/ThreadItem.php:774 ../../addon/hsse/hsse.php:205 +#: ../../include/conversation.php:1408 +msgid "Attach/Upload file" +msgstr "Adjuntar/cargar fichero" -#: ../../Zotlabs/Lib/ThreadItem.php:760 +#: ../../Zotlabs/Lib/ThreadItem.php:775 msgid "Insert Link" msgstr "Insertar enlace" -#: ../../Zotlabs/Lib/ThreadItem.php:761 +#: ../../Zotlabs/Lib/ThreadItem.php:776 msgid "Video" msgstr "Vídeo" -#: ../../Zotlabs/Lib/ThreadItem.php:771 +#: ../../Zotlabs/Lib/ThreadItem.php:786 msgid "Your full name (required)" msgstr "Su nombre completo (requerido)" -#: ../../Zotlabs/Lib/ThreadItem.php:772 +#: ../../Zotlabs/Lib/ThreadItem.php:787 msgid "Your email address (required)" msgstr "Su dirección de correo electrónico (requerido)" -#: ../../Zotlabs/Lib/ThreadItem.php:773 +#: ../../Zotlabs/Lib/ThreadItem.php:788 msgid "Your website URL (optional)" msgstr "La URL de su sitio web (opcional)" @@ -8514,11 +9008,11 @@ msgstr "La autenticación desde su servidor está bloqueada. Ha iniciado sesión msgid "Welcome %s. Remote authentication successful." msgstr "Bienvenido %s. La identificación desde su servidor se ha llevado a cabo correctamente." -#: ../../Zotlabs/Storage/Browser.php:107 ../../Zotlabs/Storage/Browser.php:287 +#: ../../Zotlabs/Storage/Browser.php:107 ../../Zotlabs/Storage/Browser.php:289 msgid "parent" msgstr "padre" -#: ../../Zotlabs/Storage/Browser.php:131 ../../include/text.php:2845 +#: ../../Zotlabs/Storage/Browser.php:131 ../../include/text.php:2824 msgid "Collection" msgstr "Colección" @@ -8530,8 +9024,8 @@ msgstr "Principal" msgid "Addressbook" msgstr "Libreta de direcciones" -#: ../../Zotlabs/Storage/Browser.php:140 ../../include/nav.php:420 -#: ../../include/nav.php:423 +#: ../../Zotlabs/Storage/Browser.php:140 ../../include/nav.php:428 +#: ../../include/nav.php:431 msgid "Calendar" msgstr "Calendario" @@ -8555,33 +9049,36 @@ msgstr "Compartido" msgid "Add Files" msgstr "Añadir ficheros" -#: ../../Zotlabs/Storage/Browser.php:353 +#: ../../Zotlabs/Storage/Browser.php:361 #, php-format msgid "You are using %1$s of your available file storage." msgstr "Está usando %1$s de su espacio disponible para ficheros." -#: ../../Zotlabs/Storage/Browser.php:358 +#: ../../Zotlabs/Storage/Browser.php:366 #, php-format msgid "You are using %1$s of %2$s available file storage. (%3$s%)" msgstr "Está usando %1$s de %2$s que tiene a su disposición para ficheros. (%3$s%)" -#: ../../Zotlabs/Storage/Browser.php:369 +#: ../../Zotlabs/Storage/Browser.php:377 msgid "WARNING:" msgstr "ATENCIÓN: " -#: ../../Zotlabs/Storage/Browser.php:381 +#: ../../Zotlabs/Storage/Browser.php:389 msgid "Create new folder" msgstr "Crear nueva carpeta" -#: ../../Zotlabs/Storage/Browser.php:383 +#: ../../Zotlabs/Storage/Browser.php:391 msgid "Upload file" msgstr "Subir fichero" -#: ../../Zotlabs/Storage/Browser.php:396 +#: ../../Zotlabs/Storage/Browser.php:404 msgid "Drop files here to immediately upload" msgstr "Arrastre los ficheros aquí para subirlos de forma inmediata" #: ../../Zotlabs/Widget/Forums.php:100 +#: ../../Zotlabs/Widget/Activity_filter.php:102 +#: ../../Zotlabs/Widget/Notifications.php:119 +#: ../../Zotlabs/Widget/Notifications.php:120 msgid "Forums" msgstr "Foros" @@ -8661,7 +9158,7 @@ msgstr "Importar una agenda de direcciones" msgid "Select an addressbook to import to" msgstr "Seleccionar una agenda para importarla" -#: ../../Zotlabs/Widget/Appcategories.php:40 +#: ../../Zotlabs/Widget/Appcategories.php:43 #: ../../include/contact_widgets.php:97 ../../include/contact_widgets.php:141 #: ../../include/contact_widgets.php:186 ../../include/taxonomy.php:409 #: ../../include/taxonomy.php:491 ../../include/taxonomy.php:511 @@ -8669,7 +9166,8 @@ msgstr "Seleccionar una agenda para importarla" msgid "Categories" msgstr "Temas" -#: ../../Zotlabs/Widget/Appcategories.php:43 ../../Zotlabs/Widget/Filer.php:31 +#: ../../Zotlabs/Widget/Appcategories.php:46 ../../Zotlabs/Widget/Filer.php:31 +#: ../../widget/Netselect/Netselect.php:26 #: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:100 #: ../../include/contact_widgets.php:144 ../../include/contact_widgets.php:189 msgid "Everything" @@ -8719,12 +9217,6 @@ msgstr "Bandeja de salida" msgid "New Message" msgstr "Nuevo mensaje" -#: ../../Zotlabs/Widget/Chatroom_list.php:16 -#: ../../include/conversation.php:1867 ../../include/conversation.php:1870 -#: ../../include/nav.php:434 ../../include/nav.php:437 -msgid "Chatrooms" -msgstr "Salas de chat" - #: ../../Zotlabs/Widget/Chatroom_list.php:20 msgid "Overview" msgstr "Resumen" @@ -8746,6 +9238,74 @@ msgctxt "widget" msgid "Activity" msgstr "Actividad" +#: ../../Zotlabs/Widget/Activity_filter.php:26 +msgid "Personal Posts" +msgstr "Entradas personales" + +#: ../../Zotlabs/Widget/Activity_filter.php:30 +msgid "Show posts that mention or involve me" +msgstr "Mostrar entradas que me mencionen o involucren" + +#: ../../Zotlabs/Widget/Activity_filter.php:41 +msgid "Starred Posts" +msgstr "Entradas preferidas" + +#: ../../Zotlabs/Widget/Activity_filter.php:45 +msgid "Show posts that I have starred" +msgstr "Mostrar entradas que he señalado como preferidas" + +#: ../../Zotlabs/Widget/Activity_filter.php:65 +#, php-format +msgid "Show posts related to the %s privacy group" +msgstr "Mostrar entradas relacionadas con el grupo %s" + +#: ../../Zotlabs/Widget/Activity_filter.php:74 +msgid "Show my privacy groups" +msgstr "Mostrar mis grupos de canales" + +#: ../../Zotlabs/Widget/Activity_filter.php:95 +msgid "Show posts to this forum" +msgstr "Mostrar las entradas en este foro" + +#: ../../Zotlabs/Widget/Activity_filter.php:106 +msgid "Show forums" +msgstr "Mostrar los foros" + +#: ../../Zotlabs/Widget/Activity_filter.php:130 +#, php-format +msgid "Show posts that I have filed to %s" +msgstr "Mostrar las entradas que he enviado a %s" + +#: ../../Zotlabs/Widget/Activity_filter.php:136 +#: ../../Zotlabs/Widget/Filer.php:28 ../../include/contact_widgets.php:53 +#: ../../include/features.php:325 +msgid "Saved Folders" +msgstr "Carpetas guardadas" + +#: ../../Zotlabs/Widget/Activity_filter.php:140 +msgid "Show filed post categories" +msgstr "Mostrar los temas de las entradas archivadas" + +#: ../../Zotlabs/Widget/Activity_filter.php:154 +msgid "Panel search" +msgstr "Panel de búsqueda" + +#: ../../Zotlabs/Widget/Activity_filter.php:164 +#: ../../Zotlabs/Widget/Notifications.php:27 +#: ../../Zotlabs/Widget/Notifications.php:46 +#: ../../Zotlabs/Widget/Notifications.php:122 +#: ../../Zotlabs/Widget/Notifications.php:153 +msgid "Filter by name" +msgstr "Filtrar por nombre" + +#: ../../Zotlabs/Widget/Activity_filter.php:179 +msgid "Remove active filter" +msgstr "Eliminar el filtro activo" + +#: ../../Zotlabs/Widget/Activity_filter.php:195 +msgid "Stream Filters" +msgstr "Filtros del stream" + #: ../../Zotlabs/Widget/Follow.php:22 #, php-format msgid "You have %1$.0f of %2$.0f allowed connections." @@ -8763,10 +9323,6 @@ msgstr "Dirección del canal" msgid "Examples: bob@example.com, https://example.com/barbara" msgstr "Ejemplos: manuel@ejemplo.com, https://ejemplo.com/carmen" -#: ../../Zotlabs/Widget/Wiki_list.php:15 -msgid "Wiki List" -msgstr "Lista de wikis" - #: ../../Zotlabs/Widget/Archive.php:43 msgid "Archives" msgstr "Hemeroteca" @@ -8803,18 +9359,10 @@ msgstr "foto/imagen" msgid "Remove term" msgstr "Eliminar término" -#: ../../Zotlabs/Widget/Savedsearch.php:83 ../../include/features.php:381 +#: ../../Zotlabs/Widget/Savedsearch.php:83 ../../include/features.php:317 msgid "Saved Searches" msgstr "Búsquedas guardadas" -#: ../../Zotlabs/Widget/Savedsearch.php:84 ../../include/group.php:333 -msgid "add" -msgstr "añadir" - -#: ../../Zotlabs/Widget/Notes.php:16 -msgid "Notes" -msgstr "Notas" - #: ../../Zotlabs/Widget/Wiki_pages.php:32 #: ../../Zotlabs/Widget/Wiki_pages.php:89 msgid "Add new page" @@ -8844,12 +9392,35 @@ msgstr "Sugerencias" msgid "See more..." msgstr "Ver más..." -#: ../../Zotlabs/Widget/Filer.php:28 ../../include/contact_widgets.php:53 -#: ../../include/features.php:470 -msgid "Saved Folders" -msgstr "Carpetas guardadas" +#: ../../Zotlabs/Widget/Activity_order.php:90 +msgid "Commented Date" +msgstr "Fecha de los comentarios" -#: ../../Zotlabs/Widget/Cover_photo.php:54 +#: ../../Zotlabs/Widget/Activity_order.php:94 +msgid "Order by last commented date" +msgstr "Ordenar por la última fecha de los comentarios" + +#: ../../Zotlabs/Widget/Activity_order.php:97 +msgid "Posted Date" +msgstr "Fecha de publicación" + +#: ../../Zotlabs/Widget/Activity_order.php:101 +msgid "Order by last posted date" +msgstr "Ordenar por la ultima fecha de publicación" + +#: ../../Zotlabs/Widget/Activity_order.php:104 +msgid "Date Unthreaded" +msgstr "Sin enhebrar por fecha" + +#: ../../Zotlabs/Widget/Activity_order.php:108 +msgid "Order unthreaded by date" +msgstr "Ordenar sin enhebrar por fecha" + +#: ../../Zotlabs/Widget/Activity_order.php:123 +msgid "Stream Order" +msgstr "Orden del stream" + +#: ../../Zotlabs/Widget/Cover_photo.php:65 msgid "Click to show more" msgstr "Hacer clic para ver más" @@ -8858,58 +9429,62 @@ msgstr "Hacer clic para ver más" msgid "Tags" msgstr "Etiquetas" -#: ../../Zotlabs/Widget/Newmember.php:24 +#: ../../Zotlabs/Widget/Appstore.php:11 +msgid "App Collections" +msgstr "Colección de aplicaciones" + +#: ../../Zotlabs/Widget/Appstore.php:13 +msgid "Installed apps" +msgstr "Aplicaciones instaladas" + +#: ../../Zotlabs/Widget/Newmember.php:31 msgid "Profile Creation" msgstr "Creación de perfiles" -#: ../../Zotlabs/Widget/Newmember.php:26 +#: ../../Zotlabs/Widget/Newmember.php:33 msgid "Upload profile photo" msgstr "Cargar la foto del perfil" -#: ../../Zotlabs/Widget/Newmember.php:27 +#: ../../Zotlabs/Widget/Newmember.php:34 msgid "Upload cover photo" msgstr "Cargar la foto de portada del perfil" -#: ../../Zotlabs/Widget/Newmember.php:28 ../../include/nav.php:119 +#: ../../Zotlabs/Widget/Newmember.php:35 ../../include/nav.php:111 msgid "Edit your profile" msgstr "Editar su perfil" -#: ../../Zotlabs/Widget/Newmember.php:31 +#: ../../Zotlabs/Widget/Newmember.php:38 msgid "Find and Connect with others" msgstr "Encontrar y conectarse con otros" -#: ../../Zotlabs/Widget/Newmember.php:33 +#: ../../Zotlabs/Widget/Newmember.php:40 msgid "View the directory" msgstr "Ver el directorio" -#: ../../Zotlabs/Widget/Newmember.php:35 +#: ../../Zotlabs/Widget/Newmember.php:42 msgid "Manage your connections" msgstr "Gestionar sus conexiones" -#: ../../Zotlabs/Widget/Newmember.php:38 +#: ../../Zotlabs/Widget/Newmember.php:45 msgid "Communicate" msgstr "Comunicarse" -#: ../../Zotlabs/Widget/Newmember.php:40 +#: ../../Zotlabs/Widget/Newmember.php:47 msgid "View your channel homepage" msgstr "Ver la página principal de su canal" -#: ../../Zotlabs/Widget/Newmember.php:41 +#: ../../Zotlabs/Widget/Newmember.php:48 msgid "View your network stream" msgstr "Ver el \"stream\" de su red" -#: ../../Zotlabs/Widget/Newmember.php:47 +#: ../../Zotlabs/Widget/Newmember.php:54 msgid "Documentation" msgstr "Documentación" -#: ../../Zotlabs/Widget/Newmember.php:58 +#: ../../Zotlabs/Widget/Newmember.php:65 msgid "View public stream" msgstr "Ver el \"stream\" público" -#: ../../Zotlabs/Widget/Newmember.php:62 ../../include/features.php:60 -msgid "New Member Links" -msgstr "Enlaces para nuevos miembros" - #: ../../Zotlabs/Widget/Admin.php:23 ../../Zotlabs/Widget/Admin.php:60 msgid "Member registrations waiting for confirmation" msgstr "Inscripciones de nuevos miembros pendientes de aprobación" @@ -8922,58 +9497,34 @@ msgstr "Examinar la cola" msgid "DB updates" msgstr "Actualizaciones de la base de datos" -#: ../../Zotlabs/Widget/Admin.php:55 ../../include/nav.php:199 +#: ../../Zotlabs/Widget/Admin.php:55 ../../include/nav.php:189 msgid "Admin" msgstr "Administrador" #: ../../Zotlabs/Widget/Admin.php:56 -msgid "Plugin Features" -msgstr "Extensiones" +msgid "Addon Features" +msgstr "Características del addon" -#: ../../Zotlabs/Widget/Settings_menu.php:35 +#: ../../Zotlabs/Widget/Settings_menu.php:32 msgid "Account settings" msgstr "Configuración de la cuenta" -#: ../../Zotlabs/Widget/Settings_menu.php:41 +#: ../../Zotlabs/Widget/Settings_menu.php:38 msgid "Channel settings" msgstr "Configuración del canal" -#: ../../Zotlabs/Widget/Settings_menu.php:50 -msgid "Additional features" -msgstr "Funcionalidades" - -#: ../../Zotlabs/Widget/Settings_menu.php:57 -msgid "Addon settings" -msgstr "Ajustes de los complementos" - -#: ../../Zotlabs/Widget/Settings_menu.php:63 +#: ../../Zotlabs/Widget/Settings_menu.php:47 msgid "Display settings" msgstr "Ajustes de visualización" -#: ../../Zotlabs/Widget/Settings_menu.php:70 +#: ../../Zotlabs/Widget/Settings_menu.php:53 +msgid "Addon settings" +msgstr "Ajustes de los complementos" + +#: ../../Zotlabs/Widget/Settings_menu.php:60 msgid "Manage locations" msgstr "Gestión de ubicaciones (clones) del canal" -#: ../../Zotlabs/Widget/Settings_menu.php:77 -msgid "Export channel" -msgstr "Exportar canal" - -#: ../../Zotlabs/Widget/Settings_menu.php:84 -msgid "OAuth1 apps" -msgstr "Aplicaciones OAuth1" - -#: ../../Zotlabs/Widget/Settings_menu.php:92 -msgid "OAuth2 apps" -msgstr "Aplicaciones OAuth2" - -#: ../../Zotlabs/Widget/Settings_menu.php:108 ../../include/features.php:240 -msgid "Permission Groups" -msgstr "Grupos de permisos" - -#: ../../Zotlabs/Widget/Settings_menu.php:125 -msgid "Premium Channel Settings" -msgstr "Configuración del canal premium" - #: ../../Zotlabs/Widget/Bookmarkedchats.php:24 msgid "Bookmarked Chatrooms" msgstr "Salas de chat preferidas" @@ -8996,16 +9547,10 @@ msgstr "Marcar todas las notificaciones como leídas" #: ../../Zotlabs/Widget/Notifications.php:26 #: ../../Zotlabs/Widget/Notifications.php:45 -#: ../../Zotlabs/Widget/Notifications.php:141 +#: ../../Zotlabs/Widget/Notifications.php:152 msgid "Show new posts only" msgstr "Mostrar solo las entradas nuevas" -#: ../../Zotlabs/Widget/Notifications.php:27 -#: ../../Zotlabs/Widget/Notifications.php:46 -#: ../../Zotlabs/Widget/Notifications.php:142 -msgid "Filter by name" -msgstr "Filtrar por nombre" - #: ../../Zotlabs/Widget/Notifications.php:35 msgid "New Home Activity" msgstr "Nueva actividad en su página principal" @@ -9019,7 +9564,7 @@ msgid "View your home activity" msgstr "Ver su actividad en su página principal" #: ../../Zotlabs/Widget/Notifications.php:42 -#: ../../Zotlabs/Widget/Notifications.php:138 +#: ../../Zotlabs/Widget/Notifications.php:149 msgid "Mark all notifications seen" msgstr "Marcar todas las notificaciones como vistas" @@ -9084,23 +9629,23 @@ msgstr "Ver todos los avisos" msgid "Mark all notices seen" msgstr "Marcar como leídos todos los avisos" -#: ../../Zotlabs/Widget/Notifications.php:121 +#: ../../Zotlabs/Widget/Notifications.php:132 msgid "New Registrations" msgstr "Registros nuevos" -#: ../../Zotlabs/Widget/Notifications.php:122 +#: ../../Zotlabs/Widget/Notifications.php:133 msgid "New Registrations Notifications" msgstr "Notificaciones de nuevos registros" -#: ../../Zotlabs/Widget/Notifications.php:132 +#: ../../Zotlabs/Widget/Notifications.php:143 msgid "Public Stream Notifications" msgstr "Avisos del \"stream\" público" -#: ../../Zotlabs/Widget/Notifications.php:135 +#: ../../Zotlabs/Widget/Notifications.php:146 msgid "View the public stream" msgstr "Ver el \"stream\" público" -#: ../../Zotlabs/Widget/Notifications.php:150 +#: ../../Zotlabs/Widget/Notifications.php:161 msgid "Sorry, you have got no notifications at the moment" msgstr "Lo sentimos, por el momento no ha recibido ninguna notificación" @@ -9108,54 +9653,75 @@ msgstr "Lo sentimos, por el momento no ha recibido ninguna notificación" msgid "Source channel not found." msgstr "No se ha encontrado el canal de origen." -#: ../../boot.php:1569 +#: ../../widget/Netselect/Netselect.php:24 +msgid "Network/Protocol" +msgstr "Red / Protocolo" + +#: ../../widget/Netselect/Netselect.php:28 ../../include/network.php:1772 +msgid "Zot" +msgstr "Zot" + +#: ../../widget/Netselect/Netselect.php:31 ../../include/network.php:1770 +msgid "Diaspora" +msgstr "Diaspora" + +#: ../../widget/Netselect/Netselect.php:33 ../../include/network.php:1763 +#: ../../include/network.php:1764 +msgid "Friendica" +msgstr "Friendica" + +#: ../../widget/Netselect/Netselect.php:38 ../../include/network.php:1765 +msgid "OStatus" +msgstr "OStatus" + +#: ../../boot.php:1604 msgid "Create an account to access services and applications" msgstr "Crear una cuenta para acceder a los servicios y aplicaciones" -#: ../../boot.php:1588 ../../include/nav.php:111 ../../include/nav.php:140 -#: ../../include/nav.php:159 +#: ../../boot.php:1624 ../../include/nav.php:103 ../../include/nav.php:132 +#: ../../include/nav.php:151 msgid "Logout" msgstr "Finalizar sesión" -#: ../../boot.php:1592 +#: ../../boot.php:1628 msgid "Login/Email" msgstr "Inicio de sesión / Correo electrónico" -#: ../../boot.php:1593 +#: ../../boot.php:1629 msgid "Password" msgstr "Contraseña" -#: ../../boot.php:1594 +#: ../../boot.php:1630 msgid "Remember me" msgstr "Recordarme" -#: ../../boot.php:1597 +#: ../../boot.php:1633 msgid "Forgot your password?" msgstr "¿Olvidó su contraseña?" -#: ../../boot.php:2354 +#: ../../boot.php:2431 #, php-format msgid "[$Projectname] Website SSL error for %s" msgstr "[$Projectname] Error SSL del sitio web en %s" -#: ../../boot.php:2359 +#: ../../boot.php:2436 msgid "Website SSL certificate is not valid. Please correct." msgstr "El certificado SSL del sitio web no es válido. Por favor, solucione el problema." -#: ../../boot.php:2475 +#: ../../boot.php:2552 #, php-format msgid "[$Projectname] Cron tasks not running on %s" msgstr "[$Projectname] Las tareas de Cron no están funcionando en %s" -#: ../../boot.php:2480 +#: ../../boot.php:2557 msgid "Cron/Scheduled tasks not running." msgstr "Las tareas del Planificador/Cron no están funcionando." -#: ../../boot.php:2481 ../../include/datetime.php:238 +#: ../../boot.php:2558 ../../include/datetime.php:238 msgid "never" msgstr "nunca" -#: ../../store/[data]/smarty3/compiled/a0a1289f91f53b2c12e4e0b45ffe8291540ba895_0.file.cover_photo.tpl.php:123 +#: ../../store/[data]/smarty3/compiled/a0a1289f91f53b2c12e4e0b45ffe8291540ba895_0.file.cover_photo.tpl.php:127 msgid "Cover Photo" msgstr "Imagen de portada del perfil" @@ -9167,97 +9733,97 @@ msgid "Focus (Hubzilla default)" msgstr "Focus (predefinido)" #: ../../view/theme/redbasic_c/php/config.php:99 -#: ../../view/theme/redbasic/php/config.php:97 +#: ../../view/theme/redbasic/php/config.php:98 msgid "Theme settings" msgstr "Ajustes del tema" #: ../../view/theme/redbasic_c/php/config.php:100 -#: ../../view/theme/redbasic/php/config.php:98 +#: ../../view/theme/redbasic/php/config.php:99 msgid "Narrow navbar" msgstr "Estrechar la barra de navegación" #: ../../view/theme/redbasic_c/php/config.php:101 -#: ../../view/theme/redbasic/php/config.php:99 +#: ../../view/theme/redbasic/php/config.php:100 msgid "Navigation bar background color" msgstr "Color de fondo de la barra de navegación" #: ../../view/theme/redbasic_c/php/config.php:102 -#: ../../view/theme/redbasic/php/config.php:100 +#: ../../view/theme/redbasic/php/config.php:101 msgid "Navigation bar icon color " msgstr "Color del icono de la barra de navegación" #: ../../view/theme/redbasic_c/php/config.php:103 -#: ../../view/theme/redbasic/php/config.php:101 +#: ../../view/theme/redbasic/php/config.php:102 msgid "Navigation bar active icon color " msgstr "Color del icono activo de la barra de navegación" #: ../../view/theme/redbasic_c/php/config.php:104 -#: ../../view/theme/redbasic/php/config.php:102 +#: ../../view/theme/redbasic/php/config.php:103 msgid "Link color" msgstr "Color del enlace" #: ../../view/theme/redbasic_c/php/config.php:105 -#: ../../view/theme/redbasic/php/config.php:103 +#: ../../view/theme/redbasic/php/config.php:104 msgid "Set font-color for banner" msgstr "Ajustar el color del tipo de letra para el \"banner\"" #: ../../view/theme/redbasic_c/php/config.php:106 -#: ../../view/theme/redbasic/php/config.php:104 +#: ../../view/theme/redbasic/php/config.php:105 msgid "Set the background color" msgstr "Ajustar el color de fondo" #: ../../view/theme/redbasic_c/php/config.php:107 -#: ../../view/theme/redbasic/php/config.php:105 +#: ../../view/theme/redbasic/php/config.php:106 msgid "Set the background image" msgstr "Ajustar la imagen de fondo" #: ../../view/theme/redbasic_c/php/config.php:108 -#: ../../view/theme/redbasic/php/config.php:106 +#: ../../view/theme/redbasic/php/config.php:107 msgid "Set the background color of items" msgstr "Ajustar el color de los elementos de fondo" #: ../../view/theme/redbasic_c/php/config.php:109 -#: ../../view/theme/redbasic/php/config.php:107 +#: ../../view/theme/redbasic/php/config.php:108 msgid "Set the background color of comments" msgstr "Ajustar el color de fondo de los comentarios" #: ../../view/theme/redbasic_c/php/config.php:110 -#: ../../view/theme/redbasic/php/config.php:108 +#: ../../view/theme/redbasic/php/config.php:109 msgid "Set font-size for the entire application" msgstr "Ajustar el tamaño de letra para toda la aplicación" #: ../../view/theme/redbasic_c/php/config.php:110 -#: ../../view/theme/redbasic/php/config.php:108 +#: ../../view/theme/redbasic/php/config.php:109 msgid "Examples: 1rem, 100%, 16px" msgstr "Ejemplos: 1rem, 100%, 16px" #: ../../view/theme/redbasic_c/php/config.php:111 -#: ../../view/theme/redbasic/php/config.php:109 +#: ../../view/theme/redbasic/php/config.php:110 msgid "Set font-color for posts and comments" msgstr "Establecer el color de la letra para publicaciones y comentarios" #: ../../view/theme/redbasic_c/php/config.php:112 -#: ../../view/theme/redbasic/php/config.php:110 +#: ../../view/theme/redbasic/php/config.php:111 msgid "Set radius of corners" msgstr "Establecer el radio de curvatura de las esquinas" #: ../../view/theme/redbasic_c/php/config.php:112 -#: ../../view/theme/redbasic/php/config.php:110 +#: ../../view/theme/redbasic/php/config.php:111 msgid "Example: 4px" msgstr "Ejemplo: 4px" #: ../../view/theme/redbasic_c/php/config.php:113 -#: ../../view/theme/redbasic/php/config.php:111 +#: ../../view/theme/redbasic/php/config.php:112 msgid "Set shadow depth of photos" msgstr "Ajustar la profundidad de sombras de las fotos" #: ../../view/theme/redbasic_c/php/config.php:114 -#: ../../view/theme/redbasic/php/config.php:112 +#: ../../view/theme/redbasic/php/config.php:113 msgid "Set maximum width of content region in pixel" msgstr "Ajustar la anchura máxima de la región de contenido, en pixels" #: ../../view/theme/redbasic_c/php/config.php:114 -#: ../../view/theme/redbasic/php/config.php:112 +#: ../../view/theme/redbasic/php/config.php:113 msgid "Leave empty for default width" msgstr "Dejar en blanco para la anchura predeterminada" @@ -9266,21 +9832,25 @@ msgid "Left align page content" msgstr "Alinear a la izquierda el contenido de la página" #: ../../view/theme/redbasic_c/php/config.php:116 -#: ../../view/theme/redbasic/php/config.php:113 +#: ../../view/theme/redbasic/php/config.php:114 msgid "Set size of conversation author photo" msgstr "Ajustar el tamaño de la foto del autor de la conversación" #: ../../view/theme/redbasic_c/php/config.php:117 -#: ../../view/theme/redbasic/php/config.php:114 +#: ../../view/theme/redbasic/php/config.php:115 msgid "Set size of followup author photos" msgstr "Ajustar el tamaño de foto de los seguidores del autor" +#: ../../view/theme/redbasic/php/config.php:116 +msgid "Show advanced settings" +msgstr "Mostrar ajustes avanzados" + #: ../../addon/rendezvous/rendezvous.php:57 msgid "Errors encountered deleting database table " msgstr "Errores encontrados al eliminar la tabla de la base de datos" #: ../../addon/rendezvous/rendezvous.php:95 -#: ../../addon/twitter/twitter.php:779 +#: ../../addon/twitter/twitter.php:782 msgid "Submit Settings" msgstr "Enviar los ajustes" @@ -9417,30 +9987,22 @@ msgstr "Un ajuste" msgid "Skeleton Settings" msgstr "Ajustes de Skeleton" -#: ../../addon/gnusoc/gnusoc.php:249 -msgid "GNU-Social Protocol Settings updated." -msgstr "Se han actualizado los ajustes del protocolo de GNU-Social." - -#: ../../addon/gnusoc/gnusoc.php:268 +#: ../../addon/gnusoc/Mod_Gnusoc.php:16 msgid "" "The GNU-Social protocol does not support location independence. Connections " "you make within that network may be unreachable from alternate channel " "locations." msgstr "El protocolo de GNU-Social no admite la independencia de la ubicación. Las\n conexiones que realice dentro de esa red pueden ser inaccesibles desde \nubicaciones de canales alternativos." -#: ../../addon/gnusoc/gnusoc.php:271 -msgid "Enable the GNU-Social protocol for this channel" -msgstr "Activar el protocolo de GNU-Social para este canal" +#: ../../addon/gnusoc/Mod_Gnusoc.php:34 +msgid "GNU-Social Protocol" +msgstr "Protocolo GNU-Social" -#: ../../addon/gnusoc/gnusoc.php:275 -msgid "GNU-Social Protocol Settings" -msgstr "Ajustes del protocolo de GNU-Social" - -#: ../../addon/gnusoc/gnusoc.php:471 +#: ../../addon/gnusoc/gnusoc.php:451 msgid "Follow" msgstr "Seguir" -#: ../../addon/gnusoc/gnusoc.php:474 +#: ../../addon/gnusoc/gnusoc.php:454 #, php-format msgid "%1$s is now following %2$s" msgstr "%1$s está siguiendo ahora a %2$s" @@ -9486,8 +10048,8 @@ msgstr "Regresar después" msgid "Page to load after image selection." msgstr "Página para cargar después de la selección de imágenes." -#: ../../addon/openclipatar/openclipatar.php:58 ../../include/channel.php:1300 -#: ../../include/nav.php:119 +#: ../../addon/openclipatar/openclipatar.php:58 ../../include/channel.php:1307 +#: ../../include/nav.php:111 msgid "Edit Profile" msgstr "Editar el perfil" @@ -9575,96 +10137,92 @@ msgid "" "view" msgstr "Proporcionar una opción de edición de fotos para ocultar las fotos inapropiadas de la vista de álbum predeterminada" -#: ../../addon/wppost/wppost.php:45 -msgid "Post to WordPress" -msgstr "Publicar en WordPress" - -#: ../../addon/wppost/wppost.php:82 -msgid "Enable WordPress Post Plugin" -msgstr "Habilitar el plugin de publicación en WordPress" - -#: ../../addon/wppost/wppost.php:86 -msgid "WordPress username" -msgstr "Nombre de usuario de WordPress" - -#: ../../addon/wppost/wppost.php:90 -msgid "WordPress password" -msgstr "Contraseña de WordPress" - -#: ../../addon/wppost/wppost.php:94 -msgid "WordPress API URL" -msgstr "URL de la API de WordPress" - -#: ../../addon/wppost/wppost.php:95 -msgid "Typically https://your-blog.tld/xmlrpc.php" -msgstr "Habitualmente https://your-blog.tld/xmlrpc.php" - -#: ../../addon/wppost/wppost.php:98 -msgid "WordPress blogid" -msgstr "Blog de WordPress" - -#: ../../addon/wppost/wppost.php:99 -msgid "For multi-user sites such as wordpress.com, otherwise leave blank" -msgstr "Para sitios multiusuario como wordpress.com, de lo contrario, dejar en blanco" - -#: ../../addon/wppost/wppost.php:105 -msgid "Post to WordPress by default" -msgstr "Publicar en WordPress por defecto" - -#: ../../addon/wppost/wppost.php:109 -msgid "Forward comments (requires hubzilla_wp plugin)" -msgstr "Reenviar comentarios (requerido por el plugin hubzilla_wp)" - -#: ../../addon/wppost/wppost.php:113 -msgid "WordPress Post Settings" -msgstr "Ajustes de publicación en WordPress" - -#: ../../addon/wppost/wppost.php:129 +#: ../../addon/wppost/Mod_Wppost.php:28 msgid "Wordpress Settings saved." msgstr "Se han guardado los ajustes de WordPress." -#: ../../addon/nsfw/nsfw.php:80 +#: ../../addon/wppost/Mod_Wppost.php:42 +msgid "Post to WordPress or anything else which uses the wordpress XMLRPC API" +msgstr "Publicar en WordPress o cualquier otra cosa que utilice la API XMLRPC de wordpress" + +#: ../../addon/wppost/Mod_Wppost.php:65 +msgid "WordPress username" +msgstr "Nombre de usuario de WordPress" + +#: ../../addon/wppost/Mod_Wppost.php:69 +msgid "WordPress password" +msgstr "Contraseña de WordPress" + +#: ../../addon/wppost/Mod_Wppost.php:73 +msgid "WordPress API URL" +msgstr "URL de la API de WordPress" + +#: ../../addon/wppost/Mod_Wppost.php:74 +msgid "Typically https://your-blog.tld/xmlrpc.php" +msgstr "Habitualmente https://your-blog.tld/xmlrpc.php" + +#: ../../addon/wppost/Mod_Wppost.php:77 +msgid "WordPress blogid" +msgstr "Blog de WordPress" + +#: ../../addon/wppost/Mod_Wppost.php:78 +msgid "For multi-user sites such as wordpress.com, otherwise leave blank" +msgstr "Para sitios multiusuario como wordpress.com, de lo contrario, dejar en blanco" + +#: ../../addon/wppost/Mod_Wppost.php:82 +msgid "Post to WordPress by default" +msgstr "Publicar en WordPress por defecto" + +#: ../../addon/wppost/Mod_Wppost.php:86 +msgid "Forward comments (requires hubzilla_wp plugin)" +msgstr "Reenviar comentarios (requerido por el plugin hubzilla_wp)" + +#: ../../addon/wppost/Mod_Wppost.php:94 +msgid "Wordpress Post" +msgstr "Publicar en Wordpress" + +#: ../../addon/wppost/wppost.php:46 +msgid "Post to WordPress" +msgstr "Publicar en WordPress" + +#: ../../addon/nsfw/nsfw.php:152 +msgid "Possible adult content" +msgstr "Posible contenido para adultos" + +#: ../../addon/nsfw/nsfw.php:167 +#, php-format +msgid "%s - view" +msgstr "ver - %s" + +#: ../../addon/nsfw/Mod_Nsfw.php:22 +msgid "NSFW Settings saved." +msgstr "Se han guardado los ajustes de NSFW." + +#: ../../addon/nsfw/Mod_Nsfw.php:34 +msgid "Collapse content that contains predefined words" +msgstr "Ocultar el contenido que contiene palabras predefinidas" + +#: ../../addon/nsfw/Mod_Nsfw.php:44 msgid "" -"This plugin looks in posts for the words/text you specify below, and " -"collapses any content containing those keywords so it is not displayed at " +"This app looks in posts for the words/text you specify below, and collapses " +"any content containing those keywords so it is not displayed at " "inappropriate times, such as sexual innuendo that may be improper in a work " "setting. It is polite and recommended to tag any content containing nudity " "with #NSFW. This filter can also match any other word/text you specify, and" " can thereby be used as a general purpose content filter." -msgstr "Este complemento busca en los mensajes las palabras o texto que se especifican a continuación y contrae cualquier contenido que contenga esas palabras clave para que no se muestre en momentos inapropiados, como insinuaciones sexuales que pueden ser impropias en un entorno de trabajo. Es una muestra de educación y se recomienda marcar cualquier contenido que contenga desnudos con #NSFW. Este filtro también puede coincidir con cualquier otra palabra o texto que especifique y, por lo tanto, puede utilizarse como un filtro de contenido de propósito general." +msgstr "Esta aplicación busca en los mensajes las palabras o texto que especifique a continuación, y oculta cualquier contenido que contenga esas palabras clave, para que no se muestren en momentos inapropiados, como insinuaciones sexuales que puedan ser inapropiadas en un entorno laboral. Es cortés y recomendable etiquetar cualquier contenido que contenga desnudos con #NSFW. Este filtro también puede coincidir con cualquier otra palabra o texto que especifique y, por lo tanto, puede utilizarse como filtro de contenido de propósito general." -#: ../../addon/nsfw/nsfw.php:84 -msgid "Enable Content filter" -msgstr "Habilitar filtro de contenido" - -#: ../../addon/nsfw/nsfw.php:88 +#: ../../addon/nsfw/Mod_Nsfw.php:49 msgid "Comma separated list of keywords to hide" msgstr "Lista separada por comas de palabras clave para ocultar" -#: ../../addon/nsfw/nsfw.php:88 +#: ../../addon/nsfw/Mod_Nsfw.php:49 msgid "Word, /regular-expression/, lang=xx, lang!=xx" msgstr "Palabra, /expresión regular/, lang=xx, lang!=xx" -#: ../../addon/nsfw/nsfw.php:92 -msgid "Not Safe For Work Settings" -msgstr "No es seguro para ajustes de trabajo" - -#: ../../addon/nsfw/nsfw.php:92 -msgid "General Purpose Content Filter" -msgstr "Filtro de contenido de propósito general" - -#: ../../addon/nsfw/nsfw.php:110 -msgid "NSFW Settings saved." -msgstr "Se han guardado los ajustes de NSFW." - -#: ../../addon/nsfw/nsfw.php:207 -msgid "Possible adult content" -msgstr "Posible contenido para adultos" - -#: ../../addon/nsfw/nsfw.php:222 -#, php-format -msgid "%s - view" -msgstr "ver - %s" +#: ../../addon/nsfw/Mod_Nsfw.php:58 +msgid "NSFW" +msgstr "NSFW" #: ../../addon/ijpost/ijpost.php:42 msgid "Post to Insanejournal" @@ -9873,6 +10431,18 @@ msgstr "Se han guardado los ajustes de IRC." msgid "IRC Chatroom" msgstr "Sala de chat IRC" +#: ../../addon/gallery/gallery.php:47 ../../addon/gallery/Mod_Gallery.php:115 +msgid "Gallery" +msgstr "Galería" + +#: ../../addon/gallery/gallery.php:50 +msgid "Photo Gallery" +msgstr "Galería de fotos" + +#: ../../addon/gallery/Mod_Gallery.php:57 +msgid "A simple gallery for your photo albums" +msgstr "Una galería sencilla para sus álbumes de fotos" + #: ../../addon/ljpost/ljpost.php:42 msgid "Post to LiveJournal" msgstr "Publicar en LiveJournal" @@ -9975,17 +10545,17 @@ msgstr "Fecha de nacimiento" msgid "OpenID protocol error. No ID returned." msgstr "Error de protocolo OpenID. No se recuperó ninguna ID." -#: ../../addon/openid/Mod_Openid.php:188 ../../include/auth.php:300 +#: ../../addon/openid/Mod_Openid.php:188 ../../include/auth.php:317 msgid "Login failed." msgstr "El acceso ha fallado." #: ../../addon/openid/Mod_Id.php:85 ../../include/selectors.php:49 -#: ../../include/selectors.php:66 ../../include/channel.php:1480 +#: ../../include/selectors.php:66 ../../include/channel.php:1487 msgid "Male" msgstr "Hombre" #: ../../addon/openid/Mod_Id.php:87 ../../include/selectors.php:49 -#: ../../include/selectors.php:66 ../../include/channel.php:1478 +#: ../../include/selectors.php:66 ../../include/channel.php:1485 msgid "Female" msgstr "Mujer" @@ -10005,20 +10575,24 @@ msgstr "No lo menciones." msgid "<blush>" msgstr "<sonrojo>" -#: ../../addon/startpage/startpage.php:109 +#: ../../addon/startpage/Mod_Startpage.php:51 +msgid "Set a preferred page to load on login from home page" +msgstr "Establecer una página preferida para cargar al iniciar sesión desde la página de inicio" + +#: ../../addon/startpage/Mod_Startpage.php:62 msgid "Page to load after login" msgstr "Página para cargar tras el inicio de sesión" -#: ../../addon/startpage/startpage.php:109 +#: ../../addon/startpage/Mod_Startpage.php:62 msgid "" "Examples: "apps", "network?f=&gid=37" (privacy " "collection), "channel" or "notifications/system" (leave " "blank for default network page (grid)." msgstr "Ejemplos: "aplicaciones", "mi red?f=&gid=37" (grupo de canales), "mi canal" or "notificaciones del sistema" (dejar en blanco para la página de mi red por defecto (grid)." -#: ../../addon/startpage/startpage.php:113 -msgid "Startpage Settings" -msgstr "Ajustes de startpage" +#: ../../addon/startpage/Mod_Startpage.php:70 +msgid "Startpage" +msgstr "Startpage" #: ../../addon/morepokes/morepokes.php:19 msgid "bitchslap" @@ -10172,47 +10746,43 @@ msgstr "una declaración de amor eterno" msgid "declared undying love for" msgstr "ha declarado amor eterno a" -#: ../../addon/diaspora/diaspora.php:781 +#: ../../addon/diaspora/Mod_Diaspora.php:40 msgid "Diaspora Protocol Settings updated." msgstr "Los ajustes del protocolo de Diaspora se han actualizado." -#: ../../addon/diaspora/diaspora.php:800 +#: ../../addon/diaspora/Mod_Diaspora.php:49 msgid "" -"The Diaspora protocol does not support location independence. Connections " +"The diaspora protocol does not support location independence. Connections " "you make within that network may be unreachable from alternate channel " "locations." msgstr "El protocolo de Diaspora no admite la independencia de la ubicación. Las conexiones que realice dentro de esa red pueden ser inaccesibles desde ubicaciones de canales alternativos." -#: ../../addon/diaspora/diaspora.php:803 -msgid "Enable the Diaspora protocol for this channel" -msgstr "Activar el protocolo de Diaspora para este canal" - -#: ../../addon/diaspora/diaspora.php:807 +#: ../../addon/diaspora/Mod_Diaspora.php:74 msgid "Allow any Diaspora member to comment on your public posts" msgstr "Permitir a cualquier miembro de Diaspora comentar sus entradas públicas" -#: ../../addon/diaspora/diaspora.php:811 +#: ../../addon/diaspora/Mod_Diaspora.php:78 msgid "Prevent your hashtags from being redirected to other sites" msgstr "Impedir que sus \"hashtags\" sean redirigidos a otros sitios " -#: ../../addon/diaspora/diaspora.php:815 +#: ../../addon/diaspora/Mod_Diaspora.php:82 msgid "" "Sign and forward posts and comments with no existing Diaspora signature" msgstr "Firmar y enviar entradas y comentarios sin firma de Diaspora" -#: ../../addon/diaspora/diaspora.php:820 +#: ../../addon/diaspora/Mod_Diaspora.php:87 msgid "Followed hashtags (comma separated, do not include the #)" msgstr "\"Hashtags\" seguidos (separados por comas, sin incluir #)" -#: ../../addon/diaspora/diaspora.php:825 -msgid "Diaspora Protocol Settings" -msgstr "Ajustes del protocolo de Diaspora" +#: ../../addon/diaspora/Mod_Diaspora.php:96 +msgid "Diaspora Protocol" +msgstr "Protocolo Diaspora" -#: ../../addon/diaspora/import_diaspora.php:16 +#: ../../addon/diaspora/import_diaspora.php:18 msgid "No username found in import file." msgstr "No se ha encontrado el nombre de usuario en el fichero de importación." -#: ../../addon/diaspora/import_diaspora.php:41 ../../include/import.php:67 +#: ../../addon/diaspora/import_diaspora.php:43 ../../include/import.php:72 msgid "Unable to create a unique channel address. Import failed." msgstr "No se ha podido crear una dirección de canal única. Ha fallado la importación." @@ -10225,17 +10795,13 @@ msgstr "Su cuenta en %s caducará en unos pocos días." msgid "Your $Productname test account is about to expire." msgstr "Su cuenta de prueba de $Productname está a punto de caducar." -#: ../../addon/rainbowtag/rainbowtag.php:81 -msgid "Enable Rainbowtag" -msgstr "Habilitar Rainbowtag" +#: ../../addon/rainbowtag/Mod_Rainbowtag.php:15 +msgid "Add some colour to tag clouds" +msgstr "Añadir color a las nubes de etiquetas" -#: ../../addon/rainbowtag/rainbowtag.php:85 -msgid "Rainbowtag Settings" -msgstr "Ajustes de Rainbowtag" - -#: ../../addon/rainbowtag/rainbowtag.php:101 -msgid "Rainbowtag Settings saved." -msgstr "Se han guardado los ajustes de Rainbowtag." +#: ../../addon/rainbowtag/Mod_Rainbowtag.php:34 +msgid "Rainbow Tag" +msgstr "Etiqueta Arcoiris" #: ../../addon/upload_limits/upload_limits.php:25 msgid "Show Upload Limits" @@ -10398,7 +10964,7 @@ msgstr "Prueba de correo" msgid "Message subject" msgstr "Asunto del mensaje" -#: ../../addon/mdpost/mdpost.php:41 +#: ../../addon/mdpost/mdpost.php:42 msgid "Use markdown for editing posts" msgstr "Usar markdown para editar las entradas" @@ -10509,8 +11075,8 @@ msgstr "Contraseña de Friendica" msgid "Hubzilla to Friendica Post Settings" msgstr "Ajustes de publicación de Hubzilla a Friendica" -#: ../../addon/jappixmini/jappixmini.php:305 ../../include/channel.php:1396 -#: ../../include/channel.php:1567 +#: ../../addon/jappixmini/jappixmini.php:305 ../../include/channel.php:1403 +#: ../../include/channel.php:1574 msgid "Status:" msgstr "Estado:" @@ -10563,26 +11129,97 @@ msgstr "Ayuda para los ajustes" msgid "Jappix Mini Settings" msgstr "Ajustes de Jappix Mini" -#: ../../addon/superblock/superblock.php:112 -msgid "Currently blocked" -msgstr "Actualmente bloqueado" +#: ../../addon/channelreputation/channelreputation.php:101 +#: ../../addon/channelreputation/channelreputation.php:102 +#: ../../addon/cart/myshop.php:141 ../../addon/cart/myshop.php:177 +#: ../../addon/cart/myshop.php:211 ../../addon/cart/myshop.php:259 +#: ../../addon/cart/myshop.php:294 ../../addon/cart/myshop.php:317 +msgid "Access Denied" +msgstr "Acceso denegado" -#: ../../addon/superblock/superblock.php:114 -msgid "No channels currently blocked" -msgstr "No hay canales bloqueados actualmente" +#: ../../addon/channelreputation/channelreputation.php:109 +msgid "Enable Community Moderation" +msgstr "Habilitar la moderación de la comunidad" -#: ../../addon/superblock/superblock.php:120 -msgid "Superblock Settings" -msgstr "Ajustes de Superblock" +#: ../../addon/channelreputation/channelreputation.php:117 +msgid "Reputation automatically given to new members" +msgstr "La reputación se otorga automáticamente a los nuevos miembros" -#: ../../addon/superblock/superblock.php:345 +#: ../../addon/channelreputation/channelreputation.php:118 +msgid "Reputation will never fall below this value" +msgstr "La reputación nunca caerá por debajo de este valor" + +#: ../../addon/channelreputation/channelreputation.php:119 +msgid "Minimum reputation before posting is allowed" +msgstr "Reputación mínima antes de que se permita el envío de entradas" + +#: ../../addon/channelreputation/channelreputation.php:120 +msgid "Minimum reputation before commenting is allowed" +msgstr "Mínima reputación antes de que se permitan los comentarios" + +#: ../../addon/channelreputation/channelreputation.php:121 +msgid "Minimum reputation before a member is able to moderate other posts" +msgstr "Reputación mínima antes de que un miembro sea capaz de moderar otros mensajes" + +#: ../../addon/channelreputation/channelreputation.php:122 +msgid "" +"Max ratio of moderator's reputation that can be added to/deducted from " +"reputation of person being moderated" +msgstr "Proporción máxima de la reputación del moderador que puede ser añadida/descontada de la reputación de la persona que está siendo moderada." + +#: ../../addon/channelreputation/channelreputation.php:123 +msgid "Reputation \"cost\" to post" +msgstr "\"Coste\" de la reputación a contabilizar" + +#: ../../addon/channelreputation/channelreputation.php:124 +msgid "Reputation \"cost\" to comment" +msgstr "\"Coste\" de la reputación para comentar" + +#: ../../addon/channelreputation/channelreputation.php:125 +msgid "" +"Reputation automatically recovers at this rate per hour until it reaches " +"minimum_to_post" +msgstr "La reputación se recupera automáticamente a esta tasa por hora hasta que alcanza el mínimo_a_post" + +#: ../../addon/channelreputation/channelreputation.php:126 +msgid "" +"When minimum_to_moderate > reputation > minimum_to_post reputation recovers " +"at this rate per hour" +msgstr "Cuando la reputación mínima a moderar > reputación > la reputación mínima a publicar se recupera a esta tasa por hora" + +#: ../../addon/channelreputation/channelreputation.php:138 +msgid "Community Moderation Settings" +msgstr "Configuración de la moderación de la comunidad" + +#: ../../addon/channelreputation/channelreputation.php:359 +msgid "Can moderate reputation on my channel." +msgstr "Se puede moderar la reputación en mi canal." + +#: ../../addon/channelreputation/channelreputation.php:544 +#: ../../addon/channelreputation/channelreputation.php:547 +msgid "Channel Reputation" +msgstr "Reputación del canal" + +#: ../../addon/superblock/superblock.php:318 msgid "Block Completely" msgstr "Bloquear completamente" -#: ../../addon/superblock/superblock.php:394 +#: ../../addon/superblock/Mod_Superblock.php:21 +msgid "Block channels" +msgstr "Bloquear canales" + +#: ../../addon/superblock/Mod_Superblock.php:63 msgid "superblock settings updated" msgstr "se han actualizado los ajustes de superblock" +#: ../../addon/superblock/Mod_Superblock.php:87 +msgid "Currently blocked" +msgstr "Actualmente bloqueado" + +#: ../../addon/superblock/Mod_Superblock.php:89 +msgid "No channels currently blocked" +msgstr "No hay canales bloqueados actualmente" + #: ../../addon/nofed/nofed.php:42 msgid "Federate" msgstr "Federar" @@ -10675,37 +11312,110 @@ msgstr "Nombre de inicio de sesión en Friendica" msgid "Friendica Login Password" msgstr "Contraseña de inicio de sesión en Friendica" -#: ../../addon/pubcrawl/as.php:1146 ../../addon/pubcrawl/as.php:1273 -#: ../../addon/pubcrawl/as.php:1449 ../../include/network.php:1769 -msgid "ActivityPub" -msgstr "ActivityPub" +#: ../../addon/hsse/Mod_Hsse.php:15 +msgid "WYSIWYG status editor" +msgstr "Editor de estado de WYSIWYG" -#: ../../addon/pubcrawl/pubcrawl.php:1053 +#: ../../addon/hsse/Mod_Hsse.php:34 +msgid "WYSIWYG Status" +msgstr "Estado de WYSIWYG" + +#: ../../addon/hsse/hsse.php:82 ../../include/conversation.php:1285 +msgid "Set your location" +msgstr "Establecer su ubicación" + +#: ../../addon/hsse/hsse.php:83 ../../include/conversation.php:1286 +msgid "Clear browser location" +msgstr "Eliminar los datos de localización geográfica del navegador" + +#: ../../addon/hsse/hsse.php:99 ../../include/conversation.php:1302 +msgid "Embed (existing) photo from your photo albums" +msgstr "Insertar (existente) foto de sus álbumes de fotos" + +#: ../../addon/hsse/hsse.php:135 ../../include/conversation.php:1338 +msgid "Tag term:" +msgstr "Término de la etiqueta:" + +#: ../../addon/hsse/hsse.php:136 ../../include/conversation.php:1339 +msgid "Where are you right now?" +msgstr "¿Donde está ahora?" + +#: ../../addon/hsse/hsse.php:141 ../../include/conversation.php:1344 +msgid "Choose a different album..." +msgstr "Elegir un álbum diferente..." + +#: ../../addon/hsse/hsse.php:145 ../../include/conversation.php:1348 +msgid "Comments enabled" +msgstr "Comentarios habilitados" + +#: ../../addon/hsse/hsse.php:146 ../../include/conversation.php:1349 +msgid "Comments disabled" +msgstr "Comentarios deshabilitados" + +#: ../../addon/hsse/hsse.php:195 ../../include/conversation.php:1398 +msgid "Page link name" +msgstr "Nombre del enlace de la página" + +#: ../../addon/hsse/hsse.php:198 ../../include/conversation.php:1401 +msgid "Post as" +msgstr "Publicar como" + +#: ../../addon/hsse/hsse.php:212 ../../include/conversation.php:1415 +msgid "Toggle voting" +msgstr "Cambiar votación" + +#: ../../addon/hsse/hsse.php:215 ../../include/conversation.php:1418 +msgid "Disable comments" +msgstr "Dehabilitar los comentarios" + +#: ../../addon/hsse/hsse.php:216 ../../include/conversation.php:1419 +msgid "Toggle comments" +msgstr "Activar o desactivar los comentarios" + +#: ../../addon/hsse/hsse.php:224 ../../include/conversation.php:1427 +msgid "Categories (optional, comma-separated list)" +msgstr "Temas (opcional, lista separada por comas)" + +#: ../../addon/hsse/hsse.php:247 ../../include/conversation.php:1450 +msgid "Other networks and post services" +msgstr "Otras redes y servicios de publicación" + +#: ../../addon/hsse/hsse.php:253 ../../include/conversation.php:1456 +msgid "Set publish date" +msgstr "Establecer la fecha de publicación" + +#: ../../addon/pubcrawl/Mod_Pubcrawl.php:25 msgid "ActivityPub Protocol Settings updated." msgstr "Se han actualizado los ajustes del protocolo ActivityPub." -#: ../../addon/pubcrawl/pubcrawl.php:1062 +#: ../../addon/pubcrawl/Mod_Pubcrawl.php:34 msgid "" -"The ActivityPub protocol does not support location independence. Connections" +"The activitypub protocol does not support location independence. Connections" " you make within that network may be unreachable from alternate channel " "locations." msgstr "El protocolo ActivityPub no soporta la independencia de ubicación. Las conexiones que realice dentro de esa red pueden no ser accesibles desde ubicaciones de canales alternativos." -#: ../../addon/pubcrawl/pubcrawl.php:1065 -msgid "Enable the ActivityPub protocol for this channel" -msgstr "Activar el protocolo ActivityPub para este canal" +#: ../../addon/pubcrawl/Mod_Pubcrawl.php:48 +msgid "Deliver to ActivityPub recipients in privacy groups" +msgstr "Entregar a los destinatarios de ActivityPub en grupos de canales" -#: ../../addon/pubcrawl/pubcrawl.php:1068 +#: ../../addon/pubcrawl/Mod_Pubcrawl.php:48 +msgid "" +"May result in a large number of mentions and expose all the members of your " +"privacy group" +msgstr "Puede resultar en un gran número de menciones y exponer a todos los miembros de su grupo de canales" + +#: ../../addon/pubcrawl/Mod_Pubcrawl.php:52 msgid "Send multi-media HTML articles" msgstr "Enviar artículos multimedia en HTML" -#: ../../addon/pubcrawl/pubcrawl.php:1068 +#: ../../addon/pubcrawl/Mod_Pubcrawl.php:52 msgid "Not supported by some microblog services such as Mastodon" msgstr "No soportado por algunos servicios de microblog como Mastodon" -#: ../../addon/pubcrawl/pubcrawl.php:1072 -msgid "ActivityPub Protocol Settings" -msgstr "Ajustes del protocolo ActivityPub" +#: ../../addon/pubcrawl/Mod_Pubcrawl.php:60 +msgid "Activitypub Protocol" +msgstr "Protocolo Activitypub" #: ../../addon/donate/donate.php:21 msgid "Project Servers and Resources" @@ -11009,7 +11719,7 @@ msgstr "La API actual de GNU social es " msgid "Cancel GNU social Connection" msgstr "Cancelar la conexión de GNU social" -#: ../../addon/statusnet/statusnet.php:401 ../../addon/twitter/twitter.php:233 +#: ../../addon/statusnet/statusnet.php:401 ../../addon/twitter/twitter.php:236 msgid "Currently connected to: " msgstr "Actualmente está conectado a: " @@ -11041,7 +11751,7 @@ msgid "" "account by default" msgstr "Si está activado, sus entradas públicas se publicarán en la cuenta GNU-social asociada de forma predeterminada" -#: ../../addon/statusnet/statusnet.php:424 ../../addon/twitter/twitter.php:261 +#: ../../addon/statusnet/statusnet.php:424 ../../addon/twitter/twitter.php:264 msgid "Clear OAuth configuration" msgstr "Limpiar la configuración de OAuth" @@ -11093,7 +11803,7 @@ msgstr "Elegido un color aleatorio." msgid "Error creating new game." msgstr "Error al crear un nuevo juego." -#: ../../addon/chess/chess.php:486 ../../include/channel.php:1151 +#: ../../addon/chess/chess.php:486 ../../include/channel.php:1158 msgid "Requested channel is not available." msgstr "El canal solicitado no está disponible." @@ -11105,21 +11815,21 @@ msgstr "Debe seleccionar un canal local /chess/nombredelcanal" msgid "Enable notifications" msgstr "Habilitar notificaciones" -#: ../../addon/twitter/twitter.php:99 +#: ../../addon/twitter/twitter.php:102 msgid "Post to Twitter" msgstr "Publicar en Twitter" -#: ../../addon/twitter/twitter.php:155 +#: ../../addon/twitter/twitter.php:158 msgid "Twitter settings updated." msgstr "Se han actualizado los ajustes de Twitter." -#: ../../addon/twitter/twitter.php:184 +#: ../../addon/twitter/twitter.php:187 msgid "" "No consumer key pair for Twitter found. Please contact your site " "administrator." msgstr "No se encontró ningún par de \"consumer key\" para Twitter. Póngase en contacto con el administrador del sitio." -#: ../../addon/twitter/twitter.php:206 +#: ../../addon/twitter/twitter.php:209 msgid "" "At this Hubzilla instance the Twitter plugin was enabled but you have not " "yet connected your account to your Twitter account. To do so click the " @@ -11128,15 +11838,15 @@ msgid "" " be posted to Twitter." msgstr "En esta instancia de Hubzilla, el complemento de Twitter estaba habilitado pero aún no ha conectado su cuenta a la cuenta de Twitter. Para ello, haga clic en el botón de abajo, para obtener un PIN de Twitter que debe copiar en el cuadro de entrada a continuación y enviar el formulario. Solo sus entradas públicas se publicarán en Twitter." -#: ../../addon/twitter/twitter.php:208 +#: ../../addon/twitter/twitter.php:211 msgid "Log in with Twitter" msgstr "Iniciar sesión en Twitter" -#: ../../addon/twitter/twitter.php:211 +#: ../../addon/twitter/twitter.php:214 msgid "Copy the PIN from Twitter here" msgstr "Copiar aquí el PIN de Twitter" -#: ../../addon/twitter/twitter.php:238 +#: ../../addon/twitter/twitter.php:241 msgid "" "Note: Due your privacy settings (Hide your profile " "details from unknown viewers?) the link potentially included in public " @@ -11144,35 +11854,35 @@ msgid "" "the visitor that the access to your profile has been restricted." msgstr "Aviso: Debido a su configuración de privacidad (Ocultar los detalles de su perfil a los visitantes desconocidos?), el enlace potencialmente incluido en las entradas públicas retransmitidas a Twitter llevará al visitante a una página en blanco informándolo de que el acceso a su perfil ha sido restringido." -#: ../../addon/twitter/twitter.php:243 +#: ../../addon/twitter/twitter.php:246 msgid "Allow posting to Twitter" msgstr "Permitir la publicación en Twitter" -#: ../../addon/twitter/twitter.php:243 +#: ../../addon/twitter/twitter.php:246 msgid "" "If enabled your public postings can be posted to the associated Twitter " "account" msgstr "Si está activado, sus entradas públicas se pueden publicar en la cuenta de Twitter asociada" -#: ../../addon/twitter/twitter.php:247 +#: ../../addon/twitter/twitter.php:250 msgid "Twitter post length" msgstr "Longitud del mensaje en Twitter" -#: ../../addon/twitter/twitter.php:247 +#: ../../addon/twitter/twitter.php:250 msgid "Maximum tweet length" msgstr "Longitud máxima del tweet" -#: ../../addon/twitter/twitter.php:252 +#: ../../addon/twitter/twitter.php:255 msgid "Send public postings to Twitter by default" msgstr "Enviar mensajes públicos a Twitter de forma predeterminada" -#: ../../addon/twitter/twitter.php:252 +#: ../../addon/twitter/twitter.php:255 msgid "" "If enabled your public postings will be posted to the associated Twitter " "account by default" msgstr "Si está activado, sus entradas públicas se publicarán en la cuenta de Twitter asociada de forma predeterminada." -#: ../../addon/twitter/twitter.php:270 +#: ../../addon/twitter/twitter.php:273 msgid "Twitter Post Settings" msgstr "Ajustes de publicación en Twitter" @@ -11188,75 +11898,250 @@ msgstr "Ocultar el botón y mostrar los smilies directamente." msgid "Smileybutton Settings" msgstr "Ajustes de Smileybutton" -#: ../../addon/cart/myshop.php:138 -msgid "Order Not Found" -msgstr "No se ha encontrado el pedido" - -#: ../../addon/cart/cart.php:810 -msgid "Order cannot be checked out." -msgstr "No se puede verificar el pedido." - -#: ../../addon/cart/cart.php:1073 -msgid "Enable Shopping Cart" -msgstr "Habilitar el carro de la compra" - -#: ../../addon/cart/cart.php:1080 +#: ../../addon/cart/Settings/Cart.php:56 msgid "Enable Test Catalog" msgstr "Habilitar el catálogo de pruebas" -#: ../../addon/cart/cart.php:1088 +#: ../../addon/cart/Settings/Cart.php:68 msgid "Enable Manual Payments" msgstr "Permitir pagos manuales" -#: ../../addon/cart/cart.php:1103 -msgid "Base Cart Settings" -msgstr "Configuración del carro base" +#: ../../addon/cart/Settings/Cart.php:88 +msgid "Base Merchant Currency" +msgstr "Divida base del vendedor" -#: ../../addon/cart/cart.php:1151 -msgid "Add Item" -msgstr "Agregar un elemento" +#: ../../addon/cart/Settings/Cart.php:111 ../../addon/cart/cart.php:1262 +msgid "Cart Settings" +msgstr "Configuración del carro de la compra" -#: ../../addon/cart/cart.php:1165 -msgid "Call cart_post_" -msgstr "Llamar a cart_post_" +#: ../../addon/cart/myshop.php:30 +msgid "Access Denied." +msgstr "Acceso denegado" -#: ../../addon/cart/cart.php:1195 -msgid "Cart Not Enabled (profile: " -msgstr "El carro no está habilitado (perfil: " +#: ../../addon/cart/myshop.php:111 ../../addon/cart/cart.php:1330 +msgid "Order Not Found" +msgstr "No se ha encontrado el pedido" -#: ../../addon/cart/cart.php:1226 ../../addon/cart/manual_payments.php:36 +#: ../../addon/cart/myshop.php:186 ../../addon/cart/myshop.php:220 +#: ../../addon/cart/myshop.php:269 ../../addon/cart/myshop.php:327 +msgid "Invalid Item" +msgstr "Elemento no válido" + +#: ../../addon/cart/cart.php:159 +msgid "DB Cleanup Failure" +msgstr "Fallo de limpieza de la base de datos" + +#: ../../addon/cart/cart.php:564 +msgid "[cart] Item Added" +msgstr "[cesta] Artículo añadido" + +#: ../../addon/cart/cart.php:952 +msgid "Order already checked out." +msgstr "El pedido ya ha sido revisado" + +#: ../../addon/cart/cart.php:1255 +msgid "Drop database tables when uninstalling." +msgstr "Eliminar tablas de la base de datos al desinstalar." + +#: ../../addon/cart/cart.php:1274 ../../addon/cart/cart.php:1277 +msgid "Shop" +msgstr "Comprar" + +#: ../../addon/cart/cart.php:1391 +msgid "Cart utilities for orders and payments" +msgstr "Utilidades del carro para pedidos y pagos" + +#: ../../addon/cart/cart.php:1429 +msgid "You must be logged into the Grid to shop." +msgstr "Debe iniciar sesión en la red para comprar." + +#: ../../addon/cart/cart.php:1462 +#: ../../addon/cart/submodules/paypalbutton.php:392 +#: ../../addon/cart/manual_payments.php:38 msgid "Order not found." msgstr "El pedido no se ha encontrado." -#: ../../addon/cart/cart.php:1262 ../../addon/cart/cart.php:1389 +#: ../../addon/cart/cart.php:1470 +msgid "Access denied." +msgstr "Acceso denegado" + +#: ../../addon/cart/cart.php:1522 ../../addon/cart/cart.php:1665 msgid "No Order Found" msgstr "No se ha encontrado ningún pedido" -#: ../../addon/cart/cart.php:1270 -msgid "call: " -msgstr "llamar: " - -#: ../../addon/cart/cart.php:1273 +#: ../../addon/cart/cart.php:1531 msgid "An unknown error has occurred Please start again." msgstr "Se ha producido un error desconocido Vuelva a empezar." -#: ../../addon/cart/cart.php:1414 +#: ../../addon/cart/cart.php:1698 msgid "Invalid Payment Type. Please start again." msgstr "Tipo de pago no válido. Por favor, empiece de nuevo." -#: ../../addon/cart/cart.php:1421 +#: ../../addon/cart/cart.php:1705 msgid "Order not found" msgstr "El pedido no se ha encontrado" -#: ../../addon/cart/manual_payments.php:9 +#: ../../addon/cart/submodules/paypalbutton.php:85 +msgid "Enable Paypal Button Module" +msgstr "Habilitar el módulo del botón de Paypal" + +#: ../../addon/cart/submodules/paypalbutton.php:93 +msgid "Use Production Key" +msgstr "Utilizar clave en entorno de producción" + +#: ../../addon/cart/submodules/paypalbutton.php:100 +msgid "Paypal Sandbox Client Key" +msgstr "Clave de cliente en el entorno de pruebas de Paypal" + +#: ../../addon/cart/submodules/paypalbutton.php:107 +msgid "Paypal Sandbox Secret Key" +msgstr "Clave secreta en el entorno de pruebas de Paypal" + +#: ../../addon/cart/submodules/paypalbutton.php:113 +msgid "Paypal Production Client Key" +msgstr "Clave de cliente en el entorno de producción de Paypal" + +#: ../../addon/cart/submodules/paypalbutton.php:120 +msgid "Paypal Production Secret Key" +msgstr "Clave secreta en el entorno de producción de Paypal" + +#: ../../addon/cart/submodules/paypalbutton.php:252 +msgid "Paypal button payments are not enabled." +msgstr "Los pagos con el botón de Paypal no están habilitados." + +#: ../../addon/cart/submodules/paypalbutton.php:270 +msgid "" +"Paypal button payments are not properly configured. Please choose another " +"payment option." +msgstr "Los pagos con el botón de Paypal no están configurados correctamente. Por favor, elija otra opción de pago." + +#: ../../addon/cart/submodules/manualcat.php:61 +msgid "Enable Manual Cart Module" +msgstr "Habilitar el módulo de carro manual" + +#: ../../addon/cart/submodules/manualcat.php:173 +#: ../../addon/cart/submodules/hzservices.php:160 +msgid "New Sku" +msgstr "Nuevo SKU (número de referencia)" + +#: ../../addon/cart/submodules/manualcat.php:209 +#: ../../addon/cart/submodules/hzservices.php:195 +msgid "Cannot save edits to locked item." +msgstr "No se pueden guardar las ediciones en el elemento bloqueado." + +#: ../../addon/cart/submodules/manualcat.php:252 +#: ../../addon/cart/submodules/hzservices.php:644 +msgid "Changes Locked" +msgstr "Cambios bloqueados" + +#: ../../addon/cart/submodules/manualcat.php:256 +#: ../../addon/cart/submodules/hzservices.php:648 +msgid "Item available for purchase." +msgstr "Artículo disponible para la compra." + +#: ../../addon/cart/submodules/manualcat.php:263 +#: ../../addon/cart/submodules/hzservices.php:655 +msgid "Price" +msgstr "Precio" + +#: ../../addon/cart/submodules/hzservices.php:62 +msgid "Enable Hubzilla Services Module" +msgstr "Habilitar el Módulo de Servicios de Hubzilla" + +#: ../../addon/cart/submodules/hzservices.php:243 +#: ../../addon/cart/submodules/hzservices.php:330 +msgid "SKU not found." +msgstr "No se ha encontrado el SKU" + +#: ../../addon/cart/submodules/hzservices.php:296 +#: ../../addon/cart/submodules/hzservices.php:300 +msgid "Invalid Activation Directive." +msgstr "Directiva de activación no válida." + +#: ../../addon/cart/submodules/hzservices.php:371 +#: ../../addon/cart/submodules/hzservices.php:375 +msgid "Invalid Deactivation Directive." +msgstr "Directiva de desactivación no válida" + +#: ../../addon/cart/submodules/hzservices.php:561 +msgid "Add to this privacy group" +msgstr "Añadir a este grupo de canales" + +#: ../../addon/cart/submodules/hzservices.php:577 +msgid "Set user service class" +msgstr "Configurar la clase de servicio al usuario" + +#: ../../addon/cart/submodules/hzservices.php:604 +msgid "You must be using a local account to purchase this service." +msgstr "Usted debe estar usando una cuenta local para comprar este servicio." + +#: ../../addon/cart/submodules/hzservices.php:659 +msgid "Add buyer to privacy group" +msgstr "Agregar comprador al grupo de canales" + +#: ../../addon/cart/submodules/hzservices.php:664 +msgid "Add buyer as connection" +msgstr "Añadir comprador como conexión" + +#: ../../addon/cart/submodules/hzservices.php:672 +#: ../../addon/cart/submodules/hzservices.php:714 +msgid "Set Service Class" +msgstr "Establecer clase de servicio" + +#: ../../addon/cart/submodules/subscriptions.php:151 +msgid "Enable Subscription Management Module" +msgstr "Habilitar el módulo de gestión de suscripciones" + +#: ../../addon/cart/submodules/subscriptions.php:223 +msgid "" +"Cannot include subscription items with different terms in the same order." +msgstr "No se pueden incluir artículos de suscripción con términos diferentes en el mismo orden." + +#: ../../addon/cart/submodules/subscriptions.php:365 +msgid "Select Subscription to Edit" +msgstr "Seleccione suscripción a editar" + +#: ../../addon/cart/submodules/subscriptions.php:371 +msgid "Edit Subscriptions" +msgstr "Editar suscripciones" + +#: ../../addon/cart/submodules/subscriptions.php:405 +msgid "Subscription SKU" +msgstr "SKU de la suscripción" + +#: ../../addon/cart/submodules/subscriptions.php:410 +msgid "Catalog Description" +msgstr "Descripción del catálogo" + +#: ../../addon/cart/submodules/subscriptions.php:414 +msgid "Subscription available for purchase." +msgstr "Suscripción disponible para la compra." + +#: ../../addon/cart/submodules/subscriptions.php:419 +msgid "Maximum active subscriptions to this item per account." +msgstr "Máximo de suscripciones activas a este artículo por cuenta." + +#: ../../addon/cart/submodules/subscriptions.php:422 +msgid "Subscription price." +msgstr "Precio de la suscripción." + +#: ../../addon/cart/submodules/subscriptions.php:426 +msgid "Quantity" +msgstr "Cuantía" + +#: ../../addon/cart/submodules/subscriptions.php:430 +msgid "Term" +msgstr "Condición" + +#: ../../addon/cart/manual_payments.php:7 msgid "Error: order mismatch. Please try again." msgstr "Error: desajuste de pedidos. Por favor, inténtelo de nuevo." -#: ../../addon/cart/manual_payments.php:29 +#: ../../addon/cart/manual_payments.php:31 msgid "Manual payments are not enabled." msgstr "Los pagos manuales no están habilitados." -#: ../../addon/cart/manual_payments.php:44 +#: ../../addon/cart/manual_payments.php:47 msgid "Finished" msgstr "Terminado" @@ -11461,15 +12346,13 @@ msgid "" "return key" msgstr "¡Bienvenido/a a Hubzilla! ¿Quiere hacer un recorrido por la interfaz de usuario?

    Puede detenerlo en cualquier momento y continuar donde lo dejó recargando la página o navegando a otra.

    También puede avanzar pulsando la tecla de retorno" -#: ../../addon/sendzid/sendzid.php:25 -msgid "Extended Identity Sharing" -msgstr "Compartir identidad extendida" +#: ../../addon/sendzid/Mod_Sendzid.php:14 +msgid "Send your identity to all websites" +msgstr "Enviar su identidad a todos los sitios web" -#: ../../addon/sendzid/sendzid.php:26 -msgid "" -"Share your identity with all websites on the internet. When disabled, " -"identity is only shared with $Projectname sites." -msgstr "Compartir su identidad con todos los sitios web en Internet. Cuando está deshabilitado, la identidad sólo se comparte con sitios de $Projectname." +#: ../../addon/sendzid/Mod_Sendzid.php:32 +msgid "Send ZID" +msgstr "Enviar ZID" #: ../../addon/tictac/tictac.php:21 msgid "Three Dimensional Tic-Tac-Toe" @@ -11537,21 +12420,14 @@ msgstr "Ajustes del encabezado de página" msgid "pageheader Settings saved." msgstr "Se han guardado los ajustes del encabezado de página." -#: ../../addon/authchoose/authchoose.php:67 -msgid "Only authenticate automatically to sites of your friends" -msgstr "Autenticación automática solo en los sitios de sus amigos" +#: ../../addon/authchoose/Mod_Authchoose.php:22 +msgid "" +"Allow magic authentication only to websites of your immediate connections" +msgstr "Permitir la autenticación mágica sólo a los sitios web de sus conexiones próximas" -#: ../../addon/authchoose/authchoose.php:67 -msgid "By default you are automatically authenticated anywhere in the network" -msgstr "De forma predeterminada, se autenticará automáticamente en cualquier parte de la red" - -#: ../../addon/authchoose/authchoose.php:71 -msgid "Authchoose Settings" -msgstr "Ajustes de Authchoose" - -#: ../../addon/authchoose/authchoose.php:85 -msgid "Atuhchoose Settings updated." -msgstr "Se han actualizado los ajustes de Atuhchoose." +#: ../../addon/authchoose/Mod_Authchoose.php:39 +msgid "Authchoose" +msgstr "Autoseleccionar" #: ../../addon/moremoods/moremoods.php:19 msgid "lonely" @@ -11740,11 +12616,11 @@ msgstr "Ajustes de publicación en pump.io" msgid "PumpIO Settings saved." msgstr "Se han guardado los ajustes de PumpIO." -#: ../../addon/ldapauth/ldapauth.php:61 +#: ../../addon/ldapauth/ldapauth.php:70 msgid "An account has been created for you." msgstr "Se ha creado una cuenta para usted." -#: ../../addon/ldapauth/ldapauth.php:68 +#: ../../addon/ldapauth/ldapauth.php:77 msgid "Authentication successful but rejected: account creation is disabled." msgstr "Autenticación correcta pero rechazada: la creación de cuentas está deshabilitada." @@ -11852,11 +12728,11 @@ msgstr "Transexual" msgid "Hermaphrodite" msgstr "Hermafrodita" -#: ../../include/selectors.php:49 ../../include/channel.php:1484 +#: ../../include/selectors.php:49 ../../include/channel.php:1491 msgid "Neuter" msgstr "Neutral" -#: ../../include/selectors.php:49 ../../include/channel.php:1486 +#: ../../include/selectors.php:49 ../../include/channel.php:1493 msgid "Non-specific" msgstr "No especificado" @@ -12056,304 +12932,147 @@ msgstr "%1$s ahora está conectado/a con %2$s" msgid "%1$s poked %2$s" msgstr "%1$s ha dado un toque a %2$s" -#: ../../include/conversation.php:251 ../../include/text.php:1129 -#: ../../include/text.php:1133 +#: ../../include/conversation.php:251 ../../include/text.php:1146 +#: ../../include/text.php:1150 msgid "poked" msgstr "ha dado un toque a" -#: ../../include/conversation.php:736 +#: ../../include/conversation.php:739 #, php-format msgid "View %s's profile @ %s" msgstr "Ver el perfil @ %s de %s" -#: ../../include/conversation.php:756 +#: ../../include/conversation.php:759 msgid "Categories:" msgstr "Temas:" -#: ../../include/conversation.php:757 +#: ../../include/conversation.php:760 msgid "Filed under:" msgstr "Archivado bajo:" -#: ../../include/conversation.php:783 +#: ../../include/conversation.php:785 msgid "View in context" msgstr "Mostrar en su contexto" -#: ../../include/conversation.php:884 +#: ../../include/conversation.php:886 msgid "remove" msgstr "eliminar" -#: ../../include/conversation.php:888 +#: ../../include/conversation.php:890 msgid "Loading..." msgstr "Cargando..." -#: ../../include/conversation.php:889 +#: ../../include/conversation.php:892 msgid "Delete Selected Items" msgstr "Eliminar elementos seleccionados" -#: ../../include/conversation.php:932 +#: ../../include/conversation.php:935 msgid "View Source" msgstr "Ver el código fuente de la entrada" -#: ../../include/conversation.php:942 +#: ../../include/conversation.php:945 msgid "Follow Thread" msgstr "Seguir este hilo" -#: ../../include/conversation.php:951 +#: ../../include/conversation.php:954 msgid "Unfollow Thread" msgstr "Dejar de seguir este hilo" -#: ../../include/conversation.php:1062 +#: ../../include/conversation.php:1068 msgid "Edit Connection" msgstr "Editar conexión" -#: ../../include/conversation.php:1072 +#: ../../include/conversation.php:1078 msgid "Message" msgstr "Mensaje" -#: ../../include/conversation.php:1206 +#: ../../include/conversation.php:1212 #, php-format msgid "%s likes this." msgstr "A %s le gusta esto." -#: ../../include/conversation.php:1206 +#: ../../include/conversation.php:1212 #, php-format msgid "%s doesn't like this." msgstr "A %s no le gusta esto." -#: ../../include/conversation.php:1210 +#: ../../include/conversation.php:1216 #, php-format msgid "%2$d people like this." msgid_plural "%2$d people like this." msgstr[0] "a %2$d personas le gusta esto." msgstr[1] "A %2$d personas les gusta esto." -#: ../../include/conversation.php:1212 +#: ../../include/conversation.php:1218 #, php-format msgid "%2$d people don't like this." msgid_plural "%2$d people don't like this." msgstr[0] "a %2$d personas no les gusta esto." msgstr[1] "A %2$d personas no les gusta esto." -#: ../../include/conversation.php:1218 +#: ../../include/conversation.php:1224 msgid "and" msgstr "y" -#: ../../include/conversation.php:1221 +#: ../../include/conversation.php:1227 #, php-format msgid ", and %d other people" msgid_plural ", and %d other people" msgstr[0] ", y %d persona más" msgstr[1] ", y %d personas más" -#: ../../include/conversation.php:1222 +#: ../../include/conversation.php:1228 #, php-format msgid "%s like this." msgstr "A %s le gusta esto." -#: ../../include/conversation.php:1222 +#: ../../include/conversation.php:1228 #, php-format msgid "%s don't like this." msgstr "A %s no le gusta esto." -#: ../../include/conversation.php:1265 -msgid "Set your location" -msgstr "Establecer su ubicación" - -#: ../../include/conversation.php:1266 -msgid "Clear browser location" -msgstr "Eliminar los datos de localización geográfica del navegador" - -#: ../../include/conversation.php:1316 -msgid "Tag term:" -msgstr "Término de la etiqueta:" - -#: ../../include/conversation.php:1317 -msgid "Where are you right now?" -msgstr "¿Donde está ahora?" - -#: ../../include/conversation.php:1322 -msgid "Choose a different album..." -msgstr "Elegir un álbum diferente..." - -#: ../../include/conversation.php:1326 -msgid "Comments enabled" -msgstr "Comentarios habilitados" - -#: ../../include/conversation.php:1327 -msgid "Comments disabled" -msgstr "Comentarios deshabilitados" - -#: ../../include/conversation.php:1375 -msgid "Page link name" -msgstr "Nombre del enlace de la página" - -#: ../../include/conversation.php:1378 -msgid "Post as" -msgstr "Publicar como" - -#: ../../include/conversation.php:1392 -msgid "Toggle voting" -msgstr "Cambiar votación" - -#: ../../include/conversation.php:1395 -msgid "Disable comments" -msgstr "Dehabilitar los comentarios" - -#: ../../include/conversation.php:1396 -msgid "Toggle comments" -msgstr "Activar o desactivar los comentarios" - -#: ../../include/conversation.php:1404 -msgid "Categories (optional, comma-separated list)" -msgstr "Temas (opcional, lista separada por comas)" - -#: ../../include/conversation.php:1427 -msgid "Other networks and post services" -msgstr "Otras redes y servicios de publicación" - -#: ../../include/conversation.php:1433 -msgid "Set publish date" -msgstr "Establecer la fecha de publicación" - -#: ../../include/conversation.php:1693 -msgid "Commented Order" -msgstr "Comentarios recientes" - -#: ../../include/conversation.php:1696 -msgid "Sort by Comment Date" -msgstr "Ordenar por fecha de comentario" - -#: ../../include/conversation.php:1700 -msgid "Posted Order" -msgstr "Publicaciones recientes" - -#: ../../include/conversation.php:1703 -msgid "Sort by Post Date" -msgstr "Ordenar por fecha de publicación" - -#: ../../include/conversation.php:1711 -msgid "Posts that mention or involve you" -msgstr "Publicaciones que le mencionan o involucran" - -#: ../../include/conversation.php:1720 -msgid "Activity Stream - by date" -msgstr "Contenido - por fecha" - -#: ../../include/conversation.php:1726 -msgid "Starred" -msgstr "Preferidas" - -#: ../../include/conversation.php:1729 -msgid "Favourite Posts" -msgstr "Publicaciones favoritas" - -#: ../../include/conversation.php:1736 -msgid "Spam" -msgstr "Correo basura" - -#: ../../include/conversation.php:1739 -msgid "Posts flagged as SPAM" -msgstr "Publicaciones marcadas como basura" - -#: ../../include/conversation.php:1814 ../../include/nav.php:381 -msgid "Status Messages and Posts" -msgstr "Mensajes de estado y publicaciones" - -#: ../../include/conversation.php:1827 ../../include/nav.php:394 -msgid "Profile Details" -msgstr "Detalles del perfil" - -#: ../../include/conversation.php:1837 ../../include/nav.php:404 -#: ../../include/photos.php:666 -msgid "Photo Albums" -msgstr "Álbumes de fotos" - -#: ../../include/conversation.php:1845 ../../include/nav.php:412 -msgid "Files and Storage" -msgstr "Ficheros y repositorio" - -#: ../../include/conversation.php:1882 ../../include/nav.php:447 -msgid "Bookmarks" -msgstr "Marcadores" - -#: ../../include/conversation.php:1885 ../../include/nav.php:450 -msgid "Saved Bookmarks" -msgstr "Marcadores guardados" - -#: ../../include/conversation.php:1896 ../../include/nav.php:461 -msgid "View Cards" -msgstr "Ver las fichas" - -#: ../../include/conversation.php:1904 -msgid "articles" -msgstr "artículos" - -#: ../../include/conversation.php:1907 ../../include/nav.php:472 -msgid "View Articles" -msgstr "Ver los artículos" - -#: ../../include/conversation.php:1918 ../../include/nav.php:484 -msgid "View Webpages" -msgstr "Ver páginas web" - -#: ../../include/conversation.php:1987 +#: ../../include/conversation.php:1699 msgctxt "noun" msgid "Attending" msgid_plural "Attending" msgstr[0] "Participaré" msgstr[1] "Participaré" -#: ../../include/conversation.php:1990 +#: ../../include/conversation.php:1702 msgctxt "noun" msgid "Not Attending" msgid_plural "Not Attending" msgstr[0] "No participaré" msgstr[1] "No participaré" -#: ../../include/conversation.php:1993 +#: ../../include/conversation.php:1705 msgctxt "noun" msgid "Undecided" msgid_plural "Undecided" msgstr[0] "Indeciso/a" msgstr[1] "Indecisos/as" -#: ../../include/conversation.php:1996 +#: ../../include/conversation.php:1708 msgctxt "noun" msgid "Agree" msgid_plural "Agrees" msgstr[0] "De acuerdo" msgstr[1] "De acuerdo" -#: ../../include/conversation.php:1999 +#: ../../include/conversation.php:1711 msgctxt "noun" msgid "Disagree" msgid_plural "Disagrees" msgstr[0] "En desacuerdo" msgstr[1] "En desacuerdo" -#: ../../include/conversation.php:2002 +#: ../../include/conversation.php:1714 msgctxt "noun" msgid "Abstain" msgid_plural "Abstains" msgstr[0] "se abstiene" msgstr[1] "Se abstienen" -#: ../../include/dir_fns.php:141 -msgid "Directory Options" -msgstr "Opciones del directorio" - -#: ../../include/dir_fns.php:143 -msgid "Safe Mode" -msgstr "Modo seguro" - -#: ../../include/dir_fns.php:144 -msgid "Public Forums Only" -msgstr "Solo foros públicos" - -#: ../../include/dir_fns.php:145 -msgid "This Website Only" -msgstr "Solo este sitio web" - #: ../../include/bookmarks.php:34 #, php-format msgid "%1$s's bookmarks" @@ -12363,373 +13082,378 @@ msgstr "Marcadores de %1$s" msgid "Unable to import a removed channel." msgstr "No se puede importar un canal eliminado." -#: ../../include/import.php:46 +#: ../../include/import.php:51 msgid "" "Cannot create a duplicate channel identifier on this system. Import failed." msgstr "No se ha podido crear un canal con un identificador que ya existe en este sistema. La importación ha fallado." -#: ../../include/import.php:111 +#: ../../include/import.php:117 msgid "Cloned channel not found. Import failed." msgstr "No se ha podido importar el canal porque el canal clonado no se ha encontrado." -#: ../../include/text.php:492 +#: ../../include/text.php:498 msgid "prev" msgstr "anterior" -#: ../../include/text.php:494 +#: ../../include/text.php:500 msgid "first" msgstr "primera" -#: ../../include/text.php:523 +#: ../../include/text.php:529 msgid "last" msgstr "última" -#: ../../include/text.php:526 +#: ../../include/text.php:532 msgid "next" msgstr "próxima" -#: ../../include/text.php:537 +#: ../../include/text.php:543 msgid "older" msgstr "más antiguas" -#: ../../include/text.php:539 +#: ../../include/text.php:545 msgid "newer" msgstr "más recientes" -#: ../../include/text.php:961 +#: ../../include/text.php:969 msgid "No connections" msgstr "Sin conexiones" -#: ../../include/text.php:993 +#: ../../include/text.php:1001 #, php-format msgid "View all %s connections" msgstr "Ver todas las %s conexiones" -#: ../../include/text.php:1129 ../../include/text.php:1133 +#: ../../include/text.php:1057 +#, php-format +msgid "Network: %s" +msgstr "Red %s" + +#: ../../include/text.php:1146 ../../include/text.php:1150 msgid "poke" msgstr "un toque" -#: ../../include/text.php:1134 +#: ../../include/text.php:1151 msgid "ping" msgstr "un \"ping\"" -#: ../../include/text.php:1134 +#: ../../include/text.php:1151 msgid "pinged" msgstr "ha enviado un \"ping\" a" -#: ../../include/text.php:1135 +#: ../../include/text.php:1152 msgid "prod" msgstr "una incitación " -#: ../../include/text.php:1135 +#: ../../include/text.php:1152 msgid "prodded" msgstr "ha incitado a " -#: ../../include/text.php:1136 +#: ../../include/text.php:1153 msgid "slap" msgstr "una bofetada " -#: ../../include/text.php:1136 +#: ../../include/text.php:1153 msgid "slapped" msgstr "ha abofeteado a " -#: ../../include/text.php:1137 +#: ../../include/text.php:1154 msgid "finger" msgstr "un \"finger\" " -#: ../../include/text.php:1137 +#: ../../include/text.php:1154 msgid "fingered" msgstr "envió un \"finger\" a" -#: ../../include/text.php:1138 +#: ../../include/text.php:1155 msgid "rebuff" msgstr "un reproche" -#: ../../include/text.php:1138 +#: ../../include/text.php:1155 msgid "rebuffed" msgstr "ha hecho un reproche a " -#: ../../include/text.php:1161 +#: ../../include/text.php:1178 msgid "happy" msgstr "feliz " -#: ../../include/text.php:1162 +#: ../../include/text.php:1179 msgid "sad" msgstr "triste " -#: ../../include/text.php:1163 +#: ../../include/text.php:1180 msgid "mellow" msgstr "tranquilo/a" -#: ../../include/text.php:1164 +#: ../../include/text.php:1181 msgid "tired" msgstr "cansado/a " -#: ../../include/text.php:1165 +#: ../../include/text.php:1182 msgid "perky" msgstr "vivaz" -#: ../../include/text.php:1166 +#: ../../include/text.php:1183 msgid "angry" msgstr "enfadado/a" -#: ../../include/text.php:1167 +#: ../../include/text.php:1184 msgid "stupefied" msgstr "asombrado/a" -#: ../../include/text.php:1168 +#: ../../include/text.php:1185 msgid "puzzled" msgstr "perplejo/a" -#: ../../include/text.php:1169 +#: ../../include/text.php:1186 msgid "interested" msgstr "interesado/a" -#: ../../include/text.php:1170 +#: ../../include/text.php:1187 msgid "bitter" msgstr "amargado/a" -#: ../../include/text.php:1171 +#: ../../include/text.php:1188 msgid "cheerful" msgstr "alegre" -#: ../../include/text.php:1172 +#: ../../include/text.php:1189 msgid "alive" msgstr "animado/a" -#: ../../include/text.php:1173 +#: ../../include/text.php:1190 msgid "annoyed" msgstr "molesto/a" -#: ../../include/text.php:1174 +#: ../../include/text.php:1191 msgid "anxious" msgstr "ansioso/a" -#: ../../include/text.php:1175 +#: ../../include/text.php:1192 msgid "cranky" msgstr "de mal humor" -#: ../../include/text.php:1176 +#: ../../include/text.php:1193 msgid "disturbed" msgstr "perturbado/a" -#: ../../include/text.php:1177 +#: ../../include/text.php:1194 msgid "frustrated" msgstr "frustrado/a" -#: ../../include/text.php:1178 +#: ../../include/text.php:1195 msgid "depressed" msgstr "deprimido/a" -#: ../../include/text.php:1179 +#: ../../include/text.php:1196 msgid "motivated" msgstr "motivado/a" -#: ../../include/text.php:1180 +#: ../../include/text.php:1197 msgid "relaxed" msgstr "relajado/a" -#: ../../include/text.php:1181 +#: ../../include/text.php:1198 msgid "surprised" msgstr "sorprendido/a" -#: ../../include/text.php:1360 ../../include/js_strings.php:76 +#: ../../include/text.php:1377 ../../include/js_strings.php:86 msgid "Monday" msgstr "lunes" -#: ../../include/text.php:1360 ../../include/js_strings.php:77 +#: ../../include/text.php:1377 ../../include/js_strings.php:87 msgid "Tuesday" msgstr "martes" -#: ../../include/text.php:1360 ../../include/js_strings.php:78 +#: ../../include/text.php:1377 ../../include/js_strings.php:88 msgid "Wednesday" msgstr "miércoles" -#: ../../include/text.php:1360 ../../include/js_strings.php:79 +#: ../../include/text.php:1377 ../../include/js_strings.php:89 msgid "Thursday" msgstr "jueves" -#: ../../include/text.php:1360 ../../include/js_strings.php:80 +#: ../../include/text.php:1377 ../../include/js_strings.php:90 msgid "Friday" msgstr "viernes" -#: ../../include/text.php:1360 ../../include/js_strings.php:81 +#: ../../include/text.php:1377 ../../include/js_strings.php:91 msgid "Saturday" msgstr "sábado" -#: ../../include/text.php:1360 ../../include/js_strings.php:75 +#: ../../include/text.php:1377 ../../include/js_strings.php:85 msgid "Sunday" msgstr "domingo" -#: ../../include/text.php:1364 ../../include/js_strings.php:51 +#: ../../include/text.php:1381 ../../include/js_strings.php:61 msgid "January" msgstr "enero" -#: ../../include/text.php:1364 ../../include/js_strings.php:52 +#: ../../include/text.php:1381 ../../include/js_strings.php:62 msgid "February" msgstr "febrero" -#: ../../include/text.php:1364 ../../include/js_strings.php:53 +#: ../../include/text.php:1381 ../../include/js_strings.php:63 msgid "March" msgstr "marzo" -#: ../../include/text.php:1364 ../../include/js_strings.php:54 +#: ../../include/text.php:1381 ../../include/js_strings.php:64 msgid "April" msgstr "abril" -#: ../../include/text.php:1364 +#: ../../include/text.php:1381 msgid "May" msgstr "mayo" -#: ../../include/text.php:1364 ../../include/js_strings.php:56 +#: ../../include/text.php:1381 ../../include/js_strings.php:66 msgid "June" msgstr "junio" -#: ../../include/text.php:1364 ../../include/js_strings.php:57 +#: ../../include/text.php:1381 ../../include/js_strings.php:67 msgid "July" msgstr "julio" -#: ../../include/text.php:1364 ../../include/js_strings.php:58 +#: ../../include/text.php:1381 ../../include/js_strings.php:68 msgid "August" msgstr "agosto" -#: ../../include/text.php:1364 ../../include/js_strings.php:59 +#: ../../include/text.php:1381 ../../include/js_strings.php:69 msgid "September" msgstr "septiembre" -#: ../../include/text.php:1364 ../../include/js_strings.php:60 +#: ../../include/text.php:1381 ../../include/js_strings.php:70 msgid "October" msgstr "octubre" -#: ../../include/text.php:1364 ../../include/js_strings.php:61 +#: ../../include/text.php:1381 ../../include/js_strings.php:71 msgid "November" msgstr "noviembre" -#: ../../include/text.php:1364 ../../include/js_strings.php:62 +#: ../../include/text.php:1381 ../../include/js_strings.php:72 msgid "December" msgstr "diciembre" -#: ../../include/text.php:1428 ../../include/text.php:1432 +#: ../../include/text.php:1455 msgid "Unknown Attachment" msgstr "Adjunto no reconocido" -#: ../../include/text.php:1434 ../../include/feedutils.php:860 +#: ../../include/text.php:1457 ../../include/feedutils.php:860 msgid "unknown" msgstr "desconocido" -#: ../../include/text.php:1470 +#: ../../include/text.php:1493 msgid "remove category" msgstr "eliminar el tema" -#: ../../include/text.php:1544 +#: ../../include/text.php:1567 msgid "remove from file" msgstr "eliminar del fichero" -#: ../../include/text.php:1686 ../../include/message.php:12 +#: ../../include/text.php:1709 ../../include/message.php:13 msgid "Download binary/encrypted content" msgstr "Descargar contenido binario o cifrado" -#: ../../include/text.php:1849 ../../include/language.php:397 +#: ../../include/text.php:1872 ../../include/language.php:397 msgid "default" msgstr "por defecto" -#: ../../include/text.php:1857 +#: ../../include/text.php:1880 msgid "Page layout" msgstr "Plantilla de la página" -#: ../../include/text.php:1857 +#: ../../include/text.php:1880 msgid "You can create your own with the layouts tool" msgstr "Puede crear su propia disposición gráfica con la herramienta de plantillas" -#: ../../include/text.php:1868 +#: ../../include/text.php:1891 msgid "HTML" msgstr "HTML" -#: ../../include/text.php:1871 +#: ../../include/text.php:1894 msgid "Comanche Layout" msgstr "Plantilla de Comanche" -#: ../../include/text.php:1876 +#: ../../include/text.php:1899 msgid "PHP" msgstr "PHP" -#: ../../include/text.php:1885 +#: ../../include/text.php:1908 msgid "Page content type" msgstr "Tipo de contenido de la página" -#: ../../include/text.php:2018 +#: ../../include/text.php:2041 msgid "activity" msgstr "la/su actividad" -#: ../../include/text.php:2100 +#: ../../include/text.php:2142 msgid "a-z, 0-9, -, and _ only" msgstr "a-z, 0-9, -, and _ only" -#: ../../include/text.php:2419 +#: ../../include/text.php:2462 msgid "Design Tools" msgstr "Herramientas de diseño web" -#: ../../include/text.php:2425 +#: ../../include/text.php:2468 msgid "Pages" msgstr "Páginas" -#: ../../include/text.php:2447 +#: ../../include/text.php:2490 msgid "Import website..." msgstr "Importar un sitio web..." -#: ../../include/text.php:2448 +#: ../../include/text.php:2491 msgid "Select folder to import" msgstr "Seleccionar la carpeta que se va a importar" -#: ../../include/text.php:2449 +#: ../../include/text.php:2492 msgid "Import from a zipped folder:" msgstr "Importar desde una carpeta comprimida: " -#: ../../include/text.php:2450 +#: ../../include/text.php:2493 msgid "Import from cloud files:" msgstr "Importar desde los ficheros en la nube: " -#: ../../include/text.php:2451 +#: ../../include/text.php:2494 msgid "/cloud/channel/path/to/folder" msgstr "/cloud/canal/ruta/a la/carpeta" -#: ../../include/text.php:2452 +#: ../../include/text.php:2495 msgid "Enter path to website files" msgstr "Ruta a los ficheros del sitio web" -#: ../../include/text.php:2453 +#: ../../include/text.php:2496 msgid "Select folder" msgstr "Seleccionar la carpeta" -#: ../../include/text.php:2454 +#: ../../include/text.php:2497 msgid "Export website..." msgstr "Exportar un sitio web..." -#: ../../include/text.php:2455 +#: ../../include/text.php:2498 msgid "Export to a zip file" msgstr "Exportar a un fichero comprimido .zip" -#: ../../include/text.php:2456 +#: ../../include/text.php:2499 msgid "website.zip" msgstr "sitio_web.zip" -#: ../../include/text.php:2457 +#: ../../include/text.php:2500 msgid "Enter a name for the zip file." msgstr "Escriba un nombre para el fichero zip." -#: ../../include/text.php:2458 +#: ../../include/text.php:2501 msgid "Export to cloud files" msgstr "Exportar a la nube de ficheros" -#: ../../include/text.php:2459 +#: ../../include/text.php:2502 msgid "/path/to/export/folder" msgstr "/ruta/para/exportar/carpeta" -#: ../../include/text.php:2460 +#: ../../include/text.php:2503 msgid "Enter a path to a cloud files destination." msgstr "Escriba una ruta de destino a la nube de ficheros." -#: ../../include/text.php:2461 +#: ../../include/text.php:2504 msgid "Specify folder" msgstr "Especificar una carpeta" @@ -12777,7 +13501,7 @@ msgstr "Conexiones comunes" msgid "View all %d common connections" msgstr "Ver todas las %d conexiones comunes" -#: ../../include/markdown.php:158 ../../include/bbcode.php:356 +#: ../../include/markdown.php:200 ../../include/bbcode.php:358 #, php-format msgid "%1$s wrote the following %2$s %3$s" msgstr "%1$s escribió %2$s siguiente %3$s" @@ -12885,199 +13609,241 @@ msgstr "Por favor, introduzca una dirección de enlace" msgid "Unsaved changes. Are you sure you wish to leave this page?" msgstr "Cambios no guardados. ¿Está seguro de que desea abandonar la página?" +#: ../../include/js_strings.php:26 +msgid "lovely" +msgstr "encantador" + +#: ../../include/js_strings.php:27 +msgid "wonderful" +msgstr "fabuloso" + +#: ../../include/js_strings.php:28 +msgid "fantastic" +msgstr "fantástico" + +#: ../../include/js_strings.php:29 +msgid "great" +msgstr "grandioso" + +#: ../../include/js_strings.php:30 +msgid "" +"Your chosen nickname was either already taken or not valid. Please use our " +"suggestion (" +msgstr "El nombre de usuario elegido ya está en uso o no es válido. Por favor, utilice nuestra sugerencia (" + #: ../../include/js_strings.php:31 +msgid ") or enter a new one." +msgstr ") o introduzca uno nuevo." + +#: ../../include/js_strings.php:32 +msgid "Thank you, this nickname is valid." +msgstr "Gracias, este alias es válido." + +#: ../../include/js_strings.php:33 +msgid "A channel name is required." +msgstr "Se requiere un nombre de canal" + +#: ../../include/js_strings.php:34 +msgid "This is a " +msgstr "Esto es un " + +#: ../../include/js_strings.php:35 +msgid " channel name" +msgstr "nombre de canal" + +#: ../../include/js_strings.php:41 msgid "timeago.prefixAgo" msgstr "hace " -#: ../../include/js_strings.php:32 +#: ../../include/js_strings.php:42 msgid "timeago.prefixFromNow" msgstr "en " -#: ../../include/js_strings.php:33 +#: ../../include/js_strings.php:43 msgid "timeago.suffixAgo" msgstr "NONE" -#: ../../include/js_strings.php:34 +#: ../../include/js_strings.php:44 msgid "timeago.suffixFromNow" msgstr "NONE" -#: ../../include/js_strings.php:37 +#: ../../include/js_strings.php:47 msgid "less than a minute" msgstr "menos de un minuto" -#: ../../include/js_strings.php:38 +#: ../../include/js_strings.php:48 msgid "about a minute" msgstr "alrededor de un minuto" -#: ../../include/js_strings.php:39 +#: ../../include/js_strings.php:49 #, php-format msgid "%d minutes" msgstr "%d minutos" -#: ../../include/js_strings.php:40 +#: ../../include/js_strings.php:50 msgid "about an hour" msgstr "alrededor de una hora" -#: ../../include/js_strings.php:41 +#: ../../include/js_strings.php:51 #, php-format msgid "about %d hours" msgstr "alrededor de %d horas" -#: ../../include/js_strings.php:42 +#: ../../include/js_strings.php:52 msgid "a day" msgstr "un día" -#: ../../include/js_strings.php:43 +#: ../../include/js_strings.php:53 #, php-format msgid "%d days" msgstr "%d días" -#: ../../include/js_strings.php:44 +#: ../../include/js_strings.php:54 msgid "about a month" msgstr "alrededor de un mes" -#: ../../include/js_strings.php:45 +#: ../../include/js_strings.php:55 #, php-format msgid "%d months" msgstr "%d meses" -#: ../../include/js_strings.php:46 +#: ../../include/js_strings.php:56 msgid "about a year" msgstr "alrededor de un año" -#: ../../include/js_strings.php:47 +#: ../../include/js_strings.php:57 #, php-format msgid "%d years" msgstr "%d años" -#: ../../include/js_strings.php:48 +#: ../../include/js_strings.php:58 msgid " " msgstr " " -#: ../../include/js_strings.php:49 +#: ../../include/js_strings.php:59 msgid "timeago.numbers" msgstr "timeago.numbers" -#: ../../include/js_strings.php:55 +#: ../../include/js_strings.php:65 msgctxt "long" msgid "May" msgstr "mayo" -#: ../../include/js_strings.php:63 +#: ../../include/js_strings.php:73 msgid "Jan" msgstr "ene" -#: ../../include/js_strings.php:64 +#: ../../include/js_strings.php:74 msgid "Feb" msgstr "feb" -#: ../../include/js_strings.php:65 +#: ../../include/js_strings.php:75 msgid "Mar" msgstr "mar" -#: ../../include/js_strings.php:66 +#: ../../include/js_strings.php:76 msgid "Apr" msgstr "abr" -#: ../../include/js_strings.php:67 +#: ../../include/js_strings.php:77 msgctxt "short" msgid "May" msgstr "may" -#: ../../include/js_strings.php:68 +#: ../../include/js_strings.php:78 msgid "Jun" msgstr "jun" -#: ../../include/js_strings.php:69 +#: ../../include/js_strings.php:79 msgid "Jul" msgstr "jul" -#: ../../include/js_strings.php:70 +#: ../../include/js_strings.php:80 msgid "Aug" msgstr "ago" -#: ../../include/js_strings.php:71 +#: ../../include/js_strings.php:81 msgid "Sep" msgstr "sep" -#: ../../include/js_strings.php:72 +#: ../../include/js_strings.php:82 msgid "Oct" msgstr "oct" -#: ../../include/js_strings.php:73 +#: ../../include/js_strings.php:83 msgid "Nov" msgstr "nov" -#: ../../include/js_strings.php:74 +#: ../../include/js_strings.php:84 msgid "Dec" msgstr "dic" -#: ../../include/js_strings.php:82 +#: ../../include/js_strings.php:92 msgid "Sun" msgstr "dom" -#: ../../include/js_strings.php:83 +#: ../../include/js_strings.php:93 msgid "Mon" msgstr "lun" -#: ../../include/js_strings.php:84 +#: ../../include/js_strings.php:94 msgid "Tue" msgstr "mar" -#: ../../include/js_strings.php:85 +#: ../../include/js_strings.php:95 msgid "Wed" msgstr "mié" -#: ../../include/js_strings.php:86 +#: ../../include/js_strings.php:96 msgid "Thu" msgstr "jue" -#: ../../include/js_strings.php:87 +#: ../../include/js_strings.php:97 msgid "Fri" msgstr "vie" -#: ../../include/js_strings.php:88 +#: ../../include/js_strings.php:98 msgid "Sat" msgstr "sáb" -#: ../../include/js_strings.php:89 +#: ../../include/js_strings.php:99 msgctxt "calendar" msgid "today" msgstr "hoy" -#: ../../include/js_strings.php:90 +#: ../../include/js_strings.php:100 msgctxt "calendar" msgid "month" msgstr "mes" -#: ../../include/js_strings.php:91 +#: ../../include/js_strings.php:101 msgctxt "calendar" msgid "week" msgstr "semana" -#: ../../include/js_strings.php:92 +#: ../../include/js_strings.php:102 msgctxt "calendar" msgid "day" msgstr "día" -#: ../../include/js_strings.php:93 +#: ../../include/js_strings.php:103 msgctxt "calendar" msgid "All day" msgstr "Todos los días" -#: ../../include/message.php:40 +#: ../../include/message.php:41 msgid "Unable to determine sender." msgstr "No ha sido posible determinar el remitente. " -#: ../../include/message.php:79 +#: ../../include/message.php:80 msgid "No recipient provided." msgstr "No se ha especificado ningún destinatario." -#: ../../include/message.php:84 +#: ../../include/message.php:85 msgid "[no subject]" msgstr "[sin asunto]" -#: ../../include/message.php:214 +#: ../../include/message.php:215 msgid "Stored post could not be verified." msgstr "No se han podido verificar las publicaciones guardadas." @@ -13104,65 +13870,69 @@ msgstr "Visitar %2$s de %1$s" msgid "%1$s has an updated %2$s, changing %3$s." msgstr "%1$s ha actualizado %2$s, cambiando %3$s." -#: ../../include/attach.php:265 ../../include/attach.php:361 +#: ../../include/attach.php:265 ../../include/attach.php:374 msgid "Item was not found." msgstr "Elemento no encontrado." -#: ../../include/attach.php:554 +#: ../../include/attach.php:282 +msgid "Unknown error." +msgstr "Error desconocido" + +#: ../../include/attach.php:567 msgid "No source file." msgstr "Ningún fichero de origen" -#: ../../include/attach.php:576 +#: ../../include/attach.php:589 msgid "Cannot locate file to replace" msgstr "No se puede localizar el fichero que va a ser sustituido." -#: ../../include/attach.php:595 +#: ../../include/attach.php:608 msgid "Cannot locate file to revise/update" msgstr "No se puede localizar el fichero para revisar/actualizar" -#: ../../include/attach.php:737 +#: ../../include/attach.php:750 #, php-format msgid "File exceeds size limit of %d" msgstr "El fichero supera el limite de tamaño de %d" -#: ../../include/attach.php:758 +#: ../../include/attach.php:771 #, php-format msgid "You have reached your limit of %1$.0f Mbytes attachment storage." msgstr "Ha alcanzado su límite de %1$.0f Mbytes de almacenamiento de adjuntos." -#: ../../include/attach.php:940 +#: ../../include/attach.php:953 msgid "File upload failed. Possible system limit or action terminated." msgstr "Error de carga, posiblemente por limite del sistema o porque la acción ha finalizado." -#: ../../include/attach.php:969 +#: ../../include/attach.php:982 msgid "Stored file could not be verified. Upload failed." msgstr "El fichero almacenado no ha podido ser verificado. El envío ha fallado." -#: ../../include/attach.php:1043 ../../include/attach.php:1059 +#: ../../include/attach.php:1056 ../../include/attach.php:1072 msgid "Path not available." msgstr "Ruta no disponible." -#: ../../include/attach.php:1108 ../../include/attach.php:1273 +#: ../../include/attach.php:1121 ../../include/attach.php:1286 msgid "Empty pathname" msgstr "Ruta vacía" -#: ../../include/attach.php:1134 +#: ../../include/attach.php:1147 msgid "duplicate filename or path" msgstr "Nombre duplicado de ruta o fichero" -#: ../../include/attach.php:1159 +#: ../../include/attach.php:1172 msgid "Path not found." msgstr "Ruta no encontrada" -#: ../../include/attach.php:1227 +#: ../../include/attach.php:1240 msgid "mkdir failed." msgstr "mkdir ha fallado." -#: ../../include/attach.php:1231 +#: ../../include/attach.php:1244 msgid "database storage failed." msgstr "el almacenamiento en la base de datos ha fallado." -#: ../../include/attach.php:1279 +#: ../../include/attach.php:1292 msgid "Empty path" msgstr "Ruta vacía" @@ -13172,221 +13942,221 @@ msgid "" "form has been opened for too long (>3 hours) before submitting it." msgstr "El \"token\" de seguridad del formulario no es correcto. Esto ha ocurrido probablemente porque el formulario ha estado abierto demasiado tiempo (>3 horas) antes de ser enviado" -#: ../../include/items.php:885 ../../include/items.php:945 +#: ../../include/items.php:911 ../../include/items.php:971 msgid "(Unknown)" msgstr "(Desconocido)" -#: ../../include/items.php:1133 +#: ../../include/items.php:1157 msgid "Visible to anybody on the internet." msgstr "Visible para cualquiera en internet." -#: ../../include/items.php:1135 +#: ../../include/items.php:1159 msgid "Visible to you only." msgstr "Visible sólo para usted." -#: ../../include/items.php:1137 +#: ../../include/items.php:1161 msgid "Visible to anybody in this network." msgstr "Visible para cualquiera en esta red." -#: ../../include/items.php:1139 +#: ../../include/items.php:1163 msgid "Visible to anybody authenticated." msgstr "Visible para cualquiera que esté autenticado." -#: ../../include/items.php:1141 +#: ../../include/items.php:1165 #, php-format msgid "Visible to anybody on %s." msgstr "Visible para cualquiera en %s." -#: ../../include/items.php:1143 +#: ../../include/items.php:1167 msgid "Visible to all connections." msgstr "Visible para todas las conexiones." -#: ../../include/items.php:1145 +#: ../../include/items.php:1169 msgid "Visible to approved connections." msgstr "Visible para las conexiones permitidas." -#: ../../include/items.php:1147 +#: ../../include/items.php:1171 msgid "Visible to specific connections." msgstr "Visible para conexiones específicas." -#: ../../include/items.php:4197 +#: ../../include/items.php:4183 msgid "Privacy group is empty." msgstr "El grupo de canales está vacío." -#: ../../include/items.php:4204 +#: ../../include/items.php:4190 #, php-format msgid "Privacy group: %s" msgstr "Grupo de canales: %s" -#: ../../include/items.php:4216 +#: ../../include/items.php:4202 msgid "Connection not found." msgstr "Conexión no encontrada" -#: ../../include/items.php:4565 +#: ../../include/items.php:4551 msgid "profile photo" msgstr "foto del perfil" -#: ../../include/items.php:4756 +#: ../../include/items.php:4742 #, php-format msgid "[Edited %s]" msgstr "[se ha editado %s]" -#: ../../include/items.php:4756 +#: ../../include/items.php:4742 msgctxt "edit_activity" msgid "Post" msgstr "Publicar" -#: ../../include/items.php:4756 +#: ../../include/items.php:4742 msgctxt "edit_activity" msgid "Comment" msgstr "Comentar" -#: ../../include/channel.php:35 +#: ../../include/channel.php:42 msgid "Unable to obtain identity information from database" msgstr "No ha sido posible obtener información sobre la identidad desde la base de datos" -#: ../../include/channel.php:68 +#: ../../include/channel.php:75 msgid "Empty name" msgstr "Nombre vacío" -#: ../../include/channel.php:71 +#: ../../include/channel.php:78 msgid "Name too long" msgstr "Nombre demasiado largo" -#: ../../include/channel.php:188 +#: ../../include/channel.php:195 msgid "No account identifier" msgstr "Ningún identificador de la cuenta" -#: ../../include/channel.php:200 +#: ../../include/channel.php:207 msgid "Nickname is required." msgstr "Se requiere un sobrenombre (alias)." -#: ../../include/channel.php:277 +#: ../../include/channel.php:284 msgid "Unable to retrieve created identity" msgstr "No ha sido posible recuperar la identidad creada" -#: ../../include/channel.php:373 +#: ../../include/channel.php:380 msgid "Default Profile" msgstr "Perfil principal" -#: ../../include/channel.php:532 ../../include/channel.php:621 +#: ../../include/channel.php:539 ../../include/channel.php:628 msgid "Unable to retrieve modified identity" msgstr "No se puede recuperar la identidad modficada" -#: ../../include/channel.php:1297 +#: ../../include/channel.php:1304 msgid "Create New Profile" msgstr "Crear un nuevo perfil" -#: ../../include/channel.php:1318 +#: ../../include/channel.php:1325 msgid "Visible to everybody" msgstr "Visible para todos" -#: ../../include/channel.php:1395 ../../include/channel.php:1523 +#: ../../include/channel.php:1402 ../../include/channel.php:1530 msgid "Gender:" msgstr "Género:" -#: ../../include/channel.php:1397 ../../include/channel.php:1591 +#: ../../include/channel.php:1404 ../../include/channel.php:1598 msgid "Homepage:" msgstr "Página personal:" -#: ../../include/channel.php:1398 +#: ../../include/channel.php:1405 msgid "Online Now" msgstr "Ahora en línea" -#: ../../include/channel.php:1451 +#: ../../include/channel.php:1458 msgid "Change your profile photo" msgstr "Cambiar su foto del perfil" -#: ../../include/channel.php:1482 +#: ../../include/channel.php:1489 msgid "Trans" msgstr "Trans" -#: ../../include/channel.php:1528 +#: ../../include/channel.php:1535 msgid "Like this channel" msgstr "Me gusta este canal" -#: ../../include/channel.php:1552 +#: ../../include/channel.php:1559 msgid "j F, Y" msgstr "j F Y" -#: ../../include/channel.php:1553 +#: ../../include/channel.php:1560 msgid "j F" msgstr "j F" -#: ../../include/channel.php:1560 +#: ../../include/channel.php:1567 msgid "Birthday:" msgstr "Cumpleaños:" -#: ../../include/channel.php:1573 +#: ../../include/channel.php:1580 #, php-format msgid "for %1$d %2$s" msgstr "por %1$d %2$s" -#: ../../include/channel.php:1585 +#: ../../include/channel.php:1592 msgid "Tags:" msgstr "Etiquetas:" -#: ../../include/channel.php:1589 +#: ../../include/channel.php:1596 msgid "Sexual Preference:" msgstr "Orientación sexual:" -#: ../../include/channel.php:1595 +#: ../../include/channel.php:1602 msgid "Political Views:" msgstr "Posición política:" -#: ../../include/channel.php:1597 +#: ../../include/channel.php:1604 msgid "Religion:" msgstr "Religión:" -#: ../../include/channel.php:1601 +#: ../../include/channel.php:1608 msgid "Hobbies/Interests:" msgstr "Aficciones o intereses:" -#: ../../include/channel.php:1603 +#: ../../include/channel.php:1610 msgid "Likes:" msgstr "Me gusta:" -#: ../../include/channel.php:1605 +#: ../../include/channel.php:1612 msgid "Dislikes:" msgstr "No me gusta:" -#: ../../include/channel.php:1607 +#: ../../include/channel.php:1614 msgid "Contact information and Social Networks:" msgstr "Información de contacto y redes sociales:" -#: ../../include/channel.php:1609 +#: ../../include/channel.php:1616 msgid "My other channels:" msgstr "Mis otros canales:" -#: ../../include/channel.php:1611 +#: ../../include/channel.php:1618 msgid "Musical interests:" msgstr "Preferencias musicales:" -#: ../../include/channel.php:1613 +#: ../../include/channel.php:1620 msgid "Books, literature:" msgstr "Libros, literatura:" -#: ../../include/channel.php:1615 +#: ../../include/channel.php:1622 msgid "Television:" msgstr "Televisión:" -#: ../../include/channel.php:1617 +#: ../../include/channel.php:1624 msgid "Film/dance/culture/entertainment:" msgstr "Cine, danza, cultura, entretenimiento:" -#: ../../include/channel.php:1619 +#: ../../include/channel.php:1626 msgid "Love/Romance:" msgstr "Vida sentimental o amorosa:" -#: ../../include/channel.php:1621 +#: ../../include/channel.php:1628 msgid "Work/employment:" msgstr "Trabajo:" -#: ../../include/channel.php:1623 +#: ../../include/channel.php:1630 msgid "School/education:" msgstr "Estudios:" -#: ../../include/channel.php:1646 +#: ../../include/channel.php:1653 msgid "Like this thing" msgstr "Me gusta esto" @@ -13426,63 +14196,47 @@ msgstr "En proceso" msgid "Cancelled" msgstr "Cancelado/a" -#: ../../include/event.php:1310 ../../include/connections.php:692 +#: ../../include/event.php:1310 ../../include/connections.php:698 msgid "Home, Voice" msgstr "Llamadas particulares" -#: ../../include/event.php:1311 ../../include/connections.php:693 +#: ../../include/event.php:1311 ../../include/connections.php:699 msgid "Home, Fax" msgstr "Fax particular" -#: ../../include/event.php:1313 ../../include/connections.php:695 +#: ../../include/event.php:1313 ../../include/connections.php:701 msgid "Work, Voice" msgstr "Llamadas de trabajo" -#: ../../include/event.php:1314 ../../include/connections.php:696 +#: ../../include/event.php:1314 ../../include/connections.php:702 msgid "Work, Fax" msgstr "Fax de trabajo" -#: ../../include/network.php:762 +#: ../../include/network.php:760 msgid "view full size" msgstr "Ver en el tamaño original" -#: ../../include/network.php:1764 ../../include/network.php:1765 -msgid "Friendica" -msgstr "Friendica" - #: ../../include/network.php:1766 -msgid "OStatus" -msgstr "OStatus" - -#: ../../include/network.php:1767 msgid "GNU-Social" msgstr "GNU Social" -#: ../../include/network.php:1768 +#: ../../include/network.php:1767 msgid "RSS/Atom" msgstr "RSS/Atom" #: ../../include/network.php:1771 -msgid "Diaspora" -msgstr "Diaspora" - -#: ../../include/network.php:1772 msgid "Facebook" msgstr "Facebook" #: ../../include/network.php:1773 -msgid "Zot" -msgstr "Zot" - -#: ../../include/network.php:1774 msgid "LinkedIn" msgstr "LinkedIn" -#: ../../include/network.php:1775 +#: ../../include/network.php:1774 msgid "XMPP/IM" msgstr "XMPP/IM" -#: ../../include/network.php:1776 +#: ../../include/network.php:1775 msgid "MySpace" msgstr "MySpace" @@ -13524,439 +14278,371 @@ msgstr "Los permisos de la entrada %s no se pueden cambiar %s una vez que se ha msgid "Cannot locate DNS info for database server '%s'" msgstr "No se ha podido localizar información de DNS para el servidor de base de datos “%s”" -#: ../../include/bbcode.php:198 ../../include/bbcode.php:1200 -#: ../../include/bbcode.php:1203 ../../include/bbcode.php:1208 -#: ../../include/bbcode.php:1211 ../../include/bbcode.php:1214 -#: ../../include/bbcode.php:1217 ../../include/bbcode.php:1222 -#: ../../include/bbcode.php:1225 ../../include/bbcode.php:1230 -#: ../../include/bbcode.php:1233 ../../include/bbcode.php:1236 -#: ../../include/bbcode.php:1239 +#: ../../include/bbcode.php:200 ../../include/bbcode.php:1201 +#: ../../include/bbcode.php:1204 ../../include/bbcode.php:1209 +#: ../../include/bbcode.php:1212 ../../include/bbcode.php:1215 +#: ../../include/bbcode.php:1218 ../../include/bbcode.php:1223 +#: ../../include/bbcode.php:1226 ../../include/bbcode.php:1231 +#: ../../include/bbcode.php:1234 ../../include/bbcode.php:1237 +#: ../../include/bbcode.php:1240 msgid "Image/photo" msgstr "Imagen/foto" -#: ../../include/bbcode.php:237 ../../include/bbcode.php:1250 +#: ../../include/bbcode.php:239 ../../include/bbcode.php:1251 msgid "Encrypted content" msgstr "Contenido cifrado" -#: ../../include/bbcode.php:253 +#: ../../include/bbcode.php:255 #, php-format msgid "Install %1$s element %2$s" msgstr "Instalar el elemento de%1$s%2$s" -#: ../../include/bbcode.php:257 +#: ../../include/bbcode.php:259 #, php-format msgid "" "This post contains an installable %s element, however you lack permissions " "to install it on this site." msgstr "Esta entrada contiene el elemento instalable %s, sin embargo le faltan permisos para instalarlo en este sitio." -#: ../../include/bbcode.php:348 +#: ../../include/bbcode.php:350 msgid "card" msgstr "ficha" -#: ../../include/bbcode.php:350 +#: ../../include/bbcode.php:352 msgid "article" msgstr "el artículo" -#: ../../include/bbcode.php:433 ../../include/bbcode.php:441 +#: ../../include/bbcode.php:435 ../../include/bbcode.php:443 msgid "Click to open/close" msgstr "Pulsar para abrir/cerrar" -#: ../../include/bbcode.php:441 +#: ../../include/bbcode.php:443 msgid "spoiler" msgstr "spoiler" -#: ../../include/bbcode.php:454 +#: ../../include/bbcode.php:456 msgid "View article" msgstr "Ver el artículo" -#: ../../include/bbcode.php:454 +#: ../../include/bbcode.php:456 msgid "View summary" msgstr "Ver sumario" -#: ../../include/bbcode.php:1188 +#: ../../include/bbcode.php:1189 msgid "$1 wrote:" msgstr "$1 escribió:" -#: ../../include/oembed.php:329 +#: ../../include/oembed.php:224 +msgid "View PDF" +msgstr "Ver PDF" + +#: ../../include/oembed.php:347 msgid " by " msgstr "por" -#: ../../include/oembed.php:330 +#: ../../include/oembed.php:348 msgid " on " msgstr "en" -#: ../../include/oembed.php:359 +#: ../../include/oembed.php:377 msgid "Embedded content" msgstr "Contenido incorporado" -#: ../../include/oembed.php:368 +#: ../../include/oembed.php:386 msgid "Embedding disabled" msgstr "Incrustación deshabilitada" -#: ../../include/zid.php:347 +#: ../../include/zid.php:351 #, php-format msgid "OpenWebAuth: %1$s welcomes %2$s" msgstr "OpenWebAuth: %1$s da la bienvenida a %2$s" -#: ../../include/features.php:56 -msgid "General Features" -msgstr "Funcionalidades básicas" +#: ../../include/features.php:86 ../../include/features.php:273 +msgid "Start calendar week on Monday" +msgstr "Comenzar el calendario semanal por el lunes" -#: ../../include/features.php:61 -msgid "Display new member quick links menu" -msgstr "Mostrar el menú de enlaces rápidos para nuevos miembros" +#: ../../include/features.php:87 ../../include/features.php:274 +msgid "Default is Sunday" +msgstr "Por defecto es domingo" -#: ../../include/features.php:69 -msgid "Advanced Profiles" -msgstr "Perfiles avanzados" +#: ../../include/features.php:100 +msgid "Search by Date" +msgstr "Buscar por fecha" -#: ../../include/features.php:70 -msgid "Additional profile sections and selections" -msgstr "Secciones y selecciones de perfil adicionales" +#: ../../include/features.php:101 +msgid "Ability to select posts by date ranges" +msgstr "Capacidad de seleccionar entradas por rango de fechas" -#: ../../include/features.php:78 -msgid "Profile Import/Export" -msgstr "Importar/Exportar perfil" +#: ../../include/features.php:108 +msgid "Tag Cloud" +msgstr "Nube de etiquetas" -#: ../../include/features.php:79 -msgid "Save and load profile details across sites/channels" -msgstr "Guardar y cargar detalles del perfil a través de sitios/canales" +#: ../../include/features.php:109 +msgid "Provide a personal tag cloud on your channel page" +msgstr "Proveer nube de etiquetas personal en su página de canal" -#: ../../include/features.php:87 -msgid "Web Pages" -msgstr "Páginas web" +#: ../../include/features.php:116 ../../include/features.php:381 +msgid "Use blog/list mode" +msgstr "Usar el modo blog/lista" -#: ../../include/features.php:88 -msgid "Provide managed web pages on your channel" -msgstr "Proveer páginas web gestionadas en su canal" +#: ../../include/features.php:117 ../../include/features.php:382 +msgid "Comments will be displayed separately" +msgstr "Los comentarios se mostrarán por separado" -#: ../../include/features.php:97 -msgid "Provide a wiki for your channel" -msgstr "Proporcionar un wiki para su canal" +#: ../../include/features.php:129 +msgid "Connection Filtering" +msgstr "Filtrado de conexiones" -#: ../../include/features.php:114 -msgid "Private Notes" -msgstr "Notas privadas" +#: ../../include/features.php:130 +msgid "Filter incoming posts from connections based on keywords/content" +msgstr "Filtrar publicaciones entrantes de conexiones por palabras clave o contenido" -#: ../../include/features.php:115 -msgid "Enables a tool to store notes and reminders (note: not encrypted)" -msgstr "Habilita una herramienta para guardar notas y recordatorios (advertencia: las notas no estarán cifradas)" - -#: ../../include/features.php:124 -msgid "Create personal planning cards" -msgstr "Crear fichas de planificación personal" - -#: ../../include/features.php:134 -msgid "Create interactive articles" -msgstr "Crear artículos interactivos" +#: ../../include/features.php:138 +msgid "Conversation" +msgstr "Conversation" #: ../../include/features.php:142 -msgid "Navigation Channel Select" -msgstr "Navegación por el selector de canales" +msgid "Community Tagging" +msgstr "Etiquetas de la comunidad" #: ../../include/features.php:143 -msgid "Change channels directly from within the navigation dropdown menu" -msgstr "Cambiar de canales directamente desde el menú de navegación desplegable" +msgid "Ability to tag existing posts" +msgstr "Capacidad de etiquetar entradas existentes" + +#: ../../include/features.php:150 +msgid "Emoji Reactions" +msgstr "Emoticonos \"emoji\"" #: ../../include/features.php:151 -msgid "Photo Location" -msgstr "Ubicación de las fotos" +msgid "Add emoji reaction ability to posts" +msgstr "Activar la capacidad de añadir un emoticono \"emoji\" a las entradas" -#: ../../include/features.php:152 -msgid "If location data is available on uploaded photos, link this to a map." -msgstr "Si los datos de ubicación están disponibles en las fotos subidas, enlazar estas a un mapa." +#: ../../include/features.php:158 +msgid "Dislike Posts" +msgstr "Desagrado de publicaciones" -#: ../../include/features.php:160 -msgid "Access Controlled Chatrooms" -msgstr "Salas de chat moderadas" +#: ../../include/features.php:159 +msgid "Ability to dislike posts/comments" +msgstr "Capacidad de mostrar desacuerdo con el contenido de entradas y comentarios" -#: ../../include/features.php:161 -msgid "Provide chatrooms and chat services with access control." -msgstr "Proporcionar salas y servicios de chat moderados." +#: ../../include/features.php:166 +msgid "Star Posts" +msgstr "Entradas destacadas" -#: ../../include/features.php:170 -msgid "Smart Birthdays" -msgstr "Cumpleaños inteligentes" - -#: ../../include/features.php:171 -msgid "" -"Make birthday events timezone aware in case your friends are scattered " -"across the planet." -msgstr "Enlazar los eventos de cumpleaños con el huso horario en el caso de que sus amigos estén dispersos por el mundo." - -#: ../../include/features.php:179 -msgid "Event Timezone Selection" -msgstr "Selección del huso horario del evento" +#: ../../include/features.php:167 +msgid "Ability to mark special posts with a star indicator" +msgstr "Capacidad de marcar entradas destacadas con un indicador de estrella" #: ../../include/features.php:180 -msgid "Allow event creation in timezones other than your own." -msgstr "Permitir la creación de eventos en husos horarios distintos del suyo." - -#: ../../include/features.php:189 -msgid "Premium Channel" -msgstr "Canal premium" - -#: ../../include/features.php:190 -msgid "" -"Allows you to set restrictions and terms on those that connect with your " -"channel" -msgstr "Le permite configurar restricciones y normas de uso a aquellos que conectan con su canal" - -#: ../../include/features.php:198 msgid "Advanced Directory Search" msgstr "Búsqueda avanzada en el directorio" -#: ../../include/features.php:199 +#: ../../include/features.php:181 msgid "Allows creation of complex directory search queries" msgstr "Permitir la creación de consultas complejas en las búsquedas en el directorio" -#: ../../include/features.php:207 -msgid "Advanced Theme and Layout Settings" -msgstr "Ajustes avanzados de temas y esquemas" +#: ../../include/features.php:190 +msgid "Editor" +msgstr "Editor" -#: ../../include/features.php:208 -msgid "Allows fine tuning of themes and page layouts" -msgstr "Permitir el ajuste fino de temas y esquemas de páginas" +#: ../../include/features.php:194 +msgid "Post Categories" +msgstr "Temas de las entradas" -#: ../../include/features.php:217 -msgid "Access Control and Permissions" -msgstr "Control de acceso y permisos" +#: ../../include/features.php:195 +msgid "Add categories to your posts" +msgstr "Añadir temas a sus publicaciones" -#: ../../include/features.php:221 ../../include/group.php:328 -msgid "Privacy Groups" -msgstr "Grupos de canales" - -#: ../../include/features.php:222 -msgid "Enable management and selection of privacy groups" -msgstr "Activar la gestión y selección de grupos de canales" - -#: ../../include/features.php:230 -msgid "Multiple Profiles" -msgstr "Múltiples perfiles" - -#: ../../include/features.php:231 -msgid "Ability to create multiple profiles" -msgstr "Capacidad de crear múltiples perfiles" - -#: ../../include/features.php:241 -msgid "Provide alternate connection permission roles." -msgstr "Proporcionar roles de acceso alternativos para esta conexión." - -#: ../../include/features.php:249 -msgid "OAuth1 Clients" -msgstr "Clientes OAuth1" - -#: ../../include/features.php:250 -msgid "Manage OAuth1 authenticatication tokens for mobile and remote apps." -msgstr "Administrar tokens de autenticación OAuth1 para aplicaciones móviles y remotas." - -#: ../../include/features.php:258 -msgid "OAuth2 Clients" -msgstr "Clientes OAuth2" - -#: ../../include/features.php:259 -msgid "Manage OAuth2 authenticatication tokens for mobile and remote apps." -msgstr "Administrar tokens de autenticación OAuth2 para aplicaciones móviles y remotas." - -#: ../../include/features.php:267 -msgid "Access Tokens" -msgstr "Tokens de acceso" - -#: ../../include/features.php:268 -msgid "Create access tokens so that non-members can access private content." -msgstr "Crear tokens de acceso para que los no miembros puedan acceder a contenido privado." - -#: ../../include/features.php:279 -msgid "Post Composition Features" -msgstr "Opciones para la redacción de entradas" - -#: ../../include/features.php:283 +#: ../../include/features.php:203 msgid "Large Photos" msgstr "Fotos de gran tamaño" -#: ../../include/features.php:284 +#: ../../include/features.php:204 msgid "" "Include large (1024px) photo thumbnails in posts. If not enabled, use small " "(640px) photo thumbnails" msgstr "Incluir miniaturas de fotos grandes (1024px) en publicaciones. Si no está habilitado, usar miniaturas pequeñas (640px)" -#: ../../include/features.php:293 -msgid "Automatically import channel content from other channels or feeds" -msgstr "Importar automáticamente contenido de otros canales o \"feeds\"" - -#: ../../include/features.php:301 +#: ../../include/features.php:211 msgid "Even More Encryption" msgstr "Más cifrado todavía" -#: ../../include/features.php:302 +#: ../../include/features.php:212 msgid "" "Allow optional encryption of content end-to-end with a shared secret key" msgstr "Permitir cifrado adicional de contenido \"punto-a-punto\" con una clave secreta compartida." -#: ../../include/features.php:310 +#: ../../include/features.php:219 msgid "Enable Voting Tools" msgstr "Permitir entradas con votación" -#: ../../include/features.php:311 +#: ../../include/features.php:220 msgid "Provide a class of post which others can vote on" msgstr "Proveer una clase de publicación en la que otros puedan votar" -#: ../../include/features.php:319 +#: ../../include/features.php:227 msgid "Disable Comments" msgstr "Deshabilitar comentarios" -#: ../../include/features.php:320 +#: ../../include/features.php:228 msgid "Provide the option to disable comments for a post" msgstr "Proporcionar la opción de desactivar los comentarios para una entrada" -#: ../../include/features.php:328 +#: ../../include/features.php:235 msgid "Delayed Posting" msgstr "Publicación aplazada" -#: ../../include/features.php:329 +#: ../../include/features.php:236 msgid "Allow posts to be published at a later date" msgstr "Permitir mensajes que se publicarán en una fecha posterior" -#: ../../include/features.php:337 +#: ../../include/features.php:243 msgid "Content Expiration" msgstr "Caducidad del contenido" -#: ../../include/features.php:338 +#: ../../include/features.php:244 msgid "Remove posts/comments and/or private messages at a future time" msgstr "Eliminar publicaciones/comentarios y/o mensajes privados más adelante" -#: ../../include/features.php:346 +#: ../../include/features.php:251 msgid "Suppress Duplicate Posts/Comments" msgstr "Prevenir entradas o comentarios duplicados" -#: ../../include/features.php:347 +#: ../../include/features.php:252 msgid "" "Prevent posts with identical content to be published with less than two " "minutes in between submissions." msgstr "Prevenir que entradas con contenido idéntico se publiquen con menos de dos minutos de intervalo." -#: ../../include/features.php:355 +#: ../../include/features.php:259 msgid "Auto-save drafts of posts and comments" msgstr "Guardar automáticamente borradores de entradas y comentarios" -#: ../../include/features.php:356 +#: ../../include/features.php:260 msgid "" "Automatically saves post and comment drafts in local browser storage to help" " prevent accidental loss of compositions" msgstr "Guarda automáticamente los borradores de comentarios y publicaciones en el almacenamiento del navegador local para ayudar a evitar la pérdida accidental de composiciones." -#: ../../include/features.php:367 -msgid "Network and Stream Filtering" -msgstr "Filtrado del contenido" +#: ../../include/features.php:281 +msgid "Smart Birthdays" +msgstr "Cumpleaños inteligentes" -#: ../../include/features.php:371 -msgid "Search by Date" -msgstr "Buscar por fecha" +#: ../../include/features.php:282 +msgid "" +"Make birthday events timezone aware in case your friends are scattered " +"across the planet." +msgstr "Enlazar los eventos de cumpleaños con el huso horario en el caso de que sus amigos estén dispersos por el mundo." -#: ../../include/features.php:372 -msgid "Ability to select posts by date ranges" -msgstr "Capacidad de seleccionar entradas por rango de fechas" +#: ../../include/features.php:289 +msgid "Event Timezone Selection" +msgstr "Selección del huso horario del evento" -#: ../../include/features.php:382 +#: ../../include/features.php:290 +msgid "Allow event creation in timezones other than your own." +msgstr "Permitir la creación de eventos en husos horarios distintos del suyo." + +#: ../../include/features.php:299 +msgid "Manage" +msgstr "Gestionar" + +#: ../../include/features.php:303 +msgid "Navigation Channel Select" +msgstr "Navegación por el selector de canales" + +#: ../../include/features.php:304 +msgid "Change channels directly from within the navigation dropdown menu" +msgstr "Cambiar de canales directamente desde el menú de navegación desplegable" + +#: ../../include/features.php:318 msgid "Save search terms for re-use" msgstr "Guardar términos de búsqueda para su reutilización" -#: ../../include/features.php:390 -msgid "Network Personal Tab" -msgstr "Actividad personal" - -#: ../../include/features.php:391 -msgid "Enable tab to display only Network posts that you've interacted on" -msgstr "Habilitar una pestaña en la cual se muestren solo las entradas en las que ha participado." - -#: ../../include/features.php:399 -msgid "Network New Tab" -msgstr "Contenido nuevo" - -#: ../../include/features.php:400 -msgid "Enable tab to display all new Network activity" -msgstr "Habilitar una pestaña en la que se muestre solo el contenido nuevo" - -#: ../../include/features.php:408 -msgid "Affinity Tool" -msgstr "Herramienta de afinidad" - -#: ../../include/features.php:409 -msgid "Filter stream activity by depth of relationships" -msgstr "Filtrar el contenido según la profundidad de las relaciones" - -#: ../../include/features.php:418 -msgid "Show friend and connection suggestions" -msgstr "Mostrar sugerencias de amigos y conexiones" - -#: ../../include/features.php:426 -msgid "Connection Filtering" -msgstr "Filtrado de conexiones" - -#: ../../include/features.php:427 -msgid "Filter incoming posts from connections based on keywords/content" -msgstr "Filtrar publicaciones entrantes de conexiones por palabras clave o contenido" - -#: ../../include/features.php:439 -msgid "Post/Comment Tools" -msgstr "Gestión de entradas y comentarios" - -#: ../../include/features.php:443 -msgid "Community Tagging" -msgstr "Etiquetas de la comunidad" - -#: ../../include/features.php:444 -msgid "Ability to tag existing posts" -msgstr "Capacidad de etiquetar entradas existentes" - -#: ../../include/features.php:452 -msgid "Post Categories" -msgstr "Temas de las entradas" - -#: ../../include/features.php:453 -msgid "Add categories to your posts" -msgstr "Añadir temas a sus publicaciones" - -#: ../../include/features.php:461 -msgid "Emoji Reactions" -msgstr "Emoticonos \"emoji\"" - -#: ../../include/features.php:462 -msgid "Add emoji reaction ability to posts" -msgstr "Activar la capacidad de añadir un emoticono \"emoji\" a las entradas" - -#: ../../include/features.php:471 +#: ../../include/features.php:326 msgid "Ability to file posts under folders" msgstr "Capacidad de archivar entradas en carpetas" -#: ../../include/features.php:479 -msgid "Dislike Posts" -msgstr "Desagrado de publicaciones" +#: ../../include/features.php:333 +msgid "Alternate Stream Order" +msgstr "Orden de stream alternativo" -#: ../../include/features.php:480 -msgid "Ability to dislike posts/comments" -msgstr "Capacidad de mostrar desacuerdo con el contenido de entradas y comentarios" +#: ../../include/features.php:334 +msgid "" +"Ability to order the stream by last post date, last comment date or " +"unthreaded activities" +msgstr "Posibilidad de ordenar el stream por última fecha de publicación, última fecha de comentario o actividades sin hilo" -#: ../../include/features.php:488 -msgid "Star Posts" -msgstr "Entradas destacadas" +#: ../../include/features.php:341 +msgid "Contact Filter" +msgstr "Filtro de contactos" -#: ../../include/features.php:489 -msgid "Ability to mark special posts with a star indicator" -msgstr "Capacidad de marcar entradas destacadas con un indicador de estrella" +#: ../../include/features.php:342 +msgid "Ability to display only posts of a selected contact" +msgstr "Posibilidad de mostrar sólo los mensajes de un contacto seleccionado" -#: ../../include/features.php:497 -msgid "Tag Cloud" -msgstr "Nube de etiquetas" +#: ../../include/features.php:349 +msgid "Forum Filter" +msgstr "Filtro de foro" -#: ../../include/features.php:498 -msgid "Provide a personal tag cloud on your channel page" -msgstr "Proveer nube de etiquetas personal en su página de canal" +#: ../../include/features.php:350 +msgid "Ability to display only posts of a specific forum" +msgstr "Posibilidad de mostrar sólo los mensajes de un foro específico" + +#: ../../include/features.php:357 +msgid "Personal Posts Filter" +msgstr "Filtro de entradas personales" + +#: ../../include/features.php:358 +msgid "Ability to display only posts that you've interacted on" +msgstr "Posibilidad de mostrar sólo los mensajes en los que usted haya interactuado" + +#: ../../include/features.php:365 +msgid "Affinity Tool" +msgstr "Herramienta de afinidad" + +#: ../../include/features.php:366 +msgid "Filter stream activity by depth of relationships" +msgstr "Filtrar el contenido según la profundidad de las relaciones" + +#: ../../include/features.php:374 +msgid "Show friend and connection suggestions" +msgstr "Mostrar sugerencias de amigos y conexiones" + +#: ../../include/features.php:395 +msgid "Photo Location" +msgstr "Ubicación de las fotos" + +#: ../../include/features.php:396 +msgid "If location data is available on uploaded photos, link this to a map." +msgstr "Si los datos de ubicación están disponibles en las fotos subidas, enlazar estas a un mapa." + +#: ../../include/features.php:409 +msgid "Advanced Profiles" +msgstr "Perfiles avanzados" + +#: ../../include/features.php:410 +msgid "Additional profile sections and selections" +msgstr "Secciones y selecciones de perfil adicionales" + +#: ../../include/features.php:417 +msgid "Profile Import/Export" +msgstr "Importar/Exportar perfil" + +#: ../../include/features.php:418 +msgid "Save and load profile details across sites/channels" +msgstr "Guardar y cargar detalles del perfil a través de sitios/canales" + +#: ../../include/features.php:425 +msgid "Multiple Profiles" +msgstr "Múltiples perfiles" + +#: ../../include/features.php:426 +msgid "Ability to create multiple profiles" +msgstr "Capacidad de crear múltiples perfiles" #: ../../include/taxonomy.php:320 msgid "Trending" -msgstr "Trending" +msgstr "Etiquetas populares" #: ../../include/taxonomy.php:552 msgid "Keywords" @@ -14019,38 +14705,38 @@ msgstr "La información de la cuenta no se ha podido guardar." msgid "Registration confirmation for %s" msgstr "Confirmación de registro para %s" -#: ../../include/account.php:383 +#: ../../include/account.php:385 #, php-format msgid "Registration request at %s" msgstr "Solicitud de registro en %s" -#: ../../include/account.php:405 +#: ../../include/account.php:407 msgid "your registration password" msgstr "su contraseña de registro" -#: ../../include/account.php:411 ../../include/account.php:473 +#: ../../include/account.php:413 ../../include/account.php:475 #, php-format msgid "Registration details for %s" msgstr "Detalles del registro de %s" -#: ../../include/account.php:484 +#: ../../include/account.php:486 msgid "Account approved." msgstr "Cuenta aprobada." -#: ../../include/account.php:524 +#: ../../include/account.php:526 #, php-format msgid "Registration revoked for %s" msgstr "Registro revocado para %s" -#: ../../include/account.php:803 ../../include/account.php:805 +#: ../../include/account.php:805 ../../include/account.php:807 msgid "Click here to upgrade." msgstr "Pulse aquí para actualizar" -#: ../../include/account.php:811 +#: ../../include/account.php:813 msgid "This action exceeds the limits set by your subscription plan." msgstr "Esta acción supera los límites establecidos por su plan de suscripción " -#: ../../include/account.php:816 +#: ../../include/account.php:818 msgid "This action is not available under your subscription plan." msgstr "Esta acción no está disponible en su plan de suscripción." @@ -14135,153 +14821,153 @@ msgstr "Cumpleaños de %1$s" msgid "Happy Birthday %1$s" msgstr "Feliz cumpleaños %1$s" -#: ../../include/nav.php:96 +#: ../../include/nav.php:86 msgid "Remote authentication" msgstr "Acceder desde su servidor" -#: ../../include/nav.php:96 +#: ../../include/nav.php:86 msgid "Click to authenticate to your home hub" msgstr "Pulsar para identificarse en su servidor de inicio" -#: ../../include/nav.php:102 ../../include/nav.php:190 -msgid "Manage Your Channels" +#: ../../include/nav.php:92 +msgid "Manage your channels" msgstr "Gestionar sus canales" -#: ../../include/nav.php:105 ../../include/nav.php:192 +#: ../../include/nav.php:95 +msgid "Manage your privacy groups" +msgstr "Gestionar sus grupos de canales" + +#: ../../include/nav.php:97 msgid "Account/Channel Settings" msgstr "Ajustes de cuenta/canales" -#: ../../include/nav.php:111 ../../include/nav.php:140 +#: ../../include/nav.php:103 ../../include/nav.php:132 msgid "End this session" msgstr "Finalizar esta sesión" -#: ../../include/nav.php:114 +#: ../../include/nav.php:106 msgid "Your profile page" msgstr "Su página del perfil" -#: ../../include/nav.php:117 +#: ../../include/nav.php:109 msgid "Manage/Edit profiles" msgstr "Administrar/editar perfiles" -#: ../../include/nav.php:126 ../../include/nav.php:130 +#: ../../include/nav.php:118 ../../include/nav.php:122 msgid "Sign in" msgstr "Acceder" -#: ../../include/nav.php:157 +#: ../../include/nav.php:149 msgid "Take me home" msgstr "Volver a la página principal" -#: ../../include/nav.php:159 +#: ../../include/nav.php:151 msgid "Log me out of this site" msgstr "Salir de este sitio" -#: ../../include/nav.php:164 +#: ../../include/nav.php:156 msgid "Create an account" msgstr "Crear una cuenta" -#: ../../include/nav.php:176 +#: ../../include/nav.php:168 msgid "Help and documentation" msgstr "Ayuda y documentación" -#: ../../include/nav.php:179 +#: ../../include/nav.php:183 msgid "Search site @name, !forum, #tag, ?docs, content" msgstr "Buscar en el sitio @nombre, !foro, #tag, ?docs, contenido" -#: ../../include/nav.php:199 +#: ../../include/nav.php:189 msgid "Site Setup and Configuration" msgstr "Ajustes y configuración del sitio" -#: ../../include/nav.php:290 +#: ../../include/nav.php:294 msgid "@name, !forum, #tag, ?doc, content" msgstr "@nombre, !foro, #tag, ?docs, contenido" -#: ../../include/nav.php:291 +#: ../../include/nav.php:295 msgid "Please wait..." msgstr "Espere por favor…" -#: ../../include/nav.php:297 +#: ../../include/nav.php:301 msgid "Add Apps" msgstr "Añadir aplicaciones" -#: ../../include/nav.php:298 +#: ../../include/nav.php:302 msgid "Arrange Apps" msgstr "Organizar aplicaciones" -#: ../../include/nav.php:299 +#: ../../include/nav.php:303 msgid "Toggle System Apps" msgstr "Alternar aplicaciones de sistema" -#: ../../include/photos.php:150 +#: ../../include/nav.php:389 +msgid "Status Messages and Posts" +msgstr "Mensajes de estado y publicaciones" + +#: ../../include/nav.php:402 +msgid "Profile Details" +msgstr "Detalles del perfil" + +#: ../../include/nav.php:412 ../../include/photos.php:667 +msgid "Photo Albums" +msgstr "Álbumes de fotos" + +#: ../../include/nav.php:420 +msgid "Files and Storage" +msgstr "Ficheros y repositorio" + +#: ../../include/nav.php:458 +msgid "Saved Bookmarks" +msgstr "Marcadores guardados" + +#: ../../include/nav.php:469 +msgid "View Cards" +msgstr "Ver las fichas" + +#: ../../include/nav.php:480 +msgid "View Articles" +msgstr "Ver los artículos" + +#: ../../include/nav.php:492 +msgid "View Webpages" +msgstr "Ver páginas web" + +#: ../../include/photos.php:151 #, php-format msgid "Image exceeds website size limit of %lu bytes" msgstr "La imagen excede el límite de %lu bytes del sitio" -#: ../../include/photos.php:161 +#: ../../include/photos.php:162 msgid "Image file is empty." msgstr "El fichero de imagen está vacío. " -#: ../../include/photos.php:326 +#: ../../include/photos.php:327 msgid "Photo storage failed." msgstr "La foto no ha podido ser guardada." -#: ../../include/photos.php:375 +#: ../../include/photos.php:376 msgid "a new photo" msgstr "una nueva foto" -#: ../../include/photos.php:379 +#: ../../include/photos.php:380 #, php-format msgctxt "photo_upload" msgid "%1$s posted %2$s to %3$s" msgstr "%1$s ha publicado %2$s en %3$s" -#: ../../include/photos.php:671 +#: ../../include/photos.php:672 msgid "Upload New Photos" msgstr "Subir nuevas fotos" -#: ../../include/zot.php:772 +#: ../../include/zot.php:773 msgid "Invalid data packet" msgstr "Paquete de datos no válido" -#: ../../include/zot.php:799 -msgid "Unable to verify channel signature" -msgstr "No ha sido posible de verificar la firma del canal" - -#: ../../include/zot.php:2552 -#, php-format -msgid "Unable to verify site signature for %s" -msgstr "No ha sido posible de verificar la firma del sitio para %s" - -#: ../../include/zot.php:4219 +#: ../../include/zot.php:4235 msgid "invalid target signature" msgstr "La firma recibida no es válida" -#: ../../include/group.php:22 -msgid "" -"A deleted group with this name was revived. Existing item permissions " -"may apply to this group and any future members. If this is " -"not what you intended, please create another group with a different name." -msgstr "Un grupo suprimido con este nombre ha sido restablecido. Es posible que los permisos existentes sean aplicados a este grupo y sus futuros miembros. Si no quiere esto, por favor cree otro grupo con un nombre diferente." - -#: ../../include/group.php:264 -msgid "Add new connections to this privacy group" -msgstr "Añadir conexiones nuevas a este grupo de canales" - -#: ../../include/group.php:306 -msgid "edit" -msgstr "editar" - -#: ../../include/group.php:329 -msgid "Edit group" -msgstr "Editar grupo" - -#: ../../include/group.php:330 -msgid "Add privacy group" -msgstr "Añadir un grupo de canales" - -#: ../../include/group.php:331 -msgid "Channels not in any privacy group" -msgstr "Sin canales en ningún grupo" - #: ../../include/connections.php:133 msgid "New window" msgstr "Nueva ventana" @@ -14290,26 +14976,26 @@ msgstr "Nueva ventana" msgid "Open the selected location in a different window or browser tab" msgstr "Abrir la dirección seleccionada en una ventana o pestaña aparte" -#: ../../include/auth.php:152 +#: ../../include/auth.php:192 msgid "Delegation session ended." msgstr "Finalizó la sesión de la delegación." -#: ../../include/auth.php:156 +#: ../../include/auth.php:196 msgid "Logged out." msgstr "Desconectado/a." -#: ../../include/auth.php:273 +#: ../../include/auth.php:291 msgid "Email validation is incomplete. Please check your email." msgstr "La validación del correo electrónico está incompleta. Por favor, compruebe su correo electrónico." -#: ../../include/auth.php:289 +#: ../../include/auth.php:307 msgid "Failed authentication" msgstr "Autenticación fallida." -#: ../../include/help.php:34 +#: ../../include/help.php:80 msgid "Help:" msgstr "Ayuda:" -#: ../../include/help.php:78 +#: ../../include/help.php:129 msgid "Not Found" msgstr "No encontrado" diff --git a/view/es-es/hstrings.php b/view/es-es/hstrings.php index 6f07ece43..0fd176db8 100644 --- a/view/es-es/hstrings.php +++ b/view/es-es/hstrings.php @@ -19,7 +19,7 @@ App::$strings["Can post on my channel (wall) page"] = "Pueden crearse entradas e App::$strings["Can comment on or like my posts"] = "Pueden publicarse comentarios en mis publicaciones o marcar mis entradas con 'me gusta'."; App::$strings["Can send me private mail messages"] = "Se me pueden enviar mensajes privados"; App::$strings["Can like/dislike profiles and profile things"] = "Se puede mostrar agrado o desagrado (Me gusta / No me gusta) en mis perfiles y sus distintos apartados"; -App::$strings["Can forward to all my channel connections via @+ mentions in posts"] = "Pueden reenviarse publicaciones a todas las conexiones de mi canal a través de @+ menciones en las entradas"; +App::$strings["Can forward to all my channel connections via ! mentions in posts"] = "Pueden reenviarse publicaciones a todas las conexiones de mi canal a través de ! menciones en las entradas"; App::$strings["Can chat with me"] = "Se puede chatear conmigo"; App::$strings["Can source my public posts in derived channels"] = "Pueden utilizarse mis entradas públicas como origen de contenidos en canales derivados"; App::$strings["Can administer my channel"] = "Se puede administrar mi canal"; @@ -61,6 +61,9 @@ App::$strings["%d message sent."] = array( 0 => "%d mensajes enviados.", 1 => "%d mensajes enviados.", ); +App::$strings["Invite App"] = "Solicitar una app"; +App::$strings["Not Installed"] = "No instalado/a"; +App::$strings["Send email invitations to join this network"] = "Enviar invitaciones por correo electrónico para unirse a esta red"; App::$strings["You have no more invitations available"] = "No tiene más invitaciones disponibles"; App::$strings["Send invitations"] = "Enviar invitaciones"; App::$strings["Enter email addresses, one per line:"] = "Introduzca las direcciones de correo electrónico, una por línea:"; @@ -72,12 +75,15 @@ App::$strings["2. Enter my \$Projectname network address into the site searchbar App::$strings["or visit"] = "o visitar"; App::$strings["3. Click [Connect]"] = "3. Pulse [conectar]"; App::$strings["Submit"] = "Enviar"; -App::$strings["Articles"] = "Artículos"; +App::$strings["Articles App"] = "App Artículos"; +App::$strings["Create interactive articles"] = "Crear artículos interactivos"; App::$strings["Add Article"] = "Añadir un artículo"; +App::$strings["Articles"] = "Artículos"; App::$strings["Item not found"] = "Elemento no encontrado"; App::$strings["Layout Name"] = "Nombre de la plantilla"; App::$strings["Layout Description (Optional)"] = "Descripción de la plantilla (opcional)"; App::$strings["Edit Layout"] = "Modificar la plantilla"; +App::$strings["Cancel"] = "Cancelar"; App::$strings["Permission denied"] = "Permiso denegado"; App::$strings["Invalid profile identifier."] = "Identificador del perfil no válido"; App::$strings["Profile Visibility Editor"] = "Editor de visibilidad del perfil"; @@ -92,6 +98,10 @@ App::$strings["Date: "] = "Fecha: "; App::$strings["Reason: "] = "Razón: "; App::$strings["INVALID CARD DISMISSED!"] = "¡TARJETA NO VÁLIDA RECHAZADA!"; App::$strings["Name: "] = "Nombre: "; +App::$strings["CalDAV App"] = "App CalDav"; +App::$strings["CalDAV capable calendar"] = "Calendario compatible con CalDAV"; +App::$strings["CardDAV App"] = "App CarDav"; +App::$strings["CalDAV capable addressbook"] = "Libreta de direcciones compatible con CalDav"; App::$strings["Event title"] = "Título del evento"; App::$strings["Start date and time"] = "Fecha y hora de comienzo"; App::$strings["Example: YYYY-MM-DD HH:mm"] = "Ejemplo: YYYY-MM-DD HH:mm"; @@ -111,7 +121,6 @@ App::$strings["More"] = "Más"; App::$strings["Less"] = "Menos"; App::$strings["Select calendar"] = "Seleccionar un calendario"; App::$strings["Delete all"] = "Eliminar todos"; -App::$strings["Cancel"] = "Cancelar"; App::$strings["Sorry! Editing of recurrent events is not yet implemented."] = "¡Disculpas! La edición de eventos recurrentes aún no se ha implementado."; App::$strings["Name"] = "Nombre"; App::$strings["Organisation"] = "Organización"; @@ -138,10 +147,28 @@ App::$strings["Country"] = "País"; App::$strings["Default Calendar"] = "Calendario por defecto"; App::$strings["Default Addressbook"] = "Agenda de direcciones por defecto"; App::$strings["This site is not a directory server"] = "Este sitio no es un servidor de directorio"; +App::$strings["Permission category name is required."] = "El nombre de la categoría de permiso es obligatorio."; +App::$strings["Permission category saved."] = "Se ha guardado la categoría del permiso."; +App::$strings["Permission Categories App"] = "App de categorías de permisos"; +App::$strings["Create custom connection permission limits"] = "Crear límites de permisos de conexión personalizados"; +App::$strings["Use this form to create permission rules for various classes of people or connections."] = "Utilice este formulario para crear reglas de permiso para varias clases de personas o conexiones."; +App::$strings["Permission Categories"] = "Tipos de permisos"; +App::$strings["Permission category name"] = "Nombre de categoría de permiso"; +App::$strings["My Settings"] = "Mis ajustes"; +App::$strings["inherited"] = "heredado"; +App::$strings["Individual Permissions"] = "Permisos individuales"; +App::$strings["Some permissions may be inherited from your channel's privacy settings, which have higher priority than individual settings. You can not change those settings here."] = "Algunos permisos pueden ser heredados de los ajustes de privacidad de sus canales, los cuales tienen una prioridad más alta que los ajustes individuales. No puede cambiar estos ajustes aquí."; App::$strings["You must be logged in to see this page."] = "Debe haber iniciado sesión para poder ver esta página."; App::$strings["Posts and comments"] = "Publicaciones y comentarios"; App::$strings["Only posts"] = "Solo publicaciones"; App::$strings["Insufficient permissions. Request redirected to profile page."] = "Permisos insuficientes. Petición redirigida a la página del perfil."; +App::$strings["Search Results For:"] = "Buscar resultados para:"; +App::$strings["Reset form"] = "Reiniciar el formulario"; +App::$strings["You must enable javascript for your browser to be able to view this content."] = "Debe habilitar javascript para poder ver este contenido en su navegador."; +App::$strings["Language App"] = "App idioma"; +App::$strings["Change UI language"] = "Cambiar el idioma de la interfaz de usuario"; +App::$strings["Channel Export App"] = "App de exportación de canales"; +App::$strings["Export your channel"] = "Exportar su canal"; App::$strings["Export Channel"] = "Exportar el canal"; App::$strings["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."] = "Exportar la información básica del canal a un fichero. Este equivale a una copia de seguridad de sus conexiones, el perfil y datos fundamentales, que puede usarse para importar sus datos a un nuevo servidor, pero no incluye su contenido."; App::$strings["Export Content"] = "Exportar contenidos"; @@ -157,6 +184,8 @@ App::$strings["Public access denied."] = "Acceso público denegado."; App::$strings["Search"] = "Buscar"; App::$strings["Items tagged with: %s"] = "elementos etiquetados con: %s"; App::$strings["Search results for: %s"] = "Resultados de la búsqueda para: %s"; +App::$strings["Public Stream App"] = "App Stream público"; +App::$strings["The unmoderated public stream of this hub"] = "Stream público no moderado de este hub"; App::$strings["Public Stream"] = "\"Stream\" público"; App::$strings["Location not found."] = "Dirección no encontrada."; App::$strings["Location lookup failed."] = "Ha fallado la búsqueda de la dirección."; @@ -273,16 +302,18 @@ App::$strings["Import Items"] = "Importar elementos"; App::$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."; App::$strings["File to Upload"] = "Fichero para subir"; App::$strings["You have created %1$.0f of %2$.0f allowed channels."] = "Ha creado %1$.0f de %2$.0f canales permitidos."; -App::$strings["Name or caption"] = "Nombre o descripción"; +App::$strings["Loading"] = "Cargando"; +App::$strings["Your real name is recommended."] = "Se recomienda su nombre real."; App::$strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\""] = "Ejemplos: \"Juan García\", \"Luisa y sus caballos\", \"Fútbol\", \"Grupo de aviación\""; +App::$strings["This will be used to create a unique network address (like an email address)."] = "Esto se utilizará para crear una dirección de red única (como una dirección de correo electrónico)."; +App::$strings["Allowed characters are a-z 0-9, - and _"] = "Los caracteres permitidos son a-z 0-9, - and _"; +App::$strings["Channel name"] = "Nombre del canal"; App::$strings["Choose a short nickname"] = "Elija un alias corto"; -App::$strings["Your nickname will be used to create an easy to remember channel address e.g. nickname%s"] = "Su alias se usará para crear una dirección de canal fácil de recordar, p. ej.: alias%s"; App::$strings["Channel role and privacy"] = "Clase de canal y privacidad"; -App::$strings["Select a channel role with your privacy requirements."] = "Seleccione un tipo de canal con sus requisitos de privacidad"; -App::$strings["Read more about roles"] = "Leer más sobre los roles"; -App::$strings["Create Channel"] = "Crear un canal"; -App::$strings["A channel is a unique network identity. It can represent a person (social network profile), a forum (group), a business or celebrity page, a newsfeed, and many other things. Channels can make connections with other channels to share information with each other."] = "Un canal es una identidad única en la red. Puede representar a una persona (un perfil de una red social), un foro o grupo, un negocio o una página de una celebridad, un \"feed\" de noticias, y muchas otras cosas. Los canales pueden conectarse con otros canales para compartir información unos con otros."; -App::$strings["The type of channel you create affects the basic privacy settings, the permissions that are granted to connections/friends, and also the channel's visibility across the network."] = "El tipo de canal que cree afecta a la configuración básica de privacidad, a los permisos que se conceden a las conexiones/amigos y también a la visibilidad del canal en la red."; +App::$strings["Select a channel permission role compatible with your usage needs and privacy requirements."] = "Seleccione unos permisos de rol del canal compatibles con sus necesidades de uso y requisitos de privacidad."; +App::$strings["Read more about channel permission roles"] = "Leer más sobre los roles y permisos"; +App::$strings["Create a Channel"] = "Crear un canal"; +App::$strings["A channel is a unique network identity. It can represent a person (social network profile), a forum (group), a business or celebrity page, a newsfeed, and many other things."] = "Un canal es una identidad única en la red. Puede representar a una persona (un perfil de una red social), un foro o grupo, un negocio o una página de una celebridad, un \"feed\" de noticias, y muchas otras cosas."; App::$strings["or import an existing channel from another location."] = "O importar un canal existente desde otro lugar."; App::$strings["Validate"] = "Validar"; App::$strings["Channel removals are not allowed within 48 hours of changing the account password."] = "La eliminación de canales no está permitida hasta pasadas 48 horas desde el último cambio de contraseña."; @@ -358,8 +389,9 @@ App::$strings["Error: exec is required but is either not installed or has been d App::$strings["shell_exec"] = "shell_exec"; App::$strings["Error: shell_exec is required but is either not installed or has been disabled in php.ini"] = "Error: se necesita shell_exec pero o no se instaló o está deshabilitado en php.ini"; App::$strings["Error: libCURL PHP module required but not installed."] = "Error: se necesita el módulo PHP libCURL pero no está instalado."; -App::$strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Error: el módulo PHP GD graphics es necesario, pero no está instalado."; +App::$strings["Error: GD PHP module with JPEG support or ImageMagick graphics library required but not installed."] = "Error: Se requiere el módulo GD PHP con soporte para JPEG o la biblioteca de gráficos ImageMagick, pero no está instalado."; App::$strings["Error: openssl PHP module required but not installed."] = "Error: el módulo PHP openssl es necesario, pero no está instalado."; +App::$strings["Error: PDO database PHP module missing a driver for either mysql or pgsql."] = "Error: El módulo PHP de la base de datos PDO carece de un controlador para mysql o pgsql."; App::$strings["Error: PDO database PHP module required but not installed."] = "Error: se necesita el módulo PHP de la base de datos PDO, pero no está instalado."; App::$strings["Error: mb_string PHP module required but not installed."] = "Error: el módulo PHP mb_string es necesario, pero no está instalado."; App::$strings["Error: xml PHP module required for DAV but not installed."] = "Error: el módulo PHP xml es necesario para DAV, pero no está instalado."; @@ -390,6 +422,8 @@ App::$strings["Errors encountered creating database tables."] = "Se han encontra App::$strings["

    What next?

    "] = "

    ¿Qué sigue?

    "; App::$strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANTE: Debe crear [manualmente] una tarea programada para el \"poller\"."; App::$strings["Continue"] = "Continuar"; +App::$strings["Premium Channel App"] = "App canal premium"; +App::$strings["Allows you to set restrictions and terms on those that connect with your channel"] = "Le permite configurar restricciones y normas de uso a aquellos que conectan con su canal"; App::$strings["Premium Channel Setup"] = "Configuración del canal premium"; App::$strings["Enable premium channel connection restrictions"] = "Habilitar restricciones de conexión del canal premium"; App::$strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = "Por favor introduzca sus restricciones o condiciones, como recibo de paypal, normas de uso, etc."; @@ -418,35 +452,6 @@ App::$strings["Failed Updates"] = "Han fallado las actualizaciones"; App::$strings["Mark success (if update was manually applied)"] = "Marcar como exitosa (si la actualización se ha hecho manualmente)"; App::$strings["Attempt to execute this update step automatically"] = "Intentar ejecutar este paso de actualización automáticamente"; App::$strings["No failed updates."] = "No ha fallado ninguna actualización."; -App::$strings["Item not found."] = "Elemento no encontrado."; -App::$strings["Plugin %s disabled."] = "Extensión %s desactivada."; -App::$strings["Plugin %s enabled."] = "Extensión %s activada."; -App::$strings["Disable"] = "Desactivar"; -App::$strings["Enable"] = "Activar"; -App::$strings["Administration"] = "Administración"; -App::$strings["Plugins"] = "Extensiones (plugins)"; -App::$strings["Toggle"] = "Cambiar"; -App::$strings["Settings"] = "Ajustes"; -App::$strings["Author: "] = "Autor:"; -App::$strings["Maintainer: "] = "Mantenedor:"; -App::$strings["Minimum project version: "] = "Versión mínima del proyecto:"; -App::$strings["Maximum project version: "] = "Versión máxima del proyecto:"; -App::$strings["Minimum PHP version: "] = "Versión mínima de PHP:"; -App::$strings["Compatible Server Roles: "] = "Configuraciones compatibles con este servidor:"; -App::$strings["Requires: "] = "Se requiere:"; -App::$strings["Disabled - version incompatibility"] = "Deshabilitado - versiones incompatibles"; -App::$strings["Enter the public git repository URL of the plugin repo."] = "Escriba la URL pública del repositorio git del plugin."; -App::$strings["Plugin repo git URL"] = "URL del repositorio git del plugin"; -App::$strings["Custom repo name"] = "Nombre personalizado del repositorio"; -App::$strings["(optional)"] = "(opcional)"; -App::$strings["Download Plugin Repo"] = "Descargar el repositorio"; -App::$strings["Install new repo"] = "Instalar un nuevo repositorio"; -App::$strings["Install"] = "Instalar"; -App::$strings["Manage Repos"] = "Gestionar los repositorios"; -App::$strings["Installed Plugin Repositories"] = "Repositorios de los plugins instalados"; -App::$strings["Install a New Plugin Repository"] = "Instalar un nuevo repositorio de plugins"; -App::$strings["Switch branch"] = "Cambiar la rama"; -App::$strings["Remove"] = "Eliminar"; App::$strings["%s account blocked/unblocked"] = array( 0 => "%s cuenta bloqueada/desbloqueada", 1 => "%s cuenta bloqueada/desbloqueada", @@ -459,6 +464,7 @@ App::$strings["Account not found"] = "Cuenta no encontrada"; App::$strings["Account '%s' deleted"] = "La cuenta '%s' ha sido eliminada"; App::$strings["Account '%s' blocked"] = "La cuenta '%s' ha sido bloqueada"; App::$strings["Account '%s' unblocked"] = "La cuenta '%s' ha sido desbloqueada"; +App::$strings["Administration"] = "Administración"; App::$strings["Accounts"] = "Cuentas"; App::$strings["select all"] = "seleccionar todo"; App::$strings["Registrations waiting for confirm"] = "Inscripciones en espera de confirmación"; @@ -512,8 +518,15 @@ App::$strings["Selected channels will be deleted!\\n\\nEverything that was poste App::$strings["The channel {0} will be deleted!\\n\\nEverything that was posted in this channel on this site will be permanently deleted!\\n\\nAre you sure?"] = "El canal {0} va a ser eliminado!\\n\\nTodo lo publicado por el canal en este sitio se borrará definitivamente!\\n\\n¿Está seguro de querer hacerlo?"; App::$strings["Theme settings updated."] = "Ajustes del tema actualizados."; App::$strings["No themes found."] = "No se han encontrado temas."; +App::$strings["Item not found."] = "Elemento no encontrado."; +App::$strings["Disable"] = "Desactivar"; +App::$strings["Enable"] = "Activar"; App::$strings["Screenshot"] = "Instantánea de pantalla"; App::$strings["Themes"] = "Temas"; +App::$strings["Toggle"] = "Cambiar"; +App::$strings["Settings"] = "Ajustes"; +App::$strings["Author: "] = "Autor:"; +App::$strings["Maintainer: "] = "Mantenedor:"; App::$strings["[Experimental]"] = "[Experimental]"; App::$strings["[Unsupported]"] = "[No soportado]"; App::$strings["Site settings updated."] = "Ajustes del sitio actualizados."; @@ -527,22 +540,14 @@ App::$strings["My site is not a public server"] = "Mi sitio no es un servidor p App::$strings["My site has paid access only"] = "Mi sitio es un servicio de pago"; App::$strings["My site has free access only"] = "Mi sitio es un servicio gratuito"; App::$strings["My site offers free accounts with optional paid upgrades"] = "Mi sitio ofrece cuentas gratuitas con opciones extra de pago"; -App::$strings["Beginner/Basic"] = "Principiante / Básico"; -App::$strings["Novice - not skilled but willing to learn"] = "Novato: no cualificado, pero dispuesto a aprender"; -App::$strings["Intermediate - somewhat comfortable"] = "Intermedio: bastante cómodo"; -App::$strings["Advanced - very comfortable"] = "Avanzado: muy cómodo"; -App::$strings["Expert - I can write computer code"] = "Experto: puedo escribir código informático"; -App::$strings["Wizard - I probably know more than you do"] = "Colaborador: probablemente sé más que tú"; +App::$strings["Default permission role for new accounts"] = "Permisos de rol por defecto para las nuevas cuentas"; +App::$strings["This role will be used for the first channel created after registration."] = "Este rol se utilizará para el primer canal creado después del registro."; App::$strings["Site"] = "Sitio"; App::$strings["Registration"] = "Registro"; App::$strings["File upload"] = "Subir fichero"; App::$strings["Policies"] = "Políticas"; App::$strings["Advanced"] = "Avanzado"; App::$strings["Site name"] = "Nombre del sitio"; -App::$strings["Site default technical skill level"] = "Nivel de habilidad técnica predeterminado del sitio"; -App::$strings["Used to provide a member experience matched to technical comfort level"] = "Se utiliza para proporcionar una experiencia a los miembros adaptada a su nivel de comodidad técnica"; -App::$strings["Lock the technical skill level setting"] = "Bloquear el ajuste del nivel de habilidad técnica"; -App::$strings["Members can set their own technical comfort level by default"] = "Los miembros pueden configurar su nivel de comodidad técnica por defecto"; App::$strings["Banner/Logo"] = "Banner/Logo"; App::$strings["Unfiltered HTML/CSS/JS is allowed"] = "Se permite HTML/CSS/JS sin filtrar"; App::$strings["Administrator Information"] = "Información del Administrador"; @@ -562,6 +567,7 @@ App::$strings["Only allow new member registrations with an invitation code. Abov App::$strings["Minimum age"] = "Edad mínima"; App::$strings["Minimum age (in years) for who may register on this site."] = "Edad mínima (en años) para poder registrarse en este sitio."; App::$strings["Which best describes the types of account offered by this hub?"] = "¿Cómo describiría el tipo de servicio ofrecido por este servidor?"; +App::$strings["This is displayed on the public server site list."] = "Esto se muestra en la lista de sitios de servidores públicos."; App::$strings["Register text"] = "Texto del registro"; App::$strings["Will be displayed prominently on the registration page."] = "Se mostrará de forma destacada en la página de registro."; App::$strings["Site homepage to show visitors (default: login box)"] = "Página personal que se mostrará a los visitantes (por defecto: la página de identificación)"; @@ -582,6 +588,9 @@ App::$strings["Site only Public Streams"] = "Solo contenido público en este sit App::$strings["Allow access to public content originating only from this site if Imported Public Streams are disabled."] = "Permitir el acceso al contenido público originado sólo desde este sitio si los \"streams\" públicos Importados están deshabilitados."; App::$strings["Allow anybody on the internet to access the Public streams"] = "Permitir que cualquiera en Internet pueda acceder a los \"streams\" públicos"; App::$strings["Disable to require authentication before viewing. Warning: this content is unmoderated."] = "Desactivar para requerir autenticación antes de la visualización. Advertencia: este contenido no está moderado."; +App::$strings["Only import Public stream posts with this text"] = "Importar solo entradas del stream púlbico con este texto "; +App::$strings["words one per line or #tags or /patterns/ or lang=xx, leave blank to import all posts"] = "Una sola opción por línea: palabras, #etiquetas, /patrones/ o lang=xx. Dejar en blanco para importarlo todo"; +App::$strings["Do not import Public stream posts with this text"] = "No importar entradas del stream público con este texto "; App::$strings["Login on Homepage"] = "Iniciar sesión en la página personal"; App::$strings["Present a login box to visitors on the home page if no other content has been configured."] = "Presentar a los visitantes una casilla de identificación en la página de inicio, si no se ha configurado otro tipo de contenido."; App::$strings["Enable context help"] = "Habilitar la ayuda contextual"; @@ -615,9 +624,30 @@ App::$strings["Do not expire any posts which have comments less than this many d App::$strings["Public servers: Optional landing (marketing) webpage for new registrants"] = "Servidores públicos: Página web de acogida (marketing) opcional para nuevos registros"; App::$strings["Create this page first. Default is %s/register"] = "Crear esta página primero. Por defecto es %s/register"; App::$strings["Page to display after creating a new channel"] = "Página a mostrar después de la creación de un nuevo canal"; -App::$strings["Recommend: profiles, go, or settings"] = "Recomendar: perfiles, ir, o ajustes"; +App::$strings["Default: profiles"] = "Perfiles predeterminados"; App::$strings["Optional: site location"] = "Opcional: ubicación del sitio"; App::$strings["Region or country"] = "Región o país"; +App::$strings["Plugin %s disabled."] = "Extensión %s desactivada."; +App::$strings["Plugin %s enabled."] = "Extensión %s activada."; +App::$strings["Addons"] = "Addons"; +App::$strings["Minimum project version: "] = "Versión mínima del proyecto:"; +App::$strings["Maximum project version: "] = "Versión máxima del proyecto:"; +App::$strings["Minimum PHP version: "] = "Versión mínima de PHP:"; +App::$strings["Compatible Server Roles: "] = "Configuraciones compatibles con este servidor:"; +App::$strings["Requires: "] = "Se requiere:"; +App::$strings["Disabled - version incompatibility"] = "Deshabilitado - versiones incompatibles"; +App::$strings["Enter the public git repository URL of the addon repo."] = "Introduzca la URL del repositorio público de git del addon repo."; +App::$strings["Addon repo git URL"] = "URL del repositorio git del addon"; +App::$strings["Custom repo name"] = "Nombre personalizado del repositorio"; +App::$strings["(optional)"] = "(opcional)"; +App::$strings["Download Addon Repo"] = "Descargar el repositorio"; +App::$strings["Install new repo"] = "Instalar un nuevo repositorio"; +App::$strings["Install"] = "Instalar"; +App::$strings["Manage Repos"] = "Gestionar los repositorios"; +App::$strings["Installed Addon Repositories"] = "Repositorioe de addons instalados"; +App::$strings["Install a New Addon Repository"] = "Instalar un nuevo repositorio de addons"; +App::$strings["Switch branch"] = "Cambiar la rama"; +App::$strings["Remove"] = "Eliminar"; App::$strings["New Profile Field"] = "Nuevo campo en el perfil"; App::$strings["Field nickname"] = "Alias del campo"; App::$strings["System name of field"] = "Nombre del campo en el sistema"; @@ -642,7 +672,6 @@ App::$strings["Account not found."] = "No se ha encontrado la cuenta."; App::$strings["Account Edit"] = "Editar la cuenta"; App::$strings["New Password"] = "Nueva contraseña"; App::$strings["New Password again"] = "Nueva contraseña otra vez"; -App::$strings["Technical skill level"] = "Nivel de habilidad técnica"; App::$strings["Account language (for emails)"] = "Idioma de la cuenta (para los correos electrónicos)"; App::$strings["Service class"] = "Clase de servicio"; App::$strings["By default, unfiltered HTML is allowed in embedded media. This is inherently insecure."] = "De forma predeterminada, el HTML sin filtrar está permitido en el contenido multimedia incorporado en una publicación. Esto es siempre inseguro."; @@ -652,6 +681,9 @@ App::$strings["All other embedded content will be filtered, unlessprivacy settings, which have higher priority than individual settings. You can not change those settings here."] = "Algunos permisos pueden ser heredados de los ajustes de privacidad de sus canales, los cuales tienen una prioridad más alta que los ajustes individuales. No puede cambiar estos ajustes aquí."; App::$strings["Friends"] = "Amigos/as"; App::$strings["Settings updated."] = "Ajustes actualizados."; App::$strings["Nobody except yourself"] = "Nadie excepto usted"; @@ -697,6 +720,8 @@ App::$strings["Allow us to suggest you as a potential friend to new members?"] = App::$strings["or"] = "o"; App::$strings["Your channel address is"] = "Su dirección de canal es"; App::$strings["Your files/photos are accessible via WebDAV at"] = "Sus archivos y fotos son accesibles a través de WebDAV en "; +App::$strings["Automatic membership approval"] = "Aprobación automática de nuevos miembros"; +App::$strings["If enabled, connection requests will be approved without your interaction"] = "Si está habilitado, las solicitudes de conexión serán aprobadas sin su intervención."; App::$strings["Channel Settings"] = "Ajustes del canal"; App::$strings["Basic Settings"] = "Configuración básica"; App::$strings["Full Name:"] = "Nombre completo:"; @@ -729,7 +754,7 @@ App::$strings["May reduce spam activity"] = "Podría reducir la actividad de spa App::$strings["Default Privacy Group"] = "Grupo de canales predeterminado"; App::$strings["Use my default audience setting for the type of object published"] = "Usar los ajustes de mi audiencia predeterminada para el tipo de publicación"; App::$strings["Profile to assign new connections"] = "Perfil para asignar a las nuevas conexiones"; -App::$strings["Default Permissions Group"] = "Grupo de permisos predeterminados"; +App::$strings["Default permissions category"] = "Categoría de permisos por defecto"; App::$strings["Maximum private messages per day from unknown people:"] = "Máximo de mensajes privados por día de gente desconocida:"; App::$strings["Useful to reduce spamming"] = "Útil para reducir el envío de correo no deseado"; App::$strings["Notification Settings"] = "Configuración de las notificaciones"; @@ -748,7 +773,7 @@ App::$strings["You are tagged in a post"] = "Usted sea etiquetado en una publica App::$strings["You are poked/prodded/etc. in a post"] = "Reciba un toque o incitación en una publicación"; App::$strings["Someone likes your post/comment"] = "Alguien muestre agrado por su entrada o comentario"; App::$strings["Show visual notifications including:"] = "Mostrar notificaciones visuales que incluyan:"; -App::$strings["Unseen grid activity"] = "Nueva actividad en la red"; +App::$strings["Unseen stream activity"] = "Actividad del stream no vista"; App::$strings["Unseen channel activity"] = "Actividad no vista en el canal"; App::$strings["Unseen private messages"] = "Mensajes privados no leídos"; App::$strings["Recommended"] = "Recomendado"; @@ -762,8 +787,9 @@ App::$strings["System critical alerts"] = "Alertas críticas del sistema"; App::$strings["New connections"] = "Nuevas conexiones"; App::$strings["System Registrations"] = "Registros del sistema"; App::$strings["Unseen shared files"] = "Ficheros compartidos no vistos"; -App::$strings["Unseen public activity"] = "Actividad pública no vista"; +App::$strings["Unseen public stream activity"] = "Actividad del stream público no vista"; App::$strings["Unseen likes and dislikes"] = "Los \"me gusta\" y \"no me gusta\" no vistos"; +App::$strings["Unseen forum posts"] = "Entradas no vistas en el foro"; App::$strings["Email notification hub (hostname)"] = "Email de notificación del hub (nombre del host)"; App::$strings["If your channel is mirrored to multiple hubs, set this to your preferred location. This will prevent duplicate email notifications. Example: %s"] = "Si su canal está replicado en múltiples hubs, colóquelo en su ubicación preferida. Esto evitará la duplicación de notificaciones por correo electrónico. Ejemplo: %s"; App::$strings["Show new wall posts, private messages and connections under Notices"] = "Mostrar nuevos mensajes en el muro, mensajes privados y conexiones en Avisos"; @@ -778,40 +804,17 @@ App::$strings["Default file upload folder"] = "Carpeta por defecto de los ficher App::$strings["Personal menu to display in your channel pages"] = "Menú personal que debe mostrarse en las páginas de su canal"; App::$strings["Remove this channel."] = "Eliminar este canal."; App::$strings["Firefox Share \$Projectname provider"] = "Servicio de compartición de Firefox: proveedor \$Projectname"; -App::$strings["Start calendar week on Monday"] = "Comenzar el calendario semanal por el lunes"; App::$strings["Additional Features"] = "Funcionalidades"; -App::$strings["Your technical skill level"] = "Su nivel de habilidad técnica"; -App::$strings["Used to provide a member experience and additional features consistent with your comfort level"] = "Utilizado para proporcionar un nivel de experiencia como miembro y características adicionales consistentes con su nivel de comodidad"; -App::$strings["This channel is limited to %d tokens"] = "Este canal tiene un límite de %d tokens"; -App::$strings["Name and Password are required."] = "Se requiere el nombre y la contraseña."; -App::$strings["Token saved."] = "Token salvado."; -App::$strings["Use this form to create temporary access identifiers to share things with non-members. These identities may be used in Access Control Lists and visitors may login using these credentials to access private content."] = "Utilice este formulario para crear identificadores de acceso temporal para compartir cosas con los no miembros de Hubzilla. Estas identidades se pueden usar en las Listas de control de acceso (ACL) y así los visitantes pueden iniciar sesión, utilizando estas credenciales, para acceder a su contenido privado."; -App::$strings["You may also provide dropbox style access links to friends and associates by adding the Login Password to any specific site URL as shown. Examples:"] = "También puede proporcionar, con el estilo dropbox, enlaces de acceso a sus amigos y asociados añadiendo la contraseña de inicio de sesión a cualquier dirección URL, como se muestra. Ejemplos: "; -App::$strings["Guest Access Tokens"] = "Tokens de acceso para invitados"; -App::$strings["Login Name"] = "Nombre de inicio de sesión"; -App::$strings["Login Password"] = "Contraseña de inicio de sesión"; -App::$strings["Expires (yyyy-mm-dd)"] = "Expira (aaaa-mm-dd)"; -App::$strings["Their Settings"] = "Sus ajustes"; -App::$strings["Name and Secret are required"] = "\"Key\" y \"Secret\" son obligatorios"; -App::$strings["Add OAuth2 application"] = "Añadir aplicación OAuth2"; -App::$strings["Name of application"] = "Nombre de la aplicación"; -App::$strings["Consumer Secret"] = "Consumer Secret"; -App::$strings["Automatically generated - change if desired. Max length 20"] = "Generado automáticamente - si lo desea, cámbielo. Longitud máxima: 20"; -App::$strings["Redirect"] = "Redirigir"; -App::$strings["Redirect URI - leave blank unless your application specifically requires this"] = "URI de redirección - dejar en blanco a menos que su aplicación específicamente lo requiera"; -App::$strings["Grant Types"] = "Tipos de permisos"; -App::$strings["leave blank unless your application sepcifically requires this"] = "Dejar en blanco a menos que su aplicación lo requiera específicamente"; -App::$strings["Authorization scope"] = "Alcance de la autorización"; -App::$strings["OAuth2 Application not found."] = "No se ha encontrado la aplicación OAuth2."; -App::$strings["Add application"] = "Añadir aplicación"; -App::$strings["Connected OAuth2 Apps"] = "Aplicaciones OAuth2 conectadas"; -App::$strings["Client key starts with"] = "La \"client key\" empieza por"; -App::$strings["No name"] = "Sin nombre"; -App::$strings["Remove authorization"] = "Eliminar autorización"; +App::$strings["Events Settings"] = "Gestión de eventos"; +App::$strings["CalDAV Settings"] = "Ajustes de CalDav"; +App::$strings["Settings saved."] = "Configuración guardada."; +App::$strings["Settings saved. Reload page please."] = "Ajustes guardados. Recargue la página, por favor."; +App::$strings["Conversation Settings"] = "Ajustes de Conversation"; +App::$strings["Connections Settings"] = "Gestión de las conexiones"; +App::$strings["Photos Settings"] = "Gestión de las fotos"; App::$strings["Not valid email."] = "Correo electrónico no válido."; App::$strings["Protected email address. Cannot change to that email."] = "Dirección de correo electrónico protegida. No se puede cambiar a ella."; App::$strings["System failure storing new email. Please try again."] = "Fallo de sistema al guardar el nuevo correo electrónico. Por favor, inténtelo de nuevo."; -App::$strings["Technical skill level updated"] = "Se ha actualizado el nivel de habilidad técnica"; App::$strings["Password verification failed."] = "La comprobación de la contraseña ha fallado."; App::$strings["Passwords do not match. Password unchanged."] = "Las contraseñas no coinciden. La contraseña no se ha cambiado."; App::$strings["Empty passwords are not allowed. Password unchanged."] = "No se permiten contraseñas vacías. La contraseña no se ha cambiado."; @@ -824,6 +827,8 @@ App::$strings["Confirm New Password"] = "Confirmar la nueva contraseña"; App::$strings["Leave password fields blank unless changing"] = "Dejar en blanco la contraseña a menos que desee cambiarla."; App::$strings["Remove Account"] = "Eliminar cuenta"; App::$strings["Remove this account including all its channels"] = "Eliminar esta cuenta incluyendo todos sus canales"; +App::$strings["Profiles Settings"] = "Gestión de los perfiles"; +App::$strings["Channel Manager Settings"] = "Ajustes del administrador de canales"; App::$strings["Affinity Slider settings updated."] = "Se han actualizado los ajustes del controlador de afinidad."; App::$strings["No feature settings configured"] = "No se ha establecido la configuración de los complementos"; App::$strings["Default maximum affinity level"] = "Nivel máximo de afinidad por defecto"; @@ -833,6 +838,11 @@ App::$strings["0-99 - default 0"] = "0-99 - por defecto 0"; App::$strings["Affinity Slider Settings"] = "Ajustes del controlador de afinidad"; App::$strings["Addon Settings"] = "Ajustes de los complementos"; App::$strings["Please save/submit changes to any panel before opening another."] = "Guarde o envíe los cambios a cualquier panel antes de abrir otro."; +App::$strings["Max height of content (in pixels)"] = "Altura máxima del contenido (en píxeles)"; +App::$strings["Click to expand content exceeding this height"] = "Haga clic para expandir el contenido que exceda esta altura"; +App::$strings["Channel Home Settings"] = "Ajustes del canal"; +App::$strings["Directory Settings"] = "Configuración del directorio"; +App::$strings["Editor Settings"] = "Ajustes del editor"; App::$strings["%s - (Experimental)"] = "%s - (Experimental)"; App::$strings["Display Settings"] = "Ajustes de visualización"; App::$strings["Theme Settings"] = "Ajustes del tema"; @@ -853,23 +863,24 @@ App::$strings["Default: channel menu located in app menu"] = "Predeterminado: me App::$strings["Manual conversation updates"] = "Actualizaciones manuales de la conversación"; App::$strings["Default is on, turning this off may increase screen jumping"] = "El valor predeterminado está activado, al desactivarlo puede aumentar el salto de pantalla"; App::$strings["Link post titles to source"] = "Enlazar título de la publicación a la fuente original"; -App::$strings["System Page Layout Editor - (advanced)"] = "Editor de plantilla de página del sistema - (avanzado)"; -App::$strings["Use blog/list mode on channel page"] = "Usar modo blog/lista en la página de inicio del canal"; -App::$strings["(comments displayed separately)"] = "(comentarios mostrados de forma separada)"; -App::$strings["Use blog/list mode on grid page"] = "Mostrar mi red en modo blog"; -App::$strings["Channel page max height of content (in pixels)"] = "Altura máxima del contenido de la página del canal (en píxeles)"; -App::$strings["click to expand content exceeding this height"] = "Pulsar para expandir el contenido que exceda de esta altura"; -App::$strings["Grid page max height of content (in pixels)"] = "Altura máxima del contenido de mi red (en píxeles)"; -App::$strings["Name is required"] = "El nombre es obligatorio"; -App::$strings["Key and Secret are required"] = "\"Key\" y \"Secret\" son obligatorios"; -App::$strings["Consumer Key"] = "Consumer Key"; -App::$strings["Icon url"] = "Dirección del icono"; -App::$strings["Optional"] = "Opcional"; -App::$strings["Application not found."] = "Aplicación no encontrada."; -App::$strings["Connected Apps"] = "Aplicaciones (apps) conectadas"; +App::$strings["New Member Links"] = "Enlaces para nuevos miembros"; +App::$strings["Display new member quick links menu"] = "Mostrar el menú de enlaces rápidos para nuevos miembros"; +App::$strings["Stream Settings"] = "Ajustes del stream"; App::$strings["View Photo"] = "Ver foto"; App::$strings["Edit Album"] = "Editar álbum"; App::$strings["Upload"] = "Subir"; +App::$strings["This channel is limited to %d tokens"] = "Este canal tiene un límite de %d tokens"; +App::$strings["Name and Password are required."] = "Se requiere el nombre y la contraseña."; +App::$strings["Token saved."] = "Token salvado."; +App::$strings["Guest Access App"] = "App de acceso para invitados"; +App::$strings["Create access tokens so that non-members can access private content"] = "Crear tokens de acceso para que los no miembros puedan acceder a contenido privado"; +App::$strings["Use this form to create temporary access identifiers to share things with non-members. These identities may be used in Access Control Lists and visitors may login using these credentials to access private content."] = "Utilice este formulario para crear identificadores de acceso temporal para compartir cosas con los no miembros de Hubzilla. Estas identidades se pueden usar en las Listas de control de acceso (ACL) y así los visitantes pueden iniciar sesión, utilizando estas credenciales, para acceder a su contenido privado."; +App::$strings["You may also provide dropbox style access links to friends and associates by adding the Login Password to any specific site URL as shown. Examples:"] = "También puede proporcionar, con el estilo dropbox, enlaces de acceso a sus amigos y asociados añadiendo la contraseña de inicio de sesión a cualquier dirección URL, como se muestra. Ejemplos: "; +App::$strings["Guest Access Tokens"] = "Tokens de acceso para invitados"; +App::$strings["Login Name"] = "Nombre de inicio de sesión"; +App::$strings["Login Password"] = "Contraseña de inicio de sesión"; +App::$strings["Expires (yyyy-mm-dd)"] = "Expira (aaaa-mm-dd)"; +App::$strings["Their Settings"] = "Sus ajustes"; App::$strings["Some blurb about what to do when you're new here"] = "Algunas propuestas para el nuevo usuario sobre qué se puede hacer aquí"; App::$strings["Thing updated"] = "Elemento actualizado."; App::$strings["Object store: failed"] = "Guardar objeto: ha fallado"; @@ -899,15 +910,36 @@ App::$strings["Or provide the old server/hub details"] = "O proporcione los deta App::$strings["Your old identity address (xyz@example.com)"] = "Su identidad en el antiguo servidor (canal@ejemplo.com)"; App::$strings["Your old login email address"] = "Su antigua dirección de correo electrónico"; App::$strings["Your old login password"] = "Su antigua contraseña"; +App::$strings["Import a few months of posts if possible (limited by available memory"] = "Importar unos meses de mensajes si es posible (limitado por la memoria disponible"; App::$strings["For either option, please choose whether to make this hub your new primary address, or whether your old location should continue this role. You will be able to post from either location, but only one can be marked as the primary location for files, photos, and media."] = "Para cualquiera de las opciones, elija si hacer de este servidor su nueva dirección primaria, o si su antigua dirección debe continuar con este papel. Usted podrá publicar desde cualquier ubicación, pero sólo una puede estar marcada como la ubicación principal para los ficheros, fotos y otras imágenes o vídeos."; App::$strings["Make this hub my primary location"] = "Convertir este servidor en mi ubicación primaria"; App::$strings["Move this channel (disable all previous locations)"] = "Mover este canal (desactivar todas las ubicaciones anteriores)"; -App::$strings["Import a few months of posts if possible (limited by available memory"] = "Importar unos meses de mensajes si es posible (limitado por la memoria disponible"; +App::$strings["Use this channel nickname instead of the one provided"] = "Usa este alias de canal en lugar del que se proporciona"; +App::$strings["Leave blank to keep your existing channel nickname. You will be randomly assigned a similar nickname if either name is already allocated on this site."] = "Dejar en blanco para mantener su alias de canal existente. Se le asignará aleatoriamente uno similar si cualquiera de los dos nombres ya está asignado en este sitio."; App::$strings["This process may take several minutes to complete. Please submit the form only once and leave this page open until finished."] = "Este proceso puede tardar varios minutos en completarse. Por favor envíe el formulario una sola vez y mantenga esta página abierta hasta que termine."; App::$strings["Authentication failed."] = "Falló la autenticación."; App::$strings["Remote Authentication"] = "Acceso desde su servidor"; App::$strings["Enter your channel address (e.g. channel@example.com)"] = "Introduzca la dirección del canal (p.ej. canal@ejemplo.com)"; App::$strings["Authenticate"] = "Acceder"; +App::$strings["Name and Secret are required"] = "\"Key\" y \"Secret\" son obligatorios"; +App::$strings["OAuth2 Apps Manager App"] = "Aplicación del administrador de apps OAuth2"; +App::$strings["OAuth2 authenticatication tokens for mobile and remote apps"] = "Tokens de autenticación de OAuth2 para aplicaciones móviles y remotas"; +App::$strings["Add OAuth2 application"] = "Añadir aplicación OAuth2"; +App::$strings["Name of application"] = "Nombre de la aplicación"; +App::$strings["Consumer Secret"] = "Consumer Secret"; +App::$strings["Automatically generated - change if desired. Max length 20"] = "Generado automáticamente - si lo desea, cámbielo. Longitud máxima: 20"; +App::$strings["Redirect"] = "Redirigir"; +App::$strings["Redirect URI - leave blank unless your application specifically requires this"] = "URI de redirección - dejar en blanco a menos que su aplicación específicamente lo requiera"; +App::$strings["Grant Types"] = "Tipos de permisos"; +App::$strings["leave blank unless your application sepcifically requires this"] = "Dejar en blanco a menos que su aplicación lo requiera específicamente"; +App::$strings["Authorization scope"] = "Alcance de la autorización"; +App::$strings["OAuth2 Application not found."] = "No se ha encontrado la aplicación OAuth2."; +App::$strings["Add application"] = "Añadir aplicación"; +App::$strings["leave blank unless your application specifically requires this"] = "dejar en blanco a menos que su aplicación lo requiera específicamente"; +App::$strings["Connected OAuth2 Apps"] = "Aplicaciones OAuth2 conectadas"; +App::$strings["Client key starts with"] = "La \"client key\" empieza por"; +App::$strings["No name"] = "Sin nombre"; +App::$strings["Remove authorization"] = "Eliminar autorización"; App::$strings["Permissions denied."] = "Permisos denegados."; App::$strings["Import"] = "Importar"; App::$strings["Authorize application connection"] = "Autorizar una conexión de aplicación"; @@ -915,14 +947,18 @@ App::$strings["Return to your app and insert this Security Code:"] = "Vuelva a s App::$strings["Please login to continue."] = "Por favor inicie sesión para continuar."; App::$strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "¿Desea autorizar a esta aplicación a acceder a sus publicaciones y contactos, y/o crear nuevas publicaciones por usted?"; App::$strings["Item not available."] = "Elemento no disponible"; +App::$strings["Random Channel App"] = "App canal aleatorio"; +App::$strings["Visit a random channel in the \$Projectname network"] = "Visitar un canal aleatorio en la red \$Projectname"; App::$strings["Edit Block"] = "Modificar este bloque"; App::$strings["vcard"] = "vcard"; -App::$strings["Apps"] = "Aplicaciones (apps)"; -App::$strings["Manage apps"] = "Gestionar las aplicaciones"; -App::$strings["Create new app"] = "Crear una nueva aplicación"; +App::$strings["Available Apps"] = "Aplicaciones disponibles"; +App::$strings["Installed Apps"] = "Apps instaladas"; +App::$strings["Manage Apps"] = "Administrar apps"; +App::$strings["Create Custom App"] = "Crear una app personalizada"; App::$strings["__ctx:mood__ %1\$s is %2\$s"] = "%1\$s está %2\$s"; -App::$strings["Mood"] = "Estado de ánimo"; +App::$strings["Mood App"] = "App estados de ánimo"; App::$strings["Set your current mood and tell your friends"] = "Describir su estado de ánimo para comunicárselo a sus amigos"; +App::$strings["Mood"] = "Estado de ánimo"; App::$strings["Active"] = "Activo/a"; App::$strings["Blocked"] = "Bloqueadas"; App::$strings["Ignored"] = "Ignoradas"; @@ -959,8 +995,9 @@ App::$strings["Search your connections"] = "Buscar sus conexiones"; App::$strings["Connections search"] = "Buscar conexiones"; App::$strings["Find"] = "Encontrar"; App::$strings["item"] = "elemento"; -App::$strings["Source of Item"] = "Origen del elemento"; App::$strings["Bookmark added"] = "Marcador añadido"; +App::$strings["Bookmarks App"] = "App marcadores"; +App::$strings["Bookmark links from posts and manage them"] = "Añadir enlaces de las entradas a Marcadores y administrarlos"; App::$strings["My Bookmarks"] = "Mis marcadores"; App::$strings["My Connections Bookmarks"] = "Marcadores de mis conexiones"; App::$strings["Account removals are not allowed within 48 hours of changing the account password."] = "La eliminación de cuentas no está permitida hasta después de que hayan transcurrido 48 horas desde el último cambio de contraseña."; @@ -1029,7 +1066,8 @@ App::$strings["__ctx:noun__ Dislikes"] = "No me gusta"; App::$strings["Close"] = "Cerrar"; App::$strings["Recent Photos"] = "Fotos recientes"; App::$strings["Profile Unavailable."] = "Perfil no disponible"; -App::$strings["Not found"] = "No encontrado"; +App::$strings["Wiki App"] = "App wiki"; +App::$strings["Provide a wiki for your channel"] = "Proporcionar un wiki para su canal"; App::$strings["Invalid channel"] = "Canal no válido"; App::$strings["Error retrieving wiki"] = "Error al recuperar el wiki"; App::$strings["Error creating zip file export folder"] = "Error al crear el fichero comprimido zip de la carpeta a exportar"; @@ -1065,6 +1103,7 @@ App::$strings["Choose a different album"] = "Elegir un álbum diferente..."; App::$strings["Error getting album list"] = "Error al obtener la lista de álbumes"; App::$strings["Error getting photo link"] = "Error al obtener el enlace de la foto"; App::$strings["Error getting album"] = "Error al obtener el álbum"; +App::$strings["History"] = "Historial"; App::$strings["Error creating wiki. Invalid name."] = "Error al crear el wiki: el nombre no es válido."; App::$strings["A wiki with this name already exists."] = "Ya hay un wiki con este nombre."; App::$strings["Wiki created, but error creating Home page."] = "Se ha creado el wiki, pero se ha producido un error al crear la página de inicio."; @@ -1080,7 +1119,8 @@ App::$strings["Selected Revision"] = "Revisión seleccionada"; App::$strings["You must be authenticated."] = "Debe estar autenticado."; App::$strings["toggle full screen mode"] = "cambiar al modo de pantalla completa"; App::$strings["Layout updated."] = "Plantilla actualizada."; -App::$strings["Feature disabled."] = "Funcionalidad deshabilitada."; +App::$strings["PDL Editor App"] = "App editor PDL"; +App::$strings["Provides the ability to edit system page layouts"] = "Proporciona la capacidad de editar los diseños de página del sistema"; App::$strings["Edit System Page Description"] = "Editor del Sistema de Descripción de Páginas"; App::$strings["(modified)"] = "(modificado)"; App::$strings["Reset"] = "Reiniciar"; @@ -1089,6 +1129,8 @@ App::$strings["Module Name:"] = "Nombre del módulo:"; App::$strings["Layout Help"] = "Ayuda para el diseño de plantillas de página"; App::$strings["Edit another layout"] = "Editar otro diseño"; App::$strings["System layout"] = "Diseño del sistema"; +App::$strings["Poke App"] = "App toques"; +App::$strings["Poke somebody in your addressbook"] = "Dar un toque a alguien en su libreta de direcciones"; App::$strings["Poke"] = "Toques y otras cosas"; App::$strings["Poke somebody"] = "Dar un toque a alguien"; App::$strings["Poke/Prod"] = "Toque/Incitación"; @@ -1104,6 +1146,8 @@ App::$strings["Unable to process image"] = "No ha sido posible procesar la image App::$strings["Image upload failed."] = "La carga de la imagen ha fallado."; App::$strings["Unable to process image."] = "No ha sido posible procesar la imagen."; App::$strings["Photo not available."] = "Foto no disponible."; +App::$strings["Your default profile photo is visible to anybody on the internet. Profile photos for alternate profiles will inherit the permissions of the profile"] = "Su foto de perfil predeterminada es visible para cualquiera en Internet. Las fotos de perfil para perfiles alternativos heredarán los permisos del predeterminado."; +App::$strings["Your profile photo is visible to anybody on the internet and may be distributed to other websites."] = "La foto de su perfil es visible para cualquiera en Internet y puede ser distribuida en otros sitios web."; App::$strings["Upload File:"] = "Subir fichero:"; App::$strings["Select a profile:"] = "Seleccionar un perfil:"; App::$strings["Use Photo for Profile"] = "Usar la fotografía para el perfil"; @@ -1131,6 +1175,8 @@ App::$strings["g A l F d"] = "g A l d F"; App::$strings["[today]"] = "[hoy]"; App::$strings["posted an event"] = "publicó un evento"; App::$strings["shared a file with you"] = "compartió un archivo con usted"; +App::$strings["Private forum"] = "Foro privado"; +App::$strings["Public forum"] = "Foro público"; App::$strings["Invalid item."] = "Elemento no válido."; App::$strings["Page not found."] = "Página no encontrada."; App::$strings["Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."] = "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."; @@ -1188,9 +1234,8 @@ App::$strings["Connection Default Permissions"] = "Permisos predeterminados de c App::$strings["Connection: %s"] = "Conexión: %s"; App::$strings["Apply these permissions automatically"] = "Aplicar estos permisos automaticamente"; App::$strings["Connection requests will be approved without your interaction"] = "Las solicitudes de conexión serán aprobadas sin su intervención"; -App::$strings["Permission role"] = "Rol de acceso"; -App::$strings["Loading"] = "Cargando"; -App::$strings["Add permission role"] = "Añadir un rol de acceso"; +App::$strings["Permission role"] = "Permisos de rol"; +App::$strings["Add permission role"] = "Añadir permisos de rol"; App::$strings["This connection's primary address is"] = "La dirección primaria de esta conexión es"; App::$strings["Available locations:"] = "Ubicaciones disponibles:"; App::$strings["The permissions indicated on this page will be applied to all new connections."] = "Los permisos indicados en esta página serán aplicados en todas las nuevas conexiones."; @@ -1201,7 +1246,6 @@ App::$strings["Slide to adjust your rating"] = "Deslizar para ajustar su valorac App::$strings["Optionally explain your rating"] = "Opcionalmente, puede explicar su valoración"; App::$strings["Custom Filter"] = "Filtro personalizado"; App::$strings["Only import posts with this text"] = "Importar solo entradas que contengan este texto"; -App::$strings["words one per line or #tags or /patterns/ or lang=xx, leave blank to import all posts"] = "Una sola opción por línea: palabras, #etiquetas, /patrones/ o lang=xx. Dejar en blanco para importarlo todo"; App::$strings["Do not import posts with this text"] = "No importar entradas que contengan este texto"; App::$strings["This information is public!"] = "¡Esta información es pública!"; App::$strings["Connection Pending Approval"] = "Conexión pendiente de aprobación"; @@ -1209,6 +1253,8 @@ App::$strings["Please choose the profile you would like to display to %s when vi App::$strings["Some permissions may be inherited from your channel's privacy settings, which have higher priority than individual settings. You can change those settings here but they wont have any impact unless the inherited setting changes."] = "Algunos permisos pueden ser heredados de los ajustes de privacidad de sus canales, los cuales tienen una prioridad más alta que los ajustes individuales. Puede cambiar estos ajustes aquí, pero no tendrán ningún consecuencia hasta que cambie los ajustes heredados."; App::$strings["Last update:"] = "Última actualización:"; App::$strings["Details"] = "Detalles"; +App::$strings["Chatrooms App"] = "App salas de chat"; +App::$strings["Access Controlled Chatrooms"] = "Salas de chat moderadas"; App::$strings["Room not found"] = "Sala no encontrada"; App::$strings["Leave Room"] = "Abandonar la sala"; App::$strings["Delete Room"] = "Eliminar esta sala"; @@ -1253,6 +1299,9 @@ App::$strings["Help"] = "Ayuda"; App::$strings["Comanche page description language help"] = "Página de ayuda del lenguaje de descripción de páginas (PDL) Comanche"; App::$strings["Layout Description"] = "Descripción de la plantilla"; App::$strings["Download PDL file"] = "Descargar el fichero PDL"; +App::$strings["Notes App"] = "App notas"; +App::$strings["A simple notes app with a widget (note: notes are not encrypted)"] = "Una simple aplicación de notas con un widget (aviso: las notas no están encriptadas)"; +App::$strings["Not found"] = "No encontrado"; App::$strings["Please refresh page"] = "Por favor, recargue la página"; App::$strings["Unknown error"] = "Error desconocido"; App::$strings["Token verification failed."] = "Ha fallado el token de verificación."; @@ -1267,7 +1316,8 @@ App::$strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s ha etiquetado %3 App::$strings["This setting requires special processing and editing has been blocked."] = "Este ajuste necesita de un proceso especial y la edición ha sido bloqueada."; App::$strings["Configuration Editor"] = "Editor de configuración"; App::$strings["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."] = "Atención: El cambio de algunos ajustes puede volver inutilizable su canal. Por favor, abandone la página excepto que esté seguro y sepa cómo usar correctamente esta característica."; -App::$strings["If enabled, connection requests will be approved without your interaction"] = "Si está habilitado, las solicitudes de conexión serán aprobadas sin su intervención."; +App::$strings["Default Permissions App"] = "App de Permisos por defecto"; +App::$strings["Set custom default permissions for new connections"] = "Establecer permisos predeterminados personalizados para nuevas conexiones"; App::$strings["Automatic approval settings"] = "Opciones de autorización automática"; App::$strings["Some individual permissions may have been preset or locked based on your channel type and privacy settings."] = "Es posible que se hayan preestablecido o bloqueado algunos permisos individuales según el tipo de canal y la configuración de privacidad."; App::$strings["Unknown App"] = "Aplicación desconocida"; @@ -1278,15 +1328,21 @@ App::$strings["Privacy group created."] = "El grupo de canales ha sido creado."; App::$strings["Could not create privacy group."] = "No se puede crear el grupo de canales"; App::$strings["Privacy group not found."] = "Grupo de canales no encontrado."; App::$strings["Privacy group updated."] = "Grupo de canales actualizado."; -App::$strings["Create a group of channels."] = "Crear un grupo de canales."; -App::$strings["Privacy group name: "] = "Nombre del grupo de canales:"; +App::$strings["Privacy Groups App"] = "App de Grupos de canales"; +App::$strings["Management of privacy groups"] = "Gestión de grupos de canales"; +App::$strings["Privacy Groups"] = "Grupos de canales"; +App::$strings["Add Group"] = "Agregar un grupo"; +App::$strings["Privacy group name"] = "Nombre del grupo"; App::$strings["Members are visible to other channels"] = "Los miembros son visibles para otros canales"; +App::$strings["Members"] = "Miembros"; App::$strings["Privacy group removed."] = "Grupo de canales eliminado."; App::$strings["Unable to remove privacy group."] = "No se puede eliminar el grupo de canales."; -App::$strings["Privacy group editor"] = "Editor de grupos de canales"; -App::$strings["Members"] = "Miembros"; -App::$strings["All Connected Channels"] = "Todos los canales conectados"; -App::$strings["Click on a channel to add or remove."] = "Haga clic en un canal para agregarlo o quitarlo."; +App::$strings["Privacy Group: %s"] = "Grupo privado %s"; +App::$strings["Privacy group name: "] = "Nombre del grupo de canales:"; +App::$strings["Delete Group"] = "Eliminar grupo"; +App::$strings["Group members"] = "Miembros del grupo"; +App::$strings["Not in this group"] = "No en este grupo"; +App::$strings["Click a channel to toggle membership"] = "Haga clic en un canal para cambiar los miembros"; App::$strings["Profile not found."] = "Perfil no encontrado."; App::$strings["Profile deleted."] = "Perfil eliminado."; App::$strings["Profile-"] = "Perfil-"; @@ -1381,8 +1437,10 @@ App::$strings["Make Default"] = "Convertir en predeterminado"; App::$strings["%d new messages"] = "%d mensajes nuevos"; App::$strings["%d new introductions"] = "%d nuevas solicitudes de conexión"; App::$strings["Delegated Channel"] = "Canal delegado"; -App::$strings["Cards"] = "Fichas"; +App::$strings["Cards App"] = "App de Fichas"; +App::$strings["Create personal planning cards"] = "Crear fichas de planificación personal"; App::$strings["Add Card"] = "Añadir una ficha"; +App::$strings["Cards"] = "Fichas"; App::$strings["This directory server requires an access token"] = "El servidor de este directorio necesita un \"token\" de acceso"; App::$strings["About this site"] = "Acerca de este sitio"; App::$strings["Site Name"] = "Nombre del sitio"; @@ -1391,6 +1449,7 @@ App::$strings["Terms of Service"] = "Términos del servicio"; App::$strings["Software and Project information"] = "Información sobre el software y el proyecto"; App::$strings["This site is powered by \$Projectname"] = "Este sitio funciona con \$Projectname"; App::$strings["Federated and decentralised networking and identity services provided by Zot"] = "Servicios federados y descentralizados de identidad y redes proporcionados por Zot"; +App::$strings["Additional federated transport protocols:"] = "Protocolos adicionales de transporte federado: "; App::$strings["Version %s"] = "Versión %s"; App::$strings["Project homepage"] = "Página principal del proyecto"; App::$strings["Developer homepage"] = "Página principal del desarrollador"; @@ -1399,6 +1458,8 @@ App::$strings["Ratings"] = "Valoraciones"; App::$strings["Rating: "] = "Valoración:"; App::$strings["Website: "] = "Sitio web:"; App::$strings["Description: "] = "Descripción:"; +App::$strings["Webpages App"] = "App de Páginas web"; +App::$strings["Provide managed web pages on your channel"] = "Proveer páginas web gestionadas en su canal"; App::$strings["Import Webpage Elements"] = "Importar elementos de una página web"; App::$strings["Import selected"] = "Importar elementos seleccionados"; App::$strings["Export Webpage Elements"] = "Exportar elementos de una página web"; @@ -1440,6 +1501,8 @@ App::$strings["Redeliver"] = "Volver a enviar"; App::$strings["Failed to create source. No channel selected."] = "No se ha podido crear el origen de los contenidos. No ha sido seleccionado ningún canal."; App::$strings["Source created."] = "Fuente creada."; App::$strings["Source updated."] = "Fuente actualizada."; +App::$strings["Sources App"] = "App de Fuentes"; +App::$strings["Automatically import channel content from other channels or feeds"] = "Importar automáticamente contenido de otros canales o \"feeds\""; App::$strings["*"] = "*"; App::$strings["Channel Sources"] = "Orígenes de los contenidos del canal"; App::$strings["Manage remote sources of content for your channel."] = "Gestionar contenido de origen remoto para su canal."; @@ -1449,6 +1512,9 @@ App::$strings["Only import content with these words (one per line)"] = "Importar App::$strings["Leave blank to import all public content"] = "Dejar en blanco para importar todo el contenido público"; App::$strings["Channel Name"] = "Nombre del canal"; App::$strings["Add the following categories to posts imported from this source (comma separated)"] = "Añadir los temas siguientes a las entradas importadas de esta fuente (separadas por comas)"; +App::$strings["Optional"] = "Opcional"; +App::$strings["Resend posts with this channel as author"] = "Reenviar mensajes con este canal como autor"; +App::$strings["Copyrights may apply"] = "Se pueden aplicar los derechos de autor"; App::$strings["Source not found."] = "Fuente no encontrada"; App::$strings["Edit Source"] = "Editar fuente"; App::$strings["Delete Source"] = "Eliminar fuente"; @@ -1504,6 +1570,8 @@ App::$strings["Oldest to Newest"] = "De más antiguo a más nuevo"; App::$strings["No entries (some entries may be hidden)."] = "Sin entradas (algunas entradas pueden estar ocultas)."; App::$strings["Xchan Lookup"] = "Búsqueda de canales"; App::$strings["Lookup xchan beginning with (or webbie): "] = "Buscar un canal (o un \"webbie\") que comience por:"; +App::$strings["Suggest Channels App"] = "App de Sugerir canales"; +App::$strings["Suggestions for channels in the \$Projectname network you might be interested in"] = "Sugerencias de los canales de la red \$Projectname en los que puede estar interesado"; App::$strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "No hay sugerencias disponibles. Si es un sitio nuevo, espere 24 horas y pruebe de nuevo."; App::$strings["Ignore/Hide"] = "Ignorar/Ocultar"; App::$strings["Unable to find your hub."] = "No se puede encontrar su servidor."; @@ -1553,7 +1621,8 @@ App::$strings["Or enter new bookmark folder name"] = "O introduzca un nuevo nomb App::$strings["Enter a folder name"] = "Escriba un nombre de carpeta"; App::$strings["or select an existing folder (doubleclick)"] = "o seleccione una (con un doble click)"; App::$strings["Save to Folder"] = "Guardar en carpeta"; -App::$strings["Fetching URL returns error: %1\$s"] = "Al intentar obtener la dirección, retorna el error: %1\$s"; +App::$strings["Remote Diagnostics App"] = "App de Diagnósticos remotos"; +App::$strings["Perform diagnostics on remote channels"] = "Realizar diagnósticos en canales remotos"; App::$strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = "Se ha superado el límite máximo de inscripciones diarias de este sitio. Por favor, pruebe de nuevo mañana."; App::$strings["Please indicate acceptance of the Terms of Service. Registration failed."] = "Por favor, confirme que acepta los Términos del servicio. El registro ha fallado."; App::$strings["Passwords do not match."] = "Las contraseñas no coinciden."; @@ -1564,6 +1633,7 @@ App::$strings["Your registration can not be processed."] = "Su registro no puede App::$strings["Registration on this hub is disabled."] = "El registro está deshabilitado en este sitio."; App::$strings["Registration on this hub is by approval only."] = "El registro en este hub está sometido a aprobación previa."; App::$strings["Register at another affiliated hub."] = "Registrarse en otro hub afiliado."; +App::$strings["Registration on this hub is by invitation only."] = "La inscripción en este hub es sólo posible por invitación."; App::$strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Este sitio ha excedido el límite de inscripción diaria de cuentas. Por favor, inténtelo de nuevo mañana."; App::$strings["I accept the %s for this website"] = "Acepto los %s de este sitio"; App::$strings["I am over %s years of age and accept the %s for this website"] = "Tengo más de %s años de edad y acepto los %s de este sitio web"; @@ -1571,9 +1641,12 @@ App::$strings["Your email address"] = "Su dirección de correo electrónico"; App::$strings["Choose a password"] = "Elija una contraseña"; App::$strings["Please re-enter your password"] = "Por favor, vuelva a escribir su contraseña"; App::$strings["Please enter your invitation code"] = "Por favor, introduzca el código de su invitación"; +App::$strings["Your Name"] = "Su nombre"; +App::$strings["Real names are preferred."] = "Se prefieren los nombres reales"; +App::$strings["Your nickname will be used to create an easy to remember channel address e.g. nickname%s"] = "Su alias se usará para crear una dirección de canal fácil de recordar, p. ej.: alias%s"; +App::$strings["Select a channel permission role for your usage needs and privacy requirements."] = "Seleccione unos permisos de rol del canal compatibles con sus necesidades de uso y requisitos de privacidad."; App::$strings["no"] = "no"; App::$strings["yes"] = "sí"; -App::$strings["Membership on this site is by invitation only."] = "Para registrarse en este sitio es necesaria una invitación."; App::$strings["Register"] = "Registrarse"; App::$strings["This site requires email verification. After completing this form, please check your email for further instructions."] = "Este sitio requiere verificación por correo electrónico. Después de completar este formulario, por favor revise su correo electrónico para más instrucciones."; App::$strings["Cover Photos"] = "Imágenes de portada del perfil"; @@ -1583,6 +1656,7 @@ App::$strings["male"] = "hombre"; App::$strings["%1\$s updated his %2\$s"] = "%1\$s ha actualizado su %2\$s"; App::$strings["%1\$s updated their %2\$s"] = "%1\$s ha actualizado su %2\$s"; App::$strings["cover photo"] = "Imagen de portada del perfil"; +App::$strings["Your cover photo may be visible to anybody on the internet"] = "La foto de la portada puede ser visible para cualquiera en Internet"; App::$strings["Change Cover Photo"] = "Cambiar la foto de portada del perfil"; App::$strings["Documentation Search"] = "Búsqueda de Documentación"; App::$strings["About"] = "Mi perfil"; @@ -1598,11 +1672,8 @@ App::$strings["Remove Item Tag"] = "Eliminar etiqueta del elemento."; App::$strings["Select a tag to remove: "] = "Seleccionar una etiqueta para eliminar:"; App::$strings["No such group"] = "No se encuentra el grupo"; App::$strings["No such channel"] = "No se encuentra el canal"; -App::$strings["forum"] = "foro"; -App::$strings["Search Results For:"] = "Buscar resultados para:"; App::$strings["Privacy group is empty"] = "El grupo de canales está vacío"; App::$strings["Privacy group: "] = "Grupo de canales: "; -App::$strings["Invalid connection."] = "Conexión no válida."; App::$strings["Invalid channel."] = "El canal no es válido."; App::$strings["network"] = "red"; App::$strings["\$Projectname"] = "\$Projectname"; @@ -1636,7 +1707,7 @@ App::$strings["Summary"] = "Sumario"; App::$strings["Registered accounts"] = "Cuentas registradas"; App::$strings["Pending registrations"] = "Registros pendientes"; App::$strings["Registered channels"] = "Canales registrados"; -App::$strings["Active plugins"] = "Extensiones (plugins) activas"; +App::$strings["Active addons"] = "Addons acivos"; App::$strings["Version"] = "Versión"; App::$strings["Repository version (master)"] = "Versión del repositorio (master)"; App::$strings["Repository version (dev)"] = "Versión del repositorio (dev)"; @@ -1661,22 +1732,32 @@ App::$strings["Your password has changed at %s"] = "Su contraseña en %s ha sido App::$strings["Forgot your Password?"] = "¿Ha olvidado su contraseña?"; App::$strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Introduzca y envíe su dirección de correo electrónico para el restablecimiento de su contraseña. Luego revise su correo para obtener más instrucciones."; App::$strings["Email Address"] = "Dirección de correo electrónico"; +App::$strings["Name is required"] = "El nombre es obligatorio"; +App::$strings["Key and Secret are required"] = "\"Key\" y \"Secret\" son obligatorios"; +App::$strings["OAuth Apps Manager App"] = "App de Gestión de apps OAuth"; +App::$strings["OAuth authentication tokens for mobile and remote apps"] = "Tokens de autenticación de OAuth para aplicaciones móviles y remotas"; +App::$strings["Consumer Key"] = "Consumer Key"; +App::$strings["Icon url"] = "Dirección del icono"; +App::$strings["Application not found."] = "Aplicación no encontrada."; +App::$strings["Connected OAuth Apps"] = "Apps OAuth conectadas"; App::$strings["Mark all seen"] = "Marcar todo como visto"; +App::$strings["ActivityPub"] = "ActivityPub"; App::$strings["0. Beginner/Basic"] = "0. Principiante/Básico"; App::$strings["1. Novice - not skilled but willing to learn"] = "1. Novato: no cualificado, pero dispuesto a aprender"; App::$strings["2. Intermediate - somewhat comfortable"] = "2. Intermedio - algo cómodo"; App::$strings["3. Advanced - very comfortable"] = "3. Avanzado - muy cómodo"; App::$strings["4. Expert - I can write computer code"] = "4. Experto - Puedo escribir código informático"; App::$strings["5. Wizard - I probably know more than you do"] = "5. Colaborador - probablemente sé más que tú"; +App::$strings["Unable to verify channel signature"] = "No ha sido posible de verificar la firma del canal"; +App::$strings["Apps"] = "Aplicaciones (apps)"; App::$strings["Site Admin"] = "Administrador del sitio"; App::$strings["Report Bug"] = "Informe de errores"; -App::$strings["View Bookmarks"] = "Ver los marcadores"; -App::$strings["My Chatrooms"] = "Mis salas de chat"; -App::$strings["Firefox Share"] = "Servicio de compartición de Firefox"; +App::$strings["Bookmarks"] = "Marcadores"; +App::$strings["Chatrooms"] = "Salas de chat"; App::$strings["Remote Diagnostics"] = "Diagnóstico remoto"; App::$strings["Suggest Channels"] = "Sugerir canales"; App::$strings["Login"] = "Iniciar sesión"; -App::$strings["Activity"] = "Actividad"; +App::$strings["Stream"] = "Stream"; App::$strings["Wiki"] = "Wiki"; App::$strings["Channel Home"] = "Mi canal"; App::$strings["Events"] = "Eventos"; @@ -1691,6 +1772,19 @@ App::$strings["Features"] = "Funcionalidades"; App::$strings["Language"] = "Idioma"; App::$strings["Post"] = "Publicación"; App::$strings["Profile Photo"] = "Foto del perfil"; +App::$strings["Profiles"] = "Perfiles"; +App::$strings["Notifications"] = "Notificaciones"; +App::$strings["Order Apps"] = "Ordenar las apps"; +App::$strings["CalDAV"] = "CalDAV"; +App::$strings["CardDAV"] = "CardDAV"; +App::$strings["Guest Access"] = "Acceso para invitados"; +App::$strings["Notes"] = "Notas"; +App::$strings["OAuth Apps Manager"] = "Administrador de apps OAuth"; +App::$strings["OAuth2 Apps Manager"] = "Administrador de apps OAuth2"; +App::$strings["PDL Editor"] = "Editor PDL"; +App::$strings["Premium Channel"] = "Canal premium"; +App::$strings["My Chatrooms"] = "Mis salas de chat"; +App::$strings["Channel Export"] = "Exportar canal"; App::$strings["Purchase"] = "Comprar"; App::$strings["Undelete"] = "Recuperar"; App::$strings["Add to app-tray"] = "Añadir a la bandeja de aplicaciones"; @@ -1715,6 +1809,8 @@ App::$strings["Page updated"] = "Se ha actualizado la página"; App::$strings["Untitled"] = "Sin título"; App::$strings["Wiki resource_id required for git commit"] = "Se necesita Wiki resource_id para el git commit"; App::$strings["__ctx:wiki_history__ Message"] = "Mensaje"; +App::$strings["Date"] = "Fecha"; +App::$strings["Compare"] = "Comparar"; App::$strings["Different viewers will see this text differently"] = "Visitantes diferentes verán este texto de forma distinta"; App::$strings["Visible to your default audience"] = "Visible para su público predeterminado."; App::$strings["Only me"] = "Sólo yo"; @@ -1730,11 +1826,23 @@ App::$strings["This is your default setting for who can view your default channe App::$strings["This is your default setting for who can view your connections"] = "Este es su ajuste predeterminado para establecer quién puede ver sus conexiones"; App::$strings["This is your default setting for who can view your file storage and photos"] = "Este es su ajuste predeterminado para establecer quién puede ver su repositorio de ficheros y sus fotos"; App::$strings["This is your default setting for the audience of your webpages"] = "Este es el ajuste predeterminado para establecer la audiencia de sus páginas web"; +App::$strings["Directory Options"] = "Opciones del directorio"; +App::$strings["Safe Mode"] = "Modo seguro"; +App::$strings["Public Forums Only"] = "Solo foros públicos"; +App::$strings["This Website Only"] = "Solo este sitio web"; +App::$strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Un grupo suprimido con este nombre ha sido restablecido. Es posible que los permisos existentes sean aplicados a este grupo y sus futuros miembros. Si no quiere esto, por favor cree otro grupo con un nombre diferente."; +App::$strings["Add new connections to this privacy group"] = "Añadir conexiones nuevas a este grupo de canales"; +App::$strings["edit"] = "editar"; +App::$strings["Edit group"] = "Editar grupo"; +App::$strings["Add privacy group"] = "Añadir un grupo de canales"; +App::$strings["Channels not in any privacy group"] = "Sin canales en ningún grupo"; +App::$strings["add"] = "añadir"; App::$strings["Missing room name"] = "Sala de chat sin nombre"; App::$strings["Duplicate room name"] = "Nombre de sala duplicado."; App::$strings["Invalid room specifier."] = "Especificador de sala no válido."; App::$strings["Room not found."] = "Sala no encontrada."; App::$strings["Room is full"] = "La sala está llena."; +App::$strings["Unable to verify site signature for %s"] = "No ha sido posible de verificar la firma del sitio para %s"; App::$strings["\$Projectname Notification"] = "Notificación de \$Projectname"; App::$strings["\$projectname"] = "\$projectname"; App::$strings["Thank You,"] = "Gracias,"; @@ -1795,6 +1903,7 @@ App::$strings["Wiki files deleted successfully"] = "Se han borrado con éxito lo App::$strings["Update Error at %s"] = "Error de actualización en %s"; App::$strings["Update %s failed. See error logs."] = "La actualización %s ha fallado. Mire el informe de errores."; App::$strings["Private Message"] = "Mensaje Privado"; +App::$strings["Admin Delete"] = "Eliminar admin"; App::$strings["Select"] = "Seleccionar"; App::$strings["I will attend"] = "Participaré"; App::$strings["I will not attend"] = "No participaré"; @@ -1802,13 +1911,11 @@ App::$strings["I might attend"] = "Quizá participe"; App::$strings["I agree"] = "Estoy de acuerdo"; App::$strings["I disagree"] = "No estoy de acuerdo"; App::$strings["I abstain"] = "Me abstengo"; -App::$strings["Add Star"] = "Destacar añadiendo una estrella"; -App::$strings["Remove Star"] = "Eliminar estrella"; App::$strings["Toggle Star Status"] = "Activar o desactivar el estado de entrada preferida"; -App::$strings["starred"] = "preferidas"; App::$strings["Message signature validated"] = "Firma de mensaje validada"; App::$strings["Message signature incorrect"] = "Firma de mensaje incorrecta"; App::$strings["Add Tag"] = "Añadir etiqueta"; +App::$strings["Conversation Tools"] = "Herramientas de Conversation"; App::$strings["like"] = "me gusta"; App::$strings["dislike"] = "no me gusta"; App::$strings["Share This"] = "Compartir esto"; @@ -1840,7 +1947,7 @@ App::$strings["Underline"] = "Subrayar"; App::$strings["Quote"] = "Citar"; App::$strings["Code"] = "Código"; App::$strings["Image"] = "Imagen"; -App::$strings["Attach File"] = "Fichero adjunto"; +App::$strings["Attach/Upload file"] = "Adjuntar/cargar fichero"; App::$strings["Insert Link"] = "Insertar enlace"; App::$strings["Video"] = "Vídeo"; App::$strings["Your full name (required)"] = "Su nombre completo (requerido)"; @@ -1897,17 +2004,30 @@ App::$strings["Combined View"] = "Vista combinada"; App::$strings["Inbox"] = "Bandeja de entrada"; App::$strings["Outbox"] = "Bandeja de salida"; App::$strings["New Message"] = "Nuevo mensaje"; -App::$strings["Chatrooms"] = "Salas de chat"; App::$strings["Overview"] = "Resumen"; App::$strings["Rating Tools"] = "Valoraciones"; App::$strings["Rate Me"] = "Valorar este canal"; App::$strings["View Ratings"] = "Mostrar las valoraciones"; App::$strings["__ctx:widget__ Activity"] = "Actividad"; +App::$strings["Personal Posts"] = "Entradas personales"; +App::$strings["Show posts that mention or involve me"] = "Mostrar entradas que me mencionen o involucren"; +App::$strings["Starred Posts"] = "Entradas preferidas"; +App::$strings["Show posts that I have starred"] = "Mostrar entradas que he señalado como preferidas"; +App::$strings["Show posts related to the %s privacy group"] = "Mostrar entradas relacionadas con el grupo %s"; +App::$strings["Show my privacy groups"] = "Mostrar mis grupos de canales"; +App::$strings["Show posts to this forum"] = "Mostrar las entradas en este foro"; +App::$strings["Show forums"] = "Mostrar los foros"; +App::$strings["Show posts that I have filed to %s"] = "Mostrar las entradas que he enviado a %s"; +App::$strings["Saved Folders"] = "Carpetas guardadas"; +App::$strings["Show filed post categories"] = "Mostrar los temas de las entradas archivadas"; +App::$strings["Panel search"] = "Panel de búsqueda"; +App::$strings["Filter by name"] = "Filtrar por nombre"; +App::$strings["Remove active filter"] = "Eliminar el filtro activo"; +App::$strings["Stream Filters"] = "Filtros del stream"; App::$strings["You have %1$.0f of %2$.0f allowed connections."] = "Tiene %1$.0f de %2$.0f conexiones permitidas."; App::$strings["Add New Connection"] = "Añadir nueva conexión"; App::$strings["Enter channel address"] = "Dirección del canal"; App::$strings["Examples: bob@example.com, https://example.com/barbara"] = "Ejemplos: manuel@ejemplo.com, https://ejemplo.com/carmen"; -App::$strings["Wiki List"] = "Lista de wikis"; App::$strings["Archives"] = "Hemeroteca"; App::$strings["Received Messages"] = "Mensajes recibidos"; App::$strings["Sent Messages"] = "Enviar mensajes"; @@ -1918,8 +2038,6 @@ App::$strings["Chat Members"] = "Miembros del chat"; App::$strings["photo/image"] = "foto/imagen"; App::$strings["Remove term"] = "Eliminar término"; App::$strings["Saved Searches"] = "Búsquedas guardadas"; -App::$strings["add"] = "añadir"; -App::$strings["Notes"] = "Notas"; App::$strings["Add new page"] = "Añadir una nueva página"; App::$strings["Wiki Pages"] = "Páginas del wiki"; App::$strings["Page name"] = "Nombre de la página"; @@ -1927,9 +2045,17 @@ App::$strings["Refresh"] = "Recargar"; App::$strings["Tasks"] = "Tareas"; App::$strings["Suggestions"] = "Sugerencias"; App::$strings["See more..."] = "Ver más..."; -App::$strings["Saved Folders"] = "Carpetas guardadas"; +App::$strings["Commented Date"] = "Fecha de los comentarios"; +App::$strings["Order by last commented date"] = "Ordenar por la última fecha de los comentarios"; +App::$strings["Posted Date"] = "Fecha de publicación"; +App::$strings["Order by last posted date"] = "Ordenar por la ultima fecha de publicación"; +App::$strings["Date Unthreaded"] = "Sin enhebrar por fecha"; +App::$strings["Order unthreaded by date"] = "Ordenar sin enhebrar por fecha"; +App::$strings["Stream Order"] = "Orden del stream"; App::$strings["Click to show more"] = "Hacer clic para ver más"; App::$strings["Tags"] = "Etiquetas"; +App::$strings["App Collections"] = "Colección de aplicaciones"; +App::$strings["Installed apps"] = "Aplicaciones instaladas"; App::$strings["Profile Creation"] = "Creación de perfiles"; App::$strings["Upload profile photo"] = "Cargar la foto del perfil"; App::$strings["Upload cover photo"] = "Cargar la foto de portada del perfil"; @@ -1942,30 +2068,22 @@ App::$strings["View your channel homepage"] = "Ver la página principal de su ca App::$strings["View your network stream"] = "Ver el \"stream\" de su red"; App::$strings["Documentation"] = "Documentación"; App::$strings["View public stream"] = "Ver el \"stream\" público"; -App::$strings["New Member Links"] = "Enlaces para nuevos miembros"; App::$strings["Member registrations waiting for confirmation"] = "Inscripciones de nuevos miembros pendientes de aprobación"; App::$strings["Inspect queue"] = "Examinar la cola"; App::$strings["DB updates"] = "Actualizaciones de la base de datos"; App::$strings["Admin"] = "Administrador"; -App::$strings["Plugin Features"] = "Extensiones"; +App::$strings["Addon Features"] = "Características del addon"; App::$strings["Account settings"] = "Configuración de la cuenta"; App::$strings["Channel settings"] = "Configuración del canal"; -App::$strings["Additional features"] = "Funcionalidades"; -App::$strings["Addon settings"] = "Ajustes de los complementos"; App::$strings["Display settings"] = "Ajustes de visualización"; +App::$strings["Addon settings"] = "Ajustes de los complementos"; App::$strings["Manage locations"] = "Gestión de ubicaciones (clones) del canal"; -App::$strings["Export channel"] = "Exportar canal"; -App::$strings["OAuth1 apps"] = "Aplicaciones OAuth1"; -App::$strings["OAuth2 apps"] = "Aplicaciones OAuth2"; -App::$strings["Permission Groups"] = "Grupos de permisos"; -App::$strings["Premium Channel Settings"] = "Configuración del canal premium"; App::$strings["Bookmarked Chatrooms"] = "Salas de chat preferidas"; App::$strings["New Network Activity"] = "Nueva actividad en la red"; App::$strings["New Network Activity Notifications"] = "Avisos de nueva actividad en la red"; App::$strings["View your network activity"] = "Ver su actividad en la red"; App::$strings["Mark all notifications read"] = "Marcar todas las notificaciones como leídas"; App::$strings["Show new posts only"] = "Mostrar solo las entradas nuevas"; -App::$strings["Filter by name"] = "Filtrar por nombre"; App::$strings["New Home Activity"] = "Nueva actividad en su página principal"; App::$strings["New Home Activity Notifications"] = "Avisos de nueva actividad en su página principal"; App::$strings["View your home activity"] = "Ver su actividad en su página principal"; @@ -1991,6 +2109,11 @@ App::$strings["Public Stream Notifications"] = "Avisos del \"stream\" público"; App::$strings["View the public stream"] = "Ver el \"stream\" público"; App::$strings["Sorry, you have got no notifications at the moment"] = "Lo sentimos, por el momento no ha recibido ninguna notificación"; App::$strings["Source channel not found."] = "No se ha encontrado el canal de origen."; +App::$strings["Network/Protocol"] = "Red / Protocolo"; +App::$strings["Zot"] = "Zot"; +App::$strings["Diaspora"] = "Diaspora"; +App::$strings["Friendica"] = "Friendica"; +App::$strings["OStatus"] = "OStatus"; App::$strings["Create an account to access services and applications"] = "Crear una cuenta para acceder a los servicios y aplicaciones"; App::$strings["Logout"] = "Finalizar sesión"; App::$strings["Login/Email"] = "Inicio de sesión / Correo electrónico"; @@ -2026,6 +2149,7 @@ App::$strings["Leave empty for default width"] = "Dejar en blanco para la anchur App::$strings["Left align page content"] = "Alinear a la izquierda el contenido de la página"; App::$strings["Set size of conversation author photo"] = "Ajustar el tamaño de la foto del autor de la conversación"; App::$strings["Set size of followup author photos"] = "Ajustar el tamaño de foto de los seguidores del autor"; +App::$strings["Show advanced settings"] = "Mostrar ajustes avanzados"; App::$strings["Errors encountered deleting database table "] = "Errores encontrados al eliminar la tabla de la base de datos"; App::$strings["Submit Settings"] = "Enviar los ajustes"; App::$strings["Drop tables when uninstalling?"] = "¿Eliminar tablas al desinstalar?"; @@ -2056,10 +2180,8 @@ App::$strings["You have no rendezvous. Press the button above to create a rendez App::$strings["Some setting"] = "Algunos ajustes"; App::$strings["A setting"] = "Un ajuste"; App::$strings["Skeleton Settings"] = "Ajustes de Skeleton"; -App::$strings["GNU-Social Protocol Settings updated."] = "Se han actualizado los ajustes del protocolo de GNU-Social."; App::$strings["The GNU-Social protocol does not support location independence. Connections you make within that network may be unreachable from alternate channel locations."] = "El protocolo de GNU-Social no admite la independencia de la ubicación. Las\n conexiones que realice dentro de esa red pueden ser inaccesibles desde \nubicaciones de canales alternativos."; -App::$strings["Enable the GNU-Social protocol for this channel"] = "Activar el protocolo de GNU-Social para este canal"; -App::$strings["GNU-Social Protocol Settings"] = "Ajustes del protocolo de GNU-Social"; +App::$strings["GNU-Social Protocol"] = "Protocolo GNU-Social"; App::$strings["Follow"] = "Seguir"; App::$strings["%1\$s is now following %2\$s"] = "%1\$s está siguiendo ahora a %2\$s"; App::$strings["Planets Settings updated."] = "Se han guardado los ajustes de Planets."; @@ -2093,8 +2215,8 @@ App::$strings["Unknown error. Please try again later."] = "Error desconocido. Po App::$strings["Profile photo updated successfully."] = "Se ha actualizado con éxito la foto de perfil."; App::$strings["Flag Adult Photos"] = "Indicador (\"flag\") de fotos de adultos"; App::$strings["Provide photo edit option to hide inappropriate photos from default album view"] = "Proporcionar una opción de edición de fotos para ocultar las fotos inapropiadas de la vista de álbum predeterminada"; -App::$strings["Post to WordPress"] = "Publicar en WordPress"; -App::$strings["Enable WordPress Post Plugin"] = "Habilitar el plugin de publicación en WordPress"; +App::$strings["Wordpress Settings saved."] = "Se han guardado los ajustes de WordPress."; +App::$strings["Post to WordPress or anything else which uses the wordpress XMLRPC API"] = "Publicar en WordPress o cualquier otra cosa que utilice la API XMLRPC de wordpress"; App::$strings["WordPress username"] = "Nombre de usuario de WordPress"; App::$strings["WordPress password"] = "Contraseña de WordPress"; App::$strings["WordPress API URL"] = "URL de la API de WordPress"; @@ -2103,17 +2225,16 @@ App::$strings["WordPress blogid"] = "Blog de WordPress"; App::$strings["For multi-user sites such as wordpress.com, otherwise leave blank"] = "Para sitios multiusuario como wordpress.com, de lo contrario, dejar en blanco"; App::$strings["Post to WordPress by default"] = "Publicar en WordPress por defecto"; App::$strings["Forward comments (requires hubzilla_wp plugin)"] = "Reenviar comentarios (requerido por el plugin hubzilla_wp)"; -App::$strings["WordPress Post Settings"] = "Ajustes de publicación en WordPress"; -App::$strings["Wordpress Settings saved."] = "Se han guardado los ajustes de WordPress."; -App::$strings["This plugin looks in posts for the words/text you specify below, and collapses any content containing those keywords so it is not displayed at inappropriate times, such as sexual innuendo that may be improper in a work setting. It is polite and recommended to tag any content containing nudity with #NSFW. This filter can also match any other word/text you specify, and can thereby be used as a general purpose content filter."] = "Este complemento busca en los mensajes las palabras o texto que se especifican a continuación y contrae cualquier contenido que contenga esas palabras clave para que no se muestre en momentos inapropiados, como insinuaciones sexuales que pueden ser impropias en un entorno de trabajo. Es una muestra de educación y se recomienda marcar cualquier contenido que contenga desnudos con #NSFW. Este filtro también puede coincidir con cualquier otra palabra o texto que especifique y, por lo tanto, puede utilizarse como un filtro de contenido de propósito general."; -App::$strings["Enable Content filter"] = "Habilitar filtro de contenido"; -App::$strings["Comma separated list of keywords to hide"] = "Lista separada por comas de palabras clave para ocultar"; -App::$strings["Word, /regular-expression/, lang=xx, lang!=xx"] = "Palabra, /expresión regular/, lang=xx, lang!=xx"; -App::$strings["Not Safe For Work Settings"] = "No es seguro para ajustes de trabajo"; -App::$strings["General Purpose Content Filter"] = "Filtro de contenido de propósito general"; -App::$strings["NSFW Settings saved."] = "Se han guardado los ajustes de NSFW."; +App::$strings["Wordpress Post"] = "Publicar en Wordpress"; +App::$strings["Post to WordPress"] = "Publicar en WordPress"; App::$strings["Possible adult content"] = "Posible contenido para adultos"; App::$strings["%s - view"] = "ver - %s"; +App::$strings["NSFW Settings saved."] = "Se han guardado los ajustes de NSFW."; +App::$strings["Collapse content that contains predefined words"] = "Ocultar el contenido que contiene palabras predefinidas"; +App::$strings["This app looks in posts for the words/text you specify below, and collapses any content containing those keywords so it is not displayed at inappropriate times, such as sexual innuendo that may be improper in a work setting. It is polite and recommended to tag any content containing nudity with #NSFW. This filter can also match any other word/text you specify, and can thereby be used as a general purpose content filter."] = "Esta aplicación busca en los mensajes las palabras o texto que especifique a continuación, y oculta cualquier contenido que contenga esas palabras clave, para que no se muestren en momentos inapropiados, como insinuaciones sexuales que puedan ser inapropiadas en un entorno laboral. Es cortés y recomendable etiquetar cualquier contenido que contenga desnudos con #NSFW. Este filtro también puede coincidir con cualquier otra palabra o texto que especifique y, por lo tanto, puede utilizarse como filtro de contenido de propósito general."; +App::$strings["Comma separated list of keywords to hide"] = "Lista separada por comas de palabras clave para ocultar"; +App::$strings["Word, /regular-expression/, lang=xx, lang!=xx"] = "Palabra, /expresión regular/, lang=xx, lang!=xx"; +App::$strings["NSFW"] = "NSFW"; App::$strings["Post to Insanejournal"] = "Publicar en Insanejournal"; App::$strings["Enable InsaneJournal Post Plugin"] = "Habilitar el plugin de publicación en InsaneJournal"; App::$strings["InsaneJournal username"] = "Nombre de usuario en InsaneJournal"; @@ -2164,6 +2285,9 @@ App::$strings["Popular Channels"] = "Canales populares"; App::$strings["IRC Settings"] = "Ajustes de IRC"; App::$strings["IRC settings saved."] = "Se han guardado los ajustes de IRC."; App::$strings["IRC Chatroom"] = "Sala de chat IRC"; +App::$strings["Gallery"] = "Galería"; +App::$strings["Photo Gallery"] = "Galería de fotos"; +App::$strings["A simple gallery for your photo albums"] = "Una galería sencilla para sus álbumes de fotos"; App::$strings["Post to LiveJournal"] = "Publicar en LiveJournal"; App::$strings["Enable LiveJournal Post Plugin"] = "Habilitar el plugin de publicación en LiveJournal"; App::$strings["LiveJournal username"] = "Nombre de usuario en LiveJournal"; @@ -2196,9 +2320,10 @@ App::$strings["You're welcome."] = "Bienvenido."; App::$strings["Ah shucks..."] = "Ah, joder..."; App::$strings["Don't mention it."] = "No lo menciones."; App::$strings["<blush>"] = "<sonrojo>"; +App::$strings["Set a preferred page to load on login from home page"] = "Establecer una página preferida para cargar al iniciar sesión desde la página de inicio"; App::$strings["Page to load after login"] = "Página para cargar tras el inicio de sesión"; App::$strings["Examples: "apps", "network?f=&gid=37" (privacy collection), "channel" or "notifications/system" (leave blank for default network page (grid)."] = "Ejemplos: "aplicaciones", "mi red?f=&gid=37" (grupo de canales), "mi canal" or "notificaciones del sistema" (dejar en blanco para la página de mi red por defecto (grid)."; -App::$strings["Startpage Settings"] = "Ajustes de startpage"; +App::$strings["Startpage"] = "Startpage"; App::$strings["bitchslap"] = "una bofetada humillante"; App::$strings["bitchslapped"] = "ha abofeteado de forma humillante a"; App::$strings["shag"] = "un polvo"; @@ -2238,20 +2363,18 @@ App::$strings["bonked"] = "ha golpeado a"; App::$strings["declare undying love for"] = "una declaración de amor eterno"; App::$strings["declared undying love for"] = "ha declarado amor eterno a"; App::$strings["Diaspora Protocol Settings updated."] = "Los ajustes del protocolo de Diaspora se han actualizado."; -App::$strings["The Diaspora protocol does not support location independence. Connections you make within that network may be unreachable from alternate channel locations."] = "El protocolo de Diaspora no admite la independencia de la ubicación. Las conexiones que realice dentro de esa red pueden ser inaccesibles desde ubicaciones de canales alternativos."; -App::$strings["Enable the Diaspora protocol for this channel"] = "Activar el protocolo de Diaspora para este canal"; +App::$strings["The diaspora protocol does not support location independence. Connections you make within that network may be unreachable from alternate channel locations."] = "El protocolo de Diaspora no admite la independencia de la ubicación. Las conexiones que realice dentro de esa red pueden ser inaccesibles desde ubicaciones de canales alternativos."; App::$strings["Allow any Diaspora member to comment on your public posts"] = "Permitir a cualquier miembro de Diaspora comentar sus entradas públicas"; App::$strings["Prevent your hashtags from being redirected to other sites"] = "Impedir que sus \"hashtags\" sean redirigidos a otros sitios "; App::$strings["Sign and forward posts and comments with no existing Diaspora signature"] = "Firmar y enviar entradas y comentarios sin firma de Diaspora"; App::$strings["Followed hashtags (comma separated, do not include the #)"] = "\"Hashtags\" seguidos (separados por comas, sin incluir #)"; -App::$strings["Diaspora Protocol Settings"] = "Ajustes del protocolo de Diaspora"; +App::$strings["Diaspora Protocol"] = "Protocolo Diaspora"; App::$strings["No username found in import file."] = "No se ha encontrado el nombre de usuario en el fichero de importación."; App::$strings["Unable to create a unique channel address. Import failed."] = "No se ha podido crear una dirección de canal única. Ha fallado la importación."; App::$strings["Your account on %s will expire in a few days."] = "Su cuenta en %s caducará en unos pocos días."; App::$strings["Your $Productname test account is about to expire."] = "Su cuenta de prueba de $Productname está a punto de caducar."; -App::$strings["Enable Rainbowtag"] = "Habilitar Rainbowtag"; -App::$strings["Rainbowtag Settings"] = "Ajustes de Rainbowtag"; -App::$strings["Rainbowtag Settings saved."] = "Se han guardado los ajustes de Rainbowtag."; +App::$strings["Add some colour to tag clouds"] = "Añadir color a las nubes de etiquetas"; +App::$strings["Rainbow Tag"] = "Etiqueta Arcoiris"; App::$strings["Show Upload Limits"] = "Mostrar los límites de subida"; App::$strings["Hubzilla configured maximum size: "] = "Tamaño máximo configurado por Hubzilla: "; App::$strings["PHP upload_max_filesize: "] = "PHP upload_max_filesize: "; @@ -2330,11 +2453,26 @@ App::$strings["Approve subscription requests from Hubzilla contacts automaticall App::$strings["Purge internal list of jabber addresses of contacts"] = "Purgar la lista interna de las direcciones de contactos de jabber"; App::$strings["Configuration Help"] = "Ayuda para los ajustes"; App::$strings["Jappix Mini Settings"] = "Ajustes de Jappix Mini"; +App::$strings["Access Denied"] = "Acceso denegado"; +App::$strings["Enable Community Moderation"] = "Habilitar la moderación de la comunidad"; +App::$strings["Reputation automatically given to new members"] = "La reputación se otorga automáticamente a los nuevos miembros"; +App::$strings["Reputation will never fall below this value"] = "La reputación nunca caerá por debajo de este valor"; +App::$strings["Minimum reputation before posting is allowed"] = "Reputación mínima antes de que se permita el envío de entradas"; +App::$strings["Minimum reputation before commenting is allowed"] = "Mínima reputación antes de que se permitan los comentarios"; +App::$strings["Minimum reputation before a member is able to moderate other posts"] = "Reputación mínima antes de que un miembro sea capaz de moderar otros mensajes"; +App::$strings["Max ratio of moderator's reputation that can be added to/deducted from reputation of person being moderated"] = "Proporción máxima de la reputación del moderador que puede ser añadida/descontada de la reputación de la persona que está siendo moderada."; +App::$strings["Reputation \"cost\" to post"] = "\"Coste\" de la reputación a contabilizar"; +App::$strings["Reputation \"cost\" to comment"] = "\"Coste\" de la reputación para comentar"; +App::$strings["Reputation automatically recovers at this rate per hour until it reaches minimum_to_post"] = "La reputación se recupera automáticamente a esta tasa por hora hasta que alcanza el mínimo_a_post"; +App::$strings["When minimum_to_moderate > reputation > minimum_to_post reputation recovers at this rate per hour"] = "Cuando la reputación mínima a moderar > reputación > la reputación mínima a publicar se recupera a esta tasa por hora"; +App::$strings["Community Moderation Settings"] = "Configuración de la moderación de la comunidad"; +App::$strings["Can moderate reputation on my channel."] = "Se puede moderar la reputación en mi canal."; +App::$strings["Channel Reputation"] = "Reputación del canal"; +App::$strings["Block Completely"] = "Bloquear completamente"; +App::$strings["Block channels"] = "Bloquear canales"; +App::$strings["superblock settings updated"] = "se han actualizado los ajustes de superblock"; App::$strings["Currently blocked"] = "Actualmente bloqueado"; App::$strings["No channels currently blocked"] = "No hay canales bloqueados actualmente"; -App::$strings["Superblock Settings"] = "Ajustes de Superblock"; -App::$strings["Block Completely"] = "Bloquear completamente"; -App::$strings["superblock settings updated"] = "se han actualizado los ajustes de superblock"; App::$strings["Federate"] = "Federar"; App::$strings["nofed Settings saved."] = "Se han guardado los ajustes de nofed."; App::$strings["Allow Federation Toggle"] = "Permitir alternancia de federación"; @@ -2358,13 +2496,31 @@ App::$strings["This will import all your Friendica photo albums to this Red chan App::$strings["Friendica Server base URL"] = "URL base del servidor de Friendica"; App::$strings["Friendica Login Username"] = "Nombre de inicio de sesión en Friendica"; App::$strings["Friendica Login Password"] = "Contraseña de inicio de sesión en Friendica"; -App::$strings["ActivityPub"] = "ActivityPub"; +App::$strings["WYSIWYG status editor"] = "Editor de estado de WYSIWYG"; +App::$strings["WYSIWYG Status"] = "Estado de WYSIWYG"; +App::$strings["Set your location"] = "Establecer su ubicación"; +App::$strings["Clear browser location"] = "Eliminar los datos de localización geográfica del navegador"; +App::$strings["Embed (existing) photo from your photo albums"] = "Insertar (existente) foto de sus álbumes de fotos"; +App::$strings["Tag term:"] = "Término de la etiqueta:"; +App::$strings["Where are you right now?"] = "¿Donde está ahora?"; +App::$strings["Choose a different album..."] = "Elegir un álbum diferente..."; +App::$strings["Comments enabled"] = "Comentarios habilitados"; +App::$strings["Comments disabled"] = "Comentarios deshabilitados"; +App::$strings["Page link name"] = "Nombre del enlace de la página"; +App::$strings["Post as"] = "Publicar como"; +App::$strings["Toggle voting"] = "Cambiar votación"; +App::$strings["Disable comments"] = "Dehabilitar los comentarios"; +App::$strings["Toggle comments"] = "Activar o desactivar los comentarios"; +App::$strings["Categories (optional, comma-separated list)"] = "Temas (opcional, lista separada por comas)"; +App::$strings["Other networks and post services"] = "Otras redes y servicios de publicación"; +App::$strings["Set publish date"] = "Establecer la fecha de publicación"; App::$strings["ActivityPub Protocol Settings updated."] = "Se han actualizado los ajustes del protocolo ActivityPub."; -App::$strings["The ActivityPub protocol does not support location independence. Connections you make within that network may be unreachable from alternate channel locations."] = "El protocolo ActivityPub no soporta la independencia de ubicación. Las conexiones que realice dentro de esa red pueden no ser accesibles desde ubicaciones de canales alternativos."; -App::$strings["Enable the ActivityPub protocol for this channel"] = "Activar el protocolo ActivityPub para este canal"; +App::$strings["The activitypub protocol does not support location independence. Connections you make within that network may be unreachable from alternate channel locations."] = "El protocolo ActivityPub no soporta la independencia de ubicación. Las conexiones que realice dentro de esa red pueden no ser accesibles desde ubicaciones de canales alternativos."; +App::$strings["Deliver to ActivityPub recipients in privacy groups"] = "Entregar a los destinatarios de ActivityPub en grupos de canales"; +App::$strings["May result in a large number of mentions and expose all the members of your privacy group"] = "Puede resultar en un gran número de menciones y exponer a todos los miembros de su grupo de canales"; App::$strings["Send multi-media HTML articles"] = "Enviar artículos multimedia en HTML"; App::$strings["Not supported by some microblog services such as Mastodon"] = "No soportado por algunos servicios de microblog como Mastodon"; -App::$strings["ActivityPub Protocol Settings"] = "Ajustes del protocolo ActivityPub"; +App::$strings["Activitypub Protocol"] = "Protocolo Activitypub"; App::$strings["Project Servers and Resources"] = "Servidores y recursos del proyecto"; App::$strings["Project Creator and Tech Lead"] = "Creador del proyecto y director técnico"; App::$strings["Admin, developer, directorymin, support bloke"] = "Administrador, desarrollador, administrador del directorio, trabajador de apoyo"; @@ -2469,21 +2625,61 @@ App::$strings["Twitter Post Settings"] = "Ajustes de publicación en Twitter"; App::$strings["Deactivate the feature"] = "Desactivar la funcionalidad"; App::$strings["Hide the button and show the smilies directly."] = "Ocultar el botón y mostrar los smilies directamente."; App::$strings["Smileybutton Settings"] = "Ajustes de Smileybutton"; -App::$strings["Order Not Found"] = "No se ha encontrado el pedido"; -App::$strings["Order cannot be checked out."] = "No se puede verificar el pedido."; -App::$strings["Enable Shopping Cart"] = "Habilitar el carro de la compra"; App::$strings["Enable Test Catalog"] = "Habilitar el catálogo de pruebas"; App::$strings["Enable Manual Payments"] = "Permitir pagos manuales"; -App::$strings["Base Cart Settings"] = "Configuración del carro base"; -App::$strings["Add Item"] = "Agregar un elemento"; -App::$strings["Call cart_post_"] = "Llamar a cart_post_"; -App::$strings["Cart Not Enabled (profile: "] = "El carro no está habilitado (perfil: "; +App::$strings["Base Merchant Currency"] = "Divida base del vendedor"; +App::$strings["Cart Settings"] = "Configuración del carro de la compra"; +App::$strings["Access Denied."] = "Acceso denegado"; +App::$strings["Order Not Found"] = "No se ha encontrado el pedido"; +App::$strings["Invalid Item"] = "Elemento no válido"; +App::$strings["DB Cleanup Failure"] = "Fallo de limpieza de la base de datos"; +App::$strings["[cart] Item Added"] = "[cesta] Artículo añadido"; +App::$strings["Order already checked out."] = "El pedido ya ha sido revisado"; +App::$strings["Drop database tables when uninstalling."] = "Eliminar tablas de la base de datos al desinstalar."; +App::$strings["Shop"] = "Comprar"; +App::$strings["Cart utilities for orders and payments"] = "Utilidades del carro para pedidos y pagos"; +App::$strings["You must be logged into the Grid to shop."] = "Debe iniciar sesión en la red para comprar."; App::$strings["Order not found."] = "El pedido no se ha encontrado."; +App::$strings["Access denied."] = "Acceso denegado"; App::$strings["No Order Found"] = "No se ha encontrado ningún pedido"; -App::$strings["call: "] = "llamar: "; App::$strings["An unknown error has occurred Please start again."] = "Se ha producido un error desconocido Vuelva a empezar."; App::$strings["Invalid Payment Type. Please start again."] = "Tipo de pago no válido. Por favor, empiece de nuevo."; App::$strings["Order not found"] = "El pedido no se ha encontrado"; +App::$strings["Enable Paypal Button Module"] = "Habilitar el módulo del botón de Paypal"; +App::$strings["Use Production Key"] = "Utilizar clave en entorno de producción"; +App::$strings["Paypal Sandbox Client Key"] = "Clave de cliente en el entorno de pruebas de Paypal"; +App::$strings["Paypal Sandbox Secret Key"] = "Clave secreta en el entorno de pruebas de Paypal"; +App::$strings["Paypal Production Client Key"] = "Clave de cliente en el entorno de producción de Paypal"; +App::$strings["Paypal Production Secret Key"] = "Clave secreta en el entorno de producción de Paypal"; +App::$strings["Paypal button payments are not enabled."] = "Los pagos con el botón de Paypal no están habilitados."; +App::$strings["Paypal button payments are not properly configured. Please choose another payment option."] = "Los pagos con el botón de Paypal no están configurados correctamente. Por favor, elija otra opción de pago."; +App::$strings["Enable Manual Cart Module"] = "Habilitar el módulo de carro manual"; +App::$strings["New Sku"] = "Nuevo SKU (número de referencia)"; +App::$strings["Cannot save edits to locked item."] = "No se pueden guardar las ediciones en el elemento bloqueado."; +App::$strings["Changes Locked"] = "Cambios bloqueados"; +App::$strings["Item available for purchase."] = "Artículo disponible para la compra."; +App::$strings["Price"] = "Precio"; +App::$strings["Enable Hubzilla Services Module"] = "Habilitar el Módulo de Servicios de Hubzilla"; +App::$strings["SKU not found."] = "No se ha encontrado el SKU"; +App::$strings["Invalid Activation Directive."] = "Directiva de activación no válida."; +App::$strings["Invalid Deactivation Directive."] = "Directiva de desactivación no válida"; +App::$strings["Add to this privacy group"] = "Añadir a este grupo de canales"; +App::$strings["Set user service class"] = "Configurar la clase de servicio al usuario"; +App::$strings["You must be using a local account to purchase this service."] = "Usted debe estar usando una cuenta local para comprar este servicio."; +App::$strings["Add buyer to privacy group"] = "Agregar comprador al grupo de canales"; +App::$strings["Add buyer as connection"] = "Añadir comprador como conexión"; +App::$strings["Set Service Class"] = "Establecer clase de servicio"; +App::$strings["Enable Subscription Management Module"] = "Habilitar el módulo de gestión de suscripciones"; +App::$strings["Cannot include subscription items with different terms in the same order."] = "No se pueden incluir artículos de suscripción con términos diferentes en el mismo orden."; +App::$strings["Select Subscription to Edit"] = "Seleccione suscripción a editar"; +App::$strings["Edit Subscriptions"] = "Editar suscripciones"; +App::$strings["Subscription SKU"] = "SKU de la suscripción"; +App::$strings["Catalog Description"] = "Descripción del catálogo"; +App::$strings["Subscription available for purchase."] = "Suscripción disponible para la compra."; +App::$strings["Maximum active subscriptions to this item per account."] = "Máximo de suscripciones activas a este artículo por cuenta."; +App::$strings["Subscription price."] = "Precio de la suscripción."; +App::$strings["Quantity"] = "Cuantía"; +App::$strings["Term"] = "Condición"; App::$strings["Error: order mismatch. Please try again."] = "Error: desajuste de pedidos. Por favor, inténtelo de nuevo."; App::$strings["Manual payments are not enabled."] = "Los pagos manuales no están habilitados."; App::$strings["Finished"] = "Terminado"; @@ -2531,8 +2727,8 @@ App::$strings["Save your search so you can repeat it at a later date."] = "Guard App::$strings["If you see this icon you can be sure that the sender is who it say it is. It is normal that it is not always possible to verify the sender, so the icon will be missing sometimes. There is usually no need to worry about that."] = "Si ve este icono puede estar seguro de que el remitente es quien dice ser. Es normal que no siempre sea posible verificar el remitente, por lo que el icono faltará en ocasiones. Por lo general, no hay necesidad de preocuparse por eso."; App::$strings["Danger! It seems someone tried to forge a message! This message is not necessarily from who it says it is from!"] = "¡Peligro! ¡Parece que alguien intentó falsificar un mensaje! ¡Este mensaje no es necesariamente de quien dice que es!"; App::$strings["Welcome to Hubzilla! Would you like to see a tour of the UI?

    You can pause it at any time and continue where you left off by reloading the page, or navigting to another page.

    You can also advance by pressing the return key"] = "¡Bienvenido/a a Hubzilla! ¿Quiere hacer un recorrido por la interfaz de usuario?

    Puede detenerlo en cualquier momento y continuar donde lo dejó recargando la página o navegando a otra.

    También puede avanzar pulsando la tecla de retorno"; -App::$strings["Extended Identity Sharing"] = "Compartir identidad extendida"; -App::$strings["Share your identity with all websites on the internet. When disabled, identity is only shared with \$Projectname sites."] = "Compartir su identidad con todos los sitios web en Internet. Cuando está deshabilitado, la identidad sólo se comparte con sitios de \$Projectname."; +App::$strings["Send your identity to all websites"] = "Enviar su identidad a todos los sitios web"; +App::$strings["Send ZID"] = "Enviar ZID"; App::$strings["Three Dimensional Tic-Tac-Toe"] = "Juego en 3D Tic-Tac-Toe"; App::$strings["3D Tic-Tac-Toe"] = "3D Tic-Tac-Toe"; App::$strings["New game"] = "Nuevo juego"; @@ -2548,10 +2744,8 @@ App::$strings["I won!"] = "¡He ganado yo!"; App::$strings["Message to display on every page on this server"] = "Mensaje para mostrar en todas las páginas de este servidor"; App::$strings["Pageheader Settings"] = "Ajustes del encabezado de página"; App::$strings["pageheader Settings saved."] = "Se han guardado los ajustes del encabezado de página."; -App::$strings["Only authenticate automatically to sites of your friends"] = "Autenticación automática solo en los sitios de sus amigos"; -App::$strings["By default you are automatically authenticated anywhere in the network"] = "De forma predeterminada, se autenticará automáticamente en cualquier parte de la red"; -App::$strings["Authchoose Settings"] = "Ajustes de Authchoose"; -App::$strings["Atuhchoose Settings updated."] = "Se han actualizado los ajustes de Atuhchoose."; +App::$strings["Allow magic authentication only to websites of your immediate connections"] = "Permitir la autenticación mágica sólo a los sitios web de sus conexiones próximas"; +App::$strings["Authchoose"] = "Autoseleccionar"; App::$strings["lonely"] = "Solo/a"; App::$strings["drunk"] = "ebrio/a"; App::$strings["horny"] = "caliente"; @@ -2705,41 +2899,6 @@ App::$strings[", and %d other people"] = array( ); App::$strings["%s like this."] = "A %s le gusta esto."; App::$strings["%s don't like this."] = "A %s no le gusta esto."; -App::$strings["Set your location"] = "Establecer su ubicación"; -App::$strings["Clear browser location"] = "Eliminar los datos de localización geográfica del navegador"; -App::$strings["Tag term:"] = "Término de la etiqueta:"; -App::$strings["Where are you right now?"] = "¿Donde está ahora?"; -App::$strings["Choose a different album..."] = "Elegir un álbum diferente..."; -App::$strings["Comments enabled"] = "Comentarios habilitados"; -App::$strings["Comments disabled"] = "Comentarios deshabilitados"; -App::$strings["Page link name"] = "Nombre del enlace de la página"; -App::$strings["Post as"] = "Publicar como"; -App::$strings["Toggle voting"] = "Cambiar votación"; -App::$strings["Disable comments"] = "Dehabilitar los comentarios"; -App::$strings["Toggle comments"] = "Activar o desactivar los comentarios"; -App::$strings["Categories (optional, comma-separated list)"] = "Temas (opcional, lista separada por comas)"; -App::$strings["Other networks and post services"] = "Otras redes y servicios de publicación"; -App::$strings["Set publish date"] = "Establecer la fecha de publicación"; -App::$strings["Commented Order"] = "Comentarios recientes"; -App::$strings["Sort by Comment Date"] = "Ordenar por fecha de comentario"; -App::$strings["Posted Order"] = "Publicaciones recientes"; -App::$strings["Sort by Post Date"] = "Ordenar por fecha de publicación"; -App::$strings["Posts that mention or involve you"] = "Publicaciones que le mencionan o involucran"; -App::$strings["Activity Stream - by date"] = "Contenido - por fecha"; -App::$strings["Starred"] = "Preferidas"; -App::$strings["Favourite Posts"] = "Publicaciones favoritas"; -App::$strings["Spam"] = "Correo basura"; -App::$strings["Posts flagged as SPAM"] = "Publicaciones marcadas como basura"; -App::$strings["Status Messages and Posts"] = "Mensajes de estado y publicaciones"; -App::$strings["Profile Details"] = "Detalles del perfil"; -App::$strings["Photo Albums"] = "Álbumes de fotos"; -App::$strings["Files and Storage"] = "Ficheros y repositorio"; -App::$strings["Bookmarks"] = "Marcadores"; -App::$strings["Saved Bookmarks"] = "Marcadores guardados"; -App::$strings["View Cards"] = "Ver las fichas"; -App::$strings["articles"] = "artículos"; -App::$strings["View Articles"] = "Ver los artículos"; -App::$strings["View Webpages"] = "Ver páginas web"; App::$strings["__ctx:noun__ Attending"] = array( 0 => "Participaré", 1 => "Participaré", @@ -2764,10 +2923,6 @@ App::$strings["__ctx:noun__ Abstain"] = array( 0 => "se abstiene", 1 => "Se abstienen", ); -App::$strings["Directory Options"] = "Opciones del directorio"; -App::$strings["Safe Mode"] = "Modo seguro"; -App::$strings["Public Forums Only"] = "Solo foros públicos"; -App::$strings["This Website Only"] = "Solo este sitio web"; App::$strings["%1\$s's bookmarks"] = "Marcadores de %1\$s"; App::$strings["Unable to import a removed channel."] = "No se puede importar un canal eliminado."; App::$strings["Cannot create a duplicate channel identifier on this system. Import failed."] = "No se ha podido crear un canal con un identificador que ya existe en este sistema. La importación ha fallado."; @@ -2780,6 +2935,7 @@ App::$strings["older"] = "más antiguas"; App::$strings["newer"] = "más recientes"; App::$strings["No connections"] = "Sin conexiones"; App::$strings["View all %s connections"] = "Ver todas las %s conexiones"; +App::$strings["Network: %s"] = "Red %s"; App::$strings["poke"] = "un toque"; App::$strings["ping"] = "un \"ping\""; App::$strings["pinged"] = "ha enviado un \"ping\" a"; @@ -2901,6 +3057,16 @@ App::$strings["Rate This Channel (this is public)"] = "Valorar este canal (esto App::$strings["Describe (optional)"] = "Describir (opcional)"; App::$strings["Please enter a link URL"] = "Por favor, introduzca una dirección de enlace"; App::$strings["Unsaved changes. Are you sure you wish to leave this page?"] = "Cambios no guardados. ¿Está seguro de que desea abandonar la página?"; +App::$strings["lovely"] = "encantador"; +App::$strings["wonderful"] = "fabuloso"; +App::$strings["fantastic"] = "fantástico"; +App::$strings["great"] = "grandioso"; +App::$strings["Your chosen nickname was either already taken or not valid. Please use our suggestion ("] = "El nombre de usuario elegido ya está en uso o no es válido. Por favor, utilice nuestra sugerencia ("; +App::$strings[") or enter a new one."] = ") o introduzca uno nuevo."; +App::$strings["Thank you, this nickname is valid."] = "Gracias, este alias es válido."; +App::$strings["A channel name is required."] = "Se requiere un nombre de canal"; +App::$strings["This is a "] = "Esto es un "; +App::$strings[" channel name"] = "nombre de canal"; App::$strings["timeago.prefixAgo"] = "hace "; App::$strings["timeago.prefixFromNow"] = "en "; App::$strings["timeago.suffixAgo"] = "NONE"; @@ -2953,6 +3119,7 @@ App::$strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s ha cambiado App::$strings["Visit %1\$s's %2\$s"] = "Visitar %2\$s de %1\$s"; App::$strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s ha actualizado %2\$s, cambiando %3\$s."; App::$strings["Item was not found."] = "Elemento no encontrado."; +App::$strings["Unknown error."] = "Error desconocido"; App::$strings["No source file."] = "Ningún fichero de origen"; App::$strings["Cannot locate file to replace"] = "No se puede localizar el fichero que va a ser sustituido."; App::$strings["Cannot locate file to revise/update"] = "No se puede localizar el fichero para revisar/actualizar"; @@ -3035,13 +3202,9 @@ App::$strings["Home, Fax"] = "Fax particular"; App::$strings["Work, Voice"] = "Llamadas de trabajo"; App::$strings["Work, Fax"] = "Fax de trabajo"; App::$strings["view full size"] = "Ver en el tamaño original"; -App::$strings["Friendica"] = "Friendica"; -App::$strings["OStatus"] = "OStatus"; App::$strings["GNU-Social"] = "GNU Social"; App::$strings["RSS/Atom"] = "RSS/Atom"; -App::$strings["Diaspora"] = "Diaspora"; App::$strings["Facebook"] = "Facebook"; -App::$strings["Zot"] = "Zot"; App::$strings["LinkedIn"] = "LinkedIn"; App::$strings["XMPP/IM"] = "XMPP/IM"; App::$strings["MySpace"] = "MySpace"; @@ -3064,56 +3227,38 @@ App::$strings["spoiler"] = "spoiler"; App::$strings["View article"] = "Ver el artículo"; App::$strings["View summary"] = "Ver sumario"; App::$strings["$1 wrote:"] = "$1 escribió:"; +App::$strings["View PDF"] = "Ver PDF"; App::$strings[" by "] = "por"; App::$strings[" on "] = "en"; App::$strings["Embedded content"] = "Contenido incorporado"; App::$strings["Embedding disabled"] = "Incrustación deshabilitada"; App::$strings["OpenWebAuth: %1\$s welcomes %2\$s"] = "OpenWebAuth: %1\$s da la bienvenida a %2\$s"; -App::$strings["General Features"] = "Funcionalidades básicas"; -App::$strings["Display new member quick links menu"] = "Mostrar el menú de enlaces rápidos para nuevos miembros"; -App::$strings["Advanced Profiles"] = "Perfiles avanzados"; -App::$strings["Additional profile sections and selections"] = "Secciones y selecciones de perfil adicionales"; -App::$strings["Profile Import/Export"] = "Importar/Exportar perfil"; -App::$strings["Save and load profile details across sites/channels"] = "Guardar y cargar detalles del perfil a través de sitios/canales"; -App::$strings["Web Pages"] = "Páginas web"; -App::$strings["Provide managed web pages on your channel"] = "Proveer páginas web gestionadas en su canal"; -App::$strings["Provide a wiki for your channel"] = "Proporcionar un wiki para su canal"; -App::$strings["Private Notes"] = "Notas privadas"; -App::$strings["Enables a tool to store notes and reminders (note: not encrypted)"] = "Habilita una herramienta para guardar notas y recordatorios (advertencia: las notas no estarán cifradas)"; -App::$strings["Create personal planning cards"] = "Crear fichas de planificación personal"; -App::$strings["Create interactive articles"] = "Crear artículos interactivos"; -App::$strings["Navigation Channel Select"] = "Navegación por el selector de canales"; -App::$strings["Change channels directly from within the navigation dropdown menu"] = "Cambiar de canales directamente desde el menú de navegación desplegable"; -App::$strings["Photo Location"] = "Ubicación de las fotos"; -App::$strings["If location data is available on uploaded photos, link this to a map."] = "Si los datos de ubicación están disponibles en las fotos subidas, enlazar estas a un mapa."; -App::$strings["Access Controlled Chatrooms"] = "Salas de chat moderadas"; -App::$strings["Provide chatrooms and chat services with access control."] = "Proporcionar salas y servicios de chat moderados."; -App::$strings["Smart Birthdays"] = "Cumpleaños inteligentes"; -App::$strings["Make birthday events timezone aware in case your friends are scattered across the planet."] = "Enlazar los eventos de cumpleaños con el huso horario en el caso de que sus amigos estén dispersos por el mundo."; -App::$strings["Event Timezone Selection"] = "Selección del huso horario del evento"; -App::$strings["Allow event creation in timezones other than your own."] = "Permitir la creación de eventos en husos horarios distintos del suyo."; -App::$strings["Premium Channel"] = "Canal premium"; -App::$strings["Allows you to set restrictions and terms on those that connect with your channel"] = "Le permite configurar restricciones y normas de uso a aquellos que conectan con su canal"; +App::$strings["Start calendar week on Monday"] = "Comenzar el calendario semanal por el lunes"; +App::$strings["Default is Sunday"] = "Por defecto es domingo"; +App::$strings["Search by Date"] = "Buscar por fecha"; +App::$strings["Ability to select posts by date ranges"] = "Capacidad de seleccionar entradas por rango de fechas"; +App::$strings["Tag Cloud"] = "Nube de etiquetas"; +App::$strings["Provide a personal tag cloud on your channel page"] = "Proveer nube de etiquetas personal en su página de canal"; +App::$strings["Use blog/list mode"] = "Usar el modo blog/lista"; +App::$strings["Comments will be displayed separately"] = "Los comentarios se mostrarán por separado"; +App::$strings["Connection Filtering"] = "Filtrado de conexiones"; +App::$strings["Filter incoming posts from connections based on keywords/content"] = "Filtrar publicaciones entrantes de conexiones por palabras clave o contenido"; +App::$strings["Conversation"] = "Conversation"; +App::$strings["Community Tagging"] = "Etiquetas de la comunidad"; +App::$strings["Ability to tag existing posts"] = "Capacidad de etiquetar entradas existentes"; +App::$strings["Emoji Reactions"] = "Emoticonos \"emoji\""; +App::$strings["Add emoji reaction ability to posts"] = "Activar la capacidad de añadir un emoticono \"emoji\" a las entradas"; +App::$strings["Dislike Posts"] = "Desagrado de publicaciones"; +App::$strings["Ability to dislike posts/comments"] = "Capacidad de mostrar desacuerdo con el contenido de entradas y comentarios"; +App::$strings["Star Posts"] = "Entradas destacadas"; +App::$strings["Ability to mark special posts with a star indicator"] = "Capacidad de marcar entradas destacadas con un indicador de estrella"; App::$strings["Advanced Directory Search"] = "Búsqueda avanzada en el directorio"; App::$strings["Allows creation of complex directory search queries"] = "Permitir la creación de consultas complejas en las búsquedas en el directorio"; -App::$strings["Advanced Theme and Layout Settings"] = "Ajustes avanzados de temas y esquemas"; -App::$strings["Allows fine tuning of themes and page layouts"] = "Permitir el ajuste fino de temas y esquemas de páginas"; -App::$strings["Access Control and Permissions"] = "Control de acceso y permisos"; -App::$strings["Privacy Groups"] = "Grupos de canales"; -App::$strings["Enable management and selection of privacy groups"] = "Activar la gestión y selección de grupos de canales"; -App::$strings["Multiple Profiles"] = "Múltiples perfiles"; -App::$strings["Ability to create multiple profiles"] = "Capacidad de crear múltiples perfiles"; -App::$strings["Provide alternate connection permission roles."] = "Proporcionar roles de acceso alternativos para esta conexión."; -App::$strings["OAuth1 Clients"] = "Clientes OAuth1"; -App::$strings["Manage OAuth1 authenticatication tokens for mobile and remote apps."] = "Administrar tokens de autenticación OAuth1 para aplicaciones móviles y remotas."; -App::$strings["OAuth2 Clients"] = "Clientes OAuth2"; -App::$strings["Manage OAuth2 authenticatication tokens for mobile and remote apps."] = "Administrar tokens de autenticación OAuth2 para aplicaciones móviles y remotas."; -App::$strings["Access Tokens"] = "Tokens de acceso"; -App::$strings["Create access tokens so that non-members can access private content."] = "Crear tokens de acceso para que los no miembros puedan acceder a contenido privado."; -App::$strings["Post Composition Features"] = "Opciones para la redacción de entradas"; +App::$strings["Editor"] = "Editor"; +App::$strings["Post Categories"] = "Temas de las entradas"; +App::$strings["Add categories to your posts"] = "Añadir temas a sus publicaciones"; App::$strings["Large Photos"] = "Fotos de gran tamaño"; App::$strings["Include large (1024px) photo thumbnails in posts. If not enabled, use small (640px) photo thumbnails"] = "Incluir miniaturas de fotos grandes (1024px) en publicaciones. Si no está habilitado, usar miniaturas pequeñas (640px)"; -App::$strings["Automatically import channel content from other channels or feeds"] = "Importar automáticamente contenido de otros canales o \"feeds\""; App::$strings["Even More Encryption"] = "Más cifrado todavía"; App::$strings["Allow optional encryption of content end-to-end with a shared secret key"] = "Permitir cifrado adicional de contenido \"punto-a-punto\" con una clave secreta compartida."; App::$strings["Enable Voting Tools"] = "Permitir entradas con votación"; @@ -3128,34 +3273,35 @@ App::$strings["Suppress Duplicate Posts/Comments"] = "Prevenir entradas o coment App::$strings["Prevent posts with identical content to be published with less than two minutes in between submissions."] = "Prevenir que entradas con contenido idéntico se publiquen con menos de dos minutos de intervalo."; App::$strings["Auto-save drafts of posts and comments"] = "Guardar automáticamente borradores de entradas y comentarios"; App::$strings["Automatically saves post and comment drafts in local browser storage to help prevent accidental loss of compositions"] = "Guarda automáticamente los borradores de comentarios y publicaciones en el almacenamiento del navegador local para ayudar a evitar la pérdida accidental de composiciones."; -App::$strings["Network and Stream Filtering"] = "Filtrado del contenido"; -App::$strings["Search by Date"] = "Buscar por fecha"; -App::$strings["Ability to select posts by date ranges"] = "Capacidad de seleccionar entradas por rango de fechas"; +App::$strings["Smart Birthdays"] = "Cumpleaños inteligentes"; +App::$strings["Make birthday events timezone aware in case your friends are scattered across the planet."] = "Enlazar los eventos de cumpleaños con el huso horario en el caso de que sus amigos estén dispersos por el mundo."; +App::$strings["Event Timezone Selection"] = "Selección del huso horario del evento"; +App::$strings["Allow event creation in timezones other than your own."] = "Permitir la creación de eventos en husos horarios distintos del suyo."; +App::$strings["Manage"] = "Gestionar"; +App::$strings["Navigation Channel Select"] = "Navegación por el selector de canales"; +App::$strings["Change channels directly from within the navigation dropdown menu"] = "Cambiar de canales directamente desde el menú de navegación desplegable"; App::$strings["Save search terms for re-use"] = "Guardar términos de búsqueda para su reutilización"; -App::$strings["Network Personal Tab"] = "Actividad personal"; -App::$strings["Enable tab to display only Network posts that you've interacted on"] = "Habilitar una pestaña en la cual se muestren solo las entradas en las que ha participado."; -App::$strings["Network New Tab"] = "Contenido nuevo"; -App::$strings["Enable tab to display all new Network activity"] = "Habilitar una pestaña en la que se muestre solo el contenido nuevo"; +App::$strings["Ability to file posts under folders"] = "Capacidad de archivar entradas en carpetas"; +App::$strings["Alternate Stream Order"] = "Orden de stream alternativo"; +App::$strings["Ability to order the stream by last post date, last comment date or unthreaded activities"] = "Posibilidad de ordenar el stream por última fecha de publicación, última fecha de comentario o actividades sin hilo"; +App::$strings["Contact Filter"] = "Filtro de contactos"; +App::$strings["Ability to display only posts of a selected contact"] = "Posibilidad de mostrar sólo los mensajes de un contacto seleccionado"; +App::$strings["Forum Filter"] = "Filtro de foro"; +App::$strings["Ability to display only posts of a specific forum"] = "Posibilidad de mostrar sólo los mensajes de un foro específico"; +App::$strings["Personal Posts Filter"] = "Filtro de entradas personales"; +App::$strings["Ability to display only posts that you've interacted on"] = "Posibilidad de mostrar sólo los mensajes en los que usted haya interactuado"; App::$strings["Affinity Tool"] = "Herramienta de afinidad"; App::$strings["Filter stream activity by depth of relationships"] = "Filtrar el contenido según la profundidad de las relaciones"; App::$strings["Show friend and connection suggestions"] = "Mostrar sugerencias de amigos y conexiones"; -App::$strings["Connection Filtering"] = "Filtrado de conexiones"; -App::$strings["Filter incoming posts from connections based on keywords/content"] = "Filtrar publicaciones entrantes de conexiones por palabras clave o contenido"; -App::$strings["Post/Comment Tools"] = "Gestión de entradas y comentarios"; -App::$strings["Community Tagging"] = "Etiquetas de la comunidad"; -App::$strings["Ability to tag existing posts"] = "Capacidad de etiquetar entradas existentes"; -App::$strings["Post Categories"] = "Temas de las entradas"; -App::$strings["Add categories to your posts"] = "Añadir temas a sus publicaciones"; -App::$strings["Emoji Reactions"] = "Emoticonos \"emoji\""; -App::$strings["Add emoji reaction ability to posts"] = "Activar la capacidad de añadir un emoticono \"emoji\" a las entradas"; -App::$strings["Ability to file posts under folders"] = "Capacidad de archivar entradas en carpetas"; -App::$strings["Dislike Posts"] = "Desagrado de publicaciones"; -App::$strings["Ability to dislike posts/comments"] = "Capacidad de mostrar desacuerdo con el contenido de entradas y comentarios"; -App::$strings["Star Posts"] = "Entradas destacadas"; -App::$strings["Ability to mark special posts with a star indicator"] = "Capacidad de marcar entradas destacadas con un indicador de estrella"; -App::$strings["Tag Cloud"] = "Nube de etiquetas"; -App::$strings["Provide a personal tag cloud on your channel page"] = "Proveer nube de etiquetas personal en su página de canal"; -App::$strings["Trending"] = "Trending"; +App::$strings["Photo Location"] = "Ubicación de las fotos"; +App::$strings["If location data is available on uploaded photos, link this to a map."] = "Si los datos de ubicación están disponibles en las fotos subidas, enlazar estas a un mapa."; +App::$strings["Advanced Profiles"] = "Perfiles avanzados"; +App::$strings["Additional profile sections and selections"] = "Secciones y selecciones de perfil adicionales"; +App::$strings["Profile Import/Export"] = "Importar/Exportar perfil"; +App::$strings["Save and load profile details across sites/channels"] = "Guardar y cargar detalles del perfil a través de sitios/canales"; +App::$strings["Multiple Profiles"] = "Múltiples perfiles"; +App::$strings["Ability to create multiple profiles"] = "Capacidad de crear múltiples perfiles"; +App::$strings["Trending"] = "Etiquetas populares"; App::$strings["Keywords"] = "Palabras clave"; App::$strings["have"] = "tener"; App::$strings["has"] = "tiene"; @@ -3216,7 +3362,8 @@ App::$strings["%1\$s's birthday"] = "Cumpleaños de %1\$s"; App::$strings["Happy Birthday %1\$s"] = "Feliz cumpleaños %1\$s"; App::$strings["Remote authentication"] = "Acceder desde su servidor"; App::$strings["Click to authenticate to your home hub"] = "Pulsar para identificarse en su servidor de inicio"; -App::$strings["Manage Your Channels"] = "Gestionar sus canales"; +App::$strings["Manage your channels"] = "Gestionar sus canales"; +App::$strings["Manage your privacy groups"] = "Gestionar sus grupos de canales"; App::$strings["Account/Channel Settings"] = "Ajustes de cuenta/canales"; App::$strings["End this session"] = "Finalizar esta sesión"; App::$strings["Your profile page"] = "Su página del perfil"; @@ -3233,6 +3380,14 @@ App::$strings["Please wait..."] = "Espere por favor…"; App::$strings["Add Apps"] = "Añadir aplicaciones"; App::$strings["Arrange Apps"] = "Organizar aplicaciones"; App::$strings["Toggle System Apps"] = "Alternar aplicaciones de sistema"; +App::$strings["Status Messages and Posts"] = "Mensajes de estado y publicaciones"; +App::$strings["Profile Details"] = "Detalles del perfil"; +App::$strings["Photo Albums"] = "Álbumes de fotos"; +App::$strings["Files and Storage"] = "Ficheros y repositorio"; +App::$strings["Saved Bookmarks"] = "Marcadores guardados"; +App::$strings["View Cards"] = "Ver las fichas"; +App::$strings["View Articles"] = "Ver los artículos"; +App::$strings["View Webpages"] = "Ver páginas web"; App::$strings["Image exceeds website size limit of %lu bytes"] = "La imagen excede el límite de %lu bytes del sitio"; App::$strings["Image file is empty."] = "El fichero de imagen está vacío. "; App::$strings["Photo storage failed."] = "La foto no ha podido ser guardada."; @@ -3240,15 +3395,7 @@ App::$strings["a new photo"] = "una nueva foto"; App::$strings["__ctx:photo_upload__ %1\$s posted %2\$s to %3\$s"] = "%1\$s ha publicado %2\$s en %3\$s"; App::$strings["Upload New Photos"] = "Subir nuevas fotos"; App::$strings["Invalid data packet"] = "Paquete de datos no válido"; -App::$strings["Unable to verify channel signature"] = "No ha sido posible de verificar la firma del canal"; -App::$strings["Unable to verify site signature for %s"] = "No ha sido posible de verificar la firma del sitio para %s"; App::$strings["invalid target signature"] = "La firma recibida no es válida"; -App::$strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Un grupo suprimido con este nombre ha sido restablecido. Es posible que los permisos existentes sean aplicados a este grupo y sus futuros miembros. Si no quiere esto, por favor cree otro grupo con un nombre diferente."; -App::$strings["Add new connections to this privacy group"] = "Añadir conexiones nuevas a este grupo de canales"; -App::$strings["edit"] = "editar"; -App::$strings["Edit group"] = "Editar grupo"; -App::$strings["Add privacy group"] = "Añadir un grupo de canales"; -App::$strings["Channels not in any privacy group"] = "Sin canales en ningún grupo"; App::$strings["New window"] = "Nueva ventana"; App::$strings["Open the selected location in a different window or browser tab"] = "Abrir la dirección seleccionada en una ventana o pestaña aparte"; App::$strings["Delegation session ended."] = "Finalizó la sesión de la delegación."; From d1270aab4d2c6bbc300eac489253fc9683a8a848 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20Jim=C3=A9nez=20Friaza?= Date: Tue, 9 Oct 2018 09:48:08 +0000 Subject: [PATCH 742/819] Fixed some errors in Spanish translation (cherry picked from commit a7b03c1cea351d8c5eedf25c01127fd8d90fb630) --- view/es-es/hmessages.po | 42 ++++++++++++++++++++--------------------- view/es-es/hstrings.php | 40 +++++++++++++++++++-------------------- 2 files changed, 41 insertions(+), 41 deletions(-) diff --git a/view/es-es/hmessages.po b/view/es-es/hmessages.po index 26045e6b5..f204cc80c 100644 --- a/view/es-es/hmessages.po +++ b/view/es-es/hmessages.po @@ -15,7 +15,7 @@ msgstr "" "Project-Id-Version: hubzilla\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-10-06 17:07+0200\n" -"PO-Revision-Date: 2018-10-08 17:43+0000\n" +"PO-Revision-Date: 2018-10-09 09:38+0000\n" "Last-Translator: Manuel Jiménez Friaza \n" "Language-Team: Spanish (Spain) (http://www.transifex.com/Friendica/hubzilla/language/es_ES/)\n" "MIME-Version: 1.0\n" @@ -910,7 +910,7 @@ msgstr "Se ha guardado la categoría del permiso." #: ../../Zotlabs/Module/Permcats.php:62 msgid "Permission Categories App" -msgstr "App de categorías de permisos" +msgstr "App Categorías de permisos" #: ../../Zotlabs/Module/Permcats.php:63 msgid "Create custom connection permission limits" @@ -998,7 +998,7 @@ msgstr "Cambiar el idioma de la interfaz de usuario" #: ../../Zotlabs/Module/Uexport.php:61 msgid "Channel Export App" -msgstr "App de exportación de canales" +msgstr "App Exportación de canales" #: ../../Zotlabs/Module/Uexport.php:62 msgid "Export your channel" @@ -2331,7 +2331,7 @@ msgstr "Continuar" #: ../../Zotlabs/Module/Connect.php:104 msgid "Premium Channel App" -msgstr "App canal premium" +msgstr "App Canal premium" #: ../../Zotlabs/Module/Connect.php:105 msgid "" @@ -4037,7 +4037,7 @@ msgstr "Ajustes guardados. Recargue la página, por favor." #: ../../Zotlabs/Module/Settings/Conversation.php:46 msgid "Conversation Settings" -msgstr "Ajustes de Conversation" +msgstr "Ajustes de Conversación" #: ../../Zotlabs/Module/Settings/Connections.php:39 msgid "Connections Settings" @@ -4307,7 +4307,7 @@ msgstr "Token salvado." #: ../../Zotlabs/Module/Tokens.php:99 msgid "Guest Access App" -msgstr "App de acceso para invitados" +msgstr "App Acceso para invitados" #: ../../Zotlabs/Module/Tokens.php:100 msgid "Create access tokens so that non-members can access private content" @@ -4647,7 +4647,7 @@ msgstr "Elemento no disponible" #: ../../Zotlabs/Module/Randprof.php:29 msgid "Random Channel App" -msgstr "App canal aleatorio" +msgstr "App Canal aleatorio" #: ../../Zotlabs/Module/Randprof.php:30 msgid "Visit a random channel in the $Projectname network" @@ -4685,7 +4685,7 @@ msgstr "%1$s está %2$s" #: ../../Zotlabs/Module/Mood.php:132 msgid "Mood App" -msgstr "App estados de ánimo" +msgstr "App Estados de ánimo" #: ../../Zotlabs/Module/Mood.php:133 ../../Zotlabs/Module/Mood.php:153 msgid "Set your current mood and tell your friends" @@ -4864,7 +4864,7 @@ msgstr "Marcador añadido" #: ../../Zotlabs/Module/Bookmarks.php:78 msgid "Bookmarks App" -msgstr "App marcadores" +msgstr "App Marcadores" #: ../../Zotlabs/Module/Bookmarks.php:79 msgid "Bookmark links from posts and manage them" @@ -5155,7 +5155,7 @@ msgstr "Perfil no disponible" #: ../../Zotlabs/Module/Wiki.php:52 msgid "Wiki App" -msgstr "App wiki" +msgstr "App Wiki" #: ../../Zotlabs/Module/Wiki.php:53 msgid "Provide a wiki for your channel" @@ -5401,7 +5401,7 @@ msgstr "Plantilla actualizada." #: ../../Zotlabs/Module/Pdledit.php:42 msgid "PDL Editor App" -msgstr "App editor PDL" +msgstr "App Editor PDL" #: ../../Zotlabs/Module/Pdledit.php:43 msgid "Provides the ability to edit system page layouts" @@ -5441,7 +5441,7 @@ msgstr "Diseño del sistema" #: ../../Zotlabs/Module/Poke.php:165 msgid "Poke App" -msgstr "App toques" +msgstr "App Toques" #: ../../Zotlabs/Module/Poke.php:166 msgid "Poke somebody in your addressbook" @@ -5995,7 +5995,7 @@ msgstr "Detalles" #: ../../Zotlabs/Module/Chat.php:102 msgid "Chatrooms App" -msgstr "App salas de chat" +msgstr "App Salas de chat" #: ../../Zotlabs/Module/Chat.php:103 msgid "Access Controlled Chatrooms" @@ -6188,7 +6188,7 @@ msgstr "Descargar el fichero PDL" #: ../../Zotlabs/Module/Notes.php:55 msgid "Notes App" -msgstr "App notas" +msgstr "App Notas" #: ../../Zotlabs/Module/Notes.php:56 msgid "A simple notes app with a widget (note: notes are not encrypted)" @@ -6267,7 +6267,7 @@ msgstr "Atención: El cambio de algunos ajustes puede volver inutilizable su can #: ../../Zotlabs/Module/Defperms.php:189 msgid "Default Permissions App" -msgstr "App de Permisos por defecto" +msgstr "App Permisos por defecto" #: ../../Zotlabs/Module/Defperms.php:190 msgid "Set custom default permissions for new connections" @@ -6319,7 +6319,7 @@ msgstr "Grupo de canales actualizado." #: ../../Zotlabs/Module/Group.php:101 msgid "Privacy Groups App" -msgstr "App de Grupos de canales" +msgstr "App Grupos de canales" #: ../../Zotlabs/Module/Group.php:102 msgid "Management of privacy groups" @@ -7330,7 +7330,7 @@ msgstr "Buscar un canal (o un \"webbie\") que comience por:" #: ../../Zotlabs/Module/Suggest.php:40 msgid "Suggest Channels App" -msgstr "App de Sugerir canales" +msgstr "App Sugerencia de canales" #: ../../Zotlabs/Module/Suggest.php:41 msgid "" @@ -7549,7 +7549,7 @@ msgstr "Guardar en carpeta" #: ../../Zotlabs/Module/Probe.php:18 msgid "Remote Diagnostics App" -msgstr "App de Diagnósticos remotos" +msgstr "App Diagnósticos remotos" #: ../../Zotlabs/Module/Probe.php:19 msgid "Perform diagnostics on remote channels" @@ -8034,7 +8034,7 @@ msgstr "\"Key\" y \"Secret\" son obligatorios" #: ../../Zotlabs/Module/Oauth.php:100 msgid "OAuth Apps Manager App" -msgstr "App de Gestión de apps OAuth" +msgstr "App Gestión de apps OAuth" #: ../../Zotlabs/Module/Oauth.php:101 msgid "OAuth authentication tokens for mobile and remote apps" @@ -8843,7 +8843,7 @@ msgstr "Añadir etiqueta" #: ../../Zotlabs/Lib/ThreadItem.php:273 ../../include/conversation.php:891 msgid "Conversation Tools" -msgstr "Herramientas de Conversation" +msgstr "Herramientas de Conversación" #: ../../Zotlabs/Lib/ThreadItem.php:289 ../../include/taxonomy.php:575 msgid "like" @@ -14399,7 +14399,7 @@ msgstr "Filtrar publicaciones entrantes de conexiones por palabras clave o conte #: ../../include/features.php:138 msgid "Conversation" -msgstr "Conversation" +msgstr "Conversación" #: ../../include/features.php:142 msgid "Community Tagging" diff --git a/view/es-es/hstrings.php b/view/es-es/hstrings.php index 0fd176db8..f6d1aa03b 100644 --- a/view/es-es/hstrings.php +++ b/view/es-es/hstrings.php @@ -149,7 +149,7 @@ App::$strings["Default Addressbook"] = "Agenda de direcciones por defecto"; App::$strings["This site is not a directory server"] = "Este sitio no es un servidor de directorio"; App::$strings["Permission category name is required."] = "El nombre de la categoría de permiso es obligatorio."; App::$strings["Permission category saved."] = "Se ha guardado la categoría del permiso."; -App::$strings["Permission Categories App"] = "App de categorías de permisos"; +App::$strings["Permission Categories App"] = "App Categorías de permisos"; App::$strings["Create custom connection permission limits"] = "Crear límites de permisos de conexión personalizados"; App::$strings["Use this form to create permission rules for various classes of people or connections."] = "Utilice este formulario para crear reglas de permiso para varias clases de personas o conexiones."; App::$strings["Permission Categories"] = "Tipos de permisos"; @@ -167,7 +167,7 @@ App::$strings["Reset form"] = "Reiniciar el formulario"; App::$strings["You must enable javascript for your browser to be able to view this content."] = "Debe habilitar javascript para poder ver este contenido en su navegador."; App::$strings["Language App"] = "App idioma"; App::$strings["Change UI language"] = "Cambiar el idioma de la interfaz de usuario"; -App::$strings["Channel Export App"] = "App de exportación de canales"; +App::$strings["Channel Export App"] = "App Exportación de canales"; App::$strings["Export your channel"] = "Exportar su canal"; App::$strings["Export Channel"] = "Exportar el canal"; App::$strings["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."] = "Exportar la información básica del canal a un fichero. Este equivale a una copia de seguridad de sus conexiones, el perfil y datos fundamentales, que puede usarse para importar sus datos a un nuevo servidor, pero no incluye su contenido."; @@ -422,7 +422,7 @@ App::$strings["Errors encountered creating database tables."] = "Se han encontra App::$strings["

    What next?

    "] = "

    ¿Qué sigue?

    "; App::$strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANTE: Debe crear [manualmente] una tarea programada para el \"poller\"."; App::$strings["Continue"] = "Continuar"; -App::$strings["Premium Channel App"] = "App canal premium"; +App::$strings["Premium Channel App"] = "App Canal premium"; App::$strings["Allows you to set restrictions and terms on those that connect with your channel"] = "Le permite configurar restricciones y normas de uso a aquellos que conectan con su canal"; App::$strings["Premium Channel Setup"] = "Configuración del canal premium"; App::$strings["Enable premium channel connection restrictions"] = "Habilitar restricciones de conexión del canal premium"; @@ -809,7 +809,7 @@ App::$strings["Events Settings"] = "Gestión de eventos"; App::$strings["CalDAV Settings"] = "Ajustes de CalDav"; App::$strings["Settings saved."] = "Configuración guardada."; App::$strings["Settings saved. Reload page please."] = "Ajustes guardados. Recargue la página, por favor."; -App::$strings["Conversation Settings"] = "Ajustes de Conversation"; +App::$strings["Conversation Settings"] = "Ajustes de Conversación"; App::$strings["Connections Settings"] = "Gestión de las conexiones"; App::$strings["Photos Settings"] = "Gestión de las fotos"; App::$strings["Not valid email."] = "Correo electrónico no válido."; @@ -872,7 +872,7 @@ App::$strings["Upload"] = "Subir"; App::$strings["This channel is limited to %d tokens"] = "Este canal tiene un límite de %d tokens"; App::$strings["Name and Password are required."] = "Se requiere el nombre y la contraseña."; App::$strings["Token saved."] = "Token salvado."; -App::$strings["Guest Access App"] = "App de acceso para invitados"; +App::$strings["Guest Access App"] = "App Acceso para invitados"; App::$strings["Create access tokens so that non-members can access private content"] = "Crear tokens de acceso para que los no miembros puedan acceder a contenido privado"; App::$strings["Use this form to create temporary access identifiers to share things with non-members. These identities may be used in Access Control Lists and visitors may login using these credentials to access private content."] = "Utilice este formulario para crear identificadores de acceso temporal para compartir cosas con los no miembros de Hubzilla. Estas identidades se pueden usar en las Listas de control de acceso (ACL) y así los visitantes pueden iniciar sesión, utilizando estas credenciales, para acceder a su contenido privado."; App::$strings["You may also provide dropbox style access links to friends and associates by adding the Login Password to any specific site URL as shown. Examples:"] = "También puede proporcionar, con el estilo dropbox, enlaces de acceso a sus amigos y asociados añadiendo la contraseña de inicio de sesión a cualquier dirección URL, como se muestra. Ejemplos: "; @@ -947,7 +947,7 @@ App::$strings["Return to your app and insert this Security Code:"] = "Vuelva a s App::$strings["Please login to continue."] = "Por favor inicie sesión para continuar."; App::$strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "¿Desea autorizar a esta aplicación a acceder a sus publicaciones y contactos, y/o crear nuevas publicaciones por usted?"; App::$strings["Item not available."] = "Elemento no disponible"; -App::$strings["Random Channel App"] = "App canal aleatorio"; +App::$strings["Random Channel App"] = "App Canal aleatorio"; App::$strings["Visit a random channel in the \$Projectname network"] = "Visitar un canal aleatorio en la red \$Projectname"; App::$strings["Edit Block"] = "Modificar este bloque"; App::$strings["vcard"] = "vcard"; @@ -956,7 +956,7 @@ App::$strings["Installed Apps"] = "Apps instaladas"; App::$strings["Manage Apps"] = "Administrar apps"; App::$strings["Create Custom App"] = "Crear una app personalizada"; App::$strings["__ctx:mood__ %1\$s is %2\$s"] = "%1\$s está %2\$s"; -App::$strings["Mood App"] = "App estados de ánimo"; +App::$strings["Mood App"] = "App Estados de ánimo"; App::$strings["Set your current mood and tell your friends"] = "Describir su estado de ánimo para comunicárselo a sus amigos"; App::$strings["Mood"] = "Estado de ánimo"; App::$strings["Active"] = "Activo/a"; @@ -996,7 +996,7 @@ App::$strings["Connections search"] = "Buscar conexiones"; App::$strings["Find"] = "Encontrar"; App::$strings["item"] = "elemento"; App::$strings["Bookmark added"] = "Marcador añadido"; -App::$strings["Bookmarks App"] = "App marcadores"; +App::$strings["Bookmarks App"] = "App Marcadores"; App::$strings["Bookmark links from posts and manage them"] = "Añadir enlaces de las entradas a Marcadores y administrarlos"; App::$strings["My Bookmarks"] = "Mis marcadores"; App::$strings["My Connections Bookmarks"] = "Marcadores de mis conexiones"; @@ -1066,7 +1066,7 @@ App::$strings["__ctx:noun__ Dislikes"] = "No me gusta"; App::$strings["Close"] = "Cerrar"; App::$strings["Recent Photos"] = "Fotos recientes"; App::$strings["Profile Unavailable."] = "Perfil no disponible"; -App::$strings["Wiki App"] = "App wiki"; +App::$strings["Wiki App"] = "App Wiki"; App::$strings["Provide a wiki for your channel"] = "Proporcionar un wiki para su canal"; App::$strings["Invalid channel"] = "Canal no válido"; App::$strings["Error retrieving wiki"] = "Error al recuperar el wiki"; @@ -1119,7 +1119,7 @@ App::$strings["Selected Revision"] = "Revisión seleccionada"; App::$strings["You must be authenticated."] = "Debe estar autenticado."; App::$strings["toggle full screen mode"] = "cambiar al modo de pantalla completa"; App::$strings["Layout updated."] = "Plantilla actualizada."; -App::$strings["PDL Editor App"] = "App editor PDL"; +App::$strings["PDL Editor App"] = "App Editor PDL"; App::$strings["Provides the ability to edit system page layouts"] = "Proporciona la capacidad de editar los diseños de página del sistema"; App::$strings["Edit System Page Description"] = "Editor del Sistema de Descripción de Páginas"; App::$strings["(modified)"] = "(modificado)"; @@ -1129,7 +1129,7 @@ App::$strings["Module Name:"] = "Nombre del módulo:"; App::$strings["Layout Help"] = "Ayuda para el diseño de plantillas de página"; App::$strings["Edit another layout"] = "Editar otro diseño"; App::$strings["System layout"] = "Diseño del sistema"; -App::$strings["Poke App"] = "App toques"; +App::$strings["Poke App"] = "App Toques"; App::$strings["Poke somebody in your addressbook"] = "Dar un toque a alguien en su libreta de direcciones"; App::$strings["Poke"] = "Toques y otras cosas"; App::$strings["Poke somebody"] = "Dar un toque a alguien"; @@ -1253,7 +1253,7 @@ App::$strings["Please choose the profile you would like to display to %s when vi App::$strings["Some permissions may be inherited from your channel's privacy settings, which have higher priority than individual settings. You can change those settings here but they wont have any impact unless the inherited setting changes."] = "Algunos permisos pueden ser heredados de los ajustes de privacidad de sus canales, los cuales tienen una prioridad más alta que los ajustes individuales. Puede cambiar estos ajustes aquí, pero no tendrán ningún consecuencia hasta que cambie los ajustes heredados."; App::$strings["Last update:"] = "Última actualización:"; App::$strings["Details"] = "Detalles"; -App::$strings["Chatrooms App"] = "App salas de chat"; +App::$strings["Chatrooms App"] = "App Salas de chat"; App::$strings["Access Controlled Chatrooms"] = "Salas de chat moderadas"; App::$strings["Room not found"] = "Sala no encontrada"; App::$strings["Leave Room"] = "Abandonar la sala"; @@ -1299,7 +1299,7 @@ App::$strings["Help"] = "Ayuda"; App::$strings["Comanche page description language help"] = "Página de ayuda del lenguaje de descripción de páginas (PDL) Comanche"; App::$strings["Layout Description"] = "Descripción de la plantilla"; App::$strings["Download PDL file"] = "Descargar el fichero PDL"; -App::$strings["Notes App"] = "App notas"; +App::$strings["Notes App"] = "App Notas"; App::$strings["A simple notes app with a widget (note: notes are not encrypted)"] = "Una simple aplicación de notas con un widget (aviso: las notas no están encriptadas)"; App::$strings["Not found"] = "No encontrado"; App::$strings["Please refresh page"] = "Por favor, recargue la página"; @@ -1316,7 +1316,7 @@ App::$strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s ha etiquetado %3 App::$strings["This setting requires special processing and editing has been blocked."] = "Este ajuste necesita de un proceso especial y la edición ha sido bloqueada."; App::$strings["Configuration Editor"] = "Editor de configuración"; App::$strings["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."] = "Atención: El cambio de algunos ajustes puede volver inutilizable su canal. Por favor, abandone la página excepto que esté seguro y sepa cómo usar correctamente esta característica."; -App::$strings["Default Permissions App"] = "App de Permisos por defecto"; +App::$strings["Default Permissions App"] = "App Permisos por defecto"; App::$strings["Set custom default permissions for new connections"] = "Establecer permisos predeterminados personalizados para nuevas conexiones"; App::$strings["Automatic approval settings"] = "Opciones de autorización automática"; App::$strings["Some individual permissions may have been preset or locked based on your channel type and privacy settings."] = "Es posible que se hayan preestablecido o bloqueado algunos permisos individuales según el tipo de canal y la configuración de privacidad."; @@ -1328,7 +1328,7 @@ App::$strings["Privacy group created."] = "El grupo de canales ha sido creado."; App::$strings["Could not create privacy group."] = "No se puede crear el grupo de canales"; App::$strings["Privacy group not found."] = "Grupo de canales no encontrado."; App::$strings["Privacy group updated."] = "Grupo de canales actualizado."; -App::$strings["Privacy Groups App"] = "App de Grupos de canales"; +App::$strings["Privacy Groups App"] = "App Grupos de canales"; App::$strings["Management of privacy groups"] = "Gestión de grupos de canales"; App::$strings["Privacy Groups"] = "Grupos de canales"; App::$strings["Add Group"] = "Agregar un grupo"; @@ -1570,7 +1570,7 @@ App::$strings["Oldest to Newest"] = "De más antiguo a más nuevo"; App::$strings["No entries (some entries may be hidden)."] = "Sin entradas (algunas entradas pueden estar ocultas)."; App::$strings["Xchan Lookup"] = "Búsqueda de canales"; App::$strings["Lookup xchan beginning with (or webbie): "] = "Buscar un canal (o un \"webbie\") que comience por:"; -App::$strings["Suggest Channels App"] = "App de Sugerir canales"; +App::$strings["Suggest Channels App"] = "App Sugerencia de canales"; App::$strings["Suggestions for channels in the \$Projectname network you might be interested in"] = "Sugerencias de los canales de la red \$Projectname en los que puede estar interesado"; App::$strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "No hay sugerencias disponibles. Si es un sitio nuevo, espere 24 horas y pruebe de nuevo."; App::$strings["Ignore/Hide"] = "Ignorar/Ocultar"; @@ -1621,7 +1621,7 @@ App::$strings["Or enter new bookmark folder name"] = "O introduzca un nuevo nomb App::$strings["Enter a folder name"] = "Escriba un nombre de carpeta"; App::$strings["or select an existing folder (doubleclick)"] = "o seleccione una (con un doble click)"; App::$strings["Save to Folder"] = "Guardar en carpeta"; -App::$strings["Remote Diagnostics App"] = "App de Diagnósticos remotos"; +App::$strings["Remote Diagnostics App"] = "App Diagnósticos remotos"; App::$strings["Perform diagnostics on remote channels"] = "Realizar diagnósticos en canales remotos"; App::$strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = "Se ha superado el límite máximo de inscripciones diarias de este sitio. Por favor, pruebe de nuevo mañana."; App::$strings["Please indicate acceptance of the Terms of Service. Registration failed."] = "Por favor, confirme que acepta los Términos del servicio. El registro ha fallado."; @@ -1734,7 +1734,7 @@ App::$strings["Enter your email address and submit to have your password reset. App::$strings["Email Address"] = "Dirección de correo electrónico"; App::$strings["Name is required"] = "El nombre es obligatorio"; App::$strings["Key and Secret are required"] = "\"Key\" y \"Secret\" son obligatorios"; -App::$strings["OAuth Apps Manager App"] = "App de Gestión de apps OAuth"; +App::$strings["OAuth Apps Manager App"] = "App Gestión de apps OAuth"; App::$strings["OAuth authentication tokens for mobile and remote apps"] = "Tokens de autenticación de OAuth para aplicaciones móviles y remotas"; App::$strings["Consumer Key"] = "Consumer Key"; App::$strings["Icon url"] = "Dirección del icono"; @@ -1915,7 +1915,7 @@ App::$strings["Toggle Star Status"] = "Activar o desactivar el estado de entrada App::$strings["Message signature validated"] = "Firma de mensaje validada"; App::$strings["Message signature incorrect"] = "Firma de mensaje incorrecta"; App::$strings["Add Tag"] = "Añadir etiqueta"; -App::$strings["Conversation Tools"] = "Herramientas de Conversation"; +App::$strings["Conversation Tools"] = "Herramientas de Conversación"; App::$strings["like"] = "me gusta"; App::$strings["dislike"] = "no me gusta"; App::$strings["Share This"] = "Compartir esto"; @@ -3243,7 +3243,7 @@ App::$strings["Use blog/list mode"] = "Usar el modo blog/lista"; App::$strings["Comments will be displayed separately"] = "Los comentarios se mostrarán por separado"; App::$strings["Connection Filtering"] = "Filtrado de conexiones"; App::$strings["Filter incoming posts from connections based on keywords/content"] = "Filtrar publicaciones entrantes de conexiones por palabras clave o contenido"; -App::$strings["Conversation"] = "Conversation"; +App::$strings["Conversation"] = "Conversación"; App::$strings["Community Tagging"] = "Etiquetas de la comunidad"; App::$strings["Ability to tag existing posts"] = "Capacidad de etiquetar entradas existentes"; App::$strings["Emoji Reactions"] = "Emoticonos \"emoji\""; From bf878dc4461ea28f71055d59496b21a1685ef63e Mon Sep 17 00:00:00 2001 From: "M.Dent" Date: Sun, 7 Oct 2018 23:08:47 +0000 Subject: [PATCH 743/819] Implement custom escaping (cherry picked from commit 93a310582f044d35f0a3583671053595fefdbedb) --- Zotlabs/Lib/NativeWiki.php | 36 +++++++++++++++++++++++++++++++--- Zotlabs/Lib/NativeWikiPage.php | 12 ++++++++---- Zotlabs/Module/Wiki.php | 34 ++++++++++++++++++++------------ Zotlabs/Widget/Wiki_pages.php | 3 ++- 4 files changed, 64 insertions(+), 21 deletions(-) diff --git a/Zotlabs/Lib/NativeWiki.php b/Zotlabs/Lib/NativeWiki.php index 6f916216e..4309d3f6e 100644 --- a/Zotlabs/Lib/NativeWiki.php +++ b/Zotlabs/Lib/NativeWiki.php @@ -26,7 +26,8 @@ class NativeWiki { $w['rawName'] = get_iconfig($w, 'wiki', 'rawName'); $w['htmlName'] = escape_tags($w['rawName']); - $w['urlName'] = urlencode(urlencode($w['rawName'])); + //$w['urlName'] = urlencode(urlencode($w['rawName'])); + $w['urlName'] = self::name_encode($w['rawName']); $w['mimeType'] = get_iconfig($w, 'wiki', 'mimeType'); $w['typelock'] = get_iconfig($w, 'wiki', 'typelock'); $w['lockstate'] = (($w['allow_cid'] || $w['allow_gid'] || $w['deny_cid'] || $w['deny_gid']) ? 'lock' : 'unlock'); @@ -233,7 +234,8 @@ class NativeWiki { 'wiki' => $w, 'rawName' => $rawName, 'htmlName' => escape_tags($rawName), - 'urlName' => urlencode(urlencode($rawName)), + //'urlName' => urlencode(urlencode($rawName)), + 'urlName' => self::name_encode($rawName), 'mimeType' => $mimeType, 'typelock' => $typelock ); @@ -249,7 +251,8 @@ class NativeWiki { WHERE resource_type = '%s' AND iconfig.v = '%s' AND uid = %d AND item_deleted = 0 $sql_extra limit 1", dbesc(NWIKI_ITEM_RESOURCE_TYPE), - dbesc(urldecode($urlName)), + //dbesc(urldecode($urlName)), + dbesc($urlName), intval($uid) ); @@ -286,4 +289,31 @@ class NativeWiki { return array('read' => true, 'write' => $write, 'success' => true); } } + + public static function name_encode ($string) { + + $encoding = mb_internal_encoding(); + mb_internal_encoding("UTF-8"); + $ret = mb_ereg_replace_callback ('[^A-Za-z0-9\-\_\.\~]',function ($char) { + $charhex = unpack('H*',$char[0]); + $ret = '('.$charhex[1].')'; + return $ret; + } + ,$string); + mb_internal_encoding($encoding); + return $ret; + } + + public static function name_decode ($string) { + + $encoding = mb_internal_encoding(); + mb_internal_encoding("UTF-8"); + $ret = mb_ereg_replace_callback ('(\(([0-9a-f]+)\))',function ($chars) { + return pack('H*',$chars[2]); + } + ,$string); + mb_internal_encoding($encoding); + return $ret; + } + } diff --git a/Zotlabs/Lib/NativeWikiPage.php b/Zotlabs/Lib/NativeWikiPage.php index d4875bbaf..d0f522ec1 100644 --- a/Zotlabs/Lib/NativeWikiPage.php +++ b/Zotlabs/Lib/NativeWikiPage.php @@ -44,7 +44,8 @@ class NativeWikiPage { $pages[] = [ 'resource_id' => $resource_id, 'title' => escape_tags($title), - 'url' => str_replace('%2F','/',urlencode(str_replace('%2F','/',urlencode($title)))), + //'url' => str_replace('%2F','/',urlencode(str_replace('%2F','/',urlencode($title)))), + 'url' => Zlib\NativeWiki::name_encode($title), 'link_id' => 'id_' . substr($resource_id, 0, 10) . '_' . $page_item['id'] ]; } @@ -98,7 +99,8 @@ class NativeWikiPage { $page = [ 'rawName' => $name, 'htmlName' => escape_tags($name), - 'urlName' => urlencode($name), + //'urlName' => urlencode($name), + Zlib\NativeWiki::name_encode($name) ]; @@ -154,7 +156,8 @@ class NativeWikiPage { $page = [ 'rawName' => $pageNewName, 'htmlName' => escape_tags($pageNewName), - 'urlName' => urlencode(escape_tags($pageNewName)) + //'urlName' => urlencode(escape_tags($pageNewName)) + Zlib\NativeWiki::name_encode($pageNewName) ]; return [ 'success' => true, 'page' => $page ]; @@ -527,7 +530,8 @@ class NativeWikiPage { $pages = $pageURLs = array(); foreach ($match[1] as $m) { // TODO: Why do we need to double urlencode for this to work? - $pageURLs[] = urlencode(urlencode(escape_tags($m))); + //$pageURLs[] = urlencode(urlencode(escape_tags($m))); + $pageURLs[] = Zlib\NativeWiki::name_encode(escape_tags($m)); $pages[] = $m; } $idx = 0; diff --git a/Zotlabs/Module/Wiki.php b/Zotlabs/Module/Wiki.php index 6be39214e..3b8f44124 100644 --- a/Zotlabs/Module/Wiki.php +++ b/Zotlabs/Module/Wiki.php @@ -237,7 +237,8 @@ class Wiki extends Controller { // /wiki/channel/wiki -> No page was specified, so redirect to Home.md - $wikiUrlName = urlencode(argv(2)); + //$wikiUrlName = urlencode(argv(2)); + $wikiUrlName = NativeWiki::name_encode(argv(2)); goaway(z_root() . '/' . argv(0) . '/' . argv(1) . '/' . $wikiUrlName . '/Home'); case 4: @@ -246,7 +247,8 @@ class Wiki extends Controller { // GET /wiki/channel/wiki/page // Fetch the wiki info and determine observer permissions - $wikiUrlName = urldecode(argv(2)); + //$wikiUrlName = urldecode(argv(2)); + $wikiUrlName = NativeWiki::name_decode(argv(2)); $page_name = ''; $ignore_language = false; @@ -262,7 +264,8 @@ class Wiki extends Controller { $page_name .= argv($x); } - $pageUrlName = urldecode($page_name); + //$pageUrlName = urldecode($page_name); + $pageUrlName = NativeWiki::name_decode($page_name); $langPageUrlName = urldecode(\App::$language . '/' . $page_name); $w = NativeWiki::exists_by_name($owner['channel_id'], $wikiUrlName); @@ -289,8 +292,10 @@ class Wiki extends Controller { $wiki_editor = true; } - $wikiheaderName = urldecode($wikiUrlName); - $wikiheaderPage = urldecode($pageUrlName); + //$wikiheaderName = urldecode($wikiUrlName); + $wikiheaderName = NativeWiki::name_decode($wikiUrlName); + //$wikiheaderPage = urldecode($pageUrlName); + $wikiheaderPage = NativeWiki::name_decode($pageUrlName); $renamePage = (($wikiheaderPage === 'Home') ? '' : t('Rename page')); $sharePage = t('Share'); @@ -360,13 +365,14 @@ class Wiki extends Controller { $currenttype = $types[$mimeType]; $placeholder = t('Short description of your changes (optional)'); - + + $zrl = urlencode( z_root() . '/wiki/' . argv(1) . '/' . $wikiUrlName . '/' . $pageUrlName ); $o .= replace_macros(get_markup_template('wiki.tpl'),array( '$wikiheaderName' => $wikiheaderName, '$wikiheaderPage' => $wikiheaderPage, '$renamePage' => $renamePage, '$sharePage' => $sharePage, - '$shareLink' => urlencode('#^[zrl=' . z_root() . '/wiki/' . argv(1) . '/' . $wikiUrlName . '/' . $pageUrlName . ']' . '[ ' . $owner['channel_name'] . ' ] ' . $wikiheaderName . ' - ' . $wikiheaderPage . '[/zrl]'), + '$shareLink' => '#^[zrl=' . $zrl . ']' . '[ ' . $owner['channel_name'] . ' ] ' . $wikiheaderName . ' - ' . $wikiheaderPage . '[/zrl]', '$showPageControls' => $showPageControls, '$editOrSourceLabel' => (($showPageControls) ? t('Edit') : t('Source')), '$tools_label' => 'Page Tools', @@ -465,7 +471,8 @@ class Wiki extends Controller { $wiki['postVisible'] = ((intval($_POST['postVisible'])) ? 1 : 0); $wiki['rawName'] = $name; $wiki['htmlName'] = escape_tags($name); - $wiki['urlName'] = urlencode(urlencode($name)); + //$wiki['urlName'] = urlencode(urlencode($name)); + $wiki['urlName'] = NativeWiki::name_encode($name); $wiki['mimeType'] = $_POST['mimeType']; $wiki['typelock'] = $_POST['typelock']; @@ -514,7 +521,8 @@ class Wiki extends Controller { $arr = []; - $arr['urlName'] = urlencode(urlencode($_POST['origRawName'])); + //$arr['urlName'] = urlencode(urlencode($_POST['origRawName'])); + $arr['urlName'] = NativeWiki::name_encode($_POST['origRawName']); if($_POST['updateRawName']) $arr['updateRawName'] = $_POST['updateRawName']; @@ -525,7 +533,7 @@ class Wiki extends Controller { return; //not reached } - $wiki = NativeWiki::exists_by_name($owner['channel_id'], urldecode($arr['urlName'])); + $wiki = NativeWiki::exists_by_name($owner['channel_id'], $arr['urlName']); if($wiki['resource_id']) { @@ -590,7 +598,7 @@ class Wiki extends Controller { // backslashes won't work well in the javascript functions $name = str_replace('\\','',$name); - if(urlencode(escape_tags($name)) === '') { + if(NativeWiki::name_encode(escape_tags($name)) === '') { json_return_and_die(array('message' => 'Error creating page. Invalid name (' . print_r($_POST,true) . ').', 'success' => false)); } @@ -798,7 +806,7 @@ class Wiki extends Controller { if ($pageUrlName === 'Home') { json_return_and_die(array('message' => 'Cannot rename Home','success' => false)); } - if(urlencode(escape_tags($pageNewName)) === '') { + if(NativeWiki::encode_name(escape_tags($pageNewName)) === '') { json_return_and_die(array('message' => 'Error renaming page. Invalid name.', 'success' => false)); } // Determine if observer has permission to rename pages @@ -814,7 +822,7 @@ class Wiki extends Controller { if($renamed['success']) { $commit = NativeWikiPage::commit(array( 'channel_id' => $owner['channel_id'], - 'commit_msg' => 'Renamed ' . urldecode($pageUrlName) . ' to ' . $renamed['page']['htmlName'], + 'commit_msg' => 'Renamed ' . NativeWiki::name_decode($pageUrlName) . ' to ' . $renamed['page']['htmlName'], 'resource_id' => $resource_id, 'observer_hash' => $observer_hash, 'pageUrlName' => $pageNewName diff --git a/Zotlabs/Widget/Wiki_pages.php b/Zotlabs/Widget/Wiki_pages.php index ecd2c9100..831662ca9 100644 --- a/Zotlabs/Widget/Wiki_pages.php +++ b/Zotlabs/Widget/Wiki_pages.php @@ -2,6 +2,7 @@ namespace Zotlabs\Widget; +use Zotlabs\Lib\NativeWiki; class Wiki_pages { @@ -21,7 +22,7 @@ class Wiki_pages { $can_create = perm_is_allowed(\App::$profile['uid'],get_observer_hash(),'write_wiki'); $can_delete = ((local_channel() && (local_channel() == \App::$profile['uid'])) ? true : false); - $pageName = addslashes(escape_tags(urldecode(argv(3)))); + $pageName = NativeWiki::name_decode(escape_tags(argv(3))); return replace_macros(get_markup_template('wiki_page_not_found.tpl'), array( '$resource_id' => $arr['resource_id'], From d8f79f48e9b4859383eaeea35da6d32045f55ae1 Mon Sep 17 00:00:00 2001 From: "M.Dent" Date: Mon, 8 Oct 2018 17:22:39 +0000 Subject: [PATCH 744/819] Rework Wiki encoding scheme. (cherry picked from commit 709665846e66f093109730691b31d9e094d02088) --- Zotlabs/Lib/NativeWiki.php | 1 + Zotlabs/Lib/NativeWikiPage.php | 3 +-- Zotlabs/Module/Wiki.php | 42 ++++++++++++++++++-------------- Zotlabs/Widget/Wiki_pages.php | 5 ++-- view/tpl/wiki.tpl | 3 ++- view/tpl/wiki_page_not_found.tpl | 2 +- 6 files changed, 32 insertions(+), 24 deletions(-) diff --git a/Zotlabs/Lib/NativeWiki.php b/Zotlabs/Lib/NativeWiki.php index 4309d3f6e..65f40748c 100644 --- a/Zotlabs/Lib/NativeWiki.php +++ b/Zotlabs/Lib/NativeWiki.php @@ -292,6 +292,7 @@ class NativeWiki { public static function name_encode ($string) { + $string = html_entity_decode($string); $encoding = mb_internal_encoding(); mb_internal_encoding("UTF-8"); $ret = mb_ereg_replace_callback ('[^A-Za-z0-9\-\_\.\~]',function ($char) { diff --git a/Zotlabs/Lib/NativeWikiPage.php b/Zotlabs/Lib/NativeWikiPage.php index d0f522ec1..ebdcb4740 100644 --- a/Zotlabs/Lib/NativeWikiPage.php +++ b/Zotlabs/Lib/NativeWikiPage.php @@ -100,7 +100,7 @@ class NativeWikiPage { 'rawName' => $name, 'htmlName' => escape_tags($name), //'urlName' => urlencode($name), - Zlib\NativeWiki::name_encode($name) + 'urlName' => Zlib\NativeWiki::name_encode($name) ]; @@ -368,7 +368,6 @@ class NativeWikiPage { unset($item['id']); unset($item['author']); - $item['parent'] = 0; $item['body'] = $content; $item['author_xchan'] = $observer_hash; diff --git a/Zotlabs/Module/Wiki.php b/Zotlabs/Module/Wiki.php index 3b8f44124..ead7eea6a 100644 --- a/Zotlabs/Module/Wiki.php +++ b/Zotlabs/Module/Wiki.php @@ -266,7 +266,7 @@ class Wiki extends Controller { //$pageUrlName = urldecode($page_name); $pageUrlName = NativeWiki::name_decode($page_name); - $langPageUrlName = urldecode(\App::$language . '/' . $page_name); + $langPageUrlName = \App::$language . '/' . $pageUrlName; $w = NativeWiki::exists_by_name($owner['channel_id'], $wikiUrlName); @@ -293,9 +293,9 @@ class Wiki extends Controller { } //$wikiheaderName = urldecode($wikiUrlName); - $wikiheaderName = NativeWiki::name_decode($wikiUrlName); + $wikiheaderName = $wikiUrlName; //$wikiheaderPage = urldecode($pageUrlName); - $wikiheaderPage = NativeWiki::name_decode($pageUrlName); + $wikiheaderPage = $pageUrlName; $renamePage = (($wikiheaderPage === 'Home') ? '' : t('Rename page')); $sharePage = t('Share'); @@ -320,7 +320,7 @@ class Wiki extends Controller { //json_return_and_die(array('pages' => $page_list_html, 'message' => '', 'success' => true)); notice( t('Error retrieving page content') . EOL); //goaway(z_root() . '/' . argv(0) . '/' . argv(1) ); - $renderedContent = NativeWikiPage::convert_links($html, argv(0) . '/' . argv(1) . '/' . $wikiUrlName); + $renderedContent = NativeWikiPage::convert_links($html, argv(0) . '/' . argv(1) . '/' . NativeWiki::name_encode($wikiUrlName)); $showPageControls = $wiki_editor; } else { @@ -334,21 +334,25 @@ class Wiki extends Controller { // Render the Markdown-formatted page content in HTML if($mimeType == 'text/bbcode') { - $renderedContent = NativeWikiPage::convert_links(zidify_links(smilies(bbcode($content))), argv(0) . '/' . argv(1) . '/' . $wikiUrlName); + $renderedContent = NativeWikiPage::convert_links($content,argv(0) . '/' . argv(1) . '/' . NativeWiki::name_encode($wikiUrlName)); + $renderedContent = zidify_links(smilies(bbcode($renderedContent))); + //$renderedContent = NativeWikiPage::convert_links(zidify_links(smilies(bbcode($content))), argv(0) . '/' . argv(1) . '/' . $wikiUrlName); } elseif($mimeType === 'text/plain') { $renderedContent = str_replace(["\n",' ',"\t"],[EOL,' ','    '],htmlentities($content,ENT_COMPAT,'UTF-8',false)); } elseif($mimeType === 'text/markdown') { $content = MarkdownSoap::unescape($content); - $html = NativeWikiPage::generate_toc(zidify_text(MarkdownExtra::defaultTransform(NativeWikiPage::bbcode($content)))); - $renderedContent = NativeWikiPage::convert_links($html, argv(0) . '/' . argv(1) . '/' . $wikiUrlName); + //$html = NativeWikiPage::generate_toc(zidify_text(MarkdownExtra::defaultTransform(NativeWikiPage::bbcode($content)))); + //$renderedContent = NativeWikiPage::convert_links($html, argv(0) . '/' . argv(1) . '/' . $wikiUrlName); + $html = NativeWikiPage::convert_links($content, argv(0) . '/' . argv(1) . '/' . NativeWiki::name_encode($wikiUrlName)); + $renderedContent = NativeWikiPage::generate_toc(zidify_text(MarkdownExtra::defaultTransform(NativeWikiPage::bbcode($html)))); } $showPageControls = $wiki_editor; } break; // default: // Strip the extraneous URL components -// goaway('/' . argv(0) . '/' . argv(1) . '/' . $wikiUrlName . '/' . $pageUrlName); +// goaway('/' . argv(0) . '/' . argv(1) . '/' . NativeWiki::name_encode($wikiUrlName) . '/' . $pageUrlName); } @@ -366,7 +370,7 @@ class Wiki extends Controller { $placeholder = t('Short description of your changes (optional)'); - $zrl = urlencode( z_root() . '/wiki/' . argv(1) . '/' . $wikiUrlName . '/' . $pageUrlName ); + $zrl = urlencode( z_root() . '/wiki/' . argv(1) . '/' . NativeWiki::name_encode($wikiUrlName) . '/' . NativeWiki::name_encode($pageUrlName) ); $o .= replace_macros(get_markup_template('wiki.tpl'),array( '$wikiheaderName' => $wikiheaderName, '$wikiheaderPage' => $wikiheaderPage, @@ -435,16 +439,17 @@ class Wiki extends Controller { $mimeType = $_POST['mimetype']; if($mimeType === 'text/bbcode') { - $html = NativeWikiPage::convert_links(zidify_links(smilies(bbcode($content))),$wikiURL); + $linkconverted = NativeWikiPage::convert_links($content,$wikiURL); + $html = zidify_links(smilies(bbcode($linkconverted))); } elseif($mimeType === 'text/markdown') { - $bb = NativeWikiPage::bbcode($content); + $linkconverted = NativeWikiPage::convert_links($content,$wikiURL); + $bb = NativeWikiPage::bbcode($linkconverted); $x = new MarkdownSoap($bb); $md = $x->clean(); $md = MarkdownSoap::unescape($md); $html = MarkdownExtra::defaultTransform($md); $html = NativeWikiPage::generate_toc(zidify_text($html)); - $html = NativeWikiPage::convert_links($html,$wikiURL); } elseif($mimeType === 'text/plain') { $html = str_replace(["\n",' ',"\t"],[EOL,' ','    '],htmlentities($content,ENT_COMPAT,'UTF-8',false)); @@ -498,10 +503,10 @@ class Wiki extends Controller { $homePage = NativeWikiPage::create_page($owner['channel_id'],$observer_hash,'Home', $r['item']['resource_id'], $wiki['mimeType']); if(! $homePage['success']) { notice( t('Wiki created, but error creating Home page.')); - goaway(z_root() . '/wiki/' . $nick . '/' . $wiki['urlName']); + goaway(z_root() . '/wiki/' . $nick . '/' . NativeWiki::name_encode($wiki['urlName'])); } NativeWiki::sync_a_wiki_item($owner['channel_id'],$homePage['item_id'],$r['item']['resource_id']); - goaway(z_root() . '/wiki/' . $nick . '/' . $wiki['urlName'] . '/' . $homePage['page']['urlName']); + goaway(z_root() . '/wiki/' . $nick . '/' . NativeWiki::name_encode($wiki['urlName']) . '/' . NativeWiki::name_encode($homePage['page']['urlName'])); } else { notice( t('Error creating wiki')); @@ -593,7 +598,7 @@ class Wiki extends Controller { json_return_and_die(array('success' => false)); } - $name = $_POST['pageName']; //Get new page name + $name = isset($_POST['pageName']) ? $_POST['pageName'] : $_POST['missingPageName']; //Get new page name // backslashes won't work well in the javascript functions $name = str_replace('\\','',$name); @@ -615,10 +620,11 @@ class Wiki extends Controller { if($commit['success']) { NativeWiki::sync_a_wiki_item($owner['channel_id'],$commit['item_id'],$resource_id); - json_return_and_die(array('url' => '/' . argv(0) . '/' . argv(1) . '/' . urlencode($page['wiki']['urlName']) . '/' . urlencode($page['page']['urlName']), 'success' => true)); + //json_return_and_die(array('url' => '/' . argv(0) . '/' . argv(1) . '/' . urlencode($page['wiki']['urlName']) . '/' . urlencode($page['page']['urlName']), 'success' => true)); + json_return_and_die(array('url' => '/' . argv(0) . '/' . argv(1) . '/' . $page['wiki']['urlName'] . '/' . $page['page']['urlName'], 'success' => true)); } else { - json_return_and_die(array('message' => 'Error making git commit','url' => '/' . argv(0) . '/' . argv(1) . '/' . urlencode($page['wiki']['urlName']) . '/' . urlencode($page['page']['urlName']),'success' => false)); + json_return_and_die(array('message' => 'Error making git commit','url' => '/' . argv(0) . '/' . argv(1) . '/' . NativeWiki::name_encode($page['wiki']['urlName']) . '/' . NativeWiki::name_encode($page['page']['urlName']),'success' => false)); } @@ -685,7 +691,7 @@ class Wiki extends Controller { if($commit['success']) { NativeWiki::sync_a_wiki_item($owner['channel_id'],$commit['item_id'],$resource_id); - json_return_and_die(array('message' => 'Wiki git repo commit made', 'success' => true)); + json_return_and_die(array('message' => 'Wiki git repo commit made', 'success' => true , 'content' => $content)); } else { json_return_and_die(array('message' => 'Error making git commit','success' => false)); diff --git a/Zotlabs/Widget/Wiki_pages.php b/Zotlabs/Widget/Wiki_pages.php index 831662ca9..dee0a2229 100644 --- a/Zotlabs/Widget/Wiki_pages.php +++ b/Zotlabs/Widget/Wiki_pages.php @@ -11,7 +11,7 @@ class Wiki_pages { return; $c = channelx_by_nick(argv(1)); - $w = \Zotlabs\Lib\NativeWiki::exists_by_name($c['channel_id'],urldecode(argv(2))); + $w = \Zotlabs\Lib\NativeWiki::exists_by_name($c['channel_id'],NativeWiki::name_decode(argv(2))); $arr = array( 'resource_id' => $w['resource_id'], 'channel_id' => $c['channel_id'], @@ -24,6 +24,7 @@ class Wiki_pages { $can_delete = ((local_channel() && (local_channel() == \App::$profile['uid'])) ? true : false); $pageName = NativeWiki::name_decode(escape_tags(argv(3))); + $wikiname = $w['urlName']; return replace_macros(get_markup_template('wiki_page_not_found.tpl'), array( '$resource_id' => $arr['resource_id'], '$channel_address' => $arr['channel_address'], @@ -49,7 +50,7 @@ class Wiki_pages { if(! $arr['resource_id']) { $c = channelx_by_nick(argv(1)); - $w = \Zotlabs\Lib\NativeWiki::exists_by_name($c['channel_id'],urldecode(argv(2))); + $w = \Zotlabs\Lib\NativeWiki::exists_by_name($c['channel_id'],NativeWiki::name_decode(argv(2))); $arr = array( 'resource_id' => $w['resource_id'], 'channel_id' => $c['channel_id'], diff --git a/view/tpl/wiki.tpl b/view/tpl/wiki.tpl index 2aabc7b5f..0f6fad8e3 100644 --- a/view/tpl/wiki.tpl +++ b/view/tpl/wiki.tpl @@ -262,7 +262,8 @@ if (data.success) { window.saved = true; window.console.log('Page saved successfully.'); - window.wiki_page_content = currentContent; + //window.wiki_page_content = currentContent; + window.wiki_page_content = data.content; $('#id_commitMsg').val(''); // Clear the commit message box $('#save-page').addClass('disabled'); // Disable the save button {{if !$mimeType || $mimeType == 'text/markdown'}} diff --git a/view/tpl/wiki_page_not_found.tpl b/view/tpl/wiki_page_not_found.tpl index de98efdf8..bc8afeb53 100644 --- a/view/tpl/wiki_page_not_found.tpl +++ b/view/tpl/wiki_page_not_found.tpl @@ -1,7 +1,7 @@

    Page does not exist




    {{if $canadd}} -
    + {{include file="field_input.tpl" field=$pageName}} {{if $typelock}} From 0daa462207c0fdb88c091b07de020d1facc5430d Mon Sep 17 00:00:00 2001 From: "M.Dent" Date: Wed, 10 Oct 2018 01:01:05 +0000 Subject: [PATCH 745/819] Fix escaping quote for wiki_delete_page (cherry picked from commit 1ccca9863c0b400b6597fe1a4ae46c697dd3550c) --- view/tpl/wiki_page_list.tpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/view/tpl/wiki_page_list.tpl b/view/tpl/wiki_page_list.tpl index d75f22f64..7a045bba4 100644 --- a/view/tpl/wiki_page_list.tpl +++ b/view/tpl/wiki_page_list.tpl @@ -7,7 +7,7 @@ {{foreach $pages as $page}} From c7644ad29dfdfd237125d3c8815ae62b8457b80a Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Wed, 10 Oct 2018 08:39:28 +0000 Subject: [PATCH 746/819] fix some more wiki issues (cherry picked from commit d29caa099af2d132978e634a454a29d5c85c23fe) --- Zotlabs/Lib/NativeWiki.php | 2 +- Zotlabs/Lib/NativeWikiPage.php | 2 +- Zotlabs/Module/Wiki.php | 6 +++--- view/tpl/wiki.tpl | 6 +++--- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Zotlabs/Lib/NativeWiki.php b/Zotlabs/Lib/NativeWiki.php index 65f40748c..cdabbc3e9 100644 --- a/Zotlabs/Lib/NativeWiki.php +++ b/Zotlabs/Lib/NativeWiki.php @@ -252,7 +252,7 @@ class NativeWiki { AND item_deleted = 0 $sql_extra limit 1", dbesc(NWIKI_ITEM_RESOURCE_TYPE), //dbesc(urldecode($urlName)), - dbesc($urlName), + dbesc(self::name_decode($urlName)), intval($uid) ); diff --git a/Zotlabs/Lib/NativeWikiPage.php b/Zotlabs/Lib/NativeWikiPage.php index ebdcb4740..8d21fac5e 100644 --- a/Zotlabs/Lib/NativeWikiPage.php +++ b/Zotlabs/Lib/NativeWikiPage.php @@ -157,7 +157,7 @@ class NativeWikiPage { 'rawName' => $pageNewName, 'htmlName' => escape_tags($pageNewName), //'urlName' => urlencode(escape_tags($pageNewName)) - Zlib\NativeWiki::name_encode($pageNewName) + 'urlName' => Zlib\NativeWiki::name_encode($pageNewName) ]; return [ 'success' => true, 'page' => $page ]; diff --git a/Zotlabs/Module/Wiki.php b/Zotlabs/Module/Wiki.php index ead7eea6a..25823da62 100644 --- a/Zotlabs/Module/Wiki.php +++ b/Zotlabs/Module/Wiki.php @@ -293,9 +293,9 @@ class Wiki extends Controller { } //$wikiheaderName = urldecode($wikiUrlName); - $wikiheaderName = $wikiUrlName; + $wikiheaderName = NativeWiki::name_decode($wikiUrlName); //$wikiheaderPage = urldecode($pageUrlName); - $wikiheaderPage = $pageUrlName; + $wikiheaderPage = NativeWiki::name_decode($pageUrlName); $renamePage = (($wikiheaderPage === 'Home') ? '' : t('Rename page')); $sharePage = t('Share'); @@ -812,7 +812,7 @@ class Wiki extends Controller { if ($pageUrlName === 'Home') { json_return_and_die(array('message' => 'Cannot rename Home','success' => false)); } - if(NativeWiki::encode_name(escape_tags($pageNewName)) === '') { + if(NativeWiki::name_encode(escape_tags($pageNewName)) === '') { json_return_and_die(array('message' => 'Error renaming page. Invalid name.', 'success' => false)); } // Determine if observer has permission to rename pages diff --git a/view/tpl/wiki.tpl b/view/tpl/wiki.tpl index 0f6fad8e3..979f38903 100644 --- a/view/tpl/wiki.tpl +++ b/view/tpl/wiki.tpl @@ -98,8 +98,8 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/library/jqupload/basic-plus.html b/library/jqupload/basic-plus.html deleted file mode 100644 index dc90bd768..000000000 --- a/library/jqupload/basic-plus.html +++ /dev/null @@ -1,226 +0,0 @@ - - - - - - - -jQuery File Upload Demo - Basic Plus version - - - - - - - - - - - -
    -

    jQuery File Upload Demo

    -

    Basic Plus version

    - -
    -
    -

    File Upload widget with multiple file selection, drag&drop support, progress bar, validation and preview images, audio and video for jQuery.
    - Supports cross-domain, chunked and resumable file uploads and client-side image resizing.
    - Works with any server-side platform (PHP, Python, Ruby on Rails, Java, Node.js, Go etc.) that supports standard HTML form file uploads.

    -
    -
    - - - - Add files... - - - -
    -
    - -
    -
    -
    - -
    -
    -
    -
    -

    Demo Notes

    -
    -
    -
      -
    • The maximum file size for uploads in this demo is 5 MB (default file size is unlimited).
    • -
    • Only image files (JPG, GIF, PNG) are allowed in this demo (by default there is no file type restriction).
    • -
    • Uploaded files will be deleted automatically after 5 minutes (demo setting).
    • -
    • You can drag & drop files from your desktop on this webpage (see Browser support).
    • -
    • Please refer to the project website and documentation for more information.
    • -
    • Built with Twitter's Bootstrap CSS framework and Icons from Glyphicons.
    • -
    -
    -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/library/jqupload/basic.html b/library/jqupload/basic.html deleted file mode 100644 index ea5d0e66f..000000000 --- a/library/jqupload/basic.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - - -jQuery File Upload Demo - Basic version - - - - - - - - - - - -
    -

    jQuery File Upload Demo

    -

    Basic version

    - -
    -
    -

    File Upload widget with multiple file selection, drag&drop support and progress bar for jQuery.
    - Supports cross-domain, chunked and resumable file uploads.
    - Works with any server-side platform (PHP, Python, Ruby on Rails, Java, Node.js, Go etc.) that supports standard HTML form file uploads.

    -
    -
    - - - - Select files... - - - -
    -
    - -
    -
    -
    - -
    -
    -
    -
    -

    Demo Notes

    -
    -
    -
      -
    • The maximum file size for uploads in this demo is 5 MB (default file size is unlimited).
    • -
    • Only image files (JPG, GIF, PNG) are allowed in this demo (by default there is no file type restriction).
    • -
    • Uploaded files will be deleted automatically after 5 minutes (demo setting).
    • -
    • You can drag & drop files from your desktop on this webpage (see Browser support).
    • -
    • Please refer to the project website and documentation for more information.
    • -
    • Built with Twitter's Bootstrap CSS framework and Icons from Glyphicons.
    • -
    -
    -
    -
    - - - - - - - - - - - - diff --git a/library/jqupload/blueimp-file-upload.jquery.json b/library/jqupload/blueimp-file-upload.jquery.json deleted file mode 100644 index 8382fb4b9..000000000 --- a/library/jqupload/blueimp-file-upload.jquery.json +++ /dev/null @@ -1,50 +0,0 @@ -{ - "name": "blueimp-file-upload", - "version": "9.5.2", - "title": "jQuery File Upload", - "author": { - "name": "Sebastian Tschan", - "url": "https://blueimp.net" - }, - "licenses": [ - { - "type": "MIT", - "url": "http://www.opensource.org/licenses/MIT" - } - ], - "dependencies": { - "jquery": ">=1.6" - }, - "description": "File Upload widget with multiple file selection, drag&drop support, progress bar, validation and preview images, audio and video for jQuery. Supports cross-domain, chunked and resumable file uploads. Works with any server-side platform (Google App Engine, PHP, Python, Ruby on Rails, Java, etc.) that supports standard HTML form file uploads.", - "keywords": [ - "jquery", - "file", - "upload", - "widget", - "multiple", - "selection", - "drag", - "drop", - "progress", - "preview", - "cross-domain", - "cross-site", - "chunk", - "resume", - "gae", - "go", - "python", - "php", - "bootstrap" - ], - "homepage": "https://github.com/blueimp/jQuery-File-Upload", - "docs": "https://github.com/blueimp/jQuery-File-Upload/wiki", - "demo": "http://blueimp.github.io/jQuery-File-Upload/", - "bugs": "https://github.com/blueimp/jQuery-File-Upload/issues", - "maintainers": [ - { - "name": "Sebastian Tschan", - "url": "https://blueimp.net" - } - ] -} diff --git a/library/jqupload/bower.json b/library/jqupload/bower.json deleted file mode 100644 index 54ba68f82..000000000 --- a/library/jqupload/bower.json +++ /dev/null @@ -1,85 +0,0 @@ -{ - "name": "blueimp-file-upload", - "version": "9.5.2", - "title": "jQuery File Upload", - "description": "File Upload widget with multiple file selection, drag&drop support, progress bar, validation and preview images, audio and video for jQuery. Supports cross-domain, chunked and resumable file uploads. Works with any server-side platform (Google App Engine, PHP, Python, Ruby on Rails, Java, etc.) that supports standard HTML form file uploads.", - "keywords": [ - "jquery", - "file", - "upload", - "widget", - "multiple", - "selection", - "drag", - "drop", - "progress", - "preview", - "cross-domain", - "cross-site", - "chunk", - "resume", - "gae", - "go", - "python", - "php", - "bootstrap" - ], - "homepage": "https://github.com/blueimp/jQuery-File-Upload", - "author": { - "name": "Sebastian Tschan", - "url": "https://blueimp.net" - }, - "maintainers": [ - { - "name": "Sebastian Tschan", - "url": "https://blueimp.net" - } - ], - "repository": { - "type": "git", - "url": "git://github.com/blueimp/jQuery-File-Upload.git" - }, - "bugs": "https://github.com/blueimp/jQuery-File-Upload/issues", - "licenses": [ - { - "type": "MIT", - "url": "http://www.opensource.org/licenses/MIT" - } - ], - "dependencies": { - "jquery": ">=1.6", - "blueimp-tmpl": ">=2.5.3", - "blueimp-load-image": ">=1.11.0", - "blueimp-canvas-to-blob": ">=2.1.0" - }, - "main": [ - "css/jquery.fileupload.css", - "css/jquery.fileupload-ui.css", - "css/jquery.fileupload-noscript.css", - "css/jquery.fileupload-ui-noscript.css", - "js/cors/jquery.postmessage-transport.js", - "js/cors/jquery.xdr-transport.js", - "js/vendor/jquery.ui.widget.js", - "js/jquery.fileupload.js", - "js/jquery.fileupload-process.js", - "js/jquery.fileupload-validate.js", - "js/jquery.fileupload-image.js", - "js/jquery.fileupload-audio.js", - "js/jquery.fileupload-video.js", - "js/jquery.fileupload-ui.js", - "js/jquery.fileupload-jquery-ui.js", - "js/jquery.fileupload-angular.js", - "js/jquery.iframe-transport.js" - ], - "ignore": [ - "/*.*", - "/cors", - "css/demo-ie8.css", - "css/demo.css", - "css/style.css", - "js/app.js", - "js/main.js", - "server", - "test" - ] -} diff --git a/library/jqupload/cors/postmessage.html b/library/jqupload/cors/postmessage.html deleted file mode 100644 index 3d1448f08..000000000 --- a/library/jqupload/cors/postmessage.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - -jQuery File Upload Plugin postMessage API - - - - - - \ No newline at end of file diff --git a/library/jqupload/cors/result.html b/library/jqupload/cors/result.html deleted file mode 100644 index 225131495..000000000 --- a/library/jqupload/cors/result.html +++ /dev/null @@ -1,24 +0,0 @@ - - - - - -jQuery Iframe Transport Plugin Redirect Page - - - - - diff --git a/library/jqupload/css/demo-ie8.css b/library/jqupload/css/demo-ie8.css deleted file mode 100644 index 262493d08..000000000 --- a/library/jqupload/css/demo-ie8.css +++ /dev/null @@ -1,21 +0,0 @@ -@charset "UTF-8"; -/* - * jQuery File Upload Demo CSS Fixes for IE<9 1.0.0 - * https://github.com/blueimp/jQuery-File-Upload - * - * Copyright 2013, Sebastian Tschan - * https://blueimp.net - * - * Licensed under the MIT license: - * http://www.opensource.org/licenses/MIT - */ - -.navigation { - list-style: none; - padding: 0; - margin: 1em 0; -} -.navigation li { - display: inline; - margin-right: 10px; -} diff --git a/library/jqupload/css/demo.css b/library/jqupload/css/demo.css deleted file mode 100644 index 2b4d43934..000000000 --- a/library/jqupload/css/demo.css +++ /dev/null @@ -1,67 +0,0 @@ -@charset "UTF-8"; -/* - * jQuery File Upload Demo CSS 1.1.0 - * https://github.com/blueimp/jQuery-File-Upload - * - * Copyright 2013, Sebastian Tschan - * https://blueimp.net - * - * Licensed under the MIT license: - * http://www.opensource.org/licenses/MIT - */ - -body { - max-width: 750px; - margin: 0 auto; - padding: 1em; - font-family: "Lucida Grande", "Lucida Sans Unicode", Arial, sans-serif; - font-size: 1em; - line-height: 1.4em; - background: #222; - color: #fff; - -webkit-text-size-adjust: 100%; - -ms-text-size-adjust: 100%; -} -a { - color: orange; - text-decoration: none; -} -img { - border: 0; - vertical-align: middle; -} -h1 { - line-height: 1em; -} -blockquote { - padding: 0 0 0 15px; - margin: 0 0 20px; - border-left: 5px solid #eee; -} -table { - width: 100%; - margin: 10px 0; -} - -.fileupload-progress { - margin: 10px 0; -} -.fileupload-progress .progress-extended { - margin-top: 5px; -} -.error { - color: red; -} - -@media (min-width: 481px) { - .navigation { - list-style: none; - padding: 0; - } - .navigation li { - display: inline-block; - } - .navigation li:not(:first-child):before { - content: "| "; - } -} diff --git a/library/jqupload/css/jquery.fileupload-noscript.css b/library/jqupload/css/jquery.fileupload-noscript.css deleted file mode 100644 index 64d728fc3..000000000 --- a/library/jqupload/css/jquery.fileupload-noscript.css +++ /dev/null @@ -1,22 +0,0 @@ -@charset "UTF-8"; -/* - * jQuery File Upload Plugin NoScript CSS 1.2.0 - * https://github.com/blueimp/jQuery-File-Upload - * - * Copyright 2013, Sebastian Tschan - * https://blueimp.net - * - * Licensed under the MIT license: - * http://www.opensource.org/licenses/MIT - */ - -.fileinput-button input { - position: static; - opacity: 1; - filter: none; - font-size: inherit; - direction: inherit; -} -.fileinput-button span { - display: none; -} diff --git a/library/jqupload/css/jquery.fileupload-ui-noscript.css b/library/jqupload/css/jquery.fileupload-ui-noscript.css deleted file mode 100644 index 87f110cdb..000000000 --- a/library/jqupload/css/jquery.fileupload-ui-noscript.css +++ /dev/null @@ -1,17 +0,0 @@ -@charset "UTF-8"; -/* - * jQuery File Upload UI Plugin NoScript CSS 8.8.5 - * https://github.com/blueimp/jQuery-File-Upload - * - * Copyright 2012, Sebastian Tschan - * https://blueimp.net - * - * Licensed under the MIT license: - * http://www.opensource.org/licenses/MIT - */ - -.fileinput-button i, -.fileupload-buttonbar .delete, -.fileupload-buttonbar .toggle { - display: none; -} diff --git a/library/jqupload/css/jquery.fileupload-ui.css b/library/jqupload/css/jquery.fileupload-ui.css deleted file mode 100644 index 76fb376de..000000000 --- a/library/jqupload/css/jquery.fileupload-ui.css +++ /dev/null @@ -1,57 +0,0 @@ -@charset "UTF-8"; -/* - * jQuery File Upload UI Plugin CSS 9.0.0 - * https://github.com/blueimp/jQuery-File-Upload - * - * Copyright 2010, Sebastian Tschan - * https://blueimp.net - * - * Licensed under the MIT license: - * http://www.opensource.org/licenses/MIT - */ - -.fileupload-buttonbar .btn, -.fileupload-buttonbar .toggle { - margin-bottom: 5px; -} -.progress-animated .progress-bar, -.progress-animated .bar { - background: url("../img/progressbar.gif") !important; - filter: none; -} -.fileupload-process { - float: right; - display: none; -} -.fileupload-processing .fileupload-process, -.files .processing .preview { - display: block; - width: 32px; - height: 32px; - background: url("../img/loading.gif") center no-repeat; - background-size: contain; -} -.files audio, -.files video { - max-width: 300px; -} - -@media (max-width: 767px) { - .fileupload-buttonbar .toggle, - .files .toggle, - .files .btn span { - display: none; - } - .files .name { - width: 80px; - word-wrap: break-word; - } - .files audio, - .files video { - max-width: 80px; - } - .files img, - .files canvas { - max-width: 100%; - } -} diff --git a/library/jqupload/css/jquery.fileupload.css b/library/jqupload/css/jquery.fileupload.css deleted file mode 100644 index fb6044d34..000000000 --- a/library/jqupload/css/jquery.fileupload.css +++ /dev/null @@ -1,36 +0,0 @@ -@charset "UTF-8"; -/* - * jQuery File Upload Plugin CSS 1.3.0 - * https://github.com/blueimp/jQuery-File-Upload - * - * Copyright 2013, Sebastian Tschan - * https://blueimp.net - * - * Licensed under the MIT license: - * http://www.opensource.org/licenses/MIT - */ - -.fileinput-button { - position: relative; - overflow: hidden; -} -.fileinput-button input { - position: absolute; - top: 0; - right: 0; - margin: 0; - opacity: 0; - -ms-filter: 'alpha(opacity=0)'; - font-size: 200px; - direction: ltr; - cursor: pointer; -} - -/* Fixes for IE < 8 */ -@media screen\9 { - .fileinput-button input { - filter: alpha(opacity=0); - font-size: 100%; - height: 100%; - } -} diff --git a/library/jqupload/css/style.css b/library/jqupload/css/style.css deleted file mode 100644 index b2c60a6f1..000000000 --- a/library/jqupload/css/style.css +++ /dev/null @@ -1,15 +0,0 @@ -@charset "UTF-8"; -/* - * jQuery File Upload Plugin CSS Example 8.8.2 - * https://github.com/blueimp/jQuery-File-Upload - * - * Copyright 2013, Sebastian Tschan - * https://blueimp.net - * - * Licensed under the MIT license: - * http://www.opensource.org/licenses/MIT - */ - -body { - padding-top: 60px; -} diff --git a/library/jqupload/img/loading.gif b/library/jqupload/img/loading.gif deleted file mode 100644 index 90f28cbdbb390b095e0d619cbe8d91208798e58f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 3897 zcmZvfcR1T?8^ABwb_x$y{p1+>Yb$`dLr?0DW)y5y-57+?!PEJmyrlv?FQgU)K z^$+m(2RfoVbqYWS0G%+J=-j=drD>|8AS+KxL%o*)0)PM?>H*Mx2iHt~mnWZ=N>W+t zB|S>mk9=ZpYXc!T7UZI&`(-T$A=k$fH%{0DUBGwg!#nk?dE^E3gDApBHVTIQQFjd% z@8i*q&q?bJ^`q%$4G<}clybdVd-s{xsx+KupPg;W4bOvd7w*pJ;3oEg_PFlG;yL8+oShz**1=iDRZ*E(Q<#5R=A*XP5H_Y=1xJoCem%-&eKb6zV0ff z>legqW&{=3KP~Y8@#^3-+sNyevrSganP&X1J3*?KZrnP&@8z-DF>$5H-D+bme&k}k z=b(j;=N4)0R8Q6PZLj2pkrz)`V_M!E?dlE7mCX3opU@wz96Zurx4FmWL37=7TCuG9 z`GkMU?-=3W2u(X1pJ+1-D8$#M3IyxB%pDQB;2(M(eo?G5D~tz~6dTT3ItGfkWI&$< z&#Xo;(n_Kq+TlC@hpWm<{qK@(J8G++We#hbNi^se<6nV2;T4 zNDqriR!3dHvF711Txh1!vT{};LzV^uLH;6l)wR@$;KDJa`VOrZ+ccMJt-r043s&2t^bewdCj@xurE^v)WL95dQ z!~&h-7Yqg)+cJl7{=U2?_+E7^{JVv*AQbVh@R_RBt12dDs-#^ZEg=TA;LKR69HAv*?v1IO*LrVkl0@jm)`Yw>Ei;Cb<`Ge=JHj9g^C7+M?`w@g>lBl#q%UG z`}!%t5@M1z}?nB z*Tj60Y$FR82XGHd41y*mrUDeYh38hddS#Y*SGE@ZP#F{1I^fy8Y9@AY`0m};Z?t1t zvl@XaOzm2oTG^`5GXjVpu-2S*n4*kB%YDv4k&aM?8%y+(ZsV3)1mZz23da;)wH@7&`|Ado=<=+Ih>-Zw;?kA^kOQDkl*L3<;+? z<|M0rPu_-Pn1S;!V&9?Lji{M@0Mr#T9>Bk`lq`z3P)1&h>Ho;*au|vDvsVjp-qT0e z*UUfQ?Gpz$g9n2bA}a7zWNb7tHVzcwml}2{C{dOsk47z6B0pahT~Ju4TqIILBp68& zNmxrkQf(GrV^cF{Yg;>8XC;}Vr=*X4p!6N-twSOZPz$&PLr@%}eIZ zD~Lt1l{LgdQhk+JLo-cX3#q!jvb?Lbps#;m@ZHexhyq{?ko#d0H90e$K08CzSlrS) zWo6dl)B48d)b`HU-u~MD$9uai7`L)G>3*T{10aZCYqqL(n*#FQw0j@zj_M(+#c zyVt!MW{V+4vZ?)+0bac?NfTw2K79`dH+R{6nT57bfL{LIoi7Ag$(vz$+eju9d$7B zJG&Z{dzkyk1G(>p`qfHW#%#yxr>AUYK0KOvygWa*I`naEY4hR2MjvI{YUR`Z@fYi( z@9Pv+(V>39D#Fg`k5 zAvd8jHQhWpvV^33oSVP7D7mS*y)&b|zlvB`kzM|}?rCIuU=S7LEHVa$xY zK7bdtLDWL^SFw^20+{?ObjZr9KUx(0o0SBj_xZyoID`D^`r^?VSAjk}{spA|BzpP` z*n{4_ZGkmTM)r5(MRv|pCYSwXX2mHCy0;?C3wFJlI=Ud1imCcH_f;o6U;m-fmBwF| zxeaFV_F$)h(s28}mNsGy`ZELug@>6%MYAH2>|xIMd-hlX4DyCpx2_fIxR&9HR| zOo=QmRf1OdI|P;~oA(JKyL+Po2Z!q-^EdYxV{T>gIls8gp+tex@r9h|)?()zIoc!` z<-T`fILv04Ax z`;g5e;{OrXwNr!u98>p5O4V$kGW+Q$xy7wyq-@a{rvp{O^`YL+YM=2l%U^u_1752E zp+H?P>LBTO+=z(KcG8T2As`wFiAndgQX_?Fb7*g8g`&_orui5i9PU;=s2FX6FR#co zE~~Dn%@VI68P?So8?|?o7*sXav^B}J^pd-Y`tL^zz~d9Gy3^POy}9|$k4r+sE2(Oq zblxd%Y40fR?Z;>w9%bM7>MRCe0$W>a1Ua)1%pg!3Ef2a&@`nE+@wdq?gKL=1$&mG5 zc=xRumn_dNMN(4+^D|}e-AyHhgXp*ONwPc4Gw0}8JwtWo>9B=>)bspG45{b5-#-%j z#bmSnf0`_jYO*x%*xv*H2=qB?SKiue@ymKb_UgCALL`qak+Q!sG{OTY*|7f zF|)MHlBhu2NPE6kwyB8|f2F;hBma7LM{kKLHEAkujx^eiH``22TTe~S&x|jOJYJkz zURwXOva!82K-vG?eb}>euy=GkG2A=!`dKFQr>UIzv90~@YW71c)Ya_7S_1LJKEn=2 za9pc*k?HqfnAE_>s??ukJY)v<(7$cFuo!w*RiJ0d-5_)cb6+|EH)TS4n7hww64>2( zX`J7xEP2C2?VS3M{VJ)C5ViP4(Z`>SCWHnQ7<3K_6^4f~Mj(aUsSP$sAU+{HDVa|% zjWr{KUyB;EnHVu#ZXuo!TYQ1qV?~J(RTVWMwIb943uEgYoSL4Q{n!XxSX^4BEKja{T3;I9*k1pzv%fm_`3SgoyubBr<2{X$I3cSkh@M@_ zva>k51!i{|%nxvFY7J+Rb3l)ox#Z|V1(l_kR#-t@$lq>-DPeX*yA#-ro8yw)#5xk? z+50S$Vwd${7o-V=V1Vdg4meiIid>Ez$~Vn1NH?g!jTGE3bC@Dm6pR*Gx184p0Mz~i D^>?LD diff --git a/library/jqupload/img/progressbar.gif b/library/jqupload/img/progressbar.gif deleted file mode 100644 index fbcce6bc9abfcc7893e65ef20b3e77ee16ec37b1..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 3323 zcmcK7eNYp38VB%=tbvu|O{=v;j+Z$Bg`>zI2IVD3Ovp-%sA$2LilR;|zMv9BB_t%- zylmcIh`dQLinJh9P{0Ja6I28#3PquysCf3GB1bBEXgfV_qnx8-n07k#kNmNdnVrvm zpZz`0v#~Ih7`{0em<2RA0wa|vr`!U1uI~v zF&O+zyfdOBoHdq{xOf7$)mN>lwcHgLVd-HT}JxYe94Gv(X_H__aHV~b7Ud4Pvk@t?84W?#& z+#WmNc5cUNoapyda#-P`2+n z-sGAbb$_$TW887}6BiJKaV$E-69{23pNeG2=_;8-CM9c*OiHOp|F9Igl_JQHqf)Y3 zhR7s(mQBh5ER~A&6^|p|OQqmd+(8 zZCb1qD*K}>!|B|YVuCsS=V0!N=?-)po(^$x*kptYX9N)B^~VJ^d7-@(M1WK;9&Liw~wO?NN(E}be} z`e0?=)*y}@Xkgx6S$ZS(8d|ifzK_`x?=N$)pWk;s0Ve?`qDX{%L@X0)6guz8Adh+qh(mq90aE=iAZp(dGccGHgmlkOke19p-dfci z@1Ni#x_B;&@l8icy*4roEXN?9&vh-w;n!Fp3;~Dn4#aOVi22tbo-KY@B1*TAgMsta zMh~68EXdvgJe$<9yOgn~E8aiQNo1$l`FUCI52J)nHW8+@|McSTe{t30@NpO^cv#waY+68ew4oT={#AGoA?Je^k$f`&u}bW zOjoRA_$utq5rspZ;5HXZvqE1#D) z5*M}9jPoq=-V*<cQuuK%yr=$XZl2k``40P4ol60hjb({{!c5Rtn3Urk4?uRRFNQuFGPhZnTBMO zu{W&|u4t53w>M}v(wtDAV!oHP(QY&~_X0qupII*-&GksTPf#SZ#4eaOCrG~hUblo4 zya(R){3rfyxiH2%l{iN;xS(G)OWOx8>UV9u+Vm_iN98oT20F}U!8utl4(lm=E)S6) zN~xM^Q?U;_!Ku4seH{bquy+4OfwlV{0C?tW&XteqJmP<|V)6eK9ey(~1Sbd1rgF1{ zd@&*xkriY}MS><}4DI}o3>d2jm74@fNpg-Vf(zPY?8nj=O8o$gp_gzr3~{MEs({T( z5+EcMIErR!`wwLZHp{c_?{mEhe%dlbNH8E^nm+5|owEXTR;S2+hYWR^j zWB!qbQWumI=vg;ZQvO$8W9QeMX~YdqNb^K%y~T6@tCTOlSM-j*$OOSSZX6cRfzPb* zP-Q}8v|6Q&$hAFfGA(f5>_XzuqhFP@h(0x@%#tsExSB}v(zy6^qc>xW*XCVMBPKf` zF>gsuD~+eKuRP{tWLo#OoJ2?fR@_0f5Olf}}Khc$ZhB$$3I7S9&n z^G{G0pQnju2Md}?zmbr - - - - - - -jQuery File Upload Demo - - - - - - - - - - - - - - - - - -
    -

    jQuery File Upload Demo

    -

    Basic Plus UI version

    - -
    -
    -

    File Upload widget with multiple file selection, drag&drop support, progress bars, validation and preview images, audio and video for jQuery.
    - Supports cross-domain, chunked and resumable file uploads and client-side image resizing.
    - Works with any server-side platform (PHP, Python, Ruby on Rails, Java, Node.js, Go etc.) that supports standard HTML form file uploads.

    -
    -
    - - - - - -
    -
    - - - - Add files... - - - - - - - - -
    - -
    - -
    -
    -
    - -
     
    -
    -
    - -
    ' . t('Hub URL') . '' . t('Access Type') . '' . t('Registration Policy') . '' . t('Software') . '' . t('Ratings') . '
    ' . $urltext . '' . $location . '' . $jj['access'] . '' . $jj['register'] . '' . '' . ucwords($jj['project']) . (($jj['version']) ? ' ' . $jj['version'] : '') . '
    ' . $urltext . '' . $location . '' . $jj['access'] . '' . $jj['register'] . '' . ucwords($jj['project']) . (($jj['version']) ? ' ' . $jj['version'] : '') . ' ' . t('View') . '
    - -
    -
    -
    -

    Demo Notes

    -
    -
    -
      -
    • The maximum file size for uploads in this demo is 5 MB (default file size is unlimited).
    • -
    • Only image files (JPG, GIF, PNG) are allowed in this demo (by default there is no file type restriction).
    • -
    • Uploaded files will be deleted automatically after 5 minutes (demo setting).
    • -
    • You can drag & drop files from your desktop on this webpage (see Browser support).
    • -
    • Please refer to the project website and documentation for more information.
    • -
    • Built with Twitter's Bootstrap CSS framework and Icons from Glyphicons.
    • -
    -
    -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/library/jqupload/jquery-ui.html b/library/jqupload/jquery-ui.html deleted file mode 100644 index 993a4c815..000000000 --- a/library/jqupload/jquery-ui.html +++ /dev/null @@ -1,250 +0,0 @@ - - - - - - - -jQuery File Upload Demo - jQuery UI version - - - - - - - - - - - - - - - - - - - -

    jQuery File Upload Demo

    -

    jQuery UI version

    -
    - - -
    - -
    -

    File Upload widget with multiple file selection, drag&drop support, progress bars, validation and preview images, audio and video for jQuery UI.
    - Supports cross-domain, chunked and resumable file uploads and client-side image resizing.
    - Works with any server-side platform (PHP, Python, Ruby on Rails, Java, Node.js, Go etc.) that supports standard HTML form file uploads.

    -
    - -
    - - - -
    -
    - - - Add files... - - - - - - - - -
    - - -
    - -
    -
    -
    -

    Demo Notes

    -
      -
    • The maximum file size for uploads in this demo is 5 MB (default file size is unlimited).
    • -
    • Only image files (JPG, GIF, PNG) are allowed in this demo (by default there is no file type restriction).
    • -
    • Uploaded files will be deleted automatically after 5 minutes (demo setting).
    • -
    • You can drag & drop files from your desktop on this webpage (see Browser support).
    • -
    • Please refer to the project website and documentation for more information.
    • -
    • Built with jQuery UI.
    • -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/library/jqupload/js/app.js b/library/jqupload/js/app.js deleted file mode 100644 index 47b4f923b..000000000 --- a/library/jqupload/js/app.js +++ /dev/null @@ -1,101 +0,0 @@ -/* - * jQuery File Upload Plugin Angular JS Example 1.2.1 - * https://github.com/blueimp/jQuery-File-Upload - * - * Copyright 2013, Sebastian Tschan - * https://blueimp.net - * - * Licensed under the MIT license: - * http://www.opensource.org/licenses/MIT - */ - -/* jshint nomen:false */ -/* global window, angular */ - -(function () { - 'use strict'; - - var isOnGitHub = window.location.hostname === 'blueimp.github.io', - url = isOnGitHub ? '//jquery-file-upload.appspot.com/' : 'server/php/'; - - angular.module('demo', [ - 'blueimp.fileupload' - ]) - .config([ - '$httpProvider', 'fileUploadProvider', - function ($httpProvider, fileUploadProvider) { - delete $httpProvider.defaults.headers.common['X-Requested-With']; - fileUploadProvider.defaults.redirect = window.location.href.replace( - /\/[^\/]*$/, - '/cors/result.html?%s' - ); - if (isOnGitHub) { - // Demo settings: - angular.extend(fileUploadProvider.defaults, { - // Enable image resizing, except for Android and Opera, - // which actually support image resizing, but fail to - // send Blob objects via XHR requests: - disableImageResize: /Android(?!.*Chrome)|Opera/ - .test(window.navigator.userAgent), - maxFileSize: 5000000, - acceptFileTypes: /(\.|\/)(gif|jpe?g|png)$/i - }); - } - } - ]) - - .controller('DemoFileUploadController', [ - '$scope', '$http', '$filter', '$window', - function ($scope, $http) { - $scope.options = { - url: url - }; - if (!isOnGitHub) { - $scope.loadingFiles = true; - $http.get(url) - .then( - function (response) { - $scope.loadingFiles = false; - $scope.queue = response.data.files || []; - }, - function () { - $scope.loadingFiles = false; - } - ); - } - } - ]) - - .controller('FileDestroyController', [ - '$scope', '$http', - function ($scope, $http) { - var file = $scope.file, - state; - if (file.url) { - file.$state = function () { - return state; - }; - file.$destroy = function () { - state = 'pending'; - return $http({ - url: file.deleteUrl, - method: file.deleteType - }).then( - function () { - state = 'resolved'; - $scope.clear(file); - }, - function () { - state = 'rejected'; - } - ); - }; - } else if (!file.$cancel && !file._index) { - file.$cancel = function () { - $scope.clear(file); - }; - } - } - ]); - -}()); diff --git a/library/jqupload/js/cors/jquery.postmessage-transport.js b/library/jqupload/js/cors/jquery.postmessage-transport.js deleted file mode 100644 index 2b4851e67..000000000 --- a/library/jqupload/js/cors/jquery.postmessage-transport.js +++ /dev/null @@ -1,117 +0,0 @@ -/* - * jQuery postMessage Transport Plugin 1.1.1 - * https://github.com/blueimp/jQuery-File-Upload - * - * Copyright 2011, Sebastian Tschan - * https://blueimp.net - * - * Licensed under the MIT license: - * http://www.opensource.org/licenses/MIT - */ - -/* global define, window, document */ - -(function (factory) { - 'use strict'; - if (typeof define === 'function' && define.amd) { - // Register as an anonymous AMD module: - define(['jquery'], factory); - } else { - // Browser globals: - factory(window.jQuery); - } -}(function ($) { - 'use strict'; - - var counter = 0, - names = [ - 'accepts', - 'cache', - 'contents', - 'contentType', - 'crossDomain', - 'data', - 'dataType', - 'headers', - 'ifModified', - 'mimeType', - 'password', - 'processData', - 'timeout', - 'traditional', - 'type', - 'url', - 'username' - ], - convert = function (p) { - return p; - }; - - $.ajaxSetup({ - converters: { - 'postmessage text': convert, - 'postmessage json': convert, - 'postmessage html': convert - } - }); - - $.ajaxTransport('postmessage', function (options) { - if (options.postMessage && window.postMessage) { - var iframe, - loc = $('').prop('href', options.postMessage)[0], - target = loc.protocol + '//' + loc.host, - xhrUpload = options.xhr().upload; - return { - send: function (_, completeCallback) { - counter += 1; - var message = { - id: 'postmessage-transport-' + counter - }, - eventName = 'message.' + message.id; - iframe = $( - '' - ).bind('load', function () { - $.each(names, function (i, name) { - message[name] = options[name]; - }); - message.dataType = message.dataType.replace('postmessage ', ''); - $(window).bind(eventName, function (e) { - e = e.originalEvent; - var data = e.data, - ev; - if (e.origin === target && data.id === message.id) { - if (data.type === 'progress') { - ev = document.createEvent('Event'); - ev.initEvent(data.type, false, true); - $.extend(ev, data); - xhrUpload.dispatchEvent(ev); - } else { - completeCallback( - data.status, - data.statusText, - {postmessage: data.result}, - data.headers - ); - iframe.remove(); - $(window).unbind(eventName); - } - } - }); - iframe[0].contentWindow.postMessage( - message, - target - ); - }).appendTo(document.body); - }, - abort: function () { - if (iframe) { - iframe.remove(); - } - } - }; - } - }); - -})); diff --git a/library/jqupload/js/cors/jquery.xdr-transport.js b/library/jqupload/js/cors/jquery.xdr-transport.js deleted file mode 100644 index 0044cc2d5..000000000 --- a/library/jqupload/js/cors/jquery.xdr-transport.js +++ /dev/null @@ -1,86 +0,0 @@ -/* - * jQuery XDomainRequest Transport Plugin 1.1.3 - * https://github.com/blueimp/jQuery-File-Upload - * - * Copyright 2011, Sebastian Tschan - * https://blueimp.net - * - * Licensed under the MIT license: - * http://www.opensource.org/licenses/MIT - * - * Based on Julian Aubourg's ajaxHooks xdr.js: - * https://github.com/jaubourg/ajaxHooks/ - */ - -/* global define, window, XDomainRequest */ - -(function (factory) { - 'use strict'; - if (typeof define === 'function' && define.amd) { - // Register as an anonymous AMD module: - define(['jquery'], factory); - } else { - // Browser globals: - factory(window.jQuery); - } -}(function ($) { - 'use strict'; - if (window.XDomainRequest && !$.support.cors) { - $.ajaxTransport(function (s) { - if (s.crossDomain && s.async) { - if (s.timeout) { - s.xdrTimeout = s.timeout; - delete s.timeout; - } - var xdr; - return { - send: function (headers, completeCallback) { - var addParamChar = /\?/.test(s.url) ? '&' : '?'; - function callback(status, statusText, responses, responseHeaders) { - xdr.onload = xdr.onerror = xdr.ontimeout = $.noop; - xdr = null; - completeCallback(status, statusText, responses, responseHeaders); - } - xdr = new XDomainRequest(); - // XDomainRequest only supports GET and POST: - if (s.type === 'DELETE') { - s.url = s.url + addParamChar + '_method=DELETE'; - s.type = 'POST'; - } else if (s.type === 'PUT') { - s.url = s.url + addParamChar + '_method=PUT'; - s.type = 'POST'; - } else if (s.type === 'PATCH') { - s.url = s.url + addParamChar + '_method=PATCH'; - s.type = 'POST'; - } - xdr.open(s.type, s.url); - xdr.onload = function () { - callback( - 200, - 'OK', - {text: xdr.responseText}, - 'Content-Type: ' + xdr.contentType - ); - }; - xdr.onerror = function () { - callback(404, 'Not Found'); - }; - if (s.xdrTimeout) { - xdr.ontimeout = function () { - callback(0, 'timeout'); - }; - xdr.timeout = s.xdrTimeout; - } - xdr.send((s.hasContent && s.data) || null); - }, - abort: function () { - if (xdr) { - xdr.onerror = $.noop(); - xdr.abort(); - } - } - }; - } - }); - } -})); diff --git a/library/jqupload/js/jquery.fileupload-angular.js b/library/jqupload/js/jquery.fileupload-angular.js deleted file mode 100644 index 666f51429..000000000 --- a/library/jqupload/js/jquery.fileupload-angular.js +++ /dev/null @@ -1,428 +0,0 @@ -/* - * jQuery File Upload AngularJS Plugin 2.1.3 - * https://github.com/blueimp/jQuery-File-Upload - * - * Copyright 2013, Sebastian Tschan - * https://blueimp.net - * - * Licensed under the MIT license: - * http://www.opensource.org/licenses/MIT - */ - -/* jshint nomen:false */ -/* global define, angular */ - -(function (factory) { - 'use strict'; - if (typeof define === 'function' && define.amd) { - // Register as an anonymous AMD module: - define([ - 'jquery', - 'angular', - './jquery.fileupload-image', - './jquery.fileupload-audio', - './jquery.fileupload-video', - './jquery.fileupload-validate' - ], factory); - } else { - factory(); - } -}(function () { - 'use strict'; - - angular.module('blueimp.fileupload', []) - - // The fileUpload service provides configuration options - // for the fileUpload directive and default handlers for - // File Upload events: - .provider('fileUpload', function () { - var scopeEvalAsync = function (expression) { - var scope = angular.element(this) - .fileupload('option', 'scope')(); - // Schedule a new $digest cycle if not already inside of one - // and evaluate the given expression: - scope.$evalAsync(expression); - }, - addFileMethods = function (scope, data) { - var files = data.files, - file = files[0]; - angular.forEach(files, function (file, index) { - file._index = index; - file.$state = function () { - return data.state(); - }; - file.$processing = function () { - return data.processing(); - }; - file.$progress = function () { - return data.progress(); - }; - file.$response = function () { - return data.response(); - }; - }); - file.$submit = function () { - if (!file.error) { - return data.submit(); - } - }; - file.$cancel = function () { - return data.abort(); - }; - }, - $config; - $config = this.defaults = { - handleResponse: function (e, data) { - var files = data.result && data.result.files; - if (files) { - data.scope().replace(data.files, files); - } else if (data.errorThrown || - data.textStatus === 'error') { - data.files[0].error = data.errorThrown || - data.textStatus; - } - }, - add: function (e, data) { - if (e.isDefaultPrevented()) { - return false; - } - var scope = data.scope(), - filesCopy = []; - angular.forEach(data.files, function (file) { - filesCopy.push(file); - }); - scope.$apply(function () { - addFileMethods(scope, data); - var method = scope.option('prependFiles') ? - 'unshift' : 'push'; - Array.prototype[method].apply(scope.queue, data.files); - }); - data.process(function () { - return scope.process(data); - }).always(function () { - scope.$apply(function () { - addFileMethods(scope, data); - scope.replace(filesCopy, data.files); - }); - }).then(function () { - if ((scope.option('autoUpload') || - data.autoUpload) && - data.autoUpload !== false) { - data.submit(); - } - }); - }, - progress: function (e, data) { - if (e.isDefaultPrevented()) { - return false; - } - data.scope().$apply(); - }, - done: function (e, data) { - if (e.isDefaultPrevented()) { - return false; - } - var that = this; - data.scope().$apply(function () { - data.handleResponse.call(that, e, data); - }); - }, - fail: function (e, data) { - if (e.isDefaultPrevented()) { - return false; - } - var that = this, - scope = data.scope(); - if (data.errorThrown === 'abort') { - scope.clear(data.files); - return; - } - scope.$apply(function () { - data.handleResponse.call(that, e, data); - }); - }, - stop: scopeEvalAsync, - processstart: scopeEvalAsync, - processstop: scopeEvalAsync, - getNumberOfFiles: function () { - var scope = this.scope(); - return scope.queue.length - scope.processing(); - }, - dataType: 'json', - autoUpload: false - }; - this.$get = [ - function () { - return { - defaults: $config - }; - } - ]; - }) - - // Format byte numbers to readable presentations: - .provider('formatFileSizeFilter', function () { - var $config = { - // Byte units following the IEC format - // http://en.wikipedia.org/wiki/Kilobyte - units: [ - {size: 1000000000, suffix: ' GB'}, - {size: 1000000, suffix: ' MB'}, - {size: 1000, suffix: ' KB'} - ] - }; - this.defaults = $config; - this.$get = function () { - return function (bytes) { - if (!angular.isNumber(bytes)) { - return ''; - } - var unit = true, - i = 0, - prefix, - suffix; - while (unit) { - unit = $config.units[i]; - prefix = unit.prefix || ''; - suffix = unit.suffix || ''; - if (i === $config.units.length - 1 || bytes >= unit.size) { - return prefix + (bytes / unit.size).toFixed(2) + suffix; - } - i += 1; - } - }; - }; - }) - - // The FileUploadController initializes the fileupload widget and - // provides scope methods to control the File Upload functionality: - .controller('FileUploadController', [ - '$scope', '$element', '$attrs', '$window', 'fileUpload', - function ($scope, $element, $attrs, $window, fileUpload) { - var uploadMethods = { - progress: function () { - return $element.fileupload('progress'); - }, - active: function () { - return $element.fileupload('active'); - }, - option: function (option, data) { - return $element.fileupload('option', option, data); - }, - add: function (data) { - return $element.fileupload('add', data); - }, - send: function (data) { - return $element.fileupload('send', data); - }, - process: function (data) { - return $element.fileupload('process', data); - }, - processing: function (data) { - return $element.fileupload('processing', data); - } - }; - $scope.disabled = !$window.jQuery.support.fileInput; - $scope.queue = $scope.queue || []; - $scope.clear = function (files) { - var queue = this.queue, - i = queue.length, - file = files, - length = 1; - if (angular.isArray(files)) { - file = files[0]; - length = files.length; - } - while (i) { - i -= 1; - if (queue[i] === file) { - return queue.splice(i, length); - } - } - }; - $scope.replace = function (oldFiles, newFiles) { - var queue = this.queue, - file = oldFiles[0], - i, - j; - for (i = 0; i < queue.length; i += 1) { - if (queue[i] === file) { - for (j = 0; j < newFiles.length; j += 1) { - queue[i + j] = newFiles[j]; - } - return; - } - } - }; - $scope.applyOnQueue = function (method) { - var list = this.queue.slice(0), - i, - file; - for (i = 0; i < list.length; i += 1) { - file = list[i]; - if (file[method]) { - file[method](); - } - } - }; - $scope.submit = function () { - this.applyOnQueue('$submit'); - }; - $scope.cancel = function () { - this.applyOnQueue('$cancel'); - }; - // Add upload methods to the scope: - angular.extend($scope, uploadMethods); - // The fileupload widget will initialize with - // the options provided via "data-"-parameters, - // as well as those given via options object: - $element.fileupload(angular.extend( - {scope: function () { - return $scope; - }}, - fileUpload.defaults - )).on('fileuploadadd', function (e, data) { - data.scope = $scope.option('scope'); - }).on('fileuploadfail', function (e, data) { - if (data.errorThrown === 'abort') { - return; - } - if (data.dataType && - data.dataType.indexOf('json') === data.dataType.length - 4) { - try { - data.result = angular.fromJson(data.jqXHR.responseText); - } catch (ignore) {} - } - }).on([ - 'fileuploadadd', - 'fileuploadsubmit', - 'fileuploadsend', - 'fileuploaddone', - 'fileuploadfail', - 'fileuploadalways', - 'fileuploadprogress', - 'fileuploadprogressall', - 'fileuploadstart', - 'fileuploadstop', - 'fileuploadchange', - 'fileuploadpaste', - 'fileuploaddrop', - 'fileuploaddragover', - 'fileuploadchunksend', - 'fileuploadchunkdone', - 'fileuploadchunkfail', - 'fileuploadchunkalways', - 'fileuploadprocessstart', - 'fileuploadprocess', - 'fileuploadprocessdone', - 'fileuploadprocessfail', - 'fileuploadprocessalways', - 'fileuploadprocessstop' - ].join(' '), function (e, data) { - if ($scope.$emit(e.type, data).defaultPrevented) { - e.preventDefault(); - } - }).on('remove', function () { - // Remove upload methods from the scope, - // when the widget is removed: - var method; - for (method in uploadMethods) { - if (uploadMethods.hasOwnProperty(method)) { - delete $scope[method]; - } - } - }); - // Observe option changes: - $scope.$watch( - $attrs.fileUpload, - function (newOptions) { - if (newOptions) { - $element.fileupload('option', newOptions); - } - } - ); - } - ]) - - // Provide File Upload progress feedback: - .controller('FileUploadProgressController', [ - '$scope', '$attrs', '$parse', - function ($scope, $attrs, $parse) { - var fn = $parse($attrs.fileUploadProgress), - update = function () { - var progress = fn($scope); - if (!progress || !progress.total) { - return; - } - $scope.num = Math.floor( - progress.loaded / progress.total * 100 - ); - }; - update(); - $scope.$watch( - $attrs.fileUploadProgress + '.loaded', - function (newValue, oldValue) { - if (newValue !== oldValue) { - update(); - } - } - ); - } - ]) - - // Display File Upload previews: - .controller('FileUploadPreviewController', [ - '$scope', '$element', '$attrs', - function ($scope, $element, $attrs) { - $scope.$watch( - $attrs.fileUploadPreview + '.preview', - function (preview) { - $element.empty(); - if (preview) { - $element.append(preview); - } - } - ); - } - ]) - - .directive('fileUpload', function () { - return { - controller: 'FileUploadController', - scope: true - }; - }) - - .directive('fileUploadProgress', function () { - return { - controller: 'FileUploadProgressController', - scope: true - }; - }) - - .directive('fileUploadPreview', function () { - return { - controller: 'FileUploadPreviewController' - }; - }) - - // Enhance the HTML5 download attribute to - // allow drag&drop of files to the desktop: - .directive('download', function () { - return function (scope, elm) { - elm.on('dragstart', function (e) { - try { - e.originalEvent.dataTransfer.setData( - 'DownloadURL', - [ - 'application/octet-stream', - elm.prop('download'), - elm.prop('href') - ].join(':') - ); - } catch (ignore) {} - }); - }; - }); - -})); diff --git a/library/jqupload/js/jquery.fileupload-audio.js b/library/jqupload/js/jquery.fileupload-audio.js deleted file mode 100644 index 575800e82..000000000 --- a/library/jqupload/js/jquery.fileupload-audio.js +++ /dev/null @@ -1,106 +0,0 @@ -/* - * jQuery File Upload Audio Preview Plugin 1.0.3 - * https://github.com/blueimp/jQuery-File-Upload - * - * Copyright 2013, Sebastian Tschan - * https://blueimp.net - * - * Licensed under the MIT license: - * http://www.opensource.org/licenses/MIT - */ - -/* jshint nomen:false */ -/* global define, window, document */ - -(function (factory) { - 'use strict'; - if (typeof define === 'function' && define.amd) { - // Register as an anonymous AMD module: - define([ - 'jquery', - 'load-image', - './jquery.fileupload-process' - ], factory); - } else { - // Browser globals: - factory( - window.jQuery, - window.loadImage - ); - } -}(function ($, loadImage) { - 'use strict'; - - // Prepend to the default processQueue: - $.blueimp.fileupload.prototype.options.processQueue.unshift( - { - action: 'loadAudio', - // Use the action as prefix for the "@" options: - prefix: true, - fileTypes: '@', - maxFileSize: '@', - disabled: '@disableAudioPreview' - }, - { - action: 'setAudio', - name: '@audioPreviewName', - disabled: '@disableAudioPreview' - } - ); - - // The File Upload Audio Preview plugin extends the fileupload widget - // with audio preview functionality: - $.widget('blueimp.fileupload', $.blueimp.fileupload, { - - options: { - // The regular expression for the types of audio files to load, - // matched against the file type: - loadAudioFileTypes: /^audio\/.*$/ - }, - - _audioElement: document.createElement('audio'), - - processActions: { - - // Loads the audio file given via data.files and data.index - // as audio element if the browser supports playing it. - // Accepts the options fileTypes (regular expression) - // and maxFileSize (integer) to limit the files to load: - loadAudio: function (data, options) { - if (options.disabled) { - return data; - } - var file = data.files[data.index], - url, - audio; - if (this._audioElement.canPlayType && - this._audioElement.canPlayType(file.type) && - ($.type(options.maxFileSize) !== 'number' || - file.size <= options.maxFileSize) && - (!options.fileTypes || - options.fileTypes.test(file.type))) { - url = loadImage.createObjectURL(file); - if (url) { - audio = this._audioElement.cloneNode(false); - audio.src = url; - audio.controls = true; - data.audio = audio; - return data; - } - } - return data; - }, - - // Sets the audio element as a property of the file object: - setAudio: function (data, options) { - if (data.audio && !options.disabled) { - data.files[data.index][options.name || 'preview'] = data.audio; - } - return data; - } - - } - - }); - -})); diff --git a/library/jqupload/js/jquery.fileupload-image.js b/library/jqupload/js/jquery.fileupload-image.js deleted file mode 100644 index 8fbf7d42c..000000000 --- a/library/jqupload/js/jquery.fileupload-image.js +++ /dev/null @@ -1,309 +0,0 @@ -/* - * jQuery File Upload Image Preview & Resize Plugin 1.7.0 - * https://github.com/blueimp/jQuery-File-Upload - * - * Copyright 2013, Sebastian Tschan - * https://blueimp.net - * - * Licensed under the MIT license: - * http://www.opensource.org/licenses/MIT - */ - -/* jshint nomen:false */ -/* global define, window, Blob */ - -(function (factory) { - 'use strict'; - if (typeof define === 'function' && define.amd) { - // Register as an anonymous AMD module: - define([ - 'jquery', - 'load-image', - 'load-image-meta', - 'load-image-exif', - 'load-image-ios', - 'canvas-to-blob', - './jquery.fileupload-process' - ], factory); - } else { - // Browser globals: - factory( - window.jQuery, - window.loadImage - ); - } -}(function ($, loadImage) { - 'use strict'; - - // Prepend to the default processQueue: - $.blueimp.fileupload.prototype.options.processQueue.unshift( - { - action: 'loadImageMetaData', - disableImageHead: '@', - disableExif: '@', - disableExifThumbnail: '@', - disableExifSub: '@', - disableExifGps: '@', - disabled: '@disableImageMetaDataLoad' - }, - { - action: 'loadImage', - // Use the action as prefix for the "@" options: - prefix: true, - fileTypes: '@', - maxFileSize: '@', - noRevoke: '@', - disabled: '@disableImageLoad' - }, - { - action: 'resizeImage', - // Use "image" as prefix for the "@" options: - prefix: 'image', - maxWidth: '@', - maxHeight: '@', - minWidth: '@', - minHeight: '@', - crop: '@', - orientation: '@', - forceResize: '@', - disabled: '@disableImageResize' - }, - { - action: 'saveImage', - quality: '@imageQuality', - type: '@imageType', - disabled: '@disableImageResize' - }, - { - action: 'saveImageMetaData', - disabled: '@disableImageMetaDataSave' - }, - { - action: 'resizeImage', - // Use "preview" as prefix for the "@" options: - prefix: 'preview', - maxWidth: '@', - maxHeight: '@', - minWidth: '@', - minHeight: '@', - crop: '@', - orientation: '@', - thumbnail: '@', - canvas: '@', - disabled: '@disableImagePreview' - }, - { - action: 'setImage', - name: '@imagePreviewName', - disabled: '@disableImagePreview' - }, - { - action: 'deleteImageReferences', - disabled: '@disableImageReferencesDeletion' - } - ); - - // The File Upload Resize plugin extends the fileupload widget - // with image resize functionality: - $.widget('blueimp.fileupload', $.blueimp.fileupload, { - - options: { - // The regular expression for the types of images to load: - // matched against the file type: - loadImageFileTypes: /^image\/(gif|jpeg|png)$/, - // The maximum file size of images to load: - loadImageMaxFileSize: 10000000, // 10MB - // The maximum width of resized images: - imageMaxWidth: 1920, - // The maximum height of resized images: - imageMaxHeight: 1080, - // Defines the image orientation (1-8) or takes the orientation - // value from Exif data if set to true: - imageOrientation: false, - // Define if resized images should be cropped or only scaled: - imageCrop: false, - // Disable the resize image functionality by default: - disableImageResize: true, - // The maximum width of the preview images: - previewMaxWidth: 80, - // The maximum height of the preview images: - previewMaxHeight: 80, - // Defines the preview orientation (1-8) or takes the orientation - // value from Exif data if set to true: - previewOrientation: true, - // Create the preview using the Exif data thumbnail: - previewThumbnail: true, - // Define if preview images should be cropped or only scaled: - previewCrop: false, - // Define if preview images should be resized as canvas elements: - previewCanvas: true - }, - - processActions: { - - // Loads the image given via data.files and data.index - // as img element, if the browser supports the File API. - // Accepts the options fileTypes (regular expression) - // and maxFileSize (integer) to limit the files to load: - loadImage: function (data, options) { - if (options.disabled) { - return data; - } - var that = this, - file = data.files[data.index], - dfd = $.Deferred(); - if (($.type(options.maxFileSize) === 'number' && - file.size > options.maxFileSize) || - (options.fileTypes && - !options.fileTypes.test(file.type)) || - !loadImage( - file, - function (img) { - if (img.src) { - data.img = img; - } - dfd.resolveWith(that, [data]); - }, - options - )) { - return data; - } - return dfd.promise(); - }, - - // Resizes the image given as data.canvas or data.img - // and updates data.canvas or data.img with the resized image. - // Also stores the resized image as preview property. - // Accepts the options maxWidth, maxHeight, minWidth, - // minHeight, canvas and crop: - resizeImage: function (data, options) { - if (options.disabled || !(data.canvas || data.img)) { - return data; - } - options = $.extend({canvas: true}, options); - var that = this, - dfd = $.Deferred(), - img = (options.canvas && data.canvas) || data.img, - resolve = function (newImg) { - if (newImg && (newImg.width !== img.width || - newImg.height !== img.height || - options.forceResize)) { - data[newImg.getContext ? 'canvas' : 'img'] = newImg; - } - data.preview = newImg; - dfd.resolveWith(that, [data]); - }, - thumbnail; - if (data.exif) { - if (options.orientation === true) { - options.orientation = data.exif.get('Orientation'); - } - if (options.thumbnail) { - thumbnail = data.exif.get('Thumbnail'); - if (thumbnail) { - loadImage(thumbnail, resolve, options); - return dfd.promise(); - } - } - } - if (img) { - resolve(loadImage.scale(img, options)); - return dfd.promise(); - } - return data; - }, - - // Saves the processed image given as data.canvas - // inplace at data.index of data.files: - saveImage: function (data, options) { - if (!data.canvas || options.disabled) { - return data; - } - var that = this, - file = data.files[data.index], - dfd = $.Deferred(); - if (data.canvas.toBlob) { - data.canvas.toBlob( - function (blob) { - if (!blob.name) { - if (file.type === blob.type) { - blob.name = file.name; - } else if (file.name) { - blob.name = file.name.replace( - /\..+$/, - '.' + blob.type.substr(6) - ); - } - } - // Don't restore invalid meta data: - if (file.type !== blob.type) { - delete data.imageHead; - } - // Store the created blob at the position - // of the original file in the files list: - data.files[data.index] = blob; - dfd.resolveWith(that, [data]); - }, - options.type || file.type, - options.quality - ); - } else { - return data; - } - return dfd.promise(); - }, - - loadImageMetaData: function (data, options) { - if (options.disabled) { - return data; - } - var that = this, - dfd = $.Deferred(); - loadImage.parseMetaData(data.files[data.index], function (result) { - $.extend(data, result); - dfd.resolveWith(that, [data]); - }, options); - return dfd.promise(); - }, - - saveImageMetaData: function (data, options) { - if (!(data.imageHead && data.canvas && - data.canvas.toBlob && !options.disabled)) { - return data; - } - var file = data.files[data.index], - blob = new Blob([ - data.imageHead, - // Resized images always have a head size of 20 bytes, - // including the JPEG marker and a minimal JFIF header: - this._blobSlice.call(file, 20) - ], {type: file.type}); - blob.name = file.name; - data.files[data.index] = blob; - return data; - }, - - // Sets the resized version of the image as a property of the - // file object, must be called after "saveImage": - setImage: function (data, options) { - if (data.preview && !options.disabled) { - data.files[data.index][options.name || 'preview'] = data.preview; - } - return data; - }, - - deleteImageReferences: function (data, options) { - if (!options.disabled) { - delete data.img; - delete data.canvas; - delete data.preview; - delete data.imageHead; - } - return data; - } - - } - - }); - -})); diff --git a/library/jqupload/js/jquery.fileupload-jquery-ui.js b/library/jqupload/js/jquery.fileupload-jquery-ui.js deleted file mode 100755 index 7b4ffdf05..000000000 --- a/library/jqupload/js/jquery.fileupload-jquery-ui.js +++ /dev/null @@ -1,144 +0,0 @@ -/* - * jQuery File Upload jQuery UI Plugin 8.7.0 - * https://github.com/blueimp/jQuery-File-Upload - * - * Copyright 2013, Sebastian Tschan - * https://blueimp.net - * - * Licensed under the MIT license: - * http://www.opensource.org/licenses/MIT - */ - -/* jshint nomen:false */ -/* global define, window */ - -(function (factory) { - 'use strict'; - if (typeof define === 'function' && define.amd) { - // Register as an anonymous AMD module: - define(['jquery', './jquery.fileupload-ui'], factory); - } else { - // Browser globals: - factory(window.jQuery); - } -}(function ($) { - 'use strict'; - - $.widget('blueimp.fileupload', $.blueimp.fileupload, { - - options: { - progress: function (e, data) { - if (data.context) { - data.context.find('.progress').progressbar( - 'option', - 'value', - parseInt(data.loaded / data.total * 100, 10) - ); - } - }, - progressall: function (e, data) { - var $this = $(this); - $this.find('.fileupload-progress') - .find('.progress').progressbar( - 'option', - 'value', - parseInt(data.loaded / data.total * 100, 10) - ).end() - .find('.progress-extended').each(function () { - $(this).html( - ($this.data('blueimp-fileupload') || - $this.data('fileupload')) - ._renderExtendedProgress(data) - ); - }); - } - }, - - _renderUpload: function (func, files) { - var node = this._super(func, files), - showIconText = $(window).width() > 480; - node.find('.progress').empty().progressbar(); - node.find('.start').button({ - icons: {primary: 'ui-icon-circle-arrow-e'}, - text: showIconText - }); - node.find('.cancel').button({ - icons: {primary: 'ui-icon-cancel'}, - text: showIconText - }); - if (node.hasClass('fade')) { - node.hide(); - } - return node; - }, - - _renderDownload: function (func, files) { - var node = this._super(func, files), - showIconText = $(window).width() > 480; - node.find('.delete').button({ - icons: {primary: 'ui-icon-trash'}, - text: showIconText - }); - if (node.hasClass('fade')) { - node.hide(); - } - return node; - }, - - _transition: function (node) { - var deferred = $.Deferred(); - if (node.hasClass('fade')) { - node.fadeToggle( - this.options.transitionDuration, - this.options.transitionEasing, - function () { - deferred.resolveWith(node); - } - ); - } else { - deferred.resolveWith(node); - } - return deferred; - }, - - _create: function () { - this._super(); - this.element - .find('.fileupload-buttonbar') - .find('.fileinput-button').each(function () { - var input = $(this).find('input:file').detach(); - $(this) - .button({icons: {primary: 'ui-icon-plusthick'}}) - .append(input); - }) - .end().find('.start') - .button({icons: {primary: 'ui-icon-circle-arrow-e'}}) - .end().find('.cancel') - .button({icons: {primary: 'ui-icon-cancel'}}) - .end().find('.delete') - .button({icons: {primary: 'ui-icon-trash'}}) - .end().find('.progress').progressbar(); - }, - - _destroy: function () { - this.element - .find('.fileupload-buttonbar') - .find('.fileinput-button').each(function () { - var input = $(this).find('input:file').detach(); - $(this) - .button('destroy') - .append(input); - }) - .end().find('.start') - .button('destroy') - .end().find('.cancel') - .button('destroy') - .end().find('.delete') - .button('destroy') - .end().find('.progress').progressbar('destroy'); - this._super(); - } - - }); - -})); diff --git a/library/jqupload/js/jquery.fileupload-process.js b/library/jqupload/js/jquery.fileupload-process.js deleted file mode 100644 index 8a6b929a6..000000000 --- a/library/jqupload/js/jquery.fileupload-process.js +++ /dev/null @@ -1,172 +0,0 @@ -/* - * jQuery File Upload Processing Plugin 1.3.0 - * https://github.com/blueimp/jQuery-File-Upload - * - * Copyright 2012, Sebastian Tschan - * https://blueimp.net - * - * Licensed under the MIT license: - * http://www.opensource.org/licenses/MIT - */ - -/* jshint nomen:false */ -/* global define, window */ - -(function (factory) { - 'use strict'; - if (typeof define === 'function' && define.amd) { - // Register as an anonymous AMD module: - define([ - 'jquery', - './jquery.fileupload' - ], factory); - } else { - // Browser globals: - factory( - window.jQuery - ); - } -}(function ($) { - 'use strict'; - - var originalAdd = $.blueimp.fileupload.prototype.options.add; - - // The File Upload Processing plugin extends the fileupload widget - // with file processing functionality: - $.widget('blueimp.fileupload', $.blueimp.fileupload, { - - options: { - // The list of processing actions: - processQueue: [ - /* - { - action: 'log', - type: 'debug' - } - */ - ], - add: function (e, data) { - var $this = $(this); - data.process(function () { - return $this.fileupload('process', data); - }); - originalAdd.call(this, e, data); - } - }, - - processActions: { - /* - log: function (data, options) { - console[options.type]( - 'Processing "' + data.files[data.index].name + '"' - ); - } - */ - }, - - _processFile: function (data, originalData) { - var that = this, - dfd = $.Deferred().resolveWith(that, [data]), - chain = dfd.promise(); - this._trigger('process', null, data); - $.each(data.processQueue, function (i, settings) { - var func = function (data) { - if (originalData.errorThrown) { - return $.Deferred() - .rejectWith(that, [originalData]).promise(); - } - return that.processActions[settings.action].call( - that, - data, - settings - ); - }; - chain = chain.pipe(func, settings.always && func); - }); - chain - .done(function () { - that._trigger('processdone', null, data); - that._trigger('processalways', null, data); - }) - .fail(function () { - that._trigger('processfail', null, data); - that._trigger('processalways', null, data); - }); - return chain; - }, - - // Replaces the settings of each processQueue item that - // are strings starting with an "@", using the remaining - // substring as key for the option map, - // e.g. "@autoUpload" is replaced with options.autoUpload: - _transformProcessQueue: function (options) { - var processQueue = []; - $.each(options.processQueue, function () { - var settings = {}, - action = this.action, - prefix = this.prefix === true ? action : this.prefix; - $.each(this, function (key, value) { - if ($.type(value) === 'string' && - value.charAt(0) === '@') { - settings[key] = options[ - value.slice(1) || (prefix ? prefix + - key.charAt(0).toUpperCase() + key.slice(1) : key) - ]; - } else { - settings[key] = value; - } - - }); - processQueue.push(settings); - }); - options.processQueue = processQueue; - }, - - // Returns the number of files currently in the processsing queue: - processing: function () { - return this._processing; - }, - - // Processes the files given as files property of the data parameter, - // returns a Promise object that allows to bind callbacks: - process: function (data) { - var that = this, - options = $.extend({}, this.options, data); - if (options.processQueue && options.processQueue.length) { - this._transformProcessQueue(options); - if (this._processing === 0) { - this._trigger('processstart'); - } - $.each(data.files, function (index) { - var opts = index ? $.extend({}, options) : options, - func = function () { - if (data.errorThrown) { - return $.Deferred() - .rejectWith(that, [data]).promise(); - } - return that._processFile(opts, data); - }; - opts.index = index; - that._processing += 1; - that._processingQueue = that._processingQueue.pipe(func, func) - .always(function () { - that._processing -= 1; - if (that._processing === 0) { - that._trigger('processstop'); - } - }); - }); - } - return this._processingQueue; - }, - - _create: function () { - this._super(); - this._processing = 0; - this._processingQueue = $.Deferred().resolveWith(this) - .promise(); - } - - }); - -})); diff --git a/library/jqupload/js/jquery.fileupload-ui.js b/library/jqupload/js/jquery.fileupload-ui.js deleted file mode 100644 index 417edb73f..000000000 --- a/library/jqupload/js/jquery.fileupload-ui.js +++ /dev/null @@ -1,701 +0,0 @@ -/* - * jQuery File Upload User Interface Plugin 9.5.1 - * https://github.com/blueimp/jQuery-File-Upload - * - * Copyright 2010, Sebastian Tschan - * https://blueimp.net - * - * Licensed under the MIT license: - * http://www.opensource.org/licenses/MIT - */ - -/* jshint nomen:false */ -/* global define, window */ - -(function (factory) { - 'use strict'; - if (typeof define === 'function' && define.amd) { - // Register as an anonymous AMD module: - define([ - 'jquery', - 'tmpl', - './jquery.fileupload-image', - './jquery.fileupload-audio', - './jquery.fileupload-video', - './jquery.fileupload-validate' - ], factory); - } else { - // Browser globals: - factory( - window.jQuery, - window.tmpl - ); - } -}(function ($, tmpl) { - 'use strict'; - - $.blueimp.fileupload.prototype._specialOptions.push( - 'filesContainer', - 'uploadTemplateId', - 'downloadTemplateId' - ); - - // The UI version extends the file upload widget - // and adds complete user interface interaction: - $.widget('blueimp.fileupload', $.blueimp.fileupload, { - - options: { - // By default, files added to the widget are uploaded as soon - // as the user clicks on the start buttons. To enable automatic - // uploads, set the following option to true: - autoUpload: false, - // The ID of the upload template: - uploadTemplateId: 'template-upload', - // The ID of the download template: - downloadTemplateId: 'template-download', - // The container for the list of files. If undefined, it is set to - // an element with class "files" inside of the widget element: - filesContainer: undefined, - // By default, files are appended to the files container. - // Set the following option to true, to prepend files instead: - prependFiles: false, - // The expected data type of the upload response, sets the dataType - // option of the $.ajax upload requests: - dataType: 'json', - - // Function returning the current number of files, - // used by the maxNumberOfFiles validation: - getNumberOfFiles: function () { - return this.filesContainer.children() - .not('.processing').length; - }, - - // Callback to retrieve the list of files from the server response: - getFilesFromResponse: function (data) { - if (data.result && $.isArray(data.result.files)) { - return data.result.files; - } - return []; - }, - - // The add callback is invoked as soon as files are added to the fileupload - // widget (via file input selection, drag & drop or add API call). - // See the basic file upload widget for more information: - add: function (e, data) { - if (e.isDefaultPrevented()) { - return false; - } - var $this = $(this), - that = $this.data('blueimp-fileupload') || - $this.data('fileupload'), - options = that.options; - data.context = that._renderUpload(data.files) - .data('data', data) - .addClass('processing'); - options.filesContainer[ - options.prependFiles ? 'prepend' : 'append' - ](data.context); - that._forceReflow(data.context); - $.when( - that._transition(data.context), - data.process(function () { - return $this.fileupload('process', data); - }) - ).always(function () { - data.context.each(function (index) { - $(this).find('.size').text( - that._formatFileSize(data.files[index].size) - ); - }).removeClass('processing'); - that._renderPreviews(data); - }).done(function () { - data.context.find('.start').prop('disabled', false); - if ((that._trigger('added', e, data) !== false) && - (options.autoUpload || data.autoUpload) && - data.autoUpload !== false) { - data.submit(); - } - }).fail(function () { - if (data.files.error) { - data.context.each(function (index) { - var error = data.files[index].error; - if (error) { - $(this).find('.error').text(error); - } - }); - } - }); - }, - // Callback for the start of each file upload request: - send: function (e, data) { - if (e.isDefaultPrevented()) { - return false; - } - var that = $(this).data('blueimp-fileupload') || - $(this).data('fileupload'); - if (data.context && data.dataType && - data.dataType.substr(0, 6) === 'iframe') { - // Iframe Transport does not support progress events. - // In lack of an indeterminate progress bar, we set - // the progress to 100%, showing the full animated bar: - data.context - .find('.progress').addClass( - !$.support.transition && 'progress-animated' - ) - .attr('aria-valuenow', 100) - .children().first().css( - 'width', - '100%' - ); - } - return that._trigger('sent', e, data); - }, - // Callback for successful uploads: - done: function (e, data) { - if (e.isDefaultPrevented()) { - return false; - } - var that = $(this).data('blueimp-fileupload') || - $(this).data('fileupload'), - getFilesFromResponse = data.getFilesFromResponse || - that.options.getFilesFromResponse, - files = getFilesFromResponse(data), - template, - deferred; - if (data.context) { - data.context.each(function (index) { - var file = files[index] || - {error: 'Empty file upload result'}; - deferred = that._addFinishedDeferreds(); - that._transition($(this)).done( - function () { - var node = $(this); - template = that._renderDownload([file]) - .replaceAll(node); - that._forceReflow(template); - that._transition(template).done( - function () { - data.context = $(this); - that._trigger('completed', e, data); - that._trigger('finished', e, data); - deferred.resolve(); - } - ); - } - ); - }); - } else { - template = that._renderDownload(files)[ - that.options.prependFiles ? 'prependTo' : 'appendTo' - ](that.options.filesContainer); - that._forceReflow(template); - deferred = that._addFinishedDeferreds(); - that._transition(template).done( - function () { - data.context = $(this); - that._trigger('completed', e, data); - that._trigger('finished', e, data); - deferred.resolve(); - } - ); - } - }, - // Callback for failed (abort or error) uploads: - fail: function (e, data) { - if (e.isDefaultPrevented()) { - return false; - } - var that = $(this).data('blueimp-fileupload') || - $(this).data('fileupload'), - template, - deferred; - if (data.context) { - data.context.each(function (index) { - if (data.errorThrown !== 'abort') { - var file = data.files[index]; - file.error = file.error || data.errorThrown || - true; - deferred = that._addFinishedDeferreds(); - that._transition($(this)).done( - function () { - var node = $(this); - template = that._renderDownload([file]) - .replaceAll(node); - that._forceReflow(template); - that._transition(template).done( - function () { - data.context = $(this); - that._trigger('failed', e, data); - that._trigger('finished', e, data); - deferred.resolve(); - } - ); - } - ); - } else { - deferred = that._addFinishedDeferreds(); - that._transition($(this)).done( - function () { - $(this).remove(); - that._trigger('failed', e, data); - that._trigger('finished', e, data); - deferred.resolve(); - } - ); - } - }); - } else if (data.errorThrown !== 'abort') { - data.context = that._renderUpload(data.files)[ - that.options.prependFiles ? 'prependTo' : 'appendTo' - ](that.options.filesContainer) - .data('data', data); - that._forceReflow(data.context); - deferred = that._addFinishedDeferreds(); - that._transition(data.context).done( - function () { - data.context = $(this); - that._trigger('failed', e, data); - that._trigger('finished', e, data); - deferred.resolve(); - } - ); - } else { - that._trigger('failed', e, data); - that._trigger('finished', e, data); - that._addFinishedDeferreds().resolve(); - } - }, - // Callback for upload progress events: - progress: function (e, data) { - if (e.isDefaultPrevented()) { - return false; - } - var progress = Math.floor(data.loaded / data.total * 100); - if (data.context) { - data.context.each(function () { - $(this).find('.progress') - .attr('aria-valuenow', progress) - .children().first().css( - 'width', - progress + '%' - ); - }); - } - }, - // Callback for global upload progress events: - progressall: function (e, data) { - if (e.isDefaultPrevented()) { - return false; - } - var $this = $(this), - progress = Math.floor(data.loaded / data.total * 100), - globalProgressNode = $this.find('.fileupload-progress'), - extendedProgressNode = globalProgressNode - .find('.progress-extended'); - if (extendedProgressNode.length) { - extendedProgressNode.html( - ($this.data('blueimp-fileupload') || $this.data('fileupload')) - ._renderExtendedProgress(data) - ); - } - globalProgressNode - .find('.progress') - .attr('aria-valuenow', progress) - .children().first().css( - 'width', - progress + '%' - ); - }, - // Callback for uploads start, equivalent to the global ajaxStart event: - start: function (e) { - if (e.isDefaultPrevented()) { - return false; - } - var that = $(this).data('blueimp-fileupload') || - $(this).data('fileupload'); - that._resetFinishedDeferreds(); - that._transition($(this).find('.fileupload-progress')).done( - function () { - that._trigger('started', e); - } - ); - }, - // Callback for uploads stop, equivalent to the global ajaxStop event: - stop: function (e) { - if (e.isDefaultPrevented()) { - return false; - } - var that = $(this).data('blueimp-fileupload') || - $(this).data('fileupload'), - deferred = that._addFinishedDeferreds(); - $.when.apply($, that._getFinishedDeferreds()) - .done(function () { - that._trigger('stopped', e); - }); - that._transition($(this).find('.fileupload-progress')).done( - function () { - $(this).find('.progress') - .attr('aria-valuenow', '0') - .children().first().css('width', '0%'); - $(this).find('.progress-extended').html(' '); - deferred.resolve(); - } - ); - }, - processstart: function (e) { - if (e.isDefaultPrevented()) { - return false; - } - $(this).addClass('fileupload-processing'); - }, - processstop: function (e) { - if (e.isDefaultPrevented()) { - return false; - } - $(this).removeClass('fileupload-processing'); - }, - // Callback for file deletion: - destroy: function (e, data) { - if (e.isDefaultPrevented()) { - return false; - } - var that = $(this).data('blueimp-fileupload') || - $(this).data('fileupload'), - removeNode = function () { - that._transition(data.context).done( - function () { - $(this).remove(); - that._trigger('destroyed', e, data); - } - ); - }; - if (data.url) { - data.dataType = data.dataType || that.options.dataType; - $.ajax(data).done(removeNode).fail(function () { - that._trigger('destroyfailed', e, data); - }); - } else { - removeNode(); - } - } - }, - - _resetFinishedDeferreds: function () { - this._finishedUploads = []; - }, - - _addFinishedDeferreds: function (deferred) { - if (!deferred) { - deferred = $.Deferred(); - } - this._finishedUploads.push(deferred); - return deferred; - }, - - _getFinishedDeferreds: function () { - return this._finishedUploads; - }, - - // Link handler, that allows to download files - // by drag & drop of the links to the desktop: - _enableDragToDesktop: function () { - var link = $(this), - url = link.prop('href'), - name = link.prop('download'), - type = 'application/octet-stream'; - link.bind('dragstart', function (e) { - try { - e.originalEvent.dataTransfer.setData( - 'DownloadURL', - [type, name, url].join(':') - ); - } catch (ignore) {} - }); - }, - - _formatFileSize: function (bytes) { - if (typeof bytes !== 'number') { - return ''; - } - if (bytes >= 1000000000) { - return (bytes / 1000000000).toFixed(2) + ' GB'; - } - if (bytes >= 1000000) { - return (bytes / 1000000).toFixed(2) + ' MB'; - } - return (bytes / 1000).toFixed(2) + ' KB'; - }, - - _formatBitrate: function (bits) { - if (typeof bits !== 'number') { - return ''; - } - if (bits >= 1000000000) { - return (bits / 1000000000).toFixed(2) + ' Gbit/s'; - } - if (bits >= 1000000) { - return (bits / 1000000).toFixed(2) + ' Mbit/s'; - } - if (bits >= 1000) { - return (bits / 1000).toFixed(2) + ' kbit/s'; - } - return bits.toFixed(2) + ' bit/s'; - }, - - _formatTime: function (seconds) { - var date = new Date(seconds * 1000), - days = Math.floor(seconds / 86400); - days = days ? days + 'd ' : ''; - return days + - ('0' + date.getUTCHours()).slice(-2) + ':' + - ('0' + date.getUTCMinutes()).slice(-2) + ':' + - ('0' + date.getUTCSeconds()).slice(-2); - }, - - _formatPercentage: function (floatValue) { - return (floatValue * 100).toFixed(2) + ' %'; - }, - - _renderExtendedProgress: function (data) { - return this._formatBitrate(data.bitrate) + ' | ' + - this._formatTime( - (data.total - data.loaded) * 8 / data.bitrate - ) + ' | ' + - this._formatPercentage( - data.loaded / data.total - ) + ' | ' + - this._formatFileSize(data.loaded) + ' / ' + - this._formatFileSize(data.total); - }, - - _renderTemplate: function (func, files) { - if (!func) { - return $(); - } - var result = func({ - files: files, - formatFileSize: this._formatFileSize, - options: this.options - }); - if (result instanceof $) { - return result; - } - return $(this.options.templatesContainer).html(result).children(); - }, - - _renderPreviews: function (data) { - data.context.find('.preview').each(function (index, elm) { - $(elm).append(data.files[index].preview); - }); - }, - - _renderUpload: function (files) { - return this._renderTemplate( - this.options.uploadTemplate, - files - ); - }, - - _renderDownload: function (files) { - return this._renderTemplate( - this.options.downloadTemplate, - files - ).find('a[download]').each(this._enableDragToDesktop).end(); - }, - - _startHandler: function (e) { - e.preventDefault(); - var button = $(e.currentTarget), - template = button.closest('.template-upload'), - data = template.data('data'); - button.prop('disabled', true); - if (data && data.submit) { - data.submit(); - } - }, - - _cancelHandler: function (e) { - e.preventDefault(); - var template = $(e.currentTarget) - .closest('.template-upload,.template-download'), - data = template.data('data') || {}; - data.context = data.context || template; - if (data.abort) { - data.abort(); - } else { - data.errorThrown = 'abort'; - this._trigger('fail', e, data); - } - }, - - _deleteHandler: function (e) { - e.preventDefault(); - var button = $(e.currentTarget); - this._trigger('destroy', e, $.extend({ - context: button.closest('.template-download'), - type: 'DELETE' - }, button.data())); - }, - - _forceReflow: function (node) { - return $.support.transition && node.length && - node[0].offsetWidth; - }, - - _transition: function (node) { - var dfd = $.Deferred(); - if ($.support.transition && node.hasClass('fade') && node.is(':visible')) { - node.bind( - $.support.transition.end, - function (e) { - // Make sure we don't respond to other transitions events - // in the container element, e.g. from button elements: - if (e.target === node[0]) { - node.unbind($.support.transition.end); - dfd.resolveWith(node); - } - } - ).toggleClass('in'); - } else { - node.toggleClass('in'); - dfd.resolveWith(node); - } - return dfd; - }, - - _initButtonBarEventHandlers: function () { - var fileUploadButtonBar = this.element.find('.fileupload-buttonbar'), - filesList = this.options.filesContainer; - this._on(fileUploadButtonBar.find('.start'), { - click: function (e) { - e.preventDefault(); - filesList.find('.start').click(); - } - }); - this._on(fileUploadButtonBar.find('.cancel'), { - click: function (e) { - e.preventDefault(); - filesList.find('.cancel').click(); - } - }); - this._on(fileUploadButtonBar.find('.delete'), { - click: function (e) { - e.preventDefault(); - filesList.find('.toggle:checked') - .closest('.template-download') - .find('.delete').click(); - fileUploadButtonBar.find('.toggle') - .prop('checked', false); - } - }); - this._on(fileUploadButtonBar.find('.toggle'), { - change: function (e) { - filesList.find('.toggle').prop( - 'checked', - $(e.currentTarget).is(':checked') - ); - } - }); - }, - - _destroyButtonBarEventHandlers: function () { - this._off( - this.element.find('.fileupload-buttonbar') - .find('.start, .cancel, .delete'), - 'click' - ); - this._off( - this.element.find('.fileupload-buttonbar .toggle'), - 'change.' - ); - }, - - _initEventHandlers: function () { - this._super(); - this._on(this.options.filesContainer, { - 'click .start': this._startHandler, - 'click .cancel': this._cancelHandler, - 'click .delete': this._deleteHandler - }); - this._initButtonBarEventHandlers(); - }, - - _destroyEventHandlers: function () { - this._destroyButtonBarEventHandlers(); - this._off(this.options.filesContainer, 'click'); - this._super(); - }, - - _enableFileInputButton: function () { - this.element.find('.fileinput-button input') - .prop('disabled', false) - .parent().removeClass('disabled'); - }, - - _disableFileInputButton: function () { - this.element.find('.fileinput-button input') - .prop('disabled', true) - .parent().addClass('disabled'); - }, - - _initTemplates: function () { - var options = this.options; - options.templatesContainer = this.document[0].createElement( - options.filesContainer.prop('nodeName') - ); - if (tmpl) { - if (options.uploadTemplateId) { - options.uploadTemplate = tmpl(options.uploadTemplateId); - } - if (options.downloadTemplateId) { - options.downloadTemplate = tmpl(options.downloadTemplateId); - } - } - }, - - _initFilesContainer: function () { - var options = this.options; - if (options.filesContainer === undefined) { - options.filesContainer = this.element.find('.files'); - } else if (!(options.filesContainer instanceof $)) { - options.filesContainer = $(options.filesContainer); - } - }, - - _initSpecialOptions: function () { - this._super(); - this._initFilesContainer(); - this._initTemplates(); - }, - - _create: function () { - this._super(); - this._resetFinishedDeferreds(); - if (!$.support.fileInput) { - this._disableFileInputButton(); - } - }, - - enable: function () { - var wasDisabled = false; - if (this.options.disabled) { - wasDisabled = true; - } - this._super(); - if (wasDisabled) { - this.element.find('input, button').prop('disabled', false); - this._enableFileInputButton(); - } - }, - - disable: function () { - if (!this.options.disabled) { - this.element.find('input, button').prop('disabled', true); - this._disableFileInputButton(); - } - this._super(); - } - - }); - -})); diff --git a/library/jqupload/js/jquery.fileupload-validate.js b/library/jqupload/js/jquery.fileupload-validate.js deleted file mode 100644 index f93a18fa2..000000000 --- a/library/jqupload/js/jquery.fileupload-validate.js +++ /dev/null @@ -1,119 +0,0 @@ -/* - * jQuery File Upload Validation Plugin 1.1.2 - * https://github.com/blueimp/jQuery-File-Upload - * - * Copyright 2013, Sebastian Tschan - * https://blueimp.net - * - * Licensed under the MIT license: - * http://www.opensource.org/licenses/MIT - */ - -/* global define, window */ - -(function (factory) { - 'use strict'; - if (typeof define === 'function' && define.amd) { - // Register as an anonymous AMD module: - define([ - 'jquery', - './jquery.fileupload-process' - ], factory); - } else { - // Browser globals: - factory( - window.jQuery - ); - } -}(function ($) { - 'use strict'; - - // Append to the default processQueue: - $.blueimp.fileupload.prototype.options.processQueue.push( - { - action: 'validate', - // Always trigger this action, - // even if the previous action was rejected: - always: true, - // Options taken from the global options map: - acceptFileTypes: '@', - maxFileSize: '@', - minFileSize: '@', - maxNumberOfFiles: '@', - disabled: '@disableValidation' - } - ); - - // The File Upload Validation plugin extends the fileupload widget - // with file validation functionality: - $.widget('blueimp.fileupload', $.blueimp.fileupload, { - - options: { - /* - // The regular expression for allowed file types, matches - // against either file type or file name: - acceptFileTypes: /(\.|\/)(gif|jpe?g|png)$/i, - // The maximum allowed file size in bytes: - maxFileSize: 10000000, // 10 MB - // The minimum allowed file size in bytes: - minFileSize: undefined, // No minimal file size - // The limit of files to be uploaded: - maxNumberOfFiles: 10, - */ - - // Function returning the current number of files, - // has to be overriden for maxNumberOfFiles validation: - getNumberOfFiles: $.noop, - - // Error and info messages: - messages: { - maxNumberOfFiles: 'Maximum number of files exceeded', - acceptFileTypes: 'File type not allowed', - maxFileSize: 'File is too large', - minFileSize: 'File is too small' - } - }, - - processActions: { - - validate: function (data, options) { - if (options.disabled) { - return data; - } - var dfd = $.Deferred(), - settings = this.options, - file = data.files[data.index], - fileSize; - if (options.minFileSize || options.maxFileSize) { - fileSize = file.size; - } - if ($.type(options.maxNumberOfFiles) === 'number' && - (settings.getNumberOfFiles() || 0) + data.files.length > - options.maxNumberOfFiles) { - file.error = settings.i18n('maxNumberOfFiles'); - } else if (options.acceptFileTypes && - !(options.acceptFileTypes.test(file.type) || - options.acceptFileTypes.test(file.name))) { - file.error = settings.i18n('acceptFileTypes'); - } else if (fileSize > options.maxFileSize) { - file.error = settings.i18n('maxFileSize'); - } else if ($.type(fileSize) === 'number' && - fileSize < options.minFileSize) { - file.error = settings.i18n('minFileSize'); - } else { - delete file.error; - } - if (file.error || data.files.error) { - data.files.error = true; - dfd.rejectWith(this, [data]); - } else { - dfd.resolveWith(this, [data]); - } - return dfd.promise(); - } - - } - - }); - -})); diff --git a/library/jqupload/js/jquery.fileupload-video.js b/library/jqupload/js/jquery.fileupload-video.js deleted file mode 100644 index 3764b27a2..000000000 --- a/library/jqupload/js/jquery.fileupload-video.js +++ /dev/null @@ -1,106 +0,0 @@ -/* - * jQuery File Upload Video Preview Plugin 1.0.3 - * https://github.com/blueimp/jQuery-File-Upload - * - * Copyright 2013, Sebastian Tschan - * https://blueimp.net - * - * Licensed under the MIT license: - * http://www.opensource.org/licenses/MIT - */ - -/* jshint nomen:false */ -/* global define, window, document */ - -(function (factory) { - 'use strict'; - if (typeof define === 'function' && define.amd) { - // Register as an anonymous AMD module: - define([ - 'jquery', - 'load-image', - './jquery.fileupload-process' - ], factory); - } else { - // Browser globals: - factory( - window.jQuery, - window.loadImage - ); - } -}(function ($, loadImage) { - 'use strict'; - - // Prepend to the default processQueue: - $.blueimp.fileupload.prototype.options.processQueue.unshift( - { - action: 'loadVideo', - // Use the action as prefix for the "@" options: - prefix: true, - fileTypes: '@', - maxFileSize: '@', - disabled: '@disableVideoPreview' - }, - { - action: 'setVideo', - name: '@videoPreviewName', - disabled: '@disableVideoPreview' - } - ); - - // The File Upload Video Preview plugin extends the fileupload widget - // with video preview functionality: - $.widget('blueimp.fileupload', $.blueimp.fileupload, { - - options: { - // The regular expression for the types of video files to load, - // matched against the file type: - loadVideoFileTypes: /^video\/.*$/ - }, - - _videoElement: document.createElement('video'), - - processActions: { - - // Loads the video file given via data.files and data.index - // as video element if the browser supports playing it. - // Accepts the options fileTypes (regular expression) - // and maxFileSize (integer) to limit the files to load: - loadVideo: function (data, options) { - if (options.disabled) { - return data; - } - var file = data.files[data.index], - url, - video; - if (this._videoElement.canPlayType && - this._videoElement.canPlayType(file.type) && - ($.type(options.maxFileSize) !== 'number' || - file.size <= options.maxFileSize) && - (!options.fileTypes || - options.fileTypes.test(file.type))) { - url = loadImage.createObjectURL(file); - if (url) { - video = this._videoElement.cloneNode(false); - video.src = url; - video.controls = true; - data.video = video; - return data; - } - } - return data; - }, - - // Sets the video element as a property of the file object: - setVideo: function (data, options) { - if (data.video && !options.disabled) { - data.files[data.index][options.name || 'preview'] = data.video; - } - return data; - } - - } - - }); - -})); diff --git a/library/jqupload/js/jquery.fileupload.js b/library/jqupload/js/jquery.fileupload.js deleted file mode 100644 index b52af0654..000000000 --- a/library/jqupload/js/jquery.fileupload.js +++ /dev/null @@ -1,1420 +0,0 @@ -/* - * jQuery File Upload Plugin 5.40.0 - * https://github.com/blueimp/jQuery-File-Upload - * - * Copyright 2010, Sebastian Tschan - * https://blueimp.net - * - * Licensed under the MIT license: - * http://www.opensource.org/licenses/MIT - */ - -/* jshint nomen:false */ -/* global define, window, document, location, Blob, FormData */ - -(function (factory) { - 'use strict'; - if (typeof define === 'function' && define.amd) { - // Register as an anonymous AMD module: - define([ - 'jquery', - 'jquery.ui.widget' - ], factory); - } else { - // Browser globals: - factory(window.jQuery); - } -}(function ($) { - 'use strict'; - - // Detect file input support, based on - // http://viljamis.com/blog/2012/file-upload-support-on-mobile/ - $.support.fileInput = !(new RegExp( - // Handle devices which give false positives for the feature detection: - '(Android (1\\.[0156]|2\\.[01]))' + - '|(Windows Phone (OS 7|8\\.0))|(XBLWP)|(ZuneWP)|(WPDesktop)' + - '|(w(eb)?OSBrowser)|(webOS)' + - '|(Kindle/(1\\.0|2\\.[05]|3\\.0))' - ).test(window.navigator.userAgent) || - // Feature detection for all other devices: - $('').prop('disabled')); - - // The FileReader API is not actually used, but works as feature detection, - // as some Safari versions (5?) support XHR file uploads via the FormData API, - // but not non-multipart XHR file uploads. - // window.XMLHttpRequestUpload is not available on IE10, so we check for - // window.ProgressEvent instead to detect XHR2 file upload capability: - $.support.xhrFileUpload = !!(window.ProgressEvent && window.FileReader); - $.support.xhrFormDataFileUpload = !!window.FormData; - - // Detect support for Blob slicing (required for chunked uploads): - $.support.blobSlice = window.Blob && (Blob.prototype.slice || - Blob.prototype.webkitSlice || Blob.prototype.mozSlice); - - // The fileupload widget listens for change events on file input fields defined - // via fileInput setting and paste or drop events of the given dropZone. - // In addition to the default jQuery Widget methods, the fileupload widget - // exposes the "add" and "send" methods, to add or directly send files using - // the fileupload API. - // By default, files added via file input selection, paste, drag & drop or - // "add" method are uploaded immediately, but it is possible to override - // the "add" callback option to queue file uploads. - $.widget('blueimp.fileupload', { - - options: { - // The drop target element(s), by the default the complete document. - // Set to null to disable drag & drop support: - dropZone: $(document), - // The paste target element(s), by the default the complete document. - // Set to null to disable paste support: - pasteZone: $(document), - // The file input field(s), that are listened to for change events. - // If undefined, it is set to the file input fields inside - // of the widget element on plugin initialization. - // Set to null to disable the change listener. - fileInput: undefined, - // By default, the file input field is replaced with a clone after - // each input field change event. This is required for iframe transport - // queues and allows change events to be fired for the same file - // selection, but can be disabled by setting the following option to false: - replaceFileInput: true, - // The parameter name for the file form data (the request argument name). - // If undefined or empty, the name property of the file input field is - // used, or "files[]" if the file input name property is also empty, - // can be a string or an array of strings: - paramName: undefined, - // By default, each file of a selection is uploaded using an individual - // request for XHR type uploads. Set to false to upload file - // selections in one request each: - singleFileUploads: true, - // To limit the number of files uploaded with one XHR request, - // set the following option to an integer greater than 0: - limitMultiFileUploads: undefined, - // The following option limits the number of files uploaded with one - // XHR request to keep the request size under or equal to the defined - // limit in bytes: - limitMultiFileUploadSize: undefined, - // Multipart file uploads add a number of bytes to each uploaded file, - // therefore the following option adds an overhead for each file used - // in the limitMultiFileUploadSize configuration: - limitMultiFileUploadSizeOverhead: 512, - // Set the following option to true to issue all file upload requests - // in a sequential order: - sequentialUploads: false, - // To limit the number of concurrent uploads, - // set the following option to an integer greater than 0: - limitConcurrentUploads: undefined, - // Set the following option to true to force iframe transport uploads: - forceIframeTransport: false, - // Set the following option to the location of a redirect url on the - // origin server, for cross-domain iframe transport uploads: - redirect: undefined, - // The parameter name for the redirect url, sent as part of the form - // data and set to 'redirect' if this option is empty: - redirectParamName: undefined, - // Set the following option to the location of a postMessage window, - // to enable postMessage transport uploads: - postMessage: undefined, - // By default, XHR file uploads are sent as multipart/form-data. - // The iframe transport is always using multipart/form-data. - // Set to false to enable non-multipart XHR uploads: - multipart: true, - // To upload large files in smaller chunks, set the following option - // to a preferred maximum chunk size. If set to 0, null or undefined, - // or the browser does not support the required Blob API, files will - // be uploaded as a whole. - maxChunkSize: undefined, - // When a non-multipart upload or a chunked multipart upload has been - // aborted, this option can be used to resume the upload by setting - // it to the size of the already uploaded bytes. This option is most - // useful when modifying the options object inside of the "add" or - // "send" callbacks, as the options are cloned for each file upload. - uploadedBytes: undefined, - // By default, failed (abort or error) file uploads are removed from the - // global progress calculation. Set the following option to false to - // prevent recalculating the global progress data: - recalculateProgress: true, - // Interval in milliseconds to calculate and trigger progress events: - progressInterval: 100, - // Interval in milliseconds to calculate progress bitrate: - bitrateInterval: 500, - // By default, uploads are started automatically when adding files: - autoUpload: true, - - // Error and info messages: - messages: { - uploadedBytes: 'Uploaded bytes exceed file size' - }, - - // Translation function, gets the message key to be translated - // and an object with context specific data as arguments: - i18n: function (message, context) { - message = this.messages[message] || message.toString(); - if (context) { - $.each(context, function (key, value) { - message = message.replace('{' + key + '}', value); - }); - } - return message; - }, - - // Additional form data to be sent along with the file uploads can be set - // using this option, which accepts an array of objects with name and - // value properties, a function returning such an array, a FormData - // object (for XHR file uploads), or a simple object. - // The form of the first fileInput is given as parameter to the function: - formData: function (form) { - return form.serializeArray(); - }, - - // The add callback is invoked as soon as files are added to the fileupload - // widget (via file input selection, drag & drop, paste or add API call). - // If the singleFileUploads option is enabled, this callback will be - // called once for each file in the selection for XHR file uploads, else - // once for each file selection. - // - // The upload starts when the submit method is invoked on the data parameter. - // The data object contains a files property holding the added files - // and allows you to override plugin options as well as define ajax settings. - // - // Listeners for this callback can also be bound the following way: - // .bind('fileuploadadd', func); - // - // data.submit() returns a Promise object and allows to attach additional - // handlers using jQuery's Deferred callbacks: - // data.submit().done(func).fail(func).always(func); - add: function (e, data) { - if (e.isDefaultPrevented()) { - return false; - } - if (data.autoUpload || (data.autoUpload !== false && - $(this).fileupload('option', 'autoUpload'))) { - data.process().done(function () { - data.submit(); - }); - } - }, - - // Other callbacks: - - // Callback for the submit event of each file upload: - // submit: function (e, data) {}, // .bind('fileuploadsubmit', func); - - // Callback for the start of each file upload request: - // send: function (e, data) {}, // .bind('fileuploadsend', func); - - // Callback for successful uploads: - // done: function (e, data) {}, // .bind('fileuploaddone', func); - - // Callback for failed (abort or error) uploads: - // fail: function (e, data) {}, // .bind('fileuploadfail', func); - - // Callback for completed (success, abort or error) requests: - // always: function (e, data) {}, // .bind('fileuploadalways', func); - - // Callback for upload progress events: - // progress: function (e, data) {}, // .bind('fileuploadprogress', func); - - // Callback for global upload progress events: - // progressall: function (e, data) {}, // .bind('fileuploadprogressall', func); - - // Callback for uploads start, equivalent to the global ajaxStart event: - // start: function (e) {}, // .bind('fileuploadstart', func); - - // Callback for uploads stop, equivalent to the global ajaxStop event: - // stop: function (e) {}, // .bind('fileuploadstop', func); - - // Callback for change events of the fileInput(s): - // change: function (e, data) {}, // .bind('fileuploadchange', func); - - // Callback for paste events to the pasteZone(s): - // paste: function (e, data) {}, // .bind('fileuploadpaste', func); - - // Callback for drop events of the dropZone(s): - // drop: function (e, data) {}, // .bind('fileuploaddrop', func); - - // Callback for dragover events of the dropZone(s): - // dragover: function (e) {}, // .bind('fileuploaddragover', func); - - // Callback for the start of each chunk upload request: - // chunksend: function (e, data) {}, // .bind('fileuploadchunksend', func); - - // Callback for successful chunk uploads: - // chunkdone: function (e, data) {}, // .bind('fileuploadchunkdone', func); - - // Callback for failed (abort or error) chunk uploads: - // chunkfail: function (e, data) {}, // .bind('fileuploadchunkfail', func); - - // Callback for completed (success, abort or error) chunk upload requests: - // chunkalways: function (e, data) {}, // .bind('fileuploadchunkalways', func); - - // The plugin options are used as settings object for the ajax calls. - // The following are jQuery ajax settings required for the file uploads: - processData: false, - contentType: false, - cache: false - }, - - // A list of options that require reinitializing event listeners and/or - // special initialization code: - _specialOptions: [ - 'fileInput', - 'dropZone', - 'pasteZone', - 'multipart', - 'forceIframeTransport' - ], - - _blobSlice: $.support.blobSlice && function () { - var slice = this.slice || this.webkitSlice || this.mozSlice; - return slice.apply(this, arguments); - }, - - _BitrateTimer: function () { - this.timestamp = ((Date.now) ? Date.now() : (new Date()).getTime()); - this.loaded = 0; - this.bitrate = 0; - this.getBitrate = function (now, loaded, interval) { - var timeDiff = now - this.timestamp; - if (!this.bitrate || !interval || timeDiff > interval) { - this.bitrate = (loaded - this.loaded) * (1000 / timeDiff) * 8; - this.loaded = loaded; - this.timestamp = now; - } - return this.bitrate; - }; - }, - - _isXHRUpload: function (options) { - return !options.forceIframeTransport && - ((!options.multipart && $.support.xhrFileUpload) || - $.support.xhrFormDataFileUpload); - }, - - _getFormData: function (options) { - var formData; - if ($.type(options.formData) === 'function') { - return options.formData(options.form); - } - if ($.isArray(options.formData)) { - return options.formData; - } - if ($.type(options.formData) === 'object') { - formData = []; - $.each(options.formData, function (name, value) { - formData.push({name: name, value: value}); - }); - return formData; - } - return []; - }, - - _getTotal: function (files) { - var total = 0; - $.each(files, function (index, file) { - total += file.size || 1; - }); - return total; - }, - - _initProgressObject: function (obj) { - var progress = { - loaded: 0, - total: 0, - bitrate: 0 - }; - if (obj._progress) { - $.extend(obj._progress, progress); - } else { - obj._progress = progress; - } - }, - - _initResponseObject: function (obj) { - var prop; - if (obj._response) { - for (prop in obj._response) { - if (obj._response.hasOwnProperty(prop)) { - delete obj._response[prop]; - } - } - } else { - obj._response = {}; - } - }, - - _onProgress: function (e, data) { - if (e.lengthComputable) { - var now = ((Date.now) ? Date.now() : (new Date()).getTime()), - loaded; - if (data._time && data.progressInterval && - (now - data._time < data.progressInterval) && - e.loaded !== e.total) { - return; - } - data._time = now; - loaded = Math.floor( - e.loaded / e.total * (data.chunkSize || data._progress.total) - ) + (data.uploadedBytes || 0); - // Add the difference from the previously loaded state - // to the global loaded counter: - this._progress.loaded += (loaded - data._progress.loaded); - this._progress.bitrate = this._bitrateTimer.getBitrate( - now, - this._progress.loaded, - data.bitrateInterval - ); - data._progress.loaded = data.loaded = loaded; - data._progress.bitrate = data.bitrate = data._bitrateTimer.getBitrate( - now, - loaded, - data.bitrateInterval - ); - // Trigger a custom progress event with a total data property set - // to the file size(s) of the current upload and a loaded data - // property calculated accordingly: - this._trigger( - 'progress', - $.Event('progress', {delegatedEvent: e}), - data - ); - // Trigger a global progress event for all current file uploads, - // including ajax calls queued for sequential file uploads: - this._trigger( - 'progressall', - $.Event('progressall', {delegatedEvent: e}), - this._progress - ); - } - }, - - _initProgressListener: function (options) { - var that = this, - xhr = options.xhr ? options.xhr() : $.ajaxSettings.xhr(); - // Accesss to the native XHR object is required to add event listeners - // for the upload progress event: - if (xhr.upload) { - $(xhr.upload).bind('progress', function (e) { - var oe = e.originalEvent; - // Make sure the progress event properties get copied over: - e.lengthComputable = oe.lengthComputable; - e.loaded = oe.loaded; - e.total = oe.total; - that._onProgress(e, options); - }); - options.xhr = function () { - return xhr; - }; - } - }, - - _isInstanceOf: function (type, obj) { - // Cross-frame instanceof check - return Object.prototype.toString.call(obj) === '[object ' + type + ']'; - }, - - _initXHRData: function (options) { - var that = this, - formData, - file = options.files[0], - // Ignore non-multipart setting if not supported: - multipart = options.multipart || !$.support.xhrFileUpload, - paramName = $.type(options.paramName) === 'array' ? - options.paramName[0] : options.paramName; - options.headers = $.extend({}, options.headers); - if (options.contentRange) { - options.headers['Content-Range'] = options.contentRange; - } - if (!multipart || options.blob || !this._isInstanceOf('File', file)) { - options.headers['Content-Disposition'] = 'attachment; filename="' + - encodeURI(file.name) + '"'; - } - if (!multipart) { - options.contentType = file.type || 'application/octet-stream'; - options.data = options.blob || file; - } else if ($.support.xhrFormDataFileUpload) { - if (options.postMessage) { - // window.postMessage does not allow sending FormData - // objects, so we just add the File/Blob objects to - // the formData array and let the postMessage window - // create the FormData object out of this array: - formData = this._getFormData(options); - if (options.blob) { - formData.push({ - name: paramName, - value: options.blob - }); - } else { - $.each(options.files, function (index, file) { - formData.push({ - name: ($.type(options.paramName) === 'array' && - options.paramName[index]) || paramName, - value: file - }); - }); - } - } else { - if (that._isInstanceOf('FormData', options.formData)) { - formData = options.formData; - } else { - formData = new FormData(); - $.each(this._getFormData(options), function (index, field) { - formData.append(field.name, field.value); - }); - } - if (options.blob) { - formData.append(paramName, options.blob, file.name); - } else { - $.each(options.files, function (index, file) { - // This check allows the tests to run with - // dummy objects: - if (that._isInstanceOf('File', file) || - that._isInstanceOf('Blob', file)) { - formData.append( - ($.type(options.paramName) === 'array' && - options.paramName[index]) || paramName, - file, - file.uploadName || file.name - ); - } - }); - } - } - options.data = formData; - } - // Blob reference is not needed anymore, free memory: - options.blob = null; - }, - - _initIframeSettings: function (options) { - var targetHost = $('').prop('href', options.url).prop('host'); - // Setting the dataType to iframe enables the iframe transport: - options.dataType = 'iframe ' + (options.dataType || ''); - // The iframe transport accepts a serialized array as form data: - options.formData = this._getFormData(options); - // Add redirect url to form data on cross-domain uploads: - if (options.redirect && targetHost && targetHost !== location.host) { - options.formData.push({ - name: options.redirectParamName || 'redirect', - value: options.redirect - }); - } - }, - - _initDataSettings: function (options) { - if (this._isXHRUpload(options)) { - if (!this._chunkedUpload(options, true)) { - if (!options.data) { - this._initXHRData(options); - } - this._initProgressListener(options); - } - if (options.postMessage) { - // Setting the dataType to postmessage enables the - // postMessage transport: - options.dataType = 'postmessage ' + (options.dataType || ''); - } - } else { - this._initIframeSettings(options); - } - }, - - _getParamName: function (options) { - var fileInput = $(options.fileInput), - paramName = options.paramName; - if (!paramName) { - paramName = []; - fileInput.each(function () { - var input = $(this), - name = input.prop('name') || 'files[]', - i = (input.prop('files') || [1]).length; - while (i) { - paramName.push(name); - i -= 1; - } - }); - if (!paramName.length) { - paramName = [fileInput.prop('name') || 'files[]']; - } - } else if (!$.isArray(paramName)) { - paramName = [paramName]; - } - return paramName; - }, - - _initFormSettings: function (options) { - // Retrieve missing options from the input field and the - // associated form, if available: - if (!options.form || !options.form.length) { - options.form = $(options.fileInput.prop('form')); - // If the given file input doesn't have an associated form, - // use the default widget file input's form: - if (!options.form.length) { - options.form = $(this.options.fileInput.prop('form')); - } - } - options.paramName = this._getParamName(options); - if (!options.url) { - options.url = options.form.prop('action') || location.href; - } - // The HTTP request method must be "POST" or "PUT": - options.type = (options.type || - ($.type(options.form.prop('method')) === 'string' && - options.form.prop('method')) || '' - ).toUpperCase(); - if (options.type !== 'POST' && options.type !== 'PUT' && - options.type !== 'PATCH') { - options.type = 'POST'; - } - if (!options.formAcceptCharset) { - options.formAcceptCharset = options.form.attr('accept-charset'); - } - }, - - _getAJAXSettings: function (data) { - var options = $.extend({}, this.options, data); - this._initFormSettings(options); - this._initDataSettings(options); - return options; - }, - - // jQuery 1.6 doesn't provide .state(), - // while jQuery 1.8+ removed .isRejected() and .isResolved(): - _getDeferredState: function (deferred) { - if (deferred.state) { - return deferred.state(); - } - if (deferred.isResolved()) { - return 'resolved'; - } - if (deferred.isRejected()) { - return 'rejected'; - } - return 'pending'; - }, - - // Maps jqXHR callbacks to the equivalent - // methods of the given Promise object: - _enhancePromise: function (promise) { - promise.success = promise.done; - promise.error = promise.fail; - promise.complete = promise.always; - return promise; - }, - - // Creates and returns a Promise object enhanced with - // the jqXHR methods abort, success, error and complete: - _getXHRPromise: function (resolveOrReject, context, args) { - var dfd = $.Deferred(), - promise = dfd.promise(); - context = context || this.options.context || promise; - if (resolveOrReject === true) { - dfd.resolveWith(context, args); - } else if (resolveOrReject === false) { - dfd.rejectWith(context, args); - } - promise.abort = dfd.promise; - return this._enhancePromise(promise); - }, - - // Adds convenience methods to the data callback argument: - _addConvenienceMethods: function (e, data) { - var that = this, - getPromise = function (args) { - return $.Deferred().resolveWith(that, args).promise(); - }; - data.process = function (resolveFunc, rejectFunc) { - if (resolveFunc || rejectFunc) { - data._processQueue = this._processQueue = - (this._processQueue || getPromise([this])).pipe( - function () { - if (data.errorThrown) { - return $.Deferred() - .rejectWith(that, [data]).promise(); - } - return getPromise(arguments); - } - ).pipe(resolveFunc, rejectFunc); - } - return this._processQueue || getPromise([this]); - }; - data.submit = function () { - if (this.state() !== 'pending') { - data.jqXHR = this.jqXHR = - (that._trigger( - 'submit', - $.Event('submit', {delegatedEvent: e}), - this - ) !== false) && that._onSend(e, this); - } - return this.jqXHR || that._getXHRPromise(); - }; - data.abort = function () { - if (this.jqXHR) { - return this.jqXHR.abort(); - } - this.errorThrown = 'abort'; - that._trigger('fail', null, this); - return that._getXHRPromise(false); - }; - data.state = function () { - if (this.jqXHR) { - return that._getDeferredState(this.jqXHR); - } - if (this._processQueue) { - return that._getDeferredState(this._processQueue); - } - }; - data.processing = function () { - return !this.jqXHR && this._processQueue && that - ._getDeferredState(this._processQueue) === 'pending'; - }; - data.progress = function () { - return this._progress; - }; - data.response = function () { - return this._response; - }; - }, - - // Parses the Range header from the server response - // and returns the uploaded bytes: - _getUploadedBytes: function (jqXHR) { - var range = jqXHR.getResponseHeader('Range'), - parts = range && range.split('-'), - upperBytesPos = parts && parts.length > 1 && - parseInt(parts[1], 10); - return upperBytesPos && upperBytesPos + 1; - }, - - // Uploads a file in multiple, sequential requests - // by splitting the file up in multiple blob chunks. - // If the second parameter is true, only tests if the file - // should be uploaded in chunks, but does not invoke any - // upload requests: - _chunkedUpload: function (options, testOnly) { - options.uploadedBytes = options.uploadedBytes || 0; - var that = this, - file = options.files[0], - fs = file.size, - ub = options.uploadedBytes, - mcs = options.maxChunkSize || fs, - slice = this._blobSlice, - dfd = $.Deferred(), - promise = dfd.promise(), - jqXHR, - upload; - if (!(this._isXHRUpload(options) && slice && (ub || mcs < fs)) || - options.data) { - return false; - } - if (testOnly) { - return true; - } - if (ub >= fs) { - file.error = options.i18n('uploadedBytes'); - return this._getXHRPromise( - false, - options.context, - [null, 'error', file.error] - ); - } - // The chunk upload method: - upload = function () { - // Clone the options object for each chunk upload: - var o = $.extend({}, options), - currentLoaded = o._progress.loaded; - o.blob = slice.call( - file, - ub, - ub + mcs, - file.type - ); - // Store the current chunk size, as the blob itself - // will be dereferenced after data processing: - o.chunkSize = o.blob.size; - // Expose the chunk bytes position range: - o.contentRange = 'bytes ' + ub + '-' + - (ub + o.chunkSize - 1) + '/' + fs; - // Process the upload data (the blob and potential form data): - that._initXHRData(o); - // Add progress listeners for this chunk upload: - that._initProgressListener(o); - jqXHR = ((that._trigger('chunksend', null, o) !== false && $.ajax(o)) || - that._getXHRPromise(false, o.context)) - .done(function (result, textStatus, jqXHR) { - ub = that._getUploadedBytes(jqXHR) || - (ub + o.chunkSize); - // Create a progress event if no final progress event - // with loaded equaling total has been triggered - // for this chunk: - if (currentLoaded + o.chunkSize - o._progress.loaded) { - that._onProgress($.Event('progress', { - lengthComputable: true, - loaded: ub - o.uploadedBytes, - total: ub - o.uploadedBytes - }), o); - } - options.uploadedBytes = o.uploadedBytes = ub; - o.result = result; - o.textStatus = textStatus; - o.jqXHR = jqXHR; - that._trigger('chunkdone', null, o); - that._trigger('chunkalways', null, o); - if (ub < fs) { - // File upload not yet complete, - // continue with the next chunk: - upload(); - } else { - dfd.resolveWith( - o.context, - [result, textStatus, jqXHR] - ); - } - }) - .fail(function (jqXHR, textStatus, errorThrown) { - o.jqXHR = jqXHR; - o.textStatus = textStatus; - o.errorThrown = errorThrown; - that._trigger('chunkfail', null, o); - that._trigger('chunkalways', null, o); - dfd.rejectWith( - o.context, - [jqXHR, textStatus, errorThrown] - ); - }); - }; - this._enhancePromise(promise); - promise.abort = function () { - return jqXHR.abort(); - }; - upload(); - return promise; - }, - - _beforeSend: function (e, data) { - if (this._active === 0) { - // the start callback is triggered when an upload starts - // and no other uploads are currently running, - // equivalent to the global ajaxStart event: - this._trigger('start'); - // Set timer for global bitrate progress calculation: - this._bitrateTimer = new this._BitrateTimer(); - // Reset the global progress values: - this._progress.loaded = this._progress.total = 0; - this._progress.bitrate = 0; - } - // Make sure the container objects for the .response() and - // .progress() methods on the data object are available - // and reset to their initial state: - this._initResponseObject(data); - this._initProgressObject(data); - data._progress.loaded = data.loaded = data.uploadedBytes || 0; - data._progress.total = data.total = this._getTotal(data.files) || 1; - data._progress.bitrate = data.bitrate = 0; - this._active += 1; - // Initialize the global progress values: - this._progress.loaded += data.loaded; - this._progress.total += data.total; - }, - - _onDone: function (result, textStatus, jqXHR, options) { - var total = options._progress.total, - response = options._response; - if (options._progress.loaded < total) { - // Create a progress event if no final progress event - // with loaded equaling total has been triggered: - this._onProgress($.Event('progress', { - lengthComputable: true, - loaded: total, - total: total - }), options); - } - response.result = options.result = result; - response.textStatus = options.textStatus = textStatus; - response.jqXHR = options.jqXHR = jqXHR; - this._trigger('done', null, options); - }, - - _onFail: function (jqXHR, textStatus, errorThrown, options) { - var response = options._response; - if (options.recalculateProgress) { - // Remove the failed (error or abort) file upload from - // the global progress calculation: - this._progress.loaded -= options._progress.loaded; - this._progress.total -= options._progress.total; - } - response.jqXHR = options.jqXHR = jqXHR; - response.textStatus = options.textStatus = textStatus; - response.errorThrown = options.errorThrown = errorThrown; - this._trigger('fail', null, options); - }, - - _onAlways: function (jqXHRorResult, textStatus, jqXHRorError, options) { - // jqXHRorResult, textStatus and jqXHRorError are added to the - // options object via done and fail callbacks - this._trigger('always', null, options); - }, - - _onSend: function (e, data) { - if (!data.submit) { - this._addConvenienceMethods(e, data); - } - var that = this, - jqXHR, - aborted, - slot, - pipe, - options = that._getAJAXSettings(data), - send = function () { - that._sending += 1; - // Set timer for bitrate progress calculation: - options._bitrateTimer = new that._BitrateTimer(); - jqXHR = jqXHR || ( - ((aborted || that._trigger( - 'send', - $.Event('send', {delegatedEvent: e}), - options - ) === false) && - that._getXHRPromise(false, options.context, aborted)) || - that._chunkedUpload(options) || $.ajax(options) - ).done(function (result, textStatus, jqXHR) { - that._onDone(result, textStatus, jqXHR, options); - }).fail(function (jqXHR, textStatus, errorThrown) { - that._onFail(jqXHR, textStatus, errorThrown, options); - }).always(function (jqXHRorResult, textStatus, jqXHRorError) { - that._onAlways( - jqXHRorResult, - textStatus, - jqXHRorError, - options - ); - that._sending -= 1; - that._active -= 1; - if (options.limitConcurrentUploads && - options.limitConcurrentUploads > that._sending) { - // Start the next queued upload, - // that has not been aborted: - var nextSlot = that._slots.shift(); - while (nextSlot) { - if (that._getDeferredState(nextSlot) === 'pending') { - nextSlot.resolve(); - break; - } - nextSlot = that._slots.shift(); - } - } - if (that._active === 0) { - // The stop callback is triggered when all uploads have - // been completed, equivalent to the global ajaxStop event: - that._trigger('stop'); - } - }); - return jqXHR; - }; - this._beforeSend(e, options); - if (this.options.sequentialUploads || - (this.options.limitConcurrentUploads && - this.options.limitConcurrentUploads <= this._sending)) { - if (this.options.limitConcurrentUploads > 1) { - slot = $.Deferred(); - this._slots.push(slot); - pipe = slot.pipe(send); - } else { - this._sequence = this._sequence.pipe(send, send); - pipe = this._sequence; - } - // Return the piped Promise object, enhanced with an abort method, - // which is delegated to the jqXHR object of the current upload, - // and jqXHR callbacks mapped to the equivalent Promise methods: - pipe.abort = function () { - aborted = [undefined, 'abort', 'abort']; - if (!jqXHR) { - if (slot) { - slot.rejectWith(options.context, aborted); - } - return send(); - } - return jqXHR.abort(); - }; - return this._enhancePromise(pipe); - } - return send(); - }, - - _onAdd: function (e, data) { - var that = this, - result = true, - options = $.extend({}, this.options, data), - files = data.files, - filesLength = files.length, - limit = options.limitMultiFileUploads, - limitSize = options.limitMultiFileUploadSize, - overhead = options.limitMultiFileUploadSizeOverhead, - batchSize = 0, - paramName = this._getParamName(options), - paramNameSet, - paramNameSlice, - fileSet, - i, - j = 0; - if (limitSize && (!filesLength || files[0].size === undefined)) { - limitSize = undefined; - } - if (!(options.singleFileUploads || limit || limitSize) || - !this._isXHRUpload(options)) { - fileSet = [files]; - paramNameSet = [paramName]; - } else if (!(options.singleFileUploads || limitSize) && limit) { - fileSet = []; - paramNameSet = []; - for (i = 0; i < filesLength; i += limit) { - fileSet.push(files.slice(i, i + limit)); - paramNameSlice = paramName.slice(i, i + limit); - if (!paramNameSlice.length) { - paramNameSlice = paramName; - } - paramNameSet.push(paramNameSlice); - } - } else if (!options.singleFileUploads && limitSize) { - fileSet = []; - paramNameSet = []; - for (i = 0; i < filesLength; i = i + 1) { - batchSize += files[i].size + overhead; - if (i + 1 === filesLength || - ((batchSize + files[i + 1].size + overhead) > limitSize) || - (limit && i + 1 - j >= limit)) { - fileSet.push(files.slice(j, i + 1)); - paramNameSlice = paramName.slice(j, i + 1); - if (!paramNameSlice.length) { - paramNameSlice = paramName; - } - paramNameSet.push(paramNameSlice); - j = i + 1; - batchSize = 0; - } - } - } else { - paramNameSet = paramName; - } - data.originalFiles = files; - $.each(fileSet || files, function (index, element) { - var newData = $.extend({}, data); - newData.files = fileSet ? element : [element]; - newData.paramName = paramNameSet[index]; - that._initResponseObject(newData); - that._initProgressObject(newData); - that._addConvenienceMethods(e, newData); - result = that._trigger( - 'add', - $.Event('add', {delegatedEvent: e}), - newData - ); - return result; - }); - return result; - }, - - _replaceFileInput: function (input) { - var inputClone = input.clone(true); - $('
    ').append(inputClone)[0].reset(); - // Detaching allows to insert the fileInput on another form - // without loosing the file input value: - input.after(inputClone).detach(); - // Avoid memory leaks with the detached file input: - $.cleanData(input.unbind('remove')); - // Replace the original file input element in the fileInput - // elements set with the clone, which has been copied including - // event handlers: - this.options.fileInput = this.options.fileInput.map(function (i, el) { - if (el === input[0]) { - return inputClone[0]; - } - return el; - }); - // If the widget has been initialized on the file input itself, - // override this.element with the file input clone: - if (input[0] === this.element[0]) { - this.element = inputClone; - } - }, - - _handleFileTreeEntry: function (entry, path) { - var that = this, - dfd = $.Deferred(), - errorHandler = function (e) { - if (e && !e.entry) { - e.entry = entry; - } - // Since $.when returns immediately if one - // Deferred is rejected, we use resolve instead. - // This allows valid files and invalid items - // to be returned together in one set: - dfd.resolve([e]); - }, - dirReader; - path = path || ''; - if (entry.isFile) { - if (entry._file) { - // Workaround for Chrome bug #149735 - entry._file.relativePath = path; - dfd.resolve(entry._file); - } else { - entry.file(function (file) { - file.relativePath = path; - dfd.resolve(file); - }, errorHandler); - } - } else if (entry.isDirectory) { - dirReader = entry.createReader(); - dirReader.readEntries(function (entries) { - that._handleFileTreeEntries( - entries, - path + entry.name + '/' - ).done(function (files) { - dfd.resolve(files); - }).fail(errorHandler); - }, errorHandler); - } else { - // Return an empy list for file system items - // other than files or directories: - dfd.resolve([]); - } - return dfd.promise(); - }, - - _handleFileTreeEntries: function (entries, path) { - var that = this; - return $.when.apply( - $, - $.map(entries, function (entry) { - return that._handleFileTreeEntry(entry, path); - }) - ).pipe(function () { - return Array.prototype.concat.apply( - [], - arguments - ); - }); - }, - - _getDroppedFiles: function (dataTransfer) { - dataTransfer = dataTransfer || {}; - var items = dataTransfer.items; - if (items && items.length && (items[0].webkitGetAsEntry || - items[0].getAsEntry)) { - return this._handleFileTreeEntries( - $.map(items, function (item) { - var entry; - if (item.webkitGetAsEntry) { - entry = item.webkitGetAsEntry(); - if (entry) { - // Workaround for Chrome bug #149735: - entry._file = item.getAsFile(); - } - return entry; - } - return item.getAsEntry(); - }) - ); - } - return $.Deferred().resolve( - $.makeArray(dataTransfer.files) - ).promise(); - }, - - _getSingleFileInputFiles: function (fileInput) { - fileInput = $(fileInput); - var entries = fileInput.prop('webkitEntries') || - fileInput.prop('entries'), - files, - value; - if (entries && entries.length) { - return this._handleFileTreeEntries(entries); - } - files = $.makeArray(fileInput.prop('files')); - if (!files.length) { - value = fileInput.prop('value'); - if (!value) { - return $.Deferred().resolve([]).promise(); - } - // If the files property is not available, the browser does not - // support the File API and we add a pseudo File object with - // the input value as name with path information removed: - files = [{name: value.replace(/^.*\\/, '')}]; - } else if (files[0].name === undefined && files[0].fileName) { - // File normalization for Safari 4 and Firefox 3: - $.each(files, function (index, file) { - file.name = file.fileName; - file.size = file.fileSize; - }); - } - return $.Deferred().resolve(files).promise(); - }, - - _getFileInputFiles: function (fileInput) { - if (!(fileInput instanceof $) || fileInput.length === 1) { - return this._getSingleFileInputFiles(fileInput); - } - return $.when.apply( - $, - $.map(fileInput, this._getSingleFileInputFiles) - ).pipe(function () { - return Array.prototype.concat.apply( - [], - arguments - ); - }); - }, - - _onChange: function (e) { - var that = this, - data = { - fileInput: $(e.target), - form: $(e.target.form) - }; - this._getFileInputFiles(data.fileInput).always(function (files) { - data.files = files; - if (that.options.replaceFileInput) { - that._replaceFileInput(data.fileInput); - } - if (that._trigger( - 'change', - $.Event('change', {delegatedEvent: e}), - data - ) !== false) { - that._onAdd(e, data); - } - }); - }, - - _onPaste: function (e) { - var items = e.originalEvent && e.originalEvent.clipboardData && - e.originalEvent.clipboardData.items, - data = {files: []}; - if (items && items.length) { - $.each(items, function (index, item) { - var file = item.getAsFile && item.getAsFile(); - if (file) { - data.files.push(file); - } - }); - if (this._trigger( - 'paste', - $.Event('paste', {delegatedEvent: e}), - data - ) !== false) { - this._onAdd(e, data); - } - } - }, - - _onDrop: function (e) { - e.dataTransfer = e.originalEvent && e.originalEvent.dataTransfer; - var that = this, - dataTransfer = e.dataTransfer, - data = {}; - if (dataTransfer && dataTransfer.files && dataTransfer.files.length) { - e.preventDefault(); - this._getDroppedFiles(dataTransfer).always(function (files) { - data.files = files; - if (that._trigger( - 'drop', - $.Event('drop', {delegatedEvent: e}), - data - ) !== false) { - that._onAdd(e, data); - } - }); - } - }, - - _onDragOver: function (e) { - e.dataTransfer = e.originalEvent && e.originalEvent.dataTransfer; - var dataTransfer = e.dataTransfer; - if (dataTransfer && $.inArray('Files', dataTransfer.types) !== -1 && - this._trigger( - 'dragover', - $.Event('dragover', {delegatedEvent: e}) - ) !== false) { - e.preventDefault(); - dataTransfer.dropEffect = 'copy'; - } - }, - - _initEventHandlers: function () { - if (this._isXHRUpload(this.options)) { - this._on(this.options.dropZone, { - dragover: this._onDragOver, - drop: this._onDrop - }); - this._on(this.options.pasteZone, { - paste: this._onPaste - }); - } - if ($.support.fileInput) { - this._on(this.options.fileInput, { - change: this._onChange - }); - } - }, - - _destroyEventHandlers: function () { - this._off(this.options.dropZone, 'dragover drop'); - this._off(this.options.pasteZone, 'paste'); - this._off(this.options.fileInput, 'change'); - }, - - _setOption: function (key, value) { - var reinit = $.inArray(key, this._specialOptions) !== -1; - if (reinit) { - this._destroyEventHandlers(); - } - this._super(key, value); - if (reinit) { - this._initSpecialOptions(); - this._initEventHandlers(); - } - }, - - _initSpecialOptions: function () { - var options = this.options; - if (options.fileInput === undefined) { - options.fileInput = this.element.is('input[type="file"]') ? - this.element : this.element.find('input[type="file"]'); - } else if (!(options.fileInput instanceof $)) { - options.fileInput = $(options.fileInput); - } - if (!(options.dropZone instanceof $)) { - options.dropZone = $(options.dropZone); - } - if (!(options.pasteZone instanceof $)) { - options.pasteZone = $(options.pasteZone); - } - }, - - _getRegExp: function (str) { - var parts = str.split('/'), - modifiers = parts.pop(); - parts.shift(); - return new RegExp(parts.join('/'), modifiers); - }, - - _isRegExpOption: function (key, value) { - return key !== 'url' && $.type(value) === 'string' && - /^\/.*\/[igm]{0,3}$/.test(value); - }, - - _initDataAttributes: function () { - var that = this, - options = this.options; - // Initialize options set via HTML5 data-attributes: - $.each( - $(this.element[0].cloneNode(false)).data(), - function (key, value) { - if (that._isRegExpOption(key, value)) { - value = that._getRegExp(value); - } - options[key] = value; - } - ); - }, - - _create: function () { - this._initDataAttributes(); - this._initSpecialOptions(); - this._slots = []; - this._sequence = this._getXHRPromise(true); - this._sending = this._active = 0; - this._initProgressObject(this); - this._initEventHandlers(); - }, - - // This method is exposed to the widget API and allows to query - // the number of active uploads: - active: function () { - return this._active; - }, - - // This method is exposed to the widget API and allows to query - // the widget upload progress. - // It returns an object with loaded, total and bitrate properties - // for the running uploads: - progress: function () { - return this._progress; - }, - - // This method is exposed to the widget API and allows adding files - // using the fileupload API. The data parameter accepts an object which - // must have a files property and can contain additional options: - // .fileupload('add', {files: filesList}); - add: function (data) { - var that = this; - if (!data || this.options.disabled) { - return; - } - if (data.fileInput && !data.files) { - this._getFileInputFiles(data.fileInput).always(function (files) { - data.files = files; - that._onAdd(null, data); - }); - } else { - data.files = $.makeArray(data.files); - this._onAdd(null, data); - } - }, - - // This method is exposed to the widget API and allows sending files - // using the fileupload API. The data parameter accepts an object which - // must have a files or fileInput property and can contain additional options: - // .fileupload('send', {files: filesList}); - // The method returns a Promise object for the file upload call. - send: function (data) { - if (data && !this.options.disabled) { - if (data.fileInput && !data.files) { - var that = this, - dfd = $.Deferred(), - promise = dfd.promise(), - jqXHR, - aborted; - promise.abort = function () { - aborted = true; - if (jqXHR) { - return jqXHR.abort(); - } - dfd.reject(null, 'abort', 'abort'); - return promise; - }; - this._getFileInputFiles(data.fileInput).always( - function (files) { - if (aborted) { - return; - } - if (!files.length) { - dfd.reject(); - return; - } - data.files = files; - jqXHR = that._onSend(null, data).then( - function (result, textStatus, jqXHR) { - dfd.resolve(result, textStatus, jqXHR); - }, - function (jqXHR, textStatus, errorThrown) { - dfd.reject(jqXHR, textStatus, errorThrown); - } - ); - } - ); - return this._enhancePromise(promise); - } - data.files = $.makeArray(data.files); - if (data.files.length) { - return this._onSend(null, data); - } - } - return this._getXHRPromise(false, data && data.context); - } - - }); - -})); diff --git a/library/jqupload/js/jquery.iframe-transport.js b/library/jqupload/js/jquery.iframe-transport.js deleted file mode 100644 index 8d64b591b..000000000 --- a/library/jqupload/js/jquery.iframe-transport.js +++ /dev/null @@ -1,214 +0,0 @@ -/* - * jQuery Iframe Transport Plugin 1.8.2 - * https://github.com/blueimp/jQuery-File-Upload - * - * Copyright 2011, Sebastian Tschan - * https://blueimp.net - * - * Licensed under the MIT license: - * http://www.opensource.org/licenses/MIT - */ - -/* global define, window, document */ - -(function (factory) { - 'use strict'; - if (typeof define === 'function' && define.amd) { - // Register as an anonymous AMD module: - define(['jquery'], factory); - } else { - // Browser globals: - factory(window.jQuery); - } -}(function ($) { - 'use strict'; - - // Helper variable to create unique names for the transport iframes: - var counter = 0; - - // The iframe transport accepts four additional options: - // options.fileInput: a jQuery collection of file input fields - // options.paramName: the parameter name for the file form data, - // overrides the name property of the file input field(s), - // can be a string or an array of strings. - // options.formData: an array of objects with name and value properties, - // equivalent to the return data of .serializeArray(), e.g.: - // [{name: 'a', value: 1}, {name: 'b', value: 2}] - // options.initialIframeSrc: the URL of the initial iframe src, - // by default set to "javascript:false;" - $.ajaxTransport('iframe', function (options) { - if (options.async) { - // javascript:false as initial iframe src - // prevents warning popups on HTTPS in IE6: - /*jshint scripturl: true */ - var initialIframeSrc = options.initialIframeSrc || 'javascript:false;', - /*jshint scripturl: false */ - form, - iframe, - addParamChar; - return { - send: function (_, completeCallback) { - form = $('
    '); - form.attr('accept-charset', options.formAcceptCharset); - addParamChar = /\?/.test(options.url) ? '&' : '?'; - // XDomainRequest only supports GET and POST: - if (options.type === 'DELETE') { - options.url = options.url + addParamChar + '_method=DELETE'; - options.type = 'POST'; - } else if (options.type === 'PUT') { - options.url = options.url + addParamChar + '_method=PUT'; - options.type = 'POST'; - } else if (options.type === 'PATCH') { - options.url = options.url + addParamChar + '_method=PATCH'; - options.type = 'POST'; - } - // IE versions below IE8 cannot set the name property of - // elements that have already been added to the DOM, - // so we set the name along with the iframe HTML markup: - counter += 1; - iframe = $( - '' - ).bind('load', function () { - var fileInputClones, - paramNames = $.isArray(options.paramName) ? - options.paramName : [options.paramName]; - iframe - .unbind('load') - .bind('load', function () { - var response; - // Wrap in a try/catch block to catch exceptions thrown - // when trying to access cross-domain iframe contents: - try { - response = iframe.contents(); - // Google Chrome and Firefox do not throw an - // exception when calling iframe.contents() on - // cross-domain requests, so we unify the response: - if (!response.length || !response[0].firstChild) { - throw new Error(); - } - } catch (e) { - response = undefined; - } - // The complete callback returns the - // iframe content document as response object: - completeCallback( - 200, - 'success', - {'iframe': response} - ); - // Fix for IE endless progress bar activity bug - // (happens on form submits to iframe targets): - $('') - .appendTo(form); - window.setTimeout(function () { - // Removing the form in a setTimeout call - // allows Chrome's developer tools to display - // the response result - form.remove(); - }, 0); - }); - form - .prop('target', iframe.prop('name')) - .prop('action', options.url) - .prop('method', options.type); - if (options.formData) { - $.each(options.formData, function (index, field) { - $('') - .prop('name', field.name) - .val(field.value) - .appendTo(form); - }); - } - if (options.fileInput && options.fileInput.length && - options.type === 'POST') { - fileInputClones = options.fileInput.clone(); - // Insert a clone for each file input field: - options.fileInput.after(function (index) { - return fileInputClones[index]; - }); - if (options.paramName) { - options.fileInput.each(function (index) { - $(this).prop( - 'name', - paramNames[index] || options.paramName - ); - }); - } - // Appending the file input fields to the hidden form - // removes them from their original location: - form - .append(options.fileInput) - .prop('enctype', 'multipart/form-data') - // enctype must be set as encoding for IE: - .prop('encoding', 'multipart/form-data'); - // Remove the HTML5 form attribute from the input(s): - options.fileInput.removeAttr('form'); - } - form.submit(); - // Insert the file input fields at their original location - // by replacing the clones with the originals: - if (fileInputClones && fileInputClones.length) { - options.fileInput.each(function (index, input) { - var clone = $(fileInputClones[index]); - // Restore the original name and form properties: - $(input) - .prop('name', clone.prop('name')) - .attr('form', clone.attr('form')); - clone.replaceWith(input); - }); - } - }); - form.append(iframe).appendTo(document.body); - }, - abort: function () { - if (iframe) { - // javascript:false as iframe src aborts the request - // and prevents warning popups on HTTPS in IE6. - // concat is used to avoid the "Script URL" JSLint error: - iframe - .unbind('load') - .prop('src', initialIframeSrc); - } - if (form) { - form.remove(); - } - } - }; - } - }); - - // The iframe transport returns the iframe content document as response. - // The following adds converters from iframe to text, json, html, xml - // and script. - // Please note that the Content-Type for JSON responses has to be text/plain - // or text/html, if the browser doesn't include application/json in the - // Accept header, else IE will show a download dialog. - // The Content-Type for XML responses on the other hand has to be always - // application/xml or text/xml, so IE properly parses the XML response. - // See also - // https://github.com/blueimp/jQuery-File-Upload/wiki/Setup#content-type-negotiation - $.ajaxSetup({ - converters: { - 'iframe text': function (iframe) { - return iframe && $(iframe[0].body).text(); - }, - 'iframe json': function (iframe) { - return iframe && $.parseJSON($(iframe[0].body).text()); - }, - 'iframe html': function (iframe) { - return iframe && $(iframe[0].body).html(); - }, - 'iframe xml': function (iframe) { - var xmlDoc = iframe && iframe[0]; - return xmlDoc && $.isXMLDoc(xmlDoc) ? xmlDoc : - $.parseXML((xmlDoc.XMLDocument && xmlDoc.XMLDocument.xml) || - $(xmlDoc.body).html()); - }, - 'iframe script': function (iframe) { - return iframe && $.globalEval($(iframe[0].body).text()); - } - } - }); - -})); diff --git a/library/jqupload/js/main.js b/library/jqupload/js/main.js deleted file mode 100644 index 8f57967a3..000000000 --- a/library/jqupload/js/main.js +++ /dev/null @@ -1,75 +0,0 @@ -/* - * jQuery File Upload Plugin JS Example 8.9.1 - * https://github.com/blueimp/jQuery-File-Upload - * - * Copyright 2010, Sebastian Tschan - * https://blueimp.net - * - * Licensed under the MIT license: - * http://www.opensource.org/licenses/MIT - */ - -/* global $, window */ - -$(function () { - 'use strict'; - - // Initialize the jQuery File Upload widget: - $('#fileupload').fileupload({ - // Uncomment the following to send cross-domain cookies: - //xhrFields: {withCredentials: true}, - url: 'server/php/' - }); - - // Enable iframe cross-domain access via redirect option: - $('#fileupload').fileupload( - 'option', - 'redirect', - window.location.href.replace( - /\/[^\/]*$/, - '/cors/result.html?%s' - ) - ); - - if (window.location.hostname === 'blueimp.github.io') { - // Demo settings: - $('#fileupload').fileupload('option', { - url: '//jquery-file-upload.appspot.com/', - // Enable image resizing, except for Android and Opera, - // which actually support image resizing, but fail to - // send Blob objects via XHR requests: - disableImageResize: /Android(?!.*Chrome)|Opera/ - .test(window.navigator.userAgent), - maxFileSize: 5000000, - acceptFileTypes: /(\.|\/)(gif|jpe?g|png)$/i - }); - // Upload server status check for browsers with CORS support: - if ($.support.cors) { - $.ajax({ - url: '//jquery-file-upload.appspot.com/', - type: 'HEAD' - }).fail(function () { - $('
    ') - .text('Upload server currently unavailable - ' + - new Date()) - .appendTo('#fileupload'); - }); - } - } else { - // Load existing files: - $('#fileupload').addClass('fileupload-processing'); - $.ajax({ - // Uncomment the following to send cross-domain cookies: - //xhrFields: {withCredentials: true}, - url: $('#fileupload').fileupload('option', 'url'), - dataType: 'json', - context: $('#fileupload')[0] - }).always(function () { - $(this).removeClass('fileupload-processing'); - }).done(function (result) { - $(this).fileupload('option', 'done') - .call(this, $.Event('done'), {result: result}); - }); - } - -}); diff --git a/library/jqupload/js/vendor/jquery.ui.widget.js b/library/jqupload/js/vendor/jquery.ui.widget.js deleted file mode 100644 index 2d370893a..000000000 --- a/library/jqupload/js/vendor/jquery.ui.widget.js +++ /dev/null @@ -1,530 +0,0 @@ -/* - * jQuery UI Widget 1.10.3+amd - * https://github.com/blueimp/jQuery-File-Upload - * - * Copyright 2013 jQuery Foundation and other contributors - * Released under the MIT license. - * http://jquery.org/license - * - * http://api.jqueryui.com/jQuery.widget/ - */ - -(function (factory) { - if (typeof define === "function" && define.amd) { - // Register as an anonymous AMD module: - define(["jquery"], factory); - } else { - // Browser globals: - factory(jQuery); - } -}(function( $, undefined ) { - -var uuid = 0, - slice = Array.prototype.slice, - _cleanData = $.cleanData; -$.cleanData = function( elems ) { - for ( var i = 0, elem; (elem = elems[i]) != null; i++ ) { - try { - $( elem ).triggerHandler( "remove" ); - // http://bugs.jquery.com/ticket/8235 - } catch( e ) {} - } - _cleanData( elems ); -}; - -$.widget = function( name, base, prototype ) { - var fullName, existingConstructor, constructor, basePrototype, - // proxiedPrototype allows the provided prototype to remain unmodified - // so that it can be used as a mixin for multiple widgets (#8876) - proxiedPrototype = {}, - namespace = name.split( "." )[ 0 ]; - - name = name.split( "." )[ 1 ]; - fullName = namespace + "-" + name; - - if ( !prototype ) { - prototype = base; - base = $.Widget; - } - - // create selector for plugin - $.expr[ ":" ][ fullName.toLowerCase() ] = function( elem ) { - return !!$.data( elem, fullName ); - }; - - $[ namespace ] = $[ namespace ] || {}; - existingConstructor = $[ namespace ][ name ]; - constructor = $[ namespace ][ name ] = function( options, element ) { - // allow instantiation without "new" keyword - if ( !this._createWidget ) { - return new constructor( options, element ); - } - - // allow instantiation without initializing for simple inheritance - // must use "new" keyword (the code above always passes args) - if ( arguments.length ) { - this._createWidget( options, element ); - } - }; - // extend with the existing constructor to carry over any static properties - $.extend( constructor, existingConstructor, { - version: prototype.version, - // copy the object used to create the prototype in case we need to - // redefine the widget later - _proto: $.extend( {}, prototype ), - // track widgets that inherit from this widget in case this widget is - // redefined after a widget inherits from it - _childConstructors: [] - }); - - basePrototype = new base(); - // we need to make the options hash a property directly on the new instance - // otherwise we'll modify the options hash on the prototype that we're - // inheriting from - basePrototype.options = $.widget.extend( {}, basePrototype.options ); - $.each( prototype, function( prop, value ) { - if ( !$.isFunction( value ) ) { - proxiedPrototype[ prop ] = value; - return; - } - proxiedPrototype[ prop ] = (function() { - var _super = function() { - return base.prototype[ prop ].apply( this, arguments ); - }, - _superApply = function( args ) { - return base.prototype[ prop ].apply( this, args ); - }; - return function() { - var __super = this._super, - __superApply = this._superApply, - returnValue; - - this._super = _super; - this._superApply = _superApply; - - returnValue = value.apply( this, arguments ); - - this._super = __super; - this._superApply = __superApply; - - return returnValue; - }; - })(); - }); - constructor.prototype = $.widget.extend( basePrototype, { - // TODO: remove support for widgetEventPrefix - // always use the name + a colon as the prefix, e.g., draggable:start - // don't prefix for widgets that aren't DOM-based - widgetEventPrefix: existingConstructor ? basePrototype.widgetEventPrefix : name - }, proxiedPrototype, { - constructor: constructor, - namespace: namespace, - widgetName: name, - widgetFullName: fullName - }); - - // If this widget is being redefined then we need to find all widgets that - // are inheriting from it and redefine all of them so that they inherit from - // the new version of this widget. We're essentially trying to replace one - // level in the prototype chain. - if ( existingConstructor ) { - $.each( existingConstructor._childConstructors, function( i, child ) { - var childPrototype = child.prototype; - - // redefine the child widget using the same prototype that was - // originally used, but inherit from the new version of the base - $.widget( childPrototype.namespace + "." + childPrototype.widgetName, constructor, child._proto ); - }); - // remove the list of existing child constructors from the old constructor - // so the old child constructors can be garbage collected - delete existingConstructor._childConstructors; - } else { - base._childConstructors.push( constructor ); - } - - $.widget.bridge( name, constructor ); -}; - -$.widget.extend = function( target ) { - var input = slice.call( arguments, 1 ), - inputIndex = 0, - inputLength = input.length, - key, - value; - for ( ; inputIndex < inputLength; inputIndex++ ) { - for ( key in input[ inputIndex ] ) { - value = input[ inputIndex ][ key ]; - if ( input[ inputIndex ].hasOwnProperty( key ) && value !== undefined ) { - // Clone objects - if ( $.isPlainObject( value ) ) { - target[ key ] = $.isPlainObject( target[ key ] ) ? - $.widget.extend( {}, target[ key ], value ) : - // Don't extend strings, arrays, etc. with objects - $.widget.extend( {}, value ); - // Copy everything else by reference - } else { - target[ key ] = value; - } - } - } - } - return target; -}; - -$.widget.bridge = function( name, object ) { - var fullName = object.prototype.widgetFullName || name; - $.fn[ name ] = function( options ) { - var isMethodCall = typeof options === "string", - args = slice.call( arguments, 1 ), - returnValue = this; - - // allow multiple hashes to be passed on init - options = !isMethodCall && args.length ? - $.widget.extend.apply( null, [ options ].concat(args) ) : - options; - - if ( isMethodCall ) { - this.each(function() { - var methodValue, - instance = $.data( this, fullName ); - if ( !instance ) { - return $.error( "cannot call methods on " + name + " prior to initialization; " + - "attempted to call method '" + options + "'" ); - } - if ( !$.isFunction( instance[options] ) || options.charAt( 0 ) === "_" ) { - return $.error( "no such method '" + options + "' for " + name + " widget instance" ); - } - methodValue = instance[ options ].apply( instance, args ); - if ( methodValue !== instance && methodValue !== undefined ) { - returnValue = methodValue && methodValue.jquery ? - returnValue.pushStack( methodValue.get() ) : - methodValue; - return false; - } - }); - } else { - this.each(function() { - var instance = $.data( this, fullName ); - if ( instance ) { - instance.option( options || {} )._init(); - } else { - $.data( this, fullName, new object( options, this ) ); - } - }); - } - - return returnValue; - }; -}; - -$.Widget = function( /* options, element */ ) {}; -$.Widget._childConstructors = []; - -$.Widget.prototype = { - widgetName: "widget", - widgetEventPrefix: "", - defaultElement: "
    ", - options: { - disabled: false, - - // callbacks - create: null - }, - _createWidget: function( options, element ) { - element = $( element || this.defaultElement || this )[ 0 ]; - this.element = $( element ); - this.uuid = uuid++; - this.eventNamespace = "." + this.widgetName + this.uuid; - this.options = $.widget.extend( {}, - this.options, - this._getCreateOptions(), - options ); - - this.bindings = $(); - this.hoverable = $(); - this.focusable = $(); - - if ( element !== this ) { - $.data( element, this.widgetFullName, this ); - this._on( true, this.element, { - remove: function( event ) { - if ( event.target === element ) { - this.destroy(); - } - } - }); - this.document = $( element.style ? - // element within the document - element.ownerDocument : - // element is window or document - element.document || element ); - this.window = $( this.document[0].defaultView || this.document[0].parentWindow ); - } - - this._create(); - this._trigger( "create", null, this._getCreateEventData() ); - this._init(); - }, - _getCreateOptions: $.noop, - _getCreateEventData: $.noop, - _create: $.noop, - _init: $.noop, - - destroy: function() { - this._destroy(); - // we can probably remove the unbind calls in 2.0 - // all event bindings should go through this._on() - this.element - .unbind( this.eventNamespace ) - // 1.9 BC for #7810 - // TODO remove dual storage - .removeData( this.widgetName ) - .removeData( this.widgetFullName ) - // support: jquery <1.6.3 - // http://bugs.jquery.com/ticket/9413 - .removeData( $.camelCase( this.widgetFullName ) ); - this.widget() - .unbind( this.eventNamespace ) - .removeAttr( "aria-disabled" ) - .removeClass( - this.widgetFullName + "-disabled " + - "ui-state-disabled" ); - - // clean up events and states - this.bindings.unbind( this.eventNamespace ); - this.hoverable.removeClass( "ui-state-hover" ); - this.focusable.removeClass( "ui-state-focus" ); - }, - _destroy: $.noop, - - widget: function() { - return this.element; - }, - - option: function( key, value ) { - var options = key, - parts, - curOption, - i; - - if ( arguments.length === 0 ) { - // don't return a reference to the internal hash - return $.widget.extend( {}, this.options ); - } - - if ( typeof key === "string" ) { - // handle nested keys, e.g., "foo.bar" => { foo: { bar: ___ } } - options = {}; - parts = key.split( "." ); - key = parts.shift(); - if ( parts.length ) { - curOption = options[ key ] = $.widget.extend( {}, this.options[ key ] ); - for ( i = 0; i < parts.length - 1; i++ ) { - curOption[ parts[ i ] ] = curOption[ parts[ i ] ] || {}; - curOption = curOption[ parts[ i ] ]; - } - key = parts.pop(); - if ( value === undefined ) { - return curOption[ key ] === undefined ? null : curOption[ key ]; - } - curOption[ key ] = value; - } else { - if ( value === undefined ) { - return this.options[ key ] === undefined ? null : this.options[ key ]; - } - options[ key ] = value; - } - } - - this._setOptions( options ); - - return this; - }, - _setOptions: function( options ) { - var key; - - for ( key in options ) { - this._setOption( key, options[ key ] ); - } - - return this; - }, - _setOption: function( key, value ) { - this.options[ key ] = value; - - if ( key === "disabled" ) { - this.widget() - .toggleClass( this.widgetFullName + "-disabled ui-state-disabled", !!value ) - .attr( "aria-disabled", value ); - this.hoverable.removeClass( "ui-state-hover" ); - this.focusable.removeClass( "ui-state-focus" ); - } - - return this; - }, - - enable: function() { - return this._setOption( "disabled", false ); - }, - disable: function() { - return this._setOption( "disabled", true ); - }, - - _on: function( suppressDisabledCheck, element, handlers ) { - var delegateElement, - instance = this; - - // no suppressDisabledCheck flag, shuffle arguments - if ( typeof suppressDisabledCheck !== "boolean" ) { - handlers = element; - element = suppressDisabledCheck; - suppressDisabledCheck = false; - } - - // no element argument, shuffle and use this.element - if ( !handlers ) { - handlers = element; - element = this.element; - delegateElement = this.widget(); - } else { - // accept selectors, DOM elements - element = delegateElement = $( element ); - this.bindings = this.bindings.add( element ); - } - - $.each( handlers, function( event, handler ) { - function handlerProxy() { - // allow widgets to customize the disabled handling - // - disabled as an array instead of boolean - // - disabled class as method for disabling individual parts - if ( !suppressDisabledCheck && - ( instance.options.disabled === true || - $( this ).hasClass( "ui-state-disabled" ) ) ) { - return; - } - return ( typeof handler === "string" ? instance[ handler ] : handler ) - .apply( instance, arguments ); - } - - // copy the guid so direct unbinding works - if ( typeof handler !== "string" ) { - handlerProxy.guid = handler.guid = - handler.guid || handlerProxy.guid || $.guid++; - } - - var match = event.match( /^(\w+)\s*(.*)$/ ), - eventName = match[1] + instance.eventNamespace, - selector = match[2]; - if ( selector ) { - delegateElement.delegate( selector, eventName, handlerProxy ); - } else { - element.bind( eventName, handlerProxy ); - } - }); - }, - - _off: function( element, eventName ) { - eventName = (eventName || "").split( " " ).join( this.eventNamespace + " " ) + this.eventNamespace; - element.unbind( eventName ).undelegate( eventName ); - }, - - _delay: function( handler, delay ) { - function handlerProxy() { - return ( typeof handler === "string" ? instance[ handler ] : handler ) - .apply( instance, arguments ); - } - var instance = this; - return setTimeout( handlerProxy, delay || 0 ); - }, - - _hoverable: function( element ) { - this.hoverable = this.hoverable.add( element ); - this._on( element, { - mouseenter: function( event ) { - $( event.currentTarget ).addClass( "ui-state-hover" ); - }, - mouseleave: function( event ) { - $( event.currentTarget ).removeClass( "ui-state-hover" ); - } - }); - }, - - _focusable: function( element ) { - this.focusable = this.focusable.add( element ); - this._on( element, { - focusin: function( event ) { - $( event.currentTarget ).addClass( "ui-state-focus" ); - }, - focusout: function( event ) { - $( event.currentTarget ).removeClass( "ui-state-focus" ); - } - }); - }, - - _trigger: function( type, event, data ) { - var prop, orig, - callback = this.options[ type ]; - - data = data || {}; - event = $.Event( event ); - event.type = ( type === this.widgetEventPrefix ? - type : - this.widgetEventPrefix + type ).toLowerCase(); - // the original event may come from any element - // so we need to reset the target on the new event - event.target = this.element[ 0 ]; - - // copy original event properties over to the new event - orig = event.originalEvent; - if ( orig ) { - for ( prop in orig ) { - if ( !( prop in event ) ) { - event[ prop ] = orig[ prop ]; - } - } - } - - this.element.trigger( event, data ); - return !( $.isFunction( callback ) && - callback.apply( this.element[0], [ event ].concat( data ) ) === false || - event.isDefaultPrevented() ); - } -}; - -$.each( { show: "fadeIn", hide: "fadeOut" }, function( method, defaultEffect ) { - $.Widget.prototype[ "_" + method ] = function( element, options, callback ) { - if ( typeof options === "string" ) { - options = { effect: options }; - } - var hasOptions, - effectName = !options ? - method : - options === true || typeof options === "number" ? - defaultEffect : - options.effect || defaultEffect; - options = options || {}; - if ( typeof options === "number" ) { - options = { duration: options }; - } - hasOptions = !$.isEmptyObject( options ); - options.complete = callback; - if ( options.delay ) { - element.delay( options.delay ); - } - if ( hasOptions && $.effects && $.effects.effect[ effectName ] ) { - element[ method ]( options ); - } else if ( effectName !== method && element[ effectName ] ) { - element[ effectName ]( options.duration, options.easing, callback ); - } else { - element.queue(function( next ) { - $( this )[ method ](); - if ( callback ) { - callback.call( element[ 0 ] ); - } - next(); - }); - } - }; -}); - -})); diff --git a/library/jqupload/package.json b/library/jqupload/package.json deleted file mode 100644 index 85852c35a..000000000 --- a/library/jqupload/package.json +++ /dev/null @@ -1,54 +0,0 @@ -{ - "name": "blueimp-file-upload", - "version": "9.5.2", - "title": "jQuery File Upload", - "description": "File Upload widget with multiple file selection, drag&drop support, progress bar, validation and preview images, audio and video for jQuery. Supports cross-domain, chunked and resumable file uploads. Works with any server-side platform (Google App Engine, PHP, Python, Ruby on Rails, Java, etc.) that supports standard HTML form file uploads.", - "keywords": [ - "jquery", - "file", - "upload", - "widget", - "multiple", - "selection", - "drag", - "drop", - "progress", - "preview", - "cross-domain", - "cross-site", - "chunk", - "resume", - "gae", - "go", - "python", - "php", - "bootstrap" - ], - "homepage": "https://github.com/blueimp/jQuery-File-Upload", - "author": { - "name": "Sebastian Tschan", - "url": "https://blueimp.net" - }, - "maintainers": [ - { - "name": "Sebastian Tschan", - "url": "https://blueimp.net" - } - ], - "repository": { - "type": "git", - "url": "git://github.com/blueimp/jQuery-File-Upload.git" - }, - "bugs": "https://github.com/blueimp/jQuery-File-Upload/issues", - "licenses": [ - { - "type": "MIT", - "url": "http://www.opensource.org/licenses/MIT" - } - ], - "devDependencies": { - "grunt": "~0.4.2", - "grunt-bump-build-git": "~1.1.1", - "grunt-contrib-jshint": "~0.8.0" - } -} diff --git a/library/jqupload/server/gae-go/app.yaml b/library/jqupload/server/gae-go/app.yaml deleted file mode 100644 index 2d09daa56..000000000 --- a/library/jqupload/server/gae-go/app.yaml +++ /dev/null @@ -1,12 +0,0 @@ -application: jquery-file-upload -version: 2 -runtime: go -api_version: go1 - -handlers: -- url: /(favicon\.ico|robots\.txt) - static_files: static/\1 - upload: static/(.*) - expiration: '1d' -- url: /.* - script: _go_app diff --git a/library/jqupload/server/gae-go/app/main.go b/library/jqupload/server/gae-go/app/main.go deleted file mode 100644 index f995f73a8..000000000 --- a/library/jqupload/server/gae-go/app/main.go +++ /dev/null @@ -1,296 +0,0 @@ -/* - * jQuery File Upload Plugin GAE Go Example 3.1.1 - * https://github.com/blueimp/jQuery-File-Upload - * - * Copyright 2011, Sebastian Tschan - * https://blueimp.net - * - * Licensed under the MIT license: - * http://www.opensource.org/licenses/MIT - */ - -package app - -import ( - "appengine" - "appengine/blobstore" - "appengine/image" - "appengine/taskqueue" - "bytes" - "encoding/json" - "fmt" - "io" - "log" - "mime/multipart" - "net/http" - "net/url" - "regexp" - "strings" - "time" -) - -const ( - WEBSITE = "http://blueimp.github.io/jQuery-File-Upload/" - MIN_FILE_SIZE = 1 // bytes - MAX_FILE_SIZE = 5000000 // bytes - IMAGE_TYPES = "image/(gif|p?jpeg|(x-)?png)" - ACCEPT_FILE_TYPES = IMAGE_TYPES - EXPIRATION_TIME = 300 // seconds - THUMBNAIL_PARAM = "=s80" -) - -var ( - imageTypes = regexp.MustCompile(IMAGE_TYPES) - acceptFileTypes = regexp.MustCompile(ACCEPT_FILE_TYPES) -) - -type FileInfo struct { - Key appengine.BlobKey `json:"-"` - Url string `json:"url,omitempty"` - ThumbnailUrl string `json:"thumbnailUrl,omitempty"` - Name string `json:"name"` - Type string `json:"type"` - Size int64 `json:"size"` - Error string `json:"error,omitempty"` - DeleteUrl string `json:"deleteUrl,omitempty"` - DeleteType string `json:"deleteType,omitempty"` -} - -func (fi *FileInfo) ValidateType() (valid bool) { - if acceptFileTypes.MatchString(fi.Type) { - return true - } - fi.Error = "Filetype not allowed" - return false -} - -func (fi *FileInfo) ValidateSize() (valid bool) { - if fi.Size < MIN_FILE_SIZE { - fi.Error = "File is too small" - } else if fi.Size > MAX_FILE_SIZE { - fi.Error = "File is too big" - } else { - return true - } - return false -} - -func (fi *FileInfo) CreateUrls(r *http.Request, c appengine.Context) { - u := &url.URL{ - Scheme: r.URL.Scheme, - Host: appengine.DefaultVersionHostname(c), - Path: "/", - } - uString := u.String() - fi.Url = uString + escape(string(fi.Key)) + "/" + - escape(string(fi.Name)) - fi.DeleteUrl = fi.Url + "?delete=true" - fi.DeleteType = "DELETE" - if imageTypes.MatchString(fi.Type) { - servingUrl, err := image.ServingURL( - c, - fi.Key, - &image.ServingURLOptions{ - Secure: strings.HasSuffix(u.Scheme, "s"), - Size: 0, - Crop: false, - }, - ) - check(err) - fi.ThumbnailUrl = servingUrl.String() + THUMBNAIL_PARAM - } -} - -func check(err error) { - if err != nil { - panic(err) - } -} - -func escape(s string) string { - return strings.Replace(url.QueryEscape(s), "+", "%20", -1) -} - -func delayedDelete(c appengine.Context, fi *FileInfo) { - if key := string(fi.Key); key != "" { - task := &taskqueue.Task{ - Path: "/" + escape(key) + "/-", - Method: "DELETE", - Delay: time.Duration(EXPIRATION_TIME) * time.Second, - } - taskqueue.Add(c, task, "") - } -} - -func handleUpload(r *http.Request, p *multipart.Part) (fi *FileInfo) { - fi = &FileInfo{ - Name: p.FileName(), - Type: p.Header.Get("Content-Type"), - } - if !fi.ValidateType() { - return - } - defer func() { - if rec := recover(); rec != nil { - log.Println(rec) - fi.Error = rec.(error).Error() - } - }() - lr := &io.LimitedReader{R: p, N: MAX_FILE_SIZE + 1} - context := appengine.NewContext(r) - w, err := blobstore.Create(context, fi.Type) - defer func() { - w.Close() - fi.Size = MAX_FILE_SIZE + 1 - lr.N - fi.Key, err = w.Key() - check(err) - if !fi.ValidateSize() { - err := blobstore.Delete(context, fi.Key) - check(err) - return - } - delayedDelete(context, fi) - fi.CreateUrls(r, context) - }() - check(err) - _, err = io.Copy(w, lr) - return -} - -func getFormValue(p *multipart.Part) string { - var b bytes.Buffer - io.CopyN(&b, p, int64(1<<20)) // Copy max: 1 MiB - return b.String() -} - -func handleUploads(r *http.Request) (fileInfos []*FileInfo) { - fileInfos = make([]*FileInfo, 0) - mr, err := r.MultipartReader() - check(err) - r.Form, err = url.ParseQuery(r.URL.RawQuery) - check(err) - part, err := mr.NextPart() - for err == nil { - if name := part.FormName(); name != "" { - if part.FileName() != "" { - fileInfos = append(fileInfos, handleUpload(r, part)) - } else { - r.Form[name] = append(r.Form[name], getFormValue(part)) - } - } - part, err = mr.NextPart() - } - return -} - -func get(w http.ResponseWriter, r *http.Request) { - if r.URL.Path == "/" { - http.Redirect(w, r, WEBSITE, http.StatusFound) - return - } - parts := strings.Split(r.URL.Path, "/") - if len(parts) == 3 { - if key := parts[1]; key != "" { - blobKey := appengine.BlobKey(key) - bi, err := blobstore.Stat(appengine.NewContext(r), blobKey) - if err == nil { - w.Header().Add("X-Content-Type-Options", "nosniff") - if !imageTypes.MatchString(bi.ContentType) { - w.Header().Add("Content-Type", "application/octet-stream") - w.Header().Add( - "Content-Disposition", - fmt.Sprintf("attachment; filename=\"%s\"", parts[2]), - ) - } - w.Header().Add( - "Cache-Control", - fmt.Sprintf("public,max-age=%d", EXPIRATION_TIME), - ) - blobstore.Send(w, blobKey) - return - } - } - } - http.Error(w, "404 Not Found", http.StatusNotFound) -} - -func post(w http.ResponseWriter, r *http.Request) { - result := make(map[string][]*FileInfo, 1) - result["files"] = handleUploads(r) - b, err := json.Marshal(result) - check(err) - if redirect := r.FormValue("redirect"); redirect != "" { - if strings.Contains(redirect, "%s") { - redirect = fmt.Sprintf( - redirect, - escape(string(b)), - ) - } - http.Redirect(w, r, redirect, http.StatusFound) - return - } - w.Header().Set("Cache-Control", "no-cache") - jsonType := "application/json" - if strings.Index(r.Header.Get("Accept"), jsonType) != -1 { - w.Header().Set("Content-Type", jsonType) - } - fmt.Fprintln(w, string(b)) -} - -func delete(w http.ResponseWriter, r *http.Request) { - parts := strings.Split(r.URL.Path, "/") - if len(parts) != 3 { - return - } - result := make(map[string]bool, 1) - if key := parts[1]; key != "" { - c := appengine.NewContext(r) - blobKey := appengine.BlobKey(key) - err := blobstore.Delete(c, blobKey) - check(err) - err = image.DeleteServingURL(c, blobKey) - check(err) - result[key] = true - } - jsonType := "application/json" - if strings.Index(r.Header.Get("Accept"), jsonType) != -1 { - w.Header().Set("Content-Type", jsonType) - } - b, err := json.Marshal(result) - check(err) - fmt.Fprintln(w, string(b)) -} - -func handle(w http.ResponseWriter, r *http.Request) { - params, err := url.ParseQuery(r.URL.RawQuery) - check(err) - w.Header().Add("Access-Control-Allow-Origin", "*") - w.Header().Add( - "Access-Control-Allow-Methods", - "OPTIONS, HEAD, GET, POST, PUT, DELETE", - ) - w.Header().Add( - "Access-Control-Allow-Headers", - "Content-Type, Content-Range, Content-Disposition", - ) - switch r.Method { - case "OPTIONS": - case "HEAD": - case "GET": - get(w, r) - case "POST": - if len(params["_method"]) > 0 && params["_method"][0] == "DELETE" { - delete(w, r) - } else { - post(w, r) - } - case "DELETE": - delete(w, r) - default: - http.Error(w, "501 Not Implemented", http.StatusNotImplemented) - } -} - -func init() { - http.HandleFunc("/", handle) -} diff --git a/library/jqupload/server/gae-go/static/robots.txt b/library/jqupload/server/gae-go/static/robots.txt deleted file mode 100644 index eb0536286..000000000 --- a/library/jqupload/server/gae-go/static/robots.txt +++ /dev/null @@ -1,2 +0,0 @@ -User-agent: * -Disallow: diff --git a/library/jqupload/server/gae-python/app.yaml b/library/jqupload/server/gae-python/app.yaml deleted file mode 100644 index 5fe123f59..000000000 --- a/library/jqupload/server/gae-python/app.yaml +++ /dev/null @@ -1,16 +0,0 @@ -application: jquery-file-upload -version: 1 -runtime: python27 -api_version: 1 -threadsafe: true - -builtins: -- deferred: on - -handlers: -- url: /(favicon\.ico|robots\.txt) - static_files: static/\1 - upload: static/(.*) - expiration: '1d' -- url: /.* - script: main.app diff --git a/library/jqupload/server/gae-python/main.py b/library/jqupload/server/gae-python/main.py deleted file mode 100644 index 37aa44e38..000000000 --- a/library/jqupload/server/gae-python/main.py +++ /dev/null @@ -1,170 +0,0 @@ -# -*- coding: utf-8 -*- -# -# jQuery File Upload Plugin GAE Python Example 2.1.1 -# https://github.com/blueimp/jQuery-File-Upload -# -# Copyright 2011, Sebastian Tschan -# https://blueimp.net -# -# Licensed under the MIT license: -# http://www.opensource.org/licenses/MIT -# - -from __future__ import with_statement -from google.appengine.api import files, images -from google.appengine.ext import blobstore, deferred -from google.appengine.ext.webapp import blobstore_handlers -import json -import re -import urllib -import webapp2 - -WEBSITE = 'http://blueimp.github.io/jQuery-File-Upload/' -MIN_FILE_SIZE = 1 # bytes -MAX_FILE_SIZE = 5000000 # bytes -IMAGE_TYPES = re.compile('image/(gif|p?jpeg|(x-)?png)') -ACCEPT_FILE_TYPES = IMAGE_TYPES -THUMBNAIL_MODIFICATOR = '=s80' # max width / height -EXPIRATION_TIME = 300 # seconds - - -def cleanup(blob_keys): - blobstore.delete(blob_keys) - - -class UploadHandler(webapp2.RequestHandler): - - def initialize(self, request, response): - super(UploadHandler, self).initialize(request, response) - self.response.headers['Access-Control-Allow-Origin'] = '*' - self.response.headers[ - 'Access-Control-Allow-Methods' - ] = 'OPTIONS, HEAD, GET, POST, PUT, DELETE' - self.response.headers[ - 'Access-Control-Allow-Headers' - ] = 'Content-Type, Content-Range, Content-Disposition' - - def validate(self, file): - if file['size'] < MIN_FILE_SIZE: - file['error'] = 'File is too small' - elif file['size'] > MAX_FILE_SIZE: - file['error'] = 'File is too big' - elif not ACCEPT_FILE_TYPES.match(file['type']): - file['error'] = 'Filetype not allowed' - else: - return True - return False - - def get_file_size(self, file): - file.seek(0, 2) # Seek to the end of the file - size = file.tell() # Get the position of EOF - file.seek(0) # Reset the file position to the beginning - return size - - def write_blob(self, data, info): - blob = files.blobstore.create( - mime_type=info['type'], - _blobinfo_uploaded_filename=info['name'] - ) - with files.open(blob, 'a') as f: - f.write(data) - files.finalize(blob) - return files.blobstore.get_blob_key(blob) - - def handle_upload(self): - results = [] - blob_keys = [] - for name, fieldStorage in self.request.POST.items(): - if type(fieldStorage) is unicode: - continue - result = {} - result['name'] = re.sub( - r'^.*\\', - '', - fieldStorage.filename - ) - result['type'] = fieldStorage.type - result['size'] = self.get_file_size(fieldStorage.file) - if self.validate(result): - blob_key = str( - self.write_blob(fieldStorage.value, result) - ) - blob_keys.append(blob_key) - result['deleteType'] = 'DELETE' - result['deleteUrl'] = self.request.host_url +\ - '/?key=' + urllib.quote(blob_key, '') - if (IMAGE_TYPES.match(result['type'])): - try: - result['url'] = images.get_serving_url( - blob_key, - secure_url=self.request.host_url.startswith( - 'https' - ) - ) - result['thumbnailUrl'] = result['url'] +\ - THUMBNAIL_MODIFICATOR - except: # Could not get an image serving url - pass - if not 'url' in result: - result['url'] = self.request.host_url +\ - '/' + blob_key + '/' + urllib.quote( - result['name'].encode('utf-8'), '') - results.append(result) - deferred.defer( - cleanup, - blob_keys, - _countdown=EXPIRATION_TIME - ) - return results - - def options(self): - pass - - def head(self): - pass - - def get(self): - self.redirect(WEBSITE) - - def post(self): - if (self.request.get('_method') == 'DELETE'): - return self.delete() - result = {'files': self.handle_upload()} - s = json.dumps(result, separators=(',', ':')) - redirect = self.request.get('redirect') - if redirect: - return self.redirect(str( - redirect.replace('%s', urllib.quote(s, ''), 1) - )) - if 'application/json' in self.request.headers.get('Accept'): - self.response.headers['Content-Type'] = 'application/json' - self.response.write(s) - - def delete(self): - key = self.request.get('key') or '' - blobstore.delete(key) - s = json.dumps({key: True}, separators=(',', ':')) - if 'application/json' in self.request.headers.get('Accept'): - self.response.headers['Content-Type'] = 'application/json' - self.response.write(s) - - -class DownloadHandler(blobstore_handlers.BlobstoreDownloadHandler): - def get(self, key, filename): - if not blobstore.get(key): - self.error(404) - else: - # Prevent browsers from MIME-sniffing the content-type: - self.response.headers['X-Content-Type-Options'] = 'nosniff' - # Cache for the expiration time: - self.response.headers['Cache-Control'] = 'public,max-age=%d' % EXPIRATION_TIME - # Send the file forcing a download dialog: - self.send_blob(key, save_as=filename, content_type='application/octet-stream') - -app = webapp2.WSGIApplication( - [ - ('/', UploadHandler), - ('/([^/]+)/([^/]+)', DownloadHandler) - ], - debug=True -) diff --git a/library/jqupload/server/gae-python/static/robots.txt b/library/jqupload/server/gae-python/static/robots.txt deleted file mode 100644 index eb0536286..000000000 --- a/library/jqupload/server/gae-python/static/robots.txt +++ /dev/null @@ -1,2 +0,0 @@ -User-agent: * -Disallow: diff --git a/library/jqupload/server/node/.gitignore b/library/jqupload/server/node/.gitignore deleted file mode 100644 index 9daa8247d..000000000 --- a/library/jqupload/server/node/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -.DS_Store -node_modules diff --git a/library/jqupload/server/node/package.json b/library/jqupload/server/node/package.json deleted file mode 100644 index dd38c50ca..000000000 --- a/library/jqupload/server/node/package.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "name": "blueimp-file-upload-node", - "version": "2.1.0", - "title": "jQuery File Upload Node.js example", - "description": "Node.js implementation example of a file upload handler for jQuery File Upload.", - "keywords": [ - "file", - "upload", - "cross-domain", - "cross-site", - "node" - ], - "homepage": "https://github.com/blueimp/jQuery-File-Upload", - "author": { - "name": "Sebastian Tschan", - "url": "https://blueimp.net" - }, - "maintainers": [ - { - "name": "Sebastian Tschan", - "url": "https://blueimp.net" - } - ], - "repository": { - "type": "git", - "url": "git://github.com/blueimp/jQuery-File-Upload.git" - }, - "bugs": "https://github.com/blueimp/jQuery-File-Upload/issues", - "licenses": [ - { - "type": "MIT", - "url": "http://www.opensource.org/licenses/MIT" - } - ], - "dependencies": { - "formidable": ">=1.0.11", - "node-static": ">=0.6.5", - "imagemagick": ">=0.1.3" - }, - "main": "server.js" -} diff --git a/library/jqupload/server/node/public/files/.gitignore b/library/jqupload/server/node/public/files/.gitignore deleted file mode 100644 index d6b7ef32c..000000000 --- a/library/jqupload/server/node/public/files/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -* -!.gitignore diff --git a/library/jqupload/server/node/server.js b/library/jqupload/server/node/server.js deleted file mode 100755 index e489772b5..000000000 --- a/library/jqupload/server/node/server.js +++ /dev/null @@ -1,292 +0,0 @@ -#!/usr/bin/nodejs -/* - * jQuery File Upload Plugin Node.js Example 2.1.1 - * https://github.com/blueimp/jQuery-File-Upload - * - * Copyright 2012, Sebastian Tschan - * https://blueimp.net - * - * Licensed under the MIT license: - * http://www.opensource.org/licenses/MIT - */ - -/* jshint nomen:false */ -/* global require, __dirname, unescape, console */ - -(function (port) { - 'use strict'; - var path = require('path'), - fs = require('fs'), - // Since Node 0.8, .existsSync() moved from path to fs: - _existsSync = fs.existsSync || path.existsSync, - formidable = require('formidable'), - nodeStatic = require('node-static'), - imageMagick = require('imagemagick'), - options = { - tmpDir: __dirname + '/tmp', - publicDir: __dirname + '/public', - uploadDir: __dirname + '/public/files', - uploadUrl: '/files/', - maxPostSize: 11000000000, // 11 GB - minFileSize: 1, - maxFileSize: 10000000000, // 10 GB - acceptFileTypes: /.+/i, - // Files not matched by this regular expression force a download dialog, - // to prevent executing any scripts in the context of the service domain: - inlineFileTypes: /\.(gif|jpe?g|png)$/i, - imageTypes: /\.(gif|jpe?g|png)$/i, - imageVersions: { - 'thumbnail': { - width: 80, - height: 80 - } - }, - accessControl: { - allowOrigin: '*', - allowMethods: 'OPTIONS, HEAD, GET, POST, PUT, DELETE', - allowHeaders: 'Content-Type, Content-Range, Content-Disposition' - }, - /* Uncomment and edit this section to provide the service via HTTPS: - ssl: { - key: fs.readFileSync('/Applications/XAMPP/etc/ssl.key/server.key'), - cert: fs.readFileSync('/Applications/XAMPP/etc/ssl.crt/server.crt') - }, - */ - nodeStatic: { - cache: 3600 // seconds to cache served files - } - }, - utf8encode = function (str) { - return unescape(encodeURIComponent(str)); - }, - fileServer = new nodeStatic.Server(options.publicDir, options.nodeStatic), - nameCountRegexp = /(?:(?: \(([\d]+)\))?(\.[^.]+))?$/, - nameCountFunc = function (s, index, ext) { - return ' (' + ((parseInt(index, 10) || 0) + 1) + ')' + (ext || ''); - }, - FileInfo = function (file) { - this.name = file.name; - this.size = file.size; - this.type = file.type; - this.deleteType = 'DELETE'; - }, - UploadHandler = function (req, res, callback) { - this.req = req; - this.res = res; - this.callback = callback; - }, - serve = function (req, res) { - res.setHeader( - 'Access-Control-Allow-Origin', - options.accessControl.allowOrigin - ); - res.setHeader( - 'Access-Control-Allow-Methods', - options.accessControl.allowMethods - ); - res.setHeader( - 'Access-Control-Allow-Headers', - options.accessControl.allowHeaders - ); - var handleResult = function (result, redirect) { - if (redirect) { - res.writeHead(302, { - 'Location': redirect.replace( - /%s/, - encodeURIComponent(JSON.stringify(result)) - ) - }); - res.end(); - } else { - res.writeHead(200, { - 'Content-Type': req.headers.accept - .indexOf('application/json') !== -1 ? - 'application/json' : 'text/plain' - }); - res.end(JSON.stringify(result)); - } - }, - setNoCacheHeaders = function () { - res.setHeader('Pragma', 'no-cache'); - res.setHeader('Cache-Control', 'no-store, no-cache, must-revalidate'); - res.setHeader('Content-Disposition', 'inline; filename="files.json"'); - }, - handler = new UploadHandler(req, res, handleResult); - switch (req.method) { - case 'OPTIONS': - res.end(); - break; - case 'HEAD': - case 'GET': - if (req.url === '/') { - setNoCacheHeaders(); - if (req.method === 'GET') { - handler.get(); - } else { - res.end(); - } - } else { - fileServer.serve(req, res); - } - break; - case 'POST': - setNoCacheHeaders(); - handler.post(); - break; - case 'DELETE': - handler.destroy(); - break; - default: - res.statusCode = 405; - res.end(); - } - }; - fileServer.respond = function (pathname, status, _headers, files, stat, req, res, finish) { - // Prevent browsers from MIME-sniffing the content-type: - _headers['X-Content-Type-Options'] = 'nosniff'; - if (!options.inlineFileTypes.test(files[0])) { - // Force a download dialog for unsafe file extensions: - _headers['Content-Type'] = 'application/octet-stream'; - _headers['Content-Disposition'] = 'attachment; filename="' + - utf8encode(path.basename(files[0])) + '"'; - } - nodeStatic.Server.prototype.respond - .call(this, pathname, status, _headers, files, stat, req, res, finish); - }; - FileInfo.prototype.validate = function () { - if (options.minFileSize && options.minFileSize > this.size) { - this.error = 'File is too small'; - } else if (options.maxFileSize && options.maxFileSize < this.size) { - this.error = 'File is too big'; - } else if (!options.acceptFileTypes.test(this.name)) { - this.error = 'Filetype not allowed'; - } - return !this.error; - }; - FileInfo.prototype.safeName = function () { - // Prevent directory traversal and creating hidden system files: - this.name = path.basename(this.name).replace(/^\.+/, ''); - // Prevent overwriting existing files: - while (_existsSync(options.uploadDir + '/' + this.name)) { - this.name = this.name.replace(nameCountRegexp, nameCountFunc); - } - }; - FileInfo.prototype.initUrls = function (req) { - if (!this.error) { - var that = this, - baseUrl = (options.ssl ? 'https:' : 'http:') + - '//' + req.headers.host + options.uploadUrl; - this.url = this.deleteUrl = baseUrl + encodeURIComponent(this.name); - Object.keys(options.imageVersions).forEach(function (version) { - if (_existsSync( - options.uploadDir + '/' + version + '/' + that.name - )) { - that[version + 'Url'] = baseUrl + version + '/' + - encodeURIComponent(that.name); - } - }); - } - }; - UploadHandler.prototype.get = function () { - var handler = this, - files = []; - fs.readdir(options.uploadDir, function (err, list) { - list.forEach(function (name) { - var stats = fs.statSync(options.uploadDir + '/' + name), - fileInfo; - if (stats.isFile() && name[0] !== '.') { - fileInfo = new FileInfo({ - name: name, - size: stats.size - }); - fileInfo.initUrls(handler.req); - files.push(fileInfo); - } - }); - handler.callback({files: files}); - }); - }; - UploadHandler.prototype.post = function () { - var handler = this, - form = new formidable.IncomingForm(), - tmpFiles = [], - files = [], - map = {}, - counter = 1, - redirect, - finish = function () { - counter -= 1; - if (!counter) { - files.forEach(function (fileInfo) { - fileInfo.initUrls(handler.req); - }); - handler.callback({files: files}, redirect); - } - }; - form.uploadDir = options.tmpDir; - form.on('fileBegin', function (name, file) { - tmpFiles.push(file.path); - var fileInfo = new FileInfo(file, handler.req, true); - fileInfo.safeName(); - map[path.basename(file.path)] = fileInfo; - files.push(fileInfo); - }).on('field', function (name, value) { - if (name === 'redirect') { - redirect = value; - } - }).on('file', function (name, file) { - var fileInfo = map[path.basename(file.path)]; - fileInfo.size = file.size; - if (!fileInfo.validate()) { - fs.unlink(file.path); - return; - } - fs.renameSync(file.path, options.uploadDir + '/' + fileInfo.name); - if (options.imageTypes.test(fileInfo.name)) { - Object.keys(options.imageVersions).forEach(function (version) { - counter += 1; - var opts = options.imageVersions[version]; - imageMagick.resize({ - width: opts.width, - height: opts.height, - srcPath: options.uploadDir + '/' + fileInfo.name, - dstPath: options.uploadDir + '/' + version + '/' + - fileInfo.name - }, finish); - }); - } - }).on('aborted', function () { - tmpFiles.forEach(function (file) { - fs.unlink(file); - }); - }).on('error', function (e) { - console.log(e); - }).on('progress', function (bytesReceived) { - if (bytesReceived > options.maxPostSize) { - handler.req.connection.destroy(); - } - }).on('end', finish).parse(handler.req); - }; - UploadHandler.prototype.destroy = function () { - var handler = this, - fileName; - if (handler.req.url.slice(0, options.uploadUrl.length) === options.uploadUrl) { - fileName = path.basename(decodeURIComponent(handler.req.url)); - if (fileName[0] !== '.') { - fs.unlink(options.uploadDir + '/' + fileName, function (ex) { - Object.keys(options.imageVersions).forEach(function (version) { - fs.unlink(options.uploadDir + '/' + version + '/' + fileName); - }); - handler.callback({success: !ex}); - }); - return; - } - } - handler.callback({success: false}); - }; - if (options.ssl) { - require('https').createServer(options.ssl, serve).listen(port); - } else { - require('http').createServer(serve).listen(port); - } -}(8888)); diff --git a/library/jqupload/server/node/tmp/.gitignore b/library/jqupload/server/node/tmp/.gitignore deleted file mode 100644 index e69de29bb..000000000 diff --git a/library/jqupload/server/php/UploadHandler.php b/library/jqupload/server/php/UploadHandler.php deleted file mode 100644 index 66545b12a..000000000 --- a/library/jqupload/server/php/UploadHandler.php +++ /dev/null @@ -1,1329 +0,0 @@ - 'The uploaded file exceeds the upload_max_filesize directive in php.ini', - 2 => 'The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form', - 3 => 'The uploaded file was only partially uploaded', - 4 => 'No file was uploaded', - 6 => 'Missing a temporary folder', - 7 => 'Failed to write file to disk', - 8 => 'A PHP extension stopped the file upload', - 'post_max_size' => 'The uploaded file exceeds the post_max_size directive in php.ini', - 'max_file_size' => 'File is too big', - 'min_file_size' => 'File is too small', - 'accept_file_types' => 'Filetype not allowed', - 'max_number_of_files' => 'Maximum number of files exceeded', - 'max_width' => 'Image exceeds maximum width', - 'min_width' => 'Image requires a minimum width', - 'max_height' => 'Image exceeds maximum height', - 'min_height' => 'Image requires a minimum height', - 'abort' => 'File upload aborted', - 'image_resize' => 'Failed to resize image' - ); - - protected $image_objects = array(); - - function __construct($options = null, $initialize = true, $error_messages = null) { - $this->options = array( - 'script_url' => $this->get_full_url().'/', - 'upload_dir' => dirname($this->get_server_var('SCRIPT_FILENAME')).'/files/', - 'upload_url' => $this->get_full_url().'/files/', - 'user_dirs' => false, - 'mkdir_mode' => 0755, - 'param_name' => 'files', - // Set the following option to 'POST', if your server does not support - // DELETE requests. This is a parameter sent to the client: - 'delete_type' => 'DELETE', - 'access_control_allow_origin' => '*', - 'access_control_allow_credentials' => false, - 'access_control_allow_methods' => array( - 'OPTIONS', - 'HEAD', - 'GET', - 'POST', - 'PUT', - 'PATCH', - 'DELETE' - ), - 'access_control_allow_headers' => array( - 'Content-Type', - 'Content-Range', - 'Content-Disposition' - ), - // Enable to provide file downloads via GET requests to the PHP script: - // 1. Set to 1 to download files via readfile method through PHP - // 2. Set to 2 to send a X-Sendfile header for lighttpd/Apache - // 3. Set to 3 to send a X-Accel-Redirect header for nginx - // If set to 2 or 3, adjust the upload_url option to the base path of - // the redirect parameter, e.g. '/files/'. - 'download_via_php' => false, - // Read files in chunks to avoid memory limits when download_via_php - // is enabled, set to 0 to disable chunked reading of files: - 'readfile_chunk_size' => 10 * 1024 * 1024, // 10 MiB - // Defines which files can be displayed inline when downloaded: - 'inline_file_types' => '/\.(gif|jpe?g|png)$/i', - // Defines which files (based on their names) are accepted for upload: - 'accept_file_types' => '/.+$/i', - // The php.ini settings upload_max_filesize and post_max_size - // take precedence over the following max_file_size setting: - 'max_file_size' => null, - 'min_file_size' => 1, - // The maximum number of files for the upload directory: - 'max_number_of_files' => null, - // Defines which files are handled as image files: - 'image_file_types' => '/\.(gif|jpe?g|png)$/i', - // Image resolution restrictions: - 'max_width' => null, - 'max_height' => null, - 'min_width' => 1, - 'min_height' => 1, - // Set the following option to false to enable resumable uploads: - 'discard_aborted_uploads' => true, - // Set to 0 to use the GD library to scale and orient images, - // set to 1 to use imagick (if installed, falls back to GD), - // set to 2 to use the ImageMagick convert binary directly: - 'image_library' => 1, - // Uncomment the following to define an array of resource limits - // for imagick: - /* - 'imagick_resource_limits' => array( - imagick::RESOURCETYPE_MAP => 32, - imagick::RESOURCETYPE_MEMORY => 32 - ), - */ - // Command or path for to the ImageMagick convert binary: - 'convert_bin' => 'convert', - // Uncomment the following to add parameters in front of each - // ImageMagick convert call (the limit constraints seem only - // to have an effect if put in front): - /* - 'convert_params' => '-limit memory 32MiB -limit map 32MiB', - */ - // Command or path for to the ImageMagick identify binary: - 'identify_bin' => 'identify', - 'image_versions' => array( - // The empty image version key defines options for the original image: - '' => array( - // Automatically rotate images based on EXIF meta data: - 'auto_orient' => true - ), - // Uncomment the following to create medium sized images: - /* - 'medium' => array( - 'max_width' => 800, - 'max_height' => 600 - ), - */ - 'thumbnail' => array( - // Uncomment the following to use a defined directory for the thumbnails - // instead of a subdirectory based on the version identifier. - // Make sure that this directory doesn't allow execution of files if you - // don't pose any restrictions on the type of uploaded files, e.g. by - // copying the .htaccess file from the files directory for Apache: - //'upload_dir' => dirname($this->get_server_var('SCRIPT_FILENAME')).'/thumb/', - //'upload_url' => $this->get_full_url().'/thumb/', - // Uncomment the following to force the max - // dimensions and e.g. create square thumbnails: - //'crop' => true, - 'max_width' => 80, - 'max_height' => 80 - ) - ) - ); - if ($options) { - $this->options = $options + $this->options; - } - if ($error_messages) { - $this->error_messages = $error_messages + $this->error_messages; - } - if ($initialize) { - $this->initialize(); - } - } - - protected function initialize() { - switch ($this->get_server_var('REQUEST_METHOD')) { - case 'OPTIONS': - case 'HEAD': - $this->head(); - break; - case 'GET': - $this->get(); - break; - case 'PATCH': - case 'PUT': - case 'POST': - $this->post(); - break; - case 'DELETE': - $this->delete(); - break; - default: - $this->header('HTTP/1.1 405 Method Not Allowed'); - } - } - - protected function get_full_url() { - $https = !empty($_SERVER['HTTPS']) && strcasecmp($_SERVER['HTTPS'], 'on') === 0; - return - ($https ? 'https://' : 'http://'). - (!empty($_SERVER['REMOTE_USER']) ? $_SERVER['REMOTE_USER'].'@' : ''). - (isset($_SERVER['HTTP_HOST']) ? $_SERVER['HTTP_HOST'] : ($_SERVER['SERVER_NAME']. - ($https && $_SERVER['SERVER_PORT'] === 443 || - $_SERVER['SERVER_PORT'] === 80 ? '' : ':'.$_SERVER['SERVER_PORT']))). - substr($_SERVER['SCRIPT_NAME'],0, strrpos($_SERVER['SCRIPT_NAME'], '/')); - } - - protected function get_user_id() { - @session_start(); - return session_id(); - } - - protected function get_user_path() { - if ($this->options['user_dirs']) { - return $this->get_user_id().'/'; - } - return ''; - } - - protected function get_upload_path($file_name = null, $version = null) { - $file_name = $file_name ? $file_name : ''; - if (empty($version)) { - $version_path = ''; - } else { - $version_dir = @$this->options['image_versions'][$version]['upload_dir']; - if ($version_dir) { - return $version_dir.$this->get_user_path().$file_name; - } - $version_path = $version.'/'; - } - return $this->options['upload_dir'].$this->get_user_path() - .$version_path.$file_name; - } - - protected function get_query_separator($url) { - return strpos($url, '?') === false ? '?' : '&'; - } - - protected function get_download_url($file_name, $version = null, $direct = false) { - if (!$direct && $this->options['download_via_php']) { - $url = $this->options['script_url'] - .$this->get_query_separator($this->options['script_url']) - .$this->get_singular_param_name() - .'='.rawurlencode($file_name); - if ($version) { - $url .= '&version='.rawurlencode($version); - } - return $url.'&download=1'; - } - if (empty($version)) { - $version_path = ''; - } else { - $version_url = @$this->options['image_versions'][$version]['upload_url']; - if ($version_url) { - return $version_url.$this->get_user_path().rawurlencode($file_name); - } - $version_path = rawurlencode($version).'/'; - } - return $this->options['upload_url'].$this->get_user_path() - .$version_path.rawurlencode($file_name); - } - - protected function set_additional_file_properties($file) { - $file->deleteUrl = $this->options['script_url'] - .$this->get_query_separator($this->options['script_url']) - .$this->get_singular_param_name() - .'='.rawurlencode($file->name); - $file->deleteType = $this->options['delete_type']; - if ($file->deleteType !== 'DELETE') { - $file->deleteUrl .= '&_method=DELETE'; - } - if ($this->options['access_control_allow_credentials']) { - $file->deleteWithCredentials = true; - } - } - - // Fix for overflowing signed 32 bit integers, - // works for sizes up to 2^32-1 bytes (4 GiB - 1): - protected function fix_integer_overflow($size) { - if ($size < 0) { - $size += 2.0 * (PHP_INT_MAX + 1); - } - return $size; - } - - protected function get_file_size($file_path, $clear_stat_cache = false) { - if ($clear_stat_cache) { - if (version_compare(PHP_VERSION, '5.3.0') >= 0) { - clearstatcache(true, $file_path); - } else { - clearstatcache(); - } - } - return $this->fix_integer_overflow(filesize($file_path)); - } - - protected function is_valid_file_object($file_name) { - $file_path = $this->get_upload_path($file_name); - if (is_file($file_path) && $file_name[0] !== '.') { - return true; - } - return false; - } - - protected function get_file_object($file_name) { - if ($this->is_valid_file_object($file_name)) { - $file = new stdClass(); - $file->name = $file_name; - $file->size = $this->get_file_size( - $this->get_upload_path($file_name) - ); - $file->url = $this->get_download_url($file->name); - foreach($this->options['image_versions'] as $version => $options) { - if (!empty($version)) { - if (is_file($this->get_upload_path($file_name, $version))) { - $file->{$version.'Url'} = $this->get_download_url( - $file->name, - $version - ); - } - } - } - $this->set_additional_file_properties($file); - return $file; - } - return null; - } - - protected function get_file_objects($iteration_method = 'get_file_object') { - $upload_dir = $this->get_upload_path(); - if (!is_dir($upload_dir)) { - return array(); - } - return array_values(array_filter(array_map( - array($this, $iteration_method), - scandir($upload_dir) - ))); - } - - protected function count_file_objects() { - return count($this->get_file_objects('is_valid_file_object')); - } - - protected function get_error_message($error) { - return array_key_exists($error, $this->error_messages) ? - $this->error_messages[$error] : $error; - } - - function get_config_bytes($val) { - $val = trim($val); - $last = strtolower($val[strlen($val)-1]); - switch($last) { - case 'g': - $val *= 1024; - case 'm': - $val *= 1024; - case 'k': - $val *= 1024; - } - return $this->fix_integer_overflow($val); - } - - protected function validate($uploaded_file, $file, $error, $index) { - if ($error) { - $file->error = $this->get_error_message($error); - return false; - } - $content_length = $this->fix_integer_overflow(intval( - $this->get_server_var('CONTENT_LENGTH') - )); - $post_max_size = $this->get_config_bytes(ini_get('post_max_size')); - if ($post_max_size && ($content_length > $post_max_size)) { - $file->error = $this->get_error_message('post_max_size'); - return false; - } - if (!preg_match($this->options['accept_file_types'], $file->name)) { - $file->error = $this->get_error_message('accept_file_types'); - return false; - } - if ($uploaded_file && is_uploaded_file($uploaded_file)) { - $file_size = $this->get_file_size($uploaded_file); - } else { - $file_size = $content_length; - } - if ($this->options['max_file_size'] && ( - $file_size > $this->options['max_file_size'] || - $file->size > $this->options['max_file_size']) - ) { - $file->error = $this->get_error_message('max_file_size'); - return false; - } - if ($this->options['min_file_size'] && - $file_size < $this->options['min_file_size']) { - $file->error = $this->get_error_message('min_file_size'); - return false; - } - if (is_int($this->options['max_number_of_files']) && ( - $this->count_file_objects() >= $this->options['max_number_of_files']) - ) { - $file->error = $this->get_error_message('max_number_of_files'); - return false; - } - $max_width = @$this->options['max_width']; - $max_height = @$this->options['max_height']; - $min_width = @$this->options['min_width']; - $min_height = @$this->options['min_height']; - if (($max_width || $max_height || $min_width || $min_height)) { - list($img_width, $img_height) = $this->get_image_size($uploaded_file); - } - if (!empty($img_width)) { - if ($max_width && $img_width > $max_width) { - $file->error = $this->get_error_message('max_width'); - return false; - } - if ($max_height && $img_height > $max_height) { - $file->error = $this->get_error_message('max_height'); - return false; - } - if ($min_width && $img_width < $min_width) { - $file->error = $this->get_error_message('min_width'); - return false; - } - if ($min_height && $img_height < $min_height) { - $file->error = $this->get_error_message('min_height'); - return false; - } - } - return true; - } - - protected function upcount_name_callback($matches) { - $index = isset($matches[1]) ? intval($matches[1]) + 1 : 1; - $ext = isset($matches[2]) ? $matches[2] : ''; - return ' ('.$index.')'.$ext; - } - - protected function upcount_name($name) { - return preg_replace_callback( - '/(?:(?: \(([\d]+)\))?(\.[^.]+))?$/', - array($this, 'upcount_name_callback'), - $name, - 1 - ); - } - - protected function get_unique_filename($file_path, $name, $size, $type, $error, - $index, $content_range) { - while(is_dir($this->get_upload_path($name))) { - $name = $this->upcount_name($name); - } - // Keep an existing filename if this is part of a chunked upload: - $uploaded_bytes = $this->fix_integer_overflow(intval($content_range[1])); - while(is_file($this->get_upload_path($name))) { - if ($uploaded_bytes === $this->get_file_size( - $this->get_upload_path($name))) { - break; - } - $name = $this->upcount_name($name); - } - return $name; - } - - protected function trim_file_name($file_path, $name, $size, $type, $error, - $index, $content_range) { - // Remove path information and dots around the filename, to prevent uploading - // into different directories or replacing hidden system files. - // Also remove control characters and spaces (\x00..\x20) around the filename: - $name = trim(basename(stripslashes($name)), ".\x00..\x20"); - // Use a timestamp for empty filenames: - if (!$name) { - $name = str_replace('.', '-', microtime(true)); - } - // Add missing file extension for known image types: - if (strpos($name, '.') === false && - preg_match('/^image\/(gif|jpe?g|png)/', $type, $matches)) { - $name .= '.'.$matches[1]; - } - if (function_exists('exif_imagetype')) { - switch(@exif_imagetype($file_path)){ - case IMAGETYPE_JPEG: - $extensions = array('jpg', 'jpeg'); - break; - case IMAGETYPE_PNG: - $extensions = array('png'); - break; - case IMAGETYPE_GIF: - $extensions = array('gif'); - break; - } - // Adjust incorrect image file extensions: - if (!empty($extensions)) { - $parts = explode('.', $name); - $extIndex = count($parts) - 1; - $ext = strtolower(@$parts[$extIndex]); - if (!in_array($ext, $extensions)) { - $parts[$extIndex] = $extensions[0]; - $name = implode('.', $parts); - } - } - } - return $name; - } - - protected function get_file_name($file_path, $name, $size, $type, $error, - $index, $content_range) { - return $this->get_unique_filename( - $file_path, - $this->trim_file_name($file_path, $name, $size, $type, $error, - $index, $content_range), - $size, - $type, - $error, - $index, - $content_range - ); - } - - protected function handle_form_data($file, $index) { - // Handle form data, e.g. $_REQUEST['description'][$index] - } - - protected function get_scaled_image_file_paths($file_name, $version) { - $file_path = $this->get_upload_path($file_name); - if (!empty($version)) { - $version_dir = $this->get_upload_path(null, $version); - if (!is_dir($version_dir)) { - mkdir($version_dir, $this->options['mkdir_mode'], true); - } - $new_file_path = $version_dir.'/'.$file_name; - } else { - $new_file_path = $file_path; - } - return array($file_path, $new_file_path); - } - - protected function gd_get_image_object($file_path, $func, $no_cache = false) { - if (empty($this->image_objects[$file_path]) || $no_cache) { - $this->gd_destroy_image_object($file_path); - $this->image_objects[$file_path] = $func($file_path); - } - return $this->image_objects[$file_path]; - } - - protected function gd_set_image_object($file_path, $image) { - $this->gd_destroy_image_object($file_path); - $this->image_objects[$file_path] = $image; - } - - protected function gd_destroy_image_object($file_path) { - $image = @$this->image_objects[$file_path]; - return $image && imagedestroy($image); - } - - protected function gd_imageflip($image, $mode) { - if (function_exists('imageflip')) { - return imageflip($image, $mode); - } - $new_width = $src_width = imagesx($image); - $new_height = $src_height = imagesy($image); - $new_img = imagecreatetruecolor($new_width, $new_height); - $src_x = 0; - $src_y = 0; - switch ($mode) { - case '1': // flip on the horizontal axis - $src_y = $new_height - 1; - $src_height = -$new_height; - break; - case '2': // flip on the vertical axis - $src_x = $new_width - 1; - $src_width = -$new_width; - break; - case '3': // flip on both axes - $src_y = $new_height - 1; - $src_height = -$new_height; - $src_x = $new_width - 1; - $src_width = -$new_width; - break; - default: - return $image; - } - imagecopyresampled( - $new_img, - $image, - 0, - 0, - $src_x, - $src_y, - $new_width, - $new_height, - $src_width, - $src_height - ); - return $new_img; - } - - protected function gd_orient_image($file_path, $src_img) { - if (!function_exists('exif_read_data')) { - return false; - } - $exif = @exif_read_data($file_path); - if ($exif === false) { - return false; - } - $orientation = intval(@$exif['Orientation']); - if ($orientation < 2 || $orientation > 8) { - return false; - } - switch ($orientation) { - case 2: - $new_img = $this->gd_imageflip( - $src_img, - defined('IMG_FLIP_VERTICAL') ? IMG_FLIP_VERTICAL : 2 - ); - break; - case 3: - $new_img = imagerotate($src_img, 180, 0); - break; - case 4: - $new_img = $this->gd_imageflip( - $src_img, - defined('IMG_FLIP_HORIZONTAL') ? IMG_FLIP_HORIZONTAL : 1 - ); - break; - case 5: - $tmp_img = $this->gd_imageflip( - $src_img, - defined('IMG_FLIP_HORIZONTAL') ? IMG_FLIP_HORIZONTAL : 1 - ); - $new_img = imagerotate($tmp_img, 270, 0); - imagedestroy($tmp_img); - break; - case 6: - $new_img = imagerotate($src_img, 270, 0); - break; - case 7: - $tmp_img = $this->gd_imageflip( - $src_img, - defined('IMG_FLIP_VERTICAL') ? IMG_FLIP_VERTICAL : 2 - ); - $new_img = imagerotate($tmp_img, 270, 0); - imagedestroy($tmp_img); - break; - case 8: - $new_img = imagerotate($src_img, 90, 0); - break; - default: - return false; - } - $this->gd_set_image_object($file_path, $new_img); - return true; - } - - protected function gd_create_scaled_image($file_name, $version, $options) { - if (!function_exists('imagecreatetruecolor')) { - error_log('Function not found: imagecreatetruecolor'); - return false; - } - list($file_path, $new_file_path) = - $this->get_scaled_image_file_paths($file_name, $version); - $type = strtolower(substr(strrchr($file_name, '.'), 1)); - switch ($type) { - case 'jpg': - case 'jpeg': - $src_func = 'imagecreatefromjpeg'; - $write_func = 'imagejpeg'; - $image_quality = isset($options['jpeg_quality']) ? - $options['jpeg_quality'] : 75; - break; - case 'gif': - $src_func = 'imagecreatefromgif'; - $write_func = 'imagegif'; - $image_quality = null; - break; - case 'png': - $src_func = 'imagecreatefrompng'; - $write_func = 'imagepng'; - $image_quality = isset($options['png_quality']) ? - $options['png_quality'] : 9; - break; - default: - return false; - } - $src_img = $this->gd_get_image_object( - $file_path, - $src_func, - !empty($options['no_cache']) - ); - $image_oriented = false; - if (!empty($options['auto_orient']) && $this->gd_orient_image( - $file_path, - $src_img - )) { - $image_oriented = true; - $src_img = $this->gd_get_image_object( - $file_path, - $src_func - ); - } - $max_width = $img_width = imagesx($src_img); - $max_height = $img_height = imagesy($src_img); - if (!empty($options['max_width'])) { - $max_width = $options['max_width']; - } - if (!empty($options['max_height'])) { - $max_height = $options['max_height']; - } - $scale = min( - $max_width / $img_width, - $max_height / $img_height - ); - if ($scale >= 1) { - if ($image_oriented) { - return $write_func($src_img, $new_file_path, $image_quality); - } - if ($file_path !== $new_file_path) { - return copy($file_path, $new_file_path); - } - return true; - } - if (empty($options['crop'])) { - $new_width = $img_width * $scale; - $new_height = $img_height * $scale; - $dst_x = 0; - $dst_y = 0; - $new_img = imagecreatetruecolor($new_width, $new_height); - } else { - if (($img_width / $img_height) >= ($max_width / $max_height)) { - $new_width = $img_width / ($img_height / $max_height); - $new_height = $max_height; - } else { - $new_width = $max_width; - $new_height = $img_height / ($img_width / $max_width); - } - $dst_x = 0 - ($new_width - $max_width) / 2; - $dst_y = 0 - ($new_height - $max_height) / 2; - $new_img = imagecreatetruecolor($max_width, $max_height); - } - // Handle transparency in GIF and PNG images: - switch ($type) { - case 'gif': - case 'png': - imagecolortransparent($new_img, imagecolorallocate($new_img, 0, 0, 0)); - case 'png': - imagealphablending($new_img, false); - imagesavealpha($new_img, true); - break; - } - $success = imagecopyresampled( - $new_img, - $src_img, - $dst_x, - $dst_y, - 0, - 0, - $new_width, - $new_height, - $img_width, - $img_height - ) && $write_func($new_img, $new_file_path, $image_quality); - $this->gd_set_image_object($file_path, $new_img); - return $success; - } - - protected function imagick_get_image_object($file_path, $no_cache = false) { - if (empty($this->image_objects[$file_path]) || $no_cache) { - $this->imagick_destroy_image_object($file_path); - $image = new Imagick(); - if (!empty($this->options['imagick_resource_limits'])) { - foreach ($this->options['imagick_resource_limits'] as $type => $limit) { - $image->setResourceLimit($type, $limit); - } - } - $image->readImage($file_path); - $this->image_objects[$file_path] = $image; - } - return $this->image_objects[$file_path]; - } - - protected function imagick_set_image_object($file_path, $image) { - $this->imagick_destroy_image_object($file_path); - $this->image_objects[$file_path] = $image; - } - - protected function imagick_destroy_image_object($file_path) { - $image = @$this->image_objects[$file_path]; - return $image && $image->destroy(); - } - - protected function imagick_orient_image($image) { - $orientation = $image->getImageOrientation(); - $background = new ImagickPixel('none'); - switch ($orientation) { - case imagick::ORIENTATION_TOPRIGHT: // 2 - $image->flopImage(); // horizontal flop around y-axis - break; - case imagick::ORIENTATION_BOTTOMRIGHT: // 3 - $image->rotateImage($background, 180); - break; - case imagick::ORIENTATION_BOTTOMLEFT: // 4 - $image->flipImage(); // vertical flip around x-axis - break; - case imagick::ORIENTATION_LEFTTOP: // 5 - $image->flopImage(); // horizontal flop around y-axis - $image->rotateImage($background, 270); - break; - case imagick::ORIENTATION_RIGHTTOP: // 6 - $image->rotateImage($background, 90); - break; - case imagick::ORIENTATION_RIGHTBOTTOM: // 7 - $image->flipImage(); // vertical flip around x-axis - $image->rotateImage($background, 270); - break; - case imagick::ORIENTATION_LEFTBOTTOM: // 8 - $image->rotateImage($background, 270); - break; - default: - return false; - } - $image->setImageOrientation(imagick::ORIENTATION_TOPLEFT); // 1 - return true; - } - - protected function imagick_create_scaled_image($file_name, $version, $options) { - list($file_path, $new_file_path) = - $this->get_scaled_image_file_paths($file_name, $version); - $image = $this->imagick_get_image_object( - $file_path, - !empty($options['no_cache']) - ); - if ($image->getImageFormat() === 'GIF') { - // Handle animated GIFs: - $images = $image->coalesceImages(); - foreach ($images as $frame) { - $image = $frame; - $this->imagick_set_image_object($file_name, $image); - break; - } - } - $image_oriented = false; - if (!empty($options['auto_orient'])) { - $image_oriented = $this->imagick_orient_image($image); - } - $new_width = $max_width = $img_width = $image->getImageWidth(); - $new_height = $max_height = $img_height = $image->getImageHeight(); - if (!empty($options['max_width'])) { - $new_width = $max_width = $options['max_width']; - } - if (!empty($options['max_height'])) { - $new_height = $max_height = $options['max_height']; - } - if (!($image_oriented || $max_width < $img_width || $max_height < $img_height)) { - if ($file_path !== $new_file_path) { - return copy($file_path, $new_file_path); - } - return true; - } - $crop = !empty($options['crop']); - if ($crop) { - $x = 0; - $y = 0; - if (($img_width / $img_height) >= ($max_width / $max_height)) { - $new_width = 0; // Enables proportional scaling based on max_height - $x = ($img_width / ($img_height / $max_height) - $max_width) / 2; - } else { - $new_height = 0; // Enables proportional scaling based on max_width - $y = ($img_height / ($img_width / $max_width) - $max_height) / 2; - } - } - $success = $image->resizeImage( - $new_width, - $new_height, - isset($options['filter']) ? $options['filter'] : imagick::FILTER_LANCZOS, - isset($options['blur']) ? $options['blur'] : 1, - $new_width && $new_height // fit image into constraints if not to be cropped - ); - if ($success && $crop) { - $success = $image->cropImage( - $max_width, - $max_height, - $x, - $y - ); - if ($success) { - $success = $image->setImagePage($max_width, $max_height, 0, 0); - } - } - $type = strtolower(substr(strrchr($file_name, '.'), 1)); - switch ($type) { - case 'jpg': - case 'jpeg': - if (!empty($options['jpeg_quality'])) { - $image->setImageCompression(Imagick::COMPRESSION_JPEG); - $image->setImageCompressionQuality($options['jpeg_quality']); - } - break; - } - if (!empty($options['strip'])) { - $image->stripImage(); - } - return $success && $image->writeImage($new_file_path); - } - - protected function imagemagick_create_scaled_image($file_name, $version, $options) { - list($file_path, $new_file_path) = - $this->get_scaled_image_file_paths($file_name, $version); - $resize = @$options['max_width'] - .(empty($options['max_height']) ? '' : 'x'.$options['max_height']); - if (!$resize && empty($options['auto_orient'])) { - if ($file_path !== $new_file_path) { - return copy($file_path, $new_file_path); - } - return true; - } - $cmd = $this->options['convert_bin']; - if (!empty($this->options['convert_params'])) { - $cmd .= ' '.$this->options['convert_params']; - } - $cmd .= ' '.escapeshellarg($file_path); - if (!empty($options['auto_orient'])) { - $cmd .= ' -auto-orient'; - } - if ($resize) { - // Handle animated GIFs: - $cmd .= ' -coalesce'; - if (empty($options['crop'])) { - $cmd .= ' -resize '.escapeshellarg($resize.'>'); - } else { - $cmd .= ' -resize '.escapeshellarg($resize.'^'); - $cmd .= ' -gravity center'; - $cmd .= ' -crop '.escapeshellarg($resize.'+0+0'); - } - // Make sure the page dimensions are correct (fixes offsets of animated GIFs): - $cmd .= ' +repage'; - } - if (!empty($options['convert_params'])) { - $cmd .= ' '.$options['convert_params']; - } - $cmd .= ' '.escapeshellarg($new_file_path); - exec($cmd, $output, $error); - if ($error) { - error_log(implode('\n', $output)); - return false; - } - return true; - } - - protected function get_image_size($file_path) { - if ($this->options['image_library']) { - if (extension_loaded('imagick')) { - $image = new Imagick(); - try { - if (@$image->pingImage($file_path)) { - $dimensions = array($image->getImageWidth(), $image->getImageHeight()); - $image->destroy(); - return $dimensions; - } - return false; - } catch (Exception $e) { - error_log($e->getMessage()); - } - } - if ($this->options['image_library'] === 2) { - $cmd = $this->options['identify_bin']; - $cmd .= ' -ping '.escapeshellarg($file_path); - exec($cmd, $output, $error); - if (!$error && !empty($output)) { - // image.jpg JPEG 1920x1080 1920x1080+0+0 8-bit sRGB 465KB 0.000u 0:00.000 - $infos = preg_split('/\s+/', $output[0]); - $dimensions = preg_split('/x/', $infos[2]); - return $dimensions; - } - return false; - } - } - if (!function_exists('getimagesize')) { - error_log('Function not found: getimagesize'); - return false; - } - return @getimagesize($file_path); - } - - protected function create_scaled_image($file_name, $version, $options) { - if ($this->options['image_library'] === 2) { - return $this->imagemagick_create_scaled_image($file_name, $version, $options); - } - if ($this->options['image_library'] && extension_loaded('imagick')) { - return $this->imagick_create_scaled_image($file_name, $version, $options); - } - return $this->gd_create_scaled_image($file_name, $version, $options); - } - - protected function destroy_image_object($file_path) { - if ($this->options['image_library'] && extension_loaded('imagick')) { - return $this->imagick_destroy_image_object($file_path); - } - } - - protected function is_valid_image_file($file_path) { - if (!preg_match($this->options['image_file_types'], $file_path)) { - return false; - } - if (function_exists('exif_imagetype')) { - return @exif_imagetype($file_path); - } - $image_info = $this->get_image_size($file_path); - return $image_info && $image_info[0] && $image_info[1]; - } - - protected function handle_image_file($file_path, $file) { - $failed_versions = array(); - foreach($this->options['image_versions'] as $version => $options) { - if ($this->create_scaled_image($file->name, $version, $options)) { - if (!empty($version)) { - $file->{$version.'Url'} = $this->get_download_url( - $file->name, - $version - ); - } else { - $file->size = $this->get_file_size($file_path, true); - } - } else { - $failed_versions[] = $version ? $version : 'original'; - } - } - if (count($failed_versions)) { - $file->error = $this->get_error_message('image_resize') - .' ('.implode($failed_versions,', ').')'; - } - // Free memory: - $this->destroy_image_object($file_path); - } - - protected function handle_file_upload($uploaded_file, $name, $size, $type, $error, - $index = null, $content_range = null) { - $file = new stdClass(); - $file->name = $this->get_file_name($uploaded_file, $name, $size, $type, $error, - $index, $content_range); - $file->size = $this->fix_integer_overflow(intval($size)); - $file->type = $type; - if ($this->validate($uploaded_file, $file, $error, $index)) { - $this->handle_form_data($file, $index); - $upload_dir = $this->get_upload_path(); - if (!is_dir($upload_dir)) { - mkdir($upload_dir, $this->options['mkdir_mode'], true); - } - $file_path = $this->get_upload_path($file->name); - $append_file = $content_range && is_file($file_path) && - $file->size > $this->get_file_size($file_path); - if ($uploaded_file && is_uploaded_file($uploaded_file)) { - // multipart/formdata uploads (POST method uploads) - if ($append_file) { - file_put_contents( - $file_path, - fopen($uploaded_file, 'r'), - FILE_APPEND - ); - } else { - move_uploaded_file($uploaded_file, $file_path); - } - } else { - // Non-multipart uploads (PUT method support) - file_put_contents( - $file_path, - fopen('php://input', 'r'), - $append_file ? FILE_APPEND : 0 - ); - } - $file_size = $this->get_file_size($file_path, $append_file); - if ($file_size === $file->size) { - $file->url = $this->get_download_url($file->name); - if ($this->is_valid_image_file($file_path)) { - $this->handle_image_file($file_path, $file); - } - } else { - $file->size = $file_size; - if (!$content_range && $this->options['discard_aborted_uploads']) { - unlink($file_path); - $file->error = $this->get_error_message('abort'); - } - } - $this->set_additional_file_properties($file); - } - return $file; - } - - protected function readfile($file_path) { - $file_size = $this->get_file_size($file_path); - $chunk_size = $this->options['readfile_chunk_size']; - if ($chunk_size && $file_size > $chunk_size) { - $handle = fopen($file_path, 'rb'); - while (!feof($handle)) { - echo fread($handle, $chunk_size); - ob_flush(); - flush(); - } - fclose($handle); - return $file_size; - } - return readfile($file_path); - } - - protected function body($str) { - echo $str; - } - - protected function header($str) { - header($str); - } - - protected function get_server_var($id) { - return isset($_SERVER[$id]) ? $_SERVER[$id] : ''; - } - - protected function generate_response($content, $print_response = true) { - if ($print_response) { - $json = json_encode($content); - $redirect = isset($_REQUEST['redirect']) ? - stripslashes($_REQUEST['redirect']) : null; - if ($redirect) { - $this->header('Location: '.sprintf($redirect, rawurlencode($json))); - return; - } - $this->head(); - if ($this->get_server_var('HTTP_CONTENT_RANGE')) { - $files = isset($content[$this->options['param_name']]) ? - $content[$this->options['param_name']] : null; - if ($files && is_array($files) && is_object($files[0]) && $files[0]->size) { - $this->header('Range: 0-'.( - $this->fix_integer_overflow(intval($files[0]->size)) - 1 - )); - } - } - $this->body($json); - } - return $content; - } - - protected function get_version_param() { - return isset($_GET['version']) ? basename(stripslashes($_GET['version'])) : null; - } - - protected function get_singular_param_name() { - return substr($this->options['param_name'], 0, -1); - } - - protected function get_file_name_param() { - $name = $this->get_singular_param_name(); - return isset($_GET[$name]) ? basename(stripslashes($_GET[$name])) : null; - } - - protected function get_file_names_params() { - $params = isset($_GET[$this->options['param_name']]) ? - $_GET[$this->options['param_name']] : array(); - foreach ($params as $key => $value) { - $params[$key] = basename(stripslashes($value)); - } - return $params; - } - - protected function get_file_type($file_path) { - switch (strtolower(pathinfo($file_path, PATHINFO_EXTENSION))) { - case 'jpeg': - case 'jpg': - return 'image/jpeg'; - case 'png': - return 'image/png'; - case 'gif': - return 'image/gif'; - default: - return ''; - } - } - - protected function download() { - switch ($this->options['download_via_php']) { - case 1: - $redirect_header = null; - break; - case 2: - $redirect_header = 'X-Sendfile'; - break; - case 3: - $redirect_header = 'X-Accel-Redirect'; - break; - default: - return $this->header('HTTP/1.1 403 Forbidden'); - } - $file_name = $this->get_file_name_param(); - if (!$this->is_valid_file_object($file_name)) { - return $this->header('HTTP/1.1 404 Not Found'); - } - if ($redirect_header) { - return $this->header( - $redirect_header.': '.$this->get_download_url( - $file_name, - $this->get_version_param(), - true - ) - ); - } - $file_path = $this->get_upload_path($file_name, $this->get_version_param()); - // Prevent browsers from MIME-sniffing the content-type: - $this->header('X-Content-Type-Options: nosniff'); - if (!preg_match($this->options['inline_file_types'], $file_name)) { - $this->header('Content-Type: application/octet-stream'); - $this->header('Content-Disposition: attachment; filename="'.$file_name.'"'); - } else { - $this->header('Content-Type: '.$this->get_file_type($file_path)); - $this->header('Content-Disposition: inline; filename="'.$file_name.'"'); - } - $this->header('Content-Length: '.$this->get_file_size($file_path)); - $this->header('Last-Modified: '.gmdate('D, d M Y H:i:s T', filemtime($file_path))); - $this->readfile($file_path); - } - - protected function send_content_type_header() { - $this->header('Vary: Accept'); - if (strpos($this->get_server_var('HTTP_ACCEPT'), 'application/json') !== false) { - $this->header('Content-type: application/json'); - } else { - $this->header('Content-type: text/plain'); - } - } - - protected function send_access_control_headers() { - $this->header('Access-Control-Allow-Origin: '.$this->options['access_control_allow_origin']); - $this->header('Access-Control-Allow-Credentials: ' - .($this->options['access_control_allow_credentials'] ? 'true' : 'false')); - $this->header('Access-Control-Allow-Methods: ' - .implode(', ', $this->options['access_control_allow_methods'])); - $this->header('Access-Control-Allow-Headers: ' - .implode(', ', $this->options['access_control_allow_headers'])); - } - - public function head() { - $this->header('Pragma: no-cache'); - $this->header('Cache-Control: no-store, no-cache, must-revalidate'); - $this->header('Content-Disposition: inline; filename="files.json"'); - // Prevent Internet Explorer from MIME-sniffing the content-type: - $this->header('X-Content-Type-Options: nosniff'); - if ($this->options['access_control_allow_origin']) { - $this->send_access_control_headers(); - } - $this->send_content_type_header(); - } - - public function get($print_response = true) { - if ($print_response && isset($_GET['download'])) { - return $this->download(); - } - $file_name = $this->get_file_name_param(); - if ($file_name) { - $response = array( - $this->get_singular_param_name() => $this->get_file_object($file_name) - ); - } else { - $response = array( - $this->options['param_name'] => $this->get_file_objects() - ); - } - return $this->generate_response($response, $print_response); - } - - public function post($print_response = true) { - if (isset($_REQUEST['_method']) && $_REQUEST['_method'] === 'DELETE') { - return $this->delete($print_response); - } - $upload = isset($_FILES[$this->options['param_name']]) ? - $_FILES[$this->options['param_name']] : null; - // Parse the Content-Disposition header, if available: - $file_name = $this->get_server_var('HTTP_CONTENT_DISPOSITION') ? - rawurldecode(preg_replace( - '/(^[^"]+")|("$)/', - '', - $this->get_server_var('HTTP_CONTENT_DISPOSITION') - )) : null; - // Parse the Content-Range header, which has the following form: - // Content-Range: bytes 0-524287/2000000 - $content_range = $this->get_server_var('HTTP_CONTENT_RANGE') ? - preg_split('/[^0-9]+/', $this->get_server_var('HTTP_CONTENT_RANGE')) : null; - $size = $content_range ? $content_range[3] : null; - $files = array(); - if ($upload && is_array($upload['tmp_name'])) { - // param_name is an array identifier like "files[]", - // $_FILES is a multi-dimensional array: - foreach ($upload['tmp_name'] as $index => $value) { - $files[] = $this->handle_file_upload( - $upload['tmp_name'][$index], - $file_name ? $file_name : $upload['name'][$index], - $size ? $size : $upload['size'][$index], - $upload['type'][$index], - $upload['error'][$index], - $index, - $content_range - ); - } - } else { - // param_name is a single object identifier like "file", - // $_FILES is a one-dimensional array: - $files[] = $this->handle_file_upload( - isset($upload['tmp_name']) ? $upload['tmp_name'] : null, - $file_name ? $file_name : (isset($upload['name']) ? - $upload['name'] : null), - $size ? $size : (isset($upload['size']) ? - $upload['size'] : $this->get_server_var('CONTENT_LENGTH')), - isset($upload['type']) ? - $upload['type'] : $this->get_server_var('CONTENT_TYPE'), - isset($upload['error']) ? $upload['error'] : null, - null, - $content_range - ); - } - return $this->generate_response( - array($this->options['param_name'] => $files), - $print_response - ); - } - - public function delete($print_response = true) { - $file_names = $this->get_file_names_params(); - if (empty($file_names)) { - $file_names = array($this->get_file_name_param()); - } - $response = array(); - foreach($file_names as $file_name) { - $file_path = $this->get_upload_path($file_name); - $success = is_file($file_path) && $file_name[0] !== '.' && unlink($file_path); - if ($success) { - foreach($this->options['image_versions'] as $version => $options) { - if (!empty($version)) { - $file = $this->get_upload_path($file_name, $version); - if (is_file($file)) { - unlink($file); - } - } - } - } - $response[$file_name] = $success; - } - return $this->generate_response($response, $print_response); - } - -} diff --git a/library/jqupload/server/php/files/.gitignore b/library/jqupload/server/php/files/.gitignore deleted file mode 100644 index e24a60fae..000000000 --- a/library/jqupload/server/php/files/.gitignore +++ /dev/null @@ -1,3 +0,0 @@ -* -!.gitignore -!.htaccess diff --git a/library/jqupload/server/php/files/.htaccess b/library/jqupload/server/php/files/.htaccess deleted file mode 100644 index 56689f0bb..000000000 --- a/library/jqupload/server/php/files/.htaccess +++ /dev/null @@ -1,18 +0,0 @@ -# The following directives force the content-type application/octet-stream -# and force browsers to display a download dialog for non-image files. -# This prevents the execution of script files in the context of the website: -ForceType application/octet-stream -Header set Content-Disposition attachment - - ForceType none - Header unset Content-Disposition - - -# The following directive prevents browsers from MIME-sniffing the content-type. -# This is an important complement to the ForceType directive above: -Header set X-Content-Type-Options nosniff - -# Uncomment the following lines to prevent unauthorized download of files: -#AuthName "Authorization required" -#AuthType Basic -#require valid-user diff --git a/library/jqupload/server/php/index.php b/library/jqupload/server/php/index.php deleted file mode 100644 index be29bf479..000000000 --- a/library/jqupload/server/php/index.php +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - -jQuery File Upload Plugin Test - - - - -

    jQuery File Upload Plugin Test

    -

    -
    -

    -
      -
      - -
      - -
      -
      - - - - Add files... - - - - - - - - -
      - -
      - -
      -
      -
      - -
       
      -
      -
      - - -
      -
      - - - - - - - - - - - - - - - - - - - - - - - diff --git a/library/jqupload/test/test.js b/library/jqupload/test/test.js deleted file mode 100644 index 72d08d99e..000000000 --- a/library/jqupload/test/test.js +++ /dev/null @@ -1,1288 +0,0 @@ -/* - * jQuery File Upload Plugin Test 9.4.0 - * https://github.com/blueimp/jQuery-File-Upload - * - * Copyright 2010, Sebastian Tschan - * https://blueimp.net - * - * Licensed under the MIT license: - * http://www.opensource.org/licenses/MIT - */ - -/* global $, QUnit, window, document, expect, module, test, asyncTest, start, ok, strictEqual, notStrictEqual */ - -$(function () { - // jshint nomen:false - 'use strict'; - - QUnit.done = function () { - // Delete all uploaded files: - var url = $('#fileupload').prop('action'); - $.getJSON(url, function (result) { - $.each(result.files, function (index, file) { - $.ajax({ - url: url + '?file=' + encodeURIComponent(file.name), - type: 'DELETE' - }); - }); - }); - }; - - var lifecycle = { - setup: function () { - // Set the .fileupload method to the basic widget method: - $.widget('blueimp.fileupload', window.testBasicWidget, {}); - }, - teardown: function () { - // Remove all remaining event listeners: - $(document).unbind(); - } - }, - lifecycleUI = { - setup: function () { - // Set the .fileupload method to the UI widget method: - $.widget('blueimp.fileupload', window.testUIWidget, {}); - }, - teardown: function () { - // Remove all remaining event listeners: - $(document).unbind(); - } - }; - - module('Initialization', lifecycle); - - test('Widget initialization', function () { - var fu = $('#fileupload').fileupload(); - ok(fu.data('blueimp-fileupload') || fu.data('fileupload')); - }); - - test('Data attribute options', function () { - $('#fileupload').attr('data-url', 'http://example.org'); - $('#fileupload').fileupload(); - strictEqual( - $('#fileupload').fileupload('option', 'url'), - 'http://example.org' - ); - }); - - test('File input initialization', function () { - var fu = $('#fileupload').fileupload(); - ok( - fu.fileupload('option', 'fileInput').length, - 'File input field inside of the widget' - ); - ok( - fu.fileupload('option', 'fileInput').length, - 'Widget element as file input field' - ); - }); - - test('Drop zone initialization', function () { - ok($('#fileupload').fileupload() - .fileupload('option', 'dropZone').length); - }); - - test('Paste zone initialization', function () { - ok($('#fileupload').fileupload() - .fileupload('option', 'pasteZone').length); - }); - - test('Event listeners initialization', function () { - expect( - $.support.xhrFormDataFileUpload ? 4 : 1 - ); - var eo = { - originalEvent: { - dataTransfer: {files: [{}], types: ['Files']}, - clipboardData: {items: [{}]} - } - }, - fu = $('#fileupload').fileupload({ - dragover: function () { - ok(true, 'Triggers dragover callback'); - return false; - }, - drop: function () { - ok(true, 'Triggers drop callback'); - return false; - }, - paste: function () { - ok(true, 'Triggers paste callback'); - return false; - }, - change: function () { - ok(true, 'Triggers change callback'); - return false; - } - }), - fileInput = fu.fileupload('option', 'fileInput'), - dropZone = fu.fileupload('option', 'dropZone'), - pasteZone = fu.fileupload('option', 'pasteZone'); - fileInput.trigger($.Event('change', eo)); - dropZone.trigger($.Event('dragover', eo)); - dropZone.trigger($.Event('drop', eo)); - pasteZone.trigger($.Event('paste', eo)); - }); - - module('API', lifecycle); - - test('destroy', function () { - expect(4); - var eo = { - originalEvent: { - dataTransfer: {files: [{}], types: ['Files']}, - clipboardData: {items: [{}]} - } - }, - options = { - dragover: function () { - ok(true, 'Triggers dragover callback'); - return false; - }, - drop: function () { - ok(true, 'Triggers drop callback'); - return false; - }, - paste: function () { - ok(true, 'Triggers paste callback'); - return false; - }, - change: function () { - ok(true, 'Triggers change callback'); - return false; - } - }, - fu = $('#fileupload').fileupload(options), - fileInput = fu.fileupload('option', 'fileInput'), - dropZone = fu.fileupload('option', 'dropZone'), - pasteZone = fu.fileupload('option', 'pasteZone'); - dropZone.bind('dragover', options.dragover); - dropZone.bind('drop', options.drop); - pasteZone.bind('paste', options.paste); - fileInput.bind('change', options.change); - fu.fileupload('destroy'); - fileInput.trigger($.Event('change', eo)); - dropZone.trigger($.Event('dragover', eo)); - dropZone.trigger($.Event('drop', eo)); - pasteZone.trigger($.Event('paste', eo)); - }); - - test('disable/enable', function () { - expect( - $.support.xhrFormDataFileUpload ? 4 : 1 - ); - var eo = { - originalEvent: { - dataTransfer: {files: [{}], types: ['Files']}, - clipboardData: {items: [{}]} - } - }, - fu = $('#fileupload').fileupload({ - dragover: function () { - ok(true, 'Triggers dragover callback'); - return false; - }, - drop: function () { - ok(true, 'Triggers drop callback'); - return false; - }, - paste: function () { - ok(true, 'Triggers paste callback'); - return false; - }, - change: function () { - ok(true, 'Triggers change callback'); - return false; - } - }), - fileInput = fu.fileupload('option', 'fileInput'), - dropZone = fu.fileupload('option', 'dropZone'), - pasteZone = fu.fileupload('option', 'pasteZone'); - fu.fileupload('disable'); - fileInput.trigger($.Event('change', eo)); - dropZone.trigger($.Event('dragover', eo)); - dropZone.trigger($.Event('drop', eo)); - pasteZone.trigger($.Event('paste', eo)); - fu.fileupload('enable'); - fileInput.trigger($.Event('change', eo)); - dropZone.trigger($.Event('dragover', eo)); - dropZone.trigger($.Event('drop', eo)); - pasteZone.trigger($.Event('paste', eo)); - }); - - test('option', function () { - expect( - $.support.xhrFormDataFileUpload ? 10 : 7 - ); - var eo = { - originalEvent: { - dataTransfer: {files: [{}], types: ['Files']}, - clipboardData: {items: [{}]} - } - }, - fu = $('#fileupload').fileupload({ - dragover: function () { - ok(true, 'Triggers dragover callback'); - return false; - }, - drop: function () { - ok(true, 'Triggers drop callback'); - return false; - }, - paste: function () { - ok(true, 'Triggers paste callback'); - return false; - }, - change: function () { - ok(true, 'Triggers change callback'); - return false; - } - }), - fileInput = fu.fileupload('option', 'fileInput'), - dropZone = fu.fileupload('option', 'dropZone'), - pasteZone = fu.fileupload('option', 'pasteZone'); - fu.fileupload('option', 'fileInput', null); - fu.fileupload('option', 'dropZone', null); - fu.fileupload('option', 'pasteZone', null); - fileInput.trigger($.Event('change', eo)); - dropZone.trigger($.Event('dragover', eo)); - dropZone.trigger($.Event('drop', eo)); - pasteZone.trigger($.Event('paste', eo)); - fu.fileupload('option', 'dropZone', 'body'); - strictEqual( - fu.fileupload('option', 'dropZone')[0], - document.body, - 'Allow a query string as parameter for the dropZone option' - ); - fu.fileupload('option', 'dropZone', document); - strictEqual( - fu.fileupload('option', 'dropZone')[0], - document, - 'Allow a document element as parameter for the dropZone option' - ); - fu.fileupload('option', 'pasteZone', 'body'); - strictEqual( - fu.fileupload('option', 'pasteZone')[0], - document.body, - 'Allow a query string as parameter for the pasteZone option' - ); - fu.fileupload('option', 'pasteZone', document); - strictEqual( - fu.fileupload('option', 'pasteZone')[0], - document, - 'Allow a document element as parameter for the pasteZone option' - ); - fu.fileupload('option', 'fileInput', ':file'); - strictEqual( - fu.fileupload('option', 'fileInput')[0], - $(':file')[0], - 'Allow a query string as parameter for the fileInput option' - ); - fu.fileupload('option', 'fileInput', $(':file')[0]); - strictEqual( - fu.fileupload('option', 'fileInput')[0], - $(':file')[0], - 'Allow a document element as parameter for the fileInput option' - ); - fu.fileupload('option', 'fileInput', fileInput); - fu.fileupload('option', 'dropZone', dropZone); - fu.fileupload('option', 'pasteZone', pasteZone); - fileInput.trigger($.Event('change', eo)); - dropZone.trigger($.Event('dragover', eo)); - dropZone.trigger($.Event('drop', eo)); - pasteZone.trigger($.Event('paste', eo)); - }); - - asyncTest('add', function () { - expect(2); - var param = {files: [{name: 'test'}]}; - $('#fileupload').fileupload({ - add: function (e, data) { - strictEqual( - data.files[0].name, - param.files[0].name, - 'Triggers add callback' - ); - } - }).fileupload('add', param).fileupload( - 'option', - 'add', - function (e, data) { - data.submit().complete(function () { - ok(true, 'data.submit() Returns a jqXHR object'); - start(); - }); - } - ).fileupload('add', param); - }); - - asyncTest('send', function () { - expect(3); - var param = {files: [{name: 'test'}]}; - $('#fileupload').fileupload({ - send: function (e, data) { - strictEqual( - data.files[0].name, - 'test', - 'Triggers send callback' - ); - } - }).fileupload('send', param).fail(function () { - ok(true, 'Allows to abort the request'); - }).complete(function () { - ok(true, 'Returns a jqXHR object'); - start(); - }).abort(); - }); - - module('Callbacks', lifecycle); - - asyncTest('add', function () { - expect(1); - var param = {files: [{name: 'test'}]}; - $('#fileupload').fileupload({ - add: function () { - ok(true, 'Triggers add callback'); - start(); - } - }).fileupload('add', param); - }); - - asyncTest('submit', function () { - expect(1); - var param = {files: [{name: 'test'}]}; - $('#fileupload').fileupload({ - submit: function () { - ok(true, 'Triggers submit callback'); - start(); - return false; - } - }).fileupload('add', param); - }); - - asyncTest('send', function () { - expect(1); - var param = {files: [{name: 'test'}]}; - $('#fileupload').fileupload({ - send: function () { - ok(true, 'Triggers send callback'); - start(); - return false; - } - }).fileupload('send', param); - }); - - asyncTest('done', function () { - expect(1); - var param = {files: [{name: 'test'}]}; - $('#fileupload').fileupload({ - done: function () { - ok(true, 'Triggers done callback'); - start(); - } - }).fileupload('send', param); - }); - - asyncTest('fail', function () { - expect(1); - var param = {files: [{name: 'test'}]}, - fu = $('#fileupload').fileupload({ - url: '404', - fail: function () { - ok(true, 'Triggers fail callback'); - start(); - } - }); - (fu.data('blueimp-fileupload') || fu.data('fileupload')) - ._isXHRUpload = function () { - return true; - }; - fu.fileupload('send', param); - }); - - asyncTest('always', function () { - expect(2); - var param = {files: [{name: 'test'}]}, - counter = 0, - fu = $('#fileupload').fileupload({ - always: function () { - ok(true, 'Triggers always callback'); - if (counter === 1) { - start(); - } else { - counter += 1; - } - } - }); - (fu.data('blueimp-fileupload') || fu.data('fileupload')) - ._isXHRUpload = function () { - return true; - }; - fu.fileupload('add', param).fileupload( - 'option', - 'url', - '404' - ).fileupload('add', param); - }); - - asyncTest('progress', function () { - expect(1); - var param = {files: [{name: 'test'}]}, - counter = 0; - $('#fileupload').fileupload({ - forceIframeTransport: true, - progress: function () { - ok(true, 'Triggers progress callback'); - if (counter === 0) { - start(); - } else { - counter += 1; - } - } - }).fileupload('send', param); - }); - - asyncTest('progressall', function () { - expect(1); - var param = {files: [{name: 'test'}]}, - counter = 0; - $('#fileupload').fileupload({ - forceIframeTransport: true, - progressall: function () { - ok(true, 'Triggers progressall callback'); - if (counter === 0) { - start(); - } else { - counter += 1; - } - } - }).fileupload('send', param); - }); - - asyncTest('start', function () { - expect(1); - var param = {files: [{name: '1'}, {name: '2'}]}, - active = 0; - $('#fileupload').fileupload({ - send: function () { - active += 1; - }, - start: function () { - ok(!active, 'Triggers start callback before uploads'); - start(); - } - }).fileupload('send', param); - }); - - asyncTest('stop', function () { - expect(1); - var param = {files: [{name: '1'}, {name: '2'}]}, - active = 0; - $('#fileupload').fileupload({ - send: function () { - active += 1; - }, - always: function () { - active -= 1; - }, - stop: function () { - ok(!active, 'Triggers stop callback after uploads'); - start(); - } - }).fileupload('send', param); - }); - - test('change', function () { - var fu = $('#fileupload').fileupload(), - fuo = fu.data('blueimp-fileupload') || fu.data('fileupload'), - fileInput = fu.fileupload('option', 'fileInput'); - expect(2); - fu.fileupload({ - change: function (e, data) { - ok(true, 'Triggers change callback'); - strictEqual( - data.files.length, - 0, - 'Returns empty files list' - ); - }, - add: $.noop - }); - fuo._onChange({ - data: {fileupload: fuo}, - target: fileInput[0] - }); - }); - - test('paste', function () { - var fu = $('#fileupload').fileupload(), - fuo = fu.data('blueimp-fileupload') || fu.data('fileupload'); - expect(1); - fu.fileupload({ - paste: function () { - ok(true, 'Triggers paste callback'); - }, - add: $.noop - }); - fuo._onPaste({ - data: {fileupload: fuo}, - originalEvent: { - dataTransfer: {files: [{}]}, - clipboardData: {items: [{}]} - }, - preventDefault: $.noop - }); - }); - - test('drop', function () { - var fu = $('#fileupload').fileupload(), - fuo = fu.data('blueimp-fileupload') || fu.data('fileupload'); - expect(1); - fu.fileupload({ - drop: function () { - ok(true, 'Triggers drop callback'); - }, - add: $.noop - }); - fuo._onDrop({ - data: {fileupload: fuo}, - originalEvent: { - dataTransfer: {files: [{}]}, - clipboardData: {items: [{}]} - }, - preventDefault: $.noop - }); - }); - - test('dragover', function () { - var fu = $('#fileupload').fileupload(), - fuo = fu.data('blueimp-fileupload') || fu.data('fileupload'); - expect(1); - fu.fileupload({ - dragover: function () { - ok(true, 'Triggers dragover callback'); - }, - add: $.noop - }); - fuo._onDragOver({ - data: {fileupload: fuo}, - originalEvent: {dataTransfer: {types: ['Files']}}, - preventDefault: $.noop - }); - }); - - module('Options', lifecycle); - - test('paramName', function () { - expect(1); - var param = {files: [{name: 'test'}]}; - $('#fileupload').fileupload({ - paramName: null, - send: function (e, data) { - strictEqual( - data.paramName[0], - data.fileInput.prop('name'), - 'Takes paramName from file input field if not set' - ); - return false; - } - }).fileupload('send', param); - }); - - test('url', function () { - expect(1); - var param = {files: [{name: 'test'}]}; - $('#fileupload').fileupload({ - url: null, - send: function (e, data) { - strictEqual( - data.url, - $(data.fileInput.prop('form')).prop('action'), - 'Takes url from form action if not set' - ); - return false; - } - }).fileupload('send', param); - }); - - test('type', function () { - expect(2); - var param = {files: [{name: 'test'}]}; - $('#fileupload').fileupload({ - type: null, - send: function (e, data) { - strictEqual( - data.type, - 'POST', - 'Request type is "POST" if not set to "PUT"' - ); - return false; - } - }).fileupload('send', param); - $('#fileupload').fileupload({ - type: 'PUT', - send: function (e, data) { - strictEqual( - data.type, - 'PUT', - 'Request type is "PUT" if set to "PUT"' - ); - return false; - } - }).fileupload('send', param); - }); - - test('replaceFileInput', function () { - var fu = $('#fileupload').fileupload(), - fuo = fu.data('blueimp-fileupload') || fu.data('fileupload'), - fileInput = fu.fileupload('option', 'fileInput'), - fileInputElement = fileInput[0]; - expect(2); - fu.fileupload({ - replaceFileInput: false, - change: function () { - strictEqual( - fu.fileupload('option', 'fileInput')[0], - fileInputElement, - 'Keeps file input with replaceFileInput: false' - ); - }, - add: $.noop - }); - fuo._onChange({ - data: {fileupload: fuo}, - target: fileInput[0] - }); - fu.fileupload({ - replaceFileInput: true, - change: function () { - notStrictEqual( - fu.fileupload('option', 'fileInput')[0], - fileInputElement, - 'Replaces file input with replaceFileInput: true' - ); - }, - add: $.noop - }); - fuo._onChange({ - data: {fileupload: fuo}, - target: fileInput[0] - }); - }); - - asyncTest('forceIframeTransport', function () { - expect(1); - var param = {files: [{name: 'test'}]}; - $('#fileupload').fileupload({ - forceIframeTransport: true, - done: function (e, data) { - strictEqual( - data.dataType.substr(0, 6), - 'iframe', - 'Iframe Transport is used' - ); - start(); - } - }).fileupload('send', param); - }); - - test('singleFileUploads', function () { - expect(3); - var fu = $('#fileupload').fileupload(), - param = {files: [{name: '1'}, {name: '2'}]}, - index = 1; - (fu.data('blueimp-fileupload') || fu.data('fileupload')) - ._isXHRUpload = function () { - return true; - }; - $('#fileupload').fileupload({ - singleFileUploads: true, - add: function () { - ok(true, 'Triggers callback number ' + index.toString()); - index += 1; - } - }).fileupload('add', param).fileupload( - 'option', - 'singleFileUploads', - false - ).fileupload('add', param); - }); - - test('limitMultiFileUploads', function () { - expect(3); - var fu = $('#fileupload').fileupload(), - param = {files: [ - {name: '1'}, - {name: '2'}, - {name: '3'}, - {name: '4'}, - {name: '5'} - ]}, - index = 1; - (fu.data('blueimp-fileupload') || fu.data('fileupload')) - ._isXHRUpload = function () { - return true; - }; - $('#fileupload').fileupload({ - singleFileUploads: false, - limitMultiFileUploads: 2, - add: function () { - ok(true, 'Triggers callback number ' + index.toString()); - index += 1; - } - }).fileupload('add', param); - }); - - test('limitMultiFileUploadSize', function () { - expect(7); - var fu = $('#fileupload').fileupload(), - param = {files: [ - {name: '1-1', size: 100000}, - {name: '1-2', size: 40000}, - {name: '2-1', size: 100000}, - {name: '3-1', size: 50000}, - {name: '3-2', size: 40000}, - {name: '4-1', size: 45000} // New request due to limitMultiFileUploads - ]}, - param2 = {files: [ - {name: '5-1'}, - {name: '5-2'}, - {name: '6-1'}, - {name: '6-2'}, - {name: '7-1'} - ]}, - index = 1; - (fu.data('blueimp-fileupload') || fu.data('fileupload')) - ._isXHRUpload = function () { - return true; - }; - $('#fileupload').fileupload({ - singleFileUploads: false, - limitMultiFileUploads: 2, - limitMultiFileUploadSize: 150000, - limitMultiFileUploadSizeOverhead: 5000, - add: function () { - ok(true, 'Triggers callback number ' + index.toString()); - index += 1; - } - }).fileupload('add', param).fileupload('add', param2); - }); - - asyncTest('sequentialUploads', function () { - expect(6); - var param = {files: [ - {name: '1'}, - {name: '2'}, - {name: '3'}, - {name: '4'}, - {name: '5'}, - {name: '6'} - ]}, - addIndex = 0, - sendIndex = 0, - loadIndex = 0, - fu = $('#fileupload').fileupload({ - sequentialUploads: true, - add: function (e, data) { - addIndex += 1; - if (addIndex === 4) { - data.submit().abort(); - } else { - data.submit(); - } - }, - send: function () { - sendIndex += 1; - }, - done: function () { - loadIndex += 1; - strictEqual(sendIndex, loadIndex, 'upload in order'); - }, - fail: function (e, data) { - strictEqual(data.errorThrown, 'abort', 'upload aborted'); - }, - stop: function () { - start(); - } - }); - (fu.data('blueimp-fileupload') || fu.data('fileupload')) - ._isXHRUpload = function () { - return true; - }; - fu.fileupload('add', param); - }); - - asyncTest('limitConcurrentUploads', function () { - expect(12); - var param = {files: [ - {name: '1'}, - {name: '2'}, - {name: '3'}, - {name: '4'}, - {name: '5'}, - {name: '6'}, - {name: '7'}, - {name: '8'}, - {name: '9'}, - {name: '10'}, - {name: '11'}, - {name: '12'} - ]}, - addIndex = 0, - sendIndex = 0, - loadIndex = 0, - fu = $('#fileupload').fileupload({ - limitConcurrentUploads: 3, - add: function (e, data) { - addIndex += 1; - if (addIndex === 4) { - data.submit().abort(); - } else { - data.submit(); - } - }, - send: function () { - sendIndex += 1; - }, - done: function () { - loadIndex += 1; - ok(sendIndex - loadIndex < 3); - }, - fail: function (e, data) { - strictEqual(data.errorThrown, 'abort', 'upload aborted'); - }, - stop: function () { - start(); - } - }); - (fu.data('blueimp-fileupload') || fu.data('fileupload')) - ._isXHRUpload = function () { - return true; - }; - fu.fileupload('add', param); - }); - - if ($.support.xhrFileUpload) { - asyncTest('multipart', function () { - expect(2); - var param = {files: [{ - name: 'test.png', - size: 123, - type: 'image/png' - }]}, - fu = $('#fileupload').fileupload({ - multipart: false, - always: function (e, data) { - strictEqual( - data.contentType, - param.files[0].type, - 'non-multipart upload sets file type as contentType' - ); - strictEqual( - data.headers['Content-Disposition'], - 'attachment; filename="' + param.files[0].name + '"', - 'non-multipart upload sets Content-Disposition header' - ); - start(); - } - }); - fu.fileupload('send', param); - }); - } - - module('UI Initialization', lifecycleUI); - - test('Widget initialization', function () { - var fu = $('#fileupload').fileupload(); - ok(fu.data('blueimp-fileupload') || fu.data('fileupload')); - ok( - $('#fileupload').fileupload('option', 'uploadTemplate').length, - 'Initialized upload template' - ); - ok( - $('#fileupload').fileupload('option', 'downloadTemplate').length, - 'Initialized download template' - ); - }); - - test('Buttonbar event listeners', function () { - var buttonbar = $('#fileupload .fileupload-buttonbar'), - files = [{name: 'test'}]; - expect(4); - $('#fileupload').fileupload({ - send: function () { - ok(true, 'Started file upload via global start button'); - }, - fail: function (e, data) { - ok(true, 'Canceled file upload via global cancel button'); - data.context.remove(); - }, - destroy: function () { - ok(true, 'Delete action called via global delete button'); - } - }); - $('#fileupload').fileupload('add', {files: files}); - buttonbar.find('.cancel').click(); - $('#fileupload').fileupload('add', {files: files}); - buttonbar.find('.start').click(); - buttonbar.find('.cancel').click(); - files[0].deleteUrl = 'http://example.org/banana.jpg'; - ($('#fileupload').data('blueimp-fileupload') || - $('#fileupload').data('fileupload')) - ._renderDownload(files) - .appendTo($('#fileupload .files')).show() - .find('.toggle').click(); - buttonbar.find('.delete').click(); - }); - - module('UI API', lifecycleUI); - - test('destroy', function () { - var buttonbar = $('#fileupload .fileupload-buttonbar'), - files = [{name: 'test'}]; - expect(1); - $('#fileupload').fileupload({ - send: function () { - ok(true, 'This test should not run'); - return false; - } - }) - .fileupload('add', {files: files}) - .fileupload('destroy'); - buttonbar.find('.start').click(function () { - ok(true, 'Clicked global start button'); - return false; - }).click(); - }); - - test('disable/enable', function () { - var buttonbar = $('#fileupload .fileupload-buttonbar'); - $('#fileupload').fileupload(); - $('#fileupload').fileupload('disable'); - strictEqual( - buttonbar.find('input[type=file], button').not(':disabled').length, - 0, - 'Disables the buttonbar buttons' - ); - $('#fileupload').fileupload('enable'); - strictEqual( - buttonbar.find('input[type=file], button').not(':disabled').length, - 4, - 'Enables the buttonbar buttons' - ); - }); - - module('UI Callbacks', lifecycleUI); - - test('destroy', function () { - expect(3); - $('#fileupload').fileupload({ - destroy: function (e, data) { - ok(true, 'Triggers destroy callback'); - strictEqual( - data.url, - 'test', - 'Passes over deletion url parameter' - ); - strictEqual( - data.type, - 'DELETE', - 'Passes over deletion request type parameter' - ); - } - }); - ($('#fileupload').data('blueimp-fileupload') || - $('#fileupload').data('fileupload')) - ._renderDownload([{ - name: 'test', - deleteUrl: 'test', - deleteType: 'DELETE' - }]) - .appendTo($('#fileupload .files')) - .show() - .find('.toggle').click(); - $('#fileupload .fileupload-buttonbar .delete').click(); - }); - - asyncTest('added', function () { - expect(1); - var param = {files: [{name: 'test'}]}; - $('#fileupload').fileupload({ - added: function (e, data) { - start(); - strictEqual( - data.files[0].name, - param.files[0].name, - 'Triggers added callback' - ); - }, - send: function () { - return false; - } - }).fileupload('add', param); - }); - - asyncTest('started', function () { - expect(1); - var param = {files: [{name: 'test'}]}; - $('#fileupload').fileupload({ - started: function () { - start(); - ok('Triggers started callback'); - return false; - }, - sent: function () { - return false; - } - }).fileupload('send', param); - }); - - asyncTest('sent', function () { - expect(1); - var param = {files: [{name: 'test'}]}; - $('#fileupload').fileupload({ - sent: function (e, data) { - start(); - strictEqual( - data.files[0].name, - param.files[0].name, - 'Triggers sent callback' - ); - return false; - } - }).fileupload('send', param); - }); - - asyncTest('completed', function () { - expect(1); - var param = {files: [{name: 'test'}]}; - $('#fileupload').fileupload({ - completed: function () { - start(); - ok('Triggers completed callback'); - return false; - } - }).fileupload('send', param); - }); - - asyncTest('failed', function () { - expect(1); - var param = {files: [{name: 'test'}]}; - $('#fileupload').fileupload({ - failed: function () { - start(); - ok('Triggers failed callback'); - return false; - } - }).fileupload('send', param).abort(); - }); - - asyncTest('stopped', function () { - expect(1); - var param = {files: [{name: 'test'}]}; - $('#fileupload').fileupload({ - stopped: function () { - start(); - ok('Triggers stopped callback'); - return false; - } - }).fileupload('send', param); - }); - - asyncTest('destroyed', function () { - expect(1); - $('#fileupload').fileupload({ - dataType: 'html', - destroyed: function () { - start(); - ok(true, 'Triggers destroyed callback'); - } - }); - ($('#fileupload').data('blueimp-fileupload') || - $('#fileupload').data('fileupload')) - ._renderDownload([{ - name: 'test', - deleteUrl: '.', - deleteType: 'GET' - }]) - .appendTo($('#fileupload .files')) - .show() - .find('.toggle').click(); - $('#fileupload .fileupload-buttonbar .delete').click(); - }); - - module('UI Options', lifecycleUI); - - test('autoUpload', function () { - expect(1); - $('#fileupload') - .fileupload({ - autoUpload: true, - send: function () { - ok(true, 'Started file upload automatically'); - return false; - } - }) - .fileupload('add', {files: [{name: 'test'}]}) - .fileupload('option', 'autoUpload', false) - .fileupload('add', {files: [{name: 'test'}]}); - }); - - test('maxNumberOfFiles', function () { - expect(3); - var addIndex = 0, - sendIndex = 0; - $('#fileupload') - .fileupload({ - autoUpload: true, - maxNumberOfFiles: 3, - singleFileUploads: false, - send: function () { - strictEqual( - sendIndex += 1, - addIndex - ); - }, - progress: $.noop, - progressall: $.noop, - done: $.noop, - stop: $.noop - }) - .fileupload('add', {files: [{name: (addIndex += 1)}]}) - .fileupload('add', {files: [{name: (addIndex += 1)}]}) - .fileupload('add', {files: [{name: (addIndex += 1)}]}) - .fileupload('add', {files: [{name: 'test'}]}); - }); - - test('maxFileSize', function () { - expect(2); - var addIndex = 0, - sendIndex = 0; - $('#fileupload') - .fileupload({ - autoUpload: true, - maxFileSize: 1000, - send: function () { - strictEqual( - sendIndex += 1, - addIndex - ); - return false; - } - }) - .fileupload('add', {files: [{ - name: (addIndex += 1) - }]}) - .fileupload('add', {files: [{ - name: (addIndex += 1), - size: 999 - }]}) - .fileupload('add', {files: [{ - name: 'test', - size: 1001 - }]}) - .fileupload({ - send: function (e, data) { - ok( - !$.blueimp.fileupload.prototype.options - .send.call(this, e, data) - ); - return false; - } - }); - }); - - test('minFileSize', function () { - expect(2); - var addIndex = 0, - sendIndex = 0; - $('#fileupload') - .fileupload({ - autoUpload: true, - minFileSize: 1000, - send: function () { - strictEqual( - sendIndex += 1, - addIndex - ); - return false; - } - }) - .fileupload('add', {files: [{ - name: (addIndex += 1) - }]}) - .fileupload('add', {files: [{ - name: (addIndex += 1), - size: 1001 - }]}) - .fileupload('add', {files: [{ - name: 'test', - size: 999 - }]}) - .fileupload({ - send: function (e, data) { - ok( - !$.blueimp.fileupload.prototype.options - .send.call(this, e, data) - ); - return false; - } - }); - }); - - test('acceptFileTypes', function () { - expect(2); - var addIndex = 0, - sendIndex = 0; - $('#fileupload') - .fileupload({ - autoUpload: true, - acceptFileTypes: /(\.|\/)(gif|jpe?g|png)$/i, - disableImageMetaDataLoad: true, - send: function () { - strictEqual( - sendIndex += 1, - addIndex - ); - return false; - } - }) - .fileupload('add', {files: [{ - name: (addIndex += 1) + '.jpg' - }]}) - .fileupload('add', {files: [{ - name: (addIndex += 1), - type: 'image/jpeg' - }]}) - .fileupload('add', {files: [{ - name: 'test.txt', - type: 'text/plain' - }]}) - .fileupload({ - send: function (e, data) { - ok( - !$.blueimp.fileupload.prototype.options - .send.call(this, e, data) - ); - return false; - } - }); - }); - - test('acceptFileTypes as HTML5 data attribute', function () { - expect(2); - var regExp = /(\.|\/)(gif|jpe?g|png)$/i; - $('#fileupload') - .attr('data-accept-file-types', regExp.toString()) - .fileupload(); - strictEqual( - $.type($('#fileupload').fileupload('option', 'acceptFileTypes')), - $.type(regExp) - ); - strictEqual( - $('#fileupload').fileupload('option', 'acceptFileTypes').toString(), - regExp.toString() - ); - }); - -}); From 3de055bf65582e68e1d48658dde256d6031ab436 Mon Sep 17 00:00:00 2001 From: Mario Date: Fri, 26 Oct 2018 06:16:16 +0000 Subject: [PATCH 787/819] Merge branch 'dev' into 'dev' New strings in Spanish translation See merge request hubzilla/core!1349 (cherry picked from commit df449e7bfeb529c858007c7145f5587e87d87aa6) 802a7ff3 New strings in Spanish translation --- view/es-es/hmessages.po | 916 +++++++++++++++++++++------------------- view/es-es/hstrings.php | 43 +- 2 files changed, 516 insertions(+), 443 deletions(-) diff --git a/view/es-es/hmessages.po b/view/es-es/hmessages.po index a57d634bc..8965fc956 100644 --- a/view/es-es/hmessages.po +++ b/view/es-es/hmessages.po @@ -3,7 +3,7 @@ # This file is distributed under the same license as the hubzilla package. # # Translators: -# alfonsomthd , 2015 +# Alfonso Martínez , 2015 # inboxwall , 2015 # jeroenpraat , 2015 # Manuel Jiménez Friaza , 2017-2018 @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: hubzilla\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-06 17:07+0200\n" -"PO-Revision-Date: 2018-10-11 10:13+0000\n" +"POT-Creation-Date: 2018-10-19 11:04+0200\n" +"PO-Revision-Date: 2018-10-24 11:35+0000\n" "Last-Translator: Manuel Jiménez Friaza \n" "Language-Team: Spanish (Spain) (http://www.transifex.com/Friendica/hubzilla/language/es_ES/)\n" "MIME-Version: 1.0\n" @@ -158,9 +158,9 @@ msgstr "Especial - Repositorio de grupo" #: ../../Zotlabs/Access/PermissionRoles.php:306 #: ../../Zotlabs/Module/Cdav.php:1227 ../../Zotlabs/Module/Connedit.php:919 -#: ../../Zotlabs/Module/Profiles.php:795 ../../include/selectors.php:49 -#: ../../include/selectors.php:66 ../../include/selectors.php:104 -#: ../../include/selectors.php:140 ../../include/event.php:1315 +#: ../../Zotlabs/Module/Profiles.php:795 ../../include/selectors.php:60 +#: ../../include/selectors.php:77 ../../include/selectors.php:115 +#: ../../include/selectors.php:151 ../../include/event.php:1315 #: ../../include/event.php:1322 ../../include/connections.php:703 #: ../../include/connections.php:710 msgid "Other" @@ -202,7 +202,7 @@ msgstr "El perfil solicitado no está disponible." #: ../../Zotlabs/Module/Mood.php:124 ../../Zotlabs/Module/Connections.php:32 #: ../../Zotlabs/Module/Viewsrc.php:19 ../../Zotlabs/Module/Bookmarks.php:70 #: ../../Zotlabs/Module/Photos.php:69 ../../Zotlabs/Module/Wiki.php:59 -#: ../../Zotlabs/Module/Wiki.php:282 ../../Zotlabs/Module/Wiki.php:415 +#: ../../Zotlabs/Module/Wiki.php:285 ../../Zotlabs/Module/Wiki.php:428 #: ../../Zotlabs/Module/Pdledit.php:34 ../../Zotlabs/Module/Poke.php:157 #: ../../Zotlabs/Module/Profile_photo.php:302 #: ../../Zotlabs/Module/Profile_photo.php:315 @@ -229,7 +229,7 @@ msgstr "El perfil solicitado no está disponible." #: ../../Zotlabs/Module/Register.php:77 #: ../../Zotlabs/Module/Cover_photo.php:313 #: ../../Zotlabs/Module/Cover_photo.php:326 -#: ../../Zotlabs/Module/Display.php:449 ../../Zotlabs/Module/Network.php:17 +#: ../../Zotlabs/Module/Display.php:448 ../../Zotlabs/Module/Network.php:17 #: ../../Zotlabs/Module/Filestorage.php:15 #: ../../Zotlabs/Module/Filestorage.php:70 #: ../../Zotlabs/Module/Filestorage.php:96 @@ -291,7 +291,7 @@ msgstr "Crear" #: ../../Zotlabs/Module/Connections.php:284 #: ../../Zotlabs/Module/Connections.php:322 #: ../../Zotlabs/Module/Connections.php:342 ../../Zotlabs/Module/Wiki.php:211 -#: ../../Zotlabs/Module/Wiki.php:371 ../../Zotlabs/Module/Menu.php:175 +#: ../../Zotlabs/Module/Wiki.php:384 ../../Zotlabs/Module/Menu.php:175 #: ../../Zotlabs/Module/Layouts.php:193 ../../Zotlabs/Module/Group.php:235 #: ../../Zotlabs/Module/Editwebpage.php:142 #: ../../Zotlabs/Module/Webpages.php:255 ../../Zotlabs/Module/Card_edit.php:99 @@ -304,7 +304,7 @@ msgid "Edit" msgstr "Editar" #: ../../Zotlabs/Module/Blocks.php:161 ../../Zotlabs/Module/Photos.php:1104 -#: ../../Zotlabs/Module/Wiki.php:296 ../../Zotlabs/Module/Layouts.php:194 +#: ../../Zotlabs/Module/Wiki.php:301 ../../Zotlabs/Module/Layouts.php:194 #: ../../Zotlabs/Module/Webpages.php:256 ../../Zotlabs/Widget/Cdav.php:124 #: ../../addon/hsse/hsse.php:186 ../../include/conversation.php:1389 msgid "Share" @@ -330,7 +330,7 @@ msgid "Delete" msgstr "Eliminar" #: ../../Zotlabs/Module/Blocks.php:166 ../../Zotlabs/Module/Events.php:695 -#: ../../Zotlabs/Module/Wiki.php:213 ../../Zotlabs/Module/Wiki.php:396 +#: ../../Zotlabs/Module/Wiki.php:213 ../../Zotlabs/Module/Wiki.php:409 #: ../../Zotlabs/Module/Layouts.php:198 ../../Zotlabs/Module/Webpages.php:261 #: ../../Zotlabs/Module/Pubsites.php:60 msgid "View" @@ -448,7 +448,7 @@ msgstr "3. Pulse [conectar]" #: ../../Zotlabs/Module/Admin/Profs.php:178 #: ../../Zotlabs/Module/Admin/Account_edit.php:73 #: ../../Zotlabs/Module/Admin/Security.php:112 -#: ../../Zotlabs/Module/Settings/Channel.php:511 +#: ../../Zotlabs/Module/Settings/Channel.php:493 #: ../../Zotlabs/Module/Settings/Features.php:46 #: ../../Zotlabs/Module/Settings/Events.php:41 #: ../../Zotlabs/Module/Settings/Calendar.php:41 @@ -456,10 +456,10 @@ msgstr "3. Pulse [conectar]" #: ../../Zotlabs/Module/Settings/Connections.php:41 #: ../../Zotlabs/Module/Settings/Photos.php:41 #: ../../Zotlabs/Module/Settings/Account.php:103 -#: ../../Zotlabs/Module/Settings/Profiles.php:41 +#: ../../Zotlabs/Module/Settings/Profiles.php:50 #: ../../Zotlabs/Module/Settings/Manage.php:41 #: ../../Zotlabs/Module/Settings/Featured.php:54 -#: ../../Zotlabs/Module/Settings/Channel_home.php:61 +#: ../../Zotlabs/Module/Settings/Channel_home.php:89 #: ../../Zotlabs/Module/Settings/Directory.php:41 #: ../../Zotlabs/Module/Settings/Editor.php:41 #: ../../Zotlabs/Module/Settings/Display.php:189 @@ -473,7 +473,7 @@ msgstr "3. Pulse [conectar]" #: ../../Zotlabs/Module/Poke.php:217 ../../Zotlabs/Module/Connedit.php:888 #: ../../Zotlabs/Module/Chat.php:211 ../../Zotlabs/Module/Chat.php:250 #: ../../Zotlabs/Module/Email_validation.php:40 -#: ../../Zotlabs/Module/Pconfig.php:107 ../../Zotlabs/Module/Defperms.php:265 +#: ../../Zotlabs/Module/Pconfig.php:111 ../../Zotlabs/Module/Defperms.php:265 #: ../../Zotlabs/Module/Group.php:140 ../../Zotlabs/Module/Group.php:156 #: ../../Zotlabs/Module/Profiles.php:723 ../../Zotlabs/Module/Editpost.php:85 #: ../../Zotlabs/Module/Sources.php:125 ../../Zotlabs/Module/Sources.php:162 @@ -481,8 +481,8 @@ msgstr "3. Pulse [conectar]" #: ../../Zotlabs/Module/Filestorage.php:183 ../../Zotlabs/Module/Rate.php:166 #: ../../Zotlabs/Module/Oauth.php:111 ../../Zotlabs/Lib/ThreadItem.php:767 #: ../../Zotlabs/Widget/Eventstools.php:16 -#: ../../Zotlabs/Widget/Wiki_pages.php:40 -#: ../../Zotlabs/Widget/Wiki_pages.php:97 +#: ../../Zotlabs/Widget/Wiki_pages.php:42 +#: ../../Zotlabs/Widget/Wiki_pages.php:99 #: ../../view/theme/redbasic_c/php/config.php:95 #: ../../view/theme/redbasic/php/config.php:94 #: ../../addon/skeleton/skeleton.php:65 ../../addon/planets/planets.php:153 @@ -513,7 +513,7 @@ msgstr "3. Pulse [conectar]" #: ../../addon/cart/Settings/Cart.php:114 ../../addon/cart/cart.php:1263 #: ../../addon/cart/submodules/manualcat.php:248 #: ../../addon/cart/submodules/hzservices.php:640 -#: ../../addon/cart/submodules/subscriptions.php:401 +#: ../../addon/cart/submodules/subscriptions.php:410 #: ../../addon/piwik/piwik.php:95 ../../addon/pageheader/pageheader.php:48 #: ../../addon/xmpp/xmpp.php:69 ../../addon/pumpio/pumpio.php:237 #: ../../addon/redfiles/redfiles.php:124 ../../addon/hubwall/hubwall.php:95 @@ -534,7 +534,7 @@ msgid "Add Article" msgstr "Añadir un artículo" #: ../../Zotlabs/Module/Articles.php:214 ../../Zotlabs/Lib/Apps.php:302 -#: ../../include/nav.php:477 +#: ../../include/nav.php:482 msgid "Articles" msgstr "Artículos" @@ -567,8 +567,8 @@ msgstr "Modificar la plantilla" #: ../../Zotlabs/Module/Article_edit.php:131 #: ../../Zotlabs/Module/Admin/Addons.php:423 #: ../../Zotlabs/Module/Oauth2.php:117 ../../Zotlabs/Module/Oauth2.php:145 -#: ../../Zotlabs/Module/Editblock.php:141 ../../Zotlabs/Module/Wiki.php:356 -#: ../../Zotlabs/Module/Wiki.php:388 +#: ../../Zotlabs/Module/Editblock.php:141 ../../Zotlabs/Module/Wiki.php:368 +#: ../../Zotlabs/Module/Wiki.php:401 #: ../../Zotlabs/Module/Profile_photo.php:465 #: ../../Zotlabs/Module/Connedit.php:925 ../../Zotlabs/Module/Fbrowser.php:66 #: ../../Zotlabs/Module/Fbrowser.php:88 ../../Zotlabs/Module/Profiles.php:801 @@ -633,7 +633,7 @@ msgstr "Resumen: " #: ../../Zotlabs/Lib/Activity.php:858 ../../Zotlabs/Lib/Apps.php:994 #: ../../Zotlabs/Lib/Apps.php:1078 ../../Zotlabs/Storage/Browser.php:164 #: ../../Zotlabs/Widget/Portfolio.php:95 ../../Zotlabs/Widget/Album.php:84 -#: ../../addon/pubcrawl/as.php:964 ../../include/conversation.php:1166 +#: ../../addon/pubcrawl/as.php:963 ../../include/conversation.php:1166 msgid "Unknown" msgstr "Desconocido" @@ -769,7 +769,7 @@ msgstr "¡Disculpas! La edición de eventos recurrentes aún no se ha implementa #: ../../Zotlabs/Module/Wiki.php:218 ../../Zotlabs/Module/Connedit.php:907 #: ../../Zotlabs/Module/Chat.php:259 ../../Zotlabs/Module/Group.php:144 #: ../../Zotlabs/Module/Oauth.php:113 ../../Zotlabs/Module/Oauth.php:139 -#: ../../Zotlabs/Lib/NativeWikiPage.php:558 +#: ../../Zotlabs/Lib/NativeWikiPage.php:561 #: ../../Zotlabs/Storage/Browser.php:285 #: ../../Zotlabs/Widget/Wiki_page_history.php:22 #: ../../addon/rendezvous/rendezvous.php:172 @@ -795,7 +795,7 @@ msgstr "Teléfono" #: ../../Zotlabs/Module/Connedit.php:911 ../../Zotlabs/Module/Profiles.php:787 #: ../../addon/openid/MysqlProvider.php:56 #: ../../addon/openid/MysqlProvider.php:57 ../../addon/rtof/rtof.php:93 -#: ../../addon/redred/redred.php:107 ../../include/network.php:1769 +#: ../../addon/redred/redred.php:107 ../../include/network.php:1779 msgid "Email" msgstr "Correo electrónico" @@ -983,7 +983,7 @@ msgstr "Buscar resultados para:" msgid "Reset form" msgstr "Reiniciar el formulario" -#: ../../Zotlabs/Module/Channel.php:424 ../../Zotlabs/Module/Display.php:375 +#: ../../Zotlabs/Module/Channel.php:424 ../../Zotlabs/Module/Display.php:374 msgid "" "You must enable javascript for your browser to be able to view this content." msgstr "Debe habilitar javascript para poder ver este contenido en su navegador." @@ -1204,7 +1204,7 @@ msgid "Menu Item Permissions" msgstr "Permisos del elemento del menú" #: ../../Zotlabs/Module/Mitem.php:168 ../../Zotlabs/Module/Mitem.php:247 -#: ../../Zotlabs/Module/Settings/Channel.php:544 +#: ../../Zotlabs/Module/Settings/Channel.php:526 msgid "(click to open/close)" msgstr "(pulsar para abrir o cerrar)" @@ -1229,7 +1229,7 @@ msgstr "Usar la autenticación mágica si está disponible" #: ../../Zotlabs/Module/Events.php:472 ../../Zotlabs/Module/Events.php:473 #: ../../Zotlabs/Module/Removeme.php:63 #: ../../Zotlabs/Module/Admin/Site.php:255 -#: ../../Zotlabs/Module/Settings/Channel.php:315 +#: ../../Zotlabs/Module/Settings/Channel.php:309 #: ../../Zotlabs/Module/Settings/Display.php:89 #: ../../Zotlabs/Module/Import.php:554 ../../Zotlabs/Module/Import.php:558 #: ../../Zotlabs/Module/Import.php:559 ../../Zotlabs/Module/Api.php:99 @@ -1284,7 +1284,7 @@ msgstr "Usar la autenticación mágica si está disponible" #: ../../addon/cart/submodules/hzservices.php:646 #: ../../addon/cart/submodules/hzservices.php:650 #: ../../addon/cart/submodules/subscriptions.php:153 -#: ../../addon/cart/submodules/subscriptions.php:416 +#: ../../addon/cart/submodules/subscriptions.php:425 #: ../../addon/xmpp/xmpp.php:53 ../../addon/pumpio/pumpio.php:219 #: ../../addon/pumpio/pumpio.php:223 ../../addon/pumpio/pumpio.php:227 #: ../../addon/pumpio/pumpio.php:231 ../../include/dir_fns.php:143 @@ -1297,7 +1297,7 @@ msgstr "No" #: ../../Zotlabs/Module/Events.php:472 ../../Zotlabs/Module/Events.php:473 #: ../../Zotlabs/Module/Removeme.php:63 #: ../../Zotlabs/Module/Admin/Site.php:257 -#: ../../Zotlabs/Module/Settings/Channel.php:315 +#: ../../Zotlabs/Module/Settings/Channel.php:309 #: ../../Zotlabs/Module/Settings/Display.php:89 #: ../../Zotlabs/Module/Import.php:554 ../../Zotlabs/Module/Import.php:558 #: ../../Zotlabs/Module/Import.php:559 ../../Zotlabs/Module/Api.php:98 @@ -1351,7 +1351,7 @@ msgstr "No" #: ../../addon/cart/submodules/hzservices.php:646 #: ../../addon/cart/submodules/hzservices.php:650 #: ../../addon/cart/submodules/subscriptions.php:153 -#: ../../addon/cart/submodules/subscriptions.php:416 +#: ../../addon/cart/submodules/subscriptions.php:425 #: ../../addon/xmpp/xmpp.php:53 ../../addon/pumpio/pumpio.php:219 #: ../../addon/pumpio/pumpio.php:223 ../../addon/pumpio/pumpio.php:227 #: ../../addon/pumpio/pumpio.php:231 ../../include/dir_fns.php:143 @@ -1651,14 +1651,14 @@ msgstr "Servidor no encontrado" #: ../../Zotlabs/Module/Subthread.php:111 ../../Zotlabs/Module/Tagger.php:69 #: ../../Zotlabs/Module/Like.php:384 ../../Zotlabs/Lib/Activity.php:1570 #: ../../addon/redphotos/redphotohelper.php:71 -#: ../../addon/diaspora/Receiver.php:1539 ../../addon/pubcrawl/as.php:1512 +#: ../../addon/diaspora/Receiver.php:1539 ../../addon/pubcrawl/as.php:1511 #: ../../include/conversation.php:116 ../../include/text.php:2028 msgid "photo" msgstr "foto" #: ../../Zotlabs/Module/Subthread.php:111 ../../Zotlabs/Module/Like.php:384 #: ../../Zotlabs/Lib/Activity.php:1570 ../../addon/diaspora/Receiver.php:1539 -#: ../../addon/pubcrawl/as.php:1512 ../../include/conversation.php:144 +#: ../../addon/pubcrawl/as.php:1511 ../../include/conversation.php:144 #: ../../include/text.php:2034 msgid "status" msgstr "el mensaje de estado " @@ -1745,7 +1745,7 @@ msgstr "Ha creado %1$.0f de %2$.0f canales permitidos." #: ../../Zotlabs/Module/New_channel.php:157 #: ../../Zotlabs/Module/New_channel.php:164 #: ../../Zotlabs/Module/Connedit.php:853 ../../Zotlabs/Module/Defperms.php:256 -#: ../../Zotlabs/Widget/Notifications.php:162 ../../include/nav.php:288 +#: ../../Zotlabs/Widget/Notifications.php:162 ../../include/nav.php:293 msgid "Loading" msgstr "Cargando" @@ -1777,7 +1777,7 @@ msgid "Choose a short nickname" msgstr "Elija un alias corto" #: ../../Zotlabs/Module/New_channel.php:178 -#: ../../Zotlabs/Module/Settings/Channel.php:555 +#: ../../Zotlabs/Module/Settings/Channel.php:535 #: ../../Zotlabs/Module/Register.php:261 msgid "Channel role and privacy" msgstr "Clase de canal y privacidad" @@ -1855,7 +1855,7 @@ msgid "" msgstr "Por defecto, solo la instancia del canal alojado en este servidor será eliminado de la red" #: ../../Zotlabs/Module/Removeme.php:64 -#: ../../Zotlabs/Module/Settings/Channel.php:617 +#: ../../Zotlabs/Module/Settings/Channel.php:594 msgid "Remove Channel" msgstr "Eliminar el canal" @@ -2694,7 +2694,7 @@ msgstr "Permitir código" msgid "Disallow Code" msgstr "No permitir código" -#: ../../Zotlabs/Module/Admin/Channels.php:154 ../../include/nav.php:386 +#: ../../Zotlabs/Module/Admin/Channels.php:154 ../../include/nav.php:391 msgid "Channel" msgstr "Canal" @@ -2725,7 +2725,7 @@ msgstr "No se han encontrado temas." #: ../../Zotlabs/Module/Admin/Themes.php:72 #: ../../Zotlabs/Module/Admin/Addons.php:259 ../../Zotlabs/Module/Thing.php:94 #: ../../Zotlabs/Module/Viewsrc.php:25 ../../Zotlabs/Module/Display.php:45 -#: ../../Zotlabs/Module/Display.php:453 +#: ../../Zotlabs/Module/Display.php:452 #: ../../Zotlabs/Module/Filestorage.php:24 ../../Zotlabs/Module/Admin.php:62 #: ../../include/items.php:3587 msgid "Item not found." @@ -2786,7 +2786,7 @@ msgstr "Ajustes del sitio actualizados." #: ../../Zotlabs/Module/Admin/Site.php:187 #: ../../view/theme/redbasic_c/php/config.php:15 -#: ../../view/theme/redbasic/php/config.php:15 ../../include/text.php:3085 +#: ../../view/theme/redbasic/php/config.php:15 ../../include/text.php:3087 msgid "Default" msgstr "Predeterminado" @@ -2969,9 +2969,9 @@ msgstr "Página personal que se mostrará a los visitantes (por defecto: la pág #: ../../Zotlabs/Module/Admin/Site.php:314 msgid "" -"example: 'public' to show public stream, 'page/sys/home' to show a system " -"webpage called 'home' or 'include:home.html' to include a file." -msgstr "ejemplo: 'public' para mostrar contenido público, 'page/sys/home' para mostrar la página web definida como \"home\" o 'include:home.html' para mostrar el contenido de un fichero." +"example: 'pubstream' to show public stream, 'page/sys/home' to show a system" +" webpage called 'home' or 'include:home.html' to include a file." +msgstr "ejemplo: 'pubstream' para mostrar el stream público, 'page/sys/home' para mostrar una página web del sistema llamada 'home' o 'include:home.html' para incluir un archivo." #: ../../Zotlabs/Module/Admin/Site.php:315 msgid "Preserve site homepage URL" @@ -3594,12 +3594,12 @@ msgstr "Se ha eliminado el comentario" #: ../../Zotlabs/Module/Settings/Channel.php:78 #: ../../Zotlabs/Module/Settings/Channel.php:89 #: ../../Zotlabs/Module/Connedit.php:712 ../../Zotlabs/Widget/Affinity.php:24 -#: ../../include/selectors.php:123 ../../include/channel.php:444 +#: ../../include/selectors.php:134 ../../include/channel.php:444 #: ../../include/channel.php:445 ../../include/channel.php:452 msgid "Friends" msgstr "Amigos/as" -#: ../../Zotlabs/Module/Settings/Channel.php:272 +#: ../../Zotlabs/Module/Settings/Channel.php:266 #: ../../Zotlabs/Module/Defperms.php:111 #: ../../addon/rendezvous/rendezvous.php:82 #: ../../addon/openstreetmap/openstreetmap.php:184 @@ -3609,414 +3609,402 @@ msgstr "Amigos/as" msgid "Settings updated." msgstr "Ajustes actualizados." -#: ../../Zotlabs/Module/Settings/Channel.php:333 +#: ../../Zotlabs/Module/Settings/Channel.php:327 msgid "Nobody except yourself" msgstr "Nadie excepto usted" -#: ../../Zotlabs/Module/Settings/Channel.php:334 +#: ../../Zotlabs/Module/Settings/Channel.php:328 msgid "Only those you specifically allow" msgstr "Solo aquellos a los que usted permita explícitamente" -#: ../../Zotlabs/Module/Settings/Channel.php:335 +#: ../../Zotlabs/Module/Settings/Channel.php:329 msgid "Approved connections" msgstr "Conexiones aprobadas" -#: ../../Zotlabs/Module/Settings/Channel.php:336 +#: ../../Zotlabs/Module/Settings/Channel.php:330 msgid "Any connections" msgstr "Cualquier conexión" -#: ../../Zotlabs/Module/Settings/Channel.php:337 +#: ../../Zotlabs/Module/Settings/Channel.php:331 msgid "Anybody on this website" msgstr "Cualquiera en este sitio web" -#: ../../Zotlabs/Module/Settings/Channel.php:338 +#: ../../Zotlabs/Module/Settings/Channel.php:332 msgid "Anybody in this network" msgstr "Cualquiera en esta red" -#: ../../Zotlabs/Module/Settings/Channel.php:339 +#: ../../Zotlabs/Module/Settings/Channel.php:333 msgid "Anybody authenticated" msgstr "Cualquiera que esté autenticado" -#: ../../Zotlabs/Module/Settings/Channel.php:340 +#: ../../Zotlabs/Module/Settings/Channel.php:334 msgid "Anybody on the internet" msgstr "Cualquiera en internet" -#: ../../Zotlabs/Module/Settings/Channel.php:415 +#: ../../Zotlabs/Module/Settings/Channel.php:409 msgid "Publish your default profile in the network directory" msgstr "Publicar su perfil principal en el directorio de la red" -#: ../../Zotlabs/Module/Settings/Channel.php:420 +#: ../../Zotlabs/Module/Settings/Channel.php:414 msgid "Allow us to suggest you as a potential friend to new members?" msgstr "¿Nos permite sugerirle como amigo potencial a los nuevos miembros?" -#: ../../Zotlabs/Module/Settings/Channel.php:424 +#: ../../Zotlabs/Module/Settings/Channel.php:418 msgid "or" msgstr "o" -#: ../../Zotlabs/Module/Settings/Channel.php:433 +#: ../../Zotlabs/Module/Settings/Channel.php:427 msgid "Your channel address is" msgstr "Su dirección de canal es" -#: ../../Zotlabs/Module/Settings/Channel.php:436 +#: ../../Zotlabs/Module/Settings/Channel.php:430 msgid "Your files/photos are accessible via WebDAV at" msgstr "Sus archivos y fotos son accesibles a través de WebDAV en " -#: ../../Zotlabs/Module/Settings/Channel.php:488 +#: ../../Zotlabs/Module/Settings/Channel.php:470 msgid "Automatic membership approval" msgstr "Aprobación automática de nuevos miembros" -#: ../../Zotlabs/Module/Settings/Channel.php:488 +#: ../../Zotlabs/Module/Settings/Channel.php:470 #: ../../Zotlabs/Module/Defperms.php:255 msgid "" "If enabled, connection requests will be approved without your interaction" msgstr "Si está habilitado, las solicitudes de conexión serán aprobadas sin su intervención." -#: ../../Zotlabs/Module/Settings/Channel.php:509 +#: ../../Zotlabs/Module/Settings/Channel.php:491 msgid "Channel Settings" msgstr "Ajustes del canal" -#: ../../Zotlabs/Module/Settings/Channel.php:516 +#: ../../Zotlabs/Module/Settings/Channel.php:498 msgid "Basic Settings" msgstr "Configuración básica" -#: ../../Zotlabs/Module/Settings/Channel.php:517 +#: ../../Zotlabs/Module/Settings/Channel.php:499 #: ../../include/channel.php:1528 msgid "Full Name:" msgstr "Nombre completo:" -#: ../../Zotlabs/Module/Settings/Channel.php:518 +#: ../../Zotlabs/Module/Settings/Channel.php:500 #: ../../Zotlabs/Module/Settings/Account.php:104 msgid "Email Address:" msgstr "Dirección de correo electrónico:" -#: ../../Zotlabs/Module/Settings/Channel.php:519 +#: ../../Zotlabs/Module/Settings/Channel.php:501 msgid "Your Timezone:" msgstr "Su huso horario:" -#: ../../Zotlabs/Module/Settings/Channel.php:520 +#: ../../Zotlabs/Module/Settings/Channel.php:502 msgid "Default Post Location:" msgstr "Localización geográfica predeterminada para sus publicaciones:" -#: ../../Zotlabs/Module/Settings/Channel.php:520 +#: ../../Zotlabs/Module/Settings/Channel.php:502 msgid "Geographical location to display on your posts" msgstr "Localización geográfica que debe mostrarse en sus publicaciones" -#: ../../Zotlabs/Module/Settings/Channel.php:521 +#: ../../Zotlabs/Module/Settings/Channel.php:503 msgid "Use Browser Location:" msgstr "Usar la localización geográfica del navegador:" -#: ../../Zotlabs/Module/Settings/Channel.php:523 +#: ../../Zotlabs/Module/Settings/Channel.php:505 msgid "Adult Content" msgstr "Contenido solo para adultos" -#: ../../Zotlabs/Module/Settings/Channel.php:523 +#: ../../Zotlabs/Module/Settings/Channel.php:505 msgid "" "This channel frequently or regularly publishes adult content. (Please tag " "any adult material and/or nudity with #NSFW)" msgstr "Este canal publica contenido solo para adultos con frecuencia o regularmente. (Por favor etiquete cualquier material para adultos con la etiqueta #NSFW)" -#: ../../Zotlabs/Module/Settings/Channel.php:525 +#: ../../Zotlabs/Module/Settings/Channel.php:507 msgid "Security and Privacy Settings" msgstr "Configuración de seguridad y privacidad" -#: ../../Zotlabs/Module/Settings/Channel.php:527 +#: ../../Zotlabs/Module/Settings/Channel.php:509 msgid "Your permissions are already configured. Click to view/adjust" msgstr "Sus permisos ya están configurados. Pulse para ver/ajustar" -#: ../../Zotlabs/Module/Settings/Channel.php:529 +#: ../../Zotlabs/Module/Settings/Channel.php:511 msgid "Hide my online presence" msgstr "Ocultar mi presencia en línea" -#: ../../Zotlabs/Module/Settings/Channel.php:529 +#: ../../Zotlabs/Module/Settings/Channel.php:511 msgid "Prevents displaying in your profile that you are online" msgstr "Evitar mostrar en su perfil que está en línea" -#: ../../Zotlabs/Module/Settings/Channel.php:531 +#: ../../Zotlabs/Module/Settings/Channel.php:513 msgid "Simple Privacy Settings:" msgstr "Configuración de privacidad sencilla:" -#: ../../Zotlabs/Module/Settings/Channel.php:532 +#: ../../Zotlabs/Module/Settings/Channel.php:514 msgid "" "Very Public - extremely permissive (should be used with caution)" msgstr "Muy Público - extremadamente permisivo (debería ser usado con precaución)" -#: ../../Zotlabs/Module/Settings/Channel.php:533 +#: ../../Zotlabs/Module/Settings/Channel.php:515 msgid "" "Typical - default public, privacy when desired (similar to social " "network permissions but with improved privacy)" msgstr "Típico - por defecto público, privado cuando se desee (similar a los permisos de una red social pero con privacidad mejorada)" -#: ../../Zotlabs/Module/Settings/Channel.php:534 +#: ../../Zotlabs/Module/Settings/Channel.php:516 msgid "Private - default private, never open or public" msgstr "Privado - por defecto, privado, nunca abierto o público" -#: ../../Zotlabs/Module/Settings/Channel.php:535 +#: ../../Zotlabs/Module/Settings/Channel.php:517 msgid "Blocked - default blocked to/from everybody" msgstr "Bloqueado - por defecto, bloqueado/a para cualquiera" -#: ../../Zotlabs/Module/Settings/Channel.php:537 +#: ../../Zotlabs/Module/Settings/Channel.php:519 msgid "Allow others to tag your posts" msgstr "Permitir a otros etiquetar sus publicaciones" -#: ../../Zotlabs/Module/Settings/Channel.php:537 +#: ../../Zotlabs/Module/Settings/Channel.php:519 msgid "" "Often used by the community to retro-actively flag inappropriate content" msgstr "A menudo usado por la comunidad para marcar contenido inapropiado de forma retroactiva." -#: ../../Zotlabs/Module/Settings/Channel.php:539 +#: ../../Zotlabs/Module/Settings/Channel.php:521 msgid "Channel Permission Limits" msgstr "Límites de los permisos del canal" -#: ../../Zotlabs/Module/Settings/Channel.php:541 +#: ../../Zotlabs/Module/Settings/Channel.php:523 msgid "Expire other channel content after this many days" msgstr "Caducar contenido de otros canales después de este número de días" -#: ../../Zotlabs/Module/Settings/Channel.php:541 +#: ../../Zotlabs/Module/Settings/Channel.php:523 msgid "0 or blank to use the website limit." msgstr "0 o en blanco para usar el límite del sitio web." -#: ../../Zotlabs/Module/Settings/Channel.php:541 +#: ../../Zotlabs/Module/Settings/Channel.php:523 #, php-format msgid "This website expires after %d days." msgstr "Este sitio web caduca después de %d días." -#: ../../Zotlabs/Module/Settings/Channel.php:541 +#: ../../Zotlabs/Module/Settings/Channel.php:523 msgid "This website does not expire imported content." msgstr "Este sitio web no caduca el contenido importado." -#: ../../Zotlabs/Module/Settings/Channel.php:541 +#: ../../Zotlabs/Module/Settings/Channel.php:523 msgid "The website limit takes precedence if lower than your limit." msgstr "El límite del sitio web tiene prioridad si es inferior a su propio límite." -#: ../../Zotlabs/Module/Settings/Channel.php:542 +#: ../../Zotlabs/Module/Settings/Channel.php:524 msgid "Maximum Friend Requests/Day:" msgstr "Máximo de solicitudes de amistad por día:" -#: ../../Zotlabs/Module/Settings/Channel.php:542 +#: ../../Zotlabs/Module/Settings/Channel.php:524 msgid "May reduce spam activity" msgstr "Podría reducir la actividad de spam" -#: ../../Zotlabs/Module/Settings/Channel.php:543 +#: ../../Zotlabs/Module/Settings/Channel.php:525 msgid "Default Privacy Group" msgstr "Grupo de canales predeterminado" -#: ../../Zotlabs/Module/Settings/Channel.php:545 +#: ../../Zotlabs/Module/Settings/Channel.php:527 msgid "Use my default audience setting for the type of object published" msgstr "Usar los ajustes de mi audiencia predeterminada para el tipo de publicación" -#: ../../Zotlabs/Module/Settings/Channel.php:546 -msgid "Profile to assign new connections" -msgstr "Perfil para asignar a las nuevas conexiones" - -#: ../../Zotlabs/Module/Settings/Channel.php:556 +#: ../../Zotlabs/Module/Settings/Channel.php:536 msgid "Default permissions category" msgstr "Categoría de permisos por defecto" -#: ../../Zotlabs/Module/Settings/Channel.php:562 +#: ../../Zotlabs/Module/Settings/Channel.php:542 msgid "Maximum private messages per day from unknown people:" msgstr "Máximo de mensajes privados por día de gente desconocida:" -#: ../../Zotlabs/Module/Settings/Channel.php:562 +#: ../../Zotlabs/Module/Settings/Channel.php:542 msgid "Useful to reduce spamming" msgstr "Útil para reducir el envío de correo no deseado" -#: ../../Zotlabs/Module/Settings/Channel.php:565 +#: ../../Zotlabs/Module/Settings/Channel.php:545 #: ../../Zotlabs/Lib/Enotify.php:68 msgid "Notification Settings" msgstr "Configuración de las notificaciones" -#: ../../Zotlabs/Module/Settings/Channel.php:566 +#: ../../Zotlabs/Module/Settings/Channel.php:546 msgid "By default post a status message when:" msgstr "Por defecto, enviar un mensaje de estado cuando:" -#: ../../Zotlabs/Module/Settings/Channel.php:567 +#: ../../Zotlabs/Module/Settings/Channel.php:547 msgid "accepting a friend request" msgstr "Acepte una solicitud de amistad" -#: ../../Zotlabs/Module/Settings/Channel.php:568 +#: ../../Zotlabs/Module/Settings/Channel.php:548 msgid "joining a forum/community" msgstr "al unirse a un foro o comunidad" -#: ../../Zotlabs/Module/Settings/Channel.php:569 +#: ../../Zotlabs/Module/Settings/Channel.php:549 msgid "making an interesting profile change" msgstr "Realice un cambio interesante en su perfil" -#: ../../Zotlabs/Module/Settings/Channel.php:570 +#: ../../Zotlabs/Module/Settings/Channel.php:550 msgid "Send a notification email when:" msgstr "Enviar una notificación por correo electrónico cuando:" -#: ../../Zotlabs/Module/Settings/Channel.php:571 +#: ../../Zotlabs/Module/Settings/Channel.php:551 msgid "You receive a connection request" msgstr "Reciba una solicitud de conexión" -#: ../../Zotlabs/Module/Settings/Channel.php:572 +#: ../../Zotlabs/Module/Settings/Channel.php:552 msgid "Your connections are confirmed" msgstr "Sus conexiones hayan sido confirmadas" -#: ../../Zotlabs/Module/Settings/Channel.php:573 +#: ../../Zotlabs/Module/Settings/Channel.php:553 msgid "Someone writes on your profile wall" msgstr "Alguien escriba en la página de su perfil (\"muro\")" -#: ../../Zotlabs/Module/Settings/Channel.php:574 +#: ../../Zotlabs/Module/Settings/Channel.php:554 msgid "Someone writes a followup comment" msgstr "Alguien escriba un comentario sobre sus publicaciones" -#: ../../Zotlabs/Module/Settings/Channel.php:575 +#: ../../Zotlabs/Module/Settings/Channel.php:555 msgid "You receive a private message" msgstr "Reciba un mensaje privado" -#: ../../Zotlabs/Module/Settings/Channel.php:576 +#: ../../Zotlabs/Module/Settings/Channel.php:556 msgid "You receive a friend suggestion" msgstr "Reciba una sugerencia de amistad" -#: ../../Zotlabs/Module/Settings/Channel.php:577 +#: ../../Zotlabs/Module/Settings/Channel.php:557 msgid "You are tagged in a post" msgstr "Usted sea etiquetado en una publicación" -#: ../../Zotlabs/Module/Settings/Channel.php:578 +#: ../../Zotlabs/Module/Settings/Channel.php:558 msgid "You are poked/prodded/etc. in a post" msgstr "Reciba un toque o incitación en una publicación" -#: ../../Zotlabs/Module/Settings/Channel.php:580 +#: ../../Zotlabs/Module/Settings/Channel.php:560 msgid "Someone likes your post/comment" msgstr "Alguien muestre agrado por su entrada o comentario" -#: ../../Zotlabs/Module/Settings/Channel.php:583 +#: ../../Zotlabs/Module/Settings/Channel.php:563 msgid "Show visual notifications including:" msgstr "Mostrar notificaciones visuales que incluyan:" -#: ../../Zotlabs/Module/Settings/Channel.php:585 +#: ../../Zotlabs/Module/Settings/Channel.php:565 msgid "Unseen stream activity" msgstr "Actividad del stream no vista" -#: ../../Zotlabs/Module/Settings/Channel.php:586 +#: ../../Zotlabs/Module/Settings/Channel.php:566 msgid "Unseen channel activity" msgstr "Actividad no vista en el canal" -#: ../../Zotlabs/Module/Settings/Channel.php:587 +#: ../../Zotlabs/Module/Settings/Channel.php:567 msgid "Unseen private messages" msgstr "Mensajes privados no leídos" -#: ../../Zotlabs/Module/Settings/Channel.php:587 -#: ../../Zotlabs/Module/Settings/Channel.php:592 -#: ../../Zotlabs/Module/Settings/Channel.php:593 -#: ../../Zotlabs/Module/Settings/Channel.php:594 +#: ../../Zotlabs/Module/Settings/Channel.php:567 +#: ../../Zotlabs/Module/Settings/Channel.php:572 +#: ../../Zotlabs/Module/Settings/Channel.php:573 +#: ../../Zotlabs/Module/Settings/Channel.php:574 #: ../../addon/jappixmini/jappixmini.php:343 msgid "Recommended" msgstr "Recomendado" -#: ../../Zotlabs/Module/Settings/Channel.php:588 +#: ../../Zotlabs/Module/Settings/Channel.php:568 msgid "Upcoming events" msgstr "Próximos eventos" -#: ../../Zotlabs/Module/Settings/Channel.php:589 +#: ../../Zotlabs/Module/Settings/Channel.php:569 msgid "Events today" msgstr "Eventos de hoy" -#: ../../Zotlabs/Module/Settings/Channel.php:590 +#: ../../Zotlabs/Module/Settings/Channel.php:570 msgid "Upcoming birthdays" msgstr "Próximos cumpleaños" -#: ../../Zotlabs/Module/Settings/Channel.php:590 +#: ../../Zotlabs/Module/Settings/Channel.php:570 msgid "Not available in all themes" msgstr "No disponible en todos los temas" -#: ../../Zotlabs/Module/Settings/Channel.php:591 +#: ../../Zotlabs/Module/Settings/Channel.php:571 msgid "System (personal) notifications" msgstr "Notificaciones del sistema (personales)" -#: ../../Zotlabs/Module/Settings/Channel.php:592 +#: ../../Zotlabs/Module/Settings/Channel.php:572 msgid "System info messages" msgstr "Mensajes de información del sistema" -#: ../../Zotlabs/Module/Settings/Channel.php:593 +#: ../../Zotlabs/Module/Settings/Channel.php:573 msgid "System critical alerts" msgstr "Alertas críticas del sistema" -#: ../../Zotlabs/Module/Settings/Channel.php:594 +#: ../../Zotlabs/Module/Settings/Channel.php:574 msgid "New connections" msgstr "Nuevas conexiones" -#: ../../Zotlabs/Module/Settings/Channel.php:595 +#: ../../Zotlabs/Module/Settings/Channel.php:575 msgid "System Registrations" msgstr "Registros del sistema" -#: ../../Zotlabs/Module/Settings/Channel.php:596 +#: ../../Zotlabs/Module/Settings/Channel.php:576 msgid "Unseen shared files" msgstr "Ficheros compartidos no vistos" -#: ../../Zotlabs/Module/Settings/Channel.php:597 +#: ../../Zotlabs/Module/Settings/Channel.php:577 msgid "Unseen public stream activity" msgstr "Actividad del stream público no vista" -#: ../../Zotlabs/Module/Settings/Channel.php:598 +#: ../../Zotlabs/Module/Settings/Channel.php:578 msgid "Unseen likes and dislikes" msgstr "Los \"me gusta\" y \"no me gusta\" no vistos" -#: ../../Zotlabs/Module/Settings/Channel.php:599 +#: ../../Zotlabs/Module/Settings/Channel.php:579 msgid "Unseen forum posts" msgstr "Entradas no vistas en el foro" -#: ../../Zotlabs/Module/Settings/Channel.php:600 +#: ../../Zotlabs/Module/Settings/Channel.php:580 msgid "Email notification hub (hostname)" msgstr "Email de notificación del hub (nombre del host)" -#: ../../Zotlabs/Module/Settings/Channel.php:600 +#: ../../Zotlabs/Module/Settings/Channel.php:580 #, php-format msgid "" "If your channel is mirrored to multiple hubs, set this to your preferred " "location. This will prevent duplicate email notifications. Example: %s" msgstr "Si su canal está replicado en múltiples hubs, colóquelo en su ubicación preferida. Esto evitará la duplicación de notificaciones por correo electrónico. Ejemplo: %s" -#: ../../Zotlabs/Module/Settings/Channel.php:601 +#: ../../Zotlabs/Module/Settings/Channel.php:581 msgid "Show new wall posts, private messages and connections under Notices" msgstr "Mostrar nuevos mensajes en el muro, mensajes privados y conexiones en Avisos" -#: ../../Zotlabs/Module/Settings/Channel.php:603 +#: ../../Zotlabs/Module/Settings/Channel.php:583 msgid "Notify me of events this many days in advance" msgstr "Avisarme de los eventos con algunos días de antelación" -#: ../../Zotlabs/Module/Settings/Channel.php:603 +#: ../../Zotlabs/Module/Settings/Channel.php:583 msgid "Must be greater than 0" msgstr "Debe ser mayor que 0" -#: ../../Zotlabs/Module/Settings/Channel.php:609 +#: ../../Zotlabs/Module/Settings/Channel.php:588 msgid "Advanced Account/Page Type Settings" msgstr "Ajustes avanzados de la cuenta y de los tipos de página" -#: ../../Zotlabs/Module/Settings/Channel.php:610 +#: ../../Zotlabs/Module/Settings/Channel.php:589 msgid "Change the behaviour of this account for special situations" msgstr "Cambiar el comportamiento de esta cuenta en situaciones especiales" -#: ../../Zotlabs/Module/Settings/Channel.php:612 +#: ../../Zotlabs/Module/Settings/Channel.php:591 msgid "Miscellaneous Settings" msgstr "Ajustes diversos" -#: ../../Zotlabs/Module/Settings/Channel.php:613 +#: ../../Zotlabs/Module/Settings/Channel.php:592 msgid "Default photo upload folder" msgstr "Carpeta por defecto de las fotos subidas" -#: ../../Zotlabs/Module/Settings/Channel.php:613 -#: ../../Zotlabs/Module/Settings/Channel.php:614 +#: ../../Zotlabs/Module/Settings/Channel.php:592 +#: ../../Zotlabs/Module/Settings/Channel.php:593 msgid "%Y - current year, %m - current month" msgstr "%Y - año en curso, %m - mes actual" -#: ../../Zotlabs/Module/Settings/Channel.php:614 +#: ../../Zotlabs/Module/Settings/Channel.php:593 msgid "Default file upload folder" msgstr "Carpeta por defecto de los ficheros subidos" -#: ../../Zotlabs/Module/Settings/Channel.php:616 -msgid "Personal menu to display in your channel pages" -msgstr "Menú personal que debe mostrarse en las páginas de su canal" - -#: ../../Zotlabs/Module/Settings/Channel.php:618 +#: ../../Zotlabs/Module/Settings/Channel.php:595 msgid "Remove this channel." msgstr "Eliminar este canal." -#: ../../Zotlabs/Module/Settings/Channel.php:619 -msgid "Firefox Share $Projectname provider" -msgstr "Servicio de compartición de Firefox: proveedor $Projectname" - #: ../../Zotlabs/Module/Settings/Features.php:43 msgid "Additional Features" msgstr "Funcionalidades" @@ -4110,7 +4098,7 @@ msgstr "Eliminar cuenta" msgid "Remove this account including all its channels" msgstr "Eliminar esta cuenta incluyendo todos sus canales" -#: ../../Zotlabs/Module/Settings/Profiles.php:39 +#: ../../Zotlabs/Module/Settings/Profiles.php:47 msgid "Profiles Settings" msgstr "Gestión de los perfiles" @@ -4154,17 +4142,21 @@ msgstr "Ajustes de los complementos" msgid "Please save/submit changes to any panel before opening another." msgstr "Guarde o envíe los cambios a cualquier panel antes de abrir otro." -#: ../../Zotlabs/Module/Settings/Channel_home.php:41 +#: ../../Zotlabs/Module/Settings/Channel_home.php:44 #: ../../Zotlabs/Module/Settings/Network.php:41 msgid "Max height of content (in pixels)" msgstr "Altura máxima del contenido (en píxeles)" -#: ../../Zotlabs/Module/Settings/Channel_home.php:43 +#: ../../Zotlabs/Module/Settings/Channel_home.php:46 #: ../../Zotlabs/Module/Settings/Network.php:43 msgid "Click to expand content exceeding this height" msgstr "Haga clic para expandir el contenido que exceda esta altura" -#: ../../Zotlabs/Module/Settings/Channel_home.php:58 +#: ../../Zotlabs/Module/Settings/Channel_home.php:59 +msgid "Personal menu to display in your channel pages" +msgstr "Menú personal que debe mostrarse en las páginas de su canal" + +#: ../../Zotlabs/Module/Settings/Channel_home.php:86 msgid "Channel Home Settings" msgstr "Ajustes del canal" @@ -4260,7 +4252,7 @@ msgid "Link post titles to source" msgstr "Enlazar título de la publicación a la fuente original" #: ../../Zotlabs/Module/Settings/Display.php:205 -#: ../../Zotlabs/Widget/Newmember.php:69 +#: ../../Zotlabs/Widget/Newmember.php:75 msgid "New Member Links" msgstr "Enlaces para nuevos miembros" @@ -5166,7 +5158,7 @@ msgstr "Proporcionar un wiki para su canal" #: ../../Zotlabs/Module/Wiki.php:77 ../../addon/cart/myshop.php:37 #: ../../addon/cart/cart.php:1440 #: ../../addon/cart/submodules/paypalbutton.php:456 -#: ../../addon/cart/manual_payments.php:63 +#: ../../addon/cart/manual_payments.php:93 msgid "Invalid channel" msgstr "Canal no válido" @@ -5183,7 +5175,7 @@ msgid "Error downloading wiki: " msgstr "Error al descargar el wiki: " #: ../../Zotlabs/Module/Wiki.php:206 ../../Zotlabs/Widget/Wiki_list.php:19 -#: ../../include/nav.php:501 +#: ../../include/nav.php:506 msgid "Wikis" msgstr "Wikis" @@ -5204,21 +5196,21 @@ msgstr "Nombre del wiki" msgid "Content type" msgstr "Tipo de contenido" -#: ../../Zotlabs/Module/Wiki.php:217 ../../Zotlabs/Module/Wiki.php:359 -#: ../../Zotlabs/Widget/Wiki_pages.php:36 -#: ../../Zotlabs/Widget/Wiki_pages.php:93 ../../addon/mdpost/mdpost.php:41 +#: ../../Zotlabs/Module/Wiki.php:217 ../../Zotlabs/Module/Wiki.php:371 +#: ../../Zotlabs/Widget/Wiki_pages.php:38 +#: ../../Zotlabs/Widget/Wiki_pages.php:95 ../../addon/mdpost/mdpost.php:41 #: ../../include/text.php:1892 msgid "Markdown" msgstr "Markdown" -#: ../../Zotlabs/Module/Wiki.php:217 ../../Zotlabs/Module/Wiki.php:359 -#: ../../Zotlabs/Widget/Wiki_pages.php:36 -#: ../../Zotlabs/Widget/Wiki_pages.php:93 ../../include/text.php:1890 +#: ../../Zotlabs/Module/Wiki.php:217 ../../Zotlabs/Module/Wiki.php:371 +#: ../../Zotlabs/Widget/Wiki_pages.php:38 +#: ../../Zotlabs/Widget/Wiki_pages.php:95 ../../include/text.php:1890 msgid "BBcode" msgstr "BBcode" -#: ../../Zotlabs/Module/Wiki.php:217 ../../Zotlabs/Widget/Wiki_pages.php:36 -#: ../../Zotlabs/Widget/Wiki_pages.php:93 ../../include/text.php:1893 +#: ../../Zotlabs/Module/Wiki.php:217 ../../Zotlabs/Widget/Wiki_pages.php:38 +#: ../../Zotlabs/Widget/Wiki_pages.php:95 ../../include/text.php:1893 msgid "Text" msgstr "Texto" @@ -5242,53 +5234,53 @@ msgstr "Crear un mensaje de estado para este wiki" msgid "Edit Wiki Name" msgstr "Editar el nombre del wiki" -#: ../../Zotlabs/Module/Wiki.php:271 +#: ../../Zotlabs/Module/Wiki.php:274 msgid "Wiki not found" msgstr "Wiki no encontrado" -#: ../../Zotlabs/Module/Wiki.php:295 +#: ../../Zotlabs/Module/Wiki.php:300 msgid "Rename page" msgstr "Renombrar la página" -#: ../../Zotlabs/Module/Wiki.php:316 +#: ../../Zotlabs/Module/Wiki.php:321 msgid "Error retrieving page content" msgstr "Error al recuperar el contenido de la página" -#: ../../Zotlabs/Module/Wiki.php:324 ../../Zotlabs/Module/Wiki.php:326 +#: ../../Zotlabs/Module/Wiki.php:329 ../../Zotlabs/Module/Wiki.php:331 msgid "New page" msgstr "Nueva página" -#: ../../Zotlabs/Module/Wiki.php:354 +#: ../../Zotlabs/Module/Wiki.php:366 msgid "Revision Comparison" msgstr "Comparación de revisiones" -#: ../../Zotlabs/Module/Wiki.php:355 ../../Zotlabs/Lib/NativeWikiPage.php:561 +#: ../../Zotlabs/Module/Wiki.php:367 ../../Zotlabs/Lib/NativeWikiPage.php:564 #: ../../Zotlabs/Widget/Wiki_page_history.php:25 msgid "Revert" msgstr "Revertir" -#: ../../Zotlabs/Module/Wiki.php:362 +#: ../../Zotlabs/Module/Wiki.php:374 msgid "Short description of your changes (optional)" msgstr "Breve descripción de sus cambios (opcional)" -#: ../../Zotlabs/Module/Wiki.php:371 +#: ../../Zotlabs/Module/Wiki.php:384 msgid "Source" msgstr "Fuente" -#: ../../Zotlabs/Module/Wiki.php:381 +#: ../../Zotlabs/Module/Wiki.php:394 msgid "New page name" msgstr "Nombre de la nueva página" -#: ../../Zotlabs/Module/Wiki.php:386 +#: ../../Zotlabs/Module/Wiki.php:399 msgid "Embed image from photo albums" msgstr "Incluir una imagen de los álbumes de fotos" -#: ../../Zotlabs/Module/Wiki.php:387 ../../addon/hsse/hsse.php:208 +#: ../../Zotlabs/Module/Wiki.php:400 ../../addon/hsse/hsse.php:208 #: ../../include/conversation.php:1411 msgid "Embed an image from your albums" msgstr "Incluir una imagen de sus álbumes" -#: ../../Zotlabs/Module/Wiki.php:389 +#: ../../Zotlabs/Module/Wiki.php:402 #: ../../Zotlabs/Module/Profile_photo.php:466 #: ../../Zotlabs/Module/Cover_photo.php:400 ../../addon/hsse/hsse.php:210 #: ../../addon/hsse/hsse.php:257 ../../include/conversation.php:1413 @@ -5296,100 +5288,100 @@ msgstr "Incluir una imagen de sus álbumes" msgid "OK" msgstr "OK" -#: ../../Zotlabs/Module/Wiki.php:390 +#: ../../Zotlabs/Module/Wiki.php:403 #: ../../Zotlabs/Module/Profile_photo.php:467 #: ../../Zotlabs/Module/Cover_photo.php:401 ../../addon/hsse/hsse.php:139 #: ../../include/conversation.php:1342 msgid "Choose images to embed" msgstr "Elegir imágenes para incluir" -#: ../../Zotlabs/Module/Wiki.php:391 +#: ../../Zotlabs/Module/Wiki.php:404 #: ../../Zotlabs/Module/Profile_photo.php:468 #: ../../Zotlabs/Module/Cover_photo.php:402 ../../addon/hsse/hsse.php:140 #: ../../include/conversation.php:1343 msgid "Choose an album" msgstr "Elegir un álbum" -#: ../../Zotlabs/Module/Wiki.php:392 +#: ../../Zotlabs/Module/Wiki.php:405 #: ../../Zotlabs/Module/Profile_photo.php:469 #: ../../Zotlabs/Module/Cover_photo.php:403 msgid "Choose a different album" msgstr "Elegir un álbum diferente..." -#: ../../Zotlabs/Module/Wiki.php:393 +#: ../../Zotlabs/Module/Wiki.php:406 #: ../../Zotlabs/Module/Profile_photo.php:470 #: ../../Zotlabs/Module/Cover_photo.php:404 ../../addon/hsse/hsse.php:142 #: ../../include/conversation.php:1345 msgid "Error getting album list" msgstr "Error al obtener la lista de álbumes" -#: ../../Zotlabs/Module/Wiki.php:394 +#: ../../Zotlabs/Module/Wiki.php:407 #: ../../Zotlabs/Module/Profile_photo.php:471 #: ../../Zotlabs/Module/Cover_photo.php:405 ../../addon/hsse/hsse.php:143 #: ../../include/conversation.php:1346 msgid "Error getting photo link" msgstr "Error al obtener el enlace de la foto" -#: ../../Zotlabs/Module/Wiki.php:395 +#: ../../Zotlabs/Module/Wiki.php:408 #: ../../Zotlabs/Module/Profile_photo.php:472 #: ../../Zotlabs/Module/Cover_photo.php:406 ../../addon/hsse/hsse.php:144 #: ../../include/conversation.php:1347 msgid "Error getting album" msgstr "Error al obtener el álbum" -#: ../../Zotlabs/Module/Wiki.php:397 +#: ../../Zotlabs/Module/Wiki.php:410 msgid "History" msgstr "Historial" -#: ../../Zotlabs/Module/Wiki.php:473 +#: ../../Zotlabs/Module/Wiki.php:488 msgid "Error creating wiki. Invalid name." msgstr "Error al crear el wiki: el nombre no es válido." -#: ../../Zotlabs/Module/Wiki.php:480 +#: ../../Zotlabs/Module/Wiki.php:495 msgid "A wiki with this name already exists." msgstr "Ya hay un wiki con este nombre." -#: ../../Zotlabs/Module/Wiki.php:493 +#: ../../Zotlabs/Module/Wiki.php:508 msgid "Wiki created, but error creating Home page." msgstr "Se ha creado el wiki, pero se ha producido un error al crear la página de inicio." -#: ../../Zotlabs/Module/Wiki.php:500 +#: ../../Zotlabs/Module/Wiki.php:515 msgid "Error creating wiki" msgstr "Error al crear el wiki" -#: ../../Zotlabs/Module/Wiki.php:523 +#: ../../Zotlabs/Module/Wiki.php:539 msgid "Error updating wiki. Invalid name." msgstr "Error al actualizar el wiki. Nombre no válido." -#: ../../Zotlabs/Module/Wiki.php:543 +#: ../../Zotlabs/Module/Wiki.php:559 msgid "Error updating wiki" msgstr "Error al actualizar el wiki" -#: ../../Zotlabs/Module/Wiki.php:558 +#: ../../Zotlabs/Module/Wiki.php:574 msgid "Wiki delete permission denied." msgstr "Se ha denegado el permiso para eliminar el wiki." -#: ../../Zotlabs/Module/Wiki.php:568 +#: ../../Zotlabs/Module/Wiki.php:584 msgid "Error deleting wiki" msgstr "Se ha producido un error al eliminar el wiki" -#: ../../Zotlabs/Module/Wiki.php:601 +#: ../../Zotlabs/Module/Wiki.php:617 msgid "New page created" msgstr "Se ha creado la nueva página" -#: ../../Zotlabs/Module/Wiki.php:722 +#: ../../Zotlabs/Module/Wiki.php:739 msgid "Cannot delete Home" msgstr "No se puede eliminar la página principal" -#: ../../Zotlabs/Module/Wiki.php:786 +#: ../../Zotlabs/Module/Wiki.php:803 msgid "Current Revision" msgstr "Revisión actual" -#: ../../Zotlabs/Module/Wiki.php:786 +#: ../../Zotlabs/Module/Wiki.php:803 msgid "Selected Revision" msgstr "Revisión seleccionada" -#: ../../Zotlabs/Module/Wiki.php:836 +#: ../../Zotlabs/Module/Wiki.php:853 msgid "You must be authenticated." msgstr "Debe estar autenticado." @@ -5677,7 +5669,7 @@ msgstr "Elemento no válido." #: ../../Zotlabs/Module/Page.php:136 ../../Zotlabs/Module/Block.php:77 #: ../../Zotlabs/Module/Display.php:140 ../../Zotlabs/Module/Display.php:157 #: ../../Zotlabs/Module/Display.php:174 -#: ../../Zotlabs/Lib/NativeWikiPage.php:519 ../../Zotlabs/Web/Router.php:185 +#: ../../Zotlabs/Lib/NativeWikiPage.php:521 ../../Zotlabs/Web/Router.php:185 #: ../../include/help.php:132 msgid "Page not found." msgstr "Página no encontrada." @@ -6077,12 +6069,12 @@ msgid "min" msgstr "min" #: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:320 -#: ../../include/features.php:391 ../../include/nav.php:409 +#: ../../include/features.php:391 ../../include/nav.php:414 msgid "Photos" msgstr "Fotos" #: ../../Zotlabs/Module/Fbrowser.php:85 ../../Zotlabs/Lib/Apps.php:315 -#: ../../Zotlabs/Storage/Browser.php:272 ../../include/nav.php:417 +#: ../../Zotlabs/Storage/Browser.php:272 ../../include/nav.php:422 msgid "Files" msgstr "Ficheros" @@ -6179,7 +6171,7 @@ msgid "Layouts" msgstr "Plantillas" #: ../../Zotlabs/Module/Layouts.php:186 ../../Zotlabs/Lib/Apps.php:323 -#: ../../include/nav.php:168 ../../include/nav.php:284 +#: ../../include/nav.php:168 ../../include/nav.php:289 #: ../../include/help.php:117 ../../include/help.php:125 msgid "Help" msgstr "Ayuda" @@ -6260,15 +6252,15 @@ msgstr "el comentario" msgid "%1$s tagged %2$s's %3$s with %4$s" msgstr "%1$s ha etiquetado %3$s de %2$s con %4$s" -#: ../../Zotlabs/Module/Pconfig.php:26 ../../Zotlabs/Module/Pconfig.php:59 +#: ../../Zotlabs/Module/Pconfig.php:27 ../../Zotlabs/Module/Pconfig.php:63 msgid "This setting requires special processing and editing has been blocked." msgstr "Este ajuste necesita de un proceso especial y la edición ha sido bloqueada." -#: ../../Zotlabs/Module/Pconfig.php:48 +#: ../../Zotlabs/Module/Pconfig.php:52 msgid "Configuration Editor" msgstr "Editor de configuración" -#: ../../Zotlabs/Module/Pconfig.php:49 +#: ../../Zotlabs/Module/Pconfig.php:53 msgid "" "Warning: Changing some settings could render your channel inoperable. Please" " leave this page unless you are comfortable with and knowledgeable about how" @@ -6792,7 +6784,7 @@ msgid "Add Card" msgstr "Añadir una ficha" #: ../../Zotlabs/Module/Cards.php:203 ../../Zotlabs/Lib/Apps.php:303 -#: ../../include/nav.php:466 +#: ../../include/nav.php:471 msgid "Cards" msgstr "Fichas" @@ -6892,7 +6884,7 @@ msgid "Export selected" msgstr "Exportar los elementos seleccionados" #: ../../Zotlabs/Module/Webpages.php:252 ../../Zotlabs/Lib/Apps.php:316 -#: ../../include/nav.php:489 +#: ../../include/nav.php:494 msgid "Webpages" msgstr "Páginas web" @@ -7026,8 +7018,8 @@ msgstr "correo enviado" msgid "Delivery report for %1$s" msgstr "Informe de entrega para %1$s" -#: ../../Zotlabs/Module/Dreport.php:151 ../../Zotlabs/Widget/Wiki_pages.php:39 -#: ../../Zotlabs/Widget/Wiki_pages.php:96 +#: ../../Zotlabs/Module/Dreport.php:151 ../../Zotlabs/Widget/Wiki_pages.php:41 +#: ../../Zotlabs/Widget/Wiki_pages.php:98 msgid "Options" msgstr "Opciones" @@ -7164,14 +7156,14 @@ msgid "Previous action reversed." msgstr "Acción anterior revocada." #: ../../Zotlabs/Module/Like.php:438 ../../Zotlabs/Lib/Activity.php:1605 -#: ../../addon/diaspora/Receiver.php:1568 ../../addon/pubcrawl/as.php:1547 +#: ../../addon/diaspora/Receiver.php:1568 ../../addon/pubcrawl/as.php:1546 #: ../../include/conversation.php:160 #, php-format msgid "%1$s likes %2$s's %3$s" msgstr "A %1$s le gusta %3$s de %2$s" #: ../../Zotlabs/Module/Like.php:440 ../../Zotlabs/Lib/Activity.php:1607 -#: ../../addon/pubcrawl/as.php:1549 ../../include/conversation.php:163 +#: ../../addon/pubcrawl/as.php:1548 ../../include/conversation.php:163 #, php-format msgid "%1$s doesn't like %2$s's %3$s" msgstr "A %1$s no le gusta %3$s de %2$s" @@ -7728,7 +7720,7 @@ msgstr "Cambiar la foto de portada del perfil" msgid "Documentation Search" msgstr "Búsqueda de Documentación" -#: ../../Zotlabs/Module/Help.php:80 ../../include/nav.php:399 +#: ../../Zotlabs/Module/Help.php:80 ../../include/nav.php:404 msgid "About" msgstr "Mi perfil" @@ -7752,11 +7744,11 @@ msgstr "Documentación de $Projectname" msgid "Contents" msgstr "Contenidos" -#: ../../Zotlabs/Module/Display.php:394 +#: ../../Zotlabs/Module/Display.php:393 msgid "Article" msgstr "Artículo" -#: ../../Zotlabs/Module/Display.php:446 +#: ../../Zotlabs/Module/Display.php:445 msgid "Item has been removed." msgstr "Se ha eliminado el elemento." @@ -8073,9 +8065,9 @@ msgid "Mark all seen" msgstr "Marcar todo como visto" #: ../../Zotlabs/Lib/Activity.php:1417 ../../Zotlabs/Lib/Activity.php:1614 -#: ../../widget/Netselect/Netselect.php:42 ../../addon/pubcrawl/as.php:1222 -#: ../../addon/pubcrawl/as.php:1377 ../../addon/pubcrawl/as.php:1556 -#: ../../include/network.php:1768 +#: ../../widget/Netselect/Netselect.php:42 ../../addon/pubcrawl/as.php:1221 +#: ../../addon/pubcrawl/as.php:1376 ../../addon/pubcrawl/as.php:1555 +#: ../../include/network.php:1778 msgid "ActivityPub" msgstr "ActivityPub" @@ -8119,12 +8111,12 @@ msgstr "Administrador del sitio" msgid "Report Bug" msgstr "Informe de errores" -#: ../../Zotlabs/Lib/Apps.php:306 ../../include/nav.php:455 +#: ../../Zotlabs/Lib/Apps.php:306 ../../include/nav.php:460 msgid "Bookmarks" msgstr "Marcadores" #: ../../Zotlabs/Lib/Apps.php:307 ../../Zotlabs/Widget/Chatroom_list.php:16 -#: ../../include/nav.php:442 ../../include/nav.php:445 +#: ../../include/nav.php:447 ../../include/nav.php:450 msgid "Chatrooms" msgstr "Salas de chat" @@ -8145,7 +8137,7 @@ msgstr "Iniciar sesión" msgid "Stream" msgstr "Stream" -#: ../../Zotlabs/Lib/Apps.php:317 ../../include/nav.php:504 +#: ../../Zotlabs/Lib/Apps.php:317 ../../include/nav.php:509 msgid "Wiki" msgstr "Wiki" @@ -8300,79 +8292,79 @@ msgid "publisher" msgstr "editor" #: ../../Zotlabs/Lib/NativeWikiPage.php:42 -#: ../../Zotlabs/Lib/NativeWikiPage.php:93 +#: ../../Zotlabs/Lib/NativeWikiPage.php:94 msgid "(No Title)" msgstr "(Sin título)" -#: ../../Zotlabs/Lib/NativeWikiPage.php:107 +#: ../../Zotlabs/Lib/NativeWikiPage.php:109 msgid "Wiki page create failed." msgstr "Se ha producido un error en la creación de la página wiki." -#: ../../Zotlabs/Lib/NativeWikiPage.php:120 +#: ../../Zotlabs/Lib/NativeWikiPage.php:122 msgid "Wiki not found." msgstr "No se ha encontrado el wiki." -#: ../../Zotlabs/Lib/NativeWikiPage.php:131 +#: ../../Zotlabs/Lib/NativeWikiPage.php:133 msgid "Destination name already exists" msgstr "El nombre de destino ya existe" -#: ../../Zotlabs/Lib/NativeWikiPage.php:163 -#: ../../Zotlabs/Lib/NativeWikiPage.php:359 +#: ../../Zotlabs/Lib/NativeWikiPage.php:166 +#: ../../Zotlabs/Lib/NativeWikiPage.php:362 msgid "Page not found" msgstr "No se ha encontrado la página" -#: ../../Zotlabs/Lib/NativeWikiPage.php:194 +#: ../../Zotlabs/Lib/NativeWikiPage.php:197 msgid "Error reading page content" msgstr "Se ha producido un error al leer el contenido de la página" -#: ../../Zotlabs/Lib/NativeWikiPage.php:350 -#: ../../Zotlabs/Lib/NativeWikiPage.php:400 -#: ../../Zotlabs/Lib/NativeWikiPage.php:467 -#: ../../Zotlabs/Lib/NativeWikiPage.php:508 +#: ../../Zotlabs/Lib/NativeWikiPage.php:353 +#: ../../Zotlabs/Lib/NativeWikiPage.php:402 +#: ../../Zotlabs/Lib/NativeWikiPage.php:469 +#: ../../Zotlabs/Lib/NativeWikiPage.php:510 msgid "Error reading wiki" msgstr "Se ha producido un error al leer el wiki" -#: ../../Zotlabs/Lib/NativeWikiPage.php:388 +#: ../../Zotlabs/Lib/NativeWikiPage.php:390 msgid "Page update failed." msgstr "Se ha producido un error al actualizar la página." -#: ../../Zotlabs/Lib/NativeWikiPage.php:422 +#: ../../Zotlabs/Lib/NativeWikiPage.php:424 msgid "Nothing deleted" msgstr "No se ha eliminado nada" -#: ../../Zotlabs/Lib/NativeWikiPage.php:488 +#: ../../Zotlabs/Lib/NativeWikiPage.php:490 msgid "Compare: object not found." msgstr "No se ha encontrado un objeto para comparar." -#: ../../Zotlabs/Lib/NativeWikiPage.php:494 +#: ../../Zotlabs/Lib/NativeWikiPage.php:496 msgid "Page updated" msgstr "Se ha actualizado la página" -#: ../../Zotlabs/Lib/NativeWikiPage.php:497 +#: ../../Zotlabs/Lib/NativeWikiPage.php:499 msgid "Untitled" msgstr "Sin título" -#: ../../Zotlabs/Lib/NativeWikiPage.php:503 +#: ../../Zotlabs/Lib/NativeWikiPage.php:505 msgid "Wiki resource_id required for git commit" msgstr "Se necesita Wiki resource_id para el git commit" -#: ../../Zotlabs/Lib/NativeWikiPage.php:559 +#: ../../Zotlabs/Lib/NativeWikiPage.php:562 #: ../../Zotlabs/Widget/Wiki_page_history.php:23 msgctxt "wiki_history" msgid "Message" msgstr "Mensaje" -#: ../../Zotlabs/Lib/NativeWikiPage.php:560 +#: ../../Zotlabs/Lib/NativeWikiPage.php:563 #: ../../Zotlabs/Widget/Wiki_page_history.php:24 msgid "Date" msgstr "Fecha" -#: ../../Zotlabs/Lib/NativeWikiPage.php:562 +#: ../../Zotlabs/Lib/NativeWikiPage.php:565 #: ../../Zotlabs/Widget/Wiki_page_history.php:26 msgid "Compare" msgstr "Comparar" -#: ../../Zotlabs/Lib/NativeWikiPage.php:600 ../../include/bbcode.php:746 +#: ../../Zotlabs/Lib/NativeWikiPage.php:603 ../../include/bbcode.php:746 #: ../../include/bbcode.php:916 msgid "Different viewers will see this text differently" msgstr "Visitantes diferentes verán este texto de forma distinta" @@ -8781,11 +8773,11 @@ msgstr "ha editado una entrada fechada el %s" msgid "edited a comment dated %s" msgstr "ha editado un comentario fechado el %s" -#: ../../Zotlabs/Lib/NativeWiki.php:151 +#: ../../Zotlabs/Lib/NativeWiki.php:152 msgid "Wiki updated successfully" msgstr "El wiki se ha actualizado con éxito" -#: ../../Zotlabs/Lib/NativeWiki.php:205 +#: ../../Zotlabs/Lib/NativeWiki.php:206 msgid "Wiki files deleted successfully" msgstr "Se han borrado con éxito los ficheros del wiki" @@ -9034,8 +9026,8 @@ msgstr "Principal" msgid "Addressbook" msgstr "Libreta de direcciones" -#: ../../Zotlabs/Storage/Browser.php:140 ../../include/nav.php:428 -#: ../../include/nav.php:431 +#: ../../Zotlabs/Storage/Browser.php:140 ../../include/nav.php:433 +#: ../../include/nav.php:436 msgid "Calendar" msgstr "Calendario" @@ -9373,16 +9365,16 @@ msgstr "Eliminar término" msgid "Saved Searches" msgstr "Búsquedas guardadas" -#: ../../Zotlabs/Widget/Wiki_pages.php:32 -#: ../../Zotlabs/Widget/Wiki_pages.php:89 +#: ../../Zotlabs/Widget/Wiki_pages.php:34 +#: ../../Zotlabs/Widget/Wiki_pages.php:91 msgid "Add new page" msgstr "Añadir una nueva página" -#: ../../Zotlabs/Widget/Wiki_pages.php:83 +#: ../../Zotlabs/Widget/Wiki_pages.php:85 msgid "Wiki Pages" msgstr "Páginas del wiki" -#: ../../Zotlabs/Widget/Wiki_pages.php:94 +#: ../../Zotlabs/Widget/Wiki_pages.php:96 msgid "Page name" msgstr "Nombre de la página" @@ -9491,7 +9483,19 @@ msgstr "Ver el \"stream\" de su red" msgid "Documentation" msgstr "Documentación" -#: ../../Zotlabs/Widget/Newmember.php:65 +#: ../../Zotlabs/Widget/Newmember.php:57 +msgid "Missing Features?" +msgstr "¿Faltan Características?" + +#: ../../Zotlabs/Widget/Newmember.php:59 +msgid "Pin apps to navigation bar" +msgstr "Fijar apps a la barra de navegación" + +#: ../../Zotlabs/Widget/Newmember.php:60 +msgid "Install more apps" +msgstr "Instalar más apps" + +#: ../../Zotlabs/Widget/Newmember.php:71 msgid "View public stream" msgstr "Ver el \"stream\" público" @@ -9667,20 +9671,20 @@ msgstr "No se ha encontrado el canal de origen." msgid "Network/Protocol" msgstr "Red / Protocolo" -#: ../../widget/Netselect/Netselect.php:28 ../../include/network.php:1772 +#: ../../widget/Netselect/Netselect.php:28 ../../include/network.php:1782 msgid "Zot" msgstr "Zot" -#: ../../widget/Netselect/Netselect.php:31 ../../include/network.php:1770 +#: ../../widget/Netselect/Netselect.php:31 ../../include/network.php:1780 msgid "Diaspora" msgstr "Diaspora" -#: ../../widget/Netselect/Netselect.php:33 ../../include/network.php:1763 -#: ../../include/network.php:1764 +#: ../../widget/Netselect/Netselect.php:33 ../../include/network.php:1773 +#: ../../include/network.php:1774 msgid "Friendica" msgstr "Friendica" -#: ../../widget/Netselect/Netselect.php:38 ../../include/network.php:1765 +#: ../../widget/Netselect/Netselect.php:38 ../../include/network.php:1775 msgid "OStatus" msgstr "OStatus" @@ -10559,13 +10563,13 @@ msgstr "Error de protocolo OpenID. No se recuperó ninguna ID." msgid "Login failed." msgstr "El acceso ha fallado." -#: ../../addon/openid/Mod_Id.php:85 ../../include/selectors.php:49 -#: ../../include/selectors.php:66 ../../include/channel.php:1487 +#: ../../addon/openid/Mod_Id.php:85 ../../include/selectors.php:60 +#: ../../include/selectors.php:77 ../../include/channel.php:1487 msgid "Male" msgstr "Hombre" -#: ../../addon/openid/Mod_Id.php:87 ../../include/selectors.php:49 -#: ../../include/selectors.php:66 ../../include/channel.php:1485 +#: ../../addon/openid/Mod_Id.php:87 ../../include/selectors.php:60 +#: ../../include/selectors.php:77 ../../include/channel.php:1485 msgid "Female" msgstr "Mujer" @@ -11139,6 +11143,36 @@ msgstr "Ayuda para los ajustes" msgid "Jappix Mini Settings" msgstr "Ajustes de Jappix Mini" +#: ../../addon/upgrade_info/upgrade_info.php:43 +msgid "Your channel has been upgraded to the latest $Projectname version." +msgstr "Su canal ha sido actualizado a la última versión de $Projectname." + +#: ../../addon/upgrade_info/upgrade_info.php:44 +msgid "" +"To improve usability, we have converted some features into installable " +"stand-alone apps." +msgstr "Para mejorar la usabilidad, hemos convertido algunas características en aplicaciones independientes instalables." + +#: ../../addon/upgrade_info/upgrade_info.php:45 +msgid "Please visit the $Projectname" +msgstr "Por favor visite el sitio web de $Projectname" + +#: ../../addon/upgrade_info/upgrade_info.php:46 +msgid "app store" +msgstr "depósito de apps" + +#: ../../addon/upgrade_info/upgrade_info.php:47 +msgid "and install possibly missing apps." +msgstr "e instalar aplicaciones que posiblemente falten." + +#: ../../addon/upgrade_info/upgrade_info.php:52 +msgid "Upgrade Info" +msgstr "Información de actualización" + +#: ../../addon/upgrade_info/upgrade_info.php:56 +msgid "Do not show this again" +msgstr "No mostrar esto de nuevo" + #: ../../addon/channelreputation/channelreputation.php:101 #: ../../addon/channelreputation/channelreputation.php:102 #: ../../addon/cart/myshop.php:141 ../../addon/cart/myshop.php:177 @@ -11967,7 +12001,7 @@ msgstr "Debe iniciar sesión en la red para comprar." #: ../../addon/cart/cart.php:1462 #: ../../addon/cart/submodules/paypalbutton.php:392 -#: ../../addon/cart/manual_payments.php:38 +#: ../../addon/cart/manual_payments.php:68 msgid "Order not found." msgstr "El pedido no se ha encontrado." @@ -12107,39 +12141,39 @@ msgid "" "Cannot include subscription items with different terms in the same order." msgstr "No se pueden incluir artículos de suscripción con términos diferentes en el mismo orden." -#: ../../addon/cart/submodules/subscriptions.php:365 +#: ../../addon/cart/submodules/subscriptions.php:372 msgid "Select Subscription to Edit" msgstr "Seleccione suscripción a editar" -#: ../../addon/cart/submodules/subscriptions.php:371 +#: ../../addon/cart/submodules/subscriptions.php:380 msgid "Edit Subscriptions" msgstr "Editar suscripciones" -#: ../../addon/cart/submodules/subscriptions.php:405 +#: ../../addon/cart/submodules/subscriptions.php:414 msgid "Subscription SKU" msgstr "SKU de la suscripción" -#: ../../addon/cart/submodules/subscriptions.php:410 +#: ../../addon/cart/submodules/subscriptions.php:419 msgid "Catalog Description" msgstr "Descripción del catálogo" -#: ../../addon/cart/submodules/subscriptions.php:414 +#: ../../addon/cart/submodules/subscriptions.php:423 msgid "Subscription available for purchase." msgstr "Suscripción disponible para la compra." -#: ../../addon/cart/submodules/subscriptions.php:419 +#: ../../addon/cart/submodules/subscriptions.php:428 msgid "Maximum active subscriptions to this item per account." msgstr "Máximo de suscripciones activas a este artículo por cuenta." -#: ../../addon/cart/submodules/subscriptions.php:422 +#: ../../addon/cart/submodules/subscriptions.php:431 msgid "Subscription price." msgstr "Precio de la suscripción." -#: ../../addon/cart/submodules/subscriptions.php:426 +#: ../../addon/cart/submodules/subscriptions.php:435 msgid "Quantity" msgstr "Cuantía" -#: ../../addon/cart/submodules/subscriptions.php:430 +#: ../../addon/cart/submodules/subscriptions.php:439 msgid "Term" msgstr "Condición" @@ -12147,11 +12181,11 @@ msgstr "Condición" msgid "Error: order mismatch. Please try again." msgstr "Error: desajuste de pedidos. Por favor, inténtelo de nuevo." -#: ../../addon/cart/manual_payments.php:31 +#: ../../addon/cart/manual_payments.php:61 msgid "Manual payments are not enabled." msgstr "Los pagos manuales no están habilitados." -#: ../../addon/cart/manual_payments.php:47 +#: ../../addon/cart/manual_payments.php:77 msgid "Finished" msgstr "Terminado" @@ -12682,243 +12716,247 @@ msgstr "Dirección de correo electrónico del remitente" msgid "Test mode (only send to hub administrator)" msgstr "Modo de prueba (enviar sólo al administrador del hub)" -#: ../../include/selectors.php:30 +#: ../../include/selectors.php:18 +msgid "Profile to assign new connections" +msgstr "Perfil para asignar a las nuevas conexiones" + +#: ../../include/selectors.php:41 msgid "Frequently" msgstr "Frecuentemente" -#: ../../include/selectors.php:31 +#: ../../include/selectors.php:42 msgid "Hourly" msgstr "Cada hora" -#: ../../include/selectors.php:32 +#: ../../include/selectors.php:43 msgid "Twice daily" msgstr "Dos veces al día" -#: ../../include/selectors.php:33 +#: ../../include/selectors.php:44 msgid "Daily" msgstr "Diariamente" -#: ../../include/selectors.php:34 +#: ../../include/selectors.php:45 msgid "Weekly" msgstr "Semanalmente" -#: ../../include/selectors.php:35 +#: ../../include/selectors.php:46 msgid "Monthly" msgstr "Mensualmente" -#: ../../include/selectors.php:49 +#: ../../include/selectors.php:60 msgid "Currently Male" msgstr "Actualmente hombre" -#: ../../include/selectors.php:49 +#: ../../include/selectors.php:60 msgid "Currently Female" msgstr "Actualmente mujer" -#: ../../include/selectors.php:49 +#: ../../include/selectors.php:60 msgid "Mostly Male" msgstr "Generalmente hombre" -#: ../../include/selectors.php:49 +#: ../../include/selectors.php:60 msgid "Mostly Female" msgstr "Generalmente mujer" -#: ../../include/selectors.php:49 +#: ../../include/selectors.php:60 msgid "Transgender" msgstr "Transgénero" -#: ../../include/selectors.php:49 +#: ../../include/selectors.php:60 msgid "Intersex" msgstr "Intersexual" -#: ../../include/selectors.php:49 +#: ../../include/selectors.php:60 msgid "Transsexual" msgstr "Transexual" -#: ../../include/selectors.php:49 +#: ../../include/selectors.php:60 msgid "Hermaphrodite" msgstr "Hermafrodita" -#: ../../include/selectors.php:49 ../../include/channel.php:1491 +#: ../../include/selectors.php:60 ../../include/channel.php:1491 msgid "Neuter" msgstr "Neutral" -#: ../../include/selectors.php:49 ../../include/channel.php:1493 +#: ../../include/selectors.php:60 ../../include/channel.php:1493 msgid "Non-specific" msgstr "No especificado" -#: ../../include/selectors.php:49 +#: ../../include/selectors.php:60 msgid "Undecided" msgstr "Indeciso/a" -#: ../../include/selectors.php:85 ../../include/selectors.php:104 +#: ../../include/selectors.php:96 ../../include/selectors.php:115 msgid "Males" msgstr "Hombres" -#: ../../include/selectors.php:85 ../../include/selectors.php:104 +#: ../../include/selectors.php:96 ../../include/selectors.php:115 msgid "Females" msgstr "Mujeres" -#: ../../include/selectors.php:85 +#: ../../include/selectors.php:96 msgid "Gay" msgstr "Homosexual" -#: ../../include/selectors.php:85 +#: ../../include/selectors.php:96 msgid "Lesbian" msgstr "Lesbiana" -#: ../../include/selectors.php:85 +#: ../../include/selectors.php:96 msgid "No Preference" msgstr "Sin preferencias" -#: ../../include/selectors.php:85 +#: ../../include/selectors.php:96 msgid "Bisexual" msgstr "Bisexual" -#: ../../include/selectors.php:85 +#: ../../include/selectors.php:96 msgid "Autosexual" msgstr "Autosexual" -#: ../../include/selectors.php:85 +#: ../../include/selectors.php:96 msgid "Abstinent" msgstr "Casto/a" -#: ../../include/selectors.php:85 +#: ../../include/selectors.php:96 msgid "Virgin" msgstr "Virgen" -#: ../../include/selectors.php:85 +#: ../../include/selectors.php:96 msgid "Deviant" msgstr "Fuera de lo común" -#: ../../include/selectors.php:85 +#: ../../include/selectors.php:96 msgid "Fetish" msgstr "Fetichista" -#: ../../include/selectors.php:85 +#: ../../include/selectors.php:96 msgid "Oodles" msgstr "Orgías" -#: ../../include/selectors.php:85 +#: ../../include/selectors.php:96 msgid "Nonsexual" msgstr "Asexual" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 +#: ../../include/selectors.php:134 ../../include/selectors.php:151 msgid "Single" msgstr "Soltero/a" -#: ../../include/selectors.php:123 +#: ../../include/selectors.php:134 msgid "Lonely" msgstr "Solo/a" -#: ../../include/selectors.php:123 +#: ../../include/selectors.php:134 msgid "Available" msgstr "Disponible" -#: ../../include/selectors.php:123 +#: ../../include/selectors.php:134 msgid "Unavailable" msgstr "No disponible" -#: ../../include/selectors.php:123 +#: ../../include/selectors.php:134 msgid "Has crush" msgstr "Enamorado/a" -#: ../../include/selectors.php:123 +#: ../../include/selectors.php:134 msgid "Infatuated" msgstr "Apasionado/a" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 +#: ../../include/selectors.php:134 ../../include/selectors.php:151 msgid "Dating" msgstr "Saliendo con alguien" -#: ../../include/selectors.php:123 +#: ../../include/selectors.php:134 msgid "Unfaithful" msgstr "Infiel" -#: ../../include/selectors.php:123 +#: ../../include/selectors.php:134 msgid "Sex Addict" msgstr "Con adicción al sexo" -#: ../../include/selectors.php:123 +#: ../../include/selectors.php:134 msgid "Friends/Benefits" msgstr "Amigos con algo extra" -#: ../../include/selectors.php:123 +#: ../../include/selectors.php:134 msgid "Casual" msgstr "Casual" -#: ../../include/selectors.php:123 +#: ../../include/selectors.php:134 msgid "Engaged" msgstr "Prometido/a" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 +#: ../../include/selectors.php:134 ../../include/selectors.php:151 msgid "Married" msgstr "Casado/a" -#: ../../include/selectors.php:123 +#: ../../include/selectors.php:134 msgid "Imaginarily married" msgstr "Casado/a en sueños" -#: ../../include/selectors.php:123 +#: ../../include/selectors.php:134 msgid "Partners" msgstr "Pareja" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 +#: ../../include/selectors.php:134 ../../include/selectors.php:151 msgid "Cohabiting" msgstr "Cohabitando" -#: ../../include/selectors.php:123 +#: ../../include/selectors.php:134 msgid "Common law" msgstr "Matrimonio tradicional" -#: ../../include/selectors.php:123 +#: ../../include/selectors.php:134 msgid "Happy" msgstr "Felíz" -#: ../../include/selectors.php:123 +#: ../../include/selectors.php:134 msgid "Not looking" msgstr "No estoy buscando" -#: ../../include/selectors.php:123 +#: ../../include/selectors.php:134 msgid "Swinger" msgstr "Libertino" -#: ../../include/selectors.php:123 +#: ../../include/selectors.php:134 msgid "Betrayed" msgstr "Engañado/a" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 +#: ../../include/selectors.php:134 ../../include/selectors.php:151 msgid "Separated" msgstr "Separado/a" -#: ../../include/selectors.php:123 +#: ../../include/selectors.php:134 msgid "Unstable" msgstr "Inestable" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 +#: ../../include/selectors.php:134 ../../include/selectors.php:151 msgid "Divorced" msgstr "Divorciado/a" -#: ../../include/selectors.php:123 +#: ../../include/selectors.php:134 msgid "Imaginarily divorced" msgstr "Divorciado/a en sueños" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 +#: ../../include/selectors.php:134 ../../include/selectors.php:151 msgid "Widowed" msgstr "Viudo/a" -#: ../../include/selectors.php:123 +#: ../../include/selectors.php:134 msgid "Uncertain" msgstr "Indeterminado" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 +#: ../../include/selectors.php:134 ../../include/selectors.php:151 msgid "It's complicated" msgstr "Es complicado" -#: ../../include/selectors.php:123 +#: ../../include/selectors.php:134 msgid "Don't care" msgstr "No me importa" -#: ../../include/selectors.php:123 +#: ../../include/selectors.php:134 msgid "Ask me" msgstr "Pregúnteme" @@ -13267,47 +13305,47 @@ msgstr "relajado/a" msgid "surprised" msgstr "sorprendido/a" -#: ../../include/text.php:1377 ../../include/js_strings.php:86 +#: ../../include/text.php:1377 ../../include/js_strings.php:95 msgid "Monday" msgstr "lunes" -#: ../../include/text.php:1377 ../../include/js_strings.php:87 +#: ../../include/text.php:1377 ../../include/js_strings.php:96 msgid "Tuesday" msgstr "martes" -#: ../../include/text.php:1377 ../../include/js_strings.php:88 +#: ../../include/text.php:1377 ../../include/js_strings.php:97 msgid "Wednesday" msgstr "miércoles" -#: ../../include/text.php:1377 ../../include/js_strings.php:89 +#: ../../include/text.php:1377 ../../include/js_strings.php:98 msgid "Thursday" msgstr "jueves" -#: ../../include/text.php:1377 ../../include/js_strings.php:90 +#: ../../include/text.php:1377 ../../include/js_strings.php:99 msgid "Friday" msgstr "viernes" -#: ../../include/text.php:1377 ../../include/js_strings.php:91 +#: ../../include/text.php:1377 ../../include/js_strings.php:100 msgid "Saturday" msgstr "sábado" -#: ../../include/text.php:1377 ../../include/js_strings.php:85 +#: ../../include/text.php:1377 ../../include/js_strings.php:94 msgid "Sunday" msgstr "domingo" -#: ../../include/text.php:1381 ../../include/js_strings.php:61 +#: ../../include/text.php:1381 ../../include/js_strings.php:70 msgid "January" msgstr "enero" -#: ../../include/text.php:1381 ../../include/js_strings.php:62 +#: ../../include/text.php:1381 ../../include/js_strings.php:71 msgid "February" msgstr "febrero" -#: ../../include/text.php:1381 ../../include/js_strings.php:63 +#: ../../include/text.php:1381 ../../include/js_strings.php:72 msgid "March" msgstr "marzo" -#: ../../include/text.php:1381 ../../include/js_strings.php:64 +#: ../../include/text.php:1381 ../../include/js_strings.php:73 msgid "April" msgstr "abril" @@ -13315,31 +13353,31 @@ msgstr "abril" msgid "May" msgstr "mayo" -#: ../../include/text.php:1381 ../../include/js_strings.php:66 +#: ../../include/text.php:1381 ../../include/js_strings.php:75 msgid "June" msgstr "junio" -#: ../../include/text.php:1381 ../../include/js_strings.php:67 +#: ../../include/text.php:1381 ../../include/js_strings.php:76 msgid "July" msgstr "julio" -#: ../../include/text.php:1381 ../../include/js_strings.php:68 +#: ../../include/text.php:1381 ../../include/js_strings.php:77 msgid "August" msgstr "agosto" -#: ../../include/text.php:1381 ../../include/js_strings.php:69 +#: ../../include/text.php:1381 ../../include/js_strings.php:78 msgid "September" msgstr "septiembre" -#: ../../include/text.php:1381 ../../include/js_strings.php:70 +#: ../../include/text.php:1381 ../../include/js_strings.php:79 msgid "October" msgstr "octubre" -#: ../../include/text.php:1381 ../../include/js_strings.php:71 +#: ../../include/text.php:1381 ../../include/js_strings.php:80 msgid "November" msgstr "noviembre" -#: ../../include/text.php:1381 ../../include/js_strings.php:72 +#: ../../include/text.php:1381 ../../include/js_strings.php:81 msgid "December" msgstr "diciembre" @@ -13363,7 +13401,7 @@ msgstr "eliminar del fichero" msgid "Download binary/encrypted content" msgstr "Descargar contenido binario o cifrado" -#: ../../include/text.php:1872 ../../include/language.php:397 +#: ../../include/text.php:1872 ../../include/language.php:423 msgid "default" msgstr "por defecto" @@ -13662,181 +13700,191 @@ msgid " channel name" msgstr "nombre de canal" #: ../../include/js_strings.php:41 +#, php-format +msgid "%d minutes" +msgid_plural "%d minutes" +msgstr[0] "%d minutos" +msgstr[1] "%d minutos" + +#: ../../include/js_strings.php:42 +#, php-format +msgid "about %d hours" +msgid_plural "about %d hours" +msgstr[0] "alrededor de %d horas" +msgstr[1] "alrededor de %d horas" + +#: ../../include/js_strings.php:43 +#, php-format +msgid "%d days" +msgid_plural "%d days" +msgstr[0] "%d días" +msgstr[1] "%d días" + +#: ../../include/js_strings.php:44 +#, php-format +msgid "%d months" +msgid_plural "%d months" +msgstr[0] "%d meses" +msgstr[1] "%d meses" + +#: ../../include/js_strings.php:45 +#, php-format +msgid "%d years" +msgid_plural "%d years" +msgstr[0] "%d años" +msgstr[1] "%d años" + +#: ../../include/js_strings.php:50 msgid "timeago.prefixAgo" msgstr "hace " -#: ../../include/js_strings.php:42 +#: ../../include/js_strings.php:51 msgid "timeago.prefixFromNow" msgstr "en " -#: ../../include/js_strings.php:43 +#: ../../include/js_strings.php:52 msgid "timeago.suffixAgo" msgstr "NONE" -#: ../../include/js_strings.php:44 +#: ../../include/js_strings.php:53 msgid "timeago.suffixFromNow" msgstr "NONE" -#: ../../include/js_strings.php:47 +#: ../../include/js_strings.php:56 msgid "less than a minute" msgstr "menos de un minuto" -#: ../../include/js_strings.php:48 +#: ../../include/js_strings.php:57 msgid "about a minute" msgstr "alrededor de un minuto" -#: ../../include/js_strings.php:49 -#, php-format -msgid "%d minutes" -msgstr "%d minutos" - -#: ../../include/js_strings.php:50 +#: ../../include/js_strings.php:59 msgid "about an hour" msgstr "alrededor de una hora" -#: ../../include/js_strings.php:51 -#, php-format -msgid "about %d hours" -msgstr "alrededor de %d horas" - -#: ../../include/js_strings.php:52 +#: ../../include/js_strings.php:61 msgid "a day" msgstr "un día" -#: ../../include/js_strings.php:53 -#, php-format -msgid "%d days" -msgstr "%d días" - -#: ../../include/js_strings.php:54 +#: ../../include/js_strings.php:63 msgid "about a month" msgstr "alrededor de un mes" -#: ../../include/js_strings.php:55 -#, php-format -msgid "%d months" -msgstr "%d meses" - -#: ../../include/js_strings.php:56 +#: ../../include/js_strings.php:65 msgid "about a year" msgstr "alrededor de un año" -#: ../../include/js_strings.php:57 -#, php-format -msgid "%d years" -msgstr "%d años" - -#: ../../include/js_strings.php:58 +#: ../../include/js_strings.php:67 msgid " " msgstr " " -#: ../../include/js_strings.php:59 +#: ../../include/js_strings.php:68 msgid "timeago.numbers" msgstr "timeago.numbers" -#: ../../include/js_strings.php:65 +#: ../../include/js_strings.php:74 msgctxt "long" msgid "May" msgstr "mayo" -#: ../../include/js_strings.php:73 +#: ../../include/js_strings.php:82 msgid "Jan" msgstr "ene" -#: ../../include/js_strings.php:74 +#: ../../include/js_strings.php:83 msgid "Feb" msgstr "feb" -#: ../../include/js_strings.php:75 +#: ../../include/js_strings.php:84 msgid "Mar" msgstr "mar" -#: ../../include/js_strings.php:76 +#: ../../include/js_strings.php:85 msgid "Apr" msgstr "abr" -#: ../../include/js_strings.php:77 +#: ../../include/js_strings.php:86 msgctxt "short" msgid "May" msgstr "may" -#: ../../include/js_strings.php:78 +#: ../../include/js_strings.php:87 msgid "Jun" msgstr "jun" -#: ../../include/js_strings.php:79 +#: ../../include/js_strings.php:88 msgid "Jul" msgstr "jul" -#: ../../include/js_strings.php:80 +#: ../../include/js_strings.php:89 msgid "Aug" msgstr "ago" -#: ../../include/js_strings.php:81 +#: ../../include/js_strings.php:90 msgid "Sep" msgstr "sep" -#: ../../include/js_strings.php:82 +#: ../../include/js_strings.php:91 msgid "Oct" msgstr "oct" -#: ../../include/js_strings.php:83 +#: ../../include/js_strings.php:92 msgid "Nov" msgstr "nov" -#: ../../include/js_strings.php:84 +#: ../../include/js_strings.php:93 msgid "Dec" msgstr "dic" -#: ../../include/js_strings.php:92 +#: ../../include/js_strings.php:101 msgid "Sun" msgstr "dom" -#: ../../include/js_strings.php:93 +#: ../../include/js_strings.php:102 msgid "Mon" msgstr "lun" -#: ../../include/js_strings.php:94 +#: ../../include/js_strings.php:103 msgid "Tue" msgstr "mar" -#: ../../include/js_strings.php:95 +#: ../../include/js_strings.php:104 msgid "Wed" msgstr "mié" -#: ../../include/js_strings.php:96 +#: ../../include/js_strings.php:105 msgid "Thu" msgstr "jue" -#: ../../include/js_strings.php:97 +#: ../../include/js_strings.php:106 msgid "Fri" msgstr "vie" -#: ../../include/js_strings.php:98 +#: ../../include/js_strings.php:107 msgid "Sat" msgstr "sáb" -#: ../../include/js_strings.php:99 +#: ../../include/js_strings.php:108 msgctxt "calendar" msgid "today" msgstr "hoy" -#: ../../include/js_strings.php:100 +#: ../../include/js_strings.php:109 msgctxt "calendar" msgid "month" msgstr "mes" -#: ../../include/js_strings.php:101 +#: ../../include/js_strings.php:110 msgctxt "calendar" msgid "week" msgstr "semana" -#: ../../include/js_strings.php:102 +#: ../../include/js_strings.php:111 msgctxt "calendar" msgid "day" msgstr "día" -#: ../../include/js_strings.php:103 +#: ../../include/js_strings.php:112 msgctxt "calendar" msgid "All day" msgstr "Todos los días" @@ -14219,35 +14267,35 @@ msgstr "Llamadas de trabajo" msgid "Work, Fax" msgstr "Fax de trabajo" -#: ../../include/network.php:760 +#: ../../include/network.php:770 msgid "view full size" msgstr "Ver en el tamaño original" -#: ../../include/network.php:1766 +#: ../../include/network.php:1776 msgid "GNU-Social" msgstr "GNU Social" -#: ../../include/network.php:1767 +#: ../../include/network.php:1777 msgid "RSS/Atom" msgstr "RSS/Atom" -#: ../../include/network.php:1771 +#: ../../include/network.php:1781 msgid "Facebook" msgstr "Facebook" -#: ../../include/network.php:1773 +#: ../../include/network.php:1783 msgid "LinkedIn" msgstr "LinkedIn" -#: ../../include/network.php:1774 +#: ../../include/network.php:1784 msgid "XMPP/IM" msgstr "XMPP/IM" -#: ../../include/network.php:1775 +#: ../../include/network.php:1785 msgid "MySpace" msgstr "MySpace" -#: ../../include/language.php:410 +#: ../../include/language.php:436 msgid "Select an alternate language" msgstr "Seleccionar un idioma alternativo" @@ -14888,55 +14936,55 @@ msgstr "Buscar en el sitio @nombre, !foro, #tag, ?docs, contenido" msgid "Site Setup and Configuration" msgstr "Ajustes y configuración del sitio" -#: ../../include/nav.php:294 +#: ../../include/nav.php:299 msgid "@name, !forum, #tag, ?doc, content" msgstr "@nombre, !foro, #tag, ?docs, contenido" -#: ../../include/nav.php:295 +#: ../../include/nav.php:300 msgid "Please wait..." msgstr "Espere por favor…" -#: ../../include/nav.php:301 +#: ../../include/nav.php:306 msgid "Add Apps" msgstr "Añadir aplicaciones" -#: ../../include/nav.php:302 +#: ../../include/nav.php:307 msgid "Arrange Apps" msgstr "Organizar aplicaciones" -#: ../../include/nav.php:303 +#: ../../include/nav.php:308 msgid "Toggle System Apps" msgstr "Alternar aplicaciones de sistema" -#: ../../include/nav.php:389 +#: ../../include/nav.php:394 msgid "Status Messages and Posts" msgstr "Mensajes de estado y publicaciones" -#: ../../include/nav.php:402 +#: ../../include/nav.php:407 msgid "Profile Details" msgstr "Detalles del perfil" -#: ../../include/nav.php:412 ../../include/photos.php:667 +#: ../../include/nav.php:417 ../../include/photos.php:667 msgid "Photo Albums" msgstr "Álbumes de fotos" -#: ../../include/nav.php:420 +#: ../../include/nav.php:425 msgid "Files and Storage" msgstr "Ficheros y repositorio" -#: ../../include/nav.php:458 +#: ../../include/nav.php:463 msgid "Saved Bookmarks" msgstr "Marcadores guardados" -#: ../../include/nav.php:469 +#: ../../include/nav.php:474 msgid "View Cards" msgstr "Ver las fichas" -#: ../../include/nav.php:480 +#: ../../include/nav.php:485 msgid "View Articles" msgstr "Ver los artículos" -#: ../../include/nav.php:492 +#: ../../include/nav.php:497 msgid "View Webpages" msgstr "Ver páginas web" diff --git a/view/es-es/hstrings.php b/view/es-es/hstrings.php index a7a4d6a3c..0eb4c5922 100644 --- a/view/es-es/hstrings.php +++ b/view/es-es/hstrings.php @@ -5,6 +5,7 @@ function string_plural_select_es_es($n){ return ($n != 1);; }} App::$rtl = 0; +App::$strings["plural_function_code"] = "(n != 1);"; App::$strings["Can view my channel stream and posts"] = "Pueden verse la actividad y publicaciones de mi canal"; App::$strings["Can send me their channel stream and posts"] = "Se me pueden enviar entradas y contenido de un canal"; App::$strings["Can view my default channel profile"] = "Puede verse mi perfil de canal predeterminado."; @@ -573,7 +574,7 @@ App::$strings["This is displayed on the public server site list."] = "Esto se mu App::$strings["Register text"] = "Texto del registro"; App::$strings["Will be displayed prominently on the registration page."] = "Se mostrará de forma destacada en la página de registro."; App::$strings["Site homepage to show visitors (default: login box)"] = "Página personal que se mostrará a los visitantes (por defecto: la página de identificación)"; -App::$strings["example: 'public' to show public stream, 'page/sys/home' to show a system webpage called 'home' or 'include:home.html' to include a file."] = "ejemplo: 'public' para mostrar contenido público, 'page/sys/home' para mostrar la página web definida como \"home\" o 'include:home.html' para mostrar el contenido de un fichero."; +App::$strings["example: 'pubstream' to show public stream, 'page/sys/home' to show a system webpage called 'home' or 'include:home.html' to include a file."] = "ejemplo: 'pubstream' para mostrar el stream público, 'page/sys/home' para mostrar una página web del sistema llamada 'home' o 'include:home.html' para incluir un archivo."; App::$strings["Preserve site homepage URL"] = "Preservar la dirección de la página personal"; App::$strings["Present the site homepage in a frame at the original location instead of redirecting"] = "Presenta la página personal del sitio en un marco en la ubicación original, en vez de redirigirla."; App::$strings["Accounts abandoned after x days"] = "Cuentas abandonadas después de x días"; @@ -755,7 +756,6 @@ App::$strings["Maximum Friend Requests/Day:"] = "Máximo de solicitudes de amist App::$strings["May reduce spam activity"] = "Podría reducir la actividad de spam"; App::$strings["Default Privacy Group"] = "Grupo de canales predeterminado"; App::$strings["Use my default audience setting for the type of object published"] = "Usar los ajustes de mi audiencia predeterminada para el tipo de publicación"; -App::$strings["Profile to assign new connections"] = "Perfil para asignar a las nuevas conexiones"; App::$strings["Default permissions category"] = "Categoría de permisos por defecto"; App::$strings["Maximum private messages per day from unknown people:"] = "Máximo de mensajes privados por día de gente desconocida:"; App::$strings["Useful to reduce spamming"] = "Útil para reducir el envío de correo no deseado"; @@ -803,9 +803,7 @@ App::$strings["Miscellaneous Settings"] = "Ajustes diversos"; App::$strings["Default photo upload folder"] = "Carpeta por defecto de las fotos subidas"; App::$strings["%Y - current year, %m - current month"] = "%Y - año en curso, %m - mes actual"; App::$strings["Default file upload folder"] = "Carpeta por defecto de los ficheros subidos"; -App::$strings["Personal menu to display in your channel pages"] = "Menú personal que debe mostrarse en las páginas de su canal"; App::$strings["Remove this channel."] = "Eliminar este canal."; -App::$strings["Firefox Share \$Projectname provider"] = "Servicio de compartición de Firefox: proveedor \$Projectname"; App::$strings["Additional Features"] = "Funcionalidades"; App::$strings["Events Settings"] = "Gestión de eventos"; App::$strings["CalDAV Settings"] = "Ajustes de CalDav"; @@ -842,6 +840,7 @@ App::$strings["Addon Settings"] = "Ajustes de los complementos"; App::$strings["Please save/submit changes to any panel before opening another."] = "Guarde o envíe los cambios a cualquier panel antes de abrir otro."; App::$strings["Max height of content (in pixels)"] = "Altura máxima del contenido (en píxeles)"; App::$strings["Click to expand content exceeding this height"] = "Haga clic para expandir el contenido que exceda esta altura"; +App::$strings["Personal menu to display in your channel pages"] = "Menú personal que debe mostrarse en las páginas de su canal"; App::$strings["Channel Home Settings"] = "Ajustes del canal"; App::$strings["Directory Settings"] = "Configuración del directorio"; App::$strings["Editor Settings"] = "Ajustes del editor"; @@ -2069,6 +2068,9 @@ App::$strings["Communicate"] = "Comunicarse"; App::$strings["View your channel homepage"] = "Ver la página principal de su canal"; App::$strings["View your network stream"] = "Ver el \"stream\" de su red"; App::$strings["Documentation"] = "Documentación"; +App::$strings["Missing Features?"] = "¿Faltan Características?"; +App::$strings["Pin apps to navigation bar"] = "Fijar apps a la barra de navegación"; +App::$strings["Install more apps"] = "Instalar más apps"; App::$strings["View public stream"] = "Ver el \"stream\" público"; App::$strings["Member registrations waiting for confirmation"] = "Inscripciones de nuevos miembros pendientes de aprobación"; App::$strings["Inspect queue"] = "Examinar la cola"; @@ -2455,6 +2457,13 @@ App::$strings["Approve subscription requests from Hubzilla contacts automaticall App::$strings["Purge internal list of jabber addresses of contacts"] = "Purgar la lista interna de las direcciones de contactos de jabber"; App::$strings["Configuration Help"] = "Ayuda para los ajustes"; App::$strings["Jappix Mini Settings"] = "Ajustes de Jappix Mini"; +App::$strings["Your channel has been upgraded to the latest \$Projectname version."] = "Su canal ha sido actualizado a la última versión de \$Projectname."; +App::$strings["To improve usability, we have converted some features into installable stand-alone apps."] = "Para mejorar la usabilidad, hemos convertido algunas características en aplicaciones independientes instalables."; +App::$strings["Please visit the \$Projectname"] = "Por favor visite el sitio web de \$Projectname"; +App::$strings["app store"] = "depósito de apps"; +App::$strings["and install possibly missing apps."] = "e instalar aplicaciones que posiblemente falten."; +App::$strings["Upgrade Info"] = "Información de actualización"; +App::$strings["Do not show this again"] = "No mostrar esto de nuevo"; App::$strings["Access Denied"] = "Acceso denegado"; App::$strings["Enable Community Moderation"] = "Habilitar la moderación de la comunidad"; App::$strings["Reputation automatically given to new members"] = "La reputación se otorga automáticamente a los nuevos miembros"; @@ -2807,6 +2816,7 @@ App::$strings["%1\$d of %2\$d messages sent."] = "%1\$d de %2\$d mensajes enviad App::$strings["Send email to all hub members."] = "Enviar un correo electrónico a todos los miembros del hub."; App::$strings["Sender Email address"] = "Dirección de correo electrónico del remitente"; App::$strings["Test mode (only send to hub administrator)"] = "Modo de prueba (enviar sólo al administrador del hub)"; +App::$strings["Profile to assign new connections"] = "Perfil para asignar a las nuevas conexiones"; App::$strings["Frequently"] = "Frecuentemente"; App::$strings["Hourly"] = "Cada hora"; App::$strings["Twice daily"] = "Dos veces al día"; @@ -3069,21 +3079,36 @@ App::$strings["Thank you, this nickname is valid."] = "Gracias, este alias es v App::$strings["A channel name is required."] = "Se requiere un nombre de canal"; App::$strings["This is a "] = "Esto es un "; App::$strings[" channel name"] = "nombre de canal"; +App::$strings["%d minutes"] = array( + 0 => "%d minutos", + 1 => "%d minutos", +); +App::$strings["about %d hours"] = array( + 0 => "alrededor de %d horas", + 1 => "alrededor de %d horas", +); +App::$strings["%d days"] = array( + 0 => "%d días", + 1 => "%d días", +); +App::$strings["%d months"] = array( + 0 => "%d meses", + 1 => "%d meses", +); +App::$strings["%d years"] = array( + 0 => "%d años", + 1 => "%d años", +); App::$strings["timeago.prefixAgo"] = "hace "; App::$strings["timeago.prefixFromNow"] = "en "; App::$strings["timeago.suffixAgo"] = "NONE"; App::$strings["timeago.suffixFromNow"] = "NONE"; App::$strings["less than a minute"] = "menos de un minuto"; App::$strings["about a minute"] = "alrededor de un minuto"; -App::$strings["%d minutes"] = "%d minutos"; App::$strings["about an hour"] = "alrededor de una hora"; -App::$strings["about %d hours"] = "alrededor de %d horas"; App::$strings["a day"] = "un día"; -App::$strings["%d days"] = "%d días"; App::$strings["about a month"] = "alrededor de un mes"; -App::$strings["%d months"] = "%d meses"; App::$strings["about a year"] = "alrededor de un año"; -App::$strings["%d years"] = "%d años"; App::$strings[" "] = " "; App::$strings["timeago.numbers"] = "timeago.numbers"; App::$strings["__ctx:long__ May"] = "mayo"; From 7c2efa697cdcbda05affe43cc00274ddbea9b21b Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Mon, 29 Oct 2018 10:04:34 +0100 Subject: [PATCH 788/819] merge Zotlabs/Module/Photo.php from dev --- Zotlabs/Module/Photo.php | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/Zotlabs/Module/Photo.php b/Zotlabs/Module/Photo.php index 3f68e5c67..8efc00707 100644 --- a/Zotlabs/Module/Photo.php +++ b/Zotlabs/Module/Photo.php @@ -151,18 +151,6 @@ class Photo extends \Zotlabs\Web\Controller { $allowed = attach_can_view($r[0]['uid'],$observer_xchan,$photo); } - if(intval($r[0]['photo_usage'])) { - $allowed = 1; - if(intval($r[0]['photo_usage']) === PHOTO_COVER) - if($resolution < PHOTO_RES_COVER_1200) - $allowed = (-1); - if(intval($r[0]['photo_usage']) === PHOTO_PROFILE) - if(! in_array($resolution,[4,5,6])) - $allowed = (-1); - } - if($allowed === (-1)) - $allowed = attach_can_view($r[0]['uid'],$observer_xchan,$photo); - $channel = channelx_by_n($r[0]['uid']); // Now we'll see if we can access the photo From 32384eaf0755c66c2b80cb31b4145b87f88ab38c Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Mon, 29 Oct 2018 10:06:01 +0100 Subject: [PATCH 789/819] merge Zotlabs/Widget/Wiki_pages.php from dev --- Zotlabs/Widget/Wiki_pages.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/Zotlabs/Widget/Wiki_pages.php b/Zotlabs/Widget/Wiki_pages.php index f178c940d..dee0a2229 100644 --- a/Zotlabs/Widget/Wiki_pages.php +++ b/Zotlabs/Widget/Wiki_pages.php @@ -61,8 +61,6 @@ class Wiki_pages { $wikiname = ''; - $wikiname = ''; - $pages = array(); $p = \Zotlabs\Lib\NativeWikiPage::page_list($arr['channel_id'],get_observer_hash(),$arr['resource_id']); From f377c81c8a0394ada05d2302f4c806f2e635a30b Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Mon, 29 Oct 2018 10:06:44 +0100 Subject: [PATCH 790/819] merge include/connections.php from dev --- include/connections.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/include/connections.php b/include/connections.php index 874237f97..d97ea3887 100644 --- a/include/connections.php +++ b/include/connections.php @@ -379,8 +379,6 @@ function contact_remove($channel_id, $abook_id) { intval($channel_id) ); if($r) { - $r = fetch_post_tags($r,true); - foreach($r as $rr) { $x = q("select uid from term where otype = %d and oid = %d and ttype = %d limit 1", intval(TERM_OBJ_POST), From 31883f603cbbe38183f365954c3093b545cfb413 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Mon, 29 Oct 2018 10:07:15 +0100 Subject: [PATCH 791/819] merge include/import.php from dev --- include/import.php | 1 - 1 file changed, 1 deletion(-) diff --git a/include/import.php b/include/import.php index 19e2bbcec..714161c57 100644 --- a/include/import.php +++ b/include/import.php @@ -168,7 +168,6 @@ function import_profiles($channel, $profiles) { unset($profile['id']); $profile['aid'] = get_account_id(); $profile['uid'] = $channel['channel_id']; - unset($profile['profile_vcard']); convert_oldfields($profile,'name','fullname'); convert_oldfields($profile,'with','partner'); From cc586685e6c6b400bc0000669a7ee1394c45098d Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Mon, 29 Oct 2018 10:07:54 +0100 Subject: [PATCH 792/819] merge include/nav.php from dev --- include/nav.php | 1 - 1 file changed, 1 deletion(-) diff --git a/include/nav.php b/include/nav.php index 9c15552e2..d405b9f06 100644 --- a/include/nav.php +++ b/include/nav.php @@ -224,7 +224,6 @@ function nav($template = 'default') { //app bin if($is_owner) { - //daily system apps import if(get_pconfig(local_channel(), 'system','import_system_apps') !== datetime_convert('UTC','UTC','now','Y-m-d')) { Apps::import_system_apps(); set_pconfig(local_channel(), 'system','import_system_apps', datetime_convert('UTC','UTC','now','Y-m-d')); From e1c3a1942098305ceb5d5c3ad7d7c5ae8961c187 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Mon, 29 Oct 2018 10:08:12 +0100 Subject: [PATCH 793/819] merge include/zot.php from dev --- include/zot.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/zot.php b/include/zot.php index 4a8892083..1a632cf87 100644 --- a/include/zot.php +++ b/include/zot.php @@ -4327,7 +4327,7 @@ function zotinfo($arr) { if($role === 'forum' || $role === 'repository') { $public_forum = true; } - elseif($ztarget_hash) { + else { // check if it has characteristics of a public forum based on custom permissions. $m = \Zotlabs\Access\Permissions::FilledAutoperms($e['channel_id']); if($m) { From dd6045d9f8187cd079795576c637546964cfd3e4 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Mon, 29 Oct 2018 10:08:37 +0100 Subject: [PATCH 794/819] merge install/schema_postgres.sql from dev --- install/schema_postgres.sql | 296 ++++++++++++++++++------------------ 1 file changed, 148 insertions(+), 148 deletions(-) diff --git a/install/schema_postgres.sql b/install/schema_postgres.sql index 5d1b8baaa..cb4476628 100644 --- a/install/schema_postgres.sql +++ b/install/schema_postgres.sql @@ -1,6 +1,6 @@ CREATE TABLE "abconfig" ( "id" serial NOT NULL, - "chan" bigint NOT NULL DEFAULT 0, + "chan" bigint NOT NULL DEFAULT '0', "xchan" text NOT NULL, "cat" text NOT NULL, "k" text NOT NULL, @@ -73,13 +73,13 @@ CREATE TABLE "account" ( "account_language" varchar(16) NOT NULL DEFAULT 'en', "account_created" timestamp NOT NULL DEFAULT '0001-01-01 00:00:00', "account_lastlog" timestamp NOT NULL DEFAULT '0001-01-01 00:00:00', - "account_flags" bigint NOT NULL DEFAULT 0 , - "account_roles" bigint NOT NULL DEFAULT 0 , + "account_flags" bigint NOT NULL DEFAULT '0', + "account_roles" bigint NOT NULL DEFAULT '0', "account_reset" text NOT NULL DEFAULT '', "account_expires" timestamp NOT NULL DEFAULT '0001-01-01 00:00:00', "account_expire_notified" timestamp NOT NULL DEFAULT '0001-01-01 00:00:00', "account_service_class" varchar(32) NOT NULL DEFAULT '', - "account_level" bigint NOT NULL DEFAULT 0 , + "account_level" bigint NOT NULL DEFAULT '0', "account_password_changed" timestamp NOT NULL DEFAULT '0001-01-01 00:00:00', PRIMARY KEY ("account_id") ); @@ -97,11 +97,11 @@ create index "account_password_changed" on account ("account_password_changed") CREATE TABLE "addon" ( "id" serial NOT NULL, "aname" text NOT NULL, - "version" text NOT NULL DEFAULT 0 , - "installed" numeric(1) NOT NULL DEFAULT 0 , - "hidden" numeric(1) NOT NULL DEFAULT 0 , - "tstamp" numeric(20) NOT NULL DEFAULT 0 , - "plugin_admin" numeric(1) NOT NULL DEFAULT 0 , + "version" text NOT NULL DEFAULT '0', + "installed" numeric(1) NOT NULL DEFAULT '0', + "hidden" numeric(1) NOT NULL DEFAULT '0', + "tstamp" numeric(20) NOT NULL DEFAULT '0', + "plugin_admin" numeric(1) NOT NULL DEFAULT '0', PRIMARY KEY ("id") ); create index "addon_hidden_idx" on addon ("hidden"); @@ -117,13 +117,13 @@ CREATE TABLE "app" ( "app_url" text NOT NULL DEFAULT '', "app_photo" text NOT NULL DEFAULT '', "app_version" text NOT NULL DEFAULT '', - "app_channel" bigint NOT NULL DEFAULT 0 , + "app_channel" bigint NOT NULL DEFAULT '0', "app_addr" text NOT NULL DEFAULT '', "app_price" text NOT NULL DEFAULT '', "app_page" text NOT NULL DEFAULT '', "app_requires" text NOT NULL DEFAULT '', - "app_deleted" smallint NOT NULL DEFAULT 0 , - "app_system" smallint NOT NULL DEFAULT 0 , + "app_deleted" smallint NOT NULL DEFAULT '0', + "app_system" smallint NOT NULL DEFAULT '0', "app_plugin" text NOT NULL DEFAULT '', "app_options" smallint NOT NULL DEFAULT '0', "app_created" timestamp NOT NULL DEFAULT '0001-01-01 00:00:00', @@ -159,19 +159,19 @@ create index atoken_expires on atoken (atoken_expires); CREATE TABLE "attach" ( "id" serial NOT NULL, - "aid" bigint NOT NULL DEFAULT 0 , - "uid" bigint NOT NULL DEFAULT 0 , + "aid" bigint NOT NULL DEFAULT '0', + "uid" bigint NOT NULL DEFAULT '0', "hash" varchar(64) NOT NULL DEFAULT '', "creator" varchar(128) NOT NULL DEFAULT '', "filename" text NOT NULL DEFAULT '', "filetype" varchar(64) NOT NULL DEFAULT '', - "filesize" bigint NOT NULL DEFAULT 0 , - "revision" bigint NOT NULL DEFAULT 0 , + "filesize" bigint NOT NULL DEFAULT '0', + "revision" bigint NOT NULL DEFAULT '0', "folder" varchar(64) NOT NULL DEFAULT '', - "flags" bigint NOT NULL DEFAULT 0 , - "is_dir" smallint NOT NULL DEFAULT 0 , - "is_photo" smallint NOT NULL DEFAULT 0 , - "os_storage" smallint NOT NULL DEFAULT 0 , + "flags" bigint NOT NULL DEFAULT '0', + "is_dir" smallint NOT NULL DEFAULT '0', + "is_photo" smallint NOT NULL DEFAULT '0', + "os_storage" smallint NOT NULL DEFAULT '0', "os_path" text NOT NULL, "display_path" text NOT NULL, "content" bytea NOT NULL, @@ -215,8 +215,8 @@ CREATE TABLE "cache" ( ); CREATE TABLE "cal" ( "cal_id" serial NOT NULL, - "cal_aid" bigint NOT NULL DEFAULT 0 , - "cal_uid" bigint NOT NULL DEFAULT 0 , + "cal_aid" bigint NOT NULL DEFAULT '0', + "cal_uid" bigint NOT NULL DEFAULT '0', "cal_hash" text NOT NULL, "cal_name" text NOT NULL, "uri" text NOT NULL, @@ -224,7 +224,7 @@ CREATE TABLE "cal" ( "pass" text NOT NULL, "ctag" text NOT NULL, "synctoken" text NOT NULL, - "cal_types" text NOT NULL DEFAULT 0 , + "cal_types" text NOT NULL DEFAULT '0', PRIMARY KEY ("cal_id") ); create index "cal_hash_idx" on cal ("cal_hash"); @@ -235,8 +235,8 @@ create index "cal_uid_idx" on cal ("cal_uid"); CREATE TABLE "channel" ( "channel_id" serial NOT NULL, - "channel_account_id" bigint NOT NULL DEFAULT 0 , - "channel_primary" numeric(1) NOT NULL DEFAULT 0 , + "channel_account_id" bigint NOT NULL DEFAULT '0', + "channel_primary" numeric(1) NOT NULL DEFAULT '0', "channel_name" text NOT NULL DEFAULT '', "channel_address" text NOT NULL DEFAULT '', "channel_guid" text NOT NULL DEFAULT '', @@ -248,8 +248,8 @@ CREATE TABLE "channel" ( "channel_startpage" text NOT NULL DEFAULT '', "channel_pubkey" text NOT NULL, "channel_prvkey" text NOT NULL, - "channel_notifyflags" bigint NOT NULL DEFAULT 65535, - "channel_pageflags" bigint NOT NULL DEFAULT 0 , + "channel_notifyflags" bigint NOT NULL DEFAULT '65535', + "channel_pageflags" bigint NOT NULL DEFAULT '0', "channel_dirdate" timestamp NOT NULL DEFAULT '0001-01-01 00:00:00', "channel_lastpost" timestamp NOT NULL DEFAULT '0001-01-01 00:00:00', "channel_deleted" timestamp NOT NULL DEFAULT '0001-01-01 00:00:00', @@ -294,7 +294,7 @@ create index "channel_system" on channel ("channel_system"); create index "channel_moved" on channel ("channel_moved"); CREATE TABLE "chat" ( "chat_id" serial NOT NULL, - "chat_room" bigint NOT NULL DEFAULT 0 , + "chat_room" bigint NOT NULL DEFAULT '0', "chat_xchan" text NOT NULL DEFAULT '', "chat_text" text NOT NULL, "created" timestamp NOT NULL DEFAULT '0001-01-01 00:00:00', @@ -305,7 +305,7 @@ create index "chat_xchan_idx" on chat ("chat_xchan"); create index "chat_created_idx" on chat ("created"); CREATE TABLE "chatpresence" ( "cp_id" serial NOT NULL, - "cp_room" bigint NOT NULL DEFAULT 0 , + "cp_room" bigint NOT NULL DEFAULT '0', "cp_xchan" text NOT NULL DEFAULT '', "cp_last" timestamp NOT NULL DEFAULT '0001-01-01 00:00:00', "cp_status" text NOT NULL, @@ -319,12 +319,12 @@ create index "cp_status" on chatpresence ("cp_status"); CREATE TABLE "chatroom" ( "cr_id" serial NOT NULL, - "cr_aid" bigint NOT NULL DEFAULT 0 , - "cr_uid" bigint NOT NULL DEFAULT 0 , + "cr_aid" bigint NOT NULL DEFAULT '0', + "cr_uid" bigint NOT NULL DEFAULT '0', "cr_name" text NOT NULL DEFAULT '', "cr_created" timestamp NOT NULL DEFAULT '0001-01-01 00:00:00', "cr_edited" timestamp NOT NULL DEFAULT '0001-01-01 00:00:00', - "cr_expire" bigint NOT NULL DEFAULT 0 , + "cr_expire" bigint NOT NULL DEFAULT '0', "allow_cid" text NOT NULL, "allow_gid" text NOT NULL, "deny_cid" text NOT NULL, @@ -343,7 +343,7 @@ CREATE TABLE "clients" ( "redirect_uri" varchar(200) NOT NULL, "clname" text, "icon" text, - "uid" bigint NOT NULL DEFAULT 0 , + "uid" bigint NOT NULL DEFAULT '0', PRIMARY KEY ("client_id") ); CREATE TABLE "config" ( @@ -390,9 +390,9 @@ create index "dreport_channel" on dreport ("dreport_channel"); CREATE TABLE "event" ( "id" serial NOT NULL, - "aid" bigint NOT NULL DEFAULT 0 , + "aid" bigint NOT NULL DEFAULT '0', "uid" bigint NOT NULL, - "cal_id" bigint NOT NULL DEFAULT 0 , + "cal_id" bigint NOT NULL DEFAULT '0', "event_xchan" text NOT NULL DEFAULT '', "event_hash" text NOT NULL DEFAULT '', "created" timestamp NOT NULL DEFAULT '0001-01-01 00:00:00', @@ -403,19 +403,19 @@ CREATE TABLE "event" ( "description" text NOT NULL, "location" text NOT NULL, "etype" text NOT NULL, - "nofinish" numeric(1) NOT NULL DEFAULT 0 , - "adjust" numeric(1) NOT NULL DEFAULT 1, - "dismissed" numeric(1) NOT NULL DEFAULT 0 , + "nofinish" numeric(1) NOT NULL DEFAULT '0', + "adjust" numeric(1) NOT NULL DEFAULT '1', + "dismissed" numeric(1) NOT NULL DEFAULT '0', "allow_cid" text NOT NULL, "allow_gid" text NOT NULL, "deny_cid" text NOT NULL, "deny_gid" text NOT NULL, "event_status" varchar(255) NOT NULL DEFAULT '', "event_status_date" timestamp NOT NULL DEFAULT '0001-01-01 00:00:00', - "event_percent" smallint NOT NULL DEFAULT 0 , + "event_percent" smallint NOT NULL DEFAULT '0', "event_repeat" text NOT NULL, - "event_sequence" smallint NOT NULL DEFAULT 0 , - "event_priority" smallint NOT NULL DEFAULT 0 , + "event_sequence" smallint NOT NULL DEFAULT '0', + "event_priority" smallint NOT NULL DEFAULT '0', "event_vdata" text NOT NULL, PRIMARY KEY ("id") ); @@ -449,8 +449,8 @@ CREATE TABLE "pgrp" ( "id" serial NOT NULL, "hash" text NOT NULL DEFAULT '', "uid" bigint NOT NULL, - "visible" numeric(1) NOT NULL DEFAULT 0 , - "deleted" numeric(1) NOT NULL DEFAULT 0 , + "visible" numeric(1) NOT NULL DEFAULT '0', + "deleted" numeric(1) NOT NULL DEFAULT '0', "gname" text NOT NULL, PRIMARY KEY ("id") @@ -465,8 +465,8 @@ CREATE TABLE "hook" ( "hook" text NOT NULL, "file" text NOT NULL, "fn" text NOT NULL, - "priority" smallint NOT NULL DEFAULT 0 , - "hook_version" smallint NOT NULL DEFAULT 0 , + "priority" smallint NOT NULL DEFAULT '0', + "hook_version" smallint NOT NULL DEFAULT '0', PRIMARY KEY ("id") ); @@ -483,8 +483,8 @@ CREATE TABLE "hubloc" ( "hubloc_hash" text NOT NULL, "hubloc_addr" text NOT NULL DEFAULT '', "hubloc_network" text NOT NULL DEFAULT '', - "hubloc_flags" bigint NOT NULL DEFAULT 0 , - "hubloc_status" bigint NOT NULL DEFAULT 0 , + "hubloc_flags" bigint NOT NULL DEFAULT '0', + "hubloc_status" bigint NOT NULL DEFAULT '0', "hubloc_url" text NOT NULL DEFAULT '', "hubloc_url_sig" text NOT NULL DEFAULT '', "hubloc_site_id" text NOT NULL DEFAULT '', @@ -494,10 +494,10 @@ CREATE TABLE "hubloc" ( "hubloc_sitekey" text NOT NULL DEFAULT '', "hubloc_updated" timestamp NOT NULL DEFAULT '0001-01-01 00:00:00', "hubloc_connected" timestamp NOT NULL DEFAULT '0001-01-01 00:00:00', - "hubloc_primary" smallint NOT NULL DEFAULT 0 , - "hubloc_orphancheck" smallint NOT NULL DEFAULT 0 , - "hubloc_error" smallint NOT NULL DEFAULT 0 , - "hubloc_deleted" smallint NOT NULL DEFAULT 0 , + "hubloc_primary" smallint NOT NULL DEFAULT '0', + "hubloc_orphancheck" smallint NOT NULL DEFAULT '0', + "hubloc_error" smallint NOT NULL DEFAULT '0', + "hubloc_deleted" smallint NOT NULL DEFAULT '0', PRIMARY KEY ("hubloc_id") ); create index "hubloc_url" on hubloc ("hubloc_url"); @@ -518,11 +518,11 @@ create index "hubloc_error" on hubloc ("hubloc_error"); create index "hubloc_deleted" on hubloc ("hubloc_deleted"); CREATE TABLE "iconfig" ( "id" serial NOT NULL, - "iid" bigint NOT NULL DEFAULT 0 , + "iid" bigint NOT NULL DEFAULT '0', "cat" text NOT NULL DEFAULT '', "k" text NOT NULL DEFAULT '', "v" text NOT NULL DEFAULT '', - "sharing" int NOT NULL DEFAULT 0 , + "sharing" int NOT NULL DEFAULT '0', PRIMARY KEY("id") ); create index "iconfig_iid" on iconfig ("iid"); @@ -549,9 +549,9 @@ create index "issue_component" on issue ("issue_component"); CREATE TABLE "item" ( "id" serial NOT NULL, "mid" text NOT NULL DEFAULT '', - "aid" bigint NOT NULL DEFAULT 0 , - "uid" bigint NOT NULL DEFAULT 0 , - "parent" bigint NOT NULL DEFAULT 0 , + "aid" bigint NOT NULL DEFAULT '0', + "uid" bigint NOT NULL DEFAULT '0', + "parent" bigint NOT NULL DEFAULT '0', "parent_mid" text NOT NULL DEFAULT '', "thr_parent" text NOT NULL DEFAULT '', "created" timestamp NOT NULL DEFAULT '0001-01-01 00:00:00', @@ -570,7 +570,7 @@ CREATE TABLE "item" ( "html" text NOT NULL, "app" text NOT NULL DEFAULT '', "lang" varchar(64) NOT NULL DEFAULT '', - "revision" bigint NOT NULL DEFAULT 0 , + "revision" bigint NOT NULL DEFAULT '0', "verb" text NOT NULL DEFAULT '', "obj_type" text NOT NULL DEFAULT '', "obj" text NOT NULL, @@ -593,32 +593,32 @@ CREATE TABLE "item" ( "allow_gid" text NOT NULL, "deny_cid" text NOT NULL, "deny_gid" text NOT NULL, - "item_restrict" bigint NOT NULL DEFAULT 0 , - "item_flags" bigint NOT NULL DEFAULT 0 , - "item_private" numeric(4) NOT NULL DEFAULT 0 , - "item_unseen" smallint NOT NULL DEFAULT 0 , - "item_wall" smallint NOT NULL DEFAULT 0 , - "item_origin" smallint NOT NULL DEFAULT 0 , - "item_starred" smallint NOT NULL DEFAULT 0 , - "item_uplink" smallint NOT NULL DEFAULT 0 , - "item_consensus" smallint NOT NULL DEFAULT 0 , - "item_thread_top" smallint NOT NULL DEFAULT 0 , - "item_notshown" smallint NOT NULL DEFAULT 0 , - "item_nsfw" smallint NOT NULL DEFAULT 0 , - "item_relay" smallint NOT NULL DEFAULT 0 , - "item_mentionsme" smallint NOT NULL DEFAULT 0 , - "item_nocomment" smallint NOT NULL DEFAULT 0 , - "item_obscured" smallint NOT NULL DEFAULT 0 , - "item_verified" smallint NOT NULL DEFAULT 0 , - "item_retained" smallint NOT NULL DEFAULT 0 , - "item_rss" smallint NOT NULL DEFAULT 0 , - "item_deleted" smallint NOT NULL DEFAULT 0 , - "item_type" int NOT NULL DEFAULT 0 , - "item_hidden" smallint NOT NULL DEFAULT 0 , - "item_unpublished" smallint NOT NULL DEFAULT 0 , - "item_delayed" smallint NOT NULL DEFAULT 0 , - "item_pending_remove" smallint NOT NULL DEFAULT 0 , - "item_blocked" smallint NOT NULL DEFAULT 0 , + "item_restrict" bigint NOT NULL DEFAULT '0', + "item_flags" bigint NOT NULL DEFAULT '0', + "item_private" numeric(4) NOT NULL DEFAULT '0', + "item_unseen" smallint NOT NULL DEFAULT '0', + "item_wall" smallint NOT NULL DEFAULT '0', + "item_origin" smallint NOT NULL DEFAULT '0', + "item_starred" smallint NOT NULL DEFAULT '0', + "item_uplink" smallint NOT NULL DEFAULT '0', + "item_consensus" smallint NOT NULL DEFAULT '0', + "item_thread_top" smallint NOT NULL DEFAULT '0', + "item_notshown" smallint NOT NULL DEFAULT '0', + "item_nsfw" smallint NOT NULL DEFAULT '0', + "item_relay" smallint NOT NULL DEFAULT '0', + "item_mentionsme" smallint NOT NULL DEFAULT '0', + "item_nocomment" smallint NOT NULL DEFAULT '0', + "item_obscured" smallint NOT NULL DEFAULT '0', + "item_verified" smallint NOT NULL DEFAULT '0', + "item_retained" smallint NOT NULL DEFAULT '0', + "item_rss" smallint NOT NULL DEFAULT '0', + "item_deleted" smallint NOT NULL DEFAULT '0', + "item_type" int NOT NULL DEFAULT '0', + "item_hidden" smallint NOT NULL DEFAULT '0', + "item_unpublished" smallint NOT NULL DEFAULT '0', + "item_delayed" smallint NOT NULL DEFAULT '0', + "item_pending_remove" smallint NOT NULL DEFAULT '0', + "item_blocked" smallint NOT NULL DEFAULT '0', "item_search_vector" tsvector, PRIMARY KEY ("id") ); @@ -731,9 +731,9 @@ create index "ltype_idx" on listeners ("ltype"); CREATE TABLE "mail" ( "id" serial NOT NULL, - "convid" bigint NOT NULL DEFAULT 0 , + "convid" bigint NOT NULL DEFAULT '0', "conv_guid" text NOT NULL, - "mail_flags" bigint NOT NULL DEFAULT 0 , + "mail_flags" bigint NOT NULL DEFAULT '0', "from_xchan" text NOT NULL DEFAULT '', "to_xchan" text NOT NULL DEFAULT '', "account_id" bigint NOT NULL DEFAULT '0', @@ -745,13 +745,13 @@ CREATE TABLE "mail" ( "attach" text NOT NULL DEFAULT '', "mid" text NOT NULL, "parent_mid" text NOT NULL, - "mail_deleted" smallint NOT NULL DEFAULT 0 , - "mail_replied" smallint NOT NULL DEFAULT 0 , - "mail_isreply" smallint NOT NULL DEFAULT 0 , - "mail_seen" smallint NOT NULL DEFAULT 0 , - "mail_recalled" smallint NOT NULL DEFAULT 0 , - "mail_obscured" smallint NOT NULL DEFAULT 0 , - "mail_raw" smallint NOT NULL DEFAULT 0 , + "mail_deleted" smallint NOT NULL DEFAULT '0', + "mail_replied" smallint NOT NULL DEFAULT '0', + "mail_isreply" smallint NOT NULL DEFAULT '0', + "mail_seen" smallint NOT NULL DEFAULT '0', + "mail_recalled" smallint NOT NULL DEFAULT '0', + "mail_obscured" smallint NOT NULL DEFAULT '0', + "mail_raw" smallint NOT NULL DEFAULT '0', "created" timestamp NOT NULL DEFAULT '0001-01-01 00:00:00', "expires" timestamp NOT NULL DEFAULT '0001-01-01 00:00:00', PRIMARY KEY ("id") @@ -775,10 +775,10 @@ create index "mail_recalled" on mail ("mail_recalled"); create index "mail_obscured" on mail ("mail_obscured"); CREATE TABLE "menu" ( "menu_id" serial NOT NULL, - "menu_channel_id" bigint NOT NULL DEFAULT 0 , + "menu_channel_id" bigint NOT NULL DEFAULT '0', "menu_name" text NOT NULL DEFAULT '', "menu_desc" text NOT NULL DEFAULT '', - "menu_flags" bigint NOT NULL DEFAULT 0 , + "menu_flags" bigint NOT NULL DEFAULT '0', "menu_created" timestamp NOT NULL DEFAULT '0001-01-01 00:00:00', "menu_edited" timestamp NOT NULL DEFAULT '0001-01-01 00:00:00', PRIMARY KEY ("menu_id") @@ -792,14 +792,14 @@ CREATE TABLE "menu_item" ( "mitem_id" serial NOT NULL, "mitem_link" text NOT NULL DEFAULT '', "mitem_desc" text NOT NULL DEFAULT '', - "mitem_flags" bigint NOT NULL DEFAULT 0 , + "mitem_flags" bigint NOT NULL DEFAULT '0', "allow_cid" text NOT NULL, "allow_gid" text NOT NULL, "deny_cid" text NOT NULL, "deny_gid" text NOT NULL, "mitem_channel_id" bigint NOT NULL, - "mitem_menu_id" bigint NOT NULL DEFAULT 0 , - "mitem_order" bigint NOT NULL DEFAULT 0 , + "mitem_menu_id" bigint NOT NULL DEFAULT '0', + "mitem_order" bigint NOT NULL DEFAULT '0', PRIMARY KEY ("mitem_id") ); @@ -818,7 +818,7 @@ CREATE TABLE "notify" ( "uid" bigint NOT NULL, "link" text NOT NULL, "parent" text NOT NULL DEFAULT '', - "seen" numeric(1) NOT NULL DEFAULT 0 , + "seen" numeric(1) NOT NULL DEFAULT '0', "ntype" bigint NOT NULL, "verb" text NOT NULL, "otype" varchar(16) NOT NULL, @@ -867,18 +867,18 @@ create index "obj_quantity" on obj ("obj_quantity"); CREATE TABLE "outq" ( "outq_hash" text NOT NULL, - "outq_account" bigint NOT NULL DEFAULT 0 , - "outq_channel" bigint NOT NULL DEFAULT 0 , + "outq_account" bigint NOT NULL DEFAULT '0', + "outq_channel" bigint NOT NULL DEFAULT '0', "outq_driver" varchar(32) NOT NULL DEFAULT '', "outq_posturl" text NOT NULL DEFAULT '', - "outq_async" numeric(1) NOT NULL DEFAULT 0 , - "outq_delivered" numeric(1) NOT NULL DEFAULT 0 , + "outq_async" numeric(1) NOT NULL DEFAULT '0', + "outq_delivered" numeric(1) NOT NULL DEFAULT '0', "outq_created" timestamp NOT NULL DEFAULT '0001-01-01 00:00:00', "outq_updated" timestamp NOT NULL DEFAULT '0001-01-01 00:00:00', "outq_scheduled" timestamp NOT NULL DEFAULT '0001-01-01 00:00:00', "outq_notify" text NOT NULL, "outq_msg" text NOT NULL, - "outq_priority" smallint NOT NULL DEFAULT 0 , + "outq_priority" smallint NOT NULL DEFAULT '0', PRIMARY KEY ("outq_hash") ); create index "outq_account" on outq ("outq_account"); @@ -906,7 +906,7 @@ create index "pchan_hash" on pchan ("pchan_hash"); CREATE TABLE "pconfig" ( "id" serial NOT NULL, - "uid" bigint NOT NULL DEFAULT 0 , + "uid" bigint NOT NULL DEFAULT '0', "cat" text NOT NULL, "k" text NOT NULL, "v" text NOT NULL, @@ -916,7 +916,7 @@ CREATE TABLE "pconfig" ( CREATE TABLE "photo" ( "id" serial NOT NULL, - "aid" bigint NOT NULL DEFAULT 0 , + "aid" bigint NOT NULL DEFAULT '0', "uid" bigint NOT NULL, "xchan" text NOT NULL DEFAULT '', "resource_id" text NOT NULL, @@ -929,16 +929,16 @@ CREATE TABLE "photo" ( "mimetype" varchar(128) NOT NULL DEFAULT 'image/jpeg', "height" numeric(6) NOT NULL, "width" numeric(6) NOT NULL, - "filesize" bigint NOT NULL DEFAULT 0 , + "filesize" bigint NOT NULL DEFAULT '0', "content" bytea NOT NULL, - "imgscale" numeric(3) NOT NULL DEFAULT 0 , - "profile" numeric(1) NOT NULL DEFAULT 0 , - "photo_usage" smallint NOT NULL DEFAULT 0 , - "is_nsfw" smallint NOT NULL DEFAULT 0 , - "os_storage" smallint NOT NULL DEFAULT 0 , + "imgscale" numeric(3) NOT NULL DEFAULT '0', + "profile" numeric(1) NOT NULL DEFAULT '0', + "photo_usage" smallint NOT NULL DEFAULT '0', + "is_nsfw" smallint NOT NULL DEFAULT '0', + "os_storage" smallint NOT NULL DEFAULT '0', "os_path" text NOT NULL, "display_path" text NOT NULL, - "photo_flags" bigint NOT NULL DEFAULT 0 , + "photo_flags" bigint NOT NULL DEFAULT '0', "allow_cid" text NOT NULL, "allow_gid" text NOT NULL, "deny_cid" text NOT NULL, @@ -965,8 +965,8 @@ CREATE TABLE "poll" ( "poll_channel" bigint NOT NULL DEFAULT '0', "poll_author" text NOT NULL, "poll_desc" text NOT NULL, - "poll_flags" bigint NOT NULL DEFAULT 0 , - "poll_votes" bigint NOT NULL DEFAULT 0 , + "poll_flags" bigint NOT NULL DEFAULT '0', + "poll_votes" bigint NOT NULL DEFAULT '0', PRIMARY KEY ("poll_id") ); @@ -1002,7 +1002,7 @@ CREATE TABLE "profdef" ( create index "profdef_field_name" on profdef ("field_name"); CREATE TABLE "profext" ( "id" serial NOT NULL, - "channel_id" bigint NOT NULL DEFAULT 0 , + "channel_id" bigint NOT NULL DEFAULT '0', "hash" text NOT NULL DEFAULT '', "k" text NOT NULL DEFAULT '', "v" text NOT NULL, @@ -1018,8 +1018,8 @@ CREATE TABLE "profile" ( "aid" bigint NOT NULL DEFAULT '0', "uid" bigint NOT NULL, "profile_name" text NOT NULL, - "is_default" numeric(1) NOT NULL DEFAULT 0 , - "hide_friends" numeric(1) NOT NULL DEFAULT 0 , + "is_default" numeric(1) NOT NULL DEFAULT '0', + "hide_friends" numeric(1) NOT NULL DEFAULT '0', "fullname" text NOT NULL, "pdesc" text NOT NULL DEFAULT '', "chandesc" text NOT NULL DEFAULT '', @@ -1056,7 +1056,7 @@ CREATE TABLE "profile" ( "homepage" text NOT NULL DEFAULT '', "photo" text NOT NULL, "thumb" text NOT NULL, - "publish" numeric(1) NOT NULL DEFAULT 0 , + "publish" numeric(1) NOT NULL DEFAULT '0', "profile_vcard" text NOT NULL DEFAULT '', PRIMARY KEY ("id"), UNIQUE ("profile_guid","uid") @@ -1078,7 +1078,7 @@ create index "profile_guid" on profile ("profile_guid"); CREATE TABLE "profile_check" ( "id" serial NOT NULL, "uid" bigint NOT NULL, - "cid" bigint NOT NULL DEFAULT 0 , + "cid" bigint NOT NULL DEFAULT '0', "dfrn_id" text NOT NULL, "sec" text NOT NULL, "expire" bigint NOT NULL, @@ -1113,8 +1113,8 @@ create index "session_sid" on session ("sid"); create index "session_expire" on session ("expire"); CREATE TABLE "shares" ( "share_id" serial NOT NULL, - "share_type" bigint NOT NULL DEFAULT 0 , - "share_target" bigint NOT NULL DEFAULT 0 , + "share_type" bigint NOT NULL DEFAULT '0', + "share_target" bigint NOT NULL DEFAULT '0', "share_xchan" text NOT NULL DEFAULT '', PRIMARY KEY ("share_id") ); @@ -1124,8 +1124,8 @@ create index "share_xchan" on shares ("share_xchan"); CREATE TABLE "sign" ( "id" serial NOT NULL, - "iid" bigint NOT NULL DEFAULT 0 , - "retract_iid" bigint NOT NULL DEFAULT 0 , + "iid" bigint NOT NULL DEFAULT '0', + "retract_iid" bigint NOT NULL DEFAULT '0', "signed_text" text NOT NULL, "signature" text NOT NULL, "signer" text NOT NULL, @@ -1136,19 +1136,19 @@ create index "sign_retract_iid" on "sign" ("retract_iid"); CREATE TABLE "site" ( "site_url" text NOT NULL, - "site_access" bigint NOT NULL DEFAULT 0 , - "site_flags" bigint NOT NULL DEFAULT 0 , + "site_access" bigint NOT NULL DEFAULT '0', + "site_flags" bigint NOT NULL DEFAULT '0', "site_update" timestamp NOT NULL DEFAULT '0001-01-01 00:00:00', "site_pull" timestamp NOT NULL DEFAULT '0001-01-01 00:00:00', "site_sync" timestamp NOT NULL DEFAULT '0001-01-01 00:00:00', "site_directory" text NOT NULL DEFAULT '', - "site_register" bigint NOT NULL DEFAULT 0 , + "site_register" bigint NOT NULL DEFAULT '0', "site_sellpage" text NOT NULL DEFAULT '', "site_location" text NOT NULL DEFAULT '', "site_realm" text NOT NULL DEFAULT '', - "site_valid" smallint NOT NULL DEFAULT 0 , - "site_dead" smallint NOT NULL DEFAULT 0 , - "site_type" smallint NOT NULL DEFAULT 0 , + "site_valid" smallint NOT NULL DEFAULT '0', + "site_dead" smallint NOT NULL DEFAULT '0', + "site_type" smallint NOT NULL DEFAULT '0', "site_project" text NOT NULL DEFAULT '', "site_version" text NOT NULL DEFAULT '', "site_crypto" text NOT NULL DEFAULT '', @@ -1168,7 +1168,7 @@ create index "site_project" on site ("site_project"); CREATE TABLE "source" ( "src_id" serial NOT NULL, - "src_channel_id" bigint NOT NULL DEFAULT 0 , + "src_channel_id" bigint NOT NULL DEFAULT '0', "src_channel_xchan" text NOT NULL DEFAULT '', "src_xchan" text NOT NULL DEFAULT '', "src_patt" text NOT NULL DEFAULT '', @@ -1188,8 +1188,8 @@ CREATE TABLE "sys_perms" ( ); CREATE TABLE "term" ( "tid" serial NOT NULL, - "aid" bigint NOT NULL DEFAULT 0 , - "uid" bigint NOT NULL DEFAULT 0 , + "aid" bigint NOT NULL DEFAULT '0', + "uid" bigint NOT NULL DEFAULT '0', "oid" bigint NOT NULL, "otype" numeric(3) NOT NULL, "ttype" numeric(3) NOT NULL, @@ -1228,7 +1228,7 @@ CREATE TABLE "updates" ( "ud_guid" text NOT NULL DEFAULT '', "ud_date" timestamp NOT NULL DEFAULT '0001-01-01 00:00:00', "ud_last" timestamp NOT NULL DEFAULT '0001-01-01 00:00:00', - "ud_flags" bigint NOT NULL DEFAULT 0 , + "ud_flags" bigint NOT NULL DEFAULT '0', "ud_addr" text NOT NULL DEFAULT '', PRIMARY KEY ("ud_id") ); @@ -1240,7 +1240,7 @@ create index "ud_addr" on updates ("ud_addr"); create index "ud_last" on updates ("ud_last"); CREATE TABLE "verify" ( "id" serial NOT NULL, - "channel" bigint NOT NULL DEFAULT 0 , + "channel" bigint NOT NULL DEFAULT '0', "vtype" varchar(32) NOT NULL DEFAULT '', "token" text NOT NULL DEFAULT '', "meta" text NOT NULL DEFAULT '', @@ -1282,16 +1282,16 @@ CREATE TABLE "xchan" ( "xchan_name" text NOT NULL DEFAULT '', "xchan_network" text NOT NULL DEFAULT '', "xchan_instance_url" text NOT NULL DEFAULT '', - "xchan_flags" bigint NOT NULL DEFAULT 0 , + "xchan_flags" bigint NOT NULL DEFAULT '0', "xchan_photo_date" timestamp NOT NULL DEFAULT '0001-01-01 00:00:00', "xchan_name_date" timestamp NOT NULL DEFAULT '0001-01-01 00:00:00', - "xchan_hidden" smallint NOT NULL DEFAULT 0 , - "xchan_orphan" smallint NOT NULL DEFAULT 0 , - "xchan_censored" smallint NOT NULL DEFAULT 0 , - "xchan_selfcensored" smallint NOT NULL DEFAULT 0 , - "xchan_system" smallint NOT NULL DEFAULT 0 , - "xchan_pubforum" smallint NOT NULL DEFAULT 0 , - "xchan_deleted" smallint NOT NULL DEFAULT 0 , + "xchan_hidden" smallint NOT NULL DEFAULT '0', + "xchan_orphan" smallint NOT NULL DEFAULT '0', + "xchan_censored" smallint NOT NULL DEFAULT '0', + "xchan_selfcensored" smallint NOT NULL DEFAULT '0', + "xchan_system" smallint NOT NULL DEFAULT '0', + "xchan_pubforum" smallint NOT NULL DEFAULT '0', + "xchan_deleted" smallint NOT NULL DEFAULT '0', PRIMARY KEY ("xchan_hash") ); create index "xchan_guid" on xchan ("xchan_guid"); @@ -1336,7 +1336,7 @@ create index "xconfig_cat" on xconfig ("cat"); create index "xconfig_k" on xconfig ("k"); CREATE TABLE "xign" ( "id" serial NOT NULL, - "uid" bigint NOT NULL DEFAULT 0 , + "uid" bigint NOT NULL DEFAULT '0', "xchan" text NOT NULL DEFAULT '', PRIMARY KEY ("id") ); @@ -1346,10 +1346,10 @@ CREATE TABLE "xlink" ( "xlink_id" serial NOT NULL, "xlink_xchan" text NOT NULL DEFAULT '', "xlink_link" text NOT NULL DEFAULT '', - "xlink_rating" bigint NOT NULL DEFAULT 0 , + "xlink_rating" bigint NOT NULL DEFAULT '0', "xlink_rating_text" TEXT NOT NULL DEFAULT '', "xlink_updated" timestamp NOT NULL DEFAULT '0001-01-01 00:00:00', - "xlink_static" numeric(1) NOT NULL DEFAULT 0 , + "xlink_static" numeric(1) NOT NULL DEFAULT '0', "xlink_sig" text NOT NULL DEFAULT '', PRIMARY KEY ("xlink_id") ); @@ -1361,7 +1361,7 @@ create index "xlink_static" on xlink ("xlink_static"); CREATE TABLE "xperm" ( "xp_id" serial NOT NULL, "xp_client" varchar( 20 ) NOT NULL DEFAULT '', - "xp_channel" bigint NOT NULL DEFAULT 0 , + "xp_channel" bigint NOT NULL DEFAULT '0', "xp_perm" varchar( 64 ) NOT NULL DEFAULT '', PRIMARY KEY ("xp_id") ); @@ -1370,7 +1370,7 @@ create index "xp_channel" on xperm ("xp_channel"); create index "xp_perm" on xperm ("xp_perm"); CREATE TABLE "xprof" ( "xprof_hash" text NOT NULL, - "xprof_age" numeric(3) NOT NULL DEFAULT 0 , + "xprof_age" numeric(3) NOT NULL DEFAULT '0', "xprof_desc" text NOT NULL DEFAULT '', "xprof_dob" varchar(12) NOT NULL DEFAULT '', "xprof_gender" text NOT NULL DEFAULT '', @@ -1401,7 +1401,7 @@ CREATE TABLE "xtag" ( "xtag_id" serial NOT NULL, "xtag_hash" text NOT NULL, "xtag_term" text NOT NULL DEFAULT '', - "xtag_flags" bigint NOT NULL DEFAULT 0 , + "xtag_flags" bigint NOT NULL DEFAULT '0', PRIMARY KEY ("xtag_id") ); create index "xtag_term" on xtag ("xtag_term"); From b8a4a6b959276956dfb5aebbd2c41a2fc9c77167 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Mon, 29 Oct 2018 10:10:03 +0100 Subject: [PATCH 795/819] merge util/hmessages.po from dev --- util/hmessages.po | 87 ++++++++--------------------------------------- 1 file changed, 14 insertions(+), 73 deletions(-) diff --git a/util/hmessages.po b/util/hmessages.po index d1baafded..9561cab2b 100644 --- a/util/hmessages.po +++ b/util/hmessages.po @@ -10851,66 +10851,6 @@ msgstr "" msgid "Until modified date yyyy-mm-dd" msgstr "" -#: ../../addon/gravatar/gravatar.php:123 -msgid "generic profile image" -msgstr "" - -#: ../../addon/gravatar/gravatar.php:124 -msgid "random geometric pattern" -msgstr "" - -#: ../../addon/gravatar/gravatar.php:125 -msgid "monster face" -msgstr "" - -#: ../../addon/gravatar/gravatar.php:126 -msgid "computer generated face" -msgstr "" - -#: ../../addon/gravatar/gravatar.php:127 -msgid "retro arcade style face" -msgstr "" - -#: ../../addon/gravatar/gravatar.php:128 -msgid "Hub default profile photo" -msgstr "" - -#: ../../addon/gravatar/gravatar.php:143 -msgid "Information" -msgstr "" - -#: ../../addon/gravatar/gravatar.php:143 -msgid "" -"Libravatar addon is installed, too. Please disable Libravatar addon or this " -"Gravatar addon.
      The Libravatar addon will fall back to Gravatar if " -"nothing was found at Libravatar." -msgstr "" - -#: ../../addon/gravatar/gravatar.php:150 ../../addon/msgfooter/msgfooter.php:46 -#: ../../addon/xmpp/xmpp.php:91 -msgid "Save Settings" -msgstr "" - -#: ../../addon/gravatar/gravatar.php:151 -msgid "Default avatar image" -msgstr "" - -#: ../../addon/gravatar/gravatar.php:151 -msgid "Select default avatar image if none was found at Gravatar. See README" -msgstr "" - -#: ../../addon/gravatar/gravatar.php:152 -msgid "Rating of images" -msgstr "" - -#: ../../addon/gravatar/gravatar.php:152 -msgid "Select the appropriate avatar rating for your site. See README" -msgstr "" - -#: ../../addon/gravatar/gravatar.php:165 -msgid "Gravatar settings updated." -msgstr "" - #: ../../addon/visage/visage.php:93 msgid "Recent Channel/Profile Viewers" msgstr "" @@ -11866,13 +11806,17 @@ msgstr "" #: ../../addon/twitter/twitter.php:187 msgid "" -"Or become a project sponsor (Hubzilla Project only)" +"No consumer key pair for Twitter found. Please contact your site " +"administrator." msgstr "" #: ../../addon/twitter/twitter.php:209 msgid "" -"Please indicate if you would like your first name or full name (or nothing) " -"to appear in our sponsor listing" +"At this Hubzilla instance the Twitter plugin was enabled but you have not " +"yet connected your account to your Twitter account. To do so click the " +"button below to get a PIN from Twitter which you have to copy into the input " +"box below and submit the form. Only your public posts will " +"be posted to Twitter." msgstr "" #: ../../addon/twitter/twitter.php:211 @@ -11885,11 +11829,10 @@ msgstr "" #: ../../addon/twitter/twitter.php:241 msgid "" -"This is a fairly comprehensive and complete guitar chord dictionary which " -"will list most of the available ways to play a certain chord, starting from " -"the base of the fingerboard up to a few frets beyond the twelfth fret " -"(beyond which everything repeats). A couple of non-standard tunings are " -"provided for the benefit of slide players, etc." +"Note: Due your privacy settings (Hide your profile " +"details from unknown viewers?) the link potentially included in public " +"postings relayed to Twitter will lead the visitor to a blank page informing " +"the visitor that the access to your profile has been restricted." msgstr "" #: ../../addon/twitter/twitter.php:246 @@ -14352,11 +14295,9 @@ msgstr "" #: ../../include/bbcode.php:259 #, php-format -msgid "You have reached your limit of %1$.0f Mbytes attachment storage." -msgstr "" - -#: ../../include/bbcode.php:331 -msgid "card" +msgid "" +"This post contains an installable %s element, however you lack permissions " +"to install it on this site." msgstr "" #: ../../include/bbcode.php:350 From a11d89daa3f8252587cd9fd439cfb0f8bd7341b6 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Mon, 29 Oct 2018 10:14:43 +0100 Subject: [PATCH 796/819] merge util/update_autoloader from dev --- util/update_autoloader | 3 --- 1 file changed, 3 deletions(-) delete mode 100755 util/update_autoloader diff --git a/util/update_autoloader b/util/update_autoloader deleted file mode 100755 index 1e65bed5c..000000000 --- a/util/update_autoloader +++ /dev/null @@ -1,3 +0,0 @@ -#!/usr/bin/env bash -f - -composer install --optimize-autoloader --no-dev From bf6ef2a5881b3cc12d68e40cca5c4ed874dbf6eb Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Mon, 29 Oct 2018 10:15:18 +0100 Subject: [PATCH 797/819] merge util/update_theme_repo from dev --- util/update_theme_repo | 1 - 1 file changed, 1 deletion(-) diff --git a/util/update_theme_repo b/util/update_theme_repo index 3d3cafe84..b4de55568 100755 --- a/util/update_theme_repo +++ b/util/update_theme_repo @@ -2,7 +2,6 @@ set -f -set -f if [ $# -ne 1 ]; then echo usage: $0 repository From 7910f3961392545136c03df087a80f7f17fe2dcc Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Mon, 29 Oct 2018 10:16:01 +0100 Subject: [PATCH 798/819] merge util/zotsh/zotsh.py from dev --- util/zotsh/zotsh.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/util/zotsh/zotsh.py b/util/zotsh/zotsh.py index d5e1aa527..36506b39d 100755 --- a/util/zotsh/zotsh.py +++ b/util/zotsh/zotsh.py @@ -55,7 +55,7 @@ class ZotSH(object): @session.setter def session(self, session): self._session = session - self.davclient = easywebdav.connect( self.hostname, protocol='https', session=session, path="dav", verify_ssl=VERIFY_SSL) + self.davclient = easywebdav.connect( self.hostname, protocol='https', session=session, path="cloud", verify_ssl=VERIFY_SSL) @property def PS1(self): @@ -205,7 +205,7 @@ class ZotSH(object): print _fmt('d', 0, "../") for f in r: - name = f.name.replace("/dav"+self.davclient.cwd,"") + name = f.name.replace("/cloud"+self.davclient.cwd,"") type = "-" if name.endswith("/"): type = "d" From 7bb7d736a283eb9564cff88ac9001eea57cebb04 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Mon, 29 Oct 2018 10:16:29 +0100 Subject: [PATCH 799/819] merge view/es-es/hmessages.po from dev --- view/es-es/hmessages.po | 67 ++++++++++++++++++----------------------- 1 file changed, 30 insertions(+), 37 deletions(-) diff --git a/view/es-es/hmessages.po b/view/es-es/hmessages.po index 8965fc956..f2c1ccf79 100644 --- a/view/es-es/hmessages.po +++ b/view/es-es/hmessages.po @@ -3564,15 +3564,13 @@ msgstr "Un sitio por línea. El contenido incorporado se filtra de forma predete msgid "Block embedded HTML from these domains" msgstr "Bloquear contenido con HTML incorporado desde estos dominios" -#: ../../Zotlabs/Module/Events.php:475 -msgid "Edit Location" -msgstr "Modificar la dirección" +#: ../../Zotlabs/Module/Lockview.php:75 +msgid "Remote privacy information not available." +msgstr "La información privada remota no está disponible." -#: ../../Zotlabs/Module/Events.php:478 ../../Zotlabs/Module/Photos.php:1094 -#: ../../Zotlabs/Module/Webpages.php:251 ../../Zotlabs/Lib/ThreadItem.php:740 -#: ../../include/page_widgets.php:43 ../../include/conversation.php:1347 -msgid "Preview" -msgstr "Previsualizar" +#: ../../Zotlabs/Module/Lockview.php:96 +msgid "Visible to:" +msgstr "Visible para:" #: ../../Zotlabs/Module/Lockview.php:117 ../../Zotlabs/Module/Lockview.php:153 #: ../../Zotlabs/Module/Acl.php:120 ../../include/acl_selectors.php:88 @@ -5576,21 +5574,13 @@ msgstr "Por favor ajuste el recorte de la imagen para una visión óptima." msgid "Done Editing" msgstr "Edición completada" -#: ../../Zotlabs/Module/Profile.php:91 -msgid "vcard" -msgstr "vcard" +#: ../../Zotlabs/Module/Chatsvc.php:131 +msgid "Away" +msgstr "Ausente" -#: ../../Zotlabs/Module/Oexchange.php:27 -msgid "Unable to find your hub." -msgstr "No se puede encontrar su servidor." - -#: ../../Zotlabs/Module/Oexchange.php:41 -msgid "Post successful." -msgstr "Enviado con éxito." - -#: ../../Zotlabs/Module/Viewsrc.php:46 -msgid "Source of Item" -msgstr "Origen del elemento" +#: ../../Zotlabs/Module/Chatsvc.php:136 +msgid "Online" +msgstr "Conectado/a" #: ../../Zotlabs/Module/Item.php:194 msgid "Unable to locate original post." @@ -13905,25 +13895,28 @@ msgstr "[sin asunto]" msgid "Stored post could not be verified." msgstr "No se han podido verificar las publicaciones guardadas." -#: ../../include/text.php:1106 -msgid "slap" -msgstr "una bofetada " +#: ../../include/activities.php:41 +msgid " and " +msgstr " y " -#: ../../include/text.php:1106 -msgid "slapped" -msgstr "ha abofeteado a " +#: ../../include/activities.php:49 +msgid "public profile" +msgstr "el perfil público" -#: ../../include/text.php:1107 -msgid "finger" -msgstr "un \"finger\" " +#: ../../include/activities.php:58 +#, php-format +msgid "%1$s changed %2$s to “%3$s”" +msgstr "%1$s ha cambiado %2$s a “%3$s”" -#: ../../include/text.php:1107 -msgid "fingered" -msgstr "envió un \"finger\" a" +#: ../../include/activities.php:59 +#, php-format +msgid "Visit %1$s's %2$s" +msgstr "Visitar %2$s de %1$s" -#: ../../include/text.php:1108 -msgid "rebuff" -msgstr "un reproche" +#: ../../include/activities.php:62 +#, php-format +msgid "%1$s has an updated %2$s, changing %3$s." +msgstr "%1$s ha actualizado %2$s, cambiando %3$s." #: ../../include/attach.php:265 ../../include/attach.php:374 msgid "Item was not found." From 3d0138569d6af66036722e38bcc138d2caeb4a47 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Mon, 29 Oct 2018 10:17:04 +0100 Subject: [PATCH 800/819] merge view/es-es/hstrings.php from dev --- view/es-es/hstrings.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/view/es-es/hstrings.php b/view/es-es/hstrings.php index 0eb4c5922..6daac9592 100644 --- a/view/es-es/hstrings.php +++ b/view/es-es/hstrings.php @@ -536,9 +536,7 @@ App::$strings["%s - (Incompatible)"] = "%s - (Incompatible)"; App::$strings["mobile"] = "móvil"; App::$strings["experimental"] = "experimental"; App::$strings["unsupported"] = "no soportado"; -App::$strings["No"] = "No"; App::$strings["Yes - with approval"] = "Sí - con aprobación"; -App::$strings["Yes"] = "Sí"; App::$strings["My site is not a public server"] = "Mi sitio no es un servidor público"; App::$strings["My site has paid access only"] = "Mi sitio es un servicio de pago"; App::$strings["My site has free access only"] = "Mi sitio es un servicio gratuito"; From f8e816629d3c0618d3b98c5f0dbfddc5bf78d8d2 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Mon, 29 Oct 2018 10:17:54 +0100 Subject: [PATCH 801/819] merge view/it/hmessages.po from dev --- view/it/hmessages.po | 80 +++++++++++++++++++++----------------------- 1 file changed, 39 insertions(+), 41 deletions(-) diff --git a/view/it/hmessages.po b/view/it/hmessages.po index ae8107d44..fc4772846 100644 --- a/view/it/hmessages.po +++ b/view/it/hmessages.po @@ -5656,8 +5656,8 @@ msgstr "Permessi predefiniti dei nuovi contatti" #: ../../Zotlabs/Module/Connedit.php:850 ../../include/items.php:4214 #, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "%1$s ha taggato %3$s di %2$s con %4$s" +msgid "Connection: %s" +msgstr "Contatto: %s" #: ../../Zotlabs/Module/Connedit.php:851 ../../Zotlabs/Module/Defperms.php:239 msgid "Apply these permissions automatically" @@ -5690,9 +5690,9 @@ msgstr "Indirizzi disponibili" #: ../../Zotlabs/Module/Connedit.php:866 ../../Zotlabs/Module/Defperms.php:245 msgid "" -"Some individual permissions may have been preset or locked based on your " -"channel type and privacy settings." -msgstr "" +"The permissions indicated on this page will be applied to all new " +"connections." +msgstr "I permessi indicati su questa pagina saranno applicati a tutti i nuovi contatti da ora in poi." #: ../../Zotlabs/Module/Connedit.php:867 msgid "Connection Tools" @@ -5839,42 +5839,41 @@ msgstr "Foto" msgid "Files" msgstr "Archivio file" -#: ../../Zotlabs/Module/Profiles.php:594 -msgid "Profile updated." -msgstr "Profilo aggiornato." +#: ../../Zotlabs/Module/Menu.php:49 +msgid "Unable to update menu." +msgstr "Impossibile aggiornare il menù." -#: ../../Zotlabs/Module/Profiles.php:678 -msgid "Hide your connections list from viewers of this profile" -msgstr "Nascondi la tua lista di contatti ai visitatori di questo profilo" +#: ../../Zotlabs/Module/Menu.php:60 +msgid "Unable to create menu." +msgstr "Impossibile creare il menù." -#: ../../Zotlabs/Module/Profiles.php:725 -msgid "Edit Profile Details" -msgstr "Modifica i dettagli del profilo" +#: ../../Zotlabs/Module/Menu.php:98 ../../Zotlabs/Module/Menu.php:110 +msgid "Menu Name" +msgstr "Nome del menu" -#: ../../Zotlabs/Module/Profiles.php:727 -msgid "View this profile" -msgstr "Guarda questo profilo" +#: ../../Zotlabs/Module/Menu.php:98 +msgid "Unique name (not visible on webpage) - required" +msgstr "Nome unico (non visibile sulla pagina) - obbligatorio" -#: ../../Zotlabs/Module/Profiles.php:728 ../../Zotlabs/Module/Profiles.php:827 -#: ../../include/channel.php:1320 -msgid "Edit visibility" -msgstr "Cambia la visibilità" +#: ../../Zotlabs/Module/Menu.php:99 ../../Zotlabs/Module/Menu.php:111 +msgid "Menu Title" +msgstr "Titolo del menu" -#: ../../Zotlabs/Module/Profiles.php:729 -msgid "Profile Tools" -msgstr "Gestione del profilo" +#: ../../Zotlabs/Module/Menu.php:99 +msgid "Visible on webpage - leave empty for no title" +msgstr "Visibile sulla pagina - lascia vuoto per non avere un titolo" -#: ../../Zotlabs/Module/Profiles.php:730 -msgid "Change cover photo" -msgstr "Cambia la copertina del canale" +#: ../../Zotlabs/Module/Menu.php:100 +msgid "Allow Bookmarks" +msgstr "Permetti i segnalibri" -#: ../../Zotlabs/Module/Profiles.php:731 ../../include/channel.php:1290 -msgid "Change profile photo" -msgstr "Cambia la foto del profilo" +#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 +msgid "Menu may be used to store saved bookmarks" +msgstr "Puoi salvare i segnalibri nei menù" -#: ../../Zotlabs/Module/Profiles.php:732 -msgid "Create a new profile using these settings" -msgstr "Crea un nuovo profilo usando queste impostazioni" +#: ../../Zotlabs/Module/Menu.php:101 ../../Zotlabs/Module/Menu.php:159 +msgid "Submit and proceed" +msgstr "Salva e procedi" #: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2423 msgid "Menus" @@ -5884,14 +5883,13 @@ msgstr "Menù" msgid "Bookmarks allowed" msgstr "Permetti segnalibri" -#: ../../Zotlabs/Module/Profiles.php:739 ../../Zotlabs/Widget/Newmember.php:53 -#: ../../include/datetime.php:58 -msgid "Miscellaneous" -msgstr "Altro" +#: ../../Zotlabs/Module/Menu.php:119 +msgid "Delete this menu" +msgstr "Elimina questo menù" -#: ../../Zotlabs/Module/Profiles.php:741 -msgid "Import profile from file" -msgstr "Importa il profilo da un file" +#: ../../Zotlabs/Module/Menu.php:120 ../../Zotlabs/Module/Menu.php:154 +msgid "Edit menu contents" +msgstr "Modifica i contenuti del menù" #: ../../Zotlabs/Module/Menu.php:121 msgid "Edit this menu" @@ -6545,7 +6543,7 @@ msgstr "Homepage del progetto" #: ../../Zotlabs/Module/Siteinfo.php:32 msgid "Developer homepage" -msgstr "Homepage dello sviluppatore" +msgstr "Homepege dello sviluppatore" #: ../../Zotlabs/Module/Ratings.php:70 msgid "No ratings" From 412eb0a90b66dfda3a8185fa55dba16efd87b19d Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Mon, 29 Oct 2018 10:18:21 +0100 Subject: [PATCH 802/819] merge view/it/hstrings.php from dev --- view/it/hstrings.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/view/it/hstrings.php b/view/it/hstrings.php index 1f5527946..42fc58347 100644 --- a/view/it/hstrings.php +++ b/view/it/hstrings.php @@ -1393,7 +1393,7 @@ App::$strings["This site is powered by \$Projectname"] = "Questo sito è costrui App::$strings["Federated and decentralised networking and identity services provided by Zot"] = ""; App::$strings["Version %s"] = "Versione %s"; App::$strings["Project homepage"] = "Homepage del progetto"; -App::$strings["Developer homepage"] = "Homepage dello sviluppatore"; +App::$strings["Developer homepage"] = "Homepege dello sviluppatore"; App::$strings["No ratings"] = "Nessuna valutazione"; App::$strings["Ratings"] = "Valutazioni"; App::$strings["Rating: "] = "Valutazione:"; From b0f5c7f36f447c0a8470aa336227e6e2d2a25cf8 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Mon, 29 Oct 2018 10:19:31 +0100 Subject: [PATCH 803/819] merge view/ru/hmessages.po from dev --- view/ru/hmessages.po | 38 +++++++++++++++++++------------------- 1 file changed, 19 insertions(+), 19 deletions(-) diff --git a/view/ru/hmessages.po b/view/ru/hmessages.po index 006e3a80e..d21f707d1 100644 --- a/view/ru/hmessages.po +++ b/view/ru/hmessages.po @@ -1,7 +1,7 @@ -# hubzilla -# Copyright (C) 2012-2016 hubzilla -# This file is distributed under the same license as the hubzilla package. -# Mike Macgirvin, 2012 +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. # # Translators: # Alex , 2016-2017 @@ -21,9 +21,9 @@ msgstr "" "Language: ru\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : (n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : 2))\n" -#: ../../Zotlabs/Access/Permissions.php:56 -msgid "Can view my channel stream and posts" -msgstr "Может просматривать мою ленту и сообщения" +#: ../../util/nconfig.php:34 +msgid "Source channel not found." +msgstr "Канал-источник не найден." #: ../../view/theme/redbasic/php/config.php:15 ../../include/text.php:3087 #: ../../Zotlabs/Module/Admin/Site.php:187 @@ -3699,21 +3699,21 @@ msgstr "В процессе" msgid "Cancelled" msgstr "Отменено" -#: ../../Zotlabs/Module/Settings/Channel.php:543 -msgid "Default Privacy Group" -msgstr "Группа конфиденциальности по умолчанию" +#: ../../include/auth.php:192 +msgid "Delegation session ended." +msgstr "Делегированная сессия завершена." -#: ../../Zotlabs/Module/Settings/Channel.php:545 -msgid "Use my default audience setting for the type of object published" -msgstr "Использовать настройки аудитории по умолчанию для типа опубликованного объекта" +#: ../../include/auth.php:196 +msgid "Logged out." +msgstr "Вышел из системы." -#: ../../Zotlabs/Module/Settings/Channel.php:546 -msgid "Profile to assign new connections" -msgstr "Назначить профиль для новых контактов" +#: ../../include/auth.php:291 +msgid "Email validation is incomplete. Please check your email." +msgstr "Проверка email не завершена. Пожалуйста, проверьте вашу почту." -#: ../../Zotlabs/Module/Settings/Channel.php:556 -msgid "Default permissions category" -msgstr "Категория разрешений по умолчанию" +#: ../../include/auth.php:307 +msgid "Failed authentication" +msgstr "Ошибка аутентификации" #: ../../include/auth.php:317 #: ../../extend/addon/hzaddons/openid/Mod_Openid.php:188 From 8cbd2e3e9e4ff64b7d21a6f74445497ba334b95e Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Mon, 29 Oct 2018 10:19:55 +0100 Subject: [PATCH 804/819] merge view/ru/hstrings.php from dev --- view/ru/hstrings.php | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/view/ru/hstrings.php b/view/ru/hstrings.php index 27d5d10aa..598d02718 100644 --- a/view/ru/hstrings.php +++ b/view/ru/hstrings.php @@ -1569,7 +1569,6 @@ App::$strings["or"] = "или"; App::$strings["Your channel address is"] = "Адрес вашего канала"; App::$strings["Your files/photos are accessible via WebDAV at"] = "Ваши файлы / фотографии доступны через WebDAV по"; App::$strings["Automatic membership approval"] = "Членство одобрено автоматически"; -App::$strings["If enabled, connection requests will be approved without your interaction"] = "Если включено, запросы контактов будут одобрены без вашего участия"; App::$strings["Channel Settings"] = "Настройки канала"; App::$strings["Basic Settings"] = "Основные настройки"; App::$strings["Your Timezone:"] = "Часовой пояс:"; @@ -1974,10 +1973,7 @@ App::$strings["This role will be used for the first channel created after regist App::$strings["Site"] = "Сайт"; App::$strings["File upload"] = "Загрузка файла"; App::$strings["Policies"] = "Правила"; -App::$strings["Site default technical skill level"] = "Уровень технических навыков на сайте по умолчанию"; -App::$strings["Used to provide a member experience matched to technical comfort level"] = "Используется чтобы обеспечить удобство на уровне технических навыков пользователя"; -App::$strings["Lock the technical skill level setting"] = "Заблокировать уровень технических навыков"; -App::$strings["Members can set their own technical comfort level by default"] = "Участники могут выбрать уровень своих технических навыков по умолчанию"; +App::$strings["Site name"] = "Название сайта"; App::$strings["Banner/Logo"] = "Баннер / логотип"; App::$strings["Unfiltered HTML/CSS/JS is allowed"] = "Разрешён нефильтруемый HTML/CSS/JS"; App::$strings["Administrator Information"] = "Информация об администраторе"; From 0035584d91d587cdd78f0eb9239dca8474f079dd Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Mon, 29 Oct 2018 10:20:36 +0100 Subject: [PATCH 805/819] merge view/fr/hmessages.po from dev --- view/fr/hmessages.po | 52 ++------------------------------------------ 1 file changed, 2 insertions(+), 50 deletions(-) diff --git a/view/fr/hmessages.po b/view/fr/hmessages.po index 8c75a9416..c5263c2df 100644 --- a/view/fr/hmessages.po +++ b/view/fr/hmessages.po @@ -4360,12 +4360,12 @@ msgstr "Notifications du système" msgid "Connection added." msgstr "Connexion ajoutée." -#: ../../Zotlabs/Module/Import.php:143 +#: ../../Zotlabs/Module/Import.php:144 #, php-format msgid "Your service plan only allows %d channels." msgstr "Votre forfait n'autorise que %d canaux." -#: ../../Zotlabs/Module/Import.php:157 +#: ../../Zotlabs/Module/Import.php:158 msgid "No channel. Import failed." msgstr "Pas de canal. Echec de l'import." @@ -8910,54 +8910,6 @@ msgstr "Voir le flux public" msgid "New Member Links" msgstr "Liens pour les nouveaux membres" -#: ../../Zotlabs/Widget/Newmember.php:33 -msgid "Profile Creation" -msgstr "Création de profil" - -#: ../../Zotlabs/Widget/Newmember.php:35 -msgid "Upload profile photo" -msgstr "Téléverser la photo du profil" - -#: ../../Zotlabs/Widget/Newmember.php:36 -msgid "Upload cover photo" -msgstr "Téléverser la photo de couverture" - -#: ../../Zotlabs/Widget/Newmember.php:37 ../../include/nav.php:119 -msgid "Edit your profile" -msgstr "Modifier votre profil" - -#: ../../Zotlabs/Widget/Newmember.php:40 -msgid "Find and Connect with others" -msgstr "Trouver et connecter avec des autres personnes" - -#: ../../Zotlabs/Widget/Newmember.php:44 -msgid "Manage your connections" -msgstr "Gérez vos connexions" - -#: ../../Zotlabs/Widget/Newmember.php:47 -msgid "Communicate" -msgstr "Communiquer" - -#: ../../Zotlabs/Widget/Newmember.php:49 -msgid "View your channel homepage" -msgstr "Voir la page d'accueil de votre canal" - -#: ../../Zotlabs/Widget/Newmember.php:50 -msgid "View your network stream" -msgstr "Visualisez votre flux réseau" - -#: ../../Zotlabs/Widget/Newmember.php:56 -msgid "Documentation" -msgstr "Documentation" - -#: ../../Zotlabs/Widget/Newmember.php:67 -msgid "View public stream. Warning: not moderated" -msgstr "Voir le flux public. Avertissement : non modéré" - -#: ../../Zotlabs/Widget/Newmember.php:71 -msgid "New Member Links" -msgstr "Liens pour les nouveaux membres" - #: ../../Zotlabs/Widget/Admin.php:23 ../../Zotlabs/Widget/Admin.php:60 msgid "Member registrations waiting for confirmation" msgstr "Inscriptions en attente d'approbation" From 3eb71fe7b562cffd2bd5f7209a08930713f8025a Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Mon, 29 Oct 2018 10:21:10 +0100 Subject: [PATCH 806/819] merge Zotlabs/Access/PermissionLimits.php from dev --- Zotlabs/Access/PermissionLimits.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Zotlabs/Access/PermissionLimits.php b/Zotlabs/Access/PermissionLimits.php index b8ca3034c..c11dc95e6 100644 --- a/Zotlabs/Access/PermissionLimits.php +++ b/Zotlabs/Access/PermissionLimits.php @@ -88,4 +88,4 @@ class PermissionLimits { return false; } -} +} \ No newline at end of file From b4b3e7b9a458675474b9dcb88de5396164048861 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Mon, 5 Nov 2018 09:59:25 +0100 Subject: [PATCH 807/819] update linkinfo from dev --- Zotlabs/Module/Linkinfo.php | 37 ++++++++++++++++++++++++++++++------- 1 file changed, 30 insertions(+), 7 deletions(-) diff --git a/Zotlabs/Module/Linkinfo.php b/Zotlabs/Module/Linkinfo.php index 670967370..7c7dc0e88 100644 --- a/Zotlabs/Module/Linkinfo.php +++ b/Zotlabs/Module/Linkinfo.php @@ -270,20 +270,43 @@ class Linkinfo extends \Zotlabs\Web\Controller { $attr["content"] = html_entity_decode($attr["content"], ENT_QUOTES, "UTF-8"); switch (strtolower($attr["name"])) { - case 'generator': - $siteinfo['generator'] = $attr['content']; - break; case "fulltitle": - $siteinfo["title"] = $attr["content"]; + $siteinfo["title"] = trim($attr["content"]); break; case "description": - $siteinfo["text"] = $attr["content"]; + $siteinfo["text"] = trim($attr["content"]); + break; + case "thumbnail": + $siteinfo["image"] = $attr["content"]; + break; + case "twitter:image": + $siteinfo["image"] = $attr["content"]; + break; + case "twitter:image:src": + $siteinfo["image"] = $attr["content"]; + break; + case "twitter:card": + if (($siteinfo["type"] == "") || ($attr["content"] == "photo")) { + $siteinfo["type"] = $attr["content"]; + } + break; + case "twitter:description": + $siteinfo["text"] = trim($attr["content"]); + break; + case "twitter:title": + $siteinfo["title"] = trim($attr["content"]); break; case "dc.title": - $siteinfo["title"] = $attr["content"]; + $siteinfo["title"] = trim($attr["content"]); break; case "dc.description": - $siteinfo["text"] = $attr["content"]; + $siteinfo["text"] = trim($attr["content"]); + break; + case "keywords": + $keywords = explode(",", $attr["content"]); + break; + case "news_keywords": + $keywords = explode(",", $attr["content"]); break; } } From b25cace3ead129ee52dee9fe20969778d3d6bcce Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Mon, 5 Nov 2018 10:25:57 +0100 Subject: [PATCH 808/819] update changelog --- CHANGELOG | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/CHANGELOG b/CHANGELOG index 272f839fb..c3e280963 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,17 @@ +Hubzilla 3.8.3 (2018-11-05) + - Do not count likes in forum notifications if likes notifications are disabled + - Fix typo in spanish translation which broke javascript + - Improve linkinfo charset handling and image detection + - Fix wrong image resize for some external images + - Move blueimp upload lib to composer and update to version 9.25 + - Remove primary/clone counts from admin summary until we have a mechanism to update the fixed counts + - Fix html2markdown() and re-enable previously failing tests + - Improve look of oembed content for Hubzilla links + - Fix forum notifications count not correct + - Fix gallery addon which broke mod apps in some situations + - Fix wiki_list widget not working on every page respectively level + + Hubzilla 3.8.2 (2018-10-29) - Merge unmerged changes from dev into master - Fix issues with forum handling in mod network and ping From a9fd3608ea50ec4522075b3315a35c8eed9581d7 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Mon, 5 Nov 2018 10:26:59 +0100 Subject: [PATCH 809/819] version 3.8.3 --- boot.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boot.php b/boot.php index e01763ca5..a15f15797 100755 --- a/boot.php +++ b/boot.php @@ -50,7 +50,7 @@ require_once('include/attach.php'); require_once('include/bbcode.php'); define ( 'PLATFORM_NAME', 'hubzilla' ); -define ( 'STD_VERSION', '3.8.2' ); +define ( 'STD_VERSION', '3.8.3' ); define ( 'ZOT_REVISION', '6.0a' ); From 2f59d7873789885d4311d99db7fa6bce9f212810 Mon Sep 17 00:00:00 2001 From: Max Kostikov Date: Tue, 13 Nov 2018 11:37:32 +0100 Subject: [PATCH 810/819] Remove fetch_image_from_url() because of functions duplicate --- include/photos.php | 20 -------------------- 1 file changed, 20 deletions(-) diff --git a/include/photos.php b/include/photos.php index d0c5f77fc..d5553b495 100644 --- a/include/photos.php +++ b/include/photos.php @@ -1011,23 +1011,3 @@ function profile_photo_set_profile_perms($uid, $profileid = 0) { } } } - -function fetch_image_from_url($url,&$mimetype) { - - $redirects = 0; - $x = z_fetch_url($url,true,$redirects,[ 'novalidate' => true ]); - if($x['success']) { - $hdrs = []; - $h = explode("\n",$x['header']); - foreach ($h as $l) { - list($k,$v) = array_map("trim", explode(":", trim($l), 2)); - $hdrs[strtolower($k)] = $v; - } - if (array_key_exists('content-type', $hdrs)) - $mimetype = $hdrs['content-type']; - - return $x['body']; - } - - return EMPTY_STR; -} \ No newline at end of file From 286326a98e8d5de102ce58eee581c6c2e9fa6c06 Mon Sep 17 00:00:00 2001 From: Max Kostikov Date: Tue, 13 Nov 2018 11:38:49 +0100 Subject: [PATCH 811/819] Replace fetch_image_from_url() with z_fetch_url() --- Zotlabs/Module/Photo.php | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/Zotlabs/Module/Photo.php b/Zotlabs/Module/Photo.php index 95e3404fb..68cd7c4ac 100644 --- a/Zotlabs/Module/Photo.php +++ b/Zotlabs/Module/Photo.php @@ -89,9 +89,8 @@ class Photo extends \Zotlabs\Web\Controller { } if(! $data) { - $data = fetch_image_from_url($default,$mimetype); - } - if(! $mimetype) { + $x = z_fetch_url($default,true,0,[ 'novalidate' => true ]); + $data = ($x['success'] ? $x['body'] : EMPTY_STR); $mimetype = 'image/png'; } } @@ -200,19 +199,22 @@ class Photo extends \Zotlabs\Web\Controller { if(isset($resolution)) { switch($resolution) { case 4: - $data = fetch_image_from_url(z_root() . '/' . get_default_profile_photo(),$mimetype); + $default = z_root() . '/' . get_default_profile_photo(); break; case 5: - $data = fetch_image_from_url(z_root() . '/' . get_default_profile_photo(80),$mimetype); + $default = z_root() . '/' . get_default_profile_photo(80); break; case 6: - $data = fetch_image_from_url(z_root() . '/' . get_default_profile_photo(48),$mimetype); + $default = z_root() . '/' . get_default_profile_photo(48); break; default: killme(); // NOTREACHED break; } + $x = z_fetch_url($default,true,0,[ 'novalidate' => true ]); + $data = ($x['success'] ? $x['body'] : EMPTY_STR); + $mimetype = 'image/png'; } } From d029e3dc167feb9048d2ba06d44b2162d1c45643 Mon Sep 17 00:00:00 2001 From: Max Kostikov Date: Tue, 13 Nov 2018 11:39:42 +0100 Subject: [PATCH 812/819] Text formatting in Photo.php --- Zotlabs/Module/Photo.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Zotlabs/Module/Photo.php b/Zotlabs/Module/Photo.php index 68cd7c4ac..27cdbf779 100644 --- a/Zotlabs/Module/Photo.php +++ b/Zotlabs/Module/Photo.php @@ -90,8 +90,8 @@ class Photo extends \Zotlabs\Web\Controller { if(! $data) { $x = z_fetch_url($default,true,0,[ 'novalidate' => true ]); - $data = ($x['success'] ? $x['body'] : EMPTY_STR); - $mimetype = 'image/png'; + $data = ($x['success'] ? $x['body'] : EMPTY_STR); + $mimetype = 'image/png'; } } else { From a1455596621fb19b614e71d6f5b3249067d2566b Mon Sep 17 00:00:00 2001 From: Max Kostikov Date: Tue, 13 Nov 2018 11:45:18 +0100 Subject: [PATCH 813/819] Remove uneccessary include/photos.php --- Zotlabs/Module/Photo.php | 1 - 1 file changed, 1 deletion(-) diff --git a/Zotlabs/Module/Photo.php b/Zotlabs/Module/Photo.php index 27cdbf779..8d55eed2f 100644 --- a/Zotlabs/Module/Photo.php +++ b/Zotlabs/Module/Photo.php @@ -4,7 +4,6 @@ namespace Zotlabs\Module; require_once('include/security.php'); require_once('include/attach.php'); require_once('include/photo/photo_driver.php'); -require_once('include/photos.php'); class Photo extends \Zotlabs\Web\Controller { From cf2f7f2132e11dc37d1d62576a5ea7ed8ee9839d Mon Sep 17 00:00:00 2001 From: Max Kostikov Date: Tue, 13 Nov 2018 12:52:35 +0100 Subject: [PATCH 814/819] Update Photo.php --- Zotlabs/Module/Photo.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Zotlabs/Module/Photo.php b/Zotlabs/Module/Photo.php index 8d55eed2f..30e8340e2 100644 --- a/Zotlabs/Module/Photo.php +++ b/Zotlabs/Module/Photo.php @@ -198,20 +198,20 @@ class Photo extends \Zotlabs\Web\Controller { if(isset($resolution)) { switch($resolution) { case 4: - $default = z_root() . '/' . get_default_profile_photo(); + $default = get_default_profile_photo(); break; case 5: - $default = z_root() . '/' . get_default_profile_photo(80); + $default = get_default_profile_photo(80); break; case 6: - $default = z_root() . '/' . get_default_profile_photo(48); + $default = get_default_profile_photo(48); break; default: killme(); // NOTREACHED break; } - $x = z_fetch_url($default,true,0,[ 'novalidate' => true ]); + $x = z_fetch_url(z_root() . '/' . $default,true,0,[ 'novalidate' => true ]); $data = ($x['success'] ? $x['body'] : EMPTY_STR); $mimetype = 'image/png'; } From 302d9796c47972c04f4cc2fc4417402eb2fb7444 Mon Sep 17 00:00:00 2001 From: "DM42.Net (Matt Dent)" Date: Tue, 13 Nov 2018 22:59:36 -0500 Subject: [PATCH 815/819] Revert "Filter search box before display" This reverts commit 35e66770be6ca93c9090cdab221e6c33a410a569. --- include/text.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/text.php b/include/text.php index da18080dd..076c98407 100644 --- a/include/text.php +++ b/include/text.php @@ -1075,7 +1075,7 @@ function micropro($contact, $redirect = false, $class = '', $mode = false) { function search($s,$id='search-box',$url='/search',$save = false) { return replace_macros(get_markup_template('searchbox.tpl'),array( - '$s' => htmlspecialchars($s), + '$s' => $s, '$id' => $id, '$action_url' => z_root() . $url, '$search_label' => t('Search'), From f1d168f781fc14e55b85b6e0a4e214d18f2ec969 Mon Sep 17 00:00:00 2001 From: "DM42.Net (Matt Dent)" Date: Tue, 13 Nov 2018 23:06:00 -0500 Subject: [PATCH 816/819] Fix double escaping after xss fix --- Zotlabs/Module/Search.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Zotlabs/Module/Search.php b/Zotlabs/Module/Search.php index 272bbdac1..838f9d6b9 100644 --- a/Zotlabs/Module/Search.php +++ b/Zotlabs/Module/Search.php @@ -227,9 +227,9 @@ class Search extends \Zotlabs\Web\Controller { } if($tag) - $o .= '

      ' . sprintf( t('Items tagged with: %s'),htmlspecialchars($search, ENT_COMPAT,'UTF-8')) . '

      '; + $o .= '

      ' . sprintf( t('Items tagged with: %s'),$search) . '

      '; else - $o .= '

      ' . sprintf( t('Search results for: %s'),htmlspecialchars($search, ENT_COMPAT,'UTF-8')) . '

      '; + $o .= '

      ' . sprintf( t('Search results for: %s'),$search) . '

      '; $o .= conversation($items,'search',$update,'client'); From 886cdb440bfb92c28332d482a84e0a2f92333cb1 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Wed, 14 Nov 2018 11:08:25 +0100 Subject: [PATCH 817/819] changelog and version --- CHANGELOG | 18 ++++++++++++++++++ boot.php | 2 +- 2 files changed, 19 insertions(+), 1 deletion(-) diff --git a/CHANGELOG b/CHANGELOG index c3e280963..3c57bd26c 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,21 @@ +Hubzilla 3.8.4 (2018-11-14) + - Fix xss issue (thanks to Eduardo) + - Implement hook in enotify to be used by superblock + - Various css fixes + - Improve photo cache handling + - Provide a function hz_syslog() to log to syslog + - Fix request_target in z_post_url() + - Fix plural handling for various languages + - Some preparatory work for zot6 + - Fix warning in gallery addon + - Fix date issue on xchan photo update in diaspora and pubcrawl addons + - Fix typos in startpage addon + - Improve activitypub addressing + - Fix taxonomy in activitypub direct messages + - Fix syntax error in diaspora addon + - New e-learning addon flashcards + + Hubzilla 3.8.3 (2018-11-05) - Do not count likes in forum notifications if likes notifications are disabled - Fix typo in spanish translation which broke javascript diff --git a/boot.php b/boot.php index 612654820..4cd676bcf 100755 --- a/boot.php +++ b/boot.php @@ -50,7 +50,7 @@ require_once('include/attach.php'); require_once('include/bbcode.php'); define ( 'PLATFORM_NAME', 'hubzilla' ); -define ( 'STD_VERSION', '3.9.4' ); +define ( 'STD_VERSION', '3.9.5' ); define ( 'ZOT_REVISION', '6.0a' ); From beac45b0753c3362b8270f94c8d6e946eda36f01 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Wed, 14 Nov 2018 11:20:39 +0100 Subject: [PATCH 818/819] more changelog --- CHANGELOG | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG b/CHANGELOG index 3c57bd26c..59e8bdfc9 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -14,6 +14,8 @@ Hubzilla 3.8.4 (2018-11-14) - Fix taxonomy in activitypub direct messages - Fix syntax error in diaspora addon - New e-learning addon flashcards + - Remove DNS check for database connection during installation + - Implement timestamps for pconfig Hubzilla 3.8.3 (2018-11-05) From 62b367fa8177ed16958864a4799a0a2a9aa0119b Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Wed, 14 Nov 2018 11:22:41 +0100 Subject: [PATCH 819/819] version 3.9.5 --- boot.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boot.php b/boot.php index f4ef1a036..53aad48c9 100755 --- a/boot.php +++ b/boot.php @@ -50,7 +50,7 @@ require_once('include/attach.php'); require_once('include/bbcode.php'); define ( 'PLATFORM_NAME', 'hubzilla' ); -define ( 'STD_VERSION', '3.8.4' ); +define ( 'STD_VERSION', '3.9.5' ); define ( 'ZOT_REVISION', '6.0a' ); define ( 'DB_UPDATE_VERSION', 1225 );